diff --git a/libraries/common.lib.php b/libraries/common.lib.php index 6f00846fd..4d36eef66 100644 --- a/libraries/common.lib.php +++ b/libraries/common.lib.php @@ -1405,6 +1405,22 @@ function PMA_formatByteDown($value, $limes = 6, $comma = 0) return array(trim($return_value), $unit); } // end of the 'PMA_formatByteDown' function +/** + * Changes thousands and decimal separators to locale specific values. + */ +function PMA_localizeNumber($value) +{ + return str_replace( + array(',', '.'), + array( + /* l10n: Thousands separator */ + __(','), + /* l10n: Decimal separator */ + __('.'), + ), + $value); +} + /** * Formats $value to the given length and appends SI prefixes * $comma is not substracted from the length @@ -1436,9 +1452,7 @@ function PMA_formatNumber($value, $length = 3, $comma = 0, $only_down = false) { //number_format is not multibyte safe, str_replace is safe if ($length === 0) { - return str_replace(array(',', '.'), - array($GLOBALS['number_thousands_separator'], $GLOBALS['number_decimal_separator']), - number_format($value, $comma)); + return PMA_localizeNumber(number_format($value, $comma)); } // this units needs no translation, ISO @@ -1499,9 +1513,7 @@ function PMA_formatNumber($value, $length = 3, $comma = 0, $only_down = false) } // end if ($value >= 1) elseif (!$only_down && (float) $value !== 0.0) //number_format is not multibyte safe, str_replace is safe - $value = str_replace(array(',', '.'), - array($GLOBALS['number_thousands_separator'], $GLOBALS['number_decimal_separator']), - number_format($value, $comma)); + $value = PMA_localizeNumber(number_format($value, $comma)); return $sign . $value . ' ' . $unit; } // end of the 'PMA_formatNumber' function diff --git a/libraries/messages.inc.php b/libraries/messages.inc.php index 102783dee..cfdd4b635 100644 --- a/libraries/messages.inc.php +++ b/libraries/messages.inc.php @@ -17,10 +17,6 @@ $charset = 'utf-8'; /* l10n: Text direction, use either ltr or rtl */ $text_dir = __('ltr'); -/* l10n: Thousands separator */ -$number_thousands_separator = __(','); -/* l10n: Decimal separator */ -$number_decimal_separator = __('.'); $strAbortedClients = __('Aborted'); $strAccessDenied = __('Access denied'); diff --git a/po/af.po b/po/af.po index 116808ba8..991837333 100644 --- 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-05-13 11:25+0200\n" +"POT-Creation-Date: 2010-05-13 11:30+0200\n" "PO-Revision-Date: 2010-03-30 23:04+0200\n" "Last-Translator: Michal \n" "Language-Team: afrikaans \n" @@ -15,19 +15,19 @@ msgstr "" "X-Generator: Pootle 2.0.1\n" #: browse_foreigners.php:38 browse_foreigners.php:59 -#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:870 +#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:866 #: server_privileges.php:1475 msgid "Show all" msgstr "Wys alles" #: browse_foreigners.php:82 db_operations.php:648 -#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:394 -#: libraries/export/pdf.php:147 libraries/messages.inc.php:597 +#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394 +#: libraries/export/pdf.php:147 libraries/messages.inc.php:593 #: pdf_schema.php:283 pdf_schema.php:1123 pdf_schema.php:1139 msgid "Page number:" msgstr "Bladsy nommer:" -#: browse_foreigners.php:132 libraries/messages.inc.php:1242 +#: browse_foreigners.php:132 libraries/messages.inc.php:1238 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -37,7 +37,7 @@ 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/db_links.inc.php:75 -#: libraries/messages.inc.php:841 libraries/tbl_links.inc.php:63 +#: libraries/messages.inc.php:837 libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Soek" @@ -46,12 +46,12 @@ msgstr "Soek" #: db_search.php:362 db_structure.php:567 js/messages.php:48 #: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2267 +#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 #: 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 #: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614 -#: libraries/messages.inc.php:361 libraries/replication_gui.lib.php:73 +#: libraries/messages.inc.php:357 libraries/replication_gui.lib.php:73 #: libraries/replication_gui.lib.php:365 libraries/select_server.lib.php:104 #: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477 #: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782 @@ -71,13 +71,13 @@ msgid "Go" msgstr "Gaan" #: browse_foreigners.php:168 browse_foreigners.php:172 -#: libraries/Index.class.php:442 libraries/messages.inc.php:459 +#: libraries/Index.class.php:442 libraries/messages.inc.php:455 #: tbl_tracking.php:320 msgid "Keyname" msgstr "Sleutelnaam" #: browse_foreigners.php:169 browse_foreigners.php:171 -#: libraries/messages.inc.php:252 server_collations.php:55 +#: libraries/messages.inc.php:248 server_collations.php:55 #: server_collations.php:67 server_engines.php:59 server_status.php:628 #, fuzzy msgid "Description" @@ -85,21 +85,21 @@ msgstr "geen Beskrywing" #: browse_foreigners.php:247 browse_foreigners.php:256 #: browse_foreigners.php:268 browse_foreigners.php:276 -#: libraries/messages.inc.php:1218 +#: libraries/messages.inc.php:1214 msgid "Use this value" msgstr "" -#: db_create.php:46 libraries/messages.inc.php:215 +#: db_create.php:46 libraries/messages.inc.php:211 #, fuzzy, php-format msgid "Database %1$s has been created." msgstr "Databasis %s is verwyder." -#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:232 +#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:228 #, fuzzy msgid "Database comment: " msgstr "Tabel kommentaar" -#: db_datadict.php:165 libraries/messages.inc.php:1070 +#: db_datadict.php:165 libraries/messages.inc.php:1066 #: libraries/tbl_properties.inc.php:724 pdf_schema.php:1236 #: tbl_operations.php:345 tbl_printview.php:130 msgid "Table comments" @@ -108,7 +108,7 @@ msgstr "Tabel kommentaar" #: db_datadict.php:174 db_qbe.php:174 libraries/Index.class.php:446 #: libraries/export/htmlword.php:244 libraries/export/latex.php:360 #: libraries/export/odt.php:294 libraries/export/texytext.php:233 -#: libraries/messages.inc.php:317 libraries/tbl_properties.inc.php:99 +#: libraries/messages.inc.php:313 libraries/tbl_properties.inc.php:99 #: libraries/tbl_properties.inc.php:275 pdf_schema.php:1262 #: pdf_schema.php:1283 tbl_change.php:308 tbl_indexes.php:189 #: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135 @@ -120,7 +120,7 @@ msgstr "Veld" #: libraries/db_events.inc.php:31 libraries/db_routines.inc.php:42 #: 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/messages.inc.php:1181 +#: libraries/export/texytext.php:234 libraries/messages.inc.php:1177 #: libraries/tbl_properties.inc.php:100 pdf_schema.php:1263 #: pdf_schema.php:1284 server_privileges.php:2031 tbl_change.php:287 #: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313 @@ -132,7 +132,7 @@ msgstr "Tipe" #: db_datadict.php:177 libraries/Index.class.php:449 #: libraries/export/htmlword.php:246 libraries/export/latex.php:360 #: libraries/export/odt.php:300 libraries/export/texytext.php:235 -#: libraries/messages.inc.php:576 libraries/tbl_properties.inc.php:109 +#: libraries/messages.inc.php:572 libraries/tbl_properties.inc.php:109 #: pdf_schema.php:1265 pdf_schema.php:1286 tbl_change.php:323 #: tbl_printview.php:145 tbl_structure.php:181 tbl_tracking.php:276 #: tbl_tracking.php:327 @@ -141,7 +141,7 @@ msgstr "Null" #: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 -#: libraries/export/texytext.php:236 libraries/messages.inc.php:238 +#: libraries/export/texytext.php:236 libraries/messages.inc.php:234 #: libraries/tbl_properties.inc.php:106 pdf_schema.php:1266 #: pdf_schema.php:1287 tbl_printview.php:146 tbl_structure.php:182 #: tbl_tracking.php:277 @@ -150,14 +150,14 @@ msgstr "Verstekwaarde (default)" #: db_datadict.php:182 libraries/export/htmlword.php:249 #: libraries/export/latex.php:362 libraries/export/odt.php:307 -#: libraries/export/texytext.php:238 libraries/messages.inc.php:483 +#: libraries/export/texytext.php:238 libraries/messages.inc.php:479 #: pdf_schema.php:1268 pdf_schema.php:1289 tbl_printview.php:150 msgid "Links to" msgstr "Skakels na" #: db_datadict.php:184 db_printview.php:112 libraries/export/htmlword.php:252 #: libraries/export/latex.php:365 libraries/export/odt.php:312 -#: libraries/export/texytext.php:241 libraries/messages.inc.php:163 +#: libraries/export/texytext.php:241 libraries/messages.inc.php:159 #: libraries/tbl_properties.inc.php:130 pdf_schema.php:1279 #: pdf_schema.php:1290 tbl_printview.php:152 msgid "Comments" @@ -166,7 +166,7 @@ msgstr "Kommentaar" #: db_datadict.php:267 libraries/Index.class.php:359 #: 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/messages.inc.php:559 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:555 #: libraries/mult_submits.inc.php:263 pdf_schema.php:1344 #: server_privileges.php:1529 server_privileges.php:1540 #: server_privileges.php:1850 server_privileges.php:1855 @@ -178,7 +178,7 @@ msgstr "Nee" #: db_datadict.php:267 libraries/Index.class.php:360 #: libraries/Index.class.php:385 libraries/export/htmlword.php:322 #: libraries/export/latex.php:430 libraries/export/odt.php:368 -#: libraries/export/texytext.php:311 libraries/messages.inc.php:1257 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:1253 #: libraries/mult_submits.inc.php:45 libraries/mult_submits.inc.php:50 #: libraries/mult_submits.inc.php:55 libraries/mult_submits.inc.php:60 #: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:101 @@ -192,112 +192,112 @@ msgstr "Nee" msgid "Yes" msgstr "Ja" -#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:670 +#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:666 #: tbl_printview.php:498 msgid "Print" msgstr "" -#: db_export.php:29 libraries/messages.inc.php:1226 +#: db_export.php:29 libraries/messages.inc.php:1222 msgid "View dump (schema) of database" msgstr "Sien die storting (skema) van die databasis" #: db_export.php:33 db_printview.php:96 db_qbe.php:102 db_structure.php:51 -#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:568 +#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:564 #: navigation.php:346 msgid "No tables found in database." msgstr "Geen tabelle in databasis gevind nie." -#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:845 +#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:841 #: server_export.php:27 msgid "Select All" msgstr "Kies Alles" -#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1188 +#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1184 #: server_export.php:29 msgid "Unselect All" msgstr "Selekteer Niks" -#: db_operations.php:38 libraries/messages.inc.php:213 tbl_create.php:54 +#: db_operations.php:38 libraries/messages.inc.php:209 tbl_create.php:54 #, fuzzy msgid "The database name is empty!" msgstr "Die tabel naam is leeg!" -#: db_operations.php:236 libraries/messages.inc.php:753 +#: db_operations.php:236 libraries/messages.inc.php:749 #, fuzzy, php-format msgid "Database %s has been renamed to %s" msgstr "Tabel %s is vernoem na %s" -#: db_operations.php:240 libraries/messages.inc.php:178 +#: db_operations.php:240 libraries/messages.inc.php:174 #, fuzzy, php-format msgid "Database %s has been copied to %s" msgstr "Tabel %s is gekopieer na %s." -#: db_operations.php:410 libraries/messages.inc.php:236 +#: db_operations.php:410 libraries/messages.inc.php:232 #, fuzzy msgid "Rename database to" msgstr "Hernoem tabel na" -#: db_operations.php:415 libraries/messages.inc.php:161 +#: db_operations.php:415 libraries/messages.inc.php:157 #: server_processlist.php:57 #, fuzzy msgid "Command" msgstr "Kommentaar" -#: db_operations.php:425 libraries/messages.inc.php:58 tbl_change.php:1143 +#: db_operations.php:425 libraries/messages.inc.php:54 tbl_change.php:1143 msgid "and then" msgstr "" -#: db_operations.php:451 libraries/messages.inc.php:233 +#: db_operations.php:451 libraries/messages.inc.php:229 #, fuzzy msgid "Copy database to" msgstr "Geen databasisse" -#: db_operations.php:458 libraries/messages.inc.php:1043 +#: db_operations.php:458 libraries/messages.inc.php:1039 #: tbl_operations.php:526 tbl_tracking.php:388 msgid "Structure only" msgstr "Slegs struktuur" -#: db_operations.php:459 libraries/messages.inc.php:1041 +#: db_operations.php:459 libraries/messages.inc.php:1037 #: tbl_operations.php:527 tbl_tracking.php:390 msgid "Structure and data" msgstr "Struktuur en data" -#: db_operations.php:460 libraries/messages.inc.php:229 tbl_operations.php:528 +#: db_operations.php:460 libraries/messages.inc.php:225 tbl_operations.php:528 #: tbl_tracking.php:389 msgid "Data only" msgstr "Slegs Data" -#: db_operations.php:468 libraries/messages.inc.php:186 +#: db_operations.php:468 libraries/messages.inc.php:182 msgid "CREATE DATABASE before copying" msgstr "" #: db_operations.php:471 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 -#: libraries/export/sql.php:82 libraries/messages.inc.php:30 +#: libraries/export/sql.php:82 libraries/messages.inc.php:26 #: tbl_operations.php:534 #, php-format msgid "Add %s" msgstr "" -#: db_operations.php:475 libraries/messages.inc.php:29 tbl_operations.php:297 +#: db_operations.php:475 libraries/messages.inc.php:25 tbl_operations.php:297 #: tbl_operations.php:536 msgid "Add AUTO_INCREMENT value" msgstr "" -#: db_operations.php:479 libraries/messages.inc.php:31 tbl_operations.php:543 +#: db_operations.php:479 libraries/messages.inc.php:27 tbl_operations.php:543 msgid "Add constraints" msgstr "" -#: db_operations.php:492 libraries/messages.inc.php:1059 +#: db_operations.php:492 libraries/messages.inc.php:1055 msgid "Switch to copied database" msgstr "" -#: db_operations.php:533 libraries/messages.inc.php:89 +#: db_operations.php:533 libraries/messages.inc.php:85 msgid "BLOB Repository" msgstr "" #: db_operations.php:536 db_tracking.php:76 libraries/common.lib.php:1350 -#: libraries/messages.inc.php:1037 libraries/server_links.inc.php:49 +#: libraries/messages.inc.php:1033 libraries/server_links.inc.php:49 #: server_processlist.php:59 tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "" @@ -309,12 +309,12 @@ msgctxt "BLOB repository" msgid "Enabled" msgstr "Beskikbaar" -#: db_operations.php:548 libraries/messages.inc.php:93 +#: db_operations.php:548 libraries/messages.inc.php:89 #, fuzzy msgid "Disable" msgstr "Onbeskikbaar" -#: db_operations.php:558 libraries/messages.inc.php:90 +#: db_operations.php:558 libraries/messages.inc.php:86 msgid "Damaged" msgstr "" @@ -331,13 +331,13 @@ msgctxt "BLOB repository" msgid "Disabled" msgstr "Onbeskikbaar" -#: db_operations.php:574 libraries/messages.inc.php:96 +#: db_operations.php:574 libraries/messages.inc.php:92 #, fuzzy msgid "Enable" msgstr "Beskikbaar" #: db_operations.php:598 libraries/Index.class.php:448 -#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:158 +#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:154 #: 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:361 @@ -346,7 +346,7 @@ msgstr "Beskikbaar" msgid "Collation" msgstr "" -#: db_operations.php:609 libraries/messages.inc.php:742 main.php:316 +#: db_operations.php:609 libraries/messages.inc.php:738 main.php:316 #: pdf_schema.php:34 #, php-format msgid "" @@ -356,58 +356,58 @@ msgstr "" "Die addisionele funksies om met geskakelde tabelle te werk is ge deaktiveer. " "Om uit te vind hoekom kliek %shier%s." -#: db_operations.php:645 libraries/messages.inc.php:264 pdf_pages.php:528 +#: db_operations.php:645 libraries/messages.inc.php:260 pdf_pages.php:528 msgid "Display PDF schema" msgstr "Vertoon PDF skema" -#: db_operations.php:661 libraries/messages.inc.php:877 pdf_pages.php:529 +#: db_operations.php:661 libraries/messages.inc.php:873 pdf_pages.php:529 msgid "Show grid" msgstr "Wys ruitgebied" -#: db_operations.php:664 libraries/messages.inc.php:874 pdf_pages.php:530 +#: db_operations.php:664 libraries/messages.inc.php:870 pdf_pages.php:530 msgid "Show color" msgstr "Wys kleur" -#: db_operations.php:666 libraries/messages.inc.php:998 pdf_pages.php:531 +#: db_operations.php:666 libraries/messages.inc.php:994 pdf_pages.php:531 msgid "Show dimension of tables" msgstr "Wys dimensie van tabelle" -#: db_operations.php:669 libraries/messages.inc.php:52 pdf_pages.php:532 +#: db_operations.php:669 libraries/messages.inc.php:48 pdf_pages.php:532 msgid "Display all tables with the same width" msgstr "vertoon alle tabelle met dieselfde wydte?" -#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:227 +#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:223 #: pdf_pages.php:533 msgid "Data Dictionary" msgstr "" -#: db_operations.php:674 libraries/messages.inc.php:884 pdf_pages.php:534 +#: db_operations.php:674 libraries/messages.inc.php:880 pdf_pages.php:534 msgid "Only show keys" msgstr "" -#: db_operations.php:676 libraries/messages.inc.php:875 pdf_pages.php:535 +#: db_operations.php:676 libraries/messages.inc.php:871 pdf_pages.php:535 msgid "Data Dictionary Format" msgstr "" -#: db_operations.php:678 libraries/messages.inc.php:464 pdf_pages.php:537 +#: db_operations.php:678 libraries/messages.inc.php:460 pdf_pages.php:537 msgid "Landscape" msgstr "" -#: db_operations.php:679 libraries/messages.inc.php:663 pdf_pages.php:538 +#: db_operations.php:679 libraries/messages.inc.php:659 pdf_pages.php:538 msgid "Portrait" msgstr "" -#: db_operations.php:682 libraries/messages.inc.php:599 pdf_pages.php:541 +#: db_operations.php:682 libraries/messages.inc.php:595 pdf_pages.php:541 msgid "Paper size" msgstr "" -#: db_operations.php:706 libraries/messages.inc.php:281 +#: db_operations.php:706 libraries/messages.inc.php:277 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 libraries/messages.inc.php:1087 +#: libraries/header.inc.php:126 libraries/messages.inc.php:1083 #: pdf_pages.php:405 server_privileges.php:1626 server_privileges.php:1682 #: server_privileges.php:1946 server_synchronize.php:423 #: server_synchronize.php:866 tbl_tracking.php:592 test/theme.php:75 @@ -415,177 +415,177 @@ msgid "Table" msgstr "Tabel" #: db_printview.php:105 libraries/db_structure.lib.php:56 -#: libraries/messages.inc.php:735 +#: libraries/messages.inc.php:731 msgid "Records" msgstr "Rekords" #: db_printview.php:109 libraries/db_structure.lib.php:67 -#: libraries/messages.inc.php:1003 tbl_indexes.php:190 +#: libraries/messages.inc.php:999 tbl_indexes.php:190 msgid "Size" msgstr "Grootte" #: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 -#: libraries/export/sql.php:899 libraries/messages.inc.php:436 +#: libraries/export/sql.php:899 libraries/messages.inc.php:432 msgid "in use" msgstr "in gebruik" #: db_printview.php:187 libraries/db_info.inc.php:88 -#: libraries/export/sql.php:514 libraries/messages.inc.php:1032 +#: libraries/export/sql.php:514 libraries/messages.inc.php:1028 #: pdf_schema.php:1241 tbl_printview.php:434 tbl_structure.php:810 #, fuzzy msgid "Creation" msgstr "Skep" #: db_printview.php:196 libraries/db_info.inc.php:93 -#: libraries/export/sql.php:519 libraries/messages.inc.php:1036 +#: libraries/export/sql.php:519 libraries/messages.inc.php:1032 #: pdf_schema.php:1246 tbl_printview.php:444 tbl_structure.php:818 msgid "Last update" msgstr "" #: db_printview.php:205 libraries/db_info.inc.php:98 -#: libraries/export/sql.php:524 libraries/messages.inc.php:1031 +#: libraries/export/sql.php:524 libraries/messages.inc.php:1027 #: pdf_schema.php:1251 tbl_printview.php:454 tbl_structure.php:826 msgid "Last check" msgstr "" -#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1085 +#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1081 #, php-format msgid "%s table(s)" msgstr "%s tabel(le)" #: db_qbe.php:29 libraries/display_tbl.lib.php:1981 -#: libraries/messages.inc.php:1051 libraries/sql_query_form.lib.php:140 +#: libraries/messages.inc.php:1047 libraries/sql_query_form.lib.php:140 #: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131 #: view_operations.php:62 msgid "Your SQL query has been executed successfully" msgstr "Jou SQL-navraag is suksesvol uitgevoer" -#: db_qbe.php:42 libraries/messages.inc.php:371 +#: db_qbe.php:42 libraries/messages.inc.php:367 msgid "You have to choose at least one column to display" msgstr "Jy moet ten minste een Kolom kies om te vertoon" #: db_qbe.php:200 libraries/db_structure.lib.php:104 -#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1014 +#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1010 msgid "Sort" msgstr "Sorteer" #: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111 #: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828 -#: libraries/messages.inc.php:69 server_databases.php:170 +#: libraries/messages.inc.php:65 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314 msgid "Ascending" msgstr "Dalend" #: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119 #: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825 -#: libraries/messages.inc.php:251 server_databases.php:170 +#: libraries/messages.inc.php:247 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315 msgid "Descending" msgstr "Dalend" #: db_qbe.php:264 db_tracking.php:78 libraries/display_tbl.lib.php:308 -#: libraries/messages.inc.php:888 tbl_change.php:277 tbl_tracking.php:597 +#: libraries/messages.inc.php:884 tbl_change.php:277 tbl_tracking.php:597 msgid "Show" msgstr "Wys" -#: db_qbe.php:300 libraries/messages.inc.php:202 +#: db_qbe.php:300 libraries/messages.inc.php:198 msgid "Criteria" msgstr "Kriteria" #: db_qbe.php:353 db_qbe.php:435 db_qbe.php:527 db_qbe.php:558 -#: libraries/messages.inc.php:718 +#: libraries/messages.inc.php:714 msgid "Ins" msgstr "Ins" #: db_qbe.php:357 db_qbe.php:439 db_qbe.php:524 db_qbe.php:555 -#: libraries/messages.inc.php:56 +#: libraries/messages.inc.php:52 msgid "And" msgstr "En" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:529 db_qbe.php:560 -#: libraries/messages.inc.php:717 +#: libraries/messages.inc.php:713 msgid "Del" 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/messages.inc.php:592 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:588 #: libraries/tbl_properties.inc.php:779 server_privileges.php:258 #: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288 msgid "Or" msgstr "Of" -#: db_qbe.php:507 libraries/messages.inc.php:516 +#: db_qbe.php:507 libraries/messages.inc.php:512 msgid "Modify" msgstr "Verander" -#: db_qbe.php:584 libraries/messages.inc.php:33 +#: db_qbe.php:584 libraries/messages.inc.php:29 msgid "Add/Delete Criteria Row" msgstr "Voeg By/Verwyder Kriteria Ry" -#: db_qbe.php:596 libraries/messages.inc.php:32 +#: db_qbe.php:596 libraries/messages.inc.php:28 msgid "Add/Delete Field Columns" msgstr "Voeg By/Verwyder Veld Kolomme" -#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1192 +#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1188 msgid "Update Query" msgstr "Verander Navraag" -#: db_qbe.php:617 libraries/messages.inc.php:1216 +#: db_qbe.php:617 libraries/messages.inc.php:1212 msgid "Use Tables" msgstr "Gebruik Tabelle" -#: db_qbe.php:640 libraries/messages.inc.php:723 +#: db_qbe.php:640 libraries/messages.inc.php:719 #, php-format msgid "SQL query on database %s:" msgstr "SQL-navraag op databasis %s:" -#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:823 +#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:819 msgid "Submit Query" msgstr "Doen Navraag" #: db_search.php:68 libraries/auth/config.auth.lib.php:84 #: libraries/auth/config.auth.lib.php:103 #: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52 -#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:26 +#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:22 msgid "Access denied" msgstr "Toegang Geweier" -#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:836 +#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:832 msgid "at least one of the words" msgstr "ten minste een van die woorde" -#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:837 +#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:833 msgid "all words" msgstr "alle woorde" -#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:838 +#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:834 msgid "the exact phrase" msgstr "die presiese frase" -#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:839 +#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:835 msgid "as regular expression" msgstr "as 'n regular expression" -#: db_search.php:242 libraries/messages.inc.php:840 +#: db_search.php:242 libraries/messages.inc.php:836 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Soek resultate vir \"%s\" %s:" -#: db_search.php:260 libraries/messages.inc.php:579 +#: db_search.php:260 libraries/messages.inc.php:575 #, php-format msgid "%s match(es) inside table %s" 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/messages.inc.php:108 +#: db_structure.php:105 libraries/messages.inc.php:104 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468 msgid "Browse" msgstr "Beloer Data" #: db_search.php:272 libraries/display_tbl.lib.php:1165 -#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:243 +#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:239 #: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406 #: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377 #: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216 @@ -593,45 +593,45 @@ msgstr "Beloer Data" msgid "Delete" msgstr "Verwyder" -#: db_search.php:285 libraries/messages.inc.php:580 +#: db_search.php:285 libraries/messages.inc.php:576 #, php-format msgid "Total: %s match(es)" msgstr "Totaal: %s ooreenkomste" -#: db_search.php:299 libraries/messages.inc.php:832 +#: db_search.php:299 libraries/messages.inc.php:828 msgid "Search in database" msgstr "Soek in databasis" -#: db_search.php:302 libraries/messages.inc.php:835 +#: db_search.php:302 libraries/messages.inc.php:831 msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgstr "Woord(e) of waarde(s) om voor te soek (wildcard: \"%\"):" -#: db_search.php:307 libraries/messages.inc.php:842 +#: db_search.php:307 libraries/messages.inc.php:838 msgid "Find:" msgstr "Vind:" -#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1017 +#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1013 msgid "Words are separated by a space character (\" \")." msgstr "Woorde is geskei dmv 'n spasie karakter (\" \")." -#: db_search.php:325 libraries/messages.inc.php:834 +#: db_search.php:325 libraries/messages.inc.php:830 msgid "Inside table(s):" msgstr "Binne tabel(le):" -#: db_search.php:355 libraries/messages.inc.php:833 +#: db_search.php:355 libraries/messages.inc.php:829 msgid "Inside field:" 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/messages.inc.php:431 libraries/sql_query_form.lib.php:334 +#: libraries/messages.inc.php:427 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/db_links.inc.php:63 libraries/export/latex.php:337 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:1048 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:1044 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 #: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269 msgid "Structure" @@ -640,8 +640,8 @@ 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:1642 -#: libraries/db_links.inc.php:100 libraries/messages.inc.php:272 +#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/db_links.inc.php:100 libraries/messages.inc.php:268 #: 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 @@ -651,40 +651,40 @@ 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:1641 -#: libraries/messages.inc.php:284 libraries/mult_submits.inc.php:39 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: libraries/messages.inc.php:280 libraries/mult_submits.inc.php:39 #: libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Maak Leeg" -#: db_structure.php:316 libraries/messages.inc.php:1075 +#: db_structure.php:316 libraries/messages.inc.php:1071 #: libraries/tbl_links.inc.php:100 #, php-format msgid "Table %s has been emptied" msgstr "Tabel %s is leeg gemaak" -#: db_structure.php:326 libraries/messages.inc.php:1229 +#: db_structure.php:326 libraries/messages.inc.php:1225 #: 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/messages.inc.php:1074 +#: db_structure.php:326 libraries/messages.inc.php:1070 #: libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "Tabel %s is verwyder" -#: db_structure.php:333 libraries/messages.inc.php:1128 +#: db_structure.php:333 libraries/messages.inc.php:1124 msgid "Tracking is active." msgstr "" -#: db_structure.php:335 libraries/messages.inc.php:1129 +#: db_structure.php:335 libraries/messages.inc.php:1125 msgid "Tracking is not active." msgstr "" #: db_structure.php:420 libraries/display_tbl.lib.php:1944 -#: libraries/messages.inc.php:1228 +#: libraries/messages.inc.php:1224 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -692,83 +692,83 @@ msgid "" msgstr "" #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 -#: libraries/messages.inc.php:1233 libraries/tbl_info.inc.php:66 +#: libraries/messages.inc.php:1229 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/messages.inc.php:773 libraries/server_links.inc.php:70 +#: libraries/messages.inc.php:769 libraries/server_links.inc.php:70 #: server_replication.php:33 server_replication.php:164 server_status.php:258 msgid "Replication" msgstr "" -#: db_structure.php:489 libraries/messages.inc.php:1053 +#: db_structure.php:489 libraries/messages.inc.php:1049 msgid "Sum" msgstr "Som" #: db_structure.php:496 libraries/StorageEngine.class.php:356 -#: libraries/messages.inc.php:239 +#: libraries/messages.inc.php:235 #, 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 #: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086 -#: libraries/messages.inc.php:1243 libraries/mult_submits.inc.php:16 +#: libraries/messages.inc.php:1239 libraries/mult_submits.inc.php:16 #: server_databases.php:346 server_databases.php:351 #: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465 msgid "With selected:" msgstr "Met gekose:" #: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: libraries/messages.inc.php:148 server_databases.php:348 +#: libraries/messages.inc.php:144 server_databases.php:348 #: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459 msgid "Check All" msgstr "Kies Alles" #: db_structure.php:531 libraries/display_tbl.lib.php:2077 -#: libraries/messages.inc.php:1184 libraries/replication_gui.lib.php:33 +#: libraries/messages.inc.php:1180 libraries/replication_gui.lib.php:33 #: server_databases.php:350 server_privileges.php:533 #: server_privileges.php:1564 tbl_structure.php:463 msgid "Uncheck All" msgstr "Kies Niks" -#: db_structure.php:536 libraries/messages.inc.php:150 +#: db_structure.php:536 libraries/messages.inc.php:146 msgid "Check tables having overhead" msgstr "" #: db_structure.php:547 db_structure.php:548 db_structure.php:599 -#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:672 +#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:668 #: libraries/mult_submits.inc.php:28 tbl_structure.php:493 #: tbl_structure.php:495 msgid "Print view" msgstr "Drukker mooi (print view)" -#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:153 +#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:149 #: libraries/mult_submits.inc.php:42 tbl_operations.php:579 msgid "Check table" msgstr "Kontroleer tabel" -#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:590 +#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:586 #: libraries/mult_submits.inc.php:47 tbl_operations.php:619 #: tbl_structure.php:710 tbl_structure.php:712 msgid "Optimize table" msgstr "Optimaliseer tabel" -#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:758 +#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:754 #: libraries/mult_submits.inc.php:52 tbl_operations.php:609 msgid "Repair table" msgstr "Herstel tabel" -#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:55 +#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:51 #: libraries/mult_submits.inc.php:57 tbl_operations.php:599 msgid "Analyze table" msgstr "Analiseer tabel" #: db_structure.php:557 db_structure.php:558 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/messages.inc.php:310 +#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:306 #: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84 #: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109 #: server_privileges.php:1341 setup/frames/menu.inc.php:22 @@ -776,7 +776,7 @@ msgstr "Analiseer tabel" msgid "Export" msgstr "Export" -#: db_tracking.php:66 libraries/messages.inc.php:1151 +#: db_tracking.php:66 libraries/messages.inc.php:1147 msgid "Tracked tables" msgstr "" @@ -784,7 +784,7 @@ msgstr "" #: 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/header_printview.inc.php:58 libraries/messages.inc.php:212 +#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:208 #: navigation.php:233 server_databases.php:169 server_privileges.php:1621 #: server_privileges.php:1682 server_privileges.php:1940 #: server_processlist.php:56 server_synchronize.php:1179 @@ -792,97 +792,97 @@ msgstr "" msgid "Database" msgstr "Databasis" -#: db_tracking.php:73 libraries/messages.inc.php:1146 +#: db_tracking.php:73 libraries/messages.inc.php:1142 msgid "Last version" msgstr "" -#: db_tracking.php:74 libraries/messages.inc.php:1145 tbl_tracking.php:594 +#: db_tracking.php:74 libraries/messages.inc.php:1141 tbl_tracking.php:594 #, fuzzy msgid "Created" msgstr "Skep" -#: db_tracking.php:75 libraries/messages.inc.php:1147 tbl_tracking.php:595 +#: db_tracking.php:75 libraries/messages.inc.php:1143 tbl_tracking.php:595 msgid "Updated" msgstr "" #: db_tracking.php:77 libraries/Index.class.php:440 -#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:27 +#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:23 #: server_databases.php:203 server_privileges.php:1503 #: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187 msgid "Action" msgstr "Aksie" -#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:247 +#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:243 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:106 libraries/messages.inc.php:1142 tbl_tracking.php:548 +#: db_tracking.php:106 libraries/messages.inc.php:1138 tbl_tracking.php:548 #: tbl_tracking.php:606 tbl_tracking.php:613 msgid "active" msgstr "" -#: db_tracking.php:108 libraries/messages.inc.php:1143 tbl_tracking.php:550 +#: db_tracking.php:108 libraries/messages.inc.php:1139 tbl_tracking.php:550 #: tbl_tracking.php:608 tbl_tracking.php:610 msgid "not active" msgstr "" -#: db_tracking.php:121 libraries/messages.inc.php:1160 +#: db_tracking.php:121 libraries/messages.inc.php:1156 #, fuzzy msgid "Versions" msgstr "Operasies" -#: db_tracking.php:122 libraries/messages.inc.php:1132 tbl_tracking.php:379 +#: db_tracking.php:122 libraries/messages.inc.php:1128 tbl_tracking.php:379 #: tbl_tracking.php:624 msgid "Tracking report" msgstr "" -#: db_tracking.php:123 libraries/messages.inc.php:1144 tbl_tracking.php:251 +#: db_tracking.php:123 libraries/messages.inc.php:1140 tbl_tracking.php:251 #: tbl_tracking.php:624 #, fuzzy msgid "Structure snapshot" msgstr "Slegs struktuur" -#: db_tracking.php:152 libraries/messages.inc.php:1154 +#: db_tracking.php:152 libraries/messages.inc.php:1150 msgid "Untracked tables" msgstr "" -#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1153 +#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1149 #: tbl_structure.php:529 tbl_structure.php:531 #, fuzzy msgid "Track table" msgstr "Kontroleer tabel" -#: db_tracking.php:200 libraries/messages.inc.php:1121 +#: db_tracking.php:200 libraries/messages.inc.php:1117 #, fuzzy msgid "Database Log" msgstr "Databasis" -#: export.php:62 libraries/messages.inc.php:312 +#: export.php:62 libraries/messages.inc.php:308 msgid "Selected export type has to be saved in file!" msgstr "" -#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:567 +#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:563 #, php-format msgid "Insufficient space to save the file %s." msgstr "" -#: export.php:294 libraries/messages.inc.php:324 +#: export.php:294 libraries/messages.inc.php:320 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "" -#: export.php:298 export.php:302 libraries/messages.inc.php:562 +#: export.php:298 export.php:302 libraries/messages.inc.php:558 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "" -#: export.php:629 libraries/messages.inc.php:276 +#: export.php:629 libraries/messages.inc.php:272 #, php-format msgid "Dump has been saved to file %s." msgstr "" -#: import.php:60 libraries/messages.inc.php:1202 +#: import.php:60 libraries/messages.inc.php:1198 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation%" @@ -890,21 +890,21 @@ msgid "" msgstr "" #: import.php:279 import.php:332 libraries/File.class.php:849 -#: libraries/File.class.php:961 libraries/messages.inc.php:325 +#: libraries/File.class.php:961 libraries/messages.inc.php:321 msgid "File could not be read" msgstr "" #: import.php:287 import.php:296 import.php:315 import.php:324 #: libraries/File.class.php:1031 libraries/File.class.php:1039 #: libraries/File.class.php:1055 libraries/File.class.php:1063 -#: libraries/messages.inc.php:1189 +#: libraries/messages.inc.php:1185 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." msgstr "" -#: import.php:337 libraries/messages.inc.php:547 +#: import.php:337 libraries/messages.inc.php:543 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -912,39 +912,39 @@ msgid "" msgstr "" #: import.php:372 libraries/display_import.lib.php:24 -#: libraries/messages.inc.php:125 +#: libraries/messages.inc.php:121 msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:397 libraries/messages.inc.php:102 +#: import.php:397 libraries/messages.inc.php:98 msgid "The bookmark has been deleted." msgstr "Die boekmerk is verwyder." -#: import.php:401 libraries/messages.inc.php:879 +#: import.php:401 libraries/messages.inc.php:875 msgid "Showing bookmark" msgstr "" -#: import.php:403 libraries/messages.inc.php:101 +#: import.php:403 libraries/messages.inc.php:97 #, php-format msgid "Bookmark %s created" msgstr "" -#: import.php:409 import.php:415 libraries/messages.inc.php:407 +#: import.php:409 import.php:415 libraries/messages.inc.php:403 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" -#: import.php:424 libraries/messages.inc.php:1107 +#: import.php:424 libraries/messages.inc.php:1103 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: index.php:190 libraries/messages.inc.php:553 +#: index.php:190 libraries/messages.inc.php:549 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin verkies 'n frames-kapabele blaaier." -#: js/messages.php:25 libraries/messages.inc.php:155 +#: js/messages.php:25 libraries/messages.inc.php:151 #: server_synchronize.php:345 server_synchronize.php:357 #: server_synchronize.php:373 server_synchronize.php:380 #: server_synchronize.php:739 server_synchronize.php:767 @@ -952,118 +952,118 @@ msgstr "phpMyAdmin verkies 'n frames-kapabele blaaier." msgid "Click to select" msgstr "" -#: js/messages.php:26 libraries/messages.inc.php:156 +#: js/messages.php:26 libraries/messages.inc.php:152 msgid "Click to unselect" msgstr "" #: js/messages.php:27 libraries/import.lib.php:103 -#: libraries/messages.inc.php:550 sql.php:89 +#: libraries/messages.inc.php:546 sql.php:89 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" stellings word nie toegelaat nie." -#: js/messages.php:30 libraries/messages.inc.php:270 +#: js/messages.php:30 libraries/messages.inc.php:266 #: libraries/mult_submits.inc.php:258 sql.php:188 msgid "Do you really want to " msgstr "Wil jy regtig " -#: js/messages.php:31 libraries/messages.inc.php:271 +#: js/messages.php:31 libraries/messages.inc.php:267 #: libraries/mult_submits.inc.php:258 sql.php:172 msgid "You are about to DESTROY a complete database!" msgstr "" -#: js/messages.php:34 libraries/messages.inc.php:94 +#: js/messages.php:34 libraries/messages.inc.php:90 msgid "You are about to DISABLE a BLOB Repository!" msgstr "" -#: js/messages.php:35 libraries/messages.inc.php:91 +#: js/messages.php:35 libraries/messages.inc.php:87 #, php-format msgid "Are you sure you want to disable all BLOB references for database %s?" msgstr "" -#: js/messages.php:38 libraries/messages.inc.php:342 +#: js/messages.php:38 libraries/messages.inc.php:338 msgid "Missing value in the form!" msgstr "Daar ontbreek 'n waarde in die vorm !" -#: js/messages.php:39 libraries/messages.inc.php:570 +#: js/messages.php:39 libraries/messages.inc.php:566 msgid "This is not a number!" msgstr "Hierdie is nie 'n nommer nie" -#: js/messages.php:42 libraries/messages.inc.php:380 +#: js/messages.php:42 libraries/messages.inc.php:376 msgid "The host name is empty!" msgstr "Die gasheer naam is leeg!" -#: js/messages.php:43 libraries/messages.inc.php:1208 +#: js/messages.php:43 libraries/messages.inc.php:1204 msgid "The user name is empty!" msgstr "Die gebruiker naam ontbreek!" -#: js/messages.php:44 libraries/messages.inc.php:607 +#: js/messages.php:44 libraries/messages.inc.php:603 #: server_privileges.php:1197 user_password.php:70 msgid "The password is empty!" msgstr "Die wagwoord is leeg!" -#: js/messages.php:45 libraries/messages.inc.php:609 +#: js/messages.php:45 libraries/messages.inc.php:605 #: server_privileges.php:1195 user_password.php:73 msgid "The passwords aren't the same!" msgstr "Die wagwoorde is verskillend!" -#: js/messages.php:49 libraries/messages.inc.php:123 pmd_general.php:342 +#: js/messages.php:49 libraries/messages.inc.php:119 pmd_general.php:342 #: pmd_general.php:379 msgid "Cancel" msgstr "" -#: js/messages.php:52 libraries/messages.inc.php:514 +#: js/messages.php:52 libraries/messages.inc.php:510 msgid "Modifications have been saved" msgstr "Veranderinge is gestoor" -#: js/messages.php:53 libraries/messages.inc.php:741 +#: js/messages.php:53 libraries/messages.inc.php:737 #, fuzzy msgid "Relation deleted" msgstr "Relasie uitsig" -#: js/messages.php:54 libraries/messages.inc.php:340 +#: js/messages.php:54 libraries/messages.inc.php:336 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:55 libraries/messages.inc.php:434 +#: js/messages.php:55 libraries/messages.inc.php:430 #, fuzzy msgid "Internal relation added" msgstr "Algemene verwantskap funksies" -#: js/messages.php:56 libraries/messages.inc.php:299 +#: js/messages.php:56 libraries/messages.inc.php:295 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:57 libraries/messages.inc.php:300 +#: js/messages.php:57 libraries/messages.inc.php:296 msgid "Error: relation already exists." msgstr "" -#: js/messages.php:58 libraries/messages.inc.php:302 +#: js/messages.php:58 libraries/messages.inc.php:298 msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:59 libraries/messages.inc.php:351 +#: js/messages.php:59 libraries/messages.inc.php:347 #: libraries/relation.lib.php:107 msgid "General relation features" msgstr "Algemene verwantskap funksies" -#: js/messages.php:59 libraries/messages.inc.php:260 +#: js/messages.php:59 libraries/messages.inc.php:256 #: libraries/relation.lib.php:101 libraries/relation.lib.php:108 msgid "Disabled" msgstr "Onbeskikbaar" -#: js/messages.php:60 libraries/messages.inc.php:850 +#: js/messages.php:60 libraries/messages.inc.php:846 msgid "Select referenced key" msgstr "" -#: js/messages.php:61 libraries/messages.inc.php:848 +#: js/messages.php:61 libraries/messages.inc.php:844 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:62 libraries/messages.inc.php:653 +#: js/messages.php:62 libraries/messages.inc.php:649 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:63 libraries/messages.inc.php:142 pmd_general.php:77 +#: js/messages.php:63 libraries/messages.inc.php:138 pmd_general.php:77 #: tbl_relation.php:548 msgid "Choose field to display" msgstr "Kies 'n Veld om te vertoon" @@ -1083,9 +1083,9 @@ msgid "Prev" msgstr "Vorige" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2332 -#: libraries/common.lib.php:2335 libraries/display_tbl.lib.php:338 -#: libraries/messages.inc.php:543 server_binlog.php:205 server_binlog.php:207 +#: js/messages.php:77 libraries/common.lib.php:2344 +#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: libraries/messages.inc.php:539 server_binlog.php:205 server_binlog.php:207 #: tbl_printview.php:424 tbl_structure.php:802 msgid "Next" msgstr "Volgende" @@ -1159,27 +1159,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1543 +#: js/messages.php:97 libraries/common.lib.php:1555 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1545 +#: js/messages.php:99 libraries/common.lib.php:1557 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1547 +#: js/messages.php:101 libraries/common.lib.php:1559 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1549 +#: js/messages.php:103 libraries/common.lib.php:1561 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1551 +#: js/messages.php:105 libraries/common.lib.php:1563 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1187,37 +1187,37 @@ msgid "May" msgstr "Mei" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1553 +#: js/messages.php:107 libraries/common.lib.php:1565 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1555 +#: js/messages.php:109 libraries/common.lib.php:1567 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1557 +#: js/messages.php:111 libraries/common.lib.php:1569 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1559 +#: js/messages.php:113 libraries/common.lib.php:1571 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1561 +#: js/messages.php:115 libraries/common.lib.php:1573 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1563 +#: js/messages.php:117 libraries/common.lib.php:1575 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1565 +#: js/messages.php:119 libraries/common.lib.php:1577 msgid "Dec" msgstr "Des" @@ -1258,37 +1258,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1568 +#: js/messages.php:132 libraries/common.lib.php:1580 msgid "Sun" msgstr "So" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1570 +#: js/messages.php:134 libraries/common.lib.php:1582 msgid "Mon" msgstr "Ma" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1572 +#: js/messages.php:136 libraries/common.lib.php:1584 msgid "Tue" msgstr "Di" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1574 +#: js/messages.php:138 libraries/common.lib.php:1586 msgid "Wed" msgstr "Wo" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1576 +#: js/messages.php:140 libraries/common.lib.php:1588 msgid "Thu" msgstr "Do" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1578 +#: js/messages.php:142 libraries/common.lib.php:1590 msgid "Fri" msgstr "Fr" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1580 +#: js/messages.php:144 libraries/common.lib.php:1592 msgid "Sat" msgstr "Sa" @@ -1362,76 +1362,76 @@ msgstr "in gebruik" msgid "Second" msgstr "Rekords" -#: libraries/Config.class.php:1015 libraries/messages.inc.php:338 +#: libraries/Config.class.php:1015 libraries/messages.inc.php:334 msgid "Font size" msgstr "" #: libraries/File.class.php:344 libraries/File.class.php:432 #: libraries/File.class.php:569 libraries/File.class.php:708 -#: libraries/messages.inc.php:1201 +#: libraries/messages.inc.php:1197 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.class.php:414 libraries/messages.inc.php:1198 +#: libraries/File.class.php:414 libraries/messages.inc.php:1194 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:417 libraries/messages.inc.php:1197 +#: libraries/File.class.php:417 libraries/messages.inc.php:1193 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:420 libraries/messages.inc.php:1200 +#: libraries/File.class.php:420 libraries/messages.inc.php:1196 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:423 libraries/messages.inc.php:1199 +#: libraries/File.class.php:423 libraries/messages.inc.php:1195 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:426 libraries/messages.inc.php:1195 +#: libraries/File.class.php:426 libraries/messages.inc.php:1191 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:429 libraries/messages.inc.php:1196 +#: libraries/File.class.php:429 libraries/messages.inc.php:1192 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:908 libraries/messages.inc.php:319 +#: libraries/File.class.php:908 libraries/messages.inc.php:315 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "" -#: libraries/Index.class.php:428 libraries/messages.inc.php:554 +#: libraries/Index.class.php:428 libraries/messages.inc.php:550 #: tbl_relation.php:529 msgid "No index defined!" msgstr "Geen indeks gedefinieer!" -#: libraries/Index.class.php:433 libraries/messages.inc.php:411 +#: libraries/Index.class.php:433 libraries/messages.inc.php:407 #: server_databases.php:132 tbl_tracking.php:316 msgid "Indexes" msgstr "Indekse" -#: libraries/Index.class.php:444 libraries/messages.inc.php:1186 +#: libraries/Index.class.php:444 libraries/messages.inc.php:1182 #: 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:475 tbl_tracking.php:322 msgid "Unique" msgstr "Uniek" -#: libraries/Index.class.php:445 libraries/messages.inc.php:596 +#: libraries/Index.class.php:445 libraries/messages.inc.php:592 #: tbl_tracking.php:323 msgid "Packed" msgstr "" -#: libraries/Index.class.php:447 libraries/messages.inc.php:131 +#: libraries/Index.class.php:447 libraries/messages.inc.php:127 #: tbl_tracking.php:325 msgid "Cardinality" msgstr "Cardinality" -#: libraries/Index.class.php:450 libraries/messages.inc.php:162 +#: libraries/Index.class.php:450 libraries/messages.inc.php:158 #: tbl_tracking.php:279 tbl_tracking.php:328 #, fuzzy msgid "Comment" @@ -1440,29 +1440,29 @@ msgstr "Kommentaar" #: libraries/Index.class.php:466 libraries/common.lib.php:616 #: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:280 pdf_pages.php:280 +#: libraries/messages.inc.php:276 pdf_pages.php:280 #: setup/frames/index.inc.php:124 setup/lib/messages.inc.php:352 #: tbl_row_action.php:69 msgid "Edit" msgstr "Verander" -#: libraries/Index.class.php:472 libraries/messages.inc.php:666 +#: libraries/Index.class.php:472 libraries/messages.inc.php:662 msgid "The primary key has been dropped" msgstr "Die primere sleutel is verwyder" -#: libraries/Index.class.php:476 libraries/messages.inc.php:413 +#: libraries/Index.class.php:476 libraries/messages.inc.php:409 #, php-format msgid "Index %s has been dropped" msgstr "Indeks %s is verwyder" -#: libraries/Index.class.php:576 libraries/messages.inc.php:412 +#: libraries/Index.class.php:576 libraries/messages.inc.php:408 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "" -#: libraries/List_Database.class.php:431 libraries/messages.inc.php:218 +#: libraries/List_Database.class.php:431 libraries/messages.inc.php:214 #: libraries/server_links.inc.php:41 server_databases.php:88 #: server_privileges.php:1621 setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" @@ -1489,85 +1489,85 @@ msgid_plural "%1$d rows inserted." msgstr[0] "" msgstr[1] "" -#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:549 +#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:545 msgid "" "There is no detailed status information available for this storage engine." msgstr "" -#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:291 +#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:287 #, php-format msgid "%s is available on this MySQL server." msgstr "" -#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:292 +#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:288 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "" -#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:294 +#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:290 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "" -#: libraries/Table.class.php:1019 libraries/messages.inc.php:443 +#: libraries/Table.class.php:1019 libraries/messages.inc.php:439 msgid "Invalid database" msgstr "" -#: libraries/Table.class.php:1033 libraries/messages.inc.php:450 +#: libraries/Table.class.php:1033 libraries/messages.inc.php:446 #: tbl_get_field.php:26 msgid "Invalid table name" msgstr "" -#: libraries/Table.class.php:1048 libraries/messages.inc.php:301 +#: libraries/Table.class.php:1048 libraries/messages.inc.php:297 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "" -#: libraries/Table.class.php:1132 libraries/messages.inc.php:754 +#: libraries/Table.class.php:1132 libraries/messages.inc.php:750 #, php-format msgid "Table %s has been renamed to %s" msgstr "Tabel %s is vernoem na %s" -#: libraries/Theme.class.php:162 libraries/messages.inc.php:1099 +#: libraries/Theme.class.php:162 libraries/messages.inc.php:1095 #, php-format msgid "No valid image path for theme %s found!" msgstr "" -#: libraries/Theme.class.php:384 libraries/messages.inc.php:1097 +#: libraries/Theme.class.php:384 libraries/messages.inc.php:1093 msgid "No preview available." msgstr "" -#: libraries/Theme.class.php:387 libraries/messages.inc.php:1089 +#: libraries/Theme.class.php:387 libraries/messages.inc.php:1085 msgid "take it" msgstr "" -#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1096 +#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1092 #, php-format msgid "Default theme %s not found!" msgstr "" -#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1098 +#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1094 #, php-format msgid "Theme %s not found!" msgstr "" -#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1100 +#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1096 #, php-format msgid "Theme path not found for theme %s!" msgstr "" -#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1101 +#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1097 #: test/theme.php:161 themes.php:21 themes.php:41 msgid "Theme / Style" msgstr "" -#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:172 +#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:168 msgid "Cannot connect: invalid settings." msgstr "" #: libraries/auth/config.auth.lib.php:92 #: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65 -#: libraries/messages.inc.php:1238 test/theme.php:152 +#: libraries/messages.inc.php:1234 test/theme.php:152 #, php-format msgid "Welcome to %s" msgstr "Welkom by %s" @@ -1587,104 +1587,104 @@ msgid "" "the administrator of the MySQL server." msgstr "" -#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:488 +#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:484 msgid "Log in" msgstr "Teken aan" #: libraries/auth/cookie.auth.lib.php:246 -#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:659 +#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:655 #: libraries/navigation_header.inc.php:93 #: libraries/navigation_header.inc.php:95 msgid "phpMyAdmin documentation" msgstr "phpMyAdmin dokumentasie" #: libraries/auth/cookie.auth.lib.php:258 -#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:492 +#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:488 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:493 +#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:489 msgid "Server:" msgstr "" -#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:494 +#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:490 msgid "Username:" msgstr "Gebruiker Naam:" -#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:491 +#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:487 msgid "Password:" msgstr "Wagwoord:" -#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:854 +#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:850 msgid "Server Choice" msgstr "Bediener Keuse" #: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 -#: libraries/messages.inc.php:177 +#: libraries/messages.inc.php:173 msgid "Cookies must be enabled past this point." msgstr "HTTP Koekies moet van nou af geaktifeer wees." #: libraries/auth/cookie.auth.lib.php:671 -#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:489 +#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:485 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" #: libraries/auth/cookie.auth.lib.php:675 -#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:544 +#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:540 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" #: libraries/auth/cookie.auth.lib.php:685 #: libraries/auth/cookie.auth.lib.php:687 -#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:126 +#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:122 msgid "Cannot log in to the MySQL server" msgstr "" -#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1245 +#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1241 msgid "Wrong username/password. Access denied." msgstr "Verkeerde gebruikernaam/wagwoord. Toegang geweier." #: libraries/auth/swekey/swekey.auth.lib.php:118 -#: libraries/messages.inc.php:1057 +#: libraries/messages.inc.php:1053 #, php-format msgid "File %s does not contain any key id" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:157 #: libraries/auth/swekey/swekey.auth.lib.php:180 -#: libraries/messages.inc.php:1056 +#: libraries/messages.inc.php:1052 msgid "Hardware authentication failed" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:166 -#: libraries/messages.inc.php:1058 +#: libraries/messages.inc.php:1054 msgid "No valid authentication key plugged" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:202 -#: libraries/messages.inc.php:1055 +#: libraries/messages.inc.php:1051 msgid "Authenticating..." msgstr "" -#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1230 +#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1226 msgid "View image" msgstr "" -#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:652 +#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:648 msgid "Play audio" msgstr "" -#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1232 +#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1228 msgid "View video" msgstr "" -#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:269 +#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:265 msgid "Download file" msgstr "" -#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:128 +#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:124 msgid "" "Couldn't load the iconv or recode extension needed for charset conversion. " "Either configure PHP to enable these extensions or disable charset " @@ -1696,7 +1696,7 @@ msgstr "" #: libraries/charset_conversion.lib.php:79 #: libraries/charset_conversion.lib.php:90 -#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:130 +#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:126 msgid "" "Couldn't use the iconv, libiconv, or recode_string functions, although the " "necessary extensions appear to be loaded. Check your PHP configuration." @@ -1704,7 +1704,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/messages.inc.php:170 +#: libraries/common.inc.php:583 libraries/messages.inc.php:166 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!" @@ -1738,22 +1738,22 @@ msgstr "" msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:636 libraries/messages.inc.php:448 +#: libraries/common.inc.php:636 libraries/messages.inc.php:444 #, 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/messages.inc.php:856 libraries/select_server.lib.php:41 +#: libraries/messages.inc.php:852 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/messages.inc.php:437 +#: libraries/common.inc.php:823 libraries/messages.inc.php:433 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.lib.php:147 libraries/messages.inc.php:499 +#: libraries/common.lib.php:147 libraries/messages.inc.php:495 #, php-format msgid "Max: %s%s" msgstr "" @@ -1773,7 +1773,7 @@ msgstr "en" #: libraries/common.lib.php:428 libraries/common.lib.php:430 #: libraries/common.lib.php:432 libraries/common.lib.php:448 #: libraries/common.lib.php:450 libraries/dbg/setup.php:25 -#: libraries/display_export.lib.php:164 libraries/messages.inc.php:267 +#: libraries/display_export.lib.php:164 libraries/messages.inc.php:263 #: libraries/relation.lib.php:97 libraries/sql_query_form.lib.php:451 #: libraries/sql_query_form.lib.php:454 main.php:229 pdf_pages.php:37 #: pdf_pages.php:43 pdf_pages.php:49 pdf_pages.php:54 @@ -1783,55 +1783,55 @@ msgstr "Dokumentasie" #: libraries/common.lib.php:581 libraries/core.lib.php:234 #: libraries/core.lib.php:263 libraries/import.lib.php:134 -#: libraries/messages.inc.php:297 pdf_schema.php:32 pdf_schema.php:232 +#: libraries/messages.inc.php:293 pdf_schema.php:32 pdf_schema.php:232 #: tbl_change.php:1027 tbl_operations.php:213 tbl_relation.php:290 #: view_operations.php:62 msgid "Error" msgstr "Fout" #: libraries/common.lib.php:595 libraries/header_printview.inc.php:61 -#: libraries/messages.inc.php:1023 server_processlist.php:60 +#: libraries/messages.inc.php:1019 server_processlist.php:60 #: server_status.php:247 msgid "SQL query" msgstr "SQL-stelling" -#: libraries/common.lib.php:634 libraries/messages.inc.php:538 +#: libraries/common.lib.php:634 libraries/messages.inc.php:534 msgid "MySQL said: " msgstr "MySQL het gepraat: " -#: libraries/common.lib.php:667 libraries/messages.inc.php:76 +#: libraries/common.lib.php:667 libraries/messages.inc.php:72 #: pdf_schema.php:241 user_password.php:115 msgid "Back" msgstr "Terug" -#: libraries/common.lib.php:1177 libraries/messages.inc.php:309 +#: libraries/common.lib.php:1177 libraries/messages.inc.php:305 #: setup/lib/messages.inc.php:353 msgid "Explain SQL" msgstr "Verduidelik SQL" -#: libraries/common.lib.php:1180 libraries/messages.inc.php:551 +#: libraries/common.lib.php:1180 libraries/messages.inc.php:547 msgid "Skip Explain SQL" msgstr "Ignoreer SQL Verduideliking" -#: libraries/common.lib.php:1212 libraries/messages.inc.php:563 +#: libraries/common.lib.php:1212 libraries/messages.inc.php:559 msgid "Without PHP Code" msgstr "Sonder PHP Kode" -#: libraries/common.lib.php:1215 libraries/messages.inc.php:649 +#: libraries/common.lib.php:1215 libraries/messages.inc.php:645 #: setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "Skep PHP Kode" -#: libraries/common.lib.php:1233 libraries/messages.inc.php:737 +#: libraries/common.lib.php:1233 libraries/messages.inc.php:733 #: server_status.php:341 setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "" -#: libraries/common.lib.php:1242 libraries/messages.inc.php:575 +#: libraries/common.lib.php:1242 libraries/messages.inc.php:571 msgid "Skip Validate SQL" msgstr "Ignoreer SQL Validasie" -#: libraries/common.lib.php:1245 libraries/messages.inc.php:1220 +#: libraries/common.lib.php:1245 libraries/messages.inc.php:1216 #: setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "Valideer SQL" @@ -1845,11 +1845,11 @@ msgid "Inline" msgstr "" #: libraries/common.lib.php:1332 libraries/common.lib.php:1347 -#: libraries/messages.inc.php:713 +#: libraries/messages.inc.php:709 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1351 libraries/messages.inc.php:1108 +#: libraries/common.lib.php:1351 libraries/messages.inc.php:1104 #: libraries/tbl_triggers.lib.php:28 server_processlist.php:58 msgid "Time" msgstr "" @@ -1883,46 +1883,56 @@ msgstr "PB" msgid "EiB" msgstr "EB" +#. l10n: Thousands separator +#: libraries/common.lib.php:1417 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: libraries/common.lib.php:1419 +msgid "." +msgstr "." + #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1584 +#: libraries/common.lib.php:1596 #: libraries/transformations/text_plain__dateformat.inc.php:28 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y at %I:%M %p" -#: libraries/common.lib.php:1886 +#: libraries/common.lib.php:1898 #, 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:2301 libraries/common.lib.php:2304 -#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:664 +#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:660 #: server_status.php:608 msgid "Begin" msgstr "Begin" -#: libraries/common.lib.php:2302 libraries/common.lib.php:2305 -#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:665 +#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:661 #: server_binlog.php:168 server_binlog.php:170 msgid "Previous" msgstr "Vorige" -#: libraries/common.lib.php:2333 libraries/common.lib.php:2336 -#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:289 +#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:285 msgid "End" msgstr "Einde" -#: libraries/common.lib.php:2409 libraries/messages.inc.php:455 +#: libraries/common.lib.php:2421 libraries/messages.inc.php:451 #, php-format msgid "Jump to database "%s"." msgstr "" -#: libraries/common.lib.php:2429 libraries/messages.inc.php:461 +#: libraries/common.lib.php:2441 libraries/messages.inc.php:457 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/core.lib.php:286 libraries/dbg/setup.php:22 -#: libraries/messages.inc.php:127 +#: libraries/messages.inc.php:123 #, php-format msgid "" "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " @@ -1930,116 +1940,116 @@ msgid "" msgstr "" #: libraries/db_events.inc.php:20 libraries/db_events.inc.php:22 -#: libraries/export/sql.php:415 libraries/messages.inc.php:306 +#: libraries/export/sql.php:415 libraries/messages.inc.php:302 msgid "Events" msgstr "" #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 -#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:541 +#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:537 #: libraries/tbl_triggers.lib.php:27 setup/frames/index.inc.php:112 msgid "Name" msgstr "Naam" -#: libraries/db_links.inc.php:45 libraries/messages.inc.php:216 +#: libraries/db_links.inc.php:45 libraries/messages.inc.php:212 #, php-format msgid "Database %s has been dropped." msgstr "Databasis %s is verwyder." #: libraries/db_links.inc.php:57 libraries/db_links.inc.php:58 -#: libraries/db_links.inc.php:59 libraries/messages.inc.php:234 +#: libraries/db_links.inc.php:59 libraries/messages.inc.php:230 msgid "Database seems to be empty!" msgstr "" -#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1025 +#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1021 #: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60 #: querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1152 +#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1148 #: libraries/tbl_links.inc.php:69 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:86 libraries/messages.inc.php:719 +#: libraries/db_links.inc.php:86 libraries/messages.inc.php:715 msgid "Query" msgstr "Navraag dmv Voorbeeld" -#: libraries/db_links.inc.php:91 libraries/messages.inc.php:253 +#: libraries/db_links.inc.php:91 libraries/messages.inc.php:249 msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:98 libraries/messages.inc.php:397 +#: libraries/db_links.inc.php:98 libraries/messages.inc.php:393 #: libraries/server_links.inc.php:88 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:104 libraries/messages.inc.php:587 +#: libraries/db_links.inc.php:104 libraries/messages.inc.php:583 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" msgstr "Operasies" -#: libraries/db_links.inc.php:111 libraries/messages.inc.php:709 +#: libraries/db_links.inc.php:111 libraries/messages.inc.php:705 #: libraries/server_links.inc.php:66 server_privileges.php:72 #: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117 msgid "Privileges" msgstr "Regte" #: libraries/db_routines.inc.php:30 libraries/db_routines.inc.php:32 -#: libraries/messages.inc.php:812 +#: libraries/messages.inc.php:808 msgid "Routines" msgstr "" -#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:811 +#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:807 msgid "Return type" msgstr "" #: libraries/db_structure.lib.php:57 libraries/display_tbl.lib.php:1848 -#: libraries/messages.inc.php:65 +#: libraries/messages.inc.php:61 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "" -#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:593 +#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:589 #: server_databases.php:142 tbl_printview.php:336 tbl_structure.php:683 msgid "Overhead" msgstr "Overhead" #: libraries/dbi/mysql.dbi.lib.php:112 libraries/dbi/mysqli.dbi.lib.php:124 -#: libraries/messages.inc.php:176 +#: libraries/messages.inc.php:172 msgid "Connection for controluser as defined in your configuration failed." msgstr "" #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 -#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:855 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:851 msgid "The server is not responding" msgstr "" #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:1010 +#: libraries/messages.inc.php:1006 msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "" -#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:255 +#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:251 #: tbl_structure.php:609 msgid "Details..." msgstr "" -#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:143 +#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:139 #: main.php:91 user_password.php:111 user_password.php:129 msgid "Change password" msgstr "Verander wagwoord" -#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:561 +#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:557 #: libraries/replication_gui.lib.php:341 server_privileges.php:768 msgid "No Password" msgstr "Geen Wagwoord" -#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:610 +#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:606 #: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60 #: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335 #: libraries/replication_gui.lib.php:345 server_privileges.php:757 @@ -2048,13 +2058,13 @@ msgstr "Geen Wagwoord" msgid "Password" msgstr "Wagwoord" -#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:806 +#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:802 #: libraries/replication_gui.lib.php:349 libraries/replication_gui.lib.php:352 #: server_privileges.php:776 server_privileges.php:779 msgid "Re-type" msgstr "Tik weer" -#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:608 +#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:604 msgid "Password Hashing" msgstr "" @@ -2062,91 +2072,91 @@ msgstr "" msgid "MySQL 4.0 compatible" msgstr "" -#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:353 +#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:349 #: libraries/replication_gui.lib.php:356 server_privileges.php:783 msgid "Generate Password" msgstr "" -#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:352 +#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:348 #: libraries/replication_gui.lib.php:359 server_privileges.php:786 #, fuzzy msgid "Generate" msgstr "Voortgebring deur" #: libraries/display_create_database.lib.php:22 -#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:189 +#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:185 msgid "Create new database" msgstr "Skep 'n nuwe databasis" -#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:185 +#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:181 msgid "Create" msgstr "Skep" -#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:564 +#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:560 #: server_privileges.php:74 server_privileges.php:1388 #: server_replication.php:35 msgid "No Privileges" msgstr "Geen Regte" -#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:445 +#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:441 msgid "Table must have at least one field." msgstr "" -#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:190 +#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:186 #, php-format msgid "Create table on database %s" msgstr "Skep 'n nuwe tabel op databasis %s" -#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:577 +#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:573 msgid "Number of fields" msgstr "" -#: libraries/display_export.lib.php:42 libraries/messages.inc.php:124 +#: libraries/display_export.lib.php:42 libraries/messages.inc.php:120 msgid "Could not load export plugins, please check your installation!" msgstr "" -#: libraries/display_export.lib.php:107 libraries/messages.inc.php:277 +#: libraries/display_export.lib.php:107 libraries/messages.inc.php:273 #, php-format msgid "Dump %s row(s) starting at record # %s" msgstr "Stort %s rye beginnende by rekord # %s." -#: libraries/display_export.lib.php:115 libraries/messages.inc.php:274 +#: libraries/display_export.lib.php:115 libraries/messages.inc.php:270 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:125 libraries/messages.inc.php:852 +#: libraries/display_export.lib.php:125 libraries/messages.inc.php:848 #: setup/lib/messages.inc.php:82 msgid "Save as file" msgstr "Stoor as leer (file)" -#: libraries/display_export.lib.php:134 libraries/messages.inc.php:828 +#: libraries/display_export.lib.php:134 libraries/messages.inc.php:824 #, php-format msgid "Save on server in %s directory" msgstr "" -#: libraries/display_export.lib.php:142 libraries/messages.inc.php:594 +#: libraries/display_export.lib.php:142 libraries/messages.inc.php:590 #: setup/lib/messages.inc.php:90 msgid "Overwrite existing file(s)" msgstr "" -#: libraries/display_export.lib.php:148 libraries/messages.inc.php:330 +#: libraries/display_export.lib.php:148 libraries/messages.inc.php:326 msgid "File name template" msgstr "" -#: libraries/display_export.lib.php:152 libraries/messages.inc.php:327 +#: libraries/display_export.lib.php:152 libraries/messages.inc.php:323 #, fuzzy msgid "server name" msgstr "Gebruiker naam" -#: libraries/display_export.lib.php:155 libraries/messages.inc.php:326 +#: libraries/display_export.lib.php:155 libraries/messages.inc.php:322 msgid "database name" msgstr "" -#: libraries/display_export.lib.php:158 libraries/messages.inc.php:328 +#: libraries/display_export.lib.php:158 libraries/messages.inc.php:324 msgid "table name" msgstr "" -#: libraries/display_export.lib.php:162 libraries/messages.inc.php:329 +#: libraries/display_export.lib.php:162 libraries/messages.inc.php:325 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2154,24 +2164,24 @@ msgid "" "3$s. Other text will be kept as is." msgstr "" -#: libraries/display_export.lib.php:202 libraries/messages.inc.php:331 +#: libraries/display_export.lib.php:202 libraries/messages.inc.php:327 msgid "remember template" msgstr "" #: libraries/display_export.lib.php:210 libraries/display_import.lib.php:178 -#: libraries/display_import.lib.php:191 libraries/messages.inc.php:145 +#: libraries/display_import.lib.php:191 libraries/messages.inc.php:141 #: libraries/sql_query_form.lib.php:549 msgid "Character set of the file:" msgstr "Karakterstel van die leer:" -#: libraries/display_export.lib.php:235 libraries/messages.inc.php:166 +#: libraries/display_export.lib.php:235 libraries/messages.inc.php:162 #: setup/lib/messages.inc.php:84 msgid "Compression" 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/messages.inc.php:558 +#: libraries/export/sql.php:868 libraries/messages.inc.php:554 #: libraries/tbl_properties.inc.php:575 server_privileges.php:1836 #: server_processlist.php:75 msgid "None" @@ -2195,276 +2205,276 @@ msgstr "\"ge-gzip\"" msgid "bzipped" msgstr "\"ge-bzip\"" -#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1018 +#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1014 msgid "SQL compatibility mode" msgstr "" -#: libraries/display_import.lib.php:67 libraries/messages.inc.php:398 +#: libraries/display_import.lib.php:67 libraries/messages.inc.php:394 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " "browsers." msgstr "" -#: libraries/display_import.lib.php:77 libraries/messages.inc.php:406 +#: libraries/display_import.lib.php:77 libraries/messages.inc.php:402 msgid "The file is being processed, please be patient." msgstr "" -#: libraries/display_import.lib.php:99 libraries/messages.inc.php:408 +#: libraries/display_import.lib.php:99 libraries/messages.inc.php:404 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." msgstr "" -#: libraries/display_import.lib.php:126 libraries/messages.inc.php:333 +#: libraries/display_import.lib.php:126 libraries/messages.inc.php:329 msgid "File to import" msgstr "" -#: libraries/display_import.lib.php:137 libraries/messages.inc.php:486 +#: libraries/display_import.lib.php:137 libraries/messages.inc.php:482 #: libraries/sql_query_form.lib.php:524 msgid "Location of the text file" msgstr "Soek die teksleer" -#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1203 +#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1199 msgid "File uploads are not allowed on this server." msgstr "" -#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1235 +#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1231 #: libraries/sql_query_form.lib.php:533 tbl_change.php:1028 msgid "The directory you set for upload work cannot be reached" msgstr "" -#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1236 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1232 #: libraries/sql_query_form.lib.php:536 tbl_change.php:1031 msgid "web server upload directory" msgstr "" -#: libraries/display_import.lib.php:212 libraries/messages.inc.php:167 +#: libraries/display_import.lib.php:212 libraries/messages.inc.php:163 #, php-format msgid "Imported file compression will be automatically detected from: %s" msgstr "" -#: libraries/display_import.lib.php:219 libraries/messages.inc.php:600 +#: libraries/display_import.lib.php:219 libraries/messages.inc.php:596 msgid "Partial import" msgstr "" -#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1105 +#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1101 #, php-format msgid "" "Previous import timed out, after resubmitting will continue from position %d." msgstr "" -#: libraries/display_import.lib.php:232 libraries/messages.inc.php:51 +#: libraries/display_import.lib.php:232 libraries/messages.inc.php:47 msgid "" "Allow the interruption of an import in case the script detects it is close " "to the PHP timeout limit. This might be good way to import large files, " "however it can break transactions." msgstr "" -#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1004 +#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1000 #: setup/lib/messages.inc.php:161 msgid "Number of records (queries) to skip from start" msgstr "" -#: libraries/display_import.lib.php:255 libraries/messages.inc.php:396 +#: libraries/display_import.lib.php:255 libraries/messages.inc.php:392 #: setup/lib/messages.inc.php:160 msgid "Format of imported file" msgstr "" #: libraries/display_select_lang.lib.php:45 -#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:465 +#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:461 #: setup/frames/index.inc.php:70 msgid "Language" msgstr "" -#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:447 +#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:443 #, php-format msgid "%d is not valid row number." msgstr "" -#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:814 +#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:810 msgid "row(s) starting from record #" msgstr "ry(e) beginnende vanaf rekord #" -#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:817 +#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:813 msgid "horizontal" msgstr "horisontale" -#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:816 +#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:812 msgid "horizontal (rotated headers)" msgstr "" -#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:819 +#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:815 msgid "vertical" msgstr "vertikale" -#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:818 +#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:814 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "in %s formaat en herhaal opskrifte na %s selle" -#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:495 +#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:491 msgid "This operation could take a long time. Proceed anyway?" msgstr "" -#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1012 +#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1008 msgid "Sort by key" msgstr "" #: libraries/display_tbl.lib.php:555 libraries/import.lib.php:1082 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:591 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:587 #: tbl_select.php:267 tbl_structure.php:754 #, fuzzy msgid "Options" msgstr "Operasies" #: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:570 -#: libraries/messages.inc.php:601 +#: libraries/messages.inc.php:597 msgid "Partial Texts" msgstr "Gedeeltelike Tekste" #: libraries/display_tbl.lib.php:561 libraries/display_tbl.lib.php:574 -#: libraries/messages.inc.php:346 +#: libraries/messages.inc.php:342 msgid "Full Texts" msgstr "Volle Tekste" -#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:739 +#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:735 #, fuzzy msgid "Relational key" msgstr "Relasie uitsig" -#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:738 +#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:734 msgid "Relational display field" msgstr "" -#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:872 +#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:868 msgid "Show binary contents" msgstr "" -#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:873 +#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:869 msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:871 +#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:867 msgid "Show binary contents as HEX" msgstr "" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:375 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:371 #: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320 msgid "Hide" msgstr "" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:508 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:504 #: libraries/tbl_properties.inc.php:144 transformation_overview.php:47 msgid "Browser transformation" msgstr "" #: libraries/display_tbl.lib.php:1126 libraries/display_tbl.lib.php:1130 -#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:308 +#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:304 msgid "Execute bookmarked query" msgstr "" #: libraries/display_tbl.lib.php:1145 libraries/display_tbl.lib.php:1157 -#: libraries/messages.inc.php:244 +#: libraries/messages.inc.php:240 msgid "The row has been deleted" msgstr "Die ry is verwyder" #: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056 -#: libraries/messages.inc.php:460 server_processlist.php:71 +#: libraries/messages.inc.php:456 server_processlist.php:71 #: tbl_row_action.php:64 msgid "Kill" msgstr "Vermoor" -#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:849 +#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:845 msgid "in query" msgstr "in navraag" -#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:881 +#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:877 msgid "Showing rows" msgstr "Vertoon rye" -#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1113 +#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1109 msgid "total" msgstr "totaal" -#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:727 +#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:723 #: sql.php:524 #, php-format msgid "Query took %01.4f sec" msgstr "" -#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:135 +#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:131 #: 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:471 msgid "Change" msgstr "Verander" -#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:724 +#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:720 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:671 +#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:667 msgid "Print view (with full texts)" msgstr "" -#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:482 +#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:478 msgid "Link not found" msgstr "Skakel nie gevind nie" -#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1224 +#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1220 #: main.php:228 #, fuzzy msgid "Version information" msgstr "Wys PHP informasie" -#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:423 +#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:419 msgid "Data home directory" msgstr "" -#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:424 +#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:420 msgid "The common part of the directory path for all InnoDB data files." msgstr "" -#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:422 +#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:418 #, fuzzy msgid "Data files" msgstr "Slegs Data" -#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:418 +#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:414 msgid "Autoextend increment" msgstr "" -#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:419 +#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:415 msgid "" " The increment size for extending the size of an autoextending tablespace " "when it becomes full." msgstr "" -#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:420 +#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:416 msgid "Buffer pool size" msgstr "" -#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:421 +#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:417 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." msgstr "" -#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:112 +#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:108 msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:426 +#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:422 #: server_status.php:306 msgid "InnoDB Status" msgstr "" -#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:113 +#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:109 msgid "Buffer Pool Usage" msgstr "" -#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1114 +#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1110 #: server_databases.php:137 server_databases.php:305 server_status.php:414 #: server_status.php:475 server_status.php:496 tbl_printview.php:351 #: tbl_structure.php:697 @@ -2472,191 +2482,191 @@ msgstr "" msgid "Total" msgstr "totaal" -#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:425 +#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:421 msgid "pages" msgstr "" -#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:343 +#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:339 msgid "Free pages" msgstr "" -#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:259 +#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:255 msgid "Dirty pages" msgstr "" -#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:230 +#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:226 msgid "Pages containing data" msgstr "" -#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:598 +#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:594 #, fuzzy msgid "Pages to be flushed" msgstr "Tabel %s is geflush" -#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:119 +#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:115 msgid "Busy pages" msgstr "" -#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:467 +#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:463 msgid "Latched pages" msgstr "" -#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:111 +#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:107 msgid "Buffer Pool Activity" msgstr "" -#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:731 +#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:727 msgid "Read requests" msgstr "" -#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1244 +#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1240 msgid "Write requests" msgstr "" -#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:115 +#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:111 msgid "Read misses" msgstr "" -#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:117 +#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:113 msgid "Write waits" msgstr "" -#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:114 +#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:110 msgid "Read misses in %" msgstr "" -#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:116 +#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:112 msgid "Write waits in %" msgstr "" -#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:522 +#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:518 msgid "Data pointer size" msgstr "" -#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:523 +#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:519 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." msgstr "" -#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:528 +#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:524 msgid "Automatic recovery mode" msgstr "" -#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:529 +#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:525 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." msgstr "" -#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:527 +#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:523 msgid "Maximum size for temporary sort files" msgstr "" -#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:526 +#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:522 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " "INFILE)." msgstr "" -#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:525 +#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:521 msgid "Maximum size for temporary files on index creation" msgstr "" -#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:524 +#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:520 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " "method." msgstr "" -#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:531 +#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:527 msgid "Repair threads" msgstr "" -#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:530 +#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:526 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." msgstr "" -#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:533 +#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:529 msgid "Sort buffer size" msgstr "" -#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:532 +#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:528 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." msgstr "" -#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:620 +#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:616 msgid "Index cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:619 +#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:615 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." msgstr "" -#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:630 +#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:626 msgid "Record cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:629 +#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:625 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " "to the handle data (.xtd) and row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:624 +#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:620 msgid "Log cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:623 +#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:619 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:628 +#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:624 msgid "Log file threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:627 +#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:623 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:634 +#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:630 msgid "Transaction buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:633 +#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:629 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." msgstr "" -#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:611 +#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:607 msgid "Checkpoint frequency" msgstr "" -#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:612 +#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:608 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." msgstr "" -#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:615 +#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:611 msgid "Data log threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:616 +#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:612 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -2664,48 +2674,48 @@ msgid "" "that can be stored in the database." msgstr "" -#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:618 +#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:614 msgid "Garbage threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:617 +#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:613 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." msgstr "" -#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:622 +#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:618 msgid "Log buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:621 +#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:617 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " "required to write a data log." msgstr "" -#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:613 +#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:609 msgid "Data file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:614 +#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:610 msgid "The grow size of the handle data (.xtd) files." msgstr "" -#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:632 +#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:628 msgid "Row file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:631 +#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:627 msgid "The grow size of the row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:626 +#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:622 msgid "Log file count" msgstr "" -#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:625 +#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:621 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -2715,19 +2725,19 @@ msgstr "" #: libraries/export/htmlword.php:132 libraries/export/odt.php:168 #: libraries/export/sql.php:881 libraries/export/texytext.php:130 -#: libraries/messages.inc.php:275 +#: libraries/messages.inc.php:271 msgid "Dumping data for table" msgstr "Stort data vir tabel" #: libraries/export/htmlword.php:185 libraries/export/odt.php:238 #: libraries/export/sql.php:785 libraries/export/texytext.php:177 -#: libraries/messages.inc.php:1086 +#: libraries/messages.inc.php:1082 msgid "Table structure for table" msgstr "Tabel struktuur vir tabel" #: libraries/export/latex.php:125 libraries/export/sql.php:232 #: libraries/export/xml.php:102 libraries/header_printview.inc.php:57 -#: libraries/messages.inc.php:381 libraries/replication_gui.lib.php:63 +#: libraries/messages.inc.php:377 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:170 libraries/replication_gui.lib.php:265 #: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325 #: server_privileges.php:692 server_privileges.php:695 @@ -2739,188 +2749,188 @@ msgstr "Gasheer (host)" #: libraries/export/latex.php:130 libraries/export/sql.php:233 #: libraries/export/xml.php:107 libraries/header_printview.inc.php:59 -#: libraries/messages.inc.php:354 +#: libraries/messages.inc.php:350 msgid "Generation Time" msgstr "Generasie Tyd" #: libraries/export/latex.php:131 libraries/export/sql.php:235 -#: libraries/export/xml.php:108 libraries/messages.inc.php:864 main.php:186 +#: libraries/export/xml.php:108 libraries/messages.inc.php:860 main.php:186 msgid "Server version" msgstr "Bediener weergawe" #: libraries/export/latex.php:132 libraries/export/sql.php:236 -#: libraries/export/xml.php:109 libraries/messages.inc.php:651 +#: libraries/export/xml.php:109 libraries/messages.inc.php:647 msgid "PHP Version" msgstr "PHP Version" #: libraries/export/latex.php:201 libraries/export/sql.php:868 -#: libraries/messages.inc.php:226 server_databases.php:127 +#: libraries/messages.inc.php:222 server_databases.php:127 #: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317 #: tbl_structure.php:666 msgid "Data" msgstr "Data" -#: libraries/export/odt.php:318 libraries/messages.inc.php:506 +#: libraries/export/odt.php:318 libraries/messages.inc.php:502 #: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "" -#: libraries/export/sql.php:387 libraries/messages.inc.php:711 +#: libraries/export/sql.php:387 libraries/messages.inc.php:707 msgid "Procedures" msgstr "" -#: libraries/export/sql.php:401 libraries/messages.inc.php:348 +#: libraries/export/sql.php:401 libraries/messages.inc.php:344 #, fuzzy msgid "Functions" msgstr "Funksie" -#: libraries/export/sql.php:618 libraries/messages.inc.php:174 +#: libraries/export/sql.php:618 libraries/messages.inc.php:170 msgid "Constraints for dumped tables" msgstr "" -#: libraries/export/sql.php:627 libraries/messages.inc.php:175 +#: libraries/export/sql.php:627 libraries/messages.inc.php:171 msgid "Constraints for table" msgstr "" -#: libraries/export/sql.php:727 libraries/messages.inc.php:512 +#: libraries/export/sql.php:727 libraries/messages.inc.php:508 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/export/sql.php:739 libraries/messages.inc.php:743 +#: libraries/export/sql.php:739 libraries/messages.inc.php:739 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/export/sql.php:796 libraries/messages.inc.php:1178 +#: libraries/export/sql.php:796 libraries/messages.inc.php:1174 #: libraries/tbl_triggers.lib.php:19 msgid "Triggers" msgstr "" -#: libraries/export/sql.php:808 libraries/messages.inc.php:1046 +#: libraries/export/sql.php:808 libraries/messages.inc.php:1042 #, fuzzy msgid "Structure for view" msgstr "Slegs struktuur" -#: libraries/export/sql.php:817 libraries/messages.inc.php:1029 +#: libraries/export/sql.php:817 libraries/messages.inc.php:1025 msgid "Stand-in structure for view" msgstr "" #: libraries/footer.inc.php:184 libraries/footer.inc.php:195 -#: libraries/footer.inc.php:198 libraries/messages.inc.php:586 +#: libraries/footer.inc.php:198 libraries/messages.inc.php:582 msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/header.inc.php:115 libraries/messages.inc.php:542 +#: libraries/header.inc.php:115 libraries/messages.inc.php:538 #, fuzzy msgid "New table" msgstr "Geen tabelle" #: libraries/header_printview.inc.php:50 libraries/header_printview.inc.php:55 -#: libraries/messages.inc.php:1024 +#: libraries/messages.inc.php:1020 msgid "SQL result" msgstr "SQL resultaat" -#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:350 +#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:346 msgid "Generated by" msgstr "Voortgebring deur" #: libraries/header_printview.inc.php:63 libraries/import.lib.php:145 -#: libraries/messages.inc.php:820 navigation.php:652 navigation.php:674 +#: libraries/messages.inc.php:816 navigation.php:652 navigation.php:674 #: server_databases.php:122 tbl_printview.php:394 tbl_structure.php:366 #: tbl_structure.php:778 msgid "Rows" msgstr "Rye" -#: libraries/import.lib.php:150 libraries/messages.inc.php:285 sql.php:520 +#: libraries/import.lib.php:150 libraries/messages.inc.php:281 sql.php:520 #: tbl_change.php:181 tbl_get_field.php:35 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL het niks teruggegee nie (dus nul rye)." -#: libraries/import.lib.php:1078 libraries/messages.inc.php:399 +#: libraries/import.lib.php:1078 libraries/messages.inc.php:395 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1079 libraries/messages.inc.php:400 +#: libraries/import.lib.php:1079 libraries/messages.inc.php:396 msgid "View a structure`s contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1080 libraries/messages.inc.php:401 +#: libraries/import.lib.php:1080 libraries/messages.inc.php:397 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1081 libraries/messages.inc.php:402 +#: libraries/import.lib.php:1081 libraries/messages.inc.php:398 msgid "Edit its structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1084 libraries/messages.inc.php:362 +#: libraries/import.lib.php:1084 libraries/messages.inc.php:358 #, fuzzy msgid "Go to database" msgstr "Geen databasisse" #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:869 +#: libraries/messages.inc.php:865 msgid "settings" msgstr "" -#: libraries/import.lib.php:1106 libraries/messages.inc.php:363 +#: libraries/import.lib.php:1106 libraries/messages.inc.php:359 msgid "Go to table" msgstr "" -#: libraries/import.lib.php:1109 libraries/messages.inc.php:1047 +#: libraries/import.lib.php:1109 libraries/messages.inc.php:1043 #, fuzzy msgid "structure" msgstr "Struktuur" -#: libraries/import.lib.php:1115 libraries/messages.inc.php:364 +#: libraries/import.lib.php:1115 libraries/messages.inc.php:360 msgid "Go to view" msgstr "" #: libraries/import/csv.php:58 libraries/import/csv.php:70 #: libraries/import/csv.php:74 libraries/import/csv.php:78 -#: libraries/messages.inc.php:442 +#: libraries/messages.inc.php:438 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "" -#: libraries/import/csv.php:59 libraries/messages.inc.php:323 +#: libraries/import/csv.php:59 libraries/messages.inc.php:319 msgid "Fields terminated by" msgstr "Velde beeindig deur" -#: libraries/import/csv.php:71 libraries/messages.inc.php:320 +#: libraries/import/csv.php:71 libraries/messages.inc.php:316 msgid "Fields enclosed by" msgstr "Velde omring met" -#: libraries/import/csv.php:75 libraries/messages.inc.php:321 +#: libraries/import/csv.php:75 libraries/messages.inc.php:317 msgid "Fields escaped by" msgstr "Velde ontsnap (escaped) deur" -#: libraries/import/csv.php:79 libraries/messages.inc.php:481 +#: libraries/import/csv.php:79 libraries/messages.inc.php:477 msgid "Lines terminated by" msgstr "Lyne beeindig deur" -#: libraries/import/csv.php:119 libraries/messages.inc.php:439 +#: libraries/import/csv.php:119 libraries/messages.inc.php:435 #, php-format msgid "Invalid column (%s) specified!" msgstr "" #: libraries/import/csv.php:177 libraries/import/csv.php:424 -#: libraries/messages.inc.php:441 +#: libraries/messages.inc.php:437 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/import/csv.php:312 libraries/messages.inc.php:440 +#: libraries/import/csv.php:312 libraries/messages.inc.php:436 #, php-format msgid "Invalid field count in CSV input on line %d." msgstr "" -#: libraries/import/ldi.php:55 libraries/messages.inc.php:446 +#: libraries/import/ldi.php:55 libraries/messages.inc.php:442 msgid "This plugin does not support compressed imports!" msgstr "" #: libraries/import/xml.php:74 libraries/import/xml.php:130 -#: libraries/messages.inc.php:1247 +#: libraries/messages.inc.php:1243 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -2949,789 +2959,779 @@ msgstr "" msgid "ltr" msgstr "ltr" -#. l10n: Thousands separator -#: libraries/messages.inc.php:21 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: libraries/messages.inc.php:23 -msgid "." -msgstr "." - -#: libraries/messages.inc.php:25 server_status.php:461 +#: libraries/messages.inc.php:21 server_status.php:461 msgid "Aborted" msgstr "" -#: libraries/messages.inc.php:28 main.php:68 +#: libraries/messages.inc.php:24 main.php:68 #, fuzzy msgid "Actions" msgstr "Aksie" -#: libraries/messages.inc.php:34 libraries/tbl_properties.inc.php:780 +#: libraries/messages.inc.php:30 libraries/tbl_properties.inc.php:780 #: tbl_structure.php:543 #, fuzzy, php-format msgid "Add %s field(s)" msgstr "Voeg 'n nuwe veld by" -#: libraries/messages.inc.php:35 +#: libraries/messages.inc.php:31 msgid "Add custom comment into header (\\n splits lines)" msgstr "" -#: libraries/messages.inc.php:36 +#: libraries/messages.inc.php:32 msgid "Add into comments" msgstr "" -#: libraries/messages.inc.php:37 tbl_structure.php:541 +#: libraries/messages.inc.php:33 tbl_structure.php:541 msgid "Add new field" msgstr "Voeg 'n nuwe veld by" -#: libraries/messages.inc.php:38 server_privileges.php:1886 +#: libraries/messages.inc.php:34 server_privileges.php:1886 msgid "Add privileges on the following database" msgstr "" -#: libraries/messages.inc.php:39 server_privileges.php:1907 +#: libraries/messages.inc.php:35 server_privileges.php:1907 msgid "Add privileges on the following table" msgstr "" -#: libraries/messages.inc.php:40 tbl_select.php:288 +#: libraries/messages.inc.php:36 tbl_select.php:288 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Voeg soek kriteria by (laaste deel van die \"where\" in SQL SELECT):" -#: libraries/messages.inc.php:41 tbl_indexes.php:251 +#: libraries/messages.inc.php:37 tbl_indexes.php:251 #, php-format msgid "Add to index  %s column(s)" msgstr "Voeg by indeks  %s kolom(me)" -#: libraries/messages.inc.php:42 server_privileges.php:1570 +#: libraries/messages.inc.php:38 server_privileges.php:1570 #: server_privileges.php:1594 server_privileges.php:1988 #: server_privileges.php:2177 msgid "Add a new User" msgstr "Voeg 'n nuwe gebruiker by" -#: libraries/messages.inc.php:43 server_privileges.php:931 +#: libraries/messages.inc.php:39 server_privileges.php:931 msgid "You have added a new user." msgstr "Jy het 'n nuwe gebruiker bygevoeg." -#: libraries/messages.inc.php:44 server_privileges.php:571 +#: libraries/messages.inc.php:40 server_privileges.php:571 msgid "Administration" msgstr "" -#: libraries/messages.inc.php:45 tbl_structure.php:557 +#: libraries/messages.inc.php:41 tbl_structure.php:557 #, php-format msgid "After %s" msgstr "Na %s" -#: libraries/messages.inc.php:46 tbl_change.php:1147 +#: libraries/messages.inc.php:42 tbl_change.php:1147 msgid "Go back to previous page" msgstr "Terug na vorige bladsy" -#: libraries/messages.inc.php:47 tbl_change.php:1148 +#: libraries/messages.inc.php:43 tbl_change.php:1148 msgid "Insert another new row" msgstr "Voeg 'n nuwe ry by" -#: libraries/messages.inc.php:48 tbl_change.php:1160 +#: libraries/messages.inc.php:44 tbl_change.php:1160 msgid "Edit next row" msgstr "" -#: libraries/messages.inc.php:49 tbl_change.php:1152 +#: libraries/messages.inc.php:45 tbl_change.php:1152 #, fuzzy msgid "Go back to this page" msgstr "Terug na vorige bladsy" -#: libraries/messages.inc.php:50 querywindow.php:115 +#: libraries/messages.inc.php:46 querywindow.php:115 msgid "All" msgstr "Alle" -#: libraries/messages.inc.php:53 tbl_operations.php:249 +#: libraries/messages.inc.php:49 tbl_operations.php:249 msgid "Alter table order by" msgstr "Verander tabel sorteer volgens" -#: libraries/messages.inc.php:54 tbl_operations.php:660 +#: libraries/messages.inc.php:50 tbl_operations.php:660 msgid "Analyze" msgstr "" -#: libraries/messages.inc.php:57 +#: libraries/messages.inc.php:53 #, fuzzy msgid "and" msgstr "En" -#: libraries/messages.inc.php:59 pmd_general.php:87 +#: libraries/messages.inc.php:55 pmd_general.php:87 msgid "Angular links" msgstr "" -#: libraries/messages.inc.php:60 tbl_structure.php:401 tbl_structure.php:415 +#: libraries/messages.inc.php:56 tbl_structure.php:401 tbl_structure.php:415 #: tbl_structure.php:429 #, php-format msgid "An index has been added on %s" msgstr "'n Indeks is bygevoeg op %s" -#: libraries/messages.inc.php:61 server_privileges.php:1521 +#: libraries/messages.inc.php:57 server_privileges.php:1521 #: server_privileges.php:2123 msgid "Any" msgstr "Enige" -#: libraries/messages.inc.php:62 libraries/replication_gui.lib.php:298 +#: libraries/messages.inc.php:58 libraries/replication_gui.lib.php:298 #: server_privileges.php:725 msgid "Any host" msgstr "Enige gasheer (host)" -#: libraries/messages.inc.php:63 libraries/replication_gui.lib.php:250 +#: libraries/messages.inc.php:59 libraries/replication_gui.lib.php:250 #: server_privileges.php:677 msgid "Any user" msgstr "Enige gebruiker" -#: libraries/messages.inc.php:64 server_synchronize.php:449 +#: libraries/messages.inc.php:60 server_synchronize.php:449 #: server_synchronize.php:894 msgid "Apply Selected Changes" msgstr "" -#: libraries/messages.inc.php:66 tbl_structure.php:386 +#: libraries/messages.inc.php:62 tbl_structure.php:386 #, php-format msgid "A primary key has been added on %s" msgstr "'n primere sleutel is bygevoeg op %s" -#: libraries/messages.inc.php:67 libraries/mysql_charsets.lib.php:368 +#: libraries/messages.inc.php:63 libraries/mysql_charsets.lib.php:368 msgid "Arabic" msgstr "" -#: libraries/messages.inc.php:68 libraries/mysql_charsets.lib.php:359 +#: libraries/messages.inc.php:64 libraries/mysql_charsets.lib.php:359 msgid "Armenian" msgstr "" -#: libraries/messages.inc.php:70 libraries/tbl_properties.inc.php:394 +#: libraries/messages.inc.php:66 libraries/tbl_properties.inc.php:394 msgid "As defined:" msgstr "" -#: libraries/messages.inc.php:71 tbl_structure.php:556 +#: libraries/messages.inc.php:67 tbl_structure.php:556 msgid "At Beginning of Table" msgstr "By Begin van Tabel" -#: libraries/messages.inc.php:72 tbl_structure.php:555 +#: libraries/messages.inc.php:68 tbl_structure.php:555 msgid "At End of Table" msgstr "By Einde van Tabel" -#: libraries/messages.inc.php:73 libraries/tbl_properties.inc.php:108 +#: libraries/messages.inc.php:69 libraries/tbl_properties.inc.php:108 #: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:144 #: tbl_structure.php:180 msgid "Attributes" msgstr "Kenmerke" -#: libraries/messages.inc.php:74 pdf_pages.php:303 pdf_pages.php:306 +#: libraries/messages.inc.php:70 pdf_pages.php:303 pdf_pages.php:306 msgid "Automatic layout" msgstr "" -#: libraries/messages.inc.php:77 libraries/mysql_charsets.lib.php:354 +#: libraries/messages.inc.php:73 libraries/mysql_charsets.lib.php:354 msgid "Baltic" msgstr "" -#: libraries/messages.inc.php:78 libraries/sqlparser.lib.php:175 +#: libraries/messages.inc.php:74 libraries/sqlparser.lib.php:175 msgid "BEGIN CUT" msgstr "BEGIN UITKNIPSEL" -#: libraries/messages.inc.php:79 libraries/sqlparser.lib.php:179 +#: libraries/messages.inc.php:75 libraries/sqlparser.lib.php:179 msgid "BEGIN RAW" msgstr "BEGIN ONVERANDERD (RAW)" -#: libraries/messages.inc.php:80 libraries/mysql_charsets.lib.php:201 +#: libraries/messages.inc.php:76 libraries/mysql_charsets.lib.php:201 #: libraries/mysql_charsets.lib.php:402 tbl_change.php:518 msgid "Binary" msgstr "Biner" -#: libraries/messages.inc.php:81 tbl_change.php:894 +#: libraries/messages.inc.php:77 tbl_change.php:894 msgid "Binary - do not edit" msgstr "Biner - moenie verander nie" -#: libraries/messages.inc.php:82 libraries/server_links.inc.php:76 +#: libraries/messages.inc.php:78 libraries/server_links.inc.php:76 #: server_binlog.php:110 server_status.php:253 test/theme.php:121 #, fuzzy msgid "Binary log" msgstr "Biner" -#: libraries/messages.inc.php:83 server_binlog.php:217 +#: libraries/messages.inc.php:79 server_binlog.php:217 msgid "Event type" msgstr "" -#: libraries/messages.inc.php:84 server_binlog.php:220 +#: libraries/messages.inc.php:80 server_binlog.php:220 msgid "Information" msgstr "" -#: libraries/messages.inc.php:85 server_binlog.php:215 +#: libraries/messages.inc.php:81 server_binlog.php:215 msgid "Log name" msgstr "" -#: libraries/messages.inc.php:86 server_binlog.php:219 +#: libraries/messages.inc.php:82 server_binlog.php:219 msgid "Original position" msgstr "" -#: libraries/messages.inc.php:87 server_binlog.php:216 +#: libraries/messages.inc.php:83 server_binlog.php:216 msgid "Position" msgstr "" -#: libraries/messages.inc.php:88 libraries/replication_gui.lib.php:169 +#: libraries/messages.inc.php:84 libraries/replication_gui.lib.php:169 #: server_binlog.php:218 msgid "Server ID" msgstr "" -#: libraries/messages.inc.php:92 +#: libraries/messages.inc.php:88 #, fuzzy msgctxt "$strBLOBRepositoryDisabled" msgid "Disabled" msgstr "Onbeskikbaar" -#: libraries/messages.inc.php:95 +#: libraries/messages.inc.php:91 #, fuzzy msgctxt "$strBLOBRepositoryEnabled" msgid "Enabled" msgstr "Beskikbaar" -#: libraries/messages.inc.php:97 tbl_change.php:888 +#: libraries/messages.inc.php:93 tbl_change.php:888 msgid "Remove BLOB Repository Reference" msgstr "" -#: libraries/messages.inc.php:98 +#: libraries/messages.inc.php:94 #, fuzzy msgctxt "$strBLOBRepositoryRepair" msgid "Repair" msgstr "Herstel tabel" -#: libraries/messages.inc.php:99 tbl_change.php:987 +#: libraries/messages.inc.php:95 tbl_change.php:987 msgid "Upload to BLOB repository" msgstr "" -#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:359 +#: libraries/messages.inc.php:96 libraries/sql_query_form.lib.php:359 #: sql.php:677 msgid "Let every user access this bookmark" msgstr "" -#: libraries/messages.inc.php:103 sql.php:671 +#: libraries/messages.inc.php:99 sql.php:671 msgid "Label" msgstr "Etiket" -#: libraries/messages.inc.php:104 libraries/sql_query_form.lib.php:433 +#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:433 msgid "Bookmarked SQL query" msgstr "Geboekmerkde SQL-stelling" -#: libraries/messages.inc.php:105 libraries/sql_query_form.lib.php:365 +#: libraries/messages.inc.php:101 libraries/sql_query_form.lib.php:365 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/messages.inc.php:106 libraries/sql_query_form.lib.php:352 +#: libraries/messages.inc.php:102 libraries/sql_query_form.lib.php:352 #: sql.php:665 sql.php:666 sql.php:683 msgid "Bookmark this SQL query" msgstr "Boekmerk hierdie SQL-stelling" -#: libraries/messages.inc.php:107 libraries/sql_query_form.lib.php:466 +#: libraries/messages.inc.php:103 libraries/sql_query_form.lib.php:466 msgid "View only" msgstr "Kyk slegs" -#: libraries/messages.inc.php:109 tbl_structure.php:161 +#: libraries/messages.inc.php:105 tbl_structure.php:161 msgid "Browse distinct values" msgstr "" -#: libraries/messages.inc.php:110 tbl_change.php:252 tbl_select.php:27 +#: libraries/messages.inc.php:106 tbl_change.php:252 tbl_select.php:27 #: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34 msgid "Browse foreign values" msgstr "" -#: libraries/messages.inc.php:118 libraries/mysql_charsets.lib.php:213 +#: libraries/messages.inc.php:114 libraries/mysql_charsets.lib.php:213 msgid "Bulgarian" msgstr "" -#: libraries/messages.inc.php:120 +#: libraries/messages.inc.php:116 msgid "\"bzipped\"" msgstr "\"ge-bzip\"" -#: libraries/messages.inc.php:122 +#: libraries/messages.inc.php:118 msgid "Calendar" msgstr "" -#: libraries/messages.inc.php:129 tbl_indexes.php:75 +#: libraries/messages.inc.php:125 tbl_indexes.php:75 msgid "Can't rename index to PRIMARY!" msgstr "Kannie die indeks hernoem na PRIMARY!" -#: libraries/messages.inc.php:132 libraries/mysql_charsets.lib.php:223 +#: libraries/messages.inc.php:128 libraries/mysql_charsets.lib.php:223 #: libraries/mysql_charsets.lib.php:409 msgid "case-insensitive" msgstr "" -#: libraries/messages.inc.php:133 libraries/mysql_charsets.lib.php:226 +#: libraries/messages.inc.php:129 libraries/mysql_charsets.lib.php:226 #: libraries/mysql_charsets.lib.php:411 msgid "case-sensitive" msgstr "" -#: libraries/messages.inc.php:134 libraries/mysql_charsets.lib.php:332 +#: libraries/messages.inc.php:130 libraries/mysql_charsets.lib.php:332 msgid "Central European" msgstr "" -#: libraries/messages.inc.php:136 server_privileges.php:1969 +#: libraries/messages.inc.php:132 server_privileges.php:1969 msgid "... keep the old one." msgstr "" -#: libraries/messages.inc.php:137 server_privileges.php:1967 +#: libraries/messages.inc.php:133 server_privileges.php:1967 msgid "Create a new user with the same privileges and ..." msgstr "" -#: libraries/messages.inc.php:138 server_privileges.php:1972 +#: libraries/messages.inc.php:134 server_privileges.php:1972 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/messages.inc.php:139 server_privileges.php:1970 +#: libraries/messages.inc.php:135 server_privileges.php:1970 msgid " ... delete the old one from the user tables." msgstr "" -#: libraries/messages.inc.php:140 server_privileges.php:1971 +#: libraries/messages.inc.php:136 server_privileges.php:1971 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/messages.inc.php:141 server_privileges.php:1964 +#: libraries/messages.inc.php:137 server_privileges.php:1964 msgid "Change Login Information / Copy User" msgstr "" -#: libraries/messages.inc.php:144 libraries/mysql_charsets.lib.php:107 +#: libraries/messages.inc.php:140 libraries/mysql_charsets.lib.php:107 msgid "Charset" msgstr "" -#: libraries/messages.inc.php:146 server_collations.php:40 +#: libraries/messages.inc.php:142 server_collations.php:40 msgid "Character Sets and Collations" msgstr "" -#: libraries/messages.inc.php:147 libraries/server_links.inc.php:57 +#: libraries/messages.inc.php:143 libraries/server_links.inc.php:57 #: test/theme.php:109 msgid "Charsets" msgstr "" -#: libraries/messages.inc.php:149 tbl_operations.php:661 +#: libraries/messages.inc.php:145 tbl_operations.php:661 msgid "Check" msgstr "" -#: libraries/messages.inc.php:151 server_databases.php:293 +#: libraries/messages.inc.php:147 server_databases.php:293 #: server_databases.php:294 #, fuzzy msgid "Check Privileges" msgstr "Geen Regte" -#: libraries/messages.inc.php:152 server_databases.php:289 +#: libraries/messages.inc.php:148 server_databases.php:289 #, php-format msgid "Check privileges for database "%s"." msgstr "" -#: libraries/messages.inc.php:154 pdf_pages.php:261 +#: libraries/messages.inc.php:150 pdf_pages.php:261 msgid "Please choose a page to edit" msgstr "Kies asb. 'n bladsy om te verander" -#: libraries/messages.inc.php:157 +#: libraries/messages.inc.php:153 msgid "Displaying Column Comments" msgstr "Kolom Kommentaar word vertoon" -#: libraries/messages.inc.php:159 pdf_pages.php:483 view_create.php:148 +#: libraries/messages.inc.php:155 pdf_pages.php:483 view_create.php:148 msgid "Column names" msgstr "Kolom name" -#: libraries/messages.inc.php:160 server_privileges.php:1685 +#: libraries/messages.inc.php:156 server_privileges.php:1685 msgid "Column-specific privileges" msgstr "" -#: libraries/messages.inc.php:164 +#: libraries/messages.inc.php:160 msgid "MySQL 4.0 compatible" msgstr "" -#: libraries/messages.inc.php:165 +#: libraries/messages.inc.php:161 msgid "Complete inserts" msgstr "Voltooi invoegings" -#: libraries/messages.inc.php:168 +#: libraries/messages.inc.php:164 #, php-format msgid "Could not load default configuration from: \"%1$s\"" msgstr "" -#: libraries/messages.inc.php:169 main.php:306 +#: libraries/messages.inc.php:165 main.php:306 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: libraries/messages.inc.php:171 pdf_schema.php:672 +#: libraries/messages.inc.php:167 pdf_schema.php:672 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Stel asb. die koordinate op van tabel %s" -#: libraries/messages.inc.php:173 server_status.php:433 +#: libraries/messages.inc.php:169 server_status.php:433 msgid "Connections" msgstr "" -#: libraries/messages.inc.php:179 tbl_operations.php:509 +#: libraries/messages.inc.php:175 tbl_operations.php:509 msgid "Copy table to (database.table):" msgstr "Kopieer tabel na (databasis.tabel):" -#: libraries/messages.inc.php:180 tbl_move_copy.php:58 +#: libraries/messages.inc.php:176 tbl_move_copy.php:58 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabel %s is gekopieer na %s." -#: libraries/messages.inc.php:181 tbl_move_copy.php:48 +#: libraries/messages.inc.php:177 tbl_move_copy.php:48 msgid "Can't copy table to same one!" msgstr "" -#: libraries/messages.inc.php:182 server_synchronize.php:94 +#: libraries/messages.inc.php:178 server_synchronize.php:94 msgid "Could not connect to the source" msgstr "" -#: libraries/messages.inc.php:183 server_synchronize.php:97 +#: libraries/messages.inc.php:179 server_synchronize.php:97 msgid "Could not connect to the target" msgstr "" -#: libraries/messages.inc.php:184 server_processlist.php:24 +#: libraries/messages.inc.php:180 server_processlist.php:24 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: libraries/messages.inc.php:187 +#: libraries/messages.inc.php:183 #, php-format msgid "Create an index on %s columns" msgstr "Skep 'n indeks op %s kolomme" -#: libraries/messages.inc.php:188 tbl_indexes.php:160 +#: libraries/messages.inc.php:184 tbl_indexes.php:160 msgid "Create a new index" msgstr "Skep 'n nuwe indeks" -#: libraries/messages.inc.php:191 pdf_pages.php:297 pmd_pdf.php:114 +#: libraries/messages.inc.php:187 pdf_pages.php:297 pmd_pdf.php:114 msgid "Create a page" msgstr "Skep 'n nuwe bladsy" -#: libraries/messages.inc.php:192 +#: libraries/messages.inc.php:188 msgid "Creation of PDFs" msgstr "Skepping van PDF's" -#: libraries/messages.inc.php:193 pmd_general.php:74 pmd_general.php:306 +#: libraries/messages.inc.php:189 pmd_general.php:74 pmd_general.php:306 msgid "Create relation" msgstr "" -#: libraries/messages.inc.php:194 pmd_general.php:71 +#: libraries/messages.inc.php:190 pmd_general.php:71 #: server_synchronize.php:429 server_synchronize.php:872 #, fuzzy msgid "Create table" msgstr "Skep 'n nuwe bladsy" -#: libraries/messages.inc.php:195 +#: libraries/messages.inc.php:191 #, fuzzy msgctxt "$strCreateTableShort" msgid "Create table" msgstr "Skep 'n nuwe bladsy" -#: libraries/messages.inc.php:196 server_privileges.php:1994 +#: libraries/messages.inc.php:192 server_privileges.php:1994 msgid "Database for user" msgstr "" -#: libraries/messages.inc.php:197 server_privileges.php:1999 +#: libraries/messages.inc.php:193 server_privileges.php:1999 msgid "Create database with same name and grant all privileges" msgstr "" -#: libraries/messages.inc.php:198 +#: libraries/messages.inc.php:194 #, fuzzy msgctxt "$strCreateUserDatabaseNone" msgid "None" msgstr "Geen" -#: libraries/messages.inc.php:199 server_privileges.php:2003 +#: libraries/messages.inc.php:195 server_privileges.php:2003 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: libraries/messages.inc.php:200 server_privileges.php:2000 +#: libraries/messages.inc.php:196 server_privileges.php:2000 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: libraries/messages.inc.php:201 +#: libraries/messages.inc.php:197 msgid "Creation/Update/Check dates" msgstr "" -#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:229 +#: libraries/messages.inc.php:199 libraries/mysql_charsets.lib.php:229 msgid "Croatian" msgstr "" -#: libraries/messages.inc.php:204 +#: libraries/messages.inc.php:200 msgid "CSV" msgstr "CSV data" -#: libraries/messages.inc.php:205 libraries/server_synchronize.lib.php:1343 +#: libraries/messages.inc.php:201 libraries/server_synchronize.lib.php:1343 #: libraries/server_synchronize.lib.php:1369 msgid "Current server" msgstr "" -#: libraries/messages.inc.php:206 main.php:159 +#: libraries/messages.inc.php:202 main.php:159 msgid "Custom color" msgstr "" -#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:365 +#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:365 msgid "Cyrillic" msgstr "" -#: libraries/messages.inc.php:208 libraries/mysql_charsets.lib.php:232 +#: libraries/messages.inc.php:204 libraries/mysql_charsets.lib.php:232 msgid "Czech" msgstr "" -#: libraries/messages.inc.php:209 libraries/mysql_charsets.lib.php:383 +#: libraries/messages.inc.php:205 libraries/mysql_charsets.lib.php:383 msgid "Czech-Slovak" msgstr "" -#: libraries/messages.inc.php:211 libraries/mysql_charsets.lib.php:235 +#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:235 msgid "Danish" msgstr "" -#: libraries/messages.inc.php:214 +#: libraries/messages.inc.php:210 msgid "Database export options" msgstr "" -#: libraries/messages.inc.php:217 server_synchronize.php:122 +#: libraries/messages.inc.php:213 server_synchronize.php:122 #: server_synchronize.php:125 tbl_create.php:82 tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "" -#: libraries/messages.inc.php:219 server_databases.php:63 +#: libraries/messages.inc.php:215 server_databases.php:63 #, php-format msgid "%s databases have been dropped successfully." msgstr "" -#: libraries/messages.inc.php:220 libraries/server_synchronize.lib.php:1341 +#: libraries/messages.inc.php:216 libraries/server_synchronize.lib.php:1341 #: server_synchronize.php:1110 #, fuzzy msgid "Source database" msgstr "Soek in databasis" -#: libraries/messages.inc.php:221 server_databases.php:88 +#: libraries/messages.inc.php:217 server_databases.php:88 msgid "Databases statistics" msgstr "Databasis statistieke" -#: libraries/messages.inc.php:222 server_databases.php:362 +#: libraries/messages.inc.php:218 server_databases.php:362 #: server_databases.php:363 #, fuzzy msgid "Disable Statistics" msgstr "Databasis statistieke" -#: libraries/messages.inc.php:223 server_databases.php:358 +#: libraries/messages.inc.php:219 server_databases.php:358 #: server_databases.php:359 #, fuzzy msgid "Enable Statistics" msgstr "Databasis statistieke" -#: libraries/messages.inc.php:224 server_databases.php:366 +#: libraries/messages.inc.php:220 server_databases.php:366 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." msgstr "" -#: libraries/messages.inc.php:225 libraries/server_synchronize.lib.php:1367 +#: libraries/messages.inc.php:221 libraries/server_synchronize.lib.php:1367 #: server_synchronize.php:1112 #, fuzzy msgid "Target database" msgstr "Soek in databasis" -#: libraries/messages.inc.php:228 server_synchronize.php:425 +#: libraries/messages.inc.php:224 server_synchronize.php:425 #: server_synchronize.php:868 msgid "Data Difference" msgstr "" -#: libraries/messages.inc.php:231 server_synchronize.php:272 +#: libraries/messages.inc.php:227 server_synchronize.php:272 msgid "Data Synchronization" msgstr "" -#: libraries/messages.inc.php:235 server_privileges.php:526 +#: libraries/messages.inc.php:231 server_privileges.php:526 #: server_privileges.php:1679 msgid "Database-specific privileges" msgstr "" -#: libraries/messages.inc.php:237 server_privileges.php:2136 +#: libraries/messages.inc.php:233 server_privileges.php:2136 msgid "database-specific" msgstr "" -#: libraries/messages.inc.php:240 libraries/tbl_properties.inc.php:106 +#: libraries/messages.inc.php:236 libraries/tbl_properties.inc.php:106 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" msgstr "" -#: libraries/messages.inc.php:241 tbl_operations.php:589 +#: libraries/messages.inc.php:237 tbl_operations.php:589 msgid "Defragment table" msgstr "" -#: libraries/messages.inc.php:242 +#: libraries/messages.inc.php:238 msgid "Use delayed inserts" msgstr "" -#: libraries/messages.inc.php:245 server_privileges.php:1243 +#: libraries/messages.inc.php:241 server_privileges.php:1243 msgid "No users selected for deleting!" msgstr "" -#: libraries/messages.inc.php:246 pmd_general.php:372 +#: libraries/messages.inc.php:242 pmd_general.php:372 msgid "Delete relation" msgstr "" -#: libraries/messages.inc.php:248 server_privileges.php:1232 +#: libraries/messages.inc.php:244 server_privileges.php:1232 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/messages.inc.php:249 libraries/sql_query_form.lib.php:388 +#: libraries/messages.inc.php:245 libraries/sql_query_form.lib.php:388 msgid "Delimiter" msgstr "" -#: libraries/messages.inc.php:250 pdf_pages.php:506 +#: libraries/messages.inc.php:246 pdf_pages.php:506 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" msgstr "" -#: libraries/messages.inc.php:254 pmd_help.php:29 +#: libraries/messages.inc.php:250 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." msgstr "" -#: libraries/messages.inc.php:256 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:252 libraries/mysql_charsets.lib.php:247 msgid "dictionary" msgstr "" -#: libraries/messages.inc.php:257 libraries/server_synchronize.lib.php:1348 +#: libraries/messages.inc.php:253 libraries/server_synchronize.lib.php:1348 msgid "Difference" msgstr "" -#: libraries/messages.inc.php:258 pmd_general.php:87 +#: libraries/messages.inc.php:254 pmd_general.php:87 msgid "Direct links" msgstr "" -#: libraries/messages.inc.php:261 +#: libraries/messages.inc.php:257 msgid "Disable foreign key checks" msgstr "" -#: libraries/messages.inc.php:262 +#: libraries/messages.inc.php:258 msgid "Display Features" msgstr "Vertoon Funksies" -#: libraries/messages.inc.php:263 tbl_select.php:301 +#: libraries/messages.inc.php:259 tbl_select.php:301 msgid "Display order:" msgstr "Vertoon volgorde:" -#: libraries/messages.inc.php:265 tbl_select.php:132 +#: libraries/messages.inc.php:261 tbl_select.php:132 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Doen 'n \"Navraag dmv Voorbeeld\" (wildcard: \"%\")" -#: libraries/messages.inc.php:266 +#: libraries/messages.inc.php:262 msgid "DocSQL" msgstr "" -#: libraries/messages.inc.php:268 +#: libraries/messages.inc.php:264 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/messages.inc.php:273 server_privileges.php:1579 +#: libraries/messages.inc.php:269 server_privileges.php:1579 #: server_privileges.php:1580 server_privileges.php:1581 msgid "Drop the databases that have the same names as the users." msgstr "" -#: libraries/messages.inc.php:278 tbl_printview.php:382 tbl_structure.php:743 +#: libraries/messages.inc.php:274 tbl_printview.php:382 tbl_structure.php:743 msgid "dynamic" msgstr "dinamies" -#: libraries/messages.inc.php:282 server_privileges.php:1324 +#: libraries/messages.inc.php:278 server_privileges.php:1324 #: server_privileges.php:1610 msgid "Edit Privileges" msgstr "Verander Regte" -#: libraries/messages.inc.php:283 tbl_printview.php:341 tbl_structure.php:688 +#: libraries/messages.inc.php:279 tbl_printview.php:341 tbl_structure.php:688 msgid "Effective" msgstr "Effektief" -#: libraries/messages.inc.php:286 libraries/relation.lib.php:100 +#: libraries/messages.inc.php:282 libraries/relation.lib.php:100 msgid "Enabled" msgstr "Beskikbaar" -#: libraries/messages.inc.php:287 +#: libraries/messages.inc.php:283 msgid "Enclose export in a transaction" msgstr "" -#: libraries/messages.inc.php:288 libraries/sqlparser.lib.php:177 +#: libraries/messages.inc.php:284 libraries/sqlparser.lib.php:177 msgid "END CUT" msgstr "EINDE UITKNIPSEL" -#: libraries/messages.inc.php:290 libraries/sqlparser.lib.php:183 +#: libraries/messages.inc.php:286 libraries/sqlparser.lib.php:183 msgid "END RAW" msgstr "EINDE ONVERANDERD (RAW)" -#: libraries/messages.inc.php:293 libraries/server_links.inc.php:61 +#: libraries/messages.inc.php:289 libraries/server_links.inc.php:61 #: test/theme.php:113 msgid "Engines" msgstr "" -#: libraries/messages.inc.php:295 libraries/mysql_charsets.lib.php:238 +#: libraries/messages.inc.php:291 libraries/mysql_charsets.lib.php:238 msgid "English" msgstr "" -#: libraries/messages.inc.php:296 server_privileges.php:393 +#: libraries/messages.inc.php:292 server_privileges.php:393 #: server_privileges.php:535 server_privileges.php:1501 msgid " Note: MySQL privilege names are expressed in English " msgstr " Nota: MySQL regte name word in Engels vertoon " -#: libraries/messages.inc.php:298 libraries/zip_extension.lib.php:49 +#: libraries/messages.inc.php:294 libraries/zip_extension.lib.php:49 #: libraries/zip_extension.lib.php:51 libraries/zip_extension.lib.php:66 msgid "Error in ZIP archive:" msgstr "" -#: libraries/messages.inc.php:303 libraries/mysql_charsets.lib.php:241 +#: libraries/messages.inc.php:299 libraries/mysql_charsets.lib.php:241 msgid "Esperanto" msgstr "" -#: libraries/messages.inc.php:304 libraries/mysql_charsets.lib.php:244 +#: libraries/messages.inc.php:300 libraries/mysql_charsets.lib.php:244 msgid "Estonian" msgstr "" -#: libraries/messages.inc.php:305 libraries/tbl_triggers.lib.php:29 +#: libraries/messages.inc.php:301 libraries/tbl_triggers.lib.php:29 msgid "Event" msgstr "" -#: libraries/messages.inc.php:307 +#: libraries/messages.inc.php:303 msgid "Excel edition" msgstr "" -#: libraries/messages.inc.php:311 pmd_pdf.php:85 +#: libraries/messages.inc.php:307 pmd_pdf.php:85 msgid "Export/Import to scale" msgstr "" -#: libraries/messages.inc.php:313 +#: libraries/messages.inc.php:309 msgid "Extended inserts" msgstr "Uitgebreide toevoegings" -#: libraries/messages.inc.php:314 pdf_schema.php:1267 pdf_schema.php:1288 +#: libraries/messages.inc.php:310 pdf_schema.php:1267 pdf_schema.php:1288 #: tbl_printview.php:147 tbl_structure.php:183 tbl_tracking.php:278 msgid "Extra" msgstr "Ekstra" -#: libraries/messages.inc.php:316 server_status.php:447 +#: libraries/messages.inc.php:312 server_status.php:447 msgid "Failed attempts" msgstr "" -#: libraries/messages.inc.php:318 tbl_structure.php:375 +#: libraries/messages.inc.php:314 tbl_structure.php:375 #, php-format msgid "Field %s has been dropped" msgstr "Veld %s is verwyder" -#: libraries/messages.inc.php:322 libraries/sql_query_form.lib.php:317 +#: libraries/messages.inc.php:318 libraries/sql_query_form.lib.php:317 msgid "Fields" msgstr "Velde" -#: libraries/messages.inc.php:332 server_binlog.php:136 +#: libraries/messages.inc.php:328 server_binlog.php:136 #, fuzzy msgid "Files" msgstr "Velde" -#: libraries/messages.inc.php:334 server_privileges.php:1597 +#: libraries/messages.inc.php:330 server_privileges.php:1597 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -3740,220 +3740,220 @@ msgid "" "sreload the privileges%s before you continue." msgstr "" -#: libraries/messages.inc.php:335 server_status.php:289 +#: libraries/messages.inc.php:331 server_status.php:289 msgid "Flush query cache" msgstr "" -#: libraries/messages.inc.php:336 +#: libraries/messages.inc.php:332 msgid "Flush the table (\"FLUSH\")" msgstr "Spoel die tabel (\"FLUSH\")" -#: libraries/messages.inc.php:337 server_status.php:271 +#: libraries/messages.inc.php:333 server_status.php:271 msgid "Flush (close) all tables" msgstr "" -#: libraries/messages.inc.php:339 tbl_relation.php:279 +#: libraries/messages.inc.php:335 tbl_relation.php:279 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" -#: libraries/messages.inc.php:341 setup/lib/messages.inc.php:88 +#: libraries/messages.inc.php:337 setup/lib/messages.inc.php:88 #: tbl_printview.php:376 tbl_structure.php:738 msgid "Format" msgstr "Formaat" -#: libraries/messages.inc.php:344 server_replication.php:325 +#: libraries/messages.inc.php:340 server_replication.php:325 #, fuzzy msgid "Full start" msgstr "Volteks" -#: libraries/messages.inc.php:345 server_replication.php:325 +#: libraries/messages.inc.php:341 server_replication.php:325 msgid "Full stop" msgstr "" -#: libraries/messages.inc.php:347 tbl_change.php:282 tbl_change.php:320 +#: libraries/messages.inc.php:343 tbl_change.php:282 tbl_change.php:320 msgid "Function" msgstr "Funksie" -#: libraries/messages.inc.php:355 libraries/mysql_charsets.lib.php:377 +#: libraries/messages.inc.php:351 libraries/mysql_charsets.lib.php:377 msgid "Georgian" msgstr "" -#: libraries/messages.inc.php:356 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:352 libraries/mysql_charsets.lib.php:247 #: libraries/mysql_charsets.lib.php:250 msgid "German" msgstr "" -#: libraries/messages.inc.php:357 themes.php:42 +#: libraries/messages.inc.php:353 themes.php:42 msgid "Get more themes!" msgstr "" -#: libraries/messages.inc.php:358 server_privileges.php:2134 +#: libraries/messages.inc.php:354 server_privileges.php:2134 msgid "global" msgstr "" -#: libraries/messages.inc.php:359 server_privileges.php:524 +#: libraries/messages.inc.php:355 server_privileges.php:524 #: server_privileges.php:1500 #, fuzzy msgid "Global privileges" msgstr "Geen Regte" -#: libraries/messages.inc.php:360 server_variables.php:55 +#: libraries/messages.inc.php:356 server_variables.php:55 #: server_variables.php:89 msgid "Global value" msgstr "" -#: libraries/messages.inc.php:365 server_privileges.php:1502 +#: libraries/messages.inc.php:361 server_privileges.php:1502 #: server_privileges.php:1684 server_privileges.php:2033 msgid "Grant" msgstr "" -#: libraries/messages.inc.php:366 libraries/mysql_charsets.lib.php:380 +#: libraries/messages.inc.php:362 libraries/mysql_charsets.lib.php:380 msgid "Greek" msgstr "" -#: libraries/messages.inc.php:367 +#: libraries/messages.inc.php:363 msgid "\"gzipped\"" msgstr "\"ge-gzip\"" -#: libraries/messages.inc.php:369 server_status.php:250 +#: libraries/messages.inc.php:365 server_status.php:250 msgid "Handler" msgstr "" -#: libraries/messages.inc.php:370 server_synchronize.php:464 +#: libraries/messages.inc.php:366 server_synchronize.php:464 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: libraries/messages.inc.php:372 libraries/mysql_charsets.lib.php:374 +#: libraries/messages.inc.php:368 libraries/mysql_charsets.lib.php:374 msgid "Hebrew" msgstr "" -#: libraries/messages.inc.php:373 pmd_general.php:83 +#: libraries/messages.inc.php:369 pmd_general.php:83 msgid "Help" msgstr "" -#: libraries/messages.inc.php:374 +#: libraries/messages.inc.php:370 msgid "Use hexadecimal for BLOB" msgstr "" -#: libraries/messages.inc.php:376 pmd_general.php:120 +#: libraries/messages.inc.php:372 pmd_general.php:120 #, fuzzy msgid "Hide/Show all" msgstr "Wys alles" -#: libraries/messages.inc.php:377 pmd_general.php:124 +#: libraries/messages.inc.php:373 pmd_general.php:124 msgid "Hide/Show Tables with no relation" msgstr "" -#: libraries/messages.inc.php:378 libraries/navigation_header.inc.php:54 +#: libraries/messages.inc.php:374 libraries/navigation_header.inc.php:54 #: libraries/navigation_header.inc.php:57 #: libraries/navigation_header.inc.php:58 msgid "Home" msgstr "Tuis" -#: libraries/messages.inc.php:379 main.php:233 +#: libraries/messages.inc.php:375 main.php:233 msgid "Official Homepage" msgstr "Amptelike phpMyAdmin Tuisblad" -#: libraries/messages.inc.php:382 libraries/replication_gui.lib.php:327 +#: libraries/messages.inc.php:378 libraries/replication_gui.lib.php:327 #: server_privileges.php:753 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/messages.inc.php:383 +#: libraries/messages.inc.php:379 msgid "Microsoft Word 2000" msgstr "" -#: libraries/messages.inc.php:384 libraries/mysql_charsets.lib.php:253 +#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:253 msgid "Hungarian" msgstr "" -#: libraries/messages.inc.php:386 libraries/mysql_charsets.lib.php:256 +#: libraries/messages.inc.php:382 libraries/mysql_charsets.lib.php:256 msgid "Icelandic" msgstr "" -#: libraries/messages.inc.php:387 server_processlist.php:53 +#: libraries/messages.inc.php:383 server_processlist.php:53 msgid "ID" msgstr "" -#: libraries/messages.inc.php:388 libraries/mult_submits.inc.php:108 +#: libraries/messages.inc.php:384 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:479 msgid "Fulltext" msgstr "Volteks" -#: libraries/messages.inc.php:389 +#: libraries/messages.inc.php:385 msgid "Ignore duplicate rows" msgstr "" -#: libraries/messages.inc.php:390 tbl_change.php:302 tbl_indexes.php:200 +#: libraries/messages.inc.php:386 tbl_change.php:302 tbl_indexes.php:200 #: tbl_indexes.php:225 msgid "Ignore" msgstr "Ignoreer" -#: libraries/messages.inc.php:391 +#: libraries/messages.inc.php:387 msgid "Use ignore inserts" msgstr "" -#: libraries/messages.inc.php:392 +#: libraries/messages.inc.php:388 msgid "Column names in first row" msgstr "" -#: libraries/messages.inc.php:393 +#: libraries/messages.inc.php:389 msgid "Do not import empty rows" msgstr "" -#: libraries/messages.inc.php:394 pmd_general.php:104 +#: libraries/messages.inc.php:390 pmd_general.php:104 msgid "Import/Export coordinates for PDF schema" msgstr "" -#: libraries/messages.inc.php:395 querywindow.php:104 +#: libraries/messages.inc.php:391 querywindow.php:104 msgid "Import files" msgstr "" -#: libraries/messages.inc.php:403 +#: libraries/messages.inc.php:399 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/messages.inc.php:404 libraries/messages.inc.php:584 +#: libraries/messages.inc.php:400 libraries/messages.inc.php:580 msgid "Open Document Spreadsheet" msgstr "" -#: libraries/messages.inc.php:405 +#: libraries/messages.inc.php:401 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/messages.inc.php:409 +#: libraries/messages.inc.php:405 msgid "Excel 97-2003 XLS Workbook" msgstr "" -#: libraries/messages.inc.php:410 +#: libraries/messages.inc.php:406 msgid "Excel 2007 XLSX Workbook" msgstr "" -#: libraries/messages.inc.php:414 libraries/mult_submits.inc.php:98 +#: libraries/messages.inc.php:410 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:476 tbl_structure.php:674 msgid "Index" msgstr "Indeks" -#: libraries/messages.inc.php:415 tbl_indexes.php:168 +#: libraries/messages.inc.php:411 tbl_indexes.php:168 msgid "Index name:" msgstr "Indeks naam :" -#: libraries/messages.inc.php:416 tbl_indexes.php:174 +#: libraries/messages.inc.php:412 tbl_indexes.php:174 msgid "Index type:" msgstr "Indeks tipe :" -#: libraries/messages.inc.php:417 sql.php:639 +#: libraries/messages.inc.php:413 sql.php:639 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: libraries/messages.inc.php:427 main.php:266 +#: libraries/messages.inc.php:423 main.php:266 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -3961,197 +3961,197 @@ msgid "" "this security hole by setting a password for user 'root'." msgstr "" -#: libraries/messages.inc.php:428 tbl_change.php:1130 +#: libraries/messages.inc.php:424 tbl_change.php:1130 msgid "Insert as new row" msgstr "Voeg by as 'n nuwe ry" -#: libraries/messages.inc.php:429 sql.php:496 tbl_replace.php:386 +#: libraries/messages.inc.php:425 sql.php:496 tbl_replace.php:386 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: libraries/messages.inc.php:430 tbl_change.php:1131 +#: libraries/messages.inc.php:426 tbl_change.php:1131 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/messages.inc.php:432 main.php:139 +#: libraries/messages.inc.php:428 main.php:139 msgid "Interface" msgstr "" -#: libraries/messages.inc.php:433 tbl_relation.php:407 +#: libraries/messages.inc.php:429 tbl_relation.php:407 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: libraries/messages.inc.php:435 pdf_pages.php:303 +#: libraries/messages.inc.php:431 pdf_pages.php:303 msgid "Internal relations" msgstr "" -#: libraries/messages.inc.php:438 tbl_indexes.php:256 tbl_structure.php:590 +#: libraries/messages.inc.php:434 tbl_indexes.php:256 tbl_structure.php:590 #: tbl_structure.php:601 msgid "Column count has to be larger than zero." msgstr "" -#: libraries/messages.inc.php:444 libraries/tbl_properties.inc.php:784 +#: libraries/messages.inc.php:440 libraries/tbl_properties.inc.php:784 #: tbl_structure.php:537 msgid "You have to add at least one field." msgstr "" -#: libraries/messages.inc.php:449 +#: libraries/messages.inc.php:445 #, php-format msgid "Invalid server index: \"%s\"" msgstr "" -#: libraries/messages.inc.php:452 libraries/mysql_charsets.lib.php:259 +#: libraries/messages.inc.php:448 libraries/mysql_charsets.lib.php:259 #: libraries/mysql_charsets.lib.php:349 msgid "Japanese" msgstr "" -#: libraries/messages.inc.php:453 main.php:331 +#: libraries/messages.inc.php:449 main.php:331 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: libraries/messages.inc.php:454 server_status.php:257 +#: libraries/messages.inc.php:450 server_status.php:257 msgid "Joins" msgstr "" -#: libraries/messages.inc.php:457 server_privileges.php:763 +#: libraries/messages.inc.php:453 server_privileges.php:763 msgid "Do not change the password" msgstr "Moenie die wagwoord verander nie" -#: libraries/messages.inc.php:458 server_status.php:256 +#: libraries/messages.inc.php:454 server_status.php:256 msgid "Key cache" msgstr "" -#: libraries/messages.inc.php:462 libraries/mysql_charsets.lib.php:268 +#: libraries/messages.inc.php:458 libraries/mysql_charsets.lib.php:268 #: libraries/mysql_charsets.lib.php:371 msgid "Korean" msgstr "" -#: libraries/messages.inc.php:466 libraries/select_lang.lib.php:480 +#: libraries/messages.inc.php:462 libraries/select_lang.lib.php:480 #: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492 #, php-format msgid "Unknown language: %1$s." msgstr "" -#: libraries/messages.inc.php:468 +#: libraries/messages.inc.php:464 msgid "Table caption" msgstr "" -#: libraries/messages.inc.php:469 +#: libraries/messages.inc.php:465 msgid "Content of table __TABLE__" msgstr "" -#: libraries/messages.inc.php:470 +#: libraries/messages.inc.php:466 msgid "Continued table caption" msgstr "" -#: libraries/messages.inc.php:471 +#: libraries/messages.inc.php:467 msgid "(continued)" msgstr "" -#: libraries/messages.inc.php:472 +#: libraries/messages.inc.php:468 msgid "Include table caption" msgstr "" -#: libraries/messages.inc.php:473 +#: libraries/messages.inc.php:469 msgid "Label key" msgstr "" -#: libraries/messages.inc.php:474 +#: libraries/messages.inc.php:470 #, fuzzy msgid "LaTeX" msgstr "Etiket" -#: libraries/messages.inc.php:475 +#: libraries/messages.inc.php:471 msgid "Structure of table __TABLE__" msgstr "" -#: libraries/messages.inc.php:476 libraries/mysql_charsets.lib.php:262 +#: libraries/messages.inc.php:472 libraries/mysql_charsets.lib.php:262 msgid "Latvian" msgstr "" -#: libraries/messages.inc.php:477 +#: libraries/messages.inc.php:473 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/messages.inc.php:478 +#: libraries/messages.inc.php:474 msgid "Use LOCAL keyword" msgstr "" -#: libraries/messages.inc.php:479 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:475 libraries/tbl_properties.inc.php:105 msgid "Length/Values" msgstr "Lengte/Waardes*" -#: libraries/messages.inc.php:480 tbl_select.php:295 +#: libraries/messages.inc.php:476 tbl_select.php:295 msgid "Number of rows per page" msgstr "Hoeveelheid rye per bladsy" -#: libraries/messages.inc.php:484 libraries/mysql_charsets.lib.php:265 +#: libraries/messages.inc.php:480 libraries/mysql_charsets.lib.php:265 msgid "Lithuanian" msgstr "" -#: libraries/messages.inc.php:485 libraries/replication_gui.lib.php:302 +#: libraries/messages.inc.php:481 libraries/replication_gui.lib.php:302 #: server_privileges.php:729 msgid "Local" msgstr "Local" -#: libraries/messages.inc.php:487 server_privileges.php:669 +#: libraries/messages.inc.php:483 server_privileges.php:669 #, fuzzy msgid "Login Information" msgstr "Wys PHP informasie" -#: libraries/messages.inc.php:490 libraries/navigation_header.inc.php:67 +#: libraries/messages.inc.php:486 libraries/navigation_header.inc.php:67 #: libraries/navigation_header.inc.php:70 #: libraries/navigation_header.inc.php:71 main.php:99 msgid "Log out" msgstr "Teken uit" -#: libraries/messages.inc.php:497 server_status.php:440 +#: libraries/messages.inc.php:493 server_status.php:440 msgid "max. concurrent connections" msgstr "" -#: libraries/messages.inc.php:498 +#: libraries/messages.inc.php:494 msgid "Maximal length of created query" msgstr "" -#: libraries/messages.inc.php:500 main.php:282 +#: libraries/messages.inc.php:496 main.php:282 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " "split strings correctly and it may result in unexpected results." msgstr "" -#: libraries/messages.inc.php:501 main.php:274 +#: libraries/messages.inc.php:497 main.php:274 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " "corrupted!" msgstr "" -#: libraries/messages.inc.php:502 +#: libraries/messages.inc.php:498 msgid "MediaWiki Table" msgstr "" -#: libraries/messages.inc.php:503 transformation_overview.php:25 +#: libraries/messages.inc.php:499 transformation_overview.php:25 msgid "Available MIME types" msgstr "" -#: libraries/messages.inc.php:504 transformation_overview.php:43 +#: libraries/messages.inc.php:500 transformation_overview.php:43 msgid "Available transformations" msgstr "" -#: libraries/messages.inc.php:505 +#: libraries/messages.inc.php:501 #, fuzzy msgctxt "$strMIME_description" msgid "Description" msgstr "geen Beskrywing" -#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:580 +#: libraries/messages.inc.php:503 libraries/tbl_properties.inc.php:580 #: transformation_overview.php:60 #, php-format msgid "" @@ -4159,14 +4159,14 @@ msgid "" "author what %s does." msgstr "" -#: libraries/messages.inc.php:509 libraries/tbl_properties.inc.php:137 +#: libraries/messages.inc.php:505 libraries/tbl_properties.inc.php:137 #, php-format msgid "" "For a list of available transformation options and their MIME type " "transformations, click on %stransformation descriptions%s" msgstr "" -#: libraries/messages.inc.php:510 libraries/tbl_properties.inc.php:146 +#: libraries/messages.inc.php:506 libraries/tbl_properties.inc.php:146 #, fuzzy msgid "" "Please enter the values for transformation options using this format: 'a', " @@ -4179,407 +4179,407 @@ msgstr "" "a single quote (\"'\") amongst those values, backslashes it (for example '\\" "\\xyz' or 'a\\'b')." -#: libraries/messages.inc.php:511 libraries/tbl_properties.inc.php:145 +#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:145 msgid "Transformation options" msgstr "" -#: libraries/messages.inc.php:513 transformation_overview.php:38 +#: libraries/messages.inc.php:509 transformation_overview.php:38 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "" -#: libraries/messages.inc.php:515 tbl_indexes.php:162 +#: libraries/messages.inc.php:511 tbl_indexes.php:162 msgid "Modify an index" msgstr "Verander 'n indeks" -#: libraries/messages.inc.php:517 pmd_general.php:108 +#: libraries/messages.inc.php:513 pmd_general.php:108 msgid "Move Menu" msgstr "" -#: libraries/messages.inc.php:518 tbl_operations.php:276 +#: libraries/messages.inc.php:514 tbl_operations.php:276 msgid "Move table to (database.table):" msgstr "Skuif tabel na (databasis.tabel):" -#: libraries/messages.inc.php:519 tbl_move_copy.php:56 +#: libraries/messages.inc.php:515 tbl_move_copy.php:56 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabel %s is geskuif na %s." -#: libraries/messages.inc.php:520 tbl_move_copy.php:46 +#: libraries/messages.inc.php:516 tbl_move_copy.php:46 msgid "Can't move table to same one!" msgstr "" -#: libraries/messages.inc.php:521 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:517 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 #: libraries/mysql_charsets.lib.php:332 libraries/mysql_charsets.lib.php:354 #: libraries/mysql_charsets.lib.php:365 msgid "multilingual" msgstr "" -#: libraries/messages.inc.php:534 main.php:193 +#: libraries/messages.inc.php:530 main.php:193 msgid "MySQL charset" msgstr "MySQL Karakterstel" -#: libraries/messages.inc.php:535 main.php:211 +#: libraries/messages.inc.php:531 main.php:211 msgid "MySQL client version" msgstr "" -#: libraries/messages.inc.php:536 main.php:125 +#: libraries/messages.inc.php:532 main.php:125 msgid "MySQL connection collation" msgstr "" -#: libraries/messages.inc.php:537 main.php:346 +#: libraries/messages.inc.php:533 main.php:346 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: libraries/messages.inc.php:539 server_status.php:294 +#: libraries/messages.inc.php:535 server_status.php:294 msgid "Show processes" msgstr "Wys prosesse" -#: libraries/messages.inc.php:545 navigation.php:210 server_databases.php:371 +#: libraries/messages.inc.php:541 navigation.php:210 server_databases.php:371 #: server_synchronize.php:1191 msgid "No databases" msgstr "Geen databasisse" -#: libraries/messages.inc.php:546 server_databases.php:52 +#: libraries/messages.inc.php:542 server_databases.php:52 msgid "No databases selected." msgstr "" -#: libraries/messages.inc.php:548 libraries/relation.lib.php:1173 +#: libraries/messages.inc.php:544 libraries/relation.lib.php:1173 msgid "no description" msgstr "geen Beskrywing" -#: libraries/messages.inc.php:552 libraries/zip_extension.lib.php:26 +#: libraries/messages.inc.php:548 libraries/zip_extension.lib.php:26 msgid "No files found inside ZIP archive!" msgstr "" -#: libraries/messages.inc.php:555 tbl_indexes.php:91 +#: libraries/messages.inc.php:551 tbl_indexes.php:91 msgid "No index parts defined!" msgstr "Geen indeks dele gedefinieer!" -#: libraries/messages.inc.php:556 libraries/mult_submits.inc.php:435 +#: libraries/messages.inc.php:552 libraries/mult_submits.inc.php:435 #: tbl_replace.php:331 msgid "No change" msgstr "Geen verandering" -#: libraries/messages.inc.php:557 +#: libraries/messages.inc.php:553 #, fuzzy msgctxt "$strNoneDefault" msgid "None" msgstr "Geen" -#: libraries/messages.inc.php:560 libraries/plugin_interface.lib.php:312 +#: libraries/messages.inc.php:556 libraries/plugin_interface.lib.php:312 msgid "This format has no options" msgstr "" -#: libraries/messages.inc.php:565 user_password.php:54 +#: libraries/messages.inc.php:561 user_password.php:54 msgid "You don't have sufficient privileges to be here right now!" msgstr "Jy het nie genoeg regte om nou hier te wees nie!" -#: libraries/messages.inc.php:566 tbl_row_action.php:29 +#: libraries/messages.inc.php:562 tbl_row_action.php:29 msgid "No rows selected" msgstr "" -#: libraries/messages.inc.php:569 themes.php:32 +#: libraries/messages.inc.php:565 themes.php:32 #, php-format msgid "" "No themes support; please check your configuration and/or your themes in " "directory %s." msgstr "" -#: libraries/messages.inc.php:571 libraries/relation.lib.php:95 +#: libraries/messages.inc.php:567 libraries/relation.lib.php:95 msgid "not OK" msgstr "nie OK" -#: libraries/messages.inc.php:572 server_synchronize.php:400 +#: libraries/messages.inc.php:568 server_synchronize.php:400 #: server_synchronize.php:839 msgid "not present" msgstr "" -#: libraries/messages.inc.php:573 pdf_pages.php:36 pdf_pages.php:42 +#: libraries/messages.inc.php:569 pdf_pages.php:36 pdf_pages.php:42 #: pdf_pages.php:48 pdf_pages.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "%s tabel nie gevind nie of nie gesetel in %s" -#: libraries/messages.inc.php:574 server_privileges.php:804 +#: libraries/messages.inc.php:570 server_privileges.php:804 #: server_privileges.php:2166 msgid "No user(s) found." msgstr "Geen gebruiker(s) gevind nie." -#: libraries/messages.inc.php:578 pmd_general.php:164 +#: libraries/messages.inc.php:574 pmd_general.php:164 msgid "Number of tables" msgstr "" -#: libraries/messages.inc.php:581 server_databases.php:117 +#: libraries/messages.inc.php:577 server_databases.php:117 #: server_status.php:260 setup/lib/messages.inc.php:117 #, fuzzy msgid "Tables" msgstr "Tabel" -#: libraries/messages.inc.php:583 libraries/relation.lib.php:99 +#: libraries/messages.inc.php:579 libraries/relation.lib.php:99 #: pmd_general.php:340 msgid "OK" msgstr "OK" -#: libraries/messages.inc.php:585 +#: libraries/messages.inc.php:581 msgid "Open Document Text" msgstr "" -#: libraries/messages.inc.php:588 tbl_select.php:138 +#: libraries/messages.inc.php:584 tbl_select.php:138 #, fuzzy msgid "Operator" msgstr "Operasies" -#: libraries/messages.inc.php:589 tbl_operations.php:662 +#: libraries/messages.inc.php:585 tbl_operations.php:662 msgid "Optimize" msgstr "" -#: libraries/messages.inc.php:602 libraries/tbl_properties.inc.php:755 +#: libraries/messages.inc.php:598 libraries/tbl_properties.inc.php:755 msgid "PARTITION definition" msgstr "" -#: libraries/messages.inc.php:603 tbl_structure.php:757 +#: libraries/messages.inc.php:599 tbl_structure.php:757 msgid "partitioned" msgstr "" -#: libraries/messages.inc.php:604 tbl_operations.php:649 +#: libraries/messages.inc.php:600 tbl_operations.php:649 #, fuzzy msgid "Partition maintenance" msgstr "Tabel instandhouding" -#: libraries/messages.inc.php:605 tbl_operations.php:657 +#: libraries/messages.inc.php:601 tbl_operations.php:657 #, php-format msgid "Partition %s" msgstr "" -#: libraries/messages.inc.php:606 server_privileges.php:1212 +#: libraries/messages.inc.php:602 server_privileges.php:1212 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/messages.inc.php:635 +#: libraries/messages.inc.php:631 #, php-format msgid "Schema of the \"%s\" database - Page %s" msgstr "Skema van die \"%s\" databasis - Bladsy %s" -#: libraries/messages.inc.php:636 +#: libraries/messages.inc.php:632 #, php-format msgid "The \"%s\" table doesn't exist!" msgstr "Die \"%s\" databasis bestaan nie!" -#: libraries/messages.inc.php:637 pdf_schema.php:1013 +#: libraries/messages.inc.php:633 pdf_schema.php:1013 msgid "No tables" msgstr "Geen tabelle" -#: libraries/messages.inc.php:638 pmd_pdf.php:63 +#: libraries/messages.inc.php:634 pmd_pdf.php:63 #, fuzzy msgid "Page has been created" msgstr "Tabel %s is verwyder" -#: libraries/messages.inc.php:639 pmd_pdf.php:65 +#: libraries/messages.inc.php:635 pmd_pdf.php:65 msgid "Page creation failed" msgstr "" -#: libraries/messages.inc.php:640 +#: libraries/messages.inc.php:636 msgid "PDF" msgstr "" -#: libraries/messages.inc.php:641 +#: libraries/messages.inc.php:637 msgid "(Generates a report containing the data of a single table)" msgstr "" -#: libraries/messages.inc.php:642 +#: libraries/messages.inc.php:638 msgid "Report title" msgstr "" -#: libraries/messages.inc.php:643 server_status.php:389 server_status.php:434 +#: libraries/messages.inc.php:639 server_status.php:389 server_status.php:434 #: server_status.php:497 server_status.php:555 msgid "per hour" msgstr "" -#: libraries/messages.inc.php:644 server_status.php:498 +#: libraries/messages.inc.php:640 server_status.php:498 msgid "per minute" msgstr "" -#: libraries/messages.inc.php:645 server_status.php:499 +#: libraries/messages.inc.php:641 server_status.php:499 msgid "per second" msgstr "" -#: libraries/messages.inc.php:646 libraries/mysql_charsets.lib.php:271 +#: libraries/messages.inc.php:642 libraries/mysql_charsets.lib.php:271 msgid "Persian" msgstr "" -#: libraries/messages.inc.php:647 libraries/mysql_charsets.lib.php:250 +#: libraries/messages.inc.php:643 libraries/mysql_charsets.lib.php:250 msgid "phone book" msgstr "" -#: libraries/messages.inc.php:648 +#: libraries/messages.inc.php:644 msgid "PHP array" msgstr "" -#: libraries/messages.inc.php:650 main.php:213 +#: libraries/messages.inc.php:646 main.php:213 #, fuzzy msgid "PHP extension" msgstr "PHP Version" -#: libraries/messages.inc.php:654 libraries/relation.lib.php:163 +#: libraries/messages.inc.php:650 libraries/relation.lib.php:163 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/messages.inc.php:655 libraries/relation.lib.php:159 +#: libraries/messages.inc.php:651 libraries/relation.lib.php:159 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/messages.inc.php:656 libraries/relation.lib.php:161 +#: libraries/messages.inc.php:652 libraries/relation.lib.php:161 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" -#: libraries/messages.inc.php:657 libraries/relation.lib.php:162 +#: libraries/messages.inc.php:653 libraries/relation.lib.php:162 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/messages.inc.php:658 libraries/relation.lib.php:164 +#: libraries/messages.inc.php:654 libraries/relation.lib.php:164 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/messages.inc.php:661 libraries/mysql_charsets.lib.php:274 +#: libraries/messages.inc.php:657 libraries/mysql_charsets.lib.php:274 msgid "Polish" msgstr "" -#: libraries/messages.inc.php:662 libraries/replication_gui.lib.php:67 +#: libraries/messages.inc.php:658 libraries/replication_gui.lib.php:67 #: server_synchronize.php:1163 #, fuzzy msgid "Port" msgstr "Sorteer" -#: libraries/messages.inc.php:667 tbl_indexes.php:67 +#: libraries/messages.inc.php:663 tbl_indexes.php:67 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Die naam van die primere sleutel moet PRIMARY wees!" -#: libraries/messages.inc.php:668 tbl_indexes.php:184 +#: libraries/messages.inc.php:664 tbl_indexes.php:184 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" "(\"PRIMARY\" moet die naam wees van die primere sleutel, en slegs van die primere sleutel!)" -#: libraries/messages.inc.php:669 libraries/mult_submits.inc.php:76 +#: libraries/messages.inc.php:665 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:474 msgid "Primary" msgstr "Primere" -#: libraries/messages.inc.php:673 server_privileges.php:227 +#: libraries/messages.inc.php:669 server_privileges.php:227 msgid "Includes all privileges except GRANT." msgstr "" -#: libraries/messages.inc.php:674 server_privileges.php:153 +#: libraries/messages.inc.php:670 server_privileges.php:153 #: server_privileges.php:476 msgid "Allows altering the structure of existing tables." msgstr "" -#: libraries/messages.inc.php:675 server_privileges.php:169 +#: libraries/messages.inc.php:671 server_privileges.php:169 #: server_privileges.php:482 msgid "Allows altering and dropping stored routines." msgstr "" -#: libraries/messages.inc.php:676 server_privileges.php:145 +#: libraries/messages.inc.php:672 server_privileges.php:145 #: server_privileges.php:475 msgid "Allows creating new databases and tables." msgstr "" -#: libraries/messages.inc.php:677 server_privileges.php:168 +#: libraries/messages.inc.php:673 server_privileges.php:168 #: server_privileges.php:481 msgid "Allows creating stored routines." msgstr "" -#: libraries/messages.inc.php:678 server_privileges.php:475 +#: libraries/messages.inc.php:674 server_privileges.php:475 msgid "Allows creating new tables." msgstr "" -#: libraries/messages.inc.php:679 server_privileges.php:156 +#: libraries/messages.inc.php:675 server_privileges.php:156 #: server_privileges.php:479 msgid "Allows creating temporary tables." msgstr "" -#: libraries/messages.inc.php:680 server_privileges.php:170 +#: libraries/messages.inc.php:676 server_privileges.php:170 #: server_privileges.php:515 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: libraries/messages.inc.php:681 server_privileges.php:160 +#: libraries/messages.inc.php:677 server_privileges.php:160 #: server_privileges.php:164 server_privileges.php:487 #: server_privileges.php:491 msgid "Allows creating new views." msgstr "" -#: libraries/messages.inc.php:682 server_privileges.php:144 +#: libraries/messages.inc.php:678 server_privileges.php:144 #: server_privileges.php:467 msgid "Allows deleting data." msgstr "" -#: libraries/messages.inc.php:683 server_privileges.php:146 +#: libraries/messages.inc.php:679 server_privileges.php:146 #: server_privileges.php:478 msgid "Allows dropping databases and tables." msgstr "" -#: libraries/messages.inc.php:684 server_privileges.php:478 +#: libraries/messages.inc.php:680 server_privileges.php:478 msgid "Allows dropping tables." msgstr "" -#: libraries/messages.inc.php:685 server_privileges.php:161 +#: libraries/messages.inc.php:681 server_privileges.php:161 #: server_privileges.php:495 msgid "Allows to set up events for the event scheduler" msgstr "" -#: libraries/messages.inc.php:686 server_privileges.php:171 +#: libraries/messages.inc.php:682 server_privileges.php:171 #: server_privileges.php:483 msgid "Allows executing stored routines." msgstr "" -#: libraries/messages.inc.php:687 server_privileges.php:150 +#: libraries/messages.inc.php:683 server_privileges.php:150 #: server_privileges.php:470 msgid "Allows importing data from and exporting data into files." msgstr "" -#: libraries/messages.inc.php:688 server_privileges.php:501 +#: libraries/messages.inc.php:684 server_privileges.php:501 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: libraries/messages.inc.php:689 server_privileges.php:152 +#: libraries/messages.inc.php:685 server_privileges.php:152 #: server_privileges.php:477 msgid "Allows creating and dropping indexes." msgstr "" -#: libraries/messages.inc.php:690 server_privileges.php:142 +#: libraries/messages.inc.php:686 server_privileges.php:142 #: server_privileges.php:403 server_privileges.php:465 msgid "Allows inserting and replacing data." msgstr "" -#: libraries/messages.inc.php:691 server_privileges.php:157 +#: libraries/messages.inc.php:687 server_privileges.php:157 #: server_privileges.php:510 msgid "Allows locking tables for the current thread." msgstr "" -#: libraries/messages.inc.php:692 server_privileges.php:607 +#: libraries/messages.inc.php:688 server_privileges.php:607 #: server_privileges.php:609 msgid "Limits the number of new connections the user may open per hour." msgstr "Limits the number of new connections the user may open per hour." -#: libraries/messages.inc.php:693 server_privileges.php:595 +#: libraries/messages.inc.php:689 server_privileges.php:595 #: server_privileges.php:597 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Limits the number of queries the user may send to the server per hour." -#: libraries/messages.inc.php:694 server_privileges.php:601 +#: libraries/messages.inc.php:690 server_privileges.php:601 #: server_privileges.php:603 msgid "" "Limits the number of commands that change any table or database the user may " @@ -4588,58 +4588,58 @@ msgstr "" "Limits the number of commands that change any table or database the user may " "execute per hour." -#: libraries/messages.inc.php:695 server_privileges.php:613 +#: libraries/messages.inc.php:691 server_privileges.php:613 #: server_privileges.php:615 #, fuzzy msgid "Limits the number of simultaneous connections the user may have." msgstr "Limits the number of new connections the user may open per hour." -#: libraries/messages.inc.php:696 server_privileges.php:149 +#: libraries/messages.inc.php:692 server_privileges.php:149 #: server_privileges.php:505 msgid "Allows viewing processes of all users" msgstr "" -#: libraries/messages.inc.php:697 server_privileges.php:151 +#: libraries/messages.inc.php:693 server_privileges.php:151 #: server_privileges.php:409 server_privileges.php:511 msgid "Has no effect in this MySQL version." msgstr "" -#: libraries/messages.inc.php:698 server_privileges.php:147 +#: libraries/messages.inc.php:694 server_privileges.php:147 #: server_privileges.php:506 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: libraries/messages.inc.php:699 server_privileges.php:159 +#: libraries/messages.inc.php:695 server_privileges.php:159 #: server_privileges.php:513 msgid "Allows the user to ask where the slaves / masters are." msgstr "" -#: libraries/messages.inc.php:700 server_privileges.php:158 +#: libraries/messages.inc.php:696 server_privileges.php:158 #: server_privileges.php:514 msgid "Needed for the replication slaves." msgstr "" -#: libraries/messages.inc.php:701 server_privileges.php:141 +#: libraries/messages.inc.php:697 server_privileges.php:141 #: server_privileges.php:400 server_privileges.php:464 msgid "Allows reading data." msgstr "" -#: libraries/messages.inc.php:702 server_privileges.php:154 +#: libraries/messages.inc.php:698 server_privileges.php:154 #: server_privileges.php:508 msgid "Gives access to the complete list of databases." msgstr "" -#: libraries/messages.inc.php:703 server_privileges.php:165 +#: libraries/messages.inc.php:699 server_privileges.php:165 #: server_privileges.php:167 server_privileges.php:480 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: libraries/messages.inc.php:704 server_privileges.php:148 +#: libraries/messages.inc.php:700 server_privileges.php:148 #: server_privileges.php:507 msgid "Allows shutting down the server." msgstr "" -#: libraries/messages.inc.php:705 server_privileges.php:155 +#: libraries/messages.inc.php:701 server_privileges.php:155 #: server_privileges.php:504 msgid "" "Allows connecting, even if maximum number of connections is reached; " @@ -4647,56 +4647,56 @@ msgid "" "killing threads of other users." msgstr "" -#: libraries/messages.inc.php:706 server_privileges.php:162 +#: libraries/messages.inc.php:702 server_privileges.php:162 #: server_privileges.php:496 msgid "Allows creating and dropping triggers" msgstr "" -#: libraries/messages.inc.php:707 server_privileges.php:143 +#: libraries/messages.inc.php:703 server_privileges.php:143 #: server_privileges.php:406 server_privileges.php:466 msgid "Allows changing data." msgstr "" -#: libraries/messages.inc.php:708 server_privileges.php:221 +#: libraries/messages.inc.php:704 server_privileges.php:221 #, fuzzy msgid "No privileges." msgstr "Geen Regte" -#: libraries/messages.inc.php:710 server_privileges.php:1296 +#: libraries/messages.inc.php:706 server_privileges.php:1296 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/messages.inc.php:712 libraries/server_links.inc.php:80 +#: libraries/messages.inc.php:708 libraries/server_links.inc.php:80 msgid "Processes" msgstr "" -#: libraries/messages.inc.php:714 main.php:187 +#: libraries/messages.inc.php:710 main.php:187 msgid "Protocol version" msgstr "" -#: libraries/messages.inc.php:715 +#: libraries/messages.inc.php:711 msgid "Put fields names in the first row" msgstr "" -#: libraries/messages.inc.php:720 server_synchronize.php:1003 +#: libraries/messages.inc.php:716 server_synchronize.php:1003 msgid "The following queries have been executed:" msgstr "" -#: libraries/messages.inc.php:721 server_status.php:251 +#: libraries/messages.inc.php:717 server_status.php:251 msgid "Query cache" msgstr "" -#: libraries/messages.inc.php:722 libraries/navigation_header.inc.php:80 +#: libraries/messages.inc.php:718 libraries/navigation_header.inc.php:80 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 setup/lib/messages.inc.php:122 msgid "Query window" msgstr "" -#: libraries/messages.inc.php:725 querywindow.php:109 querywindow.php:217 +#: libraries/messages.inc.php:721 querywindow.php:109 querywindow.php:217 msgid "SQL history" msgstr "" -#: libraries/messages.inc.php:726 server_status.php:490 +#: libraries/messages.inc.php:722 server_status.php:490 #, php-format msgid "" "Query statistics: Since its startup, %s queries have been sent to the " @@ -4705,138 +4705,138 @@ msgstr "" "Query statistics: Since its startup, %s queries have been sent to the " "server." -#: libraries/messages.inc.php:728 server_status.php:554 +#: libraries/messages.inc.php:724 server_status.php:554 msgid "Query type" msgstr "" -#: libraries/messages.inc.php:729 libraries/sql_query_form.lib.php:381 +#: libraries/messages.inc.php:725 libraries/sql_query_form.lib.php:381 msgid "Do not overwrite this query from outside the window" msgstr "" -#: libraries/messages.inc.php:732 tbl_operations.php:663 +#: libraries/messages.inc.php:728 tbl_operations.php:663 msgid "Rebuild" msgstr "" -#: libraries/messages.inc.php:733 server_status.php:394 +#: libraries/messages.inc.php:729 server_status.php:394 msgid "Received" msgstr "" -#: libraries/messages.inc.php:734 pmd_pdf.php:89 +#: libraries/messages.inc.php:730 pmd_pdf.php:89 msgid "recommended" msgstr "" -#: libraries/messages.inc.php:736 tbl_operations.php:702 +#: libraries/messages.inc.php:732 tbl_operations.php:702 msgid "Check referential integrity:" msgstr "Toets referential integrity:" -#: libraries/messages.inc.php:740 pdf_schema.php:1032 pdf_schema.php:1141 +#: libraries/messages.inc.php:736 pdf_schema.php:1032 pdf_schema.php:1141 msgid "Relational schema" msgstr "" -#: libraries/messages.inc.php:744 tbl_relation.php:399 +#: libraries/messages.inc.php:740 tbl_relation.php:399 #, fuzzy msgid "Relations" msgstr "Operasies" -#: libraries/messages.inc.php:745 tbl_structure.php:507 tbl_structure.php:509 +#: libraries/messages.inc.php:741 tbl_structure.php:507 tbl_structure.php:509 msgid "Relation view" msgstr "Relasie uitsig" -#: libraries/messages.inc.php:746 server_privileges.php:1246 +#: libraries/messages.inc.php:742 server_privileges.php:1246 msgid "Reloading the privileges" msgstr "" -#: libraries/messages.inc.php:747 navigation.php:66 navigation.php:67 +#: libraries/messages.inc.php:743 navigation.php:66 navigation.php:67 #: navigation.php:70 msgid "Reload navigation frame" msgstr "" -#: libraries/messages.inc.php:748 pmd_general.php:80 +#: libraries/messages.inc.php:744 pmd_general.php:80 msgid "Reload" msgstr "" -#: libraries/messages.inc.php:749 libraries/server_synchronize.lib.php:1345 +#: libraries/messages.inc.php:745 libraries/server_synchronize.lib.php:1345 #: libraries/server_synchronize.lib.php:1371 msgid "Remote server" msgstr "" -#: libraries/messages.inc.php:750 +#: libraries/messages.inc.php:746 msgid "Remove CRLF characters within fields" msgstr "" -#: libraries/messages.inc.php:751 tbl_operations.php:676 +#: libraries/messages.inc.php:747 tbl_operations.php:676 msgid "Remove partitioning" msgstr "" -#: libraries/messages.inc.php:752 server_privileges.php:1575 +#: libraries/messages.inc.php:748 server_privileges.php:1575 msgid "Remove selected users" msgstr "" -#: libraries/messages.inc.php:755 tbl_operations.php:338 +#: libraries/messages.inc.php:751 tbl_operations.php:338 msgid "Rename table to" msgstr "Hernoem tabel na" -#: libraries/messages.inc.php:756 view_operations.php:93 +#: libraries/messages.inc.php:752 view_operations.php:93 #, fuzzy msgid "Rename view to" msgstr "Hernoem tabel na" -#: libraries/messages.inc.php:757 tbl_operations.php:664 +#: libraries/messages.inc.php:753 tbl_operations.php:664 #, fuzzy msgid "Repair" msgstr "Herstel tabel" -#: libraries/messages.inc.php:759 +#: libraries/messages.inc.php:755 msgid "Replace NULL by" msgstr "" -#: libraries/messages.inc.php:760 +#: libraries/messages.inc.php:756 msgid "Replace table data with file" msgstr "Vervang tabel data met leer (file)" -#: libraries/messages.inc.php:761 server_replication.php:228 +#: libraries/messages.inc.php:757 server_replication.php:228 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: libraries/messages.inc.php:762 libraries/replication_gui.lib.php:236 +#: libraries/messages.inc.php:758 libraries/replication_gui.lib.php:236 #: server_replication.php:194 msgid "Add slave replication user" msgstr "" -#: libraries/messages.inc.php:763 server_replication.php:74 +#: libraries/messages.inc.php:759 server_replication.php:74 #, php-format msgid "Master server changed succesfully to %s" msgstr "" -#: libraries/messages.inc.php:764 server_replication.php:182 +#: libraries/messages.inc.php:760 server_replication.php:182 msgid "This server is configured as master in a replication process." msgstr "" -#: libraries/messages.inc.php:765 server_replication.php:322 +#: libraries/messages.inc.php:761 server_replication.php:322 msgid "Control slave:" msgstr "" -#: libraries/messages.inc.php:766 server_replication.php:65 +#: libraries/messages.inc.php:762 server_replication.php:65 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: libraries/messages.inc.php:767 server_replication.php:58 +#: libraries/messages.inc.php:763 server_replication.php:58 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: libraries/messages.inc.php:768 server_replication.php:221 +#: libraries/messages.inc.php:764 server_replication.php:221 msgid "Replicate all databases; Ignore:" msgstr "" -#: libraries/messages.inc.php:769 server_replication.php:222 +#: libraries/messages.inc.php:765 server_replication.php:222 msgid "Ignore all databases; Replicate:" msgstr "" -#: libraries/messages.inc.php:770 server_replication.php:218 +#: libraries/messages.inc.php:766 server_replication.php:218 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -4845,121 +4845,121 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: libraries/messages.inc.php:771 server_replication.php:217 +#: libraries/messages.inc.php:767 server_replication.php:217 msgid "Master configuration" msgstr "" -#: libraries/messages.inc.php:772 server_replication.php:181 +#: libraries/messages.inc.php:768 server_replication.php:181 #: server_replication.php:209 msgid "Master replication" msgstr "" -#: libraries/messages.inc.php:774 server_replication.php:230 +#: libraries/messages.inc.php:770 server_replication.php:230 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: libraries/messages.inc.php:775 server_replication.php:225 +#: libraries/messages.inc.php:771 server_replication.php:225 #, fuzzy msgid "Please select databases:" msgstr "Kies asb. 'n databasis" -#: libraries/messages.inc.php:776 server_replication.php:210 +#: libraries/messages.inc.php:772 server_replication.php:210 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:188 +#: libraries/messages.inc.php:773 libraries/replication_gui.lib.php:188 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/messages.inc.php:778 server_replication.php:187 +#: libraries/messages.inc.php:774 server_replication.php:187 msgid "Show connected slaves" msgstr "" -#: libraries/messages.inc.php:779 libraries/messages.inc.php:885 +#: libraries/messages.inc.php:775 libraries/messages.inc.php:881 #: server_replication.php:184 server_status.php:281 msgid "Show master status" msgstr "" -#: libraries/messages.inc.php:780 server_replication.php:334 +#: libraries/messages.inc.php:776 server_replication.php:334 msgid "Skipping error(s) might lead into unsynchronized master and slave!" msgstr "" -#: libraries/messages.inc.php:781 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:51 #: server_replication.php:347 msgid "Change or reconfigure master server" msgstr "" -#: libraries/messages.inc.php:782 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:778 libraries/replication_gui.lib.php:51 msgid "Slave configuration" msgstr "" -#: libraries/messages.inc.php:783 server_replication.php:305 +#: libraries/messages.inc.php:779 server_replication.php:305 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: libraries/messages.inc.php:784 server_replication.php:332 +#: libraries/messages.inc.php:780 server_replication.php:332 msgid "Error management:" msgstr "" -#: libraries/messages.inc.php:785 server_replication.php:328 +#: libraries/messages.inc.php:781 server_replication.php:328 #, php-format msgid "IO Thread %s only" msgstr "" -#: libraries/messages.inc.php:786 server_replication.php:296 +#: libraries/messages.inc.php:782 server_replication.php:296 msgid "Slave IO Thread not running!" msgstr "" -#: libraries/messages.inc.php:787 server_replication.php:355 +#: libraries/messages.inc.php:783 server_replication.php:355 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/messages.inc.php:788 server_replication.php:326 +#: libraries/messages.inc.php:784 server_replication.php:326 msgid "Reset slave" msgstr "" -#: libraries/messages.inc.php:789 server_replication.php:308 +#: libraries/messages.inc.php:785 server_replication.php:308 msgid "See slave status table" msgstr "" -#: libraries/messages.inc.php:790 server_replication.php:336 +#: libraries/messages.inc.php:786 server_replication.php:336 msgid "Skip current error" msgstr "" -#: libraries/messages.inc.php:791 server_replication.php:340 +#: libraries/messages.inc.php:787 server_replication.php:340 msgid "errors." msgstr "" -#: libraries/messages.inc.php:792 server_replication.php:337 +#: libraries/messages.inc.php:788 server_replication.php:337 msgid "Skip next" msgstr "" -#: libraries/messages.inc.php:793 server_replication.php:248 +#: libraries/messages.inc.php:789 server_replication.php:248 msgid "Slave replication" msgstr "" -#: libraries/messages.inc.php:794 server_replication.php:293 +#: libraries/messages.inc.php:790 server_replication.php:293 msgid "Slave SQL Thread not running!" msgstr "" -#: libraries/messages.inc.php:795 server_replication.php:327 +#: libraries/messages.inc.php:791 server_replication.php:327 #, php-format msgid "SQL Thread %s only" msgstr "" -#: libraries/messages.inc.php:796 +#: libraries/messages.inc.php:792 #, php-format msgid "" "This MySQL server works as %s in replication process. For further " @@ -4967,158 +4967,158 @@ msgid "" "\"#replication\">replication section." msgstr "" -#: libraries/messages.inc.php:797 +#: libraries/messages.inc.php:793 msgid "Master status" msgstr "" -#: libraries/messages.inc.php:798 server_status.php:721 +#: libraries/messages.inc.php:794 server_status.php:721 msgid "Replication status" msgstr "" -#: libraries/messages.inc.php:799 +#: libraries/messages.inc.php:795 msgid "Slave status" msgstr "" -#: libraries/messages.inc.php:800 server_replication.php:311 +#: libraries/messages.inc.php:796 server_replication.php:311 msgid "Synchronize databases with master" msgstr "" -#: libraries/messages.inc.php:801 server_replication.php:71 +#: libraries/messages.inc.php:797 server_replication.php:71 msgid "Unable to change master" msgstr "" -#: libraries/messages.inc.php:802 server_replication.php:51 +#: libraries/messages.inc.php:798 server_replication.php:51 msgid "Unknown error" msgstr "" -#: libraries/messages.inc.php:803 main.php:163 pdf_pages.php:344 +#: libraries/messages.inc.php:799 main.php:163 pdf_pages.php:344 #: setup/lib/FormDisplay.tpl.php:216 tbl_change.php:1175 msgid "Reset" msgstr "Herstel" -#: libraries/messages.inc.php:804 server_privileges.php:591 +#: libraries/messages.inc.php:800 server_privileges.php:591 msgid "Resource limits" msgstr "" -#: libraries/messages.inc.php:805 tbl_change.php:1209 +#: libraries/messages.inc.php:801 tbl_change.php:1209 #, php-format msgid "Restart insertion with %s rows" msgstr "" -#: libraries/messages.inc.php:807 server_privileges.php:1578 +#: libraries/messages.inc.php:803 server_privileges.php:1578 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: libraries/messages.inc.php:808 server_privileges.php:1176 +#: libraries/messages.inc.php:804 server_privileges.php:1176 #, php-format msgid "You have revoked the privileges for %s" msgstr "Jy het die regte herroep vir %s" -#: libraries/messages.inc.php:809 server_privileges.php:1333 +#: libraries/messages.inc.php:805 server_privileges.php:1333 msgid "Revoke" msgstr "Herroep" -#: libraries/messages.inc.php:810 libraries/mysql_charsets.lib.php:280 +#: libraries/messages.inc.php:806 libraries/mysql_charsets.lib.php:280 msgid "Romanian" msgstr "" -#: libraries/messages.inc.php:813 tbl_printview.php:404 tbl_structure.php:786 +#: libraries/messages.inc.php:809 tbl_printview.php:404 tbl_structure.php:786 msgid "Row length" msgstr "Ry lengte" -#: libraries/messages.inc.php:815 tbl_printview.php:414 tbl_structure.php:794 +#: libraries/messages.inc.php:811 tbl_printview.php:414 tbl_structure.php:794 msgid " Row size " msgstr " Ry grootte " -#: libraries/messages.inc.php:821 tbl_printview.php:366 tbl_structure.php:726 +#: libraries/messages.inc.php:817 tbl_printview.php:366 tbl_structure.php:726 msgid "Row Statistics" msgstr "Ry Statistiek" -#: libraries/messages.inc.php:822 +#: libraries/messages.inc.php:818 #, php-format msgid "running on %s" msgstr "op bediener %s" -#: libraries/messages.inc.php:824 libraries/sql_query_form.lib.php:223 +#: libraries/messages.inc.php:820 libraries/sql_query_form.lib.php:223 #, fuzzy, php-format msgid "Run SQL query/queries on server %s" msgstr "Hardloop SQL stellings op databasis %s" -#: libraries/messages.inc.php:825 libraries/sql_query_form.lib.php:240 +#: libraries/messages.inc.php:821 libraries/sql_query_form.lib.php:240 #: libraries/sql_query_form.lib.php:265 #, php-format msgid "Run SQL query/queries on database %s" msgstr "Hardloop SQL stellings op databasis %s" -#: libraries/messages.inc.php:826 libraries/mysql_charsets.lib.php:337 +#: libraries/messages.inc.php:822 libraries/mysql_charsets.lib.php:337 msgid "Russian" msgstr "" -#: libraries/messages.inc.php:829 pmd_general.php:68 +#: libraries/messages.inc.php:825 pmd_general.php:68 msgid "Save position" msgstr "" -#: libraries/messages.inc.php:830 libraries/tbl_properties.inc.php:776 +#: libraries/messages.inc.php:826 libraries/tbl_properties.inc.php:776 #: pdf_pages.php:484 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:214 setup/lib/FormDisplay.tpl.php:215 #: tbl_change.php:1126 tbl_indexes.php:248 tbl_relation.php:566 msgid "Save" msgstr "Stoor" -#: libraries/messages.inc.php:831 +#: libraries/messages.inc.php:827 msgid "The scale factor is too small to fit the schema on one page" msgstr "Die skaal faktor is te klein om die skema op een bladsy te pas" -#: libraries/messages.inc.php:843 main.php:298 +#: libraries/messages.inc.php:839 main.php:298 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" -#: libraries/messages.inc.php:844 navigation.php:353 navigation.php:516 +#: libraries/messages.inc.php:840 navigation.php:353 navigation.php:516 msgid "Please select a database" msgstr "Kies asb. 'n databasis" -#: libraries/messages.inc.php:846 server_binlog.php:120 +#: libraries/messages.inc.php:842 server_binlog.php:120 msgid "Select binary log to view" msgstr "" -#: libraries/messages.inc.php:847 tbl_select.php:270 +#: libraries/messages.inc.php:843 tbl_select.php:270 msgid "Select fields (at least one):" msgstr "Kies Velde (ten minste een):" -#: libraries/messages.inc.php:851 pdf_pages.php:320 +#: libraries/messages.inc.php:847 pdf_pages.php:320 msgid "Select Tables" msgstr "Kies Tabelle" -#: libraries/messages.inc.php:853 server_status.php:404 +#: libraries/messages.inc.php:849 server_status.php:404 msgid "Sent" msgstr "" -#: libraries/messages.inc.php:857 libraries/select_server.lib.php:45 +#: libraries/messages.inc.php:853 libraries/select_server.lib.php:45 #: setup/frames/index.inc.php:97 setup/lib/messages.inc.php:115 msgid "Servers" msgstr "" -#: libraries/messages.inc.php:858 server_status.php:255 +#: libraries/messages.inc.php:854 server_status.php:255 #, fuzzy msgid "Delayed inserts" msgstr "Uitgebreide toevoegings" -#: libraries/messages.inc.php:859 server_status.php:46 +#: libraries/messages.inc.php:855 server_status.php:46 msgid "Runtime Information" msgstr "" -#: libraries/messages.inc.php:860 server_status.php:350 +#: libraries/messages.inc.php:856 server_status.php:350 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "" -#: libraries/messages.inc.php:861 libraries/server_links.inc.php:53 +#: libraries/messages.inc.php:857 libraries/server_links.inc.php:53 #: server_engines.php:112 server_engines.php:116 server_status.php:304 #: test/theme.php:105 msgid "Variables" msgstr "" -#: libraries/messages.inc.php:862 server_status.php:383 +#: libraries/messages.inc.php:858 server_status.php:383 msgid "" "Server traffic: These tables show the network traffic statistics of " "this MySQL server since its startup." @@ -5126,11 +5126,11 @@ msgstr "" "Server traffic: These tables show the network traffic statistics of " "this MySQL server since its startup." -#: libraries/messages.inc.php:863 server_variables.php:35 +#: libraries/messages.inc.php:859 server_variables.php:35 msgid "Server variables and settings" msgstr "" -#: libraries/messages.inc.php:865 main.php:290 +#: libraries/messages.inc.php:861 main.php:290 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -5138,17 +5138,17 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: libraries/messages.inc.php:866 +#: libraries/messages.inc.php:862 msgid "" "Cannot start session without errors, please check errors given in your PHP " "and/or webserver log file and configure your PHP installation properly." msgstr "" -#: libraries/messages.inc.php:867 server_variables.php:55 +#: libraries/messages.inc.php:863 server_variables.php:55 msgid "Session value" msgstr "" -#: libraries/messages.inc.php:868 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:864 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 " @@ -5160,56 +5160,56 @@ msgstr "" "a single quote (\"'\") amongst those values, backslashes it (for example '\\" "\\xyz' or 'a\\'b')." -#: libraries/messages.inc.php:876 server_binlog.php:192 server_binlog.php:195 +#: libraries/messages.inc.php:872 server_binlog.php:192 server_binlog.php:195 #: server_processlist.php:49 server_processlist.php:51 msgid "Show Full Queries" msgstr "" -#: libraries/messages.inc.php:878 pmd_general.php:64 +#: libraries/messages.inc.php:874 pmd_general.php:64 msgid "Show/Hide left menu" msgstr "" -#: libraries/messages.inc.php:880 sql.php:513 +#: libraries/messages.inc.php:876 sql.php:513 msgid "Showing as PHP code" msgstr "" -#: libraries/messages.inc.php:882 sql.php:516 tbl_replace.php:360 +#: libraries/messages.inc.php:878 sql.php:516 tbl_replace.php:360 msgid "Showing SQL query" msgstr "" -#: libraries/messages.inc.php:883 tbl_change.php:1132 +#: libraries/messages.inc.php:879 tbl_change.php:1132 msgid "Show insert query" msgstr "" -#: libraries/messages.inc.php:886 server_status.php:273 +#: libraries/messages.inc.php:882 server_status.php:273 #, fuzzy msgid "Show open tables" msgstr "Wys tabelle" -#: libraries/messages.inc.php:887 main.php:219 +#: libraries/messages.inc.php:883 main.php:219 msgid "Show PHP information" msgstr "Wys PHP informasie" -#: libraries/messages.inc.php:889 server_status.php:278 +#: libraries/messages.inc.php:885 server_status.php:278 msgid "Show slave hosts" msgstr "" -#: libraries/messages.inc.php:890 server_status.php:284 +#: libraries/messages.inc.php:886 server_status.php:284 msgid "Show slave status" msgstr "" -#: libraries/messages.inc.php:891 +#: libraries/messages.inc.php:887 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/messages.inc.php:892 +#: libraries/messages.inc.php:888 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/messages.inc.php:893 +#: libraries/messages.inc.php:889 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -5217,78 +5217,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/messages.inc.php:894 +#: libraries/messages.inc.php:890 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/messages.inc.php:895 +#: libraries/messages.inc.php:891 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/messages.inc.php:896 +#: libraries/messages.inc.php:892 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/messages.inc.php:897 +#: libraries/messages.inc.php:893 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/messages.inc.php:898 +#: libraries/messages.inc.php:894 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/messages.inc.php:899 +#: libraries/messages.inc.php:895 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/messages.inc.php:900 +#: libraries/messages.inc.php:896 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/messages.inc.php:901 +#: libraries/messages.inc.php:897 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/messages.inc.php:902 +#: libraries/messages.inc.php:898 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/messages.inc.php:903 +#: libraries/messages.inc.php:899 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/messages.inc.php:904 +#: libraries/messages.inc.php:900 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: libraries/messages.inc.php:905 +#: libraries/messages.inc.php:901 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/messages.inc.php:906 +#: libraries/messages.inc.php:902 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: libraries/messages.inc.php:907 +#: libraries/messages.inc.php:903 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -5296,7 +5296,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/messages.inc.php:908 +#: libraries/messages.inc.php:904 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -5304,42 +5304,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/messages.inc.php:909 +#: libraries/messages.inc.php:905 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/messages.inc.php:910 +#: libraries/messages.inc.php:906 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/messages.inc.php:911 +#: libraries/messages.inc.php:907 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/messages.inc.php:912 +#: libraries/messages.inc.php:908 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/messages.inc.php:913 +#: libraries/messages.inc.php:909 msgid "The number of pages currently dirty." msgstr "" -#: libraries/messages.inc.php:914 +#: libraries/messages.inc.php:910 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/messages.inc.php:915 +#: libraries/messages.inc.php:911 msgid "The number of free pages." msgstr "" -#: libraries/messages.inc.php:916 +#: libraries/messages.inc.php:912 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/messages.inc.php:917 +#: libraries/messages.inc.php:913 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -5347,33 +5347,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/messages.inc.php:918 +#: libraries/messages.inc.php:914 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/messages.inc.php:919 +#: libraries/messages.inc.php:915 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/messages.inc.php:920 +#: libraries/messages.inc.php:916 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/messages.inc.php:921 +#: libraries/messages.inc.php:917 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/messages.inc.php:922 +#: libraries/messages.inc.php:918 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/messages.inc.php:923 +#: libraries/messages.inc.php:919 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -5382,218 +5382,218 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/messages.inc.php:924 +#: libraries/messages.inc.php:920 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/messages.inc.php:925 +#: libraries/messages.inc.php:921 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/messages.inc.php:926 +#: libraries/messages.inc.php:922 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/messages.inc.php:927 +#: libraries/messages.inc.php:923 msgid "The current number of pending reads." msgstr "" -#: libraries/messages.inc.php:928 +#: libraries/messages.inc.php:924 msgid "The current number of pending writes." msgstr "" -#: libraries/messages.inc.php:929 +#: libraries/messages.inc.php:925 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/messages.inc.php:930 +#: libraries/messages.inc.php:926 msgid "The total number of data reads." msgstr "" -#: libraries/messages.inc.php:931 +#: libraries/messages.inc.php:927 msgid "The total number of data writes." msgstr "" -#: libraries/messages.inc.php:932 +#: libraries/messages.inc.php:928 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/messages.inc.php:933 +#: libraries/messages.inc.php:929 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/messages.inc.php:934 +#: libraries/messages.inc.php:930 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/messages.inc.php:935 +#: libraries/messages.inc.php:931 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/messages.inc.php:936 +#: libraries/messages.inc.php:932 msgid "The number of log write requests." msgstr "" -#: libraries/messages.inc.php:937 +#: libraries/messages.inc.php:933 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/messages.inc.php:938 +#: libraries/messages.inc.php:934 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/messages.inc.php:939 +#: libraries/messages.inc.php:935 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/messages.inc.php:940 +#: libraries/messages.inc.php:936 msgid "Pending log file writes." msgstr "" -#: libraries/messages.inc.php:941 +#: libraries/messages.inc.php:937 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/messages.inc.php:942 +#: libraries/messages.inc.php:938 msgid "The number of pages created." msgstr "" -#: libraries/messages.inc.php:943 +#: libraries/messages.inc.php:939 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: libraries/messages.inc.php:944 +#: libraries/messages.inc.php:940 msgid "The number of pages read." msgstr "" -#: libraries/messages.inc.php:945 +#: libraries/messages.inc.php:941 msgid "The number of pages written." msgstr "" -#: libraries/messages.inc.php:946 +#: libraries/messages.inc.php:942 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/messages.inc.php:947 +#: libraries/messages.inc.php:943 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/messages.inc.php:948 +#: libraries/messages.inc.php:944 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/messages.inc.php:949 +#: libraries/messages.inc.php:945 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/messages.inc.php:950 +#: libraries/messages.inc.php:946 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/messages.inc.php:951 +#: libraries/messages.inc.php:947 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/messages.inc.php:952 +#: libraries/messages.inc.php:948 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/messages.inc.php:953 +#: libraries/messages.inc.php:949 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/messages.inc.php:954 +#: libraries/messages.inc.php:950 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/messages.inc.php:955 +#: libraries/messages.inc.php:951 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/messages.inc.php:956 +#: libraries/messages.inc.php:952 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: libraries/messages.inc.php:957 +#: libraries/messages.inc.php:953 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/messages.inc.php:958 +#: libraries/messages.inc.php:954 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/messages.inc.php:959 +#: libraries/messages.inc.php:955 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/messages.inc.php:960 +#: libraries/messages.inc.php:956 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/messages.inc.php:961 +#: libraries/messages.inc.php:957 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/messages.inc.php:962 +#: libraries/messages.inc.php:958 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/messages.inc.php:963 +#: libraries/messages.inc.php:959 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/messages.inc.php:964 +#: libraries/messages.inc.php:960 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/messages.inc.php:965 +#: libraries/messages.inc.php:961 msgid "The number of files that are open." msgstr "" -#: libraries/messages.inc.php:966 +#: libraries/messages.inc.php:962 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/messages.inc.php:967 +#: libraries/messages.inc.php:963 msgid "The number of tables that are open." msgstr "" -#: libraries/messages.inc.php:968 +#: libraries/messages.inc.php:964 msgid "The number of free memory blocks in query cache." msgstr "" -#: libraries/messages.inc.php:969 +#: libraries/messages.inc.php:965 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/messages.inc.php:970 +#: libraries/messages.inc.php:966 msgid "The number of cache hits." msgstr "" -#: libraries/messages.inc.php:971 +#: libraries/messages.inc.php:967 msgid "The number of queries added to the cache." msgstr "" -#: libraries/messages.inc.php:972 +#: libraries/messages.inc.php:968 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -5601,105 +5601,105 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/messages.inc.php:973 +#: libraries/messages.inc.php:969 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/messages.inc.php:974 +#: libraries/messages.inc.php:970 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/messages.inc.php:975 +#: libraries/messages.inc.php:971 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/messages.inc.php:976 +#: libraries/messages.inc.php:972 #, fuzzy msgctxt "$strShowStatusReset" msgid "Reset" msgstr "Herstel" -#: libraries/messages.inc.php:977 +#: libraries/messages.inc.php:973 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/messages.inc.php:978 +#: libraries/messages.inc.php:974 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: libraries/messages.inc.php:979 +#: libraries/messages.inc.php:975 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/messages.inc.php:980 +#: libraries/messages.inc.php:976 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: libraries/messages.inc.php:981 +#: libraries/messages.inc.php:977 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/messages.inc.php:982 +#: libraries/messages.inc.php:978 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/messages.inc.php:983 +#: libraries/messages.inc.php:979 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/messages.inc.php:984 +#: libraries/messages.inc.php:980 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/messages.inc.php:985 +#: libraries/messages.inc.php:981 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/messages.inc.php:986 +#: libraries/messages.inc.php:982 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/messages.inc.php:987 +#: libraries/messages.inc.php:983 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/messages.inc.php:988 +#: libraries/messages.inc.php:984 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/messages.inc.php:989 +#: libraries/messages.inc.php:985 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/messages.inc.php:990 +#: libraries/messages.inc.php:986 msgid "The number of sorted rows." msgstr "" -#: libraries/messages.inc.php:991 +#: libraries/messages.inc.php:987 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/messages.inc.php:992 +#: libraries/messages.inc.php:988 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/messages.inc.php:993 +#: libraries/messages.inc.php:989 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -5707,18 +5707,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/messages.inc.php:994 +#: libraries/messages.inc.php:990 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/messages.inc.php:995 +#: libraries/messages.inc.php:991 msgid "The number of currently open connections." msgstr "" -#: libraries/messages.inc.php:996 +#: libraries/messages.inc.php:992 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -5726,74 +5726,74 @@ msgid "" "implementation.)" msgstr "" -#: libraries/messages.inc.php:997 +#: libraries/messages.inc.php:993 msgid "The number of threads that are not sleeping." msgstr "" -#: libraries/messages.inc.php:999 tbl_printview.php:75 +#: libraries/messages.inc.php:995 tbl_printview.php:75 msgid "Show tables" msgstr "Wys tabelle" -#: libraries/messages.inc.php:1000 libraries/sql_query_form.lib.php:396 +#: libraries/messages.inc.php:996 libraries/sql_query_form.lib.php:396 msgid " Show this query here again " msgstr " Wys hierdie navraag weer hier " -#: libraries/messages.inc.php:1001 libraries/mysql_charsets.lib.php:217 +#: libraries/messages.inc.php:997 libraries/mysql_charsets.lib.php:217 #: libraries/mysql_charsets.lib.php:342 msgid "Simplified Chinese" msgstr "" -#: libraries/messages.inc.php:1002 tbl_operations.php:258 +#: libraries/messages.inc.php:998 tbl_operations.php:258 msgid "(singly)" msgstr "(afsonderlik)" -#: libraries/messages.inc.php:1005 libraries/replication_gui.lib.php:52 +#: libraries/messages.inc.php:1001 libraries/replication_gui.lib.php:52 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" msgstr "" -#: libraries/messages.inc.php:1006 libraries/mysql_charsets.lib.php:283 +#: libraries/messages.inc.php:1002 libraries/mysql_charsets.lib.php:283 msgid "Slovak" msgstr "" -#: libraries/messages.inc.php:1007 libraries/mysql_charsets.lib.php:286 +#: libraries/messages.inc.php:1003 libraries/mysql_charsets.lib.php:286 msgid "Slovenian" msgstr "" -#: libraries/messages.inc.php:1008 pmd_general.php:95 +#: libraries/messages.inc.php:1004 pmd_general.php:95 msgid "Small/Big All" msgstr "" -#: libraries/messages.inc.php:1009 pmd_general.php:91 +#: libraries/messages.inc.php:1005 pmd_general.php:91 msgid "Snap to grid" msgstr "" -#: libraries/messages.inc.php:1011 server_synchronize.php:1167 +#: libraries/messages.inc.php:1007 server_synchronize.php:1167 msgid "Socket" msgstr "" -#: libraries/messages.inc.php:1013 server_status.php:259 +#: libraries/messages.inc.php:1009 server_status.php:259 msgid "Sorting" msgstr "" -#: libraries/messages.inc.php:1015 tbl_printview.php:310 tbl_structure.php:657 +#: libraries/messages.inc.php:1011 tbl_printview.php:310 tbl_structure.php:657 msgid "Space usage" msgstr "Spasie verbruik" -#: libraries/messages.inc.php:1016 libraries/mysql_charsets.lib.php:289 +#: libraries/messages.inc.php:1012 libraries/mysql_charsets.lib.php:289 msgid "Spanish" msgstr "" -#: libraries/messages.inc.php:1019 +#: libraries/messages.inc.php:1015 msgid "Export type" msgstr "" -#: libraries/messages.inc.php:1020 +#: libraries/messages.inc.php:1016 msgid "Export time in UTC" msgstr "" -#: libraries/messages.inc.php:1021 libraries/sqlparser.lib.php:173 +#: libraries/messages.inc.php:1017 libraries/sqlparser.lib.php:173 msgid "" "There is a chance that you may have found a bug in the SQL parser. Please " "examine your query closely, and check that the quotes are correct and not " @@ -5817,7 +5817,7 @@ msgstr "" "probleem veroorsaak, en rapporteer 'n fout met die data stuk in die " "UITKNIPSEL seksie hieronder:" -#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:137 +#: libraries/messages.inc.php:1018 libraries/sqlparser.lib.php:137 msgid "" "There seems to be an error in your SQL query. The MySQL server error output " "below, if there is any, may also help you in diagnosing the problem" @@ -5826,420 +5826,420 @@ msgstr "" "foutboodskap hieronder (indien enige) kan jou ook help om die probleem te " "diagnoseer" -#: libraries/messages.inc.php:1026 libraries/sqlparser.lib.php:495 +#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:495 msgid "Invalid Identifer" msgstr "Ongeldige Identifiseerder" -#: libraries/messages.inc.php:1027 libraries/sqlparser.lib.php:344 +#: libraries/messages.inc.php:1023 libraries/sqlparser.lib.php:344 msgid "Unclosed quote" msgstr "Ongebalanseerde kwotasie-teken" -#: libraries/messages.inc.php:1028 libraries/sqlparser.lib.php:612 +#: libraries/messages.inc.php:1024 libraries/sqlparser.lib.php:612 msgid "Unknown Punctuation String" msgstr "Onbekende Punktuasie String" -#: libraries/messages.inc.php:1030 server_replication.php:327 +#: libraries/messages.inc.php:1026 server_replication.php:327 #: server_replication.php:328 #, fuzzy msgid "Start" msgstr "Sa" -#: libraries/messages.inc.php:1033 tbl_printview.php:369 tbl_structure.php:729 +#: libraries/messages.inc.php:1029 tbl_printview.php:369 tbl_structure.php:729 msgid "Statements" msgstr "Stellings" -#: libraries/messages.inc.php:1034 tbl_printview.php:380 tbl_structure.php:741 +#: libraries/messages.inc.php:1030 tbl_printview.php:380 tbl_structure.php:741 msgid "static" msgstr "" -#: libraries/messages.inc.php:1035 server_status.php:388 +#: libraries/messages.inc.php:1031 server_status.php:388 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: libraries/messages.inc.php:1038 server_replication.php:327 +#: libraries/messages.inc.php:1034 server_replication.php:327 #: server_replication.php:328 msgid "Stop" msgstr "" -#: libraries/messages.inc.php:1039 server_engines.php:49 +#: libraries/messages.inc.php:1035 server_engines.php:49 msgid "Storage Engines" msgstr "" -#: libraries/messages.inc.php:1040 libraries/tbl_properties.inc.php:726 +#: libraries/messages.inc.php:1036 libraries/tbl_properties.inc.php:726 #: server_engines.php:58 tbl_operations.php:353 msgid "Storage Engine" msgstr "" -#: libraries/messages.inc.php:1042 +#: libraries/messages.inc.php:1038 msgid "CSV for MS Excel" msgstr "CSV vir M$ Excel data" -#: libraries/messages.inc.php:1044 tbl_structure.php:516 tbl_structure.php:518 +#: libraries/messages.inc.php:1040 tbl_structure.php:516 tbl_structure.php:518 msgid "Propose table structure" msgstr "Stel tabel struktuur voor" -#: libraries/messages.inc.php:1045 server_synchronize.php:424 +#: libraries/messages.inc.php:1041 server_synchronize.php:424 #: server_synchronize.php:867 msgid "Structure Difference" msgstr "" -#: libraries/messages.inc.php:1049 server_synchronize.php:265 +#: libraries/messages.inc.php:1045 server_synchronize.php:265 msgid "Structure Synchronization" msgstr "" -#: libraries/messages.inc.php:1050 libraries/sql_query_form.lib.php:462 +#: libraries/messages.inc.php:1046 libraries/sql_query_form.lib.php:462 msgid "Submit" msgstr "Stuur" -#: libraries/messages.inc.php:1052 main.php:358 +#: libraries/messages.inc.php:1048 main.php:358 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " "issues." msgstr "" -#: libraries/messages.inc.php:1054 libraries/mysql_charsets.lib.php:295 +#: libraries/messages.inc.php:1050 libraries/mysql_charsets.lib.php:295 #: libraries/mysql_charsets.lib.php:392 msgid "Swedish" msgstr "" -#: libraries/messages.inc.php:1060 tbl_operations.php:556 +#: libraries/messages.inc.php:1056 tbl_operations.php:556 msgid "Switch to copied table" msgstr "" -#: libraries/messages.inc.php:1061 server_synchronize.php:1213 +#: libraries/messages.inc.php:1057 server_synchronize.php:1213 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." msgstr "" -#: libraries/messages.inc.php:1062 server_synchronize.php:451 +#: libraries/messages.inc.php:1058 server_synchronize.php:451 #: server_synchronize.php:896 msgid "Synchronize Databases" msgstr "" -#: libraries/messages.inc.php:1063 libraries/server_links.inc.php:92 +#: libraries/messages.inc.php:1059 libraries/server_links.inc.php:92 #: server_synchronize.php:1092 server_synchronize.php:1100 msgid "Synchronize" msgstr "" -#: libraries/messages.inc.php:1065 server_synchronize.php:430 +#: libraries/messages.inc.php:1061 server_synchronize.php:430 #: server_synchronize.php:873 msgid "Add column(s)" msgstr "" -#: libraries/messages.inc.php:1066 tbl_create.php:62 +#: libraries/messages.inc.php:1062 tbl_create.php:62 #, php-format msgid "Table %s already exists!" msgstr "" -#: libraries/messages.inc.php:1067 server_synchronize.php:432 +#: libraries/messages.inc.php:1063 server_synchronize.php:432 #: server_synchronize.php:875 msgid "Alter column(s)" msgstr "" -#: libraries/messages.inc.php:1068 tbl_addfield.php:189 tbl_alter.php:103 +#: libraries/messages.inc.php:1064 tbl_addfield.php:189 tbl_alter.php:103 #: tbl_indexes.php:98 #, php-format msgid "Table %1$s has been altered successfully" msgstr "" -#: libraries/messages.inc.php:1069 server_synchronize.php:434 +#: libraries/messages.inc.php:1065 server_synchronize.php:434 #: server_synchronize.php:877 msgid "Apply index(s)" msgstr "" -#: libraries/messages.inc.php:1071 server_synchronize.php:446 +#: libraries/messages.inc.php:1067 server_synchronize.php:446 #: server_synchronize.php:890 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: libraries/messages.inc.php:1072 tbl_move_copy.php:82 +#: libraries/messages.inc.php:1068 tbl_move_copy.php:82 msgid "The table name is empty!" msgstr "Die tabel naam is leeg!" -#: libraries/messages.inc.php:1073 tbl_create.php:249 +#: libraries/messages.inc.php:1069 tbl_create.php:249 #, fuzzy, php-format msgid "Table %1$s has been created." msgstr "Tabel %s is verwyder" -#: libraries/messages.inc.php:1076 tbl_operations.php:628 +#: libraries/messages.inc.php:1072 tbl_operations.php:628 #, php-format msgid "Table %s has been flushed" msgstr "Tabel %s is geflush" -#: libraries/messages.inc.php:1077 server_synchronize.php:436 +#: libraries/messages.inc.php:1073 server_synchronize.php:436 #: server_synchronize.php:879 msgid "Insert row(s)" msgstr "" -#: libraries/messages.inc.php:1078 libraries/tbl_links.inc.php:107 +#: libraries/messages.inc.php:1074 libraries/tbl_links.inc.php:107 #: libraries/tbl_links.inc.php:140 libraries/tbl_links.inc.php:141 msgid "Table seems to be empty!" msgstr "" -#: libraries/messages.inc.php:1079 tbl_operations.php:568 +#: libraries/messages.inc.php:1075 tbl_operations.php:568 msgid "Table maintenance" msgstr "Tabel instandhouding" -#: libraries/messages.inc.php:1080 libraries/tbl_properties.inc.php:618 +#: libraries/messages.inc.php:1076 libraries/tbl_properties.inc.php:618 #: server_synchronize.php:428 server_synchronize.php:871 msgid "Table name" msgstr "" -#: libraries/messages.inc.php:1081 pdf_schema.php:1116 +#: libraries/messages.inc.php:1077 pdf_schema.php:1116 #, fuzzy msgid "Table of contents" msgstr "Tabel kommentaar" -#: libraries/messages.inc.php:1082 tbl_operations.php:334 +#: libraries/messages.inc.php:1078 tbl_operations.php:334 msgid "Table options" msgstr "" -#: libraries/messages.inc.php:1083 server_synchronize.php:431 +#: libraries/messages.inc.php:1079 server_synchronize.php:431 #: server_synchronize.php:874 msgid "Remove column(s)" msgstr "" -#: libraries/messages.inc.php:1084 server_synchronize.php:433 +#: libraries/messages.inc.php:1080 server_synchronize.php:433 #: server_synchronize.php:876 msgid "Remove index(s)" msgstr "" -#: libraries/messages.inc.php:1088 server_synchronize.php:435 +#: libraries/messages.inc.php:1084 server_synchronize.php:435 #: server_synchronize.php:878 msgid "Update row(s)" msgstr "" -#: libraries/messages.inc.php:1090 server_synchronize.php:942 +#: libraries/messages.inc.php:1086 server_synchronize.php:942 msgid "Target database has been synchronized with source database" msgstr "" -#: libraries/messages.inc.php:1091 server_privileges.php:392 +#: libraries/messages.inc.php:1087 server_privileges.php:392 #: server_privileges.php:527 server_privileges.php:1679 #: server_privileges.php:1685 msgid "Table-specific privileges" msgstr "" -#: libraries/messages.inc.php:1092 server_status.php:254 +#: libraries/messages.inc.php:1088 server_status.php:254 msgid "Temporary data" msgstr "" -#: libraries/messages.inc.php:1093 tbl_change.php:728 +#: libraries/messages.inc.php:1089 tbl_change.php:728 msgid " Because of its length,
this field might not be editable " msgstr "" " Omrede sy lengte,
is hierdie veld moontlik nie veranderbaar nie " -#: libraries/messages.inc.php:1094 +#: libraries/messages.inc.php:1090 msgid "Texy! text" msgstr "" -#: libraries/messages.inc.php:1095 libraries/mysql_charsets.lib.php:298 +#: libraries/messages.inc.php:1091 libraries/mysql_charsets.lib.php:298 #: libraries/mysql_charsets.lib.php:395 msgid "Thai" msgstr "" -#: libraries/messages.inc.php:1102 libraries/replication_gui.lib.php:308 +#: libraries/messages.inc.php:1098 libraries/replication_gui.lib.php:308 #: server_privileges.php:734 msgid "This Host" msgstr "" -#: libraries/messages.inc.php:1103 server_status.php:252 +#: libraries/messages.inc.php:1099 server_status.php:252 msgid "Threads" msgstr "" -#: libraries/messages.inc.php:1104 server_processlist.php:22 +#: libraries/messages.inc.php:1100 server_processlist.php:22 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: libraries/messages.inc.php:1106 +#: libraries/messages.inc.php:1102 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." msgstr "" -#: libraries/messages.inc.php:1109 pmd_pdf.php:94 +#: libraries/messages.inc.php:1105 pmd_pdf.php:94 msgid "to/from page" msgstr "" -#: libraries/messages.inc.php:1110 pdf_pages.php:343 +#: libraries/messages.inc.php:1106 pdf_pages.php:343 msgid "Toggle scratchboard" msgstr "" -#: libraries/messages.inc.php:1111 pmd_general.php:99 +#: libraries/messages.inc.php:1107 pmd_general.php:99 msgid "Toggle small/big" msgstr "" -#: libraries/messages.inc.php:1112 pmd_help.php:27 +#: libraries/messages.inc.php:1108 pmd_help.php:27 msgid "To select relation, click :" msgstr "" -#: libraries/messages.inc.php:1115 libraries/tbl_links.inc.php:149 +#: libraries/messages.inc.php:1111 libraries/tbl_links.inc.php:149 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" -#: libraries/messages.inc.php:1116 tbl_tracking.php:655 +#: libraries/messages.inc.php:1112 tbl_tracking.php:655 msgid "Activate now" msgstr "" -#: libraries/messages.inc.php:1117 tbl_tracking.php:653 +#: libraries/messages.inc.php:1113 tbl_tracking.php:653 #, php-format msgid "Activate tracking for %s.%s" msgstr "" -#: libraries/messages.inc.php:1118 tbl_tracking.php:221 +#: libraries/messages.inc.php:1114 tbl_tracking.php:221 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/messages.inc.php:1119 tbl_tracking.php:688 +#: libraries/messages.inc.php:1115 tbl_tracking.php:688 #, fuzzy msgid "Create version" msgstr "Bediener weergawe" -#: libraries/messages.inc.php:1120 tbl_tracking.php:668 +#: libraries/messages.inc.php:1116 tbl_tracking.php:668 #, php-format msgid "Create version %s of %s.%s" msgstr "" -#: libraries/messages.inc.php:1122 tbl_tracking.php:412 +#: libraries/messages.inc.php:1118 tbl_tracking.php:412 msgid "Data definition statement" msgstr "" -#: libraries/messages.inc.php:1123 tbl_tracking.php:463 +#: libraries/messages.inc.php:1119 tbl_tracking.php:463 msgid "Data manipulation statement" msgstr "" -#: libraries/messages.inc.php:1124 tbl_tracking.php:410 tbl_tracking.php:461 +#: libraries/messages.inc.php:1120 tbl_tracking.php:410 tbl_tracking.php:461 #, fuzzy msgid "Date" msgstr "Data" -#: libraries/messages.inc.php:1125 tbl_tracking.php:642 +#: libraries/messages.inc.php:1121 tbl_tracking.php:642 msgid "Deactivate now" msgstr "" -#: libraries/messages.inc.php:1126 tbl_tracking.php:640 +#: libraries/messages.inc.php:1122 tbl_tracking.php:640 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "" -#: libraries/messages.inc.php:1127 tbl_tracking.php:521 +#: libraries/messages.inc.php:1123 tbl_tracking.php:521 #, php-format msgid "Export as %s" msgstr "" -#: libraries/messages.inc.php:1130 tbl_tracking.php:251 tbl_tracking.php:379 +#: libraries/messages.inc.php:1126 tbl_tracking.php:251 tbl_tracking.php:379 msgid "Close" msgstr "" -#: libraries/messages.inc.php:1131 tbl_tracking.php:114 +#: libraries/messages.inc.php:1127 tbl_tracking.php:114 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/messages.inc.php:1133 tbl_tracking.php:397 tbl_tracking.php:504 +#: libraries/messages.inc.php:1129 tbl_tracking.php:397 tbl_tracking.php:504 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "" -#: libraries/messages.inc.php:1134 tbl_tracking.php:561 +#: libraries/messages.inc.php:1130 tbl_tracking.php:561 msgid "Show versions" msgstr "" -#: libraries/messages.inc.php:1135 tbl_tracking.php:507 +#: libraries/messages.inc.php:1131 tbl_tracking.php:507 msgid "SQL dump (file download)" msgstr "" -#: libraries/messages.inc.php:1136 tbl_tracking.php:508 +#: libraries/messages.inc.php:1132 tbl_tracking.php:508 msgid "SQL dump" msgstr "" -#: libraries/messages.inc.php:1137 tbl_tracking.php:213 +#: libraries/messages.inc.php:1133 tbl_tracking.php:213 msgid "SQL statements executed." msgstr "" -#: libraries/messages.inc.php:1138 +#: libraries/messages.inc.php:1134 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/messages.inc.php:1139 tbl_tracking.php:509 +#: libraries/messages.inc.php:1135 tbl_tracking.php:509 msgid "SQL execution" msgstr "" -#: libraries/messages.inc.php:1140 tbl_tracking.php:230 +#: libraries/messages.inc.php:1136 tbl_tracking.php:230 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/messages.inc.php:1141 tbl_tracking.php:381 +#: libraries/messages.inc.php:1137 tbl_tracking.php:381 msgid "Tracking statements" msgstr "" -#: libraries/messages.inc.php:1148 tbl_tracking.php:593 +#: libraries/messages.inc.php:1144 tbl_tracking.php:593 #, fuzzy msgid "Version" msgstr "PHP Version" -#: libraries/messages.inc.php:1149 tbl_tracking.php:672 +#: libraries/messages.inc.php:1145 tbl_tracking.php:672 msgid "Track these data definition statements:" msgstr "" -#: libraries/messages.inc.php:1150 tbl_tracking.php:680 +#: libraries/messages.inc.php:1146 tbl_tracking.php:680 msgid "Track these data manipulation statements:" msgstr "" -#: libraries/messages.inc.php:1155 tbl_tracking.php:411 tbl_tracking.php:462 +#: libraries/messages.inc.php:1151 tbl_tracking.php:411 tbl_tracking.php:462 #, fuzzy msgid "Username" msgstr "Gebruiker Naam:" -#: libraries/messages.inc.php:1156 tbl_tracking.php:203 +#: libraries/messages.inc.php:1152 tbl_tracking.php:203 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "" -#: libraries/messages.inc.php:1157 tbl_tracking.php:187 +#: libraries/messages.inc.php:1153 tbl_tracking.php:187 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "" -#: libraries/messages.inc.php:1158 tbl_tracking.php:195 +#: libraries/messages.inc.php:1154 tbl_tracking.php:195 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "" -#: libraries/messages.inc.php:1159 tbl_tracking.php:262 +#: libraries/messages.inc.php:1155 tbl_tracking.php:262 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/messages.inc.php:1161 tbl_tracking.php:220 +#: libraries/messages.inc.php:1157 tbl_tracking.php:220 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/messages.inc.php:1162 libraries/mysql_charsets.lib.php:219 +#: libraries/messages.inc.php:1158 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:362 msgid "Traditional Chinese" msgstr "" -#: libraries/messages.inc.php:1163 libraries/mysql_charsets.lib.php:292 +#: libraries/messages.inc.php:1159 libraries/mysql_charsets.lib.php:292 msgid "Traditional Spanish" msgstr "" -#: libraries/messages.inc.php:1164 server_status.php:388 +#: libraries/messages.inc.php:1160 server_status.php:388 msgid "Traffic" msgstr "" -#: libraries/messages.inc.php:1165 server_status.php:261 +#: libraries/messages.inc.php:1161 server_status.php:261 msgid "Transaction coordinator" msgstr "" -#: libraries/messages.inc.php:1166 +#: libraries/messages.inc.php:1162 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 " @@ -6247,27 +6247,27 @@ msgid "" "need to set the first option to the empty string." msgstr "" -#: libraries/messages.inc.php:1167 +#: libraries/messages.inc.php:1163 msgid "" "Displays hexadecimal representation of data. Optional first parameter " "specifies how often space will be added (defaults to 2 nibbles)." msgstr "" -#: libraries/messages.inc.php:1168 +#: libraries/messages.inc.php:1164 msgid "" "Displays a clickable thumbnail. The options are the maximum width and height " "in pixels. The original aspect ratio is preserved." msgstr "" -#: libraries/messages.inc.php:1169 +#: libraries/messages.inc.php:1165 msgid "Displays a link to download this image." msgstr "" -#: libraries/messages.inc.php:1170 +#: libraries/messages.inc.php:1166 msgid "See image/jpeg: inline" msgstr "" -#: libraries/messages.inc.php:1171 +#: libraries/messages.inc.php:1167 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 " @@ -6279,7 +6279,7 @@ msgid "" "gmdate() function." msgstr "" -#: libraries/messages.inc.php:1172 +#: libraries/messages.inc.php:1168 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 " @@ -6293,31 +6293,31 @@ msgid "" "(Default 1)." msgstr "" -#: libraries/messages.inc.php:1173 +#: libraries/messages.inc.php:1169 msgid "" "Displays the contents of the field as-is, without running it through " "htmlspecialchars(). That is, the field is assumed to contain valid HTML." msgstr "" -#: libraries/messages.inc.php:1174 +#: libraries/messages.inc.php:1170 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." msgstr "" -#: libraries/messages.inc.php:1175 +#: libraries/messages.inc.php:1171 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." msgstr "" -#: libraries/messages.inc.php:1176 +#: libraries/messages.inc.php:1172 msgid "Formats text as SQL query with syntax highlighting." msgstr "" -#: libraries/messages.inc.php:1177 +#: libraries/messages.inc.php:1173 msgid "" "Displays a part of a string. The first option is the number of characters to " "skip from the beginning of the string (Default 0). The second option is the " @@ -6326,69 +6326,69 @@ msgid "" "(Default: \"...\")." msgstr "" -#: libraries/messages.inc.php:1179 server_binlog.php:183 server_binlog.php:186 +#: libraries/messages.inc.php:1175 server_binlog.php:183 server_binlog.php:186 #: server_processlist.php:49 server_processlist.php:51 msgid "Truncate Shown Queries" msgstr "" -#: libraries/messages.inc.php:1180 libraries/mysql_charsets.lib.php:301 +#: libraries/messages.inc.php:1176 libraries/mysql_charsets.lib.php:301 #: libraries/mysql_charsets.lib.php:389 msgid "Turkish" msgstr "" -#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:304 +#: libraries/messages.inc.php:1179 libraries/mysql_charsets.lib.php:304 #: libraries/mysql_charsets.lib.php:386 msgid "Ukrainian" msgstr "" -#: libraries/messages.inc.php:1185 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:1181 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 msgid "Unicode" msgstr "" -#: libraries/messages.inc.php:1187 libraries/mysql_charsets.lib.php:398 +#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:398 #: libraries/mysql_charsets.lib.php:405 msgid "unknown" msgstr "" -#: libraries/messages.inc.php:1190 server_privileges.php:1152 +#: libraries/messages.inc.php:1186 server_privileges.php:1152 #, php-format msgid "You have updated the privileges for %s." msgstr "Jy het die regte opgedateer vir %s." -#: libraries/messages.inc.php:1191 user_password.php:112 +#: libraries/messages.inc.php:1187 user_password.php:112 msgid "The profile has been updated." msgstr "Die profiel is opgedateer." -#: libraries/messages.inc.php:1193 libraries/relation.lib.php:138 +#: libraries/messages.inc.php:1189 libraries/relation.lib.php:138 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" -#: libraries/messages.inc.php:1194 +#: libraries/messages.inc.php:1190 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/messages.inc.php:1204 tbl_printview.php:314 tbl_structure.php:661 +#: libraries/messages.inc.php:1200 tbl_printview.php:314 tbl_structure.php:661 msgid "Usage" msgstr "Gebruik" -#: libraries/messages.inc.php:1205 +#: libraries/messages.inc.php:1201 msgid "Enclose table and field names with backquotes" msgstr "Omring tabel en veldname met backquotes" -#: libraries/messages.inc.php:1206 libraries/replication_gui.lib.php:314 +#: libraries/messages.inc.php:1202 libraries/replication_gui.lib.php:314 #: server_privileges.php:740 msgid "Use Host Table" msgstr "" -#: libraries/messages.inc.php:1207 server_privileges.php:848 +#: libraries/messages.inc.php:1203 server_privileges.php:848 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/messages.inc.php:1209 libraries/replication_gui.lib.php:55 +#: libraries/messages.inc.php:1205 libraries/replication_gui.lib.php:55 #: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245 #: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255 #: server_privileges.php:672 server_privileges.php:675 @@ -6396,35 +6396,35 @@ msgstr "" msgid "User name" msgstr "Gebruiker naam" -#: libraries/messages.inc.php:1210 server_privileges.php:1645 +#: libraries/messages.inc.php:1206 server_privileges.php:1645 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/messages.inc.php:1211 server_privileges.php:1365 +#: libraries/messages.inc.php:1207 server_privileges.php:1365 msgid "User overview" msgstr "" -#: libraries/messages.inc.php:1212 server_privileges.php:1261 +#: libraries/messages.inc.php:1208 server_privileges.php:1261 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/messages.inc.php:1213 server_privileges.php:2026 +#: libraries/messages.inc.php:1209 server_privileges.php:2026 #, php-format msgid "Users having access to "%s"" msgstr "" -#: libraries/messages.inc.php:1214 main.php:189 server_privileges.php:1350 +#: libraries/messages.inc.php:1210 main.php:189 server_privileges.php:1350 #: server_privileges.php:1497 server_privileges.php:1611 #: server_privileges.php:2029 server_processlist.php:54 msgid "User" msgstr "Gebruiker" -#: libraries/messages.inc.php:1215 tbl_change.php:1171 +#: libraries/messages.inc.php:1211 tbl_change.php:1171 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/messages.inc.php:1217 libraries/replication_gui.lib.php:251 +#: libraries/messages.inc.php:1213 libraries/replication_gui.lib.php:251 #: libraries/replication_gui.lib.php:319 libraries/replication_gui.lib.php:342 #: server_privileges.php:678 server_privileges.php:745 #: server_privileges.php:769 server_privileges.php:1889 @@ -6432,93 +6432,93 @@ msgstr "" msgid "Use text field" msgstr "" -#: libraries/messages.inc.php:1221 libraries/sqlvalidator.lib.php:68 +#: libraries/messages.inc.php:1217 libraries/sqlvalidator.lib.php:68 #, php-format msgid "" "The SQL validator could not be initialized. Please check if you have " "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" -#: libraries/messages.inc.php:1222 libraries/replication_gui.lib.php:111 +#: libraries/messages.inc.php:1218 libraries/replication_gui.lib.php:111 #: server_status.php:627 tbl_change.php:324 tbl_printview.php:370 #: tbl_select.php:139 tbl_structure.php:730 msgid "Value" msgstr "Waarde" -#: libraries/messages.inc.php:1223 libraries/replication_gui.lib.php:110 +#: libraries/messages.inc.php:1219 libraries/replication_gui.lib.php:110 #: libraries/sql_query_form.lib.php:445 server_status.php:626 #: server_variables.php:52 msgid "Variable" msgstr "" -#: libraries/messages.inc.php:1225 server_export.php:21 +#: libraries/messages.inc.php:1221 server_export.php:21 #, fuzzy msgid "View dump (schema) of databases" msgstr "Sien die storting (skema) van die databasis" -#: libraries/messages.inc.php:1227 tbl_export.php:23 +#: libraries/messages.inc.php:1223 tbl_export.php:23 msgid "View dump (schema) of table" msgstr "Sien die storting (skema) van die tabel" -#: libraries/messages.inc.php:1231 view_create.php:142 +#: libraries/messages.inc.php:1227 view_create.php:142 msgid "VIEW name" msgstr "" -#: libraries/messages.inc.php:1237 main.php:205 +#: libraries/messages.inc.php:1233 main.php:205 msgid "Web server" msgstr "" -#: libraries/messages.inc.php:1239 libraries/mysql_charsets.lib.php:277 +#: libraries/messages.inc.php:1235 libraries/mysql_charsets.lib.php:277 #: libraries/mysql_charsets.lib.php:325 msgid "West European" msgstr "" -#: libraries/messages.inc.php:1240 main.php:230 +#: libraries/messages.inc.php:1236 main.php:230 msgid "Wiki" msgstr "" -#: libraries/messages.inc.php:1241 server_privileges.php:2138 +#: libraries/messages.inc.php:1237 server_privileges.php:2138 msgid "wildcard" msgstr "" -#: libraries/messages.inc.php:1248 +#: libraries/messages.inc.php:1244 msgid "Export contents" msgstr "" -#: libraries/messages.inc.php:1249 +#: libraries/messages.inc.php:1245 msgid "Export functions" msgstr "" -#: libraries/messages.inc.php:1250 +#: libraries/messages.inc.php:1246 msgid "Export procedures" msgstr "" -#: libraries/messages.inc.php:1251 +#: libraries/messages.inc.php:1247 msgid "Export Structure Schemas (recommended)" msgstr "" -#: libraries/messages.inc.php:1252 +#: libraries/messages.inc.php:1248 #, fuzzy msgid "Export tables" msgstr "Geen tabelle" -#: libraries/messages.inc.php:1253 +#: libraries/messages.inc.php:1249 msgid "Export triggers" msgstr "" -#: libraries/messages.inc.php:1254 +#: libraries/messages.inc.php:1250 msgid "Export views" msgstr "" -#: libraries/messages.inc.php:1255 +#: libraries/messages.inc.php:1251 msgid "XML" msgstr "" -#: libraries/messages.inc.php:1259 server_privileges.php:592 +#: libraries/messages.inc.php:1255 server_privileges.php:592 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" -#: libraries/messages.inc.php:1260 +#: libraries/messages.inc.php:1256 msgid "\"zipped\"" msgstr "\"ge-zip\"" diff --git a/po/ar.po b/po/ar.po index ded5b6350..29899ed16 100644 --- 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-05-13 11:25+0200\n" +"POT-Creation-Date: 2010-05-13 11:30+0200\n" "PO-Revision-Date: 2010-03-12 09:11+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: arabic \n" @@ -13,19 +13,19 @@ msgstr "" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:38 browse_foreigners.php:59 -#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:870 +#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:866 #: server_privileges.php:1475 msgid "Show all" msgstr "شاهد الكل" #: browse_foreigners.php:82 db_operations.php:648 -#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:394 -#: libraries/export/pdf.php:147 libraries/messages.inc.php:597 +#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394 +#: libraries/export/pdf.php:147 libraries/messages.inc.php:593 #: pdf_schema.php:283 pdf_schema.php:1123 pdf_schema.php:1139 msgid "Page number:" msgstr "صفحة رقم:" -#: browse_foreigners.php:132 libraries/messages.inc.php:1242 +#: browse_foreigners.php:132 libraries/messages.inc.php:1238 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -37,7 +37,7 @@ 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/db_links.inc.php:75 -#: libraries/messages.inc.php:841 libraries/tbl_links.inc.php:63 +#: libraries/messages.inc.php:837 libraries/tbl_links.inc.php:63 msgid "Search" msgstr "ابحث" @@ -46,12 +46,12 @@ msgstr "ابحث" #: db_search.php:362 db_structure.php:567 js/messages.php:48 #: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2267 +#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 #: 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 #: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614 -#: libraries/messages.inc.php:361 libraries/replication_gui.lib.php:73 +#: libraries/messages.inc.php:357 libraries/replication_gui.lib.php:73 #: libraries/replication_gui.lib.php:365 libraries/select_server.lib.php:104 #: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477 #: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782 @@ -71,33 +71,33 @@ msgid "Go" msgstr " تنفيذ " #: browse_foreigners.php:168 browse_foreigners.php:172 -#: libraries/Index.class.php:442 libraries/messages.inc.php:459 +#: libraries/Index.class.php:442 libraries/messages.inc.php:455 #: tbl_tracking.php:320 msgid "Keyname" msgstr "اسم المفتاح" #: browse_foreigners.php:169 browse_foreigners.php:171 -#: libraries/messages.inc.php:252 server_collations.php:55 +#: libraries/messages.inc.php:248 server_collations.php:55 #: server_collations.php:67 server_engines.php:59 server_status.php:628 msgid "Description" msgstr "الوصف" #: browse_foreigners.php:247 browse_foreigners.php:256 #: browse_foreigners.php:268 browse_foreigners.php:276 -#: libraries/messages.inc.php:1218 +#: libraries/messages.inc.php:1214 msgid "Use this value" msgstr "استخدم هذه القيمة" -#: db_create.php:46 libraries/messages.inc.php:215 +#: db_create.php:46 libraries/messages.inc.php:211 #, php-format msgid "Database %1$s has been created." msgstr "" -#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:232 +#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:228 msgid "Database comment: " msgstr "ملاحظة قاعدة البيانات: " -#: db_datadict.php:165 libraries/messages.inc.php:1070 +#: db_datadict.php:165 libraries/messages.inc.php:1066 #: libraries/tbl_properties.inc.php:724 pdf_schema.php:1236 #: tbl_operations.php:345 tbl_printview.php:130 msgid "Table comments" @@ -106,7 +106,7 @@ msgstr "تعليقات على الجدول" #: db_datadict.php:174 db_qbe.php:174 libraries/Index.class.php:446 #: libraries/export/htmlword.php:244 libraries/export/latex.php:360 #: libraries/export/odt.php:294 libraries/export/texytext.php:233 -#: libraries/messages.inc.php:317 libraries/tbl_properties.inc.php:99 +#: libraries/messages.inc.php:313 libraries/tbl_properties.inc.php:99 #: libraries/tbl_properties.inc.php:275 pdf_schema.php:1262 #: pdf_schema.php:1283 tbl_change.php:308 tbl_indexes.php:189 #: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135 @@ -118,7 +118,7 @@ msgstr "الحقل" #: libraries/db_events.inc.php:31 libraries/db_routines.inc.php:42 #: 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/messages.inc.php:1181 +#: libraries/export/texytext.php:234 libraries/messages.inc.php:1177 #: libraries/tbl_properties.inc.php:100 pdf_schema.php:1263 #: pdf_schema.php:1284 server_privileges.php:2031 tbl_change.php:287 #: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313 @@ -130,7 +130,7 @@ msgstr "النوع" #: db_datadict.php:177 libraries/Index.class.php:449 #: libraries/export/htmlword.php:246 libraries/export/latex.php:360 #: libraries/export/odt.php:300 libraries/export/texytext.php:235 -#: libraries/messages.inc.php:576 libraries/tbl_properties.inc.php:109 +#: libraries/messages.inc.php:572 libraries/tbl_properties.inc.php:109 #: pdf_schema.php:1265 pdf_schema.php:1286 tbl_change.php:323 #: tbl_printview.php:145 tbl_structure.php:181 tbl_tracking.php:276 #: tbl_tracking.php:327 @@ -139,7 +139,7 @@ msgstr "خالي" #: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 -#: libraries/export/texytext.php:236 libraries/messages.inc.php:238 +#: libraries/export/texytext.php:236 libraries/messages.inc.php:234 #: libraries/tbl_properties.inc.php:106 pdf_schema.php:1266 #: pdf_schema.php:1287 tbl_printview.php:146 tbl_structure.php:182 #: tbl_tracking.php:277 @@ -148,14 +148,14 @@ msgstr "افتراضي" #: db_datadict.php:182 libraries/export/htmlword.php:249 #: libraries/export/latex.php:362 libraries/export/odt.php:307 -#: libraries/export/texytext.php:238 libraries/messages.inc.php:483 +#: libraries/export/texytext.php:238 libraries/messages.inc.php:479 #: pdf_schema.php:1268 pdf_schema.php:1289 tbl_printview.php:150 msgid "Links to" msgstr "مرتبط بـ" #: db_datadict.php:184 db_printview.php:112 libraries/export/htmlword.php:252 #: libraries/export/latex.php:365 libraries/export/odt.php:312 -#: libraries/export/texytext.php:241 libraries/messages.inc.php:163 +#: libraries/export/texytext.php:241 libraries/messages.inc.php:159 #: libraries/tbl_properties.inc.php:130 pdf_schema.php:1279 #: pdf_schema.php:1290 tbl_printview.php:152 msgid "Comments" @@ -164,7 +164,7 @@ msgstr "تعليقات" #: db_datadict.php:267 libraries/Index.class.php:359 #: 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/messages.inc.php:559 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:555 #: libraries/mult_submits.inc.php:263 pdf_schema.php:1344 #: server_privileges.php:1529 server_privileges.php:1540 #: server_privileges.php:1850 server_privileges.php:1855 @@ -176,7 +176,7 @@ msgstr "لا" #: db_datadict.php:267 libraries/Index.class.php:360 #: libraries/Index.class.php:385 libraries/export/htmlword.php:322 #: libraries/export/latex.php:430 libraries/export/odt.php:368 -#: libraries/export/texytext.php:311 libraries/messages.inc.php:1257 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:1253 #: libraries/mult_submits.inc.php:45 libraries/mult_submits.inc.php:50 #: libraries/mult_submits.inc.php:55 libraries/mult_submits.inc.php:60 #: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:101 @@ -190,108 +190,108 @@ msgstr "لا" msgid "Yes" msgstr "نعم" -#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:670 +#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:666 #: tbl_printview.php:498 msgid "Print" msgstr "اطبع" -#: db_export.php:29 libraries/messages.inc.php:1226 +#: db_export.php:29 libraries/messages.inc.php:1222 msgid "View dump (schema) of database" msgstr "عرض بنية قاعدة البيانات" #: db_export.php:33 db_printview.php:96 db_qbe.php:102 db_structure.php:51 -#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:568 +#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:564 #: navigation.php:346 msgid "No tables found in database." msgstr "لا توجد جداول متوفره في قاعدة البيانات هذه!." -#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:845 +#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:841 #: server_export.php:27 msgid "Select All" msgstr "تحديد الكل" -#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1188 +#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1184 #: server_export.php:29 msgid "Unselect All" msgstr "إلغاء تحديد الكل" -#: db_operations.php:38 libraries/messages.inc.php:213 tbl_create.php:54 +#: db_operations.php:38 libraries/messages.inc.php:209 tbl_create.php:54 msgid "The database name is empty!" msgstr "" -#: db_operations.php:236 libraries/messages.inc.php:753 +#: db_operations.php:236 libraries/messages.inc.php:749 #, php-format msgid "Database %s has been renamed to %s" msgstr "" -#: db_operations.php:240 libraries/messages.inc.php:178 +#: db_operations.php:240 libraries/messages.inc.php:174 #, php-format msgid "Database %s has been copied to %s" msgstr "" -#: db_operations.php:410 libraries/messages.inc.php:236 +#: db_operations.php:410 libraries/messages.inc.php:232 msgid "Rename database to" msgstr "" -#: db_operations.php:415 libraries/messages.inc.php:161 +#: db_operations.php:415 libraries/messages.inc.php:157 #: server_processlist.php:57 msgid "Command" msgstr "أمر" -#: db_operations.php:425 libraries/messages.inc.php:58 tbl_change.php:1143 +#: db_operations.php:425 libraries/messages.inc.php:54 tbl_change.php:1143 msgid "and then" msgstr "وبعدها" -#: db_operations.php:451 libraries/messages.inc.php:233 +#: db_operations.php:451 libraries/messages.inc.php:229 msgid "Copy database to" msgstr "" -#: db_operations.php:458 libraries/messages.inc.php:1043 +#: db_operations.php:458 libraries/messages.inc.php:1039 #: tbl_operations.php:526 tbl_tracking.php:388 msgid "Structure only" msgstr "البنية فقط" -#: db_operations.php:459 libraries/messages.inc.php:1041 +#: db_operations.php:459 libraries/messages.inc.php:1037 #: tbl_operations.php:527 tbl_tracking.php:390 msgid "Structure and data" msgstr "البنية والبيانات" -#: db_operations.php:460 libraries/messages.inc.php:229 tbl_operations.php:528 +#: db_operations.php:460 libraries/messages.inc.php:225 tbl_operations.php:528 #: tbl_tracking.php:389 msgid "Data only" msgstr "بيانات فقط" -#: db_operations.php:468 libraries/messages.inc.php:186 +#: db_operations.php:468 libraries/messages.inc.php:182 msgid "CREATE DATABASE before copying" msgstr "" #: db_operations.php:471 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 -#: libraries/export/sql.php:82 libraries/messages.inc.php:30 +#: libraries/export/sql.php:82 libraries/messages.inc.php:26 #: tbl_operations.php:534 #, php-format msgid "Add %s" msgstr "أضف %s" -#: db_operations.php:475 libraries/messages.inc.php:29 tbl_operations.php:297 +#: db_operations.php:475 libraries/messages.inc.php:25 tbl_operations.php:297 #: tbl_operations.php:536 msgid "Add AUTO_INCREMENT value" msgstr "أضف قيمة AUTO_INCREMENT" -#: db_operations.php:479 libraries/messages.inc.php:31 tbl_operations.php:543 +#: db_operations.php:479 libraries/messages.inc.php:27 tbl_operations.php:543 msgid "Add constraints" msgstr "أضف قيودا" -#: db_operations.php:492 libraries/messages.inc.php:1059 +#: db_operations.php:492 libraries/messages.inc.php:1055 msgid "Switch to copied database" msgstr "" -#: db_operations.php:533 libraries/messages.inc.php:89 +#: db_operations.php:533 libraries/messages.inc.php:85 msgid "BLOB Repository" msgstr "" #: db_operations.php:536 db_tracking.php:76 libraries/common.lib.php:1350 -#: libraries/messages.inc.php:1037 libraries/server_links.inc.php:49 +#: libraries/messages.inc.php:1033 libraries/server_links.inc.php:49 #: server_processlist.php:59 tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "وضع" @@ -303,11 +303,11 @@ msgctxt "BLOB repository" msgid "Enabled" msgstr "مفعل" -#: db_operations.php:548 libraries/messages.inc.php:93 +#: db_operations.php:548 libraries/messages.inc.php:89 msgid "Disable" msgstr "عطل" -#: db_operations.php:558 libraries/messages.inc.php:90 +#: db_operations.php:558 libraries/messages.inc.php:86 msgid "Damaged" msgstr "" @@ -325,12 +325,12 @@ msgctxt "BLOB repository" msgid "Disabled" msgstr "معطل" -#: db_operations.php:574 libraries/messages.inc.php:96 +#: db_operations.php:574 libraries/messages.inc.php:92 msgid "Enable" msgstr "فعل" #: db_operations.php:598 libraries/Index.class.php:448 -#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:158 +#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:154 #: 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:361 @@ -339,7 +339,7 @@ msgstr "فعل" msgid "Collation" msgstr "Collation" -#: db_operations.php:609 libraries/messages.inc.php:742 main.php:316 +#: db_operations.php:609 libraries/messages.inc.php:738 main.php:316 #: pdf_schema.php:34 #, php-format msgid "" @@ -349,58 +349,58 @@ msgstr "" "تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %sهنا%" "s." -#: db_operations.php:645 libraries/messages.inc.php:264 pdf_pages.php:528 +#: db_operations.php:645 libraries/messages.inc.php:260 pdf_pages.php:528 msgid "Display PDF schema" msgstr "إظهار بناء ملف PDF" -#: db_operations.php:661 libraries/messages.inc.php:877 pdf_pages.php:529 +#: db_operations.php:661 libraries/messages.inc.php:873 pdf_pages.php:529 msgid "Show grid" msgstr "أظهر تخطيط الجدول" -#: db_operations.php:664 libraries/messages.inc.php:874 pdf_pages.php:530 +#: db_operations.php:664 libraries/messages.inc.php:870 pdf_pages.php:530 msgid "Show color" msgstr "أظهر اللون" -#: db_operations.php:666 libraries/messages.inc.php:998 pdf_pages.php:531 +#: db_operations.php:666 libraries/messages.inc.php:994 pdf_pages.php:531 msgid "Show dimension of tables" msgstr "إظهار أبعاد الجداول" -#: db_operations.php:669 libraries/messages.inc.php:52 pdf_pages.php:532 +#: db_operations.php:669 libraries/messages.inc.php:48 pdf_pages.php:532 msgid "Display all tables with the same width" msgstr "أظهر كل الجداول بنفس العرض؟" -#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:227 +#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:223 #: pdf_pages.php:533 msgid "Data Dictionary" msgstr "قاموس البيانات" -#: db_operations.php:674 libraries/messages.inc.php:884 pdf_pages.php:534 +#: db_operations.php:674 libraries/messages.inc.php:880 pdf_pages.php:534 msgid "Only show keys" msgstr "" -#: db_operations.php:676 libraries/messages.inc.php:875 pdf_pages.php:535 +#: db_operations.php:676 libraries/messages.inc.php:871 pdf_pages.php:535 msgid "Data Dictionary Format" msgstr "تنسيق قاموس البيانات" -#: db_operations.php:678 libraries/messages.inc.php:464 pdf_pages.php:537 +#: db_operations.php:678 libraries/messages.inc.php:460 pdf_pages.php:537 msgid "Landscape" msgstr "عرض الصفحة" -#: db_operations.php:679 libraries/messages.inc.php:663 pdf_pages.php:538 +#: db_operations.php:679 libraries/messages.inc.php:659 pdf_pages.php:538 msgid "Portrait" msgstr "طول الصفحة" -#: db_operations.php:682 libraries/messages.inc.php:599 pdf_pages.php:541 +#: db_operations.php:682 libraries/messages.inc.php:595 pdf_pages.php:541 msgid "Paper size" msgstr "حجم الورق" -#: db_operations.php:706 libraries/messages.inc.php:281 +#: db_operations.php:706 libraries/messages.inc.php:277 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 libraries/messages.inc.php:1087 +#: libraries/header.inc.php:126 libraries/messages.inc.php:1083 #: pdf_pages.php:405 server_privileges.php:1626 server_privileges.php:1682 #: server_privileges.php:1946 server_synchronize.php:423 #: server_synchronize.php:866 tbl_tracking.php:592 test/theme.php:75 @@ -408,176 +408,176 @@ msgid "Table" msgstr "الجدول " #: db_printview.php:105 libraries/db_structure.lib.php:56 -#: libraries/messages.inc.php:735 +#: libraries/messages.inc.php:731 msgid "Records" msgstr "التسجيلات" #: db_printview.php:109 libraries/db_structure.lib.php:67 -#: libraries/messages.inc.php:1003 tbl_indexes.php:190 +#: libraries/messages.inc.php:999 tbl_indexes.php:190 msgid "Size" msgstr "الحجم" #: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 -#: libraries/export/sql.php:899 libraries/messages.inc.php:436 +#: libraries/export/sql.php:899 libraries/messages.inc.php:432 msgid "in use" msgstr "قيد الإستعمال" #: db_printview.php:187 libraries/db_info.inc.php:88 -#: libraries/export/sql.php:514 libraries/messages.inc.php:1032 +#: libraries/export/sql.php:514 libraries/messages.inc.php:1028 #: pdf_schema.php:1241 tbl_printview.php:434 tbl_structure.php:810 msgid "Creation" msgstr "الإنشاء" #: db_printview.php:196 libraries/db_info.inc.php:93 -#: libraries/export/sql.php:519 libraries/messages.inc.php:1036 +#: libraries/export/sql.php:519 libraries/messages.inc.php:1032 #: pdf_schema.php:1246 tbl_printview.php:444 tbl_structure.php:818 msgid "Last update" msgstr "التحديث الأخير" #: db_printview.php:205 libraries/db_info.inc.php:98 -#: libraries/export/sql.php:524 libraries/messages.inc.php:1031 +#: libraries/export/sql.php:524 libraries/messages.inc.php:1027 #: pdf_schema.php:1251 tbl_printview.php:454 tbl_structure.php:826 msgid "Last check" msgstr "التحقق الأخير" -#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1085 +#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1081 #, php-format msgid "%s table(s)" msgstr "%s جدول (جداول)" #: db_qbe.php:29 libraries/display_tbl.lib.php:1981 -#: libraries/messages.inc.php:1051 libraries/sql_query_form.lib.php:140 +#: libraries/messages.inc.php:1047 libraries/sql_query_form.lib.php:140 #: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131 #: view_operations.php:62 msgid "Your SQL query has been executed successfully" msgstr "الخاص بك تم تنفيذه بنجاح SQL-استعلام" -#: db_qbe.php:42 libraries/messages.inc.php:371 +#: db_qbe.php:42 libraries/messages.inc.php:367 msgid "You have to choose at least one column to display" msgstr "عليك اختيار عمود واحد على الأقل للعرض" #: db_qbe.php:200 libraries/db_structure.lib.php:104 -#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1014 +#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1010 msgid "Sort" msgstr "تصنيف" #: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111 #: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828 -#: libraries/messages.inc.php:69 server_databases.php:170 +#: libraries/messages.inc.php:65 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314 msgid "Ascending" msgstr "تصاعديا" #: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119 #: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825 -#: libraries/messages.inc.php:251 server_databases.php:170 +#: libraries/messages.inc.php:247 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315 msgid "Descending" msgstr "تنازليا" #: db_qbe.php:264 db_tracking.php:78 libraries/display_tbl.lib.php:308 -#: libraries/messages.inc.php:888 tbl_change.php:277 tbl_tracking.php:597 +#: libraries/messages.inc.php:884 tbl_change.php:277 tbl_tracking.php:597 msgid "Show" msgstr "عرض" -#: db_qbe.php:300 libraries/messages.inc.php:202 +#: db_qbe.php:300 libraries/messages.inc.php:198 msgid "Criteria" msgstr "المعايير" #: db_qbe.php:353 db_qbe.php:435 db_qbe.php:527 db_qbe.php:558 -#: libraries/messages.inc.php:718 +#: libraries/messages.inc.php:714 msgid "Ins" msgstr "Ins" #: db_qbe.php:357 db_qbe.php:439 db_qbe.php:524 db_qbe.php:555 -#: libraries/messages.inc.php:56 +#: libraries/messages.inc.php:52 msgid "And" msgstr "و" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:529 db_qbe.php:560 -#: libraries/messages.inc.php:717 +#: libraries/messages.inc.php:713 msgid "Del" 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/messages.inc.php:592 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:588 #: libraries/tbl_properties.inc.php:779 server_privileges.php:258 #: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288 msgid "Or" msgstr "أو" -#: db_qbe.php:507 libraries/messages.inc.php:516 +#: db_qbe.php:507 libraries/messages.inc.php:512 msgid "Modify" msgstr "تعديل" -#: db_qbe.php:584 libraries/messages.inc.php:33 +#: db_qbe.php:584 libraries/messages.inc.php:29 msgid "Add/Delete Criteria Row" msgstr "إضافه/حذف صف سجل" -#: db_qbe.php:596 libraries/messages.inc.php:32 +#: db_qbe.php:596 libraries/messages.inc.php:28 msgid "Add/Delete Field Columns" msgstr "إضافه/حذف عمود حقل" -#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1192 +#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1188 msgid "Update Query" msgstr "تجديد استعلام" -#: db_qbe.php:617 libraries/messages.inc.php:1216 +#: db_qbe.php:617 libraries/messages.inc.php:1212 msgid "Use Tables" msgstr "استخدم الجدول" -#: db_qbe.php:640 libraries/messages.inc.php:723 +#: db_qbe.php:640 libraries/messages.inc.php:719 #, php-format msgid "SQL query on database %s:" msgstr "في قاعدة البيانات SQL-إستعلام %s:" -#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:823 +#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:819 msgid "Submit Query" msgstr "إرسال الاستعلام" #: db_search.php:68 libraries/auth/config.auth.lib.php:84 #: libraries/auth/config.auth.lib.php:103 #: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52 -#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:26 +#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:22 msgid "Access denied" msgstr "غير مسموح" -#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:836 +#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:832 msgid "at least one of the words" msgstr "على الأقل أحد الكلمات" -#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:837 +#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:833 msgid "all words" msgstr "كل الكلمات" -#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:838 +#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:834 msgid "the exact phrase" msgstr "الجملة بالضبط" -#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:839 +#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:835 msgid "as regular expression" msgstr "كصيغة مطابقة" -#: db_search.php:242 libraries/messages.inc.php:840 +#: db_search.php:242 libraries/messages.inc.php:836 #, php-format msgid "Search results for \"%s\" %s:" msgstr "ابحث في النتائج عن \"%s\" %s:" -#: db_search.php:260 libraries/messages.inc.php:579 +#: db_search.php:260 libraries/messages.inc.php:575 #, php-format msgid "%s match(es) inside table %s" 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/messages.inc.php:108 +#: db_structure.php:105 libraries/messages.inc.php:104 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468 msgid "Browse" msgstr "استعراض" #: db_search.php:272 libraries/display_tbl.lib.php:1165 -#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:243 +#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:239 #: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406 #: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377 #: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216 @@ -585,45 +585,45 @@ msgstr "استعراض" msgid "Delete" msgstr "حذف" -#: db_search.php:285 libraries/messages.inc.php:580 +#: db_search.php:285 libraries/messages.inc.php:576 #, php-format msgid "Total: %s match(es)" msgstr "المجموع: %sمطابقة" -#: db_search.php:299 libraries/messages.inc.php:832 +#: db_search.php:299 libraries/messages.inc.php:828 msgid "Search in database" msgstr "ابحث في قاعدة البيانات" -#: db_search.php:302 libraries/messages.inc.php:835 +#: db_search.php:302 libraries/messages.inc.php:831 msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgstr "الكلمات أو القيم المطلوب البحث عنها (wildcard: \"%\"):" -#: db_search.php:307 libraries/messages.inc.php:842 +#: db_search.php:307 libraries/messages.inc.php:838 msgid "Find:" msgstr "ابحث:" -#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1017 +#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1013 msgid "Words are separated by a space character (\" \")." msgstr "الكلمات مفصولة بحرف مسافة (\" \")." -#: db_search.php:325 libraries/messages.inc.php:834 +#: db_search.php:325 libraries/messages.inc.php:830 msgid "Inside table(s):" msgstr "داخل الجدول)الجداول(:" -#: db_search.php:355 libraries/messages.inc.php:833 +#: db_search.php:355 libraries/messages.inc.php:829 msgid "Inside field:" 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/messages.inc.php:431 libraries/sql_query_form.lib.php:334 +#: libraries/messages.inc.php:427 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/db_links.inc.php:63 libraries/export/latex.php:337 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:1048 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:1044 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 #: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269 msgid "Structure" @@ -632,8 +632,8 @@ 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:1642 -#: libraries/db_links.inc.php:100 libraries/messages.inc.php:272 +#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/db_links.inc.php:100 libraries/messages.inc.php:268 #: 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 @@ -643,40 +643,40 @@ 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:1641 -#: libraries/messages.inc.php:284 libraries/mult_submits.inc.php:39 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: libraries/messages.inc.php:280 libraries/mult_submits.inc.php:39 #: libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "إفراغ محتوى" -#: db_structure.php:316 libraries/messages.inc.php:1075 +#: db_structure.php:316 libraries/messages.inc.php:1071 #: libraries/tbl_links.inc.php:100 #, php-format msgid "Table %s has been emptied" msgstr "جدول %s أفرغت محتوياتها" -#: db_structure.php:326 libraries/messages.inc.php:1229 +#: db_structure.php:326 libraries/messages.inc.php:1225 #: libraries/tbl_links.inc.php:133 #, php-format msgid "View %s has been dropped" msgstr "" -#: db_structure.php:326 libraries/messages.inc.php:1074 +#: db_structure.php:326 libraries/messages.inc.php:1070 #: libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "جدول %s حذفت" -#: db_structure.php:333 libraries/messages.inc.php:1128 +#: db_structure.php:333 libraries/messages.inc.php:1124 msgid "Tracking is active." msgstr "" -#: db_structure.php:335 libraries/messages.inc.php:1129 +#: db_structure.php:335 libraries/messages.inc.php:1125 msgid "Tracking is not active." msgstr "" #: db_structure.php:420 libraries/display_tbl.lib.php:1944 -#: libraries/messages.inc.php:1228 +#: libraries/messages.inc.php:1224 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -684,83 +684,83 @@ msgid "" msgstr "" #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 -#: libraries/messages.inc.php:1233 libraries/tbl_info.inc.php:66 +#: libraries/messages.inc.php:1229 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/messages.inc.php:773 libraries/server_links.inc.php:70 +#: libraries/messages.inc.php:769 libraries/server_links.inc.php:70 #: server_replication.php:33 server_replication.php:164 server_status.php:258 msgid "Replication" msgstr "" -#: db_structure.php:489 libraries/messages.inc.php:1053 +#: db_structure.php:489 libraries/messages.inc.php:1049 msgid "Sum" msgstr "المجموع" #: db_structure.php:496 libraries/StorageEngine.class.php:356 -#: libraries/messages.inc.php:239 +#: libraries/messages.inc.php:235 #, 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 #: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086 -#: libraries/messages.inc.php:1243 libraries/mult_submits.inc.php:16 +#: libraries/messages.inc.php:1239 libraries/mult_submits.inc.php:16 #: server_databases.php:346 server_databases.php:351 #: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465 msgid "With selected:" msgstr ": على المحدد" #: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: libraries/messages.inc.php:148 server_databases.php:348 +#: libraries/messages.inc.php:144 server_databases.php:348 #: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459 msgid "Check All" msgstr "اختر الكل" #: db_structure.php:531 libraries/display_tbl.lib.php:2077 -#: libraries/messages.inc.php:1184 libraries/replication_gui.lib.php:33 +#: libraries/messages.inc.php:1180 libraries/replication_gui.lib.php:33 #: server_databases.php:350 server_privileges.php:533 #: server_privileges.php:1564 tbl_structure.php:463 msgid "Uncheck All" msgstr "إلغاء تحديد الكل" -#: db_structure.php:536 libraries/messages.inc.php:150 +#: db_structure.php:536 libraries/messages.inc.php:146 msgid "Check tables having overhead" msgstr "تحقق من overhead" #: db_structure.php:547 db_structure.php:548 db_structure.php:599 -#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:672 +#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:668 #: libraries/mult_submits.inc.php:28 tbl_structure.php:493 #: tbl_structure.php:495 msgid "Print view" msgstr "عرض نسخة للطباعة" -#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:153 +#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:149 #: libraries/mult_submits.inc.php:42 tbl_operations.php:579 msgid "Check table" msgstr "التحقق من الجدول" -#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:590 +#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:586 #: libraries/mult_submits.inc.php:47 tbl_operations.php:619 #: tbl_structure.php:710 tbl_structure.php:712 msgid "Optimize table" msgstr "ضغط الجدول" -#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:758 +#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:754 #: libraries/mult_submits.inc.php:52 tbl_operations.php:609 msgid "Repair table" msgstr "إصلاح الجدول" -#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:55 +#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:51 #: libraries/mult_submits.inc.php:57 tbl_operations.php:599 msgid "Analyze table" msgstr "تحليل الجدول" #: db_structure.php:557 db_structure.php:558 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/messages.inc.php:310 +#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:306 #: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84 #: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109 #: server_privileges.php:1341 setup/frames/menu.inc.php:22 @@ -768,7 +768,7 @@ msgstr "تحليل الجدول" msgid "Export" msgstr "تصدير" -#: db_tracking.php:66 libraries/messages.inc.php:1151 +#: db_tracking.php:66 libraries/messages.inc.php:1147 msgid "Tracked tables" msgstr "" @@ -776,7 +776,7 @@ msgstr "" #: 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/header_printview.inc.php:58 libraries/messages.inc.php:212 +#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:208 #: navigation.php:233 server_databases.php:169 server_privileges.php:1621 #: server_privileges.php:1682 server_privileges.php:1940 #: server_processlist.php:56 server_synchronize.php:1179 @@ -784,76 +784,76 @@ msgstr "" msgid "Database" msgstr "قاعدة البيانات" -#: db_tracking.php:73 libraries/messages.inc.php:1146 +#: db_tracking.php:73 libraries/messages.inc.php:1142 msgid "Last version" msgstr "" -#: db_tracking.php:74 libraries/messages.inc.php:1145 tbl_tracking.php:594 +#: db_tracking.php:74 libraries/messages.inc.php:1141 tbl_tracking.php:594 msgid "Created" msgstr "" -#: db_tracking.php:75 libraries/messages.inc.php:1147 tbl_tracking.php:595 +#: db_tracking.php:75 libraries/messages.inc.php:1143 tbl_tracking.php:595 msgid "Updated" msgstr "محدث" #: db_tracking.php:77 libraries/Index.class.php:440 -#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:27 +#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:23 #: server_databases.php:203 server_privileges.php:1503 #: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187 msgid "Action" msgstr "العملية" -#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:247 +#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:243 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:106 libraries/messages.inc.php:1142 tbl_tracking.php:548 +#: db_tracking.php:106 libraries/messages.inc.php:1138 tbl_tracking.php:548 #: tbl_tracking.php:606 tbl_tracking.php:613 msgid "active" msgstr "نشط" -#: db_tracking.php:108 libraries/messages.inc.php:1143 tbl_tracking.php:550 +#: db_tracking.php:108 libraries/messages.inc.php:1139 tbl_tracking.php:550 #: tbl_tracking.php:608 tbl_tracking.php:610 msgid "not active" msgstr "غير نشط" -#: db_tracking.php:121 libraries/messages.inc.php:1160 +#: db_tracking.php:121 libraries/messages.inc.php:1156 msgid "Versions" msgstr "نسخ" -#: db_tracking.php:122 libraries/messages.inc.php:1132 tbl_tracking.php:379 +#: db_tracking.php:122 libraries/messages.inc.php:1128 tbl_tracking.php:379 #: tbl_tracking.php:624 msgid "Tracking report" msgstr "" -#: db_tracking.php:123 libraries/messages.inc.php:1144 tbl_tracking.php:251 +#: db_tracking.php:123 libraries/messages.inc.php:1140 tbl_tracking.php:251 #: tbl_tracking.php:624 msgid "Structure snapshot" msgstr "" -#: db_tracking.php:152 libraries/messages.inc.php:1154 +#: db_tracking.php:152 libraries/messages.inc.php:1150 msgid "Untracked tables" msgstr "" -#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1153 +#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1149 #: tbl_structure.php:529 tbl_structure.php:531 msgid "Track table" msgstr "" -#: db_tracking.php:200 libraries/messages.inc.php:1121 +#: db_tracking.php:200 libraries/messages.inc.php:1117 msgid "Database Log" msgstr "" -#: export.php:62 libraries/messages.inc.php:312 +#: export.php:62 libraries/messages.inc.php:308 msgid "Selected export type has to be saved in file!" msgstr "" -#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:567 +#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:563 #, php-format msgid "Insufficient space to save the file %s." msgstr "لا توجد مساحة كافية لحفظ الملف %s." -#: export.php:294 libraries/messages.inc.php:324 +#: export.php:294 libraries/messages.inc.php:320 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -861,17 +861,17 @@ msgstr "" "المف %s موجود أصلا على الخادم. غير الاسم أو حدد خيار التسجيل على الملف " "الموجود." -#: export.php:298 export.php:302 libraries/messages.inc.php:562 +#: export.php:298 export.php:302 libraries/messages.inc.php:558 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "خادم الويب ليس لديه صلاحية لحفظ الملف %s." -#: export.php:629 libraries/messages.inc.php:276 +#: export.php:629 libraries/messages.inc.php:272 #, php-format msgid "Dump has been saved to file %s." msgstr "تم حفظ الـDump إلى الملف %s." -#: import.php:60 libraries/messages.inc.php:1202 +#: import.php:60 libraries/messages.inc.php:1198 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation%" @@ -879,21 +879,21 @@ msgid "" msgstr "" #: import.php:279 import.php:332 libraries/File.class.php:849 -#: libraries/File.class.php:961 libraries/messages.inc.php:325 +#: libraries/File.class.php:961 libraries/messages.inc.php:321 msgid "File could not be read" msgstr "لم يمكن قراءة الملف" #: import.php:287 import.php:296 import.php:315 import.php:324 #: libraries/File.class.php:1031 libraries/File.class.php:1039 #: libraries/File.class.php:1055 libraries/File.class.php:1063 -#: libraries/messages.inc.php:1189 +#: libraries/messages.inc.php:1185 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." msgstr "" -#: import.php:337 libraries/messages.inc.php:547 +#: import.php:337 libraries/messages.inc.php:543 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -901,39 +901,39 @@ msgid "" msgstr "" #: import.php:372 libraries/display_import.lib.php:24 -#: libraries/messages.inc.php:125 +#: libraries/messages.inc.php:121 msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:397 libraries/messages.inc.php:102 +#: import.php:397 libraries/messages.inc.php:98 msgid "The bookmark has been deleted." msgstr "لقد حذفت العلامة المرجعية." -#: import.php:401 libraries/messages.inc.php:879 +#: import.php:401 libraries/messages.inc.php:875 msgid "Showing bookmark" msgstr "" -#: import.php:403 libraries/messages.inc.php:101 +#: import.php:403 libraries/messages.inc.php:97 #, php-format msgid "Bookmark %s created" msgstr "" -#: import.php:409 import.php:415 libraries/messages.inc.php:407 +#: import.php:409 import.php:415 libraries/messages.inc.php:403 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" -#: import.php:424 libraries/messages.inc.php:1107 +#: import.php:424 libraries/messages.inc.php:1103 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: index.php:190 libraries/messages.inc.php:553 +#: index.php:190 libraries/messages.inc.php:549 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin أكثر تفهما مع مستعرض الإطارات." -#: js/messages.php:25 libraries/messages.inc.php:155 +#: js/messages.php:25 libraries/messages.inc.php:151 #: server_synchronize.php:345 server_synchronize.php:357 #: server_synchronize.php:373 server_synchronize.php:380 #: server_synchronize.php:739 server_synchronize.php:767 @@ -941,116 +941,116 @@ msgstr "phpMyAdmin أكثر تفهما مع مستعرض الإطارات msgid "Click to select" msgstr "اضغط للاختيار" -#: js/messages.php:26 libraries/messages.inc.php:156 +#: js/messages.php:26 libraries/messages.inc.php:152 msgid "Click to unselect" msgstr "" #: js/messages.php:27 libraries/import.lib.php:103 -#: libraries/messages.inc.php:550 sql.php:89 +#: libraries/messages.inc.php:546 sql.php:89 msgid "\"DROP DATABASE\" statements are disabled." msgstr "معطل \"حذف قاعدة بيانات\"الأمر " -#: js/messages.php:30 libraries/messages.inc.php:270 +#: js/messages.php:30 libraries/messages.inc.php:266 #: libraries/mult_submits.inc.php:258 sql.php:188 msgid "Do you really want to " msgstr "هل تريد التنفيذ حقا" -#: js/messages.php:31 libraries/messages.inc.php:271 +#: js/messages.php:31 libraries/messages.inc.php:267 #: libraries/mult_submits.inc.php:258 sql.php:172 msgid "You are about to DESTROY a complete database!" msgstr "" -#: js/messages.php:34 libraries/messages.inc.php:94 +#: js/messages.php:34 libraries/messages.inc.php:90 msgid "You are about to DISABLE a BLOB Repository!" msgstr "" -#: js/messages.php:35 libraries/messages.inc.php:91 +#: js/messages.php:35 libraries/messages.inc.php:87 #, php-format msgid "Are you sure you want to disable all BLOB references for database %s?" msgstr "" -#: js/messages.php:38 libraries/messages.inc.php:342 +#: js/messages.php:38 libraries/messages.inc.php:338 msgid "Missing value in the form!" msgstr "يوجد قيمه مفقوده بالنموذج !" -#: js/messages.php:39 libraries/messages.inc.php:570 +#: js/messages.php:39 libraries/messages.inc.php:566 msgid "This is not a number!" msgstr "هذا ليس رقم!" -#: js/messages.php:42 libraries/messages.inc.php:380 +#: js/messages.php:42 libraries/messages.inc.php:376 msgid "The host name is empty!" msgstr "اسم المستضيف فارغ!" -#: js/messages.php:43 libraries/messages.inc.php:1208 +#: js/messages.php:43 libraries/messages.inc.php:1204 msgid "The user name is empty!" msgstr "اسم المستخدم فارغ!" -#: js/messages.php:44 libraries/messages.inc.php:607 +#: js/messages.php:44 libraries/messages.inc.php:603 #: server_privileges.php:1197 user_password.php:70 msgid "The password is empty!" msgstr "كلمة السر فارغة !" -#: js/messages.php:45 libraries/messages.inc.php:609 +#: js/messages.php:45 libraries/messages.inc.php:605 #: server_privileges.php:1195 user_password.php:73 msgid "The passwords aren't the same!" msgstr "كلمتا السر غير متشابهتان !" -#: js/messages.php:49 libraries/messages.inc.php:123 pmd_general.php:342 +#: js/messages.php:49 libraries/messages.inc.php:119 pmd_general.php:342 #: pmd_general.php:379 msgid "Cancel" msgstr "ألغ" -#: js/messages.php:52 libraries/messages.inc.php:514 +#: js/messages.php:52 libraries/messages.inc.php:510 msgid "Modifications have been saved" msgstr "تمت التعديلات" -#: js/messages.php:53 libraries/messages.inc.php:741 +#: js/messages.php:53 libraries/messages.inc.php:737 msgid "Relation deleted" msgstr "" -#: js/messages.php:54 libraries/messages.inc.php:340 +#: js/messages.php:54 libraries/messages.inc.php:336 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:55 libraries/messages.inc.php:434 +#: js/messages.php:55 libraries/messages.inc.php:430 msgid "Internal relation added" msgstr "" -#: js/messages.php:56 libraries/messages.inc.php:299 +#: js/messages.php:56 libraries/messages.inc.php:295 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:57 libraries/messages.inc.php:300 +#: js/messages.php:57 libraries/messages.inc.php:296 msgid "Error: relation already exists." msgstr "" -#: js/messages.php:58 libraries/messages.inc.php:302 +#: js/messages.php:58 libraries/messages.inc.php:298 msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:59 libraries/messages.inc.php:351 +#: js/messages.php:59 libraries/messages.inc.php:347 #: libraries/relation.lib.php:107 msgid "General relation features" msgstr "المزايا العامّة للرابط" -#: js/messages.php:59 libraries/messages.inc.php:260 +#: js/messages.php:59 libraries/messages.inc.php:256 #: libraries/relation.lib.php:101 libraries/relation.lib.php:108 msgid "Disabled" msgstr "معطل" -#: js/messages.php:60 libraries/messages.inc.php:850 +#: js/messages.php:60 libraries/messages.inc.php:846 msgid "Select referenced key" msgstr "" -#: js/messages.php:61 libraries/messages.inc.php:848 +#: js/messages.php:61 libraries/messages.inc.php:844 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:62 libraries/messages.inc.php:653 +#: js/messages.php:62 libraries/messages.inc.php:649 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:63 libraries/messages.inc.php:142 pmd_general.php:77 +#: js/messages.php:63 libraries/messages.inc.php:138 pmd_general.php:77 #: tbl_relation.php:548 msgid "Choose field to display" msgstr "اختر الحقل لإظهاره" @@ -1070,9 +1070,9 @@ msgid "Prev" msgstr "سابق" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2332 -#: libraries/common.lib.php:2335 libraries/display_tbl.lib.php:338 -#: libraries/messages.inc.php:543 server_binlog.php:205 server_binlog.php:207 +#: js/messages.php:77 libraries/common.lib.php:2344 +#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: libraries/messages.inc.php:539 server_binlog.php:205 server_binlog.php:207 #: tbl_printview.php:424 tbl_structure.php:802 msgid "Next" msgstr "التالي" @@ -1147,27 +1147,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1543 +#: js/messages.php:97 libraries/common.lib.php:1555 msgid "Jan" msgstr "يناير" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1545 +#: js/messages.php:99 libraries/common.lib.php:1557 msgid "Feb" msgstr "فبراير" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1547 +#: js/messages.php:101 libraries/common.lib.php:1559 msgid "Mar" msgstr "مارس" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1549 +#: js/messages.php:103 libraries/common.lib.php:1561 msgid "Apr" msgstr "أبريل" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1551 +#: js/messages.php:105 libraries/common.lib.php:1563 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1175,37 +1175,37 @@ msgid "May" msgstr "مايو" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1553 +#: js/messages.php:107 libraries/common.lib.php:1565 msgid "Jun" msgstr "يونيو" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1555 +#: js/messages.php:109 libraries/common.lib.php:1567 msgid "Jul" msgstr "يوليو" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1557 +#: js/messages.php:111 libraries/common.lib.php:1569 msgid "Aug" msgstr "أغسطس" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1559 +#: js/messages.php:113 libraries/common.lib.php:1571 msgid "Sep" msgstr "سبتمبر" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1561 +#: js/messages.php:115 libraries/common.lib.php:1573 msgid "Oct" msgstr "أكتوبر" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1563 +#: js/messages.php:117 libraries/common.lib.php:1575 msgid "Nov" msgstr "نوفمبر" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1565 +#: js/messages.php:119 libraries/common.lib.php:1577 msgid "Dec" msgstr "ديسمبر" @@ -1246,37 +1246,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1568 +#: js/messages.php:132 libraries/common.lib.php:1580 msgid "Sun" msgstr "الأحد" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1570 +#: js/messages.php:134 libraries/common.lib.php:1582 msgid "Mon" msgstr "الإثنين" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1572 +#: js/messages.php:136 libraries/common.lib.php:1584 msgid "Tue" msgstr "الثلاثاء" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1574 +#: js/messages.php:138 libraries/common.lib.php:1586 msgid "Wed" msgstr "الأربعاء" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1576 +#: js/messages.php:140 libraries/common.lib.php:1588 msgid "Thu" msgstr "الخميس" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1578 +#: js/messages.php:142 libraries/common.lib.php:1590 msgid "Fri" msgstr "الجمعة" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1580 +#: js/messages.php:144 libraries/common.lib.php:1592 msgid "Sat" msgstr "السبت" @@ -1352,76 +1352,76 @@ msgstr "قيد الإستعمال" msgid "Second" msgstr "لكل ثانية" -#: libraries/Config.class.php:1015 libraries/messages.inc.php:338 +#: libraries/Config.class.php:1015 libraries/messages.inc.php:334 msgid "Font size" msgstr "حجم الخط" #: libraries/File.class.php:344 libraries/File.class.php:432 #: libraries/File.class.php:569 libraries/File.class.php:708 -#: libraries/messages.inc.php:1201 +#: libraries/messages.inc.php:1197 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.class.php:414 libraries/messages.inc.php:1198 +#: libraries/File.class.php:414 libraries/messages.inc.php:1194 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:417 libraries/messages.inc.php:1197 +#: libraries/File.class.php:417 libraries/messages.inc.php:1193 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:420 libraries/messages.inc.php:1200 +#: libraries/File.class.php:420 libraries/messages.inc.php:1196 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:423 libraries/messages.inc.php:1199 +#: libraries/File.class.php:423 libraries/messages.inc.php:1195 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:426 libraries/messages.inc.php:1195 +#: libraries/File.class.php:426 libraries/messages.inc.php:1191 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:429 libraries/messages.inc.php:1196 +#: libraries/File.class.php:429 libraries/messages.inc.php:1192 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:908 libraries/messages.inc.php:319 +#: libraries/File.class.php:908 libraries/messages.inc.php:315 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "" -#: libraries/Index.class.php:428 libraries/messages.inc.php:554 +#: libraries/Index.class.php:428 libraries/messages.inc.php:550 #: tbl_relation.php:529 msgid "No index defined!" msgstr "فهرس غير معرف!" -#: libraries/Index.class.php:433 libraries/messages.inc.php:411 +#: libraries/Index.class.php:433 libraries/messages.inc.php:407 #: server_databases.php:132 tbl_tracking.php:316 msgid "Indexes" msgstr "فهارس" -#: libraries/Index.class.php:444 libraries/messages.inc.php:1186 +#: libraries/Index.class.php:444 libraries/messages.inc.php:1182 #: 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:475 tbl_tracking.php:322 msgid "Unique" msgstr "مميز" -#: libraries/Index.class.php:445 libraries/messages.inc.php:596 +#: libraries/Index.class.php:445 libraries/messages.inc.php:592 #: tbl_tracking.php:323 msgid "Packed" msgstr "" -#: libraries/Index.class.php:447 libraries/messages.inc.php:131 +#: libraries/Index.class.php:447 libraries/messages.inc.php:127 #: tbl_tracking.php:325 msgid "Cardinality" msgstr "Cardinality" -#: libraries/Index.class.php:450 libraries/messages.inc.php:162 +#: libraries/Index.class.php:450 libraries/messages.inc.php:158 #: tbl_tracking.php:279 tbl_tracking.php:328 msgid "Comment" msgstr "تعليق" @@ -1429,29 +1429,29 @@ msgstr "تعليق" #: libraries/Index.class.php:466 libraries/common.lib.php:616 #: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:280 pdf_pages.php:280 +#: libraries/messages.inc.php:276 pdf_pages.php:280 #: setup/frames/index.inc.php:124 setup/lib/messages.inc.php:352 #: tbl_row_action.php:69 msgid "Edit" msgstr "تحرير" -#: libraries/Index.class.php:472 libraries/messages.inc.php:666 +#: libraries/Index.class.php:472 libraries/messages.inc.php:662 msgid "The primary key has been dropped" msgstr "لقد تم حذف المفتاح الأساسي" -#: libraries/Index.class.php:476 libraries/messages.inc.php:413 +#: libraries/Index.class.php:476 libraries/messages.inc.php:409 #, php-format msgid "Index %s has been dropped" msgstr "فهرسة محذوفة %s" -#: libraries/Index.class.php:576 libraries/messages.inc.php:412 +#: libraries/Index.class.php:576 libraries/messages.inc.php:408 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "" -#: libraries/List_Database.class.php:431 libraries/messages.inc.php:218 +#: libraries/List_Database.class.php:431 libraries/messages.inc.php:214 #: libraries/server_links.inc.php:41 server_databases.php:88 #: server_privileges.php:1621 setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" @@ -1478,85 +1478,85 @@ msgid_plural "%1$d rows inserted." msgstr[0] "" msgstr[1] "" -#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:549 +#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:545 msgid "" "There is no detailed status information available for this storage engine." msgstr "" -#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:291 +#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:287 #, php-format msgid "%s is available on this MySQL server." msgstr "" -#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:292 +#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:288 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "" -#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:294 +#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:290 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "" -#: libraries/Table.class.php:1019 libraries/messages.inc.php:443 +#: libraries/Table.class.php:1019 libraries/messages.inc.php:439 msgid "Invalid database" msgstr "" -#: libraries/Table.class.php:1033 libraries/messages.inc.php:450 +#: libraries/Table.class.php:1033 libraries/messages.inc.php:446 #: tbl_get_field.php:26 msgid "Invalid table name" msgstr "" -#: libraries/Table.class.php:1048 libraries/messages.inc.php:301 +#: libraries/Table.class.php:1048 libraries/messages.inc.php:297 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "" -#: libraries/Table.class.php:1132 libraries/messages.inc.php:754 +#: libraries/Table.class.php:1132 libraries/messages.inc.php:750 #, php-format msgid "Table %s has been renamed to %s" msgstr "تم تغيير اسمهم إلى %s جدول%s" -#: libraries/Theme.class.php:162 libraries/messages.inc.php:1099 +#: libraries/Theme.class.php:162 libraries/messages.inc.php:1095 #, php-format msgid "No valid image path for theme %s found!" msgstr "" -#: libraries/Theme.class.php:384 libraries/messages.inc.php:1097 +#: libraries/Theme.class.php:384 libraries/messages.inc.php:1093 msgid "No preview available." msgstr "" -#: libraries/Theme.class.php:387 libraries/messages.inc.php:1089 +#: libraries/Theme.class.php:387 libraries/messages.inc.php:1085 msgid "take it" msgstr "" -#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1096 +#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1092 #, php-format msgid "Default theme %s not found!" msgstr "" -#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1098 +#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1094 #, php-format msgid "Theme %s not found!" msgstr "" -#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1100 +#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1096 #, php-format msgid "Theme path not found for theme %s!" msgstr "" -#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1101 +#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1097 #: test/theme.php:161 themes.php:21 themes.php:41 msgid "Theme / Style" msgstr "" -#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:172 +#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:168 msgid "Cannot connect: invalid settings." msgstr "" #: libraries/auth/config.auth.lib.php:92 #: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65 -#: libraries/messages.inc.php:1238 test/theme.php:152 +#: libraries/messages.inc.php:1234 test/theme.php:152 #, php-format msgid "Welcome to %s" msgstr "أهلا بك في %s" @@ -1579,104 +1579,104 @@ msgstr "" "المستضيف، أو اسم المستخدم وكلمة المرور في ملف الإعداد config.inc.php وتتأكد " "أنها مطابقة للمعلومات المعطاة إليك من قبل المسؤول عن خادم MySQL." -#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:488 +#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:484 msgid "Log in" msgstr "دخول" #: libraries/auth/cookie.auth.lib.php:246 -#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:659 +#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:655 #: libraries/navigation_header.inc.php:93 #: libraries/navigation_header.inc.php:95 msgid "phpMyAdmin documentation" msgstr "مستندات وثائقية لـ phpMyAdmin (بالإنجليزية)" #: libraries/auth/cookie.auth.lib.php:258 -#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:492 +#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:488 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:493 +#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:489 msgid "Server:" msgstr "خادم السجل" -#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:494 +#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:490 msgid "Username:" msgstr "اسم المستخدم:" -#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:491 +#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:487 msgid "Password:" msgstr "كلمة السر:" -#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:854 +#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:850 msgid "Server Choice" msgstr "اختيار الخادم" #: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 -#: libraries/messages.inc.php:177 +#: libraries/messages.inc.php:173 msgid "Cookies must be enabled past this point." msgstr "يجب تفعيل دعم الكوكيز في هذه المرحلة." #: libraries/auth/cookie.auth.lib.php:671 -#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:489 +#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:485 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" #: libraries/auth/cookie.auth.lib.php:675 -#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:544 +#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:540 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" #: libraries/auth/cookie.auth.lib.php:685 #: libraries/auth/cookie.auth.lib.php:687 -#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:126 +#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:122 msgid "Cannot log in to the MySQL server" msgstr "لا يمكن الدخول إلى خادم MySQL" -#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1245 +#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1241 msgid "Wrong username/password. Access denied." msgstr "خطأ اسم المستخدم/كلمة السر. الدخول ممنوع." #: libraries/auth/swekey/swekey.auth.lib.php:118 -#: libraries/messages.inc.php:1057 +#: libraries/messages.inc.php:1053 #, php-format msgid "File %s does not contain any key id" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:157 #: libraries/auth/swekey/swekey.auth.lib.php:180 -#: libraries/messages.inc.php:1056 +#: libraries/messages.inc.php:1052 msgid "Hardware authentication failed" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:166 -#: libraries/messages.inc.php:1058 +#: libraries/messages.inc.php:1054 msgid "No valid authentication key plugged" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:202 -#: libraries/messages.inc.php:1055 +#: libraries/messages.inc.php:1051 msgid "Authenticating..." msgstr "" -#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1230 +#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1226 msgid "View image" msgstr "" -#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:652 +#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:648 msgid "Play audio" msgstr "" -#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1232 +#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1228 msgid "View video" msgstr "" -#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:269 +#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:265 msgid "Download file" msgstr "نزل الملف" -#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:128 +#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:124 msgid "" "Couldn't load the iconv or recode extension needed for charset conversion. " "Either configure PHP to enable these extensions or disable charset " @@ -1688,7 +1688,7 @@ msgstr "" #: libraries/charset_conversion.lib.php:79 #: libraries/charset_conversion.lib.php:90 -#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:130 +#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:126 msgid "" "Couldn't use the iconv, libiconv, or recode_string functions, although the " "necessary extensions appear to be loaded. Check your PHP configuration." @@ -1696,7 +1696,7 @@ msgstr "" "لا يمكن استخدام iconv ولا libiconv ولا عملية recode_string في حين يحدد " "الامتداد أنه محمل. تأكد من إعدادات PHP." -#: libraries/common.inc.php:583 libraries/messages.inc.php:170 +#: libraries/common.inc.php:583 libraries/messages.inc.php:166 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!" @@ -1729,22 +1729,22 @@ msgstr "" msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:636 libraries/messages.inc.php:448 +#: libraries/common.inc.php:636 libraries/messages.inc.php:444 #, 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/messages.inc.php:856 libraries/select_server.lib.php:41 +#: libraries/messages.inc.php:852 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/messages.inc.php:437 +#: libraries/common.inc.php:823 libraries/messages.inc.php:433 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.lib.php:147 libraries/messages.inc.php:499 +#: libraries/common.lib.php:147 libraries/messages.inc.php:495 #, php-format msgid "Max: %s%s" msgstr "" @@ -1764,7 +1764,7 @@ msgstr "" #: libraries/common.lib.php:428 libraries/common.lib.php:430 #: libraries/common.lib.php:432 libraries/common.lib.php:448 #: libraries/common.lib.php:450 libraries/dbg/setup.php:25 -#: libraries/display_export.lib.php:164 libraries/messages.inc.php:267 +#: libraries/display_export.lib.php:164 libraries/messages.inc.php:263 #: libraries/relation.lib.php:97 libraries/sql_query_form.lib.php:451 #: libraries/sql_query_form.lib.php:454 main.php:229 pdf_pages.php:37 #: pdf_pages.php:43 pdf_pages.php:49 pdf_pages.php:54 @@ -1774,55 +1774,55 @@ msgstr "مستندات وثائقية" #: libraries/common.lib.php:581 libraries/core.lib.php:234 #: libraries/core.lib.php:263 libraries/import.lib.php:134 -#: libraries/messages.inc.php:297 pdf_schema.php:32 pdf_schema.php:232 +#: libraries/messages.inc.php:293 pdf_schema.php:32 pdf_schema.php:232 #: tbl_change.php:1027 tbl_operations.php:213 tbl_relation.php:290 #: view_operations.php:62 msgid "Error" msgstr "خطأ" #: libraries/common.lib.php:595 libraries/header_printview.inc.php:61 -#: libraries/messages.inc.php:1023 server_processlist.php:60 +#: libraries/messages.inc.php:1019 server_processlist.php:60 #: server_status.php:247 msgid "SQL query" msgstr "استعلام-SQL" -#: libraries/common.lib.php:634 libraries/messages.inc.php:538 +#: libraries/common.lib.php:634 libraries/messages.inc.php:534 msgid "MySQL said: " msgstr "MySQL قال: " -#: libraries/common.lib.php:667 libraries/messages.inc.php:76 +#: libraries/common.lib.php:667 libraries/messages.inc.php:72 #: pdf_schema.php:241 user_password.php:115 msgid "Back" msgstr "رجوع" -#: libraries/common.lib.php:1177 libraries/messages.inc.php:309 +#: libraries/common.lib.php:1177 libraries/messages.inc.php:305 #: setup/lib/messages.inc.php:353 msgid "Explain SQL" msgstr "اشرح SQL" -#: libraries/common.lib.php:1180 libraries/messages.inc.php:551 +#: libraries/common.lib.php:1180 libraries/messages.inc.php:547 msgid "Skip Explain SQL" msgstr "تخطي شرح SQL" -#: libraries/common.lib.php:1212 libraries/messages.inc.php:563 +#: libraries/common.lib.php:1212 libraries/messages.inc.php:559 msgid "Without PHP Code" msgstr "بدون شيفرة PHP" -#: libraries/common.lib.php:1215 libraries/messages.inc.php:649 +#: libraries/common.lib.php:1215 libraries/messages.inc.php:645 #: setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "أنشئ شيفرة PHP" -#: libraries/common.lib.php:1233 libraries/messages.inc.php:737 +#: libraries/common.lib.php:1233 libraries/messages.inc.php:733 #: server_status.php:341 setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "حدث" -#: libraries/common.lib.php:1242 libraries/messages.inc.php:575 +#: libraries/common.lib.php:1242 libraries/messages.inc.php:571 msgid "Skip Validate SQL" msgstr "تخطي التأكد من SQL" -#: libraries/common.lib.php:1245 libraries/messages.inc.php:1220 +#: libraries/common.lib.php:1245 libraries/messages.inc.php:1216 #: setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "التحقق من استعلام SQL" @@ -1838,11 +1838,11 @@ msgid "Inline" msgstr "محركات" #: libraries/common.lib.php:1332 libraries/common.lib.php:1347 -#: libraries/messages.inc.php:713 +#: libraries/messages.inc.php:709 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1351 libraries/messages.inc.php:1108 +#: libraries/common.lib.php:1351 libraries/messages.inc.php:1104 #: libraries/tbl_triggers.lib.php:28 server_processlist.php:58 msgid "Time" msgstr "وقت" @@ -1876,46 +1876,56 @@ msgstr "PB" msgid "EiB" msgstr "EB" +#. l10n: Thousands separator +#: libraries/common.lib.php:1417 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: libraries/common.lib.php:1419 +msgid "." +msgstr "." + #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1584 +#: libraries/common.lib.php:1596 #: libraries/transformations/text_plain__dateformat.inc.php:28 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y الساعة %H:%M" -#: libraries/common.lib.php:1886 +#: libraries/common.lib.php:1898 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s يوم، %s ساعة، %s دقيقة و%s ثانية" -#: libraries/common.lib.php:2301 libraries/common.lib.php:2304 -#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:664 +#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:660 #: server_status.php:608 msgid "Begin" msgstr "بداية" -#: libraries/common.lib.php:2302 libraries/common.lib.php:2305 -#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:665 +#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:661 #: server_binlog.php:168 server_binlog.php:170 msgid "Previous" msgstr "سابق" -#: libraries/common.lib.php:2333 libraries/common.lib.php:2336 -#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:289 +#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:285 msgid "End" msgstr "نهاية" -#: libraries/common.lib.php:2409 libraries/messages.inc.php:455 +#: libraries/common.lib.php:2421 libraries/messages.inc.php:451 #, php-format msgid "Jump to database "%s"." msgstr "إذهب إلى قاعدة بيانات "%s"." -#: libraries/common.lib.php:2429 libraries/messages.inc.php:461 +#: libraries/common.lib.php:2441 libraries/messages.inc.php:457 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/core.lib.php:286 libraries/dbg/setup.php:22 -#: libraries/messages.inc.php:127 +#: libraries/messages.inc.php:123 #, php-format msgid "" "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " @@ -1923,115 +1933,115 @@ msgid "" msgstr "لا يمكن قراءة الامتداد %s،
رجاء تأكد من إعدادات PHP." #: libraries/db_events.inc.php:20 libraries/db_events.inc.php:22 -#: libraries/export/sql.php:415 libraries/messages.inc.php:306 +#: libraries/export/sql.php:415 libraries/messages.inc.php:302 msgid "Events" msgstr "أحداث" #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 -#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:541 +#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:537 #: libraries/tbl_triggers.lib.php:27 setup/frames/index.inc.php:112 msgid "Name" msgstr "الاسم" -#: libraries/db_links.inc.php:45 libraries/messages.inc.php:216 +#: libraries/db_links.inc.php:45 libraries/messages.inc.php:212 #, php-format msgid "Database %s has been dropped." msgstr "قاعدة بيانات %s محذوفه." #: libraries/db_links.inc.php:57 libraries/db_links.inc.php:58 -#: libraries/db_links.inc.php:59 libraries/messages.inc.php:234 +#: libraries/db_links.inc.php:59 libraries/messages.inc.php:230 msgid "Database seems to be empty!" msgstr "" -#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1025 +#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1021 #: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60 #: querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1152 +#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1148 #: libraries/tbl_links.inc.php:69 msgid "Tracking" msgstr "تتبع" -#: libraries/db_links.inc.php:86 libraries/messages.inc.php:719 +#: libraries/db_links.inc.php:86 libraries/messages.inc.php:715 msgid "Query" msgstr "استعلام بواسطة مثال" -#: libraries/db_links.inc.php:91 libraries/messages.inc.php:253 +#: libraries/db_links.inc.php:91 libraries/messages.inc.php:249 msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:98 libraries/messages.inc.php:397 +#: libraries/db_links.inc.php:98 libraries/messages.inc.php:393 #: libraries/server_links.inc.php:88 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:104 libraries/messages.inc.php:587 +#: libraries/db_links.inc.php:104 libraries/messages.inc.php:583 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" msgstr "عمليات" -#: libraries/db_links.inc.php:111 libraries/messages.inc.php:709 +#: libraries/db_links.inc.php:111 libraries/messages.inc.php:705 #: libraries/server_links.inc.php:66 server_privileges.php:72 #: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117 msgid "Privileges" msgstr "الإمتيازات" #: libraries/db_routines.inc.php:30 libraries/db_routines.inc.php:32 -#: libraries/messages.inc.php:812 +#: libraries/messages.inc.php:808 msgid "Routines" msgstr "" -#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:811 +#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:807 msgid "Return type" msgstr "" #: libraries/db_structure.lib.php:57 libraries/display_tbl.lib.php:1848 -#: libraries/messages.inc.php:65 +#: libraries/messages.inc.php:61 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "" -#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:593 +#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:589 #: server_databases.php:142 tbl_printview.php:336 tbl_structure.php:683 msgid "Overhead" msgstr "الفوقي" #: libraries/dbi/mysql.dbi.lib.php:112 libraries/dbi/mysqli.dbi.lib.php:124 -#: libraries/messages.inc.php:176 +#: libraries/messages.inc.php:172 msgid "Connection for controluser as defined in your configuration failed." msgstr "" #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 -#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:855 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:851 msgid "The server is not responding" msgstr "" #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:1010 +#: libraries/messages.inc.php:1006 msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "" -#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:255 +#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:251 #: tbl_structure.php:609 msgid "Details..." msgstr "" -#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:143 +#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:139 #: main.php:91 user_password.php:111 user_password.php:129 msgid "Change password" msgstr "تغيير كلمة السر" -#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:561 +#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:557 #: libraries/replication_gui.lib.php:341 server_privileges.php:768 msgid "No Password" msgstr "لا كلمة سر" -#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:610 +#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:606 #: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60 #: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335 #: libraries/replication_gui.lib.php:345 server_privileges.php:757 @@ -2040,13 +2050,13 @@ msgstr "لا كلمة سر" msgid "Password" msgstr "كلمة السر" -#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:806 +#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:802 #: libraries/replication_gui.lib.php:349 libraries/replication_gui.lib.php:352 #: server_privileges.php:776 server_privileges.php:779 msgid "Re-type" msgstr "أعد كتابة" -#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:608 +#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:604 msgid "Password Hashing" msgstr "" @@ -2054,89 +2064,89 @@ msgstr "" msgid "MySQL 4.0 compatible" msgstr "" -#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:353 +#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:349 #: libraries/replication_gui.lib.php:356 server_privileges.php:783 msgid "Generate Password" msgstr "" -#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:352 +#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:348 #: libraries/replication_gui.lib.php:359 server_privileges.php:786 msgid "Generate" msgstr "ولد" #: libraries/display_create_database.lib.php:22 -#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:189 +#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:185 msgid "Create new database" msgstr "تكوين قاعدة بيانات جديدة" -#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:185 +#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:181 msgid "Create" msgstr "تكوين" -#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:564 +#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:560 #: server_privileges.php:74 server_privileges.php:1388 #: server_replication.php:35 msgid "No Privileges" msgstr "امتياز غير موجود" -#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:445 +#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:441 msgid "Table must have at least one field." msgstr "" -#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:190 +#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:186 #, php-format msgid "Create table on database %s" msgstr "تكوين جدول جديد في قاعدة البيانات %s" -#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:577 +#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:573 msgid "Number of fields" msgstr "" -#: libraries/display_export.lib.php:42 libraries/messages.inc.php:124 +#: libraries/display_export.lib.php:42 libraries/messages.inc.php:120 msgid "Could not load export plugins, please check your installation!" msgstr "" -#: libraries/display_export.lib.php:107 libraries/messages.inc.php:277 +#: libraries/display_export.lib.php:107 libraries/messages.inc.php:273 #, php-format msgid "Dump %s row(s) starting at record # %s" msgstr "احدف %s سطر بدء من السطر %s." -#: libraries/display_export.lib.php:115 libraries/messages.inc.php:274 +#: libraries/display_export.lib.php:115 libraries/messages.inc.php:270 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:125 libraries/messages.inc.php:852 +#: libraries/display_export.lib.php:125 libraries/messages.inc.php:848 #: setup/lib/messages.inc.php:82 msgid "Save as file" msgstr "حفظ كملف" -#: libraries/display_export.lib.php:134 libraries/messages.inc.php:828 +#: libraries/display_export.lib.php:134 libraries/messages.inc.php:824 #, php-format msgid "Save on server in %s directory" msgstr "احفظ على الخادم في الدليل %s" -#: libraries/display_export.lib.php:142 libraries/messages.inc.php:594 +#: libraries/display_export.lib.php:142 libraries/messages.inc.php:590 #: setup/lib/messages.inc.php:90 msgid "Overwrite existing file(s)" msgstr "خزن على الملفات الموجودة أصلا" -#: libraries/display_export.lib.php:148 libraries/messages.inc.php:330 +#: libraries/display_export.lib.php:148 libraries/messages.inc.php:326 msgid "File name template" msgstr "قالب اسم الملف" -#: libraries/display_export.lib.php:152 libraries/messages.inc.php:327 +#: libraries/display_export.lib.php:152 libraries/messages.inc.php:323 msgid "server name" msgstr "اسم الخادم" -#: libraries/display_export.lib.php:155 libraries/messages.inc.php:326 +#: libraries/display_export.lib.php:155 libraries/messages.inc.php:322 msgid "database name" msgstr "اسم قاعدة البيانات" -#: libraries/display_export.lib.php:158 libraries/messages.inc.php:328 +#: libraries/display_export.lib.php:158 libraries/messages.inc.php:324 msgid "table name" msgstr "اسم الجدول" -#: libraries/display_export.lib.php:162 libraries/messages.inc.php:329 +#: libraries/display_export.lib.php:162 libraries/messages.inc.php:325 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2144,24 +2154,24 @@ msgid "" "3$s. Other text will be kept as is." msgstr "" -#: libraries/display_export.lib.php:202 libraries/messages.inc.php:331 +#: libraries/display_export.lib.php:202 libraries/messages.inc.php:327 msgid "remember template" msgstr "تذكر القالب" #: libraries/display_export.lib.php:210 libraries/display_import.lib.php:178 -#: libraries/display_import.lib.php:191 libraries/messages.inc.php:145 +#: libraries/display_import.lib.php:191 libraries/messages.inc.php:141 #: libraries/sql_query_form.lib.php:549 msgid "Character set of the file:" msgstr "شيفرة أحرف الملف:" -#: libraries/display_export.lib.php:235 libraries/messages.inc.php:166 +#: libraries/display_export.lib.php:235 libraries/messages.inc.php:162 #: setup/lib/messages.inc.php:84 msgid "Compression" 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/messages.inc.php:558 +#: libraries/export/sql.php:868 libraries/messages.inc.php:554 #: libraries/tbl_properties.inc.php:575 server_privileges.php:1836 #: server_processlist.php:75 msgid "None" @@ -2185,462 +2195,462 @@ msgstr "\"gzipped\"" msgid "bzipped" msgstr "\"bzipped\"" -#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1018 +#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1014 msgid "SQL compatibility mode" msgstr "" -#: libraries/display_import.lib.php:67 libraries/messages.inc.php:398 +#: libraries/display_import.lib.php:67 libraries/messages.inc.php:394 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " "browsers." msgstr "" -#: libraries/display_import.lib.php:77 libraries/messages.inc.php:406 +#: libraries/display_import.lib.php:77 libraries/messages.inc.php:402 msgid "The file is being processed, please be patient." msgstr "" -#: libraries/display_import.lib.php:99 libraries/messages.inc.php:408 +#: libraries/display_import.lib.php:99 libraries/messages.inc.php:404 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." msgstr "" -#: libraries/display_import.lib.php:126 libraries/messages.inc.php:333 +#: libraries/display_import.lib.php:126 libraries/messages.inc.php:329 msgid "File to import" msgstr "" -#: libraries/display_import.lib.php:137 libraries/messages.inc.php:486 +#: libraries/display_import.lib.php:137 libraries/messages.inc.php:482 #: libraries/sql_query_form.lib.php:524 msgid "Location of the text file" msgstr "مكان ملف نصي" -#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1203 +#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1199 msgid "File uploads are not allowed on this server." msgstr "" -#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1235 +#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1231 #: libraries/sql_query_form.lib.php:533 tbl_change.php:1028 msgid "The directory you set for upload work cannot be reached" msgstr "الدليل الذي حددته لتحميل عملك لا يمكن الوصول إليه." -#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1236 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1232 #: libraries/sql_query_form.lib.php:536 tbl_change.php:1031 msgid "web server upload directory" msgstr "دليل تحميل الملفات على خادم الشبكة" -#: libraries/display_import.lib.php:212 libraries/messages.inc.php:167 +#: libraries/display_import.lib.php:212 libraries/messages.inc.php:163 #, php-format msgid "Imported file compression will be automatically detected from: %s" msgstr "" -#: libraries/display_import.lib.php:219 libraries/messages.inc.php:600 +#: libraries/display_import.lib.php:219 libraries/messages.inc.php:596 msgid "Partial import" msgstr "" -#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1105 +#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1101 #, php-format msgid "" "Previous import timed out, after resubmitting will continue from position %d." msgstr "" -#: libraries/display_import.lib.php:232 libraries/messages.inc.php:51 +#: libraries/display_import.lib.php:232 libraries/messages.inc.php:47 msgid "" "Allow the interruption of an import in case the script detects it is close " "to the PHP timeout limit. This might be good way to import large files, " "however it can break transactions." msgstr "" -#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1004 +#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1000 #: setup/lib/messages.inc.php:161 msgid "Number of records (queries) to skip from start" msgstr "" -#: libraries/display_import.lib.php:255 libraries/messages.inc.php:396 +#: libraries/display_import.lib.php:255 libraries/messages.inc.php:392 #: setup/lib/messages.inc.php:160 msgid "Format of imported file" msgstr "" #: libraries/display_select_lang.lib.php:45 -#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:465 +#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:461 #: setup/frames/index.inc.php:70 msgid "Language" msgstr "اللغة" -#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:447 +#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:443 #, php-format msgid "%d is not valid row number." msgstr "" -#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:814 +#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:810 msgid "row(s) starting from record #" msgstr "صفوف تبدأ من" -#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:817 +#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:813 msgid "horizontal" msgstr "أفقي" -#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:816 +#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:812 msgid "horizontal (rotated headers)" msgstr ")عناوين ملتفة( أفقيا" -#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:819 +#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:815 msgid "vertical" msgstr "عمودي" -#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:818 +#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:814 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr " %s و إعادة الرؤوس بعد %s حقل" -#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:495 +#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:491 msgid "This operation could take a long time. Proceed anyway?" msgstr "" -#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1012 +#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1008 msgid "Sort by key" msgstr "رتب حسب المفتاح" #: libraries/display_tbl.lib.php:555 libraries/import.lib.php:1082 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:591 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:587 #: tbl_select.php:267 tbl_structure.php:754 msgid "Options" msgstr "خيارات" #: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:570 -#: libraries/messages.inc.php:601 +#: libraries/messages.inc.php:597 msgid "Partial Texts" msgstr "نصوص جزئية" #: libraries/display_tbl.lib.php:561 libraries/display_tbl.lib.php:574 -#: libraries/messages.inc.php:346 +#: libraries/messages.inc.php:342 msgid "Full Texts" msgstr "نصوص كاملة" -#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:739 +#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:735 msgid "Relational key" msgstr "" -#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:738 +#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:734 msgid "Relational display field" msgstr "" -#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:872 +#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:868 msgid "Show binary contents" msgstr "" -#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:873 +#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:869 msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:871 +#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:867 msgid "Show binary contents as HEX" msgstr "" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:375 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:371 #: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320 msgid "Hide" msgstr "أخف" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:508 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:504 #: libraries/tbl_properties.inc.php:144 transformation_overview.php:47 msgid "Browser transformation" msgstr "تحويل المتصفح" #: libraries/display_tbl.lib.php:1126 libraries/display_tbl.lib.php:1130 -#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:308 +#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:304 msgid "Execute bookmarked query" msgstr "نفذ استعلام محفوظ بعلامة مرجعية" #: libraries/display_tbl.lib.php:1145 libraries/display_tbl.lib.php:1157 -#: libraries/messages.inc.php:244 +#: libraries/messages.inc.php:240 msgid "The row has been deleted" msgstr "لقد تم حذف الصف" #: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056 -#: libraries/messages.inc.php:460 server_processlist.php:71 +#: libraries/messages.inc.php:456 server_processlist.php:71 #: tbl_row_action.php:64 msgid "Kill" msgstr "إبطال" -#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:849 +#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:845 msgid "in query" msgstr "في الاستعلام" -#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:881 +#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:877 msgid "Showing rows" msgstr "مشاهدة السجلات " -#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1113 +#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1109 msgid "total" msgstr "المجموع" -#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:727 +#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:723 #: sql.php:524 #, php-format msgid "Query took %01.4f sec" msgstr "استغرق الاستعلام %01.4f ثانية" -#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:135 +#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:131 #: 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:471 msgid "Change" msgstr "تغيير" -#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:724 +#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:720 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:671 +#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:667 msgid "Print view (with full texts)" msgstr "عرض الطباعة (مع النصوص الكاملة)." -#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:482 +#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:478 msgid "Link not found" msgstr "لم يمكن إيجاد الوصلة" -#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1224 +#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1220 #: main.php:228 msgid "Version information" msgstr "" -#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:423 +#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:419 msgid "Data home directory" msgstr "" -#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:424 +#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:420 msgid "The common part of the directory path for all InnoDB data files." msgstr "" -#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:422 +#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:418 msgid "Data files" msgstr "ملفات البيانات" -#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:418 +#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:414 msgid "Autoextend increment" msgstr "" -#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:419 +#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:415 msgid "" " The increment size for extending the size of an autoextending tablespace " "when it becomes full." msgstr "" -#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:420 +#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:416 msgid "Buffer pool size" msgstr "" -#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:421 +#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:417 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." msgstr "" -#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:112 +#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:108 msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:426 +#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:422 #: server_status.php:306 msgid "InnoDB Status" msgstr "وضع InnoDB" -#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:113 +#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:109 msgid "Buffer Pool Usage" msgstr "" -#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1114 +#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1110 #: server_databases.php:137 server_databases.php:305 server_status.php:414 #: server_status.php:475 server_status.php:496 tbl_printview.php:351 #: tbl_structure.php:697 msgid "Total" msgstr "مجموع كلي" -#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:425 +#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:421 msgid "pages" msgstr "صفحات" -#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:343 +#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:339 msgid "Free pages" msgstr "صفحات حرة" -#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:259 +#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:255 msgid "Dirty pages" msgstr "" -#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:230 +#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:226 msgid "Pages containing data" msgstr "" -#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:598 +#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:594 msgid "Pages to be flushed" msgstr "" -#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:119 +#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:115 msgid "Busy pages" msgstr "صفحات مشغولة" -#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:467 +#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:463 msgid "Latched pages" msgstr "" -#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:111 +#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:107 msgid "Buffer Pool Activity" msgstr "" -#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:731 +#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:727 msgid "Read requests" msgstr "" -#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1244 +#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1240 msgid "Write requests" msgstr "" -#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:115 +#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:111 msgid "Read misses" msgstr "" -#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:117 +#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:113 msgid "Write waits" msgstr "" -#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:114 +#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:110 msgid "Read misses in %" msgstr "" -#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:116 +#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:112 msgid "Write waits in %" msgstr "" -#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:522 +#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:518 msgid "Data pointer size" msgstr "" -#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:523 +#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:519 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." msgstr "" -#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:528 +#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:524 msgid "Automatic recovery mode" msgstr "" -#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:529 +#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:525 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." msgstr "" -#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:527 +#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:523 msgid "Maximum size for temporary sort files" msgstr "" -#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:526 +#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:522 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " "INFILE)." msgstr "" -#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:525 +#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:521 msgid "Maximum size for temporary files on index creation" msgstr "" -#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:524 +#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:520 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " "method." msgstr "" -#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:531 +#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:527 msgid "Repair threads" msgstr "" -#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:530 +#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:526 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." msgstr "" -#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:533 +#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:529 msgid "Sort buffer size" msgstr "" -#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:532 +#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:528 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." msgstr "" -#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:620 +#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:616 msgid "Index cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:619 +#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:615 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." msgstr "" -#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:630 +#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:626 msgid "Record cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:629 +#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:625 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " "to the handle data (.xtd) and row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:624 +#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:620 msgid "Log cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:623 +#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:619 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:628 +#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:624 msgid "Log file threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:627 +#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:623 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:634 +#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:630 msgid "Transaction buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:633 +#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:629 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." msgstr "" -#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:611 +#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:607 msgid "Checkpoint frequency" msgstr "" -#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:612 +#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:608 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." msgstr "" -#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:615 +#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:611 msgid "Data log threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:616 +#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:612 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -2648,48 +2658,48 @@ msgid "" "that can be stored in the database." msgstr "" -#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:618 +#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:614 msgid "Garbage threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:617 +#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:613 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." msgstr "" -#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:622 +#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:618 msgid "Log buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:621 +#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:617 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " "required to write a data log." msgstr "" -#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:613 +#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:609 msgid "Data file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:614 +#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:610 msgid "The grow size of the handle data (.xtd) files." msgstr "" -#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:632 +#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:628 msgid "Row file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:631 +#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:627 msgid "The grow size of the row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:626 +#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:622 msgid "Log file count" msgstr "" -#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:625 +#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:621 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -2699,19 +2709,19 @@ msgstr "" #: libraries/export/htmlword.php:132 libraries/export/odt.php:168 #: libraries/export/sql.php:881 libraries/export/texytext.php:130 -#: libraries/messages.inc.php:275 +#: libraries/messages.inc.php:271 msgid "Dumping data for table" msgstr "إرجاع أو استيراد بيانات الجدول" #: libraries/export/htmlword.php:185 libraries/export/odt.php:238 #: libraries/export/sql.php:785 libraries/export/texytext.php:177 -#: libraries/messages.inc.php:1086 +#: libraries/messages.inc.php:1082 msgid "Table structure for table" msgstr "بنية الجدول" #: libraries/export/latex.php:125 libraries/export/sql.php:232 #: libraries/export/xml.php:102 libraries/header_printview.inc.php:57 -#: libraries/messages.inc.php:381 libraries/replication_gui.lib.php:63 +#: libraries/messages.inc.php:377 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:170 libraries/replication_gui.lib.php:265 #: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325 #: server_privileges.php:692 server_privileges.php:695 @@ -2723,183 +2733,183 @@ msgstr "المزود" #: libraries/export/latex.php:130 libraries/export/sql.php:233 #: libraries/export/xml.php:107 libraries/header_printview.inc.php:59 -#: libraries/messages.inc.php:354 +#: libraries/messages.inc.php:350 msgid "Generation Time" msgstr "أنشئ في" #: libraries/export/latex.php:131 libraries/export/sql.php:235 -#: libraries/export/xml.php:108 libraries/messages.inc.php:864 main.php:186 +#: libraries/export/xml.php:108 libraries/messages.inc.php:860 main.php:186 msgid "Server version" msgstr "إصدارة المزود" #: libraries/export/latex.php:132 libraries/export/sql.php:236 -#: libraries/export/xml.php:109 libraries/messages.inc.php:651 +#: libraries/export/xml.php:109 libraries/messages.inc.php:647 msgid "PHP Version" msgstr " PHP إصدارة" #: libraries/export/latex.php:201 libraries/export/sql.php:868 -#: libraries/messages.inc.php:226 server_databases.php:127 +#: libraries/messages.inc.php:222 server_databases.php:127 #: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317 #: tbl_structure.php:666 msgid "Data" msgstr "بيانات" -#: libraries/export/odt.php:318 libraries/messages.inc.php:506 +#: libraries/export/odt.php:318 libraries/messages.inc.php:502 #: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "نوع MIME" -#: libraries/export/sql.php:387 libraries/messages.inc.php:711 +#: libraries/export/sql.php:387 libraries/messages.inc.php:707 msgid "Procedures" msgstr "" -#: libraries/export/sql.php:401 libraries/messages.inc.php:348 +#: libraries/export/sql.php:401 libraries/messages.inc.php:344 msgid "Functions" msgstr "" -#: libraries/export/sql.php:618 libraries/messages.inc.php:174 +#: libraries/export/sql.php:618 libraries/messages.inc.php:170 msgid "Constraints for dumped tables" msgstr "قيود الجداول المحفوظة" -#: libraries/export/sql.php:627 libraries/messages.inc.php:175 +#: libraries/export/sql.php:627 libraries/messages.inc.php:171 msgid "Constraints for table" msgstr "القيود للجدول" -#: libraries/export/sql.php:727 libraries/messages.inc.php:512 +#: libraries/export/sql.php:727 libraries/messages.inc.php:508 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/export/sql.php:739 libraries/messages.inc.php:743 +#: libraries/export/sql.php:739 libraries/messages.inc.php:739 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/export/sql.php:796 libraries/messages.inc.php:1178 +#: libraries/export/sql.php:796 libraries/messages.inc.php:1174 #: libraries/tbl_triggers.lib.php:19 msgid "Triggers" msgstr "" -#: libraries/export/sql.php:808 libraries/messages.inc.php:1046 +#: libraries/export/sql.php:808 libraries/messages.inc.php:1042 msgid "Structure for view" msgstr "" -#: libraries/export/sql.php:817 libraries/messages.inc.php:1029 +#: libraries/export/sql.php:817 libraries/messages.inc.php:1025 msgid "Stand-in structure for view" msgstr "" #: libraries/footer.inc.php:184 libraries/footer.inc.php:195 -#: libraries/footer.inc.php:198 libraries/messages.inc.php:586 +#: libraries/footer.inc.php:198 libraries/messages.inc.php:582 msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/header.inc.php:115 libraries/messages.inc.php:542 +#: libraries/header.inc.php:115 libraries/messages.inc.php:538 msgid "New table" msgstr "" #: libraries/header_printview.inc.php:50 libraries/header_printview.inc.php:55 -#: libraries/messages.inc.php:1024 +#: libraries/messages.inc.php:1020 msgid "SQL result" msgstr "ناتج استعلام SQL" -#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:350 +#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:346 msgid "Generated by" msgstr "أنشئ بواسطة" #: libraries/header_printview.inc.php:63 libraries/import.lib.php:145 -#: libraries/messages.inc.php:820 navigation.php:652 navigation.php:674 +#: libraries/messages.inc.php:816 navigation.php:652 navigation.php:674 #: server_databases.php:122 tbl_printview.php:394 tbl_structure.php:366 #: tbl_structure.php:778 msgid "Rows" msgstr "صفوف" -#: libraries/import.lib.php:150 libraries/messages.inc.php:285 sql.php:520 +#: libraries/import.lib.php:150 libraries/messages.inc.php:281 sql.php:520 #: tbl_change.php:181 tbl_get_field.php:35 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL قام بإرجاع نتيجة إعداد فارغه (مثلا صف صفري)." -#: libraries/import.lib.php:1078 libraries/messages.inc.php:399 +#: libraries/import.lib.php:1078 libraries/messages.inc.php:395 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1079 libraries/messages.inc.php:400 +#: libraries/import.lib.php:1079 libraries/messages.inc.php:396 msgid "View a structure`s contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1080 libraries/messages.inc.php:401 +#: libraries/import.lib.php:1080 libraries/messages.inc.php:397 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1081 libraries/messages.inc.php:402 +#: libraries/import.lib.php:1081 libraries/messages.inc.php:398 msgid "Edit its structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1084 libraries/messages.inc.php:362 +#: libraries/import.lib.php:1084 libraries/messages.inc.php:358 msgid "Go to database" msgstr "" #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:869 +#: libraries/messages.inc.php:865 msgid "settings" msgstr "" -#: libraries/import.lib.php:1106 libraries/messages.inc.php:363 +#: libraries/import.lib.php:1106 libraries/messages.inc.php:359 msgid "Go to table" msgstr "اذهب إلى الجدول" -#: libraries/import.lib.php:1109 libraries/messages.inc.php:1047 +#: libraries/import.lib.php:1109 libraries/messages.inc.php:1043 msgid "structure" msgstr "" -#: libraries/import.lib.php:1115 libraries/messages.inc.php:364 +#: libraries/import.lib.php:1115 libraries/messages.inc.php:360 msgid "Go to view" msgstr "" #: libraries/import/csv.php:58 libraries/import/csv.php:70 #: libraries/import/csv.php:74 libraries/import/csv.php:78 -#: libraries/messages.inc.php:442 +#: libraries/messages.inc.php:438 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "" -#: libraries/import/csv.php:59 libraries/messages.inc.php:323 +#: libraries/import/csv.php:59 libraries/messages.inc.php:319 msgid "Fields terminated by" msgstr "حقل مفصول بـ" -#: libraries/import/csv.php:71 libraries/messages.inc.php:320 +#: libraries/import/csv.php:71 libraries/messages.inc.php:316 msgid "Fields enclosed by" msgstr "حقل مضمن بـ" -#: libraries/import/csv.php:75 libraries/messages.inc.php:321 +#: libraries/import/csv.php:75 libraries/messages.inc.php:317 msgid "Fields escaped by" msgstr "حقل متجاهل بـ" -#: libraries/import/csv.php:79 libraries/messages.inc.php:481 +#: libraries/import/csv.php:79 libraries/messages.inc.php:477 msgid "Lines terminated by" msgstr "خطوط مفصولة بـ" -#: libraries/import/csv.php:119 libraries/messages.inc.php:439 +#: libraries/import/csv.php:119 libraries/messages.inc.php:435 #, php-format msgid "Invalid column (%s) specified!" msgstr "" #: libraries/import/csv.php:177 libraries/import/csv.php:424 -#: libraries/messages.inc.php:441 +#: libraries/messages.inc.php:437 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/import/csv.php:312 libraries/messages.inc.php:440 +#: libraries/import/csv.php:312 libraries/messages.inc.php:436 #, php-format msgid "Invalid field count in CSV input on line %d." msgstr "" -#: libraries/import/ldi.php:55 libraries/messages.inc.php:446 +#: libraries/import/ldi.php:55 libraries/messages.inc.php:442 msgid "This plugin does not support compressed imports!" msgstr "" #: libraries/import/xml.php:74 libraries/import/xml.php:130 -#: libraries/messages.inc.php:1247 +#: libraries/messages.inc.php:1243 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -2928,565 +2938,555 @@ msgstr "" msgid "ltr" msgstr "rtl" -#. l10n: Thousands separator -#: libraries/messages.inc.php:21 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: libraries/messages.inc.php:23 -msgid "." -msgstr "." - -#: libraries/messages.inc.php:25 server_status.php:461 +#: libraries/messages.inc.php:21 server_status.php:461 msgid "Aborted" msgstr "ألغي" -#: libraries/messages.inc.php:28 main.php:68 +#: libraries/messages.inc.php:24 main.php:68 msgid "Actions" msgstr "أفعال" -#: libraries/messages.inc.php:34 libraries/tbl_properties.inc.php:780 +#: libraries/messages.inc.php:30 libraries/tbl_properties.inc.php:780 #: tbl_structure.php:543 #, php-format msgid "Add %s field(s)" msgstr "" -#: libraries/messages.inc.php:35 +#: libraries/messages.inc.php:31 msgid "Add custom comment into header (\\n splits lines)" msgstr "" -#: libraries/messages.inc.php:36 +#: libraries/messages.inc.php:32 msgid "Add into comments" msgstr "أضف إلى الملاحظات" -#: libraries/messages.inc.php:37 tbl_structure.php:541 +#: libraries/messages.inc.php:33 tbl_structure.php:541 msgid "Add new field" msgstr "إضافة حقل جديد" -#: libraries/messages.inc.php:38 server_privileges.php:1886 +#: libraries/messages.inc.php:34 server_privileges.php:1886 msgid "Add privileges on the following database" msgstr "إضافة الصلاحيات على قاعدة البيانات التالية" -#: libraries/messages.inc.php:39 server_privileges.php:1907 +#: libraries/messages.inc.php:35 server_privileges.php:1907 msgid "Add privileges on the following table" msgstr "إضافة الصلاحيات على الجدول التالي" -#: libraries/messages.inc.php:40 tbl_select.php:288 +#: libraries/messages.inc.php:36 tbl_select.php:288 msgid "Add search conditions (body of the \"where\" clause):" msgstr "أضف شروط البحث (جسم من الفقره \"where\" clause):" -#: libraries/messages.inc.php:41 tbl_indexes.php:251 +#: libraries/messages.inc.php:37 tbl_indexes.php:251 #, php-format msgid "Add to index  %s column(s)" msgstr "إضافه كفهرس  %s صف(ـوف)" -#: libraries/messages.inc.php:42 server_privileges.php:1570 +#: libraries/messages.inc.php:38 server_privileges.php:1570 #: server_privileges.php:1594 server_privileges.php:1988 #: server_privileges.php:2177 msgid "Add a new User" msgstr "أضف مستخدم جديد" -#: libraries/messages.inc.php:43 server_privileges.php:931 +#: libraries/messages.inc.php:39 server_privileges.php:931 msgid "You have added a new user." msgstr "لقد أضفت مستخدم جديد." -#: libraries/messages.inc.php:44 server_privileges.php:571 +#: libraries/messages.inc.php:40 server_privileges.php:571 msgid "Administration" msgstr "إدارة" -#: libraries/messages.inc.php:45 tbl_structure.php:557 +#: libraries/messages.inc.php:41 tbl_structure.php:557 #, php-format msgid "After %s" msgstr "بعد %s" -#: libraries/messages.inc.php:46 tbl_change.php:1147 +#: libraries/messages.inc.php:42 tbl_change.php:1147 msgid "Go back to previous page" msgstr "الرجوع إلى الصفحة السابقة" -#: libraries/messages.inc.php:47 tbl_change.php:1148 +#: libraries/messages.inc.php:43 tbl_change.php:1148 msgid "Insert another new row" msgstr "إدخال تسجيل جديد" -#: libraries/messages.inc.php:48 tbl_change.php:1160 +#: libraries/messages.inc.php:44 tbl_change.php:1160 msgid "Edit next row" msgstr "عدل الصف التالي" -#: libraries/messages.inc.php:49 tbl_change.php:1152 +#: libraries/messages.inc.php:45 tbl_change.php:1152 msgid "Go back to this page" msgstr "ارجع إلى هذه الصفحة" -#: libraries/messages.inc.php:50 querywindow.php:115 +#: libraries/messages.inc.php:46 querywindow.php:115 msgid "All" msgstr "الكل" -#: libraries/messages.inc.php:53 tbl_operations.php:249 +#: libraries/messages.inc.php:49 tbl_operations.php:249 msgid "Alter table order by" msgstr "تعديل ترتيب الجدول بـ" -#: libraries/messages.inc.php:54 tbl_operations.php:660 +#: libraries/messages.inc.php:50 tbl_operations.php:660 msgid "Analyze" msgstr "حلل" -#: libraries/messages.inc.php:57 +#: libraries/messages.inc.php:53 msgid "and" msgstr "و" -#: libraries/messages.inc.php:59 pmd_general.php:87 +#: libraries/messages.inc.php:55 pmd_general.php:87 msgid "Angular links" msgstr "" -#: libraries/messages.inc.php:60 tbl_structure.php:401 tbl_structure.php:415 +#: libraries/messages.inc.php:56 tbl_structure.php:401 tbl_structure.php:415 #: tbl_structure.php:429 #, php-format msgid "An index has been added on %s" msgstr "لقد أُضيف الفهرس في %s" -#: libraries/messages.inc.php:61 server_privileges.php:1521 +#: libraries/messages.inc.php:57 server_privileges.php:1521 #: server_privileges.php:2123 msgid "Any" msgstr "أي" -#: libraries/messages.inc.php:62 libraries/replication_gui.lib.php:298 +#: libraries/messages.inc.php:58 libraries/replication_gui.lib.php:298 #: server_privileges.php:725 msgid "Any host" msgstr "أي مزود" -#: libraries/messages.inc.php:63 libraries/replication_gui.lib.php:250 +#: libraries/messages.inc.php:59 libraries/replication_gui.lib.php:250 #: server_privileges.php:677 msgid "Any user" msgstr "أي مستخدم" -#: libraries/messages.inc.php:64 server_synchronize.php:449 +#: libraries/messages.inc.php:60 server_synchronize.php:449 #: server_synchronize.php:894 msgid "Apply Selected Changes" msgstr "" -#: libraries/messages.inc.php:66 tbl_structure.php:386 +#: libraries/messages.inc.php:62 tbl_structure.php:386 #, php-format msgid "A primary key has been added on %s" msgstr "لقد أُضيف المفتاح الأساسي في %s" -#: libraries/messages.inc.php:67 libraries/mysql_charsets.lib.php:368 +#: libraries/messages.inc.php:63 libraries/mysql_charsets.lib.php:368 msgid "Arabic" msgstr "العربية" -#: libraries/messages.inc.php:68 libraries/mysql_charsets.lib.php:359 +#: libraries/messages.inc.php:64 libraries/mysql_charsets.lib.php:359 msgid "Armenian" msgstr "الأرمنية" -#: libraries/messages.inc.php:70 libraries/tbl_properties.inc.php:394 +#: libraries/messages.inc.php:66 libraries/tbl_properties.inc.php:394 msgid "As defined:" msgstr "كما هو معرف:" -#: libraries/messages.inc.php:71 tbl_structure.php:556 +#: libraries/messages.inc.php:67 tbl_structure.php:556 msgid "At Beginning of Table" msgstr "في بداية الجدول" -#: libraries/messages.inc.php:72 tbl_structure.php:555 +#: libraries/messages.inc.php:68 tbl_structure.php:555 msgid "At End of Table" msgstr "في نهاية الجدول" -#: libraries/messages.inc.php:73 libraries/tbl_properties.inc.php:108 +#: libraries/messages.inc.php:69 libraries/tbl_properties.inc.php:108 #: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:144 #: tbl_structure.php:180 msgid "Attributes" msgstr "الخواص" -#: libraries/messages.inc.php:74 pdf_pages.php:303 pdf_pages.php:306 +#: libraries/messages.inc.php:70 pdf_pages.php:303 pdf_pages.php:306 msgid "Automatic layout" msgstr "مظهر تلقائي" -#: libraries/messages.inc.php:77 libraries/mysql_charsets.lib.php:354 +#: libraries/messages.inc.php:73 libraries/mysql_charsets.lib.php:354 msgid "Baltic" msgstr "البلطيق" -#: libraries/messages.inc.php:78 libraries/sqlparser.lib.php:175 +#: libraries/messages.inc.php:74 libraries/sqlparser.lib.php:175 msgid "BEGIN CUT" msgstr "بدء القص" -#: libraries/messages.inc.php:79 libraries/sqlparser.lib.php:179 +#: libraries/messages.inc.php:75 libraries/sqlparser.lib.php:179 msgid "BEGIN RAW" msgstr "بدء بيانات أصلية" -#: libraries/messages.inc.php:80 libraries/mysql_charsets.lib.php:201 +#: libraries/messages.inc.php:76 libraries/mysql_charsets.lib.php:201 #: libraries/mysql_charsets.lib.php:402 tbl_change.php:518 msgid "Binary" msgstr "ثنائي" -#: libraries/messages.inc.php:81 tbl_change.php:894 +#: libraries/messages.inc.php:77 tbl_change.php:894 msgid "Binary - do not edit" msgstr "ثنائي - لاتحرره" -#: libraries/messages.inc.php:82 libraries/server_links.inc.php:76 +#: libraries/messages.inc.php:78 libraries/server_links.inc.php:76 #: server_binlog.php:110 server_status.php:253 test/theme.php:121 msgid "Binary log" msgstr "سجل ثنائي" -#: libraries/messages.inc.php:83 server_binlog.php:217 +#: libraries/messages.inc.php:79 server_binlog.php:217 msgid "Event type" msgstr "نوع الحدث" -#: libraries/messages.inc.php:84 server_binlog.php:220 +#: libraries/messages.inc.php:80 server_binlog.php:220 msgid "Information" msgstr "معلومات" -#: libraries/messages.inc.php:85 server_binlog.php:215 +#: libraries/messages.inc.php:81 server_binlog.php:215 msgid "Log name" msgstr "اسم السجل" -#: libraries/messages.inc.php:86 server_binlog.php:219 +#: libraries/messages.inc.php:82 server_binlog.php:219 msgid "Original position" msgstr "" -#: libraries/messages.inc.php:87 server_binlog.php:216 +#: libraries/messages.inc.php:83 server_binlog.php:216 msgid "Position" msgstr "موضع" -#: libraries/messages.inc.php:88 libraries/replication_gui.lib.php:169 +#: libraries/messages.inc.php:84 libraries/replication_gui.lib.php:169 #: server_binlog.php:218 msgid "Server ID" msgstr "رقم الخادم" -#: libraries/messages.inc.php:92 +#: libraries/messages.inc.php:88 msgctxt "$strBLOBRepositoryDisabled" msgid "Disabled" msgstr "معطل" -#: libraries/messages.inc.php:95 +#: libraries/messages.inc.php:91 msgctxt "$strBLOBRepositoryEnabled" msgid "Enabled" msgstr "مفعل" -#: libraries/messages.inc.php:97 tbl_change.php:888 +#: libraries/messages.inc.php:93 tbl_change.php:888 msgid "Remove BLOB Repository Reference" msgstr "" -#: libraries/messages.inc.php:98 +#: libraries/messages.inc.php:94 msgctxt "$strBLOBRepositoryRepair" msgid "Repair" msgstr "صلح" -#: libraries/messages.inc.php:99 tbl_change.php:987 +#: libraries/messages.inc.php:95 tbl_change.php:987 msgid "Upload to BLOB repository" msgstr "" -#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:359 +#: libraries/messages.inc.php:96 libraries/sql_query_form.lib.php:359 #: sql.php:677 msgid "Let every user access this bookmark" msgstr "اسمح لكل المستخدمين الوصول إلى هذه العلامة المرجعية" -#: libraries/messages.inc.php:103 sql.php:671 +#: libraries/messages.inc.php:99 sql.php:671 msgid "Label" msgstr "علامة" -#: libraries/messages.inc.php:104 libraries/sql_query_form.lib.php:433 +#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:433 msgid "Bookmarked SQL query" msgstr "علامة مرجعية SQL-استعلام" -#: libraries/messages.inc.php:105 libraries/sql_query_form.lib.php:365 +#: libraries/messages.inc.php:101 libraries/sql_query_form.lib.php:365 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/messages.inc.php:106 libraries/sql_query_form.lib.php:352 +#: libraries/messages.inc.php:102 libraries/sql_query_form.lib.php:352 #: sql.php:665 sql.php:666 sql.php:683 msgid "Bookmark this SQL query" msgstr "اجعل علامة مرجعية SQL-استعلام" -#: libraries/messages.inc.php:107 libraries/sql_query_form.lib.php:466 +#: libraries/messages.inc.php:103 libraries/sql_query_form.lib.php:466 msgid "View only" msgstr "عرض فقط" -#: libraries/messages.inc.php:109 tbl_structure.php:161 +#: libraries/messages.inc.php:105 tbl_structure.php:161 msgid "Browse distinct values" msgstr "" -#: libraries/messages.inc.php:110 tbl_change.php:252 tbl_select.php:27 +#: libraries/messages.inc.php:106 tbl_change.php:252 tbl_select.php:27 #: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34 msgid "Browse foreign values" msgstr "استعرض القيم الغريبة" -#: libraries/messages.inc.php:118 libraries/mysql_charsets.lib.php:213 +#: libraries/messages.inc.php:114 libraries/mysql_charsets.lib.php:213 msgid "Bulgarian" msgstr "البلغارية" -#: libraries/messages.inc.php:120 +#: libraries/messages.inc.php:116 msgid "\"bzipped\"" msgstr "\"bzipped\"" -#: libraries/messages.inc.php:122 +#: libraries/messages.inc.php:118 msgid "Calendar" msgstr "نتيجة" -#: libraries/messages.inc.php:129 tbl_indexes.php:75 +#: libraries/messages.inc.php:125 tbl_indexes.php:75 msgid "Can't rename index to PRIMARY!" msgstr "لايمكن تغيير اسم الفهرس إلى الأساسي!" -#: libraries/messages.inc.php:132 libraries/mysql_charsets.lib.php:223 +#: libraries/messages.inc.php:128 libraries/mysql_charsets.lib.php:223 #: libraries/mysql_charsets.lib.php:409 msgid "case-insensitive" msgstr "غير حساس لحالة الأحرف" -#: libraries/messages.inc.php:133 libraries/mysql_charsets.lib.php:226 +#: libraries/messages.inc.php:129 libraries/mysql_charsets.lib.php:226 #: libraries/mysql_charsets.lib.php:411 msgid "case-sensitive" msgstr "حساس لحالة الأحرف" -#: libraries/messages.inc.php:134 libraries/mysql_charsets.lib.php:332 +#: libraries/messages.inc.php:130 libraries/mysql_charsets.lib.php:332 msgid "Central European" msgstr "أوروبا الوسطى" -#: libraries/messages.inc.php:136 server_privileges.php:1969 +#: libraries/messages.inc.php:132 server_privileges.php:1969 msgid "... keep the old one." msgstr " ... أبق القديم." -#: libraries/messages.inc.php:137 server_privileges.php:1967 +#: libraries/messages.inc.php:133 server_privileges.php:1967 msgid "Create a new user with the same privileges and ..." msgstr "أضف اسم مستخدم جديد بنفس الصلاحيات و..." -#: libraries/messages.inc.php:138 server_privileges.php:1972 +#: libraries/messages.inc.php:134 server_privileges.php:1972 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr " ... احذف القديم من جداول المستخدمين وأعد قراءة الصلاحيات بعد ذلك." -#: libraries/messages.inc.php:139 server_privileges.php:1970 +#: libraries/messages.inc.php:135 server_privileges.php:1970 msgid " ... delete the old one from the user tables." msgstr " ... احذف القديم من جداول المستخدمين." -#: libraries/messages.inc.php:140 server_privileges.php:1971 +#: libraries/messages.inc.php:136 server_privileges.php:1971 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr " ... استعد كل الصلاحيات الفعالة من القديم واحذهم بعد ذلك." -#: libraries/messages.inc.php:141 server_privileges.php:1964 +#: libraries/messages.inc.php:137 server_privileges.php:1964 msgid "Change Login Information / Copy User" msgstr "غير معلومات الدخول / انسخ اسم مستخدم" -#: libraries/messages.inc.php:144 libraries/mysql_charsets.lib.php:107 +#: libraries/messages.inc.php:140 libraries/mysql_charsets.lib.php:107 msgid "Charset" msgstr "مجموعة المحارف" -#: libraries/messages.inc.php:146 server_collations.php:40 +#: libraries/messages.inc.php:142 server_collations.php:40 msgid "Character Sets and Collations" msgstr "مجموعات المحارف وCollations" -#: libraries/messages.inc.php:147 libraries/server_links.inc.php:57 +#: libraries/messages.inc.php:143 libraries/server_links.inc.php:57 #: test/theme.php:109 msgid "Charsets" msgstr "مجموعات المحارف" -#: libraries/messages.inc.php:149 tbl_operations.php:661 +#: libraries/messages.inc.php:145 tbl_operations.php:661 msgid "Check" msgstr "تحقق" -#: libraries/messages.inc.php:151 server_databases.php:293 +#: libraries/messages.inc.php:147 server_databases.php:293 #: server_databases.php:294 msgid "Check Privileges" msgstr "تحقق من الصلاحيات" -#: libraries/messages.inc.php:152 server_databases.php:289 +#: libraries/messages.inc.php:148 server_databases.php:289 #, php-format msgid "Check privileges for database "%s"." msgstr "تحقق من الصلاحيات لقاعدة بيانات "%s"." -#: libraries/messages.inc.php:154 pdf_pages.php:261 +#: libraries/messages.inc.php:150 pdf_pages.php:261 msgid "Please choose a page to edit" msgstr "رجاء اختر صفحة لتعديلها" -#: libraries/messages.inc.php:157 +#: libraries/messages.inc.php:153 msgid "Displaying Column Comments" msgstr "إظهار تعليقات العمود" -#: libraries/messages.inc.php:159 pdf_pages.php:483 view_create.php:148 +#: libraries/messages.inc.php:155 pdf_pages.php:483 view_create.php:148 msgid "Column names" msgstr "اسم العمود" -#: libraries/messages.inc.php:160 server_privileges.php:1685 +#: libraries/messages.inc.php:156 server_privileges.php:1685 msgid "Column-specific privileges" msgstr "صلاحيات خاصة بالحقل" -#: libraries/messages.inc.php:164 +#: libraries/messages.inc.php:160 msgid "MySQL 4.0 compatible" msgstr "" -#: libraries/messages.inc.php:165 +#: libraries/messages.inc.php:161 msgid "Complete inserts" msgstr "لقد اكتمل الإدخال" -#: libraries/messages.inc.php:168 +#: libraries/messages.inc.php:164 #, php-format msgid "Could not load default configuration from: \"%1$s\"" msgstr "" -#: libraries/messages.inc.php:169 main.php:306 +#: libraries/messages.inc.php:165 main.php:306 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: libraries/messages.inc.php:171 pdf_schema.php:672 +#: libraries/messages.inc.php:167 pdf_schema.php:672 #, php-format msgid "Please configure the coordinates for table %s" msgstr "رجاء إعداد الموقع للجدول %s" -#: libraries/messages.inc.php:173 server_status.php:433 +#: libraries/messages.inc.php:169 server_status.php:433 msgid "Connections" msgstr "اتصالات" -#: libraries/messages.inc.php:179 tbl_operations.php:509 +#: libraries/messages.inc.php:175 tbl_operations.php:509 msgid "Copy table to (database.table):" msgstr "نسخ الجدول إلى" -#: libraries/messages.inc.php:180 tbl_move_copy.php:58 +#: libraries/messages.inc.php:176 tbl_move_copy.php:58 #, php-format msgid "Table %s has been copied to %s." msgstr "الجدول %s لقد تم نسخه إلى %s." -#: libraries/messages.inc.php:181 tbl_move_copy.php:48 +#: libraries/messages.inc.php:177 tbl_move_copy.php:48 msgid "Can't copy table to same one!" msgstr "لا يمكن نسخ الجدول إلى نفسه!" -#: libraries/messages.inc.php:182 server_synchronize.php:94 +#: libraries/messages.inc.php:178 server_synchronize.php:94 msgid "Could not connect to the source" msgstr "" -#: libraries/messages.inc.php:183 server_synchronize.php:97 +#: libraries/messages.inc.php:179 server_synchronize.php:97 msgid "Could not connect to the target" msgstr "" -#: libraries/messages.inc.php:184 server_processlist.php:24 +#: libraries/messages.inc.php:180 server_processlist.php:24 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "لم يستطع phpMyAdmin إيقاف العملية %s. يبدو أنها أوقفت مسبقا." -#: libraries/messages.inc.php:187 +#: libraries/messages.inc.php:183 #, php-format msgid "Create an index on %s columns" msgstr "تصميم فهرسه على %s عمود" -#: libraries/messages.inc.php:188 tbl_indexes.php:160 +#: libraries/messages.inc.php:184 tbl_indexes.php:160 msgid "Create a new index" msgstr "تصميم فهرسه جديده" -#: libraries/messages.inc.php:191 pdf_pages.php:297 pmd_pdf.php:114 +#: libraries/messages.inc.php:187 pdf_pages.php:297 pmd_pdf.php:114 msgid "Create a page" msgstr "أنشئ صفحة جديدة" -#: libraries/messages.inc.php:192 +#: libraries/messages.inc.php:188 msgid "Creation of PDFs" msgstr "إنشاء ملفات PDF" -#: libraries/messages.inc.php:193 pmd_general.php:74 pmd_general.php:306 +#: libraries/messages.inc.php:189 pmd_general.php:74 pmd_general.php:306 msgid "Create relation" msgstr "" -#: libraries/messages.inc.php:194 pmd_general.php:71 +#: libraries/messages.inc.php:190 pmd_general.php:71 #: server_synchronize.php:429 server_synchronize.php:872 msgid "Create table" msgstr "أنشئ الجدول" -#: libraries/messages.inc.php:195 +#: libraries/messages.inc.php:191 msgctxt "$strCreateTableShort" msgid "Create table" msgstr "" -#: libraries/messages.inc.php:196 server_privileges.php:1994 +#: libraries/messages.inc.php:192 server_privileges.php:1994 msgid "Database for user" msgstr "" -#: libraries/messages.inc.php:197 server_privileges.php:1999 +#: libraries/messages.inc.php:193 server_privileges.php:1999 msgid "Create database with same name and grant all privileges" msgstr "" -#: libraries/messages.inc.php:198 +#: libraries/messages.inc.php:194 msgctxt "$strCreateUserDatabaseNone" msgid "None" msgstr "" -#: libraries/messages.inc.php:199 server_privileges.php:2003 +#: libraries/messages.inc.php:195 server_privileges.php:2003 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: libraries/messages.inc.php:200 server_privileges.php:2000 +#: libraries/messages.inc.php:196 server_privileges.php:2000 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: libraries/messages.inc.php:201 +#: libraries/messages.inc.php:197 msgid "Creation/Update/Check dates" msgstr "تواريخ الإنشاء/التحديث/التحقق" -#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:229 +#: libraries/messages.inc.php:199 libraries/mysql_charsets.lib.php:229 msgid "Croatian" msgstr "الكرواتية" -#: libraries/messages.inc.php:204 +#: libraries/messages.inc.php:200 msgid "CSV" msgstr "سي إس في" -#: libraries/messages.inc.php:205 libraries/server_synchronize.lib.php:1343 +#: libraries/messages.inc.php:201 libraries/server_synchronize.lib.php:1343 #: libraries/server_synchronize.lib.php:1369 msgid "Current server" msgstr "الخادم الحالي" -#: libraries/messages.inc.php:206 main.php:159 +#: libraries/messages.inc.php:202 main.php:159 msgid "Custom color" msgstr "" -#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:365 +#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:365 msgid "Cyrillic" msgstr "السيريلية" -#: libraries/messages.inc.php:208 libraries/mysql_charsets.lib.php:232 +#: libraries/messages.inc.php:204 libraries/mysql_charsets.lib.php:232 msgid "Czech" msgstr "التشيكية" -#: libraries/messages.inc.php:209 libraries/mysql_charsets.lib.php:383 +#: libraries/messages.inc.php:205 libraries/mysql_charsets.lib.php:383 msgid "Czech-Slovak" msgstr "" -#: libraries/messages.inc.php:211 libraries/mysql_charsets.lib.php:235 +#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:235 msgid "Danish" msgstr "الدنمركية" -#: libraries/messages.inc.php:214 +#: libraries/messages.inc.php:210 msgid "Database export options" msgstr "خيارات تصدير قاعدة بيانات" -#: libraries/messages.inc.php:217 server_synchronize.php:122 +#: libraries/messages.inc.php:213 server_synchronize.php:122 #: server_synchronize.php:125 tbl_create.php:82 tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "" -#: libraries/messages.inc.php:219 server_databases.php:63 +#: libraries/messages.inc.php:215 server_databases.php:63 #, php-format msgid "%s databases have been dropped successfully." msgstr "تم حذف قواعد البيانات %s بنجاح." -#: libraries/messages.inc.php:220 libraries/server_synchronize.lib.php:1341 +#: libraries/messages.inc.php:216 libraries/server_synchronize.lib.php:1341 #: server_synchronize.php:1110 msgid "Source database" msgstr "" -#: libraries/messages.inc.php:221 server_databases.php:88 +#: libraries/messages.inc.php:217 server_databases.php:88 msgid "Databases statistics" msgstr "إحصائيات قواعد البيانات" -#: libraries/messages.inc.php:222 server_databases.php:362 +#: libraries/messages.inc.php:218 server_databases.php:362 #: server_databases.php:363 msgid "Disable Statistics" msgstr "أوقف الإحصائيات" -#: libraries/messages.inc.php:223 server_databases.php:358 +#: libraries/messages.inc.php:219 server_databases.php:358 #: server_databases.php:359 msgid "Enable Statistics" msgstr "مكن الإحصائيات" -#: libraries/messages.inc.php:224 server_databases.php:366 +#: libraries/messages.inc.php:220 server_databases.php:366 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -3494,30 +3494,30 @@ msgstr "" "ملاحظة: تمكين إحصائيات قواعد البيانات هنا قد يسبب تدفق بيانات ثقيل بين خادم " "الويب وخادم MySQL." -#: libraries/messages.inc.php:225 libraries/server_synchronize.lib.php:1367 +#: libraries/messages.inc.php:221 libraries/server_synchronize.lib.php:1367 #: server_synchronize.php:1112 msgid "Target database" msgstr "" -#: libraries/messages.inc.php:228 server_synchronize.php:425 +#: libraries/messages.inc.php:224 server_synchronize.php:425 #: server_synchronize.php:868 msgid "Data Difference" msgstr "" -#: libraries/messages.inc.php:231 server_synchronize.php:272 +#: libraries/messages.inc.php:227 server_synchronize.php:272 msgid "Data Synchronization" msgstr "" -#: libraries/messages.inc.php:235 server_privileges.php:526 +#: libraries/messages.inc.php:231 server_privileges.php:526 #: server_privileges.php:1679 msgid "Database-specific privileges" msgstr "صلاحيات خاصة بقاعدة البيانات" -#: libraries/messages.inc.php:237 server_privileges.php:2136 +#: libraries/messages.inc.php:233 server_privileges.php:2136 msgid "database-specific" msgstr "خاص بقاعدة بيانات" -#: libraries/messages.inc.php:240 libraries/tbl_properties.inc.php:106 +#: libraries/messages.inc.php:236 libraries/tbl_properties.inc.php:106 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" @@ -3525,181 +3525,181 @@ msgstr "" "للقيم الافتراضية، الرجاء أدخل قيمة مفردة، دون علامات هروب أو تنصيص، باستخدام " "التنسيق: a" -#: libraries/messages.inc.php:241 tbl_operations.php:589 +#: libraries/messages.inc.php:237 tbl_operations.php:589 msgid "Defragment table" msgstr "" -#: libraries/messages.inc.php:242 +#: libraries/messages.inc.php:238 msgid "Use delayed inserts" msgstr "استخدم الإضافات المتأخرة" -#: libraries/messages.inc.php:245 server_privileges.php:1243 +#: libraries/messages.inc.php:241 server_privileges.php:1243 msgid "No users selected for deleting!" msgstr "" -#: libraries/messages.inc.php:246 pmd_general.php:372 +#: libraries/messages.inc.php:242 pmd_general.php:372 msgid "Delete relation" msgstr "" -#: libraries/messages.inc.php:248 server_privileges.php:1232 +#: libraries/messages.inc.php:244 server_privileges.php:1232 #, php-format msgid "Deleting %s" msgstr "قيد حذف %s" -#: libraries/messages.inc.php:249 libraries/sql_query_form.lib.php:388 +#: libraries/messages.inc.php:245 libraries/sql_query_form.lib.php:388 msgid "Delimiter" msgstr "" -#: libraries/messages.inc.php:250 pdf_pages.php:506 +#: libraries/messages.inc.php:246 pdf_pages.php:506 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" msgstr "" "تحتوي الصفحة الحالية مراجع لجداول لم تعد موجودة. هل تود حذف هذه المراجع؟" -#: libraries/messages.inc.php:254 pmd_help.php:29 +#: libraries/messages.inc.php:250 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." msgstr "" -#: libraries/messages.inc.php:256 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:252 libraries/mysql_charsets.lib.php:247 msgid "dictionary" msgstr "قاموس" -#: libraries/messages.inc.php:257 libraries/server_synchronize.lib.php:1348 +#: libraries/messages.inc.php:253 libraries/server_synchronize.lib.php:1348 msgid "Difference" msgstr "فرق" -#: libraries/messages.inc.php:258 pmd_general.php:87 +#: libraries/messages.inc.php:254 pmd_general.php:87 msgid "Direct links" msgstr "" -#: libraries/messages.inc.php:261 +#: libraries/messages.inc.php:257 msgid "Disable foreign key checks" msgstr "" -#: libraries/messages.inc.php:262 +#: libraries/messages.inc.php:258 msgid "Display Features" msgstr "إظهار المزايا" -#: libraries/messages.inc.php:263 tbl_select.php:301 +#: libraries/messages.inc.php:259 tbl_select.php:301 msgid "Display order:" msgstr "ترتيب العرض:" -#: libraries/messages.inc.php:265 tbl_select.php:132 +#: libraries/messages.inc.php:261 tbl_select.php:132 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "تجعل \"استعلام بواسطة المثال\" (wildcard: \"%\")" -#: libraries/messages.inc.php:266 +#: libraries/messages.inc.php:262 msgid "DocSQL" msgstr "" -#: libraries/messages.inc.php:268 +#: libraries/messages.inc.php:264 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/messages.inc.php:273 server_privileges.php:1579 +#: libraries/messages.inc.php:269 server_privileges.php:1579 #: server_privileges.php:1580 server_privileges.php:1581 msgid "Drop the databases that have the same names as the users." msgstr "احذف قواعد البيانات التي لها نفس أسماء المستخدمين." -#: libraries/messages.inc.php:278 tbl_printview.php:382 tbl_structure.php:743 +#: libraries/messages.inc.php:274 tbl_printview.php:382 tbl_structure.php:743 msgid "dynamic" msgstr "ديناميكي" -#: libraries/messages.inc.php:282 server_privileges.php:1324 +#: libraries/messages.inc.php:278 server_privileges.php:1324 #: server_privileges.php:1610 msgid "Edit Privileges" msgstr "تحرير الامتيازات" -#: libraries/messages.inc.php:283 tbl_printview.php:341 tbl_structure.php:688 +#: libraries/messages.inc.php:279 tbl_printview.php:341 tbl_structure.php:688 msgid "Effective" msgstr "فعال" -#: libraries/messages.inc.php:286 libraries/relation.lib.php:100 +#: libraries/messages.inc.php:282 libraries/relation.lib.php:100 msgid "Enabled" msgstr "مفعل" -#: libraries/messages.inc.php:287 +#: libraries/messages.inc.php:283 msgid "Enclose export in a transaction" msgstr "" -#: libraries/messages.inc.php:288 libraries/sqlparser.lib.php:177 +#: libraries/messages.inc.php:284 libraries/sqlparser.lib.php:177 msgid "END CUT" msgstr "انتهاء القص" -#: libraries/messages.inc.php:290 libraries/sqlparser.lib.php:183 +#: libraries/messages.inc.php:286 libraries/sqlparser.lib.php:183 msgid "END RAW" msgstr "انتهاء البيانات الأصلية" -#: libraries/messages.inc.php:293 libraries/server_links.inc.php:61 +#: libraries/messages.inc.php:289 libraries/server_links.inc.php:61 #: test/theme.php:113 msgid "Engines" msgstr "محركات" -#: libraries/messages.inc.php:295 libraries/mysql_charsets.lib.php:238 +#: libraries/messages.inc.php:291 libraries/mysql_charsets.lib.php:238 msgid "English" msgstr "الإنجليزية" -#: libraries/messages.inc.php:296 server_privileges.php:393 +#: libraries/messages.inc.php:292 server_privileges.php:393 #: server_privileges.php:535 server_privileges.php:1501 msgid " Note: MySQL privilege names are expressed in English " msgstr " ملاحظه: اسم الامتياز لـMySQL يظهر ويقرأ باللغة الإنجليزية فقط " -#: libraries/messages.inc.php:298 libraries/zip_extension.lib.php:49 +#: libraries/messages.inc.php:294 libraries/zip_extension.lib.php:49 #: libraries/zip_extension.lib.php:51 libraries/zip_extension.lib.php:66 msgid "Error in ZIP archive:" msgstr "" -#: libraries/messages.inc.php:303 libraries/mysql_charsets.lib.php:241 +#: libraries/messages.inc.php:299 libraries/mysql_charsets.lib.php:241 msgid "Esperanto" msgstr "إسبرانتو" -#: libraries/messages.inc.php:304 libraries/mysql_charsets.lib.php:244 +#: libraries/messages.inc.php:300 libraries/mysql_charsets.lib.php:244 msgid "Estonian" msgstr "الإستونية" -#: libraries/messages.inc.php:305 libraries/tbl_triggers.lib.php:29 +#: libraries/messages.inc.php:301 libraries/tbl_triggers.lib.php:29 msgid "Event" msgstr "حدث" -#: libraries/messages.inc.php:307 +#: libraries/messages.inc.php:303 msgid "Excel edition" msgstr "إصدارة إكسل" -#: libraries/messages.inc.php:311 pmd_pdf.php:85 +#: libraries/messages.inc.php:307 pmd_pdf.php:85 msgid "Export/Import to scale" msgstr "" -#: libraries/messages.inc.php:313 +#: libraries/messages.inc.php:309 msgid "Extended inserts" msgstr "إدخال مدد" -#: libraries/messages.inc.php:314 pdf_schema.php:1267 pdf_schema.php:1288 +#: libraries/messages.inc.php:310 pdf_schema.php:1267 pdf_schema.php:1288 #: tbl_printview.php:147 tbl_structure.php:183 tbl_tracking.php:278 msgid "Extra" msgstr "إضافي" -#: libraries/messages.inc.php:316 server_status.php:447 +#: libraries/messages.inc.php:312 server_status.php:447 msgid "Failed attempts" msgstr "محاولات أخفقت" -#: libraries/messages.inc.php:318 tbl_structure.php:375 +#: libraries/messages.inc.php:314 tbl_structure.php:375 #, php-format msgid "Field %s has been dropped" msgstr "حقل محذوف %s" -#: libraries/messages.inc.php:322 libraries/sql_query_form.lib.php:317 +#: libraries/messages.inc.php:318 libraries/sql_query_form.lib.php:317 msgid "Fields" msgstr " عدد الحقول" -#: libraries/messages.inc.php:332 server_binlog.php:136 +#: libraries/messages.inc.php:328 server_binlog.php:136 msgid "Files" msgstr "الملفات" -#: libraries/messages.inc.php:334 server_privileges.php:1597 +#: libraries/messages.inc.php:330 server_privileges.php:1597 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -3712,217 +3712,217 @@ msgstr "" "ما تم التعديل عليها يدويا. في هذه الحالة، عليك %s بإعادة قراءة الصلاحيات %s " "قبل أن تكمل." -#: libraries/messages.inc.php:335 server_status.php:289 +#: libraries/messages.inc.php:331 server_status.php:289 msgid "Flush query cache" msgstr "" -#: libraries/messages.inc.php:336 +#: libraries/messages.inc.php:332 msgid "Flush the table (\"FLUSH\")" msgstr "إعادة تحميل الجدول (\"FLUSH\")" -#: libraries/messages.inc.php:337 server_status.php:271 +#: libraries/messages.inc.php:333 server_status.php:271 msgid "Flush (close) all tables" msgstr "" -#: libraries/messages.inc.php:339 tbl_relation.php:279 +#: libraries/messages.inc.php:335 tbl_relation.php:279 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" -#: libraries/messages.inc.php:341 setup/lib/messages.inc.php:88 +#: libraries/messages.inc.php:337 setup/lib/messages.inc.php:88 #: tbl_printview.php:376 tbl_structure.php:738 msgid "Format" msgstr "صيغة" -#: libraries/messages.inc.php:344 server_replication.php:325 +#: libraries/messages.inc.php:340 server_replication.php:325 msgid "Full start" msgstr "" -#: libraries/messages.inc.php:345 server_replication.php:325 +#: libraries/messages.inc.php:341 server_replication.php:325 msgid "Full stop" msgstr "" -#: libraries/messages.inc.php:347 tbl_change.php:282 tbl_change.php:320 +#: libraries/messages.inc.php:343 tbl_change.php:282 tbl_change.php:320 msgid "Function" msgstr "دالة" -#: libraries/messages.inc.php:355 libraries/mysql_charsets.lib.php:377 +#: libraries/messages.inc.php:351 libraries/mysql_charsets.lib.php:377 msgid "Georgian" msgstr "الجورجية" -#: libraries/messages.inc.php:356 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:352 libraries/mysql_charsets.lib.php:247 #: libraries/mysql_charsets.lib.php:250 msgid "German" msgstr "الألمانية" -#: libraries/messages.inc.php:357 themes.php:42 +#: libraries/messages.inc.php:353 themes.php:42 msgid "Get more themes!" msgstr "" -#: libraries/messages.inc.php:358 server_privileges.php:2134 +#: libraries/messages.inc.php:354 server_privileges.php:2134 msgid "global" msgstr "عام" -#: libraries/messages.inc.php:359 server_privileges.php:524 +#: libraries/messages.inc.php:355 server_privileges.php:524 #: server_privileges.php:1500 msgid "Global privileges" msgstr "صلاحيات عامة" -#: libraries/messages.inc.php:360 server_variables.php:55 +#: libraries/messages.inc.php:356 server_variables.php:55 #: server_variables.php:89 msgid "Global value" msgstr "قيمة عامة" -#: libraries/messages.inc.php:365 server_privileges.php:1502 +#: libraries/messages.inc.php:361 server_privileges.php:1502 #: server_privileges.php:1684 server_privileges.php:2033 msgid "Grant" msgstr "منح" -#: libraries/messages.inc.php:366 libraries/mysql_charsets.lib.php:380 +#: libraries/messages.inc.php:362 libraries/mysql_charsets.lib.php:380 msgid "Greek" msgstr "اليونانية" -#: libraries/messages.inc.php:367 +#: libraries/messages.inc.php:363 msgid "\"gzipped\"" msgstr "\"gzipped\"" -#: libraries/messages.inc.php:369 server_status.php:250 +#: libraries/messages.inc.php:365 server_status.php:250 msgid "Handler" msgstr "" -#: libraries/messages.inc.php:370 server_synchronize.php:464 +#: libraries/messages.inc.php:366 server_synchronize.php:464 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: libraries/messages.inc.php:372 libraries/mysql_charsets.lib.php:374 +#: libraries/messages.inc.php:368 libraries/mysql_charsets.lib.php:374 msgid "Hebrew" msgstr "العبرية" -#: libraries/messages.inc.php:373 pmd_general.php:83 +#: libraries/messages.inc.php:369 pmd_general.php:83 msgid "Help" msgstr "مساعدة" -#: libraries/messages.inc.php:374 +#: libraries/messages.inc.php:370 msgid "Use hexadecimal for BLOB" msgstr "" -#: libraries/messages.inc.php:376 pmd_general.php:120 +#: libraries/messages.inc.php:372 pmd_general.php:120 msgid "Hide/Show all" msgstr "" -#: libraries/messages.inc.php:377 pmd_general.php:124 +#: libraries/messages.inc.php:373 pmd_general.php:124 msgid "Hide/Show Tables with no relation" msgstr "" -#: libraries/messages.inc.php:378 libraries/navigation_header.inc.php:54 +#: libraries/messages.inc.php:374 libraries/navigation_header.inc.php:54 #: libraries/navigation_header.inc.php:57 #: libraries/navigation_header.inc.php:58 msgid "Home" msgstr "الصفحة الرئيسية" -#: libraries/messages.inc.php:379 main.php:233 +#: libraries/messages.inc.php:375 main.php:233 msgid "Official Homepage" msgstr "الصفحة الرئيسية الرسمية لـ phpMyAdmin" -#: libraries/messages.inc.php:382 libraries/replication_gui.lib.php:327 +#: libraries/messages.inc.php:378 libraries/replication_gui.lib.php:327 #: server_privileges.php:753 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/messages.inc.php:383 +#: libraries/messages.inc.php:379 msgid "Microsoft Word 2000" msgstr "" -#: libraries/messages.inc.php:384 libraries/mysql_charsets.lib.php:253 +#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:253 msgid "Hungarian" msgstr "الهنجارية" -#: libraries/messages.inc.php:386 libraries/mysql_charsets.lib.php:256 +#: libraries/messages.inc.php:382 libraries/mysql_charsets.lib.php:256 msgid "Icelandic" msgstr "الأيسلندية" -#: libraries/messages.inc.php:387 server_processlist.php:53 +#: libraries/messages.inc.php:383 server_processlist.php:53 msgid "ID" msgstr "رقم" -#: libraries/messages.inc.php:388 libraries/mult_submits.inc.php:108 +#: libraries/messages.inc.php:384 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:479 msgid "Fulltext" msgstr "النص كاملا" -#: libraries/messages.inc.php:389 +#: libraries/messages.inc.php:385 msgid "Ignore duplicate rows" msgstr "" -#: libraries/messages.inc.php:390 tbl_change.php:302 tbl_indexes.php:200 +#: libraries/messages.inc.php:386 tbl_change.php:302 tbl_indexes.php:200 #: tbl_indexes.php:225 msgid "Ignore" msgstr "تجاهل" -#: libraries/messages.inc.php:391 +#: libraries/messages.inc.php:387 msgid "Use ignore inserts" msgstr "" -#: libraries/messages.inc.php:392 +#: libraries/messages.inc.php:388 msgid "Column names in first row" msgstr "" -#: libraries/messages.inc.php:393 +#: libraries/messages.inc.php:389 msgid "Do not import empty rows" msgstr "" -#: libraries/messages.inc.php:394 pmd_general.php:104 +#: libraries/messages.inc.php:390 pmd_general.php:104 msgid "Import/Export coordinates for PDF schema" msgstr "" -#: libraries/messages.inc.php:395 querywindow.php:104 +#: libraries/messages.inc.php:391 querywindow.php:104 msgid "Import files" msgstr "استورد الملفات" -#: libraries/messages.inc.php:403 +#: libraries/messages.inc.php:399 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/messages.inc.php:404 libraries/messages.inc.php:584 +#: libraries/messages.inc.php:400 libraries/messages.inc.php:580 msgid "Open Document Spreadsheet" msgstr "" -#: libraries/messages.inc.php:405 +#: libraries/messages.inc.php:401 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/messages.inc.php:409 +#: libraries/messages.inc.php:405 msgid "Excel 97-2003 XLS Workbook" msgstr "" -#: libraries/messages.inc.php:410 +#: libraries/messages.inc.php:406 msgid "Excel 2007 XLSX Workbook" msgstr "" -#: libraries/messages.inc.php:414 libraries/mult_submits.inc.php:98 +#: libraries/messages.inc.php:410 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:476 tbl_structure.php:674 msgid "Index" msgstr "فهرست" -#: libraries/messages.inc.php:415 tbl_indexes.php:168 +#: libraries/messages.inc.php:411 tbl_indexes.php:168 msgid "Index name:" msgstr "اسم الفهرس :" -#: libraries/messages.inc.php:416 tbl_indexes.php:174 +#: libraries/messages.inc.php:412 tbl_indexes.php:174 msgid "Index type:" msgstr "نوع الفهرس :" -#: libraries/messages.inc.php:417 sql.php:639 +#: libraries/messages.inc.php:413 sql.php:639 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: libraries/messages.inc.php:427 main.php:266 +#: libraries/messages.inc.php:423 main.php:266 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -3934,194 +3934,194 @@ msgstr "" "الافتراضية معرض لخطر الاقتحام، وعليك أن تقوم بإصلاح ثغرة الأمان هذه في أقرب " "وقت ممكن." -#: libraries/messages.inc.php:428 tbl_change.php:1130 +#: libraries/messages.inc.php:424 tbl_change.php:1130 msgid "Insert as new row" msgstr "إدخال كتسجيل جديد" -#: libraries/messages.inc.php:429 sql.php:496 tbl_replace.php:386 +#: libraries/messages.inc.php:425 sql.php:496 tbl_replace.php:386 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: libraries/messages.inc.php:430 tbl_change.php:1131 +#: libraries/messages.inc.php:426 tbl_change.php:1131 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/messages.inc.php:432 main.php:139 +#: libraries/messages.inc.php:428 main.php:139 msgid "Interface" msgstr "" -#: libraries/messages.inc.php:433 tbl_relation.php:407 +#: libraries/messages.inc.php:429 tbl_relation.php:407 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: libraries/messages.inc.php:435 pdf_pages.php:303 +#: libraries/messages.inc.php:431 pdf_pages.php:303 msgid "Internal relations" msgstr "العلاقات الداخلية" -#: libraries/messages.inc.php:438 tbl_indexes.php:256 tbl_structure.php:590 +#: libraries/messages.inc.php:434 tbl_indexes.php:256 tbl_structure.php:590 #: tbl_structure.php:601 msgid "Column count has to be larger than zero." msgstr "" -#: libraries/messages.inc.php:444 libraries/tbl_properties.inc.php:784 +#: libraries/messages.inc.php:440 libraries/tbl_properties.inc.php:784 #: tbl_structure.php:537 msgid "You have to add at least one field." msgstr "" -#: libraries/messages.inc.php:449 +#: libraries/messages.inc.php:445 #, php-format msgid "Invalid server index: \"%s\"" msgstr "" -#: libraries/messages.inc.php:452 libraries/mysql_charsets.lib.php:259 +#: libraries/messages.inc.php:448 libraries/mysql_charsets.lib.php:259 #: libraries/mysql_charsets.lib.php:349 msgid "Japanese" msgstr "اليابانية" -#: libraries/messages.inc.php:453 main.php:331 +#: libraries/messages.inc.php:449 main.php:331 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: libraries/messages.inc.php:454 server_status.php:257 +#: libraries/messages.inc.php:450 server_status.php:257 msgid "Joins" msgstr "" -#: libraries/messages.inc.php:457 server_privileges.php:763 +#: libraries/messages.inc.php:453 server_privileges.php:763 msgid "Do not change the password" msgstr "لاتغير كلمة السر" -#: libraries/messages.inc.php:458 server_status.php:256 +#: libraries/messages.inc.php:454 server_status.php:256 msgid "Key cache" msgstr "" -#: libraries/messages.inc.php:462 libraries/mysql_charsets.lib.php:268 +#: libraries/messages.inc.php:458 libraries/mysql_charsets.lib.php:268 #: libraries/mysql_charsets.lib.php:371 msgid "Korean" msgstr "الكورية" -#: libraries/messages.inc.php:466 libraries/select_lang.lib.php:480 +#: libraries/messages.inc.php:462 libraries/select_lang.lib.php:480 #: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492 #, php-format msgid "Unknown language: %1$s." msgstr "" -#: libraries/messages.inc.php:468 +#: libraries/messages.inc.php:464 msgid "Table caption" msgstr "عنوان الجدول" -#: libraries/messages.inc.php:469 +#: libraries/messages.inc.php:465 msgid "Content of table __TABLE__" msgstr "محتويات الجدول __TABLE__" -#: libraries/messages.inc.php:470 +#: libraries/messages.inc.php:466 msgid "Continued table caption" msgstr "عنوان جدول تابع" -#: libraries/messages.inc.php:471 +#: libraries/messages.inc.php:467 msgid "(continued)" msgstr "(تابع)" -#: libraries/messages.inc.php:472 +#: libraries/messages.inc.php:468 msgid "Include table caption" msgstr "أضف عنوانا للجدول" -#: libraries/messages.inc.php:473 +#: libraries/messages.inc.php:469 msgid "Label key" msgstr "Label key" -#: libraries/messages.inc.php:474 +#: libraries/messages.inc.php:470 msgid "LaTeX" msgstr "لاتكس" -#: libraries/messages.inc.php:475 +#: libraries/messages.inc.php:471 msgid "Structure of table __TABLE__" msgstr "بنية الجدول __TABLE__" -#: libraries/messages.inc.php:476 libraries/mysql_charsets.lib.php:262 +#: libraries/messages.inc.php:472 libraries/mysql_charsets.lib.php:262 msgid "Latvian" msgstr "اللاتفية" -#: libraries/messages.inc.php:477 +#: libraries/messages.inc.php:473 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/messages.inc.php:478 +#: libraries/messages.inc.php:474 msgid "Use LOCAL keyword" msgstr "" -#: libraries/messages.inc.php:479 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:475 libraries/tbl_properties.inc.php:105 msgid "Length/Values" msgstr "الطول/القيمة" -#: libraries/messages.inc.php:480 tbl_select.php:295 +#: libraries/messages.inc.php:476 tbl_select.php:295 msgid "Number of rows per page" msgstr "رقم السجلات لكل صفحة" -#: libraries/messages.inc.php:484 libraries/mysql_charsets.lib.php:265 +#: libraries/messages.inc.php:480 libraries/mysql_charsets.lib.php:265 msgid "Lithuanian" msgstr "الليتوانية" -#: libraries/messages.inc.php:485 libraries/replication_gui.lib.php:302 +#: libraries/messages.inc.php:481 libraries/replication_gui.lib.php:302 #: server_privileges.php:729 msgid "Local" msgstr "محلي" -#: libraries/messages.inc.php:487 server_privileges.php:669 +#: libraries/messages.inc.php:483 server_privileges.php:669 msgid "Login Information" msgstr "بيانات الدخول" -#: libraries/messages.inc.php:490 libraries/navigation_header.inc.php:67 +#: libraries/messages.inc.php:486 libraries/navigation_header.inc.php:67 #: libraries/navigation_header.inc.php:70 #: libraries/navigation_header.inc.php:71 main.php:99 msgid "Log out" msgstr "تسجيل خروج" -#: libraries/messages.inc.php:497 server_status.php:440 +#: libraries/messages.inc.php:493 server_status.php:440 msgid "max. concurrent connections" msgstr "" -#: libraries/messages.inc.php:498 +#: libraries/messages.inc.php:494 msgid "Maximal length of created query" msgstr "" -#: libraries/messages.inc.php:500 main.php:282 +#: libraries/messages.inc.php:496 main.php:282 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " "split strings correctly and it may result in unexpected results." msgstr "" -#: libraries/messages.inc.php:501 main.php:274 +#: libraries/messages.inc.php:497 main.php:274 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " "corrupted!" msgstr "" -#: libraries/messages.inc.php:502 +#: libraries/messages.inc.php:498 msgid "MediaWiki Table" msgstr "جدول ميدياويكي" -#: libraries/messages.inc.php:503 transformation_overview.php:25 +#: libraries/messages.inc.php:499 transformation_overview.php:25 msgid "Available MIME types" msgstr "أنواع MIME المتوفرة" -#: libraries/messages.inc.php:504 transformation_overview.php:43 +#: libraries/messages.inc.php:500 transformation_overview.php:43 msgid "Available transformations" msgstr "التحويلات المتوفرة" -#: libraries/messages.inc.php:505 +#: libraries/messages.inc.php:501 msgctxt "$strMIME_description" msgid "Description" msgstr "الوصف" -#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:580 +#: libraries/messages.inc.php:503 libraries/tbl_properties.inc.php:580 #: transformation_overview.php:60 #, php-format msgid "" @@ -4129,7 +4129,7 @@ msgid "" "author what %s does." msgstr "ليس هناك وصف متوفر لهذا التحويل.
رجاء اسأل الناشر، ما يفعله %s." -#: libraries/messages.inc.php:509 libraries/tbl_properties.inc.php:137 +#: libraries/messages.inc.php:505 libraries/tbl_properties.inc.php:137 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -4138,7 +4138,7 @@ msgstr "" "لعرض قائمة بخيارات التحويل المتوفرة وأنواع تحويلات MIME الخاصة بها، اضغط على " "%sخيارات التحويل%s" -#: libraries/messages.inc.php:510 libraries/tbl_properties.inc.php:146 +#: libraries/messages.inc.php:506 libraries/tbl_properties.inc.php:146 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -4149,399 +4149,399 @@ msgstr "" ">إذا احتجت أن تضع شرطة مائلة (\"\\\") أو علامة تنصيص (\"'\") بين هذه القيم، " "اسبقها بشرطة مائلة )على سبيل المثال '\\\\xyz' أو 'a\\'b'(." -#: libraries/messages.inc.php:511 libraries/tbl_properties.inc.php:145 +#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:145 msgid "Transformation options" msgstr "خيارات التحويل" -#: libraries/messages.inc.php:513 transformation_overview.php:38 +#: libraries/messages.inc.php:509 transformation_overview.php:38 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "أنواع MIME التي تظهر بحروف مائلة ليس لها وظيفة تحويل منفصلة" -#: libraries/messages.inc.php:515 tbl_indexes.php:162 +#: libraries/messages.inc.php:511 tbl_indexes.php:162 msgid "Modify an index" msgstr "تعديل الفهرسة" -#: libraries/messages.inc.php:517 pmd_general.php:108 +#: libraries/messages.inc.php:513 pmd_general.php:108 msgid "Move Menu" msgstr "" -#: libraries/messages.inc.php:518 tbl_operations.php:276 +#: libraries/messages.inc.php:514 tbl_operations.php:276 msgid "Move table to (database.table):" msgstr "نقل جدول إلى (قاعدة بيانات.جدول):" -#: libraries/messages.inc.php:519 tbl_move_copy.php:56 +#: libraries/messages.inc.php:515 tbl_move_copy.php:56 #, php-format msgid "Table %s has been moved to %s." msgstr "%s جدول تم نقله إلى %s." -#: libraries/messages.inc.php:520 tbl_move_copy.php:46 +#: libraries/messages.inc.php:516 tbl_move_copy.php:46 msgid "Can't move table to same one!" msgstr "لايمكن نقل الجدول إلى نفسه!" -#: libraries/messages.inc.php:521 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:517 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 #: libraries/mysql_charsets.lib.php:332 libraries/mysql_charsets.lib.php:354 #: libraries/mysql_charsets.lib.php:365 msgid "multilingual" msgstr "متعدد اللغات" -#: libraries/messages.inc.php:534 main.php:193 +#: libraries/messages.inc.php:530 main.php:193 msgid "MySQL charset" msgstr "شيفرة أحرف MySQL" -#: libraries/messages.inc.php:535 main.php:211 +#: libraries/messages.inc.php:531 main.php:211 msgid "MySQL client version" msgstr "" -#: libraries/messages.inc.php:536 main.php:125 +#: libraries/messages.inc.php:532 main.php:125 msgid "MySQL connection collation" msgstr "" -#: libraries/messages.inc.php:537 main.php:346 +#: libraries/messages.inc.php:533 main.php:346 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: libraries/messages.inc.php:539 server_status.php:294 +#: libraries/messages.inc.php:535 server_status.php:294 msgid "Show processes" msgstr "عرض العمليات" -#: libraries/messages.inc.php:545 navigation.php:210 server_databases.php:371 +#: libraries/messages.inc.php:541 navigation.php:210 server_databases.php:371 #: server_synchronize.php:1191 msgid "No databases" msgstr "لايوجد قواعد بيانات" -#: libraries/messages.inc.php:546 server_databases.php:52 +#: libraries/messages.inc.php:542 server_databases.php:52 msgid "No databases selected." msgstr "لا قواعد بيانات محددة" -#: libraries/messages.inc.php:548 libraries/relation.lib.php:1173 +#: libraries/messages.inc.php:544 libraries/relation.lib.php:1173 msgid "no description" msgstr "بدون وصف" -#: libraries/messages.inc.php:552 libraries/zip_extension.lib.php:26 +#: libraries/messages.inc.php:548 libraries/zip_extension.lib.php:26 msgid "No files found inside ZIP archive!" msgstr "" -#: libraries/messages.inc.php:555 tbl_indexes.php:91 +#: libraries/messages.inc.php:551 tbl_indexes.php:91 msgid "No index parts defined!" msgstr "أجزاء الفهرسة غير معرفة!" -#: libraries/messages.inc.php:556 libraries/mult_submits.inc.php:435 +#: libraries/messages.inc.php:552 libraries/mult_submits.inc.php:435 #: tbl_replace.php:331 msgid "No change" msgstr "لا تغييرات" -#: libraries/messages.inc.php:557 +#: libraries/messages.inc.php:553 msgctxt "$strNoneDefault" msgid "None" msgstr "" -#: libraries/messages.inc.php:560 libraries/plugin_interface.lib.php:312 +#: libraries/messages.inc.php:556 libraries/plugin_interface.lib.php:312 msgid "This format has no options" msgstr "هذا التنسيق ليس له أي خيارات" -#: libraries/messages.inc.php:565 user_password.php:54 +#: libraries/messages.inc.php:561 user_password.php:54 msgid "You don't have sufficient privileges to be here right now!" msgstr "ليس لديك الحقوق الكافية بأن تكون هنا الآن!" -#: libraries/messages.inc.php:566 tbl_row_action.php:29 +#: libraries/messages.inc.php:562 tbl_row_action.php:29 msgid "No rows selected" msgstr "" -#: libraries/messages.inc.php:569 themes.php:32 +#: libraries/messages.inc.php:565 themes.php:32 #, php-format msgid "" "No themes support; please check your configuration and/or your themes in " "directory %s." msgstr "" -#: libraries/messages.inc.php:571 libraries/relation.lib.php:95 +#: libraries/messages.inc.php:567 libraries/relation.lib.php:95 msgid "not OK" msgstr "ليس صالحا" -#: libraries/messages.inc.php:572 server_synchronize.php:400 +#: libraries/messages.inc.php:568 server_synchronize.php:400 #: server_synchronize.php:839 msgid "not present" msgstr "" -#: libraries/messages.inc.php:573 pdf_pages.php:36 pdf_pages.php:42 +#: libraries/messages.inc.php:569 pdf_pages.php:36 pdf_pages.php:42 #: pdf_pages.php:48 pdf_pages.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "الجدول %s غير موجود أو محدد في %s" -#: libraries/messages.inc.php:574 server_privileges.php:804 +#: libraries/messages.inc.php:570 server_privileges.php:804 #: server_privileges.php:2166 msgid "No user(s) found." msgstr "المستخدم(ون) لم يتم إيجادهم." -#: libraries/messages.inc.php:578 pmd_general.php:164 +#: libraries/messages.inc.php:574 pmd_general.php:164 msgid "Number of tables" msgstr "عدد الجداول" -#: libraries/messages.inc.php:581 server_databases.php:117 +#: libraries/messages.inc.php:577 server_databases.php:117 #: server_status.php:260 setup/lib/messages.inc.php:117 msgid "Tables" msgstr "جداول" -#: libraries/messages.inc.php:583 libraries/relation.lib.php:99 +#: libraries/messages.inc.php:579 libraries/relation.lib.php:99 #: pmd_general.php:340 msgid "OK" msgstr "موافق" -#: libraries/messages.inc.php:585 +#: libraries/messages.inc.php:581 msgid "Open Document Text" msgstr "" -#: libraries/messages.inc.php:588 tbl_select.php:138 +#: libraries/messages.inc.php:584 tbl_select.php:138 msgid "Operator" msgstr "" -#: libraries/messages.inc.php:589 tbl_operations.php:662 +#: libraries/messages.inc.php:585 tbl_operations.php:662 msgid "Optimize" msgstr "" -#: libraries/messages.inc.php:602 libraries/tbl_properties.inc.php:755 +#: libraries/messages.inc.php:598 libraries/tbl_properties.inc.php:755 msgid "PARTITION definition" msgstr "" -#: libraries/messages.inc.php:603 tbl_structure.php:757 +#: libraries/messages.inc.php:599 tbl_structure.php:757 msgid "partitioned" msgstr "" -#: libraries/messages.inc.php:604 tbl_operations.php:649 +#: libraries/messages.inc.php:600 tbl_operations.php:649 msgid "Partition maintenance" msgstr "" -#: libraries/messages.inc.php:605 tbl_operations.php:657 +#: libraries/messages.inc.php:601 tbl_operations.php:657 #, php-format msgid "Partition %s" msgstr "" -#: libraries/messages.inc.php:606 server_privileges.php:1212 +#: libraries/messages.inc.php:602 server_privileges.php:1212 #, php-format msgid "The password for %s was changed successfully." msgstr "تم تغيير كلمة المرور لـ %s بنجاح." -#: libraries/messages.inc.php:635 +#: libraries/messages.inc.php:631 #, php-format msgid "Schema of the \"%s\" database - Page %s" msgstr "بناء قاعدة البيانات \"%s\" - الصفحة %s" -#: libraries/messages.inc.php:636 +#: libraries/messages.inc.php:632 #, php-format msgid "The \"%s\" table doesn't exist!" msgstr "الجدول \"%s\" غير موجود!" -#: libraries/messages.inc.php:637 pdf_schema.php:1013 +#: libraries/messages.inc.php:633 pdf_schema.php:1013 msgid "No tables" msgstr "لا يوجد جداول" -#: libraries/messages.inc.php:638 pmd_pdf.php:63 +#: libraries/messages.inc.php:634 pmd_pdf.php:63 msgid "Page has been created" msgstr "" -#: libraries/messages.inc.php:639 pmd_pdf.php:65 +#: libraries/messages.inc.php:635 pmd_pdf.php:65 msgid "Page creation failed" msgstr "" -#: libraries/messages.inc.php:640 +#: libraries/messages.inc.php:636 msgid "PDF" msgstr "بي دي إف" -#: libraries/messages.inc.php:641 +#: libraries/messages.inc.php:637 msgid "(Generates a report containing the data of a single table)" msgstr "" -#: libraries/messages.inc.php:642 +#: libraries/messages.inc.php:638 msgid "Report title" msgstr "" -#: libraries/messages.inc.php:643 server_status.php:389 server_status.php:434 +#: libraries/messages.inc.php:639 server_status.php:389 server_status.php:434 #: server_status.php:497 server_status.php:555 msgid "per hour" msgstr "لكل ساعة" -#: libraries/messages.inc.php:644 server_status.php:498 +#: libraries/messages.inc.php:640 server_status.php:498 msgid "per minute" msgstr "لكل دقيقة" -#: libraries/messages.inc.php:645 server_status.php:499 +#: libraries/messages.inc.php:641 server_status.php:499 msgid "per second" msgstr "لكل ثانية" -#: libraries/messages.inc.php:646 libraries/mysql_charsets.lib.php:271 +#: libraries/messages.inc.php:642 libraries/mysql_charsets.lib.php:271 msgid "Persian" msgstr "فارسية" -#: libraries/messages.inc.php:647 libraries/mysql_charsets.lib.php:250 +#: libraries/messages.inc.php:643 libraries/mysql_charsets.lib.php:250 msgid "phone book" msgstr "دفتر الهاتف" -#: libraries/messages.inc.php:648 +#: libraries/messages.inc.php:644 msgid "PHP array" msgstr "" -#: libraries/messages.inc.php:650 main.php:213 +#: libraries/messages.inc.php:646 main.php:213 msgid "PHP extension" msgstr "" -#: libraries/messages.inc.php:654 libraries/relation.lib.php:163 +#: libraries/messages.inc.php:650 libraries/relation.lib.php:163 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/messages.inc.php:655 libraries/relation.lib.php:159 +#: libraries/messages.inc.php:651 libraries/relation.lib.php:159 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/messages.inc.php:656 libraries/relation.lib.php:161 +#: libraries/messages.inc.php:652 libraries/relation.lib.php:161 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" -#: libraries/messages.inc.php:657 libraries/relation.lib.php:162 +#: libraries/messages.inc.php:653 libraries/relation.lib.php:162 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/messages.inc.php:658 libraries/relation.lib.php:164 +#: libraries/messages.inc.php:654 libraries/relation.lib.php:164 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/messages.inc.php:661 libraries/mysql_charsets.lib.php:274 +#: libraries/messages.inc.php:657 libraries/mysql_charsets.lib.php:274 msgid "Polish" msgstr "البولندية" -#: libraries/messages.inc.php:662 libraries/replication_gui.lib.php:67 +#: libraries/messages.inc.php:658 libraries/replication_gui.lib.php:67 #: server_synchronize.php:1163 msgid "Port" msgstr "" -#: libraries/messages.inc.php:667 tbl_indexes.php:67 +#: libraries/messages.inc.php:663 tbl_indexes.php:67 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "اسم المفتاح الأساسي يجب أن يكون أساسيا... PRIMARY!" -#: libraries/messages.inc.php:668 tbl_indexes.php:184 +#: libraries/messages.inc.php:664 tbl_indexes.php:184 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" "(\"الأساسي\" يجب يجب أن يكون الاسم وأيضاً فقط المفتاح الأساسي!)" -#: libraries/messages.inc.php:669 libraries/mult_submits.inc.php:76 +#: libraries/messages.inc.php:665 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:474 msgid "Primary" msgstr "أساسي" -#: libraries/messages.inc.php:673 server_privileges.php:227 +#: libraries/messages.inc.php:669 server_privileges.php:227 msgid "Includes all privileges except GRANT." msgstr "يتضمن كل الصلاحيات عدا GRANT." -#: libraries/messages.inc.php:674 server_privileges.php:153 +#: libraries/messages.inc.php:670 server_privileges.php:153 #: server_privileges.php:476 msgid "Allows altering the structure of existing tables." msgstr "يسمح بتعديل بناء الجداول الموجودة مسبقا." -#: libraries/messages.inc.php:675 server_privileges.php:169 +#: libraries/messages.inc.php:671 server_privileges.php:169 #: server_privileges.php:482 msgid "Allows altering and dropping stored routines." msgstr "" -#: libraries/messages.inc.php:676 server_privileges.php:145 +#: libraries/messages.inc.php:672 server_privileges.php:145 #: server_privileges.php:475 msgid "Allows creating new databases and tables." msgstr "يسمح بإنشاء قواعد بيانات وجداول جديدة." -#: libraries/messages.inc.php:677 server_privileges.php:168 +#: libraries/messages.inc.php:673 server_privileges.php:168 #: server_privileges.php:481 msgid "Allows creating stored routines." msgstr "" -#: libraries/messages.inc.php:678 server_privileges.php:475 +#: libraries/messages.inc.php:674 server_privileges.php:475 msgid "Allows creating new tables." msgstr "يسمح بإنشاء جداول جديدة." -#: libraries/messages.inc.php:679 server_privileges.php:156 +#: libraries/messages.inc.php:675 server_privileges.php:156 #: server_privileges.php:479 msgid "Allows creating temporary tables." msgstr "يسمح بإنشاء جداول مؤقتة." -#: libraries/messages.inc.php:680 server_privileges.php:170 +#: libraries/messages.inc.php:676 server_privileges.php:170 #: server_privileges.php:515 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: libraries/messages.inc.php:681 server_privileges.php:160 +#: libraries/messages.inc.php:677 server_privileges.php:160 #: server_privileges.php:164 server_privileges.php:487 #: server_privileges.php:491 msgid "Allows creating new views." msgstr "" -#: libraries/messages.inc.php:682 server_privileges.php:144 +#: libraries/messages.inc.php:678 server_privileges.php:144 #: server_privileges.php:467 msgid "Allows deleting data." msgstr "يسمح بحذف البيانات." -#: libraries/messages.inc.php:683 server_privileges.php:146 +#: libraries/messages.inc.php:679 server_privileges.php:146 #: server_privileges.php:478 msgid "Allows dropping databases and tables." msgstr "يسمح بحذف قواعد البيانات." -#: libraries/messages.inc.php:684 server_privileges.php:478 +#: libraries/messages.inc.php:680 server_privileges.php:478 msgid "Allows dropping tables." msgstr "يسمح بحذف الجداول." -#: libraries/messages.inc.php:685 server_privileges.php:161 +#: libraries/messages.inc.php:681 server_privileges.php:161 #: server_privileges.php:495 msgid "Allows to set up events for the event scheduler" msgstr "" -#: libraries/messages.inc.php:686 server_privileges.php:171 +#: libraries/messages.inc.php:682 server_privileges.php:171 #: server_privileges.php:483 msgid "Allows executing stored routines." msgstr "" -#: libraries/messages.inc.php:687 server_privileges.php:150 +#: libraries/messages.inc.php:683 server_privileges.php:150 #: server_privileges.php:470 msgid "Allows importing data from and exporting data into files." msgstr "يسمح باستيراد وتصدير البيانات من وإلى الملفّات." -#: libraries/messages.inc.php:688 server_privileges.php:501 +#: libraries/messages.inc.php:684 server_privileges.php:501 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "يسمح بإضافة المستخدمين والصلاحيات دون إعادة قراءة جداول الصلاحيات." -#: libraries/messages.inc.php:689 server_privileges.php:152 +#: libraries/messages.inc.php:685 server_privileges.php:152 #: server_privileges.php:477 msgid "Allows creating and dropping indexes." msgstr "يسمح بإنشاء وحذف الفهارس." -#: libraries/messages.inc.php:690 server_privileges.php:142 +#: libraries/messages.inc.php:686 server_privileges.php:142 #: server_privileges.php:403 server_privileges.php:465 msgid "Allows inserting and replacing data." msgstr "يسمح بإضافة واستبدال البيانات." -#: libraries/messages.inc.php:691 server_privileges.php:157 +#: libraries/messages.inc.php:687 server_privileges.php:157 #: server_privileges.php:510 msgid "Allows locking tables for the current thread." msgstr "يسمح بقفل الجداول للعملية الحالية." -#: libraries/messages.inc.php:692 server_privileges.php:607 +#: libraries/messages.inc.php:688 server_privileges.php:607 #: server_privileges.php:609 msgid "Limits the number of new connections the user may open per hour." msgstr "يحد من عدد الاتصالات الجديدة التي يمكن للمستخدم فتحها بكل ساعة." -#: libraries/messages.inc.php:693 server_privileges.php:595 +#: libraries/messages.inc.php:689 server_privileges.php:595 #: server_privileges.php:597 msgid "Limits the number of queries the user may send to the server per hour." msgstr "يحد عدد الاستعلامات التي يستطيع المستخدم إرسالها إلى الخادم بكل ساعة." -#: libraries/messages.inc.php:694 server_privileges.php:601 +#: libraries/messages.inc.php:690 server_privileges.php:601 #: server_privileges.php:603 msgid "" "Limits the number of commands that change any table or database the user may " @@ -4550,57 +4550,57 @@ msgstr "" "يحد عدد الأوامر التي ينفذها المستخدم بكل ساعة، والتي تغير أي جدول أو قاعدة " "بيانات." -#: libraries/messages.inc.php:695 server_privileges.php:613 +#: libraries/messages.inc.php:691 server_privileges.php:613 #: server_privileges.php:615 msgid "Limits the number of simultaneous connections the user may have." msgstr "" -#: libraries/messages.inc.php:696 server_privileges.php:149 +#: libraries/messages.inc.php:692 server_privileges.php:149 #: server_privileges.php:505 msgid "Allows viewing processes of all users" msgstr "" -#: libraries/messages.inc.php:697 server_privileges.php:151 +#: libraries/messages.inc.php:693 server_privileges.php:151 #: server_privileges.php:409 server_privileges.php:511 msgid "Has no effect in this MySQL version." msgstr "ليس له أي تأثير في نسخة MySQL الحالية." -#: libraries/messages.inc.php:698 server_privileges.php:147 +#: libraries/messages.inc.php:694 server_privileges.php:147 #: server_privileges.php:506 msgid "Allows reloading server settings and flushing the server's caches." msgstr "يسمح بإعادة تحميل إعدادات الخادم وتفريغ كاش الخادم." -#: libraries/messages.inc.php:699 server_privileges.php:159 +#: libraries/messages.inc.php:695 server_privileges.php:159 #: server_privileges.php:513 msgid "Allows the user to ask where the slaves / masters are." msgstr "يعطي الحق للمستخدم بالسؤال عن مكان وجود slaves/masters." -#: libraries/messages.inc.php:700 server_privileges.php:158 +#: libraries/messages.inc.php:696 server_privileges.php:158 #: server_privileges.php:514 msgid "Needed for the replication slaves." msgstr "مطلوب لتوابع لاستنساخ." -#: libraries/messages.inc.php:701 server_privileges.php:141 +#: libraries/messages.inc.php:697 server_privileges.php:141 #: server_privileges.php:400 server_privileges.php:464 msgid "Allows reading data." msgstr "يسمح بقراءة البيانات." -#: libraries/messages.inc.php:702 server_privileges.php:154 +#: libraries/messages.inc.php:698 server_privileges.php:154 #: server_privileges.php:508 msgid "Gives access to the complete list of databases." msgstr "يسمح بالوصول لقائمة أسماء جميع قواعد البيانات." -#: libraries/messages.inc.php:703 server_privileges.php:165 +#: libraries/messages.inc.php:699 server_privileges.php:165 #: server_privileges.php:167 server_privileges.php:480 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: libraries/messages.inc.php:704 server_privileges.php:148 +#: libraries/messages.inc.php:700 server_privileges.php:148 #: server_privileges.php:507 msgid "Allows shutting down the server." msgstr "يسمح بإيقاف عمل الخادم." -#: libraries/messages.inc.php:705 server_privileges.php:155 +#: libraries/messages.inc.php:701 server_privileges.php:155 #: server_privileges.php:504 msgid "" "Allows connecting, even if maximum number of connections is reached; " @@ -4610,190 +4610,190 @@ msgstr "" "يسمح بالاتصال، حتى لو وصل حد عدد الاتصالات للأقصى.، مطلوب للمهام الإدارية " "كضبط الإعدادات العامة other users." -#: libraries/messages.inc.php:706 server_privileges.php:162 +#: libraries/messages.inc.php:702 server_privileges.php:162 #: server_privileges.php:496 msgid "Allows creating and dropping triggers" msgstr "" -#: libraries/messages.inc.php:707 server_privileges.php:143 +#: libraries/messages.inc.php:703 server_privileges.php:143 #: server_privileges.php:406 server_privileges.php:466 msgid "Allows changing data." msgstr "يسمح بتعديل البيانات." -#: libraries/messages.inc.php:708 server_privileges.php:221 +#: libraries/messages.inc.php:704 server_privileges.php:221 msgid "No privileges." msgstr "لا صلاحيات." -#: libraries/messages.inc.php:710 server_privileges.php:1296 +#: libraries/messages.inc.php:706 server_privileges.php:1296 msgid "The privileges were reloaded successfully." msgstr "تم إعادة قراءة الصلاحيات بنجاح." -#: libraries/messages.inc.php:712 libraries/server_links.inc.php:80 +#: libraries/messages.inc.php:708 libraries/server_links.inc.php:80 msgid "Processes" msgstr "معالَجات" -#: libraries/messages.inc.php:714 main.php:187 +#: libraries/messages.inc.php:710 main.php:187 msgid "Protocol version" msgstr "" -#: libraries/messages.inc.php:715 +#: libraries/messages.inc.php:711 msgid "Put fields names in the first row" msgstr "ضع أسماء الحقول في السطر الأول" -#: libraries/messages.inc.php:720 server_synchronize.php:1003 +#: libraries/messages.inc.php:716 server_synchronize.php:1003 msgid "The following queries have been executed:" msgstr "" -#: libraries/messages.inc.php:721 server_status.php:251 +#: libraries/messages.inc.php:717 server_status.php:251 msgid "Query cache" msgstr "" -#: libraries/messages.inc.php:722 libraries/navigation_header.inc.php:80 +#: libraries/messages.inc.php:718 libraries/navigation_header.inc.php:80 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 setup/lib/messages.inc.php:122 msgid "Query window" msgstr "نافذة الاستعلام" -#: libraries/messages.inc.php:725 querywindow.php:109 querywindow.php:217 +#: libraries/messages.inc.php:721 querywindow.php:109 querywindow.php:217 msgid "SQL history" msgstr "نصوص SQL سابقة" -#: libraries/messages.inc.php:726 server_status.php:490 +#: libraries/messages.inc.php:722 server_status.php:490 #, php-format msgid "" "Query statistics: Since its startup, %s queries have been sent to the " "server." msgstr "إحصائيات الاستعلام: %s استعلام أرسل إلى الخادم منذ تشغيله." -#: libraries/messages.inc.php:728 server_status.php:554 +#: libraries/messages.inc.php:724 server_status.php:554 msgid "Query type" msgstr "نوع الاستعلام" -#: libraries/messages.inc.php:729 libraries/sql_query_form.lib.php:381 +#: libraries/messages.inc.php:725 libraries/sql_query_form.lib.php:381 msgid "Do not overwrite this query from outside the window" msgstr "لا تخزن على هذا الاستعلام من خارج النافذة" -#: libraries/messages.inc.php:732 tbl_operations.php:663 +#: libraries/messages.inc.php:728 tbl_operations.php:663 msgid "Rebuild" msgstr "" -#: libraries/messages.inc.php:733 server_status.php:394 +#: libraries/messages.inc.php:729 server_status.php:394 msgid "Received" msgstr "استلم" -#: libraries/messages.inc.php:734 pmd_pdf.php:89 +#: libraries/messages.inc.php:730 pmd_pdf.php:89 msgid "recommended" msgstr "" -#: libraries/messages.inc.php:736 tbl_operations.php:702 +#: libraries/messages.inc.php:732 tbl_operations.php:702 msgid "Check referential integrity:" msgstr "تحديد التكامل المرجعي:" -#: libraries/messages.inc.php:740 pdf_schema.php:1032 pdf_schema.php:1141 +#: libraries/messages.inc.php:736 pdf_schema.php:1032 pdf_schema.php:1141 msgid "Relational schema" msgstr "بناء الارتباطات" -#: libraries/messages.inc.php:744 tbl_relation.php:399 +#: libraries/messages.inc.php:740 tbl_relation.php:399 msgid "Relations" msgstr "الروابط" -#: libraries/messages.inc.php:745 tbl_structure.php:507 tbl_structure.php:509 +#: libraries/messages.inc.php:741 tbl_structure.php:507 tbl_structure.php:509 msgid "Relation view" msgstr "عرض الروابط" -#: libraries/messages.inc.php:746 server_privileges.php:1246 +#: libraries/messages.inc.php:742 server_privileges.php:1246 msgid "Reloading the privileges" msgstr "قيد إعادة قراءة الصلاحيات." -#: libraries/messages.inc.php:747 navigation.php:66 navigation.php:67 +#: libraries/messages.inc.php:743 navigation.php:66 navigation.php:67 #: navigation.php:70 msgid "Reload navigation frame" msgstr "" -#: libraries/messages.inc.php:748 pmd_general.php:80 +#: libraries/messages.inc.php:744 pmd_general.php:80 msgid "Reload" msgstr "" -#: libraries/messages.inc.php:749 libraries/server_synchronize.lib.php:1345 +#: libraries/messages.inc.php:745 libraries/server_synchronize.lib.php:1345 #: libraries/server_synchronize.lib.php:1371 msgid "Remote server" msgstr "" -#: libraries/messages.inc.php:750 +#: libraries/messages.inc.php:746 msgid "Remove CRLF characters within fields" msgstr "" -#: libraries/messages.inc.php:751 tbl_operations.php:676 +#: libraries/messages.inc.php:747 tbl_operations.php:676 msgid "Remove partitioning" msgstr "" -#: libraries/messages.inc.php:752 server_privileges.php:1575 +#: libraries/messages.inc.php:748 server_privileges.php:1575 msgid "Remove selected users" msgstr "احذف المستخدمين المحددين" -#: libraries/messages.inc.php:755 tbl_operations.php:338 +#: libraries/messages.inc.php:751 tbl_operations.php:338 msgid "Rename table to" msgstr "تغيير اسم جدول إلى" -#: libraries/messages.inc.php:756 view_operations.php:93 +#: libraries/messages.inc.php:752 view_operations.php:93 msgid "Rename view to" msgstr "" -#: libraries/messages.inc.php:757 tbl_operations.php:664 +#: libraries/messages.inc.php:753 tbl_operations.php:664 msgid "Repair" msgstr "صلح" -#: libraries/messages.inc.php:759 +#: libraries/messages.inc.php:755 msgid "Replace NULL by" msgstr "استبدل NULL بـ" -#: libraries/messages.inc.php:760 +#: libraries/messages.inc.php:756 msgid "Replace table data with file" msgstr "استبدال بيانات الجدول بالملف" -#: libraries/messages.inc.php:761 server_replication.php:228 +#: libraries/messages.inc.php:757 server_replication.php:228 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: libraries/messages.inc.php:762 libraries/replication_gui.lib.php:236 +#: libraries/messages.inc.php:758 libraries/replication_gui.lib.php:236 #: server_replication.php:194 msgid "Add slave replication user" msgstr "" -#: libraries/messages.inc.php:763 server_replication.php:74 +#: libraries/messages.inc.php:759 server_replication.php:74 #, php-format msgid "Master server changed succesfully to %s" msgstr "" -#: libraries/messages.inc.php:764 server_replication.php:182 +#: libraries/messages.inc.php:760 server_replication.php:182 msgid "This server is configured as master in a replication process." msgstr "" -#: libraries/messages.inc.php:765 server_replication.php:322 +#: libraries/messages.inc.php:761 server_replication.php:322 msgid "Control slave:" msgstr "" -#: libraries/messages.inc.php:766 server_replication.php:65 +#: libraries/messages.inc.php:762 server_replication.php:65 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: libraries/messages.inc.php:767 server_replication.php:58 +#: libraries/messages.inc.php:763 server_replication.php:58 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: libraries/messages.inc.php:768 server_replication.php:221 +#: libraries/messages.inc.php:764 server_replication.php:221 msgid "Replicate all databases; Ignore:" msgstr "" -#: libraries/messages.inc.php:769 server_replication.php:222 +#: libraries/messages.inc.php:765 server_replication.php:222 msgid "Ignore all databases; Replicate:" msgstr "" -#: libraries/messages.inc.php:770 server_replication.php:218 +#: libraries/messages.inc.php:766 server_replication.php:218 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -4802,120 +4802,120 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: libraries/messages.inc.php:771 server_replication.php:217 +#: libraries/messages.inc.php:767 server_replication.php:217 msgid "Master configuration" msgstr "" -#: libraries/messages.inc.php:772 server_replication.php:181 +#: libraries/messages.inc.php:768 server_replication.php:181 #: server_replication.php:209 msgid "Master replication" msgstr "" -#: libraries/messages.inc.php:774 server_replication.php:230 +#: libraries/messages.inc.php:770 server_replication.php:230 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: libraries/messages.inc.php:775 server_replication.php:225 +#: libraries/messages.inc.php:771 server_replication.php:225 msgid "Please select databases:" msgstr "" -#: libraries/messages.inc.php:776 server_replication.php:210 +#: libraries/messages.inc.php:772 server_replication.php:210 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:188 +#: libraries/messages.inc.php:773 libraries/replication_gui.lib.php:188 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/messages.inc.php:778 server_replication.php:187 +#: libraries/messages.inc.php:774 server_replication.php:187 msgid "Show connected slaves" msgstr "" -#: libraries/messages.inc.php:779 libraries/messages.inc.php:885 +#: libraries/messages.inc.php:775 libraries/messages.inc.php:881 #: server_replication.php:184 server_status.php:281 msgid "Show master status" msgstr "" -#: libraries/messages.inc.php:780 server_replication.php:334 +#: libraries/messages.inc.php:776 server_replication.php:334 msgid "Skipping error(s) might lead into unsynchronized master and slave!" msgstr "" -#: libraries/messages.inc.php:781 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:51 #: server_replication.php:347 msgid "Change or reconfigure master server" msgstr "" -#: libraries/messages.inc.php:782 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:778 libraries/replication_gui.lib.php:51 msgid "Slave configuration" msgstr "" -#: libraries/messages.inc.php:783 server_replication.php:305 +#: libraries/messages.inc.php:779 server_replication.php:305 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: libraries/messages.inc.php:784 server_replication.php:332 +#: libraries/messages.inc.php:780 server_replication.php:332 msgid "Error management:" msgstr "" -#: libraries/messages.inc.php:785 server_replication.php:328 +#: libraries/messages.inc.php:781 server_replication.php:328 #, php-format msgid "IO Thread %s only" msgstr "" -#: libraries/messages.inc.php:786 server_replication.php:296 +#: libraries/messages.inc.php:782 server_replication.php:296 msgid "Slave IO Thread not running!" msgstr "" -#: libraries/messages.inc.php:787 server_replication.php:355 +#: libraries/messages.inc.php:783 server_replication.php:355 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/messages.inc.php:788 server_replication.php:326 +#: libraries/messages.inc.php:784 server_replication.php:326 msgid "Reset slave" msgstr "" -#: libraries/messages.inc.php:789 server_replication.php:308 +#: libraries/messages.inc.php:785 server_replication.php:308 msgid "See slave status table" msgstr "" -#: libraries/messages.inc.php:790 server_replication.php:336 +#: libraries/messages.inc.php:786 server_replication.php:336 msgid "Skip current error" msgstr "" -#: libraries/messages.inc.php:791 server_replication.php:340 +#: libraries/messages.inc.php:787 server_replication.php:340 msgid "errors." msgstr "أخطاء." -#: libraries/messages.inc.php:792 server_replication.php:337 +#: libraries/messages.inc.php:788 server_replication.php:337 msgid "Skip next" msgstr "" -#: libraries/messages.inc.php:793 server_replication.php:248 +#: libraries/messages.inc.php:789 server_replication.php:248 msgid "Slave replication" msgstr "" -#: libraries/messages.inc.php:794 server_replication.php:293 +#: libraries/messages.inc.php:790 server_replication.php:293 msgid "Slave SQL Thread not running!" msgstr "" -#: libraries/messages.inc.php:795 server_replication.php:327 +#: libraries/messages.inc.php:791 server_replication.php:327 #, php-format msgid "SQL Thread %s only" msgstr "" -#: libraries/messages.inc.php:796 +#: libraries/messages.inc.php:792 #, php-format msgid "" "This MySQL server works as %s in replication process. For further " @@ -4923,157 +4923,157 @@ msgid "" "\"#replication\">replication section." msgstr "" -#: libraries/messages.inc.php:797 +#: libraries/messages.inc.php:793 msgid "Master status" msgstr "" -#: libraries/messages.inc.php:798 server_status.php:721 +#: libraries/messages.inc.php:794 server_status.php:721 msgid "Replication status" msgstr "" -#: libraries/messages.inc.php:799 +#: libraries/messages.inc.php:795 msgid "Slave status" msgstr "" -#: libraries/messages.inc.php:800 server_replication.php:311 +#: libraries/messages.inc.php:796 server_replication.php:311 msgid "Synchronize databases with master" msgstr "" -#: libraries/messages.inc.php:801 server_replication.php:71 +#: libraries/messages.inc.php:797 server_replication.php:71 msgid "Unable to change master" msgstr "" -#: libraries/messages.inc.php:802 server_replication.php:51 +#: libraries/messages.inc.php:798 server_replication.php:51 msgid "Unknown error" msgstr "" -#: libraries/messages.inc.php:803 main.php:163 pdf_pages.php:344 +#: libraries/messages.inc.php:799 main.php:163 pdf_pages.php:344 #: setup/lib/FormDisplay.tpl.php:216 tbl_change.php:1175 msgid "Reset" msgstr "إلغاء" -#: libraries/messages.inc.php:804 server_privileges.php:591 +#: libraries/messages.inc.php:800 server_privileges.php:591 msgid "Resource limits" msgstr "حدود المصادر" -#: libraries/messages.inc.php:805 tbl_change.php:1209 +#: libraries/messages.inc.php:801 tbl_change.php:1209 #, php-format msgid "Restart insertion with %s rows" msgstr "" -#: libraries/messages.inc.php:807 server_privileges.php:1578 +#: libraries/messages.inc.php:803 server_privileges.php:1578 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "استرجع كل الصلاحيات الفعالة من المستخدمين ثم احذفهم بعد ذلك." -#: libraries/messages.inc.php:808 server_privileges.php:1176 +#: libraries/messages.inc.php:804 server_privileges.php:1176 #, php-format msgid "You have revoked the privileges for %s" msgstr "لقد أبطلت الامتيازات لـ %s" -#: libraries/messages.inc.php:809 server_privileges.php:1333 +#: libraries/messages.inc.php:805 server_privileges.php:1333 msgid "Revoke" msgstr "إبطال" -#: libraries/messages.inc.php:810 libraries/mysql_charsets.lib.php:280 +#: libraries/messages.inc.php:806 libraries/mysql_charsets.lib.php:280 msgid "Romanian" msgstr "الرومانية" -#: libraries/messages.inc.php:813 tbl_printview.php:404 tbl_structure.php:786 +#: libraries/messages.inc.php:809 tbl_printview.php:404 tbl_structure.php:786 msgid "Row length" msgstr "طول الصف" -#: libraries/messages.inc.php:815 tbl_printview.php:414 tbl_structure.php:794 +#: libraries/messages.inc.php:811 tbl_printview.php:414 tbl_structure.php:794 msgid " Row size " msgstr " مقاس الصف " -#: libraries/messages.inc.php:821 tbl_printview.php:366 tbl_structure.php:726 +#: libraries/messages.inc.php:817 tbl_printview.php:366 tbl_structure.php:726 msgid "Row Statistics" msgstr "إحصائيات" -#: libraries/messages.inc.php:822 +#: libraries/messages.inc.php:818 #, php-format msgid "running on %s" msgstr " على المزود %s" -#: libraries/messages.inc.php:824 libraries/sql_query_form.lib.php:223 +#: libraries/messages.inc.php:820 libraries/sql_query_form.lib.php:223 #, php-format msgid "Run SQL query/queries on server %s" msgstr "" -#: libraries/messages.inc.php:825 libraries/sql_query_form.lib.php:240 +#: libraries/messages.inc.php:821 libraries/sql_query_form.lib.php:240 #: libraries/sql_query_form.lib.php:265 #, php-format msgid "Run SQL query/queries on database %s" msgstr "تنفيذ استعلام/استعلامات SQL على قاعدة بيانات %s" -#: libraries/messages.inc.php:826 libraries/mysql_charsets.lib.php:337 +#: libraries/messages.inc.php:822 libraries/mysql_charsets.lib.php:337 msgid "Russian" msgstr "الروسية" -#: libraries/messages.inc.php:829 pmd_general.php:68 +#: libraries/messages.inc.php:825 pmd_general.php:68 msgid "Save position" msgstr "" -#: libraries/messages.inc.php:830 libraries/tbl_properties.inc.php:776 +#: libraries/messages.inc.php:826 libraries/tbl_properties.inc.php:776 #: pdf_pages.php:484 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:214 setup/lib/FormDisplay.tpl.php:215 #: tbl_change.php:1126 tbl_indexes.php:248 tbl_relation.php:566 msgid "Save" msgstr "حفظ" -#: libraries/messages.inc.php:831 +#: libraries/messages.inc.php:827 msgid "The scale factor is too small to fit the schema on one page" msgstr "نسبة الحجم المحددة صغيرة جدا لملائمة المخطط في صفحة واحدة." -#: libraries/messages.inc.php:843 main.php:298 +#: libraries/messages.inc.php:839 main.php:298 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "يحتاج ملف الإعداد الآن إلى كلمة المرور السرية." -#: libraries/messages.inc.php:844 navigation.php:353 navigation.php:516 +#: libraries/messages.inc.php:840 navigation.php:353 navigation.php:516 msgid "Please select a database" msgstr "اختر قاعدة بيانات من القائمة" -#: libraries/messages.inc.php:846 server_binlog.php:120 +#: libraries/messages.inc.php:842 server_binlog.php:120 msgid "Select binary log to view" msgstr "" -#: libraries/messages.inc.php:847 tbl_select.php:270 +#: libraries/messages.inc.php:843 tbl_select.php:270 msgid "Select fields (at least one):" msgstr "اختيار حقول (على الأقل واحد):" -#: libraries/messages.inc.php:851 pdf_pages.php:320 +#: libraries/messages.inc.php:847 pdf_pages.php:320 msgid "Select Tables" msgstr "اختر الجداول" -#: libraries/messages.inc.php:853 server_status.php:404 +#: libraries/messages.inc.php:849 server_status.php:404 msgid "Sent" msgstr "أرسل" -#: libraries/messages.inc.php:857 libraries/select_server.lib.php:45 +#: libraries/messages.inc.php:853 libraries/select_server.lib.php:45 #: setup/frames/index.inc.php:97 setup/lib/messages.inc.php:115 msgid "Servers" msgstr "خوادم" -#: libraries/messages.inc.php:858 server_status.php:255 +#: libraries/messages.inc.php:854 server_status.php:255 msgid "Delayed inserts" msgstr "" -#: libraries/messages.inc.php:859 server_status.php:46 +#: libraries/messages.inc.php:855 server_status.php:46 msgid "Runtime Information" msgstr "بيانات التشغيل" -#: libraries/messages.inc.php:860 server_status.php:350 +#: libraries/messages.inc.php:856 server_status.php:350 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "مضى على عمل خادم MySQL مدة %s. بدأ العمل في %s." -#: libraries/messages.inc.php:861 libraries/server_links.inc.php:53 +#: libraries/messages.inc.php:857 libraries/server_links.inc.php:53 #: server_engines.php:112 server_engines.php:116 server_status.php:304 #: test/theme.php:105 msgid "Variables" msgstr "متغيرات" -#: libraries/messages.inc.php:862 server_status.php:383 +#: libraries/messages.inc.php:858 server_status.php:383 msgid "" "Server traffic: These tables show the network traffic statistics of " "this MySQL server since its startup." @@ -5081,11 +5081,11 @@ msgstr "" "سير الخادم: تظهر هذه الجداول إحصائيات سير بيانات الشبكة لهذا الخادم " "منذ تشغيله." -#: libraries/messages.inc.php:863 server_variables.php:35 +#: libraries/messages.inc.php:859 server_variables.php:35 msgid "Server variables and settings" msgstr "متغيرات وإعدادات الخادم" -#: libraries/messages.inc.php:865 main.php:290 +#: libraries/messages.inc.php:861 main.php:290 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -5093,17 +5093,17 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: libraries/messages.inc.php:866 +#: libraries/messages.inc.php:862 msgid "" "Cannot start session without errors, please check errors given in your PHP " "and/or webserver log file and configure your PHP installation properly." msgstr "" -#: libraries/messages.inc.php:867 server_variables.php:55 +#: libraries/messages.inc.php:863 server_variables.php:55 msgid "Session value" msgstr "قيمة الجلسة" -#: libraries/messages.inc.php:868 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:864 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 " @@ -5115,55 +5115,55 @@ msgstr "" "لليسار (\"\\\") أو علامة الاقتباس الفردية (\"'\") فيما بين تلك القيم، اجعلها " "كشرطة مائلة لليسار (مثلا '\\\\xyz' أو 'a\\'b')." -#: libraries/messages.inc.php:876 server_binlog.php:192 server_binlog.php:195 +#: libraries/messages.inc.php:872 server_binlog.php:192 server_binlog.php:195 #: server_processlist.php:49 server_processlist.php:51 msgid "Show Full Queries" msgstr "اعرض الاستعلامات كاملة" -#: libraries/messages.inc.php:878 pmd_general.php:64 +#: libraries/messages.inc.php:874 pmd_general.php:64 msgid "Show/Hide left menu" msgstr "" -#: libraries/messages.inc.php:880 sql.php:513 +#: libraries/messages.inc.php:876 sql.php:513 msgid "Showing as PHP code" msgstr "" -#: libraries/messages.inc.php:882 sql.php:516 tbl_replace.php:360 +#: libraries/messages.inc.php:878 sql.php:516 tbl_replace.php:360 msgid "Showing SQL query" msgstr "" -#: libraries/messages.inc.php:883 tbl_change.php:1132 +#: libraries/messages.inc.php:879 tbl_change.php:1132 msgid "Show insert query" msgstr "" -#: libraries/messages.inc.php:886 server_status.php:273 +#: libraries/messages.inc.php:882 server_status.php:273 msgid "Show open tables" msgstr "" -#: libraries/messages.inc.php:887 main.php:219 +#: libraries/messages.inc.php:883 main.php:219 msgid "Show PHP information" msgstr "عرض المعلومات المتعلقة ب PHP" -#: libraries/messages.inc.php:889 server_status.php:278 +#: libraries/messages.inc.php:885 server_status.php:278 msgid "Show slave hosts" msgstr "" -#: libraries/messages.inc.php:890 server_status.php:284 +#: libraries/messages.inc.php:886 server_status.php:284 msgid "Show slave status" msgstr "" -#: libraries/messages.inc.php:891 +#: libraries/messages.inc.php:887 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/messages.inc.php:892 +#: libraries/messages.inc.php:888 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/messages.inc.php:893 +#: libraries/messages.inc.php:889 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -5171,78 +5171,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/messages.inc.php:894 +#: libraries/messages.inc.php:890 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/messages.inc.php:895 +#: libraries/messages.inc.php:891 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/messages.inc.php:896 +#: libraries/messages.inc.php:892 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/messages.inc.php:897 +#: libraries/messages.inc.php:893 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/messages.inc.php:898 +#: libraries/messages.inc.php:894 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/messages.inc.php:899 +#: libraries/messages.inc.php:895 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/messages.inc.php:900 +#: libraries/messages.inc.php:896 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/messages.inc.php:901 +#: libraries/messages.inc.php:897 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/messages.inc.php:902 +#: libraries/messages.inc.php:898 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/messages.inc.php:903 +#: libraries/messages.inc.php:899 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/messages.inc.php:904 +#: libraries/messages.inc.php:900 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: libraries/messages.inc.php:905 +#: libraries/messages.inc.php:901 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/messages.inc.php:906 +#: libraries/messages.inc.php:902 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: libraries/messages.inc.php:907 +#: libraries/messages.inc.php:903 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -5250,7 +5250,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/messages.inc.php:908 +#: libraries/messages.inc.php:904 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -5258,42 +5258,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/messages.inc.php:909 +#: libraries/messages.inc.php:905 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/messages.inc.php:910 +#: libraries/messages.inc.php:906 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/messages.inc.php:911 +#: libraries/messages.inc.php:907 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/messages.inc.php:912 +#: libraries/messages.inc.php:908 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/messages.inc.php:913 +#: libraries/messages.inc.php:909 msgid "The number of pages currently dirty." msgstr "" -#: libraries/messages.inc.php:914 +#: libraries/messages.inc.php:910 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/messages.inc.php:915 +#: libraries/messages.inc.php:911 msgid "The number of free pages." msgstr "" -#: libraries/messages.inc.php:916 +#: libraries/messages.inc.php:912 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/messages.inc.php:917 +#: libraries/messages.inc.php:913 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -5301,33 +5301,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/messages.inc.php:918 +#: libraries/messages.inc.php:914 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/messages.inc.php:919 +#: libraries/messages.inc.php:915 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/messages.inc.php:920 +#: libraries/messages.inc.php:916 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/messages.inc.php:921 +#: libraries/messages.inc.php:917 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/messages.inc.php:922 +#: libraries/messages.inc.php:918 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/messages.inc.php:923 +#: libraries/messages.inc.php:919 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -5336,218 +5336,218 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/messages.inc.php:924 +#: libraries/messages.inc.php:920 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/messages.inc.php:925 +#: libraries/messages.inc.php:921 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/messages.inc.php:926 +#: libraries/messages.inc.php:922 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/messages.inc.php:927 +#: libraries/messages.inc.php:923 msgid "The current number of pending reads." msgstr "" -#: libraries/messages.inc.php:928 +#: libraries/messages.inc.php:924 msgid "The current number of pending writes." msgstr "" -#: libraries/messages.inc.php:929 +#: libraries/messages.inc.php:925 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/messages.inc.php:930 +#: libraries/messages.inc.php:926 msgid "The total number of data reads." msgstr "" -#: libraries/messages.inc.php:931 +#: libraries/messages.inc.php:927 msgid "The total number of data writes." msgstr "" -#: libraries/messages.inc.php:932 +#: libraries/messages.inc.php:928 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/messages.inc.php:933 +#: libraries/messages.inc.php:929 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/messages.inc.php:934 +#: libraries/messages.inc.php:930 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/messages.inc.php:935 +#: libraries/messages.inc.php:931 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/messages.inc.php:936 +#: libraries/messages.inc.php:932 msgid "The number of log write requests." msgstr "" -#: libraries/messages.inc.php:937 +#: libraries/messages.inc.php:933 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/messages.inc.php:938 +#: libraries/messages.inc.php:934 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/messages.inc.php:939 +#: libraries/messages.inc.php:935 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/messages.inc.php:940 +#: libraries/messages.inc.php:936 msgid "Pending log file writes." msgstr "" -#: libraries/messages.inc.php:941 +#: libraries/messages.inc.php:937 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/messages.inc.php:942 +#: libraries/messages.inc.php:938 msgid "The number of pages created." msgstr "" -#: libraries/messages.inc.php:943 +#: libraries/messages.inc.php:939 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: libraries/messages.inc.php:944 +#: libraries/messages.inc.php:940 msgid "The number of pages read." msgstr "" -#: libraries/messages.inc.php:945 +#: libraries/messages.inc.php:941 msgid "The number of pages written." msgstr "" -#: libraries/messages.inc.php:946 +#: libraries/messages.inc.php:942 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/messages.inc.php:947 +#: libraries/messages.inc.php:943 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/messages.inc.php:948 +#: libraries/messages.inc.php:944 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/messages.inc.php:949 +#: libraries/messages.inc.php:945 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/messages.inc.php:950 +#: libraries/messages.inc.php:946 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/messages.inc.php:951 +#: libraries/messages.inc.php:947 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/messages.inc.php:952 +#: libraries/messages.inc.php:948 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/messages.inc.php:953 +#: libraries/messages.inc.php:949 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/messages.inc.php:954 +#: libraries/messages.inc.php:950 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/messages.inc.php:955 +#: libraries/messages.inc.php:951 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/messages.inc.php:956 +#: libraries/messages.inc.php:952 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: libraries/messages.inc.php:957 +#: libraries/messages.inc.php:953 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/messages.inc.php:958 +#: libraries/messages.inc.php:954 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/messages.inc.php:959 +#: libraries/messages.inc.php:955 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/messages.inc.php:960 +#: libraries/messages.inc.php:956 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/messages.inc.php:961 +#: libraries/messages.inc.php:957 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/messages.inc.php:962 +#: libraries/messages.inc.php:958 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/messages.inc.php:963 +#: libraries/messages.inc.php:959 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/messages.inc.php:964 +#: libraries/messages.inc.php:960 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/messages.inc.php:965 +#: libraries/messages.inc.php:961 msgid "The number of files that are open." msgstr "" -#: libraries/messages.inc.php:966 +#: libraries/messages.inc.php:962 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/messages.inc.php:967 +#: libraries/messages.inc.php:963 msgid "The number of tables that are open." msgstr "" -#: libraries/messages.inc.php:968 +#: libraries/messages.inc.php:964 msgid "The number of free memory blocks in query cache." msgstr "" -#: libraries/messages.inc.php:969 +#: libraries/messages.inc.php:965 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/messages.inc.php:970 +#: libraries/messages.inc.php:966 msgid "The number of cache hits." msgstr "" -#: libraries/messages.inc.php:971 +#: libraries/messages.inc.php:967 msgid "The number of queries added to the cache." msgstr "" -#: libraries/messages.inc.php:972 +#: libraries/messages.inc.php:968 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -5555,104 +5555,104 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/messages.inc.php:973 +#: libraries/messages.inc.php:969 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/messages.inc.php:974 +#: libraries/messages.inc.php:970 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/messages.inc.php:975 +#: libraries/messages.inc.php:971 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/messages.inc.php:976 +#: libraries/messages.inc.php:972 msgctxt "$strShowStatusReset" msgid "Reset" msgstr "" -#: libraries/messages.inc.php:977 +#: libraries/messages.inc.php:973 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/messages.inc.php:978 +#: libraries/messages.inc.php:974 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: libraries/messages.inc.php:979 +#: libraries/messages.inc.php:975 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/messages.inc.php:980 +#: libraries/messages.inc.php:976 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: libraries/messages.inc.php:981 +#: libraries/messages.inc.php:977 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/messages.inc.php:982 +#: libraries/messages.inc.php:978 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/messages.inc.php:983 +#: libraries/messages.inc.php:979 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/messages.inc.php:984 +#: libraries/messages.inc.php:980 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/messages.inc.php:985 +#: libraries/messages.inc.php:981 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/messages.inc.php:986 +#: libraries/messages.inc.php:982 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/messages.inc.php:987 +#: libraries/messages.inc.php:983 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/messages.inc.php:988 +#: libraries/messages.inc.php:984 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/messages.inc.php:989 +#: libraries/messages.inc.php:985 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/messages.inc.php:990 +#: libraries/messages.inc.php:986 msgid "The number of sorted rows." msgstr "" -#: libraries/messages.inc.php:991 +#: libraries/messages.inc.php:987 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/messages.inc.php:992 +#: libraries/messages.inc.php:988 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/messages.inc.php:993 +#: libraries/messages.inc.php:989 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -5660,18 +5660,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/messages.inc.php:994 +#: libraries/messages.inc.php:990 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/messages.inc.php:995 +#: libraries/messages.inc.php:991 msgid "The number of currently open connections." msgstr "" -#: libraries/messages.inc.php:996 +#: libraries/messages.inc.php:992 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -5679,74 +5679,74 @@ msgid "" "implementation.)" msgstr "" -#: libraries/messages.inc.php:997 +#: libraries/messages.inc.php:993 msgid "The number of threads that are not sleeping." msgstr "" -#: libraries/messages.inc.php:999 tbl_printview.php:75 +#: libraries/messages.inc.php:995 tbl_printview.php:75 msgid "Show tables" msgstr "شاهد الجدول" -#: libraries/messages.inc.php:1000 libraries/sql_query_form.lib.php:396 +#: libraries/messages.inc.php:996 libraries/sql_query_form.lib.php:396 msgid " Show this query here again " msgstr " عرض هذا الاستعلام هنا مرة أخرى " -#: libraries/messages.inc.php:1001 libraries/mysql_charsets.lib.php:217 +#: libraries/messages.inc.php:997 libraries/mysql_charsets.lib.php:217 #: libraries/mysql_charsets.lib.php:342 msgid "Simplified Chinese" msgstr "الصينية المبسطة" -#: libraries/messages.inc.php:1002 tbl_operations.php:258 +#: libraries/messages.inc.php:998 tbl_operations.php:258 msgid "(singly)" msgstr "(فردي)" -#: libraries/messages.inc.php:1005 libraries/replication_gui.lib.php:52 +#: libraries/messages.inc.php:1001 libraries/replication_gui.lib.php:52 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" msgstr "" -#: libraries/messages.inc.php:1006 libraries/mysql_charsets.lib.php:283 +#: libraries/messages.inc.php:1002 libraries/mysql_charsets.lib.php:283 msgid "Slovak" msgstr "السلوفاكية" -#: libraries/messages.inc.php:1007 libraries/mysql_charsets.lib.php:286 +#: libraries/messages.inc.php:1003 libraries/mysql_charsets.lib.php:286 msgid "Slovenian" msgstr "السلوفينية" -#: libraries/messages.inc.php:1008 pmd_general.php:95 +#: libraries/messages.inc.php:1004 pmd_general.php:95 msgid "Small/Big All" msgstr "" -#: libraries/messages.inc.php:1009 pmd_general.php:91 +#: libraries/messages.inc.php:1005 pmd_general.php:91 msgid "Snap to grid" msgstr "" -#: libraries/messages.inc.php:1011 server_synchronize.php:1167 +#: libraries/messages.inc.php:1007 server_synchronize.php:1167 msgid "Socket" msgstr "" -#: libraries/messages.inc.php:1013 server_status.php:259 +#: libraries/messages.inc.php:1009 server_status.php:259 msgid "Sorting" msgstr "" -#: libraries/messages.inc.php:1015 tbl_printview.php:310 tbl_structure.php:657 +#: libraries/messages.inc.php:1011 tbl_printview.php:310 tbl_structure.php:657 msgid "Space usage" msgstr "المساحة المستغلة" -#: libraries/messages.inc.php:1016 libraries/mysql_charsets.lib.php:289 +#: libraries/messages.inc.php:1012 libraries/mysql_charsets.lib.php:289 msgid "Spanish" msgstr "أسبانية" -#: libraries/messages.inc.php:1019 +#: libraries/messages.inc.php:1015 msgid "Export type" msgstr "نوع التصدير" -#: libraries/messages.inc.php:1020 +#: libraries/messages.inc.php:1016 msgid "Export time in UTC" msgstr "" -#: libraries/messages.inc.php:1021 libraries/sqlparser.lib.php:173 +#: libraries/messages.inc.php:1017 libraries/sqlparser.lib.php:173 msgid "" "There is a chance that you may have found a bug in the SQL parser. Please " "examine your query closely, and check that the quotes are correct and not " @@ -5766,7 +5766,7 @@ msgstr "" "حين نجح استخدام سطر الأوامر، رجاء قلص حجم استعلامك لاستعلام واحد يسبب " "المشكلة، وقم بإرسال تقرير خلل مع جزء البيانات في منطقة القص أدناه:" -#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:137 +#: libraries/messages.inc.php:1018 libraries/sqlparser.lib.php:137 msgid "" "There seems to be an error in your SQL query. The MySQL server error output " "below, if there is any, may also help you in diagnosing the problem" @@ -5774,413 +5774,413 @@ msgstr "" "يبدو أن هناك خطأ في استعلام SQL. سوف تساعدك رسالة الخطأ من خادم MySQL أدناه " "في تشخيص المشكلة، إن كان هناك واحدة،." -#: libraries/messages.inc.php:1026 libraries/sqlparser.lib.php:495 +#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:495 msgid "Invalid Identifer" msgstr "معرف غير صالح" -#: libraries/messages.inc.php:1027 libraries/sqlparser.lib.php:344 +#: libraries/messages.inc.php:1023 libraries/sqlparser.lib.php:344 msgid "Unclosed quote" msgstr "علامة تنصيص غير مغلقة" -#: libraries/messages.inc.php:1028 libraries/sqlparser.lib.php:612 +#: libraries/messages.inc.php:1024 libraries/sqlparser.lib.php:612 msgid "Unknown Punctuation String" msgstr "نص تنقيط غير معروف" -#: libraries/messages.inc.php:1030 server_replication.php:327 +#: libraries/messages.inc.php:1026 server_replication.php:327 #: server_replication.php:328 msgid "Start" msgstr "ابدأ" -#: libraries/messages.inc.php:1033 tbl_printview.php:369 tbl_structure.php:729 +#: libraries/messages.inc.php:1029 tbl_printview.php:369 tbl_structure.php:729 msgid "Statements" msgstr "أوامر" -#: libraries/messages.inc.php:1034 tbl_printview.php:380 tbl_structure.php:741 +#: libraries/messages.inc.php:1030 tbl_printview.php:380 tbl_structure.php:741 msgid "static" msgstr "" -#: libraries/messages.inc.php:1035 server_status.php:388 +#: libraries/messages.inc.php:1031 server_status.php:388 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: libraries/messages.inc.php:1038 server_replication.php:327 +#: libraries/messages.inc.php:1034 server_replication.php:327 #: server_replication.php:328 msgid "Stop" msgstr "قف" -#: libraries/messages.inc.php:1039 server_engines.php:49 +#: libraries/messages.inc.php:1035 server_engines.php:49 msgid "Storage Engines" msgstr "" -#: libraries/messages.inc.php:1040 libraries/tbl_properties.inc.php:726 +#: libraries/messages.inc.php:1036 libraries/tbl_properties.inc.php:726 #: server_engines.php:58 tbl_operations.php:353 msgid "Storage Engine" msgstr "" -#: libraries/messages.inc.php:1042 +#: libraries/messages.inc.php:1038 msgid "CSV for MS Excel" msgstr "بيانات CSV لبرنامج ميكروسوفت إكسل" -#: libraries/messages.inc.php:1044 tbl_structure.php:516 tbl_structure.php:518 +#: libraries/messages.inc.php:1040 tbl_structure.php:516 tbl_structure.php:518 msgid "Propose table structure" msgstr "اقترح بناء الجدول" -#: libraries/messages.inc.php:1045 server_synchronize.php:424 +#: libraries/messages.inc.php:1041 server_synchronize.php:424 #: server_synchronize.php:867 msgid "Structure Difference" msgstr "" -#: libraries/messages.inc.php:1049 server_synchronize.php:265 +#: libraries/messages.inc.php:1045 server_synchronize.php:265 msgid "Structure Synchronization" msgstr "" -#: libraries/messages.inc.php:1050 libraries/sql_query_form.lib.php:462 +#: libraries/messages.inc.php:1046 libraries/sql_query_form.lib.php:462 msgid "Submit" msgstr "إرسال" -#: libraries/messages.inc.php:1052 main.php:358 +#: libraries/messages.inc.php:1048 main.php:358 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " "issues." msgstr "" -#: libraries/messages.inc.php:1054 libraries/mysql_charsets.lib.php:295 +#: libraries/messages.inc.php:1050 libraries/mysql_charsets.lib.php:295 #: libraries/mysql_charsets.lib.php:392 msgid "Swedish" msgstr "السويدية" -#: libraries/messages.inc.php:1060 tbl_operations.php:556 +#: libraries/messages.inc.php:1056 tbl_operations.php:556 msgid "Switch to copied table" msgstr "بدل إلى الجدول المنسوخ" -#: libraries/messages.inc.php:1061 server_synchronize.php:1213 +#: libraries/messages.inc.php:1057 server_synchronize.php:1213 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." msgstr "" -#: libraries/messages.inc.php:1062 server_synchronize.php:451 +#: libraries/messages.inc.php:1058 server_synchronize.php:451 #: server_synchronize.php:896 msgid "Synchronize Databases" msgstr "" -#: libraries/messages.inc.php:1063 libraries/server_links.inc.php:92 +#: libraries/messages.inc.php:1059 libraries/server_links.inc.php:92 #: server_synchronize.php:1092 server_synchronize.php:1100 msgid "Synchronize" msgstr "" -#: libraries/messages.inc.php:1065 server_synchronize.php:430 +#: libraries/messages.inc.php:1061 server_synchronize.php:430 #: server_synchronize.php:873 msgid "Add column(s)" msgstr "" -#: libraries/messages.inc.php:1066 tbl_create.php:62 +#: libraries/messages.inc.php:1062 tbl_create.php:62 #, php-format msgid "Table %s already exists!" msgstr "" -#: libraries/messages.inc.php:1067 server_synchronize.php:432 +#: libraries/messages.inc.php:1063 server_synchronize.php:432 #: server_synchronize.php:875 msgid "Alter column(s)" msgstr "" -#: libraries/messages.inc.php:1068 tbl_addfield.php:189 tbl_alter.php:103 +#: libraries/messages.inc.php:1064 tbl_addfield.php:189 tbl_alter.php:103 #: tbl_indexes.php:98 #, php-format msgid "Table %1$s has been altered successfully" msgstr "" -#: libraries/messages.inc.php:1069 server_synchronize.php:434 +#: libraries/messages.inc.php:1065 server_synchronize.php:434 #: server_synchronize.php:877 msgid "Apply index(s)" msgstr "" -#: libraries/messages.inc.php:1071 server_synchronize.php:446 +#: libraries/messages.inc.php:1067 server_synchronize.php:446 #: server_synchronize.php:890 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: libraries/messages.inc.php:1072 tbl_move_copy.php:82 +#: libraries/messages.inc.php:1068 tbl_move_copy.php:82 msgid "The table name is empty!" msgstr "اسم الجدول فارغ!" -#: libraries/messages.inc.php:1073 tbl_create.php:249 +#: libraries/messages.inc.php:1069 tbl_create.php:249 #, php-format msgid "Table %1$s has been created." msgstr "" -#: libraries/messages.inc.php:1076 tbl_operations.php:628 +#: libraries/messages.inc.php:1072 tbl_operations.php:628 #, php-format msgid "Table %s has been flushed" msgstr "لقد تم إعادة تحميل الجدول %s بنجاح" -#: libraries/messages.inc.php:1077 server_synchronize.php:436 +#: libraries/messages.inc.php:1073 server_synchronize.php:436 #: server_synchronize.php:879 msgid "Insert row(s)" msgstr "" -#: libraries/messages.inc.php:1078 libraries/tbl_links.inc.php:107 +#: libraries/messages.inc.php:1074 libraries/tbl_links.inc.php:107 #: libraries/tbl_links.inc.php:140 libraries/tbl_links.inc.php:141 msgid "Table seems to be empty!" msgstr "" -#: libraries/messages.inc.php:1079 tbl_operations.php:568 +#: libraries/messages.inc.php:1075 tbl_operations.php:568 msgid "Table maintenance" msgstr "صيانة الجدول" -#: libraries/messages.inc.php:1080 libraries/tbl_properties.inc.php:618 +#: libraries/messages.inc.php:1076 libraries/tbl_properties.inc.php:618 #: server_synchronize.php:428 server_synchronize.php:871 msgid "Table name" msgstr "اسم الجدول" -#: libraries/messages.inc.php:1081 pdf_schema.php:1116 +#: libraries/messages.inc.php:1077 pdf_schema.php:1116 msgid "Table of contents" msgstr "جدول المحتويات" -#: libraries/messages.inc.php:1082 tbl_operations.php:334 +#: libraries/messages.inc.php:1078 tbl_operations.php:334 msgid "Table options" msgstr "خيارات الجدول" -#: libraries/messages.inc.php:1083 server_synchronize.php:431 +#: libraries/messages.inc.php:1079 server_synchronize.php:431 #: server_synchronize.php:874 msgid "Remove column(s)" msgstr "" -#: libraries/messages.inc.php:1084 server_synchronize.php:433 +#: libraries/messages.inc.php:1080 server_synchronize.php:433 #: server_synchronize.php:876 msgid "Remove index(s)" msgstr "" -#: libraries/messages.inc.php:1088 server_synchronize.php:435 +#: libraries/messages.inc.php:1084 server_synchronize.php:435 #: server_synchronize.php:878 msgid "Update row(s)" msgstr "" -#: libraries/messages.inc.php:1090 server_synchronize.php:942 +#: libraries/messages.inc.php:1086 server_synchronize.php:942 msgid "Target database has been synchronized with source database" msgstr "" -#: libraries/messages.inc.php:1091 server_privileges.php:392 +#: libraries/messages.inc.php:1087 server_privileges.php:392 #: server_privileges.php:527 server_privileges.php:1679 #: server_privileges.php:1685 msgid "Table-specific privileges" msgstr "صلاحيات خاصة بالجدول" -#: libraries/messages.inc.php:1092 server_status.php:254 +#: libraries/messages.inc.php:1088 server_status.php:254 msgid "Temporary data" msgstr "" -#: libraries/messages.inc.php:1093 tbl_change.php:728 +#: libraries/messages.inc.php:1089 tbl_change.php:728 msgid " Because of its length,
this field might not be editable " msgstr " بسبب طوله,
فمن المحتمل أن هذا الحقل غير قابل للتحرير " -#: libraries/messages.inc.php:1094 +#: libraries/messages.inc.php:1090 msgid "Texy! text" msgstr "" -#: libraries/messages.inc.php:1095 libraries/mysql_charsets.lib.php:298 +#: libraries/messages.inc.php:1091 libraries/mysql_charsets.lib.php:298 #: libraries/mysql_charsets.lib.php:395 msgid "Thai" msgstr "التايلندية" -#: libraries/messages.inc.php:1102 libraries/replication_gui.lib.php:308 +#: libraries/messages.inc.php:1098 libraries/replication_gui.lib.php:308 #: server_privileges.php:734 msgid "This Host" msgstr "هذا المضيف" -#: libraries/messages.inc.php:1103 server_status.php:252 +#: libraries/messages.inc.php:1099 server_status.php:252 msgid "Threads" msgstr "" -#: libraries/messages.inc.php:1104 server_processlist.php:22 +#: libraries/messages.inc.php:1100 server_processlist.php:22 #, php-format msgid "Thread %s was successfully killed." msgstr "تم إيقاف العمليّة %s بنجاح." -#: libraries/messages.inc.php:1106 +#: libraries/messages.inc.php:1102 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." msgstr "" -#: libraries/messages.inc.php:1109 pmd_pdf.php:94 +#: libraries/messages.inc.php:1105 pmd_pdf.php:94 msgid "to/from page" msgstr "" -#: libraries/messages.inc.php:1110 pdf_pages.php:343 +#: libraries/messages.inc.php:1106 pdf_pages.php:343 msgid "Toggle scratchboard" msgstr "toggle scratchboard" -#: libraries/messages.inc.php:1111 pmd_general.php:99 +#: libraries/messages.inc.php:1107 pmd_general.php:99 msgid "Toggle small/big" msgstr "" -#: libraries/messages.inc.php:1112 pmd_help.php:27 +#: libraries/messages.inc.php:1108 pmd_help.php:27 msgid "To select relation, click :" msgstr "" -#: libraries/messages.inc.php:1115 libraries/tbl_links.inc.php:149 +#: libraries/messages.inc.php:1111 libraries/tbl_links.inc.php:149 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" -#: libraries/messages.inc.php:1116 tbl_tracking.php:655 +#: libraries/messages.inc.php:1112 tbl_tracking.php:655 msgid "Activate now" msgstr "" -#: libraries/messages.inc.php:1117 tbl_tracking.php:653 +#: libraries/messages.inc.php:1113 tbl_tracking.php:653 #, php-format msgid "Activate tracking for %s.%s" msgstr "" -#: libraries/messages.inc.php:1118 tbl_tracking.php:221 +#: libraries/messages.inc.php:1114 tbl_tracking.php:221 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/messages.inc.php:1119 tbl_tracking.php:688 +#: libraries/messages.inc.php:1115 tbl_tracking.php:688 msgid "Create version" msgstr "" -#: libraries/messages.inc.php:1120 tbl_tracking.php:668 +#: libraries/messages.inc.php:1116 tbl_tracking.php:668 #, php-format msgid "Create version %s of %s.%s" msgstr "" -#: libraries/messages.inc.php:1122 tbl_tracking.php:412 +#: libraries/messages.inc.php:1118 tbl_tracking.php:412 msgid "Data definition statement" msgstr "" -#: libraries/messages.inc.php:1123 tbl_tracking.php:463 +#: libraries/messages.inc.php:1119 tbl_tracking.php:463 msgid "Data manipulation statement" msgstr "" -#: libraries/messages.inc.php:1124 tbl_tracking.php:410 tbl_tracking.php:461 +#: libraries/messages.inc.php:1120 tbl_tracking.php:410 tbl_tracking.php:461 msgid "Date" msgstr "تاريخ" -#: libraries/messages.inc.php:1125 tbl_tracking.php:642 +#: libraries/messages.inc.php:1121 tbl_tracking.php:642 msgid "Deactivate now" msgstr "" -#: libraries/messages.inc.php:1126 tbl_tracking.php:640 +#: libraries/messages.inc.php:1122 tbl_tracking.php:640 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "" -#: libraries/messages.inc.php:1127 tbl_tracking.php:521 +#: libraries/messages.inc.php:1123 tbl_tracking.php:521 #, php-format msgid "Export as %s" msgstr "" -#: libraries/messages.inc.php:1130 tbl_tracking.php:251 tbl_tracking.php:379 +#: libraries/messages.inc.php:1126 tbl_tracking.php:251 tbl_tracking.php:379 msgid "Close" msgstr "أغلق" -#: libraries/messages.inc.php:1131 tbl_tracking.php:114 +#: libraries/messages.inc.php:1127 tbl_tracking.php:114 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/messages.inc.php:1133 tbl_tracking.php:397 tbl_tracking.php:504 +#: libraries/messages.inc.php:1129 tbl_tracking.php:397 tbl_tracking.php:504 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "" -#: libraries/messages.inc.php:1134 tbl_tracking.php:561 +#: libraries/messages.inc.php:1130 tbl_tracking.php:561 msgid "Show versions" msgstr "" -#: libraries/messages.inc.php:1135 tbl_tracking.php:507 +#: libraries/messages.inc.php:1131 tbl_tracking.php:507 msgid "SQL dump (file download)" msgstr "" -#: libraries/messages.inc.php:1136 tbl_tracking.php:508 +#: libraries/messages.inc.php:1132 tbl_tracking.php:508 msgid "SQL dump" msgstr "" -#: libraries/messages.inc.php:1137 tbl_tracking.php:213 +#: libraries/messages.inc.php:1133 tbl_tracking.php:213 msgid "SQL statements executed." msgstr "" -#: libraries/messages.inc.php:1138 +#: libraries/messages.inc.php:1134 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/messages.inc.php:1139 tbl_tracking.php:509 +#: libraries/messages.inc.php:1135 tbl_tracking.php:509 msgid "SQL execution" msgstr "" -#: libraries/messages.inc.php:1140 tbl_tracking.php:230 +#: libraries/messages.inc.php:1136 tbl_tracking.php:230 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/messages.inc.php:1141 tbl_tracking.php:381 +#: libraries/messages.inc.php:1137 tbl_tracking.php:381 msgid "Tracking statements" msgstr "" -#: libraries/messages.inc.php:1148 tbl_tracking.php:593 +#: libraries/messages.inc.php:1144 tbl_tracking.php:593 msgid "Version" msgstr "نسخة" -#: libraries/messages.inc.php:1149 tbl_tracking.php:672 +#: libraries/messages.inc.php:1145 tbl_tracking.php:672 msgid "Track these data definition statements:" msgstr "" -#: libraries/messages.inc.php:1150 tbl_tracking.php:680 +#: libraries/messages.inc.php:1146 tbl_tracking.php:680 msgid "Track these data manipulation statements:" msgstr "" -#: libraries/messages.inc.php:1155 tbl_tracking.php:411 tbl_tracking.php:462 +#: libraries/messages.inc.php:1151 tbl_tracking.php:411 tbl_tracking.php:462 msgid "Username" msgstr "اسم المستخدم" -#: libraries/messages.inc.php:1156 tbl_tracking.php:203 +#: libraries/messages.inc.php:1152 tbl_tracking.php:203 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "" -#: libraries/messages.inc.php:1157 tbl_tracking.php:187 +#: libraries/messages.inc.php:1153 tbl_tracking.php:187 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "" -#: libraries/messages.inc.php:1158 tbl_tracking.php:195 +#: libraries/messages.inc.php:1154 tbl_tracking.php:195 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "" -#: libraries/messages.inc.php:1159 tbl_tracking.php:262 +#: libraries/messages.inc.php:1155 tbl_tracking.php:262 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/messages.inc.php:1161 tbl_tracking.php:220 +#: libraries/messages.inc.php:1157 tbl_tracking.php:220 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/messages.inc.php:1162 libraries/mysql_charsets.lib.php:219 +#: libraries/messages.inc.php:1158 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:362 msgid "Traditional Chinese" msgstr "الصينية التقليدية" -#: libraries/messages.inc.php:1163 libraries/mysql_charsets.lib.php:292 +#: libraries/messages.inc.php:1159 libraries/mysql_charsets.lib.php:292 msgid "Traditional Spanish" msgstr "" -#: libraries/messages.inc.php:1164 server_status.php:388 +#: libraries/messages.inc.php:1160 server_status.php:388 msgid "Traffic" msgstr "بيانات سير" -#: libraries/messages.inc.php:1165 server_status.php:261 +#: libraries/messages.inc.php:1161 server_status.php:261 msgid "Transaction coordinator" msgstr "" -#: libraries/messages.inc.php:1166 +#: libraries/messages.inc.php:1162 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 " @@ -6188,13 +6188,13 @@ msgid "" "need to set the first option to the empty string." msgstr "" -#: libraries/messages.inc.php:1167 +#: libraries/messages.inc.php:1163 msgid "" "Displays hexadecimal representation of data. Optional first parameter " "specifies how often space will be added (defaults to 2 nibbles)." msgstr "" -#: libraries/messages.inc.php:1168 +#: libraries/messages.inc.php:1164 msgid "" "Displays a clickable thumbnail. The options are the maximum width and height " "in pixels. The original aspect ratio is preserved." @@ -6202,15 +6202,15 @@ msgstr "" "يظهر صورة مصغرة للضغط عليها، الخيارات: العرض، الارتفاع بالبكسل )ويبقي " "التناسب الأصلي للحجم(." -#: libraries/messages.inc.php:1169 +#: libraries/messages.inc.php:1165 msgid "Displays a link to download this image." msgstr "يظهر رابطا لهذه الصورة (direct blob download, i.e.)." -#: libraries/messages.inc.php:1170 +#: libraries/messages.inc.php:1166 msgid "See image/jpeg: inline" msgstr "اعرض صور/jpeg: بنفس السطر" -#: libraries/messages.inc.php:1171 +#: libraries/messages.inc.php:1167 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 " @@ -6222,7 +6222,7 @@ msgid "" "gmdate() function." msgstr "" -#: libraries/messages.inc.php:1172 +#: libraries/messages.inc.php:1168 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 " @@ -6245,13 +6245,13 @@ msgstr "" "متغير رابع، إن حدد بقيمة 1 سوف يضيف الصفة NOWRAP إلى الخلية الحاوية حتى يصبح " "المخرج بأكمله بدن إعادة تنسيق )القيمة الافتراضية 1(." -#: libraries/messages.inc.php:1173 +#: libraries/messages.inc.php:1169 msgid "" "Displays the contents of the field as-is, without running it through " "htmlspecialchars(). That is, the field is assumed to contain valid HTML." msgstr "يبقي التنسيق الأصلي للحقل. لا يتم عمل أي Escaping." -#: libraries/messages.inc.php:1174 +#: libraries/messages.inc.php:1170 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 " @@ -6260,7 +6260,7 @@ msgstr "" "تظهر صورة ورابط، يتحوي الحقل على اسم الملف، الخيار الأول هو سابقة مثل " "\"http://domain.com/\"، والخيار الثاني هو العرض بالبكسل، والثالث هو الارتفاع." -#: libraries/messages.inc.php:1175 +#: libraries/messages.inc.php:1171 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 " @@ -6269,11 +6269,11 @@ msgstr "" "تظهر رابطا، الحقل يحتوي إسم الملف، والخيار الأول هو سابقة مثل \"http://" "domain.com/\"، والخيار الثاني هو العنوان للرابط." -#: libraries/messages.inc.php:1176 +#: libraries/messages.inc.php:1172 msgid "Formats text as SQL query with syntax highlighting." msgstr "" -#: libraries/messages.inc.php:1177 +#: libraries/messages.inc.php:1173 msgid "" "Displays a part of a string. The first option is the number of characters to " "skip from the beginning of the string (Default 0). The second option is the " @@ -6286,69 +6286,69 @@ msgstr "" "الباقي. الخيار الثالث يعرف أي من الأحرف سوف تضاف إلى المخرجات عند استرجاع " "جزء من النص )... بشكل افتراضي(." -#: libraries/messages.inc.php:1179 server_binlog.php:183 server_binlog.php:186 +#: libraries/messages.inc.php:1175 server_binlog.php:183 server_binlog.php:186 #: server_processlist.php:49 server_processlist.php:51 msgid "Truncate Shown Queries" msgstr "احذف الاستعلامات المعروضة" -#: libraries/messages.inc.php:1180 libraries/mysql_charsets.lib.php:301 +#: libraries/messages.inc.php:1176 libraries/mysql_charsets.lib.php:301 #: libraries/mysql_charsets.lib.php:389 msgid "Turkish" msgstr "التركية" -#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:304 +#: libraries/messages.inc.php:1179 libraries/mysql_charsets.lib.php:304 #: libraries/mysql_charsets.lib.php:386 msgid "Ukrainian" msgstr "الأكرانية" -#: libraries/messages.inc.php:1185 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:1181 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 msgid "Unicode" msgstr "يونيكود" -#: libraries/messages.inc.php:1187 libraries/mysql_charsets.lib.php:398 +#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:398 #: libraries/mysql_charsets.lib.php:405 msgid "unknown" msgstr "غير معروفة" -#: libraries/messages.inc.php:1190 server_privileges.php:1152 +#: libraries/messages.inc.php:1186 server_privileges.php:1152 #, php-format msgid "You have updated the privileges for %s." msgstr "لقد جددت وحدثت الإمتيازات لـ %s." -#: libraries/messages.inc.php:1191 user_password.php:112 +#: libraries/messages.inc.php:1187 user_password.php:112 msgid "The profile has been updated." msgstr "لقد تم تجديد العرض الجانبي." -#: libraries/messages.inc.php:1193 libraries/relation.lib.php:138 +#: libraries/messages.inc.php:1189 libraries/relation.lib.php:138 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "رجاء راجع التوثيق لكيفية تحديث جدول Column_comments." -#: libraries/messages.inc.php:1194 +#: libraries/messages.inc.php:1190 #, php-format msgid "You should upgrade to %s %s or later." msgstr "عليك التحديث إلى %s %s أو لاحقا." -#: libraries/messages.inc.php:1204 tbl_printview.php:314 tbl_structure.php:661 +#: libraries/messages.inc.php:1200 tbl_printview.php:314 tbl_structure.php:661 msgid "Usage" msgstr "المساحة" -#: libraries/messages.inc.php:1205 +#: libraries/messages.inc.php:1201 msgid "Enclose table and field names with backquotes" msgstr "حماية أسماء الجداول و الحقول ب \"`\" " -#: libraries/messages.inc.php:1206 libraries/replication_gui.lib.php:314 +#: libraries/messages.inc.php:1202 libraries/replication_gui.lib.php:314 #: server_privileges.php:740 msgid "Use Host Table" msgstr "استخدم الجدول المضيف" -#: libraries/messages.inc.php:1207 server_privileges.php:848 +#: libraries/messages.inc.php:1203 server_privileges.php:848 #, php-format msgid "The user %s already exists!" msgstr "اسم المستخدم %s موجود مسبقاً!" -#: libraries/messages.inc.php:1209 libraries/replication_gui.lib.php:55 +#: libraries/messages.inc.php:1205 libraries/replication_gui.lib.php:55 #: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245 #: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255 #: server_privileges.php:672 server_privileges.php:675 @@ -6356,35 +6356,35 @@ msgstr "اسم المستخدم %s موجود مسبقاً!" msgid "User name" msgstr "اسم المستخدم" -#: libraries/messages.inc.php:1210 server_privileges.php:1645 +#: libraries/messages.inc.php:1206 server_privileges.php:1645 msgid "The selected user was not found in the privilege table." msgstr "المستخدم المحدد غير موجود في جدول الصلاحيات." -#: libraries/messages.inc.php:1211 server_privileges.php:1365 +#: libraries/messages.inc.php:1207 server_privileges.php:1365 msgid "User overview" msgstr "معلومات المستخدم" -#: libraries/messages.inc.php:1212 server_privileges.php:1261 +#: libraries/messages.inc.php:1208 server_privileges.php:1261 msgid "The selected users have been deleted successfully." msgstr "تم حذف المستخدمين المحددين بنجاح." -#: libraries/messages.inc.php:1213 server_privileges.php:2026 +#: libraries/messages.inc.php:1209 server_privileges.php:2026 #, php-format msgid "Users having access to "%s"" msgstr "المستخدمين ذوي صلاحية الوصول إلى "%s"" -#: libraries/messages.inc.php:1214 main.php:189 server_privileges.php:1350 +#: libraries/messages.inc.php:1210 main.php:189 server_privileges.php:1350 #: server_privileges.php:1497 server_privileges.php:1611 #: server_privileges.php:2029 server_processlist.php:54 msgid "User" msgstr "المستخدم" -#: libraries/messages.inc.php:1215 tbl_change.php:1171 +#: libraries/messages.inc.php:1211 tbl_change.php:1171 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/messages.inc.php:1217 libraries/replication_gui.lib.php:251 +#: libraries/messages.inc.php:1213 libraries/replication_gui.lib.php:251 #: libraries/replication_gui.lib.php:319 libraries/replication_gui.lib.php:342 #: server_privileges.php:678 server_privileges.php:745 #: server_privileges.php:769 server_privileges.php:1889 @@ -6392,7 +6392,7 @@ msgstr "" msgid "Use text field" msgstr "استخدم حقل نص" -#: libraries/messages.inc.php:1221 libraries/sqlvalidator.lib.php:68 +#: libraries/messages.inc.php:1217 libraries/sqlvalidator.lib.php:68 #, php-format msgid "" "The SQL validator could not be initialized. Please check if you have " @@ -6401,84 +6401,84 @@ msgstr "" "لم يمكن تشغيل محقق SQL. الرجاء التأكد مما إذا كنت ثبتت إضافات PHP كما هو " "مشروح في %sالتوثيق%s." -#: libraries/messages.inc.php:1222 libraries/replication_gui.lib.php:111 +#: libraries/messages.inc.php:1218 libraries/replication_gui.lib.php:111 #: server_status.php:627 tbl_change.php:324 tbl_printview.php:370 #: tbl_select.php:139 tbl_structure.php:730 msgid "Value" msgstr "القيمة" -#: libraries/messages.inc.php:1223 libraries/replication_gui.lib.php:110 +#: libraries/messages.inc.php:1219 libraries/replication_gui.lib.php:110 #: libraries/sql_query_form.lib.php:445 server_status.php:626 #: server_variables.php:52 msgid "Variable" msgstr "متغير" -#: libraries/messages.inc.php:1225 server_export.php:21 +#: libraries/messages.inc.php:1221 server_export.php:21 msgid "View dump (schema) of databases" msgstr "اعرض أو احفظ بناء قواعد البيانات." -#: libraries/messages.inc.php:1227 tbl_export.php:23 +#: libraries/messages.inc.php:1223 tbl_export.php:23 msgid "View dump (schema) of table" msgstr "عرض بنية الجدول " -#: libraries/messages.inc.php:1231 view_create.php:142 +#: libraries/messages.inc.php:1227 view_create.php:142 msgid "VIEW name" msgstr "" -#: libraries/messages.inc.php:1237 main.php:205 +#: libraries/messages.inc.php:1233 main.php:205 msgid "Web server" msgstr "خادم الويب" -#: libraries/messages.inc.php:1239 libraries/mysql_charsets.lib.php:277 +#: libraries/messages.inc.php:1235 libraries/mysql_charsets.lib.php:277 #: libraries/mysql_charsets.lib.php:325 msgid "West European" msgstr "أوروبا الغربية" -#: libraries/messages.inc.php:1240 main.php:230 +#: libraries/messages.inc.php:1236 main.php:230 msgid "Wiki" msgstr "ويكي" -#: libraries/messages.inc.php:1241 server_privileges.php:2138 +#: libraries/messages.inc.php:1237 server_privileges.php:2138 msgid "wildcard" msgstr "حرف شامل" -#: libraries/messages.inc.php:1248 +#: libraries/messages.inc.php:1244 msgid "Export contents" msgstr "" -#: libraries/messages.inc.php:1249 +#: libraries/messages.inc.php:1245 msgid "Export functions" msgstr "" -#: libraries/messages.inc.php:1250 +#: libraries/messages.inc.php:1246 msgid "Export procedures" msgstr "" -#: libraries/messages.inc.php:1251 +#: libraries/messages.inc.php:1247 msgid "Export Structure Schemas (recommended)" msgstr "" -#: libraries/messages.inc.php:1252 +#: libraries/messages.inc.php:1248 msgid "Export tables" msgstr "" -#: libraries/messages.inc.php:1253 +#: libraries/messages.inc.php:1249 msgid "Export triggers" msgstr "" -#: libraries/messages.inc.php:1254 +#: libraries/messages.inc.php:1250 msgid "Export views" msgstr "" -#: libraries/messages.inc.php:1255 +#: libraries/messages.inc.php:1251 msgid "XML" msgstr "إكس إم إل" -#: libraries/messages.inc.php:1259 server_privileges.php:592 +#: libraries/messages.inc.php:1255 server_privileges.php:592 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "ملاحظة: تغيير هذه الخيارات للرقم 0 )صفر( يلغي الحد." -#: libraries/messages.inc.php:1260 +#: libraries/messages.inc.php:1256 msgid "\"zipped\"" msgstr "\"مضغوط\"" diff --git a/po/az.po b/po/az.po index 54bcfa375..cf56bdeaf 100644 --- 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-05-13 11:25+0200\n" +"POT-Creation-Date: 2010-05-13 11:30+0200\n" "PO-Revision-Date: 2010-03-12 09:11+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: azerbaijani \n" @@ -13,19 +13,19 @@ msgstr "" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:38 browse_foreigners.php:59 -#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:870 +#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:866 #: server_privileges.php:1475 msgid "Show all" msgstr "Hamısını göster" #: browse_foreigners.php:82 db_operations.php:648 -#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:394 -#: libraries/export/pdf.php:147 libraries/messages.inc.php:597 +#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394 +#: libraries/export/pdf.php:147 libraries/messages.inc.php:593 #: pdf_schema.php:283 pdf_schema.php:1123 pdf_schema.php:1139 msgid "Page number:" msgstr "Sehife Nömresi:" -#: browse_foreigners.php:132 libraries/messages.inc.php:1242 +#: browse_foreigners.php:132 libraries/messages.inc.php:1238 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -35,7 +35,7 @@ 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/db_links.inc.php:75 -#: libraries/messages.inc.php:841 libraries/tbl_links.inc.php:63 +#: libraries/messages.inc.php:837 libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Axtarış" @@ -44,12 +44,12 @@ msgstr "Axtarış" #: db_search.php:362 db_structure.php:567 js/messages.php:48 #: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2267 +#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 #: 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 #: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614 -#: libraries/messages.inc.php:361 libraries/replication_gui.lib.php:73 +#: libraries/messages.inc.php:357 libraries/replication_gui.lib.php:73 #: libraries/replication_gui.lib.php:365 libraries/select_server.lib.php:104 #: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477 #: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782 @@ -69,33 +69,33 @@ msgid "Go" msgstr "Davam" #: browse_foreigners.php:168 browse_foreigners.php:172 -#: libraries/Index.class.php:442 libraries/messages.inc.php:459 +#: libraries/Index.class.php:442 libraries/messages.inc.php:455 #: tbl_tracking.php:320 msgid "Keyname" msgstr "Açar söz" #: browse_foreigners.php:169 browse_foreigners.php:171 -#: libraries/messages.inc.php:252 server_collations.php:55 +#: libraries/messages.inc.php:248 server_collations.php:55 #: server_collations.php:67 server_engines.php:59 server_status.php:628 msgid "Description" msgstr "Haqqında" #: browse_foreigners.php:247 browse_foreigners.php:256 #: browse_foreigners.php:268 browse_foreigners.php:276 -#: libraries/messages.inc.php:1218 +#: libraries/messages.inc.php:1214 msgid "Use this value" msgstr "" -#: db_create.php:46 libraries/messages.inc.php:215 +#: db_create.php:46 libraries/messages.inc.php:211 #, fuzzy, php-format msgid "Database %1$s has been created." msgstr "%s bazası leğv edildi." -#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:232 +#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:228 msgid "Database comment: " msgstr "Baza qısa izahatı: " -#: db_datadict.php:165 libraries/messages.inc.php:1070 +#: db_datadict.php:165 libraries/messages.inc.php:1066 #: libraries/tbl_properties.inc.php:724 pdf_schema.php:1236 #: tbl_operations.php:345 tbl_printview.php:130 msgid "Table comments" @@ -104,7 +104,7 @@ msgstr "Cedvel haqqında qısa izahat" #: db_datadict.php:174 db_qbe.php:174 libraries/Index.class.php:446 #: libraries/export/htmlword.php:244 libraries/export/latex.php:360 #: libraries/export/odt.php:294 libraries/export/texytext.php:233 -#: libraries/messages.inc.php:317 libraries/tbl_properties.inc.php:99 +#: libraries/messages.inc.php:313 libraries/tbl_properties.inc.php:99 #: libraries/tbl_properties.inc.php:275 pdf_schema.php:1262 #: pdf_schema.php:1283 tbl_change.php:308 tbl_indexes.php:189 #: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135 @@ -116,7 +116,7 @@ msgstr "Sahe" #: libraries/db_events.inc.php:31 libraries/db_routines.inc.php:42 #: 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/messages.inc.php:1181 +#: libraries/export/texytext.php:234 libraries/messages.inc.php:1177 #: libraries/tbl_properties.inc.php:100 pdf_schema.php:1263 #: pdf_schema.php:1284 server_privileges.php:2031 tbl_change.php:287 #: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313 @@ -128,7 +128,7 @@ msgstr "Tip" #: db_datadict.php:177 libraries/Index.class.php:449 #: libraries/export/htmlword.php:246 libraries/export/latex.php:360 #: libraries/export/odt.php:300 libraries/export/texytext.php:235 -#: libraries/messages.inc.php:576 libraries/tbl_properties.inc.php:109 +#: libraries/messages.inc.php:572 libraries/tbl_properties.inc.php:109 #: pdf_schema.php:1265 pdf_schema.php:1286 tbl_change.php:323 #: tbl_printview.php:145 tbl_structure.php:181 tbl_tracking.php:276 #: tbl_tracking.php:327 @@ -137,7 +137,7 @@ msgstr "Null" #: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 -#: libraries/export/texytext.php:236 libraries/messages.inc.php:238 +#: libraries/export/texytext.php:236 libraries/messages.inc.php:234 #: libraries/tbl_properties.inc.php:106 pdf_schema.php:1266 #: pdf_schema.php:1287 tbl_printview.php:146 tbl_structure.php:182 #: tbl_tracking.php:277 @@ -146,14 +146,14 @@ msgstr "Başlanğıc deyeri" #: db_datadict.php:182 libraries/export/htmlword.php:249 #: libraries/export/latex.php:362 libraries/export/odt.php:307 -#: libraries/export/texytext.php:238 libraries/messages.inc.php:483 +#: libraries/export/texytext.php:238 libraries/messages.inc.php:479 #: pdf_schema.php:1268 pdf_schema.php:1289 tbl_printview.php:150 msgid "Links to" msgstr "Links to" #: db_datadict.php:184 db_printview.php:112 libraries/export/htmlword.php:252 #: libraries/export/latex.php:365 libraries/export/odt.php:312 -#: libraries/export/texytext.php:241 libraries/messages.inc.php:163 +#: libraries/export/texytext.php:241 libraries/messages.inc.php:159 #: libraries/tbl_properties.inc.php:130 pdf_schema.php:1279 #: pdf_schema.php:1290 tbl_printview.php:152 msgid "Comments" @@ -162,7 +162,7 @@ msgstr "Qısa İzahatlar" #: db_datadict.php:267 libraries/Index.class.php:359 #: 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/messages.inc.php:559 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:555 #: libraries/mult_submits.inc.php:263 pdf_schema.php:1344 #: server_privileges.php:1529 server_privileges.php:1540 #: server_privileges.php:1850 server_privileges.php:1855 @@ -174,7 +174,7 @@ msgstr "Xeyir" #: db_datadict.php:267 libraries/Index.class.php:360 #: libraries/Index.class.php:385 libraries/export/htmlword.php:322 #: libraries/export/latex.php:430 libraries/export/odt.php:368 -#: libraries/export/texytext.php:311 libraries/messages.inc.php:1257 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:1253 #: libraries/mult_submits.inc.php:45 libraries/mult_submits.inc.php:50 #: libraries/mult_submits.inc.php:55 libraries/mult_submits.inc.php:60 #: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:101 @@ -188,112 +188,112 @@ msgstr "Xeyir" msgid "Yes" msgstr "Beli" -#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:670 +#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:666 #: tbl_printview.php:498 msgid "Print" msgstr "Çap et" -#: db_export.php:29 libraries/messages.inc.php:1226 +#: db_export.php:29 libraries/messages.inc.php:1222 msgid "View dump (schema) of database" msgstr "Me'lumat bazasının sxemini göster" #: db_export.php:33 db_printview.php:96 db_qbe.php:102 db_structure.php:51 -#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:568 +#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:564 #: navigation.php:346 msgid "No tables found in database." msgstr "Me'lumat bazasında cedvel yoxdur." -#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:845 +#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:841 #: server_export.php:27 msgid "Select All" msgstr "Hamısını Seç" -#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1188 +#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1184 #: server_export.php:29 msgid "Unselect All" msgstr "Heç birini seçme" -#: db_operations.php:38 libraries/messages.inc.php:213 tbl_create.php:54 +#: db_operations.php:38 libraries/messages.inc.php:209 tbl_create.php:54 #, fuzzy msgid "The database name is empty!" msgstr "Cedveli adı boşdur!" -#: db_operations.php:236 libraries/messages.inc.php:753 +#: db_operations.php:236 libraries/messages.inc.php:749 #, 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 libraries/messages.inc.php:178 +#: db_operations.php:240 libraries/messages.inc.php:174 #, fuzzy, php-format msgid "Database %s has been copied to %s" msgstr "%s cedveli %s - e kopyalandı." -#: db_operations.php:410 libraries/messages.inc.php:236 +#: db_operations.php:410 libraries/messages.inc.php:232 #, fuzzy msgid "Rename database to" msgstr "Cedveli yeniden adlandır" -#: db_operations.php:415 libraries/messages.inc.php:161 +#: db_operations.php:415 libraries/messages.inc.php:157 #: server_processlist.php:57 msgid "Command" msgstr "Komanda Tipi" -#: db_operations.php:425 libraries/messages.inc.php:58 tbl_change.php:1143 +#: db_operations.php:425 libraries/messages.inc.php:54 tbl_change.php:1143 msgid "and then" msgstr "" -#: db_operations.php:451 libraries/messages.inc.php:233 +#: db_operations.php:451 libraries/messages.inc.php:229 #, fuzzy msgid "Copy database to" msgstr "Baza seçilmemişdir ve ya mövcud deyildir." -#: db_operations.php:458 libraries/messages.inc.php:1043 +#: db_operations.php:458 libraries/messages.inc.php:1039 #: tbl_operations.php:526 tbl_tracking.php:388 msgid "Structure only" msgstr "Sadece quruluş" -#: db_operations.php:459 libraries/messages.inc.php:1041 +#: db_operations.php:459 libraries/messages.inc.php:1037 #: tbl_operations.php:527 tbl_tracking.php:390 msgid "Structure and data" msgstr "Quruluş ve me'lumat" -#: db_operations.php:460 libraries/messages.inc.php:229 tbl_operations.php:528 +#: db_operations.php:460 libraries/messages.inc.php:225 tbl_operations.php:528 #: tbl_tracking.php:389 msgid "Data only" msgstr "Sadece me'lumat" -#: db_operations.php:468 libraries/messages.inc.php:186 +#: db_operations.php:468 libraries/messages.inc.php:182 msgid "CREATE DATABASE before copying" msgstr "" #: db_operations.php:471 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 -#: libraries/export/sql.php:82 libraries/messages.inc.php:30 +#: libraries/export/sql.php:82 libraries/messages.inc.php:26 #: tbl_operations.php:534 #, php-format msgid "Add %s" msgstr "" -#: db_operations.php:475 libraries/messages.inc.php:29 tbl_operations.php:297 +#: db_operations.php:475 libraries/messages.inc.php:25 tbl_operations.php:297 #: tbl_operations.php:536 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT deyeri elave et" -#: db_operations.php:479 libraries/messages.inc.php:31 tbl_operations.php:543 +#: db_operations.php:479 libraries/messages.inc.php:27 tbl_operations.php:543 msgid "Add constraints" msgstr "" -#: db_operations.php:492 libraries/messages.inc.php:1059 +#: db_operations.php:492 libraries/messages.inc.php:1055 #, fuzzy msgid "Switch to copied database" msgstr "Kopyalanmış cedvele keç" -#: db_operations.php:533 libraries/messages.inc.php:89 +#: db_operations.php:533 libraries/messages.inc.php:85 msgid "BLOB Repository" msgstr "" #: db_operations.php:536 db_tracking.php:76 libraries/common.lib.php:1350 -#: libraries/messages.inc.php:1037 libraries/server_links.inc.php:49 +#: libraries/messages.inc.php:1033 libraries/server_links.inc.php:49 #: server_processlist.php:59 tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "Status" @@ -305,12 +305,12 @@ msgctxt "BLOB repository" msgid "Enabled" msgstr "Enabled" -#: db_operations.php:548 libraries/messages.inc.php:93 +#: db_operations.php:548 libraries/messages.inc.php:89 #, fuzzy msgid "Disable" msgstr "Söndürülüb" -#: db_operations.php:558 libraries/messages.inc.php:90 +#: db_operations.php:558 libraries/messages.inc.php:86 msgid "Damaged" msgstr "" @@ -327,13 +327,13 @@ msgctxt "BLOB repository" msgid "Disabled" msgstr "Söndürülüb" -#: db_operations.php:574 libraries/messages.inc.php:96 +#: db_operations.php:574 libraries/messages.inc.php:92 #, fuzzy msgid "Enable" msgstr "Enabled" #: db_operations.php:598 libraries/Index.class.php:448 -#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:158 +#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:154 #: 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:361 @@ -343,7 +343,7 @@ msgstr "Enabled" msgid "Collation" msgstr "Quruluş" -#: db_operations.php:609 libraries/messages.inc.php:742 main.php:316 +#: db_operations.php:609 libraries/messages.inc.php:738 main.php:316 #: pdf_schema.php:34 #, php-format msgid "" @@ -353,58 +353,58 @@ msgstr "" "Elaqelendirilmiş cedveller üçün nezerde tutulmuş be'zi xüsusiyyetler " "passivleşdirilmişdir. Sebebini aydınlaşdırmaq üçün %sbax%s." -#: db_operations.php:645 libraries/messages.inc.php:264 pdf_pages.php:528 +#: db_operations.php:645 libraries/messages.inc.php:260 pdf_pages.php:528 msgid "Display PDF schema" msgstr "PDF sxemini göster" -#: db_operations.php:661 libraries/messages.inc.php:877 pdf_pages.php:529 +#: db_operations.php:661 libraries/messages.inc.php:873 pdf_pages.php:529 msgid "Show grid" msgstr "Show grid" -#: db_operations.php:664 libraries/messages.inc.php:874 pdf_pages.php:530 +#: db_operations.php:664 libraries/messages.inc.php:870 pdf_pages.php:530 msgid "Show color" msgstr "Rengini göster" -#: db_operations.php:666 libraries/messages.inc.php:998 pdf_pages.php:531 +#: db_operations.php:666 libraries/messages.inc.php:994 pdf_pages.php:531 msgid "Show dimension of tables" msgstr "Cedvellerin ölçülerini göster" -#: db_operations.php:669 libraries/messages.inc.php:52 pdf_pages.php:532 +#: db_operations.php:669 libraries/messages.inc.php:48 pdf_pages.php:532 msgid "Display all tables with the same width" msgstr "eyni enli bütün cedveller gösterilsinmi?" -#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:227 +#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:223 #: pdf_pages.php:533 msgid "Data Dictionary" msgstr "Me'lumat lüğeti" -#: db_operations.php:674 libraries/messages.inc.php:884 pdf_pages.php:534 +#: db_operations.php:674 libraries/messages.inc.php:880 pdf_pages.php:534 msgid "Only show keys" msgstr "" -#: db_operations.php:676 libraries/messages.inc.php:875 pdf_pages.php:535 +#: db_operations.php:676 libraries/messages.inc.php:871 pdf_pages.php:535 msgid "Data Dictionary Format" msgstr "Data Dictionary Format" -#: db_operations.php:678 libraries/messages.inc.php:464 pdf_pages.php:537 +#: db_operations.php:678 libraries/messages.inc.php:460 pdf_pages.php:537 msgid "Landscape" msgstr "Landşaft" -#: db_operations.php:679 libraries/messages.inc.php:663 pdf_pages.php:538 +#: db_operations.php:679 libraries/messages.inc.php:659 pdf_pages.php:538 msgid "Portrait" msgstr "Portret" -#: db_operations.php:682 libraries/messages.inc.php:599 pdf_pages.php:541 +#: db_operations.php:682 libraries/messages.inc.php:595 pdf_pages.php:541 msgid "Paper size" msgstr "" -#: db_operations.php:706 libraries/messages.inc.php:281 +#: db_operations.php:706 libraries/messages.inc.php:277 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 libraries/messages.inc.php:1087 +#: libraries/header.inc.php:126 libraries/messages.inc.php:1083 #: pdf_pages.php:405 server_privileges.php:1626 server_privileges.php:1682 #: server_privileges.php:1946 server_synchronize.php:423 #: server_synchronize.php:866 tbl_tracking.php:592 test/theme.php:75 @@ -412,176 +412,176 @@ msgid "Table" msgstr "Cedvel" #: db_printview.php:105 libraries/db_structure.lib.php:56 -#: libraries/messages.inc.php:735 +#: libraries/messages.inc.php:731 msgid "Records" msgstr "Setr sayı" #: db_printview.php:109 libraries/db_structure.lib.php:67 -#: libraries/messages.inc.php:1003 tbl_indexes.php:190 +#: libraries/messages.inc.php:999 tbl_indexes.php:190 msgid "Size" msgstr "Boy" #: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 -#: libraries/export/sql.php:899 libraries/messages.inc.php:436 +#: libraries/export/sql.php:899 libraries/messages.inc.php:432 msgid "in use" msgstr "istifadede" #: db_printview.php:187 libraries/db_info.inc.php:88 -#: libraries/export/sql.php:514 libraries/messages.inc.php:1032 +#: libraries/export/sql.php:514 libraries/messages.inc.php:1028 #: pdf_schema.php:1241 tbl_printview.php:434 tbl_structure.php:810 msgid "Creation" msgstr "Quruluş" #: db_printview.php:196 libraries/db_info.inc.php:93 -#: libraries/export/sql.php:519 libraries/messages.inc.php:1036 +#: libraries/export/sql.php:519 libraries/messages.inc.php:1032 #: pdf_schema.php:1246 tbl_printview.php:444 tbl_structure.php:818 msgid "Last update" msgstr "En son yenilenme" #: db_printview.php:205 libraries/db_info.inc.php:98 -#: libraries/export/sql.php:524 libraries/messages.inc.php:1031 +#: libraries/export/sql.php:524 libraries/messages.inc.php:1027 #: pdf_schema.php:1251 tbl_printview.php:454 tbl_structure.php:826 msgid "Last check" msgstr "En son yoxlama" -#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1085 +#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1081 #, php-format msgid "%s table(s)" msgstr "%s cedvel" #: db_qbe.php:29 libraries/display_tbl.lib.php:1981 -#: libraries/messages.inc.php:1051 libraries/sql_query_form.lib.php:140 +#: libraries/messages.inc.php:1047 libraries/sql_query_form.lib.php:140 #: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131 #: view_operations.php:62 msgid "Your SQL query has been executed successfully" msgstr "SQL sorğunuz müveffeqiyyetle icra edilmişdir" -#: db_qbe.php:42 libraries/messages.inc.php:371 +#: db_qbe.php:42 libraries/messages.inc.php:367 msgid "You have to choose at least one column to display" msgstr "Gösterilmesi üçün en az bir sütun seçmelisiniz" #: db_qbe.php:200 libraries/db_structure.lib.php:104 -#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1014 +#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1010 msgid "Sort" msgstr "Sırala" #: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111 #: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828 -#: libraries/messages.inc.php:69 server_databases.php:170 +#: libraries/messages.inc.php:65 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314 msgid "Ascending" msgstr "Artan sırada" #: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119 #: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825 -#: libraries/messages.inc.php:251 server_databases.php:170 +#: libraries/messages.inc.php:247 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315 msgid "Descending" msgstr "Azalan sırada" #: db_qbe.php:264 db_tracking.php:78 libraries/display_tbl.lib.php:308 -#: libraries/messages.inc.php:888 tbl_change.php:277 tbl_tracking.php:597 +#: libraries/messages.inc.php:884 tbl_change.php:277 tbl_tracking.php:597 msgid "Show" msgstr "Göster" -#: db_qbe.php:300 libraries/messages.inc.php:202 +#: db_qbe.php:300 libraries/messages.inc.php:198 msgid "Criteria" msgstr "Kriteriyalar" #: db_qbe.php:353 db_qbe.php:435 db_qbe.php:527 db_qbe.php:558 -#: libraries/messages.inc.php:718 +#: libraries/messages.inc.php:714 msgid "Ins" msgstr "Ins" #: db_qbe.php:357 db_qbe.php:439 db_qbe.php:524 db_qbe.php:555 -#: libraries/messages.inc.php:56 +#: libraries/messages.inc.php:52 msgid "And" msgstr "Ve" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:529 db_qbe.php:560 -#: libraries/messages.inc.php:717 +#: libraries/messages.inc.php:713 msgid "Del" 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/messages.inc.php:592 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:588 #: libraries/tbl_properties.inc.php:779 server_privileges.php:258 #: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288 msgid "Or" msgstr "ya da" -#: db_qbe.php:507 libraries/messages.inc.php:516 +#: db_qbe.php:507 libraries/messages.inc.php:512 msgid "Modify" msgstr "Modify" -#: db_qbe.php:584 libraries/messages.inc.php:33 +#: db_qbe.php:584 libraries/messages.inc.php:29 msgid "Add/Delete Criteria Row" msgstr "Kriteria Setirlerini Elave Et/Sil" -#: db_qbe.php:596 libraries/messages.inc.php:32 +#: db_qbe.php:596 libraries/messages.inc.php:28 msgid "Add/Delete Field Columns" msgstr "Sahe Sütunlarını Elave Et/Sil" -#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1192 +#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1188 msgid "Update Query" msgstr "Sorğunu Yenile" -#: db_qbe.php:617 libraries/messages.inc.php:1216 +#: db_qbe.php:617 libraries/messages.inc.php:1212 msgid "Use Tables" msgstr "Use Tables" -#: db_qbe.php:640 libraries/messages.inc.php:723 +#: db_qbe.php:640 libraries/messages.inc.php:719 #, php-format msgid "SQL query on database %s:" msgstr "SQL-query on database %s:" -#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:823 +#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:819 msgid "Submit Query" msgstr "Emri İcra Et" #: db_search.php:68 libraries/auth/config.auth.lib.php:84 #: libraries/auth/config.auth.lib.php:103 #: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52 -#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:26 +#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:22 msgid "Access denied" msgstr "Giriş Tesdiq Edilmedi" -#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:836 +#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:832 msgid "at least one of the words" msgstr "sözlerin en azından birini" -#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:837 +#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:833 msgid "all words" msgstr "bütün sözleri" -#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:838 +#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:834 msgid "the exact phrase" msgstr "tamamile eyni sözü" -#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:839 +#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:835 msgid "as regular expression" msgstr "requlyar ifade (regular expression) olaraq" -#: db_search.php:242 libraries/messages.inc.php:840 +#: db_search.php:242 libraries/messages.inc.php:836 #, php-format msgid "Search results for \"%s\" %s:" msgstr "\"%s\" üçün axtarış neticeleri %s:" -#: db_search.php:260 libraries/messages.inc.php:579 +#: db_search.php:260 libraries/messages.inc.php:575 #, php-format msgid "%s match(es) inside table %s" 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/messages.inc.php:108 +#: db_structure.php:105 libraries/messages.inc.php:104 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468 msgid "Browse" msgstr "İçindekiler" #: db_search.php:272 libraries/display_tbl.lib.php:1165 -#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:243 +#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:239 #: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406 #: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377 #: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216 @@ -589,45 +589,45 @@ msgstr "İçindekiler" msgid "Delete" msgstr "Sil" -#: db_search.php:285 libraries/messages.inc.php:580 +#: db_search.php:285 libraries/messages.inc.php:576 #, php-format msgid "Total: %s match(es)" msgstr "Cemi: %s uyğunluq" -#: db_search.php:299 libraries/messages.inc.php:832 +#: db_search.php:299 libraries/messages.inc.php:828 msgid "Search in database" msgstr "Search in database" -#: db_search.php:302 libraries/messages.inc.php:835 +#: db_search.php:302 libraries/messages.inc.php:831 msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgstr "Axtarmaq üçün söz(ler) ve ya deyer(ler) (wildcard: \"%\"):" -#: db_search.php:307 libraries/messages.inc.php:842 +#: db_search.php:307 libraries/messages.inc.php:838 msgid "Find:" msgstr "Tap:" -#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1017 +#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1013 msgid "Words are separated by a space character (\" \")." msgstr "Sözler boşluq ifadesi (\" \") ile ayrılmışdır." -#: db_search.php:325 libraries/messages.inc.php:834 +#: db_search.php:325 libraries/messages.inc.php:830 msgid "Inside table(s):" msgstr "Inside table(s):" -#: db_search.php:355 libraries/messages.inc.php:833 +#: db_search.php:355 libraries/messages.inc.php:829 msgid "Inside field:" 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/messages.inc.php:431 libraries/sql_query_form.lib.php:334 +#: libraries/messages.inc.php:427 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/db_links.inc.php:63 libraries/export/latex.php:337 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:1048 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:1044 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 #: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269 msgid "Structure" @@ -636,8 +636,8 @@ 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:1642 -#: libraries/db_links.inc.php:100 libraries/messages.inc.php:272 +#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/db_links.inc.php:100 libraries/messages.inc.php:268 #: 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 @@ -647,40 +647,40 @@ 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:1641 -#: libraries/messages.inc.php:284 libraries/mult_submits.inc.php:39 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: libraries/messages.inc.php:280 libraries/mult_submits.inc.php:39 #: libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Boşalt" -#: db_structure.php:316 libraries/messages.inc.php:1075 +#: db_structure.php:316 libraries/messages.inc.php:1071 #: libraries/tbl_links.inc.php:100 #, php-format msgid "Table %s has been emptied" msgstr "%s cedveli boşaldıldı" -#: db_structure.php:326 libraries/messages.inc.php:1229 +#: db_structure.php:326 libraries/messages.inc.php:1225 #: 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/messages.inc.php:1074 +#: db_structure.php:326 libraries/messages.inc.php:1070 #: libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "%s cedveli leğv edildi" -#: db_structure.php:333 libraries/messages.inc.php:1128 +#: db_structure.php:333 libraries/messages.inc.php:1124 msgid "Tracking is active." msgstr "" -#: db_structure.php:335 libraries/messages.inc.php:1129 +#: db_structure.php:335 libraries/messages.inc.php:1125 msgid "Tracking is not active." msgstr "" #: db_structure.php:420 libraries/display_tbl.lib.php:1944 -#: libraries/messages.inc.php:1228 +#: libraries/messages.inc.php:1224 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -688,84 +688,84 @@ msgid "" msgstr "" #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 -#: libraries/messages.inc.php:1233 libraries/tbl_info.inc.php:66 +#: libraries/messages.inc.php:1229 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/messages.inc.php:773 libraries/server_links.inc.php:70 +#: libraries/messages.inc.php:769 libraries/server_links.inc.php:70 #: server_replication.php:33 server_replication.php:164 server_status.php:258 #, fuzzy msgid "Replication" msgstr "Relations" -#: db_structure.php:489 libraries/messages.inc.php:1053 +#: db_structure.php:489 libraries/messages.inc.php:1049 msgid "Sum" msgstr "Cemi" #: db_structure.php:496 libraries/StorageEngine.class.php:356 -#: libraries/messages.inc.php:239 +#: libraries/messages.inc.php:235 #, 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 #: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086 -#: libraries/messages.inc.php:1243 libraries/mult_submits.inc.php:16 +#: libraries/messages.inc.php:1239 libraries/mult_submits.inc.php:16 #: server_databases.php:346 server_databases.php:351 #: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465 msgid "With selected:" msgstr "Seçilenleri:" #: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: libraries/messages.inc.php:148 server_databases.php:348 +#: libraries/messages.inc.php:144 server_databases.php:348 #: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459 msgid "Check All" msgstr "Hamısını Seç" #: db_structure.php:531 libraries/display_tbl.lib.php:2077 -#: libraries/messages.inc.php:1184 libraries/replication_gui.lib.php:33 +#: libraries/messages.inc.php:1180 libraries/replication_gui.lib.php:33 #: server_databases.php:350 server_privileges.php:533 #: server_privileges.php:1564 tbl_structure.php:463 msgid "Uncheck All" msgstr "Heç Birini Seçme" -#: db_structure.php:536 libraries/messages.inc.php:150 +#: db_structure.php:536 libraries/messages.inc.php:146 msgid "Check tables having overhead" msgstr "" #: db_structure.php:547 db_structure.php:548 db_structure.php:599 -#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:672 +#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:668 #: libraries/mult_submits.inc.php:28 tbl_structure.php:493 #: tbl_structure.php:495 msgid "Print view" msgstr "Çap görüntüsü" -#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:153 +#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:149 #: libraries/mult_submits.inc.php:42 tbl_operations.php:579 msgid "Check table" msgstr "Cedveli yoxla" -#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:590 +#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:586 #: libraries/mult_submits.inc.php:47 tbl_operations.php:619 #: tbl_structure.php:710 tbl_structure.php:712 msgid "Optimize table" msgstr "Cedveli optimallaşdır" -#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:758 +#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:754 #: libraries/mult_submits.inc.php:52 tbl_operations.php:609 msgid "Repair table" msgstr "Cedveli te'mir et" -#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:55 +#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:51 #: libraries/mult_submits.inc.php:57 tbl_operations.php:599 msgid "Analyze table" msgstr "Cedveli analiz et" #: db_structure.php:557 db_structure.php:558 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/messages.inc.php:310 +#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:306 #: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84 #: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109 #: server_privileges.php:1341 setup/frames/menu.inc.php:22 @@ -773,7 +773,7 @@ msgstr "Cedveli analiz et" msgid "Export" msgstr "Eksport" -#: db_tracking.php:66 libraries/messages.inc.php:1151 +#: db_tracking.php:66 libraries/messages.inc.php:1147 msgid "Tracked tables" msgstr "" @@ -781,7 +781,7 @@ msgstr "" #: 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/header_printview.inc.php:58 libraries/messages.inc.php:212 +#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:208 #: navigation.php:233 server_databases.php:169 server_privileges.php:1621 #: server_privileges.php:1682 server_privileges.php:1940 #: server_processlist.php:56 server_synchronize.php:1179 @@ -789,81 +789,81 @@ msgstr "" msgid "Database" msgstr "Me'lumat Bazası" -#: db_tracking.php:73 libraries/messages.inc.php:1146 +#: db_tracking.php:73 libraries/messages.inc.php:1142 msgid "Last version" msgstr "" -#: db_tracking.php:74 libraries/messages.inc.php:1145 tbl_tracking.php:594 +#: db_tracking.php:74 libraries/messages.inc.php:1141 tbl_tracking.php:594 #, fuzzy msgid "Created" msgstr "Qur" -#: db_tracking.php:75 libraries/messages.inc.php:1147 tbl_tracking.php:595 +#: db_tracking.php:75 libraries/messages.inc.php:1143 tbl_tracking.php:595 msgid "Updated" msgstr "" #: db_tracking.php:77 libraries/Index.class.php:440 -#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:27 +#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:23 #: server_databases.php:203 server_privileges.php:1503 #: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187 msgid "Action" msgstr "Fealiyyetler" -#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:247 +#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:243 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:106 libraries/messages.inc.php:1142 tbl_tracking.php:548 +#: db_tracking.php:106 libraries/messages.inc.php:1138 tbl_tracking.php:548 #: tbl_tracking.php:606 tbl_tracking.php:613 msgid "active" msgstr "" -#: db_tracking.php:108 libraries/messages.inc.php:1143 tbl_tracking.php:550 +#: db_tracking.php:108 libraries/messages.inc.php:1139 tbl_tracking.php:550 #: tbl_tracking.php:608 tbl_tracking.php:610 msgid "not active" msgstr "" -#: db_tracking.php:121 libraries/messages.inc.php:1160 +#: db_tracking.php:121 libraries/messages.inc.php:1156 #, fuzzy msgid "Versions" msgstr "Emeliyyatlar" -#: db_tracking.php:122 libraries/messages.inc.php:1132 tbl_tracking.php:379 +#: db_tracking.php:122 libraries/messages.inc.php:1128 tbl_tracking.php:379 #: tbl_tracking.php:624 msgid "Tracking report" msgstr "" -#: db_tracking.php:123 libraries/messages.inc.php:1144 tbl_tracking.php:251 +#: db_tracking.php:123 libraries/messages.inc.php:1140 tbl_tracking.php:251 #: tbl_tracking.php:624 #, fuzzy msgid "Structure snapshot" msgstr "Sadece quruluş" -#: db_tracking.php:152 libraries/messages.inc.php:1154 +#: db_tracking.php:152 libraries/messages.inc.php:1150 msgid "Untracked tables" msgstr "" -#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1153 +#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1149 #: tbl_structure.php:529 tbl_structure.php:531 #, fuzzy msgid "Track table" msgstr "Cedveli yoxla" -#: db_tracking.php:200 libraries/messages.inc.php:1121 +#: db_tracking.php:200 libraries/messages.inc.php:1117 #, fuzzy msgid "Database Log" msgstr "Me'lumat Bazası" -#: export.php:62 libraries/messages.inc.php:312 +#: export.php:62 libraries/messages.inc.php:308 msgid "Selected export type has to be saved in file!" msgstr "" -#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:567 +#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:563 #, php-format msgid "Insufficient space to save the file %s." msgstr "%s faylını saxlamaq üçün lazım olan yer çatışmır." -#: export.php:294 libraries/messages.inc.php:324 +#: export.php:294 libraries/messages.inc.php:320 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -871,17 +871,17 @@ msgstr "" "%s faylı serverda onsuz da mövcuddur, ya faylın adını deyişdir ya da üzerine " "yazma variantlarını." -#: export.php:298 export.php:302 libraries/messages.inc.php:562 +#: export.php:298 export.php:302 libraries/messages.inc.php:558 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Webserver-in %s faylını saxlama izni yoxdur." -#: export.php:629 libraries/messages.inc.php:276 +#: export.php:629 libraries/messages.inc.php:272 #, php-format msgid "Dump has been saved to file %s." msgstr "Sxem %s faylına qeyd edildi." -#: import.php:60 libraries/messages.inc.php:1202 +#: import.php:60 libraries/messages.inc.php:1198 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation%" @@ -889,21 +889,21 @@ msgid "" msgstr "" #: import.php:279 import.php:332 libraries/File.class.php:849 -#: libraries/File.class.php:961 libraries/messages.inc.php:325 +#: libraries/File.class.php:961 libraries/messages.inc.php:321 msgid "File could not be read" msgstr "Fayl oxuna bilmir" #: import.php:287 import.php:296 import.php:315 import.php:324 #: libraries/File.class.php:1031 libraries/File.class.php:1039 #: libraries/File.class.php:1055 libraries/File.class.php:1063 -#: libraries/messages.inc.php:1189 +#: libraries/messages.inc.php:1185 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." msgstr "" -#: import.php:337 libraries/messages.inc.php:547 +#: import.php:337 libraries/messages.inc.php:543 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -911,41 +911,41 @@ msgid "" msgstr "" #: import.php:372 libraries/display_import.lib.php:24 -#: libraries/messages.inc.php:125 +#: libraries/messages.inc.php:121 msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:397 libraries/messages.inc.php:102 +#: import.php:397 libraries/messages.inc.php:98 msgid "The bookmark has been deleted." msgstr "Bookmark silindi." -#: import.php:401 libraries/messages.inc.php:879 +#: import.php:401 libraries/messages.inc.php:875 msgid "Showing bookmark" msgstr "" -#: import.php:403 libraries/messages.inc.php:101 +#: import.php:403 libraries/messages.inc.php:97 #, php-format msgid "Bookmark %s created" msgstr "" -#: import.php:409 import.php:415 libraries/messages.inc.php:407 +#: import.php:409 import.php:415 libraries/messages.inc.php:403 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" -#: import.php:424 libraries/messages.inc.php:1107 +#: import.php:424 libraries/messages.inc.php:1103 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: index.php:190 libraries/messages.inc.php:553 +#: index.php:190 libraries/messages.inc.php:549 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" "phpMyAdmin frame-destekli görüntüleyicilerle (browser) daha yaxşı " "işleyir." -#: js/messages.php:25 libraries/messages.inc.php:155 +#: js/messages.php:25 libraries/messages.inc.php:151 #: server_synchronize.php:345 server_synchronize.php:357 #: server_synchronize.php:373 server_synchronize.php:380 #: server_synchronize.php:739 server_synchronize.php:767 @@ -953,118 +953,118 @@ msgstr "" msgid "Click to select" msgstr "" -#: js/messages.php:26 libraries/messages.inc.php:156 +#: js/messages.php:26 libraries/messages.inc.php:152 msgid "Click to unselect" msgstr "" #: js/messages.php:27 libraries/import.lib.php:103 -#: libraries/messages.inc.php:550 sql.php:89 +#: libraries/messages.inc.php:546 sql.php:89 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" ifadeleri söndürülmüşdür (disabled)." -#: js/messages.php:30 libraries/messages.inc.php:270 +#: js/messages.php:30 libraries/messages.inc.php:266 #: libraries/mult_submits.inc.php:258 sql.php:188 msgid "Do you really want to " msgstr "Aşağıdakı sorğunu icra etdirmekten eminsiniz " -#: js/messages.php:31 libraries/messages.inc.php:271 +#: js/messages.php:31 libraries/messages.inc.php:267 #: libraries/mult_submits.inc.php:258 sql.php:172 msgid "You are about to DESTROY a complete database!" msgstr "Bütün bazanı YOX ETMEK üzeresiniz!" -#: js/messages.php:34 libraries/messages.inc.php:94 +#: js/messages.php:34 libraries/messages.inc.php:90 msgid "You are about to DISABLE a BLOB Repository!" msgstr "" -#: js/messages.php:35 libraries/messages.inc.php:91 +#: js/messages.php:35 libraries/messages.inc.php:87 #, php-format msgid "Are you sure you want to disable all BLOB references for database %s?" msgstr "" -#: js/messages.php:38 libraries/messages.inc.php:342 +#: js/messages.php:38 libraries/messages.inc.php:338 msgid "Missing value in the form!" msgstr "Formda eksik girilmiş deyer var!" -#: js/messages.php:39 libraries/messages.inc.php:570 +#: js/messages.php:39 libraries/messages.inc.php:566 msgid "This is not a number!" msgstr "Bu reqem deyildir!" -#: js/messages.php:42 libraries/messages.inc.php:380 +#: js/messages.php:42 libraries/messages.inc.php:376 msgid "The host name is empty!" msgstr "Host adı boşdur!" -#: js/messages.php:43 libraries/messages.inc.php:1208 +#: js/messages.php:43 libraries/messages.inc.php:1204 msgid "The user name is empty!" msgstr "İstifadeçi adı boş qaldı!" -#: js/messages.php:44 libraries/messages.inc.php:607 +#: js/messages.php:44 libraries/messages.inc.php:603 #: server_privileges.php:1197 user_password.php:70 msgid "The password is empty!" msgstr "Parol boşdur!" -#: js/messages.php:45 libraries/messages.inc.php:609 +#: js/messages.php:45 libraries/messages.inc.php:605 #: server_privileges.php:1195 user_password.php:73 msgid "The passwords aren't the same!" msgstr "Girdiyiniz parollar eyni deyil!" -#: js/messages.php:49 libraries/messages.inc.php:123 pmd_general.php:342 +#: js/messages.php:49 libraries/messages.inc.php:119 pmd_general.php:342 #: pmd_general.php:379 msgid "Cancel" msgstr "" -#: js/messages.php:52 libraries/messages.inc.php:514 +#: js/messages.php:52 libraries/messages.inc.php:510 msgid "Modifications have been saved" msgstr "Modifications have been saved" -#: js/messages.php:53 libraries/messages.inc.php:741 +#: js/messages.php:53 libraries/messages.inc.php:737 #, fuzzy msgid "Relation deleted" msgstr "Relation view" -#: js/messages.php:54 libraries/messages.inc.php:340 +#: js/messages.php:54 libraries/messages.inc.php:336 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:55 libraries/messages.inc.php:434 +#: js/messages.php:55 libraries/messages.inc.php:430 #, fuzzy msgid "Internal relation added" msgstr "Ümumi elaqe variantları" -#: js/messages.php:56 libraries/messages.inc.php:299 +#: js/messages.php:56 libraries/messages.inc.php:295 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:57 libraries/messages.inc.php:300 +#: js/messages.php:57 libraries/messages.inc.php:296 msgid "Error: relation already exists." msgstr "" -#: js/messages.php:58 libraries/messages.inc.php:302 +#: js/messages.php:58 libraries/messages.inc.php:298 msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:59 libraries/messages.inc.php:351 +#: js/messages.php:59 libraries/messages.inc.php:347 #: libraries/relation.lib.php:107 msgid "General relation features" msgstr "Ümumi elaqe variantları" -#: js/messages.php:59 libraries/messages.inc.php:260 +#: js/messages.php:59 libraries/messages.inc.php:256 #: libraries/relation.lib.php:101 libraries/relation.lib.php:108 msgid "Disabled" msgstr "Söndürülüb" -#: js/messages.php:60 libraries/messages.inc.php:850 +#: js/messages.php:60 libraries/messages.inc.php:846 msgid "Select referenced key" msgstr "" -#: js/messages.php:61 libraries/messages.inc.php:848 +#: js/messages.php:61 libraries/messages.inc.php:844 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:62 libraries/messages.inc.php:653 +#: js/messages.php:62 libraries/messages.inc.php:649 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:63 libraries/messages.inc.php:142 pmd_general.php:77 +#: js/messages.php:63 libraries/messages.inc.php:138 pmd_general.php:77 #: tbl_relation.php:548 msgid "Choose field to display" msgstr "Gösterilecek Saheni Seç" @@ -1084,9 +1084,9 @@ msgid "Prev" msgstr "Evvelki" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2332 -#: libraries/common.lib.php:2335 libraries/display_tbl.lib.php:338 -#: libraries/messages.inc.php:543 server_binlog.php:205 server_binlog.php:207 +#: js/messages.php:77 libraries/common.lib.php:2344 +#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: libraries/messages.inc.php:539 server_binlog.php:205 server_binlog.php:207 #: tbl_printview.php:424 tbl_structure.php:802 msgid "Next" msgstr "Sonrakı" @@ -1161,27 +1161,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1543 +#: js/messages.php:97 libraries/common.lib.php:1555 msgid "Jan" msgstr "Yan" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1545 +#: js/messages.php:99 libraries/common.lib.php:1557 msgid "Feb" msgstr "Fev" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1547 +#: js/messages.php:101 libraries/common.lib.php:1559 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1549 +#: js/messages.php:103 libraries/common.lib.php:1561 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1551 +#: js/messages.php:105 libraries/common.lib.php:1563 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1189,37 +1189,37 @@ msgid "May" msgstr "May" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1553 +#: js/messages.php:107 libraries/common.lib.php:1565 msgid "Jun" msgstr "İyun" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1555 +#: js/messages.php:109 libraries/common.lib.php:1567 msgid "Jul" msgstr "İyul" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1557 +#: js/messages.php:111 libraries/common.lib.php:1569 msgid "Aug" msgstr "Avq" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1559 +#: js/messages.php:113 libraries/common.lib.php:1571 msgid "Sep" msgstr "Sent" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1561 +#: js/messages.php:115 libraries/common.lib.php:1573 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1563 +#: js/messages.php:117 libraries/common.lib.php:1575 msgid "Nov" msgstr "Noy" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1565 +#: js/messages.php:119 libraries/common.lib.php:1577 msgid "Dec" msgstr "Dek" @@ -1260,37 +1260,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1568 +#: js/messages.php:132 libraries/common.lib.php:1580 msgid "Sun" msgstr "Baz" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1570 +#: js/messages.php:134 libraries/common.lib.php:1582 msgid "Mon" msgstr "Baz Ert" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1572 +#: js/messages.php:136 libraries/common.lib.php:1584 msgid "Tue" msgstr "Çerş Axş" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1574 +#: js/messages.php:138 libraries/common.lib.php:1586 msgid "Wed" msgstr "Çerş" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1576 +#: js/messages.php:140 libraries/common.lib.php:1588 msgid "Thu" msgstr "Cüme Axş" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1578 +#: js/messages.php:142 libraries/common.lib.php:1590 msgid "Fri" msgstr "Cüme" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1580 +#: js/messages.php:144 libraries/common.lib.php:1592 msgid "Sat" msgstr "Şen" @@ -1364,76 +1364,76 @@ msgstr "istifadede" msgid "Second" msgstr "saniyede" -#: libraries/Config.class.php:1015 libraries/messages.inc.php:338 +#: libraries/Config.class.php:1015 libraries/messages.inc.php:334 msgid "Font size" msgstr "" #: libraries/File.class.php:344 libraries/File.class.php:432 #: libraries/File.class.php:569 libraries/File.class.php:708 -#: libraries/messages.inc.php:1201 +#: libraries/messages.inc.php:1197 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.class.php:414 libraries/messages.inc.php:1198 +#: libraries/File.class.php:414 libraries/messages.inc.php:1194 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:417 libraries/messages.inc.php:1197 +#: libraries/File.class.php:417 libraries/messages.inc.php:1193 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:420 libraries/messages.inc.php:1200 +#: libraries/File.class.php:420 libraries/messages.inc.php:1196 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:423 libraries/messages.inc.php:1199 +#: libraries/File.class.php:423 libraries/messages.inc.php:1195 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:426 libraries/messages.inc.php:1195 +#: libraries/File.class.php:426 libraries/messages.inc.php:1191 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:429 libraries/messages.inc.php:1196 +#: libraries/File.class.php:429 libraries/messages.inc.php:1192 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:908 libraries/messages.inc.php:319 +#: libraries/File.class.php:908 libraries/messages.inc.php:315 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "" -#: libraries/Index.class.php:428 libraries/messages.inc.php:554 +#: libraries/Index.class.php:428 libraries/messages.inc.php:550 #: tbl_relation.php:529 msgid "No index defined!" msgstr "İndeks te'yin edilmedi!" -#: libraries/Index.class.php:433 libraries/messages.inc.php:411 +#: libraries/Index.class.php:433 libraries/messages.inc.php:407 #: server_databases.php:132 tbl_tracking.php:316 msgid "Indexes" msgstr "Indeksler" -#: libraries/Index.class.php:444 libraries/messages.inc.php:1186 +#: libraries/Index.class.php:444 libraries/messages.inc.php:1182 #: 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:475 tbl_tracking.php:322 msgid "Unique" msgstr "Unikal" -#: libraries/Index.class.php:445 libraries/messages.inc.php:596 +#: libraries/Index.class.php:445 libraries/messages.inc.php:592 #: tbl_tracking.php:323 msgid "Packed" msgstr "" -#: libraries/Index.class.php:447 libraries/messages.inc.php:131 +#: libraries/Index.class.php:447 libraries/messages.inc.php:127 #: tbl_tracking.php:325 msgid "Cardinality" msgstr "Cardinality" -#: libraries/Index.class.php:450 libraries/messages.inc.php:162 +#: libraries/Index.class.php:450 libraries/messages.inc.php:158 #: tbl_tracking.php:279 tbl_tracking.php:328 #, fuzzy msgid "Comment" @@ -1442,29 +1442,29 @@ msgstr "Qısa İzahatlar" #: libraries/Index.class.php:466 libraries/common.lib.php:616 #: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:280 pdf_pages.php:280 +#: libraries/messages.inc.php:276 pdf_pages.php:280 #: setup/frames/index.inc.php:124 setup/lib/messages.inc.php:352 #: tbl_row_action.php:69 msgid "Edit" msgstr "Deyişdir" -#: libraries/Index.class.php:472 libraries/messages.inc.php:666 +#: libraries/Index.class.php:472 libraries/messages.inc.php:662 msgid "The primary key has been dropped" msgstr "Birinci dereceli açar leğv edildi" -#: libraries/Index.class.php:476 libraries/messages.inc.php:413 +#: libraries/Index.class.php:476 libraries/messages.inc.php:409 #, php-format msgid "Index %s has been dropped" msgstr "%s indeksi leğv edildi" -#: libraries/Index.class.php:576 libraries/messages.inc.php:412 +#: libraries/Index.class.php:576 libraries/messages.inc.php:408 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "" -#: libraries/List_Database.class.php:431 libraries/messages.inc.php:218 +#: libraries/List_Database.class.php:431 libraries/messages.inc.php:214 #: libraries/server_links.inc.php:41 server_databases.php:88 #: server_privileges.php:1621 setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" @@ -1491,85 +1491,85 @@ msgid_plural "%1$d rows inserted." msgstr[0] "" msgstr[1] "" -#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:549 +#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:545 msgid "" "There is no detailed status information available for this storage engine." msgstr "Bu depolama motoru haqqında etrafli status me'lumatı mövcud deyildir." -#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:291 +#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:287 #, fuzzy, php-format msgid "%s is available on this MySQL server." msgstr "%s motoru bu serverde söndürülmüşdür." -#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:292 +#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:288 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s motoru bu serverde söndürülmüşdür." -#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:294 +#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:290 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "Bu MySQL server %s depolama motorunu desteklememektedir." -#: libraries/Table.class.php:1019 libraries/messages.inc.php:443 +#: libraries/Table.class.php:1019 libraries/messages.inc.php:439 msgid "Invalid database" msgstr "" -#: libraries/Table.class.php:1033 libraries/messages.inc.php:450 +#: libraries/Table.class.php:1033 libraries/messages.inc.php:446 #: tbl_get_field.php:26 msgid "Invalid table name" msgstr "" -#: libraries/Table.class.php:1048 libraries/messages.inc.php:301 +#: libraries/Table.class.php:1048 libraries/messages.inc.php:297 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "" -#: libraries/Table.class.php:1132 libraries/messages.inc.php:754 +#: libraries/Table.class.php:1132 libraries/messages.inc.php:750 #, php-format msgid "Table %s has been renamed to %s" msgstr "%s cedveli %s olaraq yeniden adlandırılmışdır" -#: libraries/Theme.class.php:162 libraries/messages.inc.php:1099 +#: libraries/Theme.class.php:162 libraries/messages.inc.php:1095 #, php-format msgid "No valid image path for theme %s found!" msgstr "" -#: libraries/Theme.class.php:384 libraries/messages.inc.php:1097 +#: libraries/Theme.class.php:384 libraries/messages.inc.php:1093 msgid "No preview available." msgstr "" -#: libraries/Theme.class.php:387 libraries/messages.inc.php:1089 +#: libraries/Theme.class.php:387 libraries/messages.inc.php:1085 msgid "take it" msgstr "" -#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1096 +#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1092 #, php-format msgid "Default theme %s not found!" msgstr "" -#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1098 +#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1094 #, php-format msgid "Theme %s not found!" msgstr "" -#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1100 +#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1096 #, php-format msgid "Theme path not found for theme %s!" msgstr "" -#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1101 +#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1097 #: test/theme.php:161 themes.php:21 themes.php:41 msgid "Theme / Style" msgstr "" -#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:172 +#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:168 msgid "Cannot connect: invalid settings." msgstr "Elaqe qura bilmirem: yalnış quruluş." #: libraries/auth/config.auth.lib.php:92 #: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65 -#: libraries/messages.inc.php:1238 test/theme.php:152 +#: libraries/messages.inc.php:1234 test/theme.php:152 #, php-format msgid "Welcome to %s" msgstr "%s - e Xoş Gelmişsiniz!" @@ -1589,105 +1589,105 @@ msgid "" "the administrator of the MySQL server." msgstr "" -#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:488 +#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:484 msgid "Log in" msgstr "Sisteme Giriş" #: libraries/auth/cookie.auth.lib.php:246 -#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:659 +#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:655 #: libraries/navigation_header.inc.php:93 #: libraries/navigation_header.inc.php:95 msgid "phpMyAdmin documentation" msgstr "phpMyAdmin dokumentasiyası (etraflı me'lumat üçün)" #: libraries/auth/cookie.auth.lib.php:258 -#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:492 +#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:488 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:493 +#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:489 #, fuzzy msgid "Server:" msgstr "Server" -#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:494 +#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:490 msgid "Username:" msgstr "İstifadeçi Adı:" -#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:491 +#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:487 msgid "Password:" msgstr "Parol:" -#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:854 +#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:850 msgid "Server Choice" msgstr "Quraşdırılmış Serverler" #: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 -#: libraries/messages.inc.php:177 +#: libraries/messages.inc.php:173 msgid "Cookies must be enabled past this point." msgstr "Sisteme girebilmeniz üçün çerez faylları (cookie-ler) aktiv olmalıdır." #: libraries/auth/cookie.auth.lib.php:671 -#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:489 +#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:485 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" #: libraries/auth/cookie.auth.lib.php:675 -#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:544 +#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:540 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" #: libraries/auth/cookie.auth.lib.php:685 #: libraries/auth/cookie.auth.lib.php:687 -#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:126 +#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:122 msgid "Cannot log in to the MySQL server" msgstr "MySQL server-e gire bilmirem" -#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1245 +#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1241 msgid "Wrong username/password. Access denied." msgstr "Yanlış istifadeçi adı ve ya parol. Giriş tesdiq edilmedi." #: libraries/auth/swekey/swekey.auth.lib.php:118 -#: libraries/messages.inc.php:1057 +#: libraries/messages.inc.php:1053 #, php-format msgid "File %s does not contain any key id" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:157 #: libraries/auth/swekey/swekey.auth.lib.php:180 -#: libraries/messages.inc.php:1056 +#: libraries/messages.inc.php:1052 msgid "Hardware authentication failed" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:166 -#: libraries/messages.inc.php:1058 +#: libraries/messages.inc.php:1054 msgid "No valid authentication key plugged" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:202 -#: libraries/messages.inc.php:1055 +#: libraries/messages.inc.php:1051 msgid "Authenticating..." msgstr "" -#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1230 +#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1226 msgid "View image" msgstr "" -#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:652 +#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:648 msgid "Play audio" msgstr "" -#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1232 +#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1228 msgid "View video" msgstr "" -#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:269 +#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:265 msgid "Download file" msgstr "" -#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:128 +#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:124 msgid "" "Couldn't load the iconv or recode extension needed for charset conversion. " "Either configure PHP to enable these extensions or disable charset " @@ -1699,7 +1699,7 @@ msgstr "" #: libraries/charset_conversion.lib.php:79 #: libraries/charset_conversion.lib.php:90 -#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:130 +#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:126 msgid "" "Couldn't use the iconv, libiconv, or recode_string functions, although the " "necessary extensions appear to be loaded. Check your PHP configuration." @@ -1707,7 +1707,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/messages.inc.php:170 +#: libraries/common.inc.php:583 libraries/messages.inc.php:166 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!" @@ -1741,22 +1741,22 @@ msgstr "" msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:636 libraries/messages.inc.php:448 +#: libraries/common.inc.php:636 libraries/messages.inc.php:444 #, 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/messages.inc.php:856 libraries/select_server.lib.php:41 +#: libraries/messages.inc.php:852 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/messages.inc.php:437 +#: libraries/common.inc.php:823 libraries/messages.inc.php:433 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.lib.php:147 libraries/messages.inc.php:499 +#: libraries/common.lib.php:147 libraries/messages.inc.php:495 #, php-format msgid "Max: %s%s" msgstr "En çox: %s%s" @@ -1778,7 +1778,7 @@ msgstr "Gönderildi" #: libraries/common.lib.php:428 libraries/common.lib.php:430 #: libraries/common.lib.php:432 libraries/common.lib.php:448 #: libraries/common.lib.php:450 libraries/dbg/setup.php:25 -#: libraries/display_export.lib.php:164 libraries/messages.inc.php:267 +#: libraries/display_export.lib.php:164 libraries/messages.inc.php:263 #: libraries/relation.lib.php:97 libraries/sql_query_form.lib.php:451 #: libraries/sql_query_form.lib.php:454 main.php:229 pdf_pages.php:37 #: pdf_pages.php:43 pdf_pages.php:49 pdf_pages.php:54 @@ -1788,55 +1788,55 @@ msgstr "Dokumentasiya" #: libraries/common.lib.php:581 libraries/core.lib.php:234 #: libraries/core.lib.php:263 libraries/import.lib.php:134 -#: libraries/messages.inc.php:297 pdf_schema.php:32 pdf_schema.php:232 +#: libraries/messages.inc.php:293 pdf_schema.php:32 pdf_schema.php:232 #: tbl_change.php:1027 tbl_operations.php:213 tbl_relation.php:290 #: view_operations.php:62 msgid "Error" msgstr "Xeta" #: libraries/common.lib.php:595 libraries/header_printview.inc.php:61 -#: libraries/messages.inc.php:1023 server_processlist.php:60 +#: libraries/messages.inc.php:1019 server_processlist.php:60 #: server_status.php:247 msgid "SQL query" msgstr "SQL sorğusu" -#: libraries/common.lib.php:634 libraries/messages.inc.php:538 +#: libraries/common.lib.php:634 libraries/messages.inc.php:534 msgid "MySQL said: " msgstr "MySQL deyir: " -#: libraries/common.lib.php:667 libraries/messages.inc.php:76 +#: libraries/common.lib.php:667 libraries/messages.inc.php:72 #: pdf_schema.php:241 user_password.php:115 msgid "Back" msgstr "Geri" -#: libraries/common.lib.php:1177 libraries/messages.inc.php:309 +#: libraries/common.lib.php:1177 libraries/messages.inc.php:305 #: setup/lib/messages.inc.php:353 msgid "Explain SQL" msgstr "SQL-i İzah Et" -#: libraries/common.lib.php:1180 libraries/messages.inc.php:551 +#: libraries/common.lib.php:1180 libraries/messages.inc.php:547 msgid "Skip Explain SQL" msgstr "SQL İzah Et-i Keç" -#: libraries/common.lib.php:1212 libraries/messages.inc.php:563 +#: libraries/common.lib.php:1212 libraries/messages.inc.php:559 msgid "Without PHP Code" msgstr "PHP Kodunu Gösterme" -#: libraries/common.lib.php:1215 libraries/messages.inc.php:649 +#: libraries/common.lib.php:1215 libraries/messages.inc.php:645 #: setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "PHP Kodunu Hazırla" -#: libraries/common.lib.php:1233 libraries/messages.inc.php:737 +#: libraries/common.lib.php:1233 libraries/messages.inc.php:733 #: server_status.php:341 setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "" -#: libraries/common.lib.php:1242 libraries/messages.inc.php:575 +#: libraries/common.lib.php:1242 libraries/messages.inc.php:571 msgid "Skip Validate SQL" msgstr "SQL İfadesini Yoxlama" -#: libraries/common.lib.php:1245 libraries/messages.inc.php:1220 +#: libraries/common.lib.php:1245 libraries/messages.inc.php:1216 #: setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "SQL Tesdiqle" @@ -1852,11 +1852,11 @@ msgid "Inline" msgstr "Motorlar" #: libraries/common.lib.php:1332 libraries/common.lib.php:1347 -#: libraries/messages.inc.php:713 +#: libraries/messages.inc.php:709 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1351 libraries/messages.inc.php:1108 +#: libraries/common.lib.php:1351 libraries/messages.inc.php:1104 #: libraries/tbl_triggers.lib.php:28 server_processlist.php:58 msgid "Time" msgstr "Müddet" @@ -1890,46 +1890,56 @@ msgstr "PB" msgid "EiB" msgstr "EB" +#. l10n: Thousands separator +#: libraries/common.lib.php:1417 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: libraries/common.lib.php:1419 +msgid "." +msgstr "." + #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1584 +#: libraries/common.lib.php:1596 #: libraries/transformations/text_plain__dateformat.inc.php:28 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B, %Y saat %H:%M" -#: libraries/common.lib.php:1886 +#: libraries/common.lib.php:1898 #, 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:2301 libraries/common.lib.php:2304 -#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:664 +#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:660 #: server_status.php:608 msgid "Begin" msgstr "Başla" -#: libraries/common.lib.php:2302 libraries/common.lib.php:2305 -#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:665 +#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:661 #: server_binlog.php:168 server_binlog.php:170 msgid "Previous" msgstr "Evvelki" -#: libraries/common.lib.php:2333 libraries/common.lib.php:2336 -#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:289 +#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:285 msgid "End" msgstr "Son" -#: libraries/common.lib.php:2409 libraries/messages.inc.php:455 +#: libraries/common.lib.php:2421 libraries/messages.inc.php:451 #, php-format msgid "Jump to database "%s"." msgstr ""%s" me'lumat bazasına keç." -#: libraries/common.lib.php:2429 libraries/messages.inc.php:461 +#: libraries/common.lib.php:2441 libraries/messages.inc.php:457 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/core.lib.php:286 libraries/dbg/setup.php:22 -#: libraries/messages.inc.php:127 +#: libraries/messages.inc.php:123 #, php-format msgid "" "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " @@ -1939,116 +1949,116 @@ msgstr "" "Konfiqurasiyanı gözden keçir." #: libraries/db_events.inc.php:20 libraries/db_events.inc.php:22 -#: libraries/export/sql.php:415 libraries/messages.inc.php:306 +#: libraries/export/sql.php:415 libraries/messages.inc.php:302 msgid "Events" msgstr "" #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 -#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:541 +#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:537 #: libraries/tbl_triggers.lib.php:27 setup/frames/index.inc.php:112 msgid "Name" msgstr "Adı" -#: libraries/db_links.inc.php:45 libraries/messages.inc.php:216 +#: libraries/db_links.inc.php:45 libraries/messages.inc.php:212 #, php-format msgid "Database %s has been dropped." msgstr "%s bazası leğv edildi." #: libraries/db_links.inc.php:57 libraries/db_links.inc.php:58 -#: libraries/db_links.inc.php:59 libraries/messages.inc.php:234 +#: libraries/db_links.inc.php:59 libraries/messages.inc.php:230 msgid "Database seems to be empty!" msgstr "" -#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1025 +#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1021 #: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60 #: querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1152 +#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1148 #: libraries/tbl_links.inc.php:69 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:86 libraries/messages.inc.php:719 +#: libraries/db_links.inc.php:86 libraries/messages.inc.php:715 msgid "Query" msgstr "Sorğu" -#: libraries/db_links.inc.php:91 libraries/messages.inc.php:253 +#: libraries/db_links.inc.php:91 libraries/messages.inc.php:249 msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:98 libraries/messages.inc.php:397 +#: libraries/db_links.inc.php:98 libraries/messages.inc.php:393 #: libraries/server_links.inc.php:88 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:104 libraries/messages.inc.php:587 +#: libraries/db_links.inc.php:104 libraries/messages.inc.php:583 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" msgstr "Emeliyyatlar" -#: libraries/db_links.inc.php:111 libraries/messages.inc.php:709 +#: libraries/db_links.inc.php:111 libraries/messages.inc.php:705 #: libraries/server_links.inc.php:66 server_privileges.php:72 #: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117 msgid "Privileges" msgstr "Selahiyyetler" #: libraries/db_routines.inc.php:30 libraries/db_routines.inc.php:32 -#: libraries/messages.inc.php:812 +#: libraries/messages.inc.php:808 msgid "Routines" msgstr "" -#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:811 +#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:807 msgid "Return type" msgstr "" #: libraries/db_structure.lib.php:57 libraries/display_tbl.lib.php:1848 -#: libraries/messages.inc.php:65 +#: libraries/messages.inc.php:61 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "" -#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:593 +#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:589 #: server_databases.php:142 tbl_printview.php:336 tbl_structure.php:683 msgid "Overhead" msgstr "Aşma deyeri" #: libraries/dbi/mysql.dbi.lib.php:112 libraries/dbi/mysqli.dbi.lib.php:124 -#: libraries/messages.inc.php:176 +#: libraries/messages.inc.php:172 msgid "Connection for controluser as defined in your configuration failed." msgstr "" #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 -#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:855 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:851 msgid "The server is not responding" msgstr "" #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:1010 +#: libraries/messages.inc.php:1006 msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "" -#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:255 +#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:251 #: tbl_structure.php:609 msgid "Details..." msgstr "" -#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:143 +#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:139 #: main.php:91 user_password.php:111 user_password.php:129 msgid "Change password" msgstr "Parolu Deyişdir" -#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:561 +#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:557 #: libraries/replication_gui.lib.php:341 server_privileges.php:768 msgid "No Password" msgstr "Parol Yoxdur" -#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:610 +#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:606 #: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60 #: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335 #: libraries/replication_gui.lib.php:345 server_privileges.php:757 @@ -2057,13 +2067,13 @@ msgstr "Parol Yoxdur" msgid "Password" msgstr "Parol" -#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:806 +#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:802 #: libraries/replication_gui.lib.php:349 libraries/replication_gui.lib.php:352 #: server_privileges.php:776 server_privileges.php:779 msgid "Re-type" msgstr "Re-type" -#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:608 +#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:604 msgid "Password Hashing" msgstr "" @@ -2071,91 +2081,91 @@ msgstr "" msgid "MySQL 4.0 compatible" msgstr "" -#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:353 +#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:349 #: libraries/replication_gui.lib.php:356 server_privileges.php:783 msgid "Generate Password" msgstr "" -#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:352 +#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:348 #: libraries/replication_gui.lib.php:359 server_privileges.php:786 #, fuzzy msgid "Generate" msgstr "Qurucu" #: libraries/display_create_database.lib.php:22 -#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:189 +#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:185 msgid "Create new database" msgstr "Yeni me'lumat bazası qur" -#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:185 +#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:181 msgid "Create" msgstr "Qur" -#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:564 +#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:560 #: server_privileges.php:74 server_privileges.php:1388 #: server_replication.php:35 msgid "No Privileges" msgstr "Selahiyyet çatışmazlığı" -#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:445 +#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:441 msgid "Table must have at least one field." msgstr "" -#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:190 +#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:186 #, php-format msgid "Create table on database %s" msgstr "%s bazasında yeni cedvel qur" -#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:577 +#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:573 msgid "Number of fields" msgstr "" -#: libraries/display_export.lib.php:42 libraries/messages.inc.php:124 +#: libraries/display_export.lib.php:42 libraries/messages.inc.php:120 msgid "Could not load export plugins, please check your installation!" msgstr "" -#: libraries/display_export.lib.php:107 libraries/messages.inc.php:277 +#: libraries/display_export.lib.php:107 libraries/messages.inc.php:273 #, php-format msgid "Dump %s row(s) starting at record # %s" msgstr "%s setri %s nömreli qeydden başlayaraq göster." -#: libraries/display_export.lib.php:115 libraries/messages.inc.php:274 +#: libraries/display_export.lib.php:115 libraries/messages.inc.php:270 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:125 libraries/messages.inc.php:852 +#: libraries/display_export.lib.php:125 libraries/messages.inc.php:848 #: setup/lib/messages.inc.php:82 msgid "Save as file" msgstr "Fayl olaraq qeyd et" -#: libraries/display_export.lib.php:134 libraries/messages.inc.php:828 +#: libraries/display_export.lib.php:134 libraries/messages.inc.php:824 #, php-format msgid "Save on server in %s directory" msgstr "Serverdeki %s direktoriyasına qeyd et" -#: libraries/display_export.lib.php:142 libraries/messages.inc.php:594 +#: libraries/display_export.lib.php:142 libraries/messages.inc.php:590 #: setup/lib/messages.inc.php:90 msgid "Overwrite existing file(s)" msgstr "Mövcud fayl(lar)ın üzerine yaz" -#: libraries/display_export.lib.php:148 libraries/messages.inc.php:330 +#: libraries/display_export.lib.php:148 libraries/messages.inc.php:326 msgid "File name template" msgstr "Fayl adı nomenklaturası" -#: libraries/display_export.lib.php:152 libraries/messages.inc.php:327 +#: libraries/display_export.lib.php:152 libraries/messages.inc.php:323 #, fuzzy msgid "server name" msgstr "İstifadeçi adı" -#: libraries/display_export.lib.php:155 libraries/messages.inc.php:326 +#: libraries/display_export.lib.php:155 libraries/messages.inc.php:322 msgid "database name" msgstr "" -#: libraries/display_export.lib.php:158 libraries/messages.inc.php:328 +#: libraries/display_export.lib.php:158 libraries/messages.inc.php:324 msgid "table name" msgstr "" -#: libraries/display_export.lib.php:162 libraries/messages.inc.php:329 +#: libraries/display_export.lib.php:162 libraries/messages.inc.php:325 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2163,24 +2173,24 @@ msgid "" "3$s. Other text will be kept as is." msgstr "" -#: libraries/display_export.lib.php:202 libraries/messages.inc.php:331 +#: libraries/display_export.lib.php:202 libraries/messages.inc.php:327 msgid "remember template" msgstr "nomenklaturanı unutma" #: libraries/display_export.lib.php:210 libraries/display_import.lib.php:178 -#: libraries/display_import.lib.php:191 libraries/messages.inc.php:145 +#: libraries/display_import.lib.php:191 libraries/messages.inc.php:141 #: libraries/sql_query_form.lib.php:549 msgid "Character set of the file:" msgstr "Faylın Charset-i:" -#: libraries/display_export.lib.php:235 libraries/messages.inc.php:166 +#: libraries/display_export.lib.php:235 libraries/messages.inc.php:162 #: setup/lib/messages.inc.php:84 msgid "Compression" 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/messages.inc.php:558 +#: libraries/export/sql.php:868 libraries/messages.inc.php:554 #: libraries/tbl_properties.inc.php:575 server_privileges.php:1836 #: server_processlist.php:75 msgid "None" @@ -2204,467 +2214,467 @@ msgstr "\"gzip\"lenmiş" msgid "bzipped" msgstr "\"bzip\"lenmiş" -#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1018 +#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1014 msgid "SQL compatibility mode" msgstr "" -#: libraries/display_import.lib.php:67 libraries/messages.inc.php:398 +#: libraries/display_import.lib.php:67 libraries/messages.inc.php:394 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " "browsers." msgstr "" -#: libraries/display_import.lib.php:77 libraries/messages.inc.php:406 +#: libraries/display_import.lib.php:77 libraries/messages.inc.php:402 msgid "The file is being processed, please be patient." msgstr "" -#: libraries/display_import.lib.php:99 libraries/messages.inc.php:408 +#: libraries/display_import.lib.php:99 libraries/messages.inc.php:404 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." msgstr "" -#: libraries/display_import.lib.php:126 libraries/messages.inc.php:333 +#: libraries/display_import.lib.php:126 libraries/messages.inc.php:329 msgid "File to import" msgstr "" -#: libraries/display_import.lib.php:137 libraries/messages.inc.php:486 +#: libraries/display_import.lib.php:137 libraries/messages.inc.php:482 #: libraries/sql_query_form.lib.php:524 msgid "Location of the text file" msgstr "tekst faylından yükleyerek" -#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1203 +#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1199 msgid "File uploads are not allowed on this server." msgstr "" -#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1235 +#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1231 #: libraries/sql_query_form.lib.php:533 tbl_change.php:1028 msgid "The directory you set for upload work cannot be reached" msgstr "Upload işleri üçün te'yin etdiyiniz direktoriya tapılmadı" -#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1236 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1232 #: libraries/sql_query_form.lib.php:536 tbl_change.php:1031 msgid "web server upload directory" msgstr "web-server upload direktoriyası" -#: libraries/display_import.lib.php:212 libraries/messages.inc.php:167 +#: libraries/display_import.lib.php:212 libraries/messages.inc.php:163 #, php-format msgid "Imported file compression will be automatically detected from: %s" msgstr "" -#: libraries/display_import.lib.php:219 libraries/messages.inc.php:600 +#: libraries/display_import.lib.php:219 libraries/messages.inc.php:596 msgid "Partial import" msgstr "" -#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1105 +#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1101 #, php-format msgid "" "Previous import timed out, after resubmitting will continue from position %d." msgstr "" -#: libraries/display_import.lib.php:232 libraries/messages.inc.php:51 +#: libraries/display_import.lib.php:232 libraries/messages.inc.php:47 msgid "" "Allow the interruption of an import in case the script detects it is close " "to the PHP timeout limit. This might be good way to import large files, " "however it can break transactions." msgstr "" -#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1004 +#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1000 #: setup/lib/messages.inc.php:161 msgid "Number of records (queries) to skip from start" msgstr "" -#: libraries/display_import.lib.php:255 libraries/messages.inc.php:396 +#: libraries/display_import.lib.php:255 libraries/messages.inc.php:392 #: setup/lib/messages.inc.php:160 msgid "Format of imported file" msgstr "" #: libraries/display_select_lang.lib.php:45 -#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:465 +#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:461 #: setup/frames/index.inc.php:70 msgid "Language" msgstr "" -#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:447 +#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:443 #, php-format msgid "%d is not valid row number." msgstr "" -#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:814 +#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:810 msgid "row(s) starting from record #" msgstr "setri göster; başlangıç qeydiyyat nömresi" -#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:817 +#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:813 msgid "horizontal" msgstr "üfüqi" -#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:816 +#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:812 msgid "horizontal (rotated headers)" msgstr "üfüqi (tekrarlanan başlıqlar)" -#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:819 +#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:815 msgid "vertical" msgstr "şaquli" -#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:818 +#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:814 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "%s rejimde, başlıqlar %s blokdan bir tekrar ederek" -#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:495 +#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:491 msgid "This operation could take a long time. Proceed anyway?" msgstr "" -#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1012 +#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1008 msgid "Sort by key" msgstr "" #: libraries/display_tbl.lib.php:555 libraries/import.lib.php:1082 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:591 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:587 #: tbl_select.php:267 tbl_structure.php:754 #, fuzzy msgid "Options" msgstr "Emeliyyatlar" #: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:570 -#: libraries/messages.inc.php:601 +#: libraries/messages.inc.php:597 msgid "Partial Texts" msgstr "Qismi Metnler" #: libraries/display_tbl.lib.php:561 libraries/display_tbl.lib.php:574 -#: libraries/messages.inc.php:346 +#: libraries/messages.inc.php:342 msgid "Full Texts" msgstr "Tam Metnler (Full Text)" -#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:739 +#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:735 #, fuzzy msgid "Relational key" msgstr "Relational schema" -#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:738 +#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:734 msgid "Relational display field" msgstr "" -#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:872 +#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:868 msgid "Show binary contents" msgstr "" -#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:873 +#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:869 msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:871 +#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:867 msgid "Show binary contents as HEX" msgstr "" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:375 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:371 #: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320 msgid "Hide" msgstr "" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:508 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:504 #: libraries/tbl_properties.inc.php:144 transformation_overview.php:47 msgid "Browser transformation" msgstr "Browser transformation" #: libraries/display_tbl.lib.php:1126 libraries/display_tbl.lib.php:1130 -#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:308 +#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:304 msgid "Execute bookmarked query" msgstr "" #: libraries/display_tbl.lib.php:1145 libraries/display_tbl.lib.php:1157 -#: libraries/messages.inc.php:244 +#: libraries/messages.inc.php:240 msgid "The row has been deleted" msgstr "Setir silindi" #: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056 -#: libraries/messages.inc.php:460 server_processlist.php:71 +#: libraries/messages.inc.php:456 server_processlist.php:71 #: tbl_row_action.php:64 msgid "Kill" msgstr "Söndür" -#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:849 +#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:845 msgid "in query" msgstr "in query" -#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:881 +#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:877 msgid "Showing rows" msgstr "Gösterilen setirler" -#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1113 +#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1109 msgid "total" msgstr "cemi" -#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:727 +#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:723 #: sql.php:524 #, php-format msgid "Query took %01.4f sec" msgstr "sorğu %01.4f saniyede icra edildi" -#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:135 +#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:131 #: 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:471 msgid "Change" msgstr "Deyişdir" -#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:724 +#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:720 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:671 +#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:667 msgid "Print view (with full texts)" msgstr "" -#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:482 +#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:478 msgid "Link not found" msgstr "Link tapılmadı" -#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1224 +#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1220 #: main.php:228 #, fuzzy msgid "Version information" msgstr "Sisteme Giriş Me'lumatı" -#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:423 +#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:419 msgid "Data home directory" msgstr "" -#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:424 +#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:420 msgid "The common part of the directory path for all InnoDB data files." msgstr "" -#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:422 +#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:418 #, fuzzy msgid "Data files" msgstr "Sadece me'lumat" -#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:418 +#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:414 msgid "Autoextend increment" msgstr "" -#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:419 +#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:415 msgid "" " The increment size for extending the size of an autoextending tablespace " "when it becomes full." msgstr "" -#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:420 +#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:416 msgid "Buffer pool size" msgstr "" -#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:421 +#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:417 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." msgstr "" -#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:112 +#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:108 msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:426 +#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:422 #: server_status.php:306 msgid "InnoDB Status" msgstr "InnoDB Status" -#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:113 +#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:109 msgid "Buffer Pool Usage" msgstr "" -#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1114 +#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1110 #: server_databases.php:137 server_databases.php:305 server_status.php:414 #: server_status.php:475 server_status.php:496 tbl_printview.php:351 #: tbl_structure.php:697 msgid "Total" msgstr "Cemi" -#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:425 +#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:421 msgid "pages" msgstr "" -#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:343 +#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:339 msgid "Free pages" msgstr "" -#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:259 +#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:255 msgid "Dirty pages" msgstr "" -#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:230 +#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:226 msgid "Pages containing data" msgstr "" -#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:598 +#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:594 #, fuzzy msgid "Pages to be flushed" msgstr "%s cedveli flush-landı" -#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:119 +#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:115 msgid "Busy pages" msgstr "" -#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:467 +#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:463 msgid "Latched pages" msgstr "" -#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:111 +#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:107 msgid "Buffer Pool Activity" msgstr "" -#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:731 +#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:727 msgid "Read requests" msgstr "" -#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1244 +#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1240 msgid "Write requests" msgstr "" -#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:115 +#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:111 msgid "Read misses" msgstr "" -#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:117 +#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:113 msgid "Write waits" msgstr "" -#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:114 +#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:110 msgid "Read misses in %" msgstr "" -#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:116 +#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:112 msgid "Write waits in %" msgstr "" -#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:522 +#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:518 msgid "Data pointer size" msgstr "" -#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:523 +#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:519 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." msgstr "" -#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:528 +#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:524 msgid "Automatic recovery mode" msgstr "Avtomatik qurtarma rejimi" -#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:529 +#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:525 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." msgstr "" -#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:527 +#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:523 msgid "Maximum size for temporary sort files" msgstr "Keçici sıralama fayllarının maksimum boyu" -#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:526 +#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:522 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " "INFILE)." msgstr "" -#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:525 +#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:521 msgid "Maximum size for temporary files on index creation" msgstr "İndeks yaradılarken istifade olunan keçici faylların maksimum boyu" -#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:524 +#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:520 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " "method." msgstr "" -#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:531 +#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:527 msgid "Repair threads" msgstr "" -#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:530 +#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:526 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." msgstr "" -#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:533 +#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:529 msgid "Sort buffer size" msgstr "Sıralama buferinin (keçici yaddaşının) boyu" -#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:532 +#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:528 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." msgstr "" -#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:620 +#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:616 msgid "Index cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:619 +#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:615 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." msgstr "" -#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:630 +#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:626 msgid "Record cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:629 +#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:625 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " "to the handle data (.xtd) and row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:624 +#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:620 msgid "Log cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:623 +#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:619 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:628 +#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:624 msgid "Log file threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:627 +#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:623 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:634 +#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:630 msgid "Transaction buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:633 +#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:629 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." msgstr "" -#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:611 +#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:607 msgid "Checkpoint frequency" msgstr "" -#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:612 +#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:608 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." msgstr "" -#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:615 +#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:611 msgid "Data log threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:616 +#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:612 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -2672,49 +2682,49 @@ msgid "" "that can be stored in the database." msgstr "" -#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:618 +#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:614 msgid "Garbage threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:617 +#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:613 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." msgstr "" -#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:622 +#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:618 #, fuzzy msgid "Log buffer size" msgstr "Sıralama buferinin (keçici yaddaşının) boyu" -#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:621 +#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:617 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " "required to write a data log." msgstr "" -#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:613 +#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:609 msgid "Data file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:614 +#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:610 msgid "The grow size of the handle data (.xtd) files." msgstr "" -#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:632 +#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:628 msgid "Row file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:631 +#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:627 msgid "The grow size of the row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:626 +#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:622 msgid "Log file count" msgstr "" -#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:625 +#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:621 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -2724,19 +2734,19 @@ msgstr "" #: libraries/export/htmlword.php:132 libraries/export/odt.php:168 #: libraries/export/sql.php:881 libraries/export/texytext.php:130 -#: libraries/messages.inc.php:275 +#: libraries/messages.inc.php:271 msgid "Dumping data for table" msgstr "Sxemi çıxarılan cedvel" #: libraries/export/htmlword.php:185 libraries/export/odt.php:238 #: libraries/export/sql.php:785 libraries/export/texytext.php:177 -#: libraries/messages.inc.php:1086 +#: libraries/messages.inc.php:1082 msgid "Table structure for table" msgstr "Table structure for table" #: libraries/export/latex.php:125 libraries/export/sql.php:232 #: libraries/export/xml.php:102 libraries/header_printview.inc.php:57 -#: libraries/messages.inc.php:381 libraries/replication_gui.lib.php:63 +#: libraries/messages.inc.php:377 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:170 libraries/replication_gui.lib.php:265 #: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325 #: server_privileges.php:692 server_privileges.php:695 @@ -2748,189 +2758,189 @@ msgstr "Host" #: libraries/export/latex.php:130 libraries/export/sql.php:233 #: libraries/export/xml.php:107 libraries/header_printview.inc.php:59 -#: libraries/messages.inc.php:354 +#: libraries/messages.inc.php:350 msgid "Generation Time" msgstr "Hazırlanma Vaxtı" #: libraries/export/latex.php:131 libraries/export/sql.php:235 -#: libraries/export/xml.php:108 libraries/messages.inc.php:864 main.php:186 +#: libraries/export/xml.php:108 libraries/messages.inc.php:860 main.php:186 msgid "Server version" msgstr "Server versiyası" #: libraries/export/latex.php:132 libraries/export/sql.php:236 -#: libraries/export/xml.php:109 libraries/messages.inc.php:651 +#: libraries/export/xml.php:109 libraries/messages.inc.php:647 msgid "PHP Version" msgstr "PHP Versiyası" #: libraries/export/latex.php:201 libraries/export/sql.php:868 -#: libraries/messages.inc.php:226 server_databases.php:127 +#: libraries/messages.inc.php:222 server_databases.php:127 #: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317 #: tbl_structure.php:666 msgid "Data" msgstr "Me'lumat" -#: libraries/export/odt.php:318 libraries/messages.inc.php:506 +#: libraries/export/odt.php:318 libraries/messages.inc.php:502 #: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "MIME-tipi" -#: libraries/export/sql.php:387 libraries/messages.inc.php:711 +#: libraries/export/sql.php:387 libraries/messages.inc.php:707 #, fuzzy msgid "Procedures" msgstr "Prosesler" -#: libraries/export/sql.php:401 libraries/messages.inc.php:348 +#: libraries/export/sql.php:401 libraries/messages.inc.php:344 #, fuzzy msgid "Functions" msgstr "Funksiya" -#: libraries/export/sql.php:618 libraries/messages.inc.php:174 +#: libraries/export/sql.php:618 libraries/messages.inc.php:170 msgid "Constraints for dumped tables" msgstr "" -#: libraries/export/sql.php:627 libraries/messages.inc.php:175 +#: libraries/export/sql.php:627 libraries/messages.inc.php:171 msgid "Constraints for table" msgstr "" -#: libraries/export/sql.php:727 libraries/messages.inc.php:512 +#: libraries/export/sql.php:727 libraries/messages.inc.php:508 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/export/sql.php:739 libraries/messages.inc.php:743 +#: libraries/export/sql.php:739 libraries/messages.inc.php:739 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/export/sql.php:796 libraries/messages.inc.php:1178 +#: libraries/export/sql.php:796 libraries/messages.inc.php:1174 #: libraries/tbl_triggers.lib.php:19 msgid "Triggers" msgstr "" -#: libraries/export/sql.php:808 libraries/messages.inc.php:1046 +#: libraries/export/sql.php:808 libraries/messages.inc.php:1042 #, fuzzy msgid "Structure for view" msgstr "Sadece quruluş" -#: libraries/export/sql.php:817 libraries/messages.inc.php:1029 +#: libraries/export/sql.php:817 libraries/messages.inc.php:1025 msgid "Stand-in structure for view" msgstr "" #: libraries/footer.inc.php:184 libraries/footer.inc.php:195 -#: libraries/footer.inc.php:198 libraries/messages.inc.php:586 +#: libraries/footer.inc.php:198 libraries/messages.inc.php:582 msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/header.inc.php:115 libraries/messages.inc.php:542 +#: libraries/header.inc.php:115 libraries/messages.inc.php:538 #, fuzzy msgid "New table" msgstr "Cedvel yoxdur" #: libraries/header_printview.inc.php:50 libraries/header_printview.inc.php:55 -#: libraries/messages.inc.php:1024 +#: libraries/messages.inc.php:1020 msgid "SQL result" msgstr "SQL result" -#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:350 +#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:346 msgid "Generated by" msgstr "Qurucu" #: libraries/header_printview.inc.php:63 libraries/import.lib.php:145 -#: libraries/messages.inc.php:820 navigation.php:652 navigation.php:674 +#: libraries/messages.inc.php:816 navigation.php:652 navigation.php:674 #: server_databases.php:122 tbl_printview.php:394 tbl_structure.php:366 #: tbl_structure.php:778 msgid "Rows" msgstr "Sıra sayı" -#: libraries/import.lib.php:150 libraries/messages.inc.php:285 sql.php:520 +#: libraries/import.lib.php:150 libraries/messages.inc.php:281 sql.php:520 #: tbl_change.php:181 tbl_get_field.php:35 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL boş netice çoxluğu gönderdi (ye'ni sıfır setir)." -#: libraries/import.lib.php:1078 libraries/messages.inc.php:399 +#: libraries/import.lib.php:1078 libraries/messages.inc.php:395 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1079 libraries/messages.inc.php:400 +#: libraries/import.lib.php:1079 libraries/messages.inc.php:396 msgid "View a structure`s contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1080 libraries/messages.inc.php:401 +#: libraries/import.lib.php:1080 libraries/messages.inc.php:397 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1081 libraries/messages.inc.php:402 +#: libraries/import.lib.php:1081 libraries/messages.inc.php:398 msgid "Edit its structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1084 libraries/messages.inc.php:362 +#: libraries/import.lib.php:1084 libraries/messages.inc.php:358 #, fuzzy msgid "Go to database" msgstr "Baza seçilmemişdir ve ya mövcud deyildir." #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:869 +#: libraries/messages.inc.php:865 msgid "settings" msgstr "" -#: libraries/import.lib.php:1106 libraries/messages.inc.php:363 +#: libraries/import.lib.php:1106 libraries/messages.inc.php:359 msgid "Go to table" msgstr "" -#: libraries/import.lib.php:1109 libraries/messages.inc.php:1047 +#: libraries/import.lib.php:1109 libraries/messages.inc.php:1043 #, fuzzy msgid "structure" msgstr "Quruluş" -#: libraries/import.lib.php:1115 libraries/messages.inc.php:364 +#: libraries/import.lib.php:1115 libraries/messages.inc.php:360 msgid "Go to view" msgstr "" #: libraries/import/csv.php:58 libraries/import/csv.php:70 #: libraries/import/csv.php:74 libraries/import/csv.php:78 -#: libraries/messages.inc.php:442 +#: libraries/messages.inc.php:438 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "" -#: libraries/import/csv.php:59 libraries/messages.inc.php:323 +#: libraries/import/csv.php:59 libraries/messages.inc.php:319 msgid "Fields terminated by" msgstr "Sahelerin yox edildiyi (terminate) işare" -#: libraries/import/csv.php:71 libraries/messages.inc.php:320 +#: libraries/import/csv.php:71 libraries/messages.inc.php:316 msgid "Fields enclosed by" msgstr "Saheler ehate edildiyi işare" -#: libraries/import/csv.php:75 libraries/messages.inc.php:321 +#: libraries/import/csv.php:75 libraries/messages.inc.php:317 msgid "Fields escaped by" msgstr "Sahelerin escape edildiyi işare" -#: libraries/import/csv.php:79 libraries/messages.inc.php:481 +#: libraries/import/csv.php:79 libraries/messages.inc.php:477 msgid "Lines terminated by" msgstr "Setir leğvedicisi (Lines terminated by)" -#: libraries/import/csv.php:119 libraries/messages.inc.php:439 +#: libraries/import/csv.php:119 libraries/messages.inc.php:435 #, php-format msgid "Invalid column (%s) specified!" msgstr "" #: libraries/import/csv.php:177 libraries/import/csv.php:424 -#: libraries/messages.inc.php:441 +#: libraries/messages.inc.php:437 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/import/csv.php:312 libraries/messages.inc.php:440 +#: libraries/import/csv.php:312 libraries/messages.inc.php:436 #, php-format msgid "Invalid field count in CSV input on line %d." msgstr "" -#: libraries/import/ldi.php:55 libraries/messages.inc.php:446 +#: libraries/import/ldi.php:55 libraries/messages.inc.php:442 msgid "This plugin does not support compressed imports!" msgstr "" #: libraries/import/xml.php:74 libraries/import/xml.php:130 -#: libraries/messages.inc.php:1247 +#: libraries/messages.inc.php:1243 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -2959,332 +2969,322 @@ msgstr "" msgid "ltr" msgstr "ltr" -#. l10n: Thousands separator -#: libraries/messages.inc.php:21 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: libraries/messages.inc.php:23 -msgid "." -msgstr "." - -#: libraries/messages.inc.php:25 server_status.php:461 +#: libraries/messages.inc.php:21 server_status.php:461 msgid "Aborted" msgstr "Dayandırılmış Elaqeler" -#: libraries/messages.inc.php:28 main.php:68 +#: libraries/messages.inc.php:24 main.php:68 #, fuzzy msgid "Actions" msgstr "Fealiyyetler" -#: libraries/messages.inc.php:34 libraries/tbl_properties.inc.php:780 +#: libraries/messages.inc.php:30 libraries/tbl_properties.inc.php:780 #: tbl_structure.php:543 #, fuzzy, php-format msgid "Add %s field(s)" msgstr "Yeni sahe elave et" -#: libraries/messages.inc.php:35 +#: libraries/messages.inc.php:31 msgid "Add custom comment into header (\\n splits lines)" msgstr "Başlığa xülase me'lumatı elave et (\\n yeni setire keçir)" -#: libraries/messages.inc.php:36 +#: libraries/messages.inc.php:32 msgid "Add into comments" msgstr "Xülaseye elave et" -#: libraries/messages.inc.php:37 tbl_structure.php:541 +#: libraries/messages.inc.php:33 tbl_structure.php:541 msgid "Add new field" msgstr "Yeni sahe elave et" -#: libraries/messages.inc.php:38 server_privileges.php:1886 +#: libraries/messages.inc.php:34 server_privileges.php:1886 msgid "Add privileges on the following database" msgstr "Aşağıdakı me'lumat bazası üçün selahiyyet müeyyen et" -#: libraries/messages.inc.php:39 server_privileges.php:1907 +#: libraries/messages.inc.php:35 server_privileges.php:1907 msgid "Add privileges on the following table" msgstr "Aşağıdakı cedvel üçün selahiyyetler müeyyen et" -#: libraries/messages.inc.php:40 tbl_select.php:288 +#: libraries/messages.inc.php:36 tbl_select.php:288 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Axtarış şertlerini gir (\"where\" ifadesinin esas metni):" -#: libraries/messages.inc.php:41 tbl_indexes.php:251 +#: libraries/messages.inc.php:37 tbl_indexes.php:251 #, php-format msgid "Add to index  %s column(s)" msgstr "İndekse  %s sütun elave et" -#: libraries/messages.inc.php:42 server_privileges.php:1570 +#: libraries/messages.inc.php:38 server_privileges.php:1570 #: server_privileges.php:1594 server_privileges.php:1988 #: server_privileges.php:2177 msgid "Add a new User" msgstr "Yeni İstifadeçi elave Et" -#: libraries/messages.inc.php:43 server_privileges.php:931 +#: libraries/messages.inc.php:39 server_privileges.php:931 msgid "You have added a new user." msgstr "Yeni istifadeçi elave etdiniz." -#: libraries/messages.inc.php:44 server_privileges.php:571 +#: libraries/messages.inc.php:40 server_privileges.php:571 msgid "Administration" msgstr "Administrasiya" -#: libraries/messages.inc.php:45 tbl_structure.php:557 +#: libraries/messages.inc.php:41 tbl_structure.php:557 #, php-format msgid "After %s" msgstr "Sonra: %s" -#: libraries/messages.inc.php:46 tbl_change.php:1147 +#: libraries/messages.inc.php:42 tbl_change.php:1147 msgid "Go back to previous page" msgstr "Evvelki sehifeye qayıt" -#: libraries/messages.inc.php:47 tbl_change.php:1148 +#: libraries/messages.inc.php:43 tbl_change.php:1148 msgid "Insert another new row" msgstr "Teze bir setir daha gir" -#: libraries/messages.inc.php:48 tbl_change.php:1160 +#: libraries/messages.inc.php:44 tbl_change.php:1160 msgid "Edit next row" msgstr "Bir sonrakı setre keç" -#: libraries/messages.inc.php:49 tbl_change.php:1152 +#: libraries/messages.inc.php:45 tbl_change.php:1152 msgid "Go back to this page" msgstr "Bu sehifeye geri dön" -#: libraries/messages.inc.php:50 querywindow.php:115 +#: libraries/messages.inc.php:46 querywindow.php:115 msgid "All" msgstr "All" -#: libraries/messages.inc.php:53 tbl_operations.php:249 +#: libraries/messages.inc.php:49 tbl_operations.php:249 msgid "Alter table order by" msgstr "Cedvel sırasına buna göre yeniden qur" -#: libraries/messages.inc.php:54 tbl_operations.php:660 +#: libraries/messages.inc.php:50 tbl_operations.php:660 msgid "Analyze" msgstr "" -#: libraries/messages.inc.php:57 +#: libraries/messages.inc.php:53 #, fuzzy msgid "and" msgstr "Ve" -#: libraries/messages.inc.php:59 pmd_general.php:87 +#: libraries/messages.inc.php:55 pmd_general.php:87 msgid "Angular links" msgstr "" -#: libraries/messages.inc.php:60 tbl_structure.php:401 tbl_structure.php:415 +#: libraries/messages.inc.php:56 tbl_structure.php:401 tbl_structure.php:415 #: tbl_structure.php:429 #, php-format msgid "An index has been added on %s" msgstr "%s üzerine indeks elave edildi" -#: libraries/messages.inc.php:61 server_privileges.php:1521 +#: libraries/messages.inc.php:57 server_privileges.php:1521 #: server_privileges.php:2123 msgid "Any" msgstr "Her hansı" -#: libraries/messages.inc.php:62 libraries/replication_gui.lib.php:298 +#: libraries/messages.inc.php:58 libraries/replication_gui.lib.php:298 #: server_privileges.php:725 msgid "Any host" msgstr "Her hansı host" -#: libraries/messages.inc.php:63 libraries/replication_gui.lib.php:250 +#: libraries/messages.inc.php:59 libraries/replication_gui.lib.php:250 #: server_privileges.php:677 msgid "Any user" msgstr "Her hansı istifadeçi" -#: libraries/messages.inc.php:64 server_synchronize.php:449 +#: libraries/messages.inc.php:60 server_synchronize.php:449 #: server_synchronize.php:894 msgid "Apply Selected Changes" msgstr "" -#: libraries/messages.inc.php:66 tbl_structure.php:386 +#: libraries/messages.inc.php:62 tbl_structure.php:386 #, php-format msgid "A primary key has been added on %s" msgstr "%s üzerine Birinci Dereceli Açar elave edildi." -#: libraries/messages.inc.php:67 libraries/mysql_charsets.lib.php:368 +#: libraries/messages.inc.php:63 libraries/mysql_charsets.lib.php:368 msgid "Arabic" msgstr "Ereb" -#: libraries/messages.inc.php:68 libraries/mysql_charsets.lib.php:359 +#: libraries/messages.inc.php:64 libraries/mysql_charsets.lib.php:359 msgid "Armenian" msgstr "Ermeni" -#: libraries/messages.inc.php:70 libraries/tbl_properties.inc.php:394 +#: libraries/messages.inc.php:66 libraries/tbl_properties.inc.php:394 msgid "As defined:" msgstr "" -#: libraries/messages.inc.php:71 tbl_structure.php:556 +#: libraries/messages.inc.php:67 tbl_structure.php:556 msgid "At Beginning of Table" msgstr "Cedvelin başına" -#: libraries/messages.inc.php:72 tbl_structure.php:555 +#: libraries/messages.inc.php:68 tbl_structure.php:555 msgid "At End of Table" msgstr "Cedvelin sonuna" -#: libraries/messages.inc.php:73 libraries/tbl_properties.inc.php:108 +#: libraries/messages.inc.php:69 libraries/tbl_properties.inc.php:108 #: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:144 #: tbl_structure.php:180 msgid "Attributes" msgstr "Xüsusiyyetler" -#: libraries/messages.inc.php:74 pdf_pages.php:303 pdf_pages.php:306 +#: libraries/messages.inc.php:70 pdf_pages.php:303 pdf_pages.php:306 msgid "Automatic layout" msgstr "Automatik şablon" -#: libraries/messages.inc.php:77 libraries/mysql_charsets.lib.php:354 +#: libraries/messages.inc.php:73 libraries/mysql_charsets.lib.php:354 msgid "Baltic" msgstr "" -#: libraries/messages.inc.php:78 libraries/sqlparser.lib.php:175 +#: libraries/messages.inc.php:74 libraries/sqlparser.lib.php:175 msgid "BEGIN CUT" msgstr "BEGIN CUT" -#: libraries/messages.inc.php:79 libraries/sqlparser.lib.php:179 +#: libraries/messages.inc.php:75 libraries/sqlparser.lib.php:179 msgid "BEGIN RAW" msgstr "BEGIN RAW" -#: libraries/messages.inc.php:80 libraries/mysql_charsets.lib.php:201 +#: libraries/messages.inc.php:76 libraries/mysql_charsets.lib.php:201 #: libraries/mysql_charsets.lib.php:402 tbl_change.php:518 msgid "Binary" msgstr "Binary" -#: libraries/messages.inc.php:81 tbl_change.php:894 +#: libraries/messages.inc.php:77 tbl_change.php:894 msgid "Binary - do not edit" msgstr "Binary - deyişiklik etme" -#: libraries/messages.inc.php:82 libraries/server_links.inc.php:76 +#: libraries/messages.inc.php:78 libraries/server_links.inc.php:76 #: server_binlog.php:110 server_status.php:253 test/theme.php:121 #, fuzzy msgid "Binary log" msgstr "Binary" -#: libraries/messages.inc.php:83 server_binlog.php:217 +#: libraries/messages.inc.php:79 server_binlog.php:217 #, fuzzy msgid "Event type" msgstr "Eksport şekli" -#: libraries/messages.inc.php:84 server_binlog.php:220 +#: libraries/messages.inc.php:80 server_binlog.php:220 #, fuzzy msgid "Information" msgstr "Sisteme Giriş Me'lumatı" -#: libraries/messages.inc.php:85 server_binlog.php:215 +#: libraries/messages.inc.php:81 server_binlog.php:215 msgid "Log name" msgstr "" -#: libraries/messages.inc.php:86 server_binlog.php:219 +#: libraries/messages.inc.php:82 server_binlog.php:219 msgid "Original position" msgstr "" -#: libraries/messages.inc.php:87 server_binlog.php:216 +#: libraries/messages.inc.php:83 server_binlog.php:216 msgid "Position" msgstr "" -#: libraries/messages.inc.php:88 libraries/replication_gui.lib.php:169 +#: libraries/messages.inc.php:84 libraries/replication_gui.lib.php:169 #: server_binlog.php:218 #, fuzzy msgid "Server ID" msgstr "Server" -#: libraries/messages.inc.php:92 +#: libraries/messages.inc.php:88 #, fuzzy msgctxt "$strBLOBRepositoryDisabled" msgid "Disabled" msgstr "Söndürülüb" -#: libraries/messages.inc.php:95 +#: libraries/messages.inc.php:91 #, fuzzy msgctxt "$strBLOBRepositoryEnabled" msgid "Enabled" msgstr "Enabled" -#: libraries/messages.inc.php:97 tbl_change.php:888 +#: libraries/messages.inc.php:93 tbl_change.php:888 msgid "Remove BLOB Repository Reference" msgstr "" -#: libraries/messages.inc.php:98 +#: libraries/messages.inc.php:94 #, fuzzy msgctxt "$strBLOBRepositoryRepair" msgid "Repair" msgstr "Cedveli te'mir et" -#: libraries/messages.inc.php:99 tbl_change.php:987 +#: libraries/messages.inc.php:95 tbl_change.php:987 msgid "Upload to BLOB repository" msgstr "" -#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:359 +#: libraries/messages.inc.php:96 libraries/sql_query_form.lib.php:359 #: sql.php:677 msgid "Let every user access this bookmark" msgstr "" -#: libraries/messages.inc.php:103 sql.php:671 +#: libraries/messages.inc.php:99 sql.php:671 msgid "Label" msgstr "Etiket" -#: libraries/messages.inc.php:104 libraries/sql_query_form.lib.php:433 +#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:433 msgid "Bookmarked SQL query" msgstr "Bookmark-lanmış SQL sorğusu" -#: libraries/messages.inc.php:105 libraries/sql_query_form.lib.php:365 +#: libraries/messages.inc.php:101 libraries/sql_query_form.lib.php:365 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/messages.inc.php:106 libraries/sql_query_form.lib.php:352 +#: libraries/messages.inc.php:102 libraries/sql_query_form.lib.php:352 #: sql.php:665 sql.php:666 sql.php:683 msgid "Bookmark this SQL query" msgstr "Bu SQL sorğusunu bookmark-la" -#: libraries/messages.inc.php:107 libraries/sql_query_form.lib.php:466 +#: libraries/messages.inc.php:103 libraries/sql_query_form.lib.php:466 msgid "View only" msgstr "Sadece göster" -#: libraries/messages.inc.php:109 tbl_structure.php:161 +#: libraries/messages.inc.php:105 tbl_structure.php:161 msgid "Browse distinct values" msgstr "" -#: libraries/messages.inc.php:110 tbl_change.php:252 tbl_select.php:27 +#: libraries/messages.inc.php:106 tbl_change.php:252 tbl_select.php:27 #: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34 msgid "Browse foreign values" msgstr "" -#: libraries/messages.inc.php:118 libraries/mysql_charsets.lib.php:213 +#: libraries/messages.inc.php:114 libraries/mysql_charsets.lib.php:213 msgid "Bulgarian" msgstr "Bolqar Dili" -#: libraries/messages.inc.php:120 +#: libraries/messages.inc.php:116 msgid "\"bzipped\"" msgstr "\"bzip\"lenmiş" -#: libraries/messages.inc.php:122 +#: libraries/messages.inc.php:118 msgid "Calendar" msgstr "" -#: libraries/messages.inc.php:129 tbl_indexes.php:75 +#: libraries/messages.inc.php:125 tbl_indexes.php:75 msgid "Can't rename index to PRIMARY!" msgstr "İndeksi Birinci Dereceli (PRIMARY) olaraq yeniden adlandıra bilmirem!" -#: libraries/messages.inc.php:132 libraries/mysql_charsets.lib.php:223 +#: libraries/messages.inc.php:128 libraries/mysql_charsets.lib.php:223 #: libraries/mysql_charsets.lib.php:409 msgid "case-insensitive" msgstr "" -#: libraries/messages.inc.php:133 libraries/mysql_charsets.lib.php:226 +#: libraries/messages.inc.php:129 libraries/mysql_charsets.lib.php:226 #: libraries/mysql_charsets.lib.php:411 msgid "case-sensitive" msgstr "" -#: libraries/messages.inc.php:134 libraries/mysql_charsets.lib.php:332 +#: libraries/messages.inc.php:130 libraries/mysql_charsets.lib.php:332 msgid "Central European" msgstr "Merkezi Avropa" -#: libraries/messages.inc.php:136 server_privileges.php:1969 +#: libraries/messages.inc.php:132 server_privileges.php:1969 msgid "... keep the old one." msgstr "... köhnesini saxla." -#: libraries/messages.inc.php:137 server_privileges.php:1967 +#: libraries/messages.inc.php:133 server_privileges.php:1967 msgid "Create a new user with the same privileges and ..." msgstr "Eyni selahiyyetlere sahib yeni istifadeçi qur ve ..." -#: libraries/messages.inc.php:138 server_privileges.php:1972 +#: libraries/messages.inc.php:134 server_privileges.php:1972 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -3292,114 +3292,114 @@ msgstr "" " ... istifadeçi cedvellerinden köhnesini sil ve ardından selahiyyetleri " "yeniden yükle." -#: libraries/messages.inc.php:139 server_privileges.php:1970 +#: libraries/messages.inc.php:135 server_privileges.php:1970 msgid " ... delete the old one from the user tables." msgstr " ... istifadeçi cedvellerinden köhnesini sil." -#: libraries/messages.inc.php:140 server_privileges.php:1971 +#: libraries/messages.inc.php:136 server_privileges.php:1971 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr " ... köhne istifadeçinin selahiyyetlerini elinden alaraq onu sil." -#: libraries/messages.inc.php:141 server_privileges.php:1964 +#: libraries/messages.inc.php:137 server_privileges.php:1964 msgid "Change Login Information / Copy User" msgstr "Sistem Giriş Me'lumatını Deyişdir / İstifadeçini Kopyala" -#: libraries/messages.inc.php:144 libraries/mysql_charsets.lib.php:107 +#: libraries/messages.inc.php:140 libraries/mysql_charsets.lib.php:107 msgid "Charset" msgstr "Charset" -#: libraries/messages.inc.php:146 server_collations.php:40 +#: libraries/messages.inc.php:142 server_collations.php:40 msgid "Character Sets and Collations" msgstr "" -#: libraries/messages.inc.php:147 libraries/server_links.inc.php:57 +#: libraries/messages.inc.php:143 libraries/server_links.inc.php:57 #: test/theme.php:109 #, fuzzy msgid "Charsets" msgstr "Charset" -#: libraries/messages.inc.php:149 tbl_operations.php:661 +#: libraries/messages.inc.php:145 tbl_operations.php:661 msgid "Check" msgstr "" -#: libraries/messages.inc.php:151 server_databases.php:293 +#: libraries/messages.inc.php:147 server_databases.php:293 #: server_databases.php:294 msgid "Check Privileges" msgstr "Selahiyyetleri Gözden Keçir" -#: libraries/messages.inc.php:152 server_databases.php:289 +#: libraries/messages.inc.php:148 server_databases.php:289 #, php-format msgid "Check privileges for database "%s"." msgstr ""%s" bazası üçün selahiyyetleri gözden keçir." -#: libraries/messages.inc.php:154 pdf_pages.php:261 +#: libraries/messages.inc.php:150 pdf_pages.php:261 msgid "Please choose a page to edit" msgstr "Xahiş edirem, deyişdirilecek Sehifeni seç" -#: libraries/messages.inc.php:157 +#: libraries/messages.inc.php:153 msgid "Displaying Column Comments" msgstr "Sütun Qısa İzahatını Deyişdir" -#: libraries/messages.inc.php:159 pdf_pages.php:483 view_create.php:148 +#: libraries/messages.inc.php:155 pdf_pages.php:483 view_create.php:148 msgid "Column names" msgstr "Sütun adları" -#: libraries/messages.inc.php:160 server_privileges.php:1685 +#: libraries/messages.inc.php:156 server_privileges.php:1685 msgid "Column-specific privileges" msgstr "Sütunaxas Selahiyyetler" -#: libraries/messages.inc.php:164 +#: libraries/messages.inc.php:160 msgid "MySQL 4.0 compatible" msgstr "" -#: libraries/messages.inc.php:165 +#: libraries/messages.inc.php:161 msgid "Complete inserts" msgstr "Tam girişli" -#: libraries/messages.inc.php:168 +#: libraries/messages.inc.php:164 #, php-format msgid "Could not load default configuration from: \"%1$s\"" msgstr "" -#: libraries/messages.inc.php:169 main.php:306 +#: libraries/messages.inc.php:165 main.php:306 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: libraries/messages.inc.php:171 pdf_schema.php:672 +#: libraries/messages.inc.php:167 pdf_schema.php:672 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Xahiş edirem, %s cedveli üçün koordinatları yeniden müeyyen et." -#: libraries/messages.inc.php:173 server_status.php:433 +#: libraries/messages.inc.php:169 server_status.php:433 msgid "Connections" msgstr "Elaqeler" -#: libraries/messages.inc.php:179 tbl_operations.php:509 +#: libraries/messages.inc.php:175 tbl_operations.php:509 msgid "Copy table to (database.table):" msgstr "Cedveli kopyala (me'lumat bazası.cedvel):" -#: libraries/messages.inc.php:180 tbl_move_copy.php:58 +#: libraries/messages.inc.php:176 tbl_move_copy.php:58 #, php-format msgid "Table %s has been copied to %s." msgstr "%s cedveli %s - e kopyalandı." -#: libraries/messages.inc.php:181 tbl_move_copy.php:48 +#: libraries/messages.inc.php:177 tbl_move_copy.php:48 msgid "Can't copy table to same one!" msgstr "Cedveli eynisinin üzerine kopyalaya bilmerem!" -#: libraries/messages.inc.php:182 server_synchronize.php:94 +#: libraries/messages.inc.php:178 server_synchronize.php:94 msgid "Could not connect to the source" msgstr "" -#: libraries/messages.inc.php:183 server_synchronize.php:97 +#: libraries/messages.inc.php:179 server_synchronize.php:97 msgid "Could not connect to the target" msgstr "" -#: libraries/messages.inc.php:184 server_processlist.php:24 +#: libraries/messages.inc.php:180 server_processlist.php:24 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -3407,135 +3407,135 @@ msgstr "" "phpMyAdmin %s emeliyyat thread-ini söndüre (kill) bilmedi. Böyük ehtimal " "artıq söndürülmüşdür." -#: libraries/messages.inc.php:187 +#: libraries/messages.inc.php:183 #, php-format msgid "Create an index on %s columns" msgstr " %s sütunda indeks yarat" -#: libraries/messages.inc.php:188 tbl_indexes.php:160 +#: libraries/messages.inc.php:184 tbl_indexes.php:160 msgid "Create a new index" msgstr "Yeni indeks qur" -#: libraries/messages.inc.php:191 pdf_pages.php:297 pmd_pdf.php:114 +#: libraries/messages.inc.php:187 pdf_pages.php:297 pmd_pdf.php:114 msgid "Create a page" msgstr "Yeni Sehife qur" -#: libraries/messages.inc.php:192 +#: libraries/messages.inc.php:188 msgid "Creation of PDFs" msgstr "PDF-lerin qurulması" -#: libraries/messages.inc.php:193 pmd_general.php:74 pmd_general.php:306 +#: libraries/messages.inc.php:189 pmd_general.php:74 pmd_general.php:306 msgid "Create relation" msgstr "" -#: libraries/messages.inc.php:194 pmd_general.php:71 +#: libraries/messages.inc.php:190 pmd_general.php:71 #: server_synchronize.php:429 server_synchronize.php:872 #, fuzzy msgid "Create table" msgstr "Yeni Sehife qur" -#: libraries/messages.inc.php:195 +#: libraries/messages.inc.php:191 #, fuzzy msgctxt "$strCreateTableShort" msgid "Create table" msgstr "Yeni Sehife qur" -#: libraries/messages.inc.php:196 server_privileges.php:1994 +#: libraries/messages.inc.php:192 server_privileges.php:1994 msgid "Database for user" msgstr "" -#: libraries/messages.inc.php:197 server_privileges.php:1999 +#: libraries/messages.inc.php:193 server_privileges.php:1999 msgid "Create database with same name and grant all privileges" msgstr "" -#: libraries/messages.inc.php:198 +#: libraries/messages.inc.php:194 #, fuzzy msgctxt "$strCreateUserDatabaseNone" msgid "None" msgstr "Heç biri" -#: libraries/messages.inc.php:199 server_privileges.php:2003 +#: libraries/messages.inc.php:195 server_privileges.php:2003 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr ""%s" bazası üçün selahiyyetleri gözden keçir." -#: libraries/messages.inc.php:200 server_privileges.php:2000 +#: libraries/messages.inc.php:196 server_privileges.php:2000 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: libraries/messages.inc.php:201 +#: libraries/messages.inc.php:197 msgid "Creation/Update/Check dates" msgstr "Quruluş/Deyişdirilme/Yoxlama tarixleri" -#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:229 +#: libraries/messages.inc.php:199 libraries/mysql_charsets.lib.php:229 msgid "Croatian" msgstr "Xorvat Dili" -#: libraries/messages.inc.php:204 +#: libraries/messages.inc.php:200 msgid "CSV" msgstr "CSV verilenleri" -#: libraries/messages.inc.php:205 libraries/server_synchronize.lib.php:1343 +#: libraries/messages.inc.php:201 libraries/server_synchronize.lib.php:1343 #: libraries/server_synchronize.lib.php:1369 msgid "Current server" msgstr "" -#: libraries/messages.inc.php:206 main.php:159 +#: libraries/messages.inc.php:202 main.php:159 msgid "Custom color" msgstr "" -#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:365 +#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:365 msgid "Cyrillic" msgstr "Kiril" -#: libraries/messages.inc.php:208 libraries/mysql_charsets.lib.php:232 +#: libraries/messages.inc.php:204 libraries/mysql_charsets.lib.php:232 msgid "Czech" msgstr "" -#: libraries/messages.inc.php:209 libraries/mysql_charsets.lib.php:383 +#: libraries/messages.inc.php:205 libraries/mysql_charsets.lib.php:383 msgid "Czech-Slovak" msgstr "Çex-Slovak" -#: libraries/messages.inc.php:211 libraries/mysql_charsets.lib.php:235 +#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:235 msgid "Danish" msgstr "" -#: libraries/messages.inc.php:214 +#: libraries/messages.inc.php:210 msgid "Database export options" msgstr "Me'lumat bazası eksport variantları" -#: libraries/messages.inc.php:217 server_synchronize.php:122 +#: libraries/messages.inc.php:213 server_synchronize.php:122 #: server_synchronize.php:125 tbl_create.php:82 tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "" -#: libraries/messages.inc.php:219 server_databases.php:63 +#: libraries/messages.inc.php:215 server_databases.php:63 #, php-format msgid "%s databases have been dropped successfully." msgstr "%s bazası müveffeqiyyetle leğv edildi." -#: libraries/messages.inc.php:220 libraries/server_synchronize.lib.php:1341 +#: libraries/messages.inc.php:216 libraries/server_synchronize.lib.php:1341 #: server_synchronize.php:1110 #, fuzzy msgid "Source database" msgstr "Search in database" -#: libraries/messages.inc.php:221 server_databases.php:88 +#: libraries/messages.inc.php:217 server_databases.php:88 msgid "Databases statistics" msgstr "Me'lumat Bazası Statistikaları" -#: libraries/messages.inc.php:222 server_databases.php:362 +#: libraries/messages.inc.php:218 server_databases.php:362 #: server_databases.php:363 msgid "Disable Statistics" msgstr "Statistikaları Söndür" -#: libraries/messages.inc.php:223 server_databases.php:358 +#: libraries/messages.inc.php:219 server_databases.php:358 #: server_databases.php:359 msgid "Enable Statistics" msgstr "Statistikaları Aktivleşdir" -#: libraries/messages.inc.php:224 server_databases.php:366 +#: libraries/messages.inc.php:220 server_databases.php:366 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -3543,31 +3543,31 @@ msgstr "" "Qeyd: Me'lumat Bazası statistikalarını burada aktivleşdirmekle webserver-le " "MySQL server arasında ağır neqliyyata sebeb ola bilersiniz." -#: libraries/messages.inc.php:225 libraries/server_synchronize.lib.php:1367 +#: libraries/messages.inc.php:221 libraries/server_synchronize.lib.php:1367 #: server_synchronize.php:1112 #, fuzzy msgid "Target database" msgstr "Search in database" -#: libraries/messages.inc.php:228 server_synchronize.php:425 +#: libraries/messages.inc.php:224 server_synchronize.php:425 #: server_synchronize.php:868 msgid "Data Difference" msgstr "" -#: libraries/messages.inc.php:231 server_synchronize.php:272 +#: libraries/messages.inc.php:227 server_synchronize.php:272 msgid "Data Synchronization" msgstr "" -#: libraries/messages.inc.php:235 server_privileges.php:526 +#: libraries/messages.inc.php:231 server_privileges.php:526 #: server_privileges.php:1679 msgid "Database-specific privileges" msgstr "Me'lumat Bazasına Mexsus Selahiyyetler" -#: libraries/messages.inc.php:237 server_privileges.php:2136 +#: libraries/messages.inc.php:233 server_privileges.php:2136 msgid "database-specific" msgstr "bazayaxas" -#: libraries/messages.inc.php:240 libraries/tbl_properties.inc.php:106 +#: libraries/messages.inc.php:236 libraries/tbl_properties.inc.php:106 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" @@ -3575,32 +3575,32 @@ msgstr "" "Başlanğıc deyer girerken, sadece deyeri girin, ters kesr escape-leme ya da " "dırnaqdan istifade etmeyin, bu formatı te'qib edin: a" -#: libraries/messages.inc.php:241 tbl_operations.php:589 +#: libraries/messages.inc.php:237 tbl_operations.php:589 msgid "Defragment table" msgstr "" -#: libraries/messages.inc.php:242 +#: libraries/messages.inc.php:238 msgid "Use delayed inserts" msgstr "" -#: libraries/messages.inc.php:245 server_privileges.php:1243 +#: libraries/messages.inc.php:241 server_privileges.php:1243 msgid "No users selected for deleting!" msgstr "" -#: libraries/messages.inc.php:246 pmd_general.php:372 +#: libraries/messages.inc.php:242 pmd_general.php:372 msgid "Delete relation" msgstr "" -#: libraries/messages.inc.php:248 server_privileges.php:1232 +#: libraries/messages.inc.php:244 server_privileges.php:1232 #, php-format msgid "Deleting %s" msgstr "%s silinir" -#: libraries/messages.inc.php:249 libraries/sql_query_form.lib.php:388 +#: libraries/messages.inc.php:245 libraries/sql_query_form.lib.php:388 msgid "Delimiter" msgstr "" -#: libraries/messages.inc.php:250 pdf_pages.php:506 +#: libraries/messages.inc.php:246 pdf_pages.php:506 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -3608,152 +3608,152 @@ msgstr "" "Hal-hazırki sehifen artıq mövcud olmayan Cedvellere bağlıdır. Bu elaqelerin " "silinmesini istermisiniz?" -#: libraries/messages.inc.php:254 pmd_help.php:29 +#: libraries/messages.inc.php:250 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." msgstr "" -#: libraries/messages.inc.php:256 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:252 libraries/mysql_charsets.lib.php:247 #, fuzzy msgid "dictionary" msgstr "Me'lumat lüğeti" -#: libraries/messages.inc.php:257 libraries/server_synchronize.lib.php:1348 +#: libraries/messages.inc.php:253 libraries/server_synchronize.lib.php:1348 msgid "Difference" msgstr "" -#: libraries/messages.inc.php:258 pmd_general.php:87 +#: libraries/messages.inc.php:254 pmd_general.php:87 msgid "Direct links" msgstr "" -#: libraries/messages.inc.php:261 +#: libraries/messages.inc.php:257 msgid "Disable foreign key checks" msgstr "" -#: libraries/messages.inc.php:262 +#: libraries/messages.inc.php:258 msgid "Display Features" msgstr "Xüsusiyyetleri Göster" -#: libraries/messages.inc.php:263 tbl_select.php:301 +#: libraries/messages.inc.php:259 tbl_select.php:301 msgid "Display order:" msgstr "Sıralama şekli:" -#: libraries/messages.inc.php:265 tbl_select.php:132 +#: libraries/messages.inc.php:261 tbl_select.php:132 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "\"nümuneye göre sorğu\" gönderin (xüsusi işare: \"%\")" -#: libraries/messages.inc.php:266 +#: libraries/messages.inc.php:262 msgid "DocSQL" msgstr "" -#: libraries/messages.inc.php:268 +#: libraries/messages.inc.php:264 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/messages.inc.php:273 server_privileges.php:1579 +#: libraries/messages.inc.php:269 server_privileges.php:1579 #: server_privileges.php:1580 server_privileges.php:1581 msgid "Drop the databases that have the same names as the users." msgstr "İstifadeçilerle eyni adlı me'lumat bazalarını leğv et." -#: libraries/messages.inc.php:278 tbl_printview.php:382 tbl_structure.php:743 +#: libraries/messages.inc.php:274 tbl_printview.php:382 tbl_structure.php:743 msgid "dynamic" msgstr "dinamik" -#: libraries/messages.inc.php:282 server_privileges.php:1324 +#: libraries/messages.inc.php:278 server_privileges.php:1324 #: server_privileges.php:1610 msgid "Edit Privileges" msgstr "Selahiyyetleri Deyişdir" -#: libraries/messages.inc.php:283 tbl_printview.php:341 tbl_structure.php:688 +#: libraries/messages.inc.php:279 tbl_printview.php:341 tbl_structure.php:688 msgid "Effective" msgstr "Effektiv" -#: libraries/messages.inc.php:286 libraries/relation.lib.php:100 +#: libraries/messages.inc.php:282 libraries/relation.lib.php:100 msgid "Enabled" msgstr "Enabled" -#: libraries/messages.inc.php:287 +#: libraries/messages.inc.php:283 msgid "Enclose export in a transaction" msgstr "" -#: libraries/messages.inc.php:288 libraries/sqlparser.lib.php:177 +#: libraries/messages.inc.php:284 libraries/sqlparser.lib.php:177 msgid "END CUT" msgstr "END CUT" -#: libraries/messages.inc.php:290 libraries/sqlparser.lib.php:183 +#: libraries/messages.inc.php:286 libraries/sqlparser.lib.php:183 msgid "END RAW" msgstr "END RAW" -#: libraries/messages.inc.php:293 libraries/server_links.inc.php:61 +#: libraries/messages.inc.php:289 libraries/server_links.inc.php:61 #: test/theme.php:113 msgid "Engines" msgstr "Motorlar" -#: libraries/messages.inc.php:295 libraries/mysql_charsets.lib.php:238 +#: libraries/messages.inc.php:291 libraries/mysql_charsets.lib.php:238 msgid "English" msgstr "İngilis Dili" -#: libraries/messages.inc.php:296 server_privileges.php:393 +#: libraries/messages.inc.php:292 server_privileges.php:393 #: server_privileges.php:535 server_privileges.php:1501 msgid " Note: MySQL privilege names are expressed in English " msgstr " Qeyd: MySQL selahiyyet adları ingilis dilinde ifade edilmişdir " -#: libraries/messages.inc.php:298 libraries/zip_extension.lib.php:49 +#: libraries/messages.inc.php:294 libraries/zip_extension.lib.php:49 #: libraries/zip_extension.lib.php:51 libraries/zip_extension.lib.php:66 msgid "Error in ZIP archive:" msgstr "" -#: libraries/messages.inc.php:303 libraries/mysql_charsets.lib.php:241 +#: libraries/messages.inc.php:299 libraries/mysql_charsets.lib.php:241 msgid "Esperanto" msgstr "" -#: libraries/messages.inc.php:304 libraries/mysql_charsets.lib.php:244 +#: libraries/messages.inc.php:300 libraries/mysql_charsets.lib.php:244 msgid "Estonian" msgstr "Eston Dili" -#: libraries/messages.inc.php:305 libraries/tbl_triggers.lib.php:29 +#: libraries/messages.inc.php:301 libraries/tbl_triggers.lib.php:29 #, fuzzy msgid "Event" msgstr "Gönderildi" -#: libraries/messages.inc.php:307 +#: libraries/messages.inc.php:303 msgid "Excel edition" msgstr "Excel versiyası" -#: libraries/messages.inc.php:311 pmd_pdf.php:85 +#: libraries/messages.inc.php:307 pmd_pdf.php:85 msgid "Export/Import to scale" msgstr "" -#: libraries/messages.inc.php:313 +#: libraries/messages.inc.php:309 msgid "Extended inserts" msgstr "Genişletilmiş girişli" -#: libraries/messages.inc.php:314 pdf_schema.php:1267 pdf_schema.php:1288 +#: libraries/messages.inc.php:310 pdf_schema.php:1267 pdf_schema.php:1288 #: tbl_printview.php:147 tbl_structure.php:183 tbl_tracking.php:278 msgid "Extra" msgstr "Elave Xüs." -#: libraries/messages.inc.php:316 server_status.php:447 +#: libraries/messages.inc.php:312 server_status.php:447 msgid "Failed attempts" msgstr "Uğursuz Cehdler" -#: libraries/messages.inc.php:318 tbl_structure.php:375 +#: libraries/messages.inc.php:314 tbl_structure.php:375 #, php-format msgid "Field %s has been dropped" msgstr "%s sahesi leğv edildi" -#: libraries/messages.inc.php:322 libraries/sql_query_form.lib.php:317 +#: libraries/messages.inc.php:318 libraries/sql_query_form.lib.php:317 msgid "Fields" msgstr "Sahe sayı" -#: libraries/messages.inc.php:332 server_binlog.php:136 +#: libraries/messages.inc.php:328 server_binlog.php:136 #, fuzzy msgid "Files" msgstr "Sahe sayı" -#: libraries/messages.inc.php:334 server_privileges.php:1597 +#: libraries/messages.inc.php:330 server_privileges.php:1597 #, fuzzy, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -3766,220 +3766,220 @@ msgstr "" "içerisindekiler webserver-in istifade etdiklerinden ferqli ola biler. Bu " "halda, davam etmeden evvel, selahiyyetleri %syeniden yüklemelisiniz%s." -#: libraries/messages.inc.php:335 server_status.php:289 +#: libraries/messages.inc.php:331 server_status.php:289 msgid "Flush query cache" msgstr "" -#: libraries/messages.inc.php:336 +#: libraries/messages.inc.php:332 msgid "Flush the table (\"FLUSH\")" msgstr "Cedveli flush-la (\"FLUSH\")" -#: libraries/messages.inc.php:337 server_status.php:271 +#: libraries/messages.inc.php:333 server_status.php:271 msgid "Flush (close) all tables" msgstr "" -#: libraries/messages.inc.php:339 tbl_relation.php:279 +#: libraries/messages.inc.php:335 tbl_relation.php:279 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" -#: libraries/messages.inc.php:341 setup/lib/messages.inc.php:88 +#: libraries/messages.inc.php:337 setup/lib/messages.inc.php:88 #: tbl_printview.php:376 tbl_structure.php:738 msgid "Format" msgstr "Format" -#: libraries/messages.inc.php:344 server_replication.php:325 +#: libraries/messages.inc.php:340 server_replication.php:325 #, fuzzy msgid "Full start" msgstr "Tam metn (Fulltext)" -#: libraries/messages.inc.php:345 server_replication.php:325 +#: libraries/messages.inc.php:341 server_replication.php:325 msgid "Full stop" msgstr "" -#: libraries/messages.inc.php:347 tbl_change.php:282 tbl_change.php:320 +#: libraries/messages.inc.php:343 tbl_change.php:282 tbl_change.php:320 msgid "Function" msgstr "Funksiya" -#: libraries/messages.inc.php:355 libraries/mysql_charsets.lib.php:377 +#: libraries/messages.inc.php:351 libraries/mysql_charsets.lib.php:377 msgid "Georgian" msgstr "Gürcü" -#: libraries/messages.inc.php:356 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:352 libraries/mysql_charsets.lib.php:247 #: libraries/mysql_charsets.lib.php:250 #, fuzzy msgid "German" msgstr "Gürcü" -#: libraries/messages.inc.php:357 themes.php:42 +#: libraries/messages.inc.php:353 themes.php:42 msgid "Get more themes!" msgstr "" -#: libraries/messages.inc.php:358 server_privileges.php:2134 +#: libraries/messages.inc.php:354 server_privileges.php:2134 msgid "global" msgstr "qlobal" -#: libraries/messages.inc.php:359 server_privileges.php:524 +#: libraries/messages.inc.php:355 server_privileges.php:524 #: server_privileges.php:1500 msgid "Global privileges" msgstr "Qlobal selahiyyetler" -#: libraries/messages.inc.php:360 server_variables.php:55 +#: libraries/messages.inc.php:356 server_variables.php:55 #: server_variables.php:89 msgid "Global value" msgstr "Qlobal deyer" -#: libraries/messages.inc.php:365 server_privileges.php:1502 +#: libraries/messages.inc.php:361 server_privileges.php:1502 #: server_privileges.php:1684 server_privileges.php:2033 msgid "Grant" msgstr "İcaze ver" -#: libraries/messages.inc.php:366 libraries/mysql_charsets.lib.php:380 +#: libraries/messages.inc.php:362 libraries/mysql_charsets.lib.php:380 msgid "Greek" msgstr "" -#: libraries/messages.inc.php:367 +#: libraries/messages.inc.php:363 msgid "\"gzipped\"" msgstr "\"gzip\"lenmiş" -#: libraries/messages.inc.php:369 server_status.php:250 +#: libraries/messages.inc.php:365 server_status.php:250 msgid "Handler" msgstr "" -#: libraries/messages.inc.php:370 server_synchronize.php:464 +#: libraries/messages.inc.php:366 server_synchronize.php:464 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: libraries/messages.inc.php:372 libraries/mysql_charsets.lib.php:374 +#: libraries/messages.inc.php:368 libraries/mysql_charsets.lib.php:374 msgid "Hebrew" msgstr "İbrani Dili" -#: libraries/messages.inc.php:373 pmd_general.php:83 +#: libraries/messages.inc.php:369 pmd_general.php:83 msgid "Help" msgstr "" -#: libraries/messages.inc.php:374 +#: libraries/messages.inc.php:370 msgid "Use hexadecimal for BLOB" msgstr "" -#: libraries/messages.inc.php:376 pmd_general.php:120 +#: libraries/messages.inc.php:372 pmd_general.php:120 #, fuzzy msgid "Hide/Show all" msgstr "Hamısını göster" -#: libraries/messages.inc.php:377 pmd_general.php:124 +#: libraries/messages.inc.php:373 pmd_general.php:124 msgid "Hide/Show Tables with no relation" msgstr "" -#: libraries/messages.inc.php:378 libraries/navigation_header.inc.php:54 +#: libraries/messages.inc.php:374 libraries/navigation_header.inc.php:54 #: libraries/navigation_header.inc.php:57 #: libraries/navigation_header.inc.php:58 msgid "Home" msgstr "Başlanğıc" -#: libraries/messages.inc.php:379 main.php:233 +#: libraries/messages.inc.php:375 main.php:233 msgid "Official Homepage" msgstr "phpMyAdmin Resmi İnternet Sehifesi" -#: libraries/messages.inc.php:382 libraries/replication_gui.lib.php:327 +#: libraries/messages.inc.php:378 libraries/replication_gui.lib.php:327 #: server_privileges.php:753 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/messages.inc.php:383 +#: libraries/messages.inc.php:379 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/messages.inc.php:384 libraries/mysql_charsets.lib.php:253 +#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:253 msgid "Hungarian" msgstr "Macar Dili" -#: libraries/messages.inc.php:386 libraries/mysql_charsets.lib.php:256 +#: libraries/messages.inc.php:382 libraries/mysql_charsets.lib.php:256 msgid "Icelandic" msgstr "" -#: libraries/messages.inc.php:387 server_processlist.php:53 +#: libraries/messages.inc.php:383 server_processlist.php:53 msgid "ID" msgstr "Nömre" -#: libraries/messages.inc.php:388 libraries/mult_submits.inc.php:108 +#: libraries/messages.inc.php:384 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:479 msgid "Fulltext" msgstr "Tam metn (Fulltext)" -#: libraries/messages.inc.php:389 +#: libraries/messages.inc.php:385 msgid "Ignore duplicate rows" msgstr "" -#: libraries/messages.inc.php:390 tbl_change.php:302 tbl_indexes.php:200 +#: libraries/messages.inc.php:386 tbl_change.php:302 tbl_indexes.php:200 #: tbl_indexes.php:225 msgid "Ignore" msgstr "Diqqete Alma" -#: libraries/messages.inc.php:391 +#: libraries/messages.inc.php:387 msgid "Use ignore inserts" msgstr "" -#: libraries/messages.inc.php:392 +#: libraries/messages.inc.php:388 msgid "Column names in first row" msgstr "" -#: libraries/messages.inc.php:393 +#: libraries/messages.inc.php:389 msgid "Do not import empty rows" msgstr "" -#: libraries/messages.inc.php:394 pmd_general.php:104 +#: libraries/messages.inc.php:390 pmd_general.php:104 msgid "Import/Export coordinates for PDF schema" msgstr "" -#: libraries/messages.inc.php:395 querywindow.php:104 +#: libraries/messages.inc.php:391 querywindow.php:104 msgid "Import files" msgstr "Faylları import et" -#: libraries/messages.inc.php:403 +#: libraries/messages.inc.php:399 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/messages.inc.php:404 libraries/messages.inc.php:584 +#: libraries/messages.inc.php:400 libraries/messages.inc.php:580 msgid "Open Document Spreadsheet" msgstr "" -#: libraries/messages.inc.php:405 +#: libraries/messages.inc.php:401 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/messages.inc.php:409 +#: libraries/messages.inc.php:405 msgid "Excel 97-2003 XLS Workbook" msgstr "" -#: libraries/messages.inc.php:410 +#: libraries/messages.inc.php:406 msgid "Excel 2007 XLSX Workbook" msgstr "" -#: libraries/messages.inc.php:414 libraries/mult_submits.inc.php:98 +#: libraries/messages.inc.php:410 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:476 tbl_structure.php:674 msgid "Index" msgstr "İndeks" -#: libraries/messages.inc.php:415 tbl_indexes.php:168 +#: libraries/messages.inc.php:411 tbl_indexes.php:168 msgid "Index name:" msgstr "İndex adı :" -#: libraries/messages.inc.php:416 tbl_indexes.php:174 +#: libraries/messages.inc.php:412 tbl_indexes.php:174 msgid "Index type:" msgstr "İndex tipi :" -#: libraries/messages.inc.php:417 sql.php:639 +#: libraries/messages.inc.php:413 sql.php:639 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: libraries/messages.inc.php:427 main.php:266 +#: libraries/messages.inc.php:423 main.php:266 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -3990,194 +3990,194 @@ msgstr "" "istifadeçisi) mövcuddur ki, bu da tehlükesizlik nöqteyi nezerinden e'tibarlı " "deyildir." -#: libraries/messages.inc.php:428 tbl_change.php:1130 +#: libraries/messages.inc.php:424 tbl_change.php:1130 msgid "Insert as new row" msgstr "Yeni setir olaraq elave et" -#: libraries/messages.inc.php:429 sql.php:496 tbl_replace.php:386 +#: libraries/messages.inc.php:425 sql.php:496 tbl_replace.php:386 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: libraries/messages.inc.php:430 tbl_change.php:1131 +#: libraries/messages.inc.php:426 tbl_change.php:1131 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/messages.inc.php:432 main.php:139 +#: libraries/messages.inc.php:428 main.php:139 msgid "Interface" msgstr "" -#: libraries/messages.inc.php:433 tbl_relation.php:407 +#: libraries/messages.inc.php:429 tbl_relation.php:407 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: libraries/messages.inc.php:435 pdf_pages.php:303 +#: libraries/messages.inc.php:431 pdf_pages.php:303 msgid "Internal relations" msgstr "" -#: libraries/messages.inc.php:438 tbl_indexes.php:256 tbl_structure.php:590 +#: libraries/messages.inc.php:434 tbl_indexes.php:256 tbl_structure.php:590 #: tbl_structure.php:601 msgid "Column count has to be larger than zero." msgstr "" -#: libraries/messages.inc.php:444 libraries/tbl_properties.inc.php:784 +#: libraries/messages.inc.php:440 libraries/tbl_properties.inc.php:784 #: tbl_structure.php:537 msgid "You have to add at least one field." msgstr "" -#: libraries/messages.inc.php:449 +#: libraries/messages.inc.php:445 #, php-format msgid "Invalid server index: \"%s\"" msgstr "" -#: libraries/messages.inc.php:452 libraries/mysql_charsets.lib.php:259 +#: libraries/messages.inc.php:448 libraries/mysql_charsets.lib.php:259 #: libraries/mysql_charsets.lib.php:349 msgid "Japanese" msgstr "" -#: libraries/messages.inc.php:453 main.php:331 +#: libraries/messages.inc.php:449 main.php:331 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: libraries/messages.inc.php:454 server_status.php:257 +#: libraries/messages.inc.php:450 server_status.php:257 msgid "Joins" msgstr "" -#: libraries/messages.inc.php:457 server_privileges.php:763 +#: libraries/messages.inc.php:453 server_privileges.php:763 msgid "Do not change the password" msgstr "Parolu deyişdirme" -#: libraries/messages.inc.php:458 server_status.php:256 +#: libraries/messages.inc.php:454 server_status.php:256 msgid "Key cache" msgstr "" -#: libraries/messages.inc.php:462 libraries/mysql_charsets.lib.php:268 +#: libraries/messages.inc.php:458 libraries/mysql_charsets.lib.php:268 #: libraries/mysql_charsets.lib.php:371 msgid "Korean" msgstr "" -#: libraries/messages.inc.php:466 libraries/select_lang.lib.php:480 +#: libraries/messages.inc.php:462 libraries/select_lang.lib.php:480 #: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492 #, php-format msgid "Unknown language: %1$s." msgstr "" -#: libraries/messages.inc.php:468 +#: libraries/messages.inc.php:464 msgid "Table caption" msgstr "Cedvel başlığı" -#: libraries/messages.inc.php:469 +#: libraries/messages.inc.php:465 msgid "Content of table __TABLE__" msgstr "" -#: libraries/messages.inc.php:470 +#: libraries/messages.inc.php:466 msgid "Continued table caption" msgstr "Cedvel başlığının davamı" -#: libraries/messages.inc.php:471 +#: libraries/messages.inc.php:467 msgid "(continued)" msgstr "(davamı)" -#: libraries/messages.inc.php:472 +#: libraries/messages.inc.php:468 msgid "Include table caption" msgstr "Cedvel başlığını daxil et" -#: libraries/messages.inc.php:473 +#: libraries/messages.inc.php:469 msgid "Label key" msgstr "Etiket açarı" -#: libraries/messages.inc.php:474 +#: libraries/messages.inc.php:470 msgid "LaTeX" msgstr "LaTeX" -#: libraries/messages.inc.php:475 +#: libraries/messages.inc.php:471 msgid "Structure of table __TABLE__" msgstr "" -#: libraries/messages.inc.php:476 libraries/mysql_charsets.lib.php:262 +#: libraries/messages.inc.php:472 libraries/mysql_charsets.lib.php:262 msgid "Latvian" msgstr "" -#: libraries/messages.inc.php:477 +#: libraries/messages.inc.php:473 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/messages.inc.php:478 +#: libraries/messages.inc.php:474 msgid "Use LOCAL keyword" msgstr "" -#: libraries/messages.inc.php:479 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:475 libraries/tbl_properties.inc.php:105 msgid "Length/Values" msgstr "Uzunluq/Deyerler*" -#: libraries/messages.inc.php:480 tbl_select.php:295 +#: libraries/messages.inc.php:476 tbl_select.php:295 msgid "Number of rows per page" msgstr "Sehife başına düşen setir sayı" -#: libraries/messages.inc.php:484 libraries/mysql_charsets.lib.php:265 +#: libraries/messages.inc.php:480 libraries/mysql_charsets.lib.php:265 msgid "Lithuanian" msgstr "Litva Dili" -#: libraries/messages.inc.php:485 libraries/replication_gui.lib.php:302 +#: libraries/messages.inc.php:481 libraries/replication_gui.lib.php:302 #: server_privileges.php:729 msgid "Local" msgstr "Yerli" -#: libraries/messages.inc.php:487 server_privileges.php:669 +#: libraries/messages.inc.php:483 server_privileges.php:669 msgid "Login Information" msgstr "Sisteme Giriş Me'lumatı" -#: libraries/messages.inc.php:490 libraries/navigation_header.inc.php:67 +#: libraries/messages.inc.php:486 libraries/navigation_header.inc.php:67 #: libraries/navigation_header.inc.php:70 #: libraries/navigation_header.inc.php:71 main.php:99 msgid "Log out" msgstr "Sistemden Çıxış" -#: libraries/messages.inc.php:497 server_status.php:440 +#: libraries/messages.inc.php:493 server_status.php:440 msgid "max. concurrent connections" msgstr "" -#: libraries/messages.inc.php:498 +#: libraries/messages.inc.php:494 msgid "Maximal length of created query" msgstr "" -#: libraries/messages.inc.php:500 main.php:282 +#: libraries/messages.inc.php:496 main.php:282 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " "split strings correctly and it may result in unexpected results." msgstr "" -#: libraries/messages.inc.php:501 main.php:274 +#: libraries/messages.inc.php:497 main.php:274 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " "corrupted!" msgstr "" -#: libraries/messages.inc.php:502 +#: libraries/messages.inc.php:498 msgid "MediaWiki Table" msgstr "" -#: libraries/messages.inc.php:503 transformation_overview.php:25 +#: libraries/messages.inc.php:499 transformation_overview.php:25 msgid "Available MIME types" msgstr "Mövcud olan MIME-tipleri" -#: libraries/messages.inc.php:504 transformation_overview.php:43 +#: libraries/messages.inc.php:500 transformation_overview.php:43 msgid "Available transformations" msgstr "Mövcud transformasiyalar" -#: libraries/messages.inc.php:505 +#: libraries/messages.inc.php:501 msgctxt "$strMIME_description" msgid "Description" msgstr "Haqqında" -#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:580 +#: libraries/messages.inc.php:503 libraries/tbl_properties.inc.php:580 #: transformation_overview.php:60 #, php-format msgid "" @@ -4187,7 +4187,7 @@ msgstr "" "No Description is available for this transformation.
Please ask the " "author, what %s does." -#: libraries/messages.inc.php:509 libraries/tbl_properties.inc.php:137 +#: libraries/messages.inc.php:505 libraries/tbl_properties.inc.php:137 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -4196,7 +4196,7 @@ msgstr "" "For a list of available transformation options and their MIME-type " "transformations, click on %stransformation descriptions%s" -#: libraries/messages.inc.php:510 libraries/tbl_properties.inc.php:146 +#: libraries/messages.inc.php:506 libraries/tbl_properties.inc.php:146 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -4208,411 +4208,411 @@ msgstr "" "quote (\"'\") amongst those values, backslashes it (for example '\\\\xyz' or " "'a\\'b')." -#: libraries/messages.inc.php:511 libraries/tbl_properties.inc.php:145 +#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:145 msgid "Transformation options" msgstr "Transformasiya variantları" -#: libraries/messages.inc.php:513 transformation_overview.php:38 +#: libraries/messages.inc.php:509 transformation_overview.php:38 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "" "MIME-types printed in italics do not have a seperate transformation function" -#: libraries/messages.inc.php:515 tbl_indexes.php:162 +#: libraries/messages.inc.php:511 tbl_indexes.php:162 msgid "Modify an index" msgstr "Modify an index" -#: libraries/messages.inc.php:517 pmd_general.php:108 +#: libraries/messages.inc.php:513 pmd_general.php:108 msgid "Move Menu" msgstr "" -#: libraries/messages.inc.php:518 tbl_operations.php:276 +#: libraries/messages.inc.php:514 tbl_operations.php:276 msgid "Move table to (database.table):" msgstr "Cedveli daşı (me'lumat bazası.cedvel):" -#: libraries/messages.inc.php:519 tbl_move_copy.php:56 +#: libraries/messages.inc.php:515 tbl_move_copy.php:56 #, php-format msgid "Table %s has been moved to %s." msgstr "%s cedveli %s - e daşınmışdır." -#: libraries/messages.inc.php:520 tbl_move_copy.php:46 +#: libraries/messages.inc.php:516 tbl_move_copy.php:46 msgid "Can't move table to same one!" msgstr "Can't move table to same one!" -#: libraries/messages.inc.php:521 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:517 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 #: libraries/mysql_charsets.lib.php:332 libraries/mysql_charsets.lib.php:354 #: libraries/mysql_charsets.lib.php:365 msgid "multilingual" msgstr "" -#: libraries/messages.inc.php:534 main.php:193 +#: libraries/messages.inc.php:530 main.php:193 msgid "MySQL charset" msgstr "MySQL charset" -#: libraries/messages.inc.php:535 main.php:211 +#: libraries/messages.inc.php:531 main.php:211 msgid "MySQL client version" msgstr "" -#: libraries/messages.inc.php:536 main.php:125 +#: libraries/messages.inc.php:532 main.php:125 msgid "MySQL connection collation" msgstr "" -#: libraries/messages.inc.php:537 main.php:346 +#: libraries/messages.inc.php:533 main.php:346 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: libraries/messages.inc.php:539 server_status.php:294 +#: libraries/messages.inc.php:535 server_status.php:294 msgid "Show processes" msgstr "Prosesleri göster" -#: libraries/messages.inc.php:545 navigation.php:210 server_databases.php:371 +#: libraries/messages.inc.php:541 navigation.php:210 server_databases.php:371 #: server_synchronize.php:1191 msgid "No databases" msgstr "Baza seçilmemişdir ve ya mövcud deyildir." -#: libraries/messages.inc.php:546 server_databases.php:52 +#: libraries/messages.inc.php:542 server_databases.php:52 msgid "No databases selected." msgstr "Heç bir baza seçilmemişdir." -#: libraries/messages.inc.php:548 libraries/relation.lib.php:1173 +#: libraries/messages.inc.php:544 libraries/relation.lib.php:1173 msgid "no description" msgstr "Haqqında me'lumat (description) mövcud deyildir" -#: libraries/messages.inc.php:552 libraries/zip_extension.lib.php:26 +#: libraries/messages.inc.php:548 libraries/zip_extension.lib.php:26 msgid "No files found inside ZIP archive!" msgstr "" -#: libraries/messages.inc.php:555 tbl_indexes.php:91 +#: libraries/messages.inc.php:551 tbl_indexes.php:91 msgid "No index parts defined!" msgstr "İndeks qisimleri te'yin edilmedi!" -#: libraries/messages.inc.php:556 libraries/mult_submits.inc.php:435 +#: libraries/messages.inc.php:552 libraries/mult_submits.inc.php:435 #: tbl_replace.php:331 msgid "No change" msgstr "Deyişiklik Yoxdur" -#: libraries/messages.inc.php:557 +#: libraries/messages.inc.php:553 #, fuzzy msgctxt "$strNoneDefault" msgid "None" msgstr "Heç biri" -#: libraries/messages.inc.php:560 libraries/plugin_interface.lib.php:312 +#: libraries/messages.inc.php:556 libraries/plugin_interface.lib.php:312 msgid "This format has no options" msgstr "Bu formatın variantları yoxdur" -#: libraries/messages.inc.php:565 user_password.php:54 +#: libraries/messages.inc.php:561 user_password.php:54 msgid "You don't have sufficient privileges to be here right now!" msgstr "Burada olma haqqınız yoxdur!" -#: libraries/messages.inc.php:566 tbl_row_action.php:29 +#: libraries/messages.inc.php:562 tbl_row_action.php:29 msgid "No rows selected" msgstr "" -#: libraries/messages.inc.php:569 themes.php:32 +#: libraries/messages.inc.php:565 themes.php:32 #, php-format msgid "" "No themes support; please check your configuration and/or your themes in " "directory %s." msgstr "" -#: libraries/messages.inc.php:571 libraries/relation.lib.php:95 +#: libraries/messages.inc.php:567 libraries/relation.lib.php:95 msgid "not OK" msgstr "Müveffeqiyyetsiz" -#: libraries/messages.inc.php:572 server_synchronize.php:400 +#: libraries/messages.inc.php:568 server_synchronize.php:400 #: server_synchronize.php:839 msgid "not present" msgstr "" -#: libraries/messages.inc.php:573 pdf_pages.php:36 pdf_pages.php:42 +#: libraries/messages.inc.php:569 pdf_pages.php:36 pdf_pages.php:42 #: pdf_pages.php:48 pdf_pages.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "" "%s cedveli %s içerisinde ya tapılmadı ya da qurulmamışdır" -#: libraries/messages.inc.php:574 server_privileges.php:804 +#: libraries/messages.inc.php:570 server_privileges.php:804 #: server_privileges.php:2166 msgid "No user(s) found." msgstr "İstifadeçi(ler) tapılmadı." -#: libraries/messages.inc.php:578 pmd_general.php:164 +#: libraries/messages.inc.php:574 pmd_general.php:164 msgid "Number of tables" msgstr "" -#: libraries/messages.inc.php:581 server_databases.php:117 +#: libraries/messages.inc.php:577 server_databases.php:117 #: server_status.php:260 setup/lib/messages.inc.php:117 msgid "Tables" msgstr "Cedveller" -#: libraries/messages.inc.php:583 libraries/relation.lib.php:99 +#: libraries/messages.inc.php:579 libraries/relation.lib.php:99 #: pmd_general.php:340 msgid "OK" msgstr "Müveffeqiyyetle" -#: libraries/messages.inc.php:585 +#: libraries/messages.inc.php:581 msgid "Open Document Text" msgstr "" -#: libraries/messages.inc.php:588 tbl_select.php:138 +#: libraries/messages.inc.php:584 tbl_select.php:138 #, fuzzy msgid "Operator" msgstr "Emeliyyatlar" -#: libraries/messages.inc.php:589 tbl_operations.php:662 +#: libraries/messages.inc.php:585 tbl_operations.php:662 msgid "Optimize" msgstr "" -#: libraries/messages.inc.php:602 libraries/tbl_properties.inc.php:755 +#: libraries/messages.inc.php:598 libraries/tbl_properties.inc.php:755 msgid "PARTITION definition" msgstr "" -#: libraries/messages.inc.php:603 tbl_structure.php:757 +#: libraries/messages.inc.php:599 tbl_structure.php:757 msgid "partitioned" msgstr "" -#: libraries/messages.inc.php:604 tbl_operations.php:649 +#: libraries/messages.inc.php:600 tbl_operations.php:649 #, fuzzy msgid "Partition maintenance" msgstr "Cedvel temizliyi" -#: libraries/messages.inc.php:605 tbl_operations.php:657 +#: libraries/messages.inc.php:601 tbl_operations.php:657 #, php-format msgid "Partition %s" msgstr "" -#: libraries/messages.inc.php:606 server_privileges.php:1212 +#: libraries/messages.inc.php:602 server_privileges.php:1212 #, php-format msgid "The password for %s was changed successfully." msgstr "%s üçün parol müveffeqiyyetle deyişdirilmişdir." -#: libraries/messages.inc.php:635 +#: libraries/messages.inc.php:631 #, php-format msgid "Schema of the \"%s\" database - Page %s" msgstr "\"%s\" bazanın sxemi - Sehife %s" -#: libraries/messages.inc.php:636 +#: libraries/messages.inc.php:632 #, php-format msgid "The \"%s\" table doesn't exist!" msgstr "\"%s\" cedveli mövcud deyil!" -#: libraries/messages.inc.php:637 pdf_schema.php:1013 +#: libraries/messages.inc.php:633 pdf_schema.php:1013 msgid "No tables" msgstr "Cedvel yoxdur" -#: libraries/messages.inc.php:638 pmd_pdf.php:63 +#: libraries/messages.inc.php:634 pmd_pdf.php:63 #, fuzzy msgid "Page has been created" msgstr "%s cedveli leğv edildi" -#: libraries/messages.inc.php:639 pmd_pdf.php:65 +#: libraries/messages.inc.php:635 pmd_pdf.php:65 msgid "Page creation failed" msgstr "" -#: libraries/messages.inc.php:640 +#: libraries/messages.inc.php:636 msgid "PDF" msgstr "" -#: libraries/messages.inc.php:641 +#: libraries/messages.inc.php:637 msgid "(Generates a report containing the data of a single table)" msgstr "" -#: libraries/messages.inc.php:642 +#: libraries/messages.inc.php:638 msgid "Report title" msgstr "" -#: libraries/messages.inc.php:643 server_status.php:389 server_status.php:434 +#: libraries/messages.inc.php:639 server_status.php:389 server_status.php:434 #: server_status.php:497 server_status.php:555 msgid "per hour" msgstr "saatda" -#: libraries/messages.inc.php:644 server_status.php:498 +#: libraries/messages.inc.php:640 server_status.php:498 msgid "per minute" msgstr "deqiqede" -#: libraries/messages.inc.php:645 server_status.php:499 +#: libraries/messages.inc.php:641 server_status.php:499 msgid "per second" msgstr "saniyede" -#: libraries/messages.inc.php:646 libraries/mysql_charsets.lib.php:271 +#: libraries/messages.inc.php:642 libraries/mysql_charsets.lib.php:271 #, fuzzy msgid "Persian" msgstr "Gürcü" -#: libraries/messages.inc.php:647 libraries/mysql_charsets.lib.php:250 +#: libraries/messages.inc.php:643 libraries/mysql_charsets.lib.php:250 msgid "phone book" msgstr "" -#: libraries/messages.inc.php:648 +#: libraries/messages.inc.php:644 msgid "PHP array" msgstr "" -#: libraries/messages.inc.php:650 main.php:213 +#: libraries/messages.inc.php:646 main.php:213 #, fuzzy msgid "PHP extension" msgstr "PHP Versiyası" -#: libraries/messages.inc.php:654 libraries/relation.lib.php:163 +#: libraries/messages.inc.php:650 libraries/relation.lib.php:163 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/messages.inc.php:655 libraries/relation.lib.php:159 +#: libraries/messages.inc.php:651 libraries/relation.lib.php:159 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/messages.inc.php:656 libraries/relation.lib.php:161 +#: libraries/messages.inc.php:652 libraries/relation.lib.php:161 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" -#: libraries/messages.inc.php:657 libraries/relation.lib.php:162 +#: libraries/messages.inc.php:653 libraries/relation.lib.php:162 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/messages.inc.php:658 libraries/relation.lib.php:164 +#: libraries/messages.inc.php:654 libraries/relation.lib.php:164 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/messages.inc.php:661 libraries/mysql_charsets.lib.php:274 +#: libraries/messages.inc.php:657 libraries/mysql_charsets.lib.php:274 msgid "Polish" msgstr "" -#: libraries/messages.inc.php:662 libraries/replication_gui.lib.php:67 +#: libraries/messages.inc.php:658 libraries/replication_gui.lib.php:67 #: server_synchronize.php:1163 #, fuzzy msgid "Port" msgstr "Sırala" -#: libraries/messages.inc.php:667 tbl_indexes.php:67 +#: libraries/messages.inc.php:663 tbl_indexes.php:67 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Birinci dereceli açarın adı... BİRİNCİ DERECELİ (PRIMARY) olmalıdır!" -#: libraries/messages.inc.php:668 tbl_indexes.php:184 +#: libraries/messages.inc.php:664 tbl_indexes.php:184 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "(\"PRIMARY\" sadece birinci dereceli açarın adı olmalıdır!)" -#: libraries/messages.inc.php:669 libraries/mult_submits.inc.php:76 +#: libraries/messages.inc.php:665 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:474 msgid "Primary" msgstr "Birinci Dereceli" -#: libraries/messages.inc.php:673 server_privileges.php:227 +#: libraries/messages.inc.php:669 server_privileges.php:227 msgid "Includes all privileges except GRANT." msgstr "GRANT-dan başqa bütün selahiyyetler daxildir." -#: libraries/messages.inc.php:674 server_privileges.php:153 +#: libraries/messages.inc.php:670 server_privileges.php:153 #: server_privileges.php:476 msgid "Allows altering the structure of existing tables." msgstr "Mövcud olan cedvellerin strukturunu deyişdirmeye icaze verir." -#: libraries/messages.inc.php:675 server_privileges.php:169 +#: libraries/messages.inc.php:671 server_privileges.php:169 #: server_privileges.php:482 #, fuzzy msgid "Allows altering and dropping stored routines." msgstr "Allows creating and dropping indexes." -#: libraries/messages.inc.php:676 server_privileges.php:145 +#: libraries/messages.inc.php:672 server_privileges.php:145 #: server_privileges.php:475 msgid "Allows creating new databases and tables." msgstr "Yeni bazalar ve cedveller qurmağa icaze verir." -#: libraries/messages.inc.php:677 server_privileges.php:168 +#: libraries/messages.inc.php:673 server_privileges.php:168 #: server_privileges.php:481 #, fuzzy msgid "Allows creating stored routines." msgstr "Yeni cedveller qurmağa icaze verir." -#: libraries/messages.inc.php:678 server_privileges.php:475 +#: libraries/messages.inc.php:674 server_privileges.php:475 msgid "Allows creating new tables." msgstr "Yeni cedveller qurmağa icaze verir." -#: libraries/messages.inc.php:679 server_privileges.php:156 +#: libraries/messages.inc.php:675 server_privileges.php:156 #: server_privileges.php:479 msgid "Allows creating temporary tables." msgstr "Keçici cedveller qurmağa icaze verir." -#: libraries/messages.inc.php:680 server_privileges.php:170 +#: libraries/messages.inc.php:676 server_privileges.php:170 #: server_privileges.php:515 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: libraries/messages.inc.php:681 server_privileges.php:160 +#: libraries/messages.inc.php:677 server_privileges.php:160 #: server_privileges.php:164 server_privileges.php:487 #: server_privileges.php:491 #, fuzzy msgid "Allows creating new views." msgstr "Yeni cedveller qurmağa icaze verir." -#: libraries/messages.inc.php:682 server_privileges.php:144 +#: libraries/messages.inc.php:678 server_privileges.php:144 #: server_privileges.php:467 msgid "Allows deleting data." msgstr "Me'lumat silmeye icaze verir." -#: libraries/messages.inc.php:683 server_privileges.php:146 +#: libraries/messages.inc.php:679 server_privileges.php:146 #: server_privileges.php:478 msgid "Allows dropping databases and tables." msgstr "Baza ve cedvel leğv etmeye icaze verir." -#: libraries/messages.inc.php:684 server_privileges.php:478 +#: libraries/messages.inc.php:680 server_privileges.php:478 msgid "Allows dropping tables." msgstr "Cedvelleri leğv etmeye icaze verir." -#: libraries/messages.inc.php:685 server_privileges.php:161 +#: libraries/messages.inc.php:681 server_privileges.php:161 #: server_privileges.php:495 msgid "Allows to set up events for the event scheduler" msgstr "" -#: libraries/messages.inc.php:686 server_privileges.php:171 +#: libraries/messages.inc.php:682 server_privileges.php:171 #: server_privileges.php:483 msgid "Allows executing stored routines." msgstr "" -#: libraries/messages.inc.php:687 server_privileges.php:150 +#: libraries/messages.inc.php:683 server_privileges.php:150 #: server_privileges.php:470 msgid "Allows importing data from and exporting data into files." msgstr "Allows importing data from and exporting data into files." -#: libraries/messages.inc.php:688 server_privileges.php:501 +#: libraries/messages.inc.php:684 server_privileges.php:501 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Allows adding users and privileges without reloading the privilege tables." -#: libraries/messages.inc.php:689 server_privileges.php:152 +#: libraries/messages.inc.php:685 server_privileges.php:152 #: server_privileges.php:477 msgid "Allows creating and dropping indexes." msgstr "Allows creating and dropping indexes." -#: libraries/messages.inc.php:690 server_privileges.php:142 +#: libraries/messages.inc.php:686 server_privileges.php:142 #: server_privileges.php:403 server_privileges.php:465 msgid "Allows inserting and replacing data." msgstr "Allows inserting and replacing data." -#: libraries/messages.inc.php:691 server_privileges.php:157 +#: libraries/messages.inc.php:687 server_privileges.php:157 #: server_privileges.php:510 msgid "Allows locking tables for the current thread." msgstr "Allows locking tables for the current thread." -#: libraries/messages.inc.php:692 server_privileges.php:607 +#: libraries/messages.inc.php:688 server_privileges.php:607 #: server_privileges.php:609 msgid "Limits the number of new connections the user may open per hour." msgstr "Limits the number of new connections the user may open per hour." -#: libraries/messages.inc.php:693 server_privileges.php:595 +#: libraries/messages.inc.php:689 server_privileges.php:595 #: server_privileges.php:597 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Limits the number of queries the user may send to the server per hour." -#: libraries/messages.inc.php:694 server_privileges.php:601 +#: libraries/messages.inc.php:690 server_privileges.php:601 #: server_privileges.php:603 msgid "" "Limits the number of commands that change any table or database the user may " @@ -4621,58 +4621,58 @@ msgstr "" "Limits the number of commands that change any table or database the user may " "execute per hour." -#: libraries/messages.inc.php:695 server_privileges.php:613 +#: libraries/messages.inc.php:691 server_privileges.php:613 #: server_privileges.php:615 #, fuzzy msgid "Limits the number of simultaneous connections the user may have." msgstr "Limits the number of new connections the user may open per hour." -#: libraries/messages.inc.php:696 server_privileges.php:149 +#: libraries/messages.inc.php:692 server_privileges.php:149 #: server_privileges.php:505 msgid "Allows viewing processes of all users" msgstr "" -#: libraries/messages.inc.php:697 server_privileges.php:151 +#: libraries/messages.inc.php:693 server_privileges.php:151 #: server_privileges.php:409 server_privileges.php:511 msgid "Has no effect in this MySQL version." msgstr "Has no effect in this MySQL version." -#: libraries/messages.inc.php:698 server_privileges.php:147 +#: libraries/messages.inc.php:694 server_privileges.php:147 #: server_privileges.php:506 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Allows reloading server settings and flushing the server's caches." -#: libraries/messages.inc.php:699 server_privileges.php:159 +#: libraries/messages.inc.php:695 server_privileges.php:159 #: server_privileges.php:513 msgid "Allows the user to ask where the slaves / masters are." msgstr "Gives the right to the user to ask where the slaves / masters are." -#: libraries/messages.inc.php:700 server_privileges.php:158 +#: libraries/messages.inc.php:696 server_privileges.php:158 #: server_privileges.php:514 msgid "Needed for the replication slaves." msgstr "Needed for the replication slaves." -#: libraries/messages.inc.php:701 server_privileges.php:141 +#: libraries/messages.inc.php:697 server_privileges.php:141 #: server_privileges.php:400 server_privileges.php:464 msgid "Allows reading data." msgstr "Allows reading data." -#: libraries/messages.inc.php:702 server_privileges.php:154 +#: libraries/messages.inc.php:698 server_privileges.php:154 #: server_privileges.php:508 msgid "Gives access to the complete list of databases." msgstr "Gives access to the complete list of databases." -#: libraries/messages.inc.php:703 server_privileges.php:165 +#: libraries/messages.inc.php:699 server_privileges.php:165 #: server_privileges.php:167 server_privileges.php:480 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: libraries/messages.inc.php:704 server_privileges.php:148 +#: libraries/messages.inc.php:700 server_privileges.php:148 #: server_privileges.php:507 msgid "Allows shutting down the server." msgstr "Allows shutting down the server." -#: libraries/messages.inc.php:705 server_privileges.php:155 +#: libraries/messages.inc.php:701 server_privileges.php:155 #: server_privileges.php:504 msgid "" "Allows connecting, even if maximum number of connections is reached; " @@ -4683,57 +4683,57 @@ msgstr "" "Required for most administrative operations like setting global variables or " "killing threads of other users." -#: libraries/messages.inc.php:706 server_privileges.php:162 +#: libraries/messages.inc.php:702 server_privileges.php:162 #: server_privileges.php:496 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "Allows creating and dropping indexes." -#: libraries/messages.inc.php:707 server_privileges.php:143 +#: libraries/messages.inc.php:703 server_privileges.php:143 #: server_privileges.php:406 server_privileges.php:466 msgid "Allows changing data." msgstr "Allows changing data." -#: libraries/messages.inc.php:708 server_privileges.php:221 +#: libraries/messages.inc.php:704 server_privileges.php:221 msgid "No privileges." msgstr "Selahiyyet te'yin edilmedi." -#: libraries/messages.inc.php:710 server_privileges.php:1296 +#: libraries/messages.inc.php:706 server_privileges.php:1296 msgid "The privileges were reloaded successfully." msgstr "The privileges were reloaded successfully." -#: libraries/messages.inc.php:712 libraries/server_links.inc.php:80 +#: libraries/messages.inc.php:708 libraries/server_links.inc.php:80 msgid "Processes" msgstr "Prosesler" -#: libraries/messages.inc.php:714 main.php:187 +#: libraries/messages.inc.php:710 main.php:187 msgid "Protocol version" msgstr "" -#: libraries/messages.inc.php:715 +#: libraries/messages.inc.php:711 msgid "Put fields names in the first row" msgstr "Sahe adlarını birinci setre yerleşdir" -#: libraries/messages.inc.php:720 server_synchronize.php:1003 +#: libraries/messages.inc.php:716 server_synchronize.php:1003 msgid "The following queries have been executed:" msgstr "" -#: libraries/messages.inc.php:721 server_status.php:251 +#: libraries/messages.inc.php:717 server_status.php:251 #, fuzzy msgid "Query cache" msgstr "Sorğu tipi" -#: libraries/messages.inc.php:722 libraries/navigation_header.inc.php:80 +#: libraries/messages.inc.php:718 libraries/navigation_header.inc.php:80 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 setup/lib/messages.inc.php:122 msgid "Query window" msgstr "Sorğu penceresi" -#: libraries/messages.inc.php:725 querywindow.php:109 querywindow.php:217 +#: libraries/messages.inc.php:721 querywindow.php:109 querywindow.php:217 msgid "SQL history" msgstr "SQL-tarixçesi" -#: libraries/messages.inc.php:726 server_status.php:490 +#: libraries/messages.inc.php:722 server_status.php:490 #, php-format msgid "" "Query statistics: Since its startup, %s queries have been sent to the " @@ -4742,137 +4742,137 @@ msgstr "" "Sorğu Statistikası: Açıldıqdan bu yana, bu servere %s sorğu " "gönderilmişdir." -#: libraries/messages.inc.php:728 server_status.php:554 +#: libraries/messages.inc.php:724 server_status.php:554 msgid "Query type" msgstr "Sorğu tipi" -#: libraries/messages.inc.php:729 libraries/sql_query_form.lib.php:381 +#: libraries/messages.inc.php:725 libraries/sql_query_form.lib.php:381 msgid "Do not overwrite this query from outside the window" msgstr "" -#: libraries/messages.inc.php:732 tbl_operations.php:663 +#: libraries/messages.inc.php:728 tbl_operations.php:663 msgid "Rebuild" msgstr "" -#: libraries/messages.inc.php:733 server_status.php:394 +#: libraries/messages.inc.php:729 server_status.php:394 msgid "Received" msgstr "Alındı" -#: libraries/messages.inc.php:734 pmd_pdf.php:89 +#: libraries/messages.inc.php:730 pmd_pdf.php:89 msgid "recommended" msgstr "" -#: libraries/messages.inc.php:736 tbl_operations.php:702 +#: libraries/messages.inc.php:732 tbl_operations.php:702 msgid "Check referential integrity:" msgstr "Check referential integrity:" -#: libraries/messages.inc.php:740 pdf_schema.php:1032 pdf_schema.php:1141 +#: libraries/messages.inc.php:736 pdf_schema.php:1032 pdf_schema.php:1141 msgid "Relational schema" msgstr "Relational schema" -#: libraries/messages.inc.php:744 tbl_relation.php:399 +#: libraries/messages.inc.php:740 tbl_relation.php:399 msgid "Relations" msgstr "Relations" -#: libraries/messages.inc.php:745 tbl_structure.php:507 tbl_structure.php:509 +#: libraries/messages.inc.php:741 tbl_structure.php:507 tbl_structure.php:509 msgid "Relation view" msgstr "Relation view" -#: libraries/messages.inc.php:746 server_privileges.php:1246 +#: libraries/messages.inc.php:742 server_privileges.php:1246 msgid "Reloading the privileges" msgstr "Reloading the privileges" -#: libraries/messages.inc.php:747 navigation.php:66 navigation.php:67 +#: libraries/messages.inc.php:743 navigation.php:66 navigation.php:67 #: navigation.php:70 msgid "Reload navigation frame" msgstr "" -#: libraries/messages.inc.php:748 pmd_general.php:80 +#: libraries/messages.inc.php:744 pmd_general.php:80 msgid "Reload" msgstr "" -#: libraries/messages.inc.php:749 libraries/server_synchronize.lib.php:1345 +#: libraries/messages.inc.php:745 libraries/server_synchronize.lib.php:1345 #: libraries/server_synchronize.lib.php:1371 msgid "Remote server" msgstr "" -#: libraries/messages.inc.php:750 +#: libraries/messages.inc.php:746 msgid "Remove CRLF characters within fields" msgstr "" -#: libraries/messages.inc.php:751 tbl_operations.php:676 +#: libraries/messages.inc.php:747 tbl_operations.php:676 msgid "Remove partitioning" msgstr "" -#: libraries/messages.inc.php:752 server_privileges.php:1575 +#: libraries/messages.inc.php:748 server_privileges.php:1575 msgid "Remove selected users" msgstr "Remove selected users" -#: libraries/messages.inc.php:755 tbl_operations.php:338 +#: libraries/messages.inc.php:751 tbl_operations.php:338 msgid "Rename table to" msgstr "Cedveli yeniden adlandır" -#: libraries/messages.inc.php:756 view_operations.php:93 +#: libraries/messages.inc.php:752 view_operations.php:93 #, fuzzy msgid "Rename view to" msgstr "Cedveli yeniden adlandır" -#: libraries/messages.inc.php:757 tbl_operations.php:664 +#: libraries/messages.inc.php:753 tbl_operations.php:664 #, fuzzy msgid "Repair" msgstr "Cedveli te'mir et" -#: libraries/messages.inc.php:759 +#: libraries/messages.inc.php:755 msgid "Replace NULL by" msgstr "NULL-u bununla deyişdir" -#: libraries/messages.inc.php:760 +#: libraries/messages.inc.php:756 msgid "Replace table data with file" msgstr "Replace table data with file" -#: libraries/messages.inc.php:761 server_replication.php:228 +#: libraries/messages.inc.php:757 server_replication.php:228 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: libraries/messages.inc.php:762 libraries/replication_gui.lib.php:236 +#: libraries/messages.inc.php:758 libraries/replication_gui.lib.php:236 #: server_replication.php:194 msgid "Add slave replication user" msgstr "" -#: libraries/messages.inc.php:763 server_replication.php:74 +#: libraries/messages.inc.php:759 server_replication.php:74 #, php-format msgid "Master server changed succesfully to %s" msgstr "" -#: libraries/messages.inc.php:764 server_replication.php:182 +#: libraries/messages.inc.php:760 server_replication.php:182 msgid "This server is configured as master in a replication process." msgstr "" -#: libraries/messages.inc.php:765 server_replication.php:322 +#: libraries/messages.inc.php:761 server_replication.php:322 msgid "Control slave:" msgstr "" -#: libraries/messages.inc.php:766 server_replication.php:65 +#: libraries/messages.inc.php:762 server_replication.php:65 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: libraries/messages.inc.php:767 server_replication.php:58 +#: libraries/messages.inc.php:763 server_replication.php:58 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: libraries/messages.inc.php:768 server_replication.php:221 +#: libraries/messages.inc.php:764 server_replication.php:221 msgid "Replicate all databases; Ignore:" msgstr "" -#: libraries/messages.inc.php:769 server_replication.php:222 +#: libraries/messages.inc.php:765 server_replication.php:222 msgid "Ignore all databases; Replicate:" msgstr "" -#: libraries/messages.inc.php:770 server_replication.php:218 +#: libraries/messages.inc.php:766 server_replication.php:218 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -4881,121 +4881,121 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: libraries/messages.inc.php:771 server_replication.php:217 +#: libraries/messages.inc.php:767 server_replication.php:217 msgid "Master configuration" msgstr "" -#: libraries/messages.inc.php:772 server_replication.php:181 +#: libraries/messages.inc.php:768 server_replication.php:181 #: server_replication.php:209 msgid "Master replication" msgstr "" -#: libraries/messages.inc.php:774 server_replication.php:230 +#: libraries/messages.inc.php:770 server_replication.php:230 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: libraries/messages.inc.php:775 server_replication.php:225 +#: libraries/messages.inc.php:771 server_replication.php:225 #, fuzzy msgid "Please select databases:" msgstr "Me'lumat bazası seç" -#: libraries/messages.inc.php:776 server_replication.php:210 +#: libraries/messages.inc.php:772 server_replication.php:210 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:188 +#: libraries/messages.inc.php:773 libraries/replication_gui.lib.php:188 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/messages.inc.php:778 server_replication.php:187 +#: libraries/messages.inc.php:774 server_replication.php:187 msgid "Show connected slaves" msgstr "" -#: libraries/messages.inc.php:779 libraries/messages.inc.php:885 +#: libraries/messages.inc.php:775 libraries/messages.inc.php:881 #: server_replication.php:184 server_status.php:281 msgid "Show master status" msgstr "" -#: libraries/messages.inc.php:780 server_replication.php:334 +#: libraries/messages.inc.php:776 server_replication.php:334 msgid "Skipping error(s) might lead into unsynchronized master and slave!" msgstr "" -#: libraries/messages.inc.php:781 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:51 #: server_replication.php:347 msgid "Change or reconfigure master server" msgstr "" -#: libraries/messages.inc.php:782 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:778 libraries/replication_gui.lib.php:51 msgid "Slave configuration" msgstr "" -#: libraries/messages.inc.php:783 server_replication.php:305 +#: libraries/messages.inc.php:779 server_replication.php:305 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: libraries/messages.inc.php:784 server_replication.php:332 +#: libraries/messages.inc.php:780 server_replication.php:332 msgid "Error management:" msgstr "" -#: libraries/messages.inc.php:785 server_replication.php:328 +#: libraries/messages.inc.php:781 server_replication.php:328 #, php-format msgid "IO Thread %s only" msgstr "" -#: libraries/messages.inc.php:786 server_replication.php:296 +#: libraries/messages.inc.php:782 server_replication.php:296 msgid "Slave IO Thread not running!" msgstr "" -#: libraries/messages.inc.php:787 server_replication.php:355 +#: libraries/messages.inc.php:783 server_replication.php:355 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/messages.inc.php:788 server_replication.php:326 +#: libraries/messages.inc.php:784 server_replication.php:326 msgid "Reset slave" msgstr "" -#: libraries/messages.inc.php:789 server_replication.php:308 +#: libraries/messages.inc.php:785 server_replication.php:308 msgid "See slave status table" msgstr "" -#: libraries/messages.inc.php:790 server_replication.php:336 +#: libraries/messages.inc.php:786 server_replication.php:336 msgid "Skip current error" msgstr "" -#: libraries/messages.inc.php:791 server_replication.php:340 +#: libraries/messages.inc.php:787 server_replication.php:340 msgid "errors." msgstr "" -#: libraries/messages.inc.php:792 server_replication.php:337 +#: libraries/messages.inc.php:788 server_replication.php:337 msgid "Skip next" msgstr "" -#: libraries/messages.inc.php:793 server_replication.php:248 +#: libraries/messages.inc.php:789 server_replication.php:248 msgid "Slave replication" msgstr "" -#: libraries/messages.inc.php:794 server_replication.php:293 +#: libraries/messages.inc.php:790 server_replication.php:293 msgid "Slave SQL Thread not running!" msgstr "" -#: libraries/messages.inc.php:795 server_replication.php:327 +#: libraries/messages.inc.php:791 server_replication.php:327 #, php-format msgid "SQL Thread %s only" msgstr "" -#: libraries/messages.inc.php:796 +#: libraries/messages.inc.php:792 #, php-format msgid "" "This MySQL server works as %s in replication process. For further " @@ -5003,161 +5003,161 @@ msgid "" "\"#replication\">replication section." msgstr "" -#: libraries/messages.inc.php:797 +#: libraries/messages.inc.php:793 msgid "Master status" msgstr "" -#: libraries/messages.inc.php:798 server_status.php:721 +#: libraries/messages.inc.php:794 server_status.php:721 msgid "Replication status" msgstr "" -#: libraries/messages.inc.php:799 +#: libraries/messages.inc.php:795 msgid "Slave status" msgstr "" -#: libraries/messages.inc.php:800 server_replication.php:311 +#: libraries/messages.inc.php:796 server_replication.php:311 msgid "Synchronize databases with master" msgstr "" -#: libraries/messages.inc.php:801 server_replication.php:71 +#: libraries/messages.inc.php:797 server_replication.php:71 msgid "Unable to change master" msgstr "" -#: libraries/messages.inc.php:802 server_replication.php:51 +#: libraries/messages.inc.php:798 server_replication.php:51 msgid "Unknown error" msgstr "" -#: libraries/messages.inc.php:803 main.php:163 pdf_pages.php:344 +#: libraries/messages.inc.php:799 main.php:163 pdf_pages.php:344 #: setup/lib/FormDisplay.tpl.php:216 tbl_change.php:1175 msgid "Reset" msgstr "Yenile" -#: libraries/messages.inc.php:804 server_privileges.php:591 +#: libraries/messages.inc.php:800 server_privileges.php:591 msgid "Resource limits" msgstr "Resource limits" -#: libraries/messages.inc.php:805 tbl_change.php:1209 +#: libraries/messages.inc.php:801 tbl_change.php:1209 #, php-format msgid "Restart insertion with %s rows" msgstr "" -#: libraries/messages.inc.php:807 server_privileges.php:1578 +#: libraries/messages.inc.php:803 server_privileges.php:1578 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Revoke all active privileges from the users and delete them afterwards." -#: libraries/messages.inc.php:808 server_privileges.php:1176 +#: libraries/messages.inc.php:804 server_privileges.php:1176 #, php-format msgid "You have revoked the privileges for %s" msgstr "You have revoked the privileges for %s" -#: libraries/messages.inc.php:809 server_privileges.php:1333 +#: libraries/messages.inc.php:805 server_privileges.php:1333 msgid "Revoke" msgstr "Revoke" -#: libraries/messages.inc.php:810 libraries/mysql_charsets.lib.php:280 +#: libraries/messages.inc.php:806 libraries/mysql_charsets.lib.php:280 #, fuzzy msgid "Romanian" msgstr "Ermeni" -#: libraries/messages.inc.php:813 tbl_printview.php:404 tbl_structure.php:786 +#: libraries/messages.inc.php:809 tbl_printview.php:404 tbl_structure.php:786 msgid "Row length" msgstr "Sıra uzunluğu" -#: libraries/messages.inc.php:815 tbl_printview.php:414 tbl_structure.php:794 +#: libraries/messages.inc.php:811 tbl_printview.php:414 tbl_structure.php:794 msgid " Row size " msgstr " Sıra boyu " -#: libraries/messages.inc.php:821 tbl_printview.php:366 tbl_structure.php:726 +#: libraries/messages.inc.php:817 tbl_printview.php:366 tbl_structure.php:726 msgid "Row Statistics" msgstr "Sıra Statistikası" -#: libraries/messages.inc.php:822 +#: libraries/messages.inc.php:818 #, php-format msgid "running on %s" msgstr "%s üzerinde işlemektedir" -#: libraries/messages.inc.php:824 libraries/sql_query_form.lib.php:223 +#: libraries/messages.inc.php:820 libraries/sql_query_form.lib.php:223 #, fuzzy, php-format msgid "Run SQL query/queries on server %s" msgstr "%s me'lumat bazasına SQL sorğusu(-ları) gönder" -#: libraries/messages.inc.php:825 libraries/sql_query_form.lib.php:240 +#: libraries/messages.inc.php:821 libraries/sql_query_form.lib.php:240 #: libraries/sql_query_form.lib.php:265 #, php-format msgid "Run SQL query/queries on database %s" msgstr "%s me'lumat bazasına SQL sorğusu(-ları) gönder" -#: libraries/messages.inc.php:826 libraries/mysql_charsets.lib.php:337 +#: libraries/messages.inc.php:822 libraries/mysql_charsets.lib.php:337 msgid "Russian" msgstr "" -#: libraries/messages.inc.php:829 pmd_general.php:68 +#: libraries/messages.inc.php:825 pmd_general.php:68 msgid "Save position" msgstr "" -#: libraries/messages.inc.php:830 libraries/tbl_properties.inc.php:776 +#: libraries/messages.inc.php:826 libraries/tbl_properties.inc.php:776 #: pdf_pages.php:484 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:214 setup/lib/FormDisplay.tpl.php:215 #: tbl_change.php:1126 tbl_indexes.php:248 tbl_relation.php:566 msgid "Save" msgstr "Qeyd Et" -#: libraries/messages.inc.php:831 +#: libraries/messages.inc.php:827 msgid "The scale factor is too small to fit the schema on one page" msgstr "The scale factor is too small to fit the schema on one page" -#: libraries/messages.inc.php:843 main.php:298 +#: libraries/messages.inc.php:839 main.php:298 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" -#: libraries/messages.inc.php:844 navigation.php:353 navigation.php:516 +#: libraries/messages.inc.php:840 navigation.php:353 navigation.php:516 msgid "Please select a database" msgstr "Me'lumat bazası seç" -#: libraries/messages.inc.php:846 server_binlog.php:120 +#: libraries/messages.inc.php:842 server_binlog.php:120 msgid "Select binary log to view" msgstr "" -#: libraries/messages.inc.php:847 tbl_select.php:270 +#: libraries/messages.inc.php:843 tbl_select.php:270 msgid "Select fields (at least one):" msgstr "Sahe seçin (en az birini):" -#: libraries/messages.inc.php:851 pdf_pages.php:320 +#: libraries/messages.inc.php:847 pdf_pages.php:320 msgid "Select Tables" msgstr "Select Tables" -#: libraries/messages.inc.php:853 server_status.php:404 +#: libraries/messages.inc.php:849 server_status.php:404 msgid "Sent" msgstr "Gönderildi" -#: libraries/messages.inc.php:857 libraries/select_server.lib.php:45 +#: libraries/messages.inc.php:853 libraries/select_server.lib.php:45 #: setup/frames/index.inc.php:97 setup/lib/messages.inc.php:115 #, fuzzy msgid "Servers" msgstr "Server" -#: libraries/messages.inc.php:858 server_status.php:255 +#: libraries/messages.inc.php:854 server_status.php:255 #, fuzzy msgid "Delayed inserts" msgstr "Genişletilmiş girişli" -#: libraries/messages.inc.php:859 server_status.php:46 +#: libraries/messages.inc.php:855 server_status.php:46 msgid "Runtime Information" msgstr "Runtime Me'lumatı" -#: libraries/messages.inc.php:860 server_status.php:350 +#: libraries/messages.inc.php:856 server_status.php:350 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Bu MySQL server %sdir işlemektedir. Server %s-de açılmışdır." -#: libraries/messages.inc.php:861 libraries/server_links.inc.php:53 +#: libraries/messages.inc.php:857 libraries/server_links.inc.php:53 #: server_engines.php:112 server_engines.php:116 server_status.php:304 #: test/theme.php:105 msgid "Variables" msgstr "Deyişenler" -#: libraries/messages.inc.php:862 server_status.php:383 +#: libraries/messages.inc.php:858 server_status.php:383 msgid "" "Server traffic: These tables show the network traffic statistics of " "this MySQL server since its startup." @@ -5165,11 +5165,11 @@ msgstr "" "Server Neqliyyatı: Bu cedveller serverin açılışından beri elde edilen " "me'lumat axışı miqdarını göstermektedir." -#: libraries/messages.inc.php:863 server_variables.php:35 +#: libraries/messages.inc.php:859 server_variables.php:35 msgid "Server variables and settings" msgstr "Server Deyişenleri Ve Variantları" -#: libraries/messages.inc.php:865 main.php:290 +#: libraries/messages.inc.php:861 main.php:290 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -5177,17 +5177,17 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: libraries/messages.inc.php:866 +#: libraries/messages.inc.php:862 msgid "" "Cannot start session without errors, please check errors given in your PHP " "and/or webserver log file and configure your PHP installation properly." msgstr "" -#: libraries/messages.inc.php:867 server_variables.php:55 +#: libraries/messages.inc.php:863 server_variables.php:55 msgid "Session value" msgstr "Sessiya deyeri" -#: libraries/messages.inc.php:868 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:864 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 " @@ -5199,56 +5199,56 @@ msgstr "" "(\"'\") istifade etmek isteyirsinizse, onları ters-kesrle escape-leyin " "(meselen '\\\\xyz' ve ya 'a\\'b')." -#: libraries/messages.inc.php:876 server_binlog.php:192 server_binlog.php:195 +#: libraries/messages.inc.php:872 server_binlog.php:192 server_binlog.php:195 #: server_processlist.php:49 server_processlist.php:51 msgid "Show Full Queries" msgstr "Emrleri Tam Olaraq Göster" -#: libraries/messages.inc.php:878 pmd_general.php:64 +#: libraries/messages.inc.php:874 pmd_general.php:64 msgid "Show/Hide left menu" msgstr "" -#: libraries/messages.inc.php:880 sql.php:513 +#: libraries/messages.inc.php:876 sql.php:513 msgid "Showing as PHP code" msgstr "" -#: libraries/messages.inc.php:882 sql.php:516 tbl_replace.php:360 +#: libraries/messages.inc.php:878 sql.php:516 tbl_replace.php:360 msgid "Showing SQL query" msgstr "" -#: libraries/messages.inc.php:883 tbl_change.php:1132 +#: libraries/messages.inc.php:879 tbl_change.php:1132 msgid "Show insert query" msgstr "" -#: libraries/messages.inc.php:886 server_status.php:273 +#: libraries/messages.inc.php:882 server_status.php:273 #, fuzzy msgid "Show open tables" msgstr "Cedvelleri göster" -#: libraries/messages.inc.php:887 main.php:219 +#: libraries/messages.inc.php:883 main.php:219 msgid "Show PHP information" msgstr "PHPInfo() me'lumatını göster" -#: libraries/messages.inc.php:889 server_status.php:278 +#: libraries/messages.inc.php:885 server_status.php:278 msgid "Show slave hosts" msgstr "" -#: libraries/messages.inc.php:890 server_status.php:284 +#: libraries/messages.inc.php:886 server_status.php:284 msgid "Show slave status" msgstr "" -#: libraries/messages.inc.php:891 +#: libraries/messages.inc.php:887 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/messages.inc.php:892 +#: libraries/messages.inc.php:888 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/messages.inc.php:893 +#: libraries/messages.inc.php:889 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -5256,78 +5256,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/messages.inc.php:894 +#: libraries/messages.inc.php:890 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/messages.inc.php:895 +#: libraries/messages.inc.php:891 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/messages.inc.php:896 +#: libraries/messages.inc.php:892 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/messages.inc.php:897 +#: libraries/messages.inc.php:893 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/messages.inc.php:898 +#: libraries/messages.inc.php:894 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/messages.inc.php:899 +#: libraries/messages.inc.php:895 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/messages.inc.php:900 +#: libraries/messages.inc.php:896 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/messages.inc.php:901 +#: libraries/messages.inc.php:897 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/messages.inc.php:902 +#: libraries/messages.inc.php:898 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/messages.inc.php:903 +#: libraries/messages.inc.php:899 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/messages.inc.php:904 +#: libraries/messages.inc.php:900 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: libraries/messages.inc.php:905 +#: libraries/messages.inc.php:901 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/messages.inc.php:906 +#: libraries/messages.inc.php:902 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: libraries/messages.inc.php:907 +#: libraries/messages.inc.php:903 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -5335,7 +5335,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/messages.inc.php:908 +#: libraries/messages.inc.php:904 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -5343,42 +5343,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/messages.inc.php:909 +#: libraries/messages.inc.php:905 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/messages.inc.php:910 +#: libraries/messages.inc.php:906 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/messages.inc.php:911 +#: libraries/messages.inc.php:907 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/messages.inc.php:912 +#: libraries/messages.inc.php:908 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/messages.inc.php:913 +#: libraries/messages.inc.php:909 msgid "The number of pages currently dirty." msgstr "" -#: libraries/messages.inc.php:914 +#: libraries/messages.inc.php:910 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/messages.inc.php:915 +#: libraries/messages.inc.php:911 msgid "The number of free pages." msgstr "" -#: libraries/messages.inc.php:916 +#: libraries/messages.inc.php:912 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/messages.inc.php:917 +#: libraries/messages.inc.php:913 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -5386,33 +5386,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/messages.inc.php:918 +#: libraries/messages.inc.php:914 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/messages.inc.php:919 +#: libraries/messages.inc.php:915 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/messages.inc.php:920 +#: libraries/messages.inc.php:916 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/messages.inc.php:921 +#: libraries/messages.inc.php:917 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/messages.inc.php:922 +#: libraries/messages.inc.php:918 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/messages.inc.php:923 +#: libraries/messages.inc.php:919 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -5421,218 +5421,218 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/messages.inc.php:924 +#: libraries/messages.inc.php:920 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/messages.inc.php:925 +#: libraries/messages.inc.php:921 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/messages.inc.php:926 +#: libraries/messages.inc.php:922 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/messages.inc.php:927 +#: libraries/messages.inc.php:923 msgid "The current number of pending reads." msgstr "" -#: libraries/messages.inc.php:928 +#: libraries/messages.inc.php:924 msgid "The current number of pending writes." msgstr "" -#: libraries/messages.inc.php:929 +#: libraries/messages.inc.php:925 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/messages.inc.php:930 +#: libraries/messages.inc.php:926 msgid "The total number of data reads." msgstr "" -#: libraries/messages.inc.php:931 +#: libraries/messages.inc.php:927 msgid "The total number of data writes." msgstr "" -#: libraries/messages.inc.php:932 +#: libraries/messages.inc.php:928 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/messages.inc.php:933 +#: libraries/messages.inc.php:929 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/messages.inc.php:934 +#: libraries/messages.inc.php:930 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/messages.inc.php:935 +#: libraries/messages.inc.php:931 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/messages.inc.php:936 +#: libraries/messages.inc.php:932 msgid "The number of log write requests." msgstr "" -#: libraries/messages.inc.php:937 +#: libraries/messages.inc.php:933 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/messages.inc.php:938 +#: libraries/messages.inc.php:934 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/messages.inc.php:939 +#: libraries/messages.inc.php:935 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/messages.inc.php:940 +#: libraries/messages.inc.php:936 msgid "Pending log file writes." msgstr "" -#: libraries/messages.inc.php:941 +#: libraries/messages.inc.php:937 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/messages.inc.php:942 +#: libraries/messages.inc.php:938 msgid "The number of pages created." msgstr "" -#: libraries/messages.inc.php:943 +#: libraries/messages.inc.php:939 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: libraries/messages.inc.php:944 +#: libraries/messages.inc.php:940 msgid "The number of pages read." msgstr "" -#: libraries/messages.inc.php:945 +#: libraries/messages.inc.php:941 msgid "The number of pages written." msgstr "" -#: libraries/messages.inc.php:946 +#: libraries/messages.inc.php:942 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/messages.inc.php:947 +#: libraries/messages.inc.php:943 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/messages.inc.php:948 +#: libraries/messages.inc.php:944 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/messages.inc.php:949 +#: libraries/messages.inc.php:945 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/messages.inc.php:950 +#: libraries/messages.inc.php:946 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/messages.inc.php:951 +#: libraries/messages.inc.php:947 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/messages.inc.php:952 +#: libraries/messages.inc.php:948 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/messages.inc.php:953 +#: libraries/messages.inc.php:949 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/messages.inc.php:954 +#: libraries/messages.inc.php:950 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/messages.inc.php:955 +#: libraries/messages.inc.php:951 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/messages.inc.php:956 +#: libraries/messages.inc.php:952 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: libraries/messages.inc.php:957 +#: libraries/messages.inc.php:953 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/messages.inc.php:958 +#: libraries/messages.inc.php:954 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/messages.inc.php:959 +#: libraries/messages.inc.php:955 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/messages.inc.php:960 +#: libraries/messages.inc.php:956 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/messages.inc.php:961 +#: libraries/messages.inc.php:957 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/messages.inc.php:962 +#: libraries/messages.inc.php:958 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/messages.inc.php:963 +#: libraries/messages.inc.php:959 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/messages.inc.php:964 +#: libraries/messages.inc.php:960 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/messages.inc.php:965 +#: libraries/messages.inc.php:961 msgid "The number of files that are open." msgstr "" -#: libraries/messages.inc.php:966 +#: libraries/messages.inc.php:962 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/messages.inc.php:967 +#: libraries/messages.inc.php:963 msgid "The number of tables that are open." msgstr "" -#: libraries/messages.inc.php:968 +#: libraries/messages.inc.php:964 msgid "The number of free memory blocks in query cache." msgstr "" -#: libraries/messages.inc.php:969 +#: libraries/messages.inc.php:965 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/messages.inc.php:970 +#: libraries/messages.inc.php:966 msgid "The number of cache hits." msgstr "" -#: libraries/messages.inc.php:971 +#: libraries/messages.inc.php:967 msgid "The number of queries added to the cache." msgstr "" -#: libraries/messages.inc.php:972 +#: libraries/messages.inc.php:968 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -5640,105 +5640,105 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/messages.inc.php:973 +#: libraries/messages.inc.php:969 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/messages.inc.php:974 +#: libraries/messages.inc.php:970 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/messages.inc.php:975 +#: libraries/messages.inc.php:971 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/messages.inc.php:976 +#: libraries/messages.inc.php:972 #, fuzzy msgctxt "$strShowStatusReset" msgid "Reset" msgstr "Yenile" -#: libraries/messages.inc.php:977 +#: libraries/messages.inc.php:973 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/messages.inc.php:978 +#: libraries/messages.inc.php:974 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: libraries/messages.inc.php:979 +#: libraries/messages.inc.php:975 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/messages.inc.php:980 +#: libraries/messages.inc.php:976 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: libraries/messages.inc.php:981 +#: libraries/messages.inc.php:977 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/messages.inc.php:982 +#: libraries/messages.inc.php:978 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/messages.inc.php:983 +#: libraries/messages.inc.php:979 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/messages.inc.php:984 +#: libraries/messages.inc.php:980 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/messages.inc.php:985 +#: libraries/messages.inc.php:981 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/messages.inc.php:986 +#: libraries/messages.inc.php:982 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/messages.inc.php:987 +#: libraries/messages.inc.php:983 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/messages.inc.php:988 +#: libraries/messages.inc.php:984 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/messages.inc.php:989 +#: libraries/messages.inc.php:985 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/messages.inc.php:990 +#: libraries/messages.inc.php:986 msgid "The number of sorted rows." msgstr "" -#: libraries/messages.inc.php:991 +#: libraries/messages.inc.php:987 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/messages.inc.php:992 +#: libraries/messages.inc.php:988 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/messages.inc.php:993 +#: libraries/messages.inc.php:989 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -5746,18 +5746,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/messages.inc.php:994 +#: libraries/messages.inc.php:990 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/messages.inc.php:995 +#: libraries/messages.inc.php:991 msgid "The number of currently open connections." msgstr "" -#: libraries/messages.inc.php:996 +#: libraries/messages.inc.php:992 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -5765,74 +5765,74 @@ msgid "" "implementation.)" msgstr "" -#: libraries/messages.inc.php:997 +#: libraries/messages.inc.php:993 msgid "The number of threads that are not sleeping." msgstr "" -#: libraries/messages.inc.php:999 tbl_printview.php:75 +#: libraries/messages.inc.php:995 tbl_printview.php:75 msgid "Show tables" msgstr "Cedvelleri göster" -#: libraries/messages.inc.php:1000 libraries/sql_query_form.lib.php:396 +#: libraries/messages.inc.php:996 libraries/sql_query_form.lib.php:396 msgid " Show this query here again " msgstr " Bu sorğunu burada yene göster " -#: libraries/messages.inc.php:1001 libraries/mysql_charsets.lib.php:217 +#: libraries/messages.inc.php:997 libraries/mysql_charsets.lib.php:217 #: libraries/mysql_charsets.lib.php:342 msgid "Simplified Chinese" msgstr "" -#: libraries/messages.inc.php:1002 tbl_operations.php:258 +#: libraries/messages.inc.php:998 tbl_operations.php:258 msgid "(singly)" msgstr "(tek-tek)" -#: libraries/messages.inc.php:1005 libraries/replication_gui.lib.php:52 +#: libraries/messages.inc.php:1001 libraries/replication_gui.lib.php:52 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" msgstr "" -#: libraries/messages.inc.php:1006 libraries/mysql_charsets.lib.php:283 +#: libraries/messages.inc.php:1002 libraries/mysql_charsets.lib.php:283 msgid "Slovak" msgstr "" -#: libraries/messages.inc.php:1007 libraries/mysql_charsets.lib.php:286 +#: libraries/messages.inc.php:1003 libraries/mysql_charsets.lib.php:286 msgid "Slovenian" msgstr "" -#: libraries/messages.inc.php:1008 pmd_general.php:95 +#: libraries/messages.inc.php:1004 pmd_general.php:95 msgid "Small/Big All" msgstr "" -#: libraries/messages.inc.php:1009 pmd_general.php:91 +#: libraries/messages.inc.php:1005 pmd_general.php:91 msgid "Snap to grid" msgstr "" -#: libraries/messages.inc.php:1011 server_synchronize.php:1167 +#: libraries/messages.inc.php:1007 server_synchronize.php:1167 msgid "Socket" msgstr "" -#: libraries/messages.inc.php:1013 server_status.php:259 +#: libraries/messages.inc.php:1009 server_status.php:259 msgid "Sorting" msgstr "" -#: libraries/messages.inc.php:1015 tbl_printview.php:310 tbl_structure.php:657 +#: libraries/messages.inc.php:1011 tbl_printview.php:310 tbl_structure.php:657 msgid "Space usage" msgstr "Yer istifadesi" -#: libraries/messages.inc.php:1016 libraries/mysql_charsets.lib.php:289 +#: libraries/messages.inc.php:1012 libraries/mysql_charsets.lib.php:289 msgid "Spanish" msgstr "" -#: libraries/messages.inc.php:1019 +#: libraries/messages.inc.php:1015 msgid "Export type" msgstr "Eksport şekli" -#: libraries/messages.inc.php:1020 +#: libraries/messages.inc.php:1016 msgid "Export time in UTC" msgstr "" -#: libraries/messages.inc.php:1021 libraries/sqlparser.lib.php:173 +#: libraries/messages.inc.php:1017 libraries/sqlparser.lib.php:173 msgid "" "There is a chance that you may have found a bug in the SQL parser. Please " "examine your query closely, and check that the quotes are correct and not " @@ -5854,7 +5854,7 @@ msgstr "" "please reduce your SQL query input to the single query that causes problems, " "and submit a bug report with the data chunk in the CUT section below:" -#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:137 +#: libraries/messages.inc.php:1018 libraries/sqlparser.lib.php:137 msgid "" "There seems to be an error in your SQL query. The MySQL server error output " "below, if there is any, may also help you in diagnosing the problem" @@ -5862,421 +5862,421 @@ msgstr "" "There seems to be an error in your SQL query. The MySQL server error output " "below, if there is any, may also help you in diagnosing the problem" -#: libraries/messages.inc.php:1026 libraries/sqlparser.lib.php:495 +#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:495 msgid "Invalid Identifer" msgstr "Invalid Identifer" -#: libraries/messages.inc.php:1027 libraries/sqlparser.lib.php:344 +#: libraries/messages.inc.php:1023 libraries/sqlparser.lib.php:344 msgid "Unclosed quote" msgstr "Unclosed quote" -#: libraries/messages.inc.php:1028 libraries/sqlparser.lib.php:612 +#: libraries/messages.inc.php:1024 libraries/sqlparser.lib.php:612 msgid "Unknown Punctuation String" msgstr "Unknown Punctuation String" -#: libraries/messages.inc.php:1030 server_replication.php:327 +#: libraries/messages.inc.php:1026 server_replication.php:327 #: server_replication.php:328 #, fuzzy msgid "Start" msgstr "Şen" -#: libraries/messages.inc.php:1033 tbl_printview.php:369 tbl_structure.php:729 +#: libraries/messages.inc.php:1029 tbl_printview.php:369 tbl_structure.php:729 msgid "Statements" msgstr "Variantlar" -#: libraries/messages.inc.php:1034 tbl_printview.php:380 tbl_structure.php:741 +#: libraries/messages.inc.php:1030 tbl_printview.php:380 tbl_structure.php:741 msgid "static" msgstr "" -#: libraries/messages.inc.php:1035 server_status.php:388 +#: libraries/messages.inc.php:1031 server_status.php:388 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: libraries/messages.inc.php:1038 server_replication.php:327 +#: libraries/messages.inc.php:1034 server_replication.php:327 #: server_replication.php:328 msgid "Stop" msgstr "" -#: libraries/messages.inc.php:1039 server_engines.php:49 +#: libraries/messages.inc.php:1035 server_engines.php:49 msgid "Storage Engines" msgstr "MySQL Depolama Motorları" -#: libraries/messages.inc.php:1040 libraries/tbl_properties.inc.php:726 +#: libraries/messages.inc.php:1036 libraries/tbl_properties.inc.php:726 #: server_engines.php:58 tbl_operations.php:353 msgid "Storage Engine" msgstr "Depolama Motorları" -#: libraries/messages.inc.php:1042 +#: libraries/messages.inc.php:1038 msgid "CSV for MS Excel" msgstr "MS Excel verilenleri üçün CSV" -#: libraries/messages.inc.php:1044 tbl_structure.php:516 tbl_structure.php:518 +#: libraries/messages.inc.php:1040 tbl_structure.php:516 tbl_structure.php:518 msgid "Propose table structure" msgstr "Alternativ cedvel strukturu" -#: libraries/messages.inc.php:1045 server_synchronize.php:424 +#: libraries/messages.inc.php:1041 server_synchronize.php:424 #: server_synchronize.php:867 msgid "Structure Difference" msgstr "" -#: libraries/messages.inc.php:1049 server_synchronize.php:265 +#: libraries/messages.inc.php:1045 server_synchronize.php:265 msgid "Structure Synchronization" msgstr "" -#: libraries/messages.inc.php:1050 libraries/sql_query_form.lib.php:462 +#: libraries/messages.inc.php:1046 libraries/sql_query_form.lib.php:462 msgid "Submit" msgstr "Submit" -#: libraries/messages.inc.php:1052 main.php:358 +#: libraries/messages.inc.php:1048 main.php:358 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " "issues." msgstr "" -#: libraries/messages.inc.php:1054 libraries/mysql_charsets.lib.php:295 +#: libraries/messages.inc.php:1050 libraries/mysql_charsets.lib.php:295 #: libraries/mysql_charsets.lib.php:392 msgid "Swedish" msgstr "" -#: libraries/messages.inc.php:1060 tbl_operations.php:556 +#: libraries/messages.inc.php:1056 tbl_operations.php:556 msgid "Switch to copied table" msgstr "Kopyalanmış cedvele keç" -#: libraries/messages.inc.php:1061 server_synchronize.php:1213 +#: libraries/messages.inc.php:1057 server_synchronize.php:1213 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." msgstr "" -#: libraries/messages.inc.php:1062 server_synchronize.php:451 +#: libraries/messages.inc.php:1058 server_synchronize.php:451 #: server_synchronize.php:896 msgid "Synchronize Databases" msgstr "" -#: libraries/messages.inc.php:1063 libraries/server_links.inc.php:92 +#: libraries/messages.inc.php:1059 libraries/server_links.inc.php:92 #: server_synchronize.php:1092 server_synchronize.php:1100 msgid "Synchronize" msgstr "" -#: libraries/messages.inc.php:1065 server_synchronize.php:430 +#: libraries/messages.inc.php:1061 server_synchronize.php:430 #: server_synchronize.php:873 msgid "Add column(s)" msgstr "" -#: libraries/messages.inc.php:1066 tbl_create.php:62 +#: libraries/messages.inc.php:1062 tbl_create.php:62 #, fuzzy, php-format msgid "Table %s already exists!" msgstr "%s istifadeçisi mövcuddur!" -#: libraries/messages.inc.php:1067 server_synchronize.php:432 +#: libraries/messages.inc.php:1063 server_synchronize.php:432 #: server_synchronize.php:875 msgid "Alter column(s)" msgstr "" -#: libraries/messages.inc.php:1068 tbl_addfield.php:189 tbl_alter.php:103 +#: libraries/messages.inc.php:1064 tbl_addfield.php:189 tbl_alter.php:103 #: tbl_indexes.php:98 #, fuzzy, php-format msgid "Table %1$s has been altered successfully" msgstr "The selected users have been deleted successfully." -#: libraries/messages.inc.php:1069 server_synchronize.php:434 +#: libraries/messages.inc.php:1065 server_synchronize.php:434 #: server_synchronize.php:877 msgid "Apply index(s)" msgstr "" -#: libraries/messages.inc.php:1071 server_synchronize.php:446 +#: libraries/messages.inc.php:1067 server_synchronize.php:446 #: server_synchronize.php:890 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: libraries/messages.inc.php:1072 tbl_move_copy.php:82 +#: libraries/messages.inc.php:1068 tbl_move_copy.php:82 msgid "The table name is empty!" msgstr "Cedveli adı boşdur!" -#: libraries/messages.inc.php:1073 tbl_create.php:249 +#: libraries/messages.inc.php:1069 tbl_create.php:249 #, fuzzy, php-format msgid "Table %1$s has been created." msgstr "%s cedveli leğv edildi" -#: libraries/messages.inc.php:1076 tbl_operations.php:628 +#: libraries/messages.inc.php:1072 tbl_operations.php:628 #, php-format msgid "Table %s has been flushed" msgstr "%s cedveli flush-landı" -#: libraries/messages.inc.php:1077 server_synchronize.php:436 +#: libraries/messages.inc.php:1073 server_synchronize.php:436 #: server_synchronize.php:879 msgid "Insert row(s)" msgstr "" -#: libraries/messages.inc.php:1078 libraries/tbl_links.inc.php:107 +#: libraries/messages.inc.php:1074 libraries/tbl_links.inc.php:107 #: libraries/tbl_links.inc.php:140 libraries/tbl_links.inc.php:141 msgid "Table seems to be empty!" msgstr "" -#: libraries/messages.inc.php:1079 tbl_operations.php:568 +#: libraries/messages.inc.php:1075 tbl_operations.php:568 msgid "Table maintenance" msgstr "Cedvel temizliyi" -#: libraries/messages.inc.php:1080 libraries/tbl_properties.inc.php:618 +#: libraries/messages.inc.php:1076 libraries/tbl_properties.inc.php:618 #: server_synchronize.php:428 server_synchronize.php:871 msgid "Table name" msgstr "" -#: libraries/messages.inc.php:1081 pdf_schema.php:1116 +#: libraries/messages.inc.php:1077 pdf_schema.php:1116 msgid "Table of contents" msgstr "İçindekiler Cedveli" -#: libraries/messages.inc.php:1082 tbl_operations.php:334 +#: libraries/messages.inc.php:1078 tbl_operations.php:334 #, fuzzy msgid "Table options" msgstr "Cedvel başlığı" -#: libraries/messages.inc.php:1083 server_synchronize.php:431 +#: libraries/messages.inc.php:1079 server_synchronize.php:431 #: server_synchronize.php:874 msgid "Remove column(s)" msgstr "" -#: libraries/messages.inc.php:1084 server_synchronize.php:433 +#: libraries/messages.inc.php:1080 server_synchronize.php:433 #: server_synchronize.php:876 msgid "Remove index(s)" msgstr "" -#: libraries/messages.inc.php:1088 server_synchronize.php:435 +#: libraries/messages.inc.php:1084 server_synchronize.php:435 #: server_synchronize.php:878 msgid "Update row(s)" msgstr "" -#: libraries/messages.inc.php:1090 server_synchronize.php:942 +#: libraries/messages.inc.php:1086 server_synchronize.php:942 msgid "Target database has been synchronized with source database" msgstr "" -#: libraries/messages.inc.php:1091 server_privileges.php:392 +#: libraries/messages.inc.php:1087 server_privileges.php:392 #: server_privileges.php:527 server_privileges.php:1679 #: server_privileges.php:1685 msgid "Table-specific privileges" msgstr "Cedvelexas selahiyyetler" -#: libraries/messages.inc.php:1092 server_status.php:254 +#: libraries/messages.inc.php:1088 server_status.php:254 msgid "Temporary data" msgstr "" -#: libraries/messages.inc.php:1093 tbl_change.php:728 +#: libraries/messages.inc.php:1089 tbl_change.php:728 msgid " Because of its length,
this field might not be editable " msgstr "" " Uzun olduğuna göre,
bu sahedeki me'lumatlar deyişdirilmeye biler " -#: libraries/messages.inc.php:1094 +#: libraries/messages.inc.php:1090 msgid "Texy! text" msgstr "" -#: libraries/messages.inc.php:1095 libraries/mysql_charsets.lib.php:298 +#: libraries/messages.inc.php:1091 libraries/mysql_charsets.lib.php:298 #: libraries/mysql_charsets.lib.php:395 msgid "Thai" msgstr "" -#: libraries/messages.inc.php:1102 libraries/replication_gui.lib.php:308 +#: libraries/messages.inc.php:1098 libraries/replication_gui.lib.php:308 #: server_privileges.php:734 msgid "This Host" msgstr "Bu Host" -#: libraries/messages.inc.php:1103 server_status.php:252 +#: libraries/messages.inc.php:1099 server_status.php:252 msgid "Threads" msgstr "" -#: libraries/messages.inc.php:1104 server_processlist.php:22 +#: libraries/messages.inc.php:1100 server_processlist.php:22 #, php-format msgid "Thread %s was successfully killed." msgstr "Thread %s uğurla söndürüldü (killed)." -#: libraries/messages.inc.php:1106 +#: libraries/messages.inc.php:1102 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." msgstr "" -#: libraries/messages.inc.php:1109 pmd_pdf.php:94 +#: libraries/messages.inc.php:1105 pmd_pdf.php:94 msgid "to/from page" msgstr "" -#: libraries/messages.inc.php:1110 pdf_pages.php:343 +#: libraries/messages.inc.php:1106 pdf_pages.php:343 msgid "Toggle scratchboard" msgstr "" -#: libraries/messages.inc.php:1111 pmd_general.php:99 +#: libraries/messages.inc.php:1107 pmd_general.php:99 msgid "Toggle small/big" msgstr "" -#: libraries/messages.inc.php:1112 pmd_help.php:27 +#: libraries/messages.inc.php:1108 pmd_help.php:27 msgid "To select relation, click :" msgstr "" -#: libraries/messages.inc.php:1115 libraries/tbl_links.inc.php:149 +#: libraries/messages.inc.php:1111 libraries/tbl_links.inc.php:149 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" -#: libraries/messages.inc.php:1116 tbl_tracking.php:655 +#: libraries/messages.inc.php:1112 tbl_tracking.php:655 msgid "Activate now" msgstr "" -#: libraries/messages.inc.php:1117 tbl_tracking.php:653 +#: libraries/messages.inc.php:1113 tbl_tracking.php:653 #, php-format msgid "Activate tracking for %s.%s" msgstr "" -#: libraries/messages.inc.php:1118 tbl_tracking.php:221 +#: libraries/messages.inc.php:1114 tbl_tracking.php:221 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/messages.inc.php:1119 tbl_tracking.php:688 +#: libraries/messages.inc.php:1115 tbl_tracking.php:688 #, fuzzy msgid "Create version" msgstr "Server versiyası" -#: libraries/messages.inc.php:1120 tbl_tracking.php:668 +#: libraries/messages.inc.php:1116 tbl_tracking.php:668 #, php-format msgid "Create version %s of %s.%s" msgstr "" -#: libraries/messages.inc.php:1122 tbl_tracking.php:412 +#: libraries/messages.inc.php:1118 tbl_tracking.php:412 msgid "Data definition statement" msgstr "" -#: libraries/messages.inc.php:1123 tbl_tracking.php:463 +#: libraries/messages.inc.php:1119 tbl_tracking.php:463 msgid "Data manipulation statement" msgstr "" -#: libraries/messages.inc.php:1124 tbl_tracking.php:410 tbl_tracking.php:461 +#: libraries/messages.inc.php:1120 tbl_tracking.php:410 tbl_tracking.php:461 #, fuzzy msgid "Date" msgstr "Me'lumat" -#: libraries/messages.inc.php:1125 tbl_tracking.php:642 +#: libraries/messages.inc.php:1121 tbl_tracking.php:642 msgid "Deactivate now" msgstr "" -#: libraries/messages.inc.php:1126 tbl_tracking.php:640 +#: libraries/messages.inc.php:1122 tbl_tracking.php:640 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "" -#: libraries/messages.inc.php:1127 tbl_tracking.php:521 +#: libraries/messages.inc.php:1123 tbl_tracking.php:521 #, php-format msgid "Export as %s" msgstr "" -#: libraries/messages.inc.php:1130 tbl_tracking.php:251 tbl_tracking.php:379 +#: libraries/messages.inc.php:1126 tbl_tracking.php:251 tbl_tracking.php:379 msgid "Close" msgstr "" -#: libraries/messages.inc.php:1131 tbl_tracking.php:114 +#: libraries/messages.inc.php:1127 tbl_tracking.php:114 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/messages.inc.php:1133 tbl_tracking.php:397 tbl_tracking.php:504 +#: libraries/messages.inc.php:1129 tbl_tracking.php:397 tbl_tracking.php:504 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "" -#: libraries/messages.inc.php:1134 tbl_tracking.php:561 +#: libraries/messages.inc.php:1130 tbl_tracking.php:561 msgid "Show versions" msgstr "" -#: libraries/messages.inc.php:1135 tbl_tracking.php:507 +#: libraries/messages.inc.php:1131 tbl_tracking.php:507 msgid "SQL dump (file download)" msgstr "" -#: libraries/messages.inc.php:1136 tbl_tracking.php:508 +#: libraries/messages.inc.php:1132 tbl_tracking.php:508 msgid "SQL dump" msgstr "" -#: libraries/messages.inc.php:1137 tbl_tracking.php:213 +#: libraries/messages.inc.php:1133 tbl_tracking.php:213 msgid "SQL statements executed." msgstr "" -#: libraries/messages.inc.php:1138 +#: libraries/messages.inc.php:1134 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/messages.inc.php:1139 tbl_tracking.php:509 +#: libraries/messages.inc.php:1135 tbl_tracking.php:509 msgid "SQL execution" msgstr "" -#: libraries/messages.inc.php:1140 tbl_tracking.php:230 +#: libraries/messages.inc.php:1136 tbl_tracking.php:230 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/messages.inc.php:1141 tbl_tracking.php:381 +#: libraries/messages.inc.php:1137 tbl_tracking.php:381 msgid "Tracking statements" msgstr "" -#: libraries/messages.inc.php:1148 tbl_tracking.php:593 +#: libraries/messages.inc.php:1144 tbl_tracking.php:593 #, fuzzy msgid "Version" msgstr "PHP Versiyası" -#: libraries/messages.inc.php:1149 tbl_tracking.php:672 +#: libraries/messages.inc.php:1145 tbl_tracking.php:672 msgid "Track these data definition statements:" msgstr "" -#: libraries/messages.inc.php:1150 tbl_tracking.php:680 +#: libraries/messages.inc.php:1146 tbl_tracking.php:680 msgid "Track these data manipulation statements:" msgstr "" -#: libraries/messages.inc.php:1155 tbl_tracking.php:411 tbl_tracking.php:462 +#: libraries/messages.inc.php:1151 tbl_tracking.php:411 tbl_tracking.php:462 #, fuzzy msgid "Username" msgstr "İstifadeçi Adı:" -#: libraries/messages.inc.php:1156 tbl_tracking.php:203 +#: libraries/messages.inc.php:1152 tbl_tracking.php:203 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "" -#: libraries/messages.inc.php:1157 tbl_tracking.php:187 +#: libraries/messages.inc.php:1153 tbl_tracking.php:187 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "" -#: libraries/messages.inc.php:1158 tbl_tracking.php:195 +#: libraries/messages.inc.php:1154 tbl_tracking.php:195 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "" -#: libraries/messages.inc.php:1159 tbl_tracking.php:262 +#: libraries/messages.inc.php:1155 tbl_tracking.php:262 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/messages.inc.php:1161 tbl_tracking.php:220 +#: libraries/messages.inc.php:1157 tbl_tracking.php:220 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/messages.inc.php:1162 libraries/mysql_charsets.lib.php:219 +#: libraries/messages.inc.php:1158 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:362 msgid "Traditional Chinese" msgstr "Enenevi Çin Dili" -#: libraries/messages.inc.php:1163 libraries/mysql_charsets.lib.php:292 +#: libraries/messages.inc.php:1159 libraries/mysql_charsets.lib.php:292 #, fuzzy msgid "Traditional Spanish" msgstr "Enenevi Çin Dili" -#: libraries/messages.inc.php:1164 server_status.php:388 +#: libraries/messages.inc.php:1160 server_status.php:388 msgid "Traffic" msgstr "Neqliyyat" -#: libraries/messages.inc.php:1165 server_status.php:261 +#: libraries/messages.inc.php:1161 server_status.php:261 msgid "Transaction coordinator" msgstr "" -#: libraries/messages.inc.php:1166 +#: libraries/messages.inc.php:1162 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 " @@ -6284,13 +6284,13 @@ msgid "" "need to set the first option to the empty string." msgstr "" -#: libraries/messages.inc.php:1167 +#: libraries/messages.inc.php:1163 msgid "" "Displays hexadecimal representation of data. Optional first parameter " "specifies how often space will be added (defaults to 2 nibbles)." msgstr "" -#: libraries/messages.inc.php:1168 +#: libraries/messages.inc.php:1164 msgid "" "Displays a clickable thumbnail. The options are the maximum width and height " "in pixels. The original aspect ratio is preserved." @@ -6298,15 +6298,15 @@ msgstr "" "Displays a clickable thumbnail; options: width,height in pixels (keeps the " "original ratio)" -#: libraries/messages.inc.php:1169 +#: libraries/messages.inc.php:1165 msgid "Displays a link to download this image." msgstr "Displays a link to this image (direct blob download, i.e.)." -#: libraries/messages.inc.php:1170 +#: libraries/messages.inc.php:1166 msgid "See image/jpeg: inline" msgstr "See image/jpeg: inline" -#: libraries/messages.inc.php:1171 +#: libraries/messages.inc.php:1167 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 " @@ -6318,7 +6318,7 @@ msgid "" "gmdate() function." msgstr "" -#: libraries/messages.inc.php:1172 +#: libraries/messages.inc.php:1168 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 " @@ -6342,13 +6342,13 @@ msgstr "" "a NOWRAP to the content cell so that the whole output will be shown without " "reformatting (Default 1)" -#: libraries/messages.inc.php:1173 +#: libraries/messages.inc.php:1169 msgid "" "Displays the contents of the field as-is, without running it through " "htmlspecialchars(). That is, the field is assumed to contain valid HTML." msgstr "Preserves original formatting of the field. No Escaping is done." -#: libraries/messages.inc.php:1174 +#: libraries/messages.inc.php:1170 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 " @@ -6358,7 +6358,7 @@ msgstr "" "is a prefix like \"http://domain.com/\", second option is the width in " "pixels, third is the height." -#: libraries/messages.inc.php:1175 +#: libraries/messages.inc.php:1171 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 " @@ -6367,11 +6367,11 @@ msgstr "" "Displays a link, the field contains the filename; first option is a prefix " "like \"http://domain.com/\", second option is a title for the link." -#: libraries/messages.inc.php:1176 +#: libraries/messages.inc.php:1172 msgid "Formats text as SQL query with syntax highlighting." msgstr "" -#: libraries/messages.inc.php:1177 +#: libraries/messages.inc.php:1173 msgid "" "Displays a part of a string. The first option is the number of characters to " "skip from the beginning of the string (Default 0). The second option is the " @@ -6385,69 +6385,69 @@ msgstr "" "defines which chars will be appended to the output when a substring is " "returned (Default: ...) ." -#: libraries/messages.inc.php:1179 server_binlog.php:183 server_binlog.php:186 +#: libraries/messages.inc.php:1175 server_binlog.php:183 server_binlog.php:186 #: server_processlist.php:49 server_processlist.php:51 msgid "Truncate Shown Queries" msgstr "Truncate Shown Queries" -#: libraries/messages.inc.php:1180 libraries/mysql_charsets.lib.php:301 +#: libraries/messages.inc.php:1176 libraries/mysql_charsets.lib.php:301 #: libraries/mysql_charsets.lib.php:389 msgid "Turkish" msgstr "Türk Dili" -#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:304 +#: libraries/messages.inc.php:1179 libraries/mysql_charsets.lib.php:304 #: libraries/mysql_charsets.lib.php:386 msgid "Ukrainian" msgstr "Ukrayna Dili" -#: libraries/messages.inc.php:1185 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:1181 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 msgid "Unicode" msgstr "" -#: libraries/messages.inc.php:1187 libraries/mysql_charsets.lib.php:398 +#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:398 #: libraries/mysql_charsets.lib.php:405 msgid "unknown" msgstr "" -#: libraries/messages.inc.php:1190 server_privileges.php:1152 +#: libraries/messages.inc.php:1186 server_privileges.php:1152 #, php-format msgid "You have updated the privileges for %s." msgstr "You have updated the privileges for %s." -#: libraries/messages.inc.php:1191 user_password.php:112 +#: libraries/messages.inc.php:1187 user_password.php:112 msgid "The profile has been updated." msgstr "Profil yenilendi." -#: libraries/messages.inc.php:1193 libraries/relation.lib.php:138 +#: libraries/messages.inc.php:1189 libraries/relation.lib.php:138 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "Please see Documentation on how to update your Column_comments Table" -#: libraries/messages.inc.php:1194 +#: libraries/messages.inc.php:1190 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/messages.inc.php:1204 tbl_printview.php:314 tbl_structure.php:661 +#: libraries/messages.inc.php:1200 tbl_printview.php:314 tbl_structure.php:661 msgid "Usage" msgstr "Miqdar" -#: libraries/messages.inc.php:1205 +#: libraries/messages.inc.php:1201 msgid "Enclose table and field names with backquotes" msgstr "Cedvel ve sahe adlarını tek dırnaq arasına al" -#: libraries/messages.inc.php:1206 libraries/replication_gui.lib.php:314 +#: libraries/messages.inc.php:1202 libraries/replication_gui.lib.php:314 #: server_privileges.php:740 msgid "Use Host Table" msgstr "Use Host Table" -#: libraries/messages.inc.php:1207 server_privileges.php:848 +#: libraries/messages.inc.php:1203 server_privileges.php:848 #, php-format msgid "The user %s already exists!" msgstr "%s istifadeçisi mövcuddur!" -#: libraries/messages.inc.php:1209 libraries/replication_gui.lib.php:55 +#: libraries/messages.inc.php:1205 libraries/replication_gui.lib.php:55 #: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245 #: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255 #: server_privileges.php:672 server_privileges.php:675 @@ -6455,35 +6455,35 @@ msgstr "%s istifadeçisi mövcuddur!" msgid "User name" msgstr "İstifadeçi adı" -#: libraries/messages.inc.php:1210 server_privileges.php:1645 +#: libraries/messages.inc.php:1206 server_privileges.php:1645 msgid "The selected user was not found in the privilege table." msgstr "The selected user was not found in the privilege table." -#: libraries/messages.inc.php:1211 server_privileges.php:1365 +#: libraries/messages.inc.php:1207 server_privileges.php:1365 msgid "User overview" msgstr "User overview" -#: libraries/messages.inc.php:1212 server_privileges.php:1261 +#: libraries/messages.inc.php:1208 server_privileges.php:1261 msgid "The selected users have been deleted successfully." msgstr "The selected users have been deleted successfully." -#: libraries/messages.inc.php:1213 server_privileges.php:2026 +#: libraries/messages.inc.php:1209 server_privileges.php:2026 #, php-format msgid "Users having access to "%s"" msgstr "Users having access to "%s"" -#: libraries/messages.inc.php:1214 main.php:189 server_privileges.php:1350 +#: libraries/messages.inc.php:1210 main.php:189 server_privileges.php:1350 #: server_privileges.php:1497 server_privileges.php:1611 #: server_privileges.php:2029 server_processlist.php:54 msgid "User" msgstr "İstifadeçi" -#: libraries/messages.inc.php:1215 tbl_change.php:1171 +#: libraries/messages.inc.php:1211 tbl_change.php:1171 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/messages.inc.php:1217 libraries/replication_gui.lib.php:251 +#: libraries/messages.inc.php:1213 libraries/replication_gui.lib.php:251 #: libraries/replication_gui.lib.php:319 libraries/replication_gui.lib.php:342 #: server_privileges.php:678 server_privileges.php:745 #: server_privileges.php:769 server_privileges.php:1889 @@ -6491,7 +6491,7 @@ msgstr "" msgid "Use text field" msgstr "Use text field" -#: libraries/messages.inc.php:1221 libraries/sqlvalidator.lib.php:68 +#: libraries/messages.inc.php:1217 libraries/sqlvalidator.lib.php:68 #, php-format msgid "" "The SQL validator could not be initialized. Please check if you have " @@ -6500,86 +6500,86 @@ msgstr "" "The SQL validator could not be initialized. Please check if you have " "installed the necessary php extensions as described in the %sdocumentation%s." -#: libraries/messages.inc.php:1222 libraries/replication_gui.lib.php:111 +#: libraries/messages.inc.php:1218 libraries/replication_gui.lib.php:111 #: server_status.php:627 tbl_change.php:324 tbl_printview.php:370 #: tbl_select.php:139 tbl_structure.php:730 msgid "Value" msgstr "Deyer" -#: libraries/messages.inc.php:1223 libraries/replication_gui.lib.php:110 +#: libraries/messages.inc.php:1219 libraries/replication_gui.lib.php:110 #: libraries/sql_query_form.lib.php:445 server_status.php:626 #: server_variables.php:52 msgid "Variable" msgstr "Deyişen" -#: libraries/messages.inc.php:1225 server_export.php:21 +#: libraries/messages.inc.php:1221 server_export.php:21 msgid "View dump (schema) of databases" msgstr "Me'lumat bazalarının sxemini göster" -#: libraries/messages.inc.php:1227 tbl_export.php:23 +#: libraries/messages.inc.php:1223 tbl_export.php:23 msgid "View dump (schema) of table" msgstr "Cedvelin sxemini göster" -#: libraries/messages.inc.php:1231 view_create.php:142 +#: libraries/messages.inc.php:1227 view_create.php:142 msgid "VIEW name" msgstr "" -#: libraries/messages.inc.php:1237 main.php:205 +#: libraries/messages.inc.php:1233 main.php:205 msgid "Web server" msgstr "" -#: libraries/messages.inc.php:1239 libraries/mysql_charsets.lib.php:277 +#: libraries/messages.inc.php:1235 libraries/mysql_charsets.lib.php:277 #: libraries/mysql_charsets.lib.php:325 msgid "West European" msgstr "Qerbi Avropa" -#: libraries/messages.inc.php:1240 main.php:230 +#: libraries/messages.inc.php:1236 main.php:230 msgid "Wiki" msgstr "" -#: libraries/messages.inc.php:1241 server_privileges.php:2138 +#: libraries/messages.inc.php:1237 server_privileges.php:2138 msgid "wildcard" msgstr "xüsusi işare" -#: libraries/messages.inc.php:1248 +#: libraries/messages.inc.php:1244 msgid "Export contents" msgstr "" -#: libraries/messages.inc.php:1249 +#: libraries/messages.inc.php:1245 msgid "Export functions" msgstr "" -#: libraries/messages.inc.php:1250 +#: libraries/messages.inc.php:1246 msgid "Export procedures" msgstr "" -#: libraries/messages.inc.php:1251 +#: libraries/messages.inc.php:1247 msgid "Export Structure Schemas (recommended)" msgstr "" -#: libraries/messages.inc.php:1252 +#: libraries/messages.inc.php:1248 #, fuzzy msgid "Export tables" msgstr "Eksport şekli" -#: libraries/messages.inc.php:1253 +#: libraries/messages.inc.php:1249 #, fuzzy msgid "Export triggers" msgstr "Eksport şekli" -#: libraries/messages.inc.php:1254 +#: libraries/messages.inc.php:1250 msgid "Export views" msgstr "" -#: libraries/messages.inc.php:1255 +#: libraries/messages.inc.php:1251 msgid "XML" msgstr "XML" -#: libraries/messages.inc.php:1259 server_privileges.php:592 +#: libraries/messages.inc.php:1255 server_privileges.php:592 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." -#: libraries/messages.inc.php:1260 +#: libraries/messages.inc.php:1256 msgid "\"zipped\"" msgstr "\"zip\"lenmiş" diff --git a/po/be.po b/po/be.po index 64c4944aa..56cd55440 100644 --- 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-05-13 11:25+0200\n" +"POT-Creation-Date: 2010-05-13 11:30+0200\n" "PO-Revision-Date: 2010-03-12 09:12+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: belarusian_cyrillic \n" @@ -13,19 +13,19 @@ msgstr "" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:38 browse_foreigners.php:59 -#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:870 +#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:866 #: server_privileges.php:1475 msgid "Show all" msgstr "Паказаць усе" #: browse_foreigners.php:82 db_operations.php:648 -#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:394 -#: libraries/export/pdf.php:147 libraries/messages.inc.php:597 +#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394 +#: libraries/export/pdf.php:147 libraries/messages.inc.php:593 #: pdf_schema.php:283 pdf_schema.php:1123 pdf_schema.php:1139 msgid "Page number:" msgstr "Старонка:" -#: browse_foreigners.php:132 libraries/messages.inc.php:1242 +#: browse_foreigners.php:132 libraries/messages.inc.php:1238 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -38,7 +38,7 @@ 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/db_links.inc.php:75 -#: libraries/messages.inc.php:841 libraries/tbl_links.inc.php:63 +#: libraries/messages.inc.php:837 libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Пошук" @@ -47,12 +47,12 @@ msgstr "Пошук" #: db_search.php:362 db_structure.php:567 js/messages.php:48 #: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2267 +#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 #: 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 #: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614 -#: libraries/messages.inc.php:361 libraries/replication_gui.lib.php:73 +#: libraries/messages.inc.php:357 libraries/replication_gui.lib.php:73 #: libraries/replication_gui.lib.php:365 libraries/select_server.lib.php:104 #: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477 #: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782 @@ -72,33 +72,33 @@ msgid "Go" msgstr "Панеслася" #: browse_foreigners.php:168 browse_foreigners.php:172 -#: libraries/Index.class.php:442 libraries/messages.inc.php:459 +#: libraries/Index.class.php:442 libraries/messages.inc.php:455 #: tbl_tracking.php:320 msgid "Keyname" msgstr "Імя ключа" #: browse_foreigners.php:169 browse_foreigners.php:171 -#: libraries/messages.inc.php:252 server_collations.php:55 +#: libraries/messages.inc.php:248 server_collations.php:55 #: server_collations.php:67 server_engines.php:59 server_status.php:628 msgid "Description" msgstr "Апісаньне" #: browse_foreigners.php:247 browse_foreigners.php:256 #: browse_foreigners.php:268 browse_foreigners.php:276 -#: libraries/messages.inc.php:1218 +#: libraries/messages.inc.php:1214 msgid "Use this value" msgstr "Выкарыстоўваць гэта значэньне" -#: db_create.php:46 libraries/messages.inc.php:215 +#: db_create.php:46 libraries/messages.inc.php:211 #, php-format msgid "Database %1$s has been created." msgstr "База дадзеных %1$s створаная." -#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:232 +#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:228 msgid "Database comment: " msgstr "Камэнтар да базы дадзеных: " -#: db_datadict.php:165 libraries/messages.inc.php:1070 +#: db_datadict.php:165 libraries/messages.inc.php:1066 #: libraries/tbl_properties.inc.php:724 pdf_schema.php:1236 #: tbl_operations.php:345 tbl_printview.php:130 msgid "Table comments" @@ -107,7 +107,7 @@ msgstr "Камэнтар да табліцы" #: db_datadict.php:174 db_qbe.php:174 libraries/Index.class.php:446 #: libraries/export/htmlword.php:244 libraries/export/latex.php:360 #: libraries/export/odt.php:294 libraries/export/texytext.php:233 -#: libraries/messages.inc.php:317 libraries/tbl_properties.inc.php:99 +#: libraries/messages.inc.php:313 libraries/tbl_properties.inc.php:99 #: libraries/tbl_properties.inc.php:275 pdf_schema.php:1262 #: pdf_schema.php:1283 tbl_change.php:308 tbl_indexes.php:189 #: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135 @@ -119,7 +119,7 @@ msgstr "Поле" #: libraries/db_events.inc.php:31 libraries/db_routines.inc.php:42 #: 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/messages.inc.php:1181 +#: libraries/export/texytext.php:234 libraries/messages.inc.php:1177 #: libraries/tbl_properties.inc.php:100 pdf_schema.php:1263 #: pdf_schema.php:1284 server_privileges.php:2031 tbl_change.php:287 #: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313 @@ -131,7 +131,7 @@ msgstr "Тып" #: db_datadict.php:177 libraries/Index.class.php:449 #: libraries/export/htmlword.php:246 libraries/export/latex.php:360 #: libraries/export/odt.php:300 libraries/export/texytext.php:235 -#: libraries/messages.inc.php:576 libraries/tbl_properties.inc.php:109 +#: libraries/messages.inc.php:572 libraries/tbl_properties.inc.php:109 #: pdf_schema.php:1265 pdf_schema.php:1286 tbl_change.php:323 #: tbl_printview.php:145 tbl_structure.php:181 tbl_tracking.php:276 #: tbl_tracking.php:327 @@ -140,7 +140,7 @@ msgstr "Нуль" #: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 -#: libraries/export/texytext.php:236 libraries/messages.inc.php:238 +#: libraries/export/texytext.php:236 libraries/messages.inc.php:234 #: libraries/tbl_properties.inc.php:106 pdf_schema.php:1266 #: pdf_schema.php:1287 tbl_printview.php:146 tbl_structure.php:182 #: tbl_tracking.php:277 @@ -149,14 +149,14 @@ msgstr "Па змоўчаньні" #: db_datadict.php:182 libraries/export/htmlword.php:249 #: libraries/export/latex.php:362 libraries/export/odt.php:307 -#: libraries/export/texytext.php:238 libraries/messages.inc.php:483 +#: libraries/export/texytext.php:238 libraries/messages.inc.php:479 #: pdf_schema.php:1268 pdf_schema.php:1289 tbl_printview.php:150 msgid "Links to" msgstr "Зьвязаная з" #: db_datadict.php:184 db_printview.php:112 libraries/export/htmlword.php:252 #: libraries/export/latex.php:365 libraries/export/odt.php:312 -#: libraries/export/texytext.php:241 libraries/messages.inc.php:163 +#: libraries/export/texytext.php:241 libraries/messages.inc.php:159 #: libraries/tbl_properties.inc.php:130 pdf_schema.php:1279 #: pdf_schema.php:1290 tbl_printview.php:152 msgid "Comments" @@ -165,7 +165,7 @@ msgstr "Камэнтары" #: db_datadict.php:267 libraries/Index.class.php:359 #: 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/messages.inc.php:559 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:555 #: libraries/mult_submits.inc.php:263 pdf_schema.php:1344 #: server_privileges.php:1529 server_privileges.php:1540 #: server_privileges.php:1850 server_privileges.php:1855 @@ -177,7 +177,7 @@ msgstr "Не" #: db_datadict.php:267 libraries/Index.class.php:360 #: libraries/Index.class.php:385 libraries/export/htmlword.php:322 #: libraries/export/latex.php:430 libraries/export/odt.php:368 -#: libraries/export/texytext.php:311 libraries/messages.inc.php:1257 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:1253 #: libraries/mult_submits.inc.php:45 libraries/mult_submits.inc.php:50 #: libraries/mult_submits.inc.php:55 libraries/mult_submits.inc.php:60 #: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:101 @@ -191,108 +191,108 @@ msgstr "Не" msgid "Yes" msgstr "Так" -#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:670 +#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:666 #: tbl_printview.php:498 msgid "Print" msgstr "Друк" -#: db_export.php:29 libraries/messages.inc.php:1226 +#: db_export.php:29 libraries/messages.inc.php:1222 msgid "View dump (schema) of database" msgstr "Праглядзець дамп (схему) базы дадзеных" #: db_export.php:33 db_printview.php:96 db_qbe.php:102 db_structure.php:51 -#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:568 +#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:564 #: navigation.php:346 msgid "No tables found in database." msgstr "У базе дадзеных табліц ня выяўлена." -#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:845 +#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:841 #: server_export.php:27 msgid "Select All" msgstr "Выбраць усё" -#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1188 +#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1184 #: server_export.php:29 msgid "Unselect All" msgstr "Зьняць усе адзнакі" -#: db_operations.php:38 libraries/messages.inc.php:213 tbl_create.php:54 +#: db_operations.php:38 libraries/messages.inc.php:209 tbl_create.php:54 msgid "The database name is empty!" msgstr "Імя базы дадзеных не пазначанае!" -#: db_operations.php:236 libraries/messages.inc.php:753 +#: db_operations.php:236 libraries/messages.inc.php:749 #, php-format msgid "Database %s has been renamed to %s" msgstr "База дадзеных %s была перайменаваная ў %s" -#: db_operations.php:240 libraries/messages.inc.php:178 +#: db_operations.php:240 libraries/messages.inc.php:174 #, php-format msgid "Database %s has been copied to %s" msgstr "База дадзеных %s была скапіяваная ў %s" -#: db_operations.php:410 libraries/messages.inc.php:236 +#: db_operations.php:410 libraries/messages.inc.php:232 msgid "Rename database to" msgstr "Перайменаваць базу дадзеных у" -#: db_operations.php:415 libraries/messages.inc.php:161 +#: db_operations.php:415 libraries/messages.inc.php:157 #: server_processlist.php:57 msgid "Command" msgstr "Каманда" -#: db_operations.php:425 libraries/messages.inc.php:58 tbl_change.php:1143 +#: db_operations.php:425 libraries/messages.inc.php:54 tbl_change.php:1143 msgid "and then" msgstr "і пасьля" -#: db_operations.php:451 libraries/messages.inc.php:233 +#: db_operations.php:451 libraries/messages.inc.php:229 msgid "Copy database to" msgstr "Капіяваць базу дадзеных у" -#: db_operations.php:458 libraries/messages.inc.php:1043 +#: db_operations.php:458 libraries/messages.inc.php:1039 #: tbl_operations.php:526 tbl_tracking.php:388 msgid "Structure only" msgstr "Толькі структуру" -#: db_operations.php:459 libraries/messages.inc.php:1041 +#: db_operations.php:459 libraries/messages.inc.php:1037 #: tbl_operations.php:527 tbl_tracking.php:390 msgid "Structure and data" msgstr "Структуру і дадзеныя" -#: db_operations.php:460 libraries/messages.inc.php:229 tbl_operations.php:528 +#: db_operations.php:460 libraries/messages.inc.php:225 tbl_operations.php:528 #: tbl_tracking.php:389 msgid "Data only" msgstr "Толькі дадзеныя" -#: db_operations.php:468 libraries/messages.inc.php:186 +#: db_operations.php:468 libraries/messages.inc.php:182 msgid "CREATE DATABASE before copying" msgstr "выканаць CREATE DATABASE перад капіяваньнем" #: db_operations.php:471 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 -#: libraries/export/sql.php:82 libraries/messages.inc.php:30 +#: libraries/export/sql.php:82 libraries/messages.inc.php:26 #: tbl_operations.php:534 #, php-format msgid "Add %s" msgstr "Дадаць %s" -#: db_operations.php:475 libraries/messages.inc.php:29 tbl_operations.php:297 +#: db_operations.php:475 libraries/messages.inc.php:25 tbl_operations.php:297 #: tbl_operations.php:536 msgid "Add AUTO_INCREMENT value" msgstr "Дадаць значэньне AUTO_INCREMENT" -#: db_operations.php:479 libraries/messages.inc.php:31 tbl_operations.php:543 +#: db_operations.php:479 libraries/messages.inc.php:27 tbl_operations.php:543 msgid "Add constraints" msgstr "Дадаць абмежаваньні" -#: db_operations.php:492 libraries/messages.inc.php:1059 +#: db_operations.php:492 libraries/messages.inc.php:1055 msgid "Switch to copied database" msgstr "Перайсьці да скапіяванай базы дадзеных" -#: db_operations.php:533 libraries/messages.inc.php:89 +#: db_operations.php:533 libraries/messages.inc.php:85 msgid "BLOB Repository" msgstr "" #: db_operations.php:536 db_tracking.php:76 libraries/common.lib.php:1350 -#: libraries/messages.inc.php:1037 libraries/server_links.inc.php:49 +#: libraries/messages.inc.php:1033 libraries/server_links.inc.php:49 #: server_processlist.php:59 tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "Стан" @@ -304,12 +304,12 @@ msgctxt "BLOB repository" msgid "Enabled" msgstr "Уключана" -#: db_operations.php:548 libraries/messages.inc.php:93 +#: db_operations.php:548 libraries/messages.inc.php:89 #, fuzzy msgid "Disable" msgstr "Адключана" -#: db_operations.php:558 libraries/messages.inc.php:90 +#: db_operations.php:558 libraries/messages.inc.php:86 msgid "Damaged" msgstr "" @@ -327,13 +327,13 @@ msgctxt "BLOB repository" msgid "Disabled" msgstr "Адключана" -#: db_operations.php:574 libraries/messages.inc.php:96 +#: db_operations.php:574 libraries/messages.inc.php:92 #, fuzzy msgid "Enable" msgstr "Уключана" #: db_operations.php:598 libraries/Index.class.php:448 -#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:158 +#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:154 #: 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:361 @@ -342,7 +342,7 @@ msgstr "Уключана" msgid "Collation" msgstr "Супастаўленьне" -#: db_operations.php:609 libraries/messages.inc.php:742 main.php:316 +#: db_operations.php:609 libraries/messages.inc.php:738 main.php:316 #: pdf_schema.php:34 #, php-format msgid "" @@ -352,58 +352,58 @@ msgstr "" "Дадатковыя магчымасьці работы з зьвязанымі табліцамі былі адключаныя. Каб " "высьветліць чаму, націсьніце %sтут%s." -#: db_operations.php:645 libraries/messages.inc.php:264 pdf_pages.php:528 +#: db_operations.php:645 libraries/messages.inc.php:260 pdf_pages.php:528 msgid "Display PDF schema" msgstr "Паказаць PDF-схему" -#: db_operations.php:661 libraries/messages.inc.php:877 pdf_pages.php:529 +#: db_operations.php:661 libraries/messages.inc.php:873 pdf_pages.php:529 msgid "Show grid" msgstr "Паказаць сетку" -#: db_operations.php:664 libraries/messages.inc.php:874 pdf_pages.php:530 +#: db_operations.php:664 libraries/messages.inc.php:870 pdf_pages.php:530 msgid "Show color" msgstr "Паказаць колер" -#: db_operations.php:666 libraries/messages.inc.php:998 pdf_pages.php:531 +#: db_operations.php:666 libraries/messages.inc.php:994 pdf_pages.php:531 msgid "Show dimension of tables" msgstr "Паказаць разьмернасьць табліц" -#: db_operations.php:669 libraries/messages.inc.php:52 pdf_pages.php:532 +#: db_operations.php:669 libraries/messages.inc.php:48 pdf_pages.php:532 msgid "Display all tables with the same width" msgstr "Паказаць усе табліцы аднолькавай шырыні?" -#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:227 +#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:223 #: pdf_pages.php:533 msgid "Data Dictionary" msgstr "Слоўнік дадзеных" -#: db_operations.php:674 libraries/messages.inc.php:884 pdf_pages.php:534 +#: db_operations.php:674 libraries/messages.inc.php:880 pdf_pages.php:534 msgid "Only show keys" msgstr "" -#: db_operations.php:676 libraries/messages.inc.php:875 pdf_pages.php:535 +#: db_operations.php:676 libraries/messages.inc.php:871 pdf_pages.php:535 msgid "Data Dictionary Format" msgstr "Фармат слоўніка дадзеных" -#: db_operations.php:678 libraries/messages.inc.php:464 pdf_pages.php:537 +#: db_operations.php:678 libraries/messages.inc.php:460 pdf_pages.php:537 msgid "Landscape" msgstr "Краявід" -#: db_operations.php:679 libraries/messages.inc.php:663 pdf_pages.php:538 +#: db_operations.php:679 libraries/messages.inc.php:659 pdf_pages.php:538 msgid "Portrait" msgstr "Партрэт" -#: db_operations.php:682 libraries/messages.inc.php:599 pdf_pages.php:541 +#: db_operations.php:682 libraries/messages.inc.php:595 pdf_pages.php:541 msgid "Paper size" msgstr "Памер паперы" -#: db_operations.php:706 libraries/messages.inc.php:281 +#: db_operations.php:706 libraries/messages.inc.php:277 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 libraries/messages.inc.php:1087 +#: libraries/header.inc.php:126 libraries/messages.inc.php:1083 #: pdf_pages.php:405 server_privileges.php:1626 server_privileges.php:1682 #: server_privileges.php:1946 server_synchronize.php:423 #: server_synchronize.php:866 tbl_tracking.php:592 test/theme.php:75 @@ -411,176 +411,176 @@ msgid "Table" msgstr "Табліца" #: db_printview.php:105 libraries/db_structure.lib.php:56 -#: libraries/messages.inc.php:735 +#: libraries/messages.inc.php:731 msgid "Records" msgstr "Запісы" #: db_printview.php:109 libraries/db_structure.lib.php:67 -#: libraries/messages.inc.php:1003 tbl_indexes.php:190 +#: libraries/messages.inc.php:999 tbl_indexes.php:190 msgid "Size" msgstr "Памер" #: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 -#: libraries/export/sql.php:899 libraries/messages.inc.php:436 +#: libraries/export/sql.php:899 libraries/messages.inc.php:432 msgid "in use" msgstr "выкарыстоўваецца" #: db_printview.php:187 libraries/db_info.inc.php:88 -#: libraries/export/sql.php:514 libraries/messages.inc.php:1032 +#: libraries/export/sql.php:514 libraries/messages.inc.php:1028 #: pdf_schema.php:1241 tbl_printview.php:434 tbl_structure.php:810 msgid "Creation" msgstr "Створаная" #: db_printview.php:196 libraries/db_info.inc.php:93 -#: libraries/export/sql.php:519 libraries/messages.inc.php:1036 +#: libraries/export/sql.php:519 libraries/messages.inc.php:1032 #: pdf_schema.php:1246 tbl_printview.php:444 tbl_structure.php:818 msgid "Last update" msgstr "Апошняе абнаўленьне" #: db_printview.php:205 libraries/db_info.inc.php:98 -#: libraries/export/sql.php:524 libraries/messages.inc.php:1031 +#: libraries/export/sql.php:524 libraries/messages.inc.php:1027 #: pdf_schema.php:1251 tbl_printview.php:454 tbl_structure.php:826 msgid "Last check" msgstr "Апошняя праверка" -#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1085 +#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1081 #, php-format msgid "%s table(s)" msgstr "%s табліц(ы)" #: db_qbe.php:29 libraries/display_tbl.lib.php:1981 -#: libraries/messages.inc.php:1051 libraries/sql_query_form.lib.php:140 +#: libraries/messages.inc.php:1047 libraries/sql_query_form.lib.php:140 #: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131 #: view_operations.php:62 msgid "Your SQL query has been executed successfully" msgstr "Ваш SQL-запыт быў пасьпяхова выкананы" -#: db_qbe.php:42 libraries/messages.inc.php:371 +#: db_qbe.php:42 libraries/messages.inc.php:367 msgid "You have to choose at least one column to display" msgstr "Вам неабходна выбраць прынамсі адну калёнку для адлюстраваньня" #: db_qbe.php:200 libraries/db_structure.lib.php:104 -#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1014 +#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1010 msgid "Sort" msgstr "Парадак" #: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111 #: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828 -#: libraries/messages.inc.php:69 server_databases.php:170 +#: libraries/messages.inc.php:65 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314 msgid "Ascending" msgstr "прамы" #: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119 #: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825 -#: libraries/messages.inc.php:251 server_databases.php:170 +#: libraries/messages.inc.php:247 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315 msgid "Descending" msgstr "адваротны" #: db_qbe.php:264 db_tracking.php:78 libraries/display_tbl.lib.php:308 -#: libraries/messages.inc.php:888 tbl_change.php:277 tbl_tracking.php:597 +#: libraries/messages.inc.php:884 tbl_change.php:277 tbl_tracking.php:597 msgid "Show" msgstr "Паказаць" -#: db_qbe.php:300 libraries/messages.inc.php:202 +#: db_qbe.php:300 libraries/messages.inc.php:198 msgid "Criteria" msgstr "Крытэр" #: db_qbe.php:353 db_qbe.php:435 db_qbe.php:527 db_qbe.php:558 -#: libraries/messages.inc.php:718 +#: libraries/messages.inc.php:714 msgid "Ins" msgstr "Уставіць" #: db_qbe.php:357 db_qbe.php:439 db_qbe.php:524 db_qbe.php:555 -#: libraries/messages.inc.php:56 +#: libraries/messages.inc.php:52 msgid "And" msgstr "І" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:529 db_qbe.php:560 -#: libraries/messages.inc.php:717 +#: libraries/messages.inc.php:713 msgid "Del" msgstr "Выдаліць" #: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553 -#: libraries/display_import.lib.php:166 libraries/messages.inc.php:592 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:588 #: libraries/tbl_properties.inc.php:779 server_privileges.php:258 #: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288 msgid "Or" msgstr "Або" -#: db_qbe.php:507 libraries/messages.inc.php:516 +#: db_qbe.php:507 libraries/messages.inc.php:512 msgid "Modify" msgstr "Зьмяніць" -#: db_qbe.php:584 libraries/messages.inc.php:33 +#: db_qbe.php:584 libraries/messages.inc.php:29 msgid "Add/Delete Criteria Row" msgstr "Дадаць/выдаліць радок крытэру" -#: db_qbe.php:596 libraries/messages.inc.php:32 +#: db_qbe.php:596 libraries/messages.inc.php:28 msgid "Add/Delete Field Columns" msgstr "Дадаць/выдаліць калёнку крытэру" -#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1192 +#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1188 msgid "Update Query" msgstr "Абнавіць запыт" -#: db_qbe.php:617 libraries/messages.inc.php:1216 +#: db_qbe.php:617 libraries/messages.inc.php:1212 msgid "Use Tables" msgstr "Выкарыстоўваць табліцы" -#: db_qbe.php:640 libraries/messages.inc.php:723 +#: db_qbe.php:640 libraries/messages.inc.php:719 #, php-format msgid "SQL query on database %s:" msgstr "SQL-запыт да БД %s:" -#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:823 +#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:819 msgid "Submit Query" msgstr "Выканаць запыт" #: db_search.php:68 libraries/auth/config.auth.lib.php:84 #: libraries/auth/config.auth.lib.php:103 #: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52 -#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:26 +#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:22 msgid "Access denied" msgstr "У доступе адмоўлена" -#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:836 +#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:832 msgid "at least one of the words" msgstr "прынамсі адно з словаў" -#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:837 +#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:833 msgid "all words" msgstr "усе словы" -#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:838 +#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:834 msgid "the exact phrase" msgstr "дакладную фразу" -#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:839 +#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:835 msgid "as regular expression" msgstr "рэгулярны выраз" -#: db_search.php:242 libraries/messages.inc.php:840 +#: db_search.php:242 libraries/messages.inc.php:836 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Вынікі пошуку \"%s\" %s:" -#: db_search.php:260 libraries/messages.inc.php:579 +#: db_search.php:260 libraries/messages.inc.php:575 #, php-format msgid "%s match(es) inside table %s" 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/messages.inc.php:108 +#: db_structure.php:105 libraries/messages.inc.php:104 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468 msgid "Browse" msgstr "Прагляд" #: db_search.php:272 libraries/display_tbl.lib.php:1165 -#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:243 +#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:239 #: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406 #: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377 #: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216 @@ -588,45 +588,45 @@ msgstr "Прагляд" msgid "Delete" msgstr "Выдаліць" -#: db_search.php:285 libraries/messages.inc.php:580 +#: db_search.php:285 libraries/messages.inc.php:576 #, php-format msgid "Total: %s match(es)" msgstr "Агулам: %s супадзеньняў" -#: db_search.php:299 libraries/messages.inc.php:832 +#: db_search.php:299 libraries/messages.inc.php:828 msgid "Search in database" msgstr "Пошук у базе дадзеных" -#: db_search.php:302 libraries/messages.inc.php:835 +#: db_search.php:302 libraries/messages.inc.php:831 msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgstr "Слова(ы) або значэньне(і) для пошуку (маска: \"%\"):" -#: db_search.php:307 libraries/messages.inc.php:842 +#: db_search.php:307 libraries/messages.inc.php:838 msgid "Find:" msgstr "Знайсьці:" -#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1017 +#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1013 msgid "Words are separated by a space character (\" \")." msgstr "Словы, падзеленыя прагалам (\" \")." -#: db_search.php:325 libraries/messages.inc.php:834 +#: db_search.php:325 libraries/messages.inc.php:830 msgid "Inside table(s):" msgstr "У табліцы(ах):" -#: db_search.php:355 libraries/messages.inc.php:833 +#: db_search.php:355 libraries/messages.inc.php:829 msgid "Inside field:" 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/messages.inc.php:431 libraries/sql_query_form.lib.php:334 +#: libraries/messages.inc.php:427 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/db_links.inc.php:63 libraries/export/latex.php:337 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:1048 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:1044 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 #: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269 msgid "Structure" @@ -635,8 +635,8 @@ 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:1642 -#: libraries/db_links.inc.php:100 libraries/messages.inc.php:272 +#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/db_links.inc.php:100 libraries/messages.inc.php:268 #: 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 @@ -646,40 +646,40 @@ 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:1641 -#: libraries/messages.inc.php:284 libraries/mult_submits.inc.php:39 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: libraries/messages.inc.php:280 libraries/mult_submits.inc.php:39 #: libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Ачысьціць" -#: db_structure.php:316 libraries/messages.inc.php:1075 +#: db_structure.php:316 libraries/messages.inc.php:1071 #: libraries/tbl_links.inc.php:100 #, php-format msgid "Table %s has been emptied" msgstr "Табліца %s была ачышчаная" -#: db_structure.php:326 libraries/messages.inc.php:1229 +#: db_structure.php:326 libraries/messages.inc.php:1225 #: libraries/tbl_links.inc.php:133 #, php-format msgid "View %s has been dropped" msgstr "Выгляд %s быў выдалены" -#: db_structure.php:326 libraries/messages.inc.php:1074 +#: db_structure.php:326 libraries/messages.inc.php:1070 #: libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "Табліца %s была выдаленая" -#: db_structure.php:333 libraries/messages.inc.php:1128 +#: db_structure.php:333 libraries/messages.inc.php:1124 msgid "Tracking is active." msgstr "" -#: db_structure.php:335 libraries/messages.inc.php:1129 +#: db_structure.php:335 libraries/messages.inc.php:1125 msgid "Tracking is not active." msgstr "" #: db_structure.php:420 libraries/display_tbl.lib.php:1944 -#: libraries/messages.inc.php:1228 +#: libraries/messages.inc.php:1224 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -689,23 +689,23 @@ msgstr "" "sдакумэнтацыі%s." #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 -#: libraries/messages.inc.php:1233 libraries/tbl_info.inc.php:66 +#: libraries/messages.inc.php:1229 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/messages.inc.php:773 libraries/server_links.inc.php:70 +#: libraries/messages.inc.php:769 libraries/server_links.inc.php:70 #: server_replication.php:33 server_replication.php:164 server_status.php:258 msgid "Replication" msgstr "Рэплікацыя" -#: db_structure.php:489 libraries/messages.inc.php:1053 +#: db_structure.php:489 libraries/messages.inc.php:1049 msgid "Sum" msgstr "Усяго" #: db_structure.php:496 libraries/StorageEngine.class.php:356 -#: libraries/messages.inc.php:239 +#: libraries/messages.inc.php:235 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" @@ -714,60 +714,60 @@ msgstr "" #: db_structure.php:524 db_structure.php:541 db_structure.php:542 #: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086 -#: libraries/messages.inc.php:1243 libraries/mult_submits.inc.php:16 +#: libraries/messages.inc.php:1239 libraries/mult_submits.inc.php:16 #: server_databases.php:346 server_databases.php:351 #: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465 msgid "With selected:" msgstr "З адзначанымі:" #: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: libraries/messages.inc.php:148 server_databases.php:348 +#: libraries/messages.inc.php:144 server_databases.php:348 #: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459 msgid "Check All" msgstr "Адзначыць усё" #: db_structure.php:531 libraries/display_tbl.lib.php:2077 -#: libraries/messages.inc.php:1184 libraries/replication_gui.lib.php:33 +#: libraries/messages.inc.php:1180 libraries/replication_gui.lib.php:33 #: server_databases.php:350 server_privileges.php:533 #: server_privileges.php:1564 tbl_structure.php:463 msgid "Uncheck All" msgstr "Зьняць усе адзнакі" -#: db_structure.php:536 libraries/messages.inc.php:150 +#: db_structure.php:536 libraries/messages.inc.php:146 msgid "Check tables having overhead" msgstr "Адзначыць тыя, што патрабуюць аптымізацыі" #: db_structure.php:547 db_structure.php:548 db_structure.php:599 -#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:672 +#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:668 #: libraries/mult_submits.inc.php:28 tbl_structure.php:493 #: tbl_structure.php:495 msgid "Print view" msgstr "Вэрсія для друку" -#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:153 +#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:149 #: libraries/mult_submits.inc.php:42 tbl_operations.php:579 msgid "Check table" msgstr "Праверыць табліцу" -#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:590 +#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:586 #: libraries/mult_submits.inc.php:47 tbl_operations.php:619 #: tbl_structure.php:710 tbl_structure.php:712 msgid "Optimize table" msgstr "Аптымізаваць табліцу" -#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:758 +#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:754 #: libraries/mult_submits.inc.php:52 tbl_operations.php:609 msgid "Repair table" msgstr "Рамантаваць табліцу" -#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:55 +#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:51 #: libraries/mult_submits.inc.php:57 tbl_operations.php:599 msgid "Analyze table" msgstr "Аналізаваць табліцу" #: db_structure.php:557 db_structure.php:558 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/messages.inc.php:310 +#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:306 #: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84 #: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109 #: server_privileges.php:1341 setup/frames/menu.inc.php:22 @@ -775,7 +775,7 @@ msgstr "Аналізаваць табліцу" msgid "Export" msgstr "Экспарт" -#: db_tracking.php:66 libraries/messages.inc.php:1151 +#: db_tracking.php:66 libraries/messages.inc.php:1147 #, fuzzy msgid "Tracked tables" msgstr "Праверыць табліцу" @@ -784,7 +784,7 @@ msgstr "Праверыць табліцу" #: 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/header_printview.inc.php:58 libraries/messages.inc.php:212 +#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:208 #: navigation.php:233 server_databases.php:169 server_privileges.php:1621 #: server_privileges.php:1682 server_privileges.php:1940 #: server_processlist.php:56 server_synchronize.php:1179 @@ -792,83 +792,83 @@ msgstr "Праверыць табліцу" msgid "Database" msgstr "База дадзеных" -#: db_tracking.php:73 libraries/messages.inc.php:1146 +#: db_tracking.php:73 libraries/messages.inc.php:1142 #, fuzzy msgid "Last version" msgstr "Стварыць сувязь" -#: db_tracking.php:74 libraries/messages.inc.php:1145 tbl_tracking.php:594 +#: db_tracking.php:74 libraries/messages.inc.php:1141 tbl_tracking.php:594 #, fuzzy msgid "Created" msgstr "Стварыць" -#: db_tracking.php:75 libraries/messages.inc.php:1147 tbl_tracking.php:595 +#: db_tracking.php:75 libraries/messages.inc.php:1143 tbl_tracking.php:595 msgid "Updated" msgstr "" #: db_tracking.php:77 libraries/Index.class.php:440 -#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:27 +#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:23 #: server_databases.php:203 server_privileges.php:1503 #: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187 msgid "Action" msgstr "Дзеяньне" -#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:247 +#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:243 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:106 libraries/messages.inc.php:1142 tbl_tracking.php:548 +#: db_tracking.php:106 libraries/messages.inc.php:1138 tbl_tracking.php:548 #: tbl_tracking.php:606 tbl_tracking.php:613 msgid "active" msgstr "" -#: db_tracking.php:108 libraries/messages.inc.php:1143 tbl_tracking.php:550 +#: db_tracking.php:108 libraries/messages.inc.php:1139 tbl_tracking.php:550 #: tbl_tracking.php:608 tbl_tracking.php:610 msgid "not active" msgstr "" -#: db_tracking.php:121 libraries/messages.inc.php:1160 +#: db_tracking.php:121 libraries/messages.inc.php:1156 #, fuzzy msgid "Versions" msgstr "Пэрсыдзкая" -#: db_tracking.php:122 libraries/messages.inc.php:1132 tbl_tracking.php:379 +#: db_tracking.php:122 libraries/messages.inc.php:1128 tbl_tracking.php:379 #: tbl_tracking.php:624 msgid "Tracking report" msgstr "" -#: db_tracking.php:123 libraries/messages.inc.php:1144 tbl_tracking.php:251 +#: db_tracking.php:123 libraries/messages.inc.php:1140 tbl_tracking.php:251 #: tbl_tracking.php:624 #, fuzzy msgid "Structure snapshot" msgstr "Толькі структуру" -#: db_tracking.php:152 libraries/messages.inc.php:1154 +#: db_tracking.php:152 libraries/messages.inc.php:1150 #, fuzzy msgid "Untracked tables" msgstr "Праверыць табліцу" -#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1153 +#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1149 #: tbl_structure.php:529 tbl_structure.php:531 #, fuzzy msgid "Track table" msgstr "Праверыць табліцу" -#: db_tracking.php:200 libraries/messages.inc.php:1121 +#: db_tracking.php:200 libraries/messages.inc.php:1117 #, fuzzy msgid "Database Log" msgstr "База дадзеных" -#: export.php:62 libraries/messages.inc.php:312 +#: export.php:62 libraries/messages.inc.php:308 msgid "Selected export type has to be saved in file!" msgstr "Дадзеныя выбранага тыпу экспартаваньня мусяць быць зазаванымі ў файл!" -#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:567 +#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:563 #, php-format msgid "Insufficient space to save the file %s." msgstr "Недастаткова месца для захаваньня ў файл %s." -#: export.php:294 libraries/messages.inc.php:324 +#: export.php:294 libraries/messages.inc.php:320 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -876,17 +876,17 @@ msgstr "" "Файл %s ужо існуе на сэрвэры, зьмяніце імя файла або праверце опцыю " "перазапісу." -#: export.php:298 export.php:302 libraries/messages.inc.php:562 +#: export.php:298 export.php:302 libraries/messages.inc.php:558 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Вэб-сэрвэр ня мае дазволу для захаваньня ў файл %s." -#: export.php:629 libraries/messages.inc.php:276 +#: export.php:629 libraries/messages.inc.php:272 #, php-format msgid "Dump has been saved to file %s." msgstr "Дамп захаваны ў файл %s." -#: import.php:60 libraries/messages.inc.php:1202 +#: import.php:60 libraries/messages.inc.php:1198 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation%" @@ -897,14 +897,14 @@ msgstr "" "абмежаваньне." #: import.php:279 import.php:332 libraries/File.class.php:849 -#: libraries/File.class.php:961 libraries/messages.inc.php:325 +#: libraries/File.class.php:961 libraries/messages.inc.php:321 msgid "File could not be read" msgstr "Немагчыма прачытаць файл" #: import.php:287 import.php:296 import.php:315 import.php:324 #: libraries/File.class.php:1031 libraries/File.class.php:1039 #: libraries/File.class.php:1055 libraries/File.class.php:1063 -#: libraries/messages.inc.php:1189 +#: libraries/messages.inc.php:1185 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -914,7 +914,7 @@ msgstr "" "s). Ягоная падтрымка або не рэалізаваная, або адключаная ў вашай " "канфігурацыі." -#: import.php:337 libraries/messages.inc.php:547 +#: import.php:337 libraries/messages.inc.php:543 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -925,30 +925,30 @@ msgstr "" "канфігурацыяй PHP. Гл. FAQ 1.16." #: import.php:372 libraries/display_import.lib.php:24 -#: libraries/messages.inc.php:125 +#: libraries/messages.inc.php:121 msgid "Could not load import plugins, please check your installation!" msgstr "" "Немагчыма загрузіць плагіны імпартаваньня, калі ласка, праверце ўсталёўку!" -#: import.php:397 libraries/messages.inc.php:102 +#: import.php:397 libraries/messages.inc.php:98 msgid "The bookmark has been deleted." msgstr "Закладка была выдаленая." -#: import.php:401 libraries/messages.inc.php:879 +#: import.php:401 libraries/messages.inc.php:875 msgid "Showing bookmark" msgstr "Паказваючы закладку" -#: import.php:403 libraries/messages.inc.php:101 +#: import.php:403 libraries/messages.inc.php:97 #, php-format msgid "Bookmark %s created" msgstr "Закладка %s створаная" -#: import.php:409 import.php:415 libraries/messages.inc.php:407 +#: import.php:409 import.php:415 libraries/messages.inc.php:403 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Імпартраваньне пасьпяхова завершанае, выканана %d запытаў." -#: import.php:424 libraries/messages.inc.php:1107 +#: import.php:424 libraries/messages.inc.php:1103 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -956,11 +956,11 @@ msgstr "" "Выйшаў дазволены час выкананьня скрыпта. Калі вы хочаце завершыць " "імпартаваньне, калі ласка, загрузіце файл зноў і імпартаваньне ўзнавіцца." -#: index.php:190 libraries/messages.inc.php:553 +#: index.php:190 libraries/messages.inc.php:549 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "Для работы phpMyAdmin патрэбны браўзэр з падтрымкай фрэймаў." -#: js/messages.php:25 libraries/messages.inc.php:155 +#: js/messages.php:25 libraries/messages.inc.php:151 #: server_synchronize.php:345 server_synchronize.php:357 #: server_synchronize.php:373 server_synchronize.php:380 #: server_synchronize.php:739 server_synchronize.php:767 @@ -968,116 +968,116 @@ msgstr "Для работы phpMyAdmin патрэбны браўзэр з пад msgid "Click to select" msgstr "" -#: js/messages.php:26 libraries/messages.inc.php:156 +#: js/messages.php:26 libraries/messages.inc.php:152 msgid "Click to unselect" msgstr "" #: js/messages.php:27 libraries/import.lib.php:103 -#: libraries/messages.inc.php:550 sql.php:89 +#: libraries/messages.inc.php:546 sql.php:89 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Каманды \"DROP DATABASE\" адключаныя." -#: js/messages.php:30 libraries/messages.inc.php:270 +#: js/messages.php:30 libraries/messages.inc.php:266 #: libraries/mult_submits.inc.php:258 sql.php:188 msgid "Do you really want to " msgstr "Ці сапраўды вы жадаеце " -#: js/messages.php:31 libraries/messages.inc.php:271 +#: js/messages.php:31 libraries/messages.inc.php:267 #: libraries/mult_submits.inc.php:258 sql.php:172 msgid "You are about to DESTROY a complete database!" msgstr "Вы зьбіраеце ВЫДАЛІЦЬ базу дадзеных цалкам!" -#: js/messages.php:34 libraries/messages.inc.php:94 +#: js/messages.php:34 libraries/messages.inc.php:90 msgid "You are about to DISABLE a BLOB Repository!" msgstr "" -#: js/messages.php:35 libraries/messages.inc.php:91 +#: js/messages.php:35 libraries/messages.inc.php:87 #, php-format msgid "Are you sure you want to disable all BLOB references for database %s?" msgstr "" -#: js/messages.php:38 libraries/messages.inc.php:342 +#: js/messages.php:38 libraries/messages.inc.php:338 msgid "Missing value in the form!" msgstr "Не зададзенае значэньне ў форме!" -#: js/messages.php:39 libraries/messages.inc.php:570 +#: js/messages.php:39 libraries/messages.inc.php:566 msgid "This is not a number!" msgstr "Гэта ня лік!" -#: js/messages.php:42 libraries/messages.inc.php:380 +#: js/messages.php:42 libraries/messages.inc.php:376 msgid "The host name is empty!" msgstr "Пустое імя хосту!" -#: js/messages.php:43 libraries/messages.inc.php:1208 +#: js/messages.php:43 libraries/messages.inc.php:1204 msgid "The user name is empty!" msgstr "Пустое імя карыстальніка!" -#: js/messages.php:44 libraries/messages.inc.php:607 +#: js/messages.php:44 libraries/messages.inc.php:603 #: server_privileges.php:1197 user_password.php:70 msgid "The password is empty!" msgstr "Пусты пароль!" -#: js/messages.php:45 libraries/messages.inc.php:609 +#: js/messages.php:45 libraries/messages.inc.php:605 #: server_privileges.php:1195 user_password.php:73 msgid "The passwords aren't the same!" msgstr "Паролі не супадаюць!" -#: js/messages.php:49 libraries/messages.inc.php:123 pmd_general.php:342 +#: js/messages.php:49 libraries/messages.inc.php:119 pmd_general.php:342 #: pmd_general.php:379 msgid "Cancel" msgstr "Скасаваць" -#: js/messages.php:52 libraries/messages.inc.php:514 +#: js/messages.php:52 libraries/messages.inc.php:510 msgid "Modifications have been saved" msgstr "Мадыфікацыі былі захаваныя" -#: js/messages.php:53 libraries/messages.inc.php:741 +#: js/messages.php:53 libraries/messages.inc.php:737 msgid "Relation deleted" msgstr "Сувязь выдаленая" -#: js/messages.php:54 libraries/messages.inc.php:340 +#: js/messages.php:54 libraries/messages.inc.php:336 msgid "FOREIGN KEY relation added" msgstr "Сувязь FOREIGN KEY была дададзеная" -#: js/messages.php:55 libraries/messages.inc.php:434 +#: js/messages.php:55 libraries/messages.inc.php:430 msgid "Internal relation added" msgstr "Унутраная сувязь дададзеная" -#: js/messages.php:56 libraries/messages.inc.php:299 +#: js/messages.php:56 libraries/messages.inc.php:295 msgid "Error: Relation not added." msgstr "Памылка: сувязь не дададзеная." -#: js/messages.php:57 libraries/messages.inc.php:300 +#: js/messages.php:57 libraries/messages.inc.php:296 msgid "Error: relation already exists." msgstr "Памылка: сувязь ужо існуе." -#: js/messages.php:58 libraries/messages.inc.php:302 +#: js/messages.php:58 libraries/messages.inc.php:298 msgid "Error saving coordinates for Designer." msgstr "Памылка захаваньня каардынатаў." -#: js/messages.php:59 libraries/messages.inc.php:351 +#: js/messages.php:59 libraries/messages.inc.php:347 #: libraries/relation.lib.php:107 msgid "General relation features" msgstr "Магчымасьці асноўных сувязяў" -#: js/messages.php:59 libraries/messages.inc.php:260 +#: js/messages.php:59 libraries/messages.inc.php:256 #: libraries/relation.lib.php:101 libraries/relation.lib.php:108 msgid "Disabled" msgstr "Адключана" -#: js/messages.php:60 libraries/messages.inc.php:850 +#: js/messages.php:60 libraries/messages.inc.php:846 msgid "Select referenced key" msgstr "Выберыце спасылкавы ключ" -#: js/messages.php:61 libraries/messages.inc.php:848 +#: js/messages.php:61 libraries/messages.inc.php:844 msgid "Select Foreign Key" msgstr "Выберыце зьнешні ключ" -#: js/messages.php:62 libraries/messages.inc.php:653 +#: js/messages.php:62 libraries/messages.inc.php:649 msgid "Please select the primary key or a unique key" msgstr "Калі ласка, выберыце першасны (PRIMARY) альбо ўнікальны ключ (UNIQUE)" -#: js/messages.php:63 libraries/messages.inc.php:142 pmd_general.php:77 +#: js/messages.php:63 libraries/messages.inc.php:138 pmd_general.php:77 #: tbl_relation.php:548 msgid "Choose field to display" msgstr "Выберыце поле для адлюстраваньня" @@ -1096,9 +1096,9 @@ msgid "Prev" msgstr "Папярэдняя старонка" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2332 -#: libraries/common.lib.php:2335 libraries/display_tbl.lib.php:338 -#: libraries/messages.inc.php:543 server_binlog.php:205 server_binlog.php:207 +#: js/messages.php:77 libraries/common.lib.php:2344 +#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: libraries/messages.inc.php:539 server_binlog.php:205 server_binlog.php:207 #: tbl_printview.php:424 tbl_structure.php:802 msgid "Next" msgstr "Наступная старонка" @@ -1173,27 +1173,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1543 +#: js/messages.php:97 libraries/common.lib.php:1555 msgid "Jan" msgstr "Сту" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1545 +#: js/messages.php:99 libraries/common.lib.php:1557 msgid "Feb" msgstr "Лют" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1547 +#: js/messages.php:101 libraries/common.lib.php:1559 msgid "Mar" msgstr "Сак" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1549 +#: js/messages.php:103 libraries/common.lib.php:1561 msgid "Apr" msgstr "Кра" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1551 +#: js/messages.php:105 libraries/common.lib.php:1563 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1201,37 +1201,37 @@ msgid "May" msgstr "Тра" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1553 +#: js/messages.php:107 libraries/common.lib.php:1565 msgid "Jun" msgstr "Чэр" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1555 +#: js/messages.php:109 libraries/common.lib.php:1567 msgid "Jul" msgstr "Ліп" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1557 +#: js/messages.php:111 libraries/common.lib.php:1569 msgid "Aug" msgstr "Жні" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1559 +#: js/messages.php:113 libraries/common.lib.php:1571 msgid "Sep" msgstr "Вер" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1561 +#: js/messages.php:115 libraries/common.lib.php:1573 msgid "Oct" msgstr "Кас" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1563 +#: js/messages.php:117 libraries/common.lib.php:1575 msgid "Nov" msgstr "Ліс" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1565 +#: js/messages.php:119 libraries/common.lib.php:1577 msgid "Dec" msgstr "Сьн" @@ -1272,37 +1272,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1568 +#: js/messages.php:132 libraries/common.lib.php:1580 msgid "Sun" msgstr "Ндз" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1570 +#: js/messages.php:134 libraries/common.lib.php:1582 msgid "Mon" msgstr "Пан" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1572 +#: js/messages.php:136 libraries/common.lib.php:1584 msgid "Tue" msgstr "Аўт" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1574 +#: js/messages.php:138 libraries/common.lib.php:1586 msgid "Wed" msgstr "Сер" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1576 +#: js/messages.php:140 libraries/common.lib.php:1588 msgid "Thu" msgstr "Цач" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1578 +#: js/messages.php:142 libraries/common.lib.php:1590 msgid "Fri" msgstr "Пят" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1580 +#: js/messages.php:144 libraries/common.lib.php:1592 msgid "Sat" msgstr "Суб" @@ -1378,23 +1378,23 @@ msgstr "выкарыстоўваецца" msgid "Second" msgstr "у сэкунду" -#: libraries/Config.class.php:1015 libraries/messages.inc.php:338 +#: libraries/Config.class.php:1015 libraries/messages.inc.php:334 msgid "Font size" msgstr "Памер шрыфта" #: libraries/File.class.php:344 libraries/File.class.php:432 #: libraries/File.class.php:569 libraries/File.class.php:708 -#: libraries/messages.inc.php:1201 +#: libraries/messages.inc.php:1197 msgid "Unknown error in file upload." msgstr "Падчас загрузкі файла адбылася невядомая памылка." -#: libraries/File.class.php:414 libraries/messages.inc.php:1198 +#: libraries/File.class.php:414 libraries/messages.inc.php:1194 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "Памер загружанага файла пераўзыходзіць парамэтар upload_max_filesize у php." "ini." -#: libraries/File.class.php:417 libraries/messages.inc.php:1197 +#: libraries/File.class.php:417 libraries/messages.inc.php:1193 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -1402,56 +1402,56 @@ msgstr "" "Памер загружанага файла пераўзыходзіць парамэтар MAX_FILE_SIZE, які быў " "вызначаны ў HTML-форме." -#: libraries/File.class.php:420 libraries/messages.inc.php:1200 +#: libraries/File.class.php:420 libraries/messages.inc.php:1196 msgid "The uploaded file was only partially uploaded." msgstr "Файл быў загружаны толькі часткова." -#: libraries/File.class.php:423 libraries/messages.inc.php:1199 +#: libraries/File.class.php:423 libraries/messages.inc.php:1195 msgid "Missing a temporary folder." msgstr "Адсутнічае часовая тэчка." -#: libraries/File.class.php:426 libraries/messages.inc.php:1195 +#: libraries/File.class.php:426 libraries/messages.inc.php:1191 msgid "Failed to write file to disk." msgstr "Памылка запісу на дыск." -#: libraries/File.class.php:429 libraries/messages.inc.php:1196 +#: libraries/File.class.php:429 libraries/messages.inc.php:1192 msgid "File upload stopped by extension." msgstr "Загрузка файла спыненая пашырэньнем." -#: libraries/File.class.php:908 libraries/messages.inc.php:319 +#: libraries/File.class.php:908 libraries/messages.inc.php:315 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "Памылка перамяшчэньня загружанага файла. Глядзіце разьдзел 1.11 у FAQ" -#: libraries/Index.class.php:428 libraries/messages.inc.php:554 +#: libraries/Index.class.php:428 libraries/messages.inc.php:550 #: tbl_relation.php:529 msgid "No index defined!" msgstr "Індэкс ня вызначаны!" -#: libraries/Index.class.php:433 libraries/messages.inc.php:411 +#: libraries/Index.class.php:433 libraries/messages.inc.php:407 #: server_databases.php:132 tbl_tracking.php:316 msgid "Indexes" msgstr "Індэксы" -#: libraries/Index.class.php:444 libraries/messages.inc.php:1186 +#: libraries/Index.class.php:444 libraries/messages.inc.php:1182 #: 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:475 tbl_tracking.php:322 msgid "Unique" msgstr "Унікальнае" -#: libraries/Index.class.php:445 libraries/messages.inc.php:596 +#: libraries/Index.class.php:445 libraries/messages.inc.php:592 #: tbl_tracking.php:323 msgid "Packed" msgstr "Сьціснутая" -#: libraries/Index.class.php:447 libraries/messages.inc.php:131 +#: libraries/Index.class.php:447 libraries/messages.inc.php:127 #: tbl_tracking.php:325 msgid "Cardinality" msgstr "Колькасьць элемэнтаў" -#: libraries/Index.class.php:450 libraries/messages.inc.php:162 +#: libraries/Index.class.php:450 libraries/messages.inc.php:158 #: tbl_tracking.php:279 tbl_tracking.php:328 msgid "Comment" msgstr "Камэнтар" @@ -1459,22 +1459,22 @@ msgstr "Камэнтар" #: libraries/Index.class.php:466 libraries/common.lib.php:616 #: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:280 pdf_pages.php:280 +#: libraries/messages.inc.php:276 pdf_pages.php:280 #: setup/frames/index.inc.php:124 setup/lib/messages.inc.php:352 #: tbl_row_action.php:69 msgid "Edit" msgstr "Рэдагаваць" -#: libraries/Index.class.php:472 libraries/messages.inc.php:666 +#: libraries/Index.class.php:472 libraries/messages.inc.php:662 msgid "The primary key has been dropped" msgstr "Першасны ключ быў выдалены" -#: libraries/Index.class.php:476 libraries/messages.inc.php:413 +#: libraries/Index.class.php:476 libraries/messages.inc.php:409 #, php-format msgid "Index %s has been dropped" msgstr "Індэкс %s быў выдалены" -#: libraries/Index.class.php:576 libraries/messages.inc.php:412 +#: libraries/Index.class.php:576 libraries/messages.inc.php:408 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -1483,7 +1483,7 @@ msgstr "" "Падобна, што індэксы %1$s і %2$s зьяўляюцца аднолькавымі, а таму адзін зь " "іх, магчыма, можна выдаліць." -#: libraries/List_Database.class.php:431 libraries/messages.inc.php:218 +#: libraries/List_Database.class.php:431 libraries/messages.inc.php:214 #: libraries/server_links.inc.php:41 server_databases.php:88 #: server_privileges.php:1621 setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" @@ -1513,86 +1513,86 @@ msgid_plural "%1$d rows inserted." msgstr[0] "Устаўлена радкоў: %1$d." msgstr[1] "Устаўлена радкоў: %1$d." -#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:549 +#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:545 msgid "" "There is no detailed status information available for this storage engine." msgstr "" "Для гэтай машыны захаваньня дадзеных дэтальная інфармацыя не даступная." -#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:291 +#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:287 #, php-format msgid "%s is available on this MySQL server." msgstr "%s даступная на гэтым MySQL-сэрвэры." -#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:292 +#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:288 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s была адключаная для рэтага MySQL-сэрвэра." -#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:294 +#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:290 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "Гэты сэрвэр MySQL не падтрымлівае машыну захаваньня дадзеных %s." -#: libraries/Table.class.php:1019 libraries/messages.inc.php:443 +#: libraries/Table.class.php:1019 libraries/messages.inc.php:439 msgid "Invalid database" msgstr "Няправільная база дадзеных" -#: libraries/Table.class.php:1033 libraries/messages.inc.php:450 +#: libraries/Table.class.php:1033 libraries/messages.inc.php:446 #: tbl_get_field.php:26 msgid "Invalid table name" msgstr "Некарэктнае імя табліцы" -#: libraries/Table.class.php:1048 libraries/messages.inc.php:301 +#: libraries/Table.class.php:1048 libraries/messages.inc.php:297 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "Памылка перайменаваньня табліцы %1$s у %2$s" -#: libraries/Table.class.php:1132 libraries/messages.inc.php:754 +#: libraries/Table.class.php:1132 libraries/messages.inc.php:750 #, php-format msgid "Table %s has been renamed to %s" msgstr "Табліца %s была перайменаваная ў %s" -#: libraries/Theme.class.php:162 libraries/messages.inc.php:1099 +#: libraries/Theme.class.php:162 libraries/messages.inc.php:1095 #, php-format msgid "No valid image path for theme %s found!" msgstr "Дапушчальны шлях да малюнкаў тэмы %s ня знойдзены!" -#: libraries/Theme.class.php:384 libraries/messages.inc.php:1097 +#: libraries/Theme.class.php:384 libraries/messages.inc.php:1093 msgid "No preview available." msgstr "Папярэдні прагляд недаступны." -#: libraries/Theme.class.php:387 libraries/messages.inc.php:1089 +#: libraries/Theme.class.php:387 libraries/messages.inc.php:1085 msgid "take it" msgstr "гэтая" -#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1096 +#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1092 #, php-format msgid "Default theme %s not found!" msgstr "Тэма па змоўчаньні %s ня знойдзеная!" -#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1098 +#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1094 #, php-format msgid "Theme %s not found!" msgstr "Тэма %s ня знойдзеная!" -#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1100 +#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1096 #, php-format msgid "Theme path not found for theme %s!" msgstr "Ня знойдзены шлях да тэмы %s!" -#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1101 +#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1097 #: test/theme.php:161 themes.php:21 themes.php:41 msgid "Theme / Style" msgstr "Тэма / Стыль" -#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:172 +#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:168 msgid "Cannot connect: invalid settings." msgstr "Немагчыма падлучыцца: няправільныя налады." #: libraries/auth/config.auth.lib.php:92 #: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65 -#: libraries/messages.inc.php:1238 test/theme.php:152 +#: libraries/messages.inc.php:1234 test/theme.php:152 #, php-format msgid "Welcome to %s" msgstr "Запрашаем у %s" @@ -1618,51 +1618,51 @@ msgstr "" "ўпэўніцеся, што яны адпавядаюць інфармацыі, якую даў адміністратар MySQL-" "сэрвэра." -#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:488 +#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:484 msgid "Log in" msgstr "Уваход у сыстэму" #: libraries/auth/cookie.auth.lib.php:246 -#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:659 +#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:655 #: libraries/navigation_header.inc.php:93 #: libraries/navigation_header.inc.php:95 msgid "phpMyAdmin documentation" msgstr "Дакумэнтацыя па phpMyAdmin" #: libraries/auth/cookie.auth.lib.php:258 -#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:492 +#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:488 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:493 +#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:489 msgid "Server:" msgstr "Сэрвэр" -#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:494 +#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:490 msgid "Username:" msgstr "Імя карыстальніка:" -#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:491 +#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:487 msgid "Password:" msgstr "Пароль:" -#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:854 +#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:850 msgid "Server Choice" msgstr "Выбар сэрвэра" #: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 -#: libraries/messages.inc.php:177 +#: libraries/messages.inc.php:173 msgid "Cookies must be enabled past this point." msgstr "Cookies мусяць быць уключанымі пасьля гэтага месца." #: libraries/auth/cookie.auth.lib.php:671 -#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:489 +#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:485 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" #: libraries/auth/cookie.auth.lib.php:675 -#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:544 +#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:540 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" @@ -1671,53 +1671,53 @@ msgstr "" #: libraries/auth/cookie.auth.lib.php:685 #: libraries/auth/cookie.auth.lib.php:687 -#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:126 +#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:122 msgid "Cannot log in to the MySQL server" msgstr "Немагчыма залагавацца на сэрвэр MySQL" -#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1245 +#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1241 msgid "Wrong username/password. Access denied." msgstr "Няправільны лагін/пароль. У доступе адмоўлена." #: libraries/auth/swekey/swekey.auth.lib.php:118 -#: libraries/messages.inc.php:1057 +#: libraries/messages.inc.php:1053 #, php-format msgid "File %s does not contain any key id" msgstr "Файл %s ня ўтрымлівае ніякага ідэнтыфікатара ключа" #: libraries/auth/swekey/swekey.auth.lib.php:157 #: libraries/auth/swekey/swekey.auth.lib.php:180 -#: libraries/messages.inc.php:1056 +#: libraries/messages.inc.php:1052 msgid "Hardware authentication failed" msgstr "Апаратная аўтэнтыфікацыя скончылася няўдала" #: libraries/auth/swekey/swekey.auth.lib.php:166 -#: libraries/messages.inc.php:1058 +#: libraries/messages.inc.php:1054 msgid "No valid authentication key plugged" msgstr "Дзейны ключ аўтэнтыфікацыі не падключаны" #: libraries/auth/swekey/swekey.auth.lib.php:202 -#: libraries/messages.inc.php:1055 +#: libraries/messages.inc.php:1051 msgid "Authenticating..." msgstr "Аўтэнтыфікацыя..." -#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1230 +#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1226 msgid "View image" msgstr "" -#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:652 +#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:648 msgid "Play audio" msgstr "" -#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1232 +#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1228 msgid "View video" msgstr "" -#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:269 +#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:265 msgid "Download file" msgstr "" -#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:128 +#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:124 msgid "" "Couldn't load the iconv or recode extension needed for charset conversion. " "Either configure PHP to enable these extensions or disable charset " @@ -1729,7 +1729,7 @@ msgstr "" #: libraries/charset_conversion.lib.php:79 #: libraries/charset_conversion.lib.php:90 -#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:130 +#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:126 msgid "" "Couldn't use the iconv, libiconv, or recode_string functions, although the " "necessary extensions appear to be loaded. Check your PHP configuration." @@ -1738,7 +1738,7 @@ msgstr "" "час, як пашырэньне паведамляе, што яно загружанае. Праверце вашую " "канфігурацыю PHP." -#: libraries/common.inc.php:583 libraries/messages.inc.php:170 +#: libraries/common.inc.php:583 libraries/messages.inc.php:166 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!" @@ -1774,23 +1774,23 @@ msgstr "" msgid "Invalid server index: %s" msgstr "Некарэктны індэкс сэрвэра: \"%s\"" -#: libraries/common.inc.php:636 libraries/messages.inc.php:448 +#: libraries/common.inc.php:636 libraries/messages.inc.php:444 #, 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/messages.inc.php:856 libraries/select_server.lib.php:41 +#: libraries/messages.inc.php:852 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/messages.inc.php:437 +#: libraries/common.inc.php:823 libraries/messages.inc.php:433 msgid "Invalid authentication method set in configuration:" msgstr "У канфігурацыі вызначаны некарэктны мэтад аўтэнтыфікацыі:" -#: libraries/common.lib.php:147 libraries/messages.inc.php:499 +#: libraries/common.lib.php:147 libraries/messages.inc.php:495 #, php-format msgid "Max: %s%s" msgstr "Максымальны памер: %s%s" @@ -1812,7 +1812,7 @@ msgstr "Адпраўлена" #: libraries/common.lib.php:428 libraries/common.lib.php:430 #: libraries/common.lib.php:432 libraries/common.lib.php:448 #: libraries/common.lib.php:450 libraries/dbg/setup.php:25 -#: libraries/display_export.lib.php:164 libraries/messages.inc.php:267 +#: libraries/display_export.lib.php:164 libraries/messages.inc.php:263 #: libraries/relation.lib.php:97 libraries/sql_query_form.lib.php:451 #: libraries/sql_query_form.lib.php:454 main.php:229 pdf_pages.php:37 #: pdf_pages.php:43 pdf_pages.php:49 pdf_pages.php:54 @@ -1822,55 +1822,55 @@ msgstr "Дакумэнтацыя" #: libraries/common.lib.php:581 libraries/core.lib.php:234 #: libraries/core.lib.php:263 libraries/import.lib.php:134 -#: libraries/messages.inc.php:297 pdf_schema.php:32 pdf_schema.php:232 +#: libraries/messages.inc.php:293 pdf_schema.php:32 pdf_schema.php:232 #: tbl_change.php:1027 tbl_operations.php:213 tbl_relation.php:290 #: view_operations.php:62 msgid "Error" msgstr "Памылка" #: libraries/common.lib.php:595 libraries/header_printview.inc.php:61 -#: libraries/messages.inc.php:1023 server_processlist.php:60 +#: libraries/messages.inc.php:1019 server_processlist.php:60 #: server_status.php:247 msgid "SQL query" msgstr "SQL-запыт" -#: libraries/common.lib.php:634 libraries/messages.inc.php:538 +#: libraries/common.lib.php:634 libraries/messages.inc.php:534 msgid "MySQL said: " msgstr "Адказ MySQL: " -#: libraries/common.lib.php:667 libraries/messages.inc.php:76 +#: libraries/common.lib.php:667 libraries/messages.inc.php:72 #: pdf_schema.php:241 user_password.php:115 msgid "Back" msgstr "Назад" -#: libraries/common.lib.php:1177 libraries/messages.inc.php:309 +#: libraries/common.lib.php:1177 libraries/messages.inc.php:305 #: setup/lib/messages.inc.php:353 msgid "Explain SQL" msgstr "Тлумачыць SQL" -#: libraries/common.lib.php:1180 libraries/messages.inc.php:551 +#: libraries/common.lib.php:1180 libraries/messages.inc.php:547 msgid "Skip Explain SQL" msgstr "Не тлумачыць SQL" -#: libraries/common.lib.php:1212 libraries/messages.inc.php:563 +#: libraries/common.lib.php:1212 libraries/messages.inc.php:559 msgid "Without PHP Code" msgstr "Без PHP-коду" -#: libraries/common.lib.php:1215 libraries/messages.inc.php:649 +#: libraries/common.lib.php:1215 libraries/messages.inc.php:645 #: setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "Стварыць PHP-код" -#: libraries/common.lib.php:1233 libraries/messages.inc.php:737 +#: libraries/common.lib.php:1233 libraries/messages.inc.php:733 #: server_status.php:341 setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "Абнавіць" -#: libraries/common.lib.php:1242 libraries/messages.inc.php:575 +#: libraries/common.lib.php:1242 libraries/messages.inc.php:571 msgid "Skip Validate SQL" msgstr "Не правяраць SQL" -#: libraries/common.lib.php:1245 libraries/messages.inc.php:1220 +#: libraries/common.lib.php:1245 libraries/messages.inc.php:1216 #: setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "Праверыць SQL" @@ -1886,11 +1886,11 @@ msgid "Inline" msgstr "Машыны" #: libraries/common.lib.php:1332 libraries/common.lib.php:1347 -#: libraries/messages.inc.php:713 +#: libraries/messages.inc.php:709 msgid "Profiling" msgstr "Прафіляваньне" -#: libraries/common.lib.php:1351 libraries/messages.inc.php:1108 +#: libraries/common.lib.php:1351 libraries/messages.inc.php:1104 #: libraries/tbl_triggers.lib.php:28 server_processlist.php:58 msgid "Time" msgstr "Час" @@ -1924,47 +1924,57 @@ msgstr "ПіБ" msgid "EiB" msgstr "ЭіБ" +#. l10n: Thousands separator +#: libraries/common.lib.php:1417 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: libraries/common.lib.php:1419 +msgid "." +msgstr "." + #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1584 +#: libraries/common.lib.php:1596 #: libraries/transformations/text_plain__dateformat.inc.php:28 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y, %H:%M" -#: libraries/common.lib.php:1886 +#: libraries/common.lib.php:1898 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s дзён, %s гадзінаў, %s хвілінаў і %s сэкундаў" -#: libraries/common.lib.php:2301 libraries/common.lib.php:2304 -#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:664 +#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:660 #: server_status.php:608 msgid "Begin" msgstr "Першая старонка" -#: libraries/common.lib.php:2302 libraries/common.lib.php:2305 -#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:665 +#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:661 #: server_binlog.php:168 server_binlog.php:170 msgid "Previous" msgstr "Папярэдняя старонка" -#: libraries/common.lib.php:2333 libraries/common.lib.php:2336 -#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:289 +#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:285 msgid "End" msgstr "Апошняя старонка" -#: libraries/common.lib.php:2409 libraries/messages.inc.php:455 +#: libraries/common.lib.php:2421 libraries/messages.inc.php:451 #, php-format msgid "Jump to database "%s"." msgstr "Перайсьці да базы дадзеных "%s"." -#: libraries/common.lib.php:2429 libraries/messages.inc.php:461 +#: libraries/common.lib.php:2441 libraries/messages.inc.php:457 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" "Існуе вядомая памылка з выкарыстаньнем парамэтра %s, глядзіце апісаньне на %s" #: libraries/core.lib.php:286 libraries/dbg/setup.php:22 -#: libraries/messages.inc.php:127 +#: libraries/messages.inc.php:123 #, php-format msgid "" "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " @@ -1973,117 +1983,117 @@ msgstr "" "немагчыма загрузіць пашырэньне %s;
калі ласка, праверце канфігурацыю PHP" #: libraries/db_events.inc.php:20 libraries/db_events.inc.php:22 -#: libraries/export/sql.php:415 libraries/messages.inc.php:306 +#: libraries/export/sql.php:415 libraries/messages.inc.php:302 msgid "Events" msgstr "Падзеі" #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 -#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:541 +#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:537 #: libraries/tbl_triggers.lib.php:27 setup/frames/index.inc.php:112 msgid "Name" msgstr "Назва" -#: libraries/db_links.inc.php:45 libraries/messages.inc.php:216 +#: libraries/db_links.inc.php:45 libraries/messages.inc.php:212 #, php-format msgid "Database %s has been dropped." msgstr "База дадзеных %s была выдаленая." #: libraries/db_links.inc.php:57 libraries/db_links.inc.php:58 -#: libraries/db_links.inc.php:59 libraries/messages.inc.php:234 +#: libraries/db_links.inc.php:59 libraries/messages.inc.php:230 msgid "Database seems to be empty!" msgstr "База дадзеных — пустая!" -#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1025 +#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1021 #: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60 #: querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1152 +#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1148 #: libraries/tbl_links.inc.php:69 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:86 libraries/messages.inc.php:719 +#: libraries/db_links.inc.php:86 libraries/messages.inc.php:715 msgid "Query" msgstr "Запыт згодна прыкладу" -#: libraries/db_links.inc.php:91 libraries/messages.inc.php:253 +#: libraries/db_links.inc.php:91 libraries/messages.inc.php:249 msgid "Designer" msgstr "Дызайнэр" -#: libraries/db_links.inc.php:98 libraries/messages.inc.php:397 +#: libraries/db_links.inc.php:98 libraries/messages.inc.php:393 #: libraries/server_links.inc.php:88 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:104 libraries/messages.inc.php:587 +#: libraries/db_links.inc.php:104 libraries/messages.inc.php:583 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" msgstr "Апэрацыі" -#: libraries/db_links.inc.php:111 libraries/messages.inc.php:709 +#: libraries/db_links.inc.php:111 libraries/messages.inc.php:705 #: libraries/server_links.inc.php:66 server_privileges.php:72 #: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117 msgid "Privileges" msgstr "Прывілеі" #: libraries/db_routines.inc.php:30 libraries/db_routines.inc.php:32 -#: libraries/messages.inc.php:812 +#: libraries/messages.inc.php:808 msgid "Routines" msgstr "Працэдуры" -#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:811 +#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:807 msgid "Return type" msgstr "Тып працэдуры" #: libraries/db_structure.lib.php:57 libraries/display_tbl.lib.php:1848 -#: libraries/messages.inc.php:65 +#: libraries/messages.inc.php:61 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "Значэньне можа быць прыблізным. Гл. FAQ 3.11" -#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:593 +#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:589 #: server_databases.php:142 tbl_printview.php:336 tbl_structure.php:683 msgid "Overhead" msgstr "Выкарыстаньне рэсурсаў" #: libraries/dbi/mysql.dbi.lib.php:112 libraries/dbi/mysqli.dbi.lib.php:124 -#: libraries/messages.inc.php:176 +#: libraries/messages.inc.php:172 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Не атрымалася ўсталяваць злучэньне для controluser, вызначанае ў вашым " "канфігурацыйным файле." #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 -#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:855 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:851 msgid "The server is not responding" msgstr "Сэрвэр не адказвае" #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:1010 +#: libraries/messages.inc.php:1006 msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "(або сокет лякальнага сэрвэра MySQL не сканфігураваны правільна)" -#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:255 +#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:251 #: tbl_structure.php:609 msgid "Details..." msgstr "Падрабязьней..." -#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:143 +#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:139 #: main.php:91 user_password.php:111 user_password.php:129 msgid "Change password" msgstr "Зьмяніць пароль" -#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:561 +#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:557 #: libraries/replication_gui.lib.php:341 server_privileges.php:768 msgid "No Password" msgstr "Без пароля" -#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:610 +#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:606 #: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60 #: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335 #: libraries/replication_gui.lib.php:345 server_privileges.php:757 @@ -2092,13 +2102,13 @@ msgstr "Без пароля" msgid "Password" msgstr "Пароль" -#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:806 +#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:802 #: libraries/replication_gui.lib.php:349 libraries/replication_gui.lib.php:352 #: server_privileges.php:776 server_privileges.php:779 msgid "Re-type" msgstr "Пацьверджаньне" -#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:608 +#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:604 msgid "Password Hashing" msgstr "Хэшаваньне паролю" @@ -2108,91 +2118,91 @@ msgstr "Хэшаваньне паролю" msgid "MySQL 4.0 compatible" msgstr "Сумяшчальнае з MySQL 4.0" -#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:353 +#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:349 #: libraries/replication_gui.lib.php:356 server_privileges.php:783 msgid "Generate Password" msgstr "Згенэраваць пароль" -#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:352 +#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:348 #: libraries/replication_gui.lib.php:359 server_privileges.php:786 msgid "Generate" msgstr "Згенэраваць" #: libraries/display_create_database.lib.php:22 -#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:189 +#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:185 msgid "Create new database" msgstr "Стварыць новую базу дадзеных" -#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:185 +#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:181 msgid "Create" msgstr "Стварыць" -#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:564 +#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:560 #: server_privileges.php:74 server_privileges.php:1388 #: server_replication.php:35 msgid "No Privileges" msgstr "Без прывілеяў" -#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:445 +#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:441 msgid "Table must have at least one field." msgstr "Табліца мусіць мець прынамсі адно поле." -#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:190 +#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:186 #, php-format msgid "Create table on database %s" msgstr "Стварыць новую табліцу ў БД %s" -#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:577 +#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:573 msgid "Number of fields" msgstr "Колькасьць палёў" -#: libraries/display_export.lib.php:42 libraries/messages.inc.php:124 +#: libraries/display_export.lib.php:42 libraries/messages.inc.php:120 msgid "Could not load export plugins, please check your installation!" msgstr "" "Немагчыма загрузіць плагіны экспартаваньня, калі ласка, праверце ўсталяваныя " "файлы!" -#: libraries/display_export.lib.php:107 libraries/messages.inc.php:277 +#: libraries/display_export.lib.php:107 libraries/messages.inc.php:273 #, php-format msgid "Dump %s row(s) starting at record # %s" msgstr "Дамп %s радкоў, пачынаючы з %s." -#: libraries/display_export.lib.php:115 libraries/messages.inc.php:274 +#: libraries/display_export.lib.php:115 libraries/messages.inc.php:270 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:125 libraries/messages.inc.php:852 +#: libraries/display_export.lib.php:125 libraries/messages.inc.php:848 #: setup/lib/messages.inc.php:82 msgid "Save as file" msgstr "Захаваць як файл" -#: libraries/display_export.lib.php:134 libraries/messages.inc.php:828 +#: libraries/display_export.lib.php:134 libraries/messages.inc.php:824 #, php-format msgid "Save on server in %s directory" msgstr "Захаваць на сэрвэры ў тэчцы %s" -#: libraries/display_export.lib.php:142 libraries/messages.inc.php:594 +#: libraries/display_export.lib.php:142 libraries/messages.inc.php:590 #: setup/lib/messages.inc.php:90 msgid "Overwrite existing file(s)" msgstr "Перазапісваць існуючы(я) файл(ы)" -#: libraries/display_export.lib.php:148 libraries/messages.inc.php:330 +#: libraries/display_export.lib.php:148 libraries/messages.inc.php:326 msgid "File name template" msgstr "Шаблён назвы файла" -#: libraries/display_export.lib.php:152 libraries/messages.inc.php:327 +#: libraries/display_export.lib.php:152 libraries/messages.inc.php:323 msgid "server name" msgstr "імя сэрвэра" -#: libraries/display_export.lib.php:155 libraries/messages.inc.php:326 +#: libraries/display_export.lib.php:155 libraries/messages.inc.php:322 msgid "database name" msgstr "імя базы дадзеных" -#: libraries/display_export.lib.php:158 libraries/messages.inc.php:328 +#: libraries/display_export.lib.php:158 libraries/messages.inc.php:324 msgid "table name" msgstr "імя табліцы" -#: libraries/display_export.lib.php:162 libraries/messages.inc.php:329 +#: libraries/display_export.lib.php:162 libraries/messages.inc.php:325 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2203,24 +2213,24 @@ msgstr "" "выкарыстоўваць радкі фарматаваньня часу. Апроч гэтага, будуць праведзеныя " "наступныя зьмены: %3$s. Астатні тэкст застанецца як ёсьць." -#: libraries/display_export.lib.php:202 libraries/messages.inc.php:331 +#: libraries/display_export.lib.php:202 libraries/messages.inc.php:327 msgid "remember template" msgstr "запомніць шаблён" #: libraries/display_export.lib.php:210 libraries/display_import.lib.php:178 -#: libraries/display_import.lib.php:191 libraries/messages.inc.php:145 +#: libraries/display_import.lib.php:191 libraries/messages.inc.php:141 #: libraries/sql_query_form.lib.php:549 msgid "Character set of the file:" msgstr "Кадыроўка файла:" -#: libraries/display_export.lib.php:235 libraries/messages.inc.php:166 +#: libraries/display_export.lib.php:235 libraries/messages.inc.php:162 #: setup/lib/messages.inc.php:84 msgid "Compression" 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/messages.inc.php:558 +#: libraries/export/sql.php:868 libraries/messages.inc.php:554 #: libraries/tbl_properties.inc.php:575 server_privileges.php:1836 #: server_processlist.php:75 msgid "None" @@ -2244,60 +2254,60 @@ msgstr "архіваваны ў gzip" msgid "bzipped" msgstr "сьціскаць у bzip" -#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1018 +#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1014 msgid "SQL compatibility mode" msgstr "Рэжым сумяшчальнасьці SQL" -#: libraries/display_import.lib.php:67 libraries/messages.inc.php:398 +#: libraries/display_import.lib.php:67 libraries/messages.inc.php:394 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " "browsers." msgstr "" -#: libraries/display_import.lib.php:77 libraries/messages.inc.php:406 +#: libraries/display_import.lib.php:77 libraries/messages.inc.php:402 msgid "The file is being processed, please be patient." msgstr "" -#: libraries/display_import.lib.php:99 libraries/messages.inc.php:408 +#: libraries/display_import.lib.php:99 libraries/messages.inc.php:404 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." msgstr "" -#: libraries/display_import.lib.php:126 libraries/messages.inc.php:333 +#: libraries/display_import.lib.php:126 libraries/messages.inc.php:329 msgid "File to import" msgstr "Імпартаваць файл" -#: libraries/display_import.lib.php:137 libraries/messages.inc.php:486 +#: libraries/display_import.lib.php:137 libraries/messages.inc.php:482 #: libraries/sql_query_form.lib.php:524 msgid "Location of the text file" msgstr "Месцазнаходжаньне тэкставага файла" -#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1203 +#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1199 msgid "File uploads are not allowed on this server." msgstr "Загрузкі файлаў не дазволеныя на гэтым сэрвэры." -#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1235 +#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1231 #: libraries/sql_query_form.lib.php:533 tbl_change.php:1028 msgid "The directory you set for upload work cannot be reached" msgstr "Немагчыма адкрыць пазначаную вамі тэчку для загрузкі файлаў" -#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1236 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1232 #: libraries/sql_query_form.lib.php:536 tbl_change.php:1031 msgid "web server upload directory" msgstr "тэчка вэб-сэрвэра для загрузкі файлаў" -#: libraries/display_import.lib.php:212 libraries/messages.inc.php:167 +#: libraries/display_import.lib.php:212 libraries/messages.inc.php:163 #, php-format msgid "Imported file compression will be automatically detected from: %s" msgstr "Мэтад сьціску імпартаванага файла будзе вызначаная аўтаматычна з: %s" -#: libraries/display_import.lib.php:219 libraries/messages.inc.php:600 +#: libraries/display_import.lib.php:219 libraries/messages.inc.php:596 msgid "Partial import" msgstr "Частковы імпарт" -#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1105 +#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1101 #, php-format msgid "" "Previous import timed out, after resubmitting will continue from position %d." @@ -2305,7 +2315,7 @@ msgstr "" "Папярэдняе імпартаваньне спынілася з-за недахопу часу. Пасьля новай загрузкі " "імпартаваньне будзе працягнутае з пазыцыі %d." -#: libraries/display_import.lib.php:232 libraries/messages.inc.php:51 +#: libraries/display_import.lib.php:232 libraries/messages.inc.php:47 msgid "" "Allow the interruption of an import in case the script detects it is close " "to the PHP timeout limit. This might be good way to import large files, " @@ -2315,177 +2325,177 @@ msgstr "" "скончваецца час выкананьня. Гэта можа быць добрым спосабам імпартаваньня " "вялікіх файлаў, аднак, гэта можа перапыніць транзакцыі." -#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1004 +#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1000 #: setup/lib/messages.inc.php:161 msgid "Number of records (queries) to skip from start" msgstr "Колькасьць (запытаў), якія трэба прапусьціць ад пачатку" -#: libraries/display_import.lib.php:255 libraries/messages.inc.php:396 +#: libraries/display_import.lib.php:255 libraries/messages.inc.php:392 #: setup/lib/messages.inc.php:160 msgid "Format of imported file" msgstr "Фармат імпартаванага файла" #: libraries/display_select_lang.lib.php:45 -#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:465 +#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:461 #: setup/frames/index.inc.php:70 msgid "Language" msgstr "Мова" -#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:447 +#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:443 #, php-format msgid "%d is not valid row number." msgstr "%d не зьяўляецца карэктным нумарам радка." -#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:814 +#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:810 msgid "row(s) starting from record #" msgstr "радкоў, пачынаючы з запісу #" -#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:817 +#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:813 msgid "horizontal" msgstr "гарызантальна" -#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:816 +#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:812 msgid "horizontal (rotated headers)" msgstr "гарызантальна (павернутыя загалоўкі)" -#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:819 +#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:815 msgid "vertical" msgstr "вэртыкальна" -#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:818 +#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:814 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "у рэжыме %s і паўтараць загалоўкі праз кожныя %s радкоў" -#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:495 +#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:491 msgid "This operation could take a long time. Proceed anyway?" msgstr "Гэтая апэрацыя можа заняць шмат часу. Працягваць?" -#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1012 +#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1008 msgid "Sort by key" msgstr "Сартаваць па ключы" #: libraries/display_tbl.lib.php:555 libraries/import.lib.php:1082 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:591 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:587 #: tbl_select.php:267 tbl_structure.php:754 msgid "Options" msgstr "Налады" #: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:570 -#: libraries/messages.inc.php:601 +#: libraries/messages.inc.php:597 msgid "Partial Texts" msgstr "Частковыя тэксты" #: libraries/display_tbl.lib.php:561 libraries/display_tbl.lib.php:574 -#: libraries/messages.inc.php:346 +#: libraries/messages.inc.php:342 msgid "Full Texts" msgstr "Поўныя тэксты" -#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:739 +#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:735 msgid "Relational key" msgstr "Ключ сувязі" -#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:738 +#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:734 msgid "Relational display field" msgstr "Адлюстраванае поле сувязі" -#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:872 +#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:868 msgid "Show binary contents" msgstr "" -#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:873 +#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:869 msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:871 +#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:867 msgid "Show binary contents as HEX" msgstr "" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:375 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:371 #: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320 msgid "Hide" msgstr "Схаваць" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:508 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:504 #: libraries/tbl_properties.inc.php:144 transformation_overview.php:47 msgid "Browser transformation" msgstr "Пераўтварэньне MIME-тыпу браўзэрам" #: libraries/display_tbl.lib.php:1126 libraries/display_tbl.lib.php:1130 -#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:308 +#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:304 msgid "Execute bookmarked query" msgstr "Выканаць запыт з закладак" #: libraries/display_tbl.lib.php:1145 libraries/display_tbl.lib.php:1157 -#: libraries/messages.inc.php:244 +#: libraries/messages.inc.php:240 msgid "The row has been deleted" msgstr "Радок быў выдалены" #: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056 -#: libraries/messages.inc.php:460 server_processlist.php:71 +#: libraries/messages.inc.php:456 server_processlist.php:71 #: tbl_row_action.php:64 msgid "Kill" msgstr "Спыніць" -#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:849 +#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:845 msgid "in query" msgstr "па запыту" -#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:881 +#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:877 msgid "Showing rows" msgstr "Паказаныя запісы" -#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1113 +#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1109 msgid "total" msgstr "усяго" -#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:727 +#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:723 #: sql.php:524 #, php-format msgid "Query took %01.4f sec" msgstr "Запыт выконваўся %01.4f сэк" -#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:135 +#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:131 #: 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:471 msgid "Change" msgstr "Зьмяніць" -#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:724 +#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:720 msgid "Query results operations" msgstr "Дзеяньні з вынікамі запытаў" -#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:671 +#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:667 msgid "Print view (with full texts)" msgstr "Вэрсія для друку (з усім тэкстам)" -#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:482 +#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:478 msgid "Link not found" msgstr "Сувязь ня знойдзеная" -#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1224 +#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1220 #: main.php:228 msgid "Version information" msgstr "Інфармацыя пра вэрсію" -#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:423 +#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:419 msgid "Data home directory" msgstr "Хатняя тэчка дадзеных" -#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:424 +#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:420 msgid "The common part of the directory path for all InnoDB data files." msgstr "Агульная частка шляху тэчкі да ўсіх файлаў дадзеных InnoDB." -#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:422 +#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:418 msgid "Data files" msgstr "Файлы дадзеных" -#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:418 +#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:414 msgid "Autoextend increment" msgstr "Аўтапашыральнае прырашчэньне" -#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:419 +#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:415 msgid "" " The increment size for extending the size of an autoextending tablespace " "when it becomes full." @@ -2493,11 +2503,11 @@ msgstr "" " Памер прырашчэньня для пашырэньня памеру прасторы аўтапашыральнай табліцы, " "калі яна запоўніцца." -#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:420 +#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:416 msgid "Buffer pool size" msgstr "Памер пулу буфэру" -#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:421 +#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:417 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." @@ -2505,87 +2515,87 @@ msgstr "" "Памер буфэру ў памяці, які InnoDB выкарыстоўвае для кэшаваньня дадзеных і " "індэксаў табліц." -#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:112 +#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:108 msgid "Buffer Pool" msgstr "Пул буфэру" -#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:426 +#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:422 #: server_status.php:306 msgid "InnoDB Status" msgstr "Стан InnoDB" -#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:113 +#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:109 msgid "Buffer Pool Usage" msgstr "Выкарыстаньне пулу буфэру" -#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1114 +#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1110 #: server_databases.php:137 server_databases.php:305 server_status.php:414 #: server_status.php:475 server_status.php:496 tbl_printview.php:351 #: tbl_structure.php:697 msgid "Total" msgstr "Агулам" -#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:425 +#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:421 msgid "pages" msgstr "старонак" -#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:343 +#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:339 msgid "Free pages" msgstr "Вольных старонак" -#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:259 +#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:255 msgid "Dirty pages" msgstr "Брудных старонак" -#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:230 +#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:226 msgid "Pages containing data" msgstr "Старонак з дадзенымі" -#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:598 +#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:594 msgid "Pages to be flushed" msgstr "Скінуць кэш старонак" -#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:119 +#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:115 msgid "Busy pages" msgstr "Занятых старонак" -#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:467 +#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:463 msgid "Latched pages" msgstr "Фіксаваныя старонкі" -#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:111 +#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:107 msgid "Buffer Pool Activity" msgstr "Актыўнасьць пулу буфэру" -#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:731 +#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:727 msgid "Read requests" msgstr "Запыты чытаньня" -#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1244 +#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1240 msgid "Write requests" msgstr "Запытаў запісу" -#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:115 +#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:111 msgid "Read misses" msgstr "Пропускаў чытаньня" -#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:117 +#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:113 msgid "Write waits" msgstr "Затрымак запісу" -#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:114 +#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:110 msgid "Read misses in %" msgstr "Пропускаў чытаньня ў %" -#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:116 +#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:112 msgid "Write waits in %" msgstr "Затрымак запісу ў %" -#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:522 +#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:518 msgid "Data pointer size" msgstr "Памер указальніка на дадзеныя" -#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:523 +#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:519 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." @@ -2593,11 +2603,11 @@ msgstr "" "Значэньне па змоўчаньні памеру ўказальніка ў байтах, для выкарыстаньня ў " "CREATE TABLE для табліц MyISAM, калі ня вызначаная опцыя MAX_ROWS." -#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:528 +#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:524 msgid "Automatic recovery mode" msgstr "Рэжым аўтаматычнага ўзнаўленьня" -#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:529 +#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:525 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." @@ -2605,11 +2615,11 @@ msgstr "" "Рэжым для аўтаматычнага ўзнаўленьня пашкоджаных табліц MyISAM, як вызначаны " "праз опцыю --myisam-recover загрузкі сэрвэра." -#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:527 +#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:523 msgid "Maximum size for temporary sort files" msgstr "Максымальны памер для часовых файлаў сартаваньня" -#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:526 +#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:522 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " @@ -2619,11 +2629,11 @@ msgstr "" "перастварэньня індэксу MyISAM (падчас REPAIR TABLE, ALTER TABLE, або LOAD " "DATA INFILE)." -#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:525 +#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:521 msgid "Maximum size for temporary files on index creation" msgstr "Максымальны памер часовых файлаў для стварэньня індэксу" -#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:524 +#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:520 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " @@ -2633,11 +2643,11 @@ msgstr "" "індэксу MyISAM, будзе большы, чым выкарыстаньне для кэшу ключоў памеру, " "пазначанага тут, выберыце мэтад кэшаваньня ключоў." -#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:531 +#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:527 msgid "Repair threads" msgstr "Патокаў узнаўленьня" -#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:530 +#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:526 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." @@ -2646,11 +2656,11 @@ msgstr "" "паралельна (кожны індэкс у сваім уласным патоку) падчас узнаўленьня працэсам " "сартаваньня." -#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:533 +#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:529 msgid "Sort buffer size" msgstr "Памер буфэру сартаваньня" -#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:532 +#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:528 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." @@ -2658,11 +2668,11 @@ msgstr "" "Буфэр, які выдзяляецца для сартаваньня індэксаў MyISAM падчас REPAIR TABLE " "або падчас стварэньня індэксаў, выкарыстоўваючы CREATE INDEX ці ALTER TABLE." -#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:620 +#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:616 msgid "Index cache size" msgstr "Памер кэшу індэксаў" -#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:619 +#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:615 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." @@ -2670,11 +2680,11 @@ msgstr "" "Гэта памер памяці, якая выдзяляецца для кэшу індэксаў. Памер па змоўчаньні — " "32 МБ. Гэта памяць выкарыстоўваецца толькі для кэшаваньня старонак індэксаў." -#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:630 +#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:626 msgid "Record cache size" msgstr "Памер кэшу запісаў" -#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:629 +#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:625 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " @@ -2685,11 +2695,11 @@ msgstr "" "выкарыстоўваецца для кэшаваньня зьменаў файлаў апрацоўкі дадзеных (.xtd) і " "файлаў указальнікаў радкоў (.xtr)." -#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:624 +#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:620 msgid "Log cache size" msgstr "Памер кэшу логаў" -#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:623 +#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:619 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." @@ -2698,11 +2708,11 @@ msgstr "" "выкарыстоўваецца для кэшаваньня дадзеныя логу транзакцый. Памер па " "змоўчаньні — 16 МБ." -#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:628 +#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:624 msgid "Log file threshold" msgstr "Парог файла логу" -#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:627 +#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:623 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." @@ -2710,11 +2720,11 @@ msgstr "" "Памер логу транзакцый перад выкананьнем выкананьня, да моманту, пакуль будзе " "створаны новы файл. Значэньне па Памер — 16 МБ." -#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:634 +#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:630 msgid "Transaction buffer size" msgstr "Памер буфэру транзакцый" -#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:633 +#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:629 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." @@ -2722,11 +2732,11 @@ msgstr "" "Памер глябальнага буфэру логу транзакцый (кожная машына захаваньня дадзеных " "выдзяляле 2 буфэры гэтага памеру). Памер па змоўчаньні — 1 МБ." -#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:611 +#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:607 msgid "Checkpoint frequency" msgstr "Частата кантрольных кропак" -#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:612 +#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:608 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." @@ -2734,11 +2744,11 @@ msgstr "" "Колькасьць дадзеных, якія запісваюцца ў лог транзакцый перад тым, як " "выканаецца кантрольная кропка. Значэньне па змоўчаньні — 24 МБ." -#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:615 +#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:611 msgid "Data log threshold" msgstr "Парог лагаваньня дадзеных" -#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:616 +#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:612 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -2750,11 +2760,11 @@ msgstr "" "Такім чынам, значэньне гэтай зьменнай можа быць павялічана, каб павялічаць " "агульную колькасьць дадзеных, якія могуць захоўвацца ў базе дадзеных." -#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:618 +#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:614 msgid "Garbage threshold" msgstr "Парог сьмецьця" -#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:617 +#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:613 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." @@ -2763,11 +2773,11 @@ msgstr "" "Гэтае значэньне можа знаходзіцца ў межах ад 1 да 99. Значэньне па змоўчаньні " "— 50." -#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:622 +#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:618 msgid "Log buffer size" msgstr "Памер буфэру логу" -#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:621 +#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:617 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " @@ -2777,27 +2787,27 @@ msgstr "" "складае 256МБ. Машына захаваньня дадзеных выдзяляе па аднаму буфэру на кожны " "паток, але толькі калі патоку патрабуецца запісваць лог дадзеных." -#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:613 +#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:609 msgid "Data file grow size" msgstr "Памер павелічэньня файлаў з дадзенымі" -#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:614 +#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:610 msgid "The grow size of the handle data (.xtd) files." msgstr "Памер павелічэньня файлаў апрацоўкі дадзеных (.xtd)." -#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:632 +#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:628 msgid "Row file grow size" msgstr "Памер павелічэньня файлаў радкоў" -#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:631 +#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:627 msgid "The grow size of the row pointer (.xtr) files." msgstr "Памер павелічэньня файлаў указальнікаў на радкі (.xtr)." -#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:626 +#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:622 msgid "Log file count" msgstr "Колькасьць файлаў логу" -#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:625 +#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:621 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -2811,19 +2821,19 @@ msgstr "" #: libraries/export/htmlword.php:132 libraries/export/odt.php:168 #: libraries/export/sql.php:881 libraries/export/texytext.php:130 -#: libraries/messages.inc.php:275 +#: libraries/messages.inc.php:271 msgid "Dumping data for table" msgstr "Дамп дадзеных табліцы" #: libraries/export/htmlword.php:185 libraries/export/odt.php:238 #: libraries/export/sql.php:785 libraries/export/texytext.php:177 -#: libraries/messages.inc.php:1086 +#: libraries/messages.inc.php:1082 msgid "Table structure for table" msgstr "Структура табліцы" #: libraries/export/latex.php:125 libraries/export/sql.php:232 #: libraries/export/xml.php:102 libraries/header_printview.inc.php:57 -#: libraries/messages.inc.php:381 libraries/replication_gui.lib.php:63 +#: libraries/messages.inc.php:377 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:170 libraries/replication_gui.lib.php:265 #: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325 #: server_privileges.php:692 server_privileges.php:695 @@ -2835,187 +2845,187 @@ msgstr "Хост" #: libraries/export/latex.php:130 libraries/export/sql.php:233 #: libraries/export/xml.php:107 libraries/header_printview.inc.php:59 -#: libraries/messages.inc.php:354 +#: libraries/messages.inc.php:350 msgid "Generation Time" msgstr "Час стварэньня" #: libraries/export/latex.php:131 libraries/export/sql.php:235 -#: libraries/export/xml.php:108 libraries/messages.inc.php:864 main.php:186 +#: libraries/export/xml.php:108 libraries/messages.inc.php:860 main.php:186 msgid "Server version" msgstr "Вэрсія сэрвэра" #: libraries/export/latex.php:132 libraries/export/sql.php:236 -#: libraries/export/xml.php:109 libraries/messages.inc.php:651 +#: libraries/export/xml.php:109 libraries/messages.inc.php:647 msgid "PHP Version" msgstr "Вэрсія PHP" #: libraries/export/latex.php:201 libraries/export/sql.php:868 -#: libraries/messages.inc.php:226 server_databases.php:127 +#: libraries/messages.inc.php:222 server_databases.php:127 #: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317 #: tbl_structure.php:666 msgid "Data" msgstr "Дадзеныя" -#: libraries/export/odt.php:318 libraries/messages.inc.php:506 +#: libraries/export/odt.php:318 libraries/messages.inc.php:502 #: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "MIME-тып" -#: libraries/export/sql.php:387 libraries/messages.inc.php:711 +#: libraries/export/sql.php:387 libraries/messages.inc.php:707 msgid "Procedures" msgstr "Працэдуры" -#: libraries/export/sql.php:401 libraries/messages.inc.php:348 +#: libraries/export/sql.php:401 libraries/messages.inc.php:344 msgid "Functions" msgstr "Функцыі" -#: libraries/export/sql.php:618 libraries/messages.inc.php:174 +#: libraries/export/sql.php:618 libraries/messages.inc.php:170 msgid "Constraints for dumped tables" msgstr "Абмежаваньні для экспартаваных табліц" -#: libraries/export/sql.php:627 libraries/messages.inc.php:175 +#: libraries/export/sql.php:627 libraries/messages.inc.php:171 msgid "Constraints for table" msgstr "Абмежаваньні для табліцы" -#: libraries/export/sql.php:727 libraries/messages.inc.php:512 +#: libraries/export/sql.php:727 libraries/messages.inc.php:508 msgid "MIME TYPES FOR TABLE" msgstr "MIME-тыпы табліцы" -#: libraries/export/sql.php:739 libraries/messages.inc.php:743 +#: libraries/export/sql.php:739 libraries/messages.inc.php:739 msgid "RELATIONS FOR TABLE" msgstr "Сувязі ў табліцы" -#: libraries/export/sql.php:796 libraries/messages.inc.php:1178 +#: libraries/export/sql.php:796 libraries/messages.inc.php:1174 #: libraries/tbl_triggers.lib.php:19 msgid "Triggers" msgstr "Трыгеры" -#: libraries/export/sql.php:808 libraries/messages.inc.php:1046 +#: libraries/export/sql.php:808 libraries/messages.inc.php:1042 msgid "Structure for view" msgstr "Структура для прагляду" -#: libraries/export/sql.php:817 libraries/messages.inc.php:1029 +#: libraries/export/sql.php:817 libraries/messages.inc.php:1025 msgid "Stand-in structure for view" msgstr "Замяняльная структура для прагляду" #: libraries/footer.inc.php:184 libraries/footer.inc.php:195 -#: libraries/footer.inc.php:198 libraries/messages.inc.php:586 +#: libraries/footer.inc.php:198 libraries/messages.inc.php:582 msgid "Open new phpMyAdmin window" msgstr "Адкрыць новае акно phpMyAdmin" -#: libraries/header.inc.php:115 libraries/messages.inc.php:542 +#: libraries/header.inc.php:115 libraries/messages.inc.php:538 #, fuzzy msgid "New table" msgstr "Няма табліц" #: libraries/header_printview.inc.php:50 libraries/header_printview.inc.php:55 -#: libraries/messages.inc.php:1024 +#: libraries/messages.inc.php:1020 msgid "SQL result" msgstr "SQL-вынік" -#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:350 +#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:346 msgid "Generated by" msgstr "Створаны" #: libraries/header_printview.inc.php:63 libraries/import.lib.php:145 -#: libraries/messages.inc.php:820 navigation.php:652 navigation.php:674 +#: libraries/messages.inc.php:816 navigation.php:652 navigation.php:674 #: server_databases.php:122 tbl_printview.php:394 tbl_structure.php:366 #: tbl_structure.php:778 msgid "Rows" msgstr "Радкі" -#: libraries/import.lib.php:150 libraries/messages.inc.php:285 sql.php:520 +#: libraries/import.lib.php:150 libraries/messages.inc.php:281 sql.php:520 #: tbl_change.php:181 tbl_get_field.php:35 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL вярнула пусты вынік (то бок нуль радкоў)." -#: libraries/import.lib.php:1078 libraries/messages.inc.php:399 +#: libraries/import.lib.php:1078 libraries/messages.inc.php:395 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1079 libraries/messages.inc.php:400 +#: libraries/import.lib.php:1079 libraries/messages.inc.php:396 msgid "View a structure`s contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1080 libraries/messages.inc.php:401 +#: libraries/import.lib.php:1080 libraries/messages.inc.php:397 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1081 libraries/messages.inc.php:402 +#: libraries/import.lib.php:1081 libraries/messages.inc.php:398 msgid "Edit its structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1084 libraries/messages.inc.php:362 +#: libraries/import.lib.php:1084 libraries/messages.inc.php:358 #, fuzzy msgid "Go to database" msgstr "Базы дадзеных адсутнічаюць" #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:869 +#: libraries/messages.inc.php:865 msgid "settings" msgstr "" -#: libraries/import.lib.php:1106 libraries/messages.inc.php:363 +#: libraries/import.lib.php:1106 libraries/messages.inc.php:359 #, fuzzy msgid "Go to table" msgstr "Базы дадзеных адсутнічаюць" -#: libraries/import.lib.php:1109 libraries/messages.inc.php:1047 +#: libraries/import.lib.php:1109 libraries/messages.inc.php:1043 #, fuzzy msgid "structure" msgstr "Структура" -#: libraries/import.lib.php:1115 libraries/messages.inc.php:364 +#: libraries/import.lib.php:1115 libraries/messages.inc.php:360 msgid "Go to view" msgstr "" #: libraries/import/csv.php:58 libraries/import/csv.php:70 #: libraries/import/csv.php:74 libraries/import/csv.php:78 -#: libraries/messages.inc.php:442 +#: libraries/messages.inc.php:438 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "Недапушчальны парэмэтар для імпарту дадзеных у CSV: %s" -#: libraries/import/csv.php:59 libraries/messages.inc.php:323 +#: libraries/import/csv.php:59 libraries/messages.inc.php:319 msgid "Fields terminated by" msgstr "Палі падзеленыя" -#: libraries/import/csv.php:71 libraries/messages.inc.php:320 +#: libraries/import/csv.php:71 libraries/messages.inc.php:316 msgid "Fields enclosed by" msgstr "Палі ўзятыя ў" -#: libraries/import/csv.php:75 libraries/messages.inc.php:321 +#: libraries/import/csv.php:75 libraries/messages.inc.php:317 msgid "Fields escaped by" msgstr "Палі экрануюцца" -#: libraries/import/csv.php:79 libraries/messages.inc.php:481 +#: libraries/import/csv.php:79 libraries/messages.inc.php:477 msgid "Lines terminated by" msgstr "Радкі падзеленыя" -#: libraries/import/csv.php:119 libraries/messages.inc.php:439 +#: libraries/import/csv.php:119 libraries/messages.inc.php:435 #, php-format msgid "Invalid column (%s) specified!" msgstr "Вызначаная некарэктная калёнка (%s)!" #: libraries/import/csv.php:177 libraries/import/csv.php:424 -#: libraries/messages.inc.php:441 +#: libraries/messages.inc.php:437 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "Некарэктны фармат CSV-дадзеных у радку %d." -#: libraries/import/csv.php:312 libraries/messages.inc.php:440 +#: libraries/import/csv.php:312 libraries/messages.inc.php:436 #, php-format msgid "Invalid field count in CSV input on line %d." msgstr "Няправільная колькасьць палёў у CSV-дадзеных у радку %d." -#: libraries/import/ldi.php:55 libraries/messages.inc.php:446 +#: libraries/import/ldi.php:55 libraries/messages.inc.php:442 msgid "This plugin does not support compressed imports!" msgstr "Гэты плагін не падтрымлівае сьціснутыя дадзеныя!" #: libraries/import/xml.php:74 libraries/import/xml.php:130 -#: libraries/messages.inc.php:1247 +#: libraries/messages.inc.php:1243 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -3045,327 +3055,317 @@ msgstr "" msgid "ltr" msgstr "ltr" -#. l10n: Thousands separator -#: libraries/messages.inc.php:21 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: libraries/messages.inc.php:23 -msgid "." -msgstr "." - -#: libraries/messages.inc.php:25 server_status.php:461 +#: libraries/messages.inc.php:21 server_status.php:461 msgid "Aborted" msgstr "Спынена" -#: libraries/messages.inc.php:28 main.php:68 +#: libraries/messages.inc.php:24 main.php:68 msgid "Actions" msgstr "Дзеяньні" -#: libraries/messages.inc.php:34 libraries/tbl_properties.inc.php:780 +#: libraries/messages.inc.php:30 libraries/tbl_properties.inc.php:780 #: tbl_structure.php:543 #, php-format msgid "Add %s field(s)" msgstr "Дадаць %s новыя палі" -#: libraries/messages.inc.php:35 +#: libraries/messages.inc.php:31 msgid "Add custom comment into header (\\n splits lines)" msgstr "Дадаць прыватны камэнтар у загаловак (\\n падзяляе радкі)" -#: libraries/messages.inc.php:36 +#: libraries/messages.inc.php:32 msgid "Add into comments" msgstr "Дадаць у камэнтары" -#: libraries/messages.inc.php:37 tbl_structure.php:541 +#: libraries/messages.inc.php:33 tbl_structure.php:541 msgid "Add new field" msgstr "Дадаць новае поле" -#: libraries/messages.inc.php:38 server_privileges.php:1886 +#: libraries/messages.inc.php:34 server_privileges.php:1886 msgid "Add privileges on the following database" msgstr "Дадаць прывілеі на наступную базу" -#: libraries/messages.inc.php:39 server_privileges.php:1907 +#: libraries/messages.inc.php:35 server_privileges.php:1907 msgid "Add privileges on the following table" msgstr "Дадаць прывілеі на наступную табліцу" -#: libraries/messages.inc.php:40 tbl_select.php:288 +#: libraries/messages.inc.php:36 tbl_select.php:288 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Дадаць умовы пошуку (цела для ўмовы \"where\"):" -#: libraries/messages.inc.php:41 tbl_indexes.php:251 +#: libraries/messages.inc.php:37 tbl_indexes.php:251 #, php-format msgid "Add to index  %s column(s)" msgstr "Дадаць да індэкса  %s калёнку(і)" -#: libraries/messages.inc.php:42 server_privileges.php:1570 +#: libraries/messages.inc.php:38 server_privileges.php:1570 #: server_privileges.php:1594 server_privileges.php:1988 #: server_privileges.php:2177 msgid "Add a new User" msgstr "Дадаць новага карыстальніка" -#: libraries/messages.inc.php:43 server_privileges.php:931 +#: libraries/messages.inc.php:39 server_privileges.php:931 msgid "You have added a new user." msgstr "Быў дададзены новы карыстальнік." -#: libraries/messages.inc.php:44 server_privileges.php:571 +#: libraries/messages.inc.php:40 server_privileges.php:571 msgid "Administration" msgstr "Адміністраваньне" -#: libraries/messages.inc.php:45 tbl_structure.php:557 +#: libraries/messages.inc.php:41 tbl_structure.php:557 #, php-format msgid "After %s" msgstr "Пасьля %s" -#: libraries/messages.inc.php:46 tbl_change.php:1147 +#: libraries/messages.inc.php:42 tbl_change.php:1147 msgid "Go back to previous page" msgstr "Перайсьці да папярэдняй старонкі" -#: libraries/messages.inc.php:47 tbl_change.php:1148 +#: libraries/messages.inc.php:43 tbl_change.php:1148 msgid "Insert another new row" msgstr "Дадаць яшчэ адзін радок" -#: libraries/messages.inc.php:48 tbl_change.php:1160 +#: libraries/messages.inc.php:44 tbl_change.php:1160 msgid "Edit next row" msgstr "Рэдагаваць наступны радок" -#: libraries/messages.inc.php:49 tbl_change.php:1152 +#: libraries/messages.inc.php:45 tbl_change.php:1152 msgid "Go back to this page" msgstr "Вярнуцца да гэтай старонкі" -#: libraries/messages.inc.php:50 querywindow.php:115 +#: libraries/messages.inc.php:46 querywindow.php:115 msgid "All" msgstr "Усе" -#: libraries/messages.inc.php:53 tbl_operations.php:249 +#: libraries/messages.inc.php:49 tbl_operations.php:249 msgid "Alter table order by" msgstr "Зьмяніць парадак табліцы" -#: libraries/messages.inc.php:54 tbl_operations.php:660 +#: libraries/messages.inc.php:50 tbl_operations.php:660 msgid "Analyze" msgstr "Прааналізаваць" -#: libraries/messages.inc.php:57 +#: libraries/messages.inc.php:53 #, fuzzy msgid "and" msgstr "І" -#: libraries/messages.inc.php:59 pmd_general.php:87 +#: libraries/messages.inc.php:55 pmd_general.php:87 msgid "Angular links" msgstr "Вуглавыя лініі сувязяў" -#: libraries/messages.inc.php:60 tbl_structure.php:401 tbl_structure.php:415 +#: libraries/messages.inc.php:56 tbl_structure.php:401 tbl_structure.php:415 #: tbl_structure.php:429 #, php-format msgid "An index has been added on %s" msgstr "Быў дададзены індэкс для %s" -#: libraries/messages.inc.php:61 server_privileges.php:1521 +#: libraries/messages.inc.php:57 server_privileges.php:1521 #: server_privileges.php:2123 msgid "Any" msgstr "Любы" -#: libraries/messages.inc.php:62 libraries/replication_gui.lib.php:298 +#: libraries/messages.inc.php:58 libraries/replication_gui.lib.php:298 #: server_privileges.php:725 msgid "Any host" msgstr "Любы хост" -#: libraries/messages.inc.php:63 libraries/replication_gui.lib.php:250 +#: libraries/messages.inc.php:59 libraries/replication_gui.lib.php:250 #: server_privileges.php:677 msgid "Any user" msgstr "Любы карыстальнік" -#: libraries/messages.inc.php:64 server_synchronize.php:449 +#: libraries/messages.inc.php:60 server_synchronize.php:449 #: server_synchronize.php:894 msgid "Apply Selected Changes" msgstr "" -#: libraries/messages.inc.php:66 tbl_structure.php:386 +#: libraries/messages.inc.php:62 tbl_structure.php:386 #, php-format msgid "A primary key has been added on %s" msgstr "Першасны ключ быў дададзены да %s" -#: libraries/messages.inc.php:67 libraries/mysql_charsets.lib.php:368 +#: libraries/messages.inc.php:63 libraries/mysql_charsets.lib.php:368 msgid "Arabic" msgstr "Арабская" -#: libraries/messages.inc.php:68 libraries/mysql_charsets.lib.php:359 +#: libraries/messages.inc.php:64 libraries/mysql_charsets.lib.php:359 msgid "Armenian" msgstr "Армянская" -#: libraries/messages.inc.php:70 libraries/tbl_properties.inc.php:394 +#: libraries/messages.inc.php:66 libraries/tbl_properties.inc.php:394 msgid "As defined:" msgstr "Як вызначана:" -#: libraries/messages.inc.php:71 tbl_structure.php:556 +#: libraries/messages.inc.php:67 tbl_structure.php:556 msgid "At Beginning of Table" msgstr "У пачатку табліцы" -#: libraries/messages.inc.php:72 tbl_structure.php:555 +#: libraries/messages.inc.php:68 tbl_structure.php:555 msgid "At End of Table" msgstr "У канцы табліцы" -#: libraries/messages.inc.php:73 libraries/tbl_properties.inc.php:108 +#: libraries/messages.inc.php:69 libraries/tbl_properties.inc.php:108 #: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:144 #: tbl_structure.php:180 msgid "Attributes" msgstr "Атрыбуты" -#: libraries/messages.inc.php:74 pdf_pages.php:303 pdf_pages.php:306 +#: libraries/messages.inc.php:70 pdf_pages.php:303 pdf_pages.php:306 msgid "Automatic layout" msgstr "Аўтаматычнае разьмяшчэньне" -#: libraries/messages.inc.php:77 libraries/mysql_charsets.lib.php:354 +#: libraries/messages.inc.php:73 libraries/mysql_charsets.lib.php:354 msgid "Baltic" msgstr "Балтыйская" -#: libraries/messages.inc.php:78 libraries/sqlparser.lib.php:175 +#: libraries/messages.inc.php:74 libraries/sqlparser.lib.php:175 msgid "BEGIN CUT" msgstr "BEGIN CUT" -#: libraries/messages.inc.php:79 libraries/sqlparser.lib.php:179 +#: libraries/messages.inc.php:75 libraries/sqlparser.lib.php:179 msgid "BEGIN RAW" msgstr "BEGIN RAW" -#: libraries/messages.inc.php:80 libraries/mysql_charsets.lib.php:201 +#: libraries/messages.inc.php:76 libraries/mysql_charsets.lib.php:201 #: libraries/mysql_charsets.lib.php:402 tbl_change.php:518 msgid "Binary" msgstr "Двайковы" -#: libraries/messages.inc.php:81 tbl_change.php:894 +#: libraries/messages.inc.php:77 tbl_change.php:894 msgid "Binary - do not edit" msgstr "Двайковыя дадзеныя — не рэдагуюцца" -#: libraries/messages.inc.php:82 libraries/server_links.inc.php:76 +#: libraries/messages.inc.php:78 libraries/server_links.inc.php:76 #: server_binlog.php:110 server_status.php:253 test/theme.php:121 msgid "Binary log" msgstr "Двайковы лог" -#: libraries/messages.inc.php:83 server_binlog.php:217 +#: libraries/messages.inc.php:79 server_binlog.php:217 msgid "Event type" msgstr "Тып падзеі" -#: libraries/messages.inc.php:84 server_binlog.php:220 +#: libraries/messages.inc.php:80 server_binlog.php:220 msgid "Information" msgstr "Інфармацыя" -#: libraries/messages.inc.php:85 server_binlog.php:215 +#: libraries/messages.inc.php:81 server_binlog.php:215 msgid "Log name" msgstr "Імя логу" -#: libraries/messages.inc.php:86 server_binlog.php:219 +#: libraries/messages.inc.php:82 server_binlog.php:219 msgid "Original position" msgstr "Першапачатковая пазыцыя" -#: libraries/messages.inc.php:87 server_binlog.php:216 +#: libraries/messages.inc.php:83 server_binlog.php:216 msgid "Position" msgstr "Пазыцыя" -#: libraries/messages.inc.php:88 libraries/replication_gui.lib.php:169 +#: libraries/messages.inc.php:84 libraries/replication_gui.lib.php:169 #: server_binlog.php:218 msgid "Server ID" msgstr "ID сэрвэра" -#: libraries/messages.inc.php:92 +#: libraries/messages.inc.php:88 #, fuzzy msgctxt "$strBLOBRepositoryDisabled" msgid "Disabled" msgstr "Адключана" -#: libraries/messages.inc.php:95 +#: libraries/messages.inc.php:91 #, fuzzy msgctxt "$strBLOBRepositoryEnabled" msgid "Enabled" msgstr "Уключана" -#: libraries/messages.inc.php:97 tbl_change.php:888 +#: libraries/messages.inc.php:93 tbl_change.php:888 msgid "Remove BLOB Repository Reference" msgstr "" -#: libraries/messages.inc.php:98 +#: libraries/messages.inc.php:94 #, fuzzy msgctxt "$strBLOBRepositoryRepair" msgid "Repair" msgstr "Адрамантаваць" -#: libraries/messages.inc.php:99 tbl_change.php:987 +#: libraries/messages.inc.php:95 tbl_change.php:987 msgid "Upload to BLOB repository" msgstr "" -#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:359 +#: libraries/messages.inc.php:96 libraries/sql_query_form.lib.php:359 #: sql.php:677 msgid "Let every user access this bookmark" msgstr "Даць кожнаму карыстальніку доступ да гэтай закладкі" -#: libraries/messages.inc.php:103 sql.php:671 +#: libraries/messages.inc.php:99 sql.php:671 msgid "Label" msgstr "Метка" -#: libraries/messages.inc.php:104 libraries/sql_query_form.lib.php:433 +#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:433 msgid "Bookmarked SQL query" msgstr "Закладзены SQL-запыт" -#: libraries/messages.inc.php:105 libraries/sql_query_form.lib.php:365 +#: libraries/messages.inc.php:101 libraries/sql_query_form.lib.php:365 msgid "Replace existing bookmark of same name" msgstr "Замяніць існую закладку з такім жа імем" -#: libraries/messages.inc.php:106 libraries/sql_query_form.lib.php:352 +#: libraries/messages.inc.php:102 libraries/sql_query_form.lib.php:352 #: sql.php:665 sql.php:666 sql.php:683 msgid "Bookmark this SQL query" msgstr "Дадаць гэты SQL-запыт у закладкі" -#: libraries/messages.inc.php:107 libraries/sql_query_form.lib.php:466 +#: libraries/messages.inc.php:103 libraries/sql_query_form.lib.php:466 msgid "View only" msgstr "Толькі прагляд" -#: libraries/messages.inc.php:109 tbl_structure.php:161 +#: libraries/messages.inc.php:105 tbl_structure.php:161 msgid "Browse distinct values" msgstr "Прагляд розных значэньняў" -#: libraries/messages.inc.php:110 tbl_change.php:252 tbl_select.php:27 +#: libraries/messages.inc.php:106 tbl_change.php:252 tbl_select.php:27 #: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34 msgid "Browse foreign values" msgstr "Праглядзець зьнешнія значэньні" -#: libraries/messages.inc.php:118 libraries/mysql_charsets.lib.php:213 +#: libraries/messages.inc.php:114 libraries/mysql_charsets.lib.php:213 msgid "Bulgarian" msgstr "Баўгарская" -#: libraries/messages.inc.php:120 +#: libraries/messages.inc.php:116 msgid "\"bzipped\"" msgstr "сьціскаць у bzip" -#: libraries/messages.inc.php:122 +#: libraries/messages.inc.php:118 msgid "Calendar" msgstr "Каляндар" -#: libraries/messages.inc.php:129 tbl_indexes.php:75 +#: libraries/messages.inc.php:125 tbl_indexes.php:75 msgid "Can't rename index to PRIMARY!" msgstr "Немагчыма перайменаваць індэкс у PRIMARY!" -#: libraries/messages.inc.php:132 libraries/mysql_charsets.lib.php:223 +#: libraries/messages.inc.php:128 libraries/mysql_charsets.lib.php:223 #: libraries/mysql_charsets.lib.php:409 msgid "case-insensitive" msgstr "без уліку рэгістру" -#: libraries/messages.inc.php:133 libraries/mysql_charsets.lib.php:226 +#: libraries/messages.inc.php:129 libraries/mysql_charsets.lib.php:226 #: libraries/mysql_charsets.lib.php:411 msgid "case-sensitive" msgstr "з улікам рэгістру" -#: libraries/messages.inc.php:134 libraries/mysql_charsets.lib.php:332 +#: libraries/messages.inc.php:130 libraries/mysql_charsets.lib.php:332 msgid "Central European" msgstr "Цэнтральнаэўрапейская" -#: libraries/messages.inc.php:136 server_privileges.php:1969 +#: libraries/messages.inc.php:132 server_privileges.php:1969 msgid "... keep the old one." msgstr "... пакінуць старога." -#: libraries/messages.inc.php:137 server_privileges.php:1967 +#: libraries/messages.inc.php:133 server_privileges.php:1967 msgid "Create a new user with the same privileges and ..." msgstr "Стварыць новага карыстальніка з такімі ж прывілеямі і ..." -#: libraries/messages.inc.php:138 server_privileges.php:1972 +#: libraries/messages.inc.php:134 server_privileges.php:1972 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -3373,247 +3373,247 @@ msgstr "" " ... выдаліць старога з табліцы карыстальнікаў і пасьля перазагрузіць " "прывілеі." -#: libraries/messages.inc.php:139 server_privileges.php:1970 +#: libraries/messages.inc.php:135 server_privileges.php:1970 msgid " ... delete the old one from the user tables." msgstr " ... выдаліць старога з табліцы карыстальнікаў." -#: libraries/messages.inc.php:140 server_privileges.php:1971 +#: libraries/messages.inc.php:136 server_privileges.php:1971 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr " ... ануляваць усе актыўныя прывілеі старога і пасьля выдаліць яго." -#: libraries/messages.inc.php:141 server_privileges.php:1964 +#: libraries/messages.inc.php:137 server_privileges.php:1964 msgid "Change Login Information / Copy User" msgstr "Зьмяніць рэгістрацыйную інфармацыю / Капіяваць карыстальніка" -#: libraries/messages.inc.php:144 libraries/mysql_charsets.lib.php:107 +#: libraries/messages.inc.php:140 libraries/mysql_charsets.lib.php:107 msgid "Charset" msgstr "Кадыроўка" -#: libraries/messages.inc.php:146 server_collations.php:40 +#: libraries/messages.inc.php:142 server_collations.php:40 msgid "Character Sets and Collations" msgstr "Раскладкі і супастаўленьні" -#: libraries/messages.inc.php:147 libraries/server_links.inc.php:57 +#: libraries/messages.inc.php:143 libraries/server_links.inc.php:57 #: test/theme.php:109 msgid "Charsets" msgstr "Кадыроўкі" -#: libraries/messages.inc.php:149 tbl_operations.php:661 +#: libraries/messages.inc.php:145 tbl_operations.php:661 msgid "Check" msgstr "Праверыць" -#: libraries/messages.inc.php:151 server_databases.php:293 +#: libraries/messages.inc.php:147 server_databases.php:293 #: server_databases.php:294 msgid "Check Privileges" msgstr "Праверыць прывілеі" -#: libraries/messages.inc.php:152 server_databases.php:289 +#: libraries/messages.inc.php:148 server_databases.php:289 #, php-format msgid "Check privileges for database "%s"." msgstr "Праверыць прывілеі для базы "%s"." -#: libraries/messages.inc.php:154 pdf_pages.php:261 +#: libraries/messages.inc.php:150 pdf_pages.php:261 msgid "Please choose a page to edit" msgstr "Калі ласка, выберыце старонку для рэдагаваньня" -#: libraries/messages.inc.php:157 +#: libraries/messages.inc.php:153 msgid "Displaying Column Comments" msgstr "Паказваць камэнтары калёнак" -#: libraries/messages.inc.php:159 pdf_pages.php:483 view_create.php:148 +#: libraries/messages.inc.php:155 pdf_pages.php:483 view_create.php:148 msgid "Column names" msgstr "Назвы калёнак" -#: libraries/messages.inc.php:160 server_privileges.php:1685 +#: libraries/messages.inc.php:156 server_privileges.php:1685 msgid "Column-specific privileges" msgstr "Спэцыфічныя прывілеі калёнак" -#: libraries/messages.inc.php:164 +#: libraries/messages.inc.php:160 msgid "MySQL 4.0 compatible" msgstr "Сумяшчальнае з MySQL 4.0" -#: libraries/messages.inc.php:165 +#: libraries/messages.inc.php:161 msgid "Complete inserts" msgstr "Поўная ўстаўка" -#: libraries/messages.inc.php:168 +#: libraries/messages.inc.php:164 #, php-format msgid "Could not load default configuration from: \"%1$s\"" msgstr "Немагчыма загрузіць канфігурацыю па змоўчаньні з: \"%1$s\"" -#: libraries/messages.inc.php:169 main.php:306 +#: libraries/messages.inc.php:165 main.php:306 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: libraries/messages.inc.php:171 pdf_schema.php:672 +#: libraries/messages.inc.php:167 pdf_schema.php:672 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Калі ласка, сканфігуруйце каардынаты для табліцы %s" -#: libraries/messages.inc.php:173 server_status.php:433 +#: libraries/messages.inc.php:169 server_status.php:433 msgid "Connections" msgstr "Падлучэньні" -#: libraries/messages.inc.php:179 tbl_operations.php:509 +#: libraries/messages.inc.php:175 tbl_operations.php:509 msgid "Copy table to (database.table):" msgstr "Скапіяваць табліцу ў (база дадзеных.табліца):" -#: libraries/messages.inc.php:180 tbl_move_copy.php:58 +#: libraries/messages.inc.php:176 tbl_move_copy.php:58 #, php-format msgid "Table %s has been copied to %s." msgstr "Табліца %s была скапіяваная ў %s." -#: libraries/messages.inc.php:181 tbl_move_copy.php:48 +#: libraries/messages.inc.php:177 tbl_move_copy.php:48 msgid "Can't copy table to same one!" msgstr "Немагчыма скапіяваць табліцу ў саму сябе!" -#: libraries/messages.inc.php:182 server_synchronize.php:94 +#: libraries/messages.inc.php:178 server_synchronize.php:94 msgid "Could not connect to the source" msgstr "" -#: libraries/messages.inc.php:183 server_synchronize.php:97 +#: libraries/messages.inc.php:179 server_synchronize.php:97 msgid "Could not connect to the target" msgstr "" -#: libraries/messages.inc.php:184 server_processlist.php:24 +#: libraries/messages.inc.php:180 server_processlist.php:24 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin ня можа спыніць працэс %s. Напэўна, ён ужо спынены." -#: libraries/messages.inc.php:187 +#: libraries/messages.inc.php:183 #, php-format msgid "Create an index on %s columns" msgstr "Стварыць індэкс на %s калёнках" -#: libraries/messages.inc.php:188 tbl_indexes.php:160 +#: libraries/messages.inc.php:184 tbl_indexes.php:160 msgid "Create a new index" msgstr "Стварыць новы індэкс" -#: libraries/messages.inc.php:191 pdf_pages.php:297 pmd_pdf.php:114 +#: libraries/messages.inc.php:187 pdf_pages.php:297 pmd_pdf.php:114 msgid "Create a page" msgstr "Стварыць новую старонку" -#: libraries/messages.inc.php:192 +#: libraries/messages.inc.php:188 msgid "Creation of PDFs" msgstr "Стварэньне PDF-файлаў" -#: libraries/messages.inc.php:193 pmd_general.php:74 pmd_general.php:306 +#: libraries/messages.inc.php:189 pmd_general.php:74 pmd_general.php:306 msgid "Create relation" msgstr "Стварыць сувязь" -#: libraries/messages.inc.php:194 pmd_general.php:71 +#: libraries/messages.inc.php:190 pmd_general.php:71 #: server_synchronize.php:429 server_synchronize.php:872 msgid "Create table" msgstr "Стварыць табліцу" -#: libraries/messages.inc.php:195 +#: libraries/messages.inc.php:191 #, fuzzy msgctxt "$strCreateTableShort" msgid "Create table" msgstr "Стварыць табліцу" -#: libraries/messages.inc.php:196 server_privileges.php:1994 +#: libraries/messages.inc.php:192 server_privileges.php:1994 msgid "Database for user" msgstr "База дадзеных для карыстальніка" -#: libraries/messages.inc.php:197 server_privileges.php:1999 +#: libraries/messages.inc.php:193 server_privileges.php:1999 msgid "Create database with same name and grant all privileges" msgstr "Стварыць базу дадзеных з такім самым імем і надзяліць усімі прывілеямі" -#: libraries/messages.inc.php:198 +#: libraries/messages.inc.php:194 #, fuzzy msgctxt "$strCreateUserDatabaseNone" msgid "None" msgstr "Няма" -#: libraries/messages.inc.php:199 server_privileges.php:2003 +#: libraries/messages.inc.php:195 server_privileges.php:2003 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "Праверыць прывілеі для базы "%s"." -#: libraries/messages.inc.php:200 server_privileges.php:2000 +#: libraries/messages.inc.php:196 server_privileges.php:2000 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" "Надзяліць усімі прывілеямі базы з іменамі па масцы (імя карыстальніка_%)" -#: libraries/messages.inc.php:201 +#: libraries/messages.inc.php:197 msgid "Creation/Update/Check dates" msgstr "Стварэньне/Абнаўленьне/Праверка дат" -#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:229 +#: libraries/messages.inc.php:199 libraries/mysql_charsets.lib.php:229 msgid "Croatian" msgstr "Харвацкая" -#: libraries/messages.inc.php:204 +#: libraries/messages.inc.php:200 msgid "CSV" msgstr "CSV" -#: libraries/messages.inc.php:205 libraries/server_synchronize.lib.php:1343 +#: libraries/messages.inc.php:201 libraries/server_synchronize.lib.php:1343 #: libraries/server_synchronize.lib.php:1369 msgid "Current server" msgstr "" -#: libraries/messages.inc.php:206 main.php:159 +#: libraries/messages.inc.php:202 main.php:159 msgid "Custom color" msgstr "Іншы колер" -#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:365 +#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:365 msgid "Cyrillic" msgstr "Кірылічная" -#: libraries/messages.inc.php:208 libraries/mysql_charsets.lib.php:232 +#: libraries/messages.inc.php:204 libraries/mysql_charsets.lib.php:232 msgid "Czech" msgstr "Чэская" -#: libraries/messages.inc.php:209 libraries/mysql_charsets.lib.php:383 +#: libraries/messages.inc.php:205 libraries/mysql_charsets.lib.php:383 msgid "Czech-Slovak" msgstr "Чэхаславацкая" -#: libraries/messages.inc.php:211 libraries/mysql_charsets.lib.php:235 +#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:235 msgid "Danish" msgstr "Дацкая" -#: libraries/messages.inc.php:214 +#: libraries/messages.inc.php:210 msgid "Database export options" msgstr "Налады экспарту базы дадзеных" -#: libraries/messages.inc.php:217 server_synchronize.php:122 +#: libraries/messages.inc.php:213 server_synchronize.php:122 #: server_synchronize.php:125 tbl_create.php:82 tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "" -#: libraries/messages.inc.php:219 server_databases.php:63 +#: libraries/messages.inc.php:215 server_databases.php:63 #, php-format msgid "%s databases have been dropped successfully." msgstr "%s базаў дадзеных былі пасьпяхова выдаленыя." -#: libraries/messages.inc.php:220 libraries/server_synchronize.lib.php:1341 +#: libraries/messages.inc.php:216 libraries/server_synchronize.lib.php:1341 #: server_synchronize.php:1110 #, fuzzy msgid "Source database" msgstr "Пошук у базе дадзеных" -#: libraries/messages.inc.php:221 server_databases.php:88 +#: libraries/messages.inc.php:217 server_databases.php:88 msgid "Databases statistics" msgstr "Статыстыка базаў дадзеных" -#: libraries/messages.inc.php:222 server_databases.php:362 +#: libraries/messages.inc.php:218 server_databases.php:362 #: server_databases.php:363 msgid "Disable Statistics" msgstr "Адключыць статыстыку" -#: libraries/messages.inc.php:223 server_databases.php:358 +#: libraries/messages.inc.php:219 server_databases.php:358 #: server_databases.php:359 msgid "Enable Statistics" msgstr "Уключыць статыстыку" -#: libraries/messages.inc.php:224 server_databases.php:366 +#: libraries/messages.inc.php:220 server_databases.php:366 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -3621,32 +3621,32 @@ msgstr "" "Заўвага: Уключэньне статыстыкі базы дадзеных можа выклікаць вялікую " "колькасьць трафіку паміж вэб-сэрвэрам і сэрвэрам MySQL." -#: libraries/messages.inc.php:225 libraries/server_synchronize.lib.php:1367 +#: libraries/messages.inc.php:221 libraries/server_synchronize.lib.php:1367 #: server_synchronize.php:1112 #, fuzzy msgid "Target database" msgstr "Пошук у базе дадзеных" -#: libraries/messages.inc.php:228 server_synchronize.php:425 +#: libraries/messages.inc.php:224 server_synchronize.php:425 #: server_synchronize.php:868 #, fuzzy msgid "Data Difference" msgstr "Структура для прагляду" -#: libraries/messages.inc.php:231 server_synchronize.php:272 +#: libraries/messages.inc.php:227 server_synchronize.php:272 msgid "Data Synchronization" msgstr "" -#: libraries/messages.inc.php:235 server_privileges.php:526 +#: libraries/messages.inc.php:231 server_privileges.php:526 #: server_privileges.php:1679 msgid "Database-specific privileges" msgstr "Спэцыфічныя прывілеі базы дадзеных" -#: libraries/messages.inc.php:237 server_privileges.php:2136 +#: libraries/messages.inc.php:233 server_privileges.php:2136 msgid "database-specific" msgstr "спэцыфічны для базы дадзеных" -#: libraries/messages.inc.php:240 libraries/tbl_properties.inc.php:106 +#: libraries/messages.inc.php:236 libraries/tbl_properties.inc.php:106 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" @@ -3654,32 +3654,32 @@ msgstr "" "Для значэньняў па змоўчаньні, калі ласка, увядзіце проста значэньне, без " "выкарыстаньня зваротных слэшаў і двукосься, выкарыстоўваючы фармат: a" -#: libraries/messages.inc.php:241 tbl_operations.php:589 +#: libraries/messages.inc.php:237 tbl_operations.php:589 msgid "Defragment table" msgstr "Дэфрагмэнтаваць табліцу" -#: libraries/messages.inc.php:242 +#: libraries/messages.inc.php:238 msgid "Use delayed inserts" msgstr "Выкарыстоўваць адкладзеныя ўстаўкі" -#: libraries/messages.inc.php:245 server_privileges.php:1243 +#: libraries/messages.inc.php:241 server_privileges.php:1243 msgid "No users selected for deleting!" msgstr "На выбраныя карыстальнікі для выдаленьня!" -#: libraries/messages.inc.php:246 pmd_general.php:372 +#: libraries/messages.inc.php:242 pmd_general.php:372 msgid "Delete relation" msgstr "Выдаліць сувязь" -#: libraries/messages.inc.php:248 server_privileges.php:1232 +#: libraries/messages.inc.php:244 server_privileges.php:1232 #, php-format msgid "Deleting %s" msgstr "Выдаленьне %s" -#: libraries/messages.inc.php:249 libraries/sql_query_form.lib.php:388 +#: libraries/messages.inc.php:245 libraries/sql_query_form.lib.php:388 msgid "Delimiter" msgstr "Разьдзяляльнік" -#: libraries/messages.inc.php:250 pdf_pages.php:506 +#: libraries/messages.inc.php:246 pdf_pages.php:506 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -3687,7 +3687,7 @@ msgstr "" "Бягучая старонка ўтрымлівае спасылкі на табліцы, якія больш не існуюць. Ці " "жадаеце вы выдаліць гэтыя спасылкі?" -#: libraries/messages.inc.php:254 pmd_help.php:29 +#: libraries/messages.inc.php:250 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 " @@ -3697,142 +3697,142 @@ msgstr "" "адлюстраваных палёў, націсьніце іконку «Выберыце поле для адлюстраваньня» і " "націсьніце на адпаведнае імя поля." -#: libraries/messages.inc.php:256 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:252 libraries/mysql_charsets.lib.php:247 msgid "dictionary" msgstr "слоўнік" -#: libraries/messages.inc.php:257 libraries/server_synchronize.lib.php:1348 +#: libraries/messages.inc.php:253 libraries/server_synchronize.lib.php:1348 msgid "Difference" msgstr "" -#: libraries/messages.inc.php:258 pmd_general.php:87 +#: libraries/messages.inc.php:254 pmd_general.php:87 msgid "Direct links" msgstr "Прамыя лініі сувязяў" -#: libraries/messages.inc.php:261 +#: libraries/messages.inc.php:257 msgid "Disable foreign key checks" msgstr "Адключыць праверку зьнешніх ключоў" -#: libraries/messages.inc.php:262 +#: libraries/messages.inc.php:258 msgid "Display Features" msgstr "Паказваць магчымасьці" -#: libraries/messages.inc.php:263 tbl_select.php:301 +#: libraries/messages.inc.php:259 tbl_select.php:301 msgid "Display order:" msgstr "Парадак прагляду:" -#: libraries/messages.inc.php:265 tbl_select.php:132 +#: libraries/messages.inc.php:261 tbl_select.php:132 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Выканаць \"запыт згодна прыклада\" (сымбаль падстаноўкі: \"%\")" -#: libraries/messages.inc.php:266 +#: libraries/messages.inc.php:262 msgid "DocSQL" msgstr "DocSQL" -#: libraries/messages.inc.php:268 +#: libraries/messages.inc.php:264 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/messages.inc.php:273 server_privileges.php:1579 +#: libraries/messages.inc.php:269 server_privileges.php:1579 #: server_privileges.php:1580 server_privileges.php:1581 msgid "Drop the databases that have the same names as the users." msgstr "Выдаліць базы дадзеных, якія маюць такія ж імёны як і карыстальнікі." -#: libraries/messages.inc.php:278 tbl_printview.php:382 tbl_structure.php:743 +#: libraries/messages.inc.php:274 tbl_printview.php:382 tbl_structure.php:743 msgid "dynamic" msgstr "дынамічны" -#: libraries/messages.inc.php:282 server_privileges.php:1324 +#: libraries/messages.inc.php:278 server_privileges.php:1324 #: server_privileges.php:1610 msgid "Edit Privileges" msgstr "Рэдагаваць прывілеі" -#: libraries/messages.inc.php:283 tbl_printview.php:341 tbl_structure.php:688 +#: libraries/messages.inc.php:279 tbl_printview.php:341 tbl_structure.php:688 msgid "Effective" msgstr "Эфэктыўнасьць" -#: libraries/messages.inc.php:286 libraries/relation.lib.php:100 +#: libraries/messages.inc.php:282 libraries/relation.lib.php:100 msgid "Enabled" msgstr "Уключана" -#: libraries/messages.inc.php:287 +#: libraries/messages.inc.php:283 msgid "Enclose export in a transaction" msgstr "Экспартаваць за адну транзакцыю" -#: libraries/messages.inc.php:288 libraries/sqlparser.lib.php:177 +#: libraries/messages.inc.php:284 libraries/sqlparser.lib.php:177 msgid "END CUT" msgstr "END CUT" -#: libraries/messages.inc.php:290 libraries/sqlparser.lib.php:183 +#: libraries/messages.inc.php:286 libraries/sqlparser.lib.php:183 msgid "END RAW" msgstr "END RAW" -#: libraries/messages.inc.php:293 libraries/server_links.inc.php:61 +#: libraries/messages.inc.php:289 libraries/server_links.inc.php:61 #: test/theme.php:113 msgid "Engines" msgstr "Машыны" -#: libraries/messages.inc.php:295 libraries/mysql_charsets.lib.php:238 +#: libraries/messages.inc.php:291 libraries/mysql_charsets.lib.php:238 msgid "English" msgstr "Ангельская" -#: libraries/messages.inc.php:296 server_privileges.php:393 +#: libraries/messages.inc.php:292 server_privileges.php:393 #: server_privileges.php:535 server_privileges.php:1501 msgid " Note: MySQL privilege names are expressed in English " msgstr " Заўвага: імёны прывілеяў MySQL задаюцца па-ангельску " -#: libraries/messages.inc.php:298 libraries/zip_extension.lib.php:49 +#: libraries/messages.inc.php:294 libraries/zip_extension.lib.php:49 #: libraries/zip_extension.lib.php:51 libraries/zip_extension.lib.php:66 msgid "Error in ZIP archive:" msgstr "Памылка ў ZIP-архіве:" -#: libraries/messages.inc.php:303 libraries/mysql_charsets.lib.php:241 +#: libraries/messages.inc.php:299 libraries/mysql_charsets.lib.php:241 msgid "Esperanto" msgstr "Эспэранта" -#: libraries/messages.inc.php:304 libraries/mysql_charsets.lib.php:244 +#: libraries/messages.inc.php:300 libraries/mysql_charsets.lib.php:244 msgid "Estonian" msgstr "Эстонская" -#: libraries/messages.inc.php:305 libraries/tbl_triggers.lib.php:29 +#: libraries/messages.inc.php:301 libraries/tbl_triggers.lib.php:29 msgid "Event" msgstr "Падзея" -#: libraries/messages.inc.php:307 +#: libraries/messages.inc.php:303 msgid "Excel edition" msgstr "Вэрсія Excel" -#: libraries/messages.inc.php:311 pmd_pdf.php:85 +#: libraries/messages.inc.php:307 pmd_pdf.php:85 msgid "Export/Import to scale" msgstr "Маштаб" -#: libraries/messages.inc.php:313 +#: libraries/messages.inc.php:309 msgid "Extended inserts" msgstr "Пашыраныя ўстаўкі" -#: libraries/messages.inc.php:314 pdf_schema.php:1267 pdf_schema.php:1288 +#: libraries/messages.inc.php:310 pdf_schema.php:1267 pdf_schema.php:1288 #: tbl_printview.php:147 tbl_structure.php:183 tbl_tracking.php:278 msgid "Extra" msgstr "Дадаткова" -#: libraries/messages.inc.php:316 server_status.php:447 +#: libraries/messages.inc.php:312 server_status.php:447 msgid "Failed attempts" msgstr "Няўдалых спробаў" -#: libraries/messages.inc.php:318 tbl_structure.php:375 +#: libraries/messages.inc.php:314 tbl_structure.php:375 #, php-format msgid "Field %s has been dropped" msgstr "Поле %s было выдаленае" -#: libraries/messages.inc.php:322 libraries/sql_query_form.lib.php:317 +#: libraries/messages.inc.php:318 libraries/sql_query_form.lib.php:317 msgid "Fields" msgstr "Палі" -#: libraries/messages.inc.php:332 server_binlog.php:136 +#: libraries/messages.inc.php:328 server_binlog.php:136 msgid "Files" msgstr "Файлы" -#: libraries/messages.inc.php:334 server_privileges.php:1597 +#: libraries/messages.inc.php:330 server_privileges.php:1597 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -3845,219 +3845,219 @@ msgstr "" "якія выкарыстоўвае сэрвэр, калі яны былі зьмененыя ўручную. У гэтым выпадку " "вам трэба %sперазагрузіць прывілеі%s да таго, як вы працягнеце." -#: libraries/messages.inc.php:335 server_status.php:289 +#: libraries/messages.inc.php:331 server_status.php:289 msgid "Flush query cache" msgstr "Скінуць кэш запытаў" -#: libraries/messages.inc.php:336 +#: libraries/messages.inc.php:332 msgid "Flush the table (\"FLUSH\")" msgstr "Скінуць кэш табліцы (\"FLUSH\")" -#: libraries/messages.inc.php:337 server_status.php:271 +#: libraries/messages.inc.php:333 server_status.php:271 msgid "Flush (close) all tables" msgstr "Скінуць (закрыць) усе табліцы" -#: libraries/messages.inc.php:339 tbl_relation.php:279 +#: libraries/messages.inc.php:335 tbl_relation.php:279 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "Памылка стварэньня зьнешняга ключа на %1$s (праверце тыпы калёнак)" -#: libraries/messages.inc.php:341 setup/lib/messages.inc.php:88 +#: libraries/messages.inc.php:337 setup/lib/messages.inc.php:88 #: tbl_printview.php:376 tbl_structure.php:738 msgid "Format" msgstr "Фармат" -#: libraries/messages.inc.php:344 server_replication.php:325 +#: libraries/messages.inc.php:340 server_replication.php:325 #, fuzzy msgid "Full start" msgstr "Поўнатэкстэкставае" -#: libraries/messages.inc.php:345 server_replication.php:325 +#: libraries/messages.inc.php:341 server_replication.php:325 #, fuzzy msgid "Full stop" msgstr "Поўнатэкстэкставае" -#: libraries/messages.inc.php:347 tbl_change.php:282 tbl_change.php:320 +#: libraries/messages.inc.php:343 tbl_change.php:282 tbl_change.php:320 msgid "Function" msgstr "Функцыя" -#: libraries/messages.inc.php:355 libraries/mysql_charsets.lib.php:377 +#: libraries/messages.inc.php:351 libraries/mysql_charsets.lib.php:377 msgid "Georgian" msgstr "Грузінская" -#: libraries/messages.inc.php:356 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:352 libraries/mysql_charsets.lib.php:247 #: libraries/mysql_charsets.lib.php:250 msgid "German" msgstr "Нямецкая" -#: libraries/messages.inc.php:357 themes.php:42 +#: libraries/messages.inc.php:353 themes.php:42 msgid "Get more themes!" msgstr "" -#: libraries/messages.inc.php:358 server_privileges.php:2134 +#: libraries/messages.inc.php:354 server_privileges.php:2134 msgid "global" msgstr "глябальны" -#: libraries/messages.inc.php:359 server_privileges.php:524 +#: libraries/messages.inc.php:355 server_privileges.php:524 #: server_privileges.php:1500 msgid "Global privileges" msgstr "Глябальныя прывілеі" -#: libraries/messages.inc.php:360 server_variables.php:55 +#: libraries/messages.inc.php:356 server_variables.php:55 #: server_variables.php:89 msgid "Global value" msgstr "Глябальнае значэньне" -#: libraries/messages.inc.php:365 server_privileges.php:1502 +#: libraries/messages.inc.php:361 server_privileges.php:1502 #: server_privileges.php:1684 server_privileges.php:2033 msgid "Grant" msgstr "Grant" -#: libraries/messages.inc.php:366 libraries/mysql_charsets.lib.php:380 +#: libraries/messages.inc.php:362 libraries/mysql_charsets.lib.php:380 msgid "Greek" msgstr "Грэцкая" -#: libraries/messages.inc.php:367 +#: libraries/messages.inc.php:363 msgid "\"gzipped\"" msgstr "архіваваны ў gzip" -#: libraries/messages.inc.php:369 server_status.php:250 +#: libraries/messages.inc.php:365 server_status.php:250 msgid "Handler" msgstr "Апрацоўнік" -#: libraries/messages.inc.php:370 server_synchronize.php:464 +#: libraries/messages.inc.php:366 server_synchronize.php:464 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: libraries/messages.inc.php:372 libraries/mysql_charsets.lib.php:374 +#: libraries/messages.inc.php:368 libraries/mysql_charsets.lib.php:374 msgid "Hebrew" msgstr "Габрэйская" -#: libraries/messages.inc.php:373 pmd_general.php:83 +#: libraries/messages.inc.php:369 pmd_general.php:83 msgid "Help" msgstr "Дапамога" -#: libraries/messages.inc.php:374 +#: libraries/messages.inc.php:370 msgid "Use hexadecimal for BLOB" msgstr "Шаснаццатковыя значэньні для поляў тыпу BLOB" -#: libraries/messages.inc.php:376 pmd_general.php:120 +#: libraries/messages.inc.php:372 pmd_general.php:120 msgid "Hide/Show all" msgstr "Схаваць/паказаць усе табліцы" -#: libraries/messages.inc.php:377 pmd_general.php:124 +#: libraries/messages.inc.php:373 pmd_general.php:124 msgid "Hide/Show Tables with no relation" msgstr "Схаваць/паказаць табліцы бяз сувязяў" -#: libraries/messages.inc.php:378 libraries/navigation_header.inc.php:54 +#: libraries/messages.inc.php:374 libraries/navigation_header.inc.php:54 #: libraries/navigation_header.inc.php:57 #: libraries/navigation_header.inc.php:58 msgid "Home" msgstr "Да пачатку" -#: libraries/messages.inc.php:379 main.php:233 +#: libraries/messages.inc.php:375 main.php:233 msgid "Official Homepage" msgstr "Афіцыйная старонка phpMyAdmin" -#: libraries/messages.inc.php:382 libraries/replication_gui.lib.php:327 +#: libraries/messages.inc.php:378 libraries/replication_gui.lib.php:327 #: server_privileges.php:753 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/messages.inc.php:383 +#: libraries/messages.inc.php:379 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/messages.inc.php:384 libraries/mysql_charsets.lib.php:253 +#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:253 msgid "Hungarian" msgstr "Вугорская" -#: libraries/messages.inc.php:386 libraries/mysql_charsets.lib.php:256 +#: libraries/messages.inc.php:382 libraries/mysql_charsets.lib.php:256 msgid "Icelandic" msgstr "Ісьляндзкая" -#: libraries/messages.inc.php:387 server_processlist.php:53 +#: libraries/messages.inc.php:383 server_processlist.php:53 msgid "ID" msgstr "ID" -#: libraries/messages.inc.php:388 libraries/mult_submits.inc.php:108 +#: libraries/messages.inc.php:384 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:479 msgid "Fulltext" msgstr "Поўнатэкстэкставае" -#: libraries/messages.inc.php:389 +#: libraries/messages.inc.php:385 msgid "Ignore duplicate rows" msgstr "Ігнараваць радкі, якія паўтараюцца" -#: libraries/messages.inc.php:390 tbl_change.php:302 tbl_indexes.php:200 +#: libraries/messages.inc.php:386 tbl_change.php:302 tbl_indexes.php:200 #: tbl_indexes.php:225 msgid "Ignore" msgstr "Ігнараваць" -#: libraries/messages.inc.php:391 +#: libraries/messages.inc.php:387 msgid "Use ignore inserts" msgstr "Выкарыстоўваць устаўкі ігнараваньняў" -#: libraries/messages.inc.php:392 +#: libraries/messages.inc.php:388 msgid "Column names in first row" msgstr "" -#: libraries/messages.inc.php:393 +#: libraries/messages.inc.php:389 msgid "Do not import empty rows" msgstr "" -#: libraries/messages.inc.php:394 pmd_general.php:104 +#: libraries/messages.inc.php:390 pmd_general.php:104 msgid "Import/Export coordinates for PDF schema" msgstr "Імпартаваць/Экспартаваць каардынаты табліц ў PDF-схему" -#: libraries/messages.inc.php:395 querywindow.php:104 +#: libraries/messages.inc.php:391 querywindow.php:104 msgid "Import files" msgstr "Імпартаваць файлы" -#: libraries/messages.inc.php:403 +#: libraries/messages.inc.php:399 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/messages.inc.php:404 libraries/messages.inc.php:584 +#: libraries/messages.inc.php:400 libraries/messages.inc.php:580 msgid "Open Document Spreadsheet" msgstr "Спэцыфікацыя Open Document" -#: libraries/messages.inc.php:405 +#: libraries/messages.inc.php:401 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/messages.inc.php:409 +#: libraries/messages.inc.php:405 msgid "Excel 97-2003 XLS Workbook" msgstr "" -#: libraries/messages.inc.php:410 +#: libraries/messages.inc.php:406 msgid "Excel 2007 XLSX Workbook" msgstr "" -#: libraries/messages.inc.php:414 libraries/mult_submits.inc.php:98 +#: libraries/messages.inc.php:410 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:476 tbl_structure.php:674 msgid "Index" msgstr "Індэкс" -#: libraries/messages.inc.php:415 tbl_indexes.php:168 +#: libraries/messages.inc.php:411 tbl_indexes.php:168 msgid "Index name:" msgstr "Імя індэкса:" -#: libraries/messages.inc.php:416 tbl_indexes.php:174 +#: libraries/messages.inc.php:412 tbl_indexes.php:174 msgid "Index type:" msgstr "Тып індэкса:" -#: libraries/messages.inc.php:417 sql.php:639 +#: libraries/messages.inc.php:413 sql.php:639 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Праблемы з індэксамі для табліцы `%s`" -#: libraries/messages.inc.php:427 main.php:266 +#: libraries/messages.inc.php:423 main.php:266 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -4070,24 +4070,24 @@ msgstr "" "зьнешняга ўрываньня, і таму вам абавязкова трэба выправіць гэтую хібу ў " "бясьпецы." -#: libraries/messages.inc.php:428 tbl_change.php:1130 +#: libraries/messages.inc.php:424 tbl_change.php:1130 msgid "Insert as new row" msgstr "Уставіць як новы радок" -#: libraries/messages.inc.php:429 sql.php:496 tbl_replace.php:386 +#: libraries/messages.inc.php:425 sql.php:496 tbl_replace.php:386 #, php-format msgid "Inserted row id: %1$d" msgstr "ID устаўленага радку: %1$d" -#: libraries/messages.inc.php:430 tbl_change.php:1131 +#: libraries/messages.inc.php:426 tbl_change.php:1131 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/messages.inc.php:432 main.php:139 +#: libraries/messages.inc.php:428 main.php:139 msgid "Interface" msgstr "Інтэрфэйс" -#: libraries/messages.inc.php:433 tbl_relation.php:407 +#: libraries/messages.inc.php:429 tbl_relation.php:407 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -4095,140 +4095,140 @@ msgstr "" "Унутраная сувязь не зьяўляецца абавязковай, калі існуе адпаведная сувязь " "FOREIGN KEY." -#: libraries/messages.inc.php:435 pdf_pages.php:303 +#: libraries/messages.inc.php:431 pdf_pages.php:303 msgid "Internal relations" msgstr "Унутраныя сувязі" -#: libraries/messages.inc.php:438 tbl_indexes.php:256 tbl_structure.php:590 +#: libraries/messages.inc.php:434 tbl_indexes.php:256 tbl_structure.php:590 #: tbl_structure.php:601 msgid "Column count has to be larger than zero." msgstr "Колькасьць калёнак мусіць быць большай за нуль." -#: libraries/messages.inc.php:444 libraries/tbl_properties.inc.php:784 +#: libraries/messages.inc.php:440 libraries/tbl_properties.inc.php:784 #: tbl_structure.php:537 msgid "You have to add at least one field." msgstr "Трэба дадаць прынамсі адно поле." -#: libraries/messages.inc.php:449 +#: libraries/messages.inc.php:445 #, php-format msgid "Invalid server index: \"%s\"" msgstr "Некарэктны індэкс сэрвэра: \"%s\"" -#: libraries/messages.inc.php:452 libraries/mysql_charsets.lib.php:259 +#: libraries/messages.inc.php:448 libraries/mysql_charsets.lib.php:259 #: libraries/mysql_charsets.lib.php:349 msgid "Japanese" msgstr "Японская" -#: libraries/messages.inc.php:453 main.php:331 +#: libraries/messages.inc.php:449 main.php:331 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: libraries/messages.inc.php:454 server_status.php:257 +#: libraries/messages.inc.php:450 server_status.php:257 msgid "Joins" msgstr "Аб'яднаньні" -#: libraries/messages.inc.php:457 server_privileges.php:763 +#: libraries/messages.inc.php:453 server_privileges.php:763 msgid "Do not change the password" msgstr "Не зьмяняць пароль" -#: libraries/messages.inc.php:458 server_status.php:256 +#: libraries/messages.inc.php:454 server_status.php:256 msgid "Key cache" msgstr "Кэш ключоў" -#: libraries/messages.inc.php:462 libraries/mysql_charsets.lib.php:268 +#: libraries/messages.inc.php:458 libraries/mysql_charsets.lib.php:268 #: libraries/mysql_charsets.lib.php:371 msgid "Korean" msgstr "Карэйская" -#: libraries/messages.inc.php:466 libraries/select_lang.lib.php:480 +#: libraries/messages.inc.php:462 libraries/select_lang.lib.php:480 #: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492 #, php-format msgid "Unknown language: %1$s." msgstr "Невядомая мова: %1$s." -#: libraries/messages.inc.php:468 +#: libraries/messages.inc.php:464 msgid "Table caption" msgstr "Загаловак табліцы" -#: libraries/messages.inc.php:469 +#: libraries/messages.inc.php:465 msgid "Content of table __TABLE__" msgstr "Зьмесьціва табліцы __TABLE__" -#: libraries/messages.inc.php:470 +#: libraries/messages.inc.php:466 msgid "Continued table caption" msgstr "Працягнуты загаловак табліцы" -#: libraries/messages.inc.php:471 +#: libraries/messages.inc.php:467 msgid "(continued)" msgstr "(працяг)" -#: libraries/messages.inc.php:472 +#: libraries/messages.inc.php:468 msgid "Include table caption" msgstr "Уключыць загаловак табліцы" -#: libraries/messages.inc.php:473 +#: libraries/messages.inc.php:469 msgid "Label key" msgstr "Ключ меткі" -#: libraries/messages.inc.php:474 +#: libraries/messages.inc.php:470 msgid "LaTeX" msgstr "LaTeX" -#: libraries/messages.inc.php:475 +#: libraries/messages.inc.php:471 msgid "Structure of table __TABLE__" msgstr "Структура табліцы __TABLE__" -#: libraries/messages.inc.php:476 libraries/mysql_charsets.lib.php:262 +#: libraries/messages.inc.php:472 libraries/mysql_charsets.lib.php:262 msgid "Latvian" msgstr "Латвійская" -#: libraries/messages.inc.php:477 +#: libraries/messages.inc.php:473 msgid "CSV using LOAD DATA" msgstr "CSV з выкарыстаньнем LOAD DATA" -#: libraries/messages.inc.php:478 +#: libraries/messages.inc.php:474 msgid "Use LOCAL keyword" msgstr "Выкарыстоўваць ключавое слова LOCAL" -#: libraries/messages.inc.php:479 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:475 libraries/tbl_properties.inc.php:105 msgid "Length/Values" msgstr "Даўжыня/Значэньні*" -#: libraries/messages.inc.php:480 tbl_select.php:295 +#: libraries/messages.inc.php:476 tbl_select.php:295 msgid "Number of rows per page" msgstr "Колькасьць радкоў на старонку" -#: libraries/messages.inc.php:484 libraries/mysql_charsets.lib.php:265 +#: libraries/messages.inc.php:480 libraries/mysql_charsets.lib.php:265 msgid "Lithuanian" msgstr "Літоўская" -#: libraries/messages.inc.php:485 libraries/replication_gui.lib.php:302 +#: libraries/messages.inc.php:481 libraries/replication_gui.lib.php:302 #: server_privileges.php:729 msgid "Local" msgstr "Лякальны" -#: libraries/messages.inc.php:487 server_privileges.php:669 +#: libraries/messages.inc.php:483 server_privileges.php:669 msgid "Login Information" msgstr "Інфармацыя пра ўваход" -#: libraries/messages.inc.php:490 libraries/navigation_header.inc.php:67 +#: libraries/messages.inc.php:486 libraries/navigation_header.inc.php:67 #: libraries/navigation_header.inc.php:70 #: libraries/navigation_header.inc.php:71 main.php:99 msgid "Log out" msgstr "Выйсьці з сыстэмы" -#: libraries/messages.inc.php:497 server_status.php:440 +#: libraries/messages.inc.php:493 server_status.php:440 msgid "max. concurrent connections" msgstr "максымум адначасовых злучэньняў" -#: libraries/messages.inc.php:498 +#: libraries/messages.inc.php:494 msgid "Maximal length of created query" msgstr "Максымальная даўжыня створанага запыту" -#: libraries/messages.inc.php:500 main.php:282 +#: libraries/messages.inc.php:496 main.php:282 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -4238,7 +4238,7 @@ msgstr "" "шматбайтавую кадыроўку. Без пашырэньня mbstring phpMyAdmin ня можа падзяляць " "радкі карэктна, і гэта можа прывесьці да нечаканых вынікаў." -#: libraries/messages.inc.php:501 main.php:274 +#: libraries/messages.inc.php:497 main.php:274 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -4247,24 +4247,24 @@ msgstr "" "Вы ўключылі mbstring.func_overload у вашым канфігурацыйным файле PHP. Гэтая " "опцыя несумяшчальная з phpMyAdmin і можа выклікаць пашкоджаньне дадзеных!" -#: libraries/messages.inc.php:502 +#: libraries/messages.inc.php:498 msgid "MediaWiki Table" msgstr "" -#: libraries/messages.inc.php:503 transformation_overview.php:25 +#: libraries/messages.inc.php:499 transformation_overview.php:25 msgid "Available MIME types" msgstr "Даступныя MIME-тыпы" -#: libraries/messages.inc.php:504 transformation_overview.php:43 +#: libraries/messages.inc.php:500 transformation_overview.php:43 msgid "Available transformations" msgstr "Даступныя пераўтварэньні" -#: libraries/messages.inc.php:505 +#: libraries/messages.inc.php:501 msgctxt "$strMIME_description" msgid "Description" msgstr "Апісаньне" -#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:580 +#: libraries/messages.inc.php:503 libraries/tbl_properties.inc.php:580 #: transformation_overview.php:60 #, php-format msgid "" @@ -4274,7 +4274,7 @@ msgstr "" "Няма даступных апісаньняў для гэтага пераўтварэньня.
Калі ласка, " "спытайце аўтара, што робіць %s." -#: libraries/messages.inc.php:509 libraries/tbl_properties.inc.php:137 +#: libraries/messages.inc.php:505 libraries/tbl_properties.inc.php:137 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -4283,7 +4283,7 @@ msgstr "" "Для атрыманьня сьпісу даступных опцыяў трансфармацыі і пераўтварэньняў іхных " "MIME-тыпаў, націсьніце на %sапісаньні пераўтварэньняў%s" -#: libraries/messages.inc.php:510 libraries/tbl_properties.inc.php:146 +#: libraries/messages.inc.php:506 libraries/tbl_properties.inc.php:146 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -4295,56 +4295,56 @@ msgstr "" "або апостраф (\"'\") у гэтых значэньнях, устаўце зваротны слэш перад імі " "(напрыклад, '\\\\xyz' або 'a\\'b')." -#: libraries/messages.inc.php:511 libraries/tbl_properties.inc.php:145 +#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:145 msgid "Transformation options" msgstr "Опцыі пераўтварэньня" -#: libraries/messages.inc.php:513 transformation_overview.php:38 +#: libraries/messages.inc.php:509 transformation_overview.php:38 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "MIME-тыпы, вылучаныя курсівам, ня маюць асобнай функцыі пераўтварэньня" -#: libraries/messages.inc.php:515 tbl_indexes.php:162 +#: libraries/messages.inc.php:511 tbl_indexes.php:162 msgid "Modify an index" msgstr "Зьмяніць індэкс" -#: libraries/messages.inc.php:517 pmd_general.php:108 +#: libraries/messages.inc.php:513 pmd_general.php:108 msgid "Move Menu" msgstr "Перасунуць мэню" -#: libraries/messages.inc.php:518 tbl_operations.php:276 +#: libraries/messages.inc.php:514 tbl_operations.php:276 msgid "Move table to (database.table):" msgstr "Перанесьці табліцу ў (база дадзеных.табліца):" -#: libraries/messages.inc.php:519 tbl_move_copy.php:56 +#: libraries/messages.inc.php:515 tbl_move_copy.php:56 #, php-format msgid "Table %s has been moved to %s." msgstr "Табліца %s была перанесеная ў %s." -#: libraries/messages.inc.php:520 tbl_move_copy.php:46 +#: libraries/messages.inc.php:516 tbl_move_copy.php:46 msgid "Can't move table to same one!" msgstr "Немагчыма перанесьці табліцу ў саму сябе!" -#: libraries/messages.inc.php:521 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:517 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 #: libraries/mysql_charsets.lib.php:332 libraries/mysql_charsets.lib.php:354 #: libraries/mysql_charsets.lib.php:365 msgid "multilingual" msgstr "шматмоўная" -#: libraries/messages.inc.php:534 main.php:193 +#: libraries/messages.inc.php:530 main.php:193 msgid "MySQL charset" msgstr "Кадыроўка MySQL" -#: libraries/messages.inc.php:535 main.php:211 +#: libraries/messages.inc.php:531 main.php:211 msgid "MySQL client version" msgstr "Вэрсія кліента MySQL" -#: libraries/messages.inc.php:536 main.php:125 +#: libraries/messages.inc.php:532 main.php:125 msgid "MySQL connection collation" msgstr "Супастаўленьне падлучэньня да MySQL" -#: libraries/messages.inc.php:537 main.php:346 +#: libraries/messages.inc.php:533 main.php:346 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -4353,55 +4353,55 @@ msgstr "" "Вэрсія вашай бібліятэкі MySQL для PHP %s адрозьніваецца ад вэрсіі вашага " "сэрвэра MySQL %s. Гэта можа выклікаць непрадказальныя паводзіны." -#: libraries/messages.inc.php:539 server_status.php:294 +#: libraries/messages.inc.php:535 server_status.php:294 msgid "Show processes" msgstr "Паказаць працэсы" -#: libraries/messages.inc.php:545 navigation.php:210 server_databases.php:371 +#: libraries/messages.inc.php:541 navigation.php:210 server_databases.php:371 #: server_synchronize.php:1191 msgid "No databases" msgstr "Базы дадзеных адсутнічаюць" -#: libraries/messages.inc.php:546 server_databases.php:52 +#: libraries/messages.inc.php:542 server_databases.php:52 msgid "No databases selected." msgstr "Ня выбраная база дадзеных." -#: libraries/messages.inc.php:548 libraries/relation.lib.php:1173 +#: libraries/messages.inc.php:544 libraries/relation.lib.php:1173 msgid "no description" msgstr "няма апісаньня" -#: libraries/messages.inc.php:552 libraries/zip_extension.lib.php:26 +#: libraries/messages.inc.php:548 libraries/zip_extension.lib.php:26 msgid "No files found inside ZIP archive!" msgstr "Файлы ў ZIP-архіве ня знойдзеныя!" -#: libraries/messages.inc.php:555 tbl_indexes.php:91 +#: libraries/messages.inc.php:551 tbl_indexes.php:91 msgid "No index parts defined!" msgstr "Часткі індэксу ня вызначаныя!" -#: libraries/messages.inc.php:556 libraries/mult_submits.inc.php:435 +#: libraries/messages.inc.php:552 libraries/mult_submits.inc.php:435 #: tbl_replace.php:331 msgid "No change" msgstr "Няма зьменаў" -#: libraries/messages.inc.php:557 +#: libraries/messages.inc.php:553 #, fuzzy msgctxt "$strNoneDefault" msgid "None" msgstr "Няма" -#: libraries/messages.inc.php:560 libraries/plugin_interface.lib.php:312 +#: libraries/messages.inc.php:556 libraries/plugin_interface.lib.php:312 msgid "This format has no options" msgstr "Гэты фармат ня мае опцыяў" -#: libraries/messages.inc.php:565 user_password.php:54 +#: libraries/messages.inc.php:561 user_password.php:54 msgid "You don't have sufficient privileges to be here right now!" msgstr "Вы ня маеце дастатковых прывілеяў быць у гэтым месцы ў гэты час!" -#: libraries/messages.inc.php:566 tbl_row_action.php:29 +#: libraries/messages.inc.php:562 tbl_row_action.php:29 msgid "No rows selected" msgstr "Ніводны радок ня выбраны" -#: libraries/messages.inc.php:569 themes.php:32 +#: libraries/messages.inc.php:565 themes.php:32 #, php-format msgid "" "No themes support; please check your configuration and/or your themes in " @@ -4410,299 +4410,299 @@ msgstr "" "Тэмы не падтрымліваюцца; калі ласка, праверце вашую канфігурацыю і/або вашыя " "тэмы ў тэчцы %s." -#: libraries/messages.inc.php:571 libraries/relation.lib.php:95 +#: libraries/messages.inc.php:567 libraries/relation.lib.php:95 msgid "not OK" msgstr "не OK" -#: libraries/messages.inc.php:572 server_synchronize.php:400 +#: libraries/messages.inc.php:568 server_synchronize.php:400 #: server_synchronize.php:839 msgid "not present" msgstr "" -#: libraries/messages.inc.php:573 pdf_pages.php:36 pdf_pages.php:42 +#: libraries/messages.inc.php:569 pdf_pages.php:36 pdf_pages.php:42 #: pdf_pages.php:48 pdf_pages.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "Табліца %s ня знойдзеная або ня вызначаная ў %s" -#: libraries/messages.inc.php:574 server_privileges.php:804 +#: libraries/messages.inc.php:570 server_privileges.php:804 #: server_privileges.php:2166 msgid "No user(s) found." msgstr "Не знойдзены карыстальнік." -#: libraries/messages.inc.php:578 pmd_general.php:164 +#: libraries/messages.inc.php:574 pmd_general.php:164 msgid "Number of tables" msgstr "Колькасьць табліц" -#: libraries/messages.inc.php:581 server_databases.php:117 +#: libraries/messages.inc.php:577 server_databases.php:117 #: server_status.php:260 setup/lib/messages.inc.php:117 msgid "Tables" msgstr "Табліц" -#: libraries/messages.inc.php:583 libraries/relation.lib.php:99 +#: libraries/messages.inc.php:579 libraries/relation.lib.php:99 #: pmd_general.php:340 msgid "OK" msgstr "OK" -#: libraries/messages.inc.php:585 +#: libraries/messages.inc.php:581 msgid "Open Document Text" msgstr "Тэкст Open Document" -#: libraries/messages.inc.php:588 tbl_select.php:138 +#: libraries/messages.inc.php:584 tbl_select.php:138 msgid "Operator" msgstr "Апэратар" -#: libraries/messages.inc.php:589 tbl_operations.php:662 +#: libraries/messages.inc.php:585 tbl_operations.php:662 msgid "Optimize" msgstr "Аптымізаваць" -#: libraries/messages.inc.php:602 libraries/tbl_properties.inc.php:755 +#: libraries/messages.inc.php:598 libraries/tbl_properties.inc.php:755 msgid "PARTITION definition" msgstr "Азначэньне PARTITION" -#: libraries/messages.inc.php:603 tbl_structure.php:757 +#: libraries/messages.inc.php:599 tbl_structure.php:757 msgid "partitioned" msgstr "падзеленая на сэкцыі" -#: libraries/messages.inc.php:604 tbl_operations.php:649 +#: libraries/messages.inc.php:600 tbl_operations.php:649 msgid "Partition maintenance" msgstr "Падтрымка падзелаў" -#: libraries/messages.inc.php:605 tbl_operations.php:657 +#: libraries/messages.inc.php:601 tbl_operations.php:657 #, php-format msgid "Partition %s" msgstr "Падзел %s" -#: libraries/messages.inc.php:606 server_privileges.php:1212 +#: libraries/messages.inc.php:602 server_privileges.php:1212 #, php-format msgid "The password for %s was changed successfully." msgstr "Пароль для %s пасьпяхова зьменены." -#: libraries/messages.inc.php:635 +#: libraries/messages.inc.php:631 #, php-format msgid "Schema of the \"%s\" database - Page %s" msgstr "Структура базы \"%s\" — старонка %s" -#: libraries/messages.inc.php:636 +#: libraries/messages.inc.php:632 #, php-format msgid "The \"%s\" table doesn't exist!" msgstr "Табліцы \"%s\" не існуе!" -#: libraries/messages.inc.php:637 pdf_schema.php:1013 +#: libraries/messages.inc.php:633 pdf_schema.php:1013 msgid "No tables" msgstr "Няма табліц" -#: libraries/messages.inc.php:638 pmd_pdf.php:63 +#: libraries/messages.inc.php:634 pmd_pdf.php:63 #, fuzzy msgid "Page has been created" msgstr "Табліца %1$s створаная." -#: libraries/messages.inc.php:639 pmd_pdf.php:65 +#: libraries/messages.inc.php:635 pmd_pdf.php:65 msgid "Page creation failed" msgstr "" -#: libraries/messages.inc.php:640 +#: libraries/messages.inc.php:636 msgid "PDF" msgstr "PDF" -#: libraries/messages.inc.php:641 +#: libraries/messages.inc.php:637 msgid "(Generates a report containing the data of a single table)" msgstr "(Генэруе справаздачу з дадзенымі асобнай табліцы)" -#: libraries/messages.inc.php:642 +#: libraries/messages.inc.php:638 msgid "Report title" msgstr "Загаловак справаздачы" -#: libraries/messages.inc.php:643 server_status.php:389 server_status.php:434 +#: libraries/messages.inc.php:639 server_status.php:389 server_status.php:434 #: server_status.php:497 server_status.php:555 msgid "per hour" msgstr "у гадзіну" -#: libraries/messages.inc.php:644 server_status.php:498 +#: libraries/messages.inc.php:640 server_status.php:498 msgid "per minute" msgstr "у хвіліну" -#: libraries/messages.inc.php:645 server_status.php:499 +#: libraries/messages.inc.php:641 server_status.php:499 msgid "per second" msgstr "у сэкунду" -#: libraries/messages.inc.php:646 libraries/mysql_charsets.lib.php:271 +#: libraries/messages.inc.php:642 libraries/mysql_charsets.lib.php:271 msgid "Persian" msgstr "Пэрсыдзкая" -#: libraries/messages.inc.php:647 libraries/mysql_charsets.lib.php:250 +#: libraries/messages.inc.php:643 libraries/mysql_charsets.lib.php:250 msgid "phone book" msgstr "тэлефонная кніга" -#: libraries/messages.inc.php:648 +#: libraries/messages.inc.php:644 msgid "PHP array" msgstr "" -#: libraries/messages.inc.php:650 main.php:213 +#: libraries/messages.inc.php:646 main.php:213 msgid "PHP extension" msgstr "Пашырэньне PHP" -#: libraries/messages.inc.php:654 libraries/relation.lib.php:163 +#: libraries/messages.inc.php:650 libraries/relation.lib.php:163 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/messages.inc.php:655 libraries/relation.lib.php:159 +#: libraries/messages.inc.php:651 libraries/relation.lib.php:159 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/messages.inc.php:656 libraries/relation.lib.php:161 +#: libraries/messages.inc.php:652 libraries/relation.lib.php:161 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" -#: libraries/messages.inc.php:657 libraries/relation.lib.php:162 +#: libraries/messages.inc.php:653 libraries/relation.lib.php:162 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/messages.inc.php:658 libraries/relation.lib.php:164 +#: libraries/messages.inc.php:654 libraries/relation.lib.php:164 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/messages.inc.php:661 libraries/mysql_charsets.lib.php:274 +#: libraries/messages.inc.php:657 libraries/mysql_charsets.lib.php:274 msgid "Polish" msgstr "Польская" -#: libraries/messages.inc.php:662 libraries/replication_gui.lib.php:67 +#: libraries/messages.inc.php:658 libraries/replication_gui.lib.php:67 #: server_synchronize.php:1163 #, fuzzy msgid "Port" msgstr "Парадак" -#: libraries/messages.inc.php:667 tbl_indexes.php:67 +#: libraries/messages.inc.php:663 tbl_indexes.php:67 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Імя першаснага ключа мусіць быць PRIMARY!" -#: libraries/messages.inc.php:668 tbl_indexes.php:184 +#: libraries/messages.inc.php:664 tbl_indexes.php:184 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" "(\"PRIMARY\" мусіць быць імем першаснага ключа і толькі яго!)" -#: libraries/messages.inc.php:669 libraries/mult_submits.inc.php:76 +#: libraries/messages.inc.php:665 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:474 msgid "Primary" msgstr "Першасны" -#: libraries/messages.inc.php:673 server_privileges.php:227 +#: libraries/messages.inc.php:669 server_privileges.php:227 msgid "Includes all privileges except GRANT." msgstr "Уключае ўсе прывілеі, апроч GRANT." -#: libraries/messages.inc.php:674 server_privileges.php:153 +#: libraries/messages.inc.php:670 server_privileges.php:153 #: server_privileges.php:476 msgid "Allows altering the structure of existing tables." msgstr "Дазваляе зьмяняць структуру існых табліц." -#: libraries/messages.inc.php:675 server_privileges.php:169 +#: libraries/messages.inc.php:671 server_privileges.php:169 #: server_privileges.php:482 msgid "Allows altering and dropping stored routines." msgstr "Дазваляе зьмяняць і выдаляць праграмы, якія захоўваюцца." -#: libraries/messages.inc.php:676 server_privileges.php:145 +#: libraries/messages.inc.php:672 server_privileges.php:145 #: server_privileges.php:475 msgid "Allows creating new databases and tables." msgstr "Дазваляе ствараць новыя базы дадзеных і табліцы." -#: libraries/messages.inc.php:677 server_privileges.php:168 +#: libraries/messages.inc.php:673 server_privileges.php:168 #: server_privileges.php:481 msgid "Allows creating stored routines." msgstr "Дазваляе ствараць праграмы, якія захоўваюцца." -#: libraries/messages.inc.php:678 server_privileges.php:475 +#: libraries/messages.inc.php:674 server_privileges.php:475 msgid "Allows creating new tables." msgstr "Дазваляе ствараць новыя табліцы." -#: libraries/messages.inc.php:679 server_privileges.php:156 +#: libraries/messages.inc.php:675 server_privileges.php:156 #: server_privileges.php:479 msgid "Allows creating temporary tables." msgstr "Дазваляе ствараць часовыя табліцы." -#: libraries/messages.inc.php:680 server_privileges.php:170 +#: libraries/messages.inc.php:676 server_privileges.php:170 #: server_privileges.php:515 msgid "Allows creating, dropping and renaming user accounts." msgstr "" "Дазваляе ствараць, выдаляць і пераймяноўваць уліковыя запісы карыстальнікаў" -#: libraries/messages.inc.php:681 server_privileges.php:160 +#: libraries/messages.inc.php:677 server_privileges.php:160 #: server_privileges.php:164 server_privileges.php:487 #: server_privileges.php:491 msgid "Allows creating new views." msgstr "Дазваляе ствараць новыя прагляды." -#: libraries/messages.inc.php:682 server_privileges.php:144 +#: libraries/messages.inc.php:678 server_privileges.php:144 #: server_privileges.php:467 msgid "Allows deleting data." msgstr "Дазваляе выдаляць дадзеныя." -#: libraries/messages.inc.php:683 server_privileges.php:146 +#: libraries/messages.inc.php:679 server_privileges.php:146 #: server_privileges.php:478 msgid "Allows dropping databases and tables." msgstr "Дазваляе выдаляць базы дадзеных і табліцы." -#: libraries/messages.inc.php:684 server_privileges.php:478 +#: libraries/messages.inc.php:680 server_privileges.php:478 msgid "Allows dropping tables." msgstr "Дазваляе выдаляць табліцы." -#: libraries/messages.inc.php:685 server_privileges.php:161 +#: libraries/messages.inc.php:681 server_privileges.php:161 #: server_privileges.php:495 msgid "Allows to set up events for the event scheduler" msgstr "Дазваляе ствараць падзеі ў пляніроўніку падзеяў" -#: libraries/messages.inc.php:686 server_privileges.php:171 +#: libraries/messages.inc.php:682 server_privileges.php:171 #: server_privileges.php:483 msgid "Allows executing stored routines." msgstr "Дазваляе выкананьне праграмаў, якія захоўваюцца." -#: libraries/messages.inc.php:687 server_privileges.php:150 +#: libraries/messages.inc.php:683 server_privileges.php:150 #: server_privileges.php:470 msgid "Allows importing data from and exporting data into files." msgstr "" "Дазваляе імпартаваць дадзеныя з файлаў і экспартаваць дадзеныя ў файлы." -#: libraries/messages.inc.php:688 server_privileges.php:501 +#: libraries/messages.inc.php:684 server_privileges.php:501 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Дазваляе дадаваць карыстальнікаў і прывілеі без перазагрузкі табліц " "прывілеяў." -#: libraries/messages.inc.php:689 server_privileges.php:152 +#: libraries/messages.inc.php:685 server_privileges.php:152 #: server_privileges.php:477 msgid "Allows creating and dropping indexes." msgstr "Дазваляе ствараць і выдаляць індэксы." -#: libraries/messages.inc.php:690 server_privileges.php:142 +#: libraries/messages.inc.php:686 server_privileges.php:142 #: server_privileges.php:403 server_privileges.php:465 msgid "Allows inserting and replacing data." msgstr "Дазваляе ўстаўляць і замяняць дадзеныя." -#: libraries/messages.inc.php:691 server_privileges.php:157 +#: libraries/messages.inc.php:687 server_privileges.php:157 #: server_privileges.php:510 msgid "Allows locking tables for the current thread." msgstr "Дазваляе блякаваць табліцы для бягучага патоку." -#: libraries/messages.inc.php:692 server_privileges.php:607 +#: libraries/messages.inc.php:688 server_privileges.php:607 #: server_privileges.php:609 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Абмяжоўвае колькасьць новых злучэньняў, якія карыстальнік можа адкрыць на " "працягу гадзіны." -#: libraries/messages.inc.php:693 server_privileges.php:595 +#: libraries/messages.inc.php:689 server_privileges.php:595 #: server_privileges.php:597 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Абмяжоўвае колькасьць запытаў, якія карыстальнік можа адправіць на сэрвэр на " "працягу гадзіны." -#: libraries/messages.inc.php:694 server_privileges.php:601 +#: libraries/messages.inc.php:690 server_privileges.php:601 #: server_privileges.php:603 msgid "" "Limits the number of commands that change any table or database the user may " @@ -4711,58 +4711,58 @@ msgstr "" "Абмяжоўвае колькасьць камандаў, зьмяняючых любую табліцу або базу дадзеных, " "якія карыстальнік можа выканаць на працягу гадзіны." -#: libraries/messages.inc.php:695 server_privileges.php:613 +#: libraries/messages.inc.php:691 server_privileges.php:613 #: server_privileges.php:615 msgid "Limits the number of simultaneous connections the user may have." msgstr "" "Абмяжоўвае колькасьць адначасовых злучэньняў, якія можа мець карыстальнік." -#: libraries/messages.inc.php:696 server_privileges.php:149 +#: libraries/messages.inc.php:692 server_privileges.php:149 #: server_privileges.php:505 msgid "Allows viewing processes of all users" msgstr "Дазваляе праглядаць працэсы ўсіх карыстальнікаў" -#: libraries/messages.inc.php:697 server_privileges.php:151 +#: libraries/messages.inc.php:693 server_privileges.php:151 #: server_privileges.php:409 server_privileges.php:511 msgid "Has no effect in this MySQL version." msgstr "Не працуе ў гэтай вэрсіі MySQL." -#: libraries/messages.inc.php:698 server_privileges.php:147 +#: libraries/messages.inc.php:694 server_privileges.php:147 #: server_privileges.php:506 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Дазваляе перазагружаць налады сэрвэра і ачышчаць кэш сэрвэра." -#: libraries/messages.inc.php:699 server_privileges.php:159 +#: libraries/messages.inc.php:695 server_privileges.php:159 #: server_privileges.php:513 msgid "Allows the user to ask where the slaves / masters are." msgstr "Дазваляе карыстальніку пытацца, дзе знаходзяцца slaves / masters." -#: libraries/messages.inc.php:700 server_privileges.php:158 +#: libraries/messages.inc.php:696 server_privileges.php:158 #: server_privileges.php:514 msgid "Needed for the replication slaves." msgstr "Неабходна для рэплікацыі slaves." -#: libraries/messages.inc.php:701 server_privileges.php:141 +#: libraries/messages.inc.php:697 server_privileges.php:141 #: server_privileges.php:400 server_privileges.php:464 msgid "Allows reading data." msgstr "Дазваляе чытаць дадзеныя." -#: libraries/messages.inc.php:702 server_privileges.php:154 +#: libraries/messages.inc.php:698 server_privileges.php:154 #: server_privileges.php:508 msgid "Gives access to the complete list of databases." msgstr "Дае доступ да поўнага сьпісу базаў дадзеных." -#: libraries/messages.inc.php:703 server_privileges.php:165 +#: libraries/messages.inc.php:699 server_privileges.php:165 #: server_privileges.php:167 server_privileges.php:480 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Дазваляе выкананьне запытаў SHOW CREATE VIEW." -#: libraries/messages.inc.php:704 server_privileges.php:148 +#: libraries/messages.inc.php:700 server_privileges.php:148 #: server_privileges.php:507 msgid "Allows shutting down the server." msgstr "Дазваляе спыняць сэрвэр." -#: libraries/messages.inc.php:705 server_privileges.php:155 +#: libraries/messages.inc.php:701 server_privileges.php:155 #: server_privileges.php:504 msgid "" "Allows connecting, even if maximum number of connections is reached; " @@ -4773,55 +4773,55 @@ msgstr "" "Патрабуецца для большасьці адміністратыўных апэрацыяў, такіх як вызначэньне " "глябальных зьменных або спыненьне патокаў іншых карыстальнікаў." -#: libraries/messages.inc.php:706 server_privileges.php:162 +#: libraries/messages.inc.php:702 server_privileges.php:162 #: server_privileges.php:496 msgid "Allows creating and dropping triggers" msgstr "Дазваляе стварэньне і выдаленьне трыгераў" -#: libraries/messages.inc.php:707 server_privileges.php:143 +#: libraries/messages.inc.php:703 server_privileges.php:143 #: server_privileges.php:406 server_privileges.php:466 msgid "Allows changing data." msgstr "Дазваляе зьмяняць дадзеныя." -#: libraries/messages.inc.php:708 server_privileges.php:221 +#: libraries/messages.inc.php:704 server_privileges.php:221 msgid "No privileges." msgstr "Без прывілеяў." -#: libraries/messages.inc.php:710 server_privileges.php:1296 +#: libraries/messages.inc.php:706 server_privileges.php:1296 msgid "The privileges were reloaded successfully." msgstr "Прывілеі былі пасьпяхова перазагружаныя." -#: libraries/messages.inc.php:712 libraries/server_links.inc.php:80 +#: libraries/messages.inc.php:708 libraries/server_links.inc.php:80 msgid "Processes" msgstr "Працэсы" -#: libraries/messages.inc.php:714 main.php:187 +#: libraries/messages.inc.php:710 main.php:187 msgid "Protocol version" msgstr "Вэрсія пратаколу" -#: libraries/messages.inc.php:715 +#: libraries/messages.inc.php:711 msgid "Put fields names in the first row" msgstr "Пазначыць назвы палёў у першым радку" -#: libraries/messages.inc.php:720 server_synchronize.php:1003 +#: libraries/messages.inc.php:716 server_synchronize.php:1003 msgid "The following queries have been executed:" msgstr "" -#: libraries/messages.inc.php:721 server_status.php:251 +#: libraries/messages.inc.php:717 server_status.php:251 msgid "Query cache" msgstr "Кэш запытаў" -#: libraries/messages.inc.php:722 libraries/navigation_header.inc.php:80 +#: libraries/messages.inc.php:718 libraries/navigation_header.inc.php:80 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 setup/lib/messages.inc.php:122 msgid "Query window" msgstr "Акно запыту" -#: libraries/messages.inc.php:725 querywindow.php:109 querywindow.php:217 +#: libraries/messages.inc.php:721 querywindow.php:109 querywindow.php:217 msgid "SQL history" msgstr "Гісторыя SQL" -#: libraries/messages.inc.php:726 server_status.php:490 +#: libraries/messages.inc.php:722 server_status.php:490 #, php-format msgid "" "Query statistics: Since its startup, %s queries have been sent to the " @@ -4830,137 +4830,137 @@ msgstr "" "Статыстыка запытаў: З моманту запуску %s запытаў было адпраўлена на " "сэрвэр." -#: libraries/messages.inc.php:728 server_status.php:554 +#: libraries/messages.inc.php:724 server_status.php:554 msgid "Query type" msgstr "Тып запыту" -#: libraries/messages.inc.php:729 libraries/sql_query_form.lib.php:381 +#: libraries/messages.inc.php:725 libraries/sql_query_form.lib.php:381 msgid "Do not overwrite this query from outside the window" msgstr "Не перазапісвайце гэты запыт у іншых вокнах" -#: libraries/messages.inc.php:732 tbl_operations.php:663 +#: libraries/messages.inc.php:728 tbl_operations.php:663 msgid "Rebuild" msgstr "Перабудаваць" -#: libraries/messages.inc.php:733 server_status.php:394 +#: libraries/messages.inc.php:729 server_status.php:394 msgid "Received" msgstr "Атрымана" -#: libraries/messages.inc.php:734 pmd_pdf.php:89 +#: libraries/messages.inc.php:730 pmd_pdf.php:89 msgid "recommended" msgstr "рэкамэндаваны" -#: libraries/messages.inc.php:736 tbl_operations.php:702 +#: libraries/messages.inc.php:732 tbl_operations.php:702 msgid "Check referential integrity:" msgstr "Праверыць цэласнасьць дадзеных:" -#: libraries/messages.inc.php:740 pdf_schema.php:1032 pdf_schema.php:1141 +#: libraries/messages.inc.php:736 pdf_schema.php:1032 pdf_schema.php:1141 msgid "Relational schema" msgstr "Рэляцыйная схема" -#: libraries/messages.inc.php:744 tbl_relation.php:399 +#: libraries/messages.inc.php:740 tbl_relation.php:399 msgid "Relations" msgstr "Сувязі" -#: libraries/messages.inc.php:745 tbl_structure.php:507 tbl_structure.php:509 +#: libraries/messages.inc.php:741 tbl_structure.php:507 tbl_structure.php:509 msgid "Relation view" msgstr "Прагляд залежнасьцяў" -#: libraries/messages.inc.php:746 server_privileges.php:1246 +#: libraries/messages.inc.php:742 server_privileges.php:1246 msgid "Reloading the privileges" msgstr "Перазагрузіць прывілеі" -#: libraries/messages.inc.php:747 navigation.php:66 navigation.php:67 +#: libraries/messages.inc.php:743 navigation.php:66 navigation.php:67 #: navigation.php:70 msgid "Reload navigation frame" msgstr "" -#: libraries/messages.inc.php:748 pmd_general.php:80 +#: libraries/messages.inc.php:744 pmd_general.php:80 msgid "Reload" msgstr "Абнавіць" -#: libraries/messages.inc.php:749 libraries/server_synchronize.lib.php:1345 +#: libraries/messages.inc.php:745 libraries/server_synchronize.lib.php:1345 #: libraries/server_synchronize.lib.php:1371 #, fuzzy msgid "Remote server" msgstr "Вэб-сэрвэр" -#: libraries/messages.inc.php:750 +#: libraries/messages.inc.php:746 msgid "Remove CRLF characters within fields" msgstr "" -#: libraries/messages.inc.php:751 tbl_operations.php:676 +#: libraries/messages.inc.php:747 tbl_operations.php:676 msgid "Remove partitioning" msgstr "Скасаваць падзел на часткі" -#: libraries/messages.inc.php:752 server_privileges.php:1575 +#: libraries/messages.inc.php:748 server_privileges.php:1575 msgid "Remove selected users" msgstr "Выдаліць выбраных карыстальнікаў" -#: libraries/messages.inc.php:755 tbl_operations.php:338 +#: libraries/messages.inc.php:751 tbl_operations.php:338 msgid "Rename table to" msgstr "Перайменаваць табліцу ў" -#: libraries/messages.inc.php:756 view_operations.php:93 +#: libraries/messages.inc.php:752 view_operations.php:93 #, fuzzy msgid "Rename view to" msgstr "Перайменаваць табліцу ў" -#: libraries/messages.inc.php:757 tbl_operations.php:664 +#: libraries/messages.inc.php:753 tbl_operations.php:664 msgid "Repair" msgstr "Адрамантаваць" -#: libraries/messages.inc.php:759 +#: libraries/messages.inc.php:755 msgid "Replace NULL by" msgstr "Замяняць NULL на" -#: libraries/messages.inc.php:760 +#: libraries/messages.inc.php:756 msgid "Replace table data with file" msgstr "Замяніць дадзеныя табліцы дадзенымі з файла" -#: libraries/messages.inc.php:761 server_replication.php:228 +#: libraries/messages.inc.php:757 server_replication.php:228 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: libraries/messages.inc.php:762 libraries/replication_gui.lib.php:236 +#: libraries/messages.inc.php:758 libraries/replication_gui.lib.php:236 #: server_replication.php:194 msgid "Add slave replication user" msgstr "" -#: libraries/messages.inc.php:763 server_replication.php:74 +#: libraries/messages.inc.php:759 server_replication.php:74 #, php-format msgid "Master server changed succesfully to %s" msgstr "" -#: libraries/messages.inc.php:764 server_replication.php:182 +#: libraries/messages.inc.php:760 server_replication.php:182 msgid "This server is configured as master in a replication process." msgstr "" -#: libraries/messages.inc.php:765 server_replication.php:322 +#: libraries/messages.inc.php:761 server_replication.php:322 msgid "Control slave:" msgstr "" -#: libraries/messages.inc.php:766 server_replication.php:65 +#: libraries/messages.inc.php:762 server_replication.php:65 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: libraries/messages.inc.php:767 server_replication.php:58 +#: libraries/messages.inc.php:763 server_replication.php:58 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: libraries/messages.inc.php:768 server_replication.php:221 +#: libraries/messages.inc.php:764 server_replication.php:221 msgid "Replicate all databases; Ignore:" msgstr "" -#: libraries/messages.inc.php:769 server_replication.php:222 +#: libraries/messages.inc.php:765 server_replication.php:222 msgid "Ignore all databases; Replicate:" msgstr "" -#: libraries/messages.inc.php:770 server_replication.php:218 +#: libraries/messages.inc.php:766 server_replication.php:218 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -4969,122 +4969,122 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: libraries/messages.inc.php:771 server_replication.php:217 +#: libraries/messages.inc.php:767 server_replication.php:217 msgid "Master configuration" msgstr "" -#: libraries/messages.inc.php:772 server_replication.php:181 +#: libraries/messages.inc.php:768 server_replication.php:181 #: server_replication.php:209 msgid "Master replication" msgstr "" -#: libraries/messages.inc.php:774 server_replication.php:230 +#: libraries/messages.inc.php:770 server_replication.php:230 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: libraries/messages.inc.php:775 server_replication.php:225 +#: libraries/messages.inc.php:771 server_replication.php:225 #, fuzzy msgid "Please select databases:" msgstr "Калі ласка, выберыце базу дадзеных" -#: libraries/messages.inc.php:776 server_replication.php:210 +#: libraries/messages.inc.php:772 server_replication.php:210 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:188 +#: libraries/messages.inc.php:773 libraries/replication_gui.lib.php:188 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/messages.inc.php:778 server_replication.php:187 +#: libraries/messages.inc.php:774 server_replication.php:187 msgid "Show connected slaves" msgstr "" -#: libraries/messages.inc.php:779 libraries/messages.inc.php:885 +#: libraries/messages.inc.php:775 libraries/messages.inc.php:881 #: server_replication.php:184 server_status.php:281 #, fuzzy msgid "Show master status" msgstr "Паказаць стан залежных сэрвэраў" -#: libraries/messages.inc.php:780 server_replication.php:334 +#: libraries/messages.inc.php:776 server_replication.php:334 msgid "Skipping error(s) might lead into unsynchronized master and slave!" msgstr "" -#: libraries/messages.inc.php:781 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:51 #: server_replication.php:347 msgid "Change or reconfigure master server" msgstr "" -#: libraries/messages.inc.php:782 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:778 libraries/replication_gui.lib.php:51 msgid "Slave configuration" msgstr "" -#: libraries/messages.inc.php:783 server_replication.php:305 +#: libraries/messages.inc.php:779 server_replication.php:305 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: libraries/messages.inc.php:784 server_replication.php:332 +#: libraries/messages.inc.php:780 server_replication.php:332 msgid "Error management:" msgstr "" -#: libraries/messages.inc.php:785 server_replication.php:328 +#: libraries/messages.inc.php:781 server_replication.php:328 #, php-format msgid "IO Thread %s only" msgstr "" -#: libraries/messages.inc.php:786 server_replication.php:296 +#: libraries/messages.inc.php:782 server_replication.php:296 msgid "Slave IO Thread not running!" msgstr "" -#: libraries/messages.inc.php:787 server_replication.php:355 +#: libraries/messages.inc.php:783 server_replication.php:355 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/messages.inc.php:788 server_replication.php:326 +#: libraries/messages.inc.php:784 server_replication.php:326 msgid "Reset slave" msgstr "" -#: libraries/messages.inc.php:789 server_replication.php:308 +#: libraries/messages.inc.php:785 server_replication.php:308 msgid "See slave status table" msgstr "" -#: libraries/messages.inc.php:790 server_replication.php:336 +#: libraries/messages.inc.php:786 server_replication.php:336 msgid "Skip current error" msgstr "" -#: libraries/messages.inc.php:791 server_replication.php:340 +#: libraries/messages.inc.php:787 server_replication.php:340 msgid "errors." msgstr "" -#: libraries/messages.inc.php:792 server_replication.php:337 +#: libraries/messages.inc.php:788 server_replication.php:337 msgid "Skip next" msgstr "" -#: libraries/messages.inc.php:793 server_replication.php:248 +#: libraries/messages.inc.php:789 server_replication.php:248 msgid "Slave replication" msgstr "" -#: libraries/messages.inc.php:794 server_replication.php:293 +#: libraries/messages.inc.php:790 server_replication.php:293 msgid "Slave SQL Thread not running!" msgstr "" -#: libraries/messages.inc.php:795 server_replication.php:327 +#: libraries/messages.inc.php:791 server_replication.php:327 #, php-format msgid "SQL Thread %s only" msgstr "" -#: libraries/messages.inc.php:796 +#: libraries/messages.inc.php:792 #, php-format msgid "" "This MySQL server works as %s in replication process. For further " @@ -5092,161 +5092,161 @@ msgid "" "\"#replication\">replication section." msgstr "" -#: libraries/messages.inc.php:797 +#: libraries/messages.inc.php:793 #, fuzzy msgid "Master status" msgstr "Паказаць стан залежных сэрвэраў" -#: libraries/messages.inc.php:798 server_status.php:721 +#: libraries/messages.inc.php:794 server_status.php:721 #, fuzzy msgid "Replication status" msgstr "Рэплікацыя" -#: libraries/messages.inc.php:799 +#: libraries/messages.inc.php:795 #, fuzzy msgid "Slave status" msgstr "Паказаць стан залежных сэрвэраў" -#: libraries/messages.inc.php:800 server_replication.php:311 +#: libraries/messages.inc.php:796 server_replication.php:311 msgid "Synchronize databases with master" msgstr "" -#: libraries/messages.inc.php:801 server_replication.php:71 +#: libraries/messages.inc.php:797 server_replication.php:71 msgid "Unable to change master" msgstr "" -#: libraries/messages.inc.php:802 server_replication.php:51 +#: libraries/messages.inc.php:798 server_replication.php:51 msgid "Unknown error" msgstr "" -#: libraries/messages.inc.php:803 main.php:163 pdf_pages.php:344 +#: libraries/messages.inc.php:799 main.php:163 pdf_pages.php:344 #: setup/lib/FormDisplay.tpl.php:216 tbl_change.php:1175 msgid "Reset" msgstr "Скінуць" -#: libraries/messages.inc.php:804 server_privileges.php:591 +#: libraries/messages.inc.php:800 server_privileges.php:591 msgid "Resource limits" msgstr "Абмежаваньні рэсурсаў" -#: libraries/messages.inc.php:805 tbl_change.php:1209 +#: libraries/messages.inc.php:801 tbl_change.php:1209 #, php-format msgid "Restart insertion with %s rows" msgstr "Пачаць устаўку зноў з %s-га радку" -#: libraries/messages.inc.php:807 server_privileges.php:1578 +#: libraries/messages.inc.php:803 server_privileges.php:1578 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Ануляваць усе актыўныя прывілеі карыстальнікаў і пасьля выдаліць іх." -#: libraries/messages.inc.php:808 server_privileges.php:1176 +#: libraries/messages.inc.php:804 server_privileges.php:1176 #, php-format msgid "You have revoked the privileges for %s" msgstr "Вы анулявалі прывілеі для %s" -#: libraries/messages.inc.php:809 server_privileges.php:1333 +#: libraries/messages.inc.php:805 server_privileges.php:1333 msgid "Revoke" msgstr "Ануляваць" -#: libraries/messages.inc.php:810 libraries/mysql_charsets.lib.php:280 +#: libraries/messages.inc.php:806 libraries/mysql_charsets.lib.php:280 msgid "Romanian" msgstr "Румынская" -#: libraries/messages.inc.php:813 tbl_printview.php:404 tbl_structure.php:786 +#: libraries/messages.inc.php:809 tbl_printview.php:404 tbl_structure.php:786 msgid "Row length" msgstr "Даўжыня радка" -#: libraries/messages.inc.php:815 tbl_printview.php:414 tbl_structure.php:794 +#: libraries/messages.inc.php:811 tbl_printview.php:414 tbl_structure.php:794 msgid " Row size " msgstr " Памер радка " -#: libraries/messages.inc.php:821 tbl_printview.php:366 tbl_structure.php:726 +#: libraries/messages.inc.php:817 tbl_printview.php:366 tbl_structure.php:726 msgid "Row Statistics" msgstr "Статыстыка радку" -#: libraries/messages.inc.php:822 +#: libraries/messages.inc.php:818 #, php-format msgid "running on %s" msgstr "на %s" -#: libraries/messages.inc.php:824 libraries/sql_query_form.lib.php:223 +#: libraries/messages.inc.php:820 libraries/sql_query_form.lib.php:223 #, php-format msgid "Run SQL query/queries on server %s" msgstr "Выканаць SQL-запыт(ы) на сэрвэры %s" -#: libraries/messages.inc.php:825 libraries/sql_query_form.lib.php:240 +#: libraries/messages.inc.php:821 libraries/sql_query_form.lib.php:240 #: libraries/sql_query_form.lib.php:265 #, php-format msgid "Run SQL query/queries on database %s" msgstr "Выканаць SQL-запыт(ы) на базе дадзеных %s" -#: libraries/messages.inc.php:826 libraries/mysql_charsets.lib.php:337 +#: libraries/messages.inc.php:822 libraries/mysql_charsets.lib.php:337 msgid "Russian" msgstr "Расейская" -#: libraries/messages.inc.php:829 pmd_general.php:68 +#: libraries/messages.inc.php:825 pmd_general.php:68 msgid "Save position" msgstr "Захаваць разьмяшчэньне табліц" -#: libraries/messages.inc.php:830 libraries/tbl_properties.inc.php:776 +#: libraries/messages.inc.php:826 libraries/tbl_properties.inc.php:776 #: pdf_pages.php:484 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:214 setup/lib/FormDisplay.tpl.php:215 #: tbl_change.php:1126 tbl_indexes.php:248 tbl_relation.php:566 msgid "Save" msgstr "Захаваць" -#: libraries/messages.inc.php:831 +#: libraries/messages.inc.php:827 msgid "The scale factor is too small to fit the schema on one page" msgstr "Маштаб замалы для таго, каб схема займала ўсю старонку" -#: libraries/messages.inc.php:843 main.php:298 +#: libraries/messages.inc.php:839 main.php:298 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "Канфігурацыйнаму файлу зараз патрэбная сакрэтная фраза (blowfish_secret)." -#: libraries/messages.inc.php:844 navigation.php:353 navigation.php:516 +#: libraries/messages.inc.php:840 navigation.php:353 navigation.php:516 msgid "Please select a database" msgstr "Калі ласка, выберыце базу дадзеных" -#: libraries/messages.inc.php:846 server_binlog.php:120 +#: libraries/messages.inc.php:842 server_binlog.php:120 msgid "Select binary log to view" msgstr "Вылучыце двайковы лог для прагляду" -#: libraries/messages.inc.php:847 tbl_select.php:270 +#: libraries/messages.inc.php:843 tbl_select.php:270 msgid "Select fields (at least one):" msgstr "Выбраць палі (прынамсі адно):" -#: libraries/messages.inc.php:851 pdf_pages.php:320 +#: libraries/messages.inc.php:847 pdf_pages.php:320 msgid "Select Tables" msgstr "Выберыце табліцу(ы)" -#: libraries/messages.inc.php:853 server_status.php:404 +#: libraries/messages.inc.php:849 server_status.php:404 msgid "Sent" msgstr "Адпраўлена" -#: libraries/messages.inc.php:857 libraries/select_server.lib.php:45 +#: libraries/messages.inc.php:853 libraries/select_server.lib.php:45 #: setup/frames/index.inc.php:97 setup/lib/messages.inc.php:115 msgid "Servers" msgstr "Сэрвэры" -#: libraries/messages.inc.php:858 server_status.php:255 +#: libraries/messages.inc.php:854 server_status.php:255 msgid "Delayed inserts" msgstr "Адкладзеныя ўстаўкі" -#: libraries/messages.inc.php:859 server_status.php:46 +#: libraries/messages.inc.php:855 server_status.php:46 msgid "Runtime Information" msgstr "Бягучая інфармацыя" -#: libraries/messages.inc.php:860 server_status.php:350 +#: libraries/messages.inc.php:856 server_status.php:350 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Гэты сэрвэр MySQL працуе %s. Ён быў запушчаны %s." -#: libraries/messages.inc.php:861 libraries/server_links.inc.php:53 +#: libraries/messages.inc.php:857 libraries/server_links.inc.php:53 #: server_engines.php:112 server_engines.php:116 server_status.php:304 #: test/theme.php:105 msgid "Variables" msgstr "Зьменныя" -#: libraries/messages.inc.php:862 server_status.php:383 +#: libraries/messages.inc.php:858 server_status.php:383 msgid "" "Server traffic: These tables show the network traffic statistics of " "this MySQL server since its startup." @@ -5254,11 +5254,11 @@ msgstr "" "Трафік сэрвэра: Гэтыя табліцы паказваюць статыстыку сеткавага трафіку " "гэтага сэрвэра MySQL ад моманту ягонага запуску." -#: libraries/messages.inc.php:863 server_variables.php:35 +#: libraries/messages.inc.php:859 server_variables.php:35 msgid "Server variables and settings" msgstr "Налады і зьменныя сэрвэра" -#: libraries/messages.inc.php:865 main.php:290 +#: libraries/messages.inc.php:861 main.php:290 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -5266,7 +5266,7 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: libraries/messages.inc.php:866 +#: libraries/messages.inc.php:862 msgid "" "Cannot start session without errors, please check errors given in your PHP " "and/or webserver log file and configure your PHP installation properly." @@ -5275,11 +5275,11 @@ msgstr "" "логу PHP і, магчыма, таксама ў логу вэб-сэрвэра і сканфігуруйце PHP " "правільна." -#: libraries/messages.inc.php:867 server_variables.php:55 +#: libraries/messages.inc.php:863 server_variables.php:55 msgid "Session value" msgstr "Значэньне сэсіі" -#: libraries/messages.inc.php:868 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:864 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 " @@ -5291,45 +5291,45 @@ msgstr "" "зваротны слэш (\"\\\") або апостраф (\"'\") сярод гэтых значэньняў, пастаўце " "перад імі зваротны слэш (напрыклад, '\\\\xyz' або 'a\\'b')." -#: libraries/messages.inc.php:876 server_binlog.php:192 server_binlog.php:195 +#: libraries/messages.inc.php:872 server_binlog.php:192 server_binlog.php:195 #: server_processlist.php:49 server_processlist.php:51 msgid "Show Full Queries" msgstr "Паказаць поўныя запыты" -#: libraries/messages.inc.php:878 pmd_general.php:64 +#: libraries/messages.inc.php:874 pmd_general.php:64 msgid "Show/Hide left menu" msgstr "Паказаць/схаваць мэню зьлева" -#: libraries/messages.inc.php:880 sql.php:513 +#: libraries/messages.inc.php:876 sql.php:513 msgid "Showing as PHP code" msgstr "У выглядзе PHP-коду" -#: libraries/messages.inc.php:882 sql.php:516 tbl_replace.php:360 +#: libraries/messages.inc.php:878 sql.php:516 tbl_replace.php:360 msgid "Showing SQL query" msgstr "У выглядзе SQL-запыту" -#: libraries/messages.inc.php:883 tbl_change.php:1132 +#: libraries/messages.inc.php:879 tbl_change.php:1132 #, fuzzy msgid "Show insert query" msgstr "У выглядзе SQL-запыту" -#: libraries/messages.inc.php:886 server_status.php:273 +#: libraries/messages.inc.php:882 server_status.php:273 msgid "Show open tables" msgstr "Паказаць адкрытыя табліцы" -#: libraries/messages.inc.php:887 main.php:219 +#: libraries/messages.inc.php:883 main.php:219 msgid "Show PHP information" msgstr "Паказаць інфармацыю пра PHP" -#: libraries/messages.inc.php:889 server_status.php:278 +#: libraries/messages.inc.php:885 server_status.php:278 msgid "Show slave hosts" msgstr "Паказаць залежныя сэрвэры" -#: libraries/messages.inc.php:890 server_status.php:284 +#: libraries/messages.inc.php:886 server_status.php:284 msgid "Show slave status" msgstr "Паказаць стан залежных сэрвэраў" -#: libraries/messages.inc.php:891 +#: libraries/messages.inc.php:887 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -5339,12 +5339,12 @@ msgstr "" "якія перавысілі значэньне binlog_cache_size і выкарыстоўвалі часовы файл для " "захоўваньня выразаў транзакцыі." -#: libraries/messages.inc.php:892 +#: libraries/messages.inc.php:888 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Колькасьць транзакцыяў, якія выкарыстоўвалі часовы двайковы кэш запытаў." -#: libraries/messages.inc.php:893 +#: libraries/messages.inc.php:889 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -5356,11 +5356,11 @@ msgstr "" "павялічыць значэньне tmp_table_size, каб часовыя табліцы захоўваліся ў " "памяці, а не на дыску." -#: libraries/messages.inc.php:894 +#: libraries/messages.inc.php:890 msgid "How many temporary files mysqld has created." msgstr "Колькасьць часовых файлаў, створаных mysqld." -#: libraries/messages.inc.php:895 +#: libraries/messages.inc.php:891 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -5368,7 +5368,7 @@ msgstr "" "Колькасьць часовых табліц, разьмешчаных у памяці, якія былі аўтаматычна " "створаныя сэрвэрам падчас выкананьня выразаў." -#: libraries/messages.inc.php:896 +#: libraries/messages.inc.php:892 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -5376,7 +5376,7 @@ msgstr "" "Колькасьць радкоў, запісаных з INSERT DELAYED, з-за якіх адбыліся пэўныя " "памылкі (пэўна, дубляваныя ключы)." -#: libraries/messages.inc.php:897 +#: libraries/messages.inc.php:893 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -5385,23 +5385,23 @@ msgstr "" "Кожная табліца, на якой выконваецца INSERT DELAYED атрымлівае свой уласны " "паток." -#: libraries/messages.inc.php:898 +#: libraries/messages.inc.php:894 msgid "The number of INSERT DELAYED rows written." msgstr "Колькасьць запісаных INSERT DELAYED радкоў." -#: libraries/messages.inc.php:899 +#: libraries/messages.inc.php:895 msgid "The number of executed FLUSH statements." msgstr "Колькасьць выкананых FLUSH-выразаў." -#: libraries/messages.inc.php:900 +#: libraries/messages.inc.php:896 msgid "The number of internal COMMIT statements." msgstr "Колькасьць унутраных COMMIT-выразаў." -#: libraries/messages.inc.php:901 +#: libraries/messages.inc.php:897 msgid "The number of times a row was deleted from a table." msgstr "Колькасьць разоў выдаленьня радка з табліцы." -#: libraries/messages.inc.php:902 +#: libraries/messages.inc.php:898 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -5411,7 +5411,7 @@ msgstr "" "яна табліцу з дадзеным імем. Гэта называецца высьвятленьнем. " "Handler_discover паказвае колькасьць высьвятленьняў табліц." -#: libraries/messages.inc.php:903 +#: libraries/messages.inc.php:899 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -5422,7 +5422,7 @@ msgstr "" "сканаваньняў; напрыклад, SELECT col1 FROM foo, улічваючы, што col1 " "індэксаваная." -#: libraries/messages.inc.php:904 +#: libraries/messages.inc.php:900 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -5430,7 +5430,7 @@ msgstr "" "Колькасьць запытаў на чытаньне радка з выкарыстаньнем ключа. Калі яна " "вялікая, гэта добрая прыкмета таго, што запыты і табліцы добра індэксаваныя." -#: libraries/messages.inc.php:905 +#: libraries/messages.inc.php:901 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -5440,7 +5440,7 @@ msgstr "" "павялічваецца, калі выконваецца запыт на індэксаваную калёнку з шэрагам " "абмежаваньняў або калі адбываецца сканаваньне індэксаў." -#: libraries/messages.inc.php:906 +#: libraries/messages.inc.php:902 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -5448,7 +5448,7 @@ msgstr "" "Колькасьць запытаў чытаньня папярэдні радок у ключавым парадку. Гэты мэтад " "чытаньня выкарыстоўваецца пераважна для аптымізацыі ORDER BY ... DESC." -#: libraries/messages.inc.php:907 +#: libraries/messages.inc.php:903 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -5460,7 +5460,7 @@ msgstr "" "прысутнічае шмат запытаў, якія патрабуюць ад MySQL перагляд табліцы цалкам " "або выконваюцца аб'яднаньні, якія няправільна выкарыстоўваюць ключы." -#: libraries/messages.inc.php:908 +#: libraries/messages.inc.php:904 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -5472,37 +5472,37 @@ msgstr "" "што табліцы індэксаваныя няправільна або запыты не напісаныя так, каб " "выкарыстоўваць перавагі індэксаў." -#: libraries/messages.inc.php:909 +#: libraries/messages.inc.php:905 msgid "The number of internal ROLLBACK statements." msgstr "Колькасьць унутраных выразаў ROLLBACK." -#: libraries/messages.inc.php:910 +#: libraries/messages.inc.php:906 msgid "The number of requests to update a row in a table." msgstr "Колькасьць запытаў абнаўленьня радка ў табліцы." -#: libraries/messages.inc.php:911 +#: libraries/messages.inc.php:907 msgid "The number of requests to insert a row in a table." msgstr "Колькасьць запытаў устаўкі радка ў табліцу." -#: libraries/messages.inc.php:912 +#: libraries/messages.inc.php:908 msgid "The number of pages containing data (dirty or clean)." msgstr "" "Колькасьць старонак, якія ўтрымліваюць дадзеныя (зьмененых або нязьмененых)." -#: libraries/messages.inc.php:913 +#: libraries/messages.inc.php:909 msgid "The number of pages currently dirty." msgstr "Колькасьць зьмененых старонак." -#: libraries/messages.inc.php:914 +#: libraries/messages.inc.php:910 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" "Колькасьць старонак буфэрнага пулу, на якія быў атрыманы запыт на скід." -#: libraries/messages.inc.php:915 +#: libraries/messages.inc.php:911 msgid "The number of free pages." msgstr "Колькасьць вольных старонак." -#: libraries/messages.inc.php:916 +#: libraries/messages.inc.php:912 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -5512,7 +5512,7 @@ msgstr "" "старонкі, якія ў бягучы момант чытаюцца ці запісваюцца або якія ня могуць " "быць скінутыя ці выдаленыя з-за пэўнай прычыны." -#: libraries/messages.inc.php:917 +#: libraries/messages.inc.php:913 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -5525,11 +5525,11 @@ msgstr "" "Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data." -#: libraries/messages.inc.php:918 +#: libraries/messages.inc.php:914 msgid "Total size of buffer pool, in pages." msgstr "Агульны памер буфэрнага пулу, у старонках." -#: libraries/messages.inc.php:919 +#: libraries/messages.inc.php:915 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -5538,7 +5538,7 @@ msgstr "" "адбываецца, калі запыт праглядае значную частку табліцы, але ў выпадковым " "парадку." -#: libraries/messages.inc.php:920 +#: libraries/messages.inc.php:916 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -5546,11 +5546,11 @@ msgstr "" "Колькасьць пасьлядоўных папярэдніх чытаньняў, зробленых InnoDB. Гэта " "адбываецца, калі InnoDB выконвае пасьлядоўны поўны прагляд табліцы." -#: libraries/messages.inc.php:921 +#: libraries/messages.inc.php:917 msgid "The number of logical read requests InnoDB has done." msgstr "Колькасьць лягічных запытаў чытаньня, зробленых InnoDB." -#: libraries/messages.inc.php:922 +#: libraries/messages.inc.php:918 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -5558,7 +5558,7 @@ msgstr "" "Колькасьць лягічных чытаньняў, якія InnoDB не змагла аднавіць з буфэрнага " "пулу, а таму зрабіла аднастаронкавае чытаньне." -#: libraries/messages.inc.php:923 +#: libraries/messages.inc.php:919 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -5572,55 +5572,55 @@ msgstr "" "падлічвае колькасьць такіх чаканьняў. Калі памер буфэру быў вызначаны " "правільна, гэтае значэньне мусіць быць маленькім." -#: libraries/messages.inc.php:924 +#: libraries/messages.inc.php:920 msgid "The number writes done to the InnoDB buffer pool." msgstr "Колькасьць запісаў, зробленых у буфэрны пул InnoDB." -#: libraries/messages.inc.php:925 +#: libraries/messages.inc.php:921 msgid "The number of fsync() operations so far." msgstr "Колькасьць апэрацыяў fsync() на бягучы момант." -#: libraries/messages.inc.php:926 +#: libraries/messages.inc.php:922 msgid "The current number of pending fsync() operations." msgstr "Бягучая колькасьць апэрацыяў fsync(), якія чакаюць выкананьня." -#: libraries/messages.inc.php:927 +#: libraries/messages.inc.php:923 msgid "The current number of pending reads." msgstr "Бягучая колькасьць чытаньняў, якія чакаюць выкананьня." -#: libraries/messages.inc.php:928 +#: libraries/messages.inc.php:924 msgid "The current number of pending writes." msgstr "Бягучая колькасьць запісаў, якія чакаюць выкананьня." -#: libraries/messages.inc.php:929 +#: libraries/messages.inc.php:925 msgid "The amount of data read so far, in bytes." msgstr "Колькасьць прачытаных на бягучы момант дадзеных, у байтах." -#: libraries/messages.inc.php:930 +#: libraries/messages.inc.php:926 msgid "The total number of data reads." msgstr "Агульная колькасьць чытаньняў дадзеных." -#: libraries/messages.inc.php:931 +#: libraries/messages.inc.php:927 msgid "The total number of data writes." msgstr "Агульная колькасьць запісаў дадзеных." -#: libraries/messages.inc.php:932 +#: libraries/messages.inc.php:928 msgid "The amount of data written so far, in bytes." msgstr "Колькасьць запісаных на бягучы момант дадзеных, у байтах." -#: libraries/messages.inc.php:933 +#: libraries/messages.inc.php:929 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Колькасьць падвойных запісаў, якія былі выкананыя, і колькасьць старонак, " "якія былі запісаныя для гэтай мэты." -#: libraries/messages.inc.php:934 +#: libraries/messages.inc.php:930 msgid "The number of doublewrite operations that have been performed." msgstr "" "Колькасьць падвойных запісаў, якія былі выкананыя, і колькасьць старонак, " "якія былі запісаныя для гэтай мэты." -#: libraries/messages.inc.php:935 +#: libraries/messages.inc.php:931 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -5628,35 +5628,35 @@ msgstr "" "Колькасьць выпадкаў чаканьня з-за таго, што буфэр логу быў занадта малы, і " "таму давялося чакаць, пакуль ён не ачысьціцца." -#: libraries/messages.inc.php:936 +#: libraries/messages.inc.php:932 msgid "The number of log write requests." msgstr "Колькасьць запісаў у лог." -#: libraries/messages.inc.php:937 +#: libraries/messages.inc.php:933 msgid "The number of physical writes to the log file." msgstr "Колькасьць фізычна выкананых запісаў у лог-файл." -#: libraries/messages.inc.php:938 +#: libraries/messages.inc.php:934 msgid "The number of fsync() writes done to the log file." msgstr "Колькасьць сынхранізавыных запісаў, зробленых у лог-файл." -#: libraries/messages.inc.php:939 +#: libraries/messages.inc.php:935 msgid "The number of pending log file fsyncs." msgstr "Колькасьць сынхранізаваньняў лог-файла, якія чакаюць выкананьня." -#: libraries/messages.inc.php:940 +#: libraries/messages.inc.php:936 msgid "Pending log file writes." msgstr "Колькасьць запісаў у лог-файл, якія чакаюць выкананьня." -#: libraries/messages.inc.php:941 +#: libraries/messages.inc.php:937 msgid "The number of bytes written to the log file." msgstr "Колькасьць байтаў, запісаных у лог-файл." -#: libraries/messages.inc.php:942 +#: libraries/messages.inc.php:938 msgid "The number of pages created." msgstr "Колькасьць створаных старонак." -#: libraries/messages.inc.php:943 +#: libraries/messages.inc.php:939 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -5664,55 +5664,55 @@ msgstr "" "Памер закампіляванай старонкі InnoDB (па змоўчаньні 16КБ). Пэўныя велічыні " "вымяраюцца ў старонках; памер старонкі дазваляе хутка перавесьці яго ў байты." -#: libraries/messages.inc.php:944 +#: libraries/messages.inc.php:940 msgid "The number of pages read." msgstr "Колькасьць прачытаных старонак." -#: libraries/messages.inc.php:945 +#: libraries/messages.inc.php:941 msgid "The number of pages written." msgstr "Колькасьць запісаных старонак." -#: libraries/messages.inc.php:946 +#: libraries/messages.inc.php:942 msgid "The number of row locks currently being waited for." msgstr "" "Колькасьць блякаваньняў радкоў, чаканьне якіх адбываецца на бягучы момант." -#: libraries/messages.inc.php:947 +#: libraries/messages.inc.php:943 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Сярэдні час атрыманьня магчымасьці блякаваньня радку, у мілісэкундах." -#: libraries/messages.inc.php:948 +#: libraries/messages.inc.php:944 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" "Агульны час чаканьня атрыманьня магчымасьці блякаваньня радку, у " "мілісэкундах." -#: libraries/messages.inc.php:949 +#: libraries/messages.inc.php:945 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" "Максымальны час атраманьня магчымасьці блякаваньня радку, у мілісэкундах." -#: libraries/messages.inc.php:950 +#: libraries/messages.inc.php:946 msgid "The number of times a row lock had to be waited for." msgstr "Колькасьць разоў, калі даводзілася чакаць блякаваньне радку." -#: libraries/messages.inc.php:951 +#: libraries/messages.inc.php:947 msgid "The number of rows deleted from InnoDB tables." msgstr "Колькасьць радкоў, выдаленых з табліц InnoDB." -#: libraries/messages.inc.php:952 +#: libraries/messages.inc.php:948 msgid "The number of rows inserted in InnoDB tables." msgstr "Колькасьць радкоў, устаўленых у табліцы InnoDB." -#: libraries/messages.inc.php:953 +#: libraries/messages.inc.php:949 msgid "The number of rows read from InnoDB tables." msgstr "Колькась радкоў, прачытаных з табліц InnoDB." -#: libraries/messages.inc.php:954 +#: libraries/messages.inc.php:950 msgid "The number of rows updated in InnoDB tables." msgstr "Колькасьць радкоў, абноўленых у табліцах InnoDB." -#: libraries/messages.inc.php:955 +#: libraries/messages.inc.php:951 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -5720,7 +5720,7 @@ msgstr "" "Колькасьць блёкаў у кэшы ключоў, якія былі зьмененыя, але яшчэ не былі " "скінутыя на дыск. Выкарыстоўваецца як значэньне Not_flushed_key_blocks." -#: libraries/messages.inc.php:956 +#: libraries/messages.inc.php:952 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -5728,7 +5728,7 @@ msgstr "" "Колькасьць нявыкарыстаных блёкаў у кэшы ключоў. Гэтае значэньне можна " "выкарыстоўваць для вызначэньня ступені выкарыстаньня кэшу ключоў." -#: libraries/messages.inc.php:957 +#: libraries/messages.inc.php:953 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -5738,11 +5738,11 @@ msgstr "" "ступеньню пэўнасьці сьведчыць пра максымальную за ўвесь час колькасьць " "блёкаў, якія выкарастоўваліся адначасова." -#: libraries/messages.inc.php:958 +#: libraries/messages.inc.php:954 msgid "The number of requests to read a key block from the cache." msgstr "Колькасьць запытаў на чытаньне блёку ключоў з кэшу." -#: libraries/messages.inc.php:959 +#: libraries/messages.inc.php:955 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -5752,15 +5752,15 @@ msgstr "" "вялікае, значэньне key_buffer_size, відаць, вельмі малое. Колькасьць " "промахаў у кэш можна вылічыць як Key_reads/Key_read_requests." -#: libraries/messages.inc.php:960 +#: libraries/messages.inc.php:956 msgid "The number of requests to write a key block to the cache." msgstr "Колькасьць запытаў на запіс блёку ключоў у кэш." -#: libraries/messages.inc.php:961 +#: libraries/messages.inc.php:957 msgid "The number of physical writes of a key block to disk." msgstr "Колькасьць фізычных запісаў блёку ключоў на дыск." -#: libraries/messages.inc.php:962 +#: libraries/messages.inc.php:958 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -5771,11 +5771,11 @@ msgstr "" "Значэньне па змоўчаньні 0 азначае, што ніводны запыт яшчэ ня быў " "зкампіляваны." -#: libraries/messages.inc.php:963 +#: libraries/messages.inc.php:959 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Колькасьць радкоў для запісу, адкладзеных запытамі INSERT DELAYED." -#: libraries/messages.inc.php:964 +#: libraries/messages.inc.php:960 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -5783,36 +5783,36 @@ msgstr "" "Колькасьць табліц, якія былі адкрытыя. Калі адкрытыя табліцы вялікія, " "значэньне кэшу табліц імаверна вельмі малое." -#: libraries/messages.inc.php:965 +#: libraries/messages.inc.php:961 msgid "The number of files that are open." msgstr "Колькасьць адкрытых файлаў." -#: libraries/messages.inc.php:966 +#: libraries/messages.inc.php:962 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Колькасьць адкрытых патокаў (выкарыстоўваюцца пераважна для лагаваньня)." -#: libraries/messages.inc.php:967 +#: libraries/messages.inc.php:963 msgid "The number of tables that are open." msgstr "Колькасьць адкрытых табліц." -#: libraries/messages.inc.php:968 +#: libraries/messages.inc.php:964 msgid "The number of free memory blocks in query cache." msgstr "Колькасьць вольных блёкаў памяці ў кэшы запытаў." -#: libraries/messages.inc.php:969 +#: libraries/messages.inc.php:965 msgid "The amount of free memory for query cache." msgstr "Колькасьць вольнай памяці для кэшу запытаў." -#: libraries/messages.inc.php:970 +#: libraries/messages.inc.php:966 msgid "The number of cache hits." msgstr "Колькасьць зваротаў да кэшу." -#: libraries/messages.inc.php:971 +#: libraries/messages.inc.php:967 msgid "The number of queries added to the cache." msgstr "Колькасьць запытаў, якія былі даданыя ў кэш." -#: libraries/messages.inc.php:972 +#: libraries/messages.inc.php:968 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -5825,7 +5825,7 @@ msgstr "" "выкарыстоўваўся найменш (LRU) для вызначэньня, якія запыты трэба выдаляць з " "кэшу." -#: libraries/messages.inc.php:973 +#: libraries/messages.inc.php:969 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -5833,24 +5833,24 @@ msgstr "" "Колькасьць некэшавальных запытаў (некэшавальных або некэшаваных з-за " "значэньня дырэктывы query_cache_type)." -#: libraries/messages.inc.php:974 +#: libraries/messages.inc.php:970 msgid "The number of queries registered in the cache." msgstr "Колькасьць запытаў, якія прысутнічаюць у кэшы." -#: libraries/messages.inc.php:975 +#: libraries/messages.inc.php:971 msgid "The total number of blocks in the query cache." msgstr "Агульная колькасьць блёкаў у кэшы запытыў." -#: libraries/messages.inc.php:976 +#: libraries/messages.inc.php:972 msgctxt "$strShowStatusReset" msgid "Reset" msgstr "Скінуць статыстыку" -#: libraries/messages.inc.php:977 +#: libraries/messages.inc.php:973 msgid "The status of failsafe replication (not yet implemented)." msgstr "Стан абароненай ад памылак рэплікацыі (яшчэ не рэалізаваная)." -#: libraries/messages.inc.php:978 +#: libraries/messages.inc.php:974 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -5858,13 +5858,13 @@ msgstr "" "Колькасьць аб'яднаньняў, якія не выкарыстоўвяюць індэксы. Калі гэтае " "значэньне ня роўнае 0, варта праверыць індэксы ў табліцах." -#: libraries/messages.inc.php:979 +#: libraries/messages.inc.php:975 msgid "The number of joins that used a range search on a reference table." msgstr "" "Колькасьць аб'яднаньняў, якія выкарыстоўвалі пошук па масцы ў мэтавай " "табліцы." -#: libraries/messages.inc.php:980 +#: libraries/messages.inc.php:976 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -5873,7 +5873,7 @@ msgstr "" "ключа пасьля кожнага радка. (Калі гэтае значэньне ня роўнае 0, варта " "праверыць індэксы ў табліцах.)" -#: libraries/messages.inc.php:981 +#: libraries/messages.inc.php:977 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -5881,17 +5881,17 @@ msgstr "" "Колькасьць аб'яднаньняў, якія выкарыстоўвалі спалучэньні палёў у першай " "табліцы. (Звычайна не крытычна, нават калі гэтае значэньне вялікае.)" -#: libraries/messages.inc.php:982 +#: libraries/messages.inc.php:978 msgid "The number of joins that did a full scan of the first table." msgstr "Колькасьць аб'яднаньняў, якія правялі поўны прагляд першай табліцы." -#: libraries/messages.inc.php:983 +#: libraries/messages.inc.php:979 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "Колькасьць часовых табліц, якія ў бягучы момант адкрытыя залежным SQL-" "патокам." -#: libraries/messages.inc.php:984 +#: libraries/messages.inc.php:980 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -5899,13 +5899,13 @@ msgstr "" "Агульная (ад загрузкі) колькасьць разоў, калі залежны SQL-паток рэплікацыі " "паўтараў транзакцыі." -#: libraries/messages.inc.php:985 +#: libraries/messages.inc.php:981 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Гэтае значэньне роўнае \"ON\", калі сэрвэр зьяўляецца залежным і падлучаным " "да сэрвэра, які яго кантралюе." -#: libraries/messages.inc.php:986 +#: libraries/messages.inc.php:982 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -5913,14 +5913,14 @@ msgstr "" "Колькасьць патокаў, якім спатрэбілася больш за slow_launch_time сэкундаў для " "стварэньня." -#: libraries/messages.inc.php:987 +#: libraries/messages.inc.php:983 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "Колькасьць запытаў, на выканантне якіх спатрэбілася больш, чым " "long_query_time сэкундаў." -#: libraries/messages.inc.php:988 +#: libraries/messages.inc.php:984 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -5930,25 +5930,25 @@ msgstr "" "значэньне вялікае, варта разгледзіць павелічэньне значэньня сыстэмнай " "зьменнай sort_buffer_size." -#: libraries/messages.inc.php:989 +#: libraries/messages.inc.php:985 msgid "The number of sorts that were done with ranges." msgstr "" "Колькасьць сартаваньняў, якія былі зробленыя з выкарыстаньнем некалькіх " "слупкоў." -#: libraries/messages.inc.php:990 +#: libraries/messages.inc.php:986 msgid "The number of sorted rows." msgstr "Колькасьць адсартаваных радкоў." -#: libraries/messages.inc.php:991 +#: libraries/messages.inc.php:987 msgid "The number of sorts that were done by scanning the table." msgstr "Колькасьць сартаваньняў, якія былі зробленыя падчас прагляду табліцы." -#: libraries/messages.inc.php:992 +#: libraries/messages.inc.php:988 msgid "The number of times that a table lock was acquired immediately." msgstr "Колькасьць разоў, калі блякаваньне табліцы было зробленае імгненна." -#: libraries/messages.inc.php:993 +#: libraries/messages.inc.php:989 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -5960,7 +5960,7 @@ msgstr "" "існуюць праблемы з прадукцыйнасьцю, варта спачатку аптымізаваць запыты, а " "пасьля або падзяліць табліцу або табліцы, або выкарыстоўваць рэплікацыю." -#: libraries/messages.inc.php:994 +#: libraries/messages.inc.php:990 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -5970,11 +5970,11 @@ msgstr "" "вылічаная як Threads_created/Connections. Калі гэтае значэньне пафарбаванае " "ў чырвоны колер, варта павялічыць значэньне thread_cache_size." -#: libraries/messages.inc.php:995 +#: libraries/messages.inc.php:991 msgid "The number of currently open connections." msgstr "Колькасьць адкрытых на бягучы момант злучэньняў." -#: libraries/messages.inc.php:996 +#: libraries/messages.inc.php:992 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -5986,74 +5986,74 @@ msgstr "" "thread_cache_size. (Звычайна, гэта не дае якога-небудзь заўважнага " "павелічэньня прадукцыйнасьці, калі прысутнічае добрая рэалізацыя патокаў.)" -#: libraries/messages.inc.php:997 +#: libraries/messages.inc.php:993 msgid "The number of threads that are not sleeping." msgstr "Колькасьць патокаў, якія не зьяўляюцца сьпячымі." -#: libraries/messages.inc.php:999 tbl_printview.php:75 +#: libraries/messages.inc.php:995 tbl_printview.php:75 msgid "Show tables" msgstr "Паказаць табліцы" -#: libraries/messages.inc.php:1000 libraries/sql_query_form.lib.php:396 +#: libraries/messages.inc.php:996 libraries/sql_query_form.lib.php:396 msgid " Show this query here again " msgstr " Паказаць гэты запыт зноў " -#: libraries/messages.inc.php:1001 libraries/mysql_charsets.lib.php:217 +#: libraries/messages.inc.php:997 libraries/mysql_charsets.lib.php:217 #: libraries/mysql_charsets.lib.php:342 msgid "Simplified Chinese" msgstr "Кітайская спрошчаная" -#: libraries/messages.inc.php:1002 tbl_operations.php:258 +#: libraries/messages.inc.php:998 tbl_operations.php:258 msgid "(singly)" msgstr "(асобна)" -#: libraries/messages.inc.php:1005 libraries/replication_gui.lib.php:52 +#: libraries/messages.inc.php:1001 libraries/replication_gui.lib.php:52 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" msgstr "" -#: libraries/messages.inc.php:1006 libraries/mysql_charsets.lib.php:283 +#: libraries/messages.inc.php:1002 libraries/mysql_charsets.lib.php:283 msgid "Slovak" msgstr "Славацкая" -#: libraries/messages.inc.php:1007 libraries/mysql_charsets.lib.php:286 +#: libraries/messages.inc.php:1003 libraries/mysql_charsets.lib.php:286 msgid "Slovenian" msgstr "Славенская" -#: libraries/messages.inc.php:1008 pmd_general.php:95 +#: libraries/messages.inc.php:1004 pmd_general.php:95 msgid "Small/Big All" msgstr "Згарнуць/разгарнуць адлюстраваньне ўсіх табліц" -#: libraries/messages.inc.php:1009 pmd_general.php:91 +#: libraries/messages.inc.php:1005 pmd_general.php:91 msgid "Snap to grid" msgstr "Зьвяць зь сеткай" -#: libraries/messages.inc.php:1011 server_synchronize.php:1167 +#: libraries/messages.inc.php:1007 server_synchronize.php:1167 msgid "Socket" msgstr "" -#: libraries/messages.inc.php:1013 server_status.php:259 +#: libraries/messages.inc.php:1009 server_status.php:259 msgid "Sorting" msgstr "Сартаваньне" -#: libraries/messages.inc.php:1015 tbl_printview.php:310 tbl_structure.php:657 +#: libraries/messages.inc.php:1011 tbl_printview.php:310 tbl_structure.php:657 msgid "Space usage" msgstr "Выкарыстаньне прасторы" -#: libraries/messages.inc.php:1016 libraries/mysql_charsets.lib.php:289 +#: libraries/messages.inc.php:1012 libraries/mysql_charsets.lib.php:289 msgid "Spanish" msgstr "Гішпанская" -#: libraries/messages.inc.php:1019 +#: libraries/messages.inc.php:1015 msgid "Export type" msgstr "Тып экспарту" -#: libraries/messages.inc.php:1020 +#: libraries/messages.inc.php:1016 msgid "Export time in UTC" msgstr "" -#: libraries/messages.inc.php:1021 libraries/sqlparser.lib.php:173 +#: libraries/messages.inc.php:1017 libraries/sqlparser.lib.php:173 msgid "" "There is a chance that you may have found a bug in the SQL parser. Please " "examine your query closely, and check that the quotes are correct and not " @@ -6076,7 +6076,7 @@ msgstr "" "запыту, які выклікае памылку, і адпраўце паведамленьне пра памылку з блёкам " "дадзеных, пададзеных у сэкыці CUT ніжэй:" -#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:137 +#: libraries/messages.inc.php:1018 libraries/sqlparser.lib.php:137 msgid "" "There seems to be an error in your SQL query. The MySQL server error output " "below, if there is any, may also help you in diagnosing the problem" @@ -6085,33 +6085,33 @@ msgstr "" "MySQL прыведзенае ніжэй, магчыма, таксама дапаможа вам высьветліць прычыну " "памылкі" -#: libraries/messages.inc.php:1026 libraries/sqlparser.lib.php:495 +#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:495 msgid "Invalid Identifer" msgstr "Няправільны ідэнтыфікатар" -#: libraries/messages.inc.php:1027 libraries/sqlparser.lib.php:344 +#: libraries/messages.inc.php:1023 libraries/sqlparser.lib.php:344 msgid "Unclosed quote" msgstr "Незакрытае двукосьсе" -#: libraries/messages.inc.php:1028 libraries/sqlparser.lib.php:612 +#: libraries/messages.inc.php:1024 libraries/sqlparser.lib.php:612 msgid "Unknown Punctuation String" msgstr "Невядомы сымбаль пунктуацыі" -#: libraries/messages.inc.php:1030 server_replication.php:327 +#: libraries/messages.inc.php:1026 server_replication.php:327 #: server_replication.php:328 #, fuzzy msgid "Start" msgstr "Суб" -#: libraries/messages.inc.php:1033 tbl_printview.php:369 tbl_structure.php:729 +#: libraries/messages.inc.php:1029 tbl_printview.php:369 tbl_structure.php:729 msgid "Statements" msgstr "Выразы" -#: libraries/messages.inc.php:1034 tbl_printview.php:380 tbl_structure.php:741 +#: libraries/messages.inc.php:1030 tbl_printview.php:380 tbl_structure.php:741 msgid "static" msgstr "" -#: libraries/messages.inc.php:1035 server_status.php:388 +#: libraries/messages.inc.php:1031 server_status.php:388 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -6119,43 +6119,43 @@ msgstr "" "На загружаным сэрвэры байтавыя лічыльнікі могуць пераскокваць кола, таму " "статыстыка, якую паказвае MySQL-сэрвэр, можа быць няправільнай." -#: libraries/messages.inc.php:1038 server_replication.php:327 +#: libraries/messages.inc.php:1034 server_replication.php:327 #: server_replication.php:328 msgid "Stop" msgstr "" -#: libraries/messages.inc.php:1039 server_engines.php:49 +#: libraries/messages.inc.php:1035 server_engines.php:49 msgid "Storage Engines" msgstr "Машыны захаваньня дадзеных" -#: libraries/messages.inc.php:1040 libraries/tbl_properties.inc.php:726 +#: libraries/messages.inc.php:1036 libraries/tbl_properties.inc.php:726 #: server_engines.php:58 tbl_operations.php:353 msgid "Storage Engine" msgstr "Машына захаваньня дадзеных" -#: libraries/messages.inc.php:1042 +#: libraries/messages.inc.php:1038 msgid "CSV for MS Excel" msgstr "CSV для дадзеных MS Excel" -#: libraries/messages.inc.php:1044 tbl_structure.php:516 tbl_structure.php:518 +#: libraries/messages.inc.php:1040 tbl_structure.php:516 tbl_structure.php:518 msgid "Propose table structure" msgstr "Прапанаваная структура табліцы" -#: libraries/messages.inc.php:1045 server_synchronize.php:424 +#: libraries/messages.inc.php:1041 server_synchronize.php:424 #: server_synchronize.php:867 #, fuzzy msgid "Structure Difference" msgstr "Структура для прагляду" -#: libraries/messages.inc.php:1049 server_synchronize.php:265 +#: libraries/messages.inc.php:1045 server_synchronize.php:265 msgid "Structure Synchronization" msgstr "" -#: libraries/messages.inc.php:1050 libraries/sql_query_form.lib.php:462 +#: libraries/messages.inc.php:1046 libraries/sql_query_form.lib.php:462 msgid "Submit" msgstr "Адправіць" -#: libraries/messages.inc.php:1052 main.php:358 +#: libraries/messages.inc.php:1048 main.php:358 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -6164,160 +6164,160 @@ msgstr "" "На сэрвэры запушчаны Suhosin. Калі ласка, зьвярніцеся да %sдакумэнтацыі%s " "для атрыманьня апісаньня магчымых праблемаў." -#: libraries/messages.inc.php:1054 libraries/mysql_charsets.lib.php:295 +#: libraries/messages.inc.php:1050 libraries/mysql_charsets.lib.php:295 #: libraries/mysql_charsets.lib.php:392 msgid "Swedish" msgstr "Швэдзкая" -#: libraries/messages.inc.php:1060 tbl_operations.php:556 +#: libraries/messages.inc.php:1056 tbl_operations.php:556 msgid "Switch to copied table" msgstr "Перайсьці да скапіяванай табліцы" -#: libraries/messages.inc.php:1061 server_synchronize.php:1213 +#: libraries/messages.inc.php:1057 server_synchronize.php:1213 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." msgstr "" -#: libraries/messages.inc.php:1062 server_synchronize.php:451 +#: libraries/messages.inc.php:1058 server_synchronize.php:451 #: server_synchronize.php:896 msgid "Synchronize Databases" msgstr "" -#: libraries/messages.inc.php:1063 libraries/server_links.inc.php:92 +#: libraries/messages.inc.php:1059 libraries/server_links.inc.php:92 #: server_synchronize.php:1092 server_synchronize.php:1100 msgid "Synchronize" msgstr "" -#: libraries/messages.inc.php:1065 server_synchronize.php:430 +#: libraries/messages.inc.php:1061 server_synchronize.php:430 #: server_synchronize.php:873 msgid "Add column(s)" msgstr "" -#: libraries/messages.inc.php:1066 tbl_create.php:62 +#: libraries/messages.inc.php:1062 tbl_create.php:62 #, php-format msgid "Table %s already exists!" msgstr "Табліца %s ужо існуе!" -#: libraries/messages.inc.php:1067 server_synchronize.php:432 +#: libraries/messages.inc.php:1063 server_synchronize.php:432 #: server_synchronize.php:875 msgid "Alter column(s)" msgstr "" -#: libraries/messages.inc.php:1068 tbl_addfield.php:189 tbl_alter.php:103 +#: libraries/messages.inc.php:1064 tbl_addfield.php:189 tbl_alter.php:103 #: tbl_indexes.php:98 #, php-format msgid "Table %1$s has been altered successfully" msgstr "Табліца %1$s была пасьпяхова зьмененая" -#: libraries/messages.inc.php:1069 server_synchronize.php:434 +#: libraries/messages.inc.php:1065 server_synchronize.php:434 #: server_synchronize.php:877 msgid "Apply index(s)" msgstr "" -#: libraries/messages.inc.php:1071 server_synchronize.php:446 +#: libraries/messages.inc.php:1067 server_synchronize.php:446 #: server_synchronize.php:890 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: libraries/messages.inc.php:1072 tbl_move_copy.php:82 +#: libraries/messages.inc.php:1068 tbl_move_copy.php:82 msgid "The table name is empty!" msgstr "Пустая назва табліцы!" -#: libraries/messages.inc.php:1073 tbl_create.php:249 +#: libraries/messages.inc.php:1069 tbl_create.php:249 #, php-format msgid "Table %1$s has been created." msgstr "Табліца %1$s створаная." -#: libraries/messages.inc.php:1076 tbl_operations.php:628 +#: libraries/messages.inc.php:1072 tbl_operations.php:628 #, php-format msgid "Table %s has been flushed" msgstr "Кэш табліцы %s быў ачышчаны" -#: libraries/messages.inc.php:1077 server_synchronize.php:436 +#: libraries/messages.inc.php:1073 server_synchronize.php:436 #: server_synchronize.php:879 msgid "Insert row(s)" msgstr "" -#: libraries/messages.inc.php:1078 libraries/tbl_links.inc.php:107 +#: libraries/messages.inc.php:1074 libraries/tbl_links.inc.php:107 #: libraries/tbl_links.inc.php:140 libraries/tbl_links.inc.php:141 msgid "Table seems to be empty!" msgstr "Табліца — пустая!" -#: libraries/messages.inc.php:1079 tbl_operations.php:568 +#: libraries/messages.inc.php:1075 tbl_operations.php:568 msgid "Table maintenance" msgstr "Абслугоўваньне табліцы" -#: libraries/messages.inc.php:1080 libraries/tbl_properties.inc.php:618 +#: libraries/messages.inc.php:1076 libraries/tbl_properties.inc.php:618 #: server_synchronize.php:428 server_synchronize.php:871 msgid "Table name" msgstr "Імя табліцы" -#: libraries/messages.inc.php:1081 pdf_schema.php:1116 +#: libraries/messages.inc.php:1077 pdf_schema.php:1116 msgid "Table of contents" msgstr "Зьмест" -#: libraries/messages.inc.php:1082 tbl_operations.php:334 +#: libraries/messages.inc.php:1078 tbl_operations.php:334 msgid "Table options" msgstr "Опцыі табліцы" -#: libraries/messages.inc.php:1083 server_synchronize.php:431 +#: libraries/messages.inc.php:1079 server_synchronize.php:431 #: server_synchronize.php:874 msgid "Remove column(s)" msgstr "" -#: libraries/messages.inc.php:1084 server_synchronize.php:433 +#: libraries/messages.inc.php:1080 server_synchronize.php:433 #: server_synchronize.php:876 msgid "Remove index(s)" msgstr "" -#: libraries/messages.inc.php:1088 server_synchronize.php:435 +#: libraries/messages.inc.php:1084 server_synchronize.php:435 #: server_synchronize.php:878 msgid "Update row(s)" msgstr "" -#: libraries/messages.inc.php:1090 server_synchronize.php:942 +#: libraries/messages.inc.php:1086 server_synchronize.php:942 msgid "Target database has been synchronized with source database" msgstr "" -#: libraries/messages.inc.php:1091 server_privileges.php:392 +#: libraries/messages.inc.php:1087 server_privileges.php:392 #: server_privileges.php:527 server_privileges.php:1679 #: server_privileges.php:1685 msgid "Table-specific privileges" msgstr "Прывілеі, спэцыфічныя для табліцы" -#: libraries/messages.inc.php:1092 server_status.php:254 +#: libraries/messages.inc.php:1088 server_status.php:254 msgid "Temporary data" msgstr "Часовыя дадзеныя" -#: libraries/messages.inc.php:1093 tbl_change.php:728 +#: libraries/messages.inc.php:1089 tbl_change.php:728 msgid " Because of its length,
this field might not be editable " msgstr " З-за вялікай даўжыні,
гэтае поле ня можа быць адрэдагаванае " -#: libraries/messages.inc.php:1094 +#: libraries/messages.inc.php:1090 msgid "Texy! text" msgstr "Тэкст Texy!" -#: libraries/messages.inc.php:1095 libraries/mysql_charsets.lib.php:298 +#: libraries/messages.inc.php:1091 libraries/mysql_charsets.lib.php:298 #: libraries/mysql_charsets.lib.php:395 msgid "Thai" msgstr "Тайляндзкая" -#: libraries/messages.inc.php:1102 libraries/replication_gui.lib.php:308 +#: libraries/messages.inc.php:1098 libraries/replication_gui.lib.php:308 #: server_privileges.php:734 msgid "This Host" msgstr "Гэты хост" -#: libraries/messages.inc.php:1103 server_status.php:252 +#: libraries/messages.inc.php:1099 server_status.php:252 msgid "Threads" msgstr "Патокі" -#: libraries/messages.inc.php:1104 server_processlist.php:22 +#: libraries/messages.inc.php:1100 server_processlist.php:22 #, php-format msgid "Thread %s was successfully killed." msgstr "Паток %s быў пасьпяхова спынены." -#: libraries/messages.inc.php:1106 +#: libraries/messages.inc.php:1102 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -6326,186 +6326,186 @@ msgstr "" "звычайна значыць, што phpMyAdmin ня зможа скончыць гэтае імпартаваньня, калі " "вы не павялічыце ліміты выкананьня php-скрыптоў." -#: libraries/messages.inc.php:1109 pmd_pdf.php:94 +#: libraries/messages.inc.php:1105 pmd_pdf.php:94 msgid "to/from page" msgstr "старонка" -#: libraries/messages.inc.php:1110 pdf_pages.php:343 +#: libraries/messages.inc.php:1106 pdf_pages.php:343 msgid "Toggle scratchboard" msgstr "Паказаць папярэдні прагляд" -#: libraries/messages.inc.php:1111 pmd_general.php:99 +#: libraries/messages.inc.php:1107 pmd_general.php:99 msgid "Toggle small/big" msgstr "Пераключыць маленькі/вялікі" -#: libraries/messages.inc.php:1112 pmd_help.php:27 +#: libraries/messages.inc.php:1108 pmd_help.php:27 msgid "To select relation, click :" msgstr "" "Каб выбраць сувязь, націсьніце на кропцы злучэньня, як паказана на выяве:" -#: libraries/messages.inc.php:1115 libraries/tbl_links.inc.php:149 +#: libraries/messages.inc.php:1111 libraries/tbl_links.inc.php:149 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" -#: libraries/messages.inc.php:1116 tbl_tracking.php:655 +#: libraries/messages.inc.php:1112 tbl_tracking.php:655 msgid "Activate now" msgstr "" -#: libraries/messages.inc.php:1117 tbl_tracking.php:653 +#: libraries/messages.inc.php:1113 tbl_tracking.php:653 #, php-format msgid "Activate tracking for %s.%s" msgstr "" -#: libraries/messages.inc.php:1118 tbl_tracking.php:221 +#: libraries/messages.inc.php:1114 tbl_tracking.php:221 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/messages.inc.php:1119 tbl_tracking.php:688 +#: libraries/messages.inc.php:1115 tbl_tracking.php:688 #, fuzzy msgid "Create version" msgstr "Стварыць сувязь" -#: libraries/messages.inc.php:1120 tbl_tracking.php:668 +#: libraries/messages.inc.php:1116 tbl_tracking.php:668 #, php-format msgid "Create version %s of %s.%s" msgstr "" -#: libraries/messages.inc.php:1122 tbl_tracking.php:412 +#: libraries/messages.inc.php:1118 tbl_tracking.php:412 msgid "Data definition statement" msgstr "" -#: libraries/messages.inc.php:1123 tbl_tracking.php:463 +#: libraries/messages.inc.php:1119 tbl_tracking.php:463 msgid "Data manipulation statement" msgstr "" -#: libraries/messages.inc.php:1124 tbl_tracking.php:410 tbl_tracking.php:461 +#: libraries/messages.inc.php:1120 tbl_tracking.php:410 tbl_tracking.php:461 #, fuzzy msgid "Date" msgstr "Дадзеныя" -#: libraries/messages.inc.php:1125 tbl_tracking.php:642 +#: libraries/messages.inc.php:1121 tbl_tracking.php:642 msgid "Deactivate now" msgstr "" -#: libraries/messages.inc.php:1126 tbl_tracking.php:640 +#: libraries/messages.inc.php:1122 tbl_tracking.php:640 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "" -#: libraries/messages.inc.php:1127 tbl_tracking.php:521 +#: libraries/messages.inc.php:1123 tbl_tracking.php:521 #, fuzzy, php-format msgid "Export as %s" msgstr "Тып экспарту" -#: libraries/messages.inc.php:1130 tbl_tracking.php:251 tbl_tracking.php:379 +#: libraries/messages.inc.php:1126 tbl_tracking.php:251 tbl_tracking.php:379 msgid "Close" msgstr "" -#: libraries/messages.inc.php:1131 tbl_tracking.php:114 +#: libraries/messages.inc.php:1127 tbl_tracking.php:114 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/messages.inc.php:1133 tbl_tracking.php:397 tbl_tracking.php:504 +#: libraries/messages.inc.php:1129 tbl_tracking.php:397 tbl_tracking.php:504 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "" -#: libraries/messages.inc.php:1134 tbl_tracking.php:561 +#: libraries/messages.inc.php:1130 tbl_tracking.php:561 msgid "Show versions" msgstr "" -#: libraries/messages.inc.php:1135 tbl_tracking.php:507 +#: libraries/messages.inc.php:1131 tbl_tracking.php:507 msgid "SQL dump (file download)" msgstr "" -#: libraries/messages.inc.php:1136 tbl_tracking.php:508 +#: libraries/messages.inc.php:1132 tbl_tracking.php:508 msgid "SQL dump" msgstr "" -#: libraries/messages.inc.php:1137 tbl_tracking.php:213 +#: libraries/messages.inc.php:1133 tbl_tracking.php:213 msgid "SQL statements executed." msgstr "" -#: libraries/messages.inc.php:1138 +#: libraries/messages.inc.php:1134 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/messages.inc.php:1139 tbl_tracking.php:509 +#: libraries/messages.inc.php:1135 tbl_tracking.php:509 msgid "SQL execution" msgstr "" -#: libraries/messages.inc.php:1140 tbl_tracking.php:230 +#: libraries/messages.inc.php:1136 tbl_tracking.php:230 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/messages.inc.php:1141 tbl_tracking.php:381 +#: libraries/messages.inc.php:1137 tbl_tracking.php:381 msgid "Tracking statements" msgstr "" -#: libraries/messages.inc.php:1148 tbl_tracking.php:593 +#: libraries/messages.inc.php:1144 tbl_tracking.php:593 #, fuzzy msgid "Version" msgstr "Пэрсыдзкая" -#: libraries/messages.inc.php:1149 tbl_tracking.php:672 +#: libraries/messages.inc.php:1145 tbl_tracking.php:672 msgid "Track these data definition statements:" msgstr "" -#: libraries/messages.inc.php:1150 tbl_tracking.php:680 +#: libraries/messages.inc.php:1146 tbl_tracking.php:680 msgid "Track these data manipulation statements:" msgstr "" -#: libraries/messages.inc.php:1155 tbl_tracking.php:411 tbl_tracking.php:462 +#: libraries/messages.inc.php:1151 tbl_tracking.php:411 tbl_tracking.php:462 #, fuzzy msgid "Username" msgstr "Імя карыстальніка:" -#: libraries/messages.inc.php:1156 tbl_tracking.php:203 +#: libraries/messages.inc.php:1152 tbl_tracking.php:203 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "" -#: libraries/messages.inc.php:1157 tbl_tracking.php:187 +#: libraries/messages.inc.php:1153 tbl_tracking.php:187 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "" -#: libraries/messages.inc.php:1158 tbl_tracking.php:195 +#: libraries/messages.inc.php:1154 tbl_tracking.php:195 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "" -#: libraries/messages.inc.php:1159 tbl_tracking.php:262 +#: libraries/messages.inc.php:1155 tbl_tracking.php:262 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/messages.inc.php:1161 tbl_tracking.php:220 +#: libraries/messages.inc.php:1157 tbl_tracking.php:220 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/messages.inc.php:1162 libraries/mysql_charsets.lib.php:219 +#: libraries/messages.inc.php:1158 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:362 msgid "Traditional Chinese" msgstr "Традыцыйная кітайская" -#: libraries/messages.inc.php:1163 libraries/mysql_charsets.lib.php:292 +#: libraries/messages.inc.php:1159 libraries/mysql_charsets.lib.php:292 msgid "Traditional Spanish" msgstr "Традыцыйная гішпанская" -#: libraries/messages.inc.php:1164 server_status.php:388 +#: libraries/messages.inc.php:1160 server_status.php:388 msgid "Traffic" msgstr "Трафік" -#: libraries/messages.inc.php:1165 server_status.php:261 +#: libraries/messages.inc.php:1161 server_status.php:261 msgid "Transaction coordinator" msgstr "Каардынатар перакладу" -#: libraries/messages.inc.php:1166 +#: libraries/messages.inc.php:1162 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 " @@ -6517,7 +6517,7 @@ msgstr "" "другую опцыю як імя поля, якое ўтрымлівае імя файла. Калі вы выкарыстоўваеце " "другую опцыю, вам трэба пакінуць першае поле пустым" -#: libraries/messages.inc.php:1167 +#: libraries/messages.inc.php:1163 msgid "" "Displays hexadecimal representation of data. Optional first parameter " "specifies how often space will be added (defaults to 2 nibbles)." @@ -6525,7 +6525,7 @@ msgstr "" "Паказвае дадзеныя ў шаснаццатковым выглядзе. Апцыянальны першы парамэтар " "вызначае частату дадаваньня прагала (па-змоўчаньні — праз кожныя 8 бітаў)." -#: libraries/messages.inc.php:1168 +#: libraries/messages.inc.php:1164 msgid "" "Displays a clickable thumbnail. The options are the maximum width and height " "in pixels. The original aspect ratio is preserved." @@ -6533,15 +6533,15 @@ msgstr "" "Паказвае націскальны эскіз; Опцыі — максымальная шырыня і вышыня ў піксэлах. " "Захоўваюцца пачатковыя прапорцыі." -#: libraries/messages.inc.php:1169 +#: libraries/messages.inc.php:1165 msgid "Displays a link to download this image." msgstr "Паказвае спасылку для загрузкі гэтага малюнку." -#: libraries/messages.inc.php:1170 +#: libraries/messages.inc.php:1166 msgid "See image/jpeg: inline" msgstr "Праглядзець малюнак image/jpeg: убудаваны" -#: libraries/messages.inc.php:1171 +#: libraries/messages.inc.php:1167 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 " @@ -6562,7 +6562,7 @@ msgstr "" "парамэтраў лякальнай даты глядзіце дакумэнтацыю для функцыі PHP strftime(), " "а для грынвіцкага часу (парамэтар «utc») — дакумэнтацыю функцыі gmdate()." -#: libraries/messages.inc.php:1172 +#: libraries/messages.inc.php:1168 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 " @@ -6587,7 +6587,7 @@ msgstr "" "па словах, каб пераканацца, што ўвесь выхадны паток будзе выведзены ў адзін " "радок (Па змоўчаньні 1)." -#: libraries/messages.inc.php:1173 +#: libraries/messages.inc.php:1169 msgid "" "Displays the contents of the field as-is, without running it through " "htmlspecialchars(). That is, the field is assumed to contain valid HTML." @@ -6595,7 +6595,7 @@ msgstr "" "Паказвае зьмесьціва поля як ёсьць, без апрацоўкі яго функцыяй " "htmlspecialchars(). Таму разумеецца, што поле ўтрымлівае карэктны HTML-код." -#: libraries/messages.inc.php:1174 +#: libraries/messages.inc.php:1170 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 " @@ -6605,7 +6605,7 @@ msgstr "" "прэфікс адрасу кшталту \"http://www.example.com/\". Другая і трэцяя опцыі — " "шырыня і вышыня ў піксэлах." -#: libraries/messages.inc.php:1175 +#: libraries/messages.inc.php:1171 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 " @@ -6614,11 +6614,11 @@ msgstr "" "Паказвае спасылку; поле зьмяшчае назву файла. Першая опцыя — прэфікс адрасу " "кшталту \"http://www.example.com/\". Другая опцыя — назва спасылкі." -#: libraries/messages.inc.php:1176 +#: libraries/messages.inc.php:1172 msgid "Formats text as SQL query with syntax highlighting." msgstr "Фарматуе тэкст як SQL-запыт з падсьвечаным сынтаксісам." -#: libraries/messages.inc.php:1177 +#: libraries/messages.inc.php:1173 msgid "" "Displays a part of a string. The first option is the number of characters to " "skip from the beginning of the string (Default 0). The second option is the " @@ -6632,71 +6632,71 @@ msgstr "" "радок, які трэба далучыць да канца і/або з пачатку радка, калі адбудзецца " "ўсячэньне (Па змоўчаньні: \"...\") ." -#: libraries/messages.inc.php:1179 server_binlog.php:183 server_binlog.php:186 +#: libraries/messages.inc.php:1175 server_binlog.php:183 server_binlog.php:186 #: server_processlist.php:49 server_processlist.php:51 msgid "Truncate Shown Queries" msgstr "Абразаць паказаныя запыты" -#: libraries/messages.inc.php:1180 libraries/mysql_charsets.lib.php:301 +#: libraries/messages.inc.php:1176 libraries/mysql_charsets.lib.php:301 #: libraries/mysql_charsets.lib.php:389 msgid "Turkish" msgstr "Турэцкая" -#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:304 +#: libraries/messages.inc.php:1179 libraries/mysql_charsets.lib.php:304 #: libraries/mysql_charsets.lib.php:386 msgid "Ukrainian" msgstr "Украінская" -#: libraries/messages.inc.php:1185 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:1181 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 msgid "Unicode" msgstr "Юнікод" -#: libraries/messages.inc.php:1187 libraries/mysql_charsets.lib.php:398 +#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:398 #: libraries/mysql_charsets.lib.php:405 msgid "unknown" msgstr "невядома" -#: libraries/messages.inc.php:1190 server_privileges.php:1152 +#: libraries/messages.inc.php:1186 server_privileges.php:1152 #, php-format msgid "You have updated the privileges for %s." msgstr "Вы зьмянілі прывілеі для %s." -#: libraries/messages.inc.php:1191 user_password.php:112 +#: libraries/messages.inc.php:1187 user_password.php:112 msgid "The profile has been updated." msgstr "Профіль быў адноўлены." -#: libraries/messages.inc.php:1193 libraries/relation.lib.php:138 +#: libraries/messages.inc.php:1189 libraries/relation.lib.php:138 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "За інфармацыяй як абнавіць табліцу column_comments зьвярніцеся, калі ласка, " "да дакумэнтацыі" -#: libraries/messages.inc.php:1194 +#: libraries/messages.inc.php:1190 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Вам трэба абнавіць %s да вэрсіі %s ці пазьнейшай." -#: libraries/messages.inc.php:1204 tbl_printview.php:314 tbl_structure.php:661 +#: libraries/messages.inc.php:1200 tbl_printview.php:314 tbl_structure.php:661 msgid "Usage" msgstr "Выкарыстаньне" -#: libraries/messages.inc.php:1205 +#: libraries/messages.inc.php:1201 msgid "Enclose table and field names with backquotes" msgstr "Зваротнае двукосьсе ў імёнах табліц і палёў" -#: libraries/messages.inc.php:1206 libraries/replication_gui.lib.php:314 +#: libraries/messages.inc.php:1202 libraries/replication_gui.lib.php:314 #: server_privileges.php:740 msgid "Use Host Table" msgstr "Выкарыстоўваць табліцу хостаў" -#: libraries/messages.inc.php:1207 server_privileges.php:848 +#: libraries/messages.inc.php:1203 server_privileges.php:848 #, php-format msgid "The user %s already exists!" msgstr "Карыстальнік %s ужо існуе!" -#: libraries/messages.inc.php:1209 libraries/replication_gui.lib.php:55 +#: libraries/messages.inc.php:1205 libraries/replication_gui.lib.php:55 #: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245 #: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255 #: server_privileges.php:672 server_privileges.php:675 @@ -6704,37 +6704,37 @@ msgstr "Карыстальнік %s ужо існуе!" msgid "User name" msgstr "Імя карыстальніка" -#: libraries/messages.inc.php:1210 server_privileges.php:1645 +#: libraries/messages.inc.php:1206 server_privileges.php:1645 msgid "The selected user was not found in the privilege table." msgstr "Вылучаны карыстальнік ня знойдзены ў табліцы прывілеяў." -#: libraries/messages.inc.php:1211 server_privileges.php:1365 +#: libraries/messages.inc.php:1207 server_privileges.php:1365 msgid "User overview" msgstr "Карыстальнікі" -#: libraries/messages.inc.php:1212 server_privileges.php:1261 +#: libraries/messages.inc.php:1208 server_privileges.php:1261 msgid "The selected users have been deleted successfully." msgstr "Выбраныя карыстальнікі былі пасьпяхова выдаленыя." -#: libraries/messages.inc.php:1213 server_privileges.php:2026 +#: libraries/messages.inc.php:1209 server_privileges.php:2026 #, php-format msgid "Users having access to "%s"" msgstr "Карыстальнікі з правамі доступу да "%s"" -#: libraries/messages.inc.php:1214 main.php:189 server_privileges.php:1350 +#: libraries/messages.inc.php:1210 main.php:189 server_privileges.php:1350 #: server_privileges.php:1497 server_privileges.php:1611 #: server_privileges.php:2029 server_processlist.php:54 msgid "User" msgstr "Карыстальнік" -#: libraries/messages.inc.php:1215 tbl_change.php:1171 +#: libraries/messages.inc.php:1211 tbl_change.php:1171 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Выкарыстоўвайце клявішу TAB для перамяшчэньня ад значэньня да значэньня або " "CTRL+стрэлкі для перамяшчэньня ў любое іншае месца" -#: libraries/messages.inc.php:1217 libraries/replication_gui.lib.php:251 +#: libraries/messages.inc.php:1213 libraries/replication_gui.lib.php:251 #: libraries/replication_gui.lib.php:319 libraries/replication_gui.lib.php:342 #: server_privileges.php:678 server_privileges.php:745 #: server_privileges.php:769 server_privileges.php:1889 @@ -6742,7 +6742,7 @@ msgstr "" msgid "Use text field" msgstr "Выкарыстоўваць тэкставае поле" -#: libraries/messages.inc.php:1221 libraries/sqlvalidator.lib.php:68 +#: libraries/messages.inc.php:1217 libraries/sqlvalidator.lib.php:68 #, php-format msgid "" "The SQL validator could not be initialized. Please check if you have " @@ -6752,88 +6752,88 @@ msgstr "" "ўсталяваныя ў вас неабходныя пашырэньні PHP, як гэта апісана ў %sдакумэнтацыі" "%s." -#: libraries/messages.inc.php:1222 libraries/replication_gui.lib.php:111 +#: libraries/messages.inc.php:1218 libraries/replication_gui.lib.php:111 #: server_status.php:627 tbl_change.php:324 tbl_printview.php:370 #: tbl_select.php:139 tbl_structure.php:730 msgid "Value" msgstr "Значэньне" -#: libraries/messages.inc.php:1223 libraries/replication_gui.lib.php:110 +#: libraries/messages.inc.php:1219 libraries/replication_gui.lib.php:110 #: libraries/sql_query_form.lib.php:445 server_status.php:626 #: server_variables.php:52 msgid "Variable" msgstr "Зьменная" -#: libraries/messages.inc.php:1225 server_export.php:21 +#: libraries/messages.inc.php:1221 server_export.php:21 msgid "View dump (schema) of databases" msgstr "Праглядзець дамп (схему) базаў дадзеных" -#: libraries/messages.inc.php:1227 tbl_export.php:23 +#: libraries/messages.inc.php:1223 tbl_export.php:23 msgid "View dump (schema) of table" msgstr "Праглядзець дамп (схему) табліцы" -#: libraries/messages.inc.php:1231 view_create.php:142 +#: libraries/messages.inc.php:1227 view_create.php:142 msgid "VIEW name" msgstr "Назва прагляду" -#: libraries/messages.inc.php:1237 main.php:205 +#: libraries/messages.inc.php:1233 main.php:205 msgid "Web server" msgstr "Вэб-сэрвэр" -#: libraries/messages.inc.php:1239 libraries/mysql_charsets.lib.php:277 +#: libraries/messages.inc.php:1235 libraries/mysql_charsets.lib.php:277 #: libraries/mysql_charsets.lib.php:325 msgid "West European" msgstr "Заходнеэўрапейская" -#: libraries/messages.inc.php:1240 main.php:230 +#: libraries/messages.inc.php:1236 main.php:230 msgid "Wiki" msgstr "Wiki" -#: libraries/messages.inc.php:1241 server_privileges.php:2138 +#: libraries/messages.inc.php:1237 server_privileges.php:2138 msgid "wildcard" msgstr "шаблён" -#: libraries/messages.inc.php:1248 +#: libraries/messages.inc.php:1244 #, fuzzy msgid "Export contents" msgstr "Тып экспарту" -#: libraries/messages.inc.php:1249 +#: libraries/messages.inc.php:1245 msgid "Export functions" msgstr "" -#: libraries/messages.inc.php:1250 +#: libraries/messages.inc.php:1246 msgid "Export procedures" msgstr "" -#: libraries/messages.inc.php:1251 +#: libraries/messages.inc.php:1247 msgid "Export Structure Schemas (recommended)" msgstr "" -#: libraries/messages.inc.php:1252 +#: libraries/messages.inc.php:1248 #, fuzzy msgid "Export tables" msgstr "Тып экспарту" -#: libraries/messages.inc.php:1253 +#: libraries/messages.inc.php:1249 #, fuzzy msgid "Export triggers" msgstr "Тып экспарту" -#: libraries/messages.inc.php:1254 +#: libraries/messages.inc.php:1250 #, fuzzy msgid "Export views" msgstr "Тып экспарту" -#: libraries/messages.inc.php:1255 +#: libraries/messages.inc.php:1251 msgid "XML" msgstr "XML" -#: libraries/messages.inc.php:1259 server_privileges.php:592 +#: libraries/messages.inc.php:1255 server_privileges.php:592 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Заўвага: Пазначэньне гэтых опцыяў як 0 (нуль) здымае абмежаваньне." -#: libraries/messages.inc.php:1260 +#: libraries/messages.inc.php:1256 msgid "\"zipped\"" msgstr "архіваваны ў zip" diff --git a/po/be@latin.po b/po/be@latin.po index 191aee216..47c9f6dc2 100644 --- 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-05-13 11:25+0200\n" +"POT-Creation-Date: 2010-05-13 11:30+0200\n" "PO-Revision-Date: 2010-03-30 23:09+0200\n" "Last-Translator: Michal \n" "Language-Team: belarusian_latin \n" @@ -16,19 +16,19 @@ msgstr "" "X-Generator: Pootle 2.0.1\n" #: browse_foreigners.php:38 browse_foreigners.php:59 -#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:870 +#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:866 #: server_privileges.php:1475 msgid "Show all" msgstr "Pakazać usie" #: browse_foreigners.php:82 db_operations.php:648 -#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:394 -#: libraries/export/pdf.php:147 libraries/messages.inc.php:597 +#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394 +#: libraries/export/pdf.php:147 libraries/messages.inc.php:593 #: pdf_schema.php:283 pdf_schema.php:1123 pdf_schema.php:1139 msgid "Page number:" msgstr "Staronka:" -#: browse_foreigners.php:132 libraries/messages.inc.php:1242 +#: browse_foreigners.php:132 libraries/messages.inc.php:1238 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -41,7 +41,7 @@ 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/db_links.inc.php:75 -#: libraries/messages.inc.php:841 libraries/tbl_links.inc.php:63 +#: libraries/messages.inc.php:837 libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Pošuk" @@ -50,12 +50,12 @@ msgstr "Pošuk" #: db_search.php:362 db_structure.php:567 js/messages.php:48 #: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2267 +#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 #: 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 #: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614 -#: libraries/messages.inc.php:361 libraries/replication_gui.lib.php:73 +#: libraries/messages.inc.php:357 libraries/replication_gui.lib.php:73 #: libraries/replication_gui.lib.php:365 libraries/select_server.lib.php:104 #: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477 #: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782 @@ -75,33 +75,33 @@ msgid "Go" msgstr "Paniesłasia" #: browse_foreigners.php:168 browse_foreigners.php:172 -#: libraries/Index.class.php:442 libraries/messages.inc.php:459 +#: libraries/Index.class.php:442 libraries/messages.inc.php:455 #: tbl_tracking.php:320 msgid "Keyname" msgstr "Imia kluča" #: browse_foreigners.php:169 browse_foreigners.php:171 -#: libraries/messages.inc.php:252 server_collations.php:55 +#: libraries/messages.inc.php:248 server_collations.php:55 #: server_collations.php:67 server_engines.php:59 server_status.php:628 msgid "Description" msgstr "Apisańnie" #: browse_foreigners.php:247 browse_foreigners.php:256 #: browse_foreigners.php:268 browse_foreigners.php:276 -#: libraries/messages.inc.php:1218 +#: libraries/messages.inc.php:1214 msgid "Use this value" msgstr "Vykarystoŭvać heta značeńnie" -#: db_create.php:46 libraries/messages.inc.php:215 +#: db_create.php:46 libraries/messages.inc.php:211 #, php-format msgid "Database %1$s has been created." msgstr "Baza dadzienych %1$s stvoranaja." -#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:232 +#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:228 msgid "Database comment: " msgstr "Kamentar da bazy dadzienych: " -#: db_datadict.php:165 libraries/messages.inc.php:1070 +#: db_datadict.php:165 libraries/messages.inc.php:1066 #: libraries/tbl_properties.inc.php:724 pdf_schema.php:1236 #: tbl_operations.php:345 tbl_printview.php:130 msgid "Table comments" @@ -110,7 +110,7 @@ msgstr "Kamentar da tablicy" #: db_datadict.php:174 db_qbe.php:174 libraries/Index.class.php:446 #: libraries/export/htmlword.php:244 libraries/export/latex.php:360 #: libraries/export/odt.php:294 libraries/export/texytext.php:233 -#: libraries/messages.inc.php:317 libraries/tbl_properties.inc.php:99 +#: libraries/messages.inc.php:313 libraries/tbl_properties.inc.php:99 #: libraries/tbl_properties.inc.php:275 pdf_schema.php:1262 #: pdf_schema.php:1283 tbl_change.php:308 tbl_indexes.php:189 #: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135 @@ -122,7 +122,7 @@ msgstr "Pole" #: libraries/db_events.inc.php:31 libraries/db_routines.inc.php:42 #: 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/messages.inc.php:1181 +#: libraries/export/texytext.php:234 libraries/messages.inc.php:1177 #: libraries/tbl_properties.inc.php:100 pdf_schema.php:1263 #: pdf_schema.php:1284 server_privileges.php:2031 tbl_change.php:287 #: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313 @@ -134,7 +134,7 @@ msgstr "Typ" #: db_datadict.php:177 libraries/Index.class.php:449 #: libraries/export/htmlword.php:246 libraries/export/latex.php:360 #: libraries/export/odt.php:300 libraries/export/texytext.php:235 -#: libraries/messages.inc.php:576 libraries/tbl_properties.inc.php:109 +#: libraries/messages.inc.php:572 libraries/tbl_properties.inc.php:109 #: pdf_schema.php:1265 pdf_schema.php:1286 tbl_change.php:323 #: tbl_printview.php:145 tbl_structure.php:181 tbl_tracking.php:276 #: tbl_tracking.php:327 @@ -143,7 +143,7 @@ msgstr "Nul" #: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 -#: libraries/export/texytext.php:236 libraries/messages.inc.php:238 +#: libraries/export/texytext.php:236 libraries/messages.inc.php:234 #: libraries/tbl_properties.inc.php:106 pdf_schema.php:1266 #: pdf_schema.php:1287 tbl_printview.php:146 tbl_structure.php:182 #: tbl_tracking.php:277 @@ -152,14 +152,14 @@ msgstr "Pa zmoŭčańni" #: db_datadict.php:182 libraries/export/htmlword.php:249 #: libraries/export/latex.php:362 libraries/export/odt.php:307 -#: libraries/export/texytext.php:238 libraries/messages.inc.php:483 +#: libraries/export/texytext.php:238 libraries/messages.inc.php:479 #: pdf_schema.php:1268 pdf_schema.php:1289 tbl_printview.php:150 msgid "Links to" msgstr "Źviazanaja z" #: db_datadict.php:184 db_printview.php:112 libraries/export/htmlword.php:252 #: libraries/export/latex.php:365 libraries/export/odt.php:312 -#: libraries/export/texytext.php:241 libraries/messages.inc.php:163 +#: libraries/export/texytext.php:241 libraries/messages.inc.php:159 #: libraries/tbl_properties.inc.php:130 pdf_schema.php:1279 #: pdf_schema.php:1290 tbl_printview.php:152 msgid "Comments" @@ -168,7 +168,7 @@ msgstr "Kamentary" #: db_datadict.php:267 libraries/Index.class.php:359 #: 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/messages.inc.php:559 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:555 #: libraries/mult_submits.inc.php:263 pdf_schema.php:1344 #: server_privileges.php:1529 server_privileges.php:1540 #: server_privileges.php:1850 server_privileges.php:1855 @@ -180,7 +180,7 @@ msgstr "Nie" #: db_datadict.php:267 libraries/Index.class.php:360 #: libraries/Index.class.php:385 libraries/export/htmlword.php:322 #: libraries/export/latex.php:430 libraries/export/odt.php:368 -#: libraries/export/texytext.php:311 libraries/messages.inc.php:1257 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:1253 #: libraries/mult_submits.inc.php:45 libraries/mult_submits.inc.php:50 #: libraries/mult_submits.inc.php:55 libraries/mult_submits.inc.php:60 #: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:101 @@ -194,108 +194,108 @@ msgstr "Nie" msgid "Yes" msgstr "Tak" -#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:670 +#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:666 #: tbl_printview.php:498 msgid "Print" msgstr "Druk" -#: db_export.php:29 libraries/messages.inc.php:1226 +#: db_export.php:29 libraries/messages.inc.php:1222 msgid "View dump (schema) of database" msgstr "Prahladzieć damp (schiemu) bazy dadzienych" #: db_export.php:33 db_printview.php:96 db_qbe.php:102 db_structure.php:51 -#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:568 +#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:564 #: navigation.php:346 msgid "No tables found in database." msgstr "U bazie dadzienych tablic nia vyjaŭlena." -#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:845 +#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:841 #: server_export.php:27 msgid "Select All" msgstr "Vybrać usio" -#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1188 +#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1184 #: server_export.php:29 msgid "Unselect All" msgstr "Źniać usie adznaki" -#: db_operations.php:38 libraries/messages.inc.php:213 tbl_create.php:54 +#: db_operations.php:38 libraries/messages.inc.php:209 tbl_create.php:54 msgid "The database name is empty!" msgstr "Imia bazy dadzienych nie paznačanaje!" -#: db_operations.php:236 libraries/messages.inc.php:753 +#: db_operations.php:236 libraries/messages.inc.php:749 #, php-format msgid "Database %s has been renamed to %s" msgstr "Baza dadzienych %s była pierajmienavanaja ŭ %s" -#: db_operations.php:240 libraries/messages.inc.php:178 +#: db_operations.php:240 libraries/messages.inc.php:174 #, php-format msgid "Database %s has been copied to %s" msgstr "Baza dadzienych %s była skapijavanaja ŭ %s" -#: db_operations.php:410 libraries/messages.inc.php:236 +#: db_operations.php:410 libraries/messages.inc.php:232 msgid "Rename database to" msgstr "Pierajmienavać bazu dadzienych u" -#: db_operations.php:415 libraries/messages.inc.php:161 +#: db_operations.php:415 libraries/messages.inc.php:157 #: server_processlist.php:57 msgid "Command" msgstr "Kamanda" -#: db_operations.php:425 libraries/messages.inc.php:58 tbl_change.php:1143 +#: db_operations.php:425 libraries/messages.inc.php:54 tbl_change.php:1143 msgid "and then" msgstr "i paśla" -#: db_operations.php:451 libraries/messages.inc.php:233 +#: db_operations.php:451 libraries/messages.inc.php:229 msgid "Copy database to" msgstr "Kapijavać bazu dadzienych u" -#: db_operations.php:458 libraries/messages.inc.php:1043 +#: db_operations.php:458 libraries/messages.inc.php:1039 #: tbl_operations.php:526 tbl_tracking.php:388 msgid "Structure only" msgstr "Tolki strukturu" -#: db_operations.php:459 libraries/messages.inc.php:1041 +#: db_operations.php:459 libraries/messages.inc.php:1037 #: tbl_operations.php:527 tbl_tracking.php:390 msgid "Structure and data" msgstr "Strukturu i dadzienyja" -#: db_operations.php:460 libraries/messages.inc.php:229 tbl_operations.php:528 +#: db_operations.php:460 libraries/messages.inc.php:225 tbl_operations.php:528 #: tbl_tracking.php:389 msgid "Data only" msgstr "Tolki dadzienyja" -#: db_operations.php:468 libraries/messages.inc.php:186 +#: db_operations.php:468 libraries/messages.inc.php:182 msgid "CREATE DATABASE before copying" msgstr "vykanać CREATE DATABASE pierad kapijavańniem" #: db_operations.php:471 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 -#: libraries/export/sql.php:82 libraries/messages.inc.php:30 +#: libraries/export/sql.php:82 libraries/messages.inc.php:26 #: tbl_operations.php:534 #, php-format msgid "Add %s" msgstr "Dadać %s" -#: db_operations.php:475 libraries/messages.inc.php:29 tbl_operations.php:297 +#: db_operations.php:475 libraries/messages.inc.php:25 tbl_operations.php:297 #: tbl_operations.php:536 msgid "Add AUTO_INCREMENT value" msgstr "Dadać značeńnie AUTO_INCREMENT" -#: db_operations.php:479 libraries/messages.inc.php:31 tbl_operations.php:543 +#: db_operations.php:479 libraries/messages.inc.php:27 tbl_operations.php:543 msgid "Add constraints" msgstr "Dadać abmiežavańni" -#: db_operations.php:492 libraries/messages.inc.php:1059 +#: db_operations.php:492 libraries/messages.inc.php:1055 msgid "Switch to copied database" msgstr "Pierajści da skapijavanaj bazy dadzienych" -#: db_operations.php:533 libraries/messages.inc.php:89 +#: db_operations.php:533 libraries/messages.inc.php:85 msgid "BLOB Repository" msgstr "" #: db_operations.php:536 db_tracking.php:76 libraries/common.lib.php:1350 -#: libraries/messages.inc.php:1037 libraries/server_links.inc.php:49 +#: libraries/messages.inc.php:1033 libraries/server_links.inc.php:49 #: server_processlist.php:59 tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "Stan" @@ -307,11 +307,11 @@ msgctxt "BLOB repository" msgid "Enabled" msgstr "Uklučana" -#: db_operations.php:548 libraries/messages.inc.php:93 +#: db_operations.php:548 libraries/messages.inc.php:89 msgid "Disable" msgstr "" -#: db_operations.php:558 libraries/messages.inc.php:90 +#: db_operations.php:558 libraries/messages.inc.php:86 msgid "Damaged" msgstr "" @@ -329,12 +329,12 @@ msgctxt "BLOB repository" msgid "Disabled" msgstr "Adklučana" -#: db_operations.php:574 libraries/messages.inc.php:96 +#: db_operations.php:574 libraries/messages.inc.php:92 msgid "Enable" msgstr "" #: db_operations.php:598 libraries/Index.class.php:448 -#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:158 +#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:154 #: 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:361 @@ -343,7 +343,7 @@ msgstr "" msgid "Collation" msgstr "Supastaŭleńnie" -#: db_operations.php:609 libraries/messages.inc.php:742 main.php:316 +#: db_operations.php:609 libraries/messages.inc.php:738 main.php:316 #: pdf_schema.php:34 #, php-format msgid "" @@ -353,58 +353,58 @@ msgstr "" "Dadatkovyja mahčymaści raboty z źviazanymi tablicami byli adklučanyja. Kab " "vyśvietlić čamu, naciśnicie %stut%s." -#: db_operations.php:645 libraries/messages.inc.php:264 pdf_pages.php:528 +#: db_operations.php:645 libraries/messages.inc.php:260 pdf_pages.php:528 msgid "Display PDF schema" msgstr "Pakazać PDF-schiemu" -#: db_operations.php:661 libraries/messages.inc.php:877 pdf_pages.php:529 +#: db_operations.php:661 libraries/messages.inc.php:873 pdf_pages.php:529 msgid "Show grid" msgstr "Pakazać sietku" -#: db_operations.php:664 libraries/messages.inc.php:874 pdf_pages.php:530 +#: db_operations.php:664 libraries/messages.inc.php:870 pdf_pages.php:530 msgid "Show color" msgstr "Pakazać koler" -#: db_operations.php:666 libraries/messages.inc.php:998 pdf_pages.php:531 +#: db_operations.php:666 libraries/messages.inc.php:994 pdf_pages.php:531 msgid "Show dimension of tables" msgstr "Pakazać raźmiernaść tablic" -#: db_operations.php:669 libraries/messages.inc.php:52 pdf_pages.php:532 +#: db_operations.php:669 libraries/messages.inc.php:48 pdf_pages.php:532 msgid "Display all tables with the same width" msgstr "Pakazać usie tablicy adnolkavaj šyryni?" -#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:227 +#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:223 #: pdf_pages.php:533 msgid "Data Dictionary" msgstr "Słoŭnik dadzienych" -#: db_operations.php:674 libraries/messages.inc.php:884 pdf_pages.php:534 +#: db_operations.php:674 libraries/messages.inc.php:880 pdf_pages.php:534 msgid "Only show keys" msgstr "" -#: db_operations.php:676 libraries/messages.inc.php:875 pdf_pages.php:535 +#: db_operations.php:676 libraries/messages.inc.php:871 pdf_pages.php:535 msgid "Data Dictionary Format" msgstr "Farmat słoŭnika dadzienych" -#: db_operations.php:678 libraries/messages.inc.php:464 pdf_pages.php:537 +#: db_operations.php:678 libraries/messages.inc.php:460 pdf_pages.php:537 msgid "Landscape" msgstr "Krajavid" -#: db_operations.php:679 libraries/messages.inc.php:663 pdf_pages.php:538 +#: db_operations.php:679 libraries/messages.inc.php:659 pdf_pages.php:538 msgid "Portrait" msgstr "Partret" -#: db_operations.php:682 libraries/messages.inc.php:599 pdf_pages.php:541 +#: db_operations.php:682 libraries/messages.inc.php:595 pdf_pages.php:541 msgid "Paper size" msgstr "Pamier papiery" -#: db_operations.php:706 libraries/messages.inc.php:281 +#: db_operations.php:706 libraries/messages.inc.php:277 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 libraries/messages.inc.php:1087 +#: libraries/header.inc.php:126 libraries/messages.inc.php:1083 #: pdf_pages.php:405 server_privileges.php:1626 server_privileges.php:1682 #: server_privileges.php:1946 server_synchronize.php:423 #: server_synchronize.php:866 tbl_tracking.php:592 test/theme.php:75 @@ -412,176 +412,176 @@ msgid "Table" msgstr "Tablica" #: db_printview.php:105 libraries/db_structure.lib.php:56 -#: libraries/messages.inc.php:735 +#: libraries/messages.inc.php:731 msgid "Records" msgstr "Zapisy" #: db_printview.php:109 libraries/db_structure.lib.php:67 -#: libraries/messages.inc.php:1003 tbl_indexes.php:190 +#: libraries/messages.inc.php:999 tbl_indexes.php:190 msgid "Size" msgstr "Pamier" #: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 -#: libraries/export/sql.php:899 libraries/messages.inc.php:436 +#: libraries/export/sql.php:899 libraries/messages.inc.php:432 msgid "in use" msgstr "vykarystoŭvajecca" #: db_printview.php:187 libraries/db_info.inc.php:88 -#: libraries/export/sql.php:514 libraries/messages.inc.php:1032 +#: libraries/export/sql.php:514 libraries/messages.inc.php:1028 #: pdf_schema.php:1241 tbl_printview.php:434 tbl_structure.php:810 msgid "Creation" msgstr "Stvoranaja" #: db_printview.php:196 libraries/db_info.inc.php:93 -#: libraries/export/sql.php:519 libraries/messages.inc.php:1036 +#: libraries/export/sql.php:519 libraries/messages.inc.php:1032 #: pdf_schema.php:1246 tbl_printview.php:444 tbl_structure.php:818 msgid "Last update" msgstr "Apošniaje abnaŭleńnie" #: db_printview.php:205 libraries/db_info.inc.php:98 -#: libraries/export/sql.php:524 libraries/messages.inc.php:1031 +#: libraries/export/sql.php:524 libraries/messages.inc.php:1027 #: pdf_schema.php:1251 tbl_printview.php:454 tbl_structure.php:826 msgid "Last check" msgstr "Apošniaja pravierka" -#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1085 +#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1081 #, php-format msgid "%s table(s)" msgstr "%s tablic(y)" #: db_qbe.php:29 libraries/display_tbl.lib.php:1981 -#: libraries/messages.inc.php:1051 libraries/sql_query_form.lib.php:140 +#: libraries/messages.inc.php:1047 libraries/sql_query_form.lib.php:140 #: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131 #: view_operations.php:62 msgid "Your SQL query has been executed successfully" msgstr "Vaš SQL-zapyt byŭ paśpiachova vykanany" -#: db_qbe.php:42 libraries/messages.inc.php:371 +#: db_qbe.php:42 libraries/messages.inc.php:367 msgid "You have to choose at least one column to display" msgstr "Vam nieabchodna vybrać prynamsi adnu kalonku dla adlustravańnia" #: db_qbe.php:200 libraries/db_structure.lib.php:104 -#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1014 +#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1010 msgid "Sort" msgstr "Paradak" #: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111 #: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828 -#: libraries/messages.inc.php:69 server_databases.php:170 +#: libraries/messages.inc.php:65 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314 msgid "Ascending" msgstr "pramy" #: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119 #: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825 -#: libraries/messages.inc.php:251 server_databases.php:170 +#: libraries/messages.inc.php:247 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315 msgid "Descending" msgstr "advarotny" #: db_qbe.php:264 db_tracking.php:78 libraries/display_tbl.lib.php:308 -#: libraries/messages.inc.php:888 tbl_change.php:277 tbl_tracking.php:597 +#: libraries/messages.inc.php:884 tbl_change.php:277 tbl_tracking.php:597 msgid "Show" msgstr "Pakazać" -#: db_qbe.php:300 libraries/messages.inc.php:202 +#: db_qbe.php:300 libraries/messages.inc.php:198 msgid "Criteria" msgstr "Kryter" #: db_qbe.php:353 db_qbe.php:435 db_qbe.php:527 db_qbe.php:558 -#: libraries/messages.inc.php:718 +#: libraries/messages.inc.php:714 msgid "Ins" msgstr "Ustavić" #: db_qbe.php:357 db_qbe.php:439 db_qbe.php:524 db_qbe.php:555 -#: libraries/messages.inc.php:56 +#: libraries/messages.inc.php:52 msgid "And" msgstr "I" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:529 db_qbe.php:560 -#: libraries/messages.inc.php:717 +#: libraries/messages.inc.php:713 msgid "Del" 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/messages.inc.php:592 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:588 #: libraries/tbl_properties.inc.php:779 server_privileges.php:258 #: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288 msgid "Or" msgstr "Abo" -#: db_qbe.php:507 libraries/messages.inc.php:516 +#: db_qbe.php:507 libraries/messages.inc.php:512 msgid "Modify" msgstr "Źmianić" -#: db_qbe.php:584 libraries/messages.inc.php:33 +#: db_qbe.php:584 libraries/messages.inc.php:29 msgid "Add/Delete Criteria Row" msgstr "Dadać/vydalić radok kryteru" -#: db_qbe.php:596 libraries/messages.inc.php:32 +#: db_qbe.php:596 libraries/messages.inc.php:28 msgid "Add/Delete Field Columns" msgstr "Dadać/vydalić kalonku kryteru" -#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1192 +#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1188 msgid "Update Query" msgstr "Abnavić zapyt" -#: db_qbe.php:617 libraries/messages.inc.php:1216 +#: db_qbe.php:617 libraries/messages.inc.php:1212 msgid "Use Tables" msgstr "Vykarystoŭvać tablicy" -#: db_qbe.php:640 libraries/messages.inc.php:723 +#: db_qbe.php:640 libraries/messages.inc.php:719 #, php-format msgid "SQL query on database %s:" msgstr "SQL-zapyt da BD %s:" -#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:823 +#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:819 msgid "Submit Query" msgstr "Vykanać zapyt" #: db_search.php:68 libraries/auth/config.auth.lib.php:84 #: libraries/auth/config.auth.lib.php:103 #: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52 -#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:26 +#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:22 msgid "Access denied" msgstr "U dostupie admoŭlena" -#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:836 +#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:832 msgid "at least one of the words" msgstr "prynamsi adno z słovaŭ" -#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:837 +#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:833 msgid "all words" msgstr "usie słovy" -#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:838 +#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:834 msgid "the exact phrase" msgstr "dakładnuju frazu" -#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:839 +#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:835 msgid "as regular expression" msgstr "rehularny vyraz" -#: db_search.php:242 libraries/messages.inc.php:840 +#: db_search.php:242 libraries/messages.inc.php:836 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Vyniki pošuku \"%s\" %s:" -#: db_search.php:260 libraries/messages.inc.php:579 +#: db_search.php:260 libraries/messages.inc.php:575 #, php-format msgid "%s match(es) inside table %s" 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/messages.inc.php:108 +#: db_structure.php:105 libraries/messages.inc.php:104 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468 msgid "Browse" msgstr "Prahlad" #: db_search.php:272 libraries/display_tbl.lib.php:1165 -#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:243 +#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:239 #: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406 #: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377 #: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216 @@ -589,45 +589,45 @@ msgstr "Prahlad" msgid "Delete" msgstr "Vydalić" -#: db_search.php:285 libraries/messages.inc.php:580 +#: db_search.php:285 libraries/messages.inc.php:576 #, php-format msgid "Total: %s match(es)" msgstr "Ahułam: %s supadzieńniaŭ" -#: db_search.php:299 libraries/messages.inc.php:832 +#: db_search.php:299 libraries/messages.inc.php:828 msgid "Search in database" msgstr "Pošuk u bazie dadzienych" -#: db_search.php:302 libraries/messages.inc.php:835 +#: db_search.php:302 libraries/messages.inc.php:831 msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgstr "Słova(y) abo značeńnie(i) dla pošuku (maska: \"%\"):" -#: db_search.php:307 libraries/messages.inc.php:842 +#: db_search.php:307 libraries/messages.inc.php:838 msgid "Find:" msgstr "Znajści:" -#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1017 +#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1013 msgid "Words are separated by a space character (\" \")." msgstr "Słovy, padzielenyja prahałam (\" \")." -#: db_search.php:325 libraries/messages.inc.php:834 +#: db_search.php:325 libraries/messages.inc.php:830 msgid "Inside table(s):" msgstr "U tablicy(ach):" -#: db_search.php:355 libraries/messages.inc.php:833 +#: db_search.php:355 libraries/messages.inc.php:829 msgid "Inside field:" 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/messages.inc.php:431 libraries/sql_query_form.lib.php:334 +#: libraries/messages.inc.php:427 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/db_links.inc.php:63 libraries/export/latex.php:337 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:1048 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:1044 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 #: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269 msgid "Structure" @@ -636,8 +636,8 @@ 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:1642 -#: libraries/db_links.inc.php:100 libraries/messages.inc.php:272 +#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/db_links.inc.php:100 libraries/messages.inc.php:268 #: 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 @@ -647,40 +647,40 @@ 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:1641 -#: libraries/messages.inc.php:284 libraries/mult_submits.inc.php:39 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: libraries/messages.inc.php:280 libraries/mult_submits.inc.php:39 #: libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Ačyścić" -#: db_structure.php:316 libraries/messages.inc.php:1075 +#: db_structure.php:316 libraries/messages.inc.php:1071 #: libraries/tbl_links.inc.php:100 #, php-format msgid "Table %s has been emptied" msgstr "Tablica %s była ačyščanaja" -#: db_structure.php:326 libraries/messages.inc.php:1229 +#: db_structure.php:326 libraries/messages.inc.php:1225 #: libraries/tbl_links.inc.php:133 #, php-format msgid "View %s has been dropped" msgstr "Vyhlad %s byŭ vydaleny" -#: db_structure.php:326 libraries/messages.inc.php:1074 +#: db_structure.php:326 libraries/messages.inc.php:1070 #: libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "Tablica %s była vydalenaja" -#: db_structure.php:333 libraries/messages.inc.php:1128 +#: db_structure.php:333 libraries/messages.inc.php:1124 msgid "Tracking is active." msgstr "" -#: db_structure.php:335 libraries/messages.inc.php:1129 +#: db_structure.php:335 libraries/messages.inc.php:1125 msgid "Tracking is not active." msgstr "" #: db_structure.php:420 libraries/display_tbl.lib.php:1944 -#: libraries/messages.inc.php:1228 +#: libraries/messages.inc.php:1224 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -690,23 +690,23 @@ msgstr "" "sdakumentacyi%s." #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 -#: libraries/messages.inc.php:1233 libraries/tbl_info.inc.php:66 +#: libraries/messages.inc.php:1229 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/messages.inc.php:773 libraries/server_links.inc.php:70 +#: libraries/messages.inc.php:769 libraries/server_links.inc.php:70 #: server_replication.php:33 server_replication.php:164 server_status.php:258 msgid "Replication" msgstr "Replikacyja" -#: db_structure.php:489 libraries/messages.inc.php:1053 +#: db_structure.php:489 libraries/messages.inc.php:1049 msgid "Sum" msgstr "Usiaho" #: db_structure.php:496 libraries/StorageEngine.class.php:356 -#: libraries/messages.inc.php:239 +#: libraries/messages.inc.php:235 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" @@ -715,60 +715,60 @@ msgstr "" #: db_structure.php:524 db_structure.php:541 db_structure.php:542 #: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086 -#: libraries/messages.inc.php:1243 libraries/mult_submits.inc.php:16 +#: libraries/messages.inc.php:1239 libraries/mult_submits.inc.php:16 #: server_databases.php:346 server_databases.php:351 #: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465 msgid "With selected:" msgstr "Z adznačanymi:" #: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: libraries/messages.inc.php:148 server_databases.php:348 +#: libraries/messages.inc.php:144 server_databases.php:348 #: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459 msgid "Check All" msgstr "Adznačyć usio" #: db_structure.php:531 libraries/display_tbl.lib.php:2077 -#: libraries/messages.inc.php:1184 libraries/replication_gui.lib.php:33 +#: libraries/messages.inc.php:1180 libraries/replication_gui.lib.php:33 #: server_databases.php:350 server_privileges.php:533 #: server_privileges.php:1564 tbl_structure.php:463 msgid "Uncheck All" msgstr "Źniać usie adznaki" -#: db_structure.php:536 libraries/messages.inc.php:150 +#: db_structure.php:536 libraries/messages.inc.php:146 msgid "Check tables having overhead" msgstr "Adznačyć tyja, što patrabujuć aptymizacyi" #: db_structure.php:547 db_structure.php:548 db_structure.php:599 -#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:672 +#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:668 #: libraries/mult_submits.inc.php:28 tbl_structure.php:493 #: tbl_structure.php:495 msgid "Print view" msgstr "Versija dla druku" -#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:153 +#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:149 #: libraries/mult_submits.inc.php:42 tbl_operations.php:579 msgid "Check table" msgstr "Pravieryć tablicu" -#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:590 +#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:586 #: libraries/mult_submits.inc.php:47 tbl_operations.php:619 #: tbl_structure.php:710 tbl_structure.php:712 msgid "Optimize table" msgstr "Aptymizavać tablicu" -#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:758 +#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:754 #: libraries/mult_submits.inc.php:52 tbl_operations.php:609 msgid "Repair table" msgstr "Ramantavać tablicu" -#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:55 +#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:51 #: libraries/mult_submits.inc.php:57 tbl_operations.php:599 msgid "Analyze table" msgstr "Analizavać tablicu" #: db_structure.php:557 db_structure.php:558 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/messages.inc.php:310 +#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:306 #: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84 #: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109 #: server_privileges.php:1341 setup/frames/menu.inc.php:22 @@ -776,7 +776,7 @@ msgstr "Analizavać tablicu" msgid "Export" msgstr "Ekspart" -#: db_tracking.php:66 libraries/messages.inc.php:1151 +#: db_tracking.php:66 libraries/messages.inc.php:1147 msgid "Tracked tables" msgstr "" @@ -784,7 +784,7 @@ msgstr "" #: 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/header_printview.inc.php:58 libraries/messages.inc.php:212 +#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:208 #: navigation.php:233 server_databases.php:169 server_privileges.php:1621 #: server_privileges.php:1682 server_privileges.php:1940 #: server_processlist.php:56 server_synchronize.php:1179 @@ -792,76 +792,76 @@ msgstr "" msgid "Database" msgstr "Baza dadzienych" -#: db_tracking.php:73 libraries/messages.inc.php:1146 +#: db_tracking.php:73 libraries/messages.inc.php:1142 msgid "Last version" msgstr "" -#: db_tracking.php:74 libraries/messages.inc.php:1145 tbl_tracking.php:594 +#: db_tracking.php:74 libraries/messages.inc.php:1141 tbl_tracking.php:594 msgid "Created" msgstr "" -#: db_tracking.php:75 libraries/messages.inc.php:1147 tbl_tracking.php:595 +#: db_tracking.php:75 libraries/messages.inc.php:1143 tbl_tracking.php:595 msgid "Updated" msgstr "" #: db_tracking.php:77 libraries/Index.class.php:440 -#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:27 +#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:23 #: server_databases.php:203 server_privileges.php:1503 #: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187 msgid "Action" msgstr "Dziejańnie" -#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:247 +#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:243 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:106 libraries/messages.inc.php:1142 tbl_tracking.php:548 +#: db_tracking.php:106 libraries/messages.inc.php:1138 tbl_tracking.php:548 #: tbl_tracking.php:606 tbl_tracking.php:613 msgid "active" msgstr "" -#: db_tracking.php:108 libraries/messages.inc.php:1143 tbl_tracking.php:550 +#: db_tracking.php:108 libraries/messages.inc.php:1139 tbl_tracking.php:550 #: tbl_tracking.php:608 tbl_tracking.php:610 msgid "not active" msgstr "" -#: db_tracking.php:121 libraries/messages.inc.php:1160 +#: db_tracking.php:121 libraries/messages.inc.php:1156 msgid "Versions" msgstr "" -#: db_tracking.php:122 libraries/messages.inc.php:1132 tbl_tracking.php:379 +#: db_tracking.php:122 libraries/messages.inc.php:1128 tbl_tracking.php:379 #: tbl_tracking.php:624 msgid "Tracking report" msgstr "" -#: db_tracking.php:123 libraries/messages.inc.php:1144 tbl_tracking.php:251 +#: db_tracking.php:123 libraries/messages.inc.php:1140 tbl_tracking.php:251 #: tbl_tracking.php:624 msgid "Structure snapshot" msgstr "" -#: db_tracking.php:152 libraries/messages.inc.php:1154 +#: db_tracking.php:152 libraries/messages.inc.php:1150 msgid "Untracked tables" msgstr "" -#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1153 +#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1149 #: tbl_structure.php:529 tbl_structure.php:531 msgid "Track table" msgstr "" -#: db_tracking.php:200 libraries/messages.inc.php:1121 +#: db_tracking.php:200 libraries/messages.inc.php:1117 msgid "Database Log" msgstr "" -#: export.php:62 libraries/messages.inc.php:312 +#: export.php:62 libraries/messages.inc.php:308 msgid "Selected export type has to be saved in file!" msgstr "Dadzienyja vybranaha typu ekspartavańnia musiać być zazavanymi ŭ fajł!" -#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:567 +#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:563 #, php-format msgid "Insufficient space to save the file %s." msgstr "Niedastatkova miesca dla zachavańnia ŭ fajł %s." -#: export.php:294 libraries/messages.inc.php:324 +#: export.php:294 libraries/messages.inc.php:320 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -869,17 +869,17 @@ msgstr "" "Fajł %s užo isnuje na servery, źmianicie imia fajła abo praviercie opcyju " "pierazapisu." -#: export.php:298 export.php:302 libraries/messages.inc.php:562 +#: export.php:298 export.php:302 libraries/messages.inc.php:558 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Web-server nia maje dazvołu dla zachavańnia ŭ fajł %s." -#: export.php:629 libraries/messages.inc.php:276 +#: export.php:629 libraries/messages.inc.php:272 #, php-format msgid "Dump has been saved to file %s." msgstr "Damp zachavany ŭ fajł %s." -#: import.php:60 libraries/messages.inc.php:1202 +#: import.php:60 libraries/messages.inc.php:1198 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation%" @@ -890,14 +890,14 @@ msgstr "" "abmiežavańnie." #: import.php:279 import.php:332 libraries/File.class.php:849 -#: libraries/File.class.php:961 libraries/messages.inc.php:325 +#: libraries/File.class.php:961 libraries/messages.inc.php:321 msgid "File could not be read" msgstr "Niemahčyma pračytać fajł" #: import.php:287 import.php:296 import.php:315 import.php:324 #: libraries/File.class.php:1031 libraries/File.class.php:1039 #: libraries/File.class.php:1055 libraries/File.class.php:1063 -#: libraries/messages.inc.php:1189 +#: libraries/messages.inc.php:1185 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -907,7 +907,7 @@ msgstr "" "s). Jahonaja padtrymka abo nie realizavanaja, abo adklučanaja ŭ vašaj " "kanfihuracyi." -#: import.php:337 libraries/messages.inc.php:547 +#: import.php:337 libraries/messages.inc.php:543 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -918,30 +918,30 @@ msgstr "" "kanfihuracyjaj PHP. Hł. FAQ 1.16." #: import.php:372 libraries/display_import.lib.php:24 -#: libraries/messages.inc.php:125 +#: libraries/messages.inc.php:121 msgid "Could not load import plugins, please check your installation!" msgstr "" "Niemahčyma zahruzić płahiny impartavańnia, kali łaska, praviercie ŭstaloŭku!" -#: import.php:397 libraries/messages.inc.php:102 +#: import.php:397 libraries/messages.inc.php:98 msgid "The bookmark has been deleted." msgstr "Zakładka była vydalenaja." -#: import.php:401 libraries/messages.inc.php:879 +#: import.php:401 libraries/messages.inc.php:875 msgid "Showing bookmark" msgstr "Pakazvajučy zakładku" -#: import.php:403 libraries/messages.inc.php:101 +#: import.php:403 libraries/messages.inc.php:97 #, php-format msgid "Bookmark %s created" msgstr "Zakładka %s stvoranaja" -#: import.php:409 import.php:415 libraries/messages.inc.php:407 +#: import.php:409 import.php:415 libraries/messages.inc.php:403 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Impartravańnie paśpiachova zavieršanaje, vykanana %d zapytaŭ." -#: import.php:424 libraries/messages.inc.php:1107 +#: import.php:424 libraries/messages.inc.php:1103 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -949,11 +949,11 @@ msgstr "" "Vyjšaŭ dazvoleny čas vykanańnia skrypta. Kali vy chočacie zavieršyć " "impartavańnie, kali łaska, zahruzicie fajł znoŭ i impartavańnie ŭznavicca." -#: index.php:190 libraries/messages.inc.php:553 +#: index.php:190 libraries/messages.inc.php:549 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "Dla raboty phpMyAdmin patrebny braŭzer z padtrymkaj frejmaŭ." -#: js/messages.php:25 libraries/messages.inc.php:155 +#: js/messages.php:25 libraries/messages.inc.php:151 #: server_synchronize.php:345 server_synchronize.php:357 #: server_synchronize.php:373 server_synchronize.php:380 #: server_synchronize.php:739 server_synchronize.php:767 @@ -961,116 +961,116 @@ msgstr "Dla raboty phpMyAdmin patrebny braŭzer z padtrymkaj frejmaŭ." msgid "Click to select" msgstr "" -#: js/messages.php:26 libraries/messages.inc.php:156 +#: js/messages.php:26 libraries/messages.inc.php:152 msgid "Click to unselect" msgstr "" #: js/messages.php:27 libraries/import.lib.php:103 -#: libraries/messages.inc.php:550 sql.php:89 +#: libraries/messages.inc.php:546 sql.php:89 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Kamandy \"DROP DATABASE\" adklučanyja." -#: js/messages.php:30 libraries/messages.inc.php:270 +#: js/messages.php:30 libraries/messages.inc.php:266 #: libraries/mult_submits.inc.php:258 sql.php:188 msgid "Do you really want to " msgstr "Ci sapraŭdy vy žadajecie " -#: js/messages.php:31 libraries/messages.inc.php:271 +#: js/messages.php:31 libraries/messages.inc.php:267 #: libraries/mult_submits.inc.php:258 sql.php:172 msgid "You are about to DESTROY a complete database!" msgstr "Vy źbirajecie VYDALIĆ bazu dadzienych całkam!" -#: js/messages.php:34 libraries/messages.inc.php:94 +#: js/messages.php:34 libraries/messages.inc.php:90 msgid "You are about to DISABLE a BLOB Repository!" msgstr "" -#: js/messages.php:35 libraries/messages.inc.php:91 +#: js/messages.php:35 libraries/messages.inc.php:87 #, php-format msgid "Are you sure you want to disable all BLOB references for database %s?" msgstr "" -#: js/messages.php:38 libraries/messages.inc.php:342 +#: js/messages.php:38 libraries/messages.inc.php:338 msgid "Missing value in the form!" msgstr "Nie zadadzienaje značeńnie ŭ formie!" -#: js/messages.php:39 libraries/messages.inc.php:570 +#: js/messages.php:39 libraries/messages.inc.php:566 msgid "This is not a number!" msgstr "Heta nia lik!" -#: js/messages.php:42 libraries/messages.inc.php:380 +#: js/messages.php:42 libraries/messages.inc.php:376 msgid "The host name is empty!" msgstr "Pustoje imia chostu!" -#: js/messages.php:43 libraries/messages.inc.php:1208 +#: js/messages.php:43 libraries/messages.inc.php:1204 msgid "The user name is empty!" msgstr "Pustoje imia karystalnika!" -#: js/messages.php:44 libraries/messages.inc.php:607 +#: js/messages.php:44 libraries/messages.inc.php:603 #: server_privileges.php:1197 user_password.php:70 msgid "The password is empty!" msgstr "Pusty parol!" -#: js/messages.php:45 libraries/messages.inc.php:609 +#: js/messages.php:45 libraries/messages.inc.php:605 #: server_privileges.php:1195 user_password.php:73 msgid "The passwords aren't the same!" msgstr "Paroli nie supadajuć!" -#: js/messages.php:49 libraries/messages.inc.php:123 pmd_general.php:342 +#: js/messages.php:49 libraries/messages.inc.php:119 pmd_general.php:342 #: pmd_general.php:379 msgid "Cancel" msgstr "Skasavać" -#: js/messages.php:52 libraries/messages.inc.php:514 +#: js/messages.php:52 libraries/messages.inc.php:510 msgid "Modifications have been saved" msgstr "Madyfikacyi byli zachavanyja" -#: js/messages.php:53 libraries/messages.inc.php:741 +#: js/messages.php:53 libraries/messages.inc.php:737 msgid "Relation deleted" msgstr "Suviaź vydalenaja" -#: js/messages.php:54 libraries/messages.inc.php:340 +#: js/messages.php:54 libraries/messages.inc.php:336 msgid "FOREIGN KEY relation added" msgstr "Suviaź FOREIGN KEY była dadadzienaja" -#: js/messages.php:55 libraries/messages.inc.php:434 +#: js/messages.php:55 libraries/messages.inc.php:430 msgid "Internal relation added" msgstr "Unutranaja suviaź dadadzienaja" -#: js/messages.php:56 libraries/messages.inc.php:299 +#: js/messages.php:56 libraries/messages.inc.php:295 msgid "Error: Relation not added." msgstr "Pamyłka: suviaź nie dadadzienaja." -#: js/messages.php:57 libraries/messages.inc.php:300 +#: js/messages.php:57 libraries/messages.inc.php:296 msgid "Error: relation already exists." msgstr "Pamyłka: suviaź užo isnuje." -#: js/messages.php:58 libraries/messages.inc.php:302 +#: js/messages.php:58 libraries/messages.inc.php:298 msgid "Error saving coordinates for Designer." msgstr "Pamyłka zachavańnia kaardynataŭ." -#: js/messages.php:59 libraries/messages.inc.php:351 +#: js/messages.php:59 libraries/messages.inc.php:347 #: libraries/relation.lib.php:107 msgid "General relation features" msgstr "Mahčymaści asnoŭnych suviaziaŭ" -#: js/messages.php:59 libraries/messages.inc.php:260 +#: js/messages.php:59 libraries/messages.inc.php:256 #: libraries/relation.lib.php:101 libraries/relation.lib.php:108 msgid "Disabled" msgstr "Adklučana" -#: js/messages.php:60 libraries/messages.inc.php:850 +#: js/messages.php:60 libraries/messages.inc.php:846 msgid "Select referenced key" msgstr "Vybierycie spasyłkavy kluč" -#: js/messages.php:61 libraries/messages.inc.php:848 +#: js/messages.php:61 libraries/messages.inc.php:844 msgid "Select Foreign Key" msgstr "Vybierycie źniešni kluč" -#: js/messages.php:62 libraries/messages.inc.php:653 +#: js/messages.php:62 libraries/messages.inc.php:649 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 libraries/messages.inc.php:142 pmd_general.php:77 +#: js/messages.php:63 libraries/messages.inc.php:138 pmd_general.php:77 #: tbl_relation.php:548 msgid "Choose field to display" msgstr "Vybierycie pole dla adlustravańnia" @@ -1090,9 +1090,9 @@ msgid "Prev" msgstr "Papiaredniaja staronka" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2332 -#: libraries/common.lib.php:2335 libraries/display_tbl.lib.php:338 -#: libraries/messages.inc.php:543 server_binlog.php:205 server_binlog.php:207 +#: js/messages.php:77 libraries/common.lib.php:2344 +#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: libraries/messages.inc.php:539 server_binlog.php:205 server_binlog.php:207 #: tbl_printview.php:424 tbl_structure.php:802 msgid "Next" msgstr "Nastupnaja staronka" @@ -1167,27 +1167,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1543 +#: js/messages.php:97 libraries/common.lib.php:1555 msgid "Jan" msgstr "Stu" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1545 +#: js/messages.php:99 libraries/common.lib.php:1557 msgid "Feb" msgstr "Lut" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1547 +#: js/messages.php:101 libraries/common.lib.php:1559 msgid "Mar" msgstr "Sak" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1549 +#: js/messages.php:103 libraries/common.lib.php:1561 msgid "Apr" msgstr "Kra" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1551 +#: js/messages.php:105 libraries/common.lib.php:1563 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1195,37 +1195,37 @@ msgid "May" msgstr "Tra" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1553 +#: js/messages.php:107 libraries/common.lib.php:1565 msgid "Jun" msgstr "Čer" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1555 +#: js/messages.php:109 libraries/common.lib.php:1567 msgid "Jul" msgstr "Lip" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1557 +#: js/messages.php:111 libraries/common.lib.php:1569 msgid "Aug" msgstr "Žni" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1559 +#: js/messages.php:113 libraries/common.lib.php:1571 msgid "Sep" msgstr "Vier" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1561 +#: js/messages.php:115 libraries/common.lib.php:1573 msgid "Oct" msgstr "Kas" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1563 +#: js/messages.php:117 libraries/common.lib.php:1575 msgid "Nov" msgstr "Lis" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1565 +#: js/messages.php:119 libraries/common.lib.php:1577 msgid "Dec" msgstr "Śn" @@ -1266,37 +1266,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1568 +#: js/messages.php:132 libraries/common.lib.php:1580 msgid "Sun" msgstr "Ndz" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1570 +#: js/messages.php:134 libraries/common.lib.php:1582 msgid "Mon" msgstr "Pan" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1572 +#: js/messages.php:136 libraries/common.lib.php:1584 msgid "Tue" msgstr "Aŭt" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1574 +#: js/messages.php:138 libraries/common.lib.php:1586 msgid "Wed" msgstr "Sier" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1576 +#: js/messages.php:140 libraries/common.lib.php:1588 msgid "Thu" msgstr "Cač" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1578 +#: js/messages.php:142 libraries/common.lib.php:1590 msgid "Fri" msgstr "Piat" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1580 +#: js/messages.php:144 libraries/common.lib.php:1592 msgid "Sat" msgstr "Sub" @@ -1372,23 +1372,23 @@ msgstr "vykarystoŭvajecca" msgid "Second" msgstr "u sekundu" -#: libraries/Config.class.php:1015 libraries/messages.inc.php:338 +#: libraries/Config.class.php:1015 libraries/messages.inc.php:334 msgid "Font size" msgstr "Pamier šryfta" #: libraries/File.class.php:344 libraries/File.class.php:432 #: libraries/File.class.php:569 libraries/File.class.php:708 -#: libraries/messages.inc.php:1201 +#: libraries/messages.inc.php:1197 msgid "Unknown error in file upload." msgstr "Padčas zahruzki fajła adbyłasia nieviadomaja pamyłka." -#: libraries/File.class.php:414 libraries/messages.inc.php:1198 +#: libraries/File.class.php:414 libraries/messages.inc.php:1194 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "Pamier zahružanaha fajła pieraŭzychodzić parametar upload_max_filesize u php." "ini." -#: libraries/File.class.php:417 libraries/messages.inc.php:1197 +#: libraries/File.class.php:417 libraries/messages.inc.php:1193 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -1396,57 +1396,57 @@ msgstr "" "Pamier zahružanaha fajła pieraŭzychodzić parametar MAX_FILE_SIZE, jaki byŭ " "vyznačany ŭ HTML-formie." -#: libraries/File.class.php:420 libraries/messages.inc.php:1200 +#: libraries/File.class.php:420 libraries/messages.inc.php:1196 msgid "The uploaded file was only partially uploaded." msgstr "Fajł byŭ zahružany tolki častkova." -#: libraries/File.class.php:423 libraries/messages.inc.php:1199 +#: libraries/File.class.php:423 libraries/messages.inc.php:1195 msgid "Missing a temporary folder." msgstr "Adsutničaje časovaja tečka." -#: libraries/File.class.php:426 libraries/messages.inc.php:1195 +#: libraries/File.class.php:426 libraries/messages.inc.php:1191 msgid "Failed to write file to disk." msgstr "Pamyłka zapisu na dysk." -#: libraries/File.class.php:429 libraries/messages.inc.php:1196 +#: libraries/File.class.php:429 libraries/messages.inc.php:1192 msgid "File upload stopped by extension." msgstr "Zahruzka fajła spynienaja pašyreńniem." -#: libraries/File.class.php:908 libraries/messages.inc.php:319 +#: libraries/File.class.php:908 libraries/messages.inc.php:315 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "" "Pamyłka pieramiaščeńnia zahružanaha fajła. Hladzicie raździeł 1.11 u FAQ" -#: libraries/Index.class.php:428 libraries/messages.inc.php:554 +#: libraries/Index.class.php:428 libraries/messages.inc.php:550 #: tbl_relation.php:529 msgid "No index defined!" msgstr "Indeks nia vyznačany!" -#: libraries/Index.class.php:433 libraries/messages.inc.php:411 +#: libraries/Index.class.php:433 libraries/messages.inc.php:407 #: server_databases.php:132 tbl_tracking.php:316 msgid "Indexes" msgstr "Indeksy" -#: libraries/Index.class.php:444 libraries/messages.inc.php:1186 +#: libraries/Index.class.php:444 libraries/messages.inc.php:1182 #: 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:475 tbl_tracking.php:322 msgid "Unique" msgstr "Unikalnaje" -#: libraries/Index.class.php:445 libraries/messages.inc.php:596 +#: libraries/Index.class.php:445 libraries/messages.inc.php:592 #: tbl_tracking.php:323 msgid "Packed" msgstr "Ścisnutaja" -#: libraries/Index.class.php:447 libraries/messages.inc.php:131 +#: libraries/Index.class.php:447 libraries/messages.inc.php:127 #: tbl_tracking.php:325 msgid "Cardinality" msgstr "Kolkaść elementaŭ" -#: libraries/Index.class.php:450 libraries/messages.inc.php:162 +#: libraries/Index.class.php:450 libraries/messages.inc.php:158 #: tbl_tracking.php:279 tbl_tracking.php:328 msgid "Comment" msgstr "Kamentar" @@ -1454,22 +1454,22 @@ msgstr "Kamentar" #: libraries/Index.class.php:466 libraries/common.lib.php:616 #: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:280 pdf_pages.php:280 +#: libraries/messages.inc.php:276 pdf_pages.php:280 #: setup/frames/index.inc.php:124 setup/lib/messages.inc.php:352 #: tbl_row_action.php:69 msgid "Edit" msgstr "Redagavać" -#: libraries/Index.class.php:472 libraries/messages.inc.php:666 +#: libraries/Index.class.php:472 libraries/messages.inc.php:662 msgid "The primary key has been dropped" msgstr "Pieršasny kluč byŭ vydaleny" -#: libraries/Index.class.php:476 libraries/messages.inc.php:413 +#: libraries/Index.class.php:476 libraries/messages.inc.php:409 #, php-format msgid "Index %s has been dropped" msgstr "Indeks %s byŭ vydaleny" -#: libraries/Index.class.php:576 libraries/messages.inc.php:412 +#: libraries/Index.class.php:576 libraries/messages.inc.php:408 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -1478,7 +1478,7 @@ 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/messages.inc.php:218 +#: libraries/List_Database.class.php:431 libraries/messages.inc.php:214 #: libraries/server_links.inc.php:41 server_databases.php:88 #: server_privileges.php:1621 setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" @@ -1508,86 +1508,86 @@ msgid_plural "%1$d rows inserted." msgstr[0] "Ustaŭlena radkoŭ: %1$d." msgstr[1] "Ustaŭlena radkoŭ: %1$d." -#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:549 +#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:545 msgid "" "There is no detailed status information available for this storage engine." msgstr "" "Dla hetaj mašyny zachavańnia dadzienych detalnaja infarmacyja nie dastupnaja." -#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:291 +#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:287 #, php-format msgid "%s is available on this MySQL server." msgstr "%s dastupnaja na hetym MySQL-servery." -#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:292 +#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:288 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s była adklučanaja dla retaha MySQL-servera." -#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:294 +#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:290 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "Hety server MySQL nie padtrymlivaje mašynu zachavańnia dadzienych %s." -#: libraries/Table.class.php:1019 libraries/messages.inc.php:443 +#: libraries/Table.class.php:1019 libraries/messages.inc.php:439 msgid "Invalid database" msgstr "Niapravilnaja baza dadzienych" -#: libraries/Table.class.php:1033 libraries/messages.inc.php:450 +#: libraries/Table.class.php:1033 libraries/messages.inc.php:446 #: tbl_get_field.php:26 msgid "Invalid table name" msgstr "Niekarektnaje imia tablicy" -#: libraries/Table.class.php:1048 libraries/messages.inc.php:301 +#: libraries/Table.class.php:1048 libraries/messages.inc.php:297 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "Pamyłka pierajmienavańnia tablicy %1$s u %2$s" -#: libraries/Table.class.php:1132 libraries/messages.inc.php:754 +#: libraries/Table.class.php:1132 libraries/messages.inc.php:750 #, php-format msgid "Table %s has been renamed to %s" msgstr "Tablica %s była pierajmienavanaja ŭ %s" -#: libraries/Theme.class.php:162 libraries/messages.inc.php:1099 +#: libraries/Theme.class.php:162 libraries/messages.inc.php:1095 #, php-format msgid "No valid image path for theme %s found!" msgstr "Dapuščalny šlach da malunkaŭ temy %s nia znojdzieny!" -#: libraries/Theme.class.php:384 libraries/messages.inc.php:1097 +#: libraries/Theme.class.php:384 libraries/messages.inc.php:1093 msgid "No preview available." msgstr "Papiaredni prahlad niedastupny." -#: libraries/Theme.class.php:387 libraries/messages.inc.php:1089 +#: libraries/Theme.class.php:387 libraries/messages.inc.php:1085 msgid "take it" msgstr "hetaja" -#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1096 +#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1092 #, php-format msgid "Default theme %s not found!" msgstr "Tema pa zmoŭčańni %s nia znojdzienaja!" -#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1098 +#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1094 #, php-format msgid "Theme %s not found!" msgstr "Tema %s nia znojdzienaja!" -#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1100 +#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1096 #, php-format msgid "Theme path not found for theme %s!" msgstr "Nia znojdzieny šlach da temy %s!" -#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1101 +#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1097 #: test/theme.php:161 themes.php:21 themes.php:41 msgid "Theme / Style" msgstr "Tema / Styl" -#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:172 +#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:168 msgid "Cannot connect: invalid settings." msgstr "Niemahčyma padłučycca: niapravilnyja nałady." #: libraries/auth/config.auth.lib.php:92 #: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65 -#: libraries/messages.inc.php:1238 test/theme.php:152 +#: libraries/messages.inc.php:1234 test/theme.php:152 #, php-format msgid "Welcome to %s" msgstr "Zaprašajem u %s" @@ -1613,51 +1613,51 @@ msgstr "" "ŭpeŭniciesia, što jany adpaviadajuć infarmacyi, jakuju daŭ administratar " "MySQL-servera." -#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:488 +#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:484 msgid "Log in" msgstr "Uvachod u systemu" #: libraries/auth/cookie.auth.lib.php:246 -#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:659 +#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:655 #: libraries/navigation_header.inc.php:93 #: libraries/navigation_header.inc.php:95 msgid "phpMyAdmin documentation" msgstr "Dakumentacyja pa phpMyAdmin" #: libraries/auth/cookie.auth.lib.php:258 -#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:492 +#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:488 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:493 +#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:489 msgid "Server:" msgstr "Server" -#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:494 +#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:490 msgid "Username:" msgstr "Imia karystalnika:" -#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:491 +#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:487 msgid "Password:" msgstr "Parol:" -#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:854 +#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:850 msgid "Server Choice" msgstr "Vybar servera" #: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 -#: libraries/messages.inc.php:177 +#: libraries/messages.inc.php:173 msgid "Cookies must be enabled past this point." msgstr "Cookies musiać być uklučanymi paśla hetaha miesca." #: libraries/auth/cookie.auth.lib.php:671 -#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:489 +#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:485 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" #: libraries/auth/cookie.auth.lib.php:675 -#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:544 +#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:540 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" @@ -1666,53 +1666,53 @@ msgstr "" #: libraries/auth/cookie.auth.lib.php:685 #: libraries/auth/cookie.auth.lib.php:687 -#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:126 +#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:122 msgid "Cannot log in to the MySQL server" msgstr "Niemahčyma załahavacca na server MySQL" -#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1245 +#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1241 msgid "Wrong username/password. Access denied." msgstr "Niapravilny łahin/parol. U dostupie admoŭlena." #: libraries/auth/swekey/swekey.auth.lib.php:118 -#: libraries/messages.inc.php:1057 +#: libraries/messages.inc.php:1053 #, php-format msgid "File %s does not contain any key id" msgstr "Fajł %s nia ŭtrymlivaje nijakaha identyfikatara kluča" #: libraries/auth/swekey/swekey.auth.lib.php:157 #: libraries/auth/swekey/swekey.auth.lib.php:180 -#: libraries/messages.inc.php:1056 +#: libraries/messages.inc.php:1052 msgid "Hardware authentication failed" msgstr "Aparatnaja aŭtentyfikacyja skončyłasia niaŭdała" #: libraries/auth/swekey/swekey.auth.lib.php:166 -#: libraries/messages.inc.php:1058 +#: libraries/messages.inc.php:1054 msgid "No valid authentication key plugged" msgstr "Dziejny kluč aŭtentyfikacyi nie padklučany" #: libraries/auth/swekey/swekey.auth.lib.php:202 -#: libraries/messages.inc.php:1055 +#: libraries/messages.inc.php:1051 msgid "Authenticating..." msgstr "Aŭtentyfikacyja..." -#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1230 +#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1226 msgid "View image" msgstr "" -#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:652 +#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:648 msgid "Play audio" msgstr "" -#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1232 +#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1228 msgid "View video" msgstr "" -#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:269 +#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:265 msgid "Download file" msgstr "" -#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:128 +#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:124 msgid "" "Couldn't load the iconv or recode extension needed for charset conversion. " "Either configure PHP to enable these extensions or disable charset " @@ -1724,7 +1724,7 @@ msgstr "" #: libraries/charset_conversion.lib.php:79 #: libraries/charset_conversion.lib.php:90 -#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:130 +#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:126 msgid "" "Couldn't use the iconv, libiconv, or recode_string functions, although the " "necessary extensions appear to be loaded. Check your PHP configuration." @@ -1733,7 +1733,7 @@ msgstr "" "toj čas, jak pašyreńnie paviedamlaje, što jano zahružanaje. Praviercie " "vašuju kanfihuracyju PHP." -#: libraries/common.inc.php:583 libraries/messages.inc.php:170 +#: libraries/common.inc.php:583 libraries/messages.inc.php:166 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!" @@ -1769,7 +1769,7 @@ msgstr "" msgid "Invalid server index: %s" msgstr "Niekarektny indeks servera: \"%s\"" -#: libraries/common.inc.php:636 libraries/messages.inc.php:448 +#: libraries/common.inc.php:636 libraries/messages.inc.php:444 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" @@ -1777,16 +1777,16 @@ msgstr "" "kanfihurycyju." #: libraries/common.inc.php:645 libraries/header.inc.php:96 -#: libraries/messages.inc.php:856 libraries/select_server.lib.php:41 +#: libraries/messages.inc.php:852 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/messages.inc.php:437 +#: libraries/common.inc.php:823 libraries/messages.inc.php:433 msgid "Invalid authentication method set in configuration:" msgstr "U kanfihuracyi vyznačany niekarektny metad aŭtentyfikacyi:" -#: libraries/common.lib.php:147 libraries/messages.inc.php:499 +#: libraries/common.lib.php:147 libraries/messages.inc.php:495 #, php-format msgid "Max: %s%s" msgstr "Maksymalny pamier: %s%s" @@ -1806,7 +1806,7 @@ msgstr "en" #: libraries/common.lib.php:428 libraries/common.lib.php:430 #: libraries/common.lib.php:432 libraries/common.lib.php:448 #: libraries/common.lib.php:450 libraries/dbg/setup.php:25 -#: libraries/display_export.lib.php:164 libraries/messages.inc.php:267 +#: libraries/display_export.lib.php:164 libraries/messages.inc.php:263 #: libraries/relation.lib.php:97 libraries/sql_query_form.lib.php:451 #: libraries/sql_query_form.lib.php:454 main.php:229 pdf_pages.php:37 #: pdf_pages.php:43 pdf_pages.php:49 pdf_pages.php:54 @@ -1816,55 +1816,55 @@ msgstr "Dakumentacyja" #: libraries/common.lib.php:581 libraries/core.lib.php:234 #: libraries/core.lib.php:263 libraries/import.lib.php:134 -#: libraries/messages.inc.php:297 pdf_schema.php:32 pdf_schema.php:232 +#: libraries/messages.inc.php:293 pdf_schema.php:32 pdf_schema.php:232 #: tbl_change.php:1027 tbl_operations.php:213 tbl_relation.php:290 #: view_operations.php:62 msgid "Error" msgstr "Pamyłka" #: libraries/common.lib.php:595 libraries/header_printview.inc.php:61 -#: libraries/messages.inc.php:1023 server_processlist.php:60 +#: libraries/messages.inc.php:1019 server_processlist.php:60 #: server_status.php:247 msgid "SQL query" msgstr "SQL-zapyt" -#: libraries/common.lib.php:634 libraries/messages.inc.php:538 +#: libraries/common.lib.php:634 libraries/messages.inc.php:534 msgid "MySQL said: " msgstr "Adkaz MySQL: " -#: libraries/common.lib.php:667 libraries/messages.inc.php:76 +#: libraries/common.lib.php:667 libraries/messages.inc.php:72 #: pdf_schema.php:241 user_password.php:115 msgid "Back" msgstr "Nazad" -#: libraries/common.lib.php:1177 libraries/messages.inc.php:309 +#: libraries/common.lib.php:1177 libraries/messages.inc.php:305 #: setup/lib/messages.inc.php:353 msgid "Explain SQL" msgstr "Tłumačyć SQL" -#: libraries/common.lib.php:1180 libraries/messages.inc.php:551 +#: libraries/common.lib.php:1180 libraries/messages.inc.php:547 msgid "Skip Explain SQL" msgstr "Nie tłumačyć SQL" -#: libraries/common.lib.php:1212 libraries/messages.inc.php:563 +#: libraries/common.lib.php:1212 libraries/messages.inc.php:559 msgid "Without PHP Code" msgstr "Biez PHP-kodu" -#: libraries/common.lib.php:1215 libraries/messages.inc.php:649 +#: libraries/common.lib.php:1215 libraries/messages.inc.php:645 #: setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "Stvaryć PHP-kod" -#: libraries/common.lib.php:1233 libraries/messages.inc.php:737 +#: libraries/common.lib.php:1233 libraries/messages.inc.php:733 #: server_status.php:341 setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "Abnavić" -#: libraries/common.lib.php:1242 libraries/messages.inc.php:575 +#: libraries/common.lib.php:1242 libraries/messages.inc.php:571 msgid "Skip Validate SQL" msgstr "Nie praviarać SQL" -#: libraries/common.lib.php:1245 libraries/messages.inc.php:1220 +#: libraries/common.lib.php:1245 libraries/messages.inc.php:1216 #: setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "Pravieryć SQL" @@ -1880,11 +1880,11 @@ msgid "Inline" msgstr "Mašyny" #: libraries/common.lib.php:1332 libraries/common.lib.php:1347 -#: libraries/messages.inc.php:713 +#: libraries/messages.inc.php:709 msgid "Profiling" msgstr "Prafilavańnie" -#: libraries/common.lib.php:1351 libraries/messages.inc.php:1108 +#: libraries/common.lib.php:1351 libraries/messages.inc.php:1104 #: libraries/tbl_triggers.lib.php:28 server_processlist.php:58 msgid "Time" msgstr "Čas" @@ -1918,40 +1918,50 @@ msgstr "PiB" msgid "EiB" msgstr "EiB" +#. l10n: Thousands separator +#: libraries/common.lib.php:1417 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: libraries/common.lib.php:1419 +msgid "." +msgstr "." + #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1584 +#: libraries/common.lib.php:1596 #: libraries/transformations/text_plain__dateformat.inc.php:28 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y, %H:%M" -#: libraries/common.lib.php:1886 +#: libraries/common.lib.php:1898 #, 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:2301 libraries/common.lib.php:2304 -#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:664 +#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:660 #: server_status.php:608 msgid "Begin" msgstr "Pieršaja staronka" -#: libraries/common.lib.php:2302 libraries/common.lib.php:2305 -#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:665 +#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:661 #: server_binlog.php:168 server_binlog.php:170 msgid "Previous" msgstr "Papiaredniaja staronka" -#: libraries/common.lib.php:2333 libraries/common.lib.php:2336 -#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:289 +#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:285 msgid "End" msgstr "Apošniaja staronka" -#: libraries/common.lib.php:2409 libraries/messages.inc.php:455 +#: libraries/common.lib.php:2421 libraries/messages.inc.php:451 #, php-format msgid "Jump to database "%s"." msgstr "Pierajści da bazy dadzienych \"%s\"." -#: libraries/common.lib.php:2429 libraries/messages.inc.php:461 +#: libraries/common.lib.php:2441 libraries/messages.inc.php:457 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" @@ -1959,7 +1969,7 @@ msgstr "" "na %s" #: libraries/core.lib.php:286 libraries/dbg/setup.php:22 -#: libraries/messages.inc.php:127 +#: libraries/messages.inc.php:123 #, php-format msgid "" "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " @@ -1968,117 +1978,117 @@ msgstr "" "niemahčyma zahruzić pašyreńnie %s; kali łaska, praviercie kanfihuracyju PHP" #: libraries/db_events.inc.php:20 libraries/db_events.inc.php:22 -#: libraries/export/sql.php:415 libraries/messages.inc.php:306 +#: libraries/export/sql.php:415 libraries/messages.inc.php:302 msgid "Events" msgstr "Padziei" #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 -#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:541 +#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:537 #: libraries/tbl_triggers.lib.php:27 setup/frames/index.inc.php:112 msgid "Name" msgstr "Nazva" -#: libraries/db_links.inc.php:45 libraries/messages.inc.php:216 +#: libraries/db_links.inc.php:45 libraries/messages.inc.php:212 #, php-format msgid "Database %s has been dropped." msgstr "Baza dadzienych %s była vydalenaja." #: libraries/db_links.inc.php:57 libraries/db_links.inc.php:58 -#: libraries/db_links.inc.php:59 libraries/messages.inc.php:234 +#: libraries/db_links.inc.php:59 libraries/messages.inc.php:230 msgid "Database seems to be empty!" msgstr "Baza dadzienych — pustaja!" -#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1025 +#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1021 #: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60 #: querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1152 +#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1148 #: libraries/tbl_links.inc.php:69 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:86 libraries/messages.inc.php:719 +#: libraries/db_links.inc.php:86 libraries/messages.inc.php:715 msgid "Query" msgstr "Zapyt zhodna prykładu" -#: libraries/db_links.inc.php:91 libraries/messages.inc.php:253 +#: libraries/db_links.inc.php:91 libraries/messages.inc.php:249 msgid "Designer" msgstr "Dyzajner" -#: libraries/db_links.inc.php:98 libraries/messages.inc.php:397 +#: libraries/db_links.inc.php:98 libraries/messages.inc.php:393 #: libraries/server_links.inc.php:88 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:104 libraries/messages.inc.php:587 +#: libraries/db_links.inc.php:104 libraries/messages.inc.php:583 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" msgstr "Aperacyi" -#: libraries/db_links.inc.php:111 libraries/messages.inc.php:709 +#: libraries/db_links.inc.php:111 libraries/messages.inc.php:705 #: libraries/server_links.inc.php:66 server_privileges.php:72 #: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117 msgid "Privileges" msgstr "Pryvilei" #: libraries/db_routines.inc.php:30 libraries/db_routines.inc.php:32 -#: libraries/messages.inc.php:812 +#: libraries/messages.inc.php:808 msgid "Routines" msgstr "Pracedury" -#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:811 +#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:807 msgid "Return type" msgstr "Typ pracedury" #: libraries/db_structure.lib.php:57 libraries/display_tbl.lib.php:1848 -#: libraries/messages.inc.php:65 +#: libraries/messages.inc.php:61 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "Značeńnie moža być prybliznym. Hł. FAQ 3.11" -#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:593 +#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:589 #: server_databases.php:142 tbl_printview.php:336 tbl_structure.php:683 msgid "Overhead" msgstr "Vykarystańnie resursaŭ" #: libraries/dbi/mysql.dbi.lib.php:112 libraries/dbi/mysqli.dbi.lib.php:124 -#: libraries/messages.inc.php:176 +#: libraries/messages.inc.php:172 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Nie atrymałasia ŭstalavać złučeńnie dla controluser, vyznačanaje ŭ vašym " "kanfihuracyjnym fajle." #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 -#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:855 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:851 msgid "The server is not responding" msgstr "Server nie adkazvaje" #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:1010 +#: libraries/messages.inc.php:1006 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 libraries/messages.inc.php:255 +#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:251 #: tbl_structure.php:609 msgid "Details..." msgstr "Padrabiaźniej..." -#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:143 +#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:139 #: main.php:91 user_password.php:111 user_password.php:129 msgid "Change password" msgstr "Źmianić parol" -#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:561 +#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:557 #: libraries/replication_gui.lib.php:341 server_privileges.php:768 msgid "No Password" msgstr "Biez parola" -#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:610 +#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:606 #: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60 #: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335 #: libraries/replication_gui.lib.php:345 server_privileges.php:757 @@ -2087,13 +2097,13 @@ msgstr "Biez parola" msgid "Password" msgstr "Parol" -#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:806 +#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:802 #: libraries/replication_gui.lib.php:349 libraries/replication_gui.lib.php:352 #: server_privileges.php:776 server_privileges.php:779 msgid "Re-type" msgstr "Paćvierdžańnie" -#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:608 +#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:604 msgid "Password Hashing" msgstr "Chešavańnie parolu" @@ -2103,91 +2113,91 @@ msgstr "Chešavańnie parolu" msgid "MySQL 4.0 compatible" msgstr "Sumiaščalnaje z MySQL 4.0" -#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:353 +#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:349 #: libraries/replication_gui.lib.php:356 server_privileges.php:783 msgid "Generate Password" msgstr "Zgieneravać parol" -#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:352 +#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:348 #: libraries/replication_gui.lib.php:359 server_privileges.php:786 msgid "Generate" msgstr "Zgieneravać" #: libraries/display_create_database.lib.php:22 -#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:189 +#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:185 msgid "Create new database" msgstr "Stvaryć novuju bazu dadzienych" -#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:185 +#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:181 msgid "Create" msgstr "Stvaryć" -#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:564 +#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:560 #: server_privileges.php:74 server_privileges.php:1388 #: server_replication.php:35 msgid "No Privileges" msgstr "Biez pryvilejaŭ" -#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:445 +#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:441 msgid "Table must have at least one field." msgstr "Tablica musić mieć prynamsi adno pole." -#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:190 +#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:186 #, php-format msgid "Create table on database %s" msgstr "Stvaryć novuju tablicu ŭ BD %s" -#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:577 +#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:573 msgid "Number of fields" msgstr "Kolkaść paloŭ" -#: libraries/display_export.lib.php:42 libraries/messages.inc.php:124 +#: libraries/display_export.lib.php:42 libraries/messages.inc.php:120 msgid "Could not load export plugins, please check your installation!" msgstr "" "Niemahčyma zahruzić płahiny ekspartavańnia, kali łaska, praviercie " "ŭstalavanyja fajły!" -#: libraries/display_export.lib.php:107 libraries/messages.inc.php:277 +#: libraries/display_export.lib.php:107 libraries/messages.inc.php:273 #, php-format msgid "Dump %s row(s) starting at record # %s" msgstr "Damp %s radkoŭ, pačynajučy z %s." -#: libraries/display_export.lib.php:115 libraries/messages.inc.php:274 +#: libraries/display_export.lib.php:115 libraries/messages.inc.php:270 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:125 libraries/messages.inc.php:852 +#: libraries/display_export.lib.php:125 libraries/messages.inc.php:848 #: setup/lib/messages.inc.php:82 msgid "Save as file" msgstr "Zachavać jak fajł" -#: libraries/display_export.lib.php:134 libraries/messages.inc.php:828 +#: libraries/display_export.lib.php:134 libraries/messages.inc.php:824 #, php-format msgid "Save on server in %s directory" msgstr "Zachavać na servery ŭ tečcy %s" -#: libraries/display_export.lib.php:142 libraries/messages.inc.php:594 +#: libraries/display_export.lib.php:142 libraries/messages.inc.php:590 #: setup/lib/messages.inc.php:90 msgid "Overwrite existing file(s)" msgstr "Pierazapisvać isnujučy(ja) fajł(y)" -#: libraries/display_export.lib.php:148 libraries/messages.inc.php:330 +#: libraries/display_export.lib.php:148 libraries/messages.inc.php:326 msgid "File name template" msgstr "Šablon nazvy fajła" -#: libraries/display_export.lib.php:152 libraries/messages.inc.php:327 +#: libraries/display_export.lib.php:152 libraries/messages.inc.php:323 msgid "server name" msgstr "imia servera" -#: libraries/display_export.lib.php:155 libraries/messages.inc.php:326 +#: libraries/display_export.lib.php:155 libraries/messages.inc.php:322 msgid "database name" msgstr "imia bazy dadzienych" -#: libraries/display_export.lib.php:158 libraries/messages.inc.php:328 +#: libraries/display_export.lib.php:158 libraries/messages.inc.php:324 msgid "table name" msgstr "imia tablicy" -#: libraries/display_export.lib.php:162 libraries/messages.inc.php:329 +#: libraries/display_export.lib.php:162 libraries/messages.inc.php:325 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2198,24 +2208,24 @@ msgstr "" "možna vykarystoŭvać radki farmatavańnia času. Aproč hetaha, buduć " "praviedzienyja nastupnyja źmieny: %3$s. Astatni tekst zastaniecca jak jość." -#: libraries/display_export.lib.php:202 libraries/messages.inc.php:331 +#: libraries/display_export.lib.php:202 libraries/messages.inc.php:327 msgid "remember template" msgstr "zapomnić šablon" #: libraries/display_export.lib.php:210 libraries/display_import.lib.php:178 -#: libraries/display_import.lib.php:191 libraries/messages.inc.php:145 +#: libraries/display_import.lib.php:191 libraries/messages.inc.php:141 #: libraries/sql_query_form.lib.php:549 msgid "Character set of the file:" msgstr "Kadyroŭka fajła:" -#: libraries/display_export.lib.php:235 libraries/messages.inc.php:166 +#: libraries/display_export.lib.php:235 libraries/messages.inc.php:162 #: setup/lib/messages.inc.php:84 msgid "Compression" 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/messages.inc.php:558 +#: libraries/export/sql.php:868 libraries/messages.inc.php:554 #: libraries/tbl_properties.inc.php:575 server_privileges.php:1836 #: server_processlist.php:75 msgid "None" @@ -2239,60 +2249,60 @@ msgstr "archivavany ŭ gzip" msgid "bzipped" msgstr "ściskać u bzip" -#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1018 +#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1014 msgid "SQL compatibility mode" msgstr "Režym sumiaščalnaści SQL" -#: libraries/display_import.lib.php:67 libraries/messages.inc.php:398 +#: libraries/display_import.lib.php:67 libraries/messages.inc.php:394 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " "browsers." msgstr "" -#: libraries/display_import.lib.php:77 libraries/messages.inc.php:406 +#: libraries/display_import.lib.php:77 libraries/messages.inc.php:402 msgid "The file is being processed, please be patient." msgstr "" -#: libraries/display_import.lib.php:99 libraries/messages.inc.php:408 +#: libraries/display_import.lib.php:99 libraries/messages.inc.php:404 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." msgstr "" -#: libraries/display_import.lib.php:126 libraries/messages.inc.php:333 +#: libraries/display_import.lib.php:126 libraries/messages.inc.php:329 msgid "File to import" msgstr "Impartavać fajł" -#: libraries/display_import.lib.php:137 libraries/messages.inc.php:486 +#: libraries/display_import.lib.php:137 libraries/messages.inc.php:482 #: libraries/sql_query_form.lib.php:524 msgid "Location of the text file" msgstr "Miescaznachodžańnie tekstavaha fajła" -#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1203 +#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1199 msgid "File uploads are not allowed on this server." msgstr "Zahruzki fajłaŭ nie dazvolenyja na hetym servery." -#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1235 +#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1231 #: libraries/sql_query_form.lib.php:533 tbl_change.php:1028 msgid "The directory you set for upload work cannot be reached" msgstr "Niemahčyma adkryć paznačanuju vami tečku dla zahruzki fajłaŭ" -#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1236 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1232 #: libraries/sql_query_form.lib.php:536 tbl_change.php:1031 msgid "web server upload directory" msgstr "tečka web-servera dla zahruzki fajłaŭ" -#: libraries/display_import.lib.php:212 libraries/messages.inc.php:167 +#: libraries/display_import.lib.php:212 libraries/messages.inc.php:163 #, php-format msgid "Imported file compression will be automatically detected from: %s" msgstr "Metad ścisku impartavanaha fajła budzie vyznačanaja aŭtamatyčna z: %s" -#: libraries/display_import.lib.php:219 libraries/messages.inc.php:600 +#: libraries/display_import.lib.php:219 libraries/messages.inc.php:596 msgid "Partial import" msgstr "Častkovy impart" -#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1105 +#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1101 #, php-format msgid "" "Previous import timed out, after resubmitting will continue from position %d." @@ -2300,7 +2310,7 @@ msgstr "" "Papiaredniaje impartavańnie spyniłasia z-za niedachopu času. Paśla novaj " "zahruzki impartavańnie budzie praciahnutaje z pazycyi %d." -#: libraries/display_import.lib.php:232 libraries/messages.inc.php:51 +#: libraries/display_import.lib.php:232 libraries/messages.inc.php:47 msgid "" "Allow the interruption of an import in case the script detects it is close " "to the PHP timeout limit. This might be good way to import large files, " @@ -2310,177 +2320,177 @@ msgstr "" "skončvajecca čas vykanańnia. Heta moža być dobrym sposabam impartavańnia " "vialikich fajłaŭ, adnak, heta moža pierapynić tranzakcyi." -#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1004 +#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1000 #: setup/lib/messages.inc.php:161 msgid "Number of records (queries) to skip from start" msgstr "Kolkaść (zapytaŭ), jakija treba prapuścić ad pačatku" -#: libraries/display_import.lib.php:255 libraries/messages.inc.php:396 +#: libraries/display_import.lib.php:255 libraries/messages.inc.php:392 #: setup/lib/messages.inc.php:160 msgid "Format of imported file" msgstr "Farmat impartavanaha fajła" #: libraries/display_select_lang.lib.php:45 -#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:465 +#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:461 #: setup/frames/index.inc.php:70 msgid "Language" msgstr "Mova" -#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:447 +#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:443 #, php-format msgid "%d is not valid row number." msgstr "%d nie źjaŭlajecca karektnym numaram radka." -#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:814 +#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:810 msgid "row(s) starting from record #" msgstr "radkoŭ, pačynajučy z zapisu #" -#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:817 +#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:813 msgid "horizontal" msgstr "haryzantalna" -#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:816 +#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:812 msgid "horizontal (rotated headers)" msgstr "haryzantalna (paviernutyja zahałoŭki)" -#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:819 +#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:815 msgid "vertical" msgstr "vertykalna" -#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:818 +#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:814 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "u režymie %s i paŭtarać zahałoŭki praz kožnyja %s radkoŭ" -#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:495 +#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:491 msgid "This operation could take a long time. Proceed anyway?" msgstr "Hetaja aperacyja moža zaniać šmat času. Praciahvać?" -#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1012 +#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1008 msgid "Sort by key" msgstr "Sartavać pa klučy" #: libraries/display_tbl.lib.php:555 libraries/import.lib.php:1082 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:591 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:587 #: tbl_select.php:267 tbl_structure.php:754 msgid "Options" msgstr "Nałady" #: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:570 -#: libraries/messages.inc.php:601 +#: libraries/messages.inc.php:597 msgid "Partial Texts" msgstr "Častkovyja teksty" #: libraries/display_tbl.lib.php:561 libraries/display_tbl.lib.php:574 -#: libraries/messages.inc.php:346 +#: libraries/messages.inc.php:342 msgid "Full Texts" msgstr "Poŭnyja teksty" -#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:739 +#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:735 msgid "Relational key" msgstr "Kluč suviazi" -#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:738 +#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:734 msgid "Relational display field" msgstr "Adlustravanaje pole suviazi" -#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:872 +#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:868 msgid "Show binary contents" msgstr "" -#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:873 +#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:869 msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:871 +#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:867 msgid "Show binary contents as HEX" msgstr "" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:375 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:371 #: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320 msgid "Hide" msgstr "Schavać" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:508 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:504 #: libraries/tbl_properties.inc.php:144 transformation_overview.php:47 msgid "Browser transformation" msgstr "Pieraŭtvareńnie MIME-typu braŭzeram" #: libraries/display_tbl.lib.php:1126 libraries/display_tbl.lib.php:1130 -#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:308 +#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:304 msgid "Execute bookmarked query" msgstr "Vykanać zapyt z zakładak" #: libraries/display_tbl.lib.php:1145 libraries/display_tbl.lib.php:1157 -#: libraries/messages.inc.php:244 +#: libraries/messages.inc.php:240 msgid "The row has been deleted" msgstr "Radok byŭ vydaleny" #: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056 -#: libraries/messages.inc.php:460 server_processlist.php:71 +#: libraries/messages.inc.php:456 server_processlist.php:71 #: tbl_row_action.php:64 msgid "Kill" msgstr "Spynić" -#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:849 +#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:845 msgid "in query" msgstr "pa zapytu" -#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:881 +#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:877 msgid "Showing rows" msgstr "Pakazanyja zapisy" -#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1113 +#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1109 msgid "total" msgstr "usiaho" -#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:727 +#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:723 #: sql.php:524 #, php-format msgid "Query took %01.4f sec" msgstr "Zapyt vykonvaŭsia %01.4f sek" -#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:135 +#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:131 #: 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:471 msgid "Change" msgstr "Źmianić" -#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:724 +#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:720 msgid "Query results operations" msgstr "Dziejańni z vynikami zapytaŭ" -#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:671 +#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:667 msgid "Print view (with full texts)" msgstr "Versija dla druku (z usim tekstam)" -#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:482 +#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:478 msgid "Link not found" msgstr "Suviaź nia znojdzienaja" -#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1224 +#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1220 #: main.php:228 msgid "Version information" msgstr "Infarmacyja pra versiju" -#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:423 +#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:419 msgid "Data home directory" msgstr "Chatniaja tečka dadzienych" -#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:424 +#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:420 msgid "The common part of the directory path for all InnoDB data files." msgstr "Ahulnaja častka šlachu tečki da ŭsich fajłaŭ dadzienych InnoDB." -#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:422 +#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:418 msgid "Data files" msgstr "Fajły dadzienych" -#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:418 +#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:414 msgid "Autoextend increment" msgstr "Aŭtapašyralnaje pryraščeńnie" -#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:419 +#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:415 msgid "" " The increment size for extending the size of an autoextending tablespace " "when it becomes full." @@ -2488,11 +2498,11 @@ msgstr "" " Pamier pryraščeńnia dla pašyreńnia pamieru prastory aŭtapašyralnaj tablicy, " "kali jana zapoŭnicca." -#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:420 +#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:416 msgid "Buffer pool size" msgstr "Pamier pułu buferu" -#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:421 +#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:417 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." @@ -2500,87 +2510,87 @@ msgstr "" "Pamier buferu ŭ pamiaci, jaki InnoDB vykarystoŭvaje dla kešavańnia " "dadzienych i indeksaŭ tablic." -#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:112 +#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:108 msgid "Buffer Pool" msgstr "Puł buferu" -#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:426 +#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:422 #: server_status.php:306 msgid "InnoDB Status" msgstr "Stan InnoDB" -#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:113 +#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:109 msgid "Buffer Pool Usage" msgstr "Vykarystańnie pułu buferu" -#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1114 +#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1110 #: server_databases.php:137 server_databases.php:305 server_status.php:414 #: server_status.php:475 server_status.php:496 tbl_printview.php:351 #: tbl_structure.php:697 msgid "Total" msgstr "Ahułam" -#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:425 +#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:421 msgid "pages" msgstr "staronak" -#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:343 +#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:339 msgid "Free pages" msgstr "Volnych staronak" -#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:259 +#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:255 msgid "Dirty pages" msgstr "Brudnych staronak" -#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:230 +#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:226 msgid "Pages containing data" msgstr "Staronak z dadzienymi" -#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:598 +#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:594 msgid "Pages to be flushed" msgstr "Skinuć keš staronak" -#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:119 +#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:115 msgid "Busy pages" msgstr "Zaniatych staronak" -#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:467 +#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:463 msgid "Latched pages" msgstr "Fiksavanyja staronki" -#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:111 +#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:107 msgid "Buffer Pool Activity" msgstr "Aktyŭnaść pułu buferu" -#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:731 +#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:727 msgid "Read requests" msgstr "Zapyty čytańnia" -#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1244 +#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1240 msgid "Write requests" msgstr "Zapytaŭ zapisu" -#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:115 +#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:111 msgid "Read misses" msgstr "Propuskaŭ čytańnia" -#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:117 +#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:113 msgid "Write waits" msgstr "Zatrymak zapisu" -#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:114 +#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:110 msgid "Read misses in %" msgstr "Propuskaŭ čytańnia ŭ %" -#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:116 +#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:112 msgid "Write waits in %" msgstr "Zatrymak zapisu ŭ %" -#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:522 +#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:518 msgid "Data pointer size" msgstr "Pamier ukazalnika na dadzienyja" -#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:523 +#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:519 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." @@ -2588,11 +2598,11 @@ msgstr "" "Značeńnie pa zmoŭčańni pamieru ŭkazalnika ŭ bajtach, dla vykarystańnia ŭ " "CREATE TABLE dla tablic MyISAM, kali nia vyznačanaja opcyja MAX_ROWS." -#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:528 +#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:524 msgid "Automatic recovery mode" msgstr "Režym aŭtamatyčnaha ŭznaŭleńnia" -#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:529 +#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:525 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." @@ -2600,11 +2610,11 @@ msgstr "" "Režym dla aŭtamatyčnaha ŭznaŭleńnia paškodžanych tablic MyISAM, jak " "vyznačany praz opcyju --myisam-recover zahruzki servera." -#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:527 +#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:523 msgid "Maximum size for temporary sort files" msgstr "Maksymalny pamier dla časovych fajłaŭ sartavańnia" -#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:526 +#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:522 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " @@ -2614,11 +2624,11 @@ msgstr "" "pierastvareńnia indeksu MyISAM (padčas REPAIR TABLE, ALTER TABLE, abo LOAD " "DATA INFILE)." -#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:525 +#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:521 msgid "Maximum size for temporary files on index creation" msgstr "Maksymalny pamier časovych fajłaŭ dla stvareńnia indeksu" -#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:524 +#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:520 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " @@ -2628,11 +2638,11 @@ msgstr "" "indeksu MyISAM, budzie bolšy, čym vykarystańnie dla kešu klučoŭ pamieru, " "paznačanaha tut, vybierycie metad kešavańnia klučoŭ." -#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:531 +#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:527 msgid "Repair threads" msgstr "Patokaŭ uznaŭleńnia" -#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:530 +#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:526 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." @@ -2641,11 +2651,11 @@ msgstr "" "paralelna (kožny indeks u svaim ułasnym patoku) padčas uznaŭleńnia pracesam " "sartavańnia." -#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:533 +#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:529 msgid "Sort buffer size" msgstr "Pamier buferu sartavańnia" -#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:532 +#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:528 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." @@ -2654,11 +2664,11 @@ msgstr "" "TABLE abo padčas stvareńnia indeksaŭ, vykarystoŭvajučy CREATE INDEX ci ALTER " "TABLE." -#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:620 +#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:616 msgid "Index cache size" msgstr "Pamier kešu indeksaŭ" -#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:619 +#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:615 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." @@ -2667,11 +2677,11 @@ msgstr "" "zmoŭčańni — 32 MB. Heta pamiać vykarystoŭvajecca tolki dla kešavańnia " "staronak indeksaŭ." -#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:630 +#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:626 msgid "Record cache size" msgstr "Pamier kešu zapisaŭ" -#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:629 +#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:625 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " @@ -2682,11 +2692,11 @@ msgstr "" "32 MB. Hetaja pamiać vykarystoŭvajecca dla kešavańnia źmienaŭ fajłaŭ " "apracoŭki dadzienych (.xtd) i fajłaŭ ukazalnikaŭ radkoŭ (.xtr)." -#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:624 +#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:620 msgid "Log cache size" msgstr "Pamier kešu łogaŭ" -#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:623 +#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:619 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." @@ -2695,11 +2705,11 @@ msgstr "" "vykarystoŭvajecca dla kešavańnia dadzienyja łogu tranzakcyj. Pamier pa " "zmoŭčańni — 16 MB." -#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:628 +#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:624 msgid "Log file threshold" msgstr "Paroh fajła łogu" -#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:627 +#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:623 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." @@ -2707,11 +2717,11 @@ msgstr "" "Pamier łogu tranzakcyj pierad vykanańniem vykanańnia, da momantu, pakul " "budzie stvorany novy fajł. Značeńnie pa Pamier — 16 MB." -#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:634 +#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:630 msgid "Transaction buffer size" msgstr "Pamier buferu tranzakcyj" -#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:633 +#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:629 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." @@ -2719,11 +2729,11 @@ msgstr "" "Pamier hlabalnaha buferu łogu tranzakcyj (kožnaja mašyna zachavańnia " "dadzienych vydzialale 2 bufery hetaha pamieru). Pamier pa zmoŭčańni — 1 MB." -#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:611 +#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:607 msgid "Checkpoint frequency" msgstr "Častata kantrolnych kropak" -#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:612 +#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:608 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." @@ -2731,11 +2741,11 @@ msgstr "" "Kolkaść dadzienych, jakija zapisvajucca ŭ łog tranzakcyj pierad tym, jak " "vykanajecca kantrolnaja kropka. Značeńnie pa zmoŭčańni — 24 MB." -#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:615 +#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:611 msgid "Data log threshold" msgstr "Paroh łahavańnia dadzienych" -#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:616 +#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:612 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -2748,11 +2758,11 @@ msgstr "" "pavialičać ahulnuju kolkaść dadzienych, jakija mohuć zachoŭvacca ŭ bazie " "dadzienych." -#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:618 +#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:614 msgid "Garbage threshold" msgstr "Paroh śmiećcia" -#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:617 +#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:613 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." @@ -2761,11 +2771,11 @@ msgstr "" "ścisnuty. Hetaje značeńnie moža znachodzicca ŭ miežach ad 1 da 99. Značeńnie " "pa zmoŭčańni — 50." -#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:622 +#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:618 msgid "Log buffer size" msgstr "Pamier buferu łogu" -#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:621 +#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:617 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " @@ -2776,27 +2786,27 @@ msgstr "" "buferu na kožny patok, ale tolki kali patoku patrabujecca zapisvać łog " "dadzienych." -#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:613 +#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:609 msgid "Data file grow size" msgstr "Pamier pavieličeńnia fajłaŭ z dadzienymi" -#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:614 +#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:610 msgid "The grow size of the handle data (.xtd) files." msgstr "Pamier pavieličeńnia fajłaŭ apracoŭki dadzienych (.xtd)." -#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:632 +#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:628 msgid "Row file grow size" msgstr "Pamier pavieličeńnia fajłaŭ radkoŭ" -#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:631 +#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:627 msgid "The grow size of the row pointer (.xtr) files." msgstr "Pamier pavieličeńnia fajłaŭ ukazalnikaŭ na radki (.xtr)." -#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:626 +#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:622 msgid "Log file count" msgstr "Kolkaść fajłaŭ łogu" -#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:625 +#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:621 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -2810,19 +2820,19 @@ msgstr "" #: libraries/export/htmlword.php:132 libraries/export/odt.php:168 #: libraries/export/sql.php:881 libraries/export/texytext.php:130 -#: libraries/messages.inc.php:275 +#: libraries/messages.inc.php:271 msgid "Dumping data for table" msgstr "Damp dadzienych tablicy" #: libraries/export/htmlword.php:185 libraries/export/odt.php:238 #: libraries/export/sql.php:785 libraries/export/texytext.php:177 -#: libraries/messages.inc.php:1086 +#: libraries/messages.inc.php:1082 msgid "Table structure for table" msgstr "Struktura tablicy" #: libraries/export/latex.php:125 libraries/export/sql.php:232 #: libraries/export/xml.php:102 libraries/header_printview.inc.php:57 -#: libraries/messages.inc.php:381 libraries/replication_gui.lib.php:63 +#: libraries/messages.inc.php:377 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:170 libraries/replication_gui.lib.php:265 #: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325 #: server_privileges.php:692 server_privileges.php:695 @@ -2834,183 +2844,183 @@ msgstr "Chost" #: libraries/export/latex.php:130 libraries/export/sql.php:233 #: libraries/export/xml.php:107 libraries/header_printview.inc.php:59 -#: libraries/messages.inc.php:354 +#: libraries/messages.inc.php:350 msgid "Generation Time" msgstr "Čas stvareńnia" #: libraries/export/latex.php:131 libraries/export/sql.php:235 -#: libraries/export/xml.php:108 libraries/messages.inc.php:864 main.php:186 +#: libraries/export/xml.php:108 libraries/messages.inc.php:860 main.php:186 msgid "Server version" msgstr "Versija servera" #: libraries/export/latex.php:132 libraries/export/sql.php:236 -#: libraries/export/xml.php:109 libraries/messages.inc.php:651 +#: libraries/export/xml.php:109 libraries/messages.inc.php:647 msgid "PHP Version" msgstr "Versija PHP" #: libraries/export/latex.php:201 libraries/export/sql.php:868 -#: libraries/messages.inc.php:226 server_databases.php:127 +#: libraries/messages.inc.php:222 server_databases.php:127 #: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317 #: tbl_structure.php:666 msgid "Data" msgstr "Dadzienyja" -#: libraries/export/odt.php:318 libraries/messages.inc.php:506 +#: libraries/export/odt.php:318 libraries/messages.inc.php:502 #: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "MIME-typ" -#: libraries/export/sql.php:387 libraries/messages.inc.php:711 +#: libraries/export/sql.php:387 libraries/messages.inc.php:707 msgid "Procedures" msgstr "Pracedury" -#: libraries/export/sql.php:401 libraries/messages.inc.php:348 +#: libraries/export/sql.php:401 libraries/messages.inc.php:344 msgid "Functions" msgstr "Funkcyi" -#: libraries/export/sql.php:618 libraries/messages.inc.php:174 +#: libraries/export/sql.php:618 libraries/messages.inc.php:170 msgid "Constraints for dumped tables" msgstr "Abmiežavańni dla ekspartavanych tablic" -#: libraries/export/sql.php:627 libraries/messages.inc.php:175 +#: libraries/export/sql.php:627 libraries/messages.inc.php:171 msgid "Constraints for table" msgstr "Abmiežavańni dla tablicy" -#: libraries/export/sql.php:727 libraries/messages.inc.php:512 +#: libraries/export/sql.php:727 libraries/messages.inc.php:508 msgid "MIME TYPES FOR TABLE" msgstr "MIME-typy tablicy" -#: libraries/export/sql.php:739 libraries/messages.inc.php:743 +#: libraries/export/sql.php:739 libraries/messages.inc.php:739 msgid "RELATIONS FOR TABLE" msgstr "Suviazi ŭ tablicy" -#: libraries/export/sql.php:796 libraries/messages.inc.php:1178 +#: libraries/export/sql.php:796 libraries/messages.inc.php:1174 #: libraries/tbl_triggers.lib.php:19 msgid "Triggers" msgstr "Tryhiery" -#: libraries/export/sql.php:808 libraries/messages.inc.php:1046 +#: libraries/export/sql.php:808 libraries/messages.inc.php:1042 msgid "Structure for view" msgstr "Struktura dla prahladu" -#: libraries/export/sql.php:817 libraries/messages.inc.php:1029 +#: libraries/export/sql.php:817 libraries/messages.inc.php:1025 msgid "Stand-in structure for view" msgstr "Zamianialnaja struktura dla prahladu" #: libraries/footer.inc.php:184 libraries/footer.inc.php:195 -#: libraries/footer.inc.php:198 libraries/messages.inc.php:586 +#: libraries/footer.inc.php:198 libraries/messages.inc.php:582 msgid "Open new phpMyAdmin window" msgstr "Adkryć novaje akno phpMyAdmin" -#: libraries/header.inc.php:115 libraries/messages.inc.php:542 +#: libraries/header.inc.php:115 libraries/messages.inc.php:538 msgid "New table" msgstr "" #: libraries/header_printview.inc.php:50 libraries/header_printview.inc.php:55 -#: libraries/messages.inc.php:1024 +#: libraries/messages.inc.php:1020 msgid "SQL result" msgstr "SQL-vynik" -#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:350 +#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:346 msgid "Generated by" msgstr "Stvorany" #: libraries/header_printview.inc.php:63 libraries/import.lib.php:145 -#: libraries/messages.inc.php:820 navigation.php:652 navigation.php:674 +#: libraries/messages.inc.php:816 navigation.php:652 navigation.php:674 #: server_databases.php:122 tbl_printview.php:394 tbl_structure.php:366 #: tbl_structure.php:778 msgid "Rows" msgstr "Radki" -#: libraries/import.lib.php:150 libraries/messages.inc.php:285 sql.php:520 +#: libraries/import.lib.php:150 libraries/messages.inc.php:281 sql.php:520 #: tbl_change.php:181 tbl_get_field.php:35 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL viarnuła pusty vynik (to bok nul radkoŭ)." -#: libraries/import.lib.php:1078 libraries/messages.inc.php:399 +#: libraries/import.lib.php:1078 libraries/messages.inc.php:395 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1079 libraries/messages.inc.php:400 +#: libraries/import.lib.php:1079 libraries/messages.inc.php:396 msgid "View a structure`s contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1080 libraries/messages.inc.php:401 +#: libraries/import.lib.php:1080 libraries/messages.inc.php:397 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1081 libraries/messages.inc.php:402 +#: libraries/import.lib.php:1081 libraries/messages.inc.php:398 msgid "Edit its structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1084 libraries/messages.inc.php:362 +#: libraries/import.lib.php:1084 libraries/messages.inc.php:358 msgid "Go to database" msgstr "" #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:869 +#: libraries/messages.inc.php:865 msgid "settings" msgstr "" -#: libraries/import.lib.php:1106 libraries/messages.inc.php:363 +#: libraries/import.lib.php:1106 libraries/messages.inc.php:359 msgid "Go to table" msgstr "" -#: libraries/import.lib.php:1109 libraries/messages.inc.php:1047 +#: libraries/import.lib.php:1109 libraries/messages.inc.php:1043 msgid "structure" msgstr "" -#: libraries/import.lib.php:1115 libraries/messages.inc.php:364 +#: libraries/import.lib.php:1115 libraries/messages.inc.php:360 msgid "Go to view" msgstr "" #: libraries/import/csv.php:58 libraries/import/csv.php:70 #: libraries/import/csv.php:74 libraries/import/csv.php:78 -#: libraries/messages.inc.php:442 +#: libraries/messages.inc.php:438 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "Niedapuščalny paremetar dla impartu dadzienych u CSV: %s" -#: libraries/import/csv.php:59 libraries/messages.inc.php:323 +#: libraries/import/csv.php:59 libraries/messages.inc.php:319 msgid "Fields terminated by" msgstr "Pali padzielenyja" -#: libraries/import/csv.php:71 libraries/messages.inc.php:320 +#: libraries/import/csv.php:71 libraries/messages.inc.php:316 msgid "Fields enclosed by" msgstr "Pali ŭziatyja ŭ" -#: libraries/import/csv.php:75 libraries/messages.inc.php:321 +#: libraries/import/csv.php:75 libraries/messages.inc.php:317 msgid "Fields escaped by" msgstr "Pali ekranujucca" -#: libraries/import/csv.php:79 libraries/messages.inc.php:481 +#: libraries/import/csv.php:79 libraries/messages.inc.php:477 msgid "Lines terminated by" msgstr "Radki padzielenyja" -#: libraries/import/csv.php:119 libraries/messages.inc.php:439 +#: libraries/import/csv.php:119 libraries/messages.inc.php:435 #, php-format msgid "Invalid column (%s) specified!" msgstr "Vyznačanaja niekarektnaja kalonka (%s)!" #: libraries/import/csv.php:177 libraries/import/csv.php:424 -#: libraries/messages.inc.php:441 +#: libraries/messages.inc.php:437 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "Niekarektny farmat CSV-dadzienych u radku %d." -#: libraries/import/csv.php:312 libraries/messages.inc.php:440 +#: libraries/import/csv.php:312 libraries/messages.inc.php:436 #, php-format msgid "Invalid field count in CSV input on line %d." msgstr "Niapravilnaja kolkaść paloŭ u CSV-dadzienych u radku %d." -#: libraries/import/ldi.php:55 libraries/messages.inc.php:446 +#: libraries/import/ldi.php:55 libraries/messages.inc.php:442 msgid "This plugin does not support compressed imports!" msgstr "Hety płahin nie padtrymlivaje ścisnutyja dadzienyja!" #: libraries/import/xml.php:74 libraries/import/xml.php:130 -#: libraries/messages.inc.php:1247 +#: libraries/messages.inc.php:1243 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -3039,569 +3049,559 @@ msgstr "" msgid "ltr" msgstr "ltr" -#. l10n: Thousands separator -#: libraries/messages.inc.php:21 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: libraries/messages.inc.php:23 -msgid "." -msgstr "." - -#: libraries/messages.inc.php:25 server_status.php:461 +#: libraries/messages.inc.php:21 server_status.php:461 msgid "Aborted" msgstr "Spyniena" -#: libraries/messages.inc.php:28 main.php:68 +#: libraries/messages.inc.php:24 main.php:68 msgid "Actions" msgstr "Dziejańni" -#: libraries/messages.inc.php:34 libraries/tbl_properties.inc.php:780 +#: libraries/messages.inc.php:30 libraries/tbl_properties.inc.php:780 #: tbl_structure.php:543 #, php-format msgid "Add %s field(s)" msgstr "Dadać %s novyja pali" -#: libraries/messages.inc.php:35 +#: libraries/messages.inc.php:31 msgid "Add custom comment into header (\\n splits lines)" msgstr "Dadać pryvatny kamentar u zahałovak (\\n padzialaje radki)" -#: libraries/messages.inc.php:36 +#: libraries/messages.inc.php:32 msgid "Add into comments" msgstr "Dadać u kamentary" -#: libraries/messages.inc.php:37 tbl_structure.php:541 +#: libraries/messages.inc.php:33 tbl_structure.php:541 msgid "Add new field" msgstr "Dadać novaje pole" -#: libraries/messages.inc.php:38 server_privileges.php:1886 +#: libraries/messages.inc.php:34 server_privileges.php:1886 msgid "Add privileges on the following database" msgstr "Dadać pryvilei na nastupnuju bazu" -#: libraries/messages.inc.php:39 server_privileges.php:1907 +#: libraries/messages.inc.php:35 server_privileges.php:1907 msgid "Add privileges on the following table" msgstr "Dadać pryvilei na nastupnuju tablicu" -#: libraries/messages.inc.php:40 tbl_select.php:288 +#: libraries/messages.inc.php:36 tbl_select.php:288 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Dadać umovy pošuku (cieła dla ŭmovy \"where\"):" -#: libraries/messages.inc.php:41 tbl_indexes.php:251 +#: libraries/messages.inc.php:37 tbl_indexes.php:251 #, php-format msgid "Add to index  %s column(s)" msgstr "Dadać da indeksa %s kalonku(i)" -#: libraries/messages.inc.php:42 server_privileges.php:1570 +#: libraries/messages.inc.php:38 server_privileges.php:1570 #: server_privileges.php:1594 server_privileges.php:1988 #: server_privileges.php:2177 msgid "Add a new User" msgstr "Dadać novaha karystalnika" -#: libraries/messages.inc.php:43 server_privileges.php:931 +#: libraries/messages.inc.php:39 server_privileges.php:931 msgid "You have added a new user." msgstr "Byŭ dadadzieny novy karystalnik." -#: libraries/messages.inc.php:44 server_privileges.php:571 +#: libraries/messages.inc.php:40 server_privileges.php:571 msgid "Administration" msgstr "Administravańnie" -#: libraries/messages.inc.php:45 tbl_structure.php:557 +#: libraries/messages.inc.php:41 tbl_structure.php:557 #, php-format msgid "After %s" msgstr "Paśla %s" -#: libraries/messages.inc.php:46 tbl_change.php:1147 +#: libraries/messages.inc.php:42 tbl_change.php:1147 msgid "Go back to previous page" msgstr "Pierajści da papiaredniaj staronki" -#: libraries/messages.inc.php:47 tbl_change.php:1148 +#: libraries/messages.inc.php:43 tbl_change.php:1148 msgid "Insert another new row" msgstr "Dadać jašče adzin radok" -#: libraries/messages.inc.php:48 tbl_change.php:1160 +#: libraries/messages.inc.php:44 tbl_change.php:1160 msgid "Edit next row" msgstr "Redagavać nastupny radok" -#: libraries/messages.inc.php:49 tbl_change.php:1152 +#: libraries/messages.inc.php:45 tbl_change.php:1152 msgid "Go back to this page" msgstr "Viarnucca da hetaj staronki" -#: libraries/messages.inc.php:50 querywindow.php:115 +#: libraries/messages.inc.php:46 querywindow.php:115 msgid "All" msgstr "Usie" -#: libraries/messages.inc.php:53 tbl_operations.php:249 +#: libraries/messages.inc.php:49 tbl_operations.php:249 msgid "Alter table order by" msgstr "Źmianić paradak tablicy" -#: libraries/messages.inc.php:54 tbl_operations.php:660 +#: libraries/messages.inc.php:50 tbl_operations.php:660 msgid "Analyze" msgstr "Praanalizavać" -#: libraries/messages.inc.php:57 +#: libraries/messages.inc.php:53 msgid "and" msgstr "" -#: libraries/messages.inc.php:59 pmd_general.php:87 +#: libraries/messages.inc.php:55 pmd_general.php:87 msgid "Angular links" msgstr "Vuhłavyja linii suviaziaŭ" -#: libraries/messages.inc.php:60 tbl_structure.php:401 tbl_structure.php:415 +#: libraries/messages.inc.php:56 tbl_structure.php:401 tbl_structure.php:415 #: tbl_structure.php:429 #, php-format msgid "An index has been added on %s" msgstr "Byŭ dadadzieny indeks dla %s" -#: libraries/messages.inc.php:61 server_privileges.php:1521 +#: libraries/messages.inc.php:57 server_privileges.php:1521 #: server_privileges.php:2123 msgid "Any" msgstr "Luby" -#: libraries/messages.inc.php:62 libraries/replication_gui.lib.php:298 +#: libraries/messages.inc.php:58 libraries/replication_gui.lib.php:298 #: server_privileges.php:725 msgid "Any host" msgstr "Luby chost" -#: libraries/messages.inc.php:63 libraries/replication_gui.lib.php:250 +#: libraries/messages.inc.php:59 libraries/replication_gui.lib.php:250 #: server_privileges.php:677 msgid "Any user" msgstr "Luby karystalnik" -#: libraries/messages.inc.php:64 server_synchronize.php:449 +#: libraries/messages.inc.php:60 server_synchronize.php:449 #: server_synchronize.php:894 msgid "Apply Selected Changes" msgstr "" -#: libraries/messages.inc.php:66 tbl_structure.php:386 +#: libraries/messages.inc.php:62 tbl_structure.php:386 #, php-format msgid "A primary key has been added on %s" msgstr "Pieršasny kluč byŭ dadadzieny da %s" -#: libraries/messages.inc.php:67 libraries/mysql_charsets.lib.php:368 +#: libraries/messages.inc.php:63 libraries/mysql_charsets.lib.php:368 msgid "Arabic" msgstr "Arabskaja" -#: libraries/messages.inc.php:68 libraries/mysql_charsets.lib.php:359 +#: libraries/messages.inc.php:64 libraries/mysql_charsets.lib.php:359 msgid "Armenian" msgstr "Armianskaja" -#: libraries/messages.inc.php:70 libraries/tbl_properties.inc.php:394 +#: libraries/messages.inc.php:66 libraries/tbl_properties.inc.php:394 msgid "As defined:" msgstr "Jak vyznačana:" -#: libraries/messages.inc.php:71 tbl_structure.php:556 +#: libraries/messages.inc.php:67 tbl_structure.php:556 msgid "At Beginning of Table" msgstr "U pačatku tablicy" -#: libraries/messages.inc.php:72 tbl_structure.php:555 +#: libraries/messages.inc.php:68 tbl_structure.php:555 msgid "At End of Table" msgstr "U kancy tablicy" -#: libraries/messages.inc.php:73 libraries/tbl_properties.inc.php:108 +#: libraries/messages.inc.php:69 libraries/tbl_properties.inc.php:108 #: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:144 #: tbl_structure.php:180 msgid "Attributes" msgstr "Atrybuty" -#: libraries/messages.inc.php:74 pdf_pages.php:303 pdf_pages.php:306 +#: libraries/messages.inc.php:70 pdf_pages.php:303 pdf_pages.php:306 msgid "Automatic layout" msgstr "Aŭtamatyčnaje raźmiaščeńnie" -#: libraries/messages.inc.php:77 libraries/mysql_charsets.lib.php:354 +#: libraries/messages.inc.php:73 libraries/mysql_charsets.lib.php:354 msgid "Baltic" msgstr "Bałtyjskaja" -#: libraries/messages.inc.php:78 libraries/sqlparser.lib.php:175 +#: libraries/messages.inc.php:74 libraries/sqlparser.lib.php:175 msgid "BEGIN CUT" msgstr "BEGIN CUT" -#: libraries/messages.inc.php:79 libraries/sqlparser.lib.php:179 +#: libraries/messages.inc.php:75 libraries/sqlparser.lib.php:179 msgid "BEGIN RAW" msgstr "BEGIN RAW" -#: libraries/messages.inc.php:80 libraries/mysql_charsets.lib.php:201 +#: libraries/messages.inc.php:76 libraries/mysql_charsets.lib.php:201 #: libraries/mysql_charsets.lib.php:402 tbl_change.php:518 msgid "Binary" msgstr "Dvajkovy" -#: libraries/messages.inc.php:81 tbl_change.php:894 +#: libraries/messages.inc.php:77 tbl_change.php:894 msgid "Binary - do not edit" msgstr "Dvajkovyja dadzienyja — nie redagujucca" -#: libraries/messages.inc.php:82 libraries/server_links.inc.php:76 +#: libraries/messages.inc.php:78 libraries/server_links.inc.php:76 #: server_binlog.php:110 server_status.php:253 test/theme.php:121 msgid "Binary log" msgstr "Dvajkovy łog" -#: libraries/messages.inc.php:83 server_binlog.php:217 +#: libraries/messages.inc.php:79 server_binlog.php:217 msgid "Event type" msgstr "Typ padziei" -#: libraries/messages.inc.php:84 server_binlog.php:220 +#: libraries/messages.inc.php:80 server_binlog.php:220 msgid "Information" msgstr "Infarmacyja" -#: libraries/messages.inc.php:85 server_binlog.php:215 +#: libraries/messages.inc.php:81 server_binlog.php:215 msgid "Log name" msgstr "Imia łogu" -#: libraries/messages.inc.php:86 server_binlog.php:219 +#: libraries/messages.inc.php:82 server_binlog.php:219 msgid "Original position" msgstr "Pieršapačatkovaja pazycyja" -#: libraries/messages.inc.php:87 server_binlog.php:216 +#: libraries/messages.inc.php:83 server_binlog.php:216 msgid "Position" msgstr "Pazycyja" -#: libraries/messages.inc.php:88 libraries/replication_gui.lib.php:169 +#: libraries/messages.inc.php:84 libraries/replication_gui.lib.php:169 #: server_binlog.php:218 msgid "Server ID" msgstr "ID servera" -#: libraries/messages.inc.php:92 +#: libraries/messages.inc.php:88 msgctxt "$strBLOBRepositoryDisabled" msgid "Disabled" msgstr "" -#: libraries/messages.inc.php:95 +#: libraries/messages.inc.php:91 msgctxt "$strBLOBRepositoryEnabled" msgid "Enabled" msgstr "" -#: libraries/messages.inc.php:97 tbl_change.php:888 +#: libraries/messages.inc.php:93 tbl_change.php:888 msgid "Remove BLOB Repository Reference" msgstr "" -#: libraries/messages.inc.php:98 +#: libraries/messages.inc.php:94 msgctxt "$strBLOBRepositoryRepair" msgid "Repair" msgstr "" -#: libraries/messages.inc.php:99 tbl_change.php:987 +#: libraries/messages.inc.php:95 tbl_change.php:987 msgid "Upload to BLOB repository" msgstr "" -#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:359 +#: libraries/messages.inc.php:96 libraries/sql_query_form.lib.php:359 #: sql.php:677 msgid "Let every user access this bookmark" msgstr "Dać kožnamu karystalniku dostup da hetaj zakładki" -#: libraries/messages.inc.php:103 sql.php:671 +#: libraries/messages.inc.php:99 sql.php:671 msgid "Label" msgstr "Mietka" -#: libraries/messages.inc.php:104 libraries/sql_query_form.lib.php:433 +#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:433 msgid "Bookmarked SQL query" msgstr "Zakładzieny SQL-zapyt" -#: libraries/messages.inc.php:105 libraries/sql_query_form.lib.php:365 +#: libraries/messages.inc.php:101 libraries/sql_query_form.lib.php:365 msgid "Replace existing bookmark of same name" msgstr "Zamianić isnuju zakładku z takim ža imiem" -#: libraries/messages.inc.php:106 libraries/sql_query_form.lib.php:352 +#: libraries/messages.inc.php:102 libraries/sql_query_form.lib.php:352 #: sql.php:665 sql.php:666 sql.php:683 msgid "Bookmark this SQL query" msgstr "Dadać hety SQL-zapyt u zakładki" -#: libraries/messages.inc.php:107 libraries/sql_query_form.lib.php:466 +#: libraries/messages.inc.php:103 libraries/sql_query_form.lib.php:466 msgid "View only" msgstr "Tolki prahlad" -#: libraries/messages.inc.php:109 tbl_structure.php:161 +#: libraries/messages.inc.php:105 tbl_structure.php:161 msgid "Browse distinct values" msgstr "Prahlad roznych značeńniaŭ" -#: libraries/messages.inc.php:110 tbl_change.php:252 tbl_select.php:27 +#: libraries/messages.inc.php:106 tbl_change.php:252 tbl_select.php:27 #: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34 msgid "Browse foreign values" msgstr "Prahladzieć źniešnija značeńni" -#: libraries/messages.inc.php:118 libraries/mysql_charsets.lib.php:213 +#: libraries/messages.inc.php:114 libraries/mysql_charsets.lib.php:213 msgid "Bulgarian" msgstr "Baŭharskaja" -#: libraries/messages.inc.php:120 +#: libraries/messages.inc.php:116 msgid "\"bzipped\"" msgstr "ściskać u bzip" -#: libraries/messages.inc.php:122 +#: libraries/messages.inc.php:118 msgid "Calendar" msgstr "Kalandar" -#: libraries/messages.inc.php:129 tbl_indexes.php:75 +#: libraries/messages.inc.php:125 tbl_indexes.php:75 msgid "Can't rename index to PRIMARY!" msgstr "Niemahčyma pierajmienavać indeks u PRIMARY!" -#: libraries/messages.inc.php:132 libraries/mysql_charsets.lib.php:223 +#: libraries/messages.inc.php:128 libraries/mysql_charsets.lib.php:223 #: libraries/mysql_charsets.lib.php:409 msgid "case-insensitive" msgstr "biez uliku rehistru" -#: libraries/messages.inc.php:133 libraries/mysql_charsets.lib.php:226 +#: libraries/messages.inc.php:129 libraries/mysql_charsets.lib.php:226 #: libraries/mysql_charsets.lib.php:411 msgid "case-sensitive" msgstr "z ulikam rehistru" -#: libraries/messages.inc.php:134 libraries/mysql_charsets.lib.php:332 +#: libraries/messages.inc.php:130 libraries/mysql_charsets.lib.php:332 msgid "Central European" msgstr "Centralnaeŭrapiejskaja" -#: libraries/messages.inc.php:136 server_privileges.php:1969 +#: libraries/messages.inc.php:132 server_privileges.php:1969 msgid "... keep the old one." msgstr "... pakinuć staroha." -#: libraries/messages.inc.php:137 server_privileges.php:1967 +#: libraries/messages.inc.php:133 server_privileges.php:1967 msgid "Create a new user with the same privileges and ..." msgstr "Stvaryć novaha karystalnika z takimi ž pryvilejami i ..." -#: libraries/messages.inc.php:138 server_privileges.php:1972 +#: libraries/messages.inc.php:134 server_privileges.php:1972 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" " ... vydalić staroha z tablicy karystalnikaŭ i paśla pierazahruzić pryvilei." -#: libraries/messages.inc.php:139 server_privileges.php:1970 +#: libraries/messages.inc.php:135 server_privileges.php:1970 msgid " ... delete the old one from the user tables." msgstr " ... vydalić staroha z tablicy karystalnikaŭ." -#: libraries/messages.inc.php:140 server_privileges.php:1971 +#: libraries/messages.inc.php:136 server_privileges.php:1971 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr " ... anulavać usie aktyŭnyja pryvilei staroha i paśla vydalić jaho." -#: libraries/messages.inc.php:141 server_privileges.php:1964 +#: libraries/messages.inc.php:137 server_privileges.php:1964 msgid "Change Login Information / Copy User" msgstr "Źmianić rehistracyjnuju infarmacyju / Kapijavać karystalnika" -#: libraries/messages.inc.php:144 libraries/mysql_charsets.lib.php:107 +#: libraries/messages.inc.php:140 libraries/mysql_charsets.lib.php:107 msgid "Charset" msgstr "Kadyroŭka" -#: libraries/messages.inc.php:146 server_collations.php:40 +#: libraries/messages.inc.php:142 server_collations.php:40 msgid "Character Sets and Collations" msgstr "Raskładki i supastaŭleńni" -#: libraries/messages.inc.php:147 libraries/server_links.inc.php:57 +#: libraries/messages.inc.php:143 libraries/server_links.inc.php:57 #: test/theme.php:109 msgid "Charsets" msgstr "Kadyroŭki" -#: libraries/messages.inc.php:149 tbl_operations.php:661 +#: libraries/messages.inc.php:145 tbl_operations.php:661 msgid "Check" msgstr "Pravieryć" -#: libraries/messages.inc.php:151 server_databases.php:293 +#: libraries/messages.inc.php:147 server_databases.php:293 #: server_databases.php:294 msgid "Check Privileges" msgstr "Pravieryć pryvilei" -#: libraries/messages.inc.php:152 server_databases.php:289 +#: libraries/messages.inc.php:148 server_databases.php:289 #, php-format msgid "Check privileges for database "%s"." msgstr "Pravieryć pryvilei dla bazy \"%s\"." -#: libraries/messages.inc.php:154 pdf_pages.php:261 +#: libraries/messages.inc.php:150 pdf_pages.php:261 msgid "Please choose a page to edit" msgstr "Kali łaska, vybierycie staronku dla redagavańnia" -#: libraries/messages.inc.php:157 +#: libraries/messages.inc.php:153 msgid "Displaying Column Comments" msgstr "Pakazvać kamentary kalonak" -#: libraries/messages.inc.php:159 pdf_pages.php:483 view_create.php:148 +#: libraries/messages.inc.php:155 pdf_pages.php:483 view_create.php:148 msgid "Column names" msgstr "Nazvy kalonak" -#: libraries/messages.inc.php:160 server_privileges.php:1685 +#: libraries/messages.inc.php:156 server_privileges.php:1685 msgid "Column-specific privileges" msgstr "Specyfičnyja pryvilei kalonak" -#: libraries/messages.inc.php:164 +#: libraries/messages.inc.php:160 msgid "MySQL 4.0 compatible" msgstr "Sumiaščalnaje z MySQL 4.0" -#: libraries/messages.inc.php:165 +#: libraries/messages.inc.php:161 msgid "Complete inserts" msgstr "Poŭnaja ŭstaŭka" -#: libraries/messages.inc.php:168 +#: libraries/messages.inc.php:164 #, php-format msgid "Could not load default configuration from: \"%1$s\"" msgstr "Niemahčyma zahruzić kanfihuracyju pa zmoŭčańni z: \"%1$s\"" -#: libraries/messages.inc.php:169 main.php:306 +#: libraries/messages.inc.php:165 main.php:306 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: libraries/messages.inc.php:171 pdf_schema.php:672 +#: libraries/messages.inc.php:167 pdf_schema.php:672 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Kali łaska, skanfihurujcie kaardynaty dla tablicy %s" -#: libraries/messages.inc.php:173 server_status.php:433 +#: libraries/messages.inc.php:169 server_status.php:433 msgid "Connections" msgstr "Padłučeńni" -#: libraries/messages.inc.php:179 tbl_operations.php:509 +#: libraries/messages.inc.php:175 tbl_operations.php:509 msgid "Copy table to (database.table):" msgstr "Skapijavać tablicu ŭ (baza dadzienych.tablica):" -#: libraries/messages.inc.php:180 tbl_move_copy.php:58 +#: libraries/messages.inc.php:176 tbl_move_copy.php:58 #, php-format msgid "Table %s has been copied to %s." msgstr "Tablica %s była skapijavanaja ŭ %s." -#: libraries/messages.inc.php:181 tbl_move_copy.php:48 +#: libraries/messages.inc.php:177 tbl_move_copy.php:48 msgid "Can't copy table to same one!" msgstr "Niemahčyma skapijavać tablicu ŭ samu siabie!" -#: libraries/messages.inc.php:182 server_synchronize.php:94 +#: libraries/messages.inc.php:178 server_synchronize.php:94 msgid "Could not connect to the source" msgstr "" -#: libraries/messages.inc.php:183 server_synchronize.php:97 +#: libraries/messages.inc.php:179 server_synchronize.php:97 msgid "Could not connect to the target" msgstr "" -#: libraries/messages.inc.php:184 server_processlist.php:24 +#: libraries/messages.inc.php:180 server_processlist.php:24 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin nia moža spynić praces %s. Napeŭna, jon užo spynieny." -#: libraries/messages.inc.php:187 +#: libraries/messages.inc.php:183 #, php-format msgid "Create an index on %s columns" msgstr "Stvaryć indeks na %s kalonkach" -#: libraries/messages.inc.php:188 tbl_indexes.php:160 +#: libraries/messages.inc.php:184 tbl_indexes.php:160 msgid "Create a new index" msgstr "Stvaryć novy indeks" -#: libraries/messages.inc.php:191 pdf_pages.php:297 pmd_pdf.php:114 +#: libraries/messages.inc.php:187 pdf_pages.php:297 pmd_pdf.php:114 msgid "Create a page" msgstr "Stvaryć novuju staronku" -#: libraries/messages.inc.php:192 +#: libraries/messages.inc.php:188 msgid "Creation of PDFs" msgstr "Stvareńnie PDF-fajłaŭ" -#: libraries/messages.inc.php:193 pmd_general.php:74 pmd_general.php:306 +#: libraries/messages.inc.php:189 pmd_general.php:74 pmd_general.php:306 msgid "Create relation" msgstr "Stvaryć suviaź" -#: libraries/messages.inc.php:194 pmd_general.php:71 +#: libraries/messages.inc.php:190 pmd_general.php:71 #: server_synchronize.php:429 server_synchronize.php:872 msgid "Create table" msgstr "Stvaryć tablicu" -#: libraries/messages.inc.php:195 +#: libraries/messages.inc.php:191 msgctxt "$strCreateTableShort" msgid "Create table" msgstr "" -#: libraries/messages.inc.php:196 server_privileges.php:1994 +#: libraries/messages.inc.php:192 server_privileges.php:1994 msgid "Database for user" msgstr "Baza dadzienych dla karystalnika" -#: libraries/messages.inc.php:197 server_privileges.php:1999 +#: libraries/messages.inc.php:193 server_privileges.php:1999 msgid "Create database with same name and grant all privileges" msgstr "" "Stvaryć bazu dadzienych z takim samym imiem i nadzialić usimi pryvilejami" -#: libraries/messages.inc.php:198 +#: libraries/messages.inc.php:194 #, fuzzy msgctxt "$strCreateUserDatabaseNone" msgid "None" msgstr "Nijakaja" -#: libraries/messages.inc.php:199 server_privileges.php:2003 +#: libraries/messages.inc.php:195 server_privileges.php:2003 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: libraries/messages.inc.php:200 server_privileges.php:2000 +#: libraries/messages.inc.php:196 server_privileges.php:2000 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" "Nadzialić usimi pryvilejami bazy z imienami pa mascy (imia karystalnika_%)" -#: libraries/messages.inc.php:201 +#: libraries/messages.inc.php:197 msgid "Creation/Update/Check dates" msgstr "Stvareńnie/Abnaŭleńnie/Pravierka dat" -#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:229 +#: libraries/messages.inc.php:199 libraries/mysql_charsets.lib.php:229 msgid "Croatian" msgstr "Charvackaja" -#: libraries/messages.inc.php:204 +#: libraries/messages.inc.php:200 msgid "CSV" msgstr "CSV" -#: libraries/messages.inc.php:205 libraries/server_synchronize.lib.php:1343 +#: libraries/messages.inc.php:201 libraries/server_synchronize.lib.php:1343 #: libraries/server_synchronize.lib.php:1369 msgid "Current server" msgstr "" -#: libraries/messages.inc.php:206 main.php:159 +#: libraries/messages.inc.php:202 main.php:159 msgid "Custom color" msgstr "Inšy koler" -#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:365 +#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:365 msgid "Cyrillic" msgstr "Kiryličnaja" -#: libraries/messages.inc.php:208 libraries/mysql_charsets.lib.php:232 +#: libraries/messages.inc.php:204 libraries/mysql_charsets.lib.php:232 msgid "Czech" msgstr "Českaja" -#: libraries/messages.inc.php:209 libraries/mysql_charsets.lib.php:383 +#: libraries/messages.inc.php:205 libraries/mysql_charsets.lib.php:383 msgid "Czech-Slovak" msgstr "Čechasłavackaja" -#: libraries/messages.inc.php:211 libraries/mysql_charsets.lib.php:235 +#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:235 msgid "Danish" msgstr "Dackaja" -#: libraries/messages.inc.php:214 +#: libraries/messages.inc.php:210 msgid "Database export options" msgstr "Nałady ekspartu bazy dadzienych" -#: libraries/messages.inc.php:217 server_synchronize.php:122 +#: libraries/messages.inc.php:213 server_synchronize.php:122 #: server_synchronize.php:125 tbl_create.php:82 tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "" -#: libraries/messages.inc.php:219 server_databases.php:63 +#: libraries/messages.inc.php:215 server_databases.php:63 #, php-format msgid "%s databases have been dropped successfully." msgstr "%s bazaŭ dadzienych byli paśpiachova vydalenyja." -#: libraries/messages.inc.php:220 libraries/server_synchronize.lib.php:1341 +#: libraries/messages.inc.php:216 libraries/server_synchronize.lib.php:1341 #: server_synchronize.php:1110 msgid "Source database" msgstr "" -#: libraries/messages.inc.php:221 server_databases.php:88 +#: libraries/messages.inc.php:217 server_databases.php:88 msgid "Databases statistics" msgstr "Statystyka bazaŭ dadzienych" -#: libraries/messages.inc.php:222 server_databases.php:362 +#: libraries/messages.inc.php:218 server_databases.php:362 #: server_databases.php:363 msgid "Disable Statistics" msgstr "Adklučyć statystyku" -#: libraries/messages.inc.php:223 server_databases.php:358 +#: libraries/messages.inc.php:219 server_databases.php:358 #: server_databases.php:359 msgid "Enable Statistics" msgstr "Uklučyć statystyku" -#: libraries/messages.inc.php:224 server_databases.php:366 +#: libraries/messages.inc.php:220 server_databases.php:366 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -3609,30 +3609,30 @@ msgstr "" "Zaŭvaha: Uklučeńnie statystyki bazy dadzienych moža vyklikać vialikuju " "kolkaść trafiku pamiž web-serveram i serveram MySQL." -#: libraries/messages.inc.php:225 libraries/server_synchronize.lib.php:1367 +#: libraries/messages.inc.php:221 libraries/server_synchronize.lib.php:1367 #: server_synchronize.php:1112 msgid "Target database" msgstr "" -#: libraries/messages.inc.php:228 server_synchronize.php:425 +#: libraries/messages.inc.php:224 server_synchronize.php:425 #: server_synchronize.php:868 msgid "Data Difference" msgstr "" -#: libraries/messages.inc.php:231 server_synchronize.php:272 +#: libraries/messages.inc.php:227 server_synchronize.php:272 msgid "Data Synchronization" msgstr "" -#: libraries/messages.inc.php:235 server_privileges.php:526 +#: libraries/messages.inc.php:231 server_privileges.php:526 #: server_privileges.php:1679 msgid "Database-specific privileges" msgstr "Specyfičnyja pryvilei bazy dadzienych" -#: libraries/messages.inc.php:237 server_privileges.php:2136 +#: libraries/messages.inc.php:233 server_privileges.php:2136 msgid "database-specific" msgstr "specyfičny dla bazy dadzienych" -#: libraries/messages.inc.php:240 libraries/tbl_properties.inc.php:106 +#: libraries/messages.inc.php:236 libraries/tbl_properties.inc.php:106 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" @@ -3640,32 +3640,32 @@ msgstr "" "Dla značeńniaŭ pa zmoŭčańni, kali łaska, uviadzicie prosta značeńnie, biez " "vykarystańnia zvarotnych słešaŭ i dvukośsia, vykarystoŭvajučy farmat: a" -#: libraries/messages.inc.php:241 tbl_operations.php:589 +#: libraries/messages.inc.php:237 tbl_operations.php:589 msgid "Defragment table" msgstr "Defrahmentavać tablicu" -#: libraries/messages.inc.php:242 +#: libraries/messages.inc.php:238 msgid "Use delayed inserts" msgstr "Vykarystoŭvać adkładzienyja ŭstaŭki" -#: libraries/messages.inc.php:245 server_privileges.php:1243 +#: libraries/messages.inc.php:241 server_privileges.php:1243 msgid "No users selected for deleting!" msgstr "Na vybranyja karystalniki dla vydaleńnia!" -#: libraries/messages.inc.php:246 pmd_general.php:372 +#: libraries/messages.inc.php:242 pmd_general.php:372 msgid "Delete relation" msgstr "Vydalić suviaź" -#: libraries/messages.inc.php:248 server_privileges.php:1232 +#: libraries/messages.inc.php:244 server_privileges.php:1232 #, php-format msgid "Deleting %s" msgstr "Vydaleńnie %s" -#: libraries/messages.inc.php:249 libraries/sql_query_form.lib.php:388 +#: libraries/messages.inc.php:245 libraries/sql_query_form.lib.php:388 msgid "Delimiter" msgstr "Raździalalnik" -#: libraries/messages.inc.php:250 pdf_pages.php:506 +#: libraries/messages.inc.php:246 pdf_pages.php:506 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -3673,7 +3673,7 @@ msgstr "" "Biahučaja staronka ŭtrymlivaje spasyłki na tablicy, jakija bolš nie isnujuć. " "Ci žadajecie vy vydalić hetyja spasyłki?" -#: libraries/messages.inc.php:254 pmd_help.php:29 +#: libraries/messages.inc.php:250 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 " @@ -3683,143 +3683,143 @@ msgstr "" "adlustravanych paloŭ, naciśnicie ikonku «Vybierycie pole dla adlustravańnia» " "i naciśnicie na adpaviednaje imia pola." -#: libraries/messages.inc.php:256 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:252 libraries/mysql_charsets.lib.php:247 msgid "dictionary" msgstr "słoŭnik" -#: libraries/messages.inc.php:257 libraries/server_synchronize.lib.php:1348 +#: libraries/messages.inc.php:253 libraries/server_synchronize.lib.php:1348 msgid "Difference" msgstr "" -#: libraries/messages.inc.php:258 pmd_general.php:87 +#: libraries/messages.inc.php:254 pmd_general.php:87 msgid "Direct links" msgstr "Pramyja linii suviaziaŭ" -#: libraries/messages.inc.php:261 +#: libraries/messages.inc.php:257 msgid "Disable foreign key checks" msgstr "Adklučyć pravierku źniešnich klučoŭ" -#: libraries/messages.inc.php:262 +#: libraries/messages.inc.php:258 msgid "Display Features" msgstr "Pakazvać mahčymaści" -#: libraries/messages.inc.php:263 tbl_select.php:301 +#: libraries/messages.inc.php:259 tbl_select.php:301 msgid "Display order:" msgstr "Paradak prahladu:" -#: libraries/messages.inc.php:265 tbl_select.php:132 +#: libraries/messages.inc.php:261 tbl_select.php:132 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Vykanać \"zapyt zhodna prykłada\" (symbal padstanoŭki: \"%\")" -#: libraries/messages.inc.php:266 +#: libraries/messages.inc.php:262 msgid "DocSQL" msgstr "DocSQL" -#: libraries/messages.inc.php:268 +#: libraries/messages.inc.php:264 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/messages.inc.php:273 server_privileges.php:1579 +#: libraries/messages.inc.php:269 server_privileges.php:1579 #: server_privileges.php:1580 server_privileges.php:1581 msgid "Drop the databases that have the same names as the users." msgstr "" "Vydalić bazy dadzienych, jakija majuć takija ž imiony jak i karystalniki." -#: libraries/messages.inc.php:278 tbl_printview.php:382 tbl_structure.php:743 +#: libraries/messages.inc.php:274 tbl_printview.php:382 tbl_structure.php:743 msgid "dynamic" msgstr "dynamičny" -#: libraries/messages.inc.php:282 server_privileges.php:1324 +#: libraries/messages.inc.php:278 server_privileges.php:1324 #: server_privileges.php:1610 msgid "Edit Privileges" msgstr "Redagavać pryvilei" -#: libraries/messages.inc.php:283 tbl_printview.php:341 tbl_structure.php:688 +#: libraries/messages.inc.php:279 tbl_printview.php:341 tbl_structure.php:688 msgid "Effective" msgstr "Efektyŭnaść" -#: libraries/messages.inc.php:286 libraries/relation.lib.php:100 +#: libraries/messages.inc.php:282 libraries/relation.lib.php:100 msgid "Enabled" msgstr "Uklučana" -#: libraries/messages.inc.php:287 +#: libraries/messages.inc.php:283 msgid "Enclose export in a transaction" msgstr "Ekspartavać za adnu tranzakcyju" -#: libraries/messages.inc.php:288 libraries/sqlparser.lib.php:177 +#: libraries/messages.inc.php:284 libraries/sqlparser.lib.php:177 msgid "END CUT" msgstr "END CUT" -#: libraries/messages.inc.php:290 libraries/sqlparser.lib.php:183 +#: libraries/messages.inc.php:286 libraries/sqlparser.lib.php:183 msgid "END RAW" msgstr "END RAW" -#: libraries/messages.inc.php:293 libraries/server_links.inc.php:61 +#: libraries/messages.inc.php:289 libraries/server_links.inc.php:61 #: test/theme.php:113 msgid "Engines" msgstr "Mašyny" -#: libraries/messages.inc.php:295 libraries/mysql_charsets.lib.php:238 +#: libraries/messages.inc.php:291 libraries/mysql_charsets.lib.php:238 msgid "English" msgstr "Anhielskaja" -#: libraries/messages.inc.php:296 server_privileges.php:393 +#: libraries/messages.inc.php:292 server_privileges.php:393 #: server_privileges.php:535 server_privileges.php:1501 msgid " Note: MySQL privilege names are expressed in English " msgstr " Zaŭvaha: imiony pryvilejaŭ MySQL zadajucca pa-anhielsku " -#: libraries/messages.inc.php:298 libraries/zip_extension.lib.php:49 +#: libraries/messages.inc.php:294 libraries/zip_extension.lib.php:49 #: libraries/zip_extension.lib.php:51 libraries/zip_extension.lib.php:66 msgid "Error in ZIP archive:" msgstr "Pamyłka ŭ ZIP-archivie:" -#: libraries/messages.inc.php:303 libraries/mysql_charsets.lib.php:241 +#: libraries/messages.inc.php:299 libraries/mysql_charsets.lib.php:241 msgid "Esperanto" msgstr "Esperanta" -#: libraries/messages.inc.php:304 libraries/mysql_charsets.lib.php:244 +#: libraries/messages.inc.php:300 libraries/mysql_charsets.lib.php:244 msgid "Estonian" msgstr "Estonskaja" -#: libraries/messages.inc.php:305 libraries/tbl_triggers.lib.php:29 +#: libraries/messages.inc.php:301 libraries/tbl_triggers.lib.php:29 msgid "Event" msgstr "Padzieja" -#: libraries/messages.inc.php:307 +#: libraries/messages.inc.php:303 msgid "Excel edition" msgstr "Versija Excel" -#: libraries/messages.inc.php:311 pmd_pdf.php:85 +#: libraries/messages.inc.php:307 pmd_pdf.php:85 msgid "Export/Import to scale" msgstr "Maštab" -#: libraries/messages.inc.php:313 +#: libraries/messages.inc.php:309 msgid "Extended inserts" msgstr "Pašyranyja ŭstaŭki" -#: libraries/messages.inc.php:314 pdf_schema.php:1267 pdf_schema.php:1288 +#: libraries/messages.inc.php:310 pdf_schema.php:1267 pdf_schema.php:1288 #: tbl_printview.php:147 tbl_structure.php:183 tbl_tracking.php:278 msgid "Extra" msgstr "Dadatkova" -#: libraries/messages.inc.php:316 server_status.php:447 +#: libraries/messages.inc.php:312 server_status.php:447 msgid "Failed attempts" msgstr "Niaŭdałych sprobaŭ" -#: libraries/messages.inc.php:318 tbl_structure.php:375 +#: libraries/messages.inc.php:314 tbl_structure.php:375 #, php-format msgid "Field %s has been dropped" msgstr "Pole %s było vydalenaje" -#: libraries/messages.inc.php:322 libraries/sql_query_form.lib.php:317 +#: libraries/messages.inc.php:318 libraries/sql_query_form.lib.php:317 msgid "Fields" msgstr "Pali" -#: libraries/messages.inc.php:332 server_binlog.php:136 +#: libraries/messages.inc.php:328 server_binlog.php:136 msgid "Files" msgstr "Fajły" -#: libraries/messages.inc.php:334 server_privileges.php:1597 +#: libraries/messages.inc.php:330 server_privileges.php:1597 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -3832,217 +3832,217 @@ msgstr "" "jakija vykarystoŭvaje server, kali jany byli źmienienyja ŭručnuju. U hetym " "vypadku vam treba %spierazahruzić pryvilei%s da taho, jak vy praciahniecie." -#: libraries/messages.inc.php:335 server_status.php:289 +#: libraries/messages.inc.php:331 server_status.php:289 msgid "Flush query cache" msgstr "Skinuć keš zapytaŭ" -#: libraries/messages.inc.php:336 +#: libraries/messages.inc.php:332 msgid "Flush the table (\"FLUSH\")" msgstr "Skinuć keš tablicy (\"FLUSH\")" -#: libraries/messages.inc.php:337 server_status.php:271 +#: libraries/messages.inc.php:333 server_status.php:271 msgid "Flush (close) all tables" msgstr "Skinuć (zakryć) usie tablicy" -#: libraries/messages.inc.php:339 tbl_relation.php:279 +#: libraries/messages.inc.php:335 tbl_relation.php:279 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "Pamyłka stvareńnia źniešniaha kluča na %1$s (praviercie typy kalonak)" -#: libraries/messages.inc.php:341 setup/lib/messages.inc.php:88 +#: libraries/messages.inc.php:337 setup/lib/messages.inc.php:88 #: tbl_printview.php:376 tbl_structure.php:738 msgid "Format" msgstr "Farmat" -#: libraries/messages.inc.php:344 server_replication.php:325 +#: libraries/messages.inc.php:340 server_replication.php:325 msgid "Full start" msgstr "" -#: libraries/messages.inc.php:345 server_replication.php:325 +#: libraries/messages.inc.php:341 server_replication.php:325 msgid "Full stop" msgstr "" -#: libraries/messages.inc.php:347 tbl_change.php:282 tbl_change.php:320 +#: libraries/messages.inc.php:343 tbl_change.php:282 tbl_change.php:320 msgid "Function" msgstr "Funkcyja" -#: libraries/messages.inc.php:355 libraries/mysql_charsets.lib.php:377 +#: libraries/messages.inc.php:351 libraries/mysql_charsets.lib.php:377 msgid "Georgian" msgstr "Hruzinskaja" -#: libraries/messages.inc.php:356 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:352 libraries/mysql_charsets.lib.php:247 #: libraries/mysql_charsets.lib.php:250 msgid "German" msgstr "Niamieckaja" -#: libraries/messages.inc.php:357 themes.php:42 +#: libraries/messages.inc.php:353 themes.php:42 msgid "Get more themes!" msgstr "" -#: libraries/messages.inc.php:358 server_privileges.php:2134 +#: libraries/messages.inc.php:354 server_privileges.php:2134 msgid "global" msgstr "hlabalny" -#: libraries/messages.inc.php:359 server_privileges.php:524 +#: libraries/messages.inc.php:355 server_privileges.php:524 #: server_privileges.php:1500 msgid "Global privileges" msgstr "Hlabalnyja pryvilei" -#: libraries/messages.inc.php:360 server_variables.php:55 +#: libraries/messages.inc.php:356 server_variables.php:55 #: server_variables.php:89 msgid "Global value" msgstr "Hlabalnaje značeńnie" -#: libraries/messages.inc.php:365 server_privileges.php:1502 +#: libraries/messages.inc.php:361 server_privileges.php:1502 #: server_privileges.php:1684 server_privileges.php:2033 msgid "Grant" msgstr "Grant" -#: libraries/messages.inc.php:366 libraries/mysql_charsets.lib.php:380 +#: libraries/messages.inc.php:362 libraries/mysql_charsets.lib.php:380 msgid "Greek" msgstr "Hreckaja" -#: libraries/messages.inc.php:367 +#: libraries/messages.inc.php:363 msgid "\"gzipped\"" msgstr "archivavany ŭ gzip" -#: libraries/messages.inc.php:369 server_status.php:250 +#: libraries/messages.inc.php:365 server_status.php:250 msgid "Handler" msgstr "Apracoŭnik" -#: libraries/messages.inc.php:370 server_synchronize.php:464 +#: libraries/messages.inc.php:366 server_synchronize.php:464 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: libraries/messages.inc.php:372 libraries/mysql_charsets.lib.php:374 +#: libraries/messages.inc.php:368 libraries/mysql_charsets.lib.php:374 msgid "Hebrew" msgstr "Habrejskaja" -#: libraries/messages.inc.php:373 pmd_general.php:83 +#: libraries/messages.inc.php:369 pmd_general.php:83 msgid "Help" msgstr "Dapamoha" -#: libraries/messages.inc.php:374 +#: libraries/messages.inc.php:370 msgid "Use hexadecimal for BLOB" msgstr "Šasnaccatkovyja značeńni dla polaŭ typu BLOB" -#: libraries/messages.inc.php:376 pmd_general.php:120 +#: libraries/messages.inc.php:372 pmd_general.php:120 msgid "Hide/Show all" msgstr "Schavać/pakazać usie tablicy" -#: libraries/messages.inc.php:377 pmd_general.php:124 +#: libraries/messages.inc.php:373 pmd_general.php:124 msgid "Hide/Show Tables with no relation" msgstr "Schavać/pakazać tablicy biaz suviaziaŭ" -#: libraries/messages.inc.php:378 libraries/navigation_header.inc.php:54 +#: libraries/messages.inc.php:374 libraries/navigation_header.inc.php:54 #: libraries/navigation_header.inc.php:57 #: libraries/navigation_header.inc.php:58 msgid "Home" msgstr "Da pačatku" -#: libraries/messages.inc.php:379 main.php:233 +#: libraries/messages.inc.php:375 main.php:233 msgid "Official Homepage" msgstr "Aficyjnaja staronka phpMyAdmin" -#: libraries/messages.inc.php:382 libraries/replication_gui.lib.php:327 +#: libraries/messages.inc.php:378 libraries/replication_gui.lib.php:327 #: server_privileges.php:753 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/messages.inc.php:383 +#: libraries/messages.inc.php:379 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/messages.inc.php:384 libraries/mysql_charsets.lib.php:253 +#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:253 msgid "Hungarian" msgstr "Vuhorskaja" -#: libraries/messages.inc.php:386 libraries/mysql_charsets.lib.php:256 +#: libraries/messages.inc.php:382 libraries/mysql_charsets.lib.php:256 msgid "Icelandic" msgstr "Iślandzkaja" -#: libraries/messages.inc.php:387 server_processlist.php:53 +#: libraries/messages.inc.php:383 server_processlist.php:53 msgid "ID" msgstr "ID" -#: libraries/messages.inc.php:388 libraries/mult_submits.inc.php:108 +#: libraries/messages.inc.php:384 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:479 msgid "Fulltext" msgstr "Poŭnatekstekstavaje" -#: libraries/messages.inc.php:389 +#: libraries/messages.inc.php:385 msgid "Ignore duplicate rows" msgstr "Ignaravać radki, jakija paŭtarajucca" -#: libraries/messages.inc.php:390 tbl_change.php:302 tbl_indexes.php:200 +#: libraries/messages.inc.php:386 tbl_change.php:302 tbl_indexes.php:200 #: tbl_indexes.php:225 msgid "Ignore" msgstr "Ignaravać" -#: libraries/messages.inc.php:391 +#: libraries/messages.inc.php:387 msgid "Use ignore inserts" msgstr "Vykarystoŭvać ustaŭki ignaravańniaŭ" -#: libraries/messages.inc.php:392 +#: libraries/messages.inc.php:388 msgid "Column names in first row" msgstr "" -#: libraries/messages.inc.php:393 +#: libraries/messages.inc.php:389 msgid "Do not import empty rows" msgstr "" -#: libraries/messages.inc.php:394 pmd_general.php:104 +#: libraries/messages.inc.php:390 pmd_general.php:104 msgid "Import/Export coordinates for PDF schema" msgstr "Impartavać/Ekspartavać kaardynaty tablic ŭ PDF-schiemu" -#: libraries/messages.inc.php:395 querywindow.php:104 +#: libraries/messages.inc.php:391 querywindow.php:104 msgid "Import files" msgstr "Impartavać fajły" -#: libraries/messages.inc.php:403 +#: libraries/messages.inc.php:399 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/messages.inc.php:404 libraries/messages.inc.php:584 +#: libraries/messages.inc.php:400 libraries/messages.inc.php:580 msgid "Open Document Spreadsheet" msgstr "Specyfikacyja Open Document" -#: libraries/messages.inc.php:405 +#: libraries/messages.inc.php:401 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/messages.inc.php:409 +#: libraries/messages.inc.php:405 msgid "Excel 97-2003 XLS Workbook" msgstr "" -#: libraries/messages.inc.php:410 +#: libraries/messages.inc.php:406 msgid "Excel 2007 XLSX Workbook" msgstr "" -#: libraries/messages.inc.php:414 libraries/mult_submits.inc.php:98 +#: libraries/messages.inc.php:410 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:476 tbl_structure.php:674 msgid "Index" msgstr "Indeks" -#: libraries/messages.inc.php:415 tbl_indexes.php:168 +#: libraries/messages.inc.php:411 tbl_indexes.php:168 msgid "Index name:" msgstr "Imia indeksa:" -#: libraries/messages.inc.php:416 tbl_indexes.php:174 +#: libraries/messages.inc.php:412 tbl_indexes.php:174 msgid "Index type:" msgstr "Typ indeksa:" -#: libraries/messages.inc.php:417 sql.php:639 +#: libraries/messages.inc.php:413 sql.php:639 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Prablemy z indeksami dla tablicy `%s`" -#: libraries/messages.inc.php:427 main.php:266 +#: libraries/messages.inc.php:423 main.php:266 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -4055,24 +4055,24 @@ msgstr "" "źniešniaha ŭryvańnia, i tamu vam abaviazkova treba vypravić hetuju chibu ŭ " "biaśpiecy." -#: libraries/messages.inc.php:428 tbl_change.php:1130 +#: libraries/messages.inc.php:424 tbl_change.php:1130 msgid "Insert as new row" msgstr "Ustavić jak novy radok" -#: libraries/messages.inc.php:429 sql.php:496 tbl_replace.php:386 +#: libraries/messages.inc.php:425 sql.php:496 tbl_replace.php:386 #, php-format msgid "Inserted row id: %1$d" msgstr "ID ustaŭlenaha radku: %1$d" -#: libraries/messages.inc.php:430 tbl_change.php:1131 +#: libraries/messages.inc.php:426 tbl_change.php:1131 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/messages.inc.php:432 main.php:139 +#: libraries/messages.inc.php:428 main.php:139 msgid "Interface" msgstr "Interfejs" -#: libraries/messages.inc.php:433 tbl_relation.php:407 +#: libraries/messages.inc.php:429 tbl_relation.php:407 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -4080,140 +4080,140 @@ msgstr "" "Unutranaja suviaź nie źjaŭlajecca abaviazkovaj, kali isnuje adpaviednaja " "suviaź FOREIGN KEY." -#: libraries/messages.inc.php:435 pdf_pages.php:303 +#: libraries/messages.inc.php:431 pdf_pages.php:303 msgid "Internal relations" msgstr "Unutranyja suviazi" -#: libraries/messages.inc.php:438 tbl_indexes.php:256 tbl_structure.php:590 +#: libraries/messages.inc.php:434 tbl_indexes.php:256 tbl_structure.php:590 #: tbl_structure.php:601 msgid "Column count has to be larger than zero." msgstr "Kolkaść kalonak musić być bolšaj za nul." -#: libraries/messages.inc.php:444 libraries/tbl_properties.inc.php:784 +#: libraries/messages.inc.php:440 libraries/tbl_properties.inc.php:784 #: tbl_structure.php:537 msgid "You have to add at least one field." msgstr "Treba dadać prynamsi adno pole." -#: libraries/messages.inc.php:449 +#: libraries/messages.inc.php:445 #, php-format msgid "Invalid server index: \"%s\"" msgstr "Niekarektny indeks servera: \"%s\"" -#: libraries/messages.inc.php:452 libraries/mysql_charsets.lib.php:259 +#: libraries/messages.inc.php:448 libraries/mysql_charsets.lib.php:259 #: libraries/mysql_charsets.lib.php:349 msgid "Japanese" msgstr "Japonskaja" -#: libraries/messages.inc.php:453 main.php:331 +#: libraries/messages.inc.php:449 main.php:331 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: libraries/messages.inc.php:454 server_status.php:257 +#: libraries/messages.inc.php:450 server_status.php:257 msgid "Joins" msgstr "Ab'jadnańni" -#: libraries/messages.inc.php:457 server_privileges.php:763 +#: libraries/messages.inc.php:453 server_privileges.php:763 msgid "Do not change the password" msgstr "Nie źmianiać parol" -#: libraries/messages.inc.php:458 server_status.php:256 +#: libraries/messages.inc.php:454 server_status.php:256 msgid "Key cache" msgstr "Keš klučoŭ" -#: libraries/messages.inc.php:462 libraries/mysql_charsets.lib.php:268 +#: libraries/messages.inc.php:458 libraries/mysql_charsets.lib.php:268 #: libraries/mysql_charsets.lib.php:371 msgid "Korean" msgstr "Karejskaja" -#: libraries/messages.inc.php:466 libraries/select_lang.lib.php:480 +#: libraries/messages.inc.php:462 libraries/select_lang.lib.php:480 #: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492 #, php-format msgid "Unknown language: %1$s." msgstr "Nieviadomaja mova: %1$s." -#: libraries/messages.inc.php:468 +#: libraries/messages.inc.php:464 msgid "Table caption" msgstr "Zahałovak tablicy" -#: libraries/messages.inc.php:469 +#: libraries/messages.inc.php:465 msgid "Content of table __TABLE__" msgstr "Źmieściva tablicy __TABLE__" -#: libraries/messages.inc.php:470 +#: libraries/messages.inc.php:466 msgid "Continued table caption" msgstr "Praciahnuty zahałovak tablicy" -#: libraries/messages.inc.php:471 +#: libraries/messages.inc.php:467 msgid "(continued)" msgstr "(praciah)" -#: libraries/messages.inc.php:472 +#: libraries/messages.inc.php:468 msgid "Include table caption" msgstr "Uklučyć zahałovak tablicy" -#: libraries/messages.inc.php:473 +#: libraries/messages.inc.php:469 msgid "Label key" msgstr "Kluč mietki" -#: libraries/messages.inc.php:474 +#: libraries/messages.inc.php:470 msgid "LaTeX" msgstr "LaTeX" -#: libraries/messages.inc.php:475 +#: libraries/messages.inc.php:471 msgid "Structure of table __TABLE__" msgstr "Struktura tablicy __TABLE__" -#: libraries/messages.inc.php:476 libraries/mysql_charsets.lib.php:262 +#: libraries/messages.inc.php:472 libraries/mysql_charsets.lib.php:262 msgid "Latvian" msgstr "Łatvijskaja" -#: libraries/messages.inc.php:477 +#: libraries/messages.inc.php:473 msgid "CSV using LOAD DATA" msgstr "CSV z vykarystańniem LOAD DATA" -#: libraries/messages.inc.php:478 +#: libraries/messages.inc.php:474 msgid "Use LOCAL keyword" msgstr "Vykarystoŭvać klučavoje słova LOCAL" -#: libraries/messages.inc.php:479 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:475 libraries/tbl_properties.inc.php:105 msgid "Length/Values" msgstr "Daŭžynia/Značeńni*" -#: libraries/messages.inc.php:480 tbl_select.php:295 +#: libraries/messages.inc.php:476 tbl_select.php:295 msgid "Number of rows per page" msgstr "Kolkaść radkoŭ na staronku" -#: libraries/messages.inc.php:484 libraries/mysql_charsets.lib.php:265 +#: libraries/messages.inc.php:480 libraries/mysql_charsets.lib.php:265 msgid "Lithuanian" msgstr "Litoŭskaja" -#: libraries/messages.inc.php:485 libraries/replication_gui.lib.php:302 +#: libraries/messages.inc.php:481 libraries/replication_gui.lib.php:302 #: server_privileges.php:729 msgid "Local" msgstr "Lakalny" -#: libraries/messages.inc.php:487 server_privileges.php:669 +#: libraries/messages.inc.php:483 server_privileges.php:669 msgid "Login Information" msgstr "Infarmacyja pra ŭvachod" -#: libraries/messages.inc.php:490 libraries/navigation_header.inc.php:67 +#: libraries/messages.inc.php:486 libraries/navigation_header.inc.php:67 #: libraries/navigation_header.inc.php:70 #: libraries/navigation_header.inc.php:71 main.php:99 msgid "Log out" msgstr "Vyjści z systemy" -#: libraries/messages.inc.php:497 server_status.php:440 +#: libraries/messages.inc.php:493 server_status.php:440 msgid "max. concurrent connections" msgstr "maksymum adnačasovych złučeńniaŭ" -#: libraries/messages.inc.php:498 +#: libraries/messages.inc.php:494 msgid "Maximal length of created query" msgstr "Maksymalnaja daŭžynia stvoranaha zapytu" -#: libraries/messages.inc.php:500 main.php:282 +#: libraries/messages.inc.php:496 main.php:282 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -4223,7 +4223,7 @@ msgstr "" "šmatbajtavuju kadyroŭku. Biez pašyreńnia mbstring phpMyAdmin nia moža " "padzialać radki karektna, i heta moža pryvieści da niečakanych vynikaŭ." -#: libraries/messages.inc.php:501 main.php:274 +#: libraries/messages.inc.php:497 main.php:274 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -4232,24 +4232,24 @@ msgstr "" "Vy ŭklučyli mbstring.func_overload u vašym kanfihuracyjnym fajle PHP. Hetaja " "opcyja niesumiaščalnaja z phpMyAdmin i moža vyklikać paškodžańnie dadzienych!" -#: libraries/messages.inc.php:502 +#: libraries/messages.inc.php:498 msgid "MediaWiki Table" msgstr "" -#: libraries/messages.inc.php:503 transformation_overview.php:25 +#: libraries/messages.inc.php:499 transformation_overview.php:25 msgid "Available MIME types" msgstr "Dastupnyja MIME-typy" -#: libraries/messages.inc.php:504 transformation_overview.php:43 +#: libraries/messages.inc.php:500 transformation_overview.php:43 msgid "Available transformations" msgstr "Dastupnyja pieraŭtvareńni" -#: libraries/messages.inc.php:505 +#: libraries/messages.inc.php:501 msgctxt "$strMIME_description" msgid "Description" msgstr "Apisańnie" -#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:580 +#: libraries/messages.inc.php:503 libraries/tbl_properties.inc.php:580 #: transformation_overview.php:60 #, php-format msgid "" @@ -4259,7 +4259,7 @@ msgstr "" "Niama dastupnych apisańniaŭ dla hetaha pieraŭtvareńnia. Kali łaska, " "spytajcie aŭtara, što robić %s." -#: libraries/messages.inc.php:509 libraries/tbl_properties.inc.php:137 +#: libraries/messages.inc.php:505 libraries/tbl_properties.inc.php:137 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -4268,7 +4268,7 @@ msgstr "" "Dla atrymańnia śpisu dastupnych opcyjaŭ transfarmacyi i pieraŭtvareńniaŭ " "ichnych MIME-typaŭ, naciśnicie na %sapisańni pieraŭtvareńniaŭ%s" -#: libraries/messages.inc.php:510 libraries/tbl_properties.inc.php:146 +#: libraries/messages.inc.php:506 libraries/tbl_properties.inc.php:146 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -4280,57 +4280,57 @@ msgstr "" "apostraf (\"'\") u hetych značeńniach, ustaŭcie zvarotny słeš pierad imi " "(naprykład, '\\\\xyz' abo 'a\\'b')." -#: libraries/messages.inc.php:511 libraries/tbl_properties.inc.php:145 +#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:145 msgid "Transformation options" msgstr "Opcyi pieraŭtvareńnia" -#: libraries/messages.inc.php:513 transformation_overview.php:38 +#: libraries/messages.inc.php:509 transformation_overview.php:38 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "" "MIME-typy, vyłučanyja kursivam, nia majuć asobnaj funkcyi pieraŭtvareńnia" -#: libraries/messages.inc.php:515 tbl_indexes.php:162 +#: libraries/messages.inc.php:511 tbl_indexes.php:162 msgid "Modify an index" msgstr "Źmianić indeks" -#: libraries/messages.inc.php:517 pmd_general.php:108 +#: libraries/messages.inc.php:513 pmd_general.php:108 msgid "Move Menu" msgstr "Pierasunuć meniu" -#: libraries/messages.inc.php:518 tbl_operations.php:276 +#: libraries/messages.inc.php:514 tbl_operations.php:276 msgid "Move table to (database.table):" msgstr "Pieranieści tablicu ŭ (baza dadzienych.tablica):" -#: libraries/messages.inc.php:519 tbl_move_copy.php:56 +#: libraries/messages.inc.php:515 tbl_move_copy.php:56 #, php-format msgid "Table %s has been moved to %s." msgstr "Tablica %s była pieraniesienaja ŭ %s." -#: libraries/messages.inc.php:520 tbl_move_copy.php:46 +#: libraries/messages.inc.php:516 tbl_move_copy.php:46 msgid "Can't move table to same one!" msgstr "Niemahčyma pieranieści tablicu ŭ samu siabie!" -#: libraries/messages.inc.php:521 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:517 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 #: libraries/mysql_charsets.lib.php:332 libraries/mysql_charsets.lib.php:354 #: libraries/mysql_charsets.lib.php:365 msgid "multilingual" msgstr "šmatmoŭnaja" -#: libraries/messages.inc.php:534 main.php:193 +#: libraries/messages.inc.php:530 main.php:193 msgid "MySQL charset" msgstr "Kadyroŭka MySQL" -#: libraries/messages.inc.php:535 main.php:211 +#: libraries/messages.inc.php:531 main.php:211 msgid "MySQL client version" msgstr "Versija klijenta MySQL" -#: libraries/messages.inc.php:536 main.php:125 +#: libraries/messages.inc.php:532 main.php:125 msgid "MySQL connection collation" msgstr "Supastaŭleńnie padłučeńnia da MySQL" -#: libraries/messages.inc.php:537 main.php:346 +#: libraries/messages.inc.php:533 main.php:346 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -4339,54 +4339,54 @@ msgstr "" "Versija vašaj biblijateki MySQL dla PHP %s adroźnivajecca ad versii vašaha " "servera MySQL %s. Heta moža vyklikać niepradkazalnyja pavodziny." -#: libraries/messages.inc.php:539 server_status.php:294 +#: libraries/messages.inc.php:535 server_status.php:294 msgid "Show processes" msgstr "Pakazać pracesy" -#: libraries/messages.inc.php:545 navigation.php:210 server_databases.php:371 +#: libraries/messages.inc.php:541 navigation.php:210 server_databases.php:371 #: server_synchronize.php:1191 msgid "No databases" msgstr "Bazy dadzienych adsutničajuć" -#: libraries/messages.inc.php:546 server_databases.php:52 +#: libraries/messages.inc.php:542 server_databases.php:52 msgid "No databases selected." msgstr "Nia vybranaja baza dadzienych." -#: libraries/messages.inc.php:548 libraries/relation.lib.php:1173 +#: libraries/messages.inc.php:544 libraries/relation.lib.php:1173 msgid "no description" msgstr "niama apisańnia" -#: libraries/messages.inc.php:552 libraries/zip_extension.lib.php:26 +#: libraries/messages.inc.php:548 libraries/zip_extension.lib.php:26 msgid "No files found inside ZIP archive!" msgstr "Fajły ŭ ZIP-archivie nia znojdzienyja!" -#: libraries/messages.inc.php:555 tbl_indexes.php:91 +#: libraries/messages.inc.php:551 tbl_indexes.php:91 msgid "No index parts defined!" msgstr "Častki indeksu nia vyznačanyja!" -#: libraries/messages.inc.php:556 libraries/mult_submits.inc.php:435 +#: libraries/messages.inc.php:552 libraries/mult_submits.inc.php:435 #: tbl_replace.php:331 msgid "No change" msgstr "Niama źmienaŭ" -#: libraries/messages.inc.php:557 +#: libraries/messages.inc.php:553 msgctxt "$strNoneDefault" msgid "None" msgstr "" -#: libraries/messages.inc.php:560 libraries/plugin_interface.lib.php:312 +#: libraries/messages.inc.php:556 libraries/plugin_interface.lib.php:312 msgid "This format has no options" msgstr "Hety farmat nia maje opcyjaŭ" -#: libraries/messages.inc.php:565 user_password.php:54 +#: libraries/messages.inc.php:561 user_password.php:54 msgid "You don't have sufficient privileges to be here right now!" msgstr "Vy nia majecie dastatkovych pryvilejaŭ być u hetym miescy ŭ hety čas!" -#: libraries/messages.inc.php:566 tbl_row_action.php:29 +#: libraries/messages.inc.php:562 tbl_row_action.php:29 msgid "No rows selected" msgstr "Nivodny radok nia vybrany" -#: libraries/messages.inc.php:569 themes.php:32 +#: libraries/messages.inc.php:565 themes.php:32 #, php-format msgid "" "No themes support; please check your configuration and/or your themes in " @@ -4395,296 +4395,296 @@ msgstr "" "Temy nie padtrymlivajucca; kali łaska, praviercie vašuju kanfihuracyju i/abo " "vašyja temy ŭ tečcy %s." -#: libraries/messages.inc.php:571 libraries/relation.lib.php:95 +#: libraries/messages.inc.php:567 libraries/relation.lib.php:95 msgid "not OK" msgstr "nie OK" -#: libraries/messages.inc.php:572 server_synchronize.php:400 +#: libraries/messages.inc.php:568 server_synchronize.php:400 #: server_synchronize.php:839 msgid "not present" msgstr "" -#: libraries/messages.inc.php:573 pdf_pages.php:36 pdf_pages.php:42 +#: libraries/messages.inc.php:569 pdf_pages.php:36 pdf_pages.php:42 #: pdf_pages.php:48 pdf_pages.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "Tablica %s nia znojdzienaja abo nia vyznačanaja ŭ %s" -#: libraries/messages.inc.php:574 server_privileges.php:804 +#: libraries/messages.inc.php:570 server_privileges.php:804 #: server_privileges.php:2166 msgid "No user(s) found." msgstr "Nie znojdzieny karystalnik." -#: libraries/messages.inc.php:578 pmd_general.php:164 +#: libraries/messages.inc.php:574 pmd_general.php:164 msgid "Number of tables" msgstr "Kolkaść tablic" -#: libraries/messages.inc.php:581 server_databases.php:117 +#: libraries/messages.inc.php:577 server_databases.php:117 #: server_status.php:260 setup/lib/messages.inc.php:117 msgid "Tables" msgstr "Tablic" -#: libraries/messages.inc.php:583 libraries/relation.lib.php:99 +#: libraries/messages.inc.php:579 libraries/relation.lib.php:99 #: pmd_general.php:340 msgid "OK" msgstr "OK" -#: libraries/messages.inc.php:585 +#: libraries/messages.inc.php:581 msgid "Open Document Text" msgstr "Tekst Open Document" -#: libraries/messages.inc.php:588 tbl_select.php:138 +#: libraries/messages.inc.php:584 tbl_select.php:138 msgid "Operator" msgstr "Aperatar" -#: libraries/messages.inc.php:589 tbl_operations.php:662 +#: libraries/messages.inc.php:585 tbl_operations.php:662 msgid "Optimize" msgstr "Aptymizavać" -#: libraries/messages.inc.php:602 libraries/tbl_properties.inc.php:755 +#: libraries/messages.inc.php:598 libraries/tbl_properties.inc.php:755 msgid "PARTITION definition" msgstr "Aznačeńnie PARTITION" -#: libraries/messages.inc.php:603 tbl_structure.php:757 +#: libraries/messages.inc.php:599 tbl_structure.php:757 msgid "partitioned" msgstr "padzielenaja na sekcyi" -#: libraries/messages.inc.php:604 tbl_operations.php:649 +#: libraries/messages.inc.php:600 tbl_operations.php:649 msgid "Partition maintenance" msgstr "Padtrymka padziełaŭ" -#: libraries/messages.inc.php:605 tbl_operations.php:657 +#: libraries/messages.inc.php:601 tbl_operations.php:657 #, php-format msgid "Partition %s" msgstr "Padzieł %s" -#: libraries/messages.inc.php:606 server_privileges.php:1212 +#: libraries/messages.inc.php:602 server_privileges.php:1212 #, php-format msgid "The password for %s was changed successfully." msgstr "Parol dla %s paśpiachova źmienieny." -#: libraries/messages.inc.php:635 +#: libraries/messages.inc.php:631 #, php-format msgid "Schema of the \"%s\" database - Page %s" msgstr "Struktura bazy \"%s\" — staronka %s" -#: libraries/messages.inc.php:636 +#: libraries/messages.inc.php:632 #, php-format msgid "The \"%s\" table doesn't exist!" msgstr "Tablicy \"%s\" nie isnuje!" -#: libraries/messages.inc.php:637 pdf_schema.php:1013 +#: libraries/messages.inc.php:633 pdf_schema.php:1013 msgid "No tables" msgstr "Niama tablic" -#: libraries/messages.inc.php:638 pmd_pdf.php:63 +#: libraries/messages.inc.php:634 pmd_pdf.php:63 msgid "Page has been created" msgstr "" -#: libraries/messages.inc.php:639 pmd_pdf.php:65 +#: libraries/messages.inc.php:635 pmd_pdf.php:65 msgid "Page creation failed" msgstr "" -#: libraries/messages.inc.php:640 +#: libraries/messages.inc.php:636 msgid "PDF" msgstr "PDF" -#: libraries/messages.inc.php:641 +#: libraries/messages.inc.php:637 msgid "(Generates a report containing the data of a single table)" msgstr "(Hieneruje spravazdaču z dadzienymi asobnaj tablicy)" -#: libraries/messages.inc.php:642 +#: libraries/messages.inc.php:638 msgid "Report title" msgstr "Zahałovak spravazdačy" -#: libraries/messages.inc.php:643 server_status.php:389 server_status.php:434 +#: libraries/messages.inc.php:639 server_status.php:389 server_status.php:434 #: server_status.php:497 server_status.php:555 msgid "per hour" msgstr "u hadzinu" -#: libraries/messages.inc.php:644 server_status.php:498 +#: libraries/messages.inc.php:640 server_status.php:498 msgid "per minute" msgstr "u chvilinu" -#: libraries/messages.inc.php:645 server_status.php:499 +#: libraries/messages.inc.php:641 server_status.php:499 msgid "per second" msgstr "u sekundu" -#: libraries/messages.inc.php:646 libraries/mysql_charsets.lib.php:271 +#: libraries/messages.inc.php:642 libraries/mysql_charsets.lib.php:271 msgid "Persian" msgstr "Persydzkaja" -#: libraries/messages.inc.php:647 libraries/mysql_charsets.lib.php:250 +#: libraries/messages.inc.php:643 libraries/mysql_charsets.lib.php:250 msgid "phone book" msgstr "telefonnaja kniha" -#: libraries/messages.inc.php:648 +#: libraries/messages.inc.php:644 msgid "PHP array" msgstr "" -#: libraries/messages.inc.php:650 main.php:213 +#: libraries/messages.inc.php:646 main.php:213 msgid "PHP extension" msgstr "Pašyreńnie PHP" -#: libraries/messages.inc.php:654 libraries/relation.lib.php:163 +#: libraries/messages.inc.php:650 libraries/relation.lib.php:163 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/messages.inc.php:655 libraries/relation.lib.php:159 +#: libraries/messages.inc.php:651 libraries/relation.lib.php:159 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/messages.inc.php:656 libraries/relation.lib.php:161 +#: libraries/messages.inc.php:652 libraries/relation.lib.php:161 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" -#: libraries/messages.inc.php:657 libraries/relation.lib.php:162 +#: libraries/messages.inc.php:653 libraries/relation.lib.php:162 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/messages.inc.php:658 libraries/relation.lib.php:164 +#: libraries/messages.inc.php:654 libraries/relation.lib.php:164 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/messages.inc.php:661 libraries/mysql_charsets.lib.php:274 +#: libraries/messages.inc.php:657 libraries/mysql_charsets.lib.php:274 msgid "Polish" msgstr "Polskaja" -#: libraries/messages.inc.php:662 libraries/replication_gui.lib.php:67 +#: libraries/messages.inc.php:658 libraries/replication_gui.lib.php:67 #: server_synchronize.php:1163 msgid "Port" msgstr "" -#: libraries/messages.inc.php:667 tbl_indexes.php:67 +#: libraries/messages.inc.php:663 tbl_indexes.php:67 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Imia pieršasnaha kluča musić być PRIMARY!" -#: libraries/messages.inc.php:668 tbl_indexes.php:184 +#: libraries/messages.inc.php:664 tbl_indexes.php:184 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "(\"PRIMARY\" musić być imiem pieršasnaha kluča i tolki jaho!)" -#: libraries/messages.inc.php:669 libraries/mult_submits.inc.php:76 +#: libraries/messages.inc.php:665 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:474 msgid "Primary" msgstr "Pieršasny" -#: libraries/messages.inc.php:673 server_privileges.php:227 +#: libraries/messages.inc.php:669 server_privileges.php:227 msgid "Includes all privileges except GRANT." msgstr "Uklučaje ŭsie pryvilei, aproč GRANT." -#: libraries/messages.inc.php:674 server_privileges.php:153 +#: libraries/messages.inc.php:670 server_privileges.php:153 #: server_privileges.php:476 msgid "Allows altering the structure of existing tables." msgstr "Dazvalaje źmianiać strukturu isnych tablic." -#: libraries/messages.inc.php:675 server_privileges.php:169 +#: libraries/messages.inc.php:671 server_privileges.php:169 #: server_privileges.php:482 msgid "Allows altering and dropping stored routines." msgstr "Dazvalaje źmianiać i vydalać pragramy, jakija zachoŭvajucca." -#: libraries/messages.inc.php:676 server_privileges.php:145 +#: libraries/messages.inc.php:672 server_privileges.php:145 #: server_privileges.php:475 msgid "Allows creating new databases and tables." msgstr "Dazvalaje stvarać novyja bazy dadzienych i tablicy." -#: libraries/messages.inc.php:677 server_privileges.php:168 +#: libraries/messages.inc.php:673 server_privileges.php:168 #: server_privileges.php:481 msgid "Allows creating stored routines." msgstr "Dazvalaje stvarać pragramy, jakija zachoŭvajucca." -#: libraries/messages.inc.php:678 server_privileges.php:475 +#: libraries/messages.inc.php:674 server_privileges.php:475 msgid "Allows creating new tables." msgstr "Dazvalaje stvarać novyja tablicy." -#: libraries/messages.inc.php:679 server_privileges.php:156 +#: libraries/messages.inc.php:675 server_privileges.php:156 #: server_privileges.php:479 msgid "Allows creating temporary tables." msgstr "Dazvalaje stvarać časovyja tablicy." -#: libraries/messages.inc.php:680 server_privileges.php:170 +#: libraries/messages.inc.php:676 server_privileges.php:170 #: server_privileges.php:515 msgid "Allows creating, dropping and renaming user accounts." msgstr "" "Dazvalaje stvarać, vydalać i pierajmianoŭvać ulikovyja zapisy karystalnikaŭ" -#: libraries/messages.inc.php:681 server_privileges.php:160 +#: libraries/messages.inc.php:677 server_privileges.php:160 #: server_privileges.php:164 server_privileges.php:487 #: server_privileges.php:491 msgid "Allows creating new views." msgstr "Dazvalaje stvarać novyja prahlady." -#: libraries/messages.inc.php:682 server_privileges.php:144 +#: libraries/messages.inc.php:678 server_privileges.php:144 #: server_privileges.php:467 msgid "Allows deleting data." msgstr "Dazvalaje vydalać dadzienyja." -#: libraries/messages.inc.php:683 server_privileges.php:146 +#: libraries/messages.inc.php:679 server_privileges.php:146 #: server_privileges.php:478 msgid "Allows dropping databases and tables." msgstr "Dazvalaje vydalać bazy dadzienych i tablicy." -#: libraries/messages.inc.php:684 server_privileges.php:478 +#: libraries/messages.inc.php:680 server_privileges.php:478 msgid "Allows dropping tables." msgstr "Dazvalaje vydalać tablicy." -#: libraries/messages.inc.php:685 server_privileges.php:161 +#: libraries/messages.inc.php:681 server_privileges.php:161 #: server_privileges.php:495 msgid "Allows to set up events for the event scheduler" msgstr "Dazvalaje stvarać padziei ŭ planiroŭniku padziejaŭ" -#: libraries/messages.inc.php:686 server_privileges.php:171 +#: libraries/messages.inc.php:682 server_privileges.php:171 #: server_privileges.php:483 msgid "Allows executing stored routines." msgstr "Dazvalaje vykanańnie pragramaŭ, jakija zachoŭvajucca." -#: libraries/messages.inc.php:687 server_privileges.php:150 +#: libraries/messages.inc.php:683 server_privileges.php:150 #: server_privileges.php:470 msgid "Allows importing data from and exporting data into files." msgstr "" "Dazvalaje impartavać dadzienyja z fajłaŭ i ekspartavać dadzienyja ŭ fajły." -#: libraries/messages.inc.php:688 server_privileges.php:501 +#: libraries/messages.inc.php:684 server_privileges.php:501 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Dazvalaje dadavać karystalnikaŭ i pryvilei biez pierazahruzki tablic " "pryvilejaŭ." -#: libraries/messages.inc.php:689 server_privileges.php:152 +#: libraries/messages.inc.php:685 server_privileges.php:152 #: server_privileges.php:477 msgid "Allows creating and dropping indexes." msgstr "Dazvalaje stvarać i vydalać indeksy." -#: libraries/messages.inc.php:690 server_privileges.php:142 +#: libraries/messages.inc.php:686 server_privileges.php:142 #: server_privileges.php:403 server_privileges.php:465 msgid "Allows inserting and replacing data." msgstr "Dazvalaje ŭstaŭlać i zamianiać dadzienyja." -#: libraries/messages.inc.php:691 server_privileges.php:157 +#: libraries/messages.inc.php:687 server_privileges.php:157 #: server_privileges.php:510 msgid "Allows locking tables for the current thread." msgstr "Dazvalaje blakavać tablicy dla biahučaha patoku." -#: libraries/messages.inc.php:692 server_privileges.php:607 +#: libraries/messages.inc.php:688 server_privileges.php:607 #: server_privileges.php:609 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Abmiažoŭvaje kolkaść novych złučeńniaŭ, jakija karystalnik moža adkryć na " "praciahu hadziny." -#: libraries/messages.inc.php:693 server_privileges.php:595 +#: libraries/messages.inc.php:689 server_privileges.php:595 #: server_privileges.php:597 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Abmiažoŭvaje kolkaść zapytaŭ, jakija karystalnik moža adpravić na server na " "praciahu hadziny." -#: libraries/messages.inc.php:694 server_privileges.php:601 +#: libraries/messages.inc.php:690 server_privileges.php:601 #: server_privileges.php:603 msgid "" "Limits the number of commands that change any table or database the user may " @@ -4693,58 +4693,58 @@ msgstr "" "Abmiažoŭvaje kolkaść kamandaŭ, źmianiajučych lubuju tablicu abo bazu " "dadzienych, jakija karystalnik moža vykanać na praciahu hadziny." -#: libraries/messages.inc.php:695 server_privileges.php:613 +#: libraries/messages.inc.php:691 server_privileges.php:613 #: server_privileges.php:615 msgid "Limits the number of simultaneous connections the user may have." msgstr "" "Abmiažoŭvaje kolkaść adnačasovych złučeńniaŭ, jakija moža mieć karystalnik." -#: libraries/messages.inc.php:696 server_privileges.php:149 +#: libraries/messages.inc.php:692 server_privileges.php:149 #: server_privileges.php:505 msgid "Allows viewing processes of all users" msgstr "Dazvalaje prahladać pracesy ŭsich karystalnikaŭ" -#: libraries/messages.inc.php:697 server_privileges.php:151 +#: libraries/messages.inc.php:693 server_privileges.php:151 #: server_privileges.php:409 server_privileges.php:511 msgid "Has no effect in this MySQL version." msgstr "Nie pracuje ŭ hetaj versii MySQL." -#: libraries/messages.inc.php:698 server_privileges.php:147 +#: libraries/messages.inc.php:694 server_privileges.php:147 #: server_privileges.php:506 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Dazvalaje pierazahružać nałady servera i ačyščać keš servera." -#: libraries/messages.inc.php:699 server_privileges.php:159 +#: libraries/messages.inc.php:695 server_privileges.php:159 #: server_privileges.php:513 msgid "Allows the user to ask where the slaves / masters are." msgstr "Dazvalaje karystalniku pytacca, dzie znachodziacca slaves / masters." -#: libraries/messages.inc.php:700 server_privileges.php:158 +#: libraries/messages.inc.php:696 server_privileges.php:158 #: server_privileges.php:514 msgid "Needed for the replication slaves." msgstr "Nieabchodna dla replikacyi slaves." -#: libraries/messages.inc.php:701 server_privileges.php:141 +#: libraries/messages.inc.php:697 server_privileges.php:141 #: server_privileges.php:400 server_privileges.php:464 msgid "Allows reading data." msgstr "Dazvalaje čytać dadzienyja." -#: libraries/messages.inc.php:702 server_privileges.php:154 +#: libraries/messages.inc.php:698 server_privileges.php:154 #: server_privileges.php:508 msgid "Gives access to the complete list of databases." msgstr "Daje dostup da poŭnaha śpisu bazaŭ dadzienych." -#: libraries/messages.inc.php:703 server_privileges.php:165 +#: libraries/messages.inc.php:699 server_privileges.php:165 #: server_privileges.php:167 server_privileges.php:480 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Dazvalaje vykanańnie zapytaŭ SHOW CREATE VIEW." -#: libraries/messages.inc.php:704 server_privileges.php:148 +#: libraries/messages.inc.php:700 server_privileges.php:148 #: server_privileges.php:507 msgid "Allows shutting down the server." msgstr "Dazvalaje spyniać server." -#: libraries/messages.inc.php:705 server_privileges.php:155 +#: libraries/messages.inc.php:701 server_privileges.php:155 #: server_privileges.php:504 msgid "" "Allows connecting, even if maximum number of connections is reached; " @@ -4755,55 +4755,55 @@ msgstr "" "Patrabujecca dla bolšaści administratyŭnych aperacyjaŭ, takich jak " "vyznačeńnie hlabalnych źmiennych abo spynieńnie patokaŭ inšych karystalnikaŭ." -#: libraries/messages.inc.php:706 server_privileges.php:162 +#: libraries/messages.inc.php:702 server_privileges.php:162 #: server_privileges.php:496 msgid "Allows creating and dropping triggers" msgstr "Dazvalaje stvareńnie i vydaleńnie tryhieraŭ" -#: libraries/messages.inc.php:707 server_privileges.php:143 +#: libraries/messages.inc.php:703 server_privileges.php:143 #: server_privileges.php:406 server_privileges.php:466 msgid "Allows changing data." msgstr "Dazvalaje źmianiać dadzienyja." -#: libraries/messages.inc.php:708 server_privileges.php:221 +#: libraries/messages.inc.php:704 server_privileges.php:221 msgid "No privileges." msgstr "Biez pryvilejaŭ." -#: libraries/messages.inc.php:710 server_privileges.php:1296 +#: libraries/messages.inc.php:706 server_privileges.php:1296 msgid "The privileges were reloaded successfully." msgstr "Pryvilei byli paśpiachova pierazahružanyja." -#: libraries/messages.inc.php:712 libraries/server_links.inc.php:80 +#: libraries/messages.inc.php:708 libraries/server_links.inc.php:80 msgid "Processes" msgstr "Pracesy" -#: libraries/messages.inc.php:714 main.php:187 +#: libraries/messages.inc.php:710 main.php:187 msgid "Protocol version" msgstr "Versija pratakołu" -#: libraries/messages.inc.php:715 +#: libraries/messages.inc.php:711 msgid "Put fields names in the first row" msgstr "Paznačyć nazvy paloŭ u pieršym radku" -#: libraries/messages.inc.php:720 server_synchronize.php:1003 +#: libraries/messages.inc.php:716 server_synchronize.php:1003 msgid "The following queries have been executed:" msgstr "" -#: libraries/messages.inc.php:721 server_status.php:251 +#: libraries/messages.inc.php:717 server_status.php:251 msgid "Query cache" msgstr "Keš zapytaŭ" -#: libraries/messages.inc.php:722 libraries/navigation_header.inc.php:80 +#: libraries/messages.inc.php:718 libraries/navigation_header.inc.php:80 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 setup/lib/messages.inc.php:122 msgid "Query window" msgstr "Akno zapytu" -#: libraries/messages.inc.php:725 querywindow.php:109 querywindow.php:217 +#: libraries/messages.inc.php:721 querywindow.php:109 querywindow.php:217 msgid "SQL history" msgstr "Historyja SQL" -#: libraries/messages.inc.php:726 server_status.php:490 +#: libraries/messages.inc.php:722 server_status.php:490 #, php-format msgid "" "Query statistics: Since its startup, %s queries have been sent to the " @@ -4811,135 +4811,135 @@ msgid "" msgstr "" "Statystyka zapytaŭ: Z momantu zapusku %s zapytaŭ było adpraŭlena na server." -#: libraries/messages.inc.php:728 server_status.php:554 +#: libraries/messages.inc.php:724 server_status.php:554 msgid "Query type" msgstr "Typ zapytu" -#: libraries/messages.inc.php:729 libraries/sql_query_form.lib.php:381 +#: libraries/messages.inc.php:725 libraries/sql_query_form.lib.php:381 msgid "Do not overwrite this query from outside the window" msgstr "Nie pierazapisvajcie hety zapyt u inšych voknach" -#: libraries/messages.inc.php:732 tbl_operations.php:663 +#: libraries/messages.inc.php:728 tbl_operations.php:663 msgid "Rebuild" msgstr "Pierabudavać" -#: libraries/messages.inc.php:733 server_status.php:394 +#: libraries/messages.inc.php:729 server_status.php:394 msgid "Received" msgstr "Atrymana" -#: libraries/messages.inc.php:734 pmd_pdf.php:89 +#: libraries/messages.inc.php:730 pmd_pdf.php:89 msgid "recommended" msgstr "rekamendavany" -#: libraries/messages.inc.php:736 tbl_operations.php:702 +#: libraries/messages.inc.php:732 tbl_operations.php:702 msgid "Check referential integrity:" msgstr "Pravieryć cełasnaść dadzienych:" -#: libraries/messages.inc.php:740 pdf_schema.php:1032 pdf_schema.php:1141 +#: libraries/messages.inc.php:736 pdf_schema.php:1032 pdf_schema.php:1141 msgid "Relational schema" msgstr "Relacyjnaja schiema" -#: libraries/messages.inc.php:744 tbl_relation.php:399 +#: libraries/messages.inc.php:740 tbl_relation.php:399 msgid "Relations" msgstr "Suviazi" -#: libraries/messages.inc.php:745 tbl_structure.php:507 tbl_structure.php:509 +#: libraries/messages.inc.php:741 tbl_structure.php:507 tbl_structure.php:509 msgid "Relation view" msgstr "Prahlad zaležnaściaŭ" -#: libraries/messages.inc.php:746 server_privileges.php:1246 +#: libraries/messages.inc.php:742 server_privileges.php:1246 msgid "Reloading the privileges" msgstr "Pierazahruzić pryvilei" -#: libraries/messages.inc.php:747 navigation.php:66 navigation.php:67 +#: libraries/messages.inc.php:743 navigation.php:66 navigation.php:67 #: navigation.php:70 msgid "Reload navigation frame" msgstr "" -#: libraries/messages.inc.php:748 pmd_general.php:80 +#: libraries/messages.inc.php:744 pmd_general.php:80 msgid "Reload" msgstr "Abnavić" -#: libraries/messages.inc.php:749 libraries/server_synchronize.lib.php:1345 +#: libraries/messages.inc.php:745 libraries/server_synchronize.lib.php:1345 #: libraries/server_synchronize.lib.php:1371 msgid "Remote server" msgstr "" -#: libraries/messages.inc.php:750 +#: libraries/messages.inc.php:746 msgid "Remove CRLF characters within fields" msgstr "" -#: libraries/messages.inc.php:751 tbl_operations.php:676 +#: libraries/messages.inc.php:747 tbl_operations.php:676 msgid "Remove partitioning" msgstr "Skasavać padzieł na častki" -#: libraries/messages.inc.php:752 server_privileges.php:1575 +#: libraries/messages.inc.php:748 server_privileges.php:1575 msgid "Remove selected users" msgstr "Vydalić vybranych karystalnikaŭ" -#: libraries/messages.inc.php:755 tbl_operations.php:338 +#: libraries/messages.inc.php:751 tbl_operations.php:338 msgid "Rename table to" msgstr "Pierajmienavać tablicu ŭ" -#: libraries/messages.inc.php:756 view_operations.php:93 +#: libraries/messages.inc.php:752 view_operations.php:93 msgid "Rename view to" msgstr "" -#: libraries/messages.inc.php:757 tbl_operations.php:664 +#: libraries/messages.inc.php:753 tbl_operations.php:664 msgid "Repair" msgstr "Adramantavać" -#: libraries/messages.inc.php:759 +#: libraries/messages.inc.php:755 msgid "Replace NULL by" msgstr "Zamianiać NULL na" -#: libraries/messages.inc.php:760 +#: libraries/messages.inc.php:756 msgid "Replace table data with file" msgstr "Zamianić dadzienyja tablicy dadzienymi z fajła" -#: libraries/messages.inc.php:761 server_replication.php:228 +#: libraries/messages.inc.php:757 server_replication.php:228 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: libraries/messages.inc.php:762 libraries/replication_gui.lib.php:236 +#: libraries/messages.inc.php:758 libraries/replication_gui.lib.php:236 #: server_replication.php:194 msgid "Add slave replication user" msgstr "" -#: libraries/messages.inc.php:763 server_replication.php:74 +#: libraries/messages.inc.php:759 server_replication.php:74 #, php-format msgid "Master server changed succesfully to %s" msgstr "" -#: libraries/messages.inc.php:764 server_replication.php:182 +#: libraries/messages.inc.php:760 server_replication.php:182 msgid "This server is configured as master in a replication process." msgstr "" -#: libraries/messages.inc.php:765 server_replication.php:322 +#: libraries/messages.inc.php:761 server_replication.php:322 msgid "Control slave:" msgstr "" -#: libraries/messages.inc.php:766 server_replication.php:65 +#: libraries/messages.inc.php:762 server_replication.php:65 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: libraries/messages.inc.php:767 server_replication.php:58 +#: libraries/messages.inc.php:763 server_replication.php:58 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: libraries/messages.inc.php:768 server_replication.php:221 +#: libraries/messages.inc.php:764 server_replication.php:221 msgid "Replicate all databases; Ignore:" msgstr "" -#: libraries/messages.inc.php:769 server_replication.php:222 +#: libraries/messages.inc.php:765 server_replication.php:222 msgid "Ignore all databases; Replicate:" msgstr "" -#: libraries/messages.inc.php:770 server_replication.php:218 +#: libraries/messages.inc.php:766 server_replication.php:218 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -4948,121 +4948,121 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: libraries/messages.inc.php:771 server_replication.php:217 +#: libraries/messages.inc.php:767 server_replication.php:217 msgid "Master configuration" msgstr "" -#: libraries/messages.inc.php:772 server_replication.php:181 +#: libraries/messages.inc.php:768 server_replication.php:181 #: server_replication.php:209 msgid "Master replication" msgstr "" -#: libraries/messages.inc.php:774 server_replication.php:230 +#: libraries/messages.inc.php:770 server_replication.php:230 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: libraries/messages.inc.php:775 server_replication.php:225 +#: libraries/messages.inc.php:771 server_replication.php:225 msgid "Please select databases:" msgstr "" -#: libraries/messages.inc.php:776 server_replication.php:210 +#: libraries/messages.inc.php:772 server_replication.php:210 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:188 +#: libraries/messages.inc.php:773 libraries/replication_gui.lib.php:188 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/messages.inc.php:778 server_replication.php:187 +#: libraries/messages.inc.php:774 server_replication.php:187 msgid "Show connected slaves" msgstr "" -#: libraries/messages.inc.php:779 libraries/messages.inc.php:885 +#: libraries/messages.inc.php:775 libraries/messages.inc.php:881 #: server_replication.php:184 server_status.php:281 #, fuzzy msgid "Show master status" msgstr "Pakazać stan zaležnych serveraŭ" -#: libraries/messages.inc.php:780 server_replication.php:334 +#: libraries/messages.inc.php:776 server_replication.php:334 msgid "Skipping error(s) might lead into unsynchronized master and slave!" msgstr "" -#: libraries/messages.inc.php:781 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:51 #: server_replication.php:347 msgid "Change or reconfigure master server" msgstr "" -#: libraries/messages.inc.php:782 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:778 libraries/replication_gui.lib.php:51 msgid "Slave configuration" msgstr "" -#: libraries/messages.inc.php:783 server_replication.php:305 +#: libraries/messages.inc.php:779 server_replication.php:305 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: libraries/messages.inc.php:784 server_replication.php:332 +#: libraries/messages.inc.php:780 server_replication.php:332 msgid "Error management:" msgstr "" -#: libraries/messages.inc.php:785 server_replication.php:328 +#: libraries/messages.inc.php:781 server_replication.php:328 #, php-format msgid "IO Thread %s only" msgstr "" -#: libraries/messages.inc.php:786 server_replication.php:296 +#: libraries/messages.inc.php:782 server_replication.php:296 msgid "Slave IO Thread not running!" msgstr "" -#: libraries/messages.inc.php:787 server_replication.php:355 +#: libraries/messages.inc.php:783 server_replication.php:355 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/messages.inc.php:788 server_replication.php:326 +#: libraries/messages.inc.php:784 server_replication.php:326 msgid "Reset slave" msgstr "" -#: libraries/messages.inc.php:789 server_replication.php:308 +#: libraries/messages.inc.php:785 server_replication.php:308 msgid "See slave status table" msgstr "" -#: libraries/messages.inc.php:790 server_replication.php:336 +#: libraries/messages.inc.php:786 server_replication.php:336 msgid "Skip current error" msgstr "" -#: libraries/messages.inc.php:791 server_replication.php:340 +#: libraries/messages.inc.php:787 server_replication.php:340 msgid "errors." msgstr "" -#: libraries/messages.inc.php:792 server_replication.php:337 +#: libraries/messages.inc.php:788 server_replication.php:337 msgid "Skip next" msgstr "" -#: libraries/messages.inc.php:793 server_replication.php:248 +#: libraries/messages.inc.php:789 server_replication.php:248 msgid "Slave replication" msgstr "" -#: libraries/messages.inc.php:794 server_replication.php:293 +#: libraries/messages.inc.php:790 server_replication.php:293 msgid "Slave SQL Thread not running!" msgstr "" -#: libraries/messages.inc.php:795 server_replication.php:327 +#: libraries/messages.inc.php:791 server_replication.php:327 #, php-format msgid "SQL Thread %s only" msgstr "" -#: libraries/messages.inc.php:796 +#: libraries/messages.inc.php:792 #, php-format msgid "" "This MySQL server works as %s in replication process. For further " @@ -5070,158 +5070,158 @@ msgid "" "\"#replication\">replication section." msgstr "" -#: libraries/messages.inc.php:797 +#: libraries/messages.inc.php:793 msgid "Master status" msgstr "" -#: libraries/messages.inc.php:798 server_status.php:721 +#: libraries/messages.inc.php:794 server_status.php:721 msgid "Replication status" msgstr "" -#: libraries/messages.inc.php:799 +#: libraries/messages.inc.php:795 msgid "Slave status" msgstr "" -#: libraries/messages.inc.php:800 server_replication.php:311 +#: libraries/messages.inc.php:796 server_replication.php:311 msgid "Synchronize databases with master" msgstr "" -#: libraries/messages.inc.php:801 server_replication.php:71 +#: libraries/messages.inc.php:797 server_replication.php:71 msgid "Unable to change master" msgstr "" -#: libraries/messages.inc.php:802 server_replication.php:51 +#: libraries/messages.inc.php:798 server_replication.php:51 msgid "Unknown error" msgstr "" -#: libraries/messages.inc.php:803 main.php:163 pdf_pages.php:344 +#: libraries/messages.inc.php:799 main.php:163 pdf_pages.php:344 #: setup/lib/FormDisplay.tpl.php:216 tbl_change.php:1175 msgid "Reset" msgstr "Skinuć" -#: libraries/messages.inc.php:804 server_privileges.php:591 +#: libraries/messages.inc.php:800 server_privileges.php:591 msgid "Resource limits" msgstr "Abmiežavańni resursaŭ" -#: libraries/messages.inc.php:805 tbl_change.php:1209 +#: libraries/messages.inc.php:801 tbl_change.php:1209 #, php-format msgid "Restart insertion with %s rows" msgstr "Pačać ustaŭku znoŭ z %s-ha radku" -#: libraries/messages.inc.php:807 server_privileges.php:1578 +#: libraries/messages.inc.php:803 server_privileges.php:1578 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Anulavać usie aktyŭnyja pryvilei karystalnikaŭ i paśla vydalić ich." -#: libraries/messages.inc.php:808 server_privileges.php:1176 +#: libraries/messages.inc.php:804 server_privileges.php:1176 #, php-format msgid "You have revoked the privileges for %s" msgstr "Vy anulavali pryvilei dla %s" -#: libraries/messages.inc.php:809 server_privileges.php:1333 +#: libraries/messages.inc.php:805 server_privileges.php:1333 msgid "Revoke" msgstr "Anulavać" -#: libraries/messages.inc.php:810 libraries/mysql_charsets.lib.php:280 +#: libraries/messages.inc.php:806 libraries/mysql_charsets.lib.php:280 msgid "Romanian" msgstr "Rumynskaja" -#: libraries/messages.inc.php:813 tbl_printview.php:404 tbl_structure.php:786 +#: libraries/messages.inc.php:809 tbl_printview.php:404 tbl_structure.php:786 msgid "Row length" msgstr "Daŭžynia radka" -#: libraries/messages.inc.php:815 tbl_printview.php:414 tbl_structure.php:794 +#: libraries/messages.inc.php:811 tbl_printview.php:414 tbl_structure.php:794 msgid " Row size " msgstr " Pamier radka " -#: libraries/messages.inc.php:821 tbl_printview.php:366 tbl_structure.php:726 +#: libraries/messages.inc.php:817 tbl_printview.php:366 tbl_structure.php:726 msgid "Row Statistics" msgstr "Statystyka radku" -#: libraries/messages.inc.php:822 +#: libraries/messages.inc.php:818 #, php-format msgid "running on %s" msgstr "na %s" -#: libraries/messages.inc.php:824 libraries/sql_query_form.lib.php:223 +#: libraries/messages.inc.php:820 libraries/sql_query_form.lib.php:223 #, php-format msgid "Run SQL query/queries on server %s" msgstr "Vykanać SQL-zapyt(y) na servery %s" -#: libraries/messages.inc.php:825 libraries/sql_query_form.lib.php:240 +#: libraries/messages.inc.php:821 libraries/sql_query_form.lib.php:240 #: libraries/sql_query_form.lib.php:265 #, php-format msgid "Run SQL query/queries on database %s" msgstr "Vykanać SQL-zapyt(y) na bazie dadzienych %s" -#: libraries/messages.inc.php:826 libraries/mysql_charsets.lib.php:337 +#: libraries/messages.inc.php:822 libraries/mysql_charsets.lib.php:337 msgid "Russian" msgstr "Rasiejskaja" -#: libraries/messages.inc.php:829 pmd_general.php:68 +#: libraries/messages.inc.php:825 pmd_general.php:68 msgid "Save position" msgstr "Zachavać raźmiaščeńnie tablic" -#: libraries/messages.inc.php:830 libraries/tbl_properties.inc.php:776 +#: libraries/messages.inc.php:826 libraries/tbl_properties.inc.php:776 #: pdf_pages.php:484 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:214 setup/lib/FormDisplay.tpl.php:215 #: tbl_change.php:1126 tbl_indexes.php:248 tbl_relation.php:566 msgid "Save" msgstr "Zachavać" -#: libraries/messages.inc.php:831 +#: libraries/messages.inc.php:827 msgid "The scale factor is too small to fit the schema on one page" msgstr "Maštab zamały dla taho, kab schiema zajmała ŭsiu staronku" -#: libraries/messages.inc.php:843 main.php:298 +#: libraries/messages.inc.php:839 main.php:298 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "Kanfihuracyjnamu fajłu zaraz patrebnaja sakretnaja fraza (blowfish_secret)." -#: libraries/messages.inc.php:844 navigation.php:353 navigation.php:516 +#: libraries/messages.inc.php:840 navigation.php:353 navigation.php:516 msgid "Please select a database" msgstr "Kali łaska, vybierycie bazu dadzienych" -#: libraries/messages.inc.php:846 server_binlog.php:120 +#: libraries/messages.inc.php:842 server_binlog.php:120 msgid "Select binary log to view" msgstr "Vyłučycie dvajkovy łog dla prahladu" -#: libraries/messages.inc.php:847 tbl_select.php:270 +#: libraries/messages.inc.php:843 tbl_select.php:270 msgid "Select fields (at least one):" msgstr "Vybrać pali (prynamsi adno):" -#: libraries/messages.inc.php:851 pdf_pages.php:320 +#: libraries/messages.inc.php:847 pdf_pages.php:320 msgid "Select Tables" msgstr "Vybierycie tablicu(y)" -#: libraries/messages.inc.php:853 server_status.php:404 +#: libraries/messages.inc.php:849 server_status.php:404 msgid "Sent" msgstr "Adpraŭlena" -#: libraries/messages.inc.php:857 libraries/select_server.lib.php:45 +#: libraries/messages.inc.php:853 libraries/select_server.lib.php:45 #: setup/frames/index.inc.php:97 setup/lib/messages.inc.php:115 msgid "Servers" msgstr "Servery" -#: libraries/messages.inc.php:858 server_status.php:255 +#: libraries/messages.inc.php:854 server_status.php:255 msgid "Delayed inserts" msgstr "Adkładzienyja ŭstaŭki" -#: libraries/messages.inc.php:859 server_status.php:46 +#: libraries/messages.inc.php:855 server_status.php:46 msgid "Runtime Information" msgstr "Biahučaja infarmacyja" -#: libraries/messages.inc.php:860 server_status.php:350 +#: libraries/messages.inc.php:856 server_status.php:350 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Hety server MySQL pracuje %s. Jon byŭ zapuščany %s." -#: libraries/messages.inc.php:861 libraries/server_links.inc.php:53 +#: libraries/messages.inc.php:857 libraries/server_links.inc.php:53 #: server_engines.php:112 server_engines.php:116 server_status.php:304 #: test/theme.php:105 msgid "Variables" msgstr "Źmiennyja" -#: libraries/messages.inc.php:862 server_status.php:383 +#: libraries/messages.inc.php:858 server_status.php:383 msgid "" "Server traffic: These tables show the network traffic statistics of " "this MySQL server since its startup." @@ -5229,11 +5229,11 @@ msgstr "" "Trafik servera: Hetyja tablicy pakazvajuć statystyku sietkavaha trafiku " "hetaha servera MySQL ad momantu jahonaha zapusku." -#: libraries/messages.inc.php:863 server_variables.php:35 +#: libraries/messages.inc.php:859 server_variables.php:35 msgid "Server variables and settings" msgstr "Nałady i źmiennyja servera" -#: libraries/messages.inc.php:865 main.php:290 +#: libraries/messages.inc.php:861 main.php:290 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -5241,7 +5241,7 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: libraries/messages.inc.php:866 +#: libraries/messages.inc.php:862 msgid "" "Cannot start session without errors, please check errors given in your PHP " "and/or webserver log file and configure your PHP installation properly." @@ -5250,11 +5250,11 @@ msgstr "" "vašym łogu PHP i, mahčyma, taksama ŭ łogu web-servera i skanfihurujcie PHP " "pravilna." -#: libraries/messages.inc.php:867 server_variables.php:55 +#: libraries/messages.inc.php:863 server_variables.php:55 msgid "Session value" msgstr "Značeńnie sesii" -#: libraries/messages.inc.php:868 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:864 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 " @@ -5266,44 +5266,44 @@ msgstr "" "słeš (\"\\\") abo apostraf (\"'\") siarod hetych značeńniaŭ, pastaŭcie " "pierad imi zvarotny słeš (naprykład, '\\\\xyz' abo 'a\\'b')." -#: libraries/messages.inc.php:876 server_binlog.php:192 server_binlog.php:195 +#: libraries/messages.inc.php:872 server_binlog.php:192 server_binlog.php:195 #: server_processlist.php:49 server_processlist.php:51 msgid "Show Full Queries" msgstr "Pakazać poŭnyja zapyty" -#: libraries/messages.inc.php:878 pmd_general.php:64 +#: libraries/messages.inc.php:874 pmd_general.php:64 msgid "Show/Hide left menu" msgstr "Pakazać/schavać meniu źleva" -#: libraries/messages.inc.php:880 sql.php:513 +#: libraries/messages.inc.php:876 sql.php:513 msgid "Showing as PHP code" msgstr "U vyhladzie PHP-kodu" -#: libraries/messages.inc.php:882 sql.php:516 tbl_replace.php:360 +#: libraries/messages.inc.php:878 sql.php:516 tbl_replace.php:360 msgid "Showing SQL query" msgstr "U vyhladzie SQL-zapytu" -#: libraries/messages.inc.php:883 tbl_change.php:1132 +#: libraries/messages.inc.php:879 tbl_change.php:1132 msgid "Show insert query" msgstr "" -#: libraries/messages.inc.php:886 server_status.php:273 +#: libraries/messages.inc.php:882 server_status.php:273 msgid "Show open tables" msgstr "Pakazać adkrytyja tablicy" -#: libraries/messages.inc.php:887 main.php:219 +#: libraries/messages.inc.php:883 main.php:219 msgid "Show PHP information" msgstr "Pakazać infarmacyju pra PHP" -#: libraries/messages.inc.php:889 server_status.php:278 +#: libraries/messages.inc.php:885 server_status.php:278 msgid "Show slave hosts" msgstr "Pakazać zaležnyja servery" -#: libraries/messages.inc.php:890 server_status.php:284 +#: libraries/messages.inc.php:886 server_status.php:284 msgid "Show slave status" msgstr "Pakazać stan zaležnych serveraŭ" -#: libraries/messages.inc.php:891 +#: libraries/messages.inc.php:887 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -5313,12 +5313,12 @@ msgstr "" "jakija pieravysili značeńnie binlog_cache_size i vykarystoŭvali časovy fajł " "dla zachoŭvańnia vyrazaŭ tranzakcyi." -#: libraries/messages.inc.php:892 +#: libraries/messages.inc.php:888 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Kolkaść tranzakcyjaŭ, jakija vykarystoŭvali časovy dvajkovy keš zapytaŭ." -#: libraries/messages.inc.php:893 +#: libraries/messages.inc.php:889 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -5330,11 +5330,11 @@ msgstr "" "pavialičyć značeńnie tmp_table_size, kab časovyja tablicy zachoŭvalisia ŭ " "pamiaci, a nie na dysku." -#: libraries/messages.inc.php:894 +#: libraries/messages.inc.php:890 msgid "How many temporary files mysqld has created." msgstr "Kolkaść časovych fajłaŭ, stvoranych mysqld." -#: libraries/messages.inc.php:895 +#: libraries/messages.inc.php:891 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -5342,7 +5342,7 @@ msgstr "" "Kolkaść časovych tablic, raźmieščanych u pamiaci, jakija byli aŭtamatyčna " "stvoranyja serveram padčas vykanańnia vyrazaŭ." -#: libraries/messages.inc.php:896 +#: libraries/messages.inc.php:892 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -5350,7 +5350,7 @@ msgstr "" "Kolkaść radkoŭ, zapisanych z INSERT DELAYED, z-za jakich adbylisia peŭnyja " "pamyłki (peŭna, dublavanyja klučy)." -#: libraries/messages.inc.php:897 +#: libraries/messages.inc.php:893 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -5359,23 +5359,23 @@ msgstr "" "Kožnaja tablica, na jakoj vykonvajecca INSERT DELAYED atrymlivaje svoj " "ułasny patok." -#: libraries/messages.inc.php:898 +#: libraries/messages.inc.php:894 msgid "The number of INSERT DELAYED rows written." msgstr "Kolkaść zapisanych INSERT DELAYED radkoŭ." -#: libraries/messages.inc.php:899 +#: libraries/messages.inc.php:895 msgid "The number of executed FLUSH statements." msgstr "Kolkaść vykananych FLUSH-vyrazaŭ." -#: libraries/messages.inc.php:900 +#: libraries/messages.inc.php:896 msgid "The number of internal COMMIT statements." msgstr "Kolkaść unutranych COMMIT-vyrazaŭ." -#: libraries/messages.inc.php:901 +#: libraries/messages.inc.php:897 msgid "The number of times a row was deleted from a table." msgstr "Kolkaść razoŭ vydaleńnia radka z tablicy." -#: libraries/messages.inc.php:902 +#: libraries/messages.inc.php:898 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -5385,7 +5385,7 @@ msgstr "" "viedaje jana tablicu z dadzienym imiem. Heta nazyvajecca vyśviatleńniem. " "Handler_discover pakazvaje kolkaść vyśviatleńniaŭ tablic." -#: libraries/messages.inc.php:903 +#: libraries/messages.inc.php:899 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -5396,7 +5396,7 @@ msgstr "" "skanavańniaŭ; naprykład, SELECT col1 FROM foo, uličvajučy, što col1 " "indeksavanaja." -#: libraries/messages.inc.php:904 +#: libraries/messages.inc.php:900 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -5405,7 +5405,7 @@ msgstr "" "vialikaja, heta dobraja prykmieta taho, što zapyty i tablicy dobra " "indeksavanyja." -#: libraries/messages.inc.php:905 +#: libraries/messages.inc.php:901 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -5415,7 +5415,7 @@ msgstr "" "pavialičvajecca, kali vykonvajecca zapyt na indeksavanuju kalonku z šeraham " "abmiežavańniaŭ abo kali adbyvajecca skanavańnie indeksaŭ." -#: libraries/messages.inc.php:906 +#: libraries/messages.inc.php:902 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -5423,7 +5423,7 @@ msgstr "" "Kolkaść zapytaŭ čytańnia papiaredni radok u klučavym paradku. Hety metad " "čytańnia vykarystoŭvajecca pieravažna dla aptymizacyi ORDER BY ... DESC." -#: libraries/messages.inc.php:907 +#: libraries/messages.inc.php:903 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -5436,7 +5436,7 @@ msgstr "" "całkam abo vykonvajucca ab'jadnańni, jakija niapravilna vykarystoŭvajuć " "klučy." -#: libraries/messages.inc.php:908 +#: libraries/messages.inc.php:904 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -5448,37 +5448,37 @@ msgstr "" "aznačaje, što tablicy indeksavanyja niapravilna abo zapyty nie napisanyja " "tak, kab vykarystoŭvać pieravahi indeksaŭ." -#: libraries/messages.inc.php:909 +#: libraries/messages.inc.php:905 msgid "The number of internal ROLLBACK statements." msgstr "Kolkaść unutranych vyrazaŭ ROLLBACK." -#: libraries/messages.inc.php:910 +#: libraries/messages.inc.php:906 msgid "The number of requests to update a row in a table." msgstr "Kolkaść zapytaŭ abnaŭleńnia radka ŭ tablicy." -#: libraries/messages.inc.php:911 +#: libraries/messages.inc.php:907 msgid "The number of requests to insert a row in a table." msgstr "Kolkaść zapytaŭ ustaŭki radka ŭ tablicu." -#: libraries/messages.inc.php:912 +#: libraries/messages.inc.php:908 msgid "The number of pages containing data (dirty or clean)." msgstr "" "Kolkaść staronak, jakija ŭtrymlivajuć dadzienyja (źmienienych abo " "niaźmienienych)." -#: libraries/messages.inc.php:913 +#: libraries/messages.inc.php:909 msgid "The number of pages currently dirty." msgstr "Kolkaść źmienienych staronak." -#: libraries/messages.inc.php:914 +#: libraries/messages.inc.php:910 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Kolkaść staronak bufernaha pułu, na jakija byŭ atrymany zapyt na skid." -#: libraries/messages.inc.php:915 +#: libraries/messages.inc.php:911 msgid "The number of free pages." msgstr "Kolkaść volnych staronak." -#: libraries/messages.inc.php:916 +#: libraries/messages.inc.php:912 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -5488,7 +5488,7 @@ msgstr "" "staronki, jakija ŭ biahučy momant čytajucca ci zapisvajucca abo jakija nia " "mohuć być skinutyja ci vydalenyja z-za peŭnaj pryčyny." -#: libraries/messages.inc.php:917 +#: libraries/messages.inc.php:913 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -5501,11 +5501,11 @@ msgstr "" "Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data." -#: libraries/messages.inc.php:918 +#: libraries/messages.inc.php:914 msgid "Total size of buffer pool, in pages." msgstr "Ahulny pamier bufernaha pułu, u staronkach." -#: libraries/messages.inc.php:919 +#: libraries/messages.inc.php:915 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -5514,7 +5514,7 @@ msgstr "" "adbyvajecca, kali zapyt prahladaje značnuju častku tablicy, ale ŭ vypadkovym " "paradku." -#: libraries/messages.inc.php:920 +#: libraries/messages.inc.php:916 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -5522,11 +5522,11 @@ msgstr "" "Kolkaść paśladoŭnych papiarednich čytańniaŭ, zroblenych InnoDB. Heta " "adbyvajecca, kali InnoDB vykonvaje paśladoŭny poŭny prahlad tablicy." -#: libraries/messages.inc.php:921 +#: libraries/messages.inc.php:917 msgid "The number of logical read requests InnoDB has done." msgstr "Kolkaść lagičnych zapytaŭ čytańnia, zroblenych InnoDB." -#: libraries/messages.inc.php:922 +#: libraries/messages.inc.php:918 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -5534,7 +5534,7 @@ msgstr "" "Kolkaść lagičnych čytańniaŭ, jakija InnoDB nie zmahła adnavić z bufernaha " "pułu, a tamu zrabiła adnastaronkavaje čytańnie." -#: libraries/messages.inc.php:923 +#: libraries/messages.inc.php:919 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -5548,55 +5548,55 @@ msgstr "" "kamputar padličvaje kolkaść takich čakańniaŭ. Kali pamier buferu byŭ " "vyznačany pravilna, hetaje značeńnie musić być maleńkim." -#: libraries/messages.inc.php:924 +#: libraries/messages.inc.php:920 msgid "The number writes done to the InnoDB buffer pool." msgstr "Kolkaść zapisaŭ, zroblenych u buferny puł InnoDB." -#: libraries/messages.inc.php:925 +#: libraries/messages.inc.php:921 msgid "The number of fsync() operations so far." msgstr "Kolkaść aperacyjaŭ fsync() na biahučy momant." -#: libraries/messages.inc.php:926 +#: libraries/messages.inc.php:922 msgid "The current number of pending fsync() operations." msgstr "Biahučaja kolkaść aperacyjaŭ fsync(), jakija čakajuć vykanańnia." -#: libraries/messages.inc.php:927 +#: libraries/messages.inc.php:923 msgid "The current number of pending reads." msgstr "Biahučaja kolkaść čytańniaŭ, jakija čakajuć vykanańnia." -#: libraries/messages.inc.php:928 +#: libraries/messages.inc.php:924 msgid "The current number of pending writes." msgstr "Biahučaja kolkaść zapisaŭ, jakija čakajuć vykanańnia." -#: libraries/messages.inc.php:929 +#: libraries/messages.inc.php:925 msgid "The amount of data read so far, in bytes." msgstr "Kolkaść pračytanych na biahučy momant dadzienych, u bajtach." -#: libraries/messages.inc.php:930 +#: libraries/messages.inc.php:926 msgid "The total number of data reads." msgstr "Ahulnaja kolkaść čytańniaŭ dadzienych." -#: libraries/messages.inc.php:931 +#: libraries/messages.inc.php:927 msgid "The total number of data writes." msgstr "Ahulnaja kolkaść zapisaŭ dadzienych." -#: libraries/messages.inc.php:932 +#: libraries/messages.inc.php:928 msgid "The amount of data written so far, in bytes." msgstr "Kolkaść zapisanych na biahučy momant dadzienych, u bajtach." -#: libraries/messages.inc.php:933 +#: libraries/messages.inc.php:929 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Kolkaść padvojnych zapisaŭ, jakija byli vykananyja, i kolkaść staronak, " "jakija byli zapisanyja dla hetaj mety." -#: libraries/messages.inc.php:934 +#: libraries/messages.inc.php:930 msgid "The number of doublewrite operations that have been performed." msgstr "" "Kolkaść padvojnych zapisaŭ, jakija byli vykananyja, i kolkaść staronak, " "jakija byli zapisanyja dla hetaj mety." -#: libraries/messages.inc.php:935 +#: libraries/messages.inc.php:931 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -5604,35 +5604,35 @@ msgstr "" "Kolkaść vypadkaŭ čakańnia z-za taho, što bufer łogu byŭ zanadta mały, i tamu " "daviałosia čakać, pakul jon nie ačyścicca." -#: libraries/messages.inc.php:936 +#: libraries/messages.inc.php:932 msgid "The number of log write requests." msgstr "Kolkaść zapisaŭ u łog." -#: libraries/messages.inc.php:937 +#: libraries/messages.inc.php:933 msgid "The number of physical writes to the log file." msgstr "Kolkaść fizyčna vykananych zapisaŭ u łog-fajł." -#: libraries/messages.inc.php:938 +#: libraries/messages.inc.php:934 msgid "The number of fsync() writes done to the log file." msgstr "Kolkaść synchranizavynych zapisaŭ, zroblenych u łog-fajł." -#: libraries/messages.inc.php:939 +#: libraries/messages.inc.php:935 msgid "The number of pending log file fsyncs." msgstr "Kolkaść synchranizavańniaŭ łog-fajła, jakija čakajuć vykanańnia." -#: libraries/messages.inc.php:940 +#: libraries/messages.inc.php:936 msgid "Pending log file writes." msgstr "Kolkaść zapisaŭ u łog-fajł, jakija čakajuć vykanańnia." -#: libraries/messages.inc.php:941 +#: libraries/messages.inc.php:937 msgid "The number of bytes written to the log file." msgstr "Kolkaść bajtaŭ, zapisanych u łog-fajł." -#: libraries/messages.inc.php:942 +#: libraries/messages.inc.php:938 msgid "The number of pages created." msgstr "Kolkaść stvoranych staronak." -#: libraries/messages.inc.php:943 +#: libraries/messages.inc.php:939 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -5641,54 +5641,54 @@ msgstr "" "vymiarajucca ŭ staronkach; pamier staronki dazvalaje chutka pieravieści jaho " "ŭ bajty." -#: libraries/messages.inc.php:944 +#: libraries/messages.inc.php:940 msgid "The number of pages read." msgstr "Kolkaść pračytanych staronak." -#: libraries/messages.inc.php:945 +#: libraries/messages.inc.php:941 msgid "The number of pages written." msgstr "Kolkaść zapisanych staronak." -#: libraries/messages.inc.php:946 +#: libraries/messages.inc.php:942 msgid "The number of row locks currently being waited for." msgstr "" "Kolkaść blakavańniaŭ radkoŭ, čakańnie jakich adbyvajecca na biahučy momant." -#: libraries/messages.inc.php:947 +#: libraries/messages.inc.php:943 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Siaredni čas atrymańnia mahčymaści blakavańnia radku, u milisekundach." -#: libraries/messages.inc.php:948 +#: libraries/messages.inc.php:944 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" "Ahulny čas čakańnia atrymańnia mahčymaści blakavańnia radku, u milisekundach." -#: libraries/messages.inc.php:949 +#: libraries/messages.inc.php:945 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" "Maksymalny čas atramańnia mahčymaści blakavańnia radku, u milisekundach." -#: libraries/messages.inc.php:950 +#: libraries/messages.inc.php:946 msgid "The number of times a row lock had to be waited for." msgstr "Kolkaść razoŭ, kali davodziłasia čakać blakavańnie radku." -#: libraries/messages.inc.php:951 +#: libraries/messages.inc.php:947 msgid "The number of rows deleted from InnoDB tables." msgstr "Kolkaść radkoŭ, vydalenych z tablic InnoDB." -#: libraries/messages.inc.php:952 +#: libraries/messages.inc.php:948 msgid "The number of rows inserted in InnoDB tables." msgstr "Kolkaść radkoŭ, ustaŭlenych u tablicy InnoDB." -#: libraries/messages.inc.php:953 +#: libraries/messages.inc.php:949 msgid "The number of rows read from InnoDB tables." msgstr "Kolkaś radkoŭ, pračytanych z tablic InnoDB." -#: libraries/messages.inc.php:954 +#: libraries/messages.inc.php:950 msgid "The number of rows updated in InnoDB tables." msgstr "Kolkaść radkoŭ, abnoŭlenych u tablicach InnoDB." -#: libraries/messages.inc.php:955 +#: libraries/messages.inc.php:951 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -5696,7 +5696,7 @@ msgstr "" "Kolkaść blokaŭ u kešy klučoŭ, jakija byli źmienienyja, ale jašče nie byli " "skinutyja na dysk. Vykarystoŭvajecca jak značeńnie Not_flushed_key_blocks." -#: libraries/messages.inc.php:956 +#: libraries/messages.inc.php:952 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -5704,7 +5704,7 @@ msgstr "" "Kolkaść niavykarystanych blokaŭ u kešy klučoŭ. Hetaje značeńnie možna " "vykarystoŭvać dla vyznačeńnia stupieni vykarystańnia kešu klučoŭ." -#: libraries/messages.inc.php:957 +#: libraries/messages.inc.php:953 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -5714,11 +5714,11 @@ msgstr "" "stupieńniu peŭnaści śviedčyć pra maksymalnuju za ŭvieś čas kolkaść blokaŭ, " "jakija vykarastoŭvalisia adnačasova." -#: libraries/messages.inc.php:958 +#: libraries/messages.inc.php:954 msgid "The number of requests to read a key block from the cache." msgstr "Kolkaść zapytaŭ na čytańnie bloku klučoŭ z kešu." -#: libraries/messages.inc.php:959 +#: libraries/messages.inc.php:955 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -5728,15 +5728,15 @@ msgstr "" "vialikaje, značeńnie key_buffer_size, vidać, vielmi małoje. Kolkaść " "promachaŭ u keš možna vyličyć jak Key_reads/Key_read_requests." -#: libraries/messages.inc.php:960 +#: libraries/messages.inc.php:956 msgid "The number of requests to write a key block to the cache." msgstr "Kolkaść zapytaŭ na zapis bloku klučoŭ u keš." -#: libraries/messages.inc.php:961 +#: libraries/messages.inc.php:957 msgid "The number of physical writes of a key block to disk." msgstr "Kolkaść fizyčnych zapisaŭ bloku klučoŭ na dysk." -#: libraries/messages.inc.php:962 +#: libraries/messages.inc.php:958 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -5747,11 +5747,11 @@ msgstr "" "Značeńnie pa zmoŭčańni 0 aznačaje, što nivodny zapyt jašče nia byŭ " "zkampilavany." -#: libraries/messages.inc.php:963 +#: libraries/messages.inc.php:959 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Kolkaść radkoŭ dla zapisu, adkładzienych zapytami INSERT DELAYED." -#: libraries/messages.inc.php:964 +#: libraries/messages.inc.php:960 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -5759,36 +5759,36 @@ msgstr "" "Kolkaść tablic, jakija byli adkrytyja. Kali adkrytyja tablicy vialikija, " "značeńnie kešu tablic imavierna vielmi małoje." -#: libraries/messages.inc.php:965 +#: libraries/messages.inc.php:961 msgid "The number of files that are open." msgstr "Kolkaść adkrytych fajłaŭ." -#: libraries/messages.inc.php:966 +#: libraries/messages.inc.php:962 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Kolkaść adkrytych patokaŭ (vykarystoŭvajucca pieravažna dla łahavańnia)." -#: libraries/messages.inc.php:967 +#: libraries/messages.inc.php:963 msgid "The number of tables that are open." msgstr "Kolkaść adkrytych tablic." -#: libraries/messages.inc.php:968 +#: libraries/messages.inc.php:964 msgid "The number of free memory blocks in query cache." msgstr "Kolkaść volnych blokaŭ pamiaci ŭ kešy zapytaŭ." -#: libraries/messages.inc.php:969 +#: libraries/messages.inc.php:965 msgid "The amount of free memory for query cache." msgstr "Kolkaść volnaj pamiaci dla kešu zapytaŭ." -#: libraries/messages.inc.php:970 +#: libraries/messages.inc.php:966 msgid "The number of cache hits." msgstr "Kolkaść zvarotaŭ da kešu." -#: libraries/messages.inc.php:971 +#: libraries/messages.inc.php:967 msgid "The number of queries added to the cache." msgstr "Kolkaść zapytaŭ, jakija byli dadanyja ŭ keš." -#: libraries/messages.inc.php:972 +#: libraries/messages.inc.php:968 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -5801,7 +5801,7 @@ msgstr "" "vykarystoŭvaŭsia najmienš (LRU) dla vyznačeńnia, jakija zapyty treba vydalać " "z kešu." -#: libraries/messages.inc.php:973 +#: libraries/messages.inc.php:969 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -5809,24 +5809,24 @@ msgstr "" "Kolkaść niekešavalnych zapytaŭ (niekešavalnych abo niekešavanych z-za " "značeńnia dyrektyvy query_cache_type)." -#: libraries/messages.inc.php:974 +#: libraries/messages.inc.php:970 msgid "The number of queries registered in the cache." msgstr "Kolkaść zapytaŭ, jakija prysutničajuć u kešy." -#: libraries/messages.inc.php:975 +#: libraries/messages.inc.php:971 msgid "The total number of blocks in the query cache." msgstr "Ahulnaja kolkaść blokaŭ u kešy zapytyŭ." -#: libraries/messages.inc.php:976 +#: libraries/messages.inc.php:972 msgctxt "$strShowStatusReset" msgid "Reset" msgstr "Skinuć statystyku" -#: libraries/messages.inc.php:977 +#: libraries/messages.inc.php:973 msgid "The status of failsafe replication (not yet implemented)." msgstr "Stan abaronienaj ad pamyłak replikacyi (jašče nie realizavanaja)." -#: libraries/messages.inc.php:978 +#: libraries/messages.inc.php:974 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -5834,13 +5834,13 @@ msgstr "" "Kolkaść ab'jadnańniaŭ, jakija nie vykarystoŭviajuć indeksy. Kali hetaje " "značeńnie nia roŭnaje 0, varta pravieryć indeksy ŭ tablicach." -#: libraries/messages.inc.php:979 +#: libraries/messages.inc.php:975 msgid "The number of joins that used a range search on a reference table." msgstr "" "Kolkaść ab'jadnańniaŭ, jakija vykarystoŭvali pošuk pa mascy ŭ metavaj " "tablicy." -#: libraries/messages.inc.php:980 +#: libraries/messages.inc.php:976 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -5849,7 +5849,7 @@ msgstr "" "kluča paśla kožnaha radka. (Kali hetaje značeńnie nia roŭnaje 0, varta " "pravieryć indeksy ŭ tablicach.)" -#: libraries/messages.inc.php:981 +#: libraries/messages.inc.php:977 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -5857,17 +5857,17 @@ msgstr "" "Kolkaść ab'jadnańniaŭ, jakija vykarystoŭvali spałučeńni paloŭ u pieršaj " "tablicy. (Zvyčajna nie krytyčna, navat kali hetaje značeńnie vialikaje.)" -#: libraries/messages.inc.php:982 +#: libraries/messages.inc.php:978 msgid "The number of joins that did a full scan of the first table." msgstr "Kolkaść ab'jadnańniaŭ, jakija praviali poŭny prahlad pieršaj tablicy." -#: libraries/messages.inc.php:983 +#: libraries/messages.inc.php:979 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "Kolkaść časovych tablic, jakija ŭ biahučy momant adkrytyja zaležnym SQL-" "patokam." -#: libraries/messages.inc.php:984 +#: libraries/messages.inc.php:980 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -5875,13 +5875,13 @@ msgstr "" "Ahulnaja (ad zahruzki) kolkaść razoŭ, kali zaležny SQL-patok replikacyi " "paŭtaraŭ tranzakcyi." -#: libraries/messages.inc.php:985 +#: libraries/messages.inc.php:981 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Hetaje značeńnie roŭnaje \"ON\", kali server źjaŭlajecca zaležnym i " "padłučanym da servera, jaki jaho kantraluje." -#: libraries/messages.inc.php:986 +#: libraries/messages.inc.php:982 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -5889,14 +5889,14 @@ msgstr "" "Kolkaść patokaŭ, jakim spatrebiłasia bolš za slow_launch_time sekundaŭ dla " "stvareńnia." -#: libraries/messages.inc.php:987 +#: libraries/messages.inc.php:983 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "Kolkaść zapytaŭ, na vykanantnie jakich spatrebiłasia bolš, čym " "long_query_time sekundaŭ." -#: libraries/messages.inc.php:988 +#: libraries/messages.inc.php:984 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -5906,25 +5906,25 @@ msgstr "" "hetaje značeńnie vialikaje, varta razhledzić pavieličeńnie značeńnia " "systemnaj źmiennaj sort_buffer_size." -#: libraries/messages.inc.php:989 +#: libraries/messages.inc.php:985 msgid "The number of sorts that were done with ranges." msgstr "" "Kolkaść sartavańniaŭ, jakija byli zroblenyja z vykarystańniem niekalkich " "słupkoŭ." -#: libraries/messages.inc.php:990 +#: libraries/messages.inc.php:986 msgid "The number of sorted rows." msgstr "Kolkaść adsartavanych radkoŭ." -#: libraries/messages.inc.php:991 +#: libraries/messages.inc.php:987 msgid "The number of sorts that were done by scanning the table." msgstr "Kolkaść sartavańniaŭ, jakija byli zroblenyja padčas prahladu tablicy." -#: libraries/messages.inc.php:992 +#: libraries/messages.inc.php:988 msgid "The number of times that a table lock was acquired immediately." msgstr "Kolkaść razoŭ, kali blakavańnie tablicy było zroblenaje imhnienna." -#: libraries/messages.inc.php:993 +#: libraries/messages.inc.php:989 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -5936,7 +5936,7 @@ msgstr "" "prablemy z pradukcyjnaściu, varta spačatku aptymizavać zapyty, a paśla abo " "padzialić tablicu abo tablicy, abo vykarystoŭvać replikacyju." -#: libraries/messages.inc.php:994 +#: libraries/messages.inc.php:990 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -5946,11 +5946,11 @@ msgstr "" "jak Threads_created/Connections. Kali hetaje značeńnie pafarbavanaje ŭ " "čyrvony koler, varta pavialičyć značeńnie thread_cache_size." -#: libraries/messages.inc.php:995 +#: libraries/messages.inc.php:991 msgid "The number of currently open connections." msgstr "Kolkaść adkrytych na biahučy momant złučeńniaŭ." -#: libraries/messages.inc.php:996 +#: libraries/messages.inc.php:992 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -5962,74 +5962,74 @@ msgstr "" "thread_cache_size. (Zvyčajna, heta nie daje jakoha-niebudź zaŭvažnaha " "pavieličeńnia pradukcyjnaści, kali prysutničaje dobraja realizacyja patokaŭ.)" -#: libraries/messages.inc.php:997 +#: libraries/messages.inc.php:993 msgid "The number of threads that are not sleeping." msgstr "Kolkaść patokaŭ, jakija nie źjaŭlajucca śpiačymi." -#: libraries/messages.inc.php:999 tbl_printview.php:75 +#: libraries/messages.inc.php:995 tbl_printview.php:75 msgid "Show tables" msgstr "Pakazać tablicy" -#: libraries/messages.inc.php:1000 libraries/sql_query_form.lib.php:396 +#: libraries/messages.inc.php:996 libraries/sql_query_form.lib.php:396 msgid " Show this query here again " msgstr " Pakazać hety zapyt znoŭ " -#: libraries/messages.inc.php:1001 libraries/mysql_charsets.lib.php:217 +#: libraries/messages.inc.php:997 libraries/mysql_charsets.lib.php:217 #: libraries/mysql_charsets.lib.php:342 msgid "Simplified Chinese" msgstr "Kitajskaja sproščanaja" -#: libraries/messages.inc.php:1002 tbl_operations.php:258 +#: libraries/messages.inc.php:998 tbl_operations.php:258 msgid "(singly)" msgstr "(asobna)" -#: libraries/messages.inc.php:1005 libraries/replication_gui.lib.php:52 +#: libraries/messages.inc.php:1001 libraries/replication_gui.lib.php:52 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" msgstr "" -#: libraries/messages.inc.php:1006 libraries/mysql_charsets.lib.php:283 +#: libraries/messages.inc.php:1002 libraries/mysql_charsets.lib.php:283 msgid "Slovak" msgstr "Słavackaja" -#: libraries/messages.inc.php:1007 libraries/mysql_charsets.lib.php:286 +#: libraries/messages.inc.php:1003 libraries/mysql_charsets.lib.php:286 msgid "Slovenian" msgstr "Słavienskaja" -#: libraries/messages.inc.php:1008 pmd_general.php:95 +#: libraries/messages.inc.php:1004 pmd_general.php:95 msgid "Small/Big All" msgstr "Zharnuć/razharnuć adlustravańnie ŭsich tablic" -#: libraries/messages.inc.php:1009 pmd_general.php:91 +#: libraries/messages.inc.php:1005 pmd_general.php:91 msgid "Snap to grid" msgstr "Źviać ź sietkaj" -#: libraries/messages.inc.php:1011 server_synchronize.php:1167 +#: libraries/messages.inc.php:1007 server_synchronize.php:1167 msgid "Socket" msgstr "" -#: libraries/messages.inc.php:1013 server_status.php:259 +#: libraries/messages.inc.php:1009 server_status.php:259 msgid "Sorting" msgstr "Sartavańnie" -#: libraries/messages.inc.php:1015 tbl_printview.php:310 tbl_structure.php:657 +#: libraries/messages.inc.php:1011 tbl_printview.php:310 tbl_structure.php:657 msgid "Space usage" msgstr "Vykarystańnie prastory" -#: libraries/messages.inc.php:1016 libraries/mysql_charsets.lib.php:289 +#: libraries/messages.inc.php:1012 libraries/mysql_charsets.lib.php:289 msgid "Spanish" msgstr "Hišpanskaja" -#: libraries/messages.inc.php:1019 +#: libraries/messages.inc.php:1015 msgid "Export type" msgstr "Typ ekspartu" -#: libraries/messages.inc.php:1020 +#: libraries/messages.inc.php:1016 msgid "Export time in UTC" msgstr "" -#: libraries/messages.inc.php:1021 libraries/sqlparser.lib.php:173 +#: libraries/messages.inc.php:1017 libraries/sqlparser.lib.php:173 msgid "" "There is a chance that you may have found a bug in the SQL parser. Please " "examine your query closely, and check that the quotes are correct and not " @@ -6053,7 +6053,7 @@ msgstr "" "paviedamleńnie pra pamyłku z blokam dadzienych, padadzienych u sekyci CUT " "nižej:" -#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:137 +#: libraries/messages.inc.php:1018 libraries/sqlparser.lib.php:137 msgid "" "There seems to be an error in your SQL query. The MySQL server error output " "below, if there is any, may also help you in diagnosing the problem" @@ -6062,32 +6062,32 @@ msgstr "" "servera MySQL pryviedzienaje nižej, mahčyma, taksama dapamoža vam vyśvietlić " "pryčynu pamyłki" -#: libraries/messages.inc.php:1026 libraries/sqlparser.lib.php:495 +#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:495 msgid "Invalid Identifer" msgstr "Niapravilny identyfikatar" -#: libraries/messages.inc.php:1027 libraries/sqlparser.lib.php:344 +#: libraries/messages.inc.php:1023 libraries/sqlparser.lib.php:344 msgid "Unclosed quote" msgstr "Niezakrytaje dvukośsie" -#: libraries/messages.inc.php:1028 libraries/sqlparser.lib.php:612 +#: libraries/messages.inc.php:1024 libraries/sqlparser.lib.php:612 msgid "Unknown Punctuation String" msgstr "Nieviadomy symbal punktuacyi" -#: libraries/messages.inc.php:1030 server_replication.php:327 +#: libraries/messages.inc.php:1026 server_replication.php:327 #: server_replication.php:328 msgid "Start" msgstr "" -#: libraries/messages.inc.php:1033 tbl_printview.php:369 tbl_structure.php:729 +#: libraries/messages.inc.php:1029 tbl_printview.php:369 tbl_structure.php:729 msgid "Statements" msgstr "Vyrazy" -#: libraries/messages.inc.php:1034 tbl_printview.php:380 tbl_structure.php:741 +#: libraries/messages.inc.php:1030 tbl_printview.php:380 tbl_structure.php:741 msgid "static" msgstr "" -#: libraries/messages.inc.php:1035 server_status.php:388 +#: libraries/messages.inc.php:1031 server_status.php:388 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -6095,42 +6095,42 @@ msgstr "" "Na zahružanym servery bajtavyja ličylniki mohuć pieraskokvać koła, tamu " "statystyka, jakuju pakazvaje MySQL-server, moža być niapravilnaj." -#: libraries/messages.inc.php:1038 server_replication.php:327 +#: libraries/messages.inc.php:1034 server_replication.php:327 #: server_replication.php:328 msgid "Stop" msgstr "" -#: libraries/messages.inc.php:1039 server_engines.php:49 +#: libraries/messages.inc.php:1035 server_engines.php:49 msgid "Storage Engines" msgstr "Mašyny zachavańnia dadzienych" -#: libraries/messages.inc.php:1040 libraries/tbl_properties.inc.php:726 +#: libraries/messages.inc.php:1036 libraries/tbl_properties.inc.php:726 #: server_engines.php:58 tbl_operations.php:353 msgid "Storage Engine" msgstr "Mašyna zachavańnia dadzienych" -#: libraries/messages.inc.php:1042 +#: libraries/messages.inc.php:1038 msgid "CSV for MS Excel" msgstr "CSV dla dadzienych MS Excel" -#: libraries/messages.inc.php:1044 tbl_structure.php:516 tbl_structure.php:518 +#: libraries/messages.inc.php:1040 tbl_structure.php:516 tbl_structure.php:518 msgid "Propose table structure" msgstr "Prapanavanaja struktura tablicy" -#: libraries/messages.inc.php:1045 server_synchronize.php:424 +#: libraries/messages.inc.php:1041 server_synchronize.php:424 #: server_synchronize.php:867 msgid "Structure Difference" msgstr "" -#: libraries/messages.inc.php:1049 server_synchronize.php:265 +#: libraries/messages.inc.php:1045 server_synchronize.php:265 msgid "Structure Synchronization" msgstr "" -#: libraries/messages.inc.php:1050 libraries/sql_query_form.lib.php:462 +#: libraries/messages.inc.php:1046 libraries/sql_query_form.lib.php:462 msgid "Submit" msgstr "Adpravić" -#: libraries/messages.inc.php:1052 main.php:358 +#: libraries/messages.inc.php:1048 main.php:358 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -6139,160 +6139,160 @@ msgstr "" "Na servery zapuščany Suhosin. Kali łaska, źviarniciesia da %sdakumentacyi%s " "dla atrymańnia apisańnia mahčymych prablemaŭ." -#: libraries/messages.inc.php:1054 libraries/mysql_charsets.lib.php:295 +#: libraries/messages.inc.php:1050 libraries/mysql_charsets.lib.php:295 #: libraries/mysql_charsets.lib.php:392 msgid "Swedish" msgstr "Švedzkaja" -#: libraries/messages.inc.php:1060 tbl_operations.php:556 +#: libraries/messages.inc.php:1056 tbl_operations.php:556 msgid "Switch to copied table" msgstr "Pierajści da skapijavanaj tablicy" -#: libraries/messages.inc.php:1061 server_synchronize.php:1213 +#: libraries/messages.inc.php:1057 server_synchronize.php:1213 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." msgstr "" -#: libraries/messages.inc.php:1062 server_synchronize.php:451 +#: libraries/messages.inc.php:1058 server_synchronize.php:451 #: server_synchronize.php:896 msgid "Synchronize Databases" msgstr "" -#: libraries/messages.inc.php:1063 libraries/server_links.inc.php:92 +#: libraries/messages.inc.php:1059 libraries/server_links.inc.php:92 #: server_synchronize.php:1092 server_synchronize.php:1100 msgid "Synchronize" msgstr "" -#: libraries/messages.inc.php:1065 server_synchronize.php:430 +#: libraries/messages.inc.php:1061 server_synchronize.php:430 #: server_synchronize.php:873 msgid "Add column(s)" msgstr "" -#: libraries/messages.inc.php:1066 tbl_create.php:62 +#: libraries/messages.inc.php:1062 tbl_create.php:62 #, php-format msgid "Table %s already exists!" msgstr "Tablica %s užo isnuje!" -#: libraries/messages.inc.php:1067 server_synchronize.php:432 +#: libraries/messages.inc.php:1063 server_synchronize.php:432 #: server_synchronize.php:875 msgid "Alter column(s)" msgstr "" -#: libraries/messages.inc.php:1068 tbl_addfield.php:189 tbl_alter.php:103 +#: libraries/messages.inc.php:1064 tbl_addfield.php:189 tbl_alter.php:103 #: tbl_indexes.php:98 #, php-format msgid "Table %1$s has been altered successfully" msgstr "Tablica %1$s była paśpiachova źmienienaja" -#: libraries/messages.inc.php:1069 server_synchronize.php:434 +#: libraries/messages.inc.php:1065 server_synchronize.php:434 #: server_synchronize.php:877 msgid "Apply index(s)" msgstr "" -#: libraries/messages.inc.php:1071 server_synchronize.php:446 +#: libraries/messages.inc.php:1067 server_synchronize.php:446 #: server_synchronize.php:890 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: libraries/messages.inc.php:1072 tbl_move_copy.php:82 +#: libraries/messages.inc.php:1068 tbl_move_copy.php:82 msgid "The table name is empty!" msgstr "Pustaja nazva tablicy!" -#: libraries/messages.inc.php:1073 tbl_create.php:249 +#: libraries/messages.inc.php:1069 tbl_create.php:249 #, php-format msgid "Table %1$s has been created." msgstr "Tablica %1$s stvoranaja." -#: libraries/messages.inc.php:1076 tbl_operations.php:628 +#: libraries/messages.inc.php:1072 tbl_operations.php:628 #, php-format msgid "Table %s has been flushed" msgstr "Keš tablicy %s byŭ ačyščany" -#: libraries/messages.inc.php:1077 server_synchronize.php:436 +#: libraries/messages.inc.php:1073 server_synchronize.php:436 #: server_synchronize.php:879 msgid "Insert row(s)" msgstr "" -#: libraries/messages.inc.php:1078 libraries/tbl_links.inc.php:107 +#: libraries/messages.inc.php:1074 libraries/tbl_links.inc.php:107 #: libraries/tbl_links.inc.php:140 libraries/tbl_links.inc.php:141 msgid "Table seems to be empty!" msgstr "Tablica — pustaja!" -#: libraries/messages.inc.php:1079 tbl_operations.php:568 +#: libraries/messages.inc.php:1075 tbl_operations.php:568 msgid "Table maintenance" msgstr "Absłuhoŭvańnie tablicy" -#: libraries/messages.inc.php:1080 libraries/tbl_properties.inc.php:618 +#: libraries/messages.inc.php:1076 libraries/tbl_properties.inc.php:618 #: server_synchronize.php:428 server_synchronize.php:871 msgid "Table name" msgstr "Imia tablicy" -#: libraries/messages.inc.php:1081 pdf_schema.php:1116 +#: libraries/messages.inc.php:1077 pdf_schema.php:1116 msgid "Table of contents" msgstr "Źmiest" -#: libraries/messages.inc.php:1082 tbl_operations.php:334 +#: libraries/messages.inc.php:1078 tbl_operations.php:334 msgid "Table options" msgstr "Opcyi tablicy" -#: libraries/messages.inc.php:1083 server_synchronize.php:431 +#: libraries/messages.inc.php:1079 server_synchronize.php:431 #: server_synchronize.php:874 msgid "Remove column(s)" msgstr "" -#: libraries/messages.inc.php:1084 server_synchronize.php:433 +#: libraries/messages.inc.php:1080 server_synchronize.php:433 #: server_synchronize.php:876 msgid "Remove index(s)" msgstr "" -#: libraries/messages.inc.php:1088 server_synchronize.php:435 +#: libraries/messages.inc.php:1084 server_synchronize.php:435 #: server_synchronize.php:878 msgid "Update row(s)" msgstr "" -#: libraries/messages.inc.php:1090 server_synchronize.php:942 +#: libraries/messages.inc.php:1086 server_synchronize.php:942 msgid "Target database has been synchronized with source database" msgstr "" -#: libraries/messages.inc.php:1091 server_privileges.php:392 +#: libraries/messages.inc.php:1087 server_privileges.php:392 #: server_privileges.php:527 server_privileges.php:1679 #: server_privileges.php:1685 msgid "Table-specific privileges" msgstr "Pryvilei, specyfičnyja dla tablicy" -#: libraries/messages.inc.php:1092 server_status.php:254 +#: libraries/messages.inc.php:1088 server_status.php:254 msgid "Temporary data" msgstr "Časovyja dadzienyja" -#: libraries/messages.inc.php:1093 tbl_change.php:728 +#: libraries/messages.inc.php:1089 tbl_change.php:728 msgid " Because of its length,
this field might not be editable " msgstr " Z-za vialikaj daŭžyni, hetaje pole nia moža być adredagavanaje " -#: libraries/messages.inc.php:1094 +#: libraries/messages.inc.php:1090 msgid "Texy! text" msgstr "Tekst Texy!" -#: libraries/messages.inc.php:1095 libraries/mysql_charsets.lib.php:298 +#: libraries/messages.inc.php:1091 libraries/mysql_charsets.lib.php:298 #: libraries/mysql_charsets.lib.php:395 msgid "Thai" msgstr "Tajlandzkaja" -#: libraries/messages.inc.php:1102 libraries/replication_gui.lib.php:308 +#: libraries/messages.inc.php:1098 libraries/replication_gui.lib.php:308 #: server_privileges.php:734 msgid "This Host" msgstr "Hety chost" -#: libraries/messages.inc.php:1103 server_status.php:252 +#: libraries/messages.inc.php:1099 server_status.php:252 msgid "Threads" msgstr "Patoki" -#: libraries/messages.inc.php:1104 server_processlist.php:22 +#: libraries/messages.inc.php:1100 server_processlist.php:22 #, php-format msgid "Thread %s was successfully killed." msgstr "Patok %s byŭ paśpiachova spynieny." -#: libraries/messages.inc.php:1106 +#: libraries/messages.inc.php:1102 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -6301,182 +6301,182 @@ msgstr "" "Heta zvyčajna značyć, što phpMyAdmin nia zmoža skončyć hetaje impartavańnia, " "kali vy nie pavialičycie limity vykanańnia php-skryptoŭ." -#: libraries/messages.inc.php:1109 pmd_pdf.php:94 +#: libraries/messages.inc.php:1105 pmd_pdf.php:94 msgid "to/from page" msgstr "staronka" -#: libraries/messages.inc.php:1110 pdf_pages.php:343 +#: libraries/messages.inc.php:1106 pdf_pages.php:343 msgid "Toggle scratchboard" msgstr "Pakazać papiaredni prahlad" -#: libraries/messages.inc.php:1111 pmd_general.php:99 +#: libraries/messages.inc.php:1107 pmd_general.php:99 msgid "Toggle small/big" msgstr "Pieraklučyć maleńki/vialiki" -#: libraries/messages.inc.php:1112 pmd_help.php:27 +#: libraries/messages.inc.php:1108 pmd_help.php:27 msgid "To select relation, click :" msgstr "" "Kab vybrać suviaź, naciśnicie na kropcy złučeńnia, jak pakazana na vyjavie:" -#: libraries/messages.inc.php:1115 libraries/tbl_links.inc.php:149 +#: libraries/messages.inc.php:1111 libraries/tbl_links.inc.php:149 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" -#: libraries/messages.inc.php:1116 tbl_tracking.php:655 +#: libraries/messages.inc.php:1112 tbl_tracking.php:655 msgid "Activate now" msgstr "" -#: libraries/messages.inc.php:1117 tbl_tracking.php:653 +#: libraries/messages.inc.php:1113 tbl_tracking.php:653 #, php-format msgid "Activate tracking for %s.%s" msgstr "" -#: libraries/messages.inc.php:1118 tbl_tracking.php:221 +#: libraries/messages.inc.php:1114 tbl_tracking.php:221 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/messages.inc.php:1119 tbl_tracking.php:688 +#: libraries/messages.inc.php:1115 tbl_tracking.php:688 msgid "Create version" msgstr "" -#: libraries/messages.inc.php:1120 tbl_tracking.php:668 +#: libraries/messages.inc.php:1116 tbl_tracking.php:668 #, php-format msgid "Create version %s of %s.%s" msgstr "" -#: libraries/messages.inc.php:1122 tbl_tracking.php:412 +#: libraries/messages.inc.php:1118 tbl_tracking.php:412 msgid "Data definition statement" msgstr "" -#: libraries/messages.inc.php:1123 tbl_tracking.php:463 +#: libraries/messages.inc.php:1119 tbl_tracking.php:463 msgid "Data manipulation statement" msgstr "" -#: libraries/messages.inc.php:1124 tbl_tracking.php:410 tbl_tracking.php:461 +#: libraries/messages.inc.php:1120 tbl_tracking.php:410 tbl_tracking.php:461 msgid "Date" msgstr "" -#: libraries/messages.inc.php:1125 tbl_tracking.php:642 +#: libraries/messages.inc.php:1121 tbl_tracking.php:642 msgid "Deactivate now" msgstr "" -#: libraries/messages.inc.php:1126 tbl_tracking.php:640 +#: libraries/messages.inc.php:1122 tbl_tracking.php:640 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "" -#: libraries/messages.inc.php:1127 tbl_tracking.php:521 +#: libraries/messages.inc.php:1123 tbl_tracking.php:521 #, php-format msgid "Export as %s" msgstr "" -#: libraries/messages.inc.php:1130 tbl_tracking.php:251 tbl_tracking.php:379 +#: libraries/messages.inc.php:1126 tbl_tracking.php:251 tbl_tracking.php:379 msgid "Close" msgstr "" -#: libraries/messages.inc.php:1131 tbl_tracking.php:114 +#: libraries/messages.inc.php:1127 tbl_tracking.php:114 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/messages.inc.php:1133 tbl_tracking.php:397 tbl_tracking.php:504 +#: libraries/messages.inc.php:1129 tbl_tracking.php:397 tbl_tracking.php:504 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "" -#: libraries/messages.inc.php:1134 tbl_tracking.php:561 +#: libraries/messages.inc.php:1130 tbl_tracking.php:561 msgid "Show versions" msgstr "" -#: libraries/messages.inc.php:1135 tbl_tracking.php:507 +#: libraries/messages.inc.php:1131 tbl_tracking.php:507 msgid "SQL dump (file download)" msgstr "" -#: libraries/messages.inc.php:1136 tbl_tracking.php:508 +#: libraries/messages.inc.php:1132 tbl_tracking.php:508 msgid "SQL dump" msgstr "" -#: libraries/messages.inc.php:1137 tbl_tracking.php:213 +#: libraries/messages.inc.php:1133 tbl_tracking.php:213 msgid "SQL statements executed." msgstr "" -#: libraries/messages.inc.php:1138 +#: libraries/messages.inc.php:1134 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/messages.inc.php:1139 tbl_tracking.php:509 +#: libraries/messages.inc.php:1135 tbl_tracking.php:509 msgid "SQL execution" msgstr "" -#: libraries/messages.inc.php:1140 tbl_tracking.php:230 +#: libraries/messages.inc.php:1136 tbl_tracking.php:230 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/messages.inc.php:1141 tbl_tracking.php:381 +#: libraries/messages.inc.php:1137 tbl_tracking.php:381 msgid "Tracking statements" msgstr "" -#: libraries/messages.inc.php:1148 tbl_tracking.php:593 +#: libraries/messages.inc.php:1144 tbl_tracking.php:593 msgid "Version" msgstr "" -#: libraries/messages.inc.php:1149 tbl_tracking.php:672 +#: libraries/messages.inc.php:1145 tbl_tracking.php:672 msgid "Track these data definition statements:" msgstr "" -#: libraries/messages.inc.php:1150 tbl_tracking.php:680 +#: libraries/messages.inc.php:1146 tbl_tracking.php:680 msgid "Track these data manipulation statements:" msgstr "" -#: libraries/messages.inc.php:1155 tbl_tracking.php:411 tbl_tracking.php:462 +#: libraries/messages.inc.php:1151 tbl_tracking.php:411 tbl_tracking.php:462 msgid "Username" msgstr "" -#: libraries/messages.inc.php:1156 tbl_tracking.php:203 +#: libraries/messages.inc.php:1152 tbl_tracking.php:203 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "" -#: libraries/messages.inc.php:1157 tbl_tracking.php:187 +#: libraries/messages.inc.php:1153 tbl_tracking.php:187 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "" -#: libraries/messages.inc.php:1158 tbl_tracking.php:195 +#: libraries/messages.inc.php:1154 tbl_tracking.php:195 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "" -#: libraries/messages.inc.php:1159 tbl_tracking.php:262 +#: libraries/messages.inc.php:1155 tbl_tracking.php:262 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/messages.inc.php:1161 tbl_tracking.php:220 +#: libraries/messages.inc.php:1157 tbl_tracking.php:220 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/messages.inc.php:1162 libraries/mysql_charsets.lib.php:219 +#: libraries/messages.inc.php:1158 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:362 msgid "Traditional Chinese" msgstr "Tradycyjnaja kitajskaja" -#: libraries/messages.inc.php:1163 libraries/mysql_charsets.lib.php:292 +#: libraries/messages.inc.php:1159 libraries/mysql_charsets.lib.php:292 msgid "Traditional Spanish" msgstr "Tradycyjnaja hišpanskaja" -#: libraries/messages.inc.php:1164 server_status.php:388 +#: libraries/messages.inc.php:1160 server_status.php:388 msgid "Traffic" msgstr "Trafik" -#: libraries/messages.inc.php:1165 server_status.php:261 +#: libraries/messages.inc.php:1161 server_status.php:261 msgid "Transaction coordinator" msgstr "Kaardynatar pierakładu" -#: libraries/messages.inc.php:1166 +#: libraries/messages.inc.php:1162 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 " @@ -6489,7 +6489,7 @@ msgstr "" "fajła. Kali vy vykarystoŭvajecie druhuju opcyju, vam treba pakinuć pieršaje " "pole pustym" -#: libraries/messages.inc.php:1167 +#: libraries/messages.inc.php:1163 msgid "" "Displays hexadecimal representation of data. Optional first parameter " "specifies how often space will be added (defaults to 2 nibbles)." @@ -6498,7 +6498,7 @@ msgstr "" "parametar vyznačaje častatu dadavańnia prahała (pa-zmoŭčańni — praz kožnyja " "8 bitaŭ)." -#: libraries/messages.inc.php:1168 +#: libraries/messages.inc.php:1164 msgid "" "Displays a clickable thumbnail. The options are the maximum width and height " "in pixels. The original aspect ratio is preserved." @@ -6506,15 +6506,15 @@ msgstr "" "Pakazvaje naciskalny eskiz; Opcyi — maksymalnaja šyrynia i vyšynia ŭ " "piksełach. Zachoŭvajucca pačatkovyja praporcyi." -#: libraries/messages.inc.php:1169 +#: libraries/messages.inc.php:1165 msgid "Displays a link to download this image." msgstr "Pakazvaje spasyłku dla zahruzki hetaha malunku." -#: libraries/messages.inc.php:1170 +#: libraries/messages.inc.php:1166 msgid "See image/jpeg: inline" msgstr "Prahladzieć malunak image/jpeg: ubudavany" -#: libraries/messages.inc.php:1171 +#: libraries/messages.inc.php:1167 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 " @@ -6535,7 +6535,7 @@ msgstr "" "parametraŭ lakalnaj daty hladzicie dakumentacyju dla funkcyi PHP strftime(), " "a dla hrynvickaha času (parametar «utc») — dakumentacyju funkcyi gmdate()." -#: libraries/messages.inc.php:1172 +#: libraries/messages.inc.php:1168 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 " @@ -6560,7 +6560,7 @@ msgstr "" "kali vyznačanaja jak 1, praduchilić pieranos pa słovach, kab pierakanacca, " "što ŭvieś vychadny patok budzie vyviedzieny ŭ adzin radok (Pa zmoŭčańni 1)." -#: libraries/messages.inc.php:1173 +#: libraries/messages.inc.php:1169 msgid "" "Displays the contents of the field as-is, without running it through " "htmlspecialchars(). That is, the field is assumed to contain valid HTML." @@ -6569,7 +6569,7 @@ msgstr "" "htmlspecialchars(). Tamu razumiejecca, što pole ŭtrymlivaje karektny HTML-" "kod." -#: libraries/messages.inc.php:1174 +#: libraries/messages.inc.php:1170 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 " @@ -6579,7 +6579,7 @@ msgstr "" "prefiks adrasu kštałtu \"http://www.example.com/\". Druhaja i treciaja opcyi " "— šyrynia i vyšynia ŭ piksełach." -#: libraries/messages.inc.php:1175 +#: libraries/messages.inc.php:1171 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 " @@ -6588,11 +6588,11 @@ msgstr "" "Pakazvaje spasyłku; pole źmiaščaje nazvu fajła. Pieršaja opcyja — prefiks " "adrasu kštałtu \"http://www.example.com/\". Druhaja opcyja — nazva spasyłki." -#: libraries/messages.inc.php:1176 +#: libraries/messages.inc.php:1172 msgid "Formats text as SQL query with syntax highlighting." msgstr "Farmatuje tekst jak SQL-zapyt z padśviečanym syntaksisam." -#: libraries/messages.inc.php:1177 +#: libraries/messages.inc.php:1173 msgid "" "Displays a part of a string. The first option is the number of characters to " "skip from the beginning of the string (Default 0). The second option is the " @@ -6606,71 +6606,71 @@ msgstr "" "opcyja — radok, jaki treba dałučyć da kanca i/abo z pačatku radka, kali " "adbudziecca ŭsiačeńnie (Pa zmoŭčańni: \"...\") ." -#: libraries/messages.inc.php:1179 server_binlog.php:183 server_binlog.php:186 +#: libraries/messages.inc.php:1175 server_binlog.php:183 server_binlog.php:186 #: server_processlist.php:49 server_processlist.php:51 msgid "Truncate Shown Queries" msgstr "Abrazać pakazanyja zapyty" -#: libraries/messages.inc.php:1180 libraries/mysql_charsets.lib.php:301 +#: libraries/messages.inc.php:1176 libraries/mysql_charsets.lib.php:301 #: libraries/mysql_charsets.lib.php:389 msgid "Turkish" msgstr "Tureckaja" -#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:304 +#: libraries/messages.inc.php:1179 libraries/mysql_charsets.lib.php:304 #: libraries/mysql_charsets.lib.php:386 msgid "Ukrainian" msgstr "Ukrainskaja" -#: libraries/messages.inc.php:1185 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:1181 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 msgid "Unicode" msgstr "Junikod" -#: libraries/messages.inc.php:1187 libraries/mysql_charsets.lib.php:398 +#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:398 #: libraries/mysql_charsets.lib.php:405 msgid "unknown" msgstr "nieviadoma" -#: libraries/messages.inc.php:1190 server_privileges.php:1152 +#: libraries/messages.inc.php:1186 server_privileges.php:1152 #, php-format msgid "You have updated the privileges for %s." msgstr "Vy źmianili pryvilei dla %s." -#: libraries/messages.inc.php:1191 user_password.php:112 +#: libraries/messages.inc.php:1187 user_password.php:112 msgid "The profile has been updated." msgstr "Profil byŭ adnoŭleny." -#: libraries/messages.inc.php:1193 libraries/relation.lib.php:138 +#: libraries/messages.inc.php:1189 libraries/relation.lib.php:138 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "Za infarmacyjaj jak abnavić tablicu column_comments źviarniciesia, kali " "łaska, da dakumentacyi" -#: libraries/messages.inc.php:1194 +#: libraries/messages.inc.php:1190 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Vam treba abnavić %s da versii %s ci paźniejšaj." -#: libraries/messages.inc.php:1204 tbl_printview.php:314 tbl_structure.php:661 +#: libraries/messages.inc.php:1200 tbl_printview.php:314 tbl_structure.php:661 msgid "Usage" msgstr "Vykarystańnie" -#: libraries/messages.inc.php:1205 +#: libraries/messages.inc.php:1201 msgid "Enclose table and field names with backquotes" msgstr "Zvarotnaje dvukośsie ŭ imionach tablic i paloŭ" -#: libraries/messages.inc.php:1206 libraries/replication_gui.lib.php:314 +#: libraries/messages.inc.php:1202 libraries/replication_gui.lib.php:314 #: server_privileges.php:740 msgid "Use Host Table" msgstr "Vykarystoŭvać tablicu chostaŭ" -#: libraries/messages.inc.php:1207 server_privileges.php:848 +#: libraries/messages.inc.php:1203 server_privileges.php:848 #, php-format msgid "The user %s already exists!" msgstr "Karystalnik %s užo isnuje!" -#: libraries/messages.inc.php:1209 libraries/replication_gui.lib.php:55 +#: libraries/messages.inc.php:1205 libraries/replication_gui.lib.php:55 #: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245 #: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255 #: server_privileges.php:672 server_privileges.php:675 @@ -6678,37 +6678,37 @@ msgstr "Karystalnik %s užo isnuje!" msgid "User name" msgstr "Imia karystalnika" -#: libraries/messages.inc.php:1210 server_privileges.php:1645 +#: libraries/messages.inc.php:1206 server_privileges.php:1645 msgid "The selected user was not found in the privilege table." msgstr "Vyłučany karystalnik nia znojdzieny ŭ tablicy pryvilejaŭ." -#: libraries/messages.inc.php:1211 server_privileges.php:1365 +#: libraries/messages.inc.php:1207 server_privileges.php:1365 msgid "User overview" msgstr "Karystalniki" -#: libraries/messages.inc.php:1212 server_privileges.php:1261 +#: libraries/messages.inc.php:1208 server_privileges.php:1261 msgid "The selected users have been deleted successfully." msgstr "Vybranyja karystalniki byli paśpiachova vydalenyja." -#: libraries/messages.inc.php:1213 server_privileges.php:2026 +#: libraries/messages.inc.php:1209 server_privileges.php:2026 #, php-format msgid "Users having access to "%s"" msgstr "Karystalniki z pravami dostupu da \"%s\"" -#: libraries/messages.inc.php:1214 main.php:189 server_privileges.php:1350 +#: libraries/messages.inc.php:1210 main.php:189 server_privileges.php:1350 #: server_privileges.php:1497 server_privileges.php:1611 #: server_privileges.php:2029 server_processlist.php:54 msgid "User" msgstr "Karystalnik" -#: libraries/messages.inc.php:1215 tbl_change.php:1171 +#: libraries/messages.inc.php:1211 tbl_change.php:1171 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Vykarystoŭvajcie klavišu TAB dla pieramiaščeńnia ad značeńnia da značeńnia " "abo CTRL+strełki dla pieramiaščeńnia ŭ luboje inšaje miesca" -#: libraries/messages.inc.php:1217 libraries/replication_gui.lib.php:251 +#: libraries/messages.inc.php:1213 libraries/replication_gui.lib.php:251 #: libraries/replication_gui.lib.php:319 libraries/replication_gui.lib.php:342 #: server_privileges.php:678 server_privileges.php:745 #: server_privileges.php:769 server_privileges.php:1889 @@ -6716,7 +6716,7 @@ msgstr "" msgid "Use text field" msgstr "Vykarystoŭvać tekstavaje pole" -#: libraries/messages.inc.php:1221 libraries/sqlvalidator.lib.php:68 +#: libraries/messages.inc.php:1217 libraries/sqlvalidator.lib.php:68 #, php-format msgid "" "The SQL validator could not be initialized. Please check if you have " @@ -6726,84 +6726,84 @@ msgstr "" "ŭstalavanyja ŭ vas nieabchodnyja pašyreńni PHP, jak heta apisana ŭ %" "sdakumentacyi%s." -#: libraries/messages.inc.php:1222 libraries/replication_gui.lib.php:111 +#: libraries/messages.inc.php:1218 libraries/replication_gui.lib.php:111 #: server_status.php:627 tbl_change.php:324 tbl_printview.php:370 #: tbl_select.php:139 tbl_structure.php:730 msgid "Value" msgstr "Značeńnie" -#: libraries/messages.inc.php:1223 libraries/replication_gui.lib.php:110 +#: libraries/messages.inc.php:1219 libraries/replication_gui.lib.php:110 #: libraries/sql_query_form.lib.php:445 server_status.php:626 #: server_variables.php:52 msgid "Variable" msgstr "Źmiennaja" -#: libraries/messages.inc.php:1225 server_export.php:21 +#: libraries/messages.inc.php:1221 server_export.php:21 msgid "View dump (schema) of databases" msgstr "Prahladzieć damp (schiemu) bazaŭ dadzienych" -#: libraries/messages.inc.php:1227 tbl_export.php:23 +#: libraries/messages.inc.php:1223 tbl_export.php:23 msgid "View dump (schema) of table" msgstr "Prahladzieć damp (schiemu) tablicy" -#: libraries/messages.inc.php:1231 view_create.php:142 +#: libraries/messages.inc.php:1227 view_create.php:142 msgid "VIEW name" msgstr "Nazva prahladu" -#: libraries/messages.inc.php:1237 main.php:205 +#: libraries/messages.inc.php:1233 main.php:205 msgid "Web server" msgstr "Web-server" -#: libraries/messages.inc.php:1239 libraries/mysql_charsets.lib.php:277 +#: libraries/messages.inc.php:1235 libraries/mysql_charsets.lib.php:277 #: libraries/mysql_charsets.lib.php:325 msgid "West European" msgstr "Zachodnieeŭrapiejskaja" -#: libraries/messages.inc.php:1240 main.php:230 +#: libraries/messages.inc.php:1236 main.php:230 msgid "Wiki" msgstr "Wiki" -#: libraries/messages.inc.php:1241 server_privileges.php:2138 +#: libraries/messages.inc.php:1237 server_privileges.php:2138 msgid "wildcard" msgstr "šablon" -#: libraries/messages.inc.php:1248 +#: libraries/messages.inc.php:1244 msgid "Export contents" msgstr "" -#: libraries/messages.inc.php:1249 +#: libraries/messages.inc.php:1245 msgid "Export functions" msgstr "" -#: libraries/messages.inc.php:1250 +#: libraries/messages.inc.php:1246 msgid "Export procedures" msgstr "" -#: libraries/messages.inc.php:1251 +#: libraries/messages.inc.php:1247 msgid "Export Structure Schemas (recommended)" msgstr "" -#: libraries/messages.inc.php:1252 +#: libraries/messages.inc.php:1248 msgid "Export tables" msgstr "" -#: libraries/messages.inc.php:1253 +#: libraries/messages.inc.php:1249 msgid "Export triggers" msgstr "" -#: libraries/messages.inc.php:1254 +#: libraries/messages.inc.php:1250 msgid "Export views" msgstr "" -#: libraries/messages.inc.php:1255 +#: libraries/messages.inc.php:1251 msgid "XML" msgstr "XML" -#: libraries/messages.inc.php:1259 server_privileges.php:592 +#: libraries/messages.inc.php:1255 server_privileges.php:592 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Zaŭvaha: Paznačeńnie hetych opcyjaŭ jak 0 (nul) zdymaje abmiežavańnie." -#: libraries/messages.inc.php:1260 +#: libraries/messages.inc.php:1256 msgid "\"zipped\"" msgstr "archivavany ŭ zip" diff --git a/po/bg.po b/po/bg.po index bbd78c13a..18f2b19bf 100644 --- 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-05-13 11:25+0200\n" +"POT-Creation-Date: 2010-05-13 11:30+0200\n" "PO-Revision-Date: 2010-03-12 09:12+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: bulgarian \n" @@ -13,19 +13,19 @@ msgstr "" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:38 browse_foreigners.php:59 -#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:870 +#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:866 #: server_privileges.php:1475 msgid "Show all" msgstr "Покажи всички" #: browse_foreigners.php:82 db_operations.php:648 -#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:394 -#: libraries/export/pdf.php:147 libraries/messages.inc.php:597 +#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394 +#: libraries/export/pdf.php:147 libraries/messages.inc.php:593 #: pdf_schema.php:283 pdf_schema.php:1123 pdf_schema.php:1139 msgid "Page number:" msgstr "Номер на страницата:" -#: browse_foreigners.php:132 libraries/messages.inc.php:1242 +#: browse_foreigners.php:132 libraries/messages.inc.php:1238 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -38,7 +38,7 @@ 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/db_links.inc.php:75 -#: libraries/messages.inc.php:841 libraries/tbl_links.inc.php:63 +#: libraries/messages.inc.php:837 libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Търсене" @@ -47,12 +47,12 @@ msgstr "Търсене" #: db_search.php:362 db_structure.php:567 js/messages.php:48 #: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2267 +#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 #: 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 #: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614 -#: libraries/messages.inc.php:361 libraries/replication_gui.lib.php:73 +#: libraries/messages.inc.php:357 libraries/replication_gui.lib.php:73 #: libraries/replication_gui.lib.php:365 libraries/select_server.lib.php:104 #: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477 #: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782 @@ -72,33 +72,33 @@ msgid "Go" msgstr "Изпълнение" #: browse_foreigners.php:168 browse_foreigners.php:172 -#: libraries/Index.class.php:442 libraries/messages.inc.php:459 +#: libraries/Index.class.php:442 libraries/messages.inc.php:455 #: tbl_tracking.php:320 msgid "Keyname" msgstr "Име на ключа" #: browse_foreigners.php:169 browse_foreigners.php:171 -#: libraries/messages.inc.php:252 server_collations.php:55 +#: libraries/messages.inc.php:248 server_collations.php:55 #: server_collations.php:67 server_engines.php:59 server_status.php:628 msgid "Description" msgstr "Описание" #: browse_foreigners.php:247 browse_foreigners.php:256 #: browse_foreigners.php:268 browse_foreigners.php:276 -#: libraries/messages.inc.php:1218 +#: libraries/messages.inc.php:1214 msgid "Use this value" msgstr "Използвахте тази стойност" -#: db_create.php:46 libraries/messages.inc.php:215 +#: db_create.php:46 libraries/messages.inc.php:211 #, fuzzy, php-format msgid "Database %1$s has been created." msgstr "Базата данни %s беше изтрита." -#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:232 +#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:228 msgid "Database comment: " msgstr "Коментар към базата от данни: " -#: db_datadict.php:165 libraries/messages.inc.php:1070 +#: db_datadict.php:165 libraries/messages.inc.php:1066 #: libraries/tbl_properties.inc.php:724 pdf_schema.php:1236 #: tbl_operations.php:345 tbl_printview.php:130 msgid "Table comments" @@ -107,7 +107,7 @@ msgstr "Коментари към таблицата" #: db_datadict.php:174 db_qbe.php:174 libraries/Index.class.php:446 #: libraries/export/htmlword.php:244 libraries/export/latex.php:360 #: libraries/export/odt.php:294 libraries/export/texytext.php:233 -#: libraries/messages.inc.php:317 libraries/tbl_properties.inc.php:99 +#: libraries/messages.inc.php:313 libraries/tbl_properties.inc.php:99 #: libraries/tbl_properties.inc.php:275 pdf_schema.php:1262 #: pdf_schema.php:1283 tbl_change.php:308 tbl_indexes.php:189 #: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135 @@ -119,7 +119,7 @@ msgstr "Поле" #: libraries/db_events.inc.php:31 libraries/db_routines.inc.php:42 #: 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/messages.inc.php:1181 +#: libraries/export/texytext.php:234 libraries/messages.inc.php:1177 #: libraries/tbl_properties.inc.php:100 pdf_schema.php:1263 #: pdf_schema.php:1284 server_privileges.php:2031 tbl_change.php:287 #: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313 @@ -131,7 +131,7 @@ msgstr "Тип" #: db_datadict.php:177 libraries/Index.class.php:449 #: libraries/export/htmlword.php:246 libraries/export/latex.php:360 #: libraries/export/odt.php:300 libraries/export/texytext.php:235 -#: libraries/messages.inc.php:576 libraries/tbl_properties.inc.php:109 +#: libraries/messages.inc.php:572 libraries/tbl_properties.inc.php:109 #: pdf_schema.php:1265 pdf_schema.php:1286 tbl_change.php:323 #: tbl_printview.php:145 tbl_structure.php:181 tbl_tracking.php:276 #: tbl_tracking.php:327 @@ -140,7 +140,7 @@ msgstr "Празно" #: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 -#: libraries/export/texytext.php:236 libraries/messages.inc.php:238 +#: libraries/export/texytext.php:236 libraries/messages.inc.php:234 #: libraries/tbl_properties.inc.php:106 pdf_schema.php:1266 #: pdf_schema.php:1287 tbl_printview.php:146 tbl_structure.php:182 #: tbl_tracking.php:277 @@ -149,14 +149,14 @@ msgstr "По подразбиране" #: db_datadict.php:182 libraries/export/htmlword.php:249 #: libraries/export/latex.php:362 libraries/export/odt.php:307 -#: libraries/export/texytext.php:238 libraries/messages.inc.php:483 +#: libraries/export/texytext.php:238 libraries/messages.inc.php:479 #: pdf_schema.php:1268 pdf_schema.php:1289 tbl_printview.php:150 msgid "Links to" msgstr "Сочи към" #: db_datadict.php:184 db_printview.php:112 libraries/export/htmlword.php:252 #: libraries/export/latex.php:365 libraries/export/odt.php:312 -#: libraries/export/texytext.php:241 libraries/messages.inc.php:163 +#: libraries/export/texytext.php:241 libraries/messages.inc.php:159 #: libraries/tbl_properties.inc.php:130 pdf_schema.php:1279 #: pdf_schema.php:1290 tbl_printview.php:152 msgid "Comments" @@ -165,7 +165,7 @@ msgstr "Коментари" #: db_datadict.php:267 libraries/Index.class.php:359 #: 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/messages.inc.php:559 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:555 #: libraries/mult_submits.inc.php:263 pdf_schema.php:1344 #: server_privileges.php:1529 server_privileges.php:1540 #: server_privileges.php:1850 server_privileges.php:1855 @@ -177,7 +177,7 @@ msgstr "не" #: db_datadict.php:267 libraries/Index.class.php:360 #: libraries/Index.class.php:385 libraries/export/htmlword.php:322 #: libraries/export/latex.php:430 libraries/export/odt.php:368 -#: libraries/export/texytext.php:311 libraries/messages.inc.php:1257 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:1253 #: libraries/mult_submits.inc.php:45 libraries/mult_submits.inc.php:50 #: libraries/mult_submits.inc.php:55 libraries/mult_submits.inc.php:60 #: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:101 @@ -191,108 +191,108 @@ msgstr "не" msgid "Yes" msgstr "да" -#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:670 +#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:666 #: tbl_printview.php:498 msgid "Print" msgstr "Печат" -#: db_export.php:29 libraries/messages.inc.php:1226 +#: db_export.php:29 libraries/messages.inc.php:1222 msgid "View dump (schema) of database" msgstr "Схема на БД" #: db_export.php:33 db_printview.php:96 db_qbe.php:102 db_structure.php:51 -#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:568 +#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:564 #: navigation.php:346 msgid "No tables found in database." msgstr "В базата от данни няма таблици." -#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:845 +#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:841 #: server_export.php:27 msgid "Select All" msgstr "Селектиране на всичко" -#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1188 +#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1184 #: server_export.php:29 msgid "Unselect All" msgstr "Деселектиране на всичко" -#: db_operations.php:38 libraries/messages.inc.php:213 tbl_create.php:54 +#: db_operations.php:38 libraries/messages.inc.php:209 tbl_create.php:54 msgid "The database name is empty!" msgstr "Името на базата от данни е празно!" -#: db_operations.php:236 libraries/messages.inc.php:753 +#: db_operations.php:236 libraries/messages.inc.php:749 #, php-format msgid "Database %s has been renamed to %s" msgstr "Базата данни %s беше преименувана на %s" -#: db_operations.php:240 libraries/messages.inc.php:178 +#: db_operations.php:240 libraries/messages.inc.php:174 #, php-format msgid "Database %s has been copied to %s" msgstr "База от данни %s беше копирана като %s" -#: db_operations.php:410 libraries/messages.inc.php:236 +#: db_operations.php:410 libraries/messages.inc.php:232 msgid "Rename database to" msgstr "Преименуване на базата от данни на" -#: db_operations.php:415 libraries/messages.inc.php:161 +#: db_operations.php:415 libraries/messages.inc.php:157 #: server_processlist.php:57 msgid "Command" msgstr "Команда" -#: db_operations.php:425 libraries/messages.inc.php:58 tbl_change.php:1143 +#: db_operations.php:425 libraries/messages.inc.php:54 tbl_change.php:1143 msgid "and then" msgstr "и след това" -#: db_operations.php:451 libraries/messages.inc.php:233 +#: db_operations.php:451 libraries/messages.inc.php:229 msgid "Copy database to" msgstr "Копиране на базата от данни в" -#: db_operations.php:458 libraries/messages.inc.php:1043 +#: db_operations.php:458 libraries/messages.inc.php:1039 #: tbl_operations.php:526 tbl_tracking.php:388 msgid "Structure only" msgstr "Само структурата" -#: db_operations.php:459 libraries/messages.inc.php:1041 +#: db_operations.php:459 libraries/messages.inc.php:1037 #: tbl_operations.php:527 tbl_tracking.php:390 msgid "Structure and data" msgstr "Структурата и данните" -#: db_operations.php:460 libraries/messages.inc.php:229 tbl_operations.php:528 +#: db_operations.php:460 libraries/messages.inc.php:225 tbl_operations.php:528 #: tbl_tracking.php:389 msgid "Data only" msgstr "Само данните" -#: db_operations.php:468 libraries/messages.inc.php:186 +#: db_operations.php:468 libraries/messages.inc.php:182 msgid "CREATE DATABASE before copying" msgstr "Изпълняване на CREATE DATABASE преди копирането" #: db_operations.php:471 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 -#: libraries/export/sql.php:82 libraries/messages.inc.php:30 +#: libraries/export/sql.php:82 libraries/messages.inc.php:26 #: tbl_operations.php:534 #, php-format msgid "Add %s" msgstr "Добавяне на %s" -#: db_operations.php:475 libraries/messages.inc.php:29 tbl_operations.php:297 +#: db_operations.php:475 libraries/messages.inc.php:25 tbl_operations.php:297 #: tbl_operations.php:536 msgid "Add AUTO_INCREMENT value" msgstr "Добавяне на AUTO_INCREMENT" -#: db_operations.php:479 libraries/messages.inc.php:31 tbl_operations.php:543 +#: db_operations.php:479 libraries/messages.inc.php:27 tbl_operations.php:543 msgid "Add constraints" msgstr "Добавяне на ограничение" -#: db_operations.php:492 libraries/messages.inc.php:1059 +#: db_operations.php:492 libraries/messages.inc.php:1055 msgid "Switch to copied database" msgstr "Прехвърляна към копираната база от данни" -#: db_operations.php:533 libraries/messages.inc.php:89 +#: db_operations.php:533 libraries/messages.inc.php:85 msgid "BLOB Repository" msgstr "" #: db_operations.php:536 db_tracking.php:76 libraries/common.lib.php:1350 -#: libraries/messages.inc.php:1037 libraries/server_links.inc.php:49 +#: libraries/messages.inc.php:1033 libraries/server_links.inc.php:49 #: server_processlist.php:59 tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "Състояние" @@ -304,12 +304,12 @@ msgctxt "BLOB repository" msgid "Enabled" msgstr "Позволено" -#: db_operations.php:548 libraries/messages.inc.php:93 +#: db_operations.php:548 libraries/messages.inc.php:89 #, fuzzy msgid "Disable" msgstr "Забранено" -#: db_operations.php:558 libraries/messages.inc.php:90 +#: db_operations.php:558 libraries/messages.inc.php:86 msgid "Damaged" msgstr "" @@ -326,13 +326,13 @@ msgctxt "BLOB repository" msgid "Disabled" msgstr "Забранено" -#: db_operations.php:574 libraries/messages.inc.php:96 +#: db_operations.php:574 libraries/messages.inc.php:92 #, fuzzy msgid "Enable" msgstr "Позволено" #: db_operations.php:598 libraries/Index.class.php:448 -#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:158 +#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:154 #: 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:361 @@ -341,7 +341,7 @@ msgstr "Позволено" msgid "Collation" msgstr "Колация" -#: db_operations.php:609 libraries/messages.inc.php:742 main.php:316 +#: db_operations.php:609 libraries/messages.inc.php:738 main.php:316 #: pdf_schema.php:34 #, php-format msgid "" @@ -351,58 +351,58 @@ msgstr "" "Допълнителните възможности за работа със свързани (linked) таблици са " "деактивирани. За да разберете защо кликнете %sтук%s." -#: db_operations.php:645 libraries/messages.inc.php:264 pdf_pages.php:528 +#: db_operations.php:645 libraries/messages.inc.php:260 pdf_pages.php:528 msgid "Display PDF schema" msgstr "Покажи PDF схема" -#: db_operations.php:661 libraries/messages.inc.php:877 pdf_pages.php:529 +#: db_operations.php:661 libraries/messages.inc.php:873 pdf_pages.php:529 msgid "Show grid" msgstr "Покажи мрежа" -#: db_operations.php:664 libraries/messages.inc.php:874 pdf_pages.php:530 +#: db_operations.php:664 libraries/messages.inc.php:870 pdf_pages.php:530 msgid "Show color" msgstr "Покажи цвят" -#: db_operations.php:666 libraries/messages.inc.php:998 pdf_pages.php:531 +#: db_operations.php:666 libraries/messages.inc.php:994 pdf_pages.php:531 msgid "Show dimension of tables" msgstr "Покажи размерността на таблиците" -#: db_operations.php:669 libraries/messages.inc.php:52 pdf_pages.php:532 +#: db_operations.php:669 libraries/messages.inc.php:48 pdf_pages.php:532 msgid "Display all tables with the same width" msgstr "показване на всички Таблици с една и съща ширина?" -#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:227 +#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:223 #: pdf_pages.php:533 msgid "Data Dictionary" msgstr "Речник на данните" -#: db_operations.php:674 libraries/messages.inc.php:884 pdf_pages.php:534 +#: db_operations.php:674 libraries/messages.inc.php:880 pdf_pages.php:534 msgid "Only show keys" msgstr "" -#: db_operations.php:676 libraries/messages.inc.php:875 pdf_pages.php:535 +#: db_operations.php:676 libraries/messages.inc.php:871 pdf_pages.php:535 msgid "Data Dictionary Format" msgstr "Формат на речника на данните" -#: db_operations.php:678 libraries/messages.inc.php:464 pdf_pages.php:537 +#: db_operations.php:678 libraries/messages.inc.php:460 pdf_pages.php:537 msgid "Landscape" msgstr "Пейзажно" -#: db_operations.php:679 libraries/messages.inc.php:663 pdf_pages.php:538 +#: db_operations.php:679 libraries/messages.inc.php:659 pdf_pages.php:538 msgid "Portrait" msgstr "Портретно" -#: db_operations.php:682 libraries/messages.inc.php:599 pdf_pages.php:541 +#: db_operations.php:682 libraries/messages.inc.php:595 pdf_pages.php:541 msgid "Paper size" msgstr "Размер на хартията" -#: db_operations.php:706 libraries/messages.inc.php:281 +#: db_operations.php:706 libraries/messages.inc.php:277 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 libraries/messages.inc.php:1087 +#: libraries/header.inc.php:126 libraries/messages.inc.php:1083 #: pdf_pages.php:405 server_privileges.php:1626 server_privileges.php:1682 #: server_privileges.php:1946 server_synchronize.php:423 #: server_synchronize.php:866 tbl_tracking.php:592 test/theme.php:75 @@ -410,176 +410,176 @@ msgid "Table" msgstr "Таблица " #: db_printview.php:105 libraries/db_structure.lib.php:56 -#: libraries/messages.inc.php:735 +#: libraries/messages.inc.php:731 msgid "Records" msgstr "Записи" #: db_printview.php:109 libraries/db_structure.lib.php:67 -#: libraries/messages.inc.php:1003 tbl_indexes.php:190 +#: libraries/messages.inc.php:999 tbl_indexes.php:190 msgid "Size" msgstr "Размер" #: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 -#: libraries/export/sql.php:899 libraries/messages.inc.php:436 +#: libraries/export/sql.php:899 libraries/messages.inc.php:432 msgid "in use" msgstr "Заето" #: db_printview.php:187 libraries/db_info.inc.php:88 -#: libraries/export/sql.php:514 libraries/messages.inc.php:1032 +#: libraries/export/sql.php:514 libraries/messages.inc.php:1028 #: pdf_schema.php:1241 tbl_printview.php:434 tbl_structure.php:810 msgid "Creation" msgstr "Дата на създаване" #: db_printview.php:196 libraries/db_info.inc.php:93 -#: libraries/export/sql.php:519 libraries/messages.inc.php:1036 +#: libraries/export/sql.php:519 libraries/messages.inc.php:1032 #: pdf_schema.php:1246 tbl_printview.php:444 tbl_structure.php:818 msgid "Last update" msgstr "Последно обновление" #: db_printview.php:205 libraries/db_info.inc.php:98 -#: libraries/export/sql.php:524 libraries/messages.inc.php:1031 +#: libraries/export/sql.php:524 libraries/messages.inc.php:1027 #: pdf_schema.php:1251 tbl_printview.php:454 tbl_structure.php:826 msgid "Last check" msgstr "Последна проверка" -#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1085 +#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1081 #, php-format msgid "%s table(s)" msgstr "%s таблица(и)" #: db_qbe.php:29 libraries/display_tbl.lib.php:1981 -#: libraries/messages.inc.php:1051 libraries/sql_query_form.lib.php:140 +#: libraries/messages.inc.php:1047 libraries/sql_query_form.lib.php:140 #: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131 #: view_operations.php:62 msgid "Your SQL query has been executed successfully" msgstr "SQL заявката беше изпълнена успешно" -#: db_qbe.php:42 libraries/messages.inc.php:371 +#: db_qbe.php:42 libraries/messages.inc.php:367 msgid "You have to choose at least one column to display" msgstr "Трябва да изберете поне една Колона за показване" #: db_qbe.php:200 libraries/db_structure.lib.php:104 -#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1014 +#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1010 msgid "Sort" msgstr "Сортиране" #: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111 #: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828 -#: libraries/messages.inc.php:69 server_databases.php:170 +#: libraries/messages.inc.php:65 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314 msgid "Ascending" msgstr "Възходящо" #: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119 #: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825 -#: libraries/messages.inc.php:251 server_databases.php:170 +#: libraries/messages.inc.php:247 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315 msgid "Descending" msgstr "Низходящо" #: db_qbe.php:264 db_tracking.php:78 libraries/display_tbl.lib.php:308 -#: libraries/messages.inc.php:888 tbl_change.php:277 tbl_tracking.php:597 +#: libraries/messages.inc.php:884 tbl_change.php:277 tbl_tracking.php:597 msgid "Show" msgstr "Показване" -#: db_qbe.php:300 libraries/messages.inc.php:202 +#: db_qbe.php:300 libraries/messages.inc.php:198 msgid "Criteria" msgstr "Критерий" #: db_qbe.php:353 db_qbe.php:435 db_qbe.php:527 db_qbe.php:558 -#: libraries/messages.inc.php:718 +#: libraries/messages.inc.php:714 msgid "Ins" msgstr "Вмъкни" #: db_qbe.php:357 db_qbe.php:439 db_qbe.php:524 db_qbe.php:555 -#: libraries/messages.inc.php:56 +#: libraries/messages.inc.php:52 msgid "And" msgstr "и" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:529 db_qbe.php:560 -#: libraries/messages.inc.php:717 +#: libraries/messages.inc.php:713 msgid "Del" msgstr "Изтрий" #: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553 -#: libraries/display_import.lib.php:166 libraries/messages.inc.php:592 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:588 #: libraries/tbl_properties.inc.php:779 server_privileges.php:258 #: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288 msgid "Or" msgstr "или" -#: db_qbe.php:507 libraries/messages.inc.php:516 +#: db_qbe.php:507 libraries/messages.inc.php:512 msgid "Modify" msgstr "Промени" -#: db_qbe.php:584 libraries/messages.inc.php:33 +#: db_qbe.php:584 libraries/messages.inc.php:29 msgid "Add/Delete Criteria Row" msgstr "Добави/изтрий ред по критерий" -#: db_qbe.php:596 libraries/messages.inc.php:32 +#: db_qbe.php:596 libraries/messages.inc.php:28 msgid "Add/Delete Field Columns" msgstr "Добави/изтрий колона по критерий" -#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1192 +#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1188 msgid "Update Query" msgstr "Допълни Запитването" -#: db_qbe.php:617 libraries/messages.inc.php:1216 +#: db_qbe.php:617 libraries/messages.inc.php:1212 msgid "Use Tables" msgstr "Използвай таблицата" -#: db_qbe.php:640 libraries/messages.inc.php:723 +#: db_qbe.php:640 libraries/messages.inc.php:719 #, php-format msgid "SQL query on database %s:" msgstr "SQL-заявка към базата от данни %s:" -#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:823 +#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:819 msgid "Submit Query" msgstr "Изпълни заявката" #: db_search.php:68 libraries/auth/config.auth.lib.php:84 #: libraries/auth/config.auth.lib.php:103 #: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52 -#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:26 +#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:22 msgid "Access denied" msgstr "Отказан достъп" -#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:836 +#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:832 msgid "at least one of the words" msgstr "поне една от думите" -#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:837 +#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:833 msgid "all words" msgstr "всички думи" -#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:838 +#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:834 msgid "the exact phrase" msgstr "точната фраза" -#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:839 +#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:835 msgid "as regular expression" msgstr "като регулярен израз" -#: db_search.php:242 libraries/messages.inc.php:840 +#: db_search.php:242 libraries/messages.inc.php:836 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Резултати от търсенето на \"%s\" %s:" -#: db_search.php:260 libraries/messages.inc.php:579 +#: db_search.php:260 libraries/messages.inc.php:575 #, php-format msgid "%s match(es) inside table %s" 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/messages.inc.php:108 +#: db_structure.php:105 libraries/messages.inc.php:104 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468 msgid "Browse" msgstr "Прелистване" #: db_search.php:272 libraries/display_tbl.lib.php:1165 -#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:243 +#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:239 #: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406 #: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377 #: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216 @@ -587,45 +587,45 @@ msgstr "Прелистване" msgid "Delete" msgstr "Изтриване" -#: db_search.php:285 libraries/messages.inc.php:580 +#: db_search.php:285 libraries/messages.inc.php:576 #, php-format msgid "Total: %s match(es)" msgstr "Общо: %s съвпадение(я)" -#: db_search.php:299 libraries/messages.inc.php:832 +#: db_search.php:299 libraries/messages.inc.php:828 msgid "Search in database" msgstr "Търсене в базата от данни" -#: db_search.php:302 libraries/messages.inc.php:835 +#: db_search.php:302 libraries/messages.inc.php:831 msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgstr "Думи или стойности за търсене (знак за заместване: \"%\"):" -#: db_search.php:307 libraries/messages.inc.php:842 +#: db_search.php:307 libraries/messages.inc.php:838 msgid "Find:" msgstr "Намери:" -#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1017 +#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1013 msgid "Words are separated by a space character (\" \")." msgstr "Думите трябва да се разделят с интервал (\" \")." -#: db_search.php:325 libraries/messages.inc.php:834 +#: db_search.php:325 libraries/messages.inc.php:830 msgid "Inside table(s):" msgstr "В таблиците:" -#: db_search.php:355 libraries/messages.inc.php:833 +#: db_search.php:355 libraries/messages.inc.php:829 msgid "Inside field:" 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/messages.inc.php:431 libraries/sql_query_form.lib.php:334 +#: libraries/messages.inc.php:427 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/db_links.inc.php:63 libraries/export/latex.php:337 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:1048 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:1044 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 #: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269 msgid "Structure" @@ -634,8 +634,8 @@ 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:1642 -#: libraries/db_links.inc.php:100 libraries/messages.inc.php:272 +#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/db_links.inc.php:100 libraries/messages.inc.php:268 #: 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 @@ -645,40 +645,40 @@ 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:1641 -#: libraries/messages.inc.php:284 libraries/mult_submits.inc.php:39 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: libraries/messages.inc.php:280 libraries/mult_submits.inc.php:39 #: libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Изчистване" -#: db_structure.php:316 libraries/messages.inc.php:1075 +#: db_structure.php:316 libraries/messages.inc.php:1071 #: libraries/tbl_links.inc.php:100 #, php-format msgid "Table %s has been emptied" msgstr "Таблицата %s беше изчистена" -#: db_structure.php:326 libraries/messages.inc.php:1229 +#: db_structure.php:326 libraries/messages.inc.php:1225 #: libraries/tbl_links.inc.php:133 #, php-format msgid "View %s has been dropped" msgstr "Изглед %s беше изтрит" -#: db_structure.php:326 libraries/messages.inc.php:1074 +#: db_structure.php:326 libraries/messages.inc.php:1070 #: libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "Таблицата %s беше изтрита" -#: db_structure.php:333 libraries/messages.inc.php:1128 +#: db_structure.php:333 libraries/messages.inc.php:1124 msgid "Tracking is active." msgstr "" -#: db_structure.php:335 libraries/messages.inc.php:1129 +#: db_structure.php:335 libraries/messages.inc.php:1125 msgid "Tracking is not active." msgstr "" #: db_structure.php:420 libraries/display_tbl.lib.php:1944 -#: libraries/messages.inc.php:1228 +#: libraries/messages.inc.php:1224 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -686,83 +686,83 @@ msgid "" msgstr "" #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 -#: libraries/messages.inc.php:1233 libraries/tbl_info.inc.php:66 +#: libraries/messages.inc.php:1229 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/messages.inc.php:773 libraries/server_links.inc.php:70 +#: libraries/messages.inc.php:769 libraries/server_links.inc.php:70 #: server_replication.php:33 server_replication.php:164 server_status.php:258 msgid "Replication" msgstr "Репликация" -#: db_structure.php:489 libraries/messages.inc.php:1053 +#: db_structure.php:489 libraries/messages.inc.php:1049 msgid "Sum" msgstr "Сума" #: db_structure.php:496 libraries/StorageEngine.class.php:356 -#: libraries/messages.inc.php:239 +#: libraries/messages.inc.php:235 #, 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 #: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086 -#: libraries/messages.inc.php:1243 libraries/mult_submits.inc.php:16 +#: libraries/messages.inc.php:1239 libraries/mult_submits.inc.php:16 #: server_databases.php:346 server_databases.php:351 #: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465 msgid "With selected:" msgstr "Когато има отметка:" #: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: libraries/messages.inc.php:148 server_databases.php:348 +#: libraries/messages.inc.php:144 server_databases.php:348 #: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459 msgid "Check All" msgstr "Маркиране на всичко" #: db_structure.php:531 libraries/display_tbl.lib.php:2077 -#: libraries/messages.inc.php:1184 libraries/replication_gui.lib.php:33 +#: libraries/messages.inc.php:1180 libraries/replication_gui.lib.php:33 #: server_databases.php:350 server_privileges.php:533 #: server_privileges.php:1564 tbl_structure.php:463 msgid "Uncheck All" msgstr "Размаркиране на всичко" -#: db_structure.php:536 libraries/messages.inc.php:150 +#: db_structure.php:536 libraries/messages.inc.php:146 msgid "Check tables having overhead" msgstr "Маркиране на таблиците със загубено място" #: db_structure.php:547 db_structure.php:548 db_structure.php:599 -#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:672 +#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:668 #: libraries/mult_submits.inc.php:28 tbl_structure.php:493 #: tbl_structure.php:495 msgid "Print view" msgstr "Преглед за печат" -#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:153 +#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:149 #: libraries/mult_submits.inc.php:42 tbl_operations.php:579 msgid "Check table" msgstr "Проверка на таблицата" -#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:590 +#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:586 #: libraries/mult_submits.inc.php:47 tbl_operations.php:619 #: tbl_structure.php:710 tbl_structure.php:712 msgid "Optimize table" msgstr "Оптимизация на таблицата" -#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:758 +#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:754 #: libraries/mult_submits.inc.php:52 tbl_operations.php:609 msgid "Repair table" msgstr "Поправяне на таблицата" -#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:55 +#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:51 #: libraries/mult_submits.inc.php:57 tbl_operations.php:599 msgid "Analyze table" msgstr "Анализиране на таблицата" #: db_structure.php:557 db_structure.php:558 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/messages.inc.php:310 +#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:306 #: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84 #: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109 #: server_privileges.php:1341 setup/frames/menu.inc.php:22 @@ -770,7 +770,7 @@ msgstr "Анализиране на таблицата" msgid "Export" msgstr "Експортиране" -#: db_tracking.php:66 libraries/messages.inc.php:1151 +#: db_tracking.php:66 libraries/messages.inc.php:1147 msgid "Tracked tables" msgstr "" @@ -778,7 +778,7 @@ msgstr "" #: 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/header_printview.inc.php:58 libraries/messages.inc.php:212 +#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:208 #: navigation.php:233 server_databases.php:169 server_privileges.php:1621 #: server_privileges.php:1682 server_privileges.php:1940 #: server_processlist.php:56 server_synchronize.php:1179 @@ -786,81 +786,81 @@ msgstr "" msgid "Database" msgstr "БД" -#: db_tracking.php:73 libraries/messages.inc.php:1146 +#: db_tracking.php:73 libraries/messages.inc.php:1142 msgid "Last version" msgstr "" -#: db_tracking.php:74 libraries/messages.inc.php:1145 tbl_tracking.php:594 +#: db_tracking.php:74 libraries/messages.inc.php:1141 tbl_tracking.php:594 #, fuzzy msgid "Created" msgstr "Създай" -#: db_tracking.php:75 libraries/messages.inc.php:1147 tbl_tracking.php:595 +#: db_tracking.php:75 libraries/messages.inc.php:1143 tbl_tracking.php:595 msgid "Updated" msgstr "" #: db_tracking.php:77 libraries/Index.class.php:440 -#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:27 +#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:23 #: server_databases.php:203 server_privileges.php:1503 #: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187 msgid "Action" msgstr "Действие" -#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:247 +#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:243 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:106 libraries/messages.inc.php:1142 tbl_tracking.php:548 +#: db_tracking.php:106 libraries/messages.inc.php:1138 tbl_tracking.php:548 #: tbl_tracking.php:606 tbl_tracking.php:613 msgid "active" msgstr "" -#: db_tracking.php:108 libraries/messages.inc.php:1143 tbl_tracking.php:550 +#: db_tracking.php:108 libraries/messages.inc.php:1139 tbl_tracking.php:550 #: tbl_tracking.php:608 tbl_tracking.php:610 msgid "not active" msgstr "" -#: db_tracking.php:121 libraries/messages.inc.php:1160 +#: db_tracking.php:121 libraries/messages.inc.php:1156 #, fuzzy msgid "Versions" msgstr "Персийски" -#: db_tracking.php:122 libraries/messages.inc.php:1132 tbl_tracking.php:379 +#: db_tracking.php:122 libraries/messages.inc.php:1128 tbl_tracking.php:379 #: tbl_tracking.php:624 msgid "Tracking report" msgstr "" -#: db_tracking.php:123 libraries/messages.inc.php:1144 tbl_tracking.php:251 +#: db_tracking.php:123 libraries/messages.inc.php:1140 tbl_tracking.php:251 #: tbl_tracking.php:624 #, fuzzy msgid "Structure snapshot" msgstr "Само структурата" -#: db_tracking.php:152 libraries/messages.inc.php:1154 +#: db_tracking.php:152 libraries/messages.inc.php:1150 msgid "Untracked tables" msgstr "" -#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1153 +#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1149 #: tbl_structure.php:529 tbl_structure.php:531 #, fuzzy msgid "Track table" msgstr "Проверка на таблицата" -#: db_tracking.php:200 libraries/messages.inc.php:1121 +#: db_tracking.php:200 libraries/messages.inc.php:1117 #, fuzzy msgid "Database Log" msgstr "БД" -#: export.php:62 libraries/messages.inc.php:312 +#: export.php:62 libraries/messages.inc.php:308 msgid "Selected export type has to be saved in file!" msgstr "" -#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:567 +#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:563 #, php-format msgid "Insufficient space to save the file %s." msgstr "Недостатъчно свободно пространство за записване на файла %s." -#: export.php:294 libraries/messages.inc.php:324 +#: export.php:294 libraries/messages.inc.php:320 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -868,17 +868,17 @@ msgstr "" "Файлът %s вече съществува на сървъра, сменете името на файла или включете " "опцията за препокриване." -#: export.php:298 export.php:302 libraries/messages.inc.php:562 +#: export.php:298 export.php:302 libraries/messages.inc.php:558 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Уеб сървъра няма права за запис на файла %s." -#: export.php:629 libraries/messages.inc.php:276 +#: export.php:629 libraries/messages.inc.php:272 #, php-format msgid "Dump has been saved to file %s." msgstr "Схемата(дъмп) беше записана във файл %s." -#: import.php:60 libraries/messages.inc.php:1202 +#: import.php:60 libraries/messages.inc.php:1198 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation%" @@ -888,21 +888,21 @@ msgstr "" "към %sdдокументацията%s за да намерите начин да избегнете това ограничение." #: import.php:279 import.php:332 libraries/File.class.php:849 -#: libraries/File.class.php:961 libraries/messages.inc.php:325 +#: libraries/File.class.php:961 libraries/messages.inc.php:321 msgid "File could not be read" msgstr "Файлът не може да бъде прочетен" #: import.php:287 import.php:296 import.php:315 import.php:324 #: libraries/File.class.php:1031 libraries/File.class.php:1039 #: libraries/File.class.php:1055 libraries/File.class.php:1063 -#: libraries/messages.inc.php:1189 +#: libraries/messages.inc.php:1185 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." msgstr "" -#: import.php:337 libraries/messages.inc.php:547 +#: import.php:337 libraries/messages.inc.php:543 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -910,43 +910,43 @@ msgid "" msgstr "" #: import.php:372 libraries/display_import.lib.php:24 -#: libraries/messages.inc.php:125 +#: libraries/messages.inc.php:121 msgid "Could not load import plugins, please check your installation!" msgstr "" "Plugin-ите за импортиране не могат да бъдат заредени, моля проверете " "инсталацията на phpMyAdmin!" -#: import.php:397 libraries/messages.inc.php:102 +#: import.php:397 libraries/messages.inc.php:98 msgid "The bookmark has been deleted." msgstr "Показалецът беше изтрит." -#: import.php:401 libraries/messages.inc.php:879 +#: import.php:401 libraries/messages.inc.php:875 msgid "Showing bookmark" msgstr "" -#: import.php:403 libraries/messages.inc.php:101 +#: import.php:403 libraries/messages.inc.php:97 #, php-format msgid "Bookmark %s created" msgstr "Показалец %s беше създаден успешно" -#: import.php:409 import.php:415 libraries/messages.inc.php:407 +#: import.php:409 import.php:415 libraries/messages.inc.php:403 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Импортирането приключи успещно. Бяха изпълнени %d заявки." -#: import.php:424 libraries/messages.inc.php:1107 +#: import.php:424 libraries/messages.inc.php:1103 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: index.php:190 libraries/messages.inc.php:553 +#: index.php:190 libraries/messages.inc.php:549 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" "phpMyAdmin е по дружелюбен ако използвате браузър, който поддържа frames." -#: js/messages.php:25 libraries/messages.inc.php:155 +#: js/messages.php:25 libraries/messages.inc.php:151 #: server_synchronize.php:345 server_synchronize.php:357 #: server_synchronize.php:373 server_synchronize.php:380 #: server_synchronize.php:739 server_synchronize.php:767 @@ -954,118 +954,118 @@ msgstr "" msgid "Click to select" msgstr "" -#: js/messages.php:26 libraries/messages.inc.php:156 +#: js/messages.php:26 libraries/messages.inc.php:152 msgid "Click to unselect" msgstr "" #: js/messages.php:27 libraries/import.lib.php:103 -#: libraries/messages.inc.php:550 sql.php:89 +#: libraries/messages.inc.php:546 sql.php:89 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" заявката е забранена." -#: js/messages.php:30 libraries/messages.inc.php:270 +#: js/messages.php:30 libraries/messages.inc.php:266 #: libraries/mult_submits.inc.php:258 sql.php:188 msgid "Do you really want to " msgstr "Действително ли желаете да изпълните заявката" -#: js/messages.php:31 libraries/messages.inc.php:271 +#: js/messages.php:31 libraries/messages.inc.php:267 #: libraries/mult_submits.inc.php:258 sql.php:172 msgid "You are about to DESTROY a complete database!" msgstr "Вие ще УНИЩОЖИТЕ цялата база от данни!" -#: js/messages.php:34 libraries/messages.inc.php:94 +#: js/messages.php:34 libraries/messages.inc.php:90 msgid "You are about to DISABLE a BLOB Repository!" msgstr "" -#: js/messages.php:35 libraries/messages.inc.php:91 +#: js/messages.php:35 libraries/messages.inc.php:87 #, php-format msgid "Are you sure you want to disable all BLOB references for database %s?" msgstr "" -#: js/messages.php:38 libraries/messages.inc.php:342 +#: js/messages.php:38 libraries/messages.inc.php:338 msgid "Missing value in the form!" msgstr "Липсва стойност във полето на формата!" -#: js/messages.php:39 libraries/messages.inc.php:570 +#: js/messages.php:39 libraries/messages.inc.php:566 msgid "This is not a number!" msgstr "Това не е число!" -#: js/messages.php:42 libraries/messages.inc.php:380 +#: js/messages.php:42 libraries/messages.inc.php:376 msgid "The host name is empty!" msgstr "Името на хоста е празно!" -#: js/messages.php:43 libraries/messages.inc.php:1208 +#: js/messages.php:43 libraries/messages.inc.php:1204 msgid "The user name is empty!" msgstr "Потребителското име е празно!" -#: js/messages.php:44 libraries/messages.inc.php:607 +#: js/messages.php:44 libraries/messages.inc.php:603 #: server_privileges.php:1197 user_password.php:70 msgid "The password is empty!" msgstr "Паролата е празна!" -#: js/messages.php:45 libraries/messages.inc.php:609 +#: js/messages.php:45 libraries/messages.inc.php:605 #: server_privileges.php:1195 user_password.php:73 msgid "The passwords aren't the same!" msgstr "Паролата не е същата!" -#: js/messages.php:49 libraries/messages.inc.php:123 pmd_general.php:342 +#: js/messages.php:49 libraries/messages.inc.php:119 pmd_general.php:342 #: pmd_general.php:379 msgid "Cancel" msgstr "" -#: js/messages.php:52 libraries/messages.inc.php:514 +#: js/messages.php:52 libraries/messages.inc.php:510 msgid "Modifications have been saved" msgstr "Промените бяха съхранени" -#: js/messages.php:53 libraries/messages.inc.php:741 +#: js/messages.php:53 libraries/messages.inc.php:737 #, fuzzy msgid "Relation deleted" msgstr "Преглед на релациите" -#: js/messages.php:54 libraries/messages.inc.php:340 +#: js/messages.php:54 libraries/messages.inc.php:336 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:55 libraries/messages.inc.php:434 +#: js/messages.php:55 libraries/messages.inc.php:430 #, fuzzy msgid "Internal relation added" msgstr "Вътрешни релации" -#: js/messages.php:56 libraries/messages.inc.php:299 +#: js/messages.php:56 libraries/messages.inc.php:295 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:57 libraries/messages.inc.php:300 +#: js/messages.php:57 libraries/messages.inc.php:296 msgid "Error: relation already exists." msgstr "" -#: js/messages.php:58 libraries/messages.inc.php:302 +#: js/messages.php:58 libraries/messages.inc.php:298 msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:59 libraries/messages.inc.php:351 +#: js/messages.php:59 libraries/messages.inc.php:347 #: libraries/relation.lib.php:107 msgid "General relation features" msgstr "Общи възможности на релациите" -#: js/messages.php:59 libraries/messages.inc.php:260 +#: js/messages.php:59 libraries/messages.inc.php:256 #: libraries/relation.lib.php:101 libraries/relation.lib.php:108 msgid "Disabled" msgstr "Забранено" -#: js/messages.php:60 libraries/messages.inc.php:850 +#: js/messages.php:60 libraries/messages.inc.php:846 msgid "Select referenced key" msgstr "" -#: js/messages.php:61 libraries/messages.inc.php:848 +#: js/messages.php:61 libraries/messages.inc.php:844 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:62 libraries/messages.inc.php:653 +#: js/messages.php:62 libraries/messages.inc.php:649 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:63 libraries/messages.inc.php:142 pmd_general.php:77 +#: js/messages.php:63 libraries/messages.inc.php:138 pmd_general.php:77 #: tbl_relation.php:548 msgid "Choose field to display" msgstr "Изберете Полета за показване" @@ -1085,9 +1085,9 @@ msgid "Prev" msgstr "Предишен" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2332 -#: libraries/common.lib.php:2335 libraries/display_tbl.lib.php:338 -#: libraries/messages.inc.php:543 server_binlog.php:205 server_binlog.php:207 +#: js/messages.php:77 libraries/common.lib.php:2344 +#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: libraries/messages.inc.php:539 server_binlog.php:205 server_binlog.php:207 #: tbl_printview.php:424 tbl_structure.php:802 msgid "Next" msgstr "Следващ" @@ -1162,27 +1162,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1543 +#: js/messages.php:97 libraries/common.lib.php:1555 msgid "Jan" msgstr "януари" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1545 +#: js/messages.php:99 libraries/common.lib.php:1557 msgid "Feb" msgstr "февруари" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1547 +#: js/messages.php:101 libraries/common.lib.php:1559 msgid "Mar" msgstr "март" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1549 +#: js/messages.php:103 libraries/common.lib.php:1561 msgid "Apr" msgstr "април" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1551 +#: js/messages.php:105 libraries/common.lib.php:1563 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1190,37 +1190,37 @@ msgid "May" msgstr "май" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1553 +#: js/messages.php:107 libraries/common.lib.php:1565 msgid "Jun" msgstr "юни" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1555 +#: js/messages.php:109 libraries/common.lib.php:1567 msgid "Jul" msgstr "юли" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1557 +#: js/messages.php:111 libraries/common.lib.php:1569 msgid "Aug" msgstr "август" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1559 +#: js/messages.php:113 libraries/common.lib.php:1571 msgid "Sep" msgstr "септември" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1561 +#: js/messages.php:115 libraries/common.lib.php:1573 msgid "Oct" msgstr "октомври" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1563 +#: js/messages.php:117 libraries/common.lib.php:1575 msgid "Nov" msgstr "ноември" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1565 +#: js/messages.php:119 libraries/common.lib.php:1577 msgid "Dec" msgstr "декември" @@ -1261,37 +1261,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1568 +#: js/messages.php:132 libraries/common.lib.php:1580 msgid "Sun" msgstr "нд" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1570 +#: js/messages.php:134 libraries/common.lib.php:1582 msgid "Mon" msgstr "пн" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1572 +#: js/messages.php:136 libraries/common.lib.php:1584 msgid "Tue" msgstr "вт" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1574 +#: js/messages.php:138 libraries/common.lib.php:1586 msgid "Wed" msgstr "ср" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1576 +#: js/messages.php:140 libraries/common.lib.php:1588 msgid "Thu" msgstr "чт" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1578 +#: js/messages.php:142 libraries/common.lib.php:1590 msgid "Fri" msgstr "пт" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1580 +#: js/messages.php:144 libraries/common.lib.php:1592 msgid "Sat" msgstr "сб" @@ -1365,77 +1365,77 @@ msgstr "Заето" msgid "Second" msgstr "на секунда" -#: libraries/Config.class.php:1015 libraries/messages.inc.php:338 +#: libraries/Config.class.php:1015 libraries/messages.inc.php:334 msgid "Font size" msgstr "Размер на шрифта" #: libraries/File.class.php:344 libraries/File.class.php:432 #: libraries/File.class.php:569 libraries/File.class.php:708 -#: libraries/messages.inc.php:1201 +#: libraries/messages.inc.php:1197 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.class.php:414 libraries/messages.inc.php:1198 +#: libraries/File.class.php:414 libraries/messages.inc.php:1194 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:417 libraries/messages.inc.php:1197 +#: libraries/File.class.php:417 libraries/messages.inc.php:1193 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:420 libraries/messages.inc.php:1200 +#: libraries/File.class.php:420 libraries/messages.inc.php:1196 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:423 libraries/messages.inc.php:1199 +#: libraries/File.class.php:423 libraries/messages.inc.php:1195 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:426 libraries/messages.inc.php:1195 +#: libraries/File.class.php:426 libraries/messages.inc.php:1191 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:429 libraries/messages.inc.php:1196 +#: libraries/File.class.php:429 libraries/messages.inc.php:1192 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:908 libraries/messages.inc.php:319 +#: libraries/File.class.php:908 libraries/messages.inc.php:315 #, fuzzy msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "Може да има приблизителна стойност. Виж FAQ 3.11" -#: libraries/Index.class.php:428 libraries/messages.inc.php:554 +#: libraries/Index.class.php:428 libraries/messages.inc.php:550 #: tbl_relation.php:529 msgid "No index defined!" msgstr "Не е дефиниран индекс!" -#: libraries/Index.class.php:433 libraries/messages.inc.php:411 +#: libraries/Index.class.php:433 libraries/messages.inc.php:407 #: server_databases.php:132 tbl_tracking.php:316 msgid "Indexes" msgstr "Индекси" -#: libraries/Index.class.php:444 libraries/messages.inc.php:1186 +#: libraries/Index.class.php:444 libraries/messages.inc.php:1182 #: 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:475 tbl_tracking.php:322 msgid "Unique" msgstr "Уникално" -#: libraries/Index.class.php:445 libraries/messages.inc.php:596 +#: libraries/Index.class.php:445 libraries/messages.inc.php:592 #: tbl_tracking.php:323 msgid "Packed" msgstr "" -#: libraries/Index.class.php:447 libraries/messages.inc.php:131 +#: libraries/Index.class.php:447 libraries/messages.inc.php:127 #: tbl_tracking.php:325 msgid "Cardinality" msgstr "Кардиналност" -#: libraries/Index.class.php:450 libraries/messages.inc.php:162 +#: libraries/Index.class.php:450 libraries/messages.inc.php:158 #: tbl_tracking.php:279 tbl_tracking.php:328 #, fuzzy msgid "Comment" @@ -1444,29 +1444,29 @@ msgstr "Коментари" #: libraries/Index.class.php:466 libraries/common.lib.php:616 #: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:280 pdf_pages.php:280 +#: libraries/messages.inc.php:276 pdf_pages.php:280 #: setup/frames/index.inc.php:124 setup/lib/messages.inc.php:352 #: tbl_row_action.php:69 msgid "Edit" msgstr "Редактиране" -#: libraries/Index.class.php:472 libraries/messages.inc.php:666 +#: libraries/Index.class.php:472 libraries/messages.inc.php:662 msgid "The primary key has been dropped" msgstr " Главния ключ беше изтрит." -#: libraries/Index.class.php:476 libraries/messages.inc.php:413 +#: libraries/Index.class.php:476 libraries/messages.inc.php:409 #, php-format msgid "Index %s has been dropped" msgstr "Индекса %s беше изтрит" -#: libraries/Index.class.php:576 libraries/messages.inc.php:412 +#: libraries/Index.class.php:576 libraries/messages.inc.php:408 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "" -#: libraries/List_Database.class.php:431 libraries/messages.inc.php:218 +#: libraries/List_Database.class.php:431 libraries/messages.inc.php:214 #: libraries/server_links.inc.php:41 server_databases.php:88 #: server_privileges.php:1621 setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" @@ -1495,85 +1495,85 @@ msgid_plural "%1$d rows inserted." msgstr[0] "Няма върнати редове" msgstr[1] "Няма върнати редове" -#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:549 +#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:545 msgid "" "There is no detailed status information available for this storage engine." msgstr "Няма детайлна информация за състоянието на това хранилище на данни." -#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:291 +#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:287 #, php-format msgid "%s is available on this MySQL server." msgstr "%s е разрешен на този MySQL сървър." -#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:292 +#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:288 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s е изключен за този MySQL сървър." -#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:294 +#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:290 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "Този MySQL сървър не поддържа хранилището на данни %s." -#: libraries/Table.class.php:1019 libraries/messages.inc.php:443 +#: libraries/Table.class.php:1019 libraries/messages.inc.php:439 msgid "Invalid database" msgstr "Невалидна база от данни" -#: libraries/Table.class.php:1033 libraries/messages.inc.php:450 +#: libraries/Table.class.php:1033 libraries/messages.inc.php:446 #: tbl_get_field.php:26 msgid "Invalid table name" msgstr "Невалидно име на таблица" -#: libraries/Table.class.php:1048 libraries/messages.inc.php:301 +#: libraries/Table.class.php:1048 libraries/messages.inc.php:297 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "Грешка при преименуване на таблица %1$s в %2$s" -#: libraries/Table.class.php:1132 libraries/messages.inc.php:754 +#: libraries/Table.class.php:1132 libraries/messages.inc.php:750 #, php-format msgid "Table %s has been renamed to %s" msgstr "Таблица %s беше преименувана на %s" -#: libraries/Theme.class.php:162 libraries/messages.inc.php:1099 +#: libraries/Theme.class.php:162 libraries/messages.inc.php:1095 #, php-format msgid "No valid image path for theme %s found!" msgstr "Не е открит валиден път на тема %s!" -#: libraries/Theme.class.php:384 libraries/messages.inc.php:1097 +#: libraries/Theme.class.php:384 libraries/messages.inc.php:1093 msgid "No preview available." msgstr "" -#: libraries/Theme.class.php:387 libraries/messages.inc.php:1089 +#: libraries/Theme.class.php:387 libraries/messages.inc.php:1085 msgid "take it" msgstr "" -#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1096 +#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1092 #, php-format msgid "Default theme %s not found!" msgstr "Темата по подразбиране %s не е намерена!" -#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1098 +#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1094 #, php-format msgid "Theme %s not found!" msgstr "Тема %s не е намерена!" -#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1100 +#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1096 #, php-format msgid "Theme path not found for theme %s!" msgstr "Не е открит пътя на тема %s!" -#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1101 +#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1097 #: test/theme.php:161 themes.php:21 themes.php:41 msgid "Theme / Style" msgstr "Тема / Стил" -#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:172 +#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:168 msgid "Cannot connect: invalid settings." msgstr "Връзката не може да бъде осъществена: невалидни настройки." #: libraries/auth/config.auth.lib.php:92 #: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65 -#: libraries/messages.inc.php:1238 test/theme.php:152 +#: libraries/messages.inc.php:1234 test/theme.php:152 #, php-format msgid "Welcome to %s" msgstr "Добре дошли в %s" @@ -1597,104 +1597,104 @@ msgstr "" "config.inc.php файла и да се уверите, че те отговарят на информацията " "предоставена от администратора на MySQL сървъра." -#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:488 +#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:484 msgid "Log in" msgstr "Вход" #: libraries/auth/cookie.auth.lib.php:246 -#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:659 +#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:655 #: libraries/navigation_header.inc.php:93 #: libraries/navigation_header.inc.php:95 msgid "phpMyAdmin documentation" msgstr "phpMyAdmin документация" #: libraries/auth/cookie.auth.lib.php:258 -#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:492 +#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:488 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:493 +#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:489 msgid "Server:" msgstr "Сървър" -#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:494 +#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:490 msgid "Username:" msgstr "Име:" -#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:491 +#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:487 msgid "Password:" msgstr "Парола:" -#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:854 +#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:850 msgid "Server Choice" msgstr "Избор на сървър" #: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 -#: libraries/messages.inc.php:177 +#: libraries/messages.inc.php:173 msgid "Cookies must be enabled past this point." msgstr "Оттук нататък са необходими \"Cookies\"." #: libraries/auth/cookie.auth.lib.php:671 -#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:489 +#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:485 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" #: libraries/auth/cookie.auth.lib.php:675 -#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:544 +#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:540 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" #: libraries/auth/cookie.auth.lib.php:685 #: libraries/auth/cookie.auth.lib.php:687 -#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:126 +#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:122 msgid "Cannot log in to the MySQL server" msgstr "Не мога да се логна към MySQL сървъра" -#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1245 +#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1241 msgid "Wrong username/password. Access denied." msgstr "Грешно име/парола. Достъп отказан." #: libraries/auth/swekey/swekey.auth.lib.php:118 -#: libraries/messages.inc.php:1057 +#: libraries/messages.inc.php:1053 #, php-format msgid "File %s does not contain any key id" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:157 #: libraries/auth/swekey/swekey.auth.lib.php:180 -#: libraries/messages.inc.php:1056 +#: libraries/messages.inc.php:1052 msgid "Hardware authentication failed" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:166 -#: libraries/messages.inc.php:1058 +#: libraries/messages.inc.php:1054 msgid "No valid authentication key plugged" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:202 -#: libraries/messages.inc.php:1055 +#: libraries/messages.inc.php:1051 msgid "Authenticating..." msgstr "" -#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1230 +#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1226 msgid "View image" msgstr "" -#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:652 +#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:648 msgid "Play audio" msgstr "" -#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1232 +#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1228 msgid "View video" msgstr "" -#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:269 +#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:265 msgid "Download file" msgstr "" -#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:128 +#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:124 msgid "" "Couldn't load the iconv or recode extension needed for charset conversion. " "Either configure PHP to enable these extensions or disable charset " @@ -1707,7 +1707,7 @@ msgstr "" #: libraries/charset_conversion.lib.php:79 #: libraries/charset_conversion.lib.php:90 -#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:130 +#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:126 msgid "" "Couldn't use the iconv, libiconv, or recode_string functions, although the " "necessary extensions appear to be loaded. Check your PHP configuration." @@ -1716,7 +1716,7 @@ msgstr "" "докато протоколите за разширенията са заредени. Проверете конфигурацията на " "PHP." -#: libraries/common.inc.php:583 libraries/messages.inc.php:170 +#: libraries/common.inc.php:583 libraries/messages.inc.php:166 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!" @@ -1751,22 +1751,22 @@ msgstr "" msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:636 libraries/messages.inc.php:448 +#: libraries/common.inc.php:636 libraries/messages.inc.php:444 #, 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/messages.inc.php:856 libraries/select_server.lib.php:41 +#: libraries/messages.inc.php:852 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/messages.inc.php:437 +#: libraries/common.inc.php:823 libraries/messages.inc.php:433 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.lib.php:147 libraries/messages.inc.php:499 +#: libraries/common.lib.php:147 libraries/messages.inc.php:495 #, php-format msgid "Max: %s%s" msgstr "Максимален размер: %s%s" @@ -1788,7 +1788,7 @@ msgstr "Изпратени" #: libraries/common.lib.php:428 libraries/common.lib.php:430 #: libraries/common.lib.php:432 libraries/common.lib.php:448 #: libraries/common.lib.php:450 libraries/dbg/setup.php:25 -#: libraries/display_export.lib.php:164 libraries/messages.inc.php:267 +#: libraries/display_export.lib.php:164 libraries/messages.inc.php:263 #: libraries/relation.lib.php:97 libraries/sql_query_form.lib.php:451 #: libraries/sql_query_form.lib.php:454 main.php:229 pdf_pages.php:37 #: pdf_pages.php:43 pdf_pages.php:49 pdf_pages.php:54 @@ -1798,55 +1798,55 @@ msgstr "Документация" #: libraries/common.lib.php:581 libraries/core.lib.php:234 #: libraries/core.lib.php:263 libraries/import.lib.php:134 -#: libraries/messages.inc.php:297 pdf_schema.php:32 pdf_schema.php:232 +#: libraries/messages.inc.php:293 pdf_schema.php:32 pdf_schema.php:232 #: tbl_change.php:1027 tbl_operations.php:213 tbl_relation.php:290 #: view_operations.php:62 msgid "Error" msgstr "Грешка" #: libraries/common.lib.php:595 libraries/header_printview.inc.php:61 -#: libraries/messages.inc.php:1023 server_processlist.php:60 +#: libraries/messages.inc.php:1019 server_processlist.php:60 #: server_status.php:247 msgid "SQL query" msgstr "SQL заявка" -#: libraries/common.lib.php:634 libraries/messages.inc.php:538 +#: libraries/common.lib.php:634 libraries/messages.inc.php:534 msgid "MySQL said: " msgstr "MySQL отговори: " -#: libraries/common.lib.php:667 libraries/messages.inc.php:76 +#: libraries/common.lib.php:667 libraries/messages.inc.php:72 #: pdf_schema.php:241 user_password.php:115 msgid "Back" msgstr "Назад" -#: libraries/common.lib.php:1177 libraries/messages.inc.php:309 +#: libraries/common.lib.php:1177 libraries/messages.inc.php:305 #: setup/lib/messages.inc.php:353 msgid "Explain SQL" msgstr "Explain SQL" -#: libraries/common.lib.php:1180 libraries/messages.inc.php:551 +#: libraries/common.lib.php:1180 libraries/messages.inc.php:547 msgid "Skip Explain SQL" msgstr "Пропусни Explain SQL" -#: libraries/common.lib.php:1212 libraries/messages.inc.php:563 +#: libraries/common.lib.php:1212 libraries/messages.inc.php:559 msgid "Without PHP Code" msgstr "без PHP код" -#: libraries/common.lib.php:1215 libraries/messages.inc.php:649 +#: libraries/common.lib.php:1215 libraries/messages.inc.php:645 #: setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "Създаване на PHP код" -#: libraries/common.lib.php:1233 libraries/messages.inc.php:737 +#: libraries/common.lib.php:1233 libraries/messages.inc.php:733 #: server_status.php:341 setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "Презареждане" -#: libraries/common.lib.php:1242 libraries/messages.inc.php:575 +#: libraries/common.lib.php:1242 libraries/messages.inc.php:571 msgid "Skip Validate SQL" msgstr "Пропусни Validate SQL" -#: libraries/common.lib.php:1245 libraries/messages.inc.php:1220 +#: libraries/common.lib.php:1245 libraries/messages.inc.php:1216 #: setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "Валидирай SQL-а" @@ -1862,11 +1862,11 @@ msgid "Inline" msgstr "Хранилища" #: libraries/common.lib.php:1332 libraries/common.lib.php:1347 -#: libraries/messages.inc.php:713 +#: libraries/messages.inc.php:709 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1351 libraries/messages.inc.php:1108 +#: libraries/common.lib.php:1351 libraries/messages.inc.php:1104 #: libraries/tbl_triggers.lib.php:28 server_processlist.php:58 msgid "Time" msgstr "Време" @@ -1900,46 +1900,56 @@ msgstr "ПБ" msgid "EiB" msgstr "ЕБ" +#. l10n: Thousands separator +#: libraries/common.lib.php:1417 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: libraries/common.lib.php:1419 +msgid "." +msgstr "." + #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1584 +#: libraries/common.lib.php:1596 #: libraries/transformations/text_plain__dateformat.inc.php:28 msgid "%B %d, %Y at %I:%M %p" msgstr "%e %B %Y в %H:%M" -#: libraries/common.lib.php:1886 +#: libraries/common.lib.php:1898 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s дена, %s часа, %s минути и %s секунди" -#: libraries/common.lib.php:2301 libraries/common.lib.php:2304 -#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:664 +#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:660 #: server_status.php:608 msgid "Begin" msgstr "Начало" -#: libraries/common.lib.php:2302 libraries/common.lib.php:2305 -#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:665 +#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:661 #: server_binlog.php:168 server_binlog.php:170 msgid "Previous" msgstr "Предишен" -#: libraries/common.lib.php:2333 libraries/common.lib.php:2336 -#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:289 +#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:285 msgid "End" msgstr "Край" -#: libraries/common.lib.php:2409 libraries/messages.inc.php:455 +#: libraries/common.lib.php:2421 libraries/messages.inc.php:451 #, php-format msgid "Jump to database "%s"." msgstr "Скочи към база от данни "%s"." -#: libraries/common.lib.php:2429 libraries/messages.inc.php:461 +#: libraries/common.lib.php:2441 libraries/messages.inc.php:457 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/core.lib.php:286 libraries/dbg/setup.php:22 -#: libraries/messages.inc.php:127 +#: libraries/messages.inc.php:123 #, php-format msgid "" "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " @@ -1948,115 +1958,115 @@ msgstr "" "не мога да заредя разширението %s,
моля проверете конфигурацията на PHP" #: libraries/db_events.inc.php:20 libraries/db_events.inc.php:22 -#: libraries/export/sql.php:415 libraries/messages.inc.php:306 +#: libraries/export/sql.php:415 libraries/messages.inc.php:302 msgid "Events" msgstr "" #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 -#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:541 +#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:537 #: libraries/tbl_triggers.lib.php:27 setup/frames/index.inc.php:112 msgid "Name" msgstr "Име" -#: libraries/db_links.inc.php:45 libraries/messages.inc.php:216 +#: libraries/db_links.inc.php:45 libraries/messages.inc.php:212 #, php-format msgid "Database %s has been dropped." msgstr "Базата данни %s беше изтрита." #: libraries/db_links.inc.php:57 libraries/db_links.inc.php:58 -#: libraries/db_links.inc.php:59 libraries/messages.inc.php:234 +#: libraries/db_links.inc.php:59 libraries/messages.inc.php:230 msgid "Database seems to be empty!" msgstr "" -#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1025 +#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1021 #: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60 #: querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1152 +#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1148 #: libraries/tbl_links.inc.php:69 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:86 libraries/messages.inc.php:719 +#: libraries/db_links.inc.php:86 libraries/messages.inc.php:715 msgid "Query" msgstr "Запитване по пример" -#: libraries/db_links.inc.php:91 libraries/messages.inc.php:253 +#: libraries/db_links.inc.php:91 libraries/messages.inc.php:249 msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:98 libraries/messages.inc.php:397 +#: libraries/db_links.inc.php:98 libraries/messages.inc.php:393 #: libraries/server_links.inc.php:88 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:104 libraries/messages.inc.php:587 +#: libraries/db_links.inc.php:104 libraries/messages.inc.php:583 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" msgstr "Операции" -#: libraries/db_links.inc.php:111 libraries/messages.inc.php:709 +#: libraries/db_links.inc.php:111 libraries/messages.inc.php:705 #: libraries/server_links.inc.php:66 server_privileges.php:72 #: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117 msgid "Privileges" msgstr "Привилегии" #: libraries/db_routines.inc.php:30 libraries/db_routines.inc.php:32 -#: libraries/messages.inc.php:812 +#: libraries/messages.inc.php:808 msgid "Routines" msgstr "" -#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:811 +#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:807 msgid "Return type" msgstr "" #: libraries/db_structure.lib.php:57 libraries/display_tbl.lib.php:1848 -#: libraries/messages.inc.php:65 +#: libraries/messages.inc.php:61 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "Може да има приблизителна стойност. Виж FAQ 3.11" -#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:593 +#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:589 #: server_databases.php:142 tbl_printview.php:336 tbl_structure.php:683 msgid "Overhead" msgstr "Загубено място" #: libraries/dbi/mysql.dbi.lib.php:112 libraries/dbi/mysqli.dbi.lib.php:124 -#: libraries/messages.inc.php:176 +#: libraries/messages.inc.php:172 msgid "Connection for controluser as defined in your configuration failed." msgstr "" #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 -#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:855 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:851 msgid "The server is not responding" msgstr "Няма отговор от сървъра" #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:1010 +#: libraries/messages.inc.php:1006 msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "" -#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:255 +#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:251 #: tbl_structure.php:609 msgid "Details..." msgstr "" -#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:143 +#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:139 #: main.php:91 user_password.php:111 user_password.php:129 msgid "Change password" msgstr "Смяна на паролата" -#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:561 +#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:557 #: libraries/replication_gui.lib.php:341 server_privileges.php:768 msgid "No Password" msgstr "Няма парола" -#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:610 +#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:606 #: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60 #: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335 #: libraries/replication_gui.lib.php:345 server_privileges.php:757 @@ -2065,13 +2075,13 @@ msgstr "Няма парола" msgid "Password" msgstr "Парола" -#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:806 +#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:802 #: libraries/replication_gui.lib.php:349 libraries/replication_gui.lib.php:352 #: server_privileges.php:776 server_privileges.php:779 msgid "Re-type" msgstr "Отново" -#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:608 +#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:604 msgid "Password Hashing" msgstr "" @@ -2081,91 +2091,91 @@ msgstr "" msgid "MySQL 4.0 compatible" msgstr "MySQL 4.0 съвместимо" -#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:353 +#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:349 #: libraries/replication_gui.lib.php:356 server_privileges.php:783 msgid "Generate Password" msgstr "Генериране на парола" -#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:352 +#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:348 #: libraries/replication_gui.lib.php:359 server_privileges.php:786 msgid "Generate" msgstr "Генериране" #: libraries/display_create_database.lib.php:22 -#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:189 +#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:185 msgid "Create new database" msgstr "Създаване на нова БД" -#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:185 +#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:181 msgid "Create" msgstr "Създай" -#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:564 +#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:560 #: server_privileges.php:74 server_privileges.php:1388 #: server_replication.php:35 msgid "No Privileges" msgstr "Няма привилегии" -#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:445 +#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:441 msgid "Table must have at least one field." msgstr "Таблицата трябва да има поне едно поле." -#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:190 +#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:186 #, php-format msgid "Create table on database %s" msgstr "Създаване на нова таблица в БД %s" -#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:577 +#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:573 msgid "Number of fields" msgstr "Брой полета" -#: libraries/display_export.lib.php:42 libraries/messages.inc.php:124 +#: libraries/display_export.lib.php:42 libraries/messages.inc.php:120 msgid "Could not load export plugins, please check your installation!" msgstr "" "Приставките за експортиране не могат да бъдат заредени, моля проверете " "инсталацията!" -#: libraries/display_export.lib.php:107 libraries/messages.inc.php:277 +#: libraries/display_export.lib.php:107 libraries/messages.inc.php:273 #, php-format msgid "Dump %s row(s) starting at record # %s" msgstr "Дъмп-ни %s реда като започнеш от %s." -#: libraries/display_export.lib.php:115 libraries/messages.inc.php:274 +#: libraries/display_export.lib.php:115 libraries/messages.inc.php:270 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:125 libraries/messages.inc.php:852 +#: libraries/display_export.lib.php:125 libraries/messages.inc.php:848 #: setup/lib/messages.inc.php:82 msgid "Save as file" msgstr "Изпращане" -#: libraries/display_export.lib.php:134 libraries/messages.inc.php:828 +#: libraries/display_export.lib.php:134 libraries/messages.inc.php:824 #, php-format msgid "Save on server in %s directory" msgstr "Записване на сървъра в директория %s" -#: libraries/display_export.lib.php:142 libraries/messages.inc.php:594 +#: libraries/display_export.lib.php:142 libraries/messages.inc.php:590 #: setup/lib/messages.inc.php:90 msgid "Overwrite existing file(s)" msgstr "Препокриване на съществуващите файлове" -#: libraries/display_export.lib.php:148 libraries/messages.inc.php:330 +#: libraries/display_export.lib.php:148 libraries/messages.inc.php:326 msgid "File name template" msgstr "Шаблон на файловото име" -#: libraries/display_export.lib.php:152 libraries/messages.inc.php:327 +#: libraries/display_export.lib.php:152 libraries/messages.inc.php:323 msgid "server name" msgstr "име на сървъра" -#: libraries/display_export.lib.php:155 libraries/messages.inc.php:326 +#: libraries/display_export.lib.php:155 libraries/messages.inc.php:322 msgid "database name" msgstr "име на базата от данни" -#: libraries/display_export.lib.php:158 libraries/messages.inc.php:328 +#: libraries/display_export.lib.php:158 libraries/messages.inc.php:324 msgid "table name" msgstr "име на таблицата" -#: libraries/display_export.lib.php:162 libraries/messages.inc.php:329 +#: libraries/display_export.lib.php:162 libraries/messages.inc.php:325 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2173,24 +2183,24 @@ msgid "" "3$s. Other text will be kept as is." msgstr "" -#: libraries/display_export.lib.php:202 libraries/messages.inc.php:331 +#: libraries/display_export.lib.php:202 libraries/messages.inc.php:327 msgid "remember template" msgstr "запомняне на шаблона" #: libraries/display_export.lib.php:210 libraries/display_import.lib.php:178 -#: libraries/display_import.lib.php:191 libraries/messages.inc.php:145 +#: libraries/display_import.lib.php:191 libraries/messages.inc.php:141 #: libraries/sql_query_form.lib.php:549 msgid "Character set of the file:" msgstr "Набор от знаци на файла:" -#: libraries/display_export.lib.php:235 libraries/messages.inc.php:166 +#: libraries/display_export.lib.php:235 libraries/messages.inc.php:162 #: setup/lib/messages.inc.php:84 msgid "Compression" 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/messages.inc.php:558 +#: libraries/export/sql.php:868 libraries/messages.inc.php:554 #: libraries/tbl_properties.inc.php:575 server_privileges.php:1836 #: server_processlist.php:75 msgid "None" @@ -2214,467 +2224,467 @@ msgstr "\"gzip-нато\"" msgid "bzipped" msgstr "\"bzip-нато\"" -#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1018 +#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1014 msgid "SQL compatibility mode" msgstr "Режим на съвместимост на SQL" -#: libraries/display_import.lib.php:67 libraries/messages.inc.php:398 +#: libraries/display_import.lib.php:67 libraries/messages.inc.php:394 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " "browsers." msgstr "" -#: libraries/display_import.lib.php:77 libraries/messages.inc.php:406 +#: libraries/display_import.lib.php:77 libraries/messages.inc.php:402 msgid "The file is being processed, please be patient." msgstr "" -#: libraries/display_import.lib.php:99 libraries/messages.inc.php:408 +#: libraries/display_import.lib.php:99 libraries/messages.inc.php:404 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." msgstr "" -#: libraries/display_import.lib.php:126 libraries/messages.inc.php:333 +#: libraries/display_import.lib.php:126 libraries/messages.inc.php:329 msgid "File to import" msgstr "Файл за импортиране" -#: libraries/display_import.lib.php:137 libraries/messages.inc.php:486 +#: libraries/display_import.lib.php:137 libraries/messages.inc.php:482 #: libraries/sql_query_form.lib.php:524 msgid "Location of the text file" msgstr "Местоположение на текстовия файл" -#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1203 +#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1199 msgid "File uploads are not allowed on this server." msgstr "На този сървър не е позволени качване на файлове." -#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1235 +#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1231 #: libraries/sql_query_form.lib.php:533 tbl_change.php:1028 msgid "The directory you set for upload work cannot be reached" msgstr "Директорията която сте указали за upload не може да бъде достигната" -#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1236 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1232 #: libraries/sql_query_form.lib.php:536 tbl_change.php:1031 msgid "web server upload directory" msgstr "директорията за upload на уеб сървъра" -#: libraries/display_import.lib.php:212 libraries/messages.inc.php:167 +#: libraries/display_import.lib.php:212 libraries/messages.inc.php:163 #, php-format msgid "Imported file compression will be automatically detected from: %s" msgstr "Компресията на файла за импортиране ще бъде автоматично избрана от: %s" -#: libraries/display_import.lib.php:219 libraries/messages.inc.php:600 +#: libraries/display_import.lib.php:219 libraries/messages.inc.php:596 msgid "Partial import" msgstr "Частично импортиране" -#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1105 +#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1101 #, php-format msgid "" "Previous import timed out, after resubmitting will continue from position %d." msgstr "" -#: libraries/display_import.lib.php:232 libraries/messages.inc.php:51 +#: libraries/display_import.lib.php:232 libraries/messages.inc.php:47 msgid "" "Allow the interruption of an import in case the script detects it is close " "to the PHP timeout limit. This might be good way to import large files, " "however it can break transactions." msgstr "" -#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1004 +#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1000 #: setup/lib/messages.inc.php:161 msgid "Number of records (queries) to skip from start" msgstr "Брой записи(завки), които да бъдат пропуснати от началото" -#: libraries/display_import.lib.php:255 libraries/messages.inc.php:396 +#: libraries/display_import.lib.php:255 libraries/messages.inc.php:392 #: setup/lib/messages.inc.php:160 msgid "Format of imported file" msgstr "Формат на импортирания файл" #: libraries/display_select_lang.lib.php:45 -#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:465 +#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:461 #: setup/frames/index.inc.php:70 msgid "Language" msgstr "Език" -#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:447 +#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:443 #, php-format msgid "%d is not valid row number." msgstr "%d не е валиден номер на ред." -#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:814 +#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:810 msgid "row(s) starting from record #" msgstr "реда започвайки от" -#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:817 +#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:813 msgid "horizontal" msgstr "хоризонтален" -#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:816 +#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:812 msgid "horizontal (rotated headers)" msgstr "хоризонтален (обърнати хедъри)" -#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:819 +#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:815 msgid "vertical" msgstr "вертикален" -#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:818 +#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:814 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "в %s вид и повтаряне на имената на колоните през всеки %s
" -#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:495 +#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:491 msgid "This operation could take a long time. Proceed anyway?" msgstr "Операцията може да продължи дълго. Да продължи ли въпреки това?" -#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1012 +#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1008 msgid "Sort by key" msgstr "Сортиране по ключ" #: libraries/display_tbl.lib.php:555 libraries/import.lib.php:1082 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:591 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:587 #: tbl_select.php:267 tbl_structure.php:754 #, fuzzy msgid "Options" msgstr "Операции" #: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:570 -#: libraries/messages.inc.php:601 +#: libraries/messages.inc.php:597 msgid "Partial Texts" msgstr "Частични текстове" #: libraries/display_tbl.lib.php:561 libraries/display_tbl.lib.php:574 -#: libraries/messages.inc.php:346 +#: libraries/messages.inc.php:342 msgid "Full Texts" msgstr "Пълни текстове" -#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:739 +#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:735 #, fuzzy msgid "Relational key" msgstr "Релационна схема" -#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:738 +#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:734 msgid "Relational display field" msgstr "" -#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:872 +#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:868 msgid "Show binary contents" msgstr "" -#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:873 +#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:869 msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:871 +#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:867 msgid "Show binary contents as HEX" msgstr "" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:375 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:371 #: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320 msgid "Hide" msgstr "" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:508 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:504 #: libraries/tbl_properties.inc.php:144 transformation_overview.php:47 msgid "Browser transformation" msgstr "Браузърна трансформация" #: libraries/display_tbl.lib.php:1126 libraries/display_tbl.lib.php:1130 -#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:308 +#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:304 msgid "Execute bookmarked query" msgstr "Стартиране на запазена SQL-заявка" #: libraries/display_tbl.lib.php:1145 libraries/display_tbl.lib.php:1157 -#: libraries/messages.inc.php:244 +#: libraries/messages.inc.php:240 msgid "The row has been deleted" msgstr "Редът беше изтрит" #: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056 -#: libraries/messages.inc.php:460 server_processlist.php:71 +#: libraries/messages.inc.php:456 server_processlist.php:71 #: tbl_row_action.php:64 msgid "Kill" msgstr "СТОП" -#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:849 +#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:845 msgid "in query" msgstr "в запитването" -#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:881 +#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:877 msgid "Showing rows" msgstr "Показване на записи " -#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1113 +#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1109 msgid "total" msgstr "Общо" -#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:727 +#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:723 #: sql.php:524 #, php-format msgid "Query took %01.4f sec" msgstr "Заявката отне %01.4f секунди" -#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:135 +#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:131 #: 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:471 msgid "Change" msgstr "Променяне" -#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:724 +#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:720 msgid "Query results operations" msgstr "Операции с резулатата от заявката" -#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:671 +#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:667 msgid "Print view (with full texts)" msgstr "Преглед за печат (с пълните текстове)" -#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:482 +#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:478 msgid "Link not found" msgstr "Връзките не са намерени" -#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1224 +#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1220 #: main.php:228 msgid "Version information" msgstr "Информация за весията" -#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:423 +#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:419 msgid "Data home directory" msgstr "" -#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:424 +#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:420 msgid "The common part of the directory path for all InnoDB data files." msgstr "" -#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:422 +#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:418 #, fuzzy msgid "Data files" msgstr "Само данните" -#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:418 +#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:414 msgid "Autoextend increment" msgstr "" -#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:419 +#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:415 msgid "" " The increment size for extending the size of an autoextending tablespace " "when it becomes full." msgstr "" -#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:420 +#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:416 msgid "Buffer pool size" msgstr "" -#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:421 +#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:417 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." msgstr "" -#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:112 +#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:108 msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:426 +#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:422 #: server_status.php:306 msgid "InnoDB Status" msgstr "InnoDB Състояние" -#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:113 +#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:109 msgid "Buffer Pool Usage" msgstr "" -#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1114 +#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1110 #: server_databases.php:137 server_databases.php:305 server_status.php:414 #: server_status.php:475 server_status.php:496 tbl_printview.php:351 #: tbl_structure.php:697 msgid "Total" msgstr "Общо" -#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:425 +#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:421 msgid "pages" msgstr "страници" -#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:343 +#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:339 msgid "Free pages" msgstr "" -#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:259 +#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:255 msgid "Dirty pages" msgstr "" -#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:230 +#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:226 msgid "Pages containing data" msgstr "Страници съдържащи данни" -#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:598 +#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:594 #, fuzzy msgid "Pages to be flushed" msgstr "Кеша на таблица %s беше изчистен" -#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:119 +#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:115 msgid "Busy pages" msgstr "" -#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:467 +#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:463 msgid "Latched pages" msgstr "" -#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:111 +#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:107 msgid "Buffer Pool Activity" msgstr "" -#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:731 +#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:727 msgid "Read requests" msgstr "" -#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1244 +#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1240 msgid "Write requests" msgstr "" -#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:115 +#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:111 msgid "Read misses" msgstr "" -#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:117 +#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:113 msgid "Write waits" msgstr "" -#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:114 +#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:110 msgid "Read misses in %" msgstr "" -#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:116 +#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:112 msgid "Write waits in %" msgstr "" -#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:522 +#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:518 msgid "Data pointer size" msgstr "" -#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:523 +#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:519 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." msgstr "" -#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:528 +#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:524 msgid "Automatic recovery mode" msgstr "Режим на автоматично възстановяване" -#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:529 +#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:525 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." msgstr "" -#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:527 +#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:523 #, fuzzy msgid "Maximum size for temporary sort files" msgstr "Максимален размер на временните файлове при създаване на индекс" -#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:526 +#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:522 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " "INFILE)." msgstr "" -#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:525 +#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:521 msgid "Maximum size for temporary files on index creation" msgstr "Максимален размер на временните файлове при създаване на индекс" -#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:524 +#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:520 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " "method." msgstr "" -#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:531 +#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:527 msgid "Repair threads" msgstr "Поправка на нишките" -#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:530 +#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:526 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." msgstr "" -#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:533 +#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:529 msgid "Sort buffer size" msgstr "Размер на буфера за сортиране" -#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:532 +#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:528 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." msgstr "" -#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:620 +#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:616 msgid "Index cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:619 +#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:615 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." msgstr "" -#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:630 +#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:626 msgid "Record cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:629 +#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:625 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " "to the handle data (.xtd) and row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:624 +#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:620 msgid "Log cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:623 +#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:619 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:628 +#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:624 msgid "Log file threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:627 +#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:623 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:634 +#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:630 msgid "Transaction buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:633 +#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:629 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." msgstr "" -#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:611 +#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:607 msgid "Checkpoint frequency" msgstr "" -#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:612 +#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:608 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." msgstr "" -#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:615 +#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:611 msgid "Data log threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:616 +#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:612 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -2682,49 +2692,49 @@ msgid "" "that can be stored in the database." msgstr "" -#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:618 +#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:614 msgid "Garbage threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:617 +#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:613 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." msgstr "" -#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:622 +#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:618 #, fuzzy msgid "Log buffer size" msgstr "Размер на буфера за сортиране" -#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:621 +#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:617 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " "required to write a data log." msgstr "" -#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:613 +#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:609 msgid "Data file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:614 +#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:610 msgid "The grow size of the handle data (.xtd) files." msgstr "" -#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:632 +#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:628 msgid "Row file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:631 +#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:627 msgid "The grow size of the row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:626 +#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:622 msgid "Log file count" msgstr "" -#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:625 +#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:621 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -2734,19 +2744,19 @@ msgstr "" #: libraries/export/htmlword.php:132 libraries/export/odt.php:168 #: libraries/export/sql.php:881 libraries/export/texytext.php:130 -#: libraries/messages.inc.php:275 +#: libraries/messages.inc.php:271 msgid "Dumping data for table" msgstr "Дъмп (схема) на данните в таблицата" #: libraries/export/htmlword.php:185 libraries/export/odt.php:238 #: libraries/export/sql.php:785 libraries/export/texytext.php:177 -#: libraries/messages.inc.php:1086 +#: libraries/messages.inc.php:1082 msgid "Table structure for table" msgstr "Структура на таблица" #: libraries/export/latex.php:125 libraries/export/sql.php:232 #: libraries/export/xml.php:102 libraries/header_printview.inc.php:57 -#: libraries/messages.inc.php:381 libraries/replication_gui.lib.php:63 +#: libraries/messages.inc.php:377 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:170 libraries/replication_gui.lib.php:265 #: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325 #: server_privileges.php:692 server_privileges.php:695 @@ -2758,187 +2768,187 @@ msgstr "Хост" #: libraries/export/latex.php:130 libraries/export/sql.php:233 #: libraries/export/xml.php:107 libraries/header_printview.inc.php:59 -#: libraries/messages.inc.php:354 +#: libraries/messages.inc.php:350 msgid "Generation Time" msgstr "Време на генериране" #: libraries/export/latex.php:131 libraries/export/sql.php:235 -#: libraries/export/xml.php:108 libraries/messages.inc.php:864 main.php:186 +#: libraries/export/xml.php:108 libraries/messages.inc.php:860 main.php:186 msgid "Server version" msgstr "Версия на сървъра" #: libraries/export/latex.php:132 libraries/export/sql.php:236 -#: libraries/export/xml.php:109 libraries/messages.inc.php:651 +#: libraries/export/xml.php:109 libraries/messages.inc.php:647 msgid "PHP Version" msgstr "Версия на PHP" #: libraries/export/latex.php:201 libraries/export/sql.php:868 -#: libraries/messages.inc.php:226 server_databases.php:127 +#: libraries/messages.inc.php:222 server_databases.php:127 #: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317 #: tbl_structure.php:666 msgid "Data" msgstr "Данни" -#: libraries/export/odt.php:318 libraries/messages.inc.php:506 +#: libraries/export/odt.php:318 libraries/messages.inc.php:502 #: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "MIME-тип" -#: libraries/export/sql.php:387 libraries/messages.inc.php:711 +#: libraries/export/sql.php:387 libraries/messages.inc.php:707 msgid "Procedures" msgstr "Процедури" -#: libraries/export/sql.php:401 libraries/messages.inc.php:348 +#: libraries/export/sql.php:401 libraries/messages.inc.php:344 msgid "Functions" msgstr "Функции" -#: libraries/export/sql.php:618 libraries/messages.inc.php:174 +#: libraries/export/sql.php:618 libraries/messages.inc.php:170 msgid "Constraints for dumped tables" msgstr "Ограничения за дъмпнати таблици" -#: libraries/export/sql.php:627 libraries/messages.inc.php:175 +#: libraries/export/sql.php:627 libraries/messages.inc.php:171 msgid "Constraints for table" msgstr "Ограничения за таблица" -#: libraries/export/sql.php:727 libraries/messages.inc.php:512 +#: libraries/export/sql.php:727 libraries/messages.inc.php:508 msgid "MIME TYPES FOR TABLE" msgstr "MIME ТИПОВЕ ЗА ТАБЛИЦА" -#: libraries/export/sql.php:739 libraries/messages.inc.php:743 +#: libraries/export/sql.php:739 libraries/messages.inc.php:739 msgid "RELATIONS FOR TABLE" msgstr "РЕЛАЦИИ ЗА ТАБЛИЦА" -#: libraries/export/sql.php:796 libraries/messages.inc.php:1178 +#: libraries/export/sql.php:796 libraries/messages.inc.php:1174 #: libraries/tbl_triggers.lib.php:19 msgid "Triggers" msgstr "" -#: libraries/export/sql.php:808 libraries/messages.inc.php:1046 +#: libraries/export/sql.php:808 libraries/messages.inc.php:1042 #, fuzzy msgid "Structure for view" msgstr "Само структурата" -#: libraries/export/sql.php:817 libraries/messages.inc.php:1029 +#: libraries/export/sql.php:817 libraries/messages.inc.php:1025 msgid "Stand-in structure for view" msgstr "" #: libraries/footer.inc.php:184 libraries/footer.inc.php:195 -#: libraries/footer.inc.php:198 libraries/messages.inc.php:586 +#: libraries/footer.inc.php:198 libraries/messages.inc.php:582 msgid "Open new phpMyAdmin window" msgstr "Отваряне на нов прозорец с phpMyAdmin" -#: libraries/header.inc.php:115 libraries/messages.inc.php:542 +#: libraries/header.inc.php:115 libraries/messages.inc.php:538 #, fuzzy msgid "New table" msgstr "Няма таблици" #: libraries/header_printview.inc.php:50 libraries/header_printview.inc.php:55 -#: libraries/messages.inc.php:1024 +#: libraries/messages.inc.php:1020 msgid "SQL result" msgstr "SQL резултат" -#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:350 +#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:346 msgid "Generated by" msgstr "Генерирано от" #: libraries/header_printview.inc.php:63 libraries/import.lib.php:145 -#: libraries/messages.inc.php:820 navigation.php:652 navigation.php:674 +#: libraries/messages.inc.php:816 navigation.php:652 navigation.php:674 #: server_databases.php:122 tbl_printview.php:394 tbl_structure.php:366 #: tbl_structure.php:778 msgid "Rows" msgstr "Редове" -#: libraries/import.lib.php:150 libraries/messages.inc.php:285 sql.php:520 +#: libraries/import.lib.php:150 libraries/messages.inc.php:281 sql.php:520 #: tbl_change.php:181 tbl_get_field.php:35 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL върна празен резултат (т.е. нула редове)." -#: libraries/import.lib.php:1078 libraries/messages.inc.php:399 +#: libraries/import.lib.php:1078 libraries/messages.inc.php:395 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1079 libraries/messages.inc.php:400 +#: libraries/import.lib.php:1079 libraries/messages.inc.php:396 msgid "View a structure`s contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1080 libraries/messages.inc.php:401 +#: libraries/import.lib.php:1080 libraries/messages.inc.php:397 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1081 libraries/messages.inc.php:402 +#: libraries/import.lib.php:1081 libraries/messages.inc.php:398 msgid "Edit its structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1084 libraries/messages.inc.php:362 +#: libraries/import.lib.php:1084 libraries/messages.inc.php:358 #, fuzzy msgid "Go to database" msgstr "Няма бази от данни" #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:869 +#: libraries/messages.inc.php:865 msgid "settings" msgstr "" -#: libraries/import.lib.php:1106 libraries/messages.inc.php:363 +#: libraries/import.lib.php:1106 libraries/messages.inc.php:359 msgid "Go to table" msgstr "" -#: libraries/import.lib.php:1109 libraries/messages.inc.php:1047 +#: libraries/import.lib.php:1109 libraries/messages.inc.php:1043 #, fuzzy msgid "structure" msgstr "Структура" -#: libraries/import.lib.php:1115 libraries/messages.inc.php:364 +#: libraries/import.lib.php:1115 libraries/messages.inc.php:360 msgid "Go to view" msgstr "" #: libraries/import/csv.php:58 libraries/import/csv.php:70 #: libraries/import/csv.php:74 libraries/import/csv.php:78 -#: libraries/messages.inc.php:442 +#: libraries/messages.inc.php:438 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "" -#: libraries/import/csv.php:59 libraries/messages.inc.php:323 +#: libraries/import/csv.php:59 libraries/messages.inc.php:319 msgid "Fields terminated by" msgstr "Полетата завършват с" -#: libraries/import/csv.php:71 libraries/messages.inc.php:320 +#: libraries/import/csv.php:71 libraries/messages.inc.php:316 msgid "Fields enclosed by" msgstr "Полетата са оградени с" -#: libraries/import/csv.php:75 libraries/messages.inc.php:321 +#: libraries/import/csv.php:75 libraries/messages.inc.php:317 msgid "Fields escaped by" msgstr "Представка на специалните знаци" -#: libraries/import/csv.php:79 libraries/messages.inc.php:481 +#: libraries/import/csv.php:79 libraries/messages.inc.php:477 msgid "Lines terminated by" msgstr "Редовете завършват с" -#: libraries/import/csv.php:119 libraries/messages.inc.php:439 +#: libraries/import/csv.php:119 libraries/messages.inc.php:435 #, php-format msgid "Invalid column (%s) specified!" msgstr "Невалидна колона (%s)!" #: libraries/import/csv.php:177 libraries/import/csv.php:424 -#: libraries/messages.inc.php:441 +#: libraries/messages.inc.php:437 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/import/csv.php:312 libraries/messages.inc.php:440 +#: libraries/import/csv.php:312 libraries/messages.inc.php:436 #, php-format msgid "Invalid field count in CSV input on line %d." msgstr "" -#: libraries/import/ldi.php:55 libraries/messages.inc.php:446 +#: libraries/import/ldi.php:55 libraries/messages.inc.php:442 msgid "This plugin does not support compressed imports!" msgstr "" #: libraries/import/xml.php:74 libraries/import/xml.php:130 -#: libraries/messages.inc.php:1247 +#: libraries/messages.inc.php:1243 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -2968,331 +2978,321 @@ msgstr "" msgid "ltr" msgstr "ltr" -#. l10n: Thousands separator -#: libraries/messages.inc.php:21 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: libraries/messages.inc.php:23 -msgid "." -msgstr "." - -#: libraries/messages.inc.php:25 server_status.php:461 +#: libraries/messages.inc.php:21 server_status.php:461 msgid "Aborted" msgstr "Прекъснати" -#: libraries/messages.inc.php:28 main.php:68 +#: libraries/messages.inc.php:24 main.php:68 #, fuzzy msgid "Actions" msgstr "Действие" -#: libraries/messages.inc.php:34 libraries/tbl_properties.inc.php:780 +#: libraries/messages.inc.php:30 libraries/tbl_properties.inc.php:780 #: tbl_structure.php:543 #, php-format msgid "Add %s field(s)" msgstr "Добавяне на %s поле(та)" -#: libraries/messages.inc.php:35 +#: libraries/messages.inc.php:31 msgid "Add custom comment into header (\\n splits lines)" msgstr "Добавяне на коментар в хедъра (\\n нов ред)" -#: libraries/messages.inc.php:36 +#: libraries/messages.inc.php:32 msgid "Add into comments" msgstr "Добавяне в коментарите" -#: libraries/messages.inc.php:37 tbl_structure.php:541 +#: libraries/messages.inc.php:33 tbl_structure.php:541 msgid "Add new field" msgstr "Добавяне на ново поле" -#: libraries/messages.inc.php:38 server_privileges.php:1886 +#: libraries/messages.inc.php:34 server_privileges.php:1886 msgid "Add privileges on the following database" msgstr "Добавяне на привилегии към следната база от данни" -#: libraries/messages.inc.php:39 server_privileges.php:1907 +#: libraries/messages.inc.php:35 server_privileges.php:1907 msgid "Add privileges on the following table" msgstr "Добавяне на привилегии към следната таблица" -#: libraries/messages.inc.php:40 tbl_select.php:288 +#: libraries/messages.inc.php:36 tbl_select.php:288 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Добавяне на условие за търсене (съдържание на \"where\" клаузата):" -#: libraries/messages.inc.php:41 tbl_indexes.php:251 +#: libraries/messages.inc.php:37 tbl_indexes.php:251 #, php-format msgid "Add to index  %s column(s)" msgstr "  %s колона(и) беше(яха)добавени към индекса " -#: libraries/messages.inc.php:42 server_privileges.php:1570 +#: libraries/messages.inc.php:38 server_privileges.php:1570 #: server_privileges.php:1594 server_privileges.php:1988 #: server_privileges.php:2177 msgid "Add a new User" msgstr "Добавяне на нов потребител." -#: libraries/messages.inc.php:43 server_privileges.php:931 +#: libraries/messages.inc.php:39 server_privileges.php:931 msgid "You have added a new user." msgstr "Вие добавихте нов потребител." -#: libraries/messages.inc.php:44 server_privileges.php:571 +#: libraries/messages.inc.php:40 server_privileges.php:571 msgid "Administration" msgstr "Администрация" -#: libraries/messages.inc.php:45 tbl_structure.php:557 +#: libraries/messages.inc.php:41 tbl_structure.php:557 #, php-format msgid "After %s" msgstr "след %s" -#: libraries/messages.inc.php:46 tbl_change.php:1147 +#: libraries/messages.inc.php:42 tbl_change.php:1147 msgid "Go back to previous page" msgstr "връщане обратно" -#: libraries/messages.inc.php:47 tbl_change.php:1148 +#: libraries/messages.inc.php:43 tbl_change.php:1148 msgid "Insert another new row" msgstr "вмъкване на нов запис" -#: libraries/messages.inc.php:48 tbl_change.php:1160 +#: libraries/messages.inc.php:44 tbl_change.php:1160 msgid "Edit next row" msgstr "редактиране на следващия ред" -#: libraries/messages.inc.php:49 tbl_change.php:1152 +#: libraries/messages.inc.php:45 tbl_change.php:1152 msgid "Go back to this page" msgstr "връщане към тази страница" -#: libraries/messages.inc.php:50 querywindow.php:115 +#: libraries/messages.inc.php:46 querywindow.php:115 msgid "All" msgstr "всички" -#: libraries/messages.inc.php:53 tbl_operations.php:249 +#: libraries/messages.inc.php:49 tbl_operations.php:249 msgid "Alter table order by" msgstr "Подреждане на таблицата по" -#: libraries/messages.inc.php:54 tbl_operations.php:660 +#: libraries/messages.inc.php:50 tbl_operations.php:660 msgid "Analyze" msgstr "" -#: libraries/messages.inc.php:57 +#: libraries/messages.inc.php:53 #, fuzzy msgid "and" msgstr "и" -#: libraries/messages.inc.php:59 pmd_general.php:87 +#: libraries/messages.inc.php:55 pmd_general.php:87 msgid "Angular links" msgstr "" -#: libraries/messages.inc.php:60 tbl_structure.php:401 tbl_structure.php:415 +#: libraries/messages.inc.php:56 tbl_structure.php:401 tbl_structure.php:415 #: tbl_structure.php:429 #, php-format msgid "An index has been added on %s" msgstr "Беше добавен индекс на %s" -#: libraries/messages.inc.php:61 server_privileges.php:1521 +#: libraries/messages.inc.php:57 server_privileges.php:1521 #: server_privileges.php:2123 msgid "Any" msgstr "всеки" -#: libraries/messages.inc.php:62 libraries/replication_gui.lib.php:298 +#: libraries/messages.inc.php:58 libraries/replication_gui.lib.php:298 #: server_privileges.php:725 msgid "Any host" msgstr "Всеки хост" -#: libraries/messages.inc.php:63 libraries/replication_gui.lib.php:250 +#: libraries/messages.inc.php:59 libraries/replication_gui.lib.php:250 #: server_privileges.php:677 msgid "Any user" msgstr "Всеки потребител" -#: libraries/messages.inc.php:64 server_synchronize.php:449 +#: libraries/messages.inc.php:60 server_synchronize.php:449 #: server_synchronize.php:894 msgid "Apply Selected Changes" msgstr "" -#: libraries/messages.inc.php:66 tbl_structure.php:386 +#: libraries/messages.inc.php:62 tbl_structure.php:386 #, php-format msgid "A primary key has been added on %s" msgstr "Беше добавен първичен ключ към %s" -#: libraries/messages.inc.php:67 libraries/mysql_charsets.lib.php:368 +#: libraries/messages.inc.php:63 libraries/mysql_charsets.lib.php:368 msgid "Arabic" msgstr "Арабски" -#: libraries/messages.inc.php:68 libraries/mysql_charsets.lib.php:359 +#: libraries/messages.inc.php:64 libraries/mysql_charsets.lib.php:359 msgid "Armenian" msgstr "Арменски" -#: libraries/messages.inc.php:70 libraries/tbl_properties.inc.php:394 +#: libraries/messages.inc.php:66 libraries/tbl_properties.inc.php:394 msgid "As defined:" msgstr "" -#: libraries/messages.inc.php:71 tbl_structure.php:556 +#: libraries/messages.inc.php:67 tbl_structure.php:556 msgid "At Beginning of Table" msgstr "в началото на таблицата" -#: libraries/messages.inc.php:72 tbl_structure.php:555 +#: libraries/messages.inc.php:68 tbl_structure.php:555 msgid "At End of Table" msgstr "в края на таблицата" -#: libraries/messages.inc.php:73 libraries/tbl_properties.inc.php:108 +#: libraries/messages.inc.php:69 libraries/tbl_properties.inc.php:108 #: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:144 #: tbl_structure.php:180 msgid "Attributes" msgstr "Атрибути" -#: libraries/messages.inc.php:74 pdf_pages.php:303 pdf_pages.php:306 +#: libraries/messages.inc.php:70 pdf_pages.php:303 pdf_pages.php:306 msgid "Automatic layout" msgstr "Автоматичен лейаут" -#: libraries/messages.inc.php:77 libraries/mysql_charsets.lib.php:354 +#: libraries/messages.inc.php:73 libraries/mysql_charsets.lib.php:354 msgid "Baltic" msgstr "Балтийски" -#: libraries/messages.inc.php:78 libraries/sqlparser.lib.php:175 +#: libraries/messages.inc.php:74 libraries/sqlparser.lib.php:175 msgid "BEGIN CUT" msgstr "BEGIN CUT" -#: libraries/messages.inc.php:79 libraries/sqlparser.lib.php:179 +#: libraries/messages.inc.php:75 libraries/sqlparser.lib.php:179 msgid "BEGIN RAW" msgstr "BEGIN RAW" -#: libraries/messages.inc.php:80 libraries/mysql_charsets.lib.php:201 +#: libraries/messages.inc.php:76 libraries/mysql_charsets.lib.php:201 #: libraries/mysql_charsets.lib.php:402 tbl_change.php:518 msgid "Binary" msgstr " Двоично " -#: libraries/messages.inc.php:81 tbl_change.php:894 +#: libraries/messages.inc.php:77 tbl_change.php:894 msgid "Binary - do not edit" msgstr " Двоично - не се редактира " -#: libraries/messages.inc.php:82 libraries/server_links.inc.php:76 +#: libraries/messages.inc.php:78 libraries/server_links.inc.php:76 #: server_binlog.php:110 server_status.php:253 test/theme.php:121 #, fuzzy msgid "Binary log" msgstr " Двоично " -#: libraries/messages.inc.php:83 server_binlog.php:217 +#: libraries/messages.inc.php:79 server_binlog.php:217 msgid "Event type" msgstr "Тип на събитието" -#: libraries/messages.inc.php:84 server_binlog.php:220 +#: libraries/messages.inc.php:80 server_binlog.php:220 msgid "Information" msgstr "Информация" -#: libraries/messages.inc.php:85 server_binlog.php:215 +#: libraries/messages.inc.php:81 server_binlog.php:215 msgid "Log name" msgstr "" -#: libraries/messages.inc.php:86 server_binlog.php:219 +#: libraries/messages.inc.php:82 server_binlog.php:219 msgid "Original position" msgstr "" -#: libraries/messages.inc.php:87 server_binlog.php:216 +#: libraries/messages.inc.php:83 server_binlog.php:216 msgid "Position" msgstr "" -#: libraries/messages.inc.php:88 libraries/replication_gui.lib.php:169 +#: libraries/messages.inc.php:84 libraries/replication_gui.lib.php:169 #: server_binlog.php:218 #, fuzzy msgid "Server ID" msgstr "Сървър" -#: libraries/messages.inc.php:92 +#: libraries/messages.inc.php:88 #, fuzzy msgctxt "$strBLOBRepositoryDisabled" msgid "Disabled" msgstr "Забранено" -#: libraries/messages.inc.php:95 +#: libraries/messages.inc.php:91 #, fuzzy msgctxt "$strBLOBRepositoryEnabled" msgid "Enabled" msgstr "Позволено" -#: libraries/messages.inc.php:97 tbl_change.php:888 +#: libraries/messages.inc.php:93 tbl_change.php:888 msgid "Remove BLOB Repository Reference" msgstr "" -#: libraries/messages.inc.php:98 +#: libraries/messages.inc.php:94 #, fuzzy msgctxt "$strBLOBRepositoryRepair" msgid "Repair" msgstr "Поправяне на таблицата" -#: libraries/messages.inc.php:99 tbl_change.php:987 +#: libraries/messages.inc.php:95 tbl_change.php:987 msgid "Upload to BLOB repository" msgstr "" -#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:359 +#: libraries/messages.inc.php:96 libraries/sql_query_form.lib.php:359 #: sql.php:677 msgid "Let every user access this bookmark" msgstr "Нека всеки потребител има достъп до този показалец" -#: libraries/messages.inc.php:103 sql.php:671 +#: libraries/messages.inc.php:99 sql.php:671 msgid "Label" msgstr "Етикет" -#: libraries/messages.inc.php:104 libraries/sql_query_form.lib.php:433 +#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:433 msgid "Bookmarked SQL query" msgstr "Запазване на SQL заявка" -#: libraries/messages.inc.php:105 libraries/sql_query_form.lib.php:365 +#: libraries/messages.inc.php:101 libraries/sql_query_form.lib.php:365 msgid "Replace existing bookmark of same name" msgstr "Препокриване не съществуващия показалец със същото име" -#: libraries/messages.inc.php:106 libraries/sql_query_form.lib.php:352 +#: libraries/messages.inc.php:102 libraries/sql_query_form.lib.php:352 #: sql.php:665 sql.php:666 sql.php:683 msgid "Bookmark this SQL query" msgstr "Запази тази SQL заявка" -#: libraries/messages.inc.php:107 libraries/sql_query_form.lib.php:466 +#: libraries/messages.inc.php:103 libraries/sql_query_form.lib.php:466 msgid "View only" msgstr "Само показване" -#: libraries/messages.inc.php:109 tbl_structure.php:161 +#: libraries/messages.inc.php:105 tbl_structure.php:161 #, fuzzy msgid "Browse distinct values" msgstr "Преглеждане на външните(foreign) стойности" -#: libraries/messages.inc.php:110 tbl_change.php:252 tbl_select.php:27 +#: libraries/messages.inc.php:106 tbl_change.php:252 tbl_select.php:27 #: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34 msgid "Browse foreign values" msgstr "Преглеждане на външните(foreign) стойности" -#: libraries/messages.inc.php:118 libraries/mysql_charsets.lib.php:213 +#: libraries/messages.inc.php:114 libraries/mysql_charsets.lib.php:213 msgid "Bulgarian" msgstr "Български" -#: libraries/messages.inc.php:120 +#: libraries/messages.inc.php:116 msgid "\"bzipped\"" msgstr "\"bzip-нато\"" -#: libraries/messages.inc.php:122 +#: libraries/messages.inc.php:118 msgid "Calendar" msgstr "Календар" -#: libraries/messages.inc.php:129 tbl_indexes.php:75 +#: libraries/messages.inc.php:125 tbl_indexes.php:75 msgid "Can't rename index to PRIMARY!" msgstr "Не мога да преименувам индекса на PRIMARY!" -#: libraries/messages.inc.php:132 libraries/mysql_charsets.lib.php:223 +#: libraries/messages.inc.php:128 libraries/mysql_charsets.lib.php:223 #: libraries/mysql_charsets.lib.php:409 msgid "case-insensitive" msgstr "нечувствително към регистъра" -#: libraries/messages.inc.php:133 libraries/mysql_charsets.lib.php:226 +#: libraries/messages.inc.php:129 libraries/mysql_charsets.lib.php:226 #: libraries/mysql_charsets.lib.php:411 msgid "case-sensitive" msgstr "чувствително към регистъра" -#: libraries/messages.inc.php:134 libraries/mysql_charsets.lib.php:332 +#: libraries/messages.inc.php:130 libraries/mysql_charsets.lib.php:332 msgid "Central European" msgstr "Централно европейски" -#: libraries/messages.inc.php:136 server_privileges.php:1969 +#: libraries/messages.inc.php:132 server_privileges.php:1969 msgid "... keep the old one." msgstr "... запазване на стария." -#: libraries/messages.inc.php:137 server_privileges.php:1967 +#: libraries/messages.inc.php:133 server_privileges.php:1967 msgid "Create a new user with the same privileges and ..." msgstr "Създаване нов потребител със същите привилегии и ..." -#: libraries/messages.inc.php:138 server_privileges.php:1972 +#: libraries/messages.inc.php:134 server_privileges.php:1972 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -3300,249 +3300,249 @@ msgstr "" " ... изтриване на стария от таблицата на потребителите и след това " "презареждане на привилегиите." -#: libraries/messages.inc.php:139 server_privileges.php:1970 +#: libraries/messages.inc.php:135 server_privileges.php:1970 msgid " ... delete the old one from the user tables." msgstr " ... изтриване на стария от таблицата на потребителите." -#: libraries/messages.inc.php:140 server_privileges.php:1971 +#: libraries/messages.inc.php:136 server_privileges.php:1971 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "" " ... отменяне на всички активни привилегии от стария и след това изтриване." -#: libraries/messages.inc.php:141 server_privileges.php:1964 +#: libraries/messages.inc.php:137 server_privileges.php:1964 msgid "Change Login Information / Copy User" msgstr "Промяна на логин информацията / Копиране на потребител" -#: libraries/messages.inc.php:144 libraries/mysql_charsets.lib.php:107 +#: libraries/messages.inc.php:140 libraries/mysql_charsets.lib.php:107 msgid "Charset" msgstr "Набор от знаци" -#: libraries/messages.inc.php:146 server_collations.php:40 +#: libraries/messages.inc.php:142 server_collations.php:40 msgid "Character Sets and Collations" msgstr "Набори от знаци и колации" -#: libraries/messages.inc.php:147 libraries/server_links.inc.php:57 +#: libraries/messages.inc.php:143 libraries/server_links.inc.php:57 #: test/theme.php:109 msgid "Charsets" msgstr "Набори от знации" -#: libraries/messages.inc.php:149 tbl_operations.php:661 +#: libraries/messages.inc.php:145 tbl_operations.php:661 #, fuzzy msgid "Check" msgstr "Чешки" -#: libraries/messages.inc.php:151 server_databases.php:293 +#: libraries/messages.inc.php:147 server_databases.php:293 #: server_databases.php:294 msgid "Check Privileges" msgstr "Проверка на привилегиите" -#: libraries/messages.inc.php:152 server_databases.php:289 +#: libraries/messages.inc.php:148 server_databases.php:289 #, php-format msgid "Check privileges for database "%s"." msgstr "Провери привилегиите за база от данни "%s"." -#: libraries/messages.inc.php:154 pdf_pages.php:261 +#: libraries/messages.inc.php:150 pdf_pages.php:261 msgid "Please choose a page to edit" msgstr "Моля изберете страница за редактиране" -#: libraries/messages.inc.php:157 +#: libraries/messages.inc.php:153 msgid "Displaying Column Comments" msgstr "Показване на коментари към Колоните" -#: libraries/messages.inc.php:159 pdf_pages.php:483 view_create.php:148 +#: libraries/messages.inc.php:155 pdf_pages.php:483 view_create.php:148 msgid "Column names" msgstr "Име на колона" -#: libraries/messages.inc.php:160 server_privileges.php:1685 +#: libraries/messages.inc.php:156 server_privileges.php:1685 msgid "Column-specific privileges" msgstr "Привилегии специфични за колоната" -#: libraries/messages.inc.php:164 +#: libraries/messages.inc.php:160 msgid "MySQL 4.0 compatible" msgstr "MySQL 4.0 съвместимо" -#: libraries/messages.inc.php:165 +#: libraries/messages.inc.php:161 msgid "Complete inserts" msgstr "Пълни INSERT-и" -#: libraries/messages.inc.php:168 +#: libraries/messages.inc.php:164 #, php-format msgid "Could not load default configuration from: \"%1$s\"" msgstr "Конфигурацията по подразбиране не може да бъде заредена от: \"%1$s\"" -#: libraries/messages.inc.php:169 main.php:306 +#: libraries/messages.inc.php:165 main.php:306 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: libraries/messages.inc.php:171 pdf_schema.php:672 +#: libraries/messages.inc.php:167 pdf_schema.php:672 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Моля конфигурирайте координатите за таблица %s" -#: libraries/messages.inc.php:173 server_status.php:433 +#: libraries/messages.inc.php:169 server_status.php:433 msgid "Connections" msgstr "Конекции" -#: libraries/messages.inc.php:179 tbl_operations.php:509 +#: libraries/messages.inc.php:175 tbl_operations.php:509 msgid "Copy table to (database.table):" msgstr "Копиране на таблица (база от данни.таблица):" -#: libraries/messages.inc.php:180 tbl_move_copy.php:58 +#: libraries/messages.inc.php:176 tbl_move_copy.php:58 #, php-format msgid "Table %s has been copied to %s." msgstr "Таблица %s беше копирана в %s." -#: libraries/messages.inc.php:181 tbl_move_copy.php:48 +#: libraries/messages.inc.php:177 tbl_move_copy.php:48 msgid "Can't copy table to same one!" msgstr "Не може да се копира таблицата към себе си!" -#: libraries/messages.inc.php:182 server_synchronize.php:94 +#: libraries/messages.inc.php:178 server_synchronize.php:94 msgid "Could not connect to the source" msgstr "" -#: libraries/messages.inc.php:183 server_synchronize.php:97 +#: libraries/messages.inc.php:179 server_synchronize.php:97 msgid "Could not connect to the target" msgstr "" -#: libraries/messages.inc.php:184 server_processlist.php:24 +#: libraries/messages.inc.php:180 server_processlist.php:24 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin не можа да спре нишка %s. Вероятно вече е била затворена." -#: libraries/messages.inc.php:187 +#: libraries/messages.inc.php:183 #, php-format msgid "Create an index on %s columns" msgstr "Създаване на индекс върху  %s колони" -#: libraries/messages.inc.php:188 tbl_indexes.php:160 +#: libraries/messages.inc.php:184 tbl_indexes.php:160 msgid "Create a new index" msgstr "Създай нов индекс" -#: libraries/messages.inc.php:191 pdf_pages.php:297 pmd_pdf.php:114 +#: libraries/messages.inc.php:187 pdf_pages.php:297 pmd_pdf.php:114 msgid "Create a page" msgstr "Създай нова Страница" -#: libraries/messages.inc.php:192 +#: libraries/messages.inc.php:188 msgid "Creation of PDFs" msgstr "Създаване на PDF-и" -#: libraries/messages.inc.php:193 pmd_general.php:74 pmd_general.php:306 +#: libraries/messages.inc.php:189 pmd_general.php:74 pmd_general.php:306 msgid "Create relation" msgstr "" -#: libraries/messages.inc.php:194 pmd_general.php:71 +#: libraries/messages.inc.php:190 pmd_general.php:71 #: server_synchronize.php:429 server_synchronize.php:872 #, fuzzy msgid "Create table" msgstr "Създай нова Страница" -#: libraries/messages.inc.php:195 +#: libraries/messages.inc.php:191 #, fuzzy msgctxt "$strCreateTableShort" msgid "Create table" msgstr "Създай нова Страница" -#: libraries/messages.inc.php:196 server_privileges.php:1994 +#: libraries/messages.inc.php:192 server_privileges.php:1994 msgid "Database for user" msgstr "" -#: libraries/messages.inc.php:197 server_privileges.php:1999 +#: libraries/messages.inc.php:193 server_privileges.php:1999 msgid "Create database with same name and grant all privileges" msgstr "" -#: libraries/messages.inc.php:198 +#: libraries/messages.inc.php:194 #, fuzzy msgctxt "$strCreateUserDatabaseNone" msgid "None" msgstr "Няма" -#: libraries/messages.inc.php:199 server_privileges.php:2003 +#: libraries/messages.inc.php:195 server_privileges.php:2003 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "Провери привилегиите за база от данни "%s"." -#: libraries/messages.inc.php:200 server_privileges.php:2000 +#: libraries/messages.inc.php:196 server_privileges.php:2000 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: libraries/messages.inc.php:201 +#: libraries/messages.inc.php:197 msgid "Creation/Update/Check dates" msgstr "Създаване/Обновяване/Проверка на дати" -#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:229 +#: libraries/messages.inc.php:199 libraries/mysql_charsets.lib.php:229 msgid "Croatian" msgstr "Хърватски" -#: libraries/messages.inc.php:204 +#: libraries/messages.inc.php:200 msgid "CSV" msgstr "CSV данни" -#: libraries/messages.inc.php:205 libraries/server_synchronize.lib.php:1343 +#: libraries/messages.inc.php:201 libraries/server_synchronize.lib.php:1343 #: libraries/server_synchronize.lib.php:1369 msgid "Current server" msgstr "" -#: libraries/messages.inc.php:206 main.php:159 +#: libraries/messages.inc.php:202 main.php:159 msgid "Custom color" msgstr "" -#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:365 +#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:365 msgid "Cyrillic" msgstr "Кирилица" -#: libraries/messages.inc.php:208 libraries/mysql_charsets.lib.php:232 +#: libraries/messages.inc.php:204 libraries/mysql_charsets.lib.php:232 msgid "Czech" msgstr "Чешки" -#: libraries/messages.inc.php:209 libraries/mysql_charsets.lib.php:383 +#: libraries/messages.inc.php:205 libraries/mysql_charsets.lib.php:383 msgid "Czech-Slovak" msgstr "Чехословашки" -#: libraries/messages.inc.php:211 libraries/mysql_charsets.lib.php:235 +#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:235 msgid "Danish" msgstr "Датски" -#: libraries/messages.inc.php:214 +#: libraries/messages.inc.php:210 msgid "Database export options" msgstr "Опции за експортиране на база от данни" -#: libraries/messages.inc.php:217 server_synchronize.php:122 +#: libraries/messages.inc.php:213 server_synchronize.php:122 #: server_synchronize.php:125 tbl_create.php:82 tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "" -#: libraries/messages.inc.php:219 server_databases.php:63 +#: libraries/messages.inc.php:215 server_databases.php:63 #, php-format msgid "%s databases have been dropped successfully." msgstr "%s бази от данни бяха изтрити успешно." -#: libraries/messages.inc.php:220 libraries/server_synchronize.lib.php:1341 +#: libraries/messages.inc.php:216 libraries/server_synchronize.lib.php:1341 #: server_synchronize.php:1110 #, fuzzy msgid "Source database" msgstr "Търсене в базата от данни" -#: libraries/messages.inc.php:221 server_databases.php:88 +#: libraries/messages.inc.php:217 server_databases.php:88 msgid "Databases statistics" msgstr " Статистика за базите данни" -#: libraries/messages.inc.php:222 server_databases.php:362 +#: libraries/messages.inc.php:218 server_databases.php:362 #: server_databases.php:363 msgid "Disable Statistics" msgstr "Забрани статистика" -#: libraries/messages.inc.php:223 server_databases.php:358 +#: libraries/messages.inc.php:219 server_databases.php:358 #: server_databases.php:359 msgid "Enable Statistics" msgstr "Разрешаване на статистика" -#: libraries/messages.inc.php:224 server_databases.php:366 +#: libraries/messages.inc.php:220 server_databases.php:366 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -3550,31 +3550,31 @@ msgstr "" "Забележка: Разрешаването на статистика на базата от данни може да коства " "много голям трафик между уеб сървъра и MySQL сървъра." -#: libraries/messages.inc.php:225 libraries/server_synchronize.lib.php:1367 +#: libraries/messages.inc.php:221 libraries/server_synchronize.lib.php:1367 #: server_synchronize.php:1112 #, fuzzy msgid "Target database" msgstr "Търсене в базата от данни" -#: libraries/messages.inc.php:228 server_synchronize.php:425 +#: libraries/messages.inc.php:224 server_synchronize.php:425 #: server_synchronize.php:868 msgid "Data Difference" msgstr "" -#: libraries/messages.inc.php:231 server_synchronize.php:272 +#: libraries/messages.inc.php:227 server_synchronize.php:272 msgid "Data Synchronization" msgstr "" -#: libraries/messages.inc.php:235 server_privileges.php:526 +#: libraries/messages.inc.php:231 server_privileges.php:526 #: server_privileges.php:1679 msgid "Database-specific privileges" msgstr "Привилегии специфични за базата от данни" -#: libraries/messages.inc.php:237 server_privileges.php:2136 +#: libraries/messages.inc.php:233 server_privileges.php:2136 msgid "database-specific" msgstr "специфични за базата от данни" -#: libraries/messages.inc.php:240 libraries/tbl_properties.inc.php:106 +#: libraries/messages.inc.php:236 libraries/tbl_properties.inc.php:106 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" @@ -3582,32 +3582,32 @@ msgstr "" "За стойностите по подразбиране, моля въведете само една стойност, без " "обратни черти или апостроф, използвайки следния формат: a" -#: libraries/messages.inc.php:241 tbl_operations.php:589 +#: libraries/messages.inc.php:237 tbl_operations.php:589 msgid "Defragment table" msgstr "Дефрагментиране на таблица" -#: libraries/messages.inc.php:242 +#: libraries/messages.inc.php:238 msgid "Use delayed inserts" msgstr "Използване на отложени вмъквания" -#: libraries/messages.inc.php:245 server_privileges.php:1243 +#: libraries/messages.inc.php:241 server_privileges.php:1243 msgid "No users selected for deleting!" msgstr "Не за избрани потребители за изтриване!" -#: libraries/messages.inc.php:246 pmd_general.php:372 +#: libraries/messages.inc.php:242 pmd_general.php:372 msgid "Delete relation" msgstr "" -#: libraries/messages.inc.php:248 server_privileges.php:1232 +#: libraries/messages.inc.php:244 server_privileges.php:1232 #, php-format msgid "Deleting %s" msgstr "Изтриване на %s" -#: libraries/messages.inc.php:249 libraries/sql_query_form.lib.php:388 +#: libraries/messages.inc.php:245 libraries/sql_query_form.lib.php:388 msgid "Delimiter" msgstr "Разделител" -#: libraries/messages.inc.php:250 pdf_pages.php:506 +#: libraries/messages.inc.php:246 pdf_pages.php:506 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -3615,153 +3615,153 @@ msgstr "" "Текущата Страница има Референции към Таблици които вече не съществуват. " "Желаете ли да изтриете тези Референции?" -#: libraries/messages.inc.php:254 pmd_help.php:29 +#: libraries/messages.inc.php:250 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." msgstr "" -#: libraries/messages.inc.php:256 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:252 libraries/mysql_charsets.lib.php:247 msgid "dictionary" msgstr "речник" -#: libraries/messages.inc.php:257 libraries/server_synchronize.lib.php:1348 +#: libraries/messages.inc.php:253 libraries/server_synchronize.lib.php:1348 msgid "Difference" msgstr "" -#: libraries/messages.inc.php:258 pmd_general.php:87 +#: libraries/messages.inc.php:254 pmd_general.php:87 msgid "Direct links" msgstr "" -#: libraries/messages.inc.php:261 +#: libraries/messages.inc.php:257 msgid "Disable foreign key checks" msgstr "Забраняване на проверките за външен ключ" -#: libraries/messages.inc.php:262 +#: libraries/messages.inc.php:258 msgid "Display Features" msgstr "Покажи възможностите" -#: libraries/messages.inc.php:263 tbl_select.php:301 +#: libraries/messages.inc.php:259 tbl_select.php:301 msgid "Display order:" msgstr "Подреждане по:" -#: libraries/messages.inc.php:265 tbl_select.php:132 +#: libraries/messages.inc.php:261 tbl_select.php:132 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Изпълняване на \"заявка по шаблон\" (знак за заместване: \"%\")" -#: libraries/messages.inc.php:266 +#: libraries/messages.inc.php:262 msgid "DocSQL" msgstr "" -#: libraries/messages.inc.php:268 +#: libraries/messages.inc.php:264 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/messages.inc.php:273 server_privileges.php:1579 +#: libraries/messages.inc.php:269 server_privileges.php:1579 #: server_privileges.php:1580 server_privileges.php:1581 msgid "Drop the databases that have the same names as the users." msgstr "" "Изтриване на базите от данни които имат имена като тези на потребителите." -#: libraries/messages.inc.php:278 tbl_printview.php:382 tbl_structure.php:743 +#: libraries/messages.inc.php:274 tbl_printview.php:382 tbl_structure.php:743 msgid "dynamic" msgstr "динамичен" -#: libraries/messages.inc.php:282 server_privileges.php:1324 +#: libraries/messages.inc.php:278 server_privileges.php:1324 #: server_privileges.php:1610 msgid "Edit Privileges" msgstr "Редактиране на привилегиите" -#: libraries/messages.inc.php:283 tbl_printview.php:341 tbl_structure.php:688 +#: libraries/messages.inc.php:279 tbl_printview.php:341 tbl_structure.php:688 msgid "Effective" msgstr "Ефективни" -#: libraries/messages.inc.php:286 libraries/relation.lib.php:100 +#: libraries/messages.inc.php:282 libraries/relation.lib.php:100 msgid "Enabled" msgstr "Позволено" -#: libraries/messages.inc.php:287 +#: libraries/messages.inc.php:283 msgid "Enclose export in a transaction" msgstr "Изолиране на експорта в транзакция" -#: libraries/messages.inc.php:288 libraries/sqlparser.lib.php:177 +#: libraries/messages.inc.php:284 libraries/sqlparser.lib.php:177 msgid "END CUT" msgstr "END CUT" -#: libraries/messages.inc.php:290 libraries/sqlparser.lib.php:183 +#: libraries/messages.inc.php:286 libraries/sqlparser.lib.php:183 msgid "END RAW" msgstr "END RAW" -#: libraries/messages.inc.php:293 libraries/server_links.inc.php:61 +#: libraries/messages.inc.php:289 libraries/server_links.inc.php:61 #: test/theme.php:113 msgid "Engines" msgstr "Хранилища" -#: libraries/messages.inc.php:295 libraries/mysql_charsets.lib.php:238 +#: libraries/messages.inc.php:291 libraries/mysql_charsets.lib.php:238 msgid "English" msgstr "Английски" -#: libraries/messages.inc.php:296 server_privileges.php:393 +#: libraries/messages.inc.php:292 server_privileges.php:393 #: server_privileges.php:535 server_privileges.php:1501 msgid " Note: MySQL privilege names are expressed in English " msgstr "" " Забележка: Имената на привилегиите на MySQL са показани на английски. " -#: libraries/messages.inc.php:298 libraries/zip_extension.lib.php:49 +#: libraries/messages.inc.php:294 libraries/zip_extension.lib.php:49 #: libraries/zip_extension.lib.php:51 libraries/zip_extension.lib.php:66 msgid "Error in ZIP archive:" msgstr "Грешка в ZIP архива:" -#: libraries/messages.inc.php:303 libraries/mysql_charsets.lib.php:241 +#: libraries/messages.inc.php:299 libraries/mysql_charsets.lib.php:241 msgid "Esperanto" msgstr "Есперанто" -#: libraries/messages.inc.php:304 libraries/mysql_charsets.lib.php:244 +#: libraries/messages.inc.php:300 libraries/mysql_charsets.lib.php:244 msgid "Estonian" msgstr "Естонски" -#: libraries/messages.inc.php:305 libraries/tbl_triggers.lib.php:29 +#: libraries/messages.inc.php:301 libraries/tbl_triggers.lib.php:29 #, fuzzy msgid "Event" msgstr "Изпратени" -#: libraries/messages.inc.php:307 +#: libraries/messages.inc.php:303 msgid "Excel edition" msgstr "Версия на Excel" -#: libraries/messages.inc.php:311 pmd_pdf.php:85 +#: libraries/messages.inc.php:307 pmd_pdf.php:85 msgid "Export/Import to scale" msgstr "" -#: libraries/messages.inc.php:313 +#: libraries/messages.inc.php:309 msgid "Extended inserts" msgstr "Разширени INSERT-и" -#: libraries/messages.inc.php:314 pdf_schema.php:1267 pdf_schema.php:1288 +#: libraries/messages.inc.php:310 pdf_schema.php:1267 pdf_schema.php:1288 #: tbl_printview.php:147 tbl_structure.php:183 tbl_tracking.php:278 msgid "Extra" msgstr "Допълнително" -#: libraries/messages.inc.php:316 server_status.php:447 +#: libraries/messages.inc.php:312 server_status.php:447 msgid "Failed attempts" msgstr "Провалили се опити" -#: libraries/messages.inc.php:318 tbl_structure.php:375 +#: libraries/messages.inc.php:314 tbl_structure.php:375 #, php-format msgid "Field %s has been dropped" msgstr "Полето %s беше изтрито" -#: libraries/messages.inc.php:322 libraries/sql_query_form.lib.php:317 +#: libraries/messages.inc.php:318 libraries/sql_query_form.lib.php:317 msgid "Fields" msgstr "Полета" -#: libraries/messages.inc.php:332 server_binlog.php:136 +#: libraries/messages.inc.php:328 server_binlog.php:136 #, fuzzy msgid "Files" msgstr "Полета" -#: libraries/messages.inc.php:334 server_privileges.php:1597 +#: libraries/messages.inc.php:330 server_privileges.php:1597 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -3775,219 +3775,219 @@ msgstr "" "ръка. В този случай, трябва да %sпрезаредите привилегиите%s преди да " "продължите." -#: libraries/messages.inc.php:335 server_status.php:289 +#: libraries/messages.inc.php:331 server_status.php:289 msgid "Flush query cache" msgstr "" -#: libraries/messages.inc.php:336 +#: libraries/messages.inc.php:332 msgid "Flush the table (\"FLUSH\")" msgstr "Изчистване на кеша на таблицата (\"FLUSH\")" -#: libraries/messages.inc.php:337 server_status.php:271 +#: libraries/messages.inc.php:333 server_status.php:271 msgid "Flush (close) all tables" msgstr "" -#: libraries/messages.inc.php:339 tbl_relation.php:279 +#: libraries/messages.inc.php:335 tbl_relation.php:279 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" -#: libraries/messages.inc.php:341 setup/lib/messages.inc.php:88 +#: libraries/messages.inc.php:337 setup/lib/messages.inc.php:88 #: tbl_printview.php:376 tbl_structure.php:738 msgid "Format" msgstr "Формат" -#: libraries/messages.inc.php:344 server_replication.php:325 +#: libraries/messages.inc.php:340 server_replication.php:325 #, fuzzy msgid "Full start" msgstr "Пълнотекстово" -#: libraries/messages.inc.php:345 server_replication.php:325 +#: libraries/messages.inc.php:341 server_replication.php:325 msgid "Full stop" msgstr "" -#: libraries/messages.inc.php:347 tbl_change.php:282 tbl_change.php:320 +#: libraries/messages.inc.php:343 tbl_change.php:282 tbl_change.php:320 msgid "Function" msgstr "Функция" -#: libraries/messages.inc.php:355 libraries/mysql_charsets.lib.php:377 +#: libraries/messages.inc.php:351 libraries/mysql_charsets.lib.php:377 msgid "Georgian" msgstr "Грузински" -#: libraries/messages.inc.php:356 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:352 libraries/mysql_charsets.lib.php:247 #: libraries/mysql_charsets.lib.php:250 msgid "German" msgstr "Немски" -#: libraries/messages.inc.php:357 themes.php:42 +#: libraries/messages.inc.php:353 themes.php:42 msgid "Get more themes!" msgstr "" -#: libraries/messages.inc.php:358 server_privileges.php:2134 +#: libraries/messages.inc.php:354 server_privileges.php:2134 msgid "global" msgstr "глобален" -#: libraries/messages.inc.php:359 server_privileges.php:524 +#: libraries/messages.inc.php:355 server_privileges.php:524 #: server_privileges.php:1500 msgid "Global privileges" msgstr "Глобални привилегии" -#: libraries/messages.inc.php:360 server_variables.php:55 +#: libraries/messages.inc.php:356 server_variables.php:55 #: server_variables.php:89 msgid "Global value" msgstr "Глобална стойност" -#: libraries/messages.inc.php:365 server_privileges.php:1502 +#: libraries/messages.inc.php:361 server_privileges.php:1502 #: server_privileges.php:1684 server_privileges.php:2033 msgid "Grant" msgstr "Дадени" -#: libraries/messages.inc.php:366 libraries/mysql_charsets.lib.php:380 +#: libraries/messages.inc.php:362 libraries/mysql_charsets.lib.php:380 msgid "Greek" msgstr "Гръцки" -#: libraries/messages.inc.php:367 +#: libraries/messages.inc.php:363 msgid "\"gzipped\"" msgstr "\"gzip-нато\"" -#: libraries/messages.inc.php:369 server_status.php:250 +#: libraries/messages.inc.php:365 server_status.php:250 msgid "Handler" msgstr "" -#: libraries/messages.inc.php:370 server_synchronize.php:464 +#: libraries/messages.inc.php:366 server_synchronize.php:464 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: libraries/messages.inc.php:372 libraries/mysql_charsets.lib.php:374 +#: libraries/messages.inc.php:368 libraries/mysql_charsets.lib.php:374 msgid "Hebrew" msgstr "Иврит" -#: libraries/messages.inc.php:373 pmd_general.php:83 +#: libraries/messages.inc.php:369 pmd_general.php:83 msgid "Help" msgstr "" -#: libraries/messages.inc.php:374 +#: libraries/messages.inc.php:370 msgid "Use hexadecimal for BLOB" msgstr "" -#: libraries/messages.inc.php:376 pmd_general.php:120 +#: libraries/messages.inc.php:372 pmd_general.php:120 #, fuzzy msgid "Hide/Show all" msgstr "Покажи всички" -#: libraries/messages.inc.php:377 pmd_general.php:124 +#: libraries/messages.inc.php:373 pmd_general.php:124 msgid "Hide/Show Tables with no relation" msgstr "" -#: libraries/messages.inc.php:378 libraries/navigation_header.inc.php:54 +#: libraries/messages.inc.php:374 libraries/navigation_header.inc.php:54 #: libraries/navigation_header.inc.php:57 #: libraries/navigation_header.inc.php:58 msgid "Home" msgstr "Начало" -#: libraries/messages.inc.php:379 main.php:233 +#: libraries/messages.inc.php:375 main.php:233 msgid "Official Homepage" msgstr "Официалната уеб страница на phpMyAdmin " -#: libraries/messages.inc.php:382 libraries/replication_gui.lib.php:327 +#: libraries/messages.inc.php:378 libraries/replication_gui.lib.php:327 #: server_privileges.php:753 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/messages.inc.php:383 +#: libraries/messages.inc.php:379 msgid "Microsoft Word 2000" msgstr "" -#: libraries/messages.inc.php:384 libraries/mysql_charsets.lib.php:253 +#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:253 msgid "Hungarian" msgstr "Унгарски" -#: libraries/messages.inc.php:386 libraries/mysql_charsets.lib.php:256 +#: libraries/messages.inc.php:382 libraries/mysql_charsets.lib.php:256 msgid "Icelandic" msgstr "Исландски" -#: libraries/messages.inc.php:387 server_processlist.php:53 +#: libraries/messages.inc.php:383 server_processlist.php:53 msgid "ID" msgstr "ID" -#: libraries/messages.inc.php:388 libraries/mult_submits.inc.php:108 +#: libraries/messages.inc.php:384 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:479 msgid "Fulltext" msgstr "Пълнотекстово" -#: libraries/messages.inc.php:389 +#: libraries/messages.inc.php:385 msgid "Ignore duplicate rows" msgstr "Игнориране на дублиращите се редове" -#: libraries/messages.inc.php:390 tbl_change.php:302 tbl_indexes.php:200 +#: libraries/messages.inc.php:386 tbl_change.php:302 tbl_indexes.php:200 #: tbl_indexes.php:225 msgid "Ignore" msgstr "Игнориране" -#: libraries/messages.inc.php:391 +#: libraries/messages.inc.php:387 msgid "Use ignore inserts" msgstr "Използване на INSERT IGNORE" -#: libraries/messages.inc.php:392 +#: libraries/messages.inc.php:388 msgid "Column names in first row" msgstr "" -#: libraries/messages.inc.php:393 +#: libraries/messages.inc.php:389 msgid "Do not import empty rows" msgstr "" -#: libraries/messages.inc.php:394 pmd_general.php:104 +#: libraries/messages.inc.php:390 pmd_general.php:104 msgid "Import/Export coordinates for PDF schema" msgstr "" -#: libraries/messages.inc.php:395 querywindow.php:104 +#: libraries/messages.inc.php:391 querywindow.php:104 msgid "Import files" msgstr "Импортиране на файлове" -#: libraries/messages.inc.php:403 +#: libraries/messages.inc.php:399 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/messages.inc.php:404 libraries/messages.inc.php:584 +#: libraries/messages.inc.php:400 libraries/messages.inc.php:580 msgid "Open Document Spreadsheet" msgstr "" -#: libraries/messages.inc.php:405 +#: libraries/messages.inc.php:401 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/messages.inc.php:409 +#: libraries/messages.inc.php:405 msgid "Excel 97-2003 XLS Workbook" msgstr "" -#: libraries/messages.inc.php:410 +#: libraries/messages.inc.php:406 msgid "Excel 2007 XLSX Workbook" msgstr "" -#: libraries/messages.inc.php:414 libraries/mult_submits.inc.php:98 +#: libraries/messages.inc.php:410 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:476 tbl_structure.php:674 msgid "Index" msgstr "Индекс" -#: libraries/messages.inc.php:415 tbl_indexes.php:168 +#: libraries/messages.inc.php:411 tbl_indexes.php:168 msgid "Index name:" msgstr "Име на индекса :" -#: libraries/messages.inc.php:416 tbl_indexes.php:174 +#: libraries/messages.inc.php:412 tbl_indexes.php:174 msgid "Index type:" msgstr "Тип на индекса :" -#: libraries/messages.inc.php:417 sql.php:639 +#: libraries/messages.inc.php:413 sql.php:639 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Проблем с индексите на таблица `%s`" -#: libraries/messages.inc.php:427 main.php:266 +#: libraries/messages.inc.php:423 main.php:266 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -3999,195 +3999,195 @@ msgstr "" "MySQL сървър е стартиран с това по подразбиране и може да бъде лесно хакнат. " "Трябва да оправите тази дупка в сигурността." -#: libraries/messages.inc.php:428 tbl_change.php:1130 +#: libraries/messages.inc.php:424 tbl_change.php:1130 msgid "Insert as new row" msgstr "Вмъкване като нов ред" -#: libraries/messages.inc.php:429 sql.php:496 tbl_replace.php:386 +#: libraries/messages.inc.php:425 sql.php:496 tbl_replace.php:386 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: libraries/messages.inc.php:430 tbl_change.php:1131 +#: libraries/messages.inc.php:426 tbl_change.php:1131 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/messages.inc.php:432 main.php:139 +#: libraries/messages.inc.php:428 main.php:139 msgid "Interface" msgstr "" -#: libraries/messages.inc.php:433 tbl_relation.php:407 +#: libraries/messages.inc.php:429 tbl_relation.php:407 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: libraries/messages.inc.php:435 pdf_pages.php:303 +#: libraries/messages.inc.php:431 pdf_pages.php:303 msgid "Internal relations" msgstr "Вътрешни релации" -#: libraries/messages.inc.php:438 tbl_indexes.php:256 tbl_structure.php:590 +#: libraries/messages.inc.php:434 tbl_indexes.php:256 tbl_structure.php:590 #: tbl_structure.php:601 msgid "Column count has to be larger than zero." msgstr "Броя на колоните трябва да е по-голям от нула." -#: libraries/messages.inc.php:444 libraries/tbl_properties.inc.php:784 +#: libraries/messages.inc.php:440 libraries/tbl_properties.inc.php:784 #: tbl_structure.php:537 msgid "You have to add at least one field." msgstr "Трябва да добавите поне едно поле." -#: libraries/messages.inc.php:449 +#: libraries/messages.inc.php:445 #, php-format msgid "Invalid server index: \"%s\"" msgstr "" -#: libraries/messages.inc.php:452 libraries/mysql_charsets.lib.php:259 +#: libraries/messages.inc.php:448 libraries/mysql_charsets.lib.php:259 #: libraries/mysql_charsets.lib.php:349 msgid "Japanese" msgstr "Японски" -#: libraries/messages.inc.php:453 main.php:331 +#: libraries/messages.inc.php:449 main.php:331 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: libraries/messages.inc.php:454 server_status.php:257 +#: libraries/messages.inc.php:450 server_status.php:257 msgid "Joins" msgstr "" -#: libraries/messages.inc.php:457 server_privileges.php:763 +#: libraries/messages.inc.php:453 server_privileges.php:763 msgid "Do not change the password" msgstr "Да не се сменя паролата" -#: libraries/messages.inc.php:458 server_status.php:256 +#: libraries/messages.inc.php:454 server_status.php:256 #, fuzzy msgid "Key cache" msgstr "Кеш на заявките" -#: libraries/messages.inc.php:462 libraries/mysql_charsets.lib.php:268 +#: libraries/messages.inc.php:458 libraries/mysql_charsets.lib.php:268 #: libraries/mysql_charsets.lib.php:371 msgid "Korean" msgstr "Корейски" -#: libraries/messages.inc.php:466 libraries/select_lang.lib.php:480 +#: libraries/messages.inc.php:462 libraries/select_lang.lib.php:480 #: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492 #, php-format msgid "Unknown language: %1$s." msgstr "" -#: libraries/messages.inc.php:468 +#: libraries/messages.inc.php:464 msgid "Table caption" msgstr "Заглавие на таблицата" -#: libraries/messages.inc.php:469 +#: libraries/messages.inc.php:465 msgid "Content of table __TABLE__" msgstr "Съдържание на таблица __TABLE__" -#: libraries/messages.inc.php:470 +#: libraries/messages.inc.php:466 msgid "Continued table caption" msgstr "Продължение на заглавието на таблицата" -#: libraries/messages.inc.php:471 +#: libraries/messages.inc.php:467 msgid "(continued)" msgstr "(продължение)" -#: libraries/messages.inc.php:472 +#: libraries/messages.inc.php:468 msgid "Include table caption" msgstr "Включване на заглавие на таблицата" -#: libraries/messages.inc.php:473 +#: libraries/messages.inc.php:469 msgid "Label key" msgstr "Етикет на ключа" -#: libraries/messages.inc.php:474 +#: libraries/messages.inc.php:470 msgid "LaTeX" msgstr "LaTeX" -#: libraries/messages.inc.php:475 +#: libraries/messages.inc.php:471 msgid "Structure of table __TABLE__" msgstr "Структура на таблица __TABLE__" -#: libraries/messages.inc.php:476 libraries/mysql_charsets.lib.php:262 +#: libraries/messages.inc.php:472 libraries/mysql_charsets.lib.php:262 msgid "Latvian" msgstr "Латвийски" -#: libraries/messages.inc.php:477 +#: libraries/messages.inc.php:473 msgid "CSV using LOAD DATA" msgstr "CSV с LOAD DATA" -#: libraries/messages.inc.php:478 +#: libraries/messages.inc.php:474 msgid "Use LOCAL keyword" msgstr "Използване на ключовата дума LOCAL " -#: libraries/messages.inc.php:479 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:475 libraries/tbl_properties.inc.php:105 msgid "Length/Values" msgstr "Дължина/Стойност*" -#: libraries/messages.inc.php:480 tbl_select.php:295 +#: libraries/messages.inc.php:476 tbl_select.php:295 msgid "Number of rows per page" msgstr "редове на страница" -#: libraries/messages.inc.php:484 libraries/mysql_charsets.lib.php:265 +#: libraries/messages.inc.php:480 libraries/mysql_charsets.lib.php:265 msgid "Lithuanian" msgstr "Литовски" -#: libraries/messages.inc.php:485 libraries/replication_gui.lib.php:302 +#: libraries/messages.inc.php:481 libraries/replication_gui.lib.php:302 #: server_privileges.php:729 msgid "Local" msgstr "Локален" -#: libraries/messages.inc.php:487 server_privileges.php:669 +#: libraries/messages.inc.php:483 server_privileges.php:669 msgid "Login Information" msgstr "Информация за логване" -#: libraries/messages.inc.php:490 libraries/navigation_header.inc.php:67 +#: libraries/messages.inc.php:486 libraries/navigation_header.inc.php:67 #: libraries/navigation_header.inc.php:70 #: libraries/navigation_header.inc.php:71 main.php:99 msgid "Log out" msgstr "Изход от системата" -#: libraries/messages.inc.php:497 server_status.php:440 +#: libraries/messages.inc.php:493 server_status.php:440 msgid "max. concurrent connections" msgstr "Максимален брой на едновременните конекции" -#: libraries/messages.inc.php:498 +#: libraries/messages.inc.php:494 msgid "Maximal length of created query" msgstr "Максимална дължина на създадената заявка" -#: libraries/messages.inc.php:500 main.php:282 +#: libraries/messages.inc.php:496 main.php:282 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " "split strings correctly and it may result in unexpected results." msgstr "" -#: libraries/messages.inc.php:501 main.php:274 +#: libraries/messages.inc.php:497 main.php:274 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " "corrupted!" msgstr "" -#: libraries/messages.inc.php:502 +#: libraries/messages.inc.php:498 msgid "MediaWiki Table" msgstr "" -#: libraries/messages.inc.php:503 transformation_overview.php:25 +#: libraries/messages.inc.php:499 transformation_overview.php:25 msgid "Available MIME types" msgstr "Достъпни MIME-типове" -#: libraries/messages.inc.php:504 transformation_overview.php:43 +#: libraries/messages.inc.php:500 transformation_overview.php:43 msgid "Available transformations" msgstr "Достъпни трансформации" -#: libraries/messages.inc.php:505 +#: libraries/messages.inc.php:501 msgctxt "$strMIME_description" msgid "Description" msgstr "Описание" -#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:580 +#: libraries/messages.inc.php:503 libraries/tbl_properties.inc.php:580 #: transformation_overview.php:60 #, php-format msgid "" @@ -4197,7 +4197,7 @@ msgstr "" "Няма Описание за тази трансформация.
Моля обърнете се към автора " "относно това какво прави %s." -#: libraries/messages.inc.php:509 libraries/tbl_properties.inc.php:137 +#: libraries/messages.inc.php:505 libraries/tbl_properties.inc.php:137 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -4206,7 +4206,7 @@ msgstr "" "За списъка на достъпните опции на трансформацията и техните MIME-type " "трансформации кликнете на %sописания на трансформацията%s" -#: libraries/messages.inc.php:510 libraries/tbl_properties.inc.php:146 +#: libraries/messages.inc.php:506 libraries/tbl_properties.inc.php:146 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -4219,415 +4219,415 @@ msgstr "" "поставете пред тях допълнителна обратно наклонена черта (например '\\\\xyz' " "или 'a\\'b')." -#: libraries/messages.inc.php:511 libraries/tbl_properties.inc.php:145 +#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:145 msgid "Transformation options" msgstr "Опции на трансформацията" -#: libraries/messages.inc.php:513 transformation_overview.php:38 +#: libraries/messages.inc.php:509 transformation_overview.php:38 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "" "MIME-types показани в наклонен шрифт не притежават отделна функция за " "трансформация" -#: libraries/messages.inc.php:515 tbl_indexes.php:162 +#: libraries/messages.inc.php:511 tbl_indexes.php:162 msgid "Modify an index" msgstr "Промяна на индекс" -#: libraries/messages.inc.php:517 pmd_general.php:108 +#: libraries/messages.inc.php:513 pmd_general.php:108 msgid "Move Menu" msgstr "" -#: libraries/messages.inc.php:518 tbl_operations.php:276 +#: libraries/messages.inc.php:514 tbl_operations.php:276 msgid "Move table to (database.table):" msgstr "Преместване на таблица към (база от данни.таблица):" -#: libraries/messages.inc.php:519 tbl_move_copy.php:56 +#: libraries/messages.inc.php:515 tbl_move_copy.php:56 #, php-format msgid "Table %s has been moved to %s." msgstr "Таблицата %s беше преместена към %s." -#: libraries/messages.inc.php:520 tbl_move_copy.php:46 +#: libraries/messages.inc.php:516 tbl_move_copy.php:46 msgid "Can't move table to same one!" msgstr "Не може да се премести таблицата към себе си!" -#: libraries/messages.inc.php:521 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:517 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 #: libraries/mysql_charsets.lib.php:332 libraries/mysql_charsets.lib.php:354 #: libraries/mysql_charsets.lib.php:365 msgid "multilingual" msgstr "многоезичен" -#: libraries/messages.inc.php:534 main.php:193 +#: libraries/messages.inc.php:530 main.php:193 msgid "MySQL charset" msgstr "Набор от знаци на MySQL" -#: libraries/messages.inc.php:535 main.php:211 +#: libraries/messages.inc.php:531 main.php:211 msgid "MySQL client version" msgstr "Версия на клиента за MySQL" -#: libraries/messages.inc.php:536 main.php:125 +#: libraries/messages.inc.php:532 main.php:125 msgid "MySQL connection collation" msgstr "Колация на MySQL" -#: libraries/messages.inc.php:537 main.php:346 +#: libraries/messages.inc.php:533 main.php:346 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: libraries/messages.inc.php:539 server_status.php:294 +#: libraries/messages.inc.php:535 server_status.php:294 msgid "Show processes" msgstr "MySQL процеси" -#: libraries/messages.inc.php:545 navigation.php:210 server_databases.php:371 +#: libraries/messages.inc.php:541 navigation.php:210 server_databases.php:371 #: server_synchronize.php:1191 msgid "No databases" msgstr "Няма бази от данни" -#: libraries/messages.inc.php:546 server_databases.php:52 +#: libraries/messages.inc.php:542 server_databases.php:52 msgid "No databases selected." msgstr "Няма избрани бази от данни." -#: libraries/messages.inc.php:548 libraries/relation.lib.php:1173 +#: libraries/messages.inc.php:544 libraries/relation.lib.php:1173 msgid "no description" msgstr "няма Описание" -#: libraries/messages.inc.php:552 libraries/zip_extension.lib.php:26 +#: libraries/messages.inc.php:548 libraries/zip_extension.lib.php:26 msgid "No files found inside ZIP archive!" msgstr "Не са открити файлове в ZIP архива!" -#: libraries/messages.inc.php:555 tbl_indexes.php:91 +#: libraries/messages.inc.php:551 tbl_indexes.php:91 msgid "No index parts defined!" msgstr "Не са дефинирани части на индекс!" -#: libraries/messages.inc.php:556 libraries/mult_submits.inc.php:435 +#: libraries/messages.inc.php:552 libraries/mult_submits.inc.php:435 #: tbl_replace.php:331 msgid "No change" msgstr "Няма промяна" -#: libraries/messages.inc.php:557 +#: libraries/messages.inc.php:553 #, fuzzy msgctxt "$strNoneDefault" msgid "None" msgstr "Няма" -#: libraries/messages.inc.php:560 libraries/plugin_interface.lib.php:312 +#: libraries/messages.inc.php:556 libraries/plugin_interface.lib.php:312 msgid "This format has no options" msgstr "Този формат няма опции" -#: libraries/messages.inc.php:565 user_password.php:54 +#: libraries/messages.inc.php:561 user_password.php:54 msgid "You don't have sufficient privileges to be here right now!" msgstr "В момента не разполагате с достатъчно права за да се намирате тук!" -#: libraries/messages.inc.php:566 tbl_row_action.php:29 +#: libraries/messages.inc.php:562 tbl_row_action.php:29 msgid "No rows selected" msgstr "Няма върнати редове" -#: libraries/messages.inc.php:569 themes.php:32 +#: libraries/messages.inc.php:565 themes.php:32 #, php-format msgid "" "No themes support; please check your configuration and/or your themes in " "directory %s." msgstr "" -#: libraries/messages.inc.php:571 libraries/relation.lib.php:95 +#: libraries/messages.inc.php:567 libraries/relation.lib.php:95 msgid "not OK" msgstr "не е OK" -#: libraries/messages.inc.php:572 server_synchronize.php:400 +#: libraries/messages.inc.php:568 server_synchronize.php:400 #: server_synchronize.php:839 msgid "not present" msgstr "" -#: libraries/messages.inc.php:573 pdf_pages.php:36 pdf_pages.php:42 +#: libraries/messages.inc.php:569 pdf_pages.php:36 pdf_pages.php:42 #: pdf_pages.php:48 pdf_pages.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "таблица %s не е намерена или не е установена в %s" -#: libraries/messages.inc.php:574 server_privileges.php:804 +#: libraries/messages.inc.php:570 server_privileges.php:804 #: server_privileges.php:2166 msgid "No user(s) found." msgstr "Няма потребител(и)." -#: libraries/messages.inc.php:578 pmd_general.php:164 +#: libraries/messages.inc.php:574 pmd_general.php:164 #, fuzzy msgid "Number of tables" msgstr "Брой полета" -#: libraries/messages.inc.php:581 server_databases.php:117 +#: libraries/messages.inc.php:577 server_databases.php:117 #: server_status.php:260 setup/lib/messages.inc.php:117 msgid "Tables" msgstr "Таблици" -#: libraries/messages.inc.php:583 libraries/relation.lib.php:99 +#: libraries/messages.inc.php:579 libraries/relation.lib.php:99 #: pmd_general.php:340 msgid "OK" msgstr "OK" -#: libraries/messages.inc.php:585 +#: libraries/messages.inc.php:581 msgid "Open Document Text" msgstr "" -#: libraries/messages.inc.php:588 tbl_select.php:138 +#: libraries/messages.inc.php:584 tbl_select.php:138 msgid "Operator" msgstr "Оператор" -#: libraries/messages.inc.php:589 tbl_operations.php:662 +#: libraries/messages.inc.php:585 tbl_operations.php:662 msgid "Optimize" msgstr "" -#: libraries/messages.inc.php:602 libraries/tbl_properties.inc.php:755 +#: libraries/messages.inc.php:598 libraries/tbl_properties.inc.php:755 msgid "PARTITION definition" msgstr "" -#: libraries/messages.inc.php:603 tbl_structure.php:757 +#: libraries/messages.inc.php:599 tbl_structure.php:757 msgid "partitioned" msgstr "" -#: libraries/messages.inc.php:604 tbl_operations.php:649 +#: libraries/messages.inc.php:600 tbl_operations.php:649 #, fuzzy msgid "Partition maintenance" msgstr "Поддръжка на таблицата" -#: libraries/messages.inc.php:605 tbl_operations.php:657 +#: libraries/messages.inc.php:601 tbl_operations.php:657 #, php-format msgid "Partition %s" msgstr "" -#: libraries/messages.inc.php:606 server_privileges.php:1212 +#: libraries/messages.inc.php:602 server_privileges.php:1212 #, php-format msgid "The password for %s was changed successfully." msgstr "Паролата на %s беше променена успешно." -#: libraries/messages.inc.php:635 +#: libraries/messages.inc.php:631 #, php-format msgid "Schema of the \"%s\" database - Page %s" msgstr "Схемата на база от данни \"%s\" - Страница %s" -#: libraries/messages.inc.php:636 +#: libraries/messages.inc.php:632 #, php-format msgid "The \"%s\" table doesn't exist!" msgstr "Таблица \"%s\" не съществува!" -#: libraries/messages.inc.php:637 pdf_schema.php:1013 +#: libraries/messages.inc.php:633 pdf_schema.php:1013 msgid "No tables" msgstr "Няма таблици" -#: libraries/messages.inc.php:638 pmd_pdf.php:63 +#: libraries/messages.inc.php:634 pmd_pdf.php:63 #, fuzzy msgid "Page has been created" msgstr "Таблицата %s беше изтрита" -#: libraries/messages.inc.php:639 pmd_pdf.php:65 +#: libraries/messages.inc.php:635 pmd_pdf.php:65 msgid "Page creation failed" msgstr "" -#: libraries/messages.inc.php:640 +#: libraries/messages.inc.php:636 msgid "PDF" msgstr "" -#: libraries/messages.inc.php:641 +#: libraries/messages.inc.php:637 msgid "(Generates a report containing the data of a single table)" msgstr "(Генерира доклад съдържащ данните в определена таблица)" -#: libraries/messages.inc.php:642 +#: libraries/messages.inc.php:638 msgid "Report title" msgstr "Файл на доклада" -#: libraries/messages.inc.php:643 server_status.php:389 server_status.php:434 +#: libraries/messages.inc.php:639 server_status.php:389 server_status.php:434 #: server_status.php:497 server_status.php:555 msgid "per hour" msgstr "на час" -#: libraries/messages.inc.php:644 server_status.php:498 +#: libraries/messages.inc.php:640 server_status.php:498 msgid "per minute" msgstr "на минута" -#: libraries/messages.inc.php:645 server_status.php:499 +#: libraries/messages.inc.php:641 server_status.php:499 msgid "per second" msgstr "на секунда" -#: libraries/messages.inc.php:646 libraries/mysql_charsets.lib.php:271 +#: libraries/messages.inc.php:642 libraries/mysql_charsets.lib.php:271 msgid "Persian" msgstr "Персийски" -#: libraries/messages.inc.php:647 libraries/mysql_charsets.lib.php:250 +#: libraries/messages.inc.php:643 libraries/mysql_charsets.lib.php:250 msgid "phone book" msgstr "Телефонен бележник" -#: libraries/messages.inc.php:648 +#: libraries/messages.inc.php:644 msgid "PHP array" msgstr "" -#: libraries/messages.inc.php:650 main.php:213 +#: libraries/messages.inc.php:646 main.php:213 #, fuzzy msgid "PHP extension" msgstr "Версия на PHP" -#: libraries/messages.inc.php:654 libraries/relation.lib.php:163 +#: libraries/messages.inc.php:650 libraries/relation.lib.php:163 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/messages.inc.php:655 libraries/relation.lib.php:159 +#: libraries/messages.inc.php:651 libraries/relation.lib.php:159 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/messages.inc.php:656 libraries/relation.lib.php:161 +#: libraries/messages.inc.php:652 libraries/relation.lib.php:161 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" -#: libraries/messages.inc.php:657 libraries/relation.lib.php:162 +#: libraries/messages.inc.php:653 libraries/relation.lib.php:162 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/messages.inc.php:658 libraries/relation.lib.php:164 +#: libraries/messages.inc.php:654 libraries/relation.lib.php:164 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/messages.inc.php:661 libraries/mysql_charsets.lib.php:274 +#: libraries/messages.inc.php:657 libraries/mysql_charsets.lib.php:274 msgid "Polish" msgstr "Полски" -#: libraries/messages.inc.php:662 libraries/replication_gui.lib.php:67 +#: libraries/messages.inc.php:658 libraries/replication_gui.lib.php:67 #: server_synchronize.php:1163 #, fuzzy msgid "Port" msgstr "Сортиране" -#: libraries/messages.inc.php:667 tbl_indexes.php:67 +#: libraries/messages.inc.php:663 tbl_indexes.php:67 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Името на главния ключ трябва да е... PRIMARY!" -#: libraries/messages.inc.php:668 tbl_indexes.php:184 +#: libraries/messages.inc.php:664 tbl_indexes.php:184 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" "(\"PRIMARY\" трябва да е името на и единствено на главния " "ключ!)" -#: libraries/messages.inc.php:669 libraries/mult_submits.inc.php:76 +#: libraries/messages.inc.php:665 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:474 msgid "Primary" msgstr "PRIMARY" -#: libraries/messages.inc.php:673 server_privileges.php:227 +#: libraries/messages.inc.php:669 server_privileges.php:227 msgid "Includes all privileges except GRANT." msgstr "Включва всички привилегии освен GRANT." -#: libraries/messages.inc.php:674 server_privileges.php:153 +#: libraries/messages.inc.php:670 server_privileges.php:153 #: server_privileges.php:476 msgid "Allows altering the structure of existing tables." msgstr "Позволява променяне на структурата на съществуващи таблици." -#: libraries/messages.inc.php:675 server_privileges.php:169 +#: libraries/messages.inc.php:671 server_privileges.php:169 #: server_privileges.php:482 msgid "Allows altering and dropping stored routines." msgstr "Позволяване на променяне и издриване на Съхранени Процедури." -#: libraries/messages.inc.php:676 server_privileges.php:145 +#: libraries/messages.inc.php:672 server_privileges.php:145 #: server_privileges.php:475 msgid "Allows creating new databases and tables." msgstr "Позволява създаване на нови бази от данни и таблици." -#: libraries/messages.inc.php:677 server_privileges.php:168 +#: libraries/messages.inc.php:673 server_privileges.php:168 #: server_privileges.php:481 msgid "Allows creating stored routines." msgstr "Позволяване на създаването на Съхранени Процедури." -#: libraries/messages.inc.php:678 server_privileges.php:475 +#: libraries/messages.inc.php:674 server_privileges.php:475 msgid "Allows creating new tables." msgstr "Позволява създаване на нови таблици." -#: libraries/messages.inc.php:679 server_privileges.php:156 +#: libraries/messages.inc.php:675 server_privileges.php:156 #: server_privileges.php:479 msgid "Allows creating temporary tables." msgstr "Позволява създаването на временни таблици." -#: libraries/messages.inc.php:680 server_privileges.php:170 +#: libraries/messages.inc.php:676 server_privileges.php:170 #: server_privileges.php:515 msgid "Allows creating, dropping and renaming user accounts." msgstr "" "Позволяване на създаването, изтриването и преименуването на потребителски " "акаунти." -#: libraries/messages.inc.php:681 server_privileges.php:160 +#: libraries/messages.inc.php:677 server_privileges.php:160 #: server_privileges.php:164 server_privileges.php:487 #: server_privileges.php:491 msgid "Allows creating new views." msgstr "Позволяване на създаването на нови Изгледи." -#: libraries/messages.inc.php:682 server_privileges.php:144 +#: libraries/messages.inc.php:678 server_privileges.php:144 #: server_privileges.php:467 msgid "Allows deleting data." msgstr "Позволява изтриване на данни." -#: libraries/messages.inc.php:683 server_privileges.php:146 +#: libraries/messages.inc.php:679 server_privileges.php:146 #: server_privileges.php:478 msgid "Allows dropping databases and tables." msgstr "Позволява изтриване на бази от данни и таблици." -#: libraries/messages.inc.php:684 server_privileges.php:478 +#: libraries/messages.inc.php:680 server_privileges.php:478 msgid "Allows dropping tables." msgstr "Позволява изтриване на таблици." -#: libraries/messages.inc.php:685 server_privileges.php:161 +#: libraries/messages.inc.php:681 server_privileges.php:161 #: server_privileges.php:495 msgid "Allows to set up events for the event scheduler" msgstr "" -#: libraries/messages.inc.php:686 server_privileges.php:171 +#: libraries/messages.inc.php:682 server_privileges.php:171 #: server_privileges.php:483 msgid "Allows executing stored routines." msgstr "Позволяване на стартирането на Съхранени Процедури." -#: libraries/messages.inc.php:687 server_privileges.php:150 +#: libraries/messages.inc.php:683 server_privileges.php:150 #: server_privileges.php:470 msgid "Allows importing data from and exporting data into files." msgstr "Позволява импортиране на данни от и експортиране на данни във файлове." -#: libraries/messages.inc.php:688 server_privileges.php:501 +#: libraries/messages.inc.php:684 server_privileges.php:501 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Позволява добавяне на потребители и привилегии без презареждане на таблицата " "с привилегиите." -#: libraries/messages.inc.php:689 server_privileges.php:152 +#: libraries/messages.inc.php:685 server_privileges.php:152 #: server_privileges.php:477 msgid "Allows creating and dropping indexes." msgstr "Позволява създаване и премахване на индекси." -#: libraries/messages.inc.php:690 server_privileges.php:142 +#: libraries/messages.inc.php:686 server_privileges.php:142 #: server_privileges.php:403 server_privileges.php:465 msgid "Allows inserting and replacing data." msgstr "Позволява вмъкване и заменяне на данни." -#: libraries/messages.inc.php:691 server_privileges.php:157 +#: libraries/messages.inc.php:687 server_privileges.php:157 #: server_privileges.php:510 msgid "Allows locking tables for the current thread." msgstr "Позволява заключване на таблици за текущата нишка." -#: libraries/messages.inc.php:692 server_privileges.php:607 +#: libraries/messages.inc.php:688 server_privileges.php:607 #: server_privileges.php:609 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Ограничава броя на новите конекции, които потребителя може да отвори на час." -#: libraries/messages.inc.php:693 server_privileges.php:595 +#: libraries/messages.inc.php:689 server_privileges.php:595 #: server_privileges.php:597 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Ограничава броя на заявките, които потребителя може да изпрати към сървъра " "на час." -#: libraries/messages.inc.php:694 server_privileges.php:601 +#: libraries/messages.inc.php:690 server_privileges.php:601 #: server_privileges.php:603 msgid "" "Limits the number of commands that change any table or database the user may " @@ -4636,61 +4636,61 @@ msgstr "" "Ограничава броя на командите, които променят някоя таблица или база от " "данни, които даден потребител може да стартира за час." -#: libraries/messages.inc.php:695 server_privileges.php:613 +#: libraries/messages.inc.php:691 server_privileges.php:613 #: server_privileges.php:615 #, fuzzy msgid "Limits the number of simultaneous connections the user may have." msgstr "" "Ограничава броя на новите конекции, които потребителя може да отвори на час." -#: libraries/messages.inc.php:696 server_privileges.php:149 +#: libraries/messages.inc.php:692 server_privileges.php:149 #: server_privileges.php:505 msgid "Allows viewing processes of all users" msgstr "" -#: libraries/messages.inc.php:697 server_privileges.php:151 +#: libraries/messages.inc.php:693 server_privileges.php:151 #: server_privileges.php:409 server_privileges.php:511 msgid "Has no effect in this MySQL version." msgstr "Няма ефект в тази версия на MySQL." -#: libraries/messages.inc.php:698 server_privileges.php:147 +#: libraries/messages.inc.php:694 server_privileges.php:147 #: server_privileges.php:506 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Позволява презареждане на сървърните настройки и изчистване(flashing) на " "кеша на сървъра." -#: libraries/messages.inc.php:699 server_privileges.php:159 +#: libraries/messages.inc.php:695 server_privileges.php:159 #: server_privileges.php:513 msgid "Allows the user to ask where the slaves / masters are." msgstr "Дава правото на потребител да знае къде са slaves / masters." -#: libraries/messages.inc.php:700 server_privileges.php:158 +#: libraries/messages.inc.php:696 server_privileges.php:158 #: server_privileges.php:514 msgid "Needed for the replication slaves." msgstr "Нужно за replication slaves." -#: libraries/messages.inc.php:701 server_privileges.php:141 +#: libraries/messages.inc.php:697 server_privileges.php:141 #: server_privileges.php:400 server_privileges.php:464 msgid "Allows reading data." msgstr "Позволява четене на данни." -#: libraries/messages.inc.php:702 server_privileges.php:154 +#: libraries/messages.inc.php:698 server_privileges.php:154 #: server_privileges.php:508 msgid "Gives access to the complete list of databases." msgstr "Дава достъп до пълния списък на базите данни." -#: libraries/messages.inc.php:703 server_privileges.php:165 +#: libraries/messages.inc.php:699 server_privileges.php:165 #: server_privileges.php:167 server_privileges.php:480 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Позволяване на изпълнението на SHOW CREATE VIEW заявки." -#: libraries/messages.inc.php:704 server_privileges.php:148 +#: libraries/messages.inc.php:700 server_privileges.php:148 #: server_privileges.php:507 msgid "Allows shutting down the server." msgstr "Позволява спиране на сървъра." -#: libraries/messages.inc.php:705 server_privileges.php:155 +#: libraries/messages.inc.php:701 server_privileges.php:155 #: server_privileges.php:504 msgid "" "Allows connecting, even if maximum number of connections is reached; " @@ -4701,56 +4701,56 @@ msgstr "" "Изисква се за повечето административни операции, като установяване на " "глобални променливи или спиране на нишка на други потребители." -#: libraries/messages.inc.php:706 server_privileges.php:162 +#: libraries/messages.inc.php:702 server_privileges.php:162 #: server_privileges.php:496 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "Позволява създаване и премахване на индекси." -#: libraries/messages.inc.php:707 server_privileges.php:143 +#: libraries/messages.inc.php:703 server_privileges.php:143 #: server_privileges.php:406 server_privileges.php:466 msgid "Allows changing data." msgstr "Позволява промяна на данни." -#: libraries/messages.inc.php:708 server_privileges.php:221 +#: libraries/messages.inc.php:704 server_privileges.php:221 msgid "No privileges." msgstr "Няма привилегии." -#: libraries/messages.inc.php:710 server_privileges.php:1296 +#: libraries/messages.inc.php:706 server_privileges.php:1296 msgid "The privileges were reloaded successfully." msgstr "Привилегиите бяха презаредени успешно." -#: libraries/messages.inc.php:712 libraries/server_links.inc.php:80 +#: libraries/messages.inc.php:708 libraries/server_links.inc.php:80 msgid "Processes" msgstr "Процеси" -#: libraries/messages.inc.php:714 main.php:187 +#: libraries/messages.inc.php:710 main.php:187 msgid "Protocol version" msgstr "Версия на протокола" -#: libraries/messages.inc.php:715 +#: libraries/messages.inc.php:711 msgid "Put fields names in the first row" msgstr "Поставяне имената на полетата на първия ред" -#: libraries/messages.inc.php:720 server_synchronize.php:1003 +#: libraries/messages.inc.php:716 server_synchronize.php:1003 msgid "The following queries have been executed:" msgstr "" -#: libraries/messages.inc.php:721 server_status.php:251 +#: libraries/messages.inc.php:717 server_status.php:251 msgid "Query cache" msgstr "Кеш на заявките" -#: libraries/messages.inc.php:722 libraries/navigation_header.inc.php:80 +#: libraries/messages.inc.php:718 libraries/navigation_header.inc.php:80 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 setup/lib/messages.inc.php:122 msgid "Query window" msgstr "Прозорец за заявки" -#: libraries/messages.inc.php:725 querywindow.php:109 querywindow.php:217 +#: libraries/messages.inc.php:721 querywindow.php:109 querywindow.php:217 msgid "SQL history" msgstr "SQL-хронология" -#: libraries/messages.inc.php:726 server_status.php:490 +#: libraries/messages.inc.php:722 server_status.php:490 #, php-format msgid "" "Query statistics: Since its startup, %s queries have been sent to the " @@ -4759,137 +4759,137 @@ msgstr "" "Статистика на заявките: От както е стартиран %s заявки са изпратени " "към сървъра." -#: libraries/messages.inc.php:728 server_status.php:554 +#: libraries/messages.inc.php:724 server_status.php:554 msgid "Query type" msgstr "Тип на заявката" -#: libraries/messages.inc.php:729 libraries/sql_query_form.lib.php:381 +#: libraries/messages.inc.php:725 libraries/sql_query_form.lib.php:381 msgid "Do not overwrite this query from outside the window" msgstr "Не препокривайте тази заявка извън този прозорец" -#: libraries/messages.inc.php:732 tbl_operations.php:663 +#: libraries/messages.inc.php:728 tbl_operations.php:663 msgid "Rebuild" msgstr "" -#: libraries/messages.inc.php:733 server_status.php:394 +#: libraries/messages.inc.php:729 server_status.php:394 msgid "Received" msgstr "Получени" -#: libraries/messages.inc.php:734 pmd_pdf.php:89 +#: libraries/messages.inc.php:730 pmd_pdf.php:89 msgid "recommended" msgstr "" -#: libraries/messages.inc.php:736 tbl_operations.php:702 +#: libraries/messages.inc.php:732 tbl_operations.php:702 msgid "Check referential integrity:" msgstr "Проверка на интегритета на връзките" -#: libraries/messages.inc.php:740 pdf_schema.php:1032 pdf_schema.php:1141 +#: libraries/messages.inc.php:736 pdf_schema.php:1032 pdf_schema.php:1141 msgid "Relational schema" msgstr "Релационна схема" -#: libraries/messages.inc.php:744 tbl_relation.php:399 +#: libraries/messages.inc.php:740 tbl_relation.php:399 msgid "Relations" msgstr "Релации" -#: libraries/messages.inc.php:745 tbl_structure.php:507 tbl_structure.php:509 +#: libraries/messages.inc.php:741 tbl_structure.php:507 tbl_structure.php:509 msgid "Relation view" msgstr "Преглед на релациите" -#: libraries/messages.inc.php:746 server_privileges.php:1246 +#: libraries/messages.inc.php:742 server_privileges.php:1246 msgid "Reloading the privileges" msgstr "Презареждане на привилегиите" -#: libraries/messages.inc.php:747 navigation.php:66 navigation.php:67 +#: libraries/messages.inc.php:743 navigation.php:66 navigation.php:67 #: navigation.php:70 msgid "Reload navigation frame" msgstr "" -#: libraries/messages.inc.php:748 pmd_general.php:80 +#: libraries/messages.inc.php:744 pmd_general.php:80 msgid "Reload" msgstr "" -#: libraries/messages.inc.php:749 libraries/server_synchronize.lib.php:1345 +#: libraries/messages.inc.php:745 libraries/server_synchronize.lib.php:1345 #: libraries/server_synchronize.lib.php:1371 msgid "Remote server" msgstr "" -#: libraries/messages.inc.php:750 +#: libraries/messages.inc.php:746 msgid "Remove CRLF characters within fields" msgstr "" -#: libraries/messages.inc.php:751 tbl_operations.php:676 +#: libraries/messages.inc.php:747 tbl_operations.php:676 msgid "Remove partitioning" msgstr "" -#: libraries/messages.inc.php:752 server_privileges.php:1575 +#: libraries/messages.inc.php:748 server_privileges.php:1575 msgid "Remove selected users" msgstr "Отстраняване на избраните потребители" -#: libraries/messages.inc.php:755 tbl_operations.php:338 +#: libraries/messages.inc.php:751 tbl_operations.php:338 msgid "Rename table to" msgstr "Преименуване на таблицата на" -#: libraries/messages.inc.php:756 view_operations.php:93 +#: libraries/messages.inc.php:752 view_operations.php:93 #, fuzzy msgid "Rename view to" msgstr "Преименуване на таблицата на" -#: libraries/messages.inc.php:757 tbl_operations.php:664 +#: libraries/messages.inc.php:753 tbl_operations.php:664 #, fuzzy msgid "Repair" msgstr "Поправяне на таблицата" -#: libraries/messages.inc.php:759 +#: libraries/messages.inc.php:755 msgid "Replace NULL by" msgstr "Заменяй NULL с" -#: libraries/messages.inc.php:760 +#: libraries/messages.inc.php:756 msgid "Replace table data with file" msgstr "Заместване на данните от таблицата с данните от файла" -#: libraries/messages.inc.php:761 server_replication.php:228 +#: libraries/messages.inc.php:757 server_replication.php:228 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: libraries/messages.inc.php:762 libraries/replication_gui.lib.php:236 +#: libraries/messages.inc.php:758 libraries/replication_gui.lib.php:236 #: server_replication.php:194 msgid "Add slave replication user" msgstr "" -#: libraries/messages.inc.php:763 server_replication.php:74 +#: libraries/messages.inc.php:759 server_replication.php:74 #, php-format msgid "Master server changed succesfully to %s" msgstr "" -#: libraries/messages.inc.php:764 server_replication.php:182 +#: libraries/messages.inc.php:760 server_replication.php:182 msgid "This server is configured as master in a replication process." msgstr "" -#: libraries/messages.inc.php:765 server_replication.php:322 +#: libraries/messages.inc.php:761 server_replication.php:322 msgid "Control slave:" msgstr "" -#: libraries/messages.inc.php:766 server_replication.php:65 +#: libraries/messages.inc.php:762 server_replication.php:65 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: libraries/messages.inc.php:767 server_replication.php:58 +#: libraries/messages.inc.php:763 server_replication.php:58 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: libraries/messages.inc.php:768 server_replication.php:221 +#: libraries/messages.inc.php:764 server_replication.php:221 msgid "Replicate all databases; Ignore:" msgstr "" -#: libraries/messages.inc.php:769 server_replication.php:222 +#: libraries/messages.inc.php:765 server_replication.php:222 msgid "Ignore all databases; Replicate:" msgstr "" -#: libraries/messages.inc.php:770 server_replication.php:218 +#: libraries/messages.inc.php:766 server_replication.php:218 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -4898,121 +4898,121 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: libraries/messages.inc.php:771 server_replication.php:217 +#: libraries/messages.inc.php:767 server_replication.php:217 msgid "Master configuration" msgstr "" -#: libraries/messages.inc.php:772 server_replication.php:181 +#: libraries/messages.inc.php:768 server_replication.php:181 #: server_replication.php:209 msgid "Master replication" msgstr "" -#: libraries/messages.inc.php:774 server_replication.php:230 +#: libraries/messages.inc.php:770 server_replication.php:230 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: libraries/messages.inc.php:775 server_replication.php:225 +#: libraries/messages.inc.php:771 server_replication.php:225 #, fuzzy msgid "Please select databases:" msgstr "Моля изберете база от данни" -#: libraries/messages.inc.php:776 server_replication.php:210 +#: libraries/messages.inc.php:772 server_replication.php:210 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:188 +#: libraries/messages.inc.php:773 libraries/replication_gui.lib.php:188 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/messages.inc.php:778 server_replication.php:187 +#: libraries/messages.inc.php:774 server_replication.php:187 msgid "Show connected slaves" msgstr "" -#: libraries/messages.inc.php:779 libraries/messages.inc.php:885 +#: libraries/messages.inc.php:775 libraries/messages.inc.php:881 #: server_replication.php:184 server_status.php:281 msgid "Show master status" msgstr "" -#: libraries/messages.inc.php:780 server_replication.php:334 +#: libraries/messages.inc.php:776 server_replication.php:334 msgid "Skipping error(s) might lead into unsynchronized master and slave!" msgstr "" -#: libraries/messages.inc.php:781 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:51 #: server_replication.php:347 msgid "Change or reconfigure master server" msgstr "" -#: libraries/messages.inc.php:782 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:778 libraries/replication_gui.lib.php:51 msgid "Slave configuration" msgstr "" -#: libraries/messages.inc.php:783 server_replication.php:305 +#: libraries/messages.inc.php:779 server_replication.php:305 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: libraries/messages.inc.php:784 server_replication.php:332 +#: libraries/messages.inc.php:780 server_replication.php:332 msgid "Error management:" msgstr "" -#: libraries/messages.inc.php:785 server_replication.php:328 +#: libraries/messages.inc.php:781 server_replication.php:328 #, php-format msgid "IO Thread %s only" msgstr "" -#: libraries/messages.inc.php:786 server_replication.php:296 +#: libraries/messages.inc.php:782 server_replication.php:296 msgid "Slave IO Thread not running!" msgstr "" -#: libraries/messages.inc.php:787 server_replication.php:355 +#: libraries/messages.inc.php:783 server_replication.php:355 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/messages.inc.php:788 server_replication.php:326 +#: libraries/messages.inc.php:784 server_replication.php:326 msgid "Reset slave" msgstr "" -#: libraries/messages.inc.php:789 server_replication.php:308 +#: libraries/messages.inc.php:785 server_replication.php:308 msgid "See slave status table" msgstr "" -#: libraries/messages.inc.php:790 server_replication.php:336 +#: libraries/messages.inc.php:786 server_replication.php:336 msgid "Skip current error" msgstr "" -#: libraries/messages.inc.php:791 server_replication.php:340 +#: libraries/messages.inc.php:787 server_replication.php:340 msgid "errors." msgstr "" -#: libraries/messages.inc.php:792 server_replication.php:337 +#: libraries/messages.inc.php:788 server_replication.php:337 msgid "Skip next" msgstr "" -#: libraries/messages.inc.php:793 server_replication.php:248 +#: libraries/messages.inc.php:789 server_replication.php:248 msgid "Slave replication" msgstr "" -#: libraries/messages.inc.php:794 server_replication.php:293 +#: libraries/messages.inc.php:790 server_replication.php:293 msgid "Slave SQL Thread not running!" msgstr "" -#: libraries/messages.inc.php:795 server_replication.php:327 +#: libraries/messages.inc.php:791 server_replication.php:327 #, php-format msgid "SQL Thread %s only" msgstr "" -#: libraries/messages.inc.php:796 +#: libraries/messages.inc.php:792 #, php-format msgid "" "This MySQL server works as %s in replication process. For further " @@ -5020,160 +5020,160 @@ msgid "" "\"#replication\">replication section." msgstr "" -#: libraries/messages.inc.php:797 +#: libraries/messages.inc.php:793 msgid "Master status" msgstr "" -#: libraries/messages.inc.php:798 server_status.php:721 +#: libraries/messages.inc.php:794 server_status.php:721 #, fuzzy msgid "Replication status" msgstr "Репликация" -#: libraries/messages.inc.php:799 +#: libraries/messages.inc.php:795 msgid "Slave status" msgstr "" -#: libraries/messages.inc.php:800 server_replication.php:311 +#: libraries/messages.inc.php:796 server_replication.php:311 msgid "Synchronize databases with master" msgstr "" -#: libraries/messages.inc.php:801 server_replication.php:71 +#: libraries/messages.inc.php:797 server_replication.php:71 msgid "Unable to change master" msgstr "" -#: libraries/messages.inc.php:802 server_replication.php:51 +#: libraries/messages.inc.php:798 server_replication.php:51 msgid "Unknown error" msgstr "" -#: libraries/messages.inc.php:803 main.php:163 pdf_pages.php:344 +#: libraries/messages.inc.php:799 main.php:163 pdf_pages.php:344 #: setup/lib/FormDisplay.tpl.php:216 tbl_change.php:1175 msgid "Reset" msgstr "Изчистване" -#: libraries/messages.inc.php:804 server_privileges.php:591 +#: libraries/messages.inc.php:800 server_privileges.php:591 msgid "Resource limits" msgstr "Ресурсни ограничения" -#: libraries/messages.inc.php:805 tbl_change.php:1209 +#: libraries/messages.inc.php:801 tbl_change.php:1209 #, php-format msgid "Restart insertion with %s rows" msgstr "" -#: libraries/messages.inc.php:807 server_privileges.php:1578 +#: libraries/messages.inc.php:803 server_privileges.php:1578 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Отмяна на всички активни привилегии от потребителите и след това изтриване." -#: libraries/messages.inc.php:808 server_privileges.php:1176 +#: libraries/messages.inc.php:804 server_privileges.php:1176 #, php-format msgid "You have revoked the privileges for %s" msgstr "Вие отменихте привилегиите за %s" -#: libraries/messages.inc.php:809 server_privileges.php:1333 +#: libraries/messages.inc.php:805 server_privileges.php:1333 msgid "Revoke" msgstr "Отменяне" -#: libraries/messages.inc.php:810 libraries/mysql_charsets.lib.php:280 +#: libraries/messages.inc.php:806 libraries/mysql_charsets.lib.php:280 msgid "Romanian" msgstr "Румънски" -#: libraries/messages.inc.php:813 tbl_printview.php:404 tbl_structure.php:786 +#: libraries/messages.inc.php:809 tbl_printview.php:404 tbl_structure.php:786 msgid "Row length" msgstr "Дължина на реда" -#: libraries/messages.inc.php:815 tbl_printview.php:414 tbl_structure.php:794 +#: libraries/messages.inc.php:811 tbl_printview.php:414 tbl_structure.php:794 msgid " Row size " msgstr " Размер на ред " -#: libraries/messages.inc.php:821 tbl_printview.php:366 tbl_structure.php:726 +#: libraries/messages.inc.php:817 tbl_printview.php:366 tbl_structure.php:726 msgid "Row Statistics" msgstr "Статистика за редовете" -#: libraries/messages.inc.php:822 +#: libraries/messages.inc.php:818 #, php-format msgid "running on %s" msgstr "работи на %s" -#: libraries/messages.inc.php:824 libraries/sql_query_form.lib.php:223 +#: libraries/messages.inc.php:820 libraries/sql_query_form.lib.php:223 #, php-format msgid "Run SQL query/queries on server %s" msgstr "Изпълняване на SQL заявка/заявки на сървър %s" -#: libraries/messages.inc.php:825 libraries/sql_query_form.lib.php:240 +#: libraries/messages.inc.php:821 libraries/sql_query_form.lib.php:240 #: libraries/sql_query_form.lib.php:265 #, php-format msgid "Run SQL query/queries on database %s" msgstr "Изпълнение на SQL заявка/заявки към база от данни %s" -#: libraries/messages.inc.php:826 libraries/mysql_charsets.lib.php:337 +#: libraries/messages.inc.php:822 libraries/mysql_charsets.lib.php:337 msgid "Russian" msgstr "Руски" -#: libraries/messages.inc.php:829 pmd_general.php:68 +#: libraries/messages.inc.php:825 pmd_general.php:68 msgid "Save position" msgstr "" -#: libraries/messages.inc.php:830 libraries/tbl_properties.inc.php:776 +#: libraries/messages.inc.php:826 libraries/tbl_properties.inc.php:776 #: pdf_pages.php:484 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:214 setup/lib/FormDisplay.tpl.php:215 #: tbl_change.php:1126 tbl_indexes.php:248 tbl_relation.php:566 msgid "Save" msgstr "Записване" -#: libraries/messages.inc.php:831 +#: libraries/messages.inc.php:827 msgid "The scale factor is too small to fit the schema on one page" msgstr "Мащаба е твърде малък за да се събере схемата на една страница" -#: libraries/messages.inc.php:843 main.php:298 +#: libraries/messages.inc.php:839 main.php:298 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "Конфигурационния файл има нужда от тайна парола (blowfish_secret)." -#: libraries/messages.inc.php:844 navigation.php:353 navigation.php:516 +#: libraries/messages.inc.php:840 navigation.php:353 navigation.php:516 msgid "Please select a database" msgstr "Моля изберете база от данни" -#: libraries/messages.inc.php:846 server_binlog.php:120 +#: libraries/messages.inc.php:842 server_binlog.php:120 msgid "Select binary log to view" msgstr "Изберете двоичен журнал за преглед" -#: libraries/messages.inc.php:847 tbl_select.php:270 +#: libraries/messages.inc.php:843 tbl_select.php:270 msgid "Select fields (at least one):" msgstr "Избор на поле (поне едно):" -#: libraries/messages.inc.php:851 pdf_pages.php:320 +#: libraries/messages.inc.php:847 pdf_pages.php:320 msgid "Select Tables" msgstr "Избери таблици" -#: libraries/messages.inc.php:853 server_status.php:404 +#: libraries/messages.inc.php:849 server_status.php:404 msgid "Sent" msgstr "Изпратени" -#: libraries/messages.inc.php:857 libraries/select_server.lib.php:45 +#: libraries/messages.inc.php:853 libraries/select_server.lib.php:45 #: setup/frames/index.inc.php:97 setup/lib/messages.inc.php:115 msgid "Servers" msgstr "Сървъри" -#: libraries/messages.inc.php:858 server_status.php:255 +#: libraries/messages.inc.php:854 server_status.php:255 #, fuzzy msgid "Delayed inserts" msgstr "Използване на отложени вмъквания" -#: libraries/messages.inc.php:859 server_status.php:46 +#: libraries/messages.inc.php:855 server_status.php:46 msgid "Runtime Information" msgstr "Информация за състоянието на MySQL сървъра" -#: libraries/messages.inc.php:860 server_status.php:350 +#: libraries/messages.inc.php:856 server_status.php:350 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Този MySQL сървър работи от %s. Стартиран е на %s." -#: libraries/messages.inc.php:861 libraries/server_links.inc.php:53 +#: libraries/messages.inc.php:857 libraries/server_links.inc.php:53 #: server_engines.php:112 server_engines.php:116 server_status.php:304 #: test/theme.php:105 msgid "Variables" msgstr "Променливи" -#: libraries/messages.inc.php:862 server_status.php:383 +#: libraries/messages.inc.php:858 server_status.php:383 msgid "" "Server traffic: These tables show the network traffic statistics of " "this MySQL server since its startup." @@ -5181,11 +5181,11 @@ msgstr "" "Трафик на сървъра: Тези таблици показват статистика за мрежовия " "трафик на MySQL сървъра от както е стартиран." -#: libraries/messages.inc.php:863 server_variables.php:35 +#: libraries/messages.inc.php:859 server_variables.php:35 msgid "Server variables and settings" msgstr "Сървърни променливи и настройки" -#: libraries/messages.inc.php:865 main.php:290 +#: libraries/messages.inc.php:861 main.php:290 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -5193,17 +5193,17 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: libraries/messages.inc.php:866 +#: libraries/messages.inc.php:862 msgid "" "Cannot start session without errors, please check errors given in your PHP " "and/or webserver log file and configure your PHP installation properly." msgstr "" -#: libraries/messages.inc.php:867 server_variables.php:55 +#: libraries/messages.inc.php:863 server_variables.php:55 msgid "Session value" msgstr "Сесийна стойност" -#: libraries/messages.inc.php:868 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:864 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 " @@ -5215,55 +5215,55 @@ msgstr "" "обратна черта (\"\\\") или апостроф (\"'\") между тези стойности, сложите " "обратна черта пред тях (например: '\\\\xyz' или 'a\\'b')." -#: libraries/messages.inc.php:876 server_binlog.php:192 server_binlog.php:195 +#: libraries/messages.inc.php:872 server_binlog.php:192 server_binlog.php:195 #: server_processlist.php:49 server_processlist.php:51 msgid "Show Full Queries" msgstr "Показване на пълните заявки" -#: libraries/messages.inc.php:878 pmd_general.php:64 +#: libraries/messages.inc.php:874 pmd_general.php:64 msgid "Show/Hide left menu" msgstr "" -#: libraries/messages.inc.php:880 sql.php:513 +#: libraries/messages.inc.php:876 sql.php:513 msgid "Showing as PHP code" msgstr "" -#: libraries/messages.inc.php:882 sql.php:516 tbl_replace.php:360 +#: libraries/messages.inc.php:878 sql.php:516 tbl_replace.php:360 msgid "Showing SQL query" msgstr "" -#: libraries/messages.inc.php:883 tbl_change.php:1132 +#: libraries/messages.inc.php:879 tbl_change.php:1132 msgid "Show insert query" msgstr "" -#: libraries/messages.inc.php:886 server_status.php:273 +#: libraries/messages.inc.php:882 server_status.php:273 msgid "Show open tables" msgstr "Показване на отворените теблици" -#: libraries/messages.inc.php:887 main.php:219 +#: libraries/messages.inc.php:883 main.php:219 msgid "Show PHP information" msgstr "Информация за PHP " -#: libraries/messages.inc.php:889 server_status.php:278 +#: libraries/messages.inc.php:885 server_status.php:278 msgid "Show slave hosts" msgstr "" -#: libraries/messages.inc.php:890 server_status.php:284 +#: libraries/messages.inc.php:886 server_status.php:284 msgid "Show slave status" msgstr "" -#: libraries/messages.inc.php:891 +#: libraries/messages.inc.php:887 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/messages.inc.php:892 +#: libraries/messages.inc.php:888 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/messages.inc.php:893 +#: libraries/messages.inc.php:889 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -5271,78 +5271,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/messages.inc.php:894 +#: libraries/messages.inc.php:890 msgid "How many temporary files mysqld has created." msgstr "Брой на създадените от mysqld временни файлове." -#: libraries/messages.inc.php:895 +#: libraries/messages.inc.php:891 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/messages.inc.php:896 +#: libraries/messages.inc.php:892 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/messages.inc.php:897 +#: libraries/messages.inc.php:893 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/messages.inc.php:898 +#: libraries/messages.inc.php:894 msgid "The number of INSERT DELAYED rows written." msgstr "Брой на вмъкнатите посредством INSERT DELAYED редове." -#: libraries/messages.inc.php:899 +#: libraries/messages.inc.php:895 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/messages.inc.php:900 +#: libraries/messages.inc.php:896 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/messages.inc.php:901 +#: libraries/messages.inc.php:897 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/messages.inc.php:902 +#: libraries/messages.inc.php:898 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/messages.inc.php:903 +#: libraries/messages.inc.php:899 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/messages.inc.php:904 +#: libraries/messages.inc.php:900 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: libraries/messages.inc.php:905 +#: libraries/messages.inc.php:901 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/messages.inc.php:906 +#: libraries/messages.inc.php:902 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: libraries/messages.inc.php:907 +#: libraries/messages.inc.php:903 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -5350,7 +5350,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/messages.inc.php:908 +#: libraries/messages.inc.php:904 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -5358,43 +5358,43 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/messages.inc.php:909 +#: libraries/messages.inc.php:905 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/messages.inc.php:910 +#: libraries/messages.inc.php:906 msgid "The number of requests to update a row in a table." msgstr "Брой заявки за обновяване на ред в таблица." -#: libraries/messages.inc.php:911 +#: libraries/messages.inc.php:907 msgid "The number of requests to insert a row in a table." msgstr "Брой заявки за вмъкване на ред в таблица." -#: libraries/messages.inc.php:912 +#: libraries/messages.inc.php:908 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/messages.inc.php:913 +#: libraries/messages.inc.php:909 msgid "The number of pages currently dirty." msgstr "" -#: libraries/messages.inc.php:914 +#: libraries/messages.inc.php:910 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/messages.inc.php:915 +#: libraries/messages.inc.php:911 #, fuzzy msgid "The number of free pages." msgstr "Брой на сортираните редове." -#: libraries/messages.inc.php:916 +#: libraries/messages.inc.php:912 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/messages.inc.php:917 +#: libraries/messages.inc.php:913 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -5402,33 +5402,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/messages.inc.php:918 +#: libraries/messages.inc.php:914 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/messages.inc.php:919 +#: libraries/messages.inc.php:915 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/messages.inc.php:920 +#: libraries/messages.inc.php:916 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/messages.inc.php:921 +#: libraries/messages.inc.php:917 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/messages.inc.php:922 +#: libraries/messages.inc.php:918 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/messages.inc.php:923 +#: libraries/messages.inc.php:919 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -5437,227 +5437,227 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/messages.inc.php:924 +#: libraries/messages.inc.php:920 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/messages.inc.php:925 +#: libraries/messages.inc.php:921 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/messages.inc.php:926 +#: libraries/messages.inc.php:922 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/messages.inc.php:927 +#: libraries/messages.inc.php:923 msgid "The current number of pending reads." msgstr "" -#: libraries/messages.inc.php:928 +#: libraries/messages.inc.php:924 msgid "The current number of pending writes." msgstr "" -#: libraries/messages.inc.php:929 +#: libraries/messages.inc.php:925 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/messages.inc.php:930 +#: libraries/messages.inc.php:926 msgid "The total number of data reads." msgstr "" -#: libraries/messages.inc.php:931 +#: libraries/messages.inc.php:927 msgid "The total number of data writes." msgstr "" -#: libraries/messages.inc.php:932 +#: libraries/messages.inc.php:928 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/messages.inc.php:933 +#: libraries/messages.inc.php:929 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/messages.inc.php:934 +#: libraries/messages.inc.php:930 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/messages.inc.php:935 +#: libraries/messages.inc.php:931 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/messages.inc.php:936 +#: libraries/messages.inc.php:932 #, fuzzy msgid "The number of log write requests." msgstr "Брой на сортираните редове." -#: libraries/messages.inc.php:937 +#: libraries/messages.inc.php:933 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/messages.inc.php:938 +#: libraries/messages.inc.php:934 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/messages.inc.php:939 +#: libraries/messages.inc.php:935 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/messages.inc.php:940 +#: libraries/messages.inc.php:936 msgid "Pending log file writes." msgstr "" -#: libraries/messages.inc.php:941 +#: libraries/messages.inc.php:937 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/messages.inc.php:942 +#: libraries/messages.inc.php:938 #, fuzzy msgid "The number of pages created." msgstr "Брой на отвотените таблици." -#: libraries/messages.inc.php:943 +#: libraries/messages.inc.php:939 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: libraries/messages.inc.php:944 +#: libraries/messages.inc.php:940 #, fuzzy msgid "The number of pages read." msgstr "Брой на сортираните редове." -#: libraries/messages.inc.php:945 +#: libraries/messages.inc.php:941 #, fuzzy msgid "The number of pages written." msgstr "Брой на отвотените таблици." -#: libraries/messages.inc.php:946 +#: libraries/messages.inc.php:942 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/messages.inc.php:947 +#: libraries/messages.inc.php:943 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/messages.inc.php:948 +#: libraries/messages.inc.php:944 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/messages.inc.php:949 +#: libraries/messages.inc.php:945 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/messages.inc.php:950 +#: libraries/messages.inc.php:946 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/messages.inc.php:951 +#: libraries/messages.inc.php:947 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/messages.inc.php:952 +#: libraries/messages.inc.php:948 #, fuzzy msgid "The number of rows inserted in InnoDB tables." msgstr "Брой заявки за вмъкване на ред в таблица." -#: libraries/messages.inc.php:953 +#: libraries/messages.inc.php:949 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/messages.inc.php:954 +#: libraries/messages.inc.php:950 #, fuzzy msgid "The number of rows updated in InnoDB tables." msgstr "Брой заявки за обновяване на ред в таблица." -#: libraries/messages.inc.php:955 +#: libraries/messages.inc.php:951 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/messages.inc.php:956 +#: libraries/messages.inc.php:952 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: libraries/messages.inc.php:957 +#: libraries/messages.inc.php:953 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/messages.inc.php:958 +#: libraries/messages.inc.php:954 #, fuzzy msgid "The number of requests to read a key block from the cache." msgstr "Брой заявки за обновяване на ред в таблица." -#: libraries/messages.inc.php:959 +#: libraries/messages.inc.php:955 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/messages.inc.php:960 +#: libraries/messages.inc.php:956 #, fuzzy msgid "The number of requests to write a key block to the cache." msgstr "Брой заявки за обновяване на ред в таблица." -#: libraries/messages.inc.php:961 +#: libraries/messages.inc.php:957 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/messages.inc.php:962 +#: libraries/messages.inc.php:958 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/messages.inc.php:963 +#: libraries/messages.inc.php:959 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/messages.inc.php:964 +#: libraries/messages.inc.php:960 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/messages.inc.php:965 +#: libraries/messages.inc.php:961 msgid "The number of files that are open." msgstr "Брой на отворените файлове." -#: libraries/messages.inc.php:966 +#: libraries/messages.inc.php:962 msgid "The number of streams that are open (used mainly for logging)." msgstr "Брой на отворените потоци (използва се главно за логове)." -#: libraries/messages.inc.php:967 +#: libraries/messages.inc.php:963 msgid "The number of tables that are open." msgstr "Брой на отвотените таблици." -#: libraries/messages.inc.php:968 +#: libraries/messages.inc.php:964 msgid "The number of free memory blocks in query cache." msgstr "" -#: libraries/messages.inc.php:969 +#: libraries/messages.inc.php:965 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/messages.inc.php:970 +#: libraries/messages.inc.php:966 #, fuzzy msgid "The number of cache hits." msgstr "Брой на сортираните редове." -#: libraries/messages.inc.php:971 +#: libraries/messages.inc.php:967 msgid "The number of queries added to the cache." msgstr "" -#: libraries/messages.inc.php:972 +#: libraries/messages.inc.php:968 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -5665,105 +5665,105 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/messages.inc.php:973 +#: libraries/messages.inc.php:969 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/messages.inc.php:974 +#: libraries/messages.inc.php:970 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/messages.inc.php:975 +#: libraries/messages.inc.php:971 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/messages.inc.php:976 +#: libraries/messages.inc.php:972 #, fuzzy msgctxt "$strShowStatusReset" msgid "Reset" msgstr "Изчистване" -#: libraries/messages.inc.php:977 +#: libraries/messages.inc.php:973 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/messages.inc.php:978 +#: libraries/messages.inc.php:974 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: libraries/messages.inc.php:979 +#: libraries/messages.inc.php:975 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/messages.inc.php:980 +#: libraries/messages.inc.php:976 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: libraries/messages.inc.php:981 +#: libraries/messages.inc.php:977 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/messages.inc.php:982 +#: libraries/messages.inc.php:978 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/messages.inc.php:983 +#: libraries/messages.inc.php:979 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/messages.inc.php:984 +#: libraries/messages.inc.php:980 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/messages.inc.php:985 +#: libraries/messages.inc.php:981 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/messages.inc.php:986 +#: libraries/messages.inc.php:982 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/messages.inc.php:987 +#: libraries/messages.inc.php:983 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/messages.inc.php:988 +#: libraries/messages.inc.php:984 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/messages.inc.php:989 +#: libraries/messages.inc.php:985 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/messages.inc.php:990 +#: libraries/messages.inc.php:986 msgid "The number of sorted rows." msgstr "Брой на сортираните редове." -#: libraries/messages.inc.php:991 +#: libraries/messages.inc.php:987 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/messages.inc.php:992 +#: libraries/messages.inc.php:988 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/messages.inc.php:993 +#: libraries/messages.inc.php:989 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -5771,18 +5771,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/messages.inc.php:994 +#: libraries/messages.inc.php:990 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/messages.inc.php:995 +#: libraries/messages.inc.php:991 msgid "The number of currently open connections." msgstr "" -#: libraries/messages.inc.php:996 +#: libraries/messages.inc.php:992 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -5790,75 +5790,75 @@ msgid "" "implementation.)" msgstr "" -#: libraries/messages.inc.php:997 +#: libraries/messages.inc.php:993 #, fuzzy msgid "The number of threads that are not sleeping." msgstr "Брой на отворените файлове." -#: libraries/messages.inc.php:999 tbl_printview.php:75 +#: libraries/messages.inc.php:995 tbl_printview.php:75 msgid "Show tables" msgstr "Покажи таблиците" -#: libraries/messages.inc.php:1000 libraries/sql_query_form.lib.php:396 +#: libraries/messages.inc.php:996 libraries/sql_query_form.lib.php:396 msgid " Show this query here again " msgstr " Показване на заявката отново" -#: libraries/messages.inc.php:1001 libraries/mysql_charsets.lib.php:217 +#: libraries/messages.inc.php:997 libraries/mysql_charsets.lib.php:217 #: libraries/mysql_charsets.lib.php:342 msgid "Simplified Chinese" msgstr "Опростен китайски" -#: libraries/messages.inc.php:1002 tbl_operations.php:258 +#: libraries/messages.inc.php:998 tbl_operations.php:258 msgid "(singly)" msgstr "(еднократно)" -#: libraries/messages.inc.php:1005 libraries/replication_gui.lib.php:52 +#: libraries/messages.inc.php:1001 libraries/replication_gui.lib.php:52 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" msgstr "" -#: libraries/messages.inc.php:1006 libraries/mysql_charsets.lib.php:283 +#: libraries/messages.inc.php:1002 libraries/mysql_charsets.lib.php:283 msgid "Slovak" msgstr "Словашки" -#: libraries/messages.inc.php:1007 libraries/mysql_charsets.lib.php:286 +#: libraries/messages.inc.php:1003 libraries/mysql_charsets.lib.php:286 msgid "Slovenian" msgstr "Словенски" -#: libraries/messages.inc.php:1008 pmd_general.php:95 +#: libraries/messages.inc.php:1004 pmd_general.php:95 msgid "Small/Big All" msgstr "" -#: libraries/messages.inc.php:1009 pmd_general.php:91 +#: libraries/messages.inc.php:1005 pmd_general.php:91 msgid "Snap to grid" msgstr "" -#: libraries/messages.inc.php:1011 server_synchronize.php:1167 +#: libraries/messages.inc.php:1007 server_synchronize.php:1167 msgid "Socket" msgstr "" -#: libraries/messages.inc.php:1013 server_status.php:259 +#: libraries/messages.inc.php:1009 server_status.php:259 msgid "Sorting" msgstr "Сортиране" -#: libraries/messages.inc.php:1015 tbl_printview.php:310 tbl_structure.php:657 +#: libraries/messages.inc.php:1011 tbl_printview.php:310 tbl_structure.php:657 msgid "Space usage" msgstr "Използвано място" -#: libraries/messages.inc.php:1016 libraries/mysql_charsets.lib.php:289 +#: libraries/messages.inc.php:1012 libraries/mysql_charsets.lib.php:289 msgid "Spanish" msgstr "Испански" -#: libraries/messages.inc.php:1019 +#: libraries/messages.inc.php:1015 msgid "Export type" msgstr "Тип на експортирането" -#: libraries/messages.inc.php:1020 +#: libraries/messages.inc.php:1016 msgid "Export time in UTC" msgstr "" -#: libraries/messages.inc.php:1021 libraries/sqlparser.lib.php:173 +#: libraries/messages.inc.php:1017 libraries/sqlparser.lib.php:173 msgid "" "There is a chance that you may have found a bug in the SQL parser. Please " "examine your query closely, and check that the quotes are correct and not " @@ -5881,7 +5881,7 @@ msgstr "" "заявки само до проблемната заявка, и изпратете съобщение за бъг с парчето от " "данните в CUT секцията по-долу:" -#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:137 +#: libraries/messages.inc.php:1018 libraries/sqlparser.lib.php:137 msgid "" "There seems to be an error in your SQL query. The MySQL server error output " "below, if there is any, may also help you in diagnosing the problem" @@ -5889,419 +5889,419 @@ msgstr "" "Изглежда, че има грешка в SQL заявката ви. Грешката върната от MySQL сървъра " "по долу, ако има такава, би могла да ви помогне в определянето на проблема" -#: libraries/messages.inc.php:1026 libraries/sqlparser.lib.php:495 +#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:495 msgid "Invalid Identifer" msgstr "Невалиден идентификатор" -#: libraries/messages.inc.php:1027 libraries/sqlparser.lib.php:344 +#: libraries/messages.inc.php:1023 libraries/sqlparser.lib.php:344 msgid "Unclosed quote" msgstr "Незатворени кавички" -#: libraries/messages.inc.php:1028 libraries/sqlparser.lib.php:612 +#: libraries/messages.inc.php:1024 libraries/sqlparser.lib.php:612 msgid "Unknown Punctuation String" msgstr "Непозната пунктуация на стринг" -#: libraries/messages.inc.php:1030 server_replication.php:327 +#: libraries/messages.inc.php:1026 server_replication.php:327 #: server_replication.php:328 #, fuzzy msgid "Start" msgstr "сб" -#: libraries/messages.inc.php:1033 tbl_printview.php:369 tbl_structure.php:729 +#: libraries/messages.inc.php:1029 tbl_printview.php:369 tbl_structure.php:729 msgid "Statements" msgstr "Заявление" -#: libraries/messages.inc.php:1034 tbl_printview.php:380 tbl_structure.php:741 +#: libraries/messages.inc.php:1030 tbl_printview.php:380 tbl_structure.php:741 msgid "static" msgstr "" -#: libraries/messages.inc.php:1035 server_status.php:388 +#: libraries/messages.inc.php:1031 server_status.php:388 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: libraries/messages.inc.php:1038 server_replication.php:327 +#: libraries/messages.inc.php:1034 server_replication.php:327 #: server_replication.php:328 msgid "Stop" msgstr "" -#: libraries/messages.inc.php:1039 server_engines.php:49 +#: libraries/messages.inc.php:1035 server_engines.php:49 msgid "Storage Engines" msgstr "Хранилища на данни" -#: libraries/messages.inc.php:1040 libraries/tbl_properties.inc.php:726 +#: libraries/messages.inc.php:1036 libraries/tbl_properties.inc.php:726 #: server_engines.php:58 tbl_operations.php:353 msgid "Storage Engine" msgstr "Хранилище на данни" -#: libraries/messages.inc.php:1042 +#: libraries/messages.inc.php:1038 msgid "CSV for MS Excel" msgstr "CSV за MS Excel данни" -#: libraries/messages.inc.php:1044 tbl_structure.php:516 tbl_structure.php:518 +#: libraries/messages.inc.php:1040 tbl_structure.php:516 tbl_structure.php:518 msgid "Propose table structure" msgstr "Анализ на таблицата" -#: libraries/messages.inc.php:1045 server_synchronize.php:424 +#: libraries/messages.inc.php:1041 server_synchronize.php:424 #: server_synchronize.php:867 msgid "Structure Difference" msgstr "" -#: libraries/messages.inc.php:1049 server_synchronize.php:265 +#: libraries/messages.inc.php:1045 server_synchronize.php:265 msgid "Structure Synchronization" msgstr "" -#: libraries/messages.inc.php:1050 libraries/sql_query_form.lib.php:462 +#: libraries/messages.inc.php:1046 libraries/sql_query_form.lib.php:462 msgid "Submit" msgstr "Изпълнение" -#: libraries/messages.inc.php:1052 main.php:358 +#: libraries/messages.inc.php:1048 main.php:358 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " "issues." msgstr "" -#: libraries/messages.inc.php:1054 libraries/mysql_charsets.lib.php:295 +#: libraries/messages.inc.php:1050 libraries/mysql_charsets.lib.php:295 #: libraries/mysql_charsets.lib.php:392 msgid "Swedish" msgstr "Шведски" -#: libraries/messages.inc.php:1060 tbl_operations.php:556 +#: libraries/messages.inc.php:1056 tbl_operations.php:556 msgid "Switch to copied table" msgstr "Превключване към копираната таблица" -#: libraries/messages.inc.php:1061 server_synchronize.php:1213 +#: libraries/messages.inc.php:1057 server_synchronize.php:1213 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." msgstr "" -#: libraries/messages.inc.php:1062 server_synchronize.php:451 +#: libraries/messages.inc.php:1058 server_synchronize.php:451 #: server_synchronize.php:896 msgid "Synchronize Databases" msgstr "" -#: libraries/messages.inc.php:1063 libraries/server_links.inc.php:92 +#: libraries/messages.inc.php:1059 libraries/server_links.inc.php:92 #: server_synchronize.php:1092 server_synchronize.php:1100 msgid "Synchronize" msgstr "" -#: libraries/messages.inc.php:1065 server_synchronize.php:430 +#: libraries/messages.inc.php:1061 server_synchronize.php:430 #: server_synchronize.php:873 msgid "Add column(s)" msgstr "" -#: libraries/messages.inc.php:1066 tbl_create.php:62 +#: libraries/messages.inc.php:1062 tbl_create.php:62 #, php-format msgid "Table %s already exists!" msgstr "Таблица %s вече съществува!" -#: libraries/messages.inc.php:1067 server_synchronize.php:432 +#: libraries/messages.inc.php:1063 server_synchronize.php:432 #: server_synchronize.php:875 msgid "Alter column(s)" msgstr "" -#: libraries/messages.inc.php:1068 tbl_addfield.php:189 tbl_alter.php:103 +#: libraries/messages.inc.php:1064 tbl_addfield.php:189 tbl_alter.php:103 #: tbl_indexes.php:98 #, fuzzy, php-format msgid "Table %1$s has been altered successfully" msgstr "Избраните потребители бяха изтрити успешно." -#: libraries/messages.inc.php:1069 server_synchronize.php:434 +#: libraries/messages.inc.php:1065 server_synchronize.php:434 #: server_synchronize.php:877 msgid "Apply index(s)" msgstr "" -#: libraries/messages.inc.php:1071 server_synchronize.php:446 +#: libraries/messages.inc.php:1067 server_synchronize.php:446 #: server_synchronize.php:890 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: libraries/messages.inc.php:1072 tbl_move_copy.php:82 +#: libraries/messages.inc.php:1068 tbl_move_copy.php:82 msgid "The table name is empty!" msgstr "Името на таблицата е празно!" -#: libraries/messages.inc.php:1073 tbl_create.php:249 +#: libraries/messages.inc.php:1069 tbl_create.php:249 #, fuzzy, php-format msgid "Table %1$s has been created." msgstr "Таблицата %s беше изтрита" -#: libraries/messages.inc.php:1076 tbl_operations.php:628 +#: libraries/messages.inc.php:1072 tbl_operations.php:628 #, php-format msgid "Table %s has been flushed" msgstr "Кеша на таблица %s беше изчистен" -#: libraries/messages.inc.php:1077 server_synchronize.php:436 +#: libraries/messages.inc.php:1073 server_synchronize.php:436 #: server_synchronize.php:879 msgid "Insert row(s)" msgstr "" -#: libraries/messages.inc.php:1078 libraries/tbl_links.inc.php:107 +#: libraries/messages.inc.php:1074 libraries/tbl_links.inc.php:107 #: libraries/tbl_links.inc.php:140 libraries/tbl_links.inc.php:141 msgid "Table seems to be empty!" msgstr "" -#: libraries/messages.inc.php:1079 tbl_operations.php:568 +#: libraries/messages.inc.php:1075 tbl_operations.php:568 msgid "Table maintenance" msgstr "Поддръжка на таблицата" -#: libraries/messages.inc.php:1080 libraries/tbl_properties.inc.php:618 +#: libraries/messages.inc.php:1076 libraries/tbl_properties.inc.php:618 #: server_synchronize.php:428 server_synchronize.php:871 #, fuzzy msgid "Table name" msgstr "име на таблицата" -#: libraries/messages.inc.php:1081 pdf_schema.php:1116 +#: libraries/messages.inc.php:1077 pdf_schema.php:1116 msgid "Table of contents" msgstr "Съдържание" -#: libraries/messages.inc.php:1082 tbl_operations.php:334 +#: libraries/messages.inc.php:1078 tbl_operations.php:334 msgid "Table options" msgstr "Опции на таблицата" -#: libraries/messages.inc.php:1083 server_synchronize.php:431 +#: libraries/messages.inc.php:1079 server_synchronize.php:431 #: server_synchronize.php:874 msgid "Remove column(s)" msgstr "" -#: libraries/messages.inc.php:1084 server_synchronize.php:433 +#: libraries/messages.inc.php:1080 server_synchronize.php:433 #: server_synchronize.php:876 msgid "Remove index(s)" msgstr "" -#: libraries/messages.inc.php:1088 server_synchronize.php:435 +#: libraries/messages.inc.php:1084 server_synchronize.php:435 #: server_synchronize.php:878 msgid "Update row(s)" msgstr "" -#: libraries/messages.inc.php:1090 server_synchronize.php:942 +#: libraries/messages.inc.php:1086 server_synchronize.php:942 msgid "Target database has been synchronized with source database" msgstr "" -#: libraries/messages.inc.php:1091 server_privileges.php:392 +#: libraries/messages.inc.php:1087 server_privileges.php:392 #: server_privileges.php:527 server_privileges.php:1679 #: server_privileges.php:1685 msgid "Table-specific privileges" msgstr "Привилегии специфични за таблицата" -#: libraries/messages.inc.php:1092 server_status.php:254 +#: libraries/messages.inc.php:1088 server_status.php:254 msgid "Temporary data" msgstr "Временни данни" -#: libraries/messages.inc.php:1093 tbl_change.php:728 +#: libraries/messages.inc.php:1089 tbl_change.php:728 msgid " Because of its length,
this field might not be editable " msgstr " Поради дължината си,
това поле може да не е редактируемо " -#: libraries/messages.inc.php:1094 +#: libraries/messages.inc.php:1090 msgid "Texy! text" msgstr "" -#: libraries/messages.inc.php:1095 libraries/mysql_charsets.lib.php:298 +#: libraries/messages.inc.php:1091 libraries/mysql_charsets.lib.php:298 #: libraries/mysql_charsets.lib.php:395 msgid "Thai" msgstr "Тайландски" -#: libraries/messages.inc.php:1102 libraries/replication_gui.lib.php:308 +#: libraries/messages.inc.php:1098 libraries/replication_gui.lib.php:308 #: server_privileges.php:734 msgid "This Host" msgstr "Този Хост" -#: libraries/messages.inc.php:1103 server_status.php:252 +#: libraries/messages.inc.php:1099 server_status.php:252 msgid "Threads" msgstr "Нишки" -#: libraries/messages.inc.php:1104 server_processlist.php:22 +#: libraries/messages.inc.php:1100 server_processlist.php:22 #, php-format msgid "Thread %s was successfully killed." msgstr "Нишка %s беше успешно отстранена." -#: libraries/messages.inc.php:1106 +#: libraries/messages.inc.php:1102 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." msgstr "" -#: libraries/messages.inc.php:1109 pmd_pdf.php:94 +#: libraries/messages.inc.php:1105 pmd_pdf.php:94 msgid "to/from page" msgstr "" -#: libraries/messages.inc.php:1110 pdf_pages.php:343 +#: libraries/messages.inc.php:1106 pdf_pages.php:343 msgid "Toggle scratchboard" msgstr "" -#: libraries/messages.inc.php:1111 pmd_general.php:99 +#: libraries/messages.inc.php:1107 pmd_general.php:99 msgid "Toggle small/big" msgstr "" -#: libraries/messages.inc.php:1112 pmd_help.php:27 +#: libraries/messages.inc.php:1108 pmd_help.php:27 msgid "To select relation, click :" msgstr "" -#: libraries/messages.inc.php:1115 libraries/tbl_links.inc.php:149 +#: libraries/messages.inc.php:1111 libraries/tbl_links.inc.php:149 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" -#: libraries/messages.inc.php:1116 tbl_tracking.php:655 +#: libraries/messages.inc.php:1112 tbl_tracking.php:655 msgid "Activate now" msgstr "" -#: libraries/messages.inc.php:1117 tbl_tracking.php:653 +#: libraries/messages.inc.php:1113 tbl_tracking.php:653 #, php-format msgid "Activate tracking for %s.%s" msgstr "" -#: libraries/messages.inc.php:1118 tbl_tracking.php:221 +#: libraries/messages.inc.php:1114 tbl_tracking.php:221 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/messages.inc.php:1119 tbl_tracking.php:688 +#: libraries/messages.inc.php:1115 tbl_tracking.php:688 #, fuzzy msgid "Create version" msgstr "Версия на сървъра" -#: libraries/messages.inc.php:1120 tbl_tracking.php:668 +#: libraries/messages.inc.php:1116 tbl_tracking.php:668 #, php-format msgid "Create version %s of %s.%s" msgstr "" -#: libraries/messages.inc.php:1122 tbl_tracking.php:412 +#: libraries/messages.inc.php:1118 tbl_tracking.php:412 msgid "Data definition statement" msgstr "" -#: libraries/messages.inc.php:1123 tbl_tracking.php:463 +#: libraries/messages.inc.php:1119 tbl_tracking.php:463 msgid "Data manipulation statement" msgstr "" -#: libraries/messages.inc.php:1124 tbl_tracking.php:410 tbl_tracking.php:461 +#: libraries/messages.inc.php:1120 tbl_tracking.php:410 tbl_tracking.php:461 #, fuzzy msgid "Date" msgstr "Данни" -#: libraries/messages.inc.php:1125 tbl_tracking.php:642 +#: libraries/messages.inc.php:1121 tbl_tracking.php:642 msgid "Deactivate now" msgstr "" -#: libraries/messages.inc.php:1126 tbl_tracking.php:640 +#: libraries/messages.inc.php:1122 tbl_tracking.php:640 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "" -#: libraries/messages.inc.php:1127 tbl_tracking.php:521 +#: libraries/messages.inc.php:1123 tbl_tracking.php:521 #, php-format msgid "Export as %s" msgstr "" -#: libraries/messages.inc.php:1130 tbl_tracking.php:251 tbl_tracking.php:379 +#: libraries/messages.inc.php:1126 tbl_tracking.php:251 tbl_tracking.php:379 msgid "Close" msgstr "" -#: libraries/messages.inc.php:1131 tbl_tracking.php:114 +#: libraries/messages.inc.php:1127 tbl_tracking.php:114 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/messages.inc.php:1133 tbl_tracking.php:397 tbl_tracking.php:504 +#: libraries/messages.inc.php:1129 tbl_tracking.php:397 tbl_tracking.php:504 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "" -#: libraries/messages.inc.php:1134 tbl_tracking.php:561 +#: libraries/messages.inc.php:1130 tbl_tracking.php:561 msgid "Show versions" msgstr "" -#: libraries/messages.inc.php:1135 tbl_tracking.php:507 +#: libraries/messages.inc.php:1131 tbl_tracking.php:507 msgid "SQL dump (file download)" msgstr "" -#: libraries/messages.inc.php:1136 tbl_tracking.php:508 +#: libraries/messages.inc.php:1132 tbl_tracking.php:508 msgid "SQL dump" msgstr "" -#: libraries/messages.inc.php:1137 tbl_tracking.php:213 +#: libraries/messages.inc.php:1133 tbl_tracking.php:213 msgid "SQL statements executed." msgstr "" -#: libraries/messages.inc.php:1138 +#: libraries/messages.inc.php:1134 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/messages.inc.php:1139 tbl_tracking.php:509 +#: libraries/messages.inc.php:1135 tbl_tracking.php:509 msgid "SQL execution" msgstr "" -#: libraries/messages.inc.php:1140 tbl_tracking.php:230 +#: libraries/messages.inc.php:1136 tbl_tracking.php:230 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/messages.inc.php:1141 tbl_tracking.php:381 +#: libraries/messages.inc.php:1137 tbl_tracking.php:381 msgid "Tracking statements" msgstr "" -#: libraries/messages.inc.php:1148 tbl_tracking.php:593 +#: libraries/messages.inc.php:1144 tbl_tracking.php:593 #, fuzzy msgid "Version" msgstr "Персийски" -#: libraries/messages.inc.php:1149 tbl_tracking.php:672 +#: libraries/messages.inc.php:1145 tbl_tracking.php:672 msgid "Track these data definition statements:" msgstr "" -#: libraries/messages.inc.php:1150 tbl_tracking.php:680 +#: libraries/messages.inc.php:1146 tbl_tracking.php:680 msgid "Track these data manipulation statements:" msgstr "" -#: libraries/messages.inc.php:1155 tbl_tracking.php:411 tbl_tracking.php:462 +#: libraries/messages.inc.php:1151 tbl_tracking.php:411 tbl_tracking.php:462 #, fuzzy msgid "Username" msgstr "Име:" -#: libraries/messages.inc.php:1156 tbl_tracking.php:203 +#: libraries/messages.inc.php:1152 tbl_tracking.php:203 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "" -#: libraries/messages.inc.php:1157 tbl_tracking.php:187 +#: libraries/messages.inc.php:1153 tbl_tracking.php:187 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "" -#: libraries/messages.inc.php:1158 tbl_tracking.php:195 +#: libraries/messages.inc.php:1154 tbl_tracking.php:195 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "" -#: libraries/messages.inc.php:1159 tbl_tracking.php:262 +#: libraries/messages.inc.php:1155 tbl_tracking.php:262 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/messages.inc.php:1161 tbl_tracking.php:220 +#: libraries/messages.inc.php:1157 tbl_tracking.php:220 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/messages.inc.php:1162 libraries/mysql_charsets.lib.php:219 +#: libraries/messages.inc.php:1158 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:362 msgid "Traditional Chinese" msgstr "Традиционен китайски" -#: libraries/messages.inc.php:1163 libraries/mysql_charsets.lib.php:292 +#: libraries/messages.inc.php:1159 libraries/mysql_charsets.lib.php:292 msgid "Traditional Spanish" msgstr "Традиционен Испански" -#: libraries/messages.inc.php:1164 server_status.php:388 +#: libraries/messages.inc.php:1160 server_status.php:388 msgid "Traffic" msgstr "Трафик" -#: libraries/messages.inc.php:1165 server_status.php:261 +#: libraries/messages.inc.php:1161 server_status.php:261 msgid "Transaction coordinator" msgstr "Координатор на транзакциите" -#: libraries/messages.inc.php:1166 +#: libraries/messages.inc.php:1162 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 " @@ -6313,13 +6313,13 @@ msgstr "" "реда на таблицата съдържащо файловото име. Ако напишете втора опция, трябва " "първата ви опция да е установена на празен низ." -#: libraries/messages.inc.php:1167 +#: libraries/messages.inc.php:1163 msgid "" "Displays hexadecimal representation of data. Optional first parameter " "specifies how often space will be added (defaults to 2 nibbles)." msgstr "" -#: libraries/messages.inc.php:1168 +#: libraries/messages.inc.php:1164 msgid "" "Displays a clickable thumbnail. The options are the maximum width and height " "in pixels. The original aspect ratio is preserved." @@ -6327,15 +6327,15 @@ msgstr "" "Показва thumbnail; опции: ширина, височина в пиксели (запазва оригиналната " "пропорция)" -#: libraries/messages.inc.php:1169 +#: libraries/messages.inc.php:1165 msgid "Displays a link to download this image." msgstr "Показва връзката на това изображение (за директно сваляне, i.e.)." -#: libraries/messages.inc.php:1170 +#: libraries/messages.inc.php:1166 msgid "See image/jpeg: inline" msgstr "Виж image/jpeg: inline" -#: libraries/messages.inc.php:1171 +#: libraries/messages.inc.php:1167 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 " @@ -6347,7 +6347,7 @@ msgid "" "gmdate() function." msgstr "" -#: libraries/messages.inc.php:1172 +#: libraries/messages.inc.php:1168 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 " @@ -6372,13 +6372,13 @@ msgstr "" "параметър е установен в 1, ще постави NOWRAP на клетката на съдържанието, " "така че целия изход ще бъде показан без преформатиране (По подразбиране е 1)" -#: libraries/messages.inc.php:1173 +#: libraries/messages.inc.php:1169 msgid "" "Displays the contents of the field as-is, without running it through " "htmlspecialchars(). That is, the field is assumed to contain valid HTML." msgstr "Запазва оригиналното форматиране на полето." -#: libraries/messages.inc.php:1174 +#: libraries/messages.inc.php:1170 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 " @@ -6388,7 +6388,7 @@ msgstr "" "е префикс като \"http://domain.com/\", втората опция е ширината в пиксели, " "третата е височината." -#: libraries/messages.inc.php:1175 +#: libraries/messages.inc.php:1171 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 " @@ -6397,11 +6397,11 @@ msgstr "" "Показва връзката на полето съдържащо файлово име; първата опция е префикс " "като \"http://domain.com/\", втората опция е заглавието на връзката." -#: libraries/messages.inc.php:1176 +#: libraries/messages.inc.php:1172 msgid "Formats text as SQL query with syntax highlighting." msgstr "" -#: libraries/messages.inc.php:1177 +#: libraries/messages.inc.php:1173 msgid "" "Displays a part of a string. The first option is the number of characters to " "skip from the beginning of the string (Default 0). The second option is the " @@ -6414,71 +6414,71 @@ msgstr "" "изведе. Ако е празна, се връща целия оставащ текст. Третата опция указва кои " "зкаци ще бъдат изведени (По подразбиране: ...) ." -#: libraries/messages.inc.php:1179 server_binlog.php:183 server_binlog.php:186 +#: libraries/messages.inc.php:1175 server_binlog.php:183 server_binlog.php:186 #: server_processlist.php:49 server_processlist.php:51 msgid "Truncate Shown Queries" msgstr "Съкращаване на показаните заявки" -#: libraries/messages.inc.php:1180 libraries/mysql_charsets.lib.php:301 +#: libraries/messages.inc.php:1176 libraries/mysql_charsets.lib.php:301 #: libraries/mysql_charsets.lib.php:389 msgid "Turkish" msgstr "Турски" -#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:304 +#: libraries/messages.inc.php:1179 libraries/mysql_charsets.lib.php:304 #: libraries/mysql_charsets.lib.php:386 msgid "Ukrainian" msgstr "Украински" -#: libraries/messages.inc.php:1185 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:1181 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 msgid "Unicode" msgstr "Unicode" -#: libraries/messages.inc.php:1187 libraries/mysql_charsets.lib.php:398 +#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:398 #: libraries/mysql_charsets.lib.php:405 msgid "unknown" msgstr "непознат" -#: libraries/messages.inc.php:1190 server_privileges.php:1152 +#: libraries/messages.inc.php:1186 server_privileges.php:1152 #, php-format msgid "You have updated the privileges for %s." msgstr "Вие променихте привилегиите за %s." -#: libraries/messages.inc.php:1191 user_password.php:112 +#: libraries/messages.inc.php:1187 user_password.php:112 msgid "The profile has been updated." msgstr "Профила беше обновен." -#: libraries/messages.inc.php:1193 libraries/relation.lib.php:138 +#: libraries/messages.inc.php:1189 libraries/relation.lib.php:138 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "Моля прегледайте информацията в Документацията относно това как да обновите " "вашата Column_comments таблица" -#: libraries/messages.inc.php:1194 +#: libraries/messages.inc.php:1190 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Трябва да ъпгрейднете към %s %s или по-късно." -#: libraries/messages.inc.php:1204 tbl_printview.php:314 tbl_structure.php:661 +#: libraries/messages.inc.php:1200 tbl_printview.php:314 tbl_structure.php:661 msgid "Usage" msgstr "Използвани" -#: libraries/messages.inc.php:1205 +#: libraries/messages.inc.php:1201 msgid "Enclose table and field names with backquotes" msgstr "Използване на обратни кавички около имена на таблици и полета" -#: libraries/messages.inc.php:1206 libraries/replication_gui.lib.php:314 +#: libraries/messages.inc.php:1202 libraries/replication_gui.lib.php:314 #: server_privileges.php:740 msgid "Use Host Table" msgstr "Използвай таблица Host" -#: libraries/messages.inc.php:1207 server_privileges.php:848 +#: libraries/messages.inc.php:1203 server_privileges.php:848 #, php-format msgid "The user %s already exists!" msgstr "Потребител %s вече съществува!" -#: libraries/messages.inc.php:1209 libraries/replication_gui.lib.php:55 +#: libraries/messages.inc.php:1205 libraries/replication_gui.lib.php:55 #: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245 #: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255 #: server_privileges.php:672 server_privileges.php:675 @@ -6486,37 +6486,37 @@ msgstr "Потребител %s вече съществува!" msgid "User name" msgstr "Потребителско име" -#: libraries/messages.inc.php:1210 server_privileges.php:1645 +#: libraries/messages.inc.php:1206 server_privileges.php:1645 msgid "The selected user was not found in the privilege table." msgstr "Избрания потребител не беше открит в таблицата с привилегиите." -#: libraries/messages.inc.php:1211 server_privileges.php:1365 +#: libraries/messages.inc.php:1207 server_privileges.php:1365 msgid "User overview" msgstr "Преглед на потребителите" -#: libraries/messages.inc.php:1212 server_privileges.php:1261 +#: libraries/messages.inc.php:1208 server_privileges.php:1261 msgid "The selected users have been deleted successfully." msgstr "Избраните потребители бяха изтрити успешно." -#: libraries/messages.inc.php:1213 server_privileges.php:2026 +#: libraries/messages.inc.php:1209 server_privileges.php:2026 #, php-format msgid "Users having access to "%s"" msgstr "Потребители които имат достъп до "%s"" -#: libraries/messages.inc.php:1214 main.php:189 server_privileges.php:1350 +#: libraries/messages.inc.php:1210 main.php:189 server_privileges.php:1350 #: server_privileges.php:1497 server_privileges.php:1611 #: server_privileges.php:2029 server_processlist.php:54 msgid "User" msgstr "Потребител" -#: libraries/messages.inc.php:1215 tbl_change.php:1171 +#: libraries/messages.inc.php:1211 tbl_change.php:1171 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Използвайте клавиша TAB за да премествате крурсора от стойност на стойност " "или CTRL+стрелка за да премествате курсора в съответната посока" -#: libraries/messages.inc.php:1217 libraries/replication_gui.lib.php:251 +#: libraries/messages.inc.php:1213 libraries/replication_gui.lib.php:251 #: libraries/replication_gui.lib.php:319 libraries/replication_gui.lib.php:342 #: server_privileges.php:678 server_privileges.php:745 #: server_privileges.php:769 server_privileges.php:1889 @@ -6524,7 +6524,7 @@ msgstr "" msgid "Use text field" msgstr "Използвай текстовото поле" -#: libraries/messages.inc.php:1221 libraries/sqlvalidator.lib.php:68 +#: libraries/messages.inc.php:1217 libraries/sqlvalidator.lib.php:68 #, php-format msgid "" "The SQL validator could not be initialized. Please check if you have " @@ -6534,87 +6534,87 @@ msgstr "" "инсталирали необходимите PHP разширения, така както е описано в %" "sдокументацията%s." -#: libraries/messages.inc.php:1222 libraries/replication_gui.lib.php:111 +#: libraries/messages.inc.php:1218 libraries/replication_gui.lib.php:111 #: server_status.php:627 tbl_change.php:324 tbl_printview.php:370 #: tbl_select.php:139 tbl_structure.php:730 msgid "Value" msgstr "Стойност" -#: libraries/messages.inc.php:1223 libraries/replication_gui.lib.php:110 +#: libraries/messages.inc.php:1219 libraries/replication_gui.lib.php:110 #: libraries/sql_query_form.lib.php:445 server_status.php:626 #: server_variables.php:52 msgid "Variable" msgstr "Променлива" -#: libraries/messages.inc.php:1225 server_export.php:21 +#: libraries/messages.inc.php:1221 server_export.php:21 msgid "View dump (schema) of databases" msgstr "Преглед на схемата на базата от данни" -#: libraries/messages.inc.php:1227 tbl_export.php:23 +#: libraries/messages.inc.php:1223 tbl_export.php:23 msgid "View dump (schema) of table" msgstr "Схема на таблицата" -#: libraries/messages.inc.php:1231 view_create.php:142 +#: libraries/messages.inc.php:1227 view_create.php:142 msgid "VIEW name" msgstr "" -#: libraries/messages.inc.php:1237 main.php:205 +#: libraries/messages.inc.php:1233 main.php:205 msgid "Web server" msgstr "" -#: libraries/messages.inc.php:1239 libraries/mysql_charsets.lib.php:277 +#: libraries/messages.inc.php:1235 libraries/mysql_charsets.lib.php:277 #: libraries/mysql_charsets.lib.php:325 msgid "West European" msgstr "Западно-европейски" -#: libraries/messages.inc.php:1240 main.php:230 +#: libraries/messages.inc.php:1236 main.php:230 msgid "Wiki" msgstr "" -#: libraries/messages.inc.php:1241 server_privileges.php:2138 +#: libraries/messages.inc.php:1237 server_privileges.php:2138 msgid "wildcard" msgstr "знак за заместване" -#: libraries/messages.inc.php:1248 +#: libraries/messages.inc.php:1244 msgid "Export contents" msgstr "" -#: libraries/messages.inc.php:1249 +#: libraries/messages.inc.php:1245 msgid "Export functions" msgstr "" -#: libraries/messages.inc.php:1250 +#: libraries/messages.inc.php:1246 msgid "Export procedures" msgstr "" -#: libraries/messages.inc.php:1251 +#: libraries/messages.inc.php:1247 msgid "Export Structure Schemas (recommended)" msgstr "" -#: libraries/messages.inc.php:1252 +#: libraries/messages.inc.php:1248 #, fuzzy msgid "Export tables" msgstr "Тип на експортирането" -#: libraries/messages.inc.php:1253 +#: libraries/messages.inc.php:1249 #, fuzzy msgid "Export triggers" msgstr "Тип на експортирането" -#: libraries/messages.inc.php:1254 +#: libraries/messages.inc.php:1250 msgid "Export views" msgstr "" -#: libraries/messages.inc.php:1255 +#: libraries/messages.inc.php:1251 msgid "XML" msgstr "XML" -#: libraries/messages.inc.php:1259 server_privileges.php:592 +#: libraries/messages.inc.php:1255 server_privileges.php:592 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" "Забележка: Установяването на тези опции с 0 (нула) премахва ограничението." -#: libraries/messages.inc.php:1260 +#: libraries/messages.inc.php:1256 msgid "\"zipped\"" msgstr "\"zip-нато\"" diff --git a/po/bn.po b/po/bn.po index 11a46df08..5929ceb65 100644 --- 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-05-13 11:25+0200\n" +"POT-Creation-Date: 2010-05-13 11:30+0200\n" "PO-Revision-Date: 2010-03-12 09:11+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: bangla \n" @@ -13,19 +13,19 @@ msgstr "" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:38 browse_foreigners.php:59 -#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:870 +#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:866 #: server_privileges.php:1475 msgid "Show all" msgstr "Show all" #: browse_foreigners.php:82 db_operations.php:648 -#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:394 -#: libraries/export/pdf.php:147 libraries/messages.inc.php:597 +#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394 +#: libraries/export/pdf.php:147 libraries/messages.inc.php:593 #: pdf_schema.php:283 pdf_schema.php:1123 pdf_schema.php:1139 msgid "Page number:" msgstr "পাতার সংখ্যাঃ" -#: browse_foreigners.php:132 libraries/messages.inc.php:1242 +#: browse_foreigners.php:132 libraries/messages.inc.php:1238 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -38,7 +38,7 @@ 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/db_links.inc.php:75 -#: libraries/messages.inc.php:841 libraries/tbl_links.inc.php:63 +#: libraries/messages.inc.php:837 libraries/tbl_links.inc.php:63 msgid "Search" msgstr "খুঁজুন" @@ -47,12 +47,12 @@ msgstr "খুঁজুন" #: db_search.php:362 db_structure.php:567 js/messages.php:48 #: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2267 +#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 #: 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 #: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614 -#: libraries/messages.inc.php:361 libraries/replication_gui.lib.php:73 +#: libraries/messages.inc.php:357 libraries/replication_gui.lib.php:73 #: libraries/replication_gui.lib.php:365 libraries/select_server.lib.php:104 #: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477 #: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782 @@ -72,33 +72,33 @@ msgid "Go" msgstr "Go" #: browse_foreigners.php:168 browse_foreigners.php:172 -#: libraries/Index.class.php:442 libraries/messages.inc.php:459 +#: libraries/Index.class.php:442 libraries/messages.inc.php:455 #: tbl_tracking.php:320 msgid "Keyname" msgstr "Keyname" #: browse_foreigners.php:169 browse_foreigners.php:171 -#: libraries/messages.inc.php:252 server_collations.php:55 +#: libraries/messages.inc.php:248 server_collations.php:55 #: server_collations.php:67 server_engines.php:59 server_status.php:628 msgid "Description" msgstr "বর্ণনা" #: browse_foreigners.php:247 browse_foreigners.php:256 #: browse_foreigners.php:268 browse_foreigners.php:276 -#: libraries/messages.inc.php:1218 +#: libraries/messages.inc.php:1214 msgid "Use this value" msgstr "Use this value" -#: db_create.php:46 libraries/messages.inc.php:215 +#: db_create.php:46 libraries/messages.inc.php:211 #, fuzzy, php-format msgid "Database %1$s has been created." msgstr "%s ডাটাবেজ মুছে ফেলা হয়েছে" -#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:232 +#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:228 msgid "Database comment: " msgstr "ডাটাবেজ মন্তব্যসমূহঃ" -#: db_datadict.php:165 libraries/messages.inc.php:1070 +#: db_datadict.php:165 libraries/messages.inc.php:1066 #: libraries/tbl_properties.inc.php:724 pdf_schema.php:1236 #: tbl_operations.php:345 tbl_printview.php:130 msgid "Table comments" @@ -107,7 +107,7 @@ msgstr "Table comments" #: db_datadict.php:174 db_qbe.php:174 libraries/Index.class.php:446 #: libraries/export/htmlword.php:244 libraries/export/latex.php:360 #: libraries/export/odt.php:294 libraries/export/texytext.php:233 -#: libraries/messages.inc.php:317 libraries/tbl_properties.inc.php:99 +#: libraries/messages.inc.php:313 libraries/tbl_properties.inc.php:99 #: libraries/tbl_properties.inc.php:275 pdf_schema.php:1262 #: pdf_schema.php:1283 tbl_change.php:308 tbl_indexes.php:189 #: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135 @@ -119,7 +119,7 @@ msgstr "ক্ষেত্র" #: libraries/db_events.inc.php:31 libraries/db_routines.inc.php:42 #: 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/messages.inc.php:1181 +#: libraries/export/texytext.php:234 libraries/messages.inc.php:1177 #: libraries/tbl_properties.inc.php:100 pdf_schema.php:1263 #: pdf_schema.php:1284 server_privileges.php:2031 tbl_change.php:287 #: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313 @@ -131,7 +131,7 @@ msgstr "Type" #: db_datadict.php:177 libraries/Index.class.php:449 #: libraries/export/htmlword.php:246 libraries/export/latex.php:360 #: libraries/export/odt.php:300 libraries/export/texytext.php:235 -#: libraries/messages.inc.php:576 libraries/tbl_properties.inc.php:109 +#: libraries/messages.inc.php:572 libraries/tbl_properties.inc.php:109 #: pdf_schema.php:1265 pdf_schema.php:1286 tbl_change.php:323 #: tbl_printview.php:145 tbl_structure.php:181 tbl_tracking.php:276 #: tbl_tracking.php:327 @@ -140,7 +140,7 @@ msgstr "খালি" #: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 -#: libraries/export/texytext.php:236 libraries/messages.inc.php:238 +#: libraries/export/texytext.php:236 libraries/messages.inc.php:234 #: libraries/tbl_properties.inc.php:106 pdf_schema.php:1266 #: pdf_schema.php:1287 tbl_printview.php:146 tbl_structure.php:182 #: tbl_tracking.php:277 @@ -149,14 +149,14 @@ msgstr "ডিফল্ট" #: db_datadict.php:182 libraries/export/htmlword.php:249 #: libraries/export/latex.php:362 libraries/export/odt.php:307 -#: libraries/export/texytext.php:238 libraries/messages.inc.php:483 +#: libraries/export/texytext.php:238 libraries/messages.inc.php:479 #: pdf_schema.php:1268 pdf_schema.php:1289 tbl_printview.php:150 msgid "Links to" msgstr "Links to" #: db_datadict.php:184 db_printview.php:112 libraries/export/htmlword.php:252 #: libraries/export/latex.php:365 libraries/export/odt.php:312 -#: libraries/export/texytext.php:241 libraries/messages.inc.php:163 +#: libraries/export/texytext.php:241 libraries/messages.inc.php:159 #: libraries/tbl_properties.inc.php:130 pdf_schema.php:1279 #: pdf_schema.php:1290 tbl_printview.php:152 msgid "Comments" @@ -165,7 +165,7 @@ msgstr "মন্তব্যসমূহ" #: db_datadict.php:267 libraries/Index.class.php:359 #: 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/messages.inc.php:559 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:555 #: libraries/mult_submits.inc.php:263 pdf_schema.php:1344 #: server_privileges.php:1529 server_privileges.php:1540 #: server_privileges.php:1850 server_privileges.php:1855 @@ -177,7 +177,7 @@ msgstr "না" #: db_datadict.php:267 libraries/Index.class.php:360 #: libraries/Index.class.php:385 libraries/export/htmlword.php:322 #: libraries/export/latex.php:430 libraries/export/odt.php:368 -#: libraries/export/texytext.php:311 libraries/messages.inc.php:1257 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:1253 #: libraries/mult_submits.inc.php:45 libraries/mult_submits.inc.php:50 #: libraries/mult_submits.inc.php:55 libraries/mult_submits.inc.php:60 #: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:101 @@ -191,108 +191,108 @@ msgstr "না" msgid "Yes" msgstr "হ্যাঁ" -#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:670 +#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:666 #: tbl_printview.php:498 msgid "Print" msgstr "প্রিন্ট কর" -#: db_export.php:29 libraries/messages.inc.php:1226 +#: db_export.php:29 libraries/messages.inc.php:1222 msgid "View dump (schema) of database" msgstr "View dump (schema) of database" #: db_export.php:33 db_printview.php:96 db_qbe.php:102 db_structure.php:51 -#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:568 +#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:564 #: navigation.php:346 msgid "No tables found in database." msgstr "No tables found in database." -#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:845 +#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:841 #: server_export.php:27 msgid "Select All" msgstr "সব সিলেক্ট করুন" -#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1188 +#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1184 #: server_export.php:29 msgid "Unselect All" msgstr "Unselect All" -#: db_operations.php:38 libraries/messages.inc.php:213 tbl_create.php:54 +#: db_operations.php:38 libraries/messages.inc.php:209 tbl_create.php:54 msgid "The database name is empty!" msgstr "ডাটাবেজ এর নাম দেওয়া হয়নি" -#: db_operations.php:236 libraries/messages.inc.php:753 +#: db_operations.php:236 libraries/messages.inc.php:749 #, php-format msgid "Database %s has been renamed to %s" msgstr "Database %s has been renamed to %s" -#: db_operations.php:240 libraries/messages.inc.php:178 +#: db_operations.php:240 libraries/messages.inc.php:174 #, php-format msgid "Database %s has been copied to %s" msgstr "%s ডাটাবেজ় %s তে কপি করা হয়েছে" -#: db_operations.php:410 libraries/messages.inc.php:236 +#: db_operations.php:410 libraries/messages.inc.php:232 msgid "Rename database to" msgstr "ডাটাবেজ রিনেম কর" -#: db_operations.php:415 libraries/messages.inc.php:161 +#: db_operations.php:415 libraries/messages.inc.php:157 #: server_processlist.php:57 msgid "Command" msgstr "নির্দেশ" -#: db_operations.php:425 libraries/messages.inc.php:58 tbl_change.php:1143 +#: db_operations.php:425 libraries/messages.inc.php:54 tbl_change.php:1143 msgid "and then" msgstr "এবং তারপর" -#: db_operations.php:451 libraries/messages.inc.php:233 +#: db_operations.php:451 libraries/messages.inc.php:229 msgid "Copy database to" msgstr "ডাটাবেজ কপি করঃ" -#: db_operations.php:458 libraries/messages.inc.php:1043 +#: db_operations.php:458 libraries/messages.inc.php:1039 #: tbl_operations.php:526 tbl_tracking.php:388 msgid "Structure only" msgstr "Structure only" -#: db_operations.php:459 libraries/messages.inc.php:1041 +#: db_operations.php:459 libraries/messages.inc.php:1037 #: tbl_operations.php:527 tbl_tracking.php:390 msgid "Structure and data" msgstr "Structure and data" -#: db_operations.php:460 libraries/messages.inc.php:229 tbl_operations.php:528 +#: db_operations.php:460 libraries/messages.inc.php:225 tbl_operations.php:528 #: tbl_tracking.php:389 msgid "Data only" msgstr "শুধু ডাটা" -#: db_operations.php:468 libraries/messages.inc.php:186 +#: db_operations.php:468 libraries/messages.inc.php:182 msgid "CREATE DATABASE before copying" msgstr "কপি করার আগে ডাটাবেজ় তৈরী কর" #: db_operations.php:471 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 -#: libraries/export/sql.php:82 libraries/messages.inc.php:30 +#: libraries/export/sql.php:82 libraries/messages.inc.php:26 #: tbl_operations.php:534 #, php-format msgid "Add %s" msgstr "Add %s" -#: db_operations.php:475 libraries/messages.inc.php:29 tbl_operations.php:297 +#: db_operations.php:475 libraries/messages.inc.php:25 tbl_operations.php:297 #: tbl_operations.php:536 msgid "Add AUTO_INCREMENT value" msgstr "Add AUTO_INCREMENT value" -#: db_operations.php:479 libraries/messages.inc.php:31 tbl_operations.php:543 +#: db_operations.php:479 libraries/messages.inc.php:27 tbl_operations.php:543 msgid "Add constraints" msgstr "Add constraints" -#: db_operations.php:492 libraries/messages.inc.php:1059 +#: db_operations.php:492 libraries/messages.inc.php:1055 msgid "Switch to copied database" msgstr "Switch to copied database" -#: db_operations.php:533 libraries/messages.inc.php:89 +#: db_operations.php:533 libraries/messages.inc.php:85 msgid "BLOB Repository" msgstr "" #: db_operations.php:536 db_tracking.php:76 libraries/common.lib.php:1350 -#: libraries/messages.inc.php:1037 libraries/server_links.inc.php:49 +#: libraries/messages.inc.php:1033 libraries/server_links.inc.php:49 #: server_processlist.php:59 tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "অবস্থা" @@ -304,12 +304,12 @@ msgctxt "BLOB repository" msgid "Enabled" msgstr "Enabled" -#: db_operations.php:548 libraries/messages.inc.php:93 +#: db_operations.php:548 libraries/messages.inc.php:89 #, fuzzy msgid "Disable" msgstr "বন্ধ করা হয়েছে" -#: db_operations.php:558 libraries/messages.inc.php:90 +#: db_operations.php:558 libraries/messages.inc.php:86 msgid "Damaged" msgstr "" @@ -326,13 +326,13 @@ msgctxt "BLOB repository" msgid "Disabled" msgstr "বন্ধ করা হয়েছে" -#: db_operations.php:574 libraries/messages.inc.php:96 +#: db_operations.php:574 libraries/messages.inc.php:92 #, fuzzy msgid "Enable" msgstr "Enabled" #: db_operations.php:598 libraries/Index.class.php:448 -#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:158 +#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:154 #: 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:361 @@ -341,7 +341,7 @@ msgstr "Enabled" msgid "Collation" msgstr "Collation" -#: db_operations.php:609 libraries/messages.inc.php:742 main.php:316 +#: db_operations.php:609 libraries/messages.inc.php:738 main.php:316 #: pdf_schema.php:34 #, php-format msgid "" @@ -351,58 +351,58 @@ msgstr "" "The additional features for working with linked tables have been " "deactivated. To find out why click %shere%s." -#: db_operations.php:645 libraries/messages.inc.php:264 pdf_pages.php:528 +#: db_operations.php:645 libraries/messages.inc.php:260 pdf_pages.php:528 msgid "Display PDF schema" msgstr "Display PDF schema" -#: db_operations.php:661 libraries/messages.inc.php:877 pdf_pages.php:529 +#: db_operations.php:661 libraries/messages.inc.php:873 pdf_pages.php:529 msgid "Show grid" msgstr "Show grid" -#: db_operations.php:664 libraries/messages.inc.php:874 pdf_pages.php:530 +#: db_operations.php:664 libraries/messages.inc.php:870 pdf_pages.php:530 msgid "Show color" msgstr "রং দেখান" -#: db_operations.php:666 libraries/messages.inc.php:998 pdf_pages.php:531 +#: db_operations.php:666 libraries/messages.inc.php:994 pdf_pages.php:531 msgid "Show dimension of tables" msgstr "Show dimension of tables" -#: db_operations.php:669 libraries/messages.inc.php:52 pdf_pages.php:532 +#: db_operations.php:669 libraries/messages.inc.php:48 pdf_pages.php:532 msgid "Display all tables with the same width" msgstr "সব টেবিল সমান প্রশস্থতাসহ প্রদর্শন করুন?" -#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:227 +#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:223 #: pdf_pages.php:533 msgid "Data Dictionary" msgstr "ডাটা অভিধান" -#: db_operations.php:674 libraries/messages.inc.php:884 pdf_pages.php:534 +#: db_operations.php:674 libraries/messages.inc.php:880 pdf_pages.php:534 msgid "Only show keys" msgstr "" -#: db_operations.php:676 libraries/messages.inc.php:875 pdf_pages.php:535 +#: db_operations.php:676 libraries/messages.inc.php:871 pdf_pages.php:535 msgid "Data Dictionary Format" msgstr "Data Dictionary Format" -#: db_operations.php:678 libraries/messages.inc.php:464 pdf_pages.php:537 +#: db_operations.php:678 libraries/messages.inc.php:460 pdf_pages.php:537 msgid "Landscape" msgstr "Landscape" -#: db_operations.php:679 libraries/messages.inc.php:663 pdf_pages.php:538 +#: db_operations.php:679 libraries/messages.inc.php:659 pdf_pages.php:538 msgid "Portrait" msgstr "Portrait" -#: db_operations.php:682 libraries/messages.inc.php:599 pdf_pages.php:541 +#: db_operations.php:682 libraries/messages.inc.php:595 pdf_pages.php:541 msgid "Paper size" msgstr "পাতার আকার" -#: db_operations.php:706 libraries/messages.inc.php:281 +#: db_operations.php:706 libraries/messages.inc.php:277 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 libraries/messages.inc.php:1087 +#: libraries/header.inc.php:126 libraries/messages.inc.php:1083 #: pdf_pages.php:405 server_privileges.php:1626 server_privileges.php:1682 #: server_privileges.php:1946 server_synchronize.php:423 #: server_synchronize.php:866 tbl_tracking.php:592 test/theme.php:75 @@ -410,176 +410,176 @@ msgid "Table" msgstr "টেবিল" #: db_printview.php:105 libraries/db_structure.lib.php:56 -#: libraries/messages.inc.php:735 +#: libraries/messages.inc.php:731 msgid "Records" msgstr "রেকর্ডসমূহ" #: db_printview.php:109 libraries/db_structure.lib.php:67 -#: libraries/messages.inc.php:1003 tbl_indexes.php:190 +#: libraries/messages.inc.php:999 tbl_indexes.php:190 msgid "Size" msgstr "আকার" #: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 -#: libraries/export/sql.php:899 libraries/messages.inc.php:436 +#: libraries/export/sql.php:899 libraries/messages.inc.php:432 msgid "in use" msgstr "in use" #: db_printview.php:187 libraries/db_info.inc.php:88 -#: libraries/export/sql.php:514 libraries/messages.inc.php:1032 +#: libraries/export/sql.php:514 libraries/messages.inc.php:1028 #: pdf_schema.php:1241 tbl_printview.php:434 tbl_structure.php:810 msgid "Creation" msgstr "Creation" #: db_printview.php:196 libraries/db_info.inc.php:93 -#: libraries/export/sql.php:519 libraries/messages.inc.php:1036 +#: libraries/export/sql.php:519 libraries/messages.inc.php:1032 #: pdf_schema.php:1246 tbl_printview.php:444 tbl_structure.php:818 msgid "Last update" msgstr "সর্বশেষ আপডেট" #: db_printview.php:205 libraries/db_info.inc.php:98 -#: libraries/export/sql.php:524 libraries/messages.inc.php:1031 +#: libraries/export/sql.php:524 libraries/messages.inc.php:1027 #: pdf_schema.php:1251 tbl_printview.php:454 tbl_structure.php:826 msgid "Last check" msgstr "Last check" -#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1085 +#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1081 #, php-format msgid "%s table(s)" msgstr "%s table(s)" #: db_qbe.php:29 libraries/display_tbl.lib.php:1981 -#: libraries/messages.inc.php:1051 libraries/sql_query_form.lib.php:140 +#: libraries/messages.inc.php:1047 libraries/sql_query_form.lib.php:140 #: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131 #: view_operations.php:62 msgid "Your SQL query has been executed successfully" msgstr "Your SQL query has been executed successfully" -#: db_qbe.php:42 libraries/messages.inc.php:371 +#: db_qbe.php:42 libraries/messages.inc.php:367 msgid "You have to choose at least one column to display" msgstr "আপনাকে প্রদর্শন করার জন্য কমপক্ষে একটি কলাম নির্দিষ্ট করতে হবে" #: db_qbe.php:200 libraries/db_structure.lib.php:104 -#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1014 +#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1010 msgid "Sort" msgstr "সাজাঁন" #: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111 #: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828 -#: libraries/messages.inc.php:69 server_databases.php:170 +#: libraries/messages.inc.php:65 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314 msgid "Ascending" msgstr "Ascending" #: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119 #: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825 -#: libraries/messages.inc.php:251 server_databases.php:170 +#: libraries/messages.inc.php:247 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315 msgid "Descending" msgstr "Descending" #: db_qbe.php:264 db_tracking.php:78 libraries/display_tbl.lib.php:308 -#: libraries/messages.inc.php:888 tbl_change.php:277 tbl_tracking.php:597 +#: libraries/messages.inc.php:884 tbl_change.php:277 tbl_tracking.php:597 msgid "Show" msgstr "দেখান" -#: db_qbe.php:300 libraries/messages.inc.php:202 +#: db_qbe.php:300 libraries/messages.inc.php:198 msgid "Criteria" msgstr "ক্ষেত্র" #: db_qbe.php:353 db_qbe.php:435 db_qbe.php:527 db_qbe.php:558 -#: libraries/messages.inc.php:718 +#: libraries/messages.inc.php:714 msgid "Ins" msgstr "Ins" #: db_qbe.php:357 db_qbe.php:439 db_qbe.php:524 db_qbe.php:555 -#: libraries/messages.inc.php:56 +#: libraries/messages.inc.php:52 msgid "And" msgstr "এবং" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:529 db_qbe.php:560 -#: libraries/messages.inc.php:717 +#: libraries/messages.inc.php:713 msgid "Del" 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/messages.inc.php:592 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:588 #: libraries/tbl_properties.inc.php:779 server_privileges.php:258 #: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288 msgid "Or" msgstr "অথবা" -#: db_qbe.php:507 libraries/messages.inc.php:516 +#: db_qbe.php:507 libraries/messages.inc.php:512 msgid "Modify" msgstr "Modify" -#: db_qbe.php:584 libraries/messages.inc.php:33 +#: db_qbe.php:584 libraries/messages.inc.php:29 msgid "Add/Delete Criteria Row" msgstr "Add/Delete Criteria Row" -#: db_qbe.php:596 libraries/messages.inc.php:32 +#: db_qbe.php:596 libraries/messages.inc.php:28 msgid "Add/Delete Field Columns" msgstr "Add/Delete Field Columns" -#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1192 +#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1188 msgid "Update Query" msgstr "Update Query" -#: db_qbe.php:617 libraries/messages.inc.php:1216 +#: db_qbe.php:617 libraries/messages.inc.php:1212 msgid "Use Tables" msgstr "টেবিল ব্যাবহারকারী" -#: db_qbe.php:640 libraries/messages.inc.php:723 +#: db_qbe.php:640 libraries/messages.inc.php:719 #, php-format msgid "SQL query on database %s:" msgstr "SQL query on database %s:" -#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:823 +#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:819 msgid "Submit Query" msgstr "Submit Query" #: db_search.php:68 libraries/auth/config.auth.lib.php:84 #: libraries/auth/config.auth.lib.php:103 #: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52 -#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:26 +#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:22 msgid "Access denied" msgstr "প্রবেশ নিষেধ" -#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:836 +#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:832 msgid "at least one of the words" msgstr "at least one of the words" -#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:837 +#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:833 msgid "all words" msgstr "সব শব্দ" -#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:838 +#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:834 msgid "the exact phrase" msgstr "the exact phrase" -#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:839 +#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:835 msgid "as regular expression" msgstr "as regular expression" -#: db_search.php:242 libraries/messages.inc.php:840 +#: db_search.php:242 libraries/messages.inc.php:836 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Search results for \"%s\" %s:" -#: db_search.php:260 libraries/messages.inc.php:579 +#: db_search.php:260 libraries/messages.inc.php:575 #, php-format msgid "%s match(es) inside table %s" 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/messages.inc.php:108 +#: db_structure.php:105 libraries/messages.inc.php:104 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468 msgid "Browse" msgstr "ব্রাউজ করুন" #: db_search.php:272 libraries/display_tbl.lib.php:1165 -#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:243 +#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:239 #: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406 #: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377 #: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216 @@ -587,45 +587,45 @@ msgstr "ব্রাউজ করুন" msgid "Delete" msgstr "মুছে ফেল" -#: db_search.php:285 libraries/messages.inc.php:580 +#: db_search.php:285 libraries/messages.inc.php:576 #, php-format msgid "Total: %s match(es)" msgstr "Total: %s match(es)" -#: db_search.php:299 libraries/messages.inc.php:832 +#: db_search.php:299 libraries/messages.inc.php:828 msgid "Search in database" msgstr "ডাটাবে এ খুজুঁনSearch in database" -#: db_search.php:302 libraries/messages.inc.php:835 +#: db_search.php:302 libraries/messages.inc.php:831 msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgstr "Word(s) or value(s) to search for (wildcard: \"%\"):" -#: db_search.php:307 libraries/messages.inc.php:842 +#: db_search.php:307 libraries/messages.inc.php:838 msgid "Find:" msgstr "Find:" -#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1017 +#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1013 msgid "Words are separated by a space character (\" \")." msgstr "Words are separated by a space character (\" \")." -#: db_search.php:325 libraries/messages.inc.php:834 +#: db_search.php:325 libraries/messages.inc.php:830 msgid "Inside table(s):" msgstr "Inside table(s):" -#: db_search.php:355 libraries/messages.inc.php:833 +#: db_search.php:355 libraries/messages.inc.php:829 msgid "Inside field:" 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/messages.inc.php:431 libraries/sql_query_form.lib.php:334 +#: libraries/messages.inc.php:427 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/db_links.inc.php:63 libraries/export/latex.php:337 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:1048 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:1044 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 #: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269 msgid "Structure" @@ -634,8 +634,8 @@ 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:1642 -#: libraries/db_links.inc.php:100 libraries/messages.inc.php:272 +#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/db_links.inc.php:100 libraries/messages.inc.php:268 #: 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 @@ -645,40 +645,40 @@ 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:1641 -#: libraries/messages.inc.php:284 libraries/mult_submits.inc.php:39 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: libraries/messages.inc.php:280 libraries/mult_submits.inc.php:39 #: libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "খালি" -#: db_structure.php:316 libraries/messages.inc.php:1075 +#: db_structure.php:316 libraries/messages.inc.php:1071 #: libraries/tbl_links.inc.php:100 #, php-format msgid "Table %s has been emptied" msgstr "Table %s has been emptied" -#: db_structure.php:326 libraries/messages.inc.php:1229 +#: db_structure.php:326 libraries/messages.inc.php:1225 #: 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/messages.inc.php:1074 +#: db_structure.php:326 libraries/messages.inc.php:1070 #: libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "Table %s has been dropped" -#: db_structure.php:333 libraries/messages.inc.php:1128 +#: db_structure.php:333 libraries/messages.inc.php:1124 msgid "Tracking is active." msgstr "" -#: db_structure.php:335 libraries/messages.inc.php:1129 +#: db_structure.php:335 libraries/messages.inc.php:1125 msgid "Tracking is not active." msgstr "" #: db_structure.php:420 libraries/display_tbl.lib.php:1944 -#: libraries/messages.inc.php:1228 +#: libraries/messages.inc.php:1224 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -686,83 +686,83 @@ msgid "" msgstr "" #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 -#: libraries/messages.inc.php:1233 libraries/tbl_info.inc.php:66 +#: libraries/messages.inc.php:1229 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/messages.inc.php:773 libraries/server_links.inc.php:70 +#: libraries/messages.inc.php:769 libraries/server_links.inc.php:70 #: server_replication.php:33 server_replication.php:164 server_status.php:258 msgid "Replication" msgstr "Replication" -#: db_structure.php:489 libraries/messages.inc.php:1053 +#: db_structure.php:489 libraries/messages.inc.php:1049 msgid "Sum" msgstr "যোগফল" #: db_structure.php:496 libraries/StorageEngine.class.php:356 -#: libraries/messages.inc.php:239 +#: libraries/messages.inc.php:235 #, 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 #: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086 -#: libraries/messages.inc.php:1243 libraries/mult_submits.inc.php:16 +#: libraries/messages.inc.php:1239 libraries/mult_submits.inc.php:16 #: server_databases.php:346 server_databases.php:351 #: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465 msgid "With selected:" msgstr "With selected:" #: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: libraries/messages.inc.php:148 server_databases.php:348 +#: libraries/messages.inc.php:144 server_databases.php:348 #: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459 msgid "Check All" msgstr "সব পরীক্ষা করুন" #: db_structure.php:531 libraries/display_tbl.lib.php:2077 -#: libraries/messages.inc.php:1184 libraries/replication_gui.lib.php:33 +#: libraries/messages.inc.php:1180 libraries/replication_gui.lib.php:33 #: server_databases.php:350 server_privileges.php:533 #: server_privileges.php:1564 tbl_structure.php:463 msgid "Uncheck All" msgstr "Uncheck All" -#: db_structure.php:536 libraries/messages.inc.php:150 +#: db_structure.php:536 libraries/messages.inc.php:146 msgid "Check tables having overhead" msgstr "ওভারহেড সহ টেবিল পরীক্ষা কর" #: db_structure.php:547 db_structure.php:548 db_structure.php:599 -#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:672 +#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:668 #: libraries/mult_submits.inc.php:28 tbl_structure.php:493 #: tbl_structure.php:495 msgid "Print view" msgstr "Print view" -#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:153 +#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:149 #: libraries/mult_submits.inc.php:42 tbl_operations.php:579 msgid "Check table" msgstr "টেবিল পরীক্ষা কর" -#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:590 +#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:586 #: libraries/mult_submits.inc.php:47 tbl_operations.php:619 #: tbl_structure.php:710 tbl_structure.php:712 msgid "Optimize table" msgstr "টেবিল অপটিমাইজ করুন" -#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:758 +#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:754 #: libraries/mult_submits.inc.php:52 tbl_operations.php:609 msgid "Repair table" msgstr "টেবিল রিপেয়ার করুন" -#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:55 +#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:51 #: libraries/mult_submits.inc.php:57 tbl_operations.php:599 msgid "Analyze table" msgstr "টেবিল বিশ্লেষণ কর" #: db_structure.php:557 db_structure.php:558 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/messages.inc.php:310 +#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:306 #: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84 #: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109 #: server_privileges.php:1341 setup/frames/menu.inc.php:22 @@ -770,7 +770,7 @@ msgstr "টেবিল বিশ্লেষণ কর" msgid "Export" msgstr "Export" -#: db_tracking.php:66 libraries/messages.inc.php:1151 +#: db_tracking.php:66 libraries/messages.inc.php:1147 #, fuzzy msgid "Tracked tables" msgstr "টেবিল পরীক্ষা কর" @@ -779,7 +779,7 @@ msgstr "টেবিল পরীক্ষা কর" #: 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/header_printview.inc.php:58 libraries/messages.inc.php:212 +#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:208 #: navigation.php:233 server_databases.php:169 server_privileges.php:1621 #: server_privileges.php:1682 server_privileges.php:1940 #: server_processlist.php:56 server_synchronize.php:1179 @@ -787,100 +787,100 @@ msgstr "টেবিল পরীক্ষা কর" msgid "Database" msgstr "ডাটাবেজ" -#: db_tracking.php:73 libraries/messages.inc.php:1146 +#: db_tracking.php:73 libraries/messages.inc.php:1142 #, fuzzy msgid "Last version" msgstr "Server version" -#: db_tracking.php:74 libraries/messages.inc.php:1145 tbl_tracking.php:594 +#: db_tracking.php:74 libraries/messages.inc.php:1141 tbl_tracking.php:594 #, fuzzy msgid "Created" msgstr "তৈরী করুন" -#: db_tracking.php:75 libraries/messages.inc.php:1147 tbl_tracking.php:595 +#: db_tracking.php:75 libraries/messages.inc.php:1143 tbl_tracking.php:595 msgid "Updated" msgstr "" #: db_tracking.php:77 libraries/Index.class.php:440 -#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:27 +#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:23 #: server_databases.php:203 server_privileges.php:1503 #: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187 msgid "Action" msgstr "Action" -#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:247 +#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:243 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:106 libraries/messages.inc.php:1142 tbl_tracking.php:548 +#: db_tracking.php:106 libraries/messages.inc.php:1138 tbl_tracking.php:548 #: tbl_tracking.php:606 tbl_tracking.php:613 msgid "active" msgstr "" -#: db_tracking.php:108 libraries/messages.inc.php:1143 tbl_tracking.php:550 +#: db_tracking.php:108 libraries/messages.inc.php:1139 tbl_tracking.php:550 #: tbl_tracking.php:608 tbl_tracking.php:610 msgid "not active" msgstr "" -#: db_tracking.php:121 libraries/messages.inc.php:1160 +#: db_tracking.php:121 libraries/messages.inc.php:1156 #, fuzzy msgid "Versions" msgstr "পারসিয়ান" -#: db_tracking.php:122 libraries/messages.inc.php:1132 tbl_tracking.php:379 +#: db_tracking.php:122 libraries/messages.inc.php:1128 tbl_tracking.php:379 #: tbl_tracking.php:624 msgid "Tracking report" msgstr "" -#: db_tracking.php:123 libraries/messages.inc.php:1144 tbl_tracking.php:251 +#: db_tracking.php:123 libraries/messages.inc.php:1140 tbl_tracking.php:251 #: tbl_tracking.php:624 #, fuzzy msgid "Structure snapshot" msgstr "Structure only" -#: db_tracking.php:152 libraries/messages.inc.php:1154 +#: db_tracking.php:152 libraries/messages.inc.php:1150 #, fuzzy msgid "Untracked tables" msgstr "টেবিল পরীক্ষা কর" -#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1153 +#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1149 #: tbl_structure.php:529 tbl_structure.php:531 #, fuzzy msgid "Track table" msgstr "টেবিল পরীক্ষা কর" -#: db_tracking.php:200 libraries/messages.inc.php:1121 +#: db_tracking.php:200 libraries/messages.inc.php:1117 #, fuzzy msgid "Database Log" msgstr "ডাটাবেজ" -#: export.php:62 libraries/messages.inc.php:312 +#: export.php:62 libraries/messages.inc.php:308 msgid "Selected export type has to be saved in file!" msgstr "Selected export type has to be saved in file!" -#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:567 +#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:563 #, php-format msgid "Insufficient space to save the file %s." msgstr "Insufficient space to save the file %s." -#: export.php:294 libraries/messages.inc.php:324 +#: export.php:294 libraries/messages.inc.php:320 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "" "File %s already exists on server, change filename or check overwrite option." -#: export.php:298 export.php:302 libraries/messages.inc.php:562 +#: export.php:298 export.php:302 libraries/messages.inc.php:558 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "The web server does not have permission to save the file %s." -#: export.php:629 libraries/messages.inc.php:276 +#: export.php:629 libraries/messages.inc.php:272 #, php-format msgid "Dump has been saved to file %s." msgstr "ডাম্প %s ফাইল এ সেভ করা হয়েছে" -#: import.php:60 libraries/messages.inc.php:1202 +#: import.php:60 libraries/messages.inc.php:1198 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation%" @@ -890,14 +890,14 @@ msgstr "" "s for ways to workaround this limit." #: import.php:279 import.php:332 libraries/File.class.php:849 -#: libraries/File.class.php:961 libraries/messages.inc.php:325 +#: libraries/File.class.php:961 libraries/messages.inc.php:321 msgid "File could not be read" msgstr "ফাইল পড়া যায়নি" #: import.php:287 import.php:296 import.php:315 import.php:324 #: libraries/File.class.php:1031 libraries/File.class.php:1039 #: libraries/File.class.php:1055 libraries/File.class.php:1063 -#: libraries/messages.inc.php:1189 +#: libraries/messages.inc.php:1185 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -906,7 +906,7 @@ msgstr "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." -#: import.php:337 libraries/messages.inc.php:547 +#: import.php:337 libraries/messages.inc.php:543 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -917,29 +917,29 @@ msgstr "" "FAQ 1.16." #: import.php:372 libraries/display_import.lib.php:24 -#: libraries/messages.inc.php:125 +#: libraries/messages.inc.php:121 msgid "Could not load import plugins, please check your installation!" msgstr "ইমপোর্ট প্লাগ ইন লোড করা যায়নি, আপনার ইন্সষ্টলেশন পরীক্ষা করুন" -#: import.php:397 libraries/messages.inc.php:102 +#: import.php:397 libraries/messages.inc.php:98 msgid "The bookmark has been deleted." msgstr "বুকমার্কটি মুছে ফেলা হয়েছে" -#: import.php:401 libraries/messages.inc.php:879 +#: import.php:401 libraries/messages.inc.php:875 msgid "Showing bookmark" msgstr "বুকমার্ক দেখান" -#: import.php:403 libraries/messages.inc.php:101 +#: import.php:403 libraries/messages.inc.php:97 #, php-format msgid "Bookmark %s created" msgstr "বুকমার্ক %s তৈরী করা হয়েছে" -#: import.php:409 import.php:415 libraries/messages.inc.php:407 +#: import.php:409 import.php:415 libraries/messages.inc.php:403 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "ইম্পোর্ট সফলভাবে সম্পন্ন হয়েছে। %d সংখ্যক query সম্পাদন করা হয়েছে" -#: import.php:424 libraries/messages.inc.php:1107 +#: import.php:424 libraries/messages.inc.php:1103 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -947,11 +947,11 @@ msgstr "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." -#: index.php:190 libraries/messages.inc.php:553 +#: index.php:190 libraries/messages.inc.php:549 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin is more friendly with a frames-capable browser." -#: js/messages.php:25 libraries/messages.inc.php:155 +#: js/messages.php:25 libraries/messages.inc.php:151 #: server_synchronize.php:345 server_synchronize.php:357 #: server_synchronize.php:373 server_synchronize.php:380 #: server_synchronize.php:739 server_synchronize.php:767 @@ -959,118 +959,118 @@ msgstr "phpMyAdmin is more friendly with a frames-capable browser." msgid "Click to select" msgstr "" -#: js/messages.php:26 libraries/messages.inc.php:156 +#: js/messages.php:26 libraries/messages.inc.php:152 msgid "Click to unselect" msgstr "" #: js/messages.php:27 libraries/import.lib.php:103 -#: libraries/messages.inc.php:550 sql.php:89 +#: libraries/messages.inc.php:546 sql.php:89 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" statements are disabled." -#: js/messages.php:30 libraries/messages.inc.php:270 +#: js/messages.php:30 libraries/messages.inc.php:266 #: libraries/mult_submits.inc.php:258 sql.php:188 msgid "Do you really want to " msgstr "আপনি কি সত্যি চান?" -#: js/messages.php:31 libraries/messages.inc.php:271 +#: js/messages.php:31 libraries/messages.inc.php:267 #: libraries/mult_submits.inc.php:258 sql.php:172 msgid "You are about to DESTROY a complete database!" msgstr "আপনি একটি সম্পূর্ন ডাটাবেজ প্রায় মুছে ফেলছেন" -#: js/messages.php:34 libraries/messages.inc.php:94 +#: js/messages.php:34 libraries/messages.inc.php:90 msgid "You are about to DISABLE a BLOB Repository!" msgstr "" -#: js/messages.php:35 libraries/messages.inc.php:91 +#: js/messages.php:35 libraries/messages.inc.php:87 #, php-format msgid "Are you sure you want to disable all BLOB references for database %s?" msgstr "" -#: js/messages.php:38 libraries/messages.inc.php:342 +#: js/messages.php:38 libraries/messages.inc.php:338 msgid "Missing value in the form!" msgstr "Missing value in the form!" -#: js/messages.php:39 libraries/messages.inc.php:570 +#: js/messages.php:39 libraries/messages.inc.php:566 msgid "This is not a number!" msgstr "এটি কোন সংখ্যা না" -#: js/messages.php:42 libraries/messages.inc.php:380 +#: js/messages.php:42 libraries/messages.inc.php:376 msgid "The host name is empty!" msgstr "হোষ্ট নাম পূরন করা হয়নি" -#: js/messages.php:43 libraries/messages.inc.php:1208 +#: js/messages.php:43 libraries/messages.inc.php:1204 msgid "The user name is empty!" msgstr "The user name is empty!" -#: js/messages.php:44 libraries/messages.inc.php:607 +#: js/messages.php:44 libraries/messages.inc.php:603 #: server_privileges.php:1197 user_password.php:70 msgid "The password is empty!" msgstr "পাসওয়ার্ড দেওয়া হয়নি" -#: js/messages.php:45 libraries/messages.inc.php:609 +#: js/messages.php:45 libraries/messages.inc.php:605 #: server_privileges.php:1195 user_password.php:73 msgid "The passwords aren't the same!" msgstr "The passwords aren't the same!" -#: js/messages.php:49 libraries/messages.inc.php:123 pmd_general.php:342 +#: js/messages.php:49 libraries/messages.inc.php:119 pmd_general.php:342 #: pmd_general.php:379 msgid "Cancel" msgstr "" -#: js/messages.php:52 libraries/messages.inc.php:514 +#: js/messages.php:52 libraries/messages.inc.php:510 msgid "Modifications have been saved" msgstr "Modifications have been saved" -#: js/messages.php:53 libraries/messages.inc.php:741 +#: js/messages.php:53 libraries/messages.inc.php:737 #, fuzzy msgid "Relation deleted" msgstr "Relation view" -#: js/messages.php:54 libraries/messages.inc.php:340 +#: js/messages.php:54 libraries/messages.inc.php:336 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:55 libraries/messages.inc.php:434 +#: js/messages.php:55 libraries/messages.inc.php:430 #, fuzzy msgid "Internal relation added" msgstr "Internal relations" -#: js/messages.php:56 libraries/messages.inc.php:299 +#: js/messages.php:56 libraries/messages.inc.php:295 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:57 libraries/messages.inc.php:300 +#: js/messages.php:57 libraries/messages.inc.php:296 msgid "Error: relation already exists." msgstr "" -#: js/messages.php:58 libraries/messages.inc.php:302 +#: js/messages.php:58 libraries/messages.inc.php:298 msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:59 libraries/messages.inc.php:351 +#: js/messages.php:59 libraries/messages.inc.php:347 #: libraries/relation.lib.php:107 msgid "General relation features" msgstr "General relation features" -#: js/messages.php:59 libraries/messages.inc.php:260 +#: js/messages.php:59 libraries/messages.inc.php:256 #: libraries/relation.lib.php:101 libraries/relation.lib.php:108 msgid "Disabled" msgstr "বন্ধ করা হয়েছে" -#: js/messages.php:60 libraries/messages.inc.php:850 +#: js/messages.php:60 libraries/messages.inc.php:846 msgid "Select referenced key" msgstr "" -#: js/messages.php:61 libraries/messages.inc.php:848 +#: js/messages.php:61 libraries/messages.inc.php:844 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:62 libraries/messages.inc.php:653 +#: js/messages.php:62 libraries/messages.inc.php:649 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:63 libraries/messages.inc.php:142 pmd_general.php:77 +#: js/messages.php:63 libraries/messages.inc.php:138 pmd_general.php:77 #: tbl_relation.php:548 msgid "Choose field to display" msgstr "প্রদর্শনের জন্য ক্ষেত্র পছন্দ কর" @@ -1089,9 +1089,9 @@ msgid "Prev" msgstr "পূর্ববর্তী" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2332 -#: libraries/common.lib.php:2335 libraries/display_tbl.lib.php:338 -#: libraries/messages.inc.php:543 server_binlog.php:205 server_binlog.php:207 +#: js/messages.php:77 libraries/common.lib.php:2344 +#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: libraries/messages.inc.php:539 server_binlog.php:205 server_binlog.php:207 #: tbl_printview.php:424 tbl_structure.php:802 msgid "Next" msgstr "পরবর্তী" @@ -1166,27 +1166,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1543 +#: js/messages.php:97 libraries/common.lib.php:1555 msgid "Jan" msgstr "জানুয়ারী" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1545 +#: js/messages.php:99 libraries/common.lib.php:1557 msgid "Feb" msgstr "ফেব্রুয়ারী" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1547 +#: js/messages.php:101 libraries/common.lib.php:1559 msgid "Mar" msgstr "মার্চ" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1549 +#: js/messages.php:103 libraries/common.lib.php:1561 msgid "Apr" msgstr "এপ্রিল" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1551 +#: js/messages.php:105 libraries/common.lib.php:1563 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1194,37 +1194,37 @@ msgid "May" msgstr "মে" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1553 +#: js/messages.php:107 libraries/common.lib.php:1565 msgid "Jun" msgstr "জুন" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1555 +#: js/messages.php:109 libraries/common.lib.php:1567 msgid "Jul" msgstr "জুলাই" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1557 +#: js/messages.php:111 libraries/common.lib.php:1569 msgid "Aug" msgstr "আগস্ট" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1559 +#: js/messages.php:113 libraries/common.lib.php:1571 msgid "Sep" msgstr "সেপ্টেমবর" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1561 +#: js/messages.php:115 libraries/common.lib.php:1573 msgid "Oct" msgstr "অক্টোবর" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1563 +#: js/messages.php:117 libraries/common.lib.php:1575 msgid "Nov" msgstr "নভেম্বর" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1565 +#: js/messages.php:119 libraries/common.lib.php:1577 msgid "Dec" msgstr "ডিসেম্বর" @@ -1265,37 +1265,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1568 +#: js/messages.php:132 libraries/common.lib.php:1580 msgid "Sun" msgstr "রবিবার" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1570 +#: js/messages.php:134 libraries/common.lib.php:1582 msgid "Mon" msgstr "সোমবার" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1572 +#: js/messages.php:136 libraries/common.lib.php:1584 msgid "Tue" msgstr "মঙ্গলবার" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1574 +#: js/messages.php:138 libraries/common.lib.php:1586 msgid "Wed" msgstr "বুধবার" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1576 +#: js/messages.php:140 libraries/common.lib.php:1588 msgid "Thu" msgstr "বৃহস্পতিবার" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1578 +#: js/messages.php:142 libraries/common.lib.php:1590 msgid "Fri" msgstr "শুক্রবার" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1580 +#: js/messages.php:144 libraries/common.lib.php:1592 msgid "Sat" msgstr "শনিবার" @@ -1369,77 +1369,77 @@ msgstr "in use" msgid "Second" msgstr "per second" -#: libraries/Config.class.php:1015 libraries/messages.inc.php:338 +#: libraries/Config.class.php:1015 libraries/messages.inc.php:334 msgid "Font size" msgstr "ফন্ট এর আকার" #: libraries/File.class.php:344 libraries/File.class.php:432 #: libraries/File.class.php:569 libraries/File.class.php:708 -#: libraries/messages.inc.php:1201 +#: libraries/messages.inc.php:1197 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.class.php:414 libraries/messages.inc.php:1198 +#: libraries/File.class.php:414 libraries/messages.inc.php:1194 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:417 libraries/messages.inc.php:1197 +#: libraries/File.class.php:417 libraries/messages.inc.php:1193 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:420 libraries/messages.inc.php:1200 +#: libraries/File.class.php:420 libraries/messages.inc.php:1196 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:423 libraries/messages.inc.php:1199 +#: libraries/File.class.php:423 libraries/messages.inc.php:1195 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:426 libraries/messages.inc.php:1195 +#: libraries/File.class.php:426 libraries/messages.inc.php:1191 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:429 libraries/messages.inc.php:1196 +#: libraries/File.class.php:429 libraries/messages.inc.php:1192 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:908 libraries/messages.inc.php:319 +#: libraries/File.class.php:908 libraries/messages.inc.php:315 #, fuzzy msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "হয়ত আনুমানিক। FAQ ৩.১১ দেখ। " -#: libraries/Index.class.php:428 libraries/messages.inc.php:554 +#: libraries/Index.class.php:428 libraries/messages.inc.php:550 #: tbl_relation.php:529 msgid "No index defined!" msgstr "No index defined!" -#: libraries/Index.class.php:433 libraries/messages.inc.php:411 +#: libraries/Index.class.php:433 libraries/messages.inc.php:407 #: server_databases.php:132 tbl_tracking.php:316 msgid "Indexes" msgstr "ইন্ডেস্ক সমূহ" -#: libraries/Index.class.php:444 libraries/messages.inc.php:1186 +#: libraries/Index.class.php:444 libraries/messages.inc.php:1182 #: 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:475 tbl_tracking.php:322 msgid "Unique" msgstr "Unique" -#: libraries/Index.class.php:445 libraries/messages.inc.php:596 +#: libraries/Index.class.php:445 libraries/messages.inc.php:592 #: tbl_tracking.php:323 msgid "Packed" msgstr "" -#: libraries/Index.class.php:447 libraries/messages.inc.php:131 +#: libraries/Index.class.php:447 libraries/messages.inc.php:127 #: tbl_tracking.php:325 msgid "Cardinality" msgstr "Cardinality" -#: libraries/Index.class.php:450 libraries/messages.inc.php:162 +#: libraries/Index.class.php:450 libraries/messages.inc.php:158 #: tbl_tracking.php:279 tbl_tracking.php:328 #, fuzzy msgid "Comment" @@ -1448,29 +1448,29 @@ msgstr "মন্তব্যসমূহ" #: libraries/Index.class.php:466 libraries/common.lib.php:616 #: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:280 pdf_pages.php:280 +#: libraries/messages.inc.php:276 pdf_pages.php:280 #: setup/frames/index.inc.php:124 setup/lib/messages.inc.php:352 #: tbl_row_action.php:69 msgid "Edit" msgstr "সম্পাদনা কর" -#: libraries/Index.class.php:472 libraries/messages.inc.php:666 +#: libraries/Index.class.php:472 libraries/messages.inc.php:662 msgid "The primary key has been dropped" msgstr "The primary key has been dropped" -#: libraries/Index.class.php:476 libraries/messages.inc.php:413 +#: libraries/Index.class.php:476 libraries/messages.inc.php:409 #, php-format msgid "Index %s has been dropped" msgstr "%s ইন্ডেস্ক মুছে ফেলা হয়েছে" -#: libraries/Index.class.php:576 libraries/messages.inc.php:412 +#: libraries/Index.class.php:576 libraries/messages.inc.php:408 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "" -#: libraries/List_Database.class.php:431 libraries/messages.inc.php:218 +#: libraries/List_Database.class.php:431 libraries/messages.inc.php:214 #: libraries/server_links.inc.php:41 server_databases.php:88 #: server_privileges.php:1621 setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" @@ -1499,86 +1499,86 @@ msgid_plural "%1$d rows inserted." msgstr[0] "No rows selected" msgstr[1] "No rows selected" -#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:549 +#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:545 msgid "" "There is no detailed status information available for this storage engine." msgstr "" "There is no detailed status information available for this storage engine." -#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:291 +#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:287 #, php-format msgid "%s is available on this MySQL server." msgstr "%s is available on this MySQL server." -#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:292 +#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:288 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "MySQL সার্ভার এর জন্য %s বন্ধ করা হয়েছে ." -#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:294 +#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:290 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "এই MySQL সার্ভার %s ধরনের স্টোরেজ ইঞ্জিন সমর্থন করেনা." -#: libraries/Table.class.php:1019 libraries/messages.inc.php:443 +#: libraries/Table.class.php:1019 libraries/messages.inc.php:439 msgid "Invalid database" msgstr "Invalid database" -#: libraries/Table.class.php:1033 libraries/messages.inc.php:450 +#: libraries/Table.class.php:1033 libraries/messages.inc.php:446 #: tbl_get_field.php:26 msgid "Invalid table name" msgstr "Invalid table name" -#: libraries/Table.class.php:1048 libraries/messages.inc.php:301 +#: libraries/Table.class.php:1048 libraries/messages.inc.php:297 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "Error renaming table %1$s to %2$s" -#: libraries/Table.class.php:1132 libraries/messages.inc.php:754 +#: libraries/Table.class.php:1132 libraries/messages.inc.php:750 #, php-format msgid "Table %s has been renamed to %s" msgstr "Table %s has been renamed to %s" -#: libraries/Theme.class.php:162 libraries/messages.inc.php:1099 +#: libraries/Theme.class.php:162 libraries/messages.inc.php:1095 #, php-format msgid "No valid image path for theme %s found!" msgstr "No valid image path for theme %s found!" -#: libraries/Theme.class.php:384 libraries/messages.inc.php:1097 +#: libraries/Theme.class.php:384 libraries/messages.inc.php:1093 msgid "No preview available." msgstr "No preview available." -#: libraries/Theme.class.php:387 libraries/messages.inc.php:1089 +#: libraries/Theme.class.php:387 libraries/messages.inc.php:1085 msgid "take it" msgstr "take it" -#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1096 +#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1092 #, php-format msgid "Default theme %s not found!" msgstr "Default theme %s not found!" -#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1098 +#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1094 #, php-format msgid "Theme %s not found!" msgstr "Theme %s not found!" -#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1100 +#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1096 #, php-format msgid "Theme path not found for theme %s!" msgstr "Theme path not found for theme %s!" -#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1101 +#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1097 #: test/theme.php:161 themes.php:21 themes.php:41 msgid "Theme / Style" msgstr "Theme / Style" -#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:172 +#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:168 msgid "Cannot connect: invalid settings." msgstr "সংযোগ স্থাপন করা যায়নিঃ invalid settings." #: libraries/auth/config.auth.lib.php:92 #: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65 -#: libraries/messages.inc.php:1238 test/theme.php:152 +#: libraries/messages.inc.php:1234 test/theme.php:152 #, php-format msgid "Welcome to %s" msgstr "Welcome to %s" @@ -1604,104 +1604,104 @@ msgstr "" "পরীক্ষা করুন এবং তা আপনার Mysql সার্ভারের অ্যাডমিনিষ্টেট্রররের দেওয়া তথ্যের অনুরুপ " "কিনা তা নিশ্চত করুন।" -#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:488 +#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:484 msgid "Log in" msgstr "লগ ইন" #: libraries/auth/cookie.auth.lib.php:246 -#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:659 +#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:655 #: libraries/navigation_header.inc.php:93 #: libraries/navigation_header.inc.php:95 msgid "phpMyAdmin documentation" msgstr "phpMyAdmin documentation" #: libraries/auth/cookie.auth.lib.php:258 -#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:492 +#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:488 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:493 +#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:489 msgid "Server:" msgstr "সার্ভার" -#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:494 +#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:490 msgid "Username:" msgstr "ব্যাবহারকারী" -#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:491 +#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:487 msgid "Password:" msgstr "পাসওয়ার্ড" -#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:854 +#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:850 msgid "Server Choice" msgstr "Server Choice" #: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 -#: libraries/messages.inc.php:177 +#: libraries/messages.inc.php:173 msgid "Cookies must be enabled past this point." msgstr "Cookies must be enabled past this point." #: libraries/auth/cookie.auth.lib.php:671 -#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:489 +#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:485 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" #: libraries/auth/cookie.auth.lib.php:675 -#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:544 +#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:540 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "No activity within %s seconds; please log in again" #: libraries/auth/cookie.auth.lib.php:685 #: libraries/auth/cookie.auth.lib.php:687 -#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:126 +#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:122 msgid "Cannot log in to the MySQL server" msgstr "MySQL সার্ভার এ লগ ইন করা যায়নি" -#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1245 +#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1241 msgid "Wrong username/password. Access denied." msgstr "Wrong username/password. Access denied." #: libraries/auth/swekey/swekey.auth.lib.php:118 -#: libraries/messages.inc.php:1057 +#: libraries/messages.inc.php:1053 #, php-format msgid "File %s does not contain any key id" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:157 #: libraries/auth/swekey/swekey.auth.lib.php:180 -#: libraries/messages.inc.php:1056 +#: libraries/messages.inc.php:1052 msgid "Hardware authentication failed" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:166 -#: libraries/messages.inc.php:1058 +#: libraries/messages.inc.php:1054 msgid "No valid authentication key plugged" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:202 -#: libraries/messages.inc.php:1055 +#: libraries/messages.inc.php:1051 msgid "Authenticating..." msgstr "" -#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1230 +#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1226 msgid "View image" msgstr "" -#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:652 +#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:648 msgid "Play audio" msgstr "" -#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1232 +#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1228 msgid "View video" msgstr "" -#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:269 +#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:265 msgid "Download file" msgstr "" -#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:128 +#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:124 msgid "" "Couldn't load the iconv or recode extension needed for charset conversion. " "Either configure PHP to enable these extensions or disable charset " @@ -1713,7 +1713,7 @@ msgstr "" #: libraries/charset_conversion.lib.php:79 #: libraries/charset_conversion.lib.php:90 -#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:130 +#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:126 msgid "" "Couldn't use the iconv, libiconv, or recode_string functions, although the " "necessary extensions appear to be loaded. Check your PHP configuration." @@ -1721,7 +1721,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/messages.inc.php:170 +#: libraries/common.inc.php:583 libraries/messages.inc.php:166 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!" @@ -1757,22 +1757,22 @@ msgstr "" msgid "Invalid server index: %s" msgstr "Invalid server index: \"%s\"" -#: libraries/common.inc.php:636 libraries/messages.inc.php:448 +#: libraries/common.inc.php:636 libraries/messages.inc.php:444 #, 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/messages.inc.php:856 libraries/select_server.lib.php:41 +#: libraries/messages.inc.php:852 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/messages.inc.php:437 +#: libraries/common.inc.php:823 libraries/messages.inc.php:433 msgid "Invalid authentication method set in configuration:" msgstr "Invalid authentication method set in configuration:" -#: libraries/common.lib.php:147 libraries/messages.inc.php:499 +#: libraries/common.lib.php:147 libraries/messages.inc.php:495 #, php-format msgid "Max: %s%s" msgstr "Max: %s%s" @@ -1793,7 +1793,7 @@ msgstr "bn" #: libraries/common.lib.php:428 libraries/common.lib.php:430 #: libraries/common.lib.php:432 libraries/common.lib.php:448 #: libraries/common.lib.php:450 libraries/dbg/setup.php:25 -#: libraries/display_export.lib.php:164 libraries/messages.inc.php:267 +#: libraries/display_export.lib.php:164 libraries/messages.inc.php:263 #: libraries/relation.lib.php:97 libraries/sql_query_form.lib.php:451 #: libraries/sql_query_form.lib.php:454 main.php:229 pdf_pages.php:37 #: pdf_pages.php:43 pdf_pages.php:49 pdf_pages.php:54 @@ -1803,55 +1803,55 @@ msgstr "বর্ণনা" #: libraries/common.lib.php:581 libraries/core.lib.php:234 #: libraries/core.lib.php:263 libraries/import.lib.php:134 -#: libraries/messages.inc.php:297 pdf_schema.php:32 pdf_schema.php:232 +#: libraries/messages.inc.php:293 pdf_schema.php:32 pdf_schema.php:232 #: tbl_change.php:1027 tbl_operations.php:213 tbl_relation.php:290 #: view_operations.php:62 msgid "Error" msgstr "ভূল" #: libraries/common.lib.php:595 libraries/header_printview.inc.php:61 -#: libraries/messages.inc.php:1023 server_processlist.php:60 +#: libraries/messages.inc.php:1019 server_processlist.php:60 #: server_status.php:247 msgid "SQL query" msgstr "SQL query" -#: libraries/common.lib.php:634 libraries/messages.inc.php:538 +#: libraries/common.lib.php:634 libraries/messages.inc.php:534 msgid "MySQL said: " msgstr "MySQL said: " -#: libraries/common.lib.php:667 libraries/messages.inc.php:76 +#: libraries/common.lib.php:667 libraries/messages.inc.php:72 #: pdf_schema.php:241 user_password.php:115 msgid "Back" msgstr "পিছনে" -#: libraries/common.lib.php:1177 libraries/messages.inc.php:309 +#: libraries/common.lib.php:1177 libraries/messages.inc.php:305 #: setup/lib/messages.inc.php:353 msgid "Explain SQL" msgstr "SQL ব্যাখ্যা কর" -#: libraries/common.lib.php:1180 libraries/messages.inc.php:551 +#: libraries/common.lib.php:1180 libraries/messages.inc.php:547 msgid "Skip Explain SQL" msgstr "Skip Explain SQL" -#: libraries/common.lib.php:1212 libraries/messages.inc.php:563 +#: libraries/common.lib.php:1212 libraries/messages.inc.php:559 msgid "Without PHP Code" msgstr "PHP কোড ছাড়া" -#: libraries/common.lib.php:1215 libraries/messages.inc.php:649 +#: libraries/common.lib.php:1215 libraries/messages.inc.php:645 #: setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "PHP কোড তৈরী করুনCreate PHP Code" -#: libraries/common.lib.php:1233 libraries/messages.inc.php:737 +#: libraries/common.lib.php:1233 libraries/messages.inc.php:733 #: server_status.php:341 setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "Refresh" -#: libraries/common.lib.php:1242 libraries/messages.inc.php:575 +#: libraries/common.lib.php:1242 libraries/messages.inc.php:571 msgid "Skip Validate SQL" msgstr "Skip Validate SQL" -#: libraries/common.lib.php:1245 libraries/messages.inc.php:1220 +#: libraries/common.lib.php:1245 libraries/messages.inc.php:1216 #: setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "Validate SQL" @@ -1867,11 +1867,11 @@ msgid "Inline" msgstr "ইঞ্জিনসমূহ" #: libraries/common.lib.php:1332 libraries/common.lib.php:1347 -#: libraries/messages.inc.php:713 +#: libraries/messages.inc.php:709 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1351 libraries/messages.inc.php:1108 +#: libraries/common.lib.php:1351 libraries/messages.inc.php:1104 #: libraries/tbl_triggers.lib.php:28 server_processlist.php:58 msgid "Time" msgstr "সময়" @@ -1905,46 +1905,56 @@ msgstr "পেটাবাইট" msgid "EiB" msgstr "এক্সাবাইট" +#. l10n: Thousands separator +#: libraries/common.lib.php:1417 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: libraries/common.lib.php:1419 +msgid "." +msgstr "." + #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1584 +#: libraries/common.lib.php:1596 #: libraries/transformations/text_plain__dateformat.inc.php:28 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y at %I:%M %p" -#: libraries/common.lib.php:1886 +#: libraries/common.lib.php:1898 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s দিন, %s মাস, %s মিনিট and %s সেকেণ্ড" -#: libraries/common.lib.php:2301 libraries/common.lib.php:2304 -#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:664 +#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:660 #: server_status.php:608 msgid "Begin" msgstr "শুরু" -#: libraries/common.lib.php:2302 libraries/common.lib.php:2305 -#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:665 +#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:661 #: server_binlog.php:168 server_binlog.php:170 msgid "Previous" msgstr "পূর্ববর্তী" -#: libraries/common.lib.php:2333 libraries/common.lib.php:2336 -#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:289 +#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:285 msgid "End" msgstr "End" -#: libraries/common.lib.php:2409 libraries/messages.inc.php:455 +#: libraries/common.lib.php:2421 libraries/messages.inc.php:451 #, php-format msgid "Jump to database "%s"." msgstr "Jump to database "%s"." -#: libraries/common.lib.php:2429 libraries/messages.inc.php:461 +#: libraries/common.lib.php:2441 libraries/messages.inc.php:457 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/core.lib.php:286 libraries/dbg/setup.php:22 -#: libraries/messages.inc.php:127 +#: libraries/messages.inc.php:123 #, php-format msgid "" "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " @@ -1956,116 +1966,116 @@ msgstr "" "configuration." #: libraries/db_events.inc.php:20 libraries/db_events.inc.php:22 -#: libraries/export/sql.php:415 libraries/messages.inc.php:306 +#: libraries/export/sql.php:415 libraries/messages.inc.php:302 #, fuzzy msgid "Events" msgstr "Sent" #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 -#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:541 +#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:537 #: libraries/tbl_triggers.lib.php:27 setup/frames/index.inc.php:112 msgid "Name" msgstr "নাম" -#: libraries/db_links.inc.php:45 libraries/messages.inc.php:216 +#: libraries/db_links.inc.php:45 libraries/messages.inc.php:212 #, php-format msgid "Database %s has been dropped." msgstr "%s ডাটাবেজ মুছে ফেলা হয়েছে" #: libraries/db_links.inc.php:57 libraries/db_links.inc.php:58 -#: libraries/db_links.inc.php:59 libraries/messages.inc.php:234 +#: libraries/db_links.inc.php:59 libraries/messages.inc.php:230 msgid "Database seems to be empty!" msgstr "" -#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1025 +#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1021 #: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60 #: querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1152 +#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1148 #: libraries/tbl_links.inc.php:69 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:86 libraries/messages.inc.php:719 +#: libraries/db_links.inc.php:86 libraries/messages.inc.php:715 msgid "Query" msgstr "Query" -#: libraries/db_links.inc.php:91 libraries/messages.inc.php:253 +#: libraries/db_links.inc.php:91 libraries/messages.inc.php:249 msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:98 libraries/messages.inc.php:397 +#: libraries/db_links.inc.php:98 libraries/messages.inc.php:393 #: libraries/server_links.inc.php:88 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:104 libraries/messages.inc.php:587 +#: libraries/db_links.inc.php:104 libraries/messages.inc.php:583 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" msgstr "Operations" -#: libraries/db_links.inc.php:111 libraries/messages.inc.php:709 +#: libraries/db_links.inc.php:111 libraries/messages.inc.php:705 #: libraries/server_links.inc.php:66 server_privileges.php:72 #: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117 msgid "Privileges" msgstr "Privileges" #: libraries/db_routines.inc.php:30 libraries/db_routines.inc.php:32 -#: libraries/messages.inc.php:812 +#: libraries/messages.inc.php:808 msgid "Routines" msgstr "" -#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:811 +#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:807 msgid "Return type" msgstr "" #: libraries/db_structure.lib.php:57 libraries/display_tbl.lib.php:1848 -#: libraries/messages.inc.php:65 +#: libraries/messages.inc.php:61 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "হয়ত আনুমানিক। FAQ ৩.১১ দেখ। " -#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:593 +#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:589 #: server_databases.php:142 tbl_printview.php:336 tbl_structure.php:683 msgid "Overhead" msgstr "Overhead" #: libraries/dbi/mysql.dbi.lib.php:112 libraries/dbi/mysqli.dbi.lib.php:124 -#: libraries/messages.inc.php:176 +#: libraries/messages.inc.php:172 msgid "Connection for controluser as defined in your configuration failed." msgstr "" #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 -#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:855 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:851 msgid "The server is not responding" msgstr "The server is not responding" #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:1010 +#: libraries/messages.inc.php:1006 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 libraries/messages.inc.php:255 +#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:251 #: tbl_structure.php:609 msgid "Details..." msgstr "" -#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:143 +#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:139 #: main.php:91 user_password.php:111 user_password.php:129 msgid "Change password" msgstr "পাসওয়ার্ড পরিবর্তন কর" -#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:561 +#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:557 #: libraries/replication_gui.lib.php:341 server_privileges.php:768 msgid "No Password" msgstr "কোন পাসওয়ার্ড নাই" -#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:610 +#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:606 #: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60 #: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335 #: libraries/replication_gui.lib.php:345 server_privileges.php:757 @@ -2074,13 +2084,13 @@ msgstr "কোন পাসওয়ার্ড নাই" msgid "Password" msgstr "পাসওয়ার্ড" -#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:806 +#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:802 #: libraries/replication_gui.lib.php:349 libraries/replication_gui.lib.php:352 #: server_privileges.php:776 server_privileges.php:779 msgid "Re-type" msgstr "Re-type" -#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:608 +#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:604 msgid "Password Hashing" msgstr "Password Hashing" @@ -2090,89 +2100,89 @@ msgstr "Password Hashing" msgid "MySQL 4.0 compatible" msgstr "MySQL 4.0 compatible" -#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:353 +#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:349 #: libraries/replication_gui.lib.php:356 server_privileges.php:783 msgid "Generate Password" msgstr "পাসওয়ার্ড তৈরী কর" -#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:352 +#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:348 #: libraries/replication_gui.lib.php:359 server_privileges.php:786 msgid "Generate" msgstr "তৈরী কর" #: libraries/display_create_database.lib.php:22 -#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:189 +#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:185 msgid "Create new database" msgstr "নতুন ডাটাবেজ় তৈরী কর" -#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:185 +#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:181 msgid "Create" msgstr "তৈরী করুন" -#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:564 +#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:560 #: server_privileges.php:74 server_privileges.php:1388 #: server_replication.php:35 msgid "No Privileges" msgstr "কোন সুবিধা নাই" -#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:445 +#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:441 msgid "Table must have at least one field." msgstr "Table must have at least one field." -#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:190 +#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:186 #, php-format msgid "Create table on database %s" msgstr "%s ডাটাবেজ় এ নতুন টেবিল তৈরী কর" -#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:577 +#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:573 msgid "Number of fields" msgstr "Number of fields" -#: libraries/display_export.lib.php:42 libraries/messages.inc.php:124 +#: libraries/display_export.lib.php:42 libraries/messages.inc.php:120 msgid "Could not load export plugins, please check your installation!" msgstr "এক্সপোর্ট প্লাগ ইন লোড করা যায়নি, আপনার ইন্সষ্টলেশন পরীক্ষা করুন" -#: libraries/display_export.lib.php:107 libraries/messages.inc.php:277 +#: libraries/display_export.lib.php:107 libraries/messages.inc.php:273 #, php-format msgid "Dump %s row(s) starting at record # %s" msgstr "Dump %s row(s) starting at record # %s." -#: libraries/display_export.lib.php:115 libraries/messages.inc.php:274 +#: libraries/display_export.lib.php:115 libraries/messages.inc.php:270 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:125 libraries/messages.inc.php:852 +#: libraries/display_export.lib.php:125 libraries/messages.inc.php:848 #: setup/lib/messages.inc.php:82 msgid "Save as file" msgstr "ফাইল হিসেবে সেভ করুন" -#: libraries/display_export.lib.php:134 libraries/messages.inc.php:828 +#: libraries/display_export.lib.php:134 libraries/messages.inc.php:824 #, php-format msgid "Save on server in %s directory" msgstr "Save on server in %s directory" -#: libraries/display_export.lib.php:142 libraries/messages.inc.php:594 +#: libraries/display_export.lib.php:142 libraries/messages.inc.php:590 #: setup/lib/messages.inc.php:90 msgid "Overwrite existing file(s)" msgstr "Overwrite existing file(s)" -#: libraries/display_export.lib.php:148 libraries/messages.inc.php:330 +#: libraries/display_export.lib.php:148 libraries/messages.inc.php:326 msgid "File name template" msgstr "ফাইল নাম এর টেমপ্লেট" -#: libraries/display_export.lib.php:152 libraries/messages.inc.php:327 +#: libraries/display_export.lib.php:152 libraries/messages.inc.php:323 msgid "server name" msgstr "সার্ভার এর নাম" -#: libraries/display_export.lib.php:155 libraries/messages.inc.php:326 +#: libraries/display_export.lib.php:155 libraries/messages.inc.php:322 msgid "database name" msgstr "ডাটাবেজ এর নাম" -#: libraries/display_export.lib.php:158 libraries/messages.inc.php:328 +#: libraries/display_export.lib.php:158 libraries/messages.inc.php:324 msgid "table name" msgstr "টেবিল এর নাম" -#: libraries/display_export.lib.php:162 libraries/messages.inc.php:329 +#: libraries/display_export.lib.php:162 libraries/messages.inc.php:325 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2183,24 +2193,24 @@ msgstr "" "formatting strings. Additionally the following transformations will happen: %" "3$s. Other text will be kept as is." -#: libraries/display_export.lib.php:202 libraries/messages.inc.php:331 +#: libraries/display_export.lib.php:202 libraries/messages.inc.php:327 msgid "remember template" msgstr "টেমপ্লেট মনে রাখ" #: libraries/display_export.lib.php:210 libraries/display_import.lib.php:178 -#: libraries/display_import.lib.php:191 libraries/messages.inc.php:145 +#: libraries/display_import.lib.php:191 libraries/messages.inc.php:141 #: libraries/sql_query_form.lib.php:549 msgid "Character set of the file:" msgstr "ফাইল এর অক্ষরসমূহঃ" -#: libraries/display_export.lib.php:235 libraries/messages.inc.php:166 +#: libraries/display_export.lib.php:235 libraries/messages.inc.php:162 #: setup/lib/messages.inc.php:84 msgid "Compression" 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/messages.inc.php:558 +#: libraries/export/sql.php:868 libraries/messages.inc.php:554 #: libraries/tbl_properties.inc.php:575 server_privileges.php:1836 #: server_processlist.php:75 msgid "None" @@ -2224,67 +2234,67 @@ msgstr "\"gzipped\"" msgid "bzipped" msgstr "\"bzipped\"" -#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1018 +#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1014 msgid "SQL compatibility mode" msgstr "SQL compatibility mode" -#: libraries/display_import.lib.php:67 libraries/messages.inc.php:398 +#: libraries/display_import.lib.php:67 libraries/messages.inc.php:394 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " "browsers." msgstr "" -#: libraries/display_import.lib.php:77 libraries/messages.inc.php:406 +#: libraries/display_import.lib.php:77 libraries/messages.inc.php:402 msgid "The file is being processed, please be patient." msgstr "" -#: libraries/display_import.lib.php:99 libraries/messages.inc.php:408 +#: libraries/display_import.lib.php:99 libraries/messages.inc.php:404 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." msgstr "" -#: libraries/display_import.lib.php:126 libraries/messages.inc.php:333 +#: libraries/display_import.lib.php:126 libraries/messages.inc.php:329 msgid "File to import" msgstr "ইম্পোর্ট করার জন্য ফাইল" -#: libraries/display_import.lib.php:137 libraries/messages.inc.php:486 +#: libraries/display_import.lib.php:137 libraries/messages.inc.php:482 #: libraries/sql_query_form.lib.php:524 msgid "Location of the text file" msgstr "Location of the text file" -#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1203 +#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1199 msgid "File uploads are not allowed on this server." msgstr "File uploads are not allowed on this server." -#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1235 +#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1231 #: libraries/sql_query_form.lib.php:533 tbl_change.php:1028 msgid "The directory you set for upload work cannot be reached" msgstr "The directory you set for upload work cannot be reached" -#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1236 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1232 #: libraries/sql_query_form.lib.php:536 tbl_change.php:1031 msgid "web server upload directory" msgstr "web server upload directory" -#: libraries/display_import.lib.php:212 libraries/messages.inc.php:167 +#: libraries/display_import.lib.php:212 libraries/messages.inc.php:163 #, php-format msgid "Imported file compression will be automatically detected from: %s" msgstr "আমদানিকৃত ফাইল সংকোচন %s হতে স্বয়ংক্রিয়ভাবে মুছে ফেলা হবে" -#: libraries/display_import.lib.php:219 libraries/messages.inc.php:600 +#: libraries/display_import.lib.php:219 libraries/messages.inc.php:596 msgid "Partial import" msgstr "Partial import" -#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1105 +#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1101 #, php-format msgid "" "Previous import timed out, after resubmitting will continue from position %d." msgstr "" "Previous import timed out, after resubmitting will continue from position %d." -#: libraries/display_import.lib.php:232 libraries/messages.inc.php:51 +#: libraries/display_import.lib.php:232 libraries/messages.inc.php:47 msgid "" "Allow the interruption of an import in case the script detects it is close " "to the PHP timeout limit. This might be good way to import large files, " @@ -2294,179 +2304,179 @@ msgstr "" "This might be good way to import large files, however it can break " "transactions." -#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1004 +#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1000 #: setup/lib/messages.inc.php:161 msgid "Number of records (queries) to skip from start" msgstr "Number of records(queries) to skip from start" -#: libraries/display_import.lib.php:255 libraries/messages.inc.php:396 +#: libraries/display_import.lib.php:255 libraries/messages.inc.php:392 #: setup/lib/messages.inc.php:160 msgid "Format of imported file" msgstr "ইম্পোর্ট করা ফাইল ফরমেট কর" #: libraries/display_select_lang.lib.php:45 -#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:465 +#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:461 #: setup/frames/index.inc.php:70 msgid "Language" msgstr "ভাষা" -#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:447 +#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:443 #, php-format msgid "%d is not valid row number." msgstr "%d is not valid row number." -#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:814 +#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:810 msgid "row(s) starting from record #" msgstr "row(s) starting from record #" -#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:817 +#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:813 msgid "horizontal" msgstr "আনুভূমিক" -#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:816 +#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:812 msgid "horizontal (rotated headers)" msgstr "horizontal (rotated headers)" -#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:819 +#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:815 msgid "vertical" msgstr "লম্ব" -#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:818 +#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:814 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "in %s mode and repeat headers after %s cells" -#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:495 +#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:491 msgid "This operation could take a long time. Proceed anyway?" msgstr "This operation could take a long time. Proceed anyway?" -#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1012 +#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1008 msgid "Sort by key" msgstr "Sort by key" #: libraries/display_tbl.lib.php:555 libraries/import.lib.php:1082 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:591 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:587 #: tbl_select.php:267 tbl_structure.php:754 #, fuzzy msgid "Options" msgstr "Operations" #: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:570 -#: libraries/messages.inc.php:601 +#: libraries/messages.inc.php:597 msgid "Partial Texts" msgstr "Partial Texts" #: libraries/display_tbl.lib.php:561 libraries/display_tbl.lib.php:574 -#: libraries/messages.inc.php:346 +#: libraries/messages.inc.php:342 msgid "Full Texts" msgstr "Full Texts" -#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:739 +#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:735 #, fuzzy msgid "Relational key" msgstr "Relational schema" -#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:738 +#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:734 msgid "Relational display field" msgstr "" -#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:872 +#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:868 msgid "Show binary contents" msgstr "" -#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:873 +#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:869 msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:871 +#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:867 msgid "Show binary contents as HEX" msgstr "" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:375 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:371 #: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320 msgid "Hide" msgstr "" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:508 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:504 #: libraries/tbl_properties.inc.php:144 transformation_overview.php:47 msgid "Browser transformation" msgstr "Browser transformation" #: libraries/display_tbl.lib.php:1126 libraries/display_tbl.lib.php:1130 -#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:308 +#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:304 msgid "Execute bookmarked query" msgstr "Execute bookmarked query" #: libraries/display_tbl.lib.php:1145 libraries/display_tbl.lib.php:1157 -#: libraries/messages.inc.php:244 +#: libraries/messages.inc.php:240 msgid "The row has been deleted" msgstr "সারিটি মুছে ফেলা হয়েছে" #: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056 -#: libraries/messages.inc.php:460 server_processlist.php:71 +#: libraries/messages.inc.php:456 server_processlist.php:71 #: tbl_row_action.php:64 msgid "Kill" msgstr "Kill" -#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:849 +#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:845 msgid "in query" msgstr "in query" -#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:881 +#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:877 msgid "Showing rows" msgstr "Showing rows" -#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1113 +#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1109 msgid "total" msgstr "মোট" -#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:727 +#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:723 #: sql.php:524 #, php-format msgid "Query took %01.4f sec" msgstr "Query took %01.4f sec" -#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:135 +#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:131 #: 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:471 msgid "Change" msgstr "Change" -#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:724 +#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:720 msgid "Query results operations" msgstr "Query results operations" -#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:671 +#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:667 msgid "Print view (with full texts)" msgstr "Print view (with full texts)" -#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:482 +#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:478 msgid "Link not found" msgstr "লিংক পাওয়া যায়নি" -#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1224 +#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1220 #: main.php:228 msgid "Version information" msgstr "Version information" -#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:423 +#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:419 msgid "Data home directory" msgstr "Data home directory" -#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:424 +#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:420 msgid "The common part of the directory path for all InnoDB data files." msgstr "The common part of the directory path for all InnoDB data files." -#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:422 +#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:418 msgid "Data files" msgstr "ডাটা ফাইলসমূহ" -#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:418 +#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:414 msgid "Autoextend increment" msgstr "Autoextend increment" -#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:419 +#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:415 msgid "" " The increment size for extending the size of an autoextending tablespace " "when it becomes full." @@ -2474,11 +2484,11 @@ msgstr "" " The increment size for extending the size of an autoextending tablespace " "when it becomes full." -#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:420 +#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:416 msgid "Buffer pool size" msgstr "Buffer pool size" -#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:421 +#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:417 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." @@ -2486,87 +2496,87 @@ msgstr "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." -#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:112 +#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:108 msgid "Buffer Pool" msgstr "Buffer Pool" -#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:426 +#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:422 #: server_status.php:306 msgid "InnoDB Status" msgstr "InnoDB Status" -#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:113 +#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:109 msgid "Buffer Pool Usage" msgstr "Buffer Pool Usage" -#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1114 +#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1110 #: server_databases.php:137 server_databases.php:305 server_status.php:414 #: server_status.php:475 server_status.php:496 tbl_printview.php:351 #: tbl_structure.php:697 msgid "Total" msgstr "মোট" -#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:425 +#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:421 msgid "pages" msgstr "পাতাসমুহ" -#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:343 +#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:339 msgid "Free pages" msgstr "ফ্রী পাতাসমূহ" -#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:259 +#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:255 msgid "Dirty pages" msgstr "নোংরা পাতাসমূহ" -#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:230 +#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:226 msgid "Pages containing data" msgstr "ডাটাসহ পাতাসমূহ" -#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:598 +#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:594 msgid "Pages to be flushed" msgstr "Pages to be flushed" -#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:119 +#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:115 msgid "Busy pages" msgstr "ব্যাস্ত পাতাসমূহ" -#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:467 +#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:463 msgid "Latched pages" msgstr "Latched pages" -#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:111 +#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:107 msgid "Buffer Pool Activity" msgstr "Buffer Pool Activity" -#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:731 +#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:727 msgid "Read requests" msgstr "Read requests" -#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1244 +#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1240 msgid "Write requests" msgstr "Write requests" -#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:115 +#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:111 msgid "Read misses" msgstr "Read misses" -#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:117 +#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:113 msgid "Write waits" msgstr "Write waits" -#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:114 +#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:110 msgid "Read misses in %" msgstr "Read misses in %" -#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:116 +#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:112 msgid "Write waits in %" msgstr "Write waits in %" -#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:522 +#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:518 msgid "Data pointer size" msgstr "Data pointer size" -#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:523 +#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:519 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." @@ -2574,11 +2584,11 @@ msgstr "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." -#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:528 +#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:524 msgid "Automatic recovery mode" msgstr "Automatic recovery mode" -#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:529 +#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:525 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." @@ -2586,11 +2596,11 @@ msgstr "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." -#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:527 +#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:523 msgid "Maximum size for temporary sort files" msgstr "Maximum size for temporary sort files" -#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:526 +#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:522 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " @@ -2600,11 +2610,11 @@ msgstr "" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " "INFILE)." -#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:525 +#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:521 msgid "Maximum size for temporary files on index creation" msgstr "Maximum size for temporary files on index creation" -#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:524 +#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:520 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " @@ -2614,11 +2624,11 @@ msgstr "" "than using the key cache by the amount specified here, prefer the key cache " "method." -#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:531 +#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:527 msgid "Repair threads" msgstr "থ্রেড রিপেয়ার করুন" -#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:530 +#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:526 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." @@ -2626,11 +2636,11 @@ msgstr "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." -#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:533 +#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:529 msgid "Sort buffer size" msgstr "Sort buffer size" -#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:532 +#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:528 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." @@ -2638,73 +2648,73 @@ msgstr "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." -#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:620 +#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:616 msgid "Index cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:619 +#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:615 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." msgstr "" -#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:630 +#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:626 msgid "Record cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:629 +#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:625 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " "to the handle data (.xtd) and row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:624 +#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:620 #, fuzzy msgid "Log cache size" msgstr "Sort buffer size" -#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:623 +#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:619 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:628 +#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:624 msgid "Log file threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:627 +#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:623 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:634 +#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:630 msgid "Transaction buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:633 +#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:629 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." msgstr "" -#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:611 +#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:607 msgid "Checkpoint frequency" msgstr "" -#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:612 +#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:608 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." msgstr "" -#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:615 +#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:611 msgid "Data log threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:616 +#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:612 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -2712,49 +2722,49 @@ msgid "" "that can be stored in the database." msgstr "" -#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:618 +#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:614 msgid "Garbage threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:617 +#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:613 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." msgstr "" -#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:622 +#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:618 #, fuzzy msgid "Log buffer size" msgstr "Sort buffer size" -#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:621 +#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:617 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " "required to write a data log." msgstr "" -#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:613 +#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:609 msgid "Data file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:614 +#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:610 msgid "The grow size of the handle data (.xtd) files." msgstr "" -#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:632 +#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:628 msgid "Row file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:631 +#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:627 msgid "The grow size of the row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:626 +#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:622 msgid "Log file count" msgstr "" -#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:625 +#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:621 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -2764,19 +2774,19 @@ msgstr "" #: libraries/export/htmlword.php:132 libraries/export/odt.php:168 #: libraries/export/sql.php:881 libraries/export/texytext.php:130 -#: libraries/messages.inc.php:275 +#: libraries/messages.inc.php:271 msgid "Dumping data for table" msgstr "টেবিল এর জন্য ডাটা ডাম্পিং করুন" #: libraries/export/htmlword.php:185 libraries/export/odt.php:238 #: libraries/export/sql.php:785 libraries/export/texytext.php:177 -#: libraries/messages.inc.php:1086 +#: libraries/messages.inc.php:1082 msgid "Table structure for table" msgstr "Table structure for table" #: libraries/export/latex.php:125 libraries/export/sql.php:232 #: libraries/export/xml.php:102 libraries/header_printview.inc.php:57 -#: libraries/messages.inc.php:381 libraries/replication_gui.lib.php:63 +#: libraries/messages.inc.php:377 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:170 libraries/replication_gui.lib.php:265 #: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325 #: server_privileges.php:692 server_privileges.php:695 @@ -2788,189 +2798,189 @@ msgstr "হোষ্ট" #: libraries/export/latex.php:130 libraries/export/sql.php:233 #: libraries/export/xml.php:107 libraries/header_printview.inc.php:59 -#: libraries/messages.inc.php:354 +#: libraries/messages.inc.php:350 msgid "Generation Time" msgstr "তৈরী করার জন্য সময়" #: libraries/export/latex.php:131 libraries/export/sql.php:235 -#: libraries/export/xml.php:108 libraries/messages.inc.php:864 main.php:186 +#: libraries/export/xml.php:108 libraries/messages.inc.php:860 main.php:186 msgid "Server version" msgstr "Server version" #: libraries/export/latex.php:132 libraries/export/sql.php:236 -#: libraries/export/xml.php:109 libraries/messages.inc.php:651 +#: libraries/export/xml.php:109 libraries/messages.inc.php:647 msgid "PHP Version" msgstr "PHP Version" #: libraries/export/latex.php:201 libraries/export/sql.php:868 -#: libraries/messages.inc.php:226 server_databases.php:127 +#: libraries/messages.inc.php:222 server_databases.php:127 #: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317 #: tbl_structure.php:666 msgid "Data" msgstr "ডাটা" -#: libraries/export/odt.php:318 libraries/messages.inc.php:506 +#: libraries/export/odt.php:318 libraries/messages.inc.php:502 #: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "মাইম এর ধরন" -#: libraries/export/sql.php:387 libraries/messages.inc.php:711 +#: libraries/export/sql.php:387 libraries/messages.inc.php:707 msgid "Procedures" msgstr "Procedures" -#: libraries/export/sql.php:401 libraries/messages.inc.php:348 +#: libraries/export/sql.php:401 libraries/messages.inc.php:344 msgid "Functions" msgstr "ফাংশনসমূহ" -#: libraries/export/sql.php:618 libraries/messages.inc.php:174 +#: libraries/export/sql.php:618 libraries/messages.inc.php:170 msgid "Constraints for dumped tables" msgstr "Constraints for dumped tables" -#: libraries/export/sql.php:627 libraries/messages.inc.php:175 +#: libraries/export/sql.php:627 libraries/messages.inc.php:171 msgid "Constraints for table" msgstr "Constraints for table" -#: libraries/export/sql.php:727 libraries/messages.inc.php:512 +#: libraries/export/sql.php:727 libraries/messages.inc.php:508 msgid "MIME TYPES FOR TABLE" msgstr "MIME TYPES FOR TABLE" -#: libraries/export/sql.php:739 libraries/messages.inc.php:743 +#: libraries/export/sql.php:739 libraries/messages.inc.php:739 msgid "RELATIONS FOR TABLE" msgstr "RELATIONS FOR TABLE" -#: libraries/export/sql.php:796 libraries/messages.inc.php:1178 +#: libraries/export/sql.php:796 libraries/messages.inc.php:1174 #: libraries/tbl_triggers.lib.php:19 msgid "Triggers" msgstr "" -#: libraries/export/sql.php:808 libraries/messages.inc.php:1046 +#: libraries/export/sql.php:808 libraries/messages.inc.php:1042 #, fuzzy msgid "Structure for view" msgstr "Structure only" -#: libraries/export/sql.php:817 libraries/messages.inc.php:1029 +#: libraries/export/sql.php:817 libraries/messages.inc.php:1025 #, fuzzy msgid "Stand-in structure for view" msgstr "Structure only" #: libraries/footer.inc.php:184 libraries/footer.inc.php:195 -#: libraries/footer.inc.php:198 libraries/messages.inc.php:586 +#: libraries/footer.inc.php:198 libraries/messages.inc.php:582 msgid "Open new phpMyAdmin window" msgstr "Open new phpMyAdmin window" -#: libraries/header.inc.php:115 libraries/messages.inc.php:542 +#: libraries/header.inc.php:115 libraries/messages.inc.php:538 #, fuzzy msgid "New table" msgstr "কোন টেবিল নাই" #: libraries/header_printview.inc.php:50 libraries/header_printview.inc.php:55 -#: libraries/messages.inc.php:1024 +#: libraries/messages.inc.php:1020 msgid "SQL result" msgstr "SQL result" -#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:350 +#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:346 msgid "Generated by" msgstr "Generated by" #: libraries/header_printview.inc.php:63 libraries/import.lib.php:145 -#: libraries/messages.inc.php:820 navigation.php:652 navigation.php:674 +#: libraries/messages.inc.php:816 navigation.php:652 navigation.php:674 #: server_databases.php:122 tbl_printview.php:394 tbl_structure.php:366 #: tbl_structure.php:778 msgid "Rows" msgstr "Rows" -#: libraries/import.lib.php:150 libraries/messages.inc.php:285 sql.php:520 +#: libraries/import.lib.php:150 libraries/messages.inc.php:281 sql.php:520 #: tbl_change.php:181 tbl_get_field.php:35 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL returned an empty result set (i.e. zero rows)." -#: libraries/import.lib.php:1078 libraries/messages.inc.php:399 +#: libraries/import.lib.php:1078 libraries/messages.inc.php:395 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1079 libraries/messages.inc.php:400 +#: libraries/import.lib.php:1079 libraries/messages.inc.php:396 msgid "View a structure`s contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1080 libraries/messages.inc.php:401 +#: libraries/import.lib.php:1080 libraries/messages.inc.php:397 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1081 libraries/messages.inc.php:402 +#: libraries/import.lib.php:1081 libraries/messages.inc.php:398 msgid "Edit its structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1084 libraries/messages.inc.php:362 +#: libraries/import.lib.php:1084 libraries/messages.inc.php:358 #, fuzzy msgid "Go to database" msgstr "কোন ডাটাবেজ নাই" #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:869 +#: libraries/messages.inc.php:865 msgid "settings" msgstr "" -#: libraries/import.lib.php:1106 libraries/messages.inc.php:363 +#: libraries/import.lib.php:1106 libraries/messages.inc.php:359 #, fuzzy msgid "Go to table" msgstr "কোন ডাটাবেজ নাই" -#: libraries/import.lib.php:1109 libraries/messages.inc.php:1047 +#: libraries/import.lib.php:1109 libraries/messages.inc.php:1043 #, fuzzy msgid "structure" msgstr "Structure" -#: libraries/import.lib.php:1115 libraries/messages.inc.php:364 +#: libraries/import.lib.php:1115 libraries/messages.inc.php:360 msgid "Go to view" msgstr "" #: libraries/import/csv.php:58 libraries/import/csv.php:70 #: libraries/import/csv.php:74 libraries/import/csv.php:78 -#: libraries/messages.inc.php:442 +#: libraries/messages.inc.php:438 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "Invalid parameter for CSV import: %s" -#: libraries/import/csv.php:59 libraries/messages.inc.php:323 +#: libraries/import/csv.php:59 libraries/messages.inc.php:319 msgid "Fields terminated by" msgstr "Fields terminated by" -#: libraries/import/csv.php:71 libraries/messages.inc.php:320 +#: libraries/import/csv.php:71 libraries/messages.inc.php:316 msgid "Fields enclosed by" msgstr "Fields enclosed by" -#: libraries/import/csv.php:75 libraries/messages.inc.php:321 +#: libraries/import/csv.php:75 libraries/messages.inc.php:317 msgid "Fields escaped by" msgstr "Fields escaped by" -#: libraries/import/csv.php:79 libraries/messages.inc.php:481 +#: libraries/import/csv.php:79 libraries/messages.inc.php:477 msgid "Lines terminated by" msgstr "Lines terminated by" -#: libraries/import/csv.php:119 libraries/messages.inc.php:439 +#: libraries/import/csv.php:119 libraries/messages.inc.php:435 #, php-format msgid "Invalid column (%s) specified!" msgstr "Invalid column (%s) specified!" #: libraries/import/csv.php:177 libraries/import/csv.php:424 -#: libraries/messages.inc.php:441 +#: libraries/messages.inc.php:437 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "Invalid format of CSV input on line %d." -#: libraries/import/csv.php:312 libraries/messages.inc.php:440 +#: libraries/import/csv.php:312 libraries/messages.inc.php:436 #, php-format msgid "Invalid field count in CSV input on line %d." msgstr "Invalid field count in CSV input on line %d." -#: libraries/import/ldi.php:55 libraries/messages.inc.php:446 +#: libraries/import/ldi.php:55 libraries/messages.inc.php:442 msgid "This plugin does not support compressed imports!" msgstr "This plugin does not support compressed imports!" #: libraries/import/xml.php:74 libraries/import/xml.php:130 -#: libraries/messages.inc.php:1247 +#: libraries/messages.inc.php:1243 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -3000,328 +3010,318 @@ msgstr "" msgid "ltr" msgstr "ltr" -#. l10n: Thousands separator -#: libraries/messages.inc.php:21 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: libraries/messages.inc.php:23 -msgid "." -msgstr "." - -#: libraries/messages.inc.php:25 server_status.php:461 +#: libraries/messages.inc.php:21 server_status.php:461 msgid "Aborted" msgstr "বাদ দেওয়া হল" -#: libraries/messages.inc.php:28 main.php:68 +#: libraries/messages.inc.php:24 main.php:68 #, fuzzy msgid "Actions" msgstr "Action" -#: libraries/messages.inc.php:34 libraries/tbl_properties.inc.php:780 +#: libraries/messages.inc.php:30 libraries/tbl_properties.inc.php:780 #: tbl_structure.php:543 #, php-format msgid "Add %s field(s)" msgstr " %s ক্ষেত্রসমূহ যোগ কর" -#: libraries/messages.inc.php:35 +#: libraries/messages.inc.php:31 msgid "Add custom comment into header (\\n splits lines)" msgstr "Add custom comment into header (\\n splits lines)" -#: libraries/messages.inc.php:36 +#: libraries/messages.inc.php:32 msgid "Add into comments" msgstr "মন্তব্যসমূহে যোগ কর" -#: libraries/messages.inc.php:37 tbl_structure.php:541 +#: libraries/messages.inc.php:33 tbl_structure.php:541 msgid "Add new field" msgstr "নতুন ক্ষেত্র যোগ কর" -#: libraries/messages.inc.php:38 server_privileges.php:1886 +#: libraries/messages.inc.php:34 server_privileges.php:1886 msgid "Add privileges on the following database" msgstr "নিচের ডাটাবেইজ এ সুবিধাসমূহ যোগ কর" -#: libraries/messages.inc.php:39 server_privileges.php:1907 +#: libraries/messages.inc.php:35 server_privileges.php:1907 msgid "Add privileges on the following table" msgstr "নিচের টেবিল এ সুবিধাসমূহ যোগ কর" -#: libraries/messages.inc.php:40 tbl_select.php:288 +#: libraries/messages.inc.php:36 tbl_select.php:288 msgid "Add search conditions (body of the \"where\" clause):" msgstr "খোঁজার শর্ত যোগ কর (body of the \"where\" clause):" -#: libraries/messages.inc.php:41 tbl_indexes.php:251 +#: libraries/messages.inc.php:37 tbl_indexes.php:251 #, php-format msgid "Add to index  %s column(s)" msgstr "Index এ যোগ কর  %s column(s)" -#: libraries/messages.inc.php:42 server_privileges.php:1570 +#: libraries/messages.inc.php:38 server_privileges.php:1570 #: server_privileges.php:1594 server_privileges.php:1988 #: server_privileges.php:2177 msgid "Add a new User" msgstr "একটি নতুন ইউজার যোগ করুন" -#: libraries/messages.inc.php:43 server_privileges.php:931 +#: libraries/messages.inc.php:39 server_privileges.php:931 msgid "You have added a new user." msgstr "আপনি একটি নতুন ইউজার যোগ করেছেন" -#: libraries/messages.inc.php:44 server_privileges.php:571 +#: libraries/messages.inc.php:40 server_privileges.php:571 msgid "Administration" msgstr "Administration" -#: libraries/messages.inc.php:45 tbl_structure.php:557 +#: libraries/messages.inc.php:41 tbl_structure.php:557 #, php-format msgid "After %s" msgstr "After %s" -#: libraries/messages.inc.php:46 tbl_change.php:1147 +#: libraries/messages.inc.php:42 tbl_change.php:1147 msgid "Go back to previous page" msgstr "পূর্বের পাতায় ফিরে যাও" -#: libraries/messages.inc.php:47 tbl_change.php:1148 +#: libraries/messages.inc.php:43 tbl_change.php:1148 msgid "Insert another new row" msgstr "নতুন আরেকটি সাড়ি যোগ করুন" -#: libraries/messages.inc.php:48 tbl_change.php:1160 +#: libraries/messages.inc.php:44 tbl_change.php:1160 msgid "Edit next row" msgstr "পরবর্তী সাড়ি সম্পাদনা করুন" -#: libraries/messages.inc.php:49 tbl_change.php:1152 +#: libraries/messages.inc.php:45 tbl_change.php:1152 msgid "Go back to this page" msgstr "এই পাতায় ফিরে যাও" -#: libraries/messages.inc.php:50 querywindow.php:115 +#: libraries/messages.inc.php:46 querywindow.php:115 msgid "All" msgstr "All" -#: libraries/messages.inc.php:53 tbl_operations.php:249 +#: libraries/messages.inc.php:49 tbl_operations.php:249 msgid "Alter table order by" msgstr "টেবিল অর্ডার পরিবর্তন কর" -#: libraries/messages.inc.php:54 tbl_operations.php:660 +#: libraries/messages.inc.php:50 tbl_operations.php:660 msgid "Analyze" msgstr "" -#: libraries/messages.inc.php:57 +#: libraries/messages.inc.php:53 #, fuzzy msgid "and" msgstr "এবং" -#: libraries/messages.inc.php:59 pmd_general.php:87 +#: libraries/messages.inc.php:55 pmd_general.php:87 msgid "Angular links" msgstr "" -#: libraries/messages.inc.php:60 tbl_structure.php:401 tbl_structure.php:415 +#: libraries/messages.inc.php:56 tbl_structure.php:401 tbl_structure.php:415 #: tbl_structure.php:429 #, php-format msgid "An index has been added on %s" msgstr "একটি Index যোগ করা হয়েছে %s" -#: libraries/messages.inc.php:61 server_privileges.php:1521 +#: libraries/messages.inc.php:57 server_privileges.php:1521 #: server_privileges.php:2123 msgid "Any" msgstr "যেকোন" -#: libraries/messages.inc.php:62 libraries/replication_gui.lib.php:298 +#: libraries/messages.inc.php:58 libraries/replication_gui.lib.php:298 #: server_privileges.php:725 msgid "Any host" msgstr "যেকোন হোষ্ট" -#: libraries/messages.inc.php:63 libraries/replication_gui.lib.php:250 +#: libraries/messages.inc.php:59 libraries/replication_gui.lib.php:250 #: server_privileges.php:677 msgid "Any user" msgstr "যেকোন ব্যাবহারকারী" -#: libraries/messages.inc.php:64 server_synchronize.php:449 +#: libraries/messages.inc.php:60 server_synchronize.php:449 #: server_synchronize.php:894 msgid "Apply Selected Changes" msgstr "" -#: libraries/messages.inc.php:66 tbl_structure.php:386 +#: libraries/messages.inc.php:62 tbl_structure.php:386 #, php-format msgid "A primary key has been added on %s" msgstr "একটি প্রাইমারী কী যোগ করা হয়েছে %s" -#: libraries/messages.inc.php:67 libraries/mysql_charsets.lib.php:368 +#: libraries/messages.inc.php:63 libraries/mysql_charsets.lib.php:368 msgid "Arabic" msgstr "আরবী" -#: libraries/messages.inc.php:68 libraries/mysql_charsets.lib.php:359 +#: libraries/messages.inc.php:64 libraries/mysql_charsets.lib.php:359 msgid "Armenian" msgstr "আরমেনিয়ান" -#: libraries/messages.inc.php:70 libraries/tbl_properties.inc.php:394 +#: libraries/messages.inc.php:66 libraries/tbl_properties.inc.php:394 msgid "As defined:" msgstr "" -#: libraries/messages.inc.php:71 tbl_structure.php:556 +#: libraries/messages.inc.php:67 tbl_structure.php:556 msgid "At Beginning of Table" msgstr "টেবিলের শুরুতে" -#: libraries/messages.inc.php:72 tbl_structure.php:555 +#: libraries/messages.inc.php:68 tbl_structure.php:555 msgid "At End of Table" msgstr "টেবিলের শেষে" -#: libraries/messages.inc.php:73 libraries/tbl_properties.inc.php:108 +#: libraries/messages.inc.php:69 libraries/tbl_properties.inc.php:108 #: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:144 #: tbl_structure.php:180 msgid "Attributes" msgstr "Attributes" -#: libraries/messages.inc.php:74 pdf_pages.php:303 pdf_pages.php:306 +#: libraries/messages.inc.php:70 pdf_pages.php:303 pdf_pages.php:306 msgid "Automatic layout" msgstr "Automatic layout" -#: libraries/messages.inc.php:77 libraries/mysql_charsets.lib.php:354 +#: libraries/messages.inc.php:73 libraries/mysql_charsets.lib.php:354 msgid "Baltic" msgstr "ব্যাল্টিক" -#: libraries/messages.inc.php:78 libraries/sqlparser.lib.php:175 +#: libraries/messages.inc.php:74 libraries/sqlparser.lib.php:175 msgid "BEGIN CUT" msgstr "BEGIN CUT" -#: libraries/messages.inc.php:79 libraries/sqlparser.lib.php:179 +#: libraries/messages.inc.php:75 libraries/sqlparser.lib.php:179 msgid "BEGIN RAW" msgstr "BEGIN RAW" -#: libraries/messages.inc.php:80 libraries/mysql_charsets.lib.php:201 +#: libraries/messages.inc.php:76 libraries/mysql_charsets.lib.php:201 #: libraries/mysql_charsets.lib.php:402 tbl_change.php:518 msgid "Binary" msgstr "বাইনারী" -#: libraries/messages.inc.php:81 tbl_change.php:894 +#: libraries/messages.inc.php:77 tbl_change.php:894 msgid "Binary - do not edit" msgstr "বাইনারী -সম্পাদনা করবেন না" -#: libraries/messages.inc.php:82 libraries/server_links.inc.php:76 +#: libraries/messages.inc.php:78 libraries/server_links.inc.php:76 #: server_binlog.php:110 server_status.php:253 test/theme.php:121 msgid "Binary log" msgstr "বাইনারী লগ" -#: libraries/messages.inc.php:83 server_binlog.php:217 +#: libraries/messages.inc.php:79 server_binlog.php:217 msgid "Event type" msgstr "Event type" -#: libraries/messages.inc.php:84 server_binlog.php:220 +#: libraries/messages.inc.php:80 server_binlog.php:220 msgid "Information" msgstr "তথ্য" -#: libraries/messages.inc.php:85 server_binlog.php:215 +#: libraries/messages.inc.php:81 server_binlog.php:215 msgid "Log name" msgstr "লগ নাম" -#: libraries/messages.inc.php:86 server_binlog.php:219 +#: libraries/messages.inc.php:82 server_binlog.php:219 msgid "Original position" msgstr "প্রকৃত অবস্থান" -#: libraries/messages.inc.php:87 server_binlog.php:216 +#: libraries/messages.inc.php:83 server_binlog.php:216 msgid "Position" msgstr "অবস্থান" -#: libraries/messages.inc.php:88 libraries/replication_gui.lib.php:169 +#: libraries/messages.inc.php:84 libraries/replication_gui.lib.php:169 #: server_binlog.php:218 msgid "Server ID" msgstr "সার্ভারের আইডি" -#: libraries/messages.inc.php:92 +#: libraries/messages.inc.php:88 #, fuzzy msgctxt "$strBLOBRepositoryDisabled" msgid "Disabled" msgstr "বন্ধ করা হয়েছে" -#: libraries/messages.inc.php:95 +#: libraries/messages.inc.php:91 #, fuzzy msgctxt "$strBLOBRepositoryEnabled" msgid "Enabled" msgstr "Enabled" -#: libraries/messages.inc.php:97 tbl_change.php:888 +#: libraries/messages.inc.php:93 tbl_change.php:888 msgid "Remove BLOB Repository Reference" msgstr "" -#: libraries/messages.inc.php:98 +#: libraries/messages.inc.php:94 #, fuzzy msgctxt "$strBLOBRepositoryRepair" msgid "Repair" msgstr "টেবিল রিপেয়ার করুন" -#: libraries/messages.inc.php:99 tbl_change.php:987 +#: libraries/messages.inc.php:95 tbl_change.php:987 msgid "Upload to BLOB repository" msgstr "" -#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:359 +#: libraries/messages.inc.php:96 libraries/sql_query_form.lib.php:359 #: sql.php:677 msgid "Let every user access this bookmark" msgstr "সব ব্যাক্তিকে এই বুকমার্কটি দেখার সুযোগ দিন" -#: libraries/messages.inc.php:103 sql.php:671 +#: libraries/messages.inc.php:99 sql.php:671 msgid "Label" msgstr "লেবেল" -#: libraries/messages.inc.php:104 libraries/sql_query_form.lib.php:433 +#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:433 msgid "Bookmarked SQL query" msgstr "বুকমার্ক করা SQL query" -#: libraries/messages.inc.php:105 libraries/sql_query_form.lib.php:365 +#: libraries/messages.inc.php:101 libraries/sql_query_form.lib.php:365 msgid "Replace existing bookmark of same name" msgstr "একই নামের বর্তমান বুকমার্ক প্রতিস্থাপন করুন" -#: libraries/messages.inc.php:106 libraries/sql_query_form.lib.php:352 +#: libraries/messages.inc.php:102 libraries/sql_query_form.lib.php:352 #: sql.php:665 sql.php:666 sql.php:683 msgid "Bookmark this SQL query" msgstr "এই SQL query টি বুকমার্ক করুন" -#: libraries/messages.inc.php:107 libraries/sql_query_form.lib.php:466 +#: libraries/messages.inc.php:103 libraries/sql_query_form.lib.php:466 msgid "View only" msgstr "শুধু দেখ" -#: libraries/messages.inc.php:109 tbl_structure.php:161 +#: libraries/messages.inc.php:105 tbl_structure.php:161 msgid "Browse distinct values" msgstr "নির্দিষ্ট মান ব্রাউজ করুন" -#: libraries/messages.inc.php:110 tbl_change.php:252 tbl_select.php:27 +#: libraries/messages.inc.php:106 tbl_change.php:252 tbl_select.php:27 #: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34 msgid "Browse foreign values" msgstr "Browse foreign values" -#: libraries/messages.inc.php:118 libraries/mysql_charsets.lib.php:213 +#: libraries/messages.inc.php:114 libraries/mysql_charsets.lib.php:213 msgid "Bulgarian" msgstr "বুলগেরিয়ান" -#: libraries/messages.inc.php:120 +#: libraries/messages.inc.php:116 msgid "\"bzipped\"" msgstr "\"bzipped\"" -#: libraries/messages.inc.php:122 +#: libraries/messages.inc.php:118 msgid "Calendar" msgstr "ক্যালেন্ডার" -#: libraries/messages.inc.php:129 tbl_indexes.php:75 +#: libraries/messages.inc.php:125 tbl_indexes.php:75 msgid "Can't rename index to PRIMARY!" msgstr "Can't rename index to PRIMARY!" -#: libraries/messages.inc.php:132 libraries/mysql_charsets.lib.php:223 +#: libraries/messages.inc.php:128 libraries/mysql_charsets.lib.php:223 #: libraries/mysql_charsets.lib.php:409 msgid "case-insensitive" msgstr "case-insensitive" -#: libraries/messages.inc.php:133 libraries/mysql_charsets.lib.php:226 +#: libraries/messages.inc.php:129 libraries/mysql_charsets.lib.php:226 #: libraries/mysql_charsets.lib.php:411 msgid "case-sensitive" msgstr "case-sensitive" -#: libraries/messages.inc.php:134 libraries/mysql_charsets.lib.php:332 +#: libraries/messages.inc.php:130 libraries/mysql_charsets.lib.php:332 msgid "Central European" msgstr "Central European" -#: libraries/messages.inc.php:136 server_privileges.php:1969 +#: libraries/messages.inc.php:132 server_privileges.php:1969 msgid "... keep the old one." msgstr "... পুরাতনটা রেখে দাও" -#: libraries/messages.inc.php:137 server_privileges.php:1967 +#: libraries/messages.inc.php:133 server_privileges.php:1967 msgid "Create a new user with the same privileges and ..." msgstr "একই সুবিধা সহ নতুন আরেকটি ব্যাবহারকারী তৈরী করুন..." -#: libraries/messages.inc.php:138 server_privileges.php:1972 +#: libraries/messages.inc.php:134 server_privileges.php:1972 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -3329,254 +3329,254 @@ msgstr "" " ... ব্যাবহারকারীর টেবিলগুলো থেকে পুরাতনটি মুছে ফেল এবং এরপর সুবিধাসমূহ পুনরায় লোড " "কর" -#: libraries/messages.inc.php:139 server_privileges.php:1970 +#: libraries/messages.inc.php:135 server_privileges.php:1970 msgid " ... delete the old one from the user tables." msgstr " ...ব্যাবহারকারীর টেবিলগুলো থেকে পুরাতনটি মুছে ফেল" -#: libraries/messages.inc.php:140 server_privileges.php:1971 +#: libraries/messages.inc.php:136 server_privileges.php:1971 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "" " ... revoke all active privileges from the old one and delete it afterwards." -#: libraries/messages.inc.php:141 server_privileges.php:1964 +#: libraries/messages.inc.php:137 server_privileges.php:1964 msgid "Change Login Information / Copy User" msgstr "" "লগ ইন তথ্য পরিবর্তন কর অথবা ব্যাবহারকারী কপি করChange Login Information / Copy " "User" -#: libraries/messages.inc.php:144 libraries/mysql_charsets.lib.php:107 +#: libraries/messages.inc.php:140 libraries/mysql_charsets.lib.php:107 msgid "Charset" msgstr "Charset" -#: libraries/messages.inc.php:146 server_collations.php:40 +#: libraries/messages.inc.php:142 server_collations.php:40 msgid "Character Sets and Collations" msgstr "Character Sets and Collations" -#: libraries/messages.inc.php:147 libraries/server_links.inc.php:57 +#: libraries/messages.inc.php:143 libraries/server_links.inc.php:57 #: test/theme.php:109 msgid "Charsets" msgstr "Charsets" -#: libraries/messages.inc.php:149 tbl_operations.php:661 +#: libraries/messages.inc.php:145 tbl_operations.php:661 #, fuzzy msgid "Check" msgstr "চেক" -#: libraries/messages.inc.php:151 server_databases.php:293 +#: libraries/messages.inc.php:147 server_databases.php:293 #: server_databases.php:294 msgid "Check Privileges" msgstr "সুবিধাসমূহ পরীক্ষা করুন" -#: libraries/messages.inc.php:152 server_databases.php:289 +#: libraries/messages.inc.php:148 server_databases.php:289 #, php-format msgid "Check privileges for database "%s"." msgstr "Check privileges for database "%s"." -#: libraries/messages.inc.php:154 pdf_pages.php:261 +#: libraries/messages.inc.php:150 pdf_pages.php:261 msgid "Please choose a page to edit" msgstr "অনুগ্রহ করে সম্পাদনা করার জন্য একটি পাতা নির্বাচন করুন" -#: libraries/messages.inc.php:157 +#: libraries/messages.inc.php:153 msgid "Displaying Column Comments" msgstr "কলামের মন্তব্য প্রদর্শন করা হচ্ছে" -#: libraries/messages.inc.php:159 pdf_pages.php:483 view_create.php:148 +#: libraries/messages.inc.php:155 pdf_pages.php:483 view_create.php:148 msgid "Column names" msgstr "কলামের নাম" -#: libraries/messages.inc.php:160 server_privileges.php:1685 +#: libraries/messages.inc.php:156 server_privileges.php:1685 msgid "Column-specific privileges" msgstr "কলাম নির্দিষ্ট সুবিধাসমূহ" -#: libraries/messages.inc.php:164 +#: libraries/messages.inc.php:160 msgid "MySQL 4.0 compatible" msgstr "MySQL 4.0 compatible" -#: libraries/messages.inc.php:165 +#: libraries/messages.inc.php:161 msgid "Complete inserts" msgstr "Complete inserts" -#: libraries/messages.inc.php:168 +#: libraries/messages.inc.php:164 #, php-format msgid "Could not load default configuration from: \"%1$s\"" msgstr "\"%1$s\" হতে ডিফল্ট কনফিগারেশন লোড করা যায়নি" -#: libraries/messages.inc.php:169 main.php:306 +#: libraries/messages.inc.php:165 main.php:306 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: libraries/messages.inc.php:171 pdf_schema.php:672 +#: libraries/messages.inc.php:167 pdf_schema.php:672 #, php-format msgid "Please configure the coordinates for table %s" msgstr "দয়া করে %s টেবিল এর অবস্থান কনফিগার করুন" -#: libraries/messages.inc.php:173 server_status.php:433 +#: libraries/messages.inc.php:169 server_status.php:433 msgid "Connections" msgstr "সংযোগসমূহ" -#: libraries/messages.inc.php:179 tbl_operations.php:509 +#: libraries/messages.inc.php:175 tbl_operations.php:509 msgid "Copy table to (database.table):" msgstr "Copy table to (database.table):" -#: libraries/messages.inc.php:180 tbl_move_copy.php:58 +#: libraries/messages.inc.php:176 tbl_move_copy.php:58 #, php-format msgid "Table %s has been copied to %s." msgstr "%s টেবিল %s তে কপি করা হয়েছে" -#: libraries/messages.inc.php:181 tbl_move_copy.php:48 +#: libraries/messages.inc.php:177 tbl_move_copy.php:48 msgid "Can't copy table to same one!" msgstr "Can't copy table to same one!" -#: libraries/messages.inc.php:182 server_synchronize.php:94 +#: libraries/messages.inc.php:178 server_synchronize.php:94 msgid "Could not connect to the source" msgstr "" -#: libraries/messages.inc.php:183 server_synchronize.php:97 +#: libraries/messages.inc.php:179 server_synchronize.php:97 msgid "Could not connect to the target" msgstr "" -#: libraries/messages.inc.php:184 server_processlist.php:24 +#: libraries/messages.inc.php:180 server_processlist.php:24 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin %s থ্রেড কে বন্ধ করতে পারেনি। সম্ভবত এটি আগেই বন্ধ করা হয়েছে" -#: libraries/messages.inc.php:187 +#: libraries/messages.inc.php:183 #, php-format msgid "Create an index on %s columns" msgstr "Create an index on %s columns" -#: libraries/messages.inc.php:188 tbl_indexes.php:160 +#: libraries/messages.inc.php:184 tbl_indexes.php:160 msgid "Create a new index" msgstr "একটি নতুন ইন্ডেস্ক তৈরী কর" -#: libraries/messages.inc.php:191 pdf_pages.php:297 pmd_pdf.php:114 +#: libraries/messages.inc.php:187 pdf_pages.php:297 pmd_pdf.php:114 msgid "Create a page" msgstr "একটি নতুন পাতা তৈরী কর" -#: libraries/messages.inc.php:192 +#: libraries/messages.inc.php:188 msgid "Creation of PDFs" msgstr "পিডিএফ সমূহ তৈরী" -#: libraries/messages.inc.php:193 pmd_general.php:74 pmd_general.php:306 +#: libraries/messages.inc.php:189 pmd_general.php:74 pmd_general.php:306 #, fuzzy msgid "Create relation" msgstr "Server version" -#: libraries/messages.inc.php:194 pmd_general.php:71 +#: libraries/messages.inc.php:190 pmd_general.php:71 #: server_synchronize.php:429 server_synchronize.php:872 #, fuzzy msgid "Create table" msgstr "একটি নতুন পাতা তৈরী কর" -#: libraries/messages.inc.php:195 +#: libraries/messages.inc.php:191 #, fuzzy msgctxt "$strCreateTableShort" msgid "Create table" msgstr "একটি নতুন পাতা তৈরী কর" -#: libraries/messages.inc.php:196 server_privileges.php:1994 +#: libraries/messages.inc.php:192 server_privileges.php:1994 msgid "Database for user" msgstr "ব্যাবহারকারীর জন্য ডাটাবেজ" -#: libraries/messages.inc.php:197 server_privileges.php:1999 +#: libraries/messages.inc.php:193 server_privileges.php:1999 msgid "Create database with same name and grant all privileges" msgstr "" "একই নামে ডাটাবেজ তৈরী কর এবং সকল সুবিধাসমূহ মঞ্জুর করCreate database with same " "name and grant all privileges" -#: libraries/messages.inc.php:198 +#: libraries/messages.inc.php:194 #, fuzzy msgctxt "$strCreateUserDatabaseNone" msgid "None" msgstr "কোনটিই নয়" -#: libraries/messages.inc.php:199 server_privileges.php:2003 +#: libraries/messages.inc.php:195 server_privileges.php:2003 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "Check privileges for database "%s"." -#: libraries/messages.inc.php:200 server_privileges.php:2000 +#: libraries/messages.inc.php:196 server_privileges.php:2000 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Grant all privileges on wildcard name (username_%)" -#: libraries/messages.inc.php:201 +#: libraries/messages.inc.php:197 msgid "Creation/Update/Check dates" msgstr "তইরী/আপডেট/তারিখ পরীক্ষা কর" -#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:229 +#: libraries/messages.inc.php:199 libraries/mysql_charsets.lib.php:229 msgid "Croatian" msgstr "Croatian" -#: libraries/messages.inc.php:204 +#: libraries/messages.inc.php:200 msgid "CSV" msgstr "CSV" -#: libraries/messages.inc.php:205 libraries/server_synchronize.lib.php:1343 +#: libraries/messages.inc.php:201 libraries/server_synchronize.lib.php:1343 #: libraries/server_synchronize.lib.php:1369 msgid "Current server" msgstr "" -#: libraries/messages.inc.php:206 main.php:159 +#: libraries/messages.inc.php:202 main.php:159 msgid "Custom color" msgstr "" -#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:365 +#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:365 msgid "Cyrillic" msgstr "Cyrillic" -#: libraries/messages.inc.php:208 libraries/mysql_charsets.lib.php:232 +#: libraries/messages.inc.php:204 libraries/mysql_charsets.lib.php:232 msgid "Czech" msgstr "চেক" -#: libraries/messages.inc.php:209 libraries/mysql_charsets.lib.php:383 +#: libraries/messages.inc.php:205 libraries/mysql_charsets.lib.php:383 msgid "Czech-Slovak" msgstr "চেক-স্লোভাক" -#: libraries/messages.inc.php:211 libraries/mysql_charsets.lib.php:235 +#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:235 msgid "Danish" msgstr "ড্যানিশ" -#: libraries/messages.inc.php:214 +#: libraries/messages.inc.php:210 msgid "Database export options" msgstr "ডাটাবেজ এক্সপোটঁ করার সুবিধাসমূহ" -#: libraries/messages.inc.php:217 server_synchronize.php:122 +#: libraries/messages.inc.php:213 server_synchronize.php:122 #: server_synchronize.php:125 tbl_create.php:82 tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "" -#: libraries/messages.inc.php:219 server_databases.php:63 +#: libraries/messages.inc.php:215 server_databases.php:63 #, php-format msgid "%s databases have been dropped successfully." msgstr "%s ডাটাবেজসমূহ সফলভাবে মুছে ফেলা হয়েছে " -#: libraries/messages.inc.php:220 libraries/server_synchronize.lib.php:1341 +#: libraries/messages.inc.php:216 libraries/server_synchronize.lib.php:1341 #: server_synchronize.php:1110 #, fuzzy msgid "Source database" msgstr "ডাটাবে এ খুজুঁনSearch in database" -#: libraries/messages.inc.php:221 server_databases.php:88 +#: libraries/messages.inc.php:217 server_databases.php:88 msgid "Databases statistics" msgstr "ডাটাবেজসমূহের পরিসংখ্যান" -#: libraries/messages.inc.php:222 server_databases.php:362 +#: libraries/messages.inc.php:218 server_databases.php:362 #: server_databases.php:363 msgid "Disable Statistics" msgstr "পরিসংখ্যান বন্ধ কর" -#: libraries/messages.inc.php:223 server_databases.php:358 +#: libraries/messages.inc.php:219 server_databases.php:358 #: server_databases.php:359 msgid "Enable Statistics" msgstr "পরিসংখ্যান চালু কর" -#: libraries/messages.inc.php:224 server_databases.php:366 +#: libraries/messages.inc.php:220 server_databases.php:366 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -3584,31 +3584,31 @@ msgstr "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." -#: libraries/messages.inc.php:225 libraries/server_synchronize.lib.php:1367 +#: libraries/messages.inc.php:221 libraries/server_synchronize.lib.php:1367 #: server_synchronize.php:1112 #, fuzzy msgid "Target database" msgstr "ডাটাবে এ খুজুঁনSearch in database" -#: libraries/messages.inc.php:228 server_synchronize.php:425 +#: libraries/messages.inc.php:224 server_synchronize.php:425 #: server_synchronize.php:868 msgid "Data Difference" msgstr "" -#: libraries/messages.inc.php:231 server_synchronize.php:272 +#: libraries/messages.inc.php:227 server_synchronize.php:272 msgid "Data Synchronization" msgstr "" -#: libraries/messages.inc.php:235 server_privileges.php:526 +#: libraries/messages.inc.php:231 server_privileges.php:526 #: server_privileges.php:1679 msgid "Database-specific privileges" msgstr "ডাটাবেজ-নির্দিষ্ট সুবিধাসমূহ" -#: libraries/messages.inc.php:237 server_privileges.php:2136 +#: libraries/messages.inc.php:233 server_privileges.php:2136 msgid "database-specific" msgstr "ডাটাবেজ-নির্দিষ্ট" -#: libraries/messages.inc.php:240 libraries/tbl_properties.inc.php:106 +#: libraries/messages.inc.php:236 libraries/tbl_properties.inc.php:106 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" @@ -3616,32 +3616,32 @@ msgstr "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" -#: libraries/messages.inc.php:241 tbl_operations.php:589 +#: libraries/messages.inc.php:237 tbl_operations.php:589 msgid "Defragment table" msgstr "Defragment table" -#: libraries/messages.inc.php:242 +#: libraries/messages.inc.php:238 msgid "Use delayed inserts" msgstr "Use delayed inserts" -#: libraries/messages.inc.php:245 server_privileges.php:1243 +#: libraries/messages.inc.php:241 server_privileges.php:1243 msgid "No users selected for deleting!" msgstr "মুছে ফেলার জন্য কোন ব্যাবহারকারী চিহ্নিত করা হয়নি" -#: libraries/messages.inc.php:246 pmd_general.php:372 +#: libraries/messages.inc.php:242 pmd_general.php:372 msgid "Delete relation" msgstr "" -#: libraries/messages.inc.php:248 server_privileges.php:1232 +#: libraries/messages.inc.php:244 server_privileges.php:1232 #, php-format msgid "Deleting %s" msgstr "%s মুছে ফেলা হচ্ছে" -#: libraries/messages.inc.php:249 libraries/sql_query_form.lib.php:388 +#: libraries/messages.inc.php:245 libraries/sql_query_form.lib.php:388 msgid "Delimiter" msgstr "Delimiter" -#: libraries/messages.inc.php:250 pdf_pages.php:506 +#: libraries/messages.inc.php:246 pdf_pages.php:506 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -3650,153 +3650,153 @@ msgstr "" "ফেলতে চান? The current page has references to tables that no longer exist. " "Would you like to delete those references?" -#: libraries/messages.inc.php:254 pmd_help.php:29 +#: libraries/messages.inc.php:250 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." msgstr "" -#: libraries/messages.inc.php:256 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:252 libraries/mysql_charsets.lib.php:247 msgid "dictionary" msgstr "অভিধান" -#: libraries/messages.inc.php:257 libraries/server_synchronize.lib.php:1348 +#: libraries/messages.inc.php:253 libraries/server_synchronize.lib.php:1348 msgid "Difference" msgstr "" -#: libraries/messages.inc.php:258 pmd_general.php:87 +#: libraries/messages.inc.php:254 pmd_general.php:87 msgid "Direct links" msgstr "" -#: libraries/messages.inc.php:261 +#: libraries/messages.inc.php:257 msgid "Disable foreign key checks" msgstr "Disable foreign key checks" -#: libraries/messages.inc.php:262 +#: libraries/messages.inc.php:258 msgid "Display Features" msgstr "বৈশিষ্ট্যসমূহ প্রদর্শন কর" -#: libraries/messages.inc.php:263 tbl_select.php:301 +#: libraries/messages.inc.php:259 tbl_select.php:301 msgid "Display order:" msgstr "ক্রম প্রদর্শন কর" -#: libraries/messages.inc.php:265 tbl_select.php:132 +#: libraries/messages.inc.php:261 tbl_select.php:132 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Do a \"query by example\" (wildcard: \"%\")" -#: libraries/messages.inc.php:266 +#: libraries/messages.inc.php:262 msgid "DocSQL" msgstr "" -#: libraries/messages.inc.php:268 +#: libraries/messages.inc.php:264 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/messages.inc.php:273 server_privileges.php:1579 +#: libraries/messages.inc.php:269 server_privileges.php:1579 #: server_privileges.php:1580 server_privileges.php:1581 msgid "Drop the databases that have the same names as the users." msgstr "ব্যাবহারকারীর নামে নাম এমন ডাটাবেজসমূহ মুছে ফেল" -#: libraries/messages.inc.php:278 tbl_printview.php:382 tbl_structure.php:743 +#: libraries/messages.inc.php:274 tbl_printview.php:382 tbl_structure.php:743 msgid "dynamic" msgstr "ডায়নামিক" -#: libraries/messages.inc.php:282 server_privileges.php:1324 +#: libraries/messages.inc.php:278 server_privileges.php:1324 #: server_privileges.php:1610 msgid "Edit Privileges" msgstr "সুবিধাসমূহ সম্পাদনা কর" -#: libraries/messages.inc.php:283 tbl_printview.php:341 tbl_structure.php:688 +#: libraries/messages.inc.php:279 tbl_printview.php:341 tbl_structure.php:688 msgid "Effective" msgstr "Effective" -#: libraries/messages.inc.php:286 libraries/relation.lib.php:100 +#: libraries/messages.inc.php:282 libraries/relation.lib.php:100 msgid "Enabled" msgstr "Enabled" -#: libraries/messages.inc.php:287 +#: libraries/messages.inc.php:283 msgid "Enclose export in a transaction" msgstr "Enclose export in a transaction" -#: libraries/messages.inc.php:288 libraries/sqlparser.lib.php:177 +#: libraries/messages.inc.php:284 libraries/sqlparser.lib.php:177 msgid "END CUT" msgstr "END CUT" -#: libraries/messages.inc.php:290 libraries/sqlparser.lib.php:183 +#: libraries/messages.inc.php:286 libraries/sqlparser.lib.php:183 msgid "END RAW" msgstr "END RAW" -#: libraries/messages.inc.php:293 libraries/server_links.inc.php:61 +#: libraries/messages.inc.php:289 libraries/server_links.inc.php:61 #: test/theme.php:113 msgid "Engines" msgstr "ইঞ্জিনসমূহ" -#: libraries/messages.inc.php:295 libraries/mysql_charsets.lib.php:238 +#: libraries/messages.inc.php:291 libraries/mysql_charsets.lib.php:238 msgid "English" msgstr "ইংরেজী" -#: libraries/messages.inc.php:296 server_privileges.php:393 +#: libraries/messages.inc.php:292 server_privileges.php:393 #: server_privileges.php:535 server_privileges.php:1501 msgid " Note: MySQL privilege names are expressed in English " msgstr "" "নোটঃ MySQL সুবিধাসমূহের নাম ইংরেজীতে প্রকাশ করা হয় Note: MySQL privilege " "names are expressed in English " -#: libraries/messages.inc.php:298 libraries/zip_extension.lib.php:49 +#: libraries/messages.inc.php:294 libraries/zip_extension.lib.php:49 #: libraries/zip_extension.lib.php:51 libraries/zip_extension.lib.php:66 msgid "Error in ZIP archive:" msgstr "ZIP archive: এ ভূল আছে" -#: libraries/messages.inc.php:303 libraries/mysql_charsets.lib.php:241 +#: libraries/messages.inc.php:299 libraries/mysql_charsets.lib.php:241 msgid "Esperanto" msgstr "Esperanto" -#: libraries/messages.inc.php:304 libraries/mysql_charsets.lib.php:244 +#: libraries/messages.inc.php:300 libraries/mysql_charsets.lib.php:244 msgid "Estonian" msgstr "Estonian" -#: libraries/messages.inc.php:305 libraries/tbl_triggers.lib.php:29 +#: libraries/messages.inc.php:301 libraries/tbl_triggers.lib.php:29 #, fuzzy msgid "Event" msgstr "Sent" -#: libraries/messages.inc.php:307 +#: libraries/messages.inc.php:303 msgid "Excel edition" msgstr "Excel edition" -#: libraries/messages.inc.php:311 pmd_pdf.php:85 +#: libraries/messages.inc.php:307 pmd_pdf.php:85 msgid "Export/Import to scale" msgstr "" -#: libraries/messages.inc.php:313 +#: libraries/messages.inc.php:309 msgid "Extended inserts" msgstr "Extended inserts" -#: libraries/messages.inc.php:314 pdf_schema.php:1267 pdf_schema.php:1288 +#: libraries/messages.inc.php:310 pdf_schema.php:1267 pdf_schema.php:1288 #: tbl_printview.php:147 tbl_structure.php:183 tbl_tracking.php:278 msgid "Extra" msgstr "অতিরিক্ত" -#: libraries/messages.inc.php:316 server_status.php:447 +#: libraries/messages.inc.php:312 server_status.php:447 msgid "Failed attempts" msgstr "ব্যার্থ হওয়া চেষ্টাসমূহ" -#: libraries/messages.inc.php:318 tbl_structure.php:375 +#: libraries/messages.inc.php:314 tbl_structure.php:375 #, php-format msgid "Field %s has been dropped" msgstr "%s ক্ষেত্র মুছে ফেলা হয়েছে" -#: libraries/messages.inc.php:322 libraries/sql_query_form.lib.php:317 +#: libraries/messages.inc.php:318 libraries/sql_query_form.lib.php:317 msgid "Fields" msgstr "ক্ষেত্রসমূহ" -#: libraries/messages.inc.php:332 server_binlog.php:136 +#: libraries/messages.inc.php:328 server_binlog.php:136 #, fuzzy msgid "Files" msgstr "ক্ষেত্রসমূহ" -#: libraries/messages.inc.php:334 server_privileges.php:1597 +#: libraries/messages.inc.php:330 server_privileges.php:1597 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -3809,220 +3809,220 @@ msgstr "" "server uses, if they have been changed manually. In this case, you should %" "sreload the privileges%s before you continue." -#: libraries/messages.inc.php:335 server_status.php:289 +#: libraries/messages.inc.php:331 server_status.php:289 msgid "Flush query cache" msgstr "Flush query cache" -#: libraries/messages.inc.php:336 +#: libraries/messages.inc.php:332 msgid "Flush the table (\"FLUSH\")" msgstr "Flush the table (\"FLUSH\")" -#: libraries/messages.inc.php:337 server_status.php:271 +#: libraries/messages.inc.php:333 server_status.php:271 msgid "Flush (close) all tables" msgstr "Flush (close) all tables" -#: libraries/messages.inc.php:339 tbl_relation.php:279 +#: libraries/messages.inc.php:335 tbl_relation.php:279 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" -#: libraries/messages.inc.php:341 setup/lib/messages.inc.php:88 +#: libraries/messages.inc.php:337 setup/lib/messages.inc.php:88 #: tbl_printview.php:376 tbl_structure.php:738 msgid "Format" msgstr "ফরমেট" -#: libraries/messages.inc.php:344 server_replication.php:325 +#: libraries/messages.inc.php:340 server_replication.php:325 #, fuzzy msgid "Full start" msgstr "Fulltext" -#: libraries/messages.inc.php:345 server_replication.php:325 +#: libraries/messages.inc.php:341 server_replication.php:325 #, fuzzy msgid "Full stop" msgstr "Fulltext" -#: libraries/messages.inc.php:347 tbl_change.php:282 tbl_change.php:320 +#: libraries/messages.inc.php:343 tbl_change.php:282 tbl_change.php:320 msgid "Function" msgstr "ফাংশন" -#: libraries/messages.inc.php:355 libraries/mysql_charsets.lib.php:377 +#: libraries/messages.inc.php:351 libraries/mysql_charsets.lib.php:377 msgid "Georgian" msgstr "জরজীয়ান" -#: libraries/messages.inc.php:356 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:352 libraries/mysql_charsets.lib.php:247 #: libraries/mysql_charsets.lib.php:250 msgid "German" msgstr "জার্মান" -#: libraries/messages.inc.php:357 themes.php:42 +#: libraries/messages.inc.php:353 themes.php:42 msgid "Get more themes!" msgstr "" -#: libraries/messages.inc.php:358 server_privileges.php:2134 +#: libraries/messages.inc.php:354 server_privileges.php:2134 msgid "global" msgstr "global" -#: libraries/messages.inc.php:359 server_privileges.php:524 +#: libraries/messages.inc.php:355 server_privileges.php:524 #: server_privileges.php:1500 msgid "Global privileges" msgstr "Global privileges" -#: libraries/messages.inc.php:360 server_variables.php:55 +#: libraries/messages.inc.php:356 server_variables.php:55 #: server_variables.php:89 msgid "Global value" msgstr "Global value" -#: libraries/messages.inc.php:365 server_privileges.php:1502 +#: libraries/messages.inc.php:361 server_privileges.php:1502 #: server_privileges.php:1684 server_privileges.php:2033 msgid "Grant" msgstr "Grant" -#: libraries/messages.inc.php:366 libraries/mysql_charsets.lib.php:380 +#: libraries/messages.inc.php:362 libraries/mysql_charsets.lib.php:380 msgid "Greek" msgstr "গ্রীক" -#: libraries/messages.inc.php:367 +#: libraries/messages.inc.php:363 msgid "\"gzipped\"" msgstr "\"gzipped\"" -#: libraries/messages.inc.php:369 server_status.php:250 +#: libraries/messages.inc.php:365 server_status.php:250 msgid "Handler" msgstr "Handler" -#: libraries/messages.inc.php:370 server_synchronize.php:464 +#: libraries/messages.inc.php:366 server_synchronize.php:464 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: libraries/messages.inc.php:372 libraries/mysql_charsets.lib.php:374 +#: libraries/messages.inc.php:368 libraries/mysql_charsets.lib.php:374 msgid "Hebrew" msgstr "হীব্রূ" -#: libraries/messages.inc.php:373 pmd_general.php:83 +#: libraries/messages.inc.php:369 pmd_general.php:83 msgid "Help" msgstr "" -#: libraries/messages.inc.php:374 +#: libraries/messages.inc.php:370 msgid "Use hexadecimal for BLOB" msgstr "" -#: libraries/messages.inc.php:376 pmd_general.php:120 +#: libraries/messages.inc.php:372 pmd_general.php:120 #, fuzzy msgid "Hide/Show all" msgstr "Show all" -#: libraries/messages.inc.php:377 pmd_general.php:124 +#: libraries/messages.inc.php:373 pmd_general.php:124 msgid "Hide/Show Tables with no relation" msgstr "" -#: libraries/messages.inc.php:378 libraries/navigation_header.inc.php:54 +#: libraries/messages.inc.php:374 libraries/navigation_header.inc.php:54 #: libraries/navigation_header.inc.php:57 #: libraries/navigation_header.inc.php:58 msgid "Home" msgstr "মূল পাতা" -#: libraries/messages.inc.php:379 main.php:233 +#: libraries/messages.inc.php:375 main.php:233 msgid "Official Homepage" msgstr "Official phpMyAdmin Homepage" -#: libraries/messages.inc.php:382 libraries/replication_gui.lib.php:327 +#: libraries/messages.inc.php:378 libraries/replication_gui.lib.php:327 #: server_privileges.php:753 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/messages.inc.php:383 +#: libraries/messages.inc.php:379 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/messages.inc.php:384 libraries/mysql_charsets.lib.php:253 +#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:253 msgid "Hungarian" msgstr "হাংগেরিয়ান" -#: libraries/messages.inc.php:386 libraries/mysql_charsets.lib.php:256 +#: libraries/messages.inc.php:382 libraries/mysql_charsets.lib.php:256 msgid "Icelandic" msgstr "Icelandic" -#: libraries/messages.inc.php:387 server_processlist.php:53 +#: libraries/messages.inc.php:383 server_processlist.php:53 msgid "ID" msgstr "আইডি" -#: libraries/messages.inc.php:388 libraries/mult_submits.inc.php:108 +#: libraries/messages.inc.php:384 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:479 msgid "Fulltext" msgstr "Fulltext" -#: libraries/messages.inc.php:389 +#: libraries/messages.inc.php:385 msgid "Ignore duplicate rows" msgstr "ডুপ্লিকেট সারি অবহেলা করুন" -#: libraries/messages.inc.php:390 tbl_change.php:302 tbl_indexes.php:200 +#: libraries/messages.inc.php:386 tbl_change.php:302 tbl_indexes.php:200 #: tbl_indexes.php:225 msgid "Ignore" msgstr "Ignore" -#: libraries/messages.inc.php:391 +#: libraries/messages.inc.php:387 msgid "Use ignore inserts" msgstr "Use ignore inserts" -#: libraries/messages.inc.php:392 +#: libraries/messages.inc.php:388 msgid "Column names in first row" msgstr "" -#: libraries/messages.inc.php:393 +#: libraries/messages.inc.php:389 msgid "Do not import empty rows" msgstr "" -#: libraries/messages.inc.php:394 pmd_general.php:104 +#: libraries/messages.inc.php:390 pmd_general.php:104 msgid "Import/Export coordinates for PDF schema" msgstr "" -#: libraries/messages.inc.php:395 querywindow.php:104 +#: libraries/messages.inc.php:391 querywindow.php:104 msgid "Import files" msgstr "ফাইল ইম্পোর্ট কর" -#: libraries/messages.inc.php:403 +#: libraries/messages.inc.php:399 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/messages.inc.php:404 libraries/messages.inc.php:584 +#: libraries/messages.inc.php:400 libraries/messages.inc.php:580 msgid "Open Document Spreadsheet" msgstr "Open Document Spreadsheet" -#: libraries/messages.inc.php:405 +#: libraries/messages.inc.php:401 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/messages.inc.php:409 +#: libraries/messages.inc.php:405 msgid "Excel 97-2003 XLS Workbook" msgstr "" -#: libraries/messages.inc.php:410 +#: libraries/messages.inc.php:406 msgid "Excel 2007 XLSX Workbook" msgstr "" -#: libraries/messages.inc.php:414 libraries/mult_submits.inc.php:98 +#: libraries/messages.inc.php:410 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:476 tbl_structure.php:674 msgid "Index" msgstr "ইন্ডেস্ক" -#: libraries/messages.inc.php:415 tbl_indexes.php:168 +#: libraries/messages.inc.php:411 tbl_indexes.php:168 msgid "Index name:" msgstr "ইন্ডেস্ক নামঃ" -#: libraries/messages.inc.php:416 tbl_indexes.php:174 +#: libraries/messages.inc.php:412 tbl_indexes.php:174 msgid "Index type:" msgstr "ইন্ডেস্ক এর ধরনঃ" -#: libraries/messages.inc.php:417 sql.php:639 +#: libraries/messages.inc.php:413 sql.php:639 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problems with indexes of table `%s`" -#: libraries/messages.inc.php:427 main.php:266 +#: libraries/messages.inc.php:423 main.php:266 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -4034,163 +4034,163 @@ msgstr "" "running with this default, is open to intrusion, and you really should fix " "this security hole." -#: libraries/messages.inc.php:428 tbl_change.php:1130 +#: libraries/messages.inc.php:424 tbl_change.php:1130 msgid "Insert as new row" msgstr "Insert as new row" -#: libraries/messages.inc.php:429 sql.php:496 tbl_replace.php:386 +#: libraries/messages.inc.php:425 sql.php:496 tbl_replace.php:386 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: libraries/messages.inc.php:430 tbl_change.php:1131 +#: libraries/messages.inc.php:426 tbl_change.php:1131 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/messages.inc.php:432 main.php:139 +#: libraries/messages.inc.php:428 main.php:139 msgid "Interface" msgstr "" -#: libraries/messages.inc.php:433 tbl_relation.php:407 +#: libraries/messages.inc.php:429 tbl_relation.php:407 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: libraries/messages.inc.php:435 pdf_pages.php:303 +#: libraries/messages.inc.php:431 pdf_pages.php:303 msgid "Internal relations" msgstr "Internal relations" -#: libraries/messages.inc.php:438 tbl_indexes.php:256 tbl_structure.php:590 +#: libraries/messages.inc.php:434 tbl_indexes.php:256 tbl_structure.php:590 #: tbl_structure.php:601 msgid "Column count has to be larger than zero." msgstr "Column count has to be larger than zero." -#: libraries/messages.inc.php:444 libraries/tbl_properties.inc.php:784 +#: libraries/messages.inc.php:440 libraries/tbl_properties.inc.php:784 #: tbl_structure.php:537 msgid "You have to add at least one field." msgstr "You have to add at least one field." -#: libraries/messages.inc.php:449 +#: libraries/messages.inc.php:445 #, php-format msgid "Invalid server index: \"%s\"" msgstr "Invalid server index: \"%s\"" -#: libraries/messages.inc.php:452 libraries/mysql_charsets.lib.php:259 +#: libraries/messages.inc.php:448 libraries/mysql_charsets.lib.php:259 #: libraries/mysql_charsets.lib.php:349 msgid "Japanese" msgstr "Japanese" -#: libraries/messages.inc.php:453 main.php:331 +#: libraries/messages.inc.php:449 main.php:331 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: libraries/messages.inc.php:454 server_status.php:257 +#: libraries/messages.inc.php:450 server_status.php:257 msgid "Joins" msgstr "Joins" -#: libraries/messages.inc.php:457 server_privileges.php:763 +#: libraries/messages.inc.php:453 server_privileges.php:763 msgid "Do not change the password" msgstr "Do not change the password" -#: libraries/messages.inc.php:458 server_status.php:256 +#: libraries/messages.inc.php:454 server_status.php:256 msgid "Key cache" msgstr "Key cache" -#: libraries/messages.inc.php:462 libraries/mysql_charsets.lib.php:268 +#: libraries/messages.inc.php:458 libraries/mysql_charsets.lib.php:268 #: libraries/mysql_charsets.lib.php:371 msgid "Korean" msgstr "কোরিয়ান" -#: libraries/messages.inc.php:466 libraries/select_lang.lib.php:480 +#: libraries/messages.inc.php:462 libraries/select_lang.lib.php:480 #: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492 #, php-format msgid "Unknown language: %1$s." msgstr "Unknown language: %1$s." -#: libraries/messages.inc.php:468 +#: libraries/messages.inc.php:464 msgid "Table caption" msgstr "Table caption" -#: libraries/messages.inc.php:469 +#: libraries/messages.inc.php:465 msgid "Content of table __TABLE__" msgstr "Content of table __TABLE__" -#: libraries/messages.inc.php:470 +#: libraries/messages.inc.php:466 msgid "Continued table caption" msgstr "Continued table caption" -#: libraries/messages.inc.php:471 +#: libraries/messages.inc.php:467 msgid "(continued)" msgstr "(continued)" -#: libraries/messages.inc.php:472 +#: libraries/messages.inc.php:468 msgid "Include table caption" msgstr "Include table caption" -#: libraries/messages.inc.php:473 +#: libraries/messages.inc.php:469 msgid "Label key" msgstr "Label key" -#: libraries/messages.inc.php:474 +#: libraries/messages.inc.php:470 msgid "LaTeX" msgstr "LaTeX" -#: libraries/messages.inc.php:475 +#: libraries/messages.inc.php:471 msgid "Structure of table __TABLE__" msgstr "Structure of table __TABLE__" -#: libraries/messages.inc.php:476 libraries/mysql_charsets.lib.php:262 +#: libraries/messages.inc.php:472 libraries/mysql_charsets.lib.php:262 msgid "Latvian" msgstr "Latvian" -#: libraries/messages.inc.php:477 +#: libraries/messages.inc.php:473 msgid "CSV using LOAD DATA" msgstr "CSV using LOAD DATA" -#: libraries/messages.inc.php:478 +#: libraries/messages.inc.php:474 msgid "Use LOCAL keyword" msgstr "লোকাল কী-ওয়ার্ড ব্যাবহার করুন" -#: libraries/messages.inc.php:479 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:475 libraries/tbl_properties.inc.php:105 msgid "Length/Values" msgstr "Length/Values" -#: libraries/messages.inc.php:480 tbl_select.php:295 +#: libraries/messages.inc.php:476 tbl_select.php:295 msgid "Number of rows per page" msgstr "Number of rows per page" -#: libraries/messages.inc.php:484 libraries/mysql_charsets.lib.php:265 +#: libraries/messages.inc.php:480 libraries/mysql_charsets.lib.php:265 msgid "Lithuanian" msgstr "Lithuanian" -#: libraries/messages.inc.php:485 libraries/replication_gui.lib.php:302 +#: libraries/messages.inc.php:481 libraries/replication_gui.lib.php:302 #: server_privileges.php:729 msgid "Local" msgstr "লোকাল" -#: libraries/messages.inc.php:487 server_privileges.php:669 +#: libraries/messages.inc.php:483 server_privileges.php:669 msgid "Login Information" msgstr "Login Information" -#: libraries/messages.inc.php:490 libraries/navigation_header.inc.php:67 +#: libraries/messages.inc.php:486 libraries/navigation_header.inc.php:67 #: libraries/navigation_header.inc.php:70 #: libraries/navigation_header.inc.php:71 main.php:99 msgid "Log out" msgstr "লগ আউট" -#: libraries/messages.inc.php:497 server_status.php:440 +#: libraries/messages.inc.php:493 server_status.php:440 msgid "max. concurrent connections" msgstr "max. concurrent connections" -#: libraries/messages.inc.php:498 +#: libraries/messages.inc.php:494 msgid "Maximal length of created query" msgstr "Maximal length of created query" -#: libraries/messages.inc.php:500 main.php:282 +#: libraries/messages.inc.php:496 main.php:282 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -4200,7 +4200,7 @@ msgstr "" "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " "split strings correctly and it may result in unexpected results." -#: libraries/messages.inc.php:501 main.php:274 +#: libraries/messages.inc.php:497 main.php:274 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -4210,24 +4210,24 @@ msgstr "" "option is incompatible with phpMyAdmin and might cause some data to be " "corrupted!" -#: libraries/messages.inc.php:502 +#: libraries/messages.inc.php:498 msgid "MediaWiki Table" msgstr "" -#: libraries/messages.inc.php:503 transformation_overview.php:25 +#: libraries/messages.inc.php:499 transformation_overview.php:25 msgid "Available MIME types" msgstr "Available MIME types" -#: libraries/messages.inc.php:504 transformation_overview.php:43 +#: libraries/messages.inc.php:500 transformation_overview.php:43 msgid "Available transformations" msgstr "Available transformations" -#: libraries/messages.inc.php:505 +#: libraries/messages.inc.php:501 msgctxt "$strMIME_description" msgid "Description" msgstr "বর্ণনা" -#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:580 +#: libraries/messages.inc.php:503 libraries/tbl_properties.inc.php:580 #: transformation_overview.php:60 #, php-format msgid "" @@ -4237,7 +4237,7 @@ msgstr "" "No description is available for this transformation.
Please ask the " "author what %s does." -#: libraries/messages.inc.php:509 libraries/tbl_properties.inc.php:137 +#: libraries/messages.inc.php:505 libraries/tbl_properties.inc.php:137 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -4246,7 +4246,7 @@ msgstr "" "For a list of available transformation options and their MIME type " "transformations, click on %stransformation descriptions%s" -#: libraries/messages.inc.php:510 libraries/tbl_properties.inc.php:146 +#: libraries/messages.inc.php:506 libraries/tbl_properties.inc.php:146 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -4258,112 +4258,112 @@ msgstr "" "quote (\"'\") amongst those values, precede it with a backslash (for example " "'\\\\xyz' or 'a\\'b')." -#: libraries/messages.inc.php:511 libraries/tbl_properties.inc.php:145 +#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:145 msgid "Transformation options" msgstr "Transformation options" -#: libraries/messages.inc.php:513 transformation_overview.php:38 +#: libraries/messages.inc.php:509 transformation_overview.php:38 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "" "MIME types printed in italics do not have a separate transformation function" -#: libraries/messages.inc.php:515 tbl_indexes.php:162 +#: libraries/messages.inc.php:511 tbl_indexes.php:162 msgid "Modify an index" msgstr "Modify an index" -#: libraries/messages.inc.php:517 pmd_general.php:108 +#: libraries/messages.inc.php:513 pmd_general.php:108 msgid "Move Menu" msgstr "" -#: libraries/messages.inc.php:518 tbl_operations.php:276 +#: libraries/messages.inc.php:514 tbl_operations.php:276 msgid "Move table to (database.table):" msgstr "Move table to (database.table):" -#: libraries/messages.inc.php:519 tbl_move_copy.php:56 +#: libraries/messages.inc.php:515 tbl_move_copy.php:56 #, php-format msgid "Table %s has been moved to %s." msgstr "Table %s has been moved to %s." -#: libraries/messages.inc.php:520 tbl_move_copy.php:46 +#: libraries/messages.inc.php:516 tbl_move_copy.php:46 msgid "Can't move table to same one!" msgstr "Can't move table to same one!" -#: libraries/messages.inc.php:521 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:517 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 #: libraries/mysql_charsets.lib.php:332 libraries/mysql_charsets.lib.php:354 #: libraries/mysql_charsets.lib.php:365 msgid "multilingual" msgstr "বহুভাষী" -#: libraries/messages.inc.php:534 main.php:193 +#: libraries/messages.inc.php:530 main.php:193 msgid "MySQL charset" msgstr "MySQL charset" -#: libraries/messages.inc.php:535 main.php:211 +#: libraries/messages.inc.php:531 main.php:211 msgid "MySQL client version" msgstr "MySQL client version" -#: libraries/messages.inc.php:536 main.php:125 +#: libraries/messages.inc.php:532 main.php:125 msgid "MySQL connection collation" msgstr "MySQL connection collation" -#: libraries/messages.inc.php:537 main.php:346 +#: libraries/messages.inc.php:533 main.php:346 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: libraries/messages.inc.php:539 server_status.php:294 +#: libraries/messages.inc.php:535 server_status.php:294 msgid "Show processes" msgstr "প্রসেসসমূহ দেখান" -#: libraries/messages.inc.php:545 navigation.php:210 server_databases.php:371 +#: libraries/messages.inc.php:541 navigation.php:210 server_databases.php:371 #: server_synchronize.php:1191 msgid "No databases" msgstr "কোন ডাটাবেজ নাই" -#: libraries/messages.inc.php:546 server_databases.php:52 +#: libraries/messages.inc.php:542 server_databases.php:52 msgid "No databases selected." msgstr "No databases selected." -#: libraries/messages.inc.php:548 libraries/relation.lib.php:1173 +#: libraries/messages.inc.php:544 libraries/relation.lib.php:1173 msgid "no description" msgstr "কোন বর্ণনা নাই" -#: libraries/messages.inc.php:552 libraries/zip_extension.lib.php:26 +#: libraries/messages.inc.php:548 libraries/zip_extension.lib.php:26 msgid "No files found inside ZIP archive!" msgstr "No files found inside ZIP archive!" -#: libraries/messages.inc.php:555 tbl_indexes.php:91 +#: libraries/messages.inc.php:551 tbl_indexes.php:91 msgid "No index parts defined!" msgstr "No index parts defined!" -#: libraries/messages.inc.php:556 libraries/mult_submits.inc.php:435 +#: libraries/messages.inc.php:552 libraries/mult_submits.inc.php:435 #: tbl_replace.php:331 msgid "No change" msgstr "No change" -#: libraries/messages.inc.php:557 +#: libraries/messages.inc.php:553 #, fuzzy msgctxt "$strNoneDefault" msgid "None" msgstr "কোনটিই নয়" -#: libraries/messages.inc.php:560 libraries/plugin_interface.lib.php:312 +#: libraries/messages.inc.php:556 libraries/plugin_interface.lib.php:312 msgid "This format has no options" msgstr "This format has no options" -#: libraries/messages.inc.php:565 user_password.php:54 +#: libraries/messages.inc.php:561 user_password.php:54 msgid "You don't have sufficient privileges to be here right now!" msgstr "You don't have sufficient privileges to be here right now!" -#: libraries/messages.inc.php:566 tbl_row_action.php:29 +#: libraries/messages.inc.php:562 tbl_row_action.php:29 msgid "No rows selected" msgstr "No rows selected" -#: libraries/messages.inc.php:569 themes.php:32 +#: libraries/messages.inc.php:565 themes.php:32 #, php-format msgid "" "No themes support; please check your configuration and/or your themes in " @@ -4372,295 +4372,295 @@ msgstr "" "No themes support; please check your configuration and/or your themes in " "directory %s." -#: libraries/messages.inc.php:571 libraries/relation.lib.php:95 +#: libraries/messages.inc.php:567 libraries/relation.lib.php:95 msgid "not OK" msgstr "ঠিক নাই" -#: libraries/messages.inc.php:572 server_synchronize.php:400 +#: libraries/messages.inc.php:568 server_synchronize.php:400 #: server_synchronize.php:839 msgid "not present" msgstr "" -#: libraries/messages.inc.php:573 pdf_pages.php:36 pdf_pages.php:42 +#: libraries/messages.inc.php:569 pdf_pages.php:36 pdf_pages.php:42 #: pdf_pages.php:48 pdf_pages.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "%s table not found or not set in %s" -#: libraries/messages.inc.php:574 server_privileges.php:804 +#: libraries/messages.inc.php:570 server_privileges.php:804 #: server_privileges.php:2166 msgid "No user(s) found." msgstr "No user(s) found." -#: libraries/messages.inc.php:578 pmd_general.php:164 +#: libraries/messages.inc.php:574 pmd_general.php:164 #, fuzzy msgid "Number of tables" msgstr "Number of fields" -#: libraries/messages.inc.php:581 server_databases.php:117 +#: libraries/messages.inc.php:577 server_databases.php:117 #: server_status.php:260 setup/lib/messages.inc.php:117 msgid "Tables" msgstr "টেবিলসমূহ" -#: libraries/messages.inc.php:583 libraries/relation.lib.php:99 +#: libraries/messages.inc.php:579 libraries/relation.lib.php:99 #: pmd_general.php:340 msgid "OK" msgstr "ঠিক আছে" -#: libraries/messages.inc.php:585 +#: libraries/messages.inc.php:581 msgid "Open Document Text" msgstr "Open Document Text" -#: libraries/messages.inc.php:588 tbl_select.php:138 +#: libraries/messages.inc.php:584 tbl_select.php:138 msgid "Operator" msgstr "অপারেটর" -#: libraries/messages.inc.php:589 tbl_operations.php:662 +#: libraries/messages.inc.php:585 tbl_operations.php:662 msgid "Optimize" msgstr "" -#: libraries/messages.inc.php:602 libraries/tbl_properties.inc.php:755 +#: libraries/messages.inc.php:598 libraries/tbl_properties.inc.php:755 msgid "PARTITION definition" msgstr "" -#: libraries/messages.inc.php:603 tbl_structure.php:757 +#: libraries/messages.inc.php:599 tbl_structure.php:757 msgid "partitioned" msgstr "" -#: libraries/messages.inc.php:604 tbl_operations.php:649 +#: libraries/messages.inc.php:600 tbl_operations.php:649 #, fuzzy msgid "Partition maintenance" msgstr "Table maintenance" -#: libraries/messages.inc.php:605 tbl_operations.php:657 +#: libraries/messages.inc.php:601 tbl_operations.php:657 #, php-format msgid "Partition %s" msgstr "" -#: libraries/messages.inc.php:606 server_privileges.php:1212 +#: libraries/messages.inc.php:602 server_privileges.php:1212 #, php-format msgid "The password for %s was changed successfully." msgstr "The password for %s was changed successfully." -#: libraries/messages.inc.php:635 +#: libraries/messages.inc.php:631 #, php-format msgid "Schema of the \"%s\" database - Page %s" msgstr "Schema of the \"%s\" database - Page %s" -#: libraries/messages.inc.php:636 +#: libraries/messages.inc.php:632 #, php-format msgid "The \"%s\" table doesn't exist!" msgstr "The \"%s\" table doesn't exist!" -#: libraries/messages.inc.php:637 pdf_schema.php:1013 +#: libraries/messages.inc.php:633 pdf_schema.php:1013 msgid "No tables" msgstr "কোন টেবিল নাই" -#: libraries/messages.inc.php:638 pmd_pdf.php:63 +#: libraries/messages.inc.php:634 pmd_pdf.php:63 #, fuzzy msgid "Page has been created" msgstr "Table %s has been dropped" -#: libraries/messages.inc.php:639 pmd_pdf.php:65 +#: libraries/messages.inc.php:635 pmd_pdf.php:65 msgid "Page creation failed" msgstr "" -#: libraries/messages.inc.php:640 +#: libraries/messages.inc.php:636 msgid "PDF" msgstr "PDF" -#: libraries/messages.inc.php:641 +#: libraries/messages.inc.php:637 msgid "(Generates a report containing the data of a single table)" msgstr "(Generates a report containing the data of a single table)" -#: libraries/messages.inc.php:642 +#: libraries/messages.inc.php:638 msgid "Report title" msgstr "Report title" -#: libraries/messages.inc.php:643 server_status.php:389 server_status.php:434 +#: libraries/messages.inc.php:639 server_status.php:389 server_status.php:434 #: server_status.php:497 server_status.php:555 msgid "per hour" msgstr "per hour" -#: libraries/messages.inc.php:644 server_status.php:498 +#: libraries/messages.inc.php:640 server_status.php:498 msgid "per minute" msgstr "per minute" -#: libraries/messages.inc.php:645 server_status.php:499 +#: libraries/messages.inc.php:641 server_status.php:499 msgid "per second" msgstr "per second" -#: libraries/messages.inc.php:646 libraries/mysql_charsets.lib.php:271 +#: libraries/messages.inc.php:642 libraries/mysql_charsets.lib.php:271 msgid "Persian" msgstr "পারসিয়ান" -#: libraries/messages.inc.php:647 libraries/mysql_charsets.lib.php:250 +#: libraries/messages.inc.php:643 libraries/mysql_charsets.lib.php:250 msgid "phone book" msgstr "phone book" -#: libraries/messages.inc.php:648 +#: libraries/messages.inc.php:644 msgid "PHP array" msgstr "" -#: libraries/messages.inc.php:650 main.php:213 +#: libraries/messages.inc.php:646 main.php:213 #, fuzzy msgid "PHP extension" msgstr "PHP Version" -#: libraries/messages.inc.php:654 libraries/relation.lib.php:163 +#: libraries/messages.inc.php:650 libraries/relation.lib.php:163 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/messages.inc.php:655 libraries/relation.lib.php:159 +#: libraries/messages.inc.php:651 libraries/relation.lib.php:159 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/messages.inc.php:656 libraries/relation.lib.php:161 +#: libraries/messages.inc.php:652 libraries/relation.lib.php:161 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" -#: libraries/messages.inc.php:657 libraries/relation.lib.php:162 +#: libraries/messages.inc.php:653 libraries/relation.lib.php:162 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/messages.inc.php:658 libraries/relation.lib.php:164 +#: libraries/messages.inc.php:654 libraries/relation.lib.php:164 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/messages.inc.php:661 libraries/mysql_charsets.lib.php:274 +#: libraries/messages.inc.php:657 libraries/mysql_charsets.lib.php:274 msgid "Polish" msgstr "পোলিশ" -#: libraries/messages.inc.php:662 libraries/replication_gui.lib.php:67 +#: libraries/messages.inc.php:658 libraries/replication_gui.lib.php:67 #: server_synchronize.php:1163 #, fuzzy msgid "Port" msgstr "সাজাঁন" -#: libraries/messages.inc.php:667 tbl_indexes.php:67 +#: libraries/messages.inc.php:663 tbl_indexes.php:67 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "The name of the primary key must be \"PRIMARY\"!" -#: libraries/messages.inc.php:668 tbl_indexes.php:184 +#: libraries/messages.inc.php:664 tbl_indexes.php:184 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" "(\"PRIMARY\" must be the name of and only of a primary key!)" -#: libraries/messages.inc.php:669 libraries/mult_submits.inc.php:76 +#: libraries/messages.inc.php:665 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:474 msgid "Primary" msgstr "প্রাথমিক" -#: libraries/messages.inc.php:673 server_privileges.php:227 +#: libraries/messages.inc.php:669 server_privileges.php:227 msgid "Includes all privileges except GRANT." msgstr "Includes all privileges except GRANT." -#: libraries/messages.inc.php:674 server_privileges.php:153 +#: libraries/messages.inc.php:670 server_privileges.php:153 #: server_privileges.php:476 msgid "Allows altering the structure of existing tables." msgstr "Allows altering the structure of existing tables." -#: libraries/messages.inc.php:675 server_privileges.php:169 +#: libraries/messages.inc.php:671 server_privileges.php:169 #: server_privileges.php:482 msgid "Allows altering and dropping stored routines." msgstr "Allows altering and dropping stored routines." -#: libraries/messages.inc.php:676 server_privileges.php:145 +#: libraries/messages.inc.php:672 server_privileges.php:145 #: server_privileges.php:475 msgid "Allows creating new databases and tables." msgstr "Allows creating new databases and tables." -#: libraries/messages.inc.php:677 server_privileges.php:168 +#: libraries/messages.inc.php:673 server_privileges.php:168 #: server_privileges.php:481 msgid "Allows creating stored routines." msgstr "Allows creating stored routines." -#: libraries/messages.inc.php:678 server_privileges.php:475 +#: libraries/messages.inc.php:674 server_privileges.php:475 msgid "Allows creating new tables." msgstr "Allows creating new tables." -#: libraries/messages.inc.php:679 server_privileges.php:156 +#: libraries/messages.inc.php:675 server_privileges.php:156 #: server_privileges.php:479 msgid "Allows creating temporary tables." msgstr "Allows creating temporary tables." -#: libraries/messages.inc.php:680 server_privileges.php:170 +#: libraries/messages.inc.php:676 server_privileges.php:170 #: server_privileges.php:515 msgid "Allows creating, dropping and renaming user accounts." msgstr "Allows creating, dropping and renaming user accounts." -#: libraries/messages.inc.php:681 server_privileges.php:160 +#: libraries/messages.inc.php:677 server_privileges.php:160 #: server_privileges.php:164 server_privileges.php:487 #: server_privileges.php:491 msgid "Allows creating new views." msgstr "Allows creating new views." -#: libraries/messages.inc.php:682 server_privileges.php:144 +#: libraries/messages.inc.php:678 server_privileges.php:144 #: server_privileges.php:467 msgid "Allows deleting data." msgstr "Allows deleting data." -#: libraries/messages.inc.php:683 server_privileges.php:146 +#: libraries/messages.inc.php:679 server_privileges.php:146 #: server_privileges.php:478 msgid "Allows dropping databases and tables." msgstr "Allows dropping databases and tables." -#: libraries/messages.inc.php:684 server_privileges.php:478 +#: libraries/messages.inc.php:680 server_privileges.php:478 msgid "Allows dropping tables." msgstr "Allows dropping tables." -#: libraries/messages.inc.php:685 server_privileges.php:161 +#: libraries/messages.inc.php:681 server_privileges.php:161 #: server_privileges.php:495 msgid "Allows to set up events for the event scheduler" msgstr "" -#: libraries/messages.inc.php:686 server_privileges.php:171 +#: libraries/messages.inc.php:682 server_privileges.php:171 #: server_privileges.php:483 msgid "Allows executing stored routines." msgstr "Allows executing stored routines." -#: libraries/messages.inc.php:687 server_privileges.php:150 +#: libraries/messages.inc.php:683 server_privileges.php:150 #: server_privileges.php:470 msgid "Allows importing data from and exporting data into files." msgstr "Allows importing data from and exporting data into files." -#: libraries/messages.inc.php:688 server_privileges.php:501 +#: libraries/messages.inc.php:684 server_privileges.php:501 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Allows adding users and privileges without reloading the privilege tables." -#: libraries/messages.inc.php:689 server_privileges.php:152 +#: libraries/messages.inc.php:685 server_privileges.php:152 #: server_privileges.php:477 msgid "Allows creating and dropping indexes." msgstr "Allows creating and dropping indexes." -#: libraries/messages.inc.php:690 server_privileges.php:142 +#: libraries/messages.inc.php:686 server_privileges.php:142 #: server_privileges.php:403 server_privileges.php:465 msgid "Allows inserting and replacing data." msgstr "Allows inserting and replacing data." -#: libraries/messages.inc.php:691 server_privileges.php:157 +#: libraries/messages.inc.php:687 server_privileges.php:157 #: server_privileges.php:510 msgid "Allows locking tables for the current thread." msgstr "Allows locking tables for the current thread." -#: libraries/messages.inc.php:692 server_privileges.php:607 +#: libraries/messages.inc.php:688 server_privileges.php:607 #: server_privileges.php:609 msgid "Limits the number of new connections the user may open per hour." msgstr "Limits the number of new connections the user may open per hour." -#: libraries/messages.inc.php:693 server_privileges.php:595 +#: libraries/messages.inc.php:689 server_privileges.php:595 #: server_privileges.php:597 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Limits the number of queries the user may send to the server per hour." -#: libraries/messages.inc.php:694 server_privileges.php:601 +#: libraries/messages.inc.php:690 server_privileges.php:601 #: server_privileges.php:603 msgid "" "Limits the number of commands that change any table or database the user may " @@ -4669,57 +4669,57 @@ msgstr "" "Limits the number of commands that change any table or database the user may " "execute per hour." -#: libraries/messages.inc.php:695 server_privileges.php:613 +#: libraries/messages.inc.php:691 server_privileges.php:613 #: server_privileges.php:615 msgid "Limits the number of simultaneous connections the user may have." msgstr "Limits the number of simultaneous connections the user may have." -#: libraries/messages.inc.php:696 server_privileges.php:149 +#: libraries/messages.inc.php:692 server_privileges.php:149 #: server_privileges.php:505 msgid "Allows viewing processes of all users" msgstr "" -#: libraries/messages.inc.php:697 server_privileges.php:151 +#: libraries/messages.inc.php:693 server_privileges.php:151 #: server_privileges.php:409 server_privileges.php:511 msgid "Has no effect in this MySQL version." msgstr "Has no effect in this MySQL version." -#: libraries/messages.inc.php:698 server_privileges.php:147 +#: libraries/messages.inc.php:694 server_privileges.php:147 #: server_privileges.php:506 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Allows reloading server settings and flushing the server's caches." -#: libraries/messages.inc.php:699 server_privileges.php:159 +#: libraries/messages.inc.php:695 server_privileges.php:159 #: server_privileges.php:513 msgid "Allows the user to ask where the slaves / masters are." msgstr "Allows the user to ask where the slaves / masters are." -#: libraries/messages.inc.php:700 server_privileges.php:158 +#: libraries/messages.inc.php:696 server_privileges.php:158 #: server_privileges.php:514 msgid "Needed for the replication slaves." msgstr "Needed for the replication slaves." -#: libraries/messages.inc.php:701 server_privileges.php:141 +#: libraries/messages.inc.php:697 server_privileges.php:141 #: server_privileges.php:400 server_privileges.php:464 msgid "Allows reading data." msgstr "Allows reading data." -#: libraries/messages.inc.php:702 server_privileges.php:154 +#: libraries/messages.inc.php:698 server_privileges.php:154 #: server_privileges.php:508 msgid "Gives access to the complete list of databases." msgstr "Gives access to the complete list of databases." -#: libraries/messages.inc.php:703 server_privileges.php:165 +#: libraries/messages.inc.php:699 server_privileges.php:165 #: server_privileges.php:167 server_privileges.php:480 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Allows performing SHOW CREATE VIEW queries." -#: libraries/messages.inc.php:704 server_privileges.php:148 +#: libraries/messages.inc.php:700 server_privileges.php:148 #: server_privileges.php:507 msgid "Allows shutting down the server." msgstr "Allows shutting down the server." -#: libraries/messages.inc.php:705 server_privileges.php:155 +#: libraries/messages.inc.php:701 server_privileges.php:155 #: server_privileges.php:504 msgid "" "Allows connecting, even if maximum number of connections is reached; " @@ -4730,56 +4730,56 @@ msgstr "" "required for most administrative operations like setting global variables or " "killing threads of other users." -#: libraries/messages.inc.php:706 server_privileges.php:162 +#: libraries/messages.inc.php:702 server_privileges.php:162 #: server_privileges.php:496 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "Allows creating and dropping indexes." -#: libraries/messages.inc.php:707 server_privileges.php:143 +#: libraries/messages.inc.php:703 server_privileges.php:143 #: server_privileges.php:406 server_privileges.php:466 msgid "Allows changing data." msgstr "Allows changing data." -#: libraries/messages.inc.php:708 server_privileges.php:221 +#: libraries/messages.inc.php:704 server_privileges.php:221 msgid "No privileges." msgstr "No privileges." -#: libraries/messages.inc.php:710 server_privileges.php:1296 +#: libraries/messages.inc.php:706 server_privileges.php:1296 msgid "The privileges were reloaded successfully." msgstr "The privileges were reloaded successfully." -#: libraries/messages.inc.php:712 libraries/server_links.inc.php:80 +#: libraries/messages.inc.php:708 libraries/server_links.inc.php:80 msgid "Processes" msgstr "Processes" -#: libraries/messages.inc.php:714 main.php:187 +#: libraries/messages.inc.php:710 main.php:187 msgid "Protocol version" msgstr "Protocol version" -#: libraries/messages.inc.php:715 +#: libraries/messages.inc.php:711 msgid "Put fields names in the first row" msgstr "Put fields names in the first row" -#: libraries/messages.inc.php:720 server_synchronize.php:1003 +#: libraries/messages.inc.php:716 server_synchronize.php:1003 msgid "The following queries have been executed:" msgstr "" -#: libraries/messages.inc.php:721 server_status.php:251 +#: libraries/messages.inc.php:717 server_status.php:251 msgid "Query cache" msgstr "Query cache" -#: libraries/messages.inc.php:722 libraries/navigation_header.inc.php:80 +#: libraries/messages.inc.php:718 libraries/navigation_header.inc.php:80 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 setup/lib/messages.inc.php:122 msgid "Query window" msgstr "Query window" -#: libraries/messages.inc.php:725 querywindow.php:109 querywindow.php:217 +#: libraries/messages.inc.php:721 querywindow.php:109 querywindow.php:217 msgid "SQL history" msgstr "SQL history" -#: libraries/messages.inc.php:726 server_status.php:490 +#: libraries/messages.inc.php:722 server_status.php:490 #, php-format msgid "" "Query statistics: Since its startup, %s queries have been sent to the " @@ -4788,137 +4788,137 @@ msgstr "" "Query statistics: Since its startup, %s queries have been sent to the " "server." -#: libraries/messages.inc.php:728 server_status.php:554 +#: libraries/messages.inc.php:724 server_status.php:554 msgid "Query type" msgstr "Query type" -#: libraries/messages.inc.php:729 libraries/sql_query_form.lib.php:381 +#: libraries/messages.inc.php:725 libraries/sql_query_form.lib.php:381 msgid "Do not overwrite this query from outside the window" msgstr "Do not overwrite this query from outside the window" -#: libraries/messages.inc.php:732 tbl_operations.php:663 +#: libraries/messages.inc.php:728 tbl_operations.php:663 msgid "Rebuild" msgstr "" -#: libraries/messages.inc.php:733 server_status.php:394 +#: libraries/messages.inc.php:729 server_status.php:394 msgid "Received" msgstr "গৃহীত" -#: libraries/messages.inc.php:734 pmd_pdf.php:89 +#: libraries/messages.inc.php:730 pmd_pdf.php:89 msgid "recommended" msgstr "" -#: libraries/messages.inc.php:736 tbl_operations.php:702 +#: libraries/messages.inc.php:732 tbl_operations.php:702 msgid "Check referential integrity:" msgstr "Check referential integrity:" -#: libraries/messages.inc.php:740 pdf_schema.php:1032 pdf_schema.php:1141 +#: libraries/messages.inc.php:736 pdf_schema.php:1032 pdf_schema.php:1141 msgid "Relational schema" msgstr "Relational schema" -#: libraries/messages.inc.php:744 tbl_relation.php:399 +#: libraries/messages.inc.php:740 tbl_relation.php:399 msgid "Relations" msgstr "Relations" -#: libraries/messages.inc.php:745 tbl_structure.php:507 tbl_structure.php:509 +#: libraries/messages.inc.php:741 tbl_structure.php:507 tbl_structure.php:509 msgid "Relation view" msgstr "Relation view" -#: libraries/messages.inc.php:746 server_privileges.php:1246 +#: libraries/messages.inc.php:742 server_privileges.php:1246 msgid "Reloading the privileges" msgstr "Reloading the privileges" -#: libraries/messages.inc.php:747 navigation.php:66 navigation.php:67 +#: libraries/messages.inc.php:743 navigation.php:66 navigation.php:67 #: navigation.php:70 msgid "Reload navigation frame" msgstr "" -#: libraries/messages.inc.php:748 pmd_general.php:80 +#: libraries/messages.inc.php:744 pmd_general.php:80 msgid "Reload" msgstr "" -#: libraries/messages.inc.php:749 libraries/server_synchronize.lib.php:1345 +#: libraries/messages.inc.php:745 libraries/server_synchronize.lib.php:1345 #: libraries/server_synchronize.lib.php:1371 msgid "Remote server" msgstr "" -#: libraries/messages.inc.php:750 +#: libraries/messages.inc.php:746 msgid "Remove CRLF characters within fields" msgstr "" -#: libraries/messages.inc.php:751 tbl_operations.php:676 +#: libraries/messages.inc.php:747 tbl_operations.php:676 msgid "Remove partitioning" msgstr "" -#: libraries/messages.inc.php:752 server_privileges.php:1575 +#: libraries/messages.inc.php:748 server_privileges.php:1575 msgid "Remove selected users" msgstr "Remove selected users" -#: libraries/messages.inc.php:755 tbl_operations.php:338 +#: libraries/messages.inc.php:751 tbl_operations.php:338 msgid "Rename table to" msgstr "টেবিল রিনেম করুন" -#: libraries/messages.inc.php:756 view_operations.php:93 +#: libraries/messages.inc.php:752 view_operations.php:93 #, fuzzy msgid "Rename view to" msgstr "টেবিল রিনেম করুন" -#: libraries/messages.inc.php:757 tbl_operations.php:664 +#: libraries/messages.inc.php:753 tbl_operations.php:664 #, fuzzy msgid "Repair" msgstr "টেবিল রিপেয়ার করুন" -#: libraries/messages.inc.php:759 +#: libraries/messages.inc.php:755 msgid "Replace NULL by" msgstr "Replace NULL by" -#: libraries/messages.inc.php:760 +#: libraries/messages.inc.php:756 msgid "Replace table data with file" msgstr "Replace table data with file" -#: libraries/messages.inc.php:761 server_replication.php:228 +#: libraries/messages.inc.php:757 server_replication.php:228 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: libraries/messages.inc.php:762 libraries/replication_gui.lib.php:236 +#: libraries/messages.inc.php:758 libraries/replication_gui.lib.php:236 #: server_replication.php:194 msgid "Add slave replication user" msgstr "" -#: libraries/messages.inc.php:763 server_replication.php:74 +#: libraries/messages.inc.php:759 server_replication.php:74 #, php-format msgid "Master server changed succesfully to %s" msgstr "" -#: libraries/messages.inc.php:764 server_replication.php:182 +#: libraries/messages.inc.php:760 server_replication.php:182 msgid "This server is configured as master in a replication process." msgstr "" -#: libraries/messages.inc.php:765 server_replication.php:322 +#: libraries/messages.inc.php:761 server_replication.php:322 msgid "Control slave:" msgstr "" -#: libraries/messages.inc.php:766 server_replication.php:65 +#: libraries/messages.inc.php:762 server_replication.php:65 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: libraries/messages.inc.php:767 server_replication.php:58 +#: libraries/messages.inc.php:763 server_replication.php:58 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: libraries/messages.inc.php:768 server_replication.php:221 +#: libraries/messages.inc.php:764 server_replication.php:221 msgid "Replicate all databases; Ignore:" msgstr "" -#: libraries/messages.inc.php:769 server_replication.php:222 +#: libraries/messages.inc.php:765 server_replication.php:222 msgid "Ignore all databases; Replicate:" msgstr "" -#: libraries/messages.inc.php:770 server_replication.php:218 +#: libraries/messages.inc.php:766 server_replication.php:218 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -4927,122 +4927,122 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: libraries/messages.inc.php:771 server_replication.php:217 +#: libraries/messages.inc.php:767 server_replication.php:217 msgid "Master configuration" msgstr "" -#: libraries/messages.inc.php:772 server_replication.php:181 +#: libraries/messages.inc.php:768 server_replication.php:181 #: server_replication.php:209 msgid "Master replication" msgstr "" -#: libraries/messages.inc.php:774 server_replication.php:230 +#: libraries/messages.inc.php:770 server_replication.php:230 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: libraries/messages.inc.php:775 server_replication.php:225 +#: libraries/messages.inc.php:771 server_replication.php:225 #, fuzzy msgid "Please select databases:" msgstr "Please select a database" -#: libraries/messages.inc.php:776 server_replication.php:210 +#: libraries/messages.inc.php:772 server_replication.php:210 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:188 +#: libraries/messages.inc.php:773 libraries/replication_gui.lib.php:188 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/messages.inc.php:778 server_replication.php:187 +#: libraries/messages.inc.php:774 server_replication.php:187 msgid "Show connected slaves" msgstr "" -#: libraries/messages.inc.php:779 libraries/messages.inc.php:885 +#: libraries/messages.inc.php:775 libraries/messages.inc.php:881 #: server_replication.php:184 server_status.php:281 #, fuzzy msgid "Show master status" msgstr "Show slave status" -#: libraries/messages.inc.php:780 server_replication.php:334 +#: libraries/messages.inc.php:776 server_replication.php:334 msgid "Skipping error(s) might lead into unsynchronized master and slave!" msgstr "" -#: libraries/messages.inc.php:781 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:51 #: server_replication.php:347 msgid "Change or reconfigure master server" msgstr "" -#: libraries/messages.inc.php:782 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:778 libraries/replication_gui.lib.php:51 msgid "Slave configuration" msgstr "" -#: libraries/messages.inc.php:783 server_replication.php:305 +#: libraries/messages.inc.php:779 server_replication.php:305 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: libraries/messages.inc.php:784 server_replication.php:332 +#: libraries/messages.inc.php:780 server_replication.php:332 msgid "Error management:" msgstr "" -#: libraries/messages.inc.php:785 server_replication.php:328 +#: libraries/messages.inc.php:781 server_replication.php:328 #, php-format msgid "IO Thread %s only" msgstr "" -#: libraries/messages.inc.php:786 server_replication.php:296 +#: libraries/messages.inc.php:782 server_replication.php:296 msgid "Slave IO Thread not running!" msgstr "" -#: libraries/messages.inc.php:787 server_replication.php:355 +#: libraries/messages.inc.php:783 server_replication.php:355 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/messages.inc.php:788 server_replication.php:326 +#: libraries/messages.inc.php:784 server_replication.php:326 msgid "Reset slave" msgstr "" -#: libraries/messages.inc.php:789 server_replication.php:308 +#: libraries/messages.inc.php:785 server_replication.php:308 msgid "See slave status table" msgstr "" -#: libraries/messages.inc.php:790 server_replication.php:336 +#: libraries/messages.inc.php:786 server_replication.php:336 msgid "Skip current error" msgstr "" -#: libraries/messages.inc.php:791 server_replication.php:340 +#: libraries/messages.inc.php:787 server_replication.php:340 msgid "errors." msgstr "" -#: libraries/messages.inc.php:792 server_replication.php:337 +#: libraries/messages.inc.php:788 server_replication.php:337 msgid "Skip next" msgstr "" -#: libraries/messages.inc.php:793 server_replication.php:248 +#: libraries/messages.inc.php:789 server_replication.php:248 msgid "Slave replication" msgstr "" -#: libraries/messages.inc.php:794 server_replication.php:293 +#: libraries/messages.inc.php:790 server_replication.php:293 msgid "Slave SQL Thread not running!" msgstr "" -#: libraries/messages.inc.php:795 server_replication.php:327 +#: libraries/messages.inc.php:791 server_replication.php:327 #, php-format msgid "SQL Thread %s only" msgstr "" -#: libraries/messages.inc.php:796 +#: libraries/messages.inc.php:792 #, php-format msgid "" "This MySQL server works as %s in replication process. For further " @@ -5050,162 +5050,162 @@ msgid "" "\"#replication\">replication section." msgstr "" -#: libraries/messages.inc.php:797 +#: libraries/messages.inc.php:793 #, fuzzy msgid "Master status" msgstr "Show slave status" -#: libraries/messages.inc.php:798 server_status.php:721 +#: libraries/messages.inc.php:794 server_status.php:721 #, fuzzy msgid "Replication status" msgstr "Replication" -#: libraries/messages.inc.php:799 +#: libraries/messages.inc.php:795 #, fuzzy msgid "Slave status" msgstr "Show slave status" -#: libraries/messages.inc.php:800 server_replication.php:311 +#: libraries/messages.inc.php:796 server_replication.php:311 msgid "Synchronize databases with master" msgstr "" -#: libraries/messages.inc.php:801 server_replication.php:71 +#: libraries/messages.inc.php:797 server_replication.php:71 msgid "Unable to change master" msgstr "" -#: libraries/messages.inc.php:802 server_replication.php:51 +#: libraries/messages.inc.php:798 server_replication.php:51 msgid "Unknown error" msgstr "" -#: libraries/messages.inc.php:803 main.php:163 pdf_pages.php:344 +#: libraries/messages.inc.php:799 main.php:163 pdf_pages.php:344 #: setup/lib/FormDisplay.tpl.php:216 tbl_change.php:1175 msgid "Reset" msgstr "রিসেট করুন" -#: libraries/messages.inc.php:804 server_privileges.php:591 +#: libraries/messages.inc.php:800 server_privileges.php:591 msgid "Resource limits" msgstr "Resource limits" -#: libraries/messages.inc.php:805 tbl_change.php:1209 +#: libraries/messages.inc.php:801 tbl_change.php:1209 #, php-format msgid "Restart insertion with %s rows" msgstr "" -#: libraries/messages.inc.php:807 server_privileges.php:1578 +#: libraries/messages.inc.php:803 server_privileges.php:1578 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Revoke all active privileges from the users and delete them afterwards." -#: libraries/messages.inc.php:808 server_privileges.php:1176 +#: libraries/messages.inc.php:804 server_privileges.php:1176 #, php-format msgid "You have revoked the privileges for %s" msgstr "You have revoked the privileges for %s" -#: libraries/messages.inc.php:809 server_privileges.php:1333 +#: libraries/messages.inc.php:805 server_privileges.php:1333 msgid "Revoke" msgstr "Revoke" -#: libraries/messages.inc.php:810 libraries/mysql_charsets.lib.php:280 +#: libraries/messages.inc.php:806 libraries/mysql_charsets.lib.php:280 msgid "Romanian" msgstr "রোমানিয়ান" -#: libraries/messages.inc.php:813 tbl_printview.php:404 tbl_structure.php:786 +#: libraries/messages.inc.php:809 tbl_printview.php:404 tbl_structure.php:786 msgid "Row length" msgstr "সাড়ির দৈর্ঘ্য" -#: libraries/messages.inc.php:815 tbl_printview.php:414 tbl_structure.php:794 +#: libraries/messages.inc.php:811 tbl_printview.php:414 tbl_structure.php:794 msgid " Row size " msgstr " সাড়ির আকার" -#: libraries/messages.inc.php:821 tbl_printview.php:366 tbl_structure.php:726 +#: libraries/messages.inc.php:817 tbl_printview.php:366 tbl_structure.php:726 msgid "Row Statistics" msgstr "Row Statistics" -#: libraries/messages.inc.php:822 +#: libraries/messages.inc.php:818 #, php-format msgid "running on %s" msgstr "running on %s" -#: libraries/messages.inc.php:824 libraries/sql_query_form.lib.php:223 +#: libraries/messages.inc.php:820 libraries/sql_query_form.lib.php:223 #, php-format msgid "Run SQL query/queries on server %s" msgstr "Run SQL query/queries on server %s" -#: libraries/messages.inc.php:825 libraries/sql_query_form.lib.php:240 +#: libraries/messages.inc.php:821 libraries/sql_query_form.lib.php:240 #: libraries/sql_query_form.lib.php:265 #, php-format msgid "Run SQL query/queries on database %s" msgstr "Run SQL query/queries on database %s" -#: libraries/messages.inc.php:826 libraries/mysql_charsets.lib.php:337 +#: libraries/messages.inc.php:822 libraries/mysql_charsets.lib.php:337 msgid "Russian" msgstr "রাশিয়ান" -#: libraries/messages.inc.php:829 pmd_general.php:68 +#: libraries/messages.inc.php:825 pmd_general.php:68 msgid "Save position" msgstr "" -#: libraries/messages.inc.php:830 libraries/tbl_properties.inc.php:776 +#: libraries/messages.inc.php:826 libraries/tbl_properties.inc.php:776 #: pdf_pages.php:484 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:214 setup/lib/FormDisplay.tpl.php:215 #: tbl_change.php:1126 tbl_indexes.php:248 tbl_relation.php:566 msgid "Save" msgstr "সেভ করুন" -#: libraries/messages.inc.php:831 +#: libraries/messages.inc.php:827 msgid "The scale factor is too small to fit the schema on one page" msgstr "The scale factor is too small to fit the schema on one page" -#: libraries/messages.inc.php:843 main.php:298 +#: libraries/messages.inc.php:839 main.php:298 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "The configuration file now needs a secret passphrase (blowfish_secret)." -#: libraries/messages.inc.php:844 navigation.php:353 navigation.php:516 +#: libraries/messages.inc.php:840 navigation.php:353 navigation.php:516 msgid "Please select a database" msgstr "Please select a database" -#: libraries/messages.inc.php:846 server_binlog.php:120 +#: libraries/messages.inc.php:842 server_binlog.php:120 msgid "Select binary log to view" msgstr "Select binary log to view" -#: libraries/messages.inc.php:847 tbl_select.php:270 +#: libraries/messages.inc.php:843 tbl_select.php:270 msgid "Select fields (at least one):" msgstr "Select fields (at least one):" -#: libraries/messages.inc.php:851 pdf_pages.php:320 +#: libraries/messages.inc.php:847 pdf_pages.php:320 msgid "Select Tables" msgstr "টেবিল সিলেক্ট করুন" -#: libraries/messages.inc.php:853 server_status.php:404 +#: libraries/messages.inc.php:849 server_status.php:404 msgid "Sent" msgstr "Sent" -#: libraries/messages.inc.php:857 libraries/select_server.lib.php:45 +#: libraries/messages.inc.php:853 libraries/select_server.lib.php:45 #: setup/frames/index.inc.php:97 setup/lib/messages.inc.php:115 msgid "Servers" msgstr "সার্ভারসমূহ" -#: libraries/messages.inc.php:858 server_status.php:255 +#: libraries/messages.inc.php:854 server_status.php:255 msgid "Delayed inserts" msgstr "Delayed inserts" -#: libraries/messages.inc.php:859 server_status.php:46 +#: libraries/messages.inc.php:855 server_status.php:46 msgid "Runtime Information" msgstr "Runtime Information" -#: libraries/messages.inc.php:860 server_status.php:350 +#: libraries/messages.inc.php:856 server_status.php:350 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "This MySQL server has been running for %s. It started up on %s." -#: libraries/messages.inc.php:861 libraries/server_links.inc.php:53 +#: libraries/messages.inc.php:857 libraries/server_links.inc.php:53 #: server_engines.php:112 server_engines.php:116 server_status.php:304 #: test/theme.php:105 msgid "Variables" msgstr "চলকসমূহ" -#: libraries/messages.inc.php:862 server_status.php:383 +#: libraries/messages.inc.php:858 server_status.php:383 msgid "" "Server traffic: These tables show the network traffic statistics of " "this MySQL server since its startup." @@ -5213,11 +5213,11 @@ msgstr "" "Server traffic: These tables show the network traffic statistics of " "this MySQL server since its startup." -#: libraries/messages.inc.php:863 server_variables.php:35 +#: libraries/messages.inc.php:859 server_variables.php:35 msgid "Server variables and settings" msgstr "Server variables and settings" -#: libraries/messages.inc.php:865 main.php:290 +#: libraries/messages.inc.php:861 main.php:290 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -5225,17 +5225,17 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: libraries/messages.inc.php:866 +#: libraries/messages.inc.php:862 msgid "" "Cannot start session without errors, please check errors given in your PHP " "and/or webserver log file and configure your PHP installation properly." msgstr "" -#: libraries/messages.inc.php:867 server_variables.php:55 +#: libraries/messages.inc.php:863 server_variables.php:55 msgid "Session value" msgstr "Session value" -#: libraries/messages.inc.php:868 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:864 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 " @@ -5247,45 +5247,45 @@ msgstr "" "a single quote (\"'\") amongst those values, precede it with a backslash " "(for example '\\\\xyz' or 'a\\'b')." -#: libraries/messages.inc.php:876 server_binlog.php:192 server_binlog.php:195 +#: libraries/messages.inc.php:872 server_binlog.php:192 server_binlog.php:195 #: server_processlist.php:49 server_processlist.php:51 msgid "Show Full Queries" msgstr "Show Full Queries" -#: libraries/messages.inc.php:878 pmd_general.php:64 +#: libraries/messages.inc.php:874 pmd_general.php:64 msgid "Show/Hide left menu" msgstr "" -#: libraries/messages.inc.php:880 sql.php:513 +#: libraries/messages.inc.php:876 sql.php:513 msgid "Showing as PHP code" msgstr "" -#: libraries/messages.inc.php:882 sql.php:516 tbl_replace.php:360 +#: libraries/messages.inc.php:878 sql.php:516 tbl_replace.php:360 #, fuzzy msgid "Showing SQL query" msgstr "Show Full Queries" -#: libraries/messages.inc.php:883 tbl_change.php:1132 +#: libraries/messages.inc.php:879 tbl_change.php:1132 msgid "Show insert query" msgstr "" -#: libraries/messages.inc.php:886 server_status.php:273 +#: libraries/messages.inc.php:882 server_status.php:273 msgid "Show open tables" msgstr "Show open tables" -#: libraries/messages.inc.php:887 main.php:219 +#: libraries/messages.inc.php:883 main.php:219 msgid "Show PHP information" msgstr "Show PHP information" -#: libraries/messages.inc.php:889 server_status.php:278 +#: libraries/messages.inc.php:885 server_status.php:278 msgid "Show slave hosts" msgstr "Show slave hosts" -#: libraries/messages.inc.php:890 server_status.php:284 +#: libraries/messages.inc.php:886 server_status.php:284 msgid "Show slave status" msgstr "Show slave status" -#: libraries/messages.inc.php:891 +#: libraries/messages.inc.php:887 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -5295,11 +5295,11 @@ msgstr "" "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." -#: libraries/messages.inc.php:892 +#: libraries/messages.inc.php:888 msgid "The number of transactions that used the temporary binary log cache." msgstr "The number of transactions that used the temporary binary log cache." -#: libraries/messages.inc.php:893 +#: libraries/messages.inc.php:889 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -5311,11 +5311,11 @@ msgstr "" "to increase the tmp_table_size value to cause temporary tables to be memory-" "based instead of disk-based." -#: libraries/messages.inc.php:894 +#: libraries/messages.inc.php:890 msgid "How many temporary files mysqld has created." msgstr "How many temporary files mysqld has created." -#: libraries/messages.inc.php:895 +#: libraries/messages.inc.php:891 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -5323,7 +5323,7 @@ msgstr "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." -#: libraries/messages.inc.php:896 +#: libraries/messages.inc.php:892 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -5331,7 +5331,7 @@ msgstr "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." -#: libraries/messages.inc.php:897 +#: libraries/messages.inc.php:893 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -5339,23 +5339,23 @@ msgstr "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." -#: libraries/messages.inc.php:898 +#: libraries/messages.inc.php:894 msgid "The number of INSERT DELAYED rows written." msgstr "The number of INSERT DELAYED rows written." -#: libraries/messages.inc.php:899 +#: libraries/messages.inc.php:895 msgid "The number of executed FLUSH statements." msgstr "The number of executed FLUSH statements." -#: libraries/messages.inc.php:900 +#: libraries/messages.inc.php:896 msgid "The number of internal COMMIT statements." msgstr "The number of internal COMMIT statements." -#: libraries/messages.inc.php:901 +#: libraries/messages.inc.php:897 msgid "The number of times a row was deleted from a table." msgstr "The number of times a row was deleted from a table." -#: libraries/messages.inc.php:902 +#: libraries/messages.inc.php:898 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -5365,96 +5365,96 @@ msgstr "" "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." +#: libraries/messages.inc.php:899 +msgid "" +"The number of times the first entry was read from an index. If this is high, " +"it suggests that the server is doing a lot of full index scans; for example, " +"SELECT col1 FROM foo, assuming that col1 is indexed." +msgstr "" +"The number of times the first entry was read from an index. If this is high, " +"it suggests that the server is doing a lot of full index scans; for example, " +"SELECT col1 FROM foo, assuming that col1 is indexed." + +#: libraries/messages.inc.php:900 +msgid "" +"The number of requests to read a row based on a key. If this is high, it is " +"a good indication that your queries and tables are properly indexed." +msgstr "" +"The number of requests to read a row based on a key. If this is high, it is " +"a good indication that your queries and tables are properly indexed." + +#: libraries/messages.inc.php:901 +msgid "" +"The number of requests to read the next row in key order. This is " +"incremented if you are querying an index column with a range constraint or " +"if you are doing an index scan." +msgstr "" +"The number of requests to read the next row in key order. This is " +"incremented if you are querying an index column with a range constraint or " +"if you are doing an index scan." + +#: libraries/messages.inc.php:902 +msgid "" +"The number of requests to read the previous row in key order. This read " +"method is mainly used to optimize ORDER BY ... DESC." +msgstr "" +"The number of requests to read the previous row in key order. This read " +"method is mainly used to optimize ORDER BY ... DESC." + #: libraries/messages.inc.php:903 msgid "" -"The number of times the first entry was read from an index. If this is high, " -"it suggests that the server is doing a lot of full index scans; for example, " -"SELECT col1 FROM foo, assuming that col1 is indexed." +"The number of requests to read a row based on a fixed position. This is high " +"if you are doing a lot of queries that require sorting of the result. You " +"probably have a lot of queries that require MySQL to scan whole tables or " +"you have joins that don't use keys properly." msgstr "" -"The number of times the first entry was read from an index. If this is high, " -"it suggests that the server is doing a lot of full index scans; for example, " -"SELECT col1 FROM foo, assuming that col1 is indexed." +"The number of requests to read a row based on a fixed position. This is high " +"if you are doing a lot of queries that require sorting of the result. You " +"probably have a lot of queries that require MySQL to scan whole tables or " +"you have joins that don't use keys properly." #: libraries/messages.inc.php:904 msgid "" -"The number of requests to read a row based on a key. If this is high, it is " -"a good indication that your queries and tables are properly indexed." +"The number of requests to read the next row in the data file. This is high " +"if you are doing a lot of table scans. Generally this suggests that your " +"tables are not properly indexed or that your queries are not written to take " +"advantage of the indexes you have." msgstr "" -"The number of requests to read a row based on a key. If this is high, it is " -"a good indication that your queries and tables are properly indexed." +"The number of requests to read the next row in the data file. This is high " +"if you are doing a lot of table scans. Generally this suggests that your " +"tables are not properly indexed or that your queries are not written to take " +"advantage of the indexes you have." #: libraries/messages.inc.php:905 -msgid "" -"The number of requests to read the next row in key order. This is " -"incremented if you are querying an index column with a range constraint or " -"if you are doing an index scan." -msgstr "" -"The number of requests to read the next row in key order. This is " -"incremented if you are querying an index column with a range constraint or " -"if you are doing an index scan." - -#: libraries/messages.inc.php:906 -msgid "" -"The number of requests to read the previous row in key order. This read " -"method is mainly used to optimize ORDER BY ... DESC." -msgstr "" -"The number of requests to read the previous row in key order. This read " -"method is mainly used to optimize ORDER BY ... DESC." - -#: libraries/messages.inc.php:907 -msgid "" -"The number of requests to read a row based on a fixed position. This is high " -"if you are doing a lot of queries that require sorting of the result. You " -"probably have a lot of queries that require MySQL to scan whole tables or " -"you have joins that don't use keys properly." -msgstr "" -"The number of requests to read a row based on a fixed position. This is high " -"if you are doing a lot of queries that require sorting of the result. You " -"probably have a lot of queries that require MySQL to scan whole tables or " -"you have joins that don't use keys properly." - -#: libraries/messages.inc.php:908 -msgid "" -"The number of requests to read the next row in the data file. This is high " -"if you are doing a lot of table scans. Generally this suggests that your " -"tables are not properly indexed or that your queries are not written to take " -"advantage of the indexes you have." -msgstr "" -"The number of requests to read the next row in the data file. This is high " -"if you are doing a lot of table scans. Generally this suggests that your " -"tables are not properly indexed or that your queries are not written to take " -"advantage of the indexes you have." - -#: libraries/messages.inc.php:909 msgid "The number of internal ROLLBACK statements." msgstr "The number of internal ROLLBACK statements." -#: libraries/messages.inc.php:910 +#: libraries/messages.inc.php:906 msgid "The number of requests to update a row in a table." msgstr "The number of requests to update a row in a table." -#: libraries/messages.inc.php:911 +#: libraries/messages.inc.php:907 msgid "The number of requests to insert a row in a table." msgstr "The number of requests to insert a row in a table." -#: libraries/messages.inc.php:912 +#: libraries/messages.inc.php:908 msgid "The number of pages containing data (dirty or clean)." msgstr "The number of pages containing data (dirty or clean)." -#: libraries/messages.inc.php:913 +#: libraries/messages.inc.php:909 msgid "The number of pages currently dirty." msgstr "The number of pages currently dirty." -#: libraries/messages.inc.php:914 +#: libraries/messages.inc.php:910 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" "The number of buffer pool pages that have been requested to be flushed." -#: libraries/messages.inc.php:915 +#: libraries/messages.inc.php:911 msgid "The number of free pages." msgstr "The number of free pages." -#: libraries/messages.inc.php:916 +#: libraries/messages.inc.php:912 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -5464,7 +5464,7 @@ msgstr "" "being read or written or that can't be flushed or removed for some other " "reason." -#: libraries/messages.inc.php:917 +#: libraries/messages.inc.php:913 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -5476,11 +5476,11 @@ msgstr "" "be calculated as Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: libraries/messages.inc.php:918 +#: libraries/messages.inc.php:914 msgid "Total size of buffer pool, in pages." msgstr "Total size of buffer pool, in pages." -#: libraries/messages.inc.php:919 +#: libraries/messages.inc.php:915 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -5488,7 +5488,7 @@ msgstr "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." -#: libraries/messages.inc.php:920 +#: libraries/messages.inc.php:916 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -5496,11 +5496,11 @@ msgstr "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." -#: libraries/messages.inc.php:921 +#: libraries/messages.inc.php:917 msgid "The number of logical read requests InnoDB has done." msgstr "The number of logical read requests InnoDB has done." -#: libraries/messages.inc.php:922 +#: libraries/messages.inc.php:918 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -5508,7 +5508,7 @@ msgstr "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." -#: libraries/messages.inc.php:923 +#: libraries/messages.inc.php:919 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -5522,55 +5522,55 @@ msgstr "" "counter counts instances of these waits. If the buffer pool size was set " "properly, this value should be small." -#: libraries/messages.inc.php:924 +#: libraries/messages.inc.php:920 msgid "The number writes done to the InnoDB buffer pool." msgstr "The number writes done to the InnoDB buffer pool." -#: libraries/messages.inc.php:925 +#: libraries/messages.inc.php:921 msgid "The number of fsync() operations so far." msgstr "The number of fsync() operations so far." -#: libraries/messages.inc.php:926 +#: libraries/messages.inc.php:922 msgid "The current number of pending fsync() operations." msgstr "The current number of pending fsync() operations." -#: libraries/messages.inc.php:927 +#: libraries/messages.inc.php:923 msgid "The current number of pending reads." msgstr "The current number of pending reads." -#: libraries/messages.inc.php:928 +#: libraries/messages.inc.php:924 msgid "The current number of pending writes." msgstr "The current number of pending writes." -#: libraries/messages.inc.php:929 +#: libraries/messages.inc.php:925 msgid "The amount of data read so far, in bytes." msgstr "The amount of data read so far, in bytes." -#: libraries/messages.inc.php:930 +#: libraries/messages.inc.php:926 msgid "The total number of data reads." msgstr "The total number of data reads." -#: libraries/messages.inc.php:931 +#: libraries/messages.inc.php:927 msgid "The total number of data writes." msgstr "The total number of data writes." -#: libraries/messages.inc.php:932 +#: libraries/messages.inc.php:928 msgid "The amount of data written so far, in bytes." msgstr "The amount of data written so far, in bytes." -#: libraries/messages.inc.php:933 +#: libraries/messages.inc.php:929 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "The number of doublewrite writes that have been performed and the number of " "pages that have been written for this purpose." -#: libraries/messages.inc.php:934 +#: libraries/messages.inc.php:930 msgid "The number of doublewrite operations that have been performed." msgstr "" "The number of doublewrite writes that have been performed and the number of " "pages that have been written for this purpose." -#: libraries/messages.inc.php:935 +#: libraries/messages.inc.php:931 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -5578,35 +5578,35 @@ msgstr "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." -#: libraries/messages.inc.php:936 +#: libraries/messages.inc.php:932 msgid "The number of log write requests." msgstr "The number of log write requests." -#: libraries/messages.inc.php:937 +#: libraries/messages.inc.php:933 msgid "The number of physical writes to the log file." msgstr "The number of physical writes to the log file." -#: libraries/messages.inc.php:938 +#: libraries/messages.inc.php:934 msgid "The number of fsync() writes done to the log file." msgstr "The number of fsyncs writes done to the log file." -#: libraries/messages.inc.php:939 +#: libraries/messages.inc.php:935 msgid "The number of pending log file fsyncs." msgstr "The number of pending log file fsyncs." -#: libraries/messages.inc.php:940 +#: libraries/messages.inc.php:936 msgid "Pending log file writes." msgstr "Pending log file writes." -#: libraries/messages.inc.php:941 +#: libraries/messages.inc.php:937 msgid "The number of bytes written to the log file." msgstr "The number of bytes written to the log file." -#: libraries/messages.inc.php:942 +#: libraries/messages.inc.php:938 msgid "The number of pages created." msgstr "The number of pages created." -#: libraries/messages.inc.php:943 +#: libraries/messages.inc.php:939 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -5614,51 +5614,51 @@ msgstr "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." -#: libraries/messages.inc.php:944 +#: libraries/messages.inc.php:940 msgid "The number of pages read." msgstr "The number of pages read." -#: libraries/messages.inc.php:945 +#: libraries/messages.inc.php:941 msgid "The number of pages written." msgstr "The number of pages written." -#: libraries/messages.inc.php:946 +#: libraries/messages.inc.php:942 msgid "The number of row locks currently being waited for." msgstr "The number of row locks currently being waited for." -#: libraries/messages.inc.php:947 +#: libraries/messages.inc.php:943 msgid "The average time to acquire a row lock, in milliseconds." msgstr "The average time to acquire a row lock, in milliseconds." -#: libraries/messages.inc.php:948 +#: libraries/messages.inc.php:944 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "The total time spent in acquiring row locks, in milliseconds." -#: libraries/messages.inc.php:949 +#: libraries/messages.inc.php:945 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "The maximum time to acquire a row lock, in milliseconds." -#: libraries/messages.inc.php:950 +#: libraries/messages.inc.php:946 msgid "The number of times a row lock had to be waited for." msgstr "The number of times a row lock had to be waited for." -#: libraries/messages.inc.php:951 +#: libraries/messages.inc.php:947 msgid "The number of rows deleted from InnoDB tables." msgstr "The number of rows deleted from InnoDB tables." -#: libraries/messages.inc.php:952 +#: libraries/messages.inc.php:948 msgid "The number of rows inserted in InnoDB tables." msgstr "The number of rows inserted in InnoDB tables." -#: libraries/messages.inc.php:953 +#: libraries/messages.inc.php:949 msgid "The number of rows read from InnoDB tables." msgstr "The number of rows read from InnoDB tables." -#: libraries/messages.inc.php:954 +#: libraries/messages.inc.php:950 msgid "The number of rows updated in InnoDB tables." msgstr "The number of rows updated in InnoDB tables." -#: libraries/messages.inc.php:955 +#: libraries/messages.inc.php:951 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -5666,7 +5666,7 @@ msgstr "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." -#: libraries/messages.inc.php:956 +#: libraries/messages.inc.php:952 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -5674,7 +5674,7 @@ msgstr "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." -#: libraries/messages.inc.php:957 +#: libraries/messages.inc.php:953 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -5684,11 +5684,11 @@ msgstr "" "that indicates the maximum number of blocks that have ever been in use at " "one time." -#: libraries/messages.inc.php:958 +#: libraries/messages.inc.php:954 msgid "The number of requests to read a key block from the cache." msgstr "The number of requests to read a key block from the cache." -#: libraries/messages.inc.php:959 +#: libraries/messages.inc.php:955 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -5698,15 +5698,15 @@ msgstr "" "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." -#: libraries/messages.inc.php:960 +#: libraries/messages.inc.php:956 msgid "The number of requests to write a key block to the cache." msgstr "The number of requests to write a key block to the cache." -#: libraries/messages.inc.php:961 +#: libraries/messages.inc.php:957 msgid "The number of physical writes of a key block to disk." msgstr "The number of physical writes of a key block to disk." -#: libraries/messages.inc.php:962 +#: libraries/messages.inc.php:958 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -5716,11 +5716,11 @@ msgstr "" "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." -#: libraries/messages.inc.php:963 +#: libraries/messages.inc.php:959 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "The number of rows waiting to be written in INSERT DELAY queues." -#: libraries/messages.inc.php:964 +#: libraries/messages.inc.php:960 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -5728,35 +5728,35 @@ msgstr "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." -#: libraries/messages.inc.php:965 +#: libraries/messages.inc.php:961 msgid "The number of files that are open." msgstr "The number of files that are open." -#: libraries/messages.inc.php:966 +#: libraries/messages.inc.php:962 msgid "The number of streams that are open (used mainly for logging)." msgstr "The number of streams that are open (used mainly for logging)." -#: libraries/messages.inc.php:967 +#: libraries/messages.inc.php:963 msgid "The number of tables that are open." msgstr "The number of tables that are open." -#: libraries/messages.inc.php:968 +#: libraries/messages.inc.php:964 msgid "The number of free memory blocks in query cache." msgstr "The number of free memory blocks in query cache." -#: libraries/messages.inc.php:969 +#: libraries/messages.inc.php:965 msgid "The amount of free memory for query cache." msgstr "The amount of free memory for query cache." -#: libraries/messages.inc.php:970 +#: libraries/messages.inc.php:966 msgid "The number of cache hits." msgstr "The number of cache hits." -#: libraries/messages.inc.php:971 +#: libraries/messages.inc.php:967 msgid "The number of queries added to the cache." msgstr "The number of queries added to the cache." -#: libraries/messages.inc.php:972 +#: libraries/messages.inc.php:968 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -5768,7 +5768,7 @@ msgstr "" "cache size. The query cache uses a least recently used (LRU) strategy to " "decide which queries to remove from the cache." -#: libraries/messages.inc.php:973 +#: libraries/messages.inc.php:969 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -5776,24 +5776,24 @@ msgstr "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." -#: libraries/messages.inc.php:974 +#: libraries/messages.inc.php:970 msgid "The number of queries registered in the cache." msgstr "The number of queries registered in the cache." -#: libraries/messages.inc.php:975 +#: libraries/messages.inc.php:971 msgid "The total number of blocks in the query cache." msgstr "The total number of blocks in the query cache." -#: libraries/messages.inc.php:976 +#: libraries/messages.inc.php:972 msgctxt "$strShowStatusReset" msgid "Reset" msgstr "Reset" -#: libraries/messages.inc.php:977 +#: libraries/messages.inc.php:973 msgid "The status of failsafe replication (not yet implemented)." msgstr "The status of failsafe replication (not yet implemented)." -#: libraries/messages.inc.php:978 +#: libraries/messages.inc.php:974 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -5801,11 +5801,11 @@ msgstr "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." -#: libraries/messages.inc.php:979 +#: libraries/messages.inc.php:975 msgid "The number of joins that used a range search on a reference table." msgstr "The number of joins that used a range search on a reference table." -#: libraries/messages.inc.php:980 +#: libraries/messages.inc.php:976 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -5813,7 +5813,7 @@ msgstr "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" -#: libraries/messages.inc.php:981 +#: libraries/messages.inc.php:977 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -5821,15 +5821,15 @@ msgstr "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" -#: libraries/messages.inc.php:982 +#: libraries/messages.inc.php:978 msgid "The number of joins that did a full scan of the first table." msgstr "The number of joins that did a full scan of the first table." -#: libraries/messages.inc.php:983 +#: libraries/messages.inc.php:979 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "The number of temporary tables currently open by the slave SQL thread." -#: libraries/messages.inc.php:984 +#: libraries/messages.inc.php:980 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -5837,11 +5837,11 @@ msgstr "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." -#: libraries/messages.inc.php:985 +#: libraries/messages.inc.php:981 msgid "This is ON if this server is a slave that is connected to a master." msgstr "This is ON if this server is a slave that is connected to a master." -#: libraries/messages.inc.php:986 +#: libraries/messages.inc.php:982 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -5849,13 +5849,13 @@ msgstr "" "The number of threads that have taken more than slow_launch_time seconds to " "create." -#: libraries/messages.inc.php:987 +#: libraries/messages.inc.php:983 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "The number of queries that have taken more than long_query_time seconds." -#: libraries/messages.inc.php:988 +#: libraries/messages.inc.php:984 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -5865,23 +5865,23 @@ msgstr "" "is large, you should consider increasing the value of the sort_buffer_size " "system variable." -#: libraries/messages.inc.php:989 +#: libraries/messages.inc.php:985 msgid "The number of sorts that were done with ranges." msgstr "The number of sorts that were done with ranges." -#: libraries/messages.inc.php:990 +#: libraries/messages.inc.php:986 msgid "The number of sorted rows." msgstr "The number of sorted rows." -#: libraries/messages.inc.php:991 +#: libraries/messages.inc.php:987 msgid "The number of sorts that were done by scanning the table." msgstr "The number of sorts that were done by scanning the table." -#: libraries/messages.inc.php:992 +#: libraries/messages.inc.php:988 msgid "The number of times that a table lock was acquired immediately." msgstr "The number of times that a table lock was acquired immediately." -#: libraries/messages.inc.php:993 +#: libraries/messages.inc.php:989 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -5893,7 +5893,7 @@ msgstr "" "should first optimize your queries, and then either split your table or " "tables or use replication." -#: libraries/messages.inc.php:994 +#: libraries/messages.inc.php:990 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -5903,11 +5903,11 @@ msgstr "" "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." -#: libraries/messages.inc.php:995 +#: libraries/messages.inc.php:991 msgid "The number of currently open connections." msgstr "The number of currently open connections." -#: libraries/messages.inc.php:996 +#: libraries/messages.inc.php:992 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -5919,74 +5919,74 @@ msgstr "" "doesn't give a notable performance improvement if you have a good thread " "implementation.)" -#: libraries/messages.inc.php:997 +#: libraries/messages.inc.php:993 msgid "The number of threads that are not sleeping." msgstr "The number of threads that are not sleeping." -#: libraries/messages.inc.php:999 tbl_printview.php:75 +#: libraries/messages.inc.php:995 tbl_printview.php:75 msgid "Show tables" msgstr "Show tables" -#: libraries/messages.inc.php:1000 libraries/sql_query_form.lib.php:396 +#: libraries/messages.inc.php:996 libraries/sql_query_form.lib.php:396 msgid " Show this query here again " msgstr " Show this query here again " -#: libraries/messages.inc.php:1001 libraries/mysql_charsets.lib.php:217 +#: libraries/messages.inc.php:997 libraries/mysql_charsets.lib.php:217 #: libraries/mysql_charsets.lib.php:342 msgid "Simplified Chinese" msgstr "Simplified Chinese" -#: libraries/messages.inc.php:1002 tbl_operations.php:258 +#: libraries/messages.inc.php:998 tbl_operations.php:258 msgid "(singly)" msgstr "(singly)" -#: libraries/messages.inc.php:1005 libraries/replication_gui.lib.php:52 +#: libraries/messages.inc.php:1001 libraries/replication_gui.lib.php:52 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" msgstr "" -#: libraries/messages.inc.php:1006 libraries/mysql_charsets.lib.php:283 +#: libraries/messages.inc.php:1002 libraries/mysql_charsets.lib.php:283 msgid "Slovak" msgstr "Slovak" -#: libraries/messages.inc.php:1007 libraries/mysql_charsets.lib.php:286 +#: libraries/messages.inc.php:1003 libraries/mysql_charsets.lib.php:286 msgid "Slovenian" msgstr "Slovenian" -#: libraries/messages.inc.php:1008 pmd_general.php:95 +#: libraries/messages.inc.php:1004 pmd_general.php:95 msgid "Small/Big All" msgstr "" -#: libraries/messages.inc.php:1009 pmd_general.php:91 +#: libraries/messages.inc.php:1005 pmd_general.php:91 msgid "Snap to grid" msgstr "" -#: libraries/messages.inc.php:1011 server_synchronize.php:1167 +#: libraries/messages.inc.php:1007 server_synchronize.php:1167 msgid "Socket" msgstr "" -#: libraries/messages.inc.php:1013 server_status.php:259 +#: libraries/messages.inc.php:1009 server_status.php:259 msgid "Sorting" msgstr "সাজাঁন" -#: libraries/messages.inc.php:1015 tbl_printview.php:310 tbl_structure.php:657 +#: libraries/messages.inc.php:1011 tbl_printview.php:310 tbl_structure.php:657 msgid "Space usage" msgstr "Space usage" -#: libraries/messages.inc.php:1016 libraries/mysql_charsets.lib.php:289 +#: libraries/messages.inc.php:1012 libraries/mysql_charsets.lib.php:289 msgid "Spanish" msgstr "Spanish" -#: libraries/messages.inc.php:1019 +#: libraries/messages.inc.php:1015 msgid "Export type" msgstr "Export type" -#: libraries/messages.inc.php:1020 +#: libraries/messages.inc.php:1016 msgid "Export time in UTC" msgstr "" -#: libraries/messages.inc.php:1021 libraries/sqlparser.lib.php:173 +#: libraries/messages.inc.php:1017 libraries/sqlparser.lib.php:173 msgid "" "There is a chance that you may have found a bug in the SQL parser. Please " "examine your query closely, and check that the quotes are correct and not " @@ -6008,7 +6008,7 @@ msgstr "" "please reduce your SQL query input to the single query that causes problems, " "and submit a bug report with the data chunk in the CUT section below:" -#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:137 +#: libraries/messages.inc.php:1018 libraries/sqlparser.lib.php:137 msgid "" "There seems to be an error in your SQL query. The MySQL server error output " "below, if there is any, may also help you in diagnosing the problem" @@ -6016,33 +6016,33 @@ msgstr "" "There seems to be an error in your SQL query. The MySQL server error output " "below, if there is any, may also help you in diagnosing the problem" -#: libraries/messages.inc.php:1026 libraries/sqlparser.lib.php:495 +#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:495 msgid "Invalid Identifer" msgstr "Invalid Identifer" -#: libraries/messages.inc.php:1027 libraries/sqlparser.lib.php:344 +#: libraries/messages.inc.php:1023 libraries/sqlparser.lib.php:344 msgid "Unclosed quote" msgstr "Unclosed quote" -#: libraries/messages.inc.php:1028 libraries/sqlparser.lib.php:612 +#: libraries/messages.inc.php:1024 libraries/sqlparser.lib.php:612 msgid "Unknown Punctuation String" msgstr "Unknown Punctuation String" -#: libraries/messages.inc.php:1030 server_replication.php:327 +#: libraries/messages.inc.php:1026 server_replication.php:327 #: server_replication.php:328 #, fuzzy msgid "Start" msgstr "শনিবার" -#: libraries/messages.inc.php:1033 tbl_printview.php:369 tbl_structure.php:729 +#: libraries/messages.inc.php:1029 tbl_printview.php:369 tbl_structure.php:729 msgid "Statements" msgstr "Statements" -#: libraries/messages.inc.php:1034 tbl_printview.php:380 tbl_structure.php:741 +#: libraries/messages.inc.php:1030 tbl_printview.php:380 tbl_structure.php:741 msgid "static" msgstr "" -#: libraries/messages.inc.php:1035 server_status.php:388 +#: libraries/messages.inc.php:1031 server_status.php:388 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -6050,204 +6050,204 @@ msgstr "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." -#: libraries/messages.inc.php:1038 server_replication.php:327 +#: libraries/messages.inc.php:1034 server_replication.php:327 #: server_replication.php:328 msgid "Stop" msgstr "" -#: libraries/messages.inc.php:1039 server_engines.php:49 +#: libraries/messages.inc.php:1035 server_engines.php:49 msgid "Storage Engines" msgstr "Storage Engines" -#: libraries/messages.inc.php:1040 libraries/tbl_properties.inc.php:726 +#: libraries/messages.inc.php:1036 libraries/tbl_properties.inc.php:726 #: server_engines.php:58 tbl_operations.php:353 msgid "Storage Engine" msgstr "Storage Engine" -#: libraries/messages.inc.php:1042 +#: libraries/messages.inc.php:1038 msgid "CSV for MS Excel" msgstr "CSV for MS Excel" -#: libraries/messages.inc.php:1044 tbl_structure.php:516 tbl_structure.php:518 +#: libraries/messages.inc.php:1040 tbl_structure.php:516 tbl_structure.php:518 msgid "Propose table structure" msgstr "Propose table structure" -#: libraries/messages.inc.php:1045 server_synchronize.php:424 +#: libraries/messages.inc.php:1041 server_synchronize.php:424 #: server_synchronize.php:867 #, fuzzy msgid "Structure Difference" msgstr "Structure only" -#: libraries/messages.inc.php:1049 server_synchronize.php:265 +#: libraries/messages.inc.php:1045 server_synchronize.php:265 msgid "Structure Synchronization" msgstr "" -#: libraries/messages.inc.php:1050 libraries/sql_query_form.lib.php:462 +#: libraries/messages.inc.php:1046 libraries/sql_query_form.lib.php:462 msgid "Submit" msgstr "Submit" -#: libraries/messages.inc.php:1052 main.php:358 +#: libraries/messages.inc.php:1048 main.php:358 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " "issues." msgstr "" -#: libraries/messages.inc.php:1054 libraries/mysql_charsets.lib.php:295 +#: libraries/messages.inc.php:1050 libraries/mysql_charsets.lib.php:295 #: libraries/mysql_charsets.lib.php:392 msgid "Swedish" msgstr "সুইডিশ" -#: libraries/messages.inc.php:1060 tbl_operations.php:556 +#: libraries/messages.inc.php:1056 tbl_operations.php:556 msgid "Switch to copied table" msgstr "Switch to copied table" -#: libraries/messages.inc.php:1061 server_synchronize.php:1213 +#: libraries/messages.inc.php:1057 server_synchronize.php:1213 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." msgstr "" -#: libraries/messages.inc.php:1062 server_synchronize.php:451 +#: libraries/messages.inc.php:1058 server_synchronize.php:451 #: server_synchronize.php:896 msgid "Synchronize Databases" msgstr "" -#: libraries/messages.inc.php:1063 libraries/server_links.inc.php:92 +#: libraries/messages.inc.php:1059 libraries/server_links.inc.php:92 #: server_synchronize.php:1092 server_synchronize.php:1100 msgid "Synchronize" msgstr "" -#: libraries/messages.inc.php:1065 server_synchronize.php:430 +#: libraries/messages.inc.php:1061 server_synchronize.php:430 #: server_synchronize.php:873 msgid "Add column(s)" msgstr "" -#: libraries/messages.inc.php:1066 tbl_create.php:62 +#: libraries/messages.inc.php:1062 tbl_create.php:62 #, php-format msgid "Table %s already exists!" msgstr "Table %s already exists!" -#: libraries/messages.inc.php:1067 server_synchronize.php:432 +#: libraries/messages.inc.php:1063 server_synchronize.php:432 #: server_synchronize.php:875 msgid "Alter column(s)" msgstr "" -#: libraries/messages.inc.php:1068 tbl_addfield.php:189 tbl_alter.php:103 +#: libraries/messages.inc.php:1064 tbl_addfield.php:189 tbl_alter.php:103 #: tbl_indexes.php:98 #, fuzzy, php-format msgid "Table %1$s has been altered successfully" msgstr "The selected users have been deleted successfully." -#: libraries/messages.inc.php:1069 server_synchronize.php:434 +#: libraries/messages.inc.php:1065 server_synchronize.php:434 #: server_synchronize.php:877 msgid "Apply index(s)" msgstr "" -#: libraries/messages.inc.php:1071 server_synchronize.php:446 +#: libraries/messages.inc.php:1067 server_synchronize.php:446 #: server_synchronize.php:890 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: libraries/messages.inc.php:1072 tbl_move_copy.php:82 +#: libraries/messages.inc.php:1068 tbl_move_copy.php:82 msgid "The table name is empty!" msgstr "টেবিল এর নাম পূরন করা হয়নি" -#: libraries/messages.inc.php:1073 tbl_create.php:249 +#: libraries/messages.inc.php:1069 tbl_create.php:249 #, fuzzy, php-format msgid "Table %1$s has been created." msgstr "Table %s has been dropped" -#: libraries/messages.inc.php:1076 tbl_operations.php:628 +#: libraries/messages.inc.php:1072 tbl_operations.php:628 #, php-format msgid "Table %s has been flushed" msgstr "Table %s has been flushed" -#: libraries/messages.inc.php:1077 server_synchronize.php:436 +#: libraries/messages.inc.php:1073 server_synchronize.php:436 #: server_synchronize.php:879 msgid "Insert row(s)" msgstr "" -#: libraries/messages.inc.php:1078 libraries/tbl_links.inc.php:107 +#: libraries/messages.inc.php:1074 libraries/tbl_links.inc.php:107 #: libraries/tbl_links.inc.php:140 libraries/tbl_links.inc.php:141 msgid "Table seems to be empty!" msgstr "" -#: libraries/messages.inc.php:1079 tbl_operations.php:568 +#: libraries/messages.inc.php:1075 tbl_operations.php:568 msgid "Table maintenance" msgstr "Table maintenance" -#: libraries/messages.inc.php:1080 libraries/tbl_properties.inc.php:618 +#: libraries/messages.inc.php:1076 libraries/tbl_properties.inc.php:618 #: server_synchronize.php:428 server_synchronize.php:871 #, fuzzy msgid "Table name" msgstr "টেবিল এর নাম" -#: libraries/messages.inc.php:1081 pdf_schema.php:1116 +#: libraries/messages.inc.php:1077 pdf_schema.php:1116 msgid "Table of contents" msgstr "Table of contents" -#: libraries/messages.inc.php:1082 tbl_operations.php:334 +#: libraries/messages.inc.php:1078 tbl_operations.php:334 msgid "Table options" msgstr "Table options" -#: libraries/messages.inc.php:1083 server_synchronize.php:431 +#: libraries/messages.inc.php:1079 server_synchronize.php:431 #: server_synchronize.php:874 msgid "Remove column(s)" msgstr "" -#: libraries/messages.inc.php:1084 server_synchronize.php:433 +#: libraries/messages.inc.php:1080 server_synchronize.php:433 #: server_synchronize.php:876 msgid "Remove index(s)" msgstr "" -#: libraries/messages.inc.php:1088 server_synchronize.php:435 +#: libraries/messages.inc.php:1084 server_synchronize.php:435 #: server_synchronize.php:878 msgid "Update row(s)" msgstr "" -#: libraries/messages.inc.php:1090 server_synchronize.php:942 +#: libraries/messages.inc.php:1086 server_synchronize.php:942 msgid "Target database has been synchronized with source database" msgstr "" -#: libraries/messages.inc.php:1091 server_privileges.php:392 +#: libraries/messages.inc.php:1087 server_privileges.php:392 #: server_privileges.php:527 server_privileges.php:1679 #: server_privileges.php:1685 msgid "Table-specific privileges" msgstr "Table-specific privileges" -#: libraries/messages.inc.php:1092 server_status.php:254 +#: libraries/messages.inc.php:1088 server_status.php:254 msgid "Temporary data" msgstr "Temporary data" -#: libraries/messages.inc.php:1093 tbl_change.php:728 +#: libraries/messages.inc.php:1089 tbl_change.php:728 msgid " Because of its length,
this field might not be editable " msgstr " Because of its length,
this field might not be editable " -#: libraries/messages.inc.php:1094 +#: libraries/messages.inc.php:1090 msgid "Texy! text" msgstr "" -#: libraries/messages.inc.php:1095 libraries/mysql_charsets.lib.php:298 +#: libraries/messages.inc.php:1091 libraries/mysql_charsets.lib.php:298 #: libraries/mysql_charsets.lib.php:395 msgid "Thai" msgstr "Thai" -#: libraries/messages.inc.php:1102 libraries/replication_gui.lib.php:308 +#: libraries/messages.inc.php:1098 libraries/replication_gui.lib.php:308 #: server_privileges.php:734 msgid "This Host" msgstr "This Host" -#: libraries/messages.inc.php:1103 server_status.php:252 +#: libraries/messages.inc.php:1099 server_status.php:252 msgid "Threads" msgstr "Threads" -#: libraries/messages.inc.php:1104 server_processlist.php:22 +#: libraries/messages.inc.php:1100 server_processlist.php:22 #, php-format msgid "Thread %s was successfully killed." msgstr "Thread %s was successfully killed." -#: libraries/messages.inc.php:1106 +#: libraries/messages.inc.php:1102 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -6255,185 +6255,185 @@ msgstr "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." -#: libraries/messages.inc.php:1109 pmd_pdf.php:94 +#: libraries/messages.inc.php:1105 pmd_pdf.php:94 msgid "to/from page" msgstr "" -#: libraries/messages.inc.php:1110 pdf_pages.php:343 +#: libraries/messages.inc.php:1106 pdf_pages.php:343 msgid "Toggle scratchboard" msgstr "Toggle scratchboard" -#: libraries/messages.inc.php:1111 pmd_general.php:99 +#: libraries/messages.inc.php:1107 pmd_general.php:99 msgid "Toggle small/big" msgstr "" -#: libraries/messages.inc.php:1112 pmd_help.php:27 +#: libraries/messages.inc.php:1108 pmd_help.php:27 msgid "To select relation, click :" msgstr "" -#: libraries/messages.inc.php:1115 libraries/tbl_links.inc.php:149 +#: libraries/messages.inc.php:1111 libraries/tbl_links.inc.php:149 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" -#: libraries/messages.inc.php:1116 tbl_tracking.php:655 +#: libraries/messages.inc.php:1112 tbl_tracking.php:655 msgid "Activate now" msgstr "" -#: libraries/messages.inc.php:1117 tbl_tracking.php:653 +#: libraries/messages.inc.php:1113 tbl_tracking.php:653 #, php-format msgid "Activate tracking for %s.%s" msgstr "" -#: libraries/messages.inc.php:1118 tbl_tracking.php:221 +#: libraries/messages.inc.php:1114 tbl_tracking.php:221 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/messages.inc.php:1119 tbl_tracking.php:688 +#: libraries/messages.inc.php:1115 tbl_tracking.php:688 #, fuzzy msgid "Create version" msgstr "Server version" -#: libraries/messages.inc.php:1120 tbl_tracking.php:668 +#: libraries/messages.inc.php:1116 tbl_tracking.php:668 #, php-format msgid "Create version %s of %s.%s" msgstr "" -#: libraries/messages.inc.php:1122 tbl_tracking.php:412 +#: libraries/messages.inc.php:1118 tbl_tracking.php:412 msgid "Data definition statement" msgstr "" -#: libraries/messages.inc.php:1123 tbl_tracking.php:463 +#: libraries/messages.inc.php:1119 tbl_tracking.php:463 msgid "Data manipulation statement" msgstr "" -#: libraries/messages.inc.php:1124 tbl_tracking.php:410 tbl_tracking.php:461 +#: libraries/messages.inc.php:1120 tbl_tracking.php:410 tbl_tracking.php:461 #, fuzzy msgid "Date" msgstr "ডাটা" -#: libraries/messages.inc.php:1125 tbl_tracking.php:642 +#: libraries/messages.inc.php:1121 tbl_tracking.php:642 msgid "Deactivate now" msgstr "" -#: libraries/messages.inc.php:1126 tbl_tracking.php:640 +#: libraries/messages.inc.php:1122 tbl_tracking.php:640 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "" -#: libraries/messages.inc.php:1127 tbl_tracking.php:521 +#: libraries/messages.inc.php:1123 tbl_tracking.php:521 #, fuzzy, php-format msgid "Export as %s" msgstr "Export type" -#: libraries/messages.inc.php:1130 tbl_tracking.php:251 tbl_tracking.php:379 +#: libraries/messages.inc.php:1126 tbl_tracking.php:251 tbl_tracking.php:379 msgid "Close" msgstr "" -#: libraries/messages.inc.php:1131 tbl_tracking.php:114 +#: libraries/messages.inc.php:1127 tbl_tracking.php:114 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/messages.inc.php:1133 tbl_tracking.php:397 tbl_tracking.php:504 +#: libraries/messages.inc.php:1129 tbl_tracking.php:397 tbl_tracking.php:504 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "" -#: libraries/messages.inc.php:1134 tbl_tracking.php:561 +#: libraries/messages.inc.php:1130 tbl_tracking.php:561 msgid "Show versions" msgstr "" -#: libraries/messages.inc.php:1135 tbl_tracking.php:507 +#: libraries/messages.inc.php:1131 tbl_tracking.php:507 msgid "SQL dump (file download)" msgstr "" -#: libraries/messages.inc.php:1136 tbl_tracking.php:508 +#: libraries/messages.inc.php:1132 tbl_tracking.php:508 msgid "SQL dump" msgstr "" -#: libraries/messages.inc.php:1137 tbl_tracking.php:213 +#: libraries/messages.inc.php:1133 tbl_tracking.php:213 msgid "SQL statements executed." msgstr "" -#: libraries/messages.inc.php:1138 +#: libraries/messages.inc.php:1134 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/messages.inc.php:1139 tbl_tracking.php:509 +#: libraries/messages.inc.php:1135 tbl_tracking.php:509 msgid "SQL execution" msgstr "" -#: libraries/messages.inc.php:1140 tbl_tracking.php:230 +#: libraries/messages.inc.php:1136 tbl_tracking.php:230 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/messages.inc.php:1141 tbl_tracking.php:381 +#: libraries/messages.inc.php:1137 tbl_tracking.php:381 msgid "Tracking statements" msgstr "" -#: libraries/messages.inc.php:1148 tbl_tracking.php:593 +#: libraries/messages.inc.php:1144 tbl_tracking.php:593 #, fuzzy msgid "Version" msgstr "পারসিয়ান" -#: libraries/messages.inc.php:1149 tbl_tracking.php:672 +#: libraries/messages.inc.php:1145 tbl_tracking.php:672 msgid "Track these data definition statements:" msgstr "" -#: libraries/messages.inc.php:1150 tbl_tracking.php:680 +#: libraries/messages.inc.php:1146 tbl_tracking.php:680 msgid "Track these data manipulation statements:" msgstr "" -#: libraries/messages.inc.php:1155 tbl_tracking.php:411 tbl_tracking.php:462 +#: libraries/messages.inc.php:1151 tbl_tracking.php:411 tbl_tracking.php:462 #, fuzzy msgid "Username" msgstr "ব্যাবহারকারী" -#: libraries/messages.inc.php:1156 tbl_tracking.php:203 +#: libraries/messages.inc.php:1152 tbl_tracking.php:203 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "" -#: libraries/messages.inc.php:1157 tbl_tracking.php:187 +#: libraries/messages.inc.php:1153 tbl_tracking.php:187 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "" -#: libraries/messages.inc.php:1158 tbl_tracking.php:195 +#: libraries/messages.inc.php:1154 tbl_tracking.php:195 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "" -#: libraries/messages.inc.php:1159 tbl_tracking.php:262 +#: libraries/messages.inc.php:1155 tbl_tracking.php:262 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/messages.inc.php:1161 tbl_tracking.php:220 +#: libraries/messages.inc.php:1157 tbl_tracking.php:220 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/messages.inc.php:1162 libraries/mysql_charsets.lib.php:219 +#: libraries/messages.inc.php:1158 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:362 msgid "Traditional Chinese" msgstr "Traditional Chinese" -#: libraries/messages.inc.php:1163 libraries/mysql_charsets.lib.php:292 +#: libraries/messages.inc.php:1159 libraries/mysql_charsets.lib.php:292 msgid "Traditional Spanish" msgstr "Traditional Spanish" -#: libraries/messages.inc.php:1164 server_status.php:388 +#: libraries/messages.inc.php:1160 server_status.php:388 msgid "Traffic" msgstr "Traffic" -#: libraries/messages.inc.php:1165 server_status.php:261 +#: libraries/messages.inc.php:1161 server_status.php:261 msgid "Transaction coordinator" msgstr "Transaction coordinator" -#: libraries/messages.inc.php:1166 +#: libraries/messages.inc.php:1162 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 " @@ -6445,7 +6445,7 @@ msgstr "" "of a field which contains the filename. If you use the second option, you " "need to set the first option to the empty string." -#: libraries/messages.inc.php:1167 +#: libraries/messages.inc.php:1163 msgid "" "Displays hexadecimal representation of data. Optional first parameter " "specifies how often space will be added (defaults to 2 nibbles)." @@ -6453,7 +6453,7 @@ msgstr "" "Displays hexadecimal representation of data. Optional first parameter " "specifies how often space will be added (defaults to 2 nibbles)." -#: libraries/messages.inc.php:1168 +#: libraries/messages.inc.php:1164 msgid "" "Displays a clickable thumbnail. The options are the maximum width and height " "in pixels. The original aspect ratio is preserved." @@ -6461,15 +6461,15 @@ msgstr "" "Displays a clickable thumbnail. The options are the maximum width and height " "in pixels. The original aspect ratio is preserved." -#: libraries/messages.inc.php:1169 +#: libraries/messages.inc.php:1165 msgid "Displays a link to download this image." msgstr "Displays a link to download this image." -#: libraries/messages.inc.php:1170 +#: libraries/messages.inc.php:1166 msgid "See image/jpeg: inline" msgstr "See image/jpeg: inline" -#: libraries/messages.inc.php:1171 +#: libraries/messages.inc.php:1167 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 " @@ -6485,63 +6485,63 @@ msgstr "" "to the timestamp (Default: 0). Use second option to specify a different date/" "time format string; see the documentation for PHP's strftime() function." +#: libraries/messages.inc.php:1168 +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)." +msgstr "" +"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)." + +#: libraries/messages.inc.php:1169 +msgid "" +"Displays the contents of the field as-is, without running it through " +"htmlspecialchars(). That is, the field is assumed to contain valid HTML." +msgstr "" +"Displays the contents of the field as-is, without running it through " +"htmlspecialchars(). That is, the field is assumed to contain valid HTML." + +#: libraries/messages.inc.php:1170 +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." +msgstr "" +"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." + +#: libraries/messages.inc.php:1171 +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." +msgstr "" +"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." + #: libraries/messages.inc.php:1172 -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)." -msgstr "" -"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)." - -#: libraries/messages.inc.php:1173 -msgid "" -"Displays the contents of the field as-is, without running it through " -"htmlspecialchars(). That is, the field is assumed to contain valid HTML." -msgstr "" -"Displays the contents of the field as-is, without running it through " -"htmlspecialchars(). That is, the field is assumed to contain valid HTML." - -#: libraries/messages.inc.php:1174 -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." -msgstr "" -"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." - -#: libraries/messages.inc.php:1175 -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." -msgstr "" -"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." - -#: libraries/messages.inc.php:1176 msgid "Formats text as SQL query with syntax highlighting." msgstr "Formats text as SQL query with syntax highlighting." -#: libraries/messages.inc.php:1177 +#: libraries/messages.inc.php:1173 msgid "" "Displays a part of a string. The first option is the number of characters to " "skip from the beginning of the string (Default 0). The second option is the " @@ -6555,70 +6555,70 @@ msgstr "" "option is the string to append and/or prepend when truncation occurs " "(Default: \"...\")." -#: libraries/messages.inc.php:1179 server_binlog.php:183 server_binlog.php:186 +#: libraries/messages.inc.php:1175 server_binlog.php:183 server_binlog.php:186 #: server_processlist.php:49 server_processlist.php:51 msgid "Truncate Shown Queries" msgstr "Truncate Shown Queries" -#: libraries/messages.inc.php:1180 libraries/mysql_charsets.lib.php:301 +#: libraries/messages.inc.php:1176 libraries/mysql_charsets.lib.php:301 #: libraries/mysql_charsets.lib.php:389 msgid "Turkish" msgstr "Turkish" -#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:304 +#: libraries/messages.inc.php:1179 libraries/mysql_charsets.lib.php:304 #: libraries/mysql_charsets.lib.php:386 msgid "Ukrainian" msgstr "Ukrainian" -#: libraries/messages.inc.php:1185 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:1181 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 msgid "Unicode" msgstr "ইউনিকোড" -#: libraries/messages.inc.php:1187 libraries/mysql_charsets.lib.php:398 +#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:398 #: libraries/mysql_charsets.lib.php:405 msgid "unknown" msgstr "অজানা" -#: libraries/messages.inc.php:1190 server_privileges.php:1152 +#: libraries/messages.inc.php:1186 server_privileges.php:1152 #, php-format msgid "You have updated the privileges for %s." msgstr "You have updated the privileges for %s." -#: libraries/messages.inc.php:1191 user_password.php:112 +#: libraries/messages.inc.php:1187 user_password.php:112 msgid "The profile has been updated." msgstr "The profile has been updated." -#: libraries/messages.inc.php:1193 libraries/relation.lib.php:138 +#: libraries/messages.inc.php:1189 libraries/relation.lib.php:138 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "Please see the documentation on how to update your column_comments table" -#: libraries/messages.inc.php:1194 +#: libraries/messages.inc.php:1190 #, php-format msgid "You should upgrade to %s %s or later." msgstr "You should upgrade to %s %s or later." -#: libraries/messages.inc.php:1204 tbl_printview.php:314 tbl_structure.php:661 +#: libraries/messages.inc.php:1200 tbl_printview.php:314 tbl_structure.php:661 msgid "Usage" msgstr "ব্যাবহার" -#: libraries/messages.inc.php:1205 +#: libraries/messages.inc.php:1201 msgid "Enclose table and field names with backquotes" msgstr "Enclose table and field names with backquotes" -#: libraries/messages.inc.php:1206 libraries/replication_gui.lib.php:314 +#: libraries/messages.inc.php:1202 libraries/replication_gui.lib.php:314 #: server_privileges.php:740 msgid "Use Host Table" msgstr "Use Host Table" -#: libraries/messages.inc.php:1207 server_privileges.php:848 +#: libraries/messages.inc.php:1203 server_privileges.php:848 #, php-format msgid "The user %s already exists!" msgstr "The user %s already exists!" -#: libraries/messages.inc.php:1209 libraries/replication_gui.lib.php:55 +#: libraries/messages.inc.php:1205 libraries/replication_gui.lib.php:55 #: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245 #: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255 #: server_privileges.php:672 server_privileges.php:675 @@ -6626,36 +6626,36 @@ msgstr "The user %s already exists!" msgid "User name" msgstr "ব্যাভারকারীর নাম" -#: libraries/messages.inc.php:1210 server_privileges.php:1645 +#: libraries/messages.inc.php:1206 server_privileges.php:1645 msgid "The selected user was not found in the privilege table." msgstr "The selected user was not found in the privilege table." -#: libraries/messages.inc.php:1211 server_privileges.php:1365 +#: libraries/messages.inc.php:1207 server_privileges.php:1365 msgid "User overview" msgstr "User overview" -#: libraries/messages.inc.php:1212 server_privileges.php:1261 +#: libraries/messages.inc.php:1208 server_privileges.php:1261 msgid "The selected users have been deleted successfully." msgstr "The selected users have been deleted successfully." -#: libraries/messages.inc.php:1213 server_privileges.php:2026 +#: libraries/messages.inc.php:1209 server_privileges.php:2026 #, php-format msgid "Users having access to "%s"" msgstr "Users having access to "%s"" -#: libraries/messages.inc.php:1214 main.php:189 server_privileges.php:1350 +#: libraries/messages.inc.php:1210 main.php:189 server_privileges.php:1350 #: server_privileges.php:1497 server_privileges.php:1611 #: server_privileges.php:2029 server_processlist.php:54 msgid "User" msgstr "User" -#: libraries/messages.inc.php:1215 tbl_change.php:1171 +#: libraries/messages.inc.php:1211 tbl_change.php:1171 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" -#: libraries/messages.inc.php:1217 libraries/replication_gui.lib.php:251 +#: libraries/messages.inc.php:1213 libraries/replication_gui.lib.php:251 #: libraries/replication_gui.lib.php:319 libraries/replication_gui.lib.php:342 #: server_privileges.php:678 server_privileges.php:745 #: server_privileges.php:769 server_privileges.php:1889 @@ -6663,7 +6663,7 @@ msgstr "" msgid "Use text field" msgstr "Use text field" -#: libraries/messages.inc.php:1221 libraries/sqlvalidator.lib.php:68 +#: libraries/messages.inc.php:1217 libraries/sqlvalidator.lib.php:68 #, php-format msgid "" "The SQL validator could not be initialized. Please check if you have " @@ -6672,88 +6672,88 @@ msgstr "" "The SQL validator could not be initialized. Please check if you have " "installed the necessary PHP extensions as described in the %sdocumentation%s." -#: libraries/messages.inc.php:1222 libraries/replication_gui.lib.php:111 +#: libraries/messages.inc.php:1218 libraries/replication_gui.lib.php:111 #: server_status.php:627 tbl_change.php:324 tbl_printview.php:370 #: tbl_select.php:139 tbl_structure.php:730 msgid "Value" msgstr "মান" -#: libraries/messages.inc.php:1223 libraries/replication_gui.lib.php:110 +#: libraries/messages.inc.php:1219 libraries/replication_gui.lib.php:110 #: libraries/sql_query_form.lib.php:445 server_status.php:626 #: server_variables.php:52 msgid "Variable" msgstr "চলক" -#: libraries/messages.inc.php:1225 server_export.php:21 +#: libraries/messages.inc.php:1221 server_export.php:21 msgid "View dump (schema) of databases" msgstr "View dump (schema) of databases" -#: libraries/messages.inc.php:1227 tbl_export.php:23 +#: libraries/messages.inc.php:1223 tbl_export.php:23 msgid "View dump (schema) of table" msgstr "View dump (schema) of table" -#: libraries/messages.inc.php:1231 view_create.php:142 +#: libraries/messages.inc.php:1227 view_create.php:142 msgid "VIEW name" msgstr "" -#: libraries/messages.inc.php:1237 main.php:205 +#: libraries/messages.inc.php:1233 main.php:205 msgid "Web server" msgstr "" -#: libraries/messages.inc.php:1239 libraries/mysql_charsets.lib.php:277 +#: libraries/messages.inc.php:1235 libraries/mysql_charsets.lib.php:277 #: libraries/mysql_charsets.lib.php:325 msgid "West European" msgstr "West European" -#: libraries/messages.inc.php:1240 main.php:230 +#: libraries/messages.inc.php:1236 main.php:230 msgid "Wiki" msgstr "" -#: libraries/messages.inc.php:1241 server_privileges.php:2138 +#: libraries/messages.inc.php:1237 server_privileges.php:2138 msgid "wildcard" msgstr "wildcard" -#: libraries/messages.inc.php:1248 +#: libraries/messages.inc.php:1244 #, fuzzy msgid "Export contents" msgstr "Export type" -#: libraries/messages.inc.php:1249 +#: libraries/messages.inc.php:1245 msgid "Export functions" msgstr "" -#: libraries/messages.inc.php:1250 +#: libraries/messages.inc.php:1246 msgid "Export procedures" msgstr "" -#: libraries/messages.inc.php:1251 +#: libraries/messages.inc.php:1247 msgid "Export Structure Schemas (recommended)" msgstr "" -#: libraries/messages.inc.php:1252 +#: libraries/messages.inc.php:1248 #, fuzzy msgid "Export tables" msgstr "Export type" -#: libraries/messages.inc.php:1253 +#: libraries/messages.inc.php:1249 #, fuzzy msgid "Export triggers" msgstr "Export type" -#: libraries/messages.inc.php:1254 +#: libraries/messages.inc.php:1250 #, fuzzy msgid "Export views" msgstr "Export type" -#: libraries/messages.inc.php:1255 +#: libraries/messages.inc.php:1251 msgid "XML" msgstr "XML" -#: libraries/messages.inc.php:1259 server_privileges.php:592 +#: libraries/messages.inc.php:1255 server_privileges.php:592 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Note: Setting these options to 0 (zero) removes the limit." -#: libraries/messages.inc.php:1260 +#: libraries/messages.inc.php:1256 msgid "\"zipped\"" msgstr "\"zipped\"" diff --git a/po/bs.po b/po/bs.po index ecda0aa8c..377c4a6c9 100644 --- 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-05-13 11:25+0200\n" +"POT-Creation-Date: 2010-05-13 11:30+0200\n" "PO-Revision-Date: 2010-03-12 09:12+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: bosnian \n" @@ -13,19 +13,19 @@ msgstr "" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:38 browse_foreigners.php:59 -#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:870 +#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:866 #: server_privileges.php:1475 msgid "Show all" msgstr "Prikaži sve" #: browse_foreigners.php:82 db_operations.php:648 -#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:394 -#: libraries/export/pdf.php:147 libraries/messages.inc.php:597 +#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394 +#: libraries/export/pdf.php:147 libraries/messages.inc.php:593 #: pdf_schema.php:283 pdf_schema.php:1123 pdf_schema.php:1139 msgid "Page number:" msgstr "Broj strane:" -#: browse_foreigners.php:132 libraries/messages.inc.php:1242 +#: browse_foreigners.php:132 libraries/messages.inc.php:1238 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -38,7 +38,7 @@ 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/db_links.inc.php:75 -#: libraries/messages.inc.php:841 libraries/tbl_links.inc.php:63 +#: libraries/messages.inc.php:837 libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Pretraživanje" @@ -47,12 +47,12 @@ msgstr "Pretraživanje" #: db_search.php:362 db_structure.php:567 js/messages.php:48 #: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2267 +#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 #: 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 #: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614 -#: libraries/messages.inc.php:361 libraries/replication_gui.lib.php:73 +#: libraries/messages.inc.php:357 libraries/replication_gui.lib.php:73 #: libraries/replication_gui.lib.php:365 libraries/select_server.lib.php:104 #: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477 #: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782 @@ -72,33 +72,33 @@ msgid "Go" msgstr "Kreni" #: browse_foreigners.php:168 browse_foreigners.php:172 -#: libraries/Index.class.php:442 libraries/messages.inc.php:459 +#: libraries/Index.class.php:442 libraries/messages.inc.php:455 #: tbl_tracking.php:320 msgid "Keyname" msgstr "Ime ključa" #: browse_foreigners.php:169 browse_foreigners.php:171 -#: libraries/messages.inc.php:252 server_collations.php:55 +#: libraries/messages.inc.php:248 server_collations.php:55 #: server_collations.php:67 server_engines.php:59 server_status.php:628 msgid "Description" msgstr "Opis" #: browse_foreigners.php:247 browse_foreigners.php:256 #: browse_foreigners.php:268 browse_foreigners.php:276 -#: libraries/messages.inc.php:1218 +#: libraries/messages.inc.php:1214 msgid "Use this value" msgstr "Koristi ovu vrijednost" -#: db_create.php:46 libraries/messages.inc.php:215 +#: db_create.php:46 libraries/messages.inc.php:211 #, fuzzy, php-format msgid "Database %1$s has been created." msgstr "Baza %s je odbačena." -#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:232 +#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:228 msgid "Database comment: " msgstr "Komentar baze:" -#: db_datadict.php:165 libraries/messages.inc.php:1070 +#: db_datadict.php:165 libraries/messages.inc.php:1066 #: libraries/tbl_properties.inc.php:724 pdf_schema.php:1236 #: tbl_operations.php:345 tbl_printview.php:130 msgid "Table comments" @@ -107,7 +107,7 @@ msgstr "Komentari tabele" #: db_datadict.php:174 db_qbe.php:174 libraries/Index.class.php:446 #: libraries/export/htmlword.php:244 libraries/export/latex.php:360 #: libraries/export/odt.php:294 libraries/export/texytext.php:233 -#: libraries/messages.inc.php:317 libraries/tbl_properties.inc.php:99 +#: libraries/messages.inc.php:313 libraries/tbl_properties.inc.php:99 #: libraries/tbl_properties.inc.php:275 pdf_schema.php:1262 #: pdf_schema.php:1283 tbl_change.php:308 tbl_indexes.php:189 #: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135 @@ -119,7 +119,7 @@ msgstr "Polje" #: libraries/db_events.inc.php:31 libraries/db_routines.inc.php:42 #: 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/messages.inc.php:1181 +#: libraries/export/texytext.php:234 libraries/messages.inc.php:1177 #: libraries/tbl_properties.inc.php:100 pdf_schema.php:1263 #: pdf_schema.php:1284 server_privileges.php:2031 tbl_change.php:287 #: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313 @@ -131,7 +131,7 @@ msgstr "Tip" #: db_datadict.php:177 libraries/Index.class.php:449 #: libraries/export/htmlword.php:246 libraries/export/latex.php:360 #: libraries/export/odt.php:300 libraries/export/texytext.php:235 -#: libraries/messages.inc.php:576 libraries/tbl_properties.inc.php:109 +#: libraries/messages.inc.php:572 libraries/tbl_properties.inc.php:109 #: pdf_schema.php:1265 pdf_schema.php:1286 tbl_change.php:323 #: tbl_printview.php:145 tbl_structure.php:181 tbl_tracking.php:276 #: tbl_tracking.php:327 @@ -140,7 +140,7 @@ msgstr "Null" #: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 -#: libraries/export/texytext.php:236 libraries/messages.inc.php:238 +#: libraries/export/texytext.php:236 libraries/messages.inc.php:234 #: libraries/tbl_properties.inc.php:106 pdf_schema.php:1266 #: pdf_schema.php:1287 tbl_printview.php:146 tbl_structure.php:182 #: tbl_tracking.php:277 @@ -149,14 +149,14 @@ msgstr "Podrazumjevano" #: db_datadict.php:182 libraries/export/htmlword.php:249 #: libraries/export/latex.php:362 libraries/export/odt.php:307 -#: libraries/export/texytext.php:238 libraries/messages.inc.php:483 +#: libraries/export/texytext.php:238 libraries/messages.inc.php:479 #: pdf_schema.php:1268 pdf_schema.php:1289 tbl_printview.php:150 msgid "Links to" msgstr "Veze ka" #: db_datadict.php:184 db_printview.php:112 libraries/export/htmlword.php:252 #: libraries/export/latex.php:365 libraries/export/odt.php:312 -#: libraries/export/texytext.php:241 libraries/messages.inc.php:163 +#: libraries/export/texytext.php:241 libraries/messages.inc.php:159 #: libraries/tbl_properties.inc.php:130 pdf_schema.php:1279 #: pdf_schema.php:1290 tbl_printview.php:152 msgid "Comments" @@ -165,7 +165,7 @@ msgstr "Komentari" #: db_datadict.php:267 libraries/Index.class.php:359 #: 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/messages.inc.php:559 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:555 #: libraries/mult_submits.inc.php:263 pdf_schema.php:1344 #: server_privileges.php:1529 server_privileges.php:1540 #: server_privileges.php:1850 server_privileges.php:1855 @@ -177,7 +177,7 @@ msgstr "Ne" #: db_datadict.php:267 libraries/Index.class.php:360 #: libraries/Index.class.php:385 libraries/export/htmlword.php:322 #: libraries/export/latex.php:430 libraries/export/odt.php:368 -#: libraries/export/texytext.php:311 libraries/messages.inc.php:1257 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:1253 #: libraries/mult_submits.inc.php:45 libraries/mult_submits.inc.php:50 #: libraries/mult_submits.inc.php:55 libraries/mult_submits.inc.php:60 #: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:101 @@ -191,112 +191,112 @@ msgstr "Ne" msgid "Yes" msgstr "Da" -#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:670 +#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:666 #: tbl_printview.php:498 msgid "Print" msgstr "Štampaj" -#: db_export.php:29 libraries/messages.inc.php:1226 +#: db_export.php:29 libraries/messages.inc.php:1222 msgid "View dump (schema) of database" msgstr "Prikaži sadržaj (shemu) baze" #: db_export.php:33 db_printview.php:96 db_qbe.php:102 db_structure.php:51 -#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:568 +#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:564 #: navigation.php:346 msgid "No tables found in database." msgstr "Tabele nisu pronađene u bazi." -#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:845 +#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:841 #: server_export.php:27 msgid "Select All" msgstr "Izaberi sve" -#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1188 +#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1184 #: server_export.php:29 msgid "Unselect All" msgstr "ništa" -#: db_operations.php:38 libraries/messages.inc.php:213 tbl_create.php:54 +#: db_operations.php:38 libraries/messages.inc.php:209 tbl_create.php:54 #, fuzzy msgid "The database name is empty!" msgstr "Ima tabele je prazno!" -#: db_operations.php:236 libraries/messages.inc.php:753 +#: db_operations.php:236 libraries/messages.inc.php:749 #, fuzzy, php-format msgid "Database %s has been renamed to %s" msgstr "Tabeli %s promjenjeno ime u %s" -#: db_operations.php:240 libraries/messages.inc.php:178 +#: db_operations.php:240 libraries/messages.inc.php:174 #, fuzzy, php-format msgid "Database %s has been copied to %s" msgstr "Tabela %s je kopirana u %s." -#: db_operations.php:410 libraries/messages.inc.php:236 +#: db_operations.php:410 libraries/messages.inc.php:232 #, fuzzy msgid "Rename database to" msgstr "Promjeni ime tabele u " -#: db_operations.php:415 libraries/messages.inc.php:161 +#: db_operations.php:415 libraries/messages.inc.php:157 #: server_processlist.php:57 msgid "Command" msgstr "Naredba" -#: db_operations.php:425 libraries/messages.inc.php:58 tbl_change.php:1143 +#: db_operations.php:425 libraries/messages.inc.php:54 tbl_change.php:1143 msgid "and then" msgstr "" -#: db_operations.php:451 libraries/messages.inc.php:233 +#: db_operations.php:451 libraries/messages.inc.php:229 #, fuzzy msgid "Copy database to" msgstr "Baza ne postoji" -#: db_operations.php:458 libraries/messages.inc.php:1043 +#: db_operations.php:458 libraries/messages.inc.php:1039 #: tbl_operations.php:526 tbl_tracking.php:388 msgid "Structure only" msgstr "Samo struktura" -#: db_operations.php:459 libraries/messages.inc.php:1041 +#: db_operations.php:459 libraries/messages.inc.php:1037 #: tbl_operations.php:527 tbl_tracking.php:390 msgid "Structure and data" msgstr "Struktura i podatci" -#: db_operations.php:460 libraries/messages.inc.php:229 tbl_operations.php:528 +#: db_operations.php:460 libraries/messages.inc.php:225 tbl_operations.php:528 #: tbl_tracking.php:389 msgid "Data only" msgstr "Samo podaci" -#: db_operations.php:468 libraries/messages.inc.php:186 +#: db_operations.php:468 libraries/messages.inc.php:182 msgid "CREATE DATABASE before copying" msgstr "" #: db_operations.php:471 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 -#: libraries/export/sql.php:82 libraries/messages.inc.php:30 +#: libraries/export/sql.php:82 libraries/messages.inc.php:26 #: tbl_operations.php:534 #, php-format msgid "Add %s" msgstr "" -#: db_operations.php:475 libraries/messages.inc.php:29 tbl_operations.php:297 +#: db_operations.php:475 libraries/messages.inc.php:25 tbl_operations.php:297 #: tbl_operations.php:536 msgid "Add AUTO_INCREMENT value" msgstr "Dodaj AUTO_INCREMENT vrijednost" -#: db_operations.php:479 libraries/messages.inc.php:31 tbl_operations.php:543 +#: db_operations.php:479 libraries/messages.inc.php:27 tbl_operations.php:543 msgid "Add constraints" msgstr "" -#: db_operations.php:492 libraries/messages.inc.php:1059 +#: db_operations.php:492 libraries/messages.inc.php:1055 #, fuzzy msgid "Switch to copied database" msgstr "Pređi na kopiranu tabelu" -#: db_operations.php:533 libraries/messages.inc.php:89 +#: db_operations.php:533 libraries/messages.inc.php:85 msgid "BLOB Repository" msgstr "" #: db_operations.php:536 db_tracking.php:76 libraries/common.lib.php:1350 -#: libraries/messages.inc.php:1037 libraries/server_links.inc.php:49 +#: libraries/messages.inc.php:1033 libraries/server_links.inc.php:49 #: server_processlist.php:59 tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "Status" @@ -308,12 +308,12 @@ msgctxt "BLOB repository" msgid "Enabled" msgstr "Omogućeno" -#: db_operations.php:548 libraries/messages.inc.php:93 +#: db_operations.php:548 libraries/messages.inc.php:89 #, fuzzy msgid "Disable" msgstr "Onemogućeno" -#: db_operations.php:558 libraries/messages.inc.php:90 +#: db_operations.php:558 libraries/messages.inc.php:86 msgid "Damaged" msgstr "" @@ -330,13 +330,13 @@ msgctxt "BLOB repository" msgid "Disabled" msgstr "Onemogućeno" -#: db_operations.php:574 libraries/messages.inc.php:96 +#: db_operations.php:574 libraries/messages.inc.php:92 #, fuzzy msgid "Enable" msgstr "Omogućeno" #: db_operations.php:598 libraries/Index.class.php:448 -#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:158 +#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:154 #: 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:361 @@ -345,7 +345,7 @@ msgstr "Omogućeno" msgid "Collation" msgstr "Sortiranje" -#: db_operations.php:609 libraries/messages.inc.php:742 main.php:316 +#: db_operations.php:609 libraries/messages.inc.php:738 main.php:316 #: pdf_schema.php:34 #, php-format msgid "" @@ -355,58 +355,58 @@ msgstr "" "Dodatne mogućnosti za rad sa povezanim tabelama su isključene. Da biste " "saznali zašto, kliknite %sovde%s." -#: db_operations.php:645 libraries/messages.inc.php:264 pdf_pages.php:528 +#: db_operations.php:645 libraries/messages.inc.php:260 pdf_pages.php:528 msgid "Display PDF schema" msgstr "Prikaži PDF shemu" -#: db_operations.php:661 libraries/messages.inc.php:877 pdf_pages.php:529 +#: db_operations.php:661 libraries/messages.inc.php:873 pdf_pages.php:529 msgid "Show grid" msgstr "Prikaži mrežu" -#: db_operations.php:664 libraries/messages.inc.php:874 pdf_pages.php:530 +#: db_operations.php:664 libraries/messages.inc.php:870 pdf_pages.php:530 msgid "Show color" msgstr "Prikaži boju" -#: db_operations.php:666 libraries/messages.inc.php:998 pdf_pages.php:531 +#: db_operations.php:666 libraries/messages.inc.php:994 pdf_pages.php:531 msgid "Show dimension of tables" msgstr "Prikaži dimenzije tabele" -#: db_operations.php:669 libraries/messages.inc.php:52 pdf_pages.php:532 +#: db_operations.php:669 libraries/messages.inc.php:48 pdf_pages.php:532 msgid "Display all tables with the same width" msgstr "prikaz svih tabela iste širine?" -#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:227 +#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:223 #: pdf_pages.php:533 msgid "Data Dictionary" msgstr "Rečnik podataka" -#: db_operations.php:674 libraries/messages.inc.php:884 pdf_pages.php:534 +#: db_operations.php:674 libraries/messages.inc.php:880 pdf_pages.php:534 msgid "Only show keys" msgstr "" -#: db_operations.php:676 libraries/messages.inc.php:875 pdf_pages.php:535 +#: db_operations.php:676 libraries/messages.inc.php:871 pdf_pages.php:535 msgid "Data Dictionary Format" msgstr "Format riječnika podataka" -#: db_operations.php:678 libraries/messages.inc.php:464 pdf_pages.php:537 +#: db_operations.php:678 libraries/messages.inc.php:460 pdf_pages.php:537 msgid "Landscape" msgstr "Položeno" -#: db_operations.php:679 libraries/messages.inc.php:663 pdf_pages.php:538 +#: db_operations.php:679 libraries/messages.inc.php:659 pdf_pages.php:538 msgid "Portrait" msgstr "Uspravno" -#: db_operations.php:682 libraries/messages.inc.php:599 pdf_pages.php:541 +#: db_operations.php:682 libraries/messages.inc.php:595 pdf_pages.php:541 msgid "Paper size" msgstr "Dimenzije papira" -#: db_operations.php:706 libraries/messages.inc.php:281 +#: db_operations.php:706 libraries/messages.inc.php:277 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 libraries/messages.inc.php:1087 +#: libraries/header.inc.php:126 libraries/messages.inc.php:1083 #: pdf_pages.php:405 server_privileges.php:1626 server_privileges.php:1682 #: server_privileges.php:1946 server_synchronize.php:423 #: server_synchronize.php:866 tbl_tracking.php:592 test/theme.php:75 @@ -414,176 +414,176 @@ msgid "Table" msgstr "Tabela" #: db_printview.php:105 libraries/db_structure.lib.php:56 -#: libraries/messages.inc.php:735 +#: libraries/messages.inc.php:731 msgid "Records" msgstr "Zapisi" #: db_printview.php:109 libraries/db_structure.lib.php:67 -#: libraries/messages.inc.php:1003 tbl_indexes.php:190 +#: libraries/messages.inc.php:999 tbl_indexes.php:190 msgid "Size" msgstr "Veličina" #: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 -#: libraries/export/sql.php:899 libraries/messages.inc.php:436 +#: libraries/export/sql.php:899 libraries/messages.inc.php:432 msgid "in use" msgstr "se koristi" #: db_printview.php:187 libraries/db_info.inc.php:88 -#: libraries/export/sql.php:514 libraries/messages.inc.php:1032 +#: libraries/export/sql.php:514 libraries/messages.inc.php:1028 #: pdf_schema.php:1241 tbl_printview.php:434 tbl_structure.php:810 msgid "Creation" msgstr "Napravljeno" #: db_printview.php:196 libraries/db_info.inc.php:93 -#: libraries/export/sql.php:519 libraries/messages.inc.php:1036 +#: libraries/export/sql.php:519 libraries/messages.inc.php:1032 #: pdf_schema.php:1246 tbl_printview.php:444 tbl_structure.php:818 msgid "Last update" msgstr "Posljednja izmjena" #: db_printview.php:205 libraries/db_info.inc.php:98 -#: libraries/export/sql.php:524 libraries/messages.inc.php:1031 +#: libraries/export/sql.php:524 libraries/messages.inc.php:1027 #: pdf_schema.php:1251 tbl_printview.php:454 tbl_structure.php:826 msgid "Last check" msgstr "Posljednja provjera" -#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1085 +#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1081 #, php-format msgid "%s table(s)" msgstr "%s tabela" #: db_qbe.php:29 libraries/display_tbl.lib.php:1981 -#: libraries/messages.inc.php:1051 libraries/sql_query_form.lib.php:140 +#: libraries/messages.inc.php:1047 libraries/sql_query_form.lib.php:140 #: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131 #: view_operations.php:62 msgid "Your SQL query has been executed successfully" msgstr "Vaš SQL upit je uspešno izvršen" -#: db_qbe.php:42 libraries/messages.inc.php:371 +#: db_qbe.php:42 libraries/messages.inc.php:367 msgid "You have to choose at least one column to display" msgstr "Morate izabrati bar jednu kolonu za prikaz" #: db_qbe.php:200 libraries/db_structure.lib.php:104 -#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1014 +#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1010 msgid "Sort" msgstr "Sortiranje" #: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111 #: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828 -#: libraries/messages.inc.php:69 server_databases.php:170 +#: libraries/messages.inc.php:65 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314 msgid "Ascending" msgstr "Rastući" #: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119 #: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825 -#: libraries/messages.inc.php:251 server_databases.php:170 +#: libraries/messages.inc.php:247 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315 msgid "Descending" msgstr "Opadajući" #: db_qbe.php:264 db_tracking.php:78 libraries/display_tbl.lib.php:308 -#: libraries/messages.inc.php:888 tbl_change.php:277 tbl_tracking.php:597 +#: libraries/messages.inc.php:884 tbl_change.php:277 tbl_tracking.php:597 msgid "Show" msgstr "Prikaži" -#: db_qbe.php:300 libraries/messages.inc.php:202 +#: db_qbe.php:300 libraries/messages.inc.php:198 msgid "Criteria" msgstr "Kriterijum" #: db_qbe.php:353 db_qbe.php:435 db_qbe.php:527 db_qbe.php:558 -#: libraries/messages.inc.php:718 +#: libraries/messages.inc.php:714 msgid "Ins" msgstr "Ins" #: db_qbe.php:357 db_qbe.php:439 db_qbe.php:524 db_qbe.php:555 -#: libraries/messages.inc.php:56 +#: libraries/messages.inc.php:52 msgid "And" msgstr "i" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:529 db_qbe.php:560 -#: libraries/messages.inc.php:717 +#: libraries/messages.inc.php:713 msgid "Del" 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/messages.inc.php:592 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:588 #: libraries/tbl_properties.inc.php:779 server_privileges.php:258 #: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288 msgid "Or" msgstr "ili" -#: db_qbe.php:507 libraries/messages.inc.php:516 +#: db_qbe.php:507 libraries/messages.inc.php:512 msgid "Modify" msgstr "Promijeni" -#: db_qbe.php:584 libraries/messages.inc.php:33 +#: db_qbe.php:584 libraries/messages.inc.php:29 msgid "Add/Delete Criteria Row" msgstr "Dodaj/obriši polje za kriterij" -#: db_qbe.php:596 libraries/messages.inc.php:32 +#: db_qbe.php:596 libraries/messages.inc.php:28 msgid "Add/Delete Field Columns" msgstr "Dodaj/obriši kolonu" -#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1192 +#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1188 msgid "Update Query" msgstr "Ažuriraj upit" -#: db_qbe.php:617 libraries/messages.inc.php:1216 +#: db_qbe.php:617 libraries/messages.inc.php:1212 msgid "Use Tables" msgstr "Koristi tabele" -#: db_qbe.php:640 libraries/messages.inc.php:723 +#: db_qbe.php:640 libraries/messages.inc.php:719 #, php-format msgid "SQL query on database %s:" msgstr "SQL upit na bazi %s:" -#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:823 +#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:819 msgid "Submit Query" msgstr "Izvrši SQL upit" #: db_search.php:68 libraries/auth/config.auth.lib.php:84 #: libraries/auth/config.auth.lib.php:103 #: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52 -#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:26 +#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:22 msgid "Access denied" msgstr "Ulaz nije dozvoljen" -#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:836 +#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:832 msgid "at least one of the words" msgstr "bar jednu od riječi" -#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:837 +#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:833 msgid "all words" msgstr "sve riječi" -#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:838 +#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:834 msgid "the exact phrase" msgstr "tačan izraz" -#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:839 +#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:835 msgid "as regular expression" msgstr "kao regularni izraz" -#: db_search.php:242 libraries/messages.inc.php:840 +#: db_search.php:242 libraries/messages.inc.php:836 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Rezultati pretrage za \"%s\" %s:" -#: db_search.php:260 libraries/messages.inc.php:579 +#: db_search.php:260 libraries/messages.inc.php:575 #, php-format msgid "%s match(es) inside table %s" 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/messages.inc.php:108 +#: db_structure.php:105 libraries/messages.inc.php:104 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468 msgid "Browse" msgstr "Pregled" #: db_search.php:272 libraries/display_tbl.lib.php:1165 -#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:243 +#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:239 #: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406 #: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377 #: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216 @@ -591,45 +591,45 @@ msgstr "Pregled" msgid "Delete" msgstr "Obriši" -#: db_search.php:285 libraries/messages.inc.php:580 +#: db_search.php:285 libraries/messages.inc.php:576 #, php-format msgid "Total: %s match(es)" msgstr "Ukupno: %s pogodaka" -#: db_search.php:299 libraries/messages.inc.php:832 +#: db_search.php:299 libraries/messages.inc.php:828 msgid "Search in database" msgstr "Pretraživanje baze" -#: db_search.php:302 libraries/messages.inc.php:835 +#: db_search.php:302 libraries/messages.inc.php:831 msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgstr "Riječi ili vrednosti koje se traže (džoker: \"%\"):" -#: db_search.php:307 libraries/messages.inc.php:842 +#: db_search.php:307 libraries/messages.inc.php:838 msgid "Find:" msgstr "Traži:" -#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1017 +#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1013 msgid "Words are separated by a space character (\" \")." msgstr "Riječi se odvajaju razmakom (\" \")." -#: db_search.php:325 libraries/messages.inc.php:834 +#: db_search.php:325 libraries/messages.inc.php:830 msgid "Inside table(s):" msgstr "Unutar tabela:" -#: db_search.php:355 libraries/messages.inc.php:833 +#: db_search.php:355 libraries/messages.inc.php:829 msgid "Inside field:" 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/messages.inc.php:431 libraries/sql_query_form.lib.php:334 +#: libraries/messages.inc.php:427 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/db_links.inc.php:63 libraries/export/latex.php:337 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:1048 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:1044 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 #: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269 msgid "Structure" @@ -638,8 +638,8 @@ 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:1642 -#: libraries/db_links.inc.php:100 libraries/messages.inc.php:272 +#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/db_links.inc.php:100 libraries/messages.inc.php:268 #: 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 @@ -649,40 +649,40 @@ 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:1641 -#: libraries/messages.inc.php:284 libraries/mult_submits.inc.php:39 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: libraries/messages.inc.php:280 libraries/mult_submits.inc.php:39 #: libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Isprazni" -#: db_structure.php:316 libraries/messages.inc.php:1075 +#: db_structure.php:316 libraries/messages.inc.php:1071 #: libraries/tbl_links.inc.php:100 #, php-format msgid "Table %s has been emptied" msgstr "Tabela %s je ispražnjena" -#: db_structure.php:326 libraries/messages.inc.php:1229 +#: db_structure.php:326 libraries/messages.inc.php:1225 #: 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/messages.inc.php:1074 +#: db_structure.php:326 libraries/messages.inc.php:1070 #: libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "Tabela %s je odbačena" -#: db_structure.php:333 libraries/messages.inc.php:1128 +#: db_structure.php:333 libraries/messages.inc.php:1124 msgid "Tracking is active." msgstr "" -#: db_structure.php:335 libraries/messages.inc.php:1129 +#: db_structure.php:335 libraries/messages.inc.php:1125 msgid "Tracking is not active." msgstr "" #: db_structure.php:420 libraries/display_tbl.lib.php:1944 -#: libraries/messages.inc.php:1228 +#: libraries/messages.inc.php:1224 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -690,84 +690,84 @@ msgid "" msgstr "" #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 -#: libraries/messages.inc.php:1233 libraries/tbl_info.inc.php:66 +#: libraries/messages.inc.php:1229 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/messages.inc.php:773 libraries/server_links.inc.php:70 +#: libraries/messages.inc.php:769 libraries/server_links.inc.php:70 #: server_replication.php:33 server_replication.php:164 server_status.php:258 #, fuzzy msgid "Replication" msgstr "Relacije" -#: db_structure.php:489 libraries/messages.inc.php:1053 +#: db_structure.php:489 libraries/messages.inc.php:1049 msgid "Sum" msgstr "Ukupno" #: db_structure.php:496 libraries/StorageEngine.class.php:356 -#: libraries/messages.inc.php:239 +#: libraries/messages.inc.php:235 #, 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 #: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086 -#: libraries/messages.inc.php:1243 libraries/mult_submits.inc.php:16 +#: libraries/messages.inc.php:1239 libraries/mult_submits.inc.php:16 #: server_databases.php:346 server_databases.php:351 #: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465 msgid "With selected:" msgstr "Označeno:" #: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: libraries/messages.inc.php:148 server_databases.php:348 +#: libraries/messages.inc.php:144 server_databases.php:348 #: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459 msgid "Check All" msgstr "Označi sve" #: db_structure.php:531 libraries/display_tbl.lib.php:2077 -#: libraries/messages.inc.php:1184 libraries/replication_gui.lib.php:33 +#: libraries/messages.inc.php:1180 libraries/replication_gui.lib.php:33 #: server_databases.php:350 server_privileges.php:533 #: server_privileges.php:1564 tbl_structure.php:463 msgid "Uncheck All" msgstr "nijedno" -#: db_structure.php:536 libraries/messages.inc.php:150 +#: db_structure.php:536 libraries/messages.inc.php:146 msgid "Check tables having overhead" msgstr "" #: db_structure.php:547 db_structure.php:548 db_structure.php:599 -#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:672 +#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:668 #: libraries/mult_submits.inc.php:28 tbl_structure.php:493 #: tbl_structure.php:495 msgid "Print view" msgstr "Za štampu" -#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:153 +#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:149 #: libraries/mult_submits.inc.php:42 tbl_operations.php:579 msgid "Check table" msgstr "Provjeri tabelu" -#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:590 +#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:586 #: libraries/mult_submits.inc.php:47 tbl_operations.php:619 #: tbl_structure.php:710 tbl_structure.php:712 msgid "Optimize table" msgstr "Optimiziraj tabelu" -#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:758 +#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:754 #: libraries/mult_submits.inc.php:52 tbl_operations.php:609 msgid "Repair table" msgstr "Popravi tabelu" -#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:55 +#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:51 #: libraries/mult_submits.inc.php:57 tbl_operations.php:599 msgid "Analyze table" msgstr "Analiziraj tabelu" #: db_structure.php:557 db_structure.php:558 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/messages.inc.php:310 +#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:306 #: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84 #: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109 #: server_privileges.php:1341 setup/frames/menu.inc.php:22 @@ -775,7 +775,7 @@ msgstr "Analiziraj tabelu" msgid "Export" msgstr "Izvoz" -#: db_tracking.php:66 libraries/messages.inc.php:1151 +#: db_tracking.php:66 libraries/messages.inc.php:1147 msgid "Tracked tables" msgstr "" @@ -783,7 +783,7 @@ msgstr "" #: 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/header_printview.inc.php:58 libraries/messages.inc.php:212 +#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:208 #: navigation.php:233 server_databases.php:169 server_privileges.php:1621 #: server_privileges.php:1682 server_privileges.php:1940 #: server_processlist.php:56 server_synchronize.php:1179 @@ -791,81 +791,81 @@ msgstr "" msgid "Database" msgstr "Baza podataka" -#: db_tracking.php:73 libraries/messages.inc.php:1146 +#: db_tracking.php:73 libraries/messages.inc.php:1142 msgid "Last version" msgstr "" -#: db_tracking.php:74 libraries/messages.inc.php:1145 tbl_tracking.php:594 +#: db_tracking.php:74 libraries/messages.inc.php:1141 tbl_tracking.php:594 #, fuzzy msgid "Created" msgstr "Napravi" -#: db_tracking.php:75 libraries/messages.inc.php:1147 tbl_tracking.php:595 +#: db_tracking.php:75 libraries/messages.inc.php:1143 tbl_tracking.php:595 msgid "Updated" msgstr "" #: db_tracking.php:77 libraries/Index.class.php:440 -#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:27 +#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:23 #: server_databases.php:203 server_privileges.php:1503 #: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187 msgid "Action" msgstr "Akcija" -#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:247 +#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:243 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:106 libraries/messages.inc.php:1142 tbl_tracking.php:548 +#: db_tracking.php:106 libraries/messages.inc.php:1138 tbl_tracking.php:548 #: tbl_tracking.php:606 tbl_tracking.php:613 msgid "active" msgstr "" -#: db_tracking.php:108 libraries/messages.inc.php:1143 tbl_tracking.php:550 +#: db_tracking.php:108 libraries/messages.inc.php:1139 tbl_tracking.php:550 #: tbl_tracking.php:608 tbl_tracking.php:610 msgid "not active" msgstr "" -#: db_tracking.php:121 libraries/messages.inc.php:1160 +#: db_tracking.php:121 libraries/messages.inc.php:1156 #, fuzzy msgid "Versions" msgstr "Operacije" -#: db_tracking.php:122 libraries/messages.inc.php:1132 tbl_tracking.php:379 +#: db_tracking.php:122 libraries/messages.inc.php:1128 tbl_tracking.php:379 #: tbl_tracking.php:624 msgid "Tracking report" msgstr "" -#: db_tracking.php:123 libraries/messages.inc.php:1144 tbl_tracking.php:251 +#: db_tracking.php:123 libraries/messages.inc.php:1140 tbl_tracking.php:251 #: tbl_tracking.php:624 #, fuzzy msgid "Structure snapshot" msgstr "Samo struktura" -#: db_tracking.php:152 libraries/messages.inc.php:1154 +#: db_tracking.php:152 libraries/messages.inc.php:1150 msgid "Untracked tables" msgstr "" -#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1153 +#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1149 #: tbl_structure.php:529 tbl_structure.php:531 #, fuzzy msgid "Track table" msgstr "Provjeri tabelu" -#: db_tracking.php:200 libraries/messages.inc.php:1121 +#: db_tracking.php:200 libraries/messages.inc.php:1117 #, fuzzy msgid "Database Log" msgstr "Baza podataka" -#: export.php:62 libraries/messages.inc.php:312 +#: export.php:62 libraries/messages.inc.php:308 msgid "Selected export type has to be saved in file!" msgstr "" -#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:567 +#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:563 #, php-format msgid "Insufficient space to save the file %s." msgstr "Nedovoljno prostora za snimanje datoteke %s." -#: export.php:294 libraries/messages.inc.php:324 +#: export.php:294 libraries/messages.inc.php:320 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -873,17 +873,17 @@ msgstr "" "Datoteka %s već postoji na serveru, promijenite ime datoteke ili uključite " "opciju prepisivanja." -#: export.php:298 export.php:302 libraries/messages.inc.php:562 +#: export.php:298 export.php:302 libraries/messages.inc.php:558 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Veb serveru nije dozvoljeno da sačuva datoteku %s." -#: export.php:629 libraries/messages.inc.php:276 +#: export.php:629 libraries/messages.inc.php:272 #, php-format msgid "Dump has been saved to file %s." msgstr "Sadržaj baze je sačuvan u fajl %s." -#: import.php:60 libraries/messages.inc.php:1202 +#: import.php:60 libraries/messages.inc.php:1198 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation%" @@ -891,21 +891,21 @@ msgid "" msgstr "" #: import.php:279 import.php:332 libraries/File.class.php:849 -#: libraries/File.class.php:961 libraries/messages.inc.php:325 +#: libraries/File.class.php:961 libraries/messages.inc.php:321 msgid "File could not be read" msgstr "Datoteku nije moguće pročitati" #: import.php:287 import.php:296 import.php:315 import.php:324 #: libraries/File.class.php:1031 libraries/File.class.php:1039 #: libraries/File.class.php:1055 libraries/File.class.php:1063 -#: libraries/messages.inc.php:1189 +#: libraries/messages.inc.php:1185 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." msgstr "" -#: import.php:337 libraries/messages.inc.php:547 +#: import.php:337 libraries/messages.inc.php:543 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -913,39 +913,39 @@ msgid "" msgstr "" #: import.php:372 libraries/display_import.lib.php:24 -#: libraries/messages.inc.php:125 +#: libraries/messages.inc.php:121 msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:397 libraries/messages.inc.php:102 +#: import.php:397 libraries/messages.inc.php:98 msgid "The bookmark has been deleted." msgstr "Obilježivač je upravo obrisan." -#: import.php:401 libraries/messages.inc.php:879 +#: import.php:401 libraries/messages.inc.php:875 msgid "Showing bookmark" msgstr "" -#: import.php:403 libraries/messages.inc.php:101 +#: import.php:403 libraries/messages.inc.php:97 #, php-format msgid "Bookmark %s created" msgstr "" -#: import.php:409 import.php:415 libraries/messages.inc.php:407 +#: import.php:409 import.php:415 libraries/messages.inc.php:403 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" -#: import.php:424 libraries/messages.inc.php:1107 +#: import.php:424 libraries/messages.inc.php:1103 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: index.php:190 libraries/messages.inc.php:553 +#: index.php:190 libraries/messages.inc.php:549 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin preferira čitače koji podržavaju okvire." -#: js/messages.php:25 libraries/messages.inc.php:155 +#: js/messages.php:25 libraries/messages.inc.php:151 #: server_synchronize.php:345 server_synchronize.php:357 #: server_synchronize.php:373 server_synchronize.php:380 #: server_synchronize.php:739 server_synchronize.php:767 @@ -953,118 +953,118 @@ msgstr "phpMyAdmin preferira čitače koji podržavaju okvire." msgid "Click to select" msgstr "" -#: js/messages.php:26 libraries/messages.inc.php:156 +#: js/messages.php:26 libraries/messages.inc.php:152 msgid "Click to unselect" msgstr "" #: js/messages.php:27 libraries/import.lib.php:103 -#: libraries/messages.inc.php:550 sql.php:89 +#: libraries/messages.inc.php:546 sql.php:89 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" komanda je onemogućena." -#: js/messages.php:30 libraries/messages.inc.php:270 +#: js/messages.php:30 libraries/messages.inc.php:266 #: libraries/mult_submits.inc.php:258 sql.php:188 msgid "Do you really want to " msgstr "Da li stvarno hoćete da " -#: js/messages.php:31 libraries/messages.inc.php:271 +#: js/messages.php:31 libraries/messages.inc.php:267 #: libraries/mult_submits.inc.php:258 sql.php:172 msgid "You are about to DESTROY a complete database!" msgstr "" -#: js/messages.php:34 libraries/messages.inc.php:94 +#: js/messages.php:34 libraries/messages.inc.php:90 msgid "You are about to DISABLE a BLOB Repository!" msgstr "" -#: js/messages.php:35 libraries/messages.inc.php:91 +#: js/messages.php:35 libraries/messages.inc.php:87 #, php-format msgid "Are you sure you want to disable all BLOB references for database %s?" msgstr "" -#: js/messages.php:38 libraries/messages.inc.php:342 +#: js/messages.php:38 libraries/messages.inc.php:338 msgid "Missing value in the form!" msgstr "Nedostaje vrijednost u obrascu!" -#: js/messages.php:39 libraries/messages.inc.php:570 +#: js/messages.php:39 libraries/messages.inc.php:566 msgid "This is not a number!" msgstr "Ovo nije broj!" -#: js/messages.php:42 libraries/messages.inc.php:380 +#: js/messages.php:42 libraries/messages.inc.php:376 msgid "The host name is empty!" msgstr "Ime hosta je prazno!" -#: js/messages.php:43 libraries/messages.inc.php:1208 +#: js/messages.php:43 libraries/messages.inc.php:1204 msgid "The user name is empty!" msgstr "Ime korisnika nije unijeto!" -#: js/messages.php:44 libraries/messages.inc.php:607 +#: js/messages.php:44 libraries/messages.inc.php:603 #: server_privileges.php:1197 user_password.php:70 msgid "The password is empty!" msgstr "Lozinka je prazna!" -#: js/messages.php:45 libraries/messages.inc.php:609 +#: js/messages.php:45 libraries/messages.inc.php:605 #: server_privileges.php:1195 user_password.php:73 msgid "The passwords aren't the same!" msgstr "Lozinke nisu identične!" -#: js/messages.php:49 libraries/messages.inc.php:123 pmd_general.php:342 +#: js/messages.php:49 libraries/messages.inc.php:119 pmd_general.php:342 #: pmd_general.php:379 msgid "Cancel" msgstr "" -#: js/messages.php:52 libraries/messages.inc.php:514 +#: js/messages.php:52 libraries/messages.inc.php:510 msgid "Modifications have been saved" msgstr "Izmjene su sačuvane" -#: js/messages.php:53 libraries/messages.inc.php:741 +#: js/messages.php:53 libraries/messages.inc.php:737 #, fuzzy msgid "Relation deleted" msgstr "Relacioni pogled" -#: js/messages.php:54 libraries/messages.inc.php:340 +#: js/messages.php:54 libraries/messages.inc.php:336 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:55 libraries/messages.inc.php:434 +#: js/messages.php:55 libraries/messages.inc.php:430 #, fuzzy msgid "Internal relation added" msgstr "Opšte osobine relacija" -#: js/messages.php:56 libraries/messages.inc.php:299 +#: js/messages.php:56 libraries/messages.inc.php:295 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:57 libraries/messages.inc.php:300 +#: js/messages.php:57 libraries/messages.inc.php:296 msgid "Error: relation already exists." msgstr "" -#: js/messages.php:58 libraries/messages.inc.php:302 +#: js/messages.php:58 libraries/messages.inc.php:298 msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:59 libraries/messages.inc.php:351 +#: js/messages.php:59 libraries/messages.inc.php:347 #: libraries/relation.lib.php:107 msgid "General relation features" msgstr "Opšte osobine relacija" -#: js/messages.php:59 libraries/messages.inc.php:260 +#: js/messages.php:59 libraries/messages.inc.php:256 #: libraries/relation.lib.php:101 libraries/relation.lib.php:108 msgid "Disabled" msgstr "Onemogućeno" -#: js/messages.php:60 libraries/messages.inc.php:850 +#: js/messages.php:60 libraries/messages.inc.php:846 msgid "Select referenced key" msgstr "" -#: js/messages.php:61 libraries/messages.inc.php:848 +#: js/messages.php:61 libraries/messages.inc.php:844 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:62 libraries/messages.inc.php:653 +#: js/messages.php:62 libraries/messages.inc.php:649 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:63 libraries/messages.inc.php:142 pmd_general.php:77 +#: js/messages.php:63 libraries/messages.inc.php:138 pmd_general.php:77 #: tbl_relation.php:548 msgid "Choose field to display" msgstr "Izaberi polja za prikaz" @@ -1084,9 +1084,9 @@ msgid "Prev" msgstr "Prethodna" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2332 -#: libraries/common.lib.php:2335 libraries/display_tbl.lib.php:338 -#: libraries/messages.inc.php:543 server_binlog.php:205 server_binlog.php:207 +#: js/messages.php:77 libraries/common.lib.php:2344 +#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: libraries/messages.inc.php:539 server_binlog.php:205 server_binlog.php:207 #: tbl_printview.php:424 tbl_structure.php:802 msgid "Next" msgstr "Slijedeći" @@ -1161,27 +1161,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1543 +#: js/messages.php:97 libraries/common.lib.php:1555 msgid "Jan" msgstr "jan" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1545 +#: js/messages.php:99 libraries/common.lib.php:1557 msgid "Feb" msgstr "feb" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1547 +#: js/messages.php:101 libraries/common.lib.php:1559 msgid "Mar" msgstr "mar" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1549 +#: js/messages.php:103 libraries/common.lib.php:1561 msgid "Apr" msgstr "apr" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1551 +#: js/messages.php:105 libraries/common.lib.php:1563 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1189,37 +1189,37 @@ msgid "May" msgstr "maj" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1553 +#: js/messages.php:107 libraries/common.lib.php:1565 msgid "Jun" msgstr "jun" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1555 +#: js/messages.php:109 libraries/common.lib.php:1567 msgid "Jul" msgstr "jul" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1557 +#: js/messages.php:111 libraries/common.lib.php:1569 msgid "Aug" msgstr "aug" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1559 +#: js/messages.php:113 libraries/common.lib.php:1571 msgid "Sep" msgstr "sep" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1561 +#: js/messages.php:115 libraries/common.lib.php:1573 msgid "Oct" msgstr "okt" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1563 +#: js/messages.php:117 libraries/common.lib.php:1575 msgid "Nov" msgstr "nov" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1565 +#: js/messages.php:119 libraries/common.lib.php:1577 msgid "Dec" msgstr "dec" @@ -1260,37 +1260,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1568 +#: js/messages.php:132 libraries/common.lib.php:1580 msgid "Sun" msgstr "Ned" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1570 +#: js/messages.php:134 libraries/common.lib.php:1582 msgid "Mon" msgstr "Pon" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1572 +#: js/messages.php:136 libraries/common.lib.php:1584 msgid "Tue" msgstr "Uto" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1574 +#: js/messages.php:138 libraries/common.lib.php:1586 msgid "Wed" msgstr "Sri" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1576 +#: js/messages.php:140 libraries/common.lib.php:1588 msgid "Thu" msgstr "Čet" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1578 +#: js/messages.php:142 libraries/common.lib.php:1590 msgid "Fri" msgstr "Pet" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1580 +#: js/messages.php:144 libraries/common.lib.php:1592 msgid "Sat" msgstr "Sub" @@ -1364,76 +1364,76 @@ msgstr "se koristi" msgid "Second" msgstr "u sekundi" -#: libraries/Config.class.php:1015 libraries/messages.inc.php:338 +#: libraries/Config.class.php:1015 libraries/messages.inc.php:334 msgid "Font size" msgstr "" #: libraries/File.class.php:344 libraries/File.class.php:432 #: libraries/File.class.php:569 libraries/File.class.php:708 -#: libraries/messages.inc.php:1201 +#: libraries/messages.inc.php:1197 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.class.php:414 libraries/messages.inc.php:1198 +#: libraries/File.class.php:414 libraries/messages.inc.php:1194 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:417 libraries/messages.inc.php:1197 +#: libraries/File.class.php:417 libraries/messages.inc.php:1193 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:420 libraries/messages.inc.php:1200 +#: libraries/File.class.php:420 libraries/messages.inc.php:1196 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:423 libraries/messages.inc.php:1199 +#: libraries/File.class.php:423 libraries/messages.inc.php:1195 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:426 libraries/messages.inc.php:1195 +#: libraries/File.class.php:426 libraries/messages.inc.php:1191 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:429 libraries/messages.inc.php:1196 +#: libraries/File.class.php:429 libraries/messages.inc.php:1192 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:908 libraries/messages.inc.php:319 +#: libraries/File.class.php:908 libraries/messages.inc.php:315 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "" -#: libraries/Index.class.php:428 libraries/messages.inc.php:554 +#: libraries/Index.class.php:428 libraries/messages.inc.php:550 #: tbl_relation.php:529 msgid "No index defined!" msgstr "Ključ nije definisan!" -#: libraries/Index.class.php:433 libraries/messages.inc.php:411 +#: libraries/Index.class.php:433 libraries/messages.inc.php:407 #: server_databases.php:132 tbl_tracking.php:316 msgid "Indexes" msgstr "Ključevi" -#: libraries/Index.class.php:444 libraries/messages.inc.php:1186 +#: libraries/Index.class.php:444 libraries/messages.inc.php:1182 #: 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:475 tbl_tracking.php:322 msgid "Unique" msgstr "Jedinstveni" -#: libraries/Index.class.php:445 libraries/messages.inc.php:596 +#: libraries/Index.class.php:445 libraries/messages.inc.php:592 #: tbl_tracking.php:323 msgid "Packed" msgstr "" -#: libraries/Index.class.php:447 libraries/messages.inc.php:131 +#: libraries/Index.class.php:447 libraries/messages.inc.php:127 #: tbl_tracking.php:325 msgid "Cardinality" msgstr "Kardinalnost" -#: libraries/Index.class.php:450 libraries/messages.inc.php:162 +#: libraries/Index.class.php:450 libraries/messages.inc.php:158 #: tbl_tracking.php:279 tbl_tracking.php:328 #, fuzzy msgid "Comment" @@ -1442,29 +1442,29 @@ msgstr "Komentari" #: libraries/Index.class.php:466 libraries/common.lib.php:616 #: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:280 pdf_pages.php:280 +#: libraries/messages.inc.php:276 pdf_pages.php:280 #: setup/frames/index.inc.php:124 setup/lib/messages.inc.php:352 #: tbl_row_action.php:69 msgid "Edit" msgstr "Promeni" -#: libraries/Index.class.php:472 libraries/messages.inc.php:666 +#: libraries/Index.class.php:472 libraries/messages.inc.php:662 msgid "The primary key has been dropped" msgstr "Primarni ključ je obrisan" -#: libraries/Index.class.php:476 libraries/messages.inc.php:413 +#: libraries/Index.class.php:476 libraries/messages.inc.php:409 #, php-format msgid "Index %s has been dropped" msgstr "Ključ %s je obrisan" -#: libraries/Index.class.php:576 libraries/messages.inc.php:412 +#: libraries/Index.class.php:576 libraries/messages.inc.php:408 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "" -#: libraries/List_Database.class.php:431 libraries/messages.inc.php:218 +#: libraries/List_Database.class.php:431 libraries/messages.inc.php:214 #: libraries/server_links.inc.php:41 server_databases.php:88 #: server_privileges.php:1621 setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" @@ -1491,85 +1491,85 @@ msgid_plural "%1$d rows inserted." msgstr[0] "" msgstr[1] "" -#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:549 +#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:545 msgid "" "There is no detailed status information available for this storage engine." msgstr "" -#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:291 +#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:287 #, php-format msgid "%s is available on this MySQL server." msgstr "" -#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:292 +#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:288 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "" -#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:294 +#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:290 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "" -#: libraries/Table.class.php:1019 libraries/messages.inc.php:443 +#: libraries/Table.class.php:1019 libraries/messages.inc.php:439 msgid "Invalid database" msgstr "" -#: libraries/Table.class.php:1033 libraries/messages.inc.php:450 +#: libraries/Table.class.php:1033 libraries/messages.inc.php:446 #: tbl_get_field.php:26 msgid "Invalid table name" msgstr "" -#: libraries/Table.class.php:1048 libraries/messages.inc.php:301 +#: libraries/Table.class.php:1048 libraries/messages.inc.php:297 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "" -#: libraries/Table.class.php:1132 libraries/messages.inc.php:754 +#: libraries/Table.class.php:1132 libraries/messages.inc.php:750 #, php-format msgid "Table %s has been renamed to %s" msgstr "Tabeli %s promjenjeno ime u %s" -#: libraries/Theme.class.php:162 libraries/messages.inc.php:1099 +#: libraries/Theme.class.php:162 libraries/messages.inc.php:1095 #, php-format msgid "No valid image path for theme %s found!" msgstr "" -#: libraries/Theme.class.php:384 libraries/messages.inc.php:1097 +#: libraries/Theme.class.php:384 libraries/messages.inc.php:1093 msgid "No preview available." msgstr "" -#: libraries/Theme.class.php:387 libraries/messages.inc.php:1089 +#: libraries/Theme.class.php:387 libraries/messages.inc.php:1085 msgid "take it" msgstr "" -#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1096 +#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1092 #, php-format msgid "Default theme %s not found!" msgstr "" -#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1098 +#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1094 #, php-format msgid "Theme %s not found!" msgstr "" -#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1100 +#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1096 #, php-format msgid "Theme path not found for theme %s!" msgstr "" -#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1101 +#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1097 #: test/theme.php:161 themes.php:21 themes.php:41 msgid "Theme / Style" msgstr "" -#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:172 +#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:168 msgid "Cannot connect: invalid settings." msgstr "" #: libraries/auth/config.auth.lib.php:92 #: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65 -#: libraries/messages.inc.php:1238 test/theme.php:152 +#: libraries/messages.inc.php:1234 test/theme.php:152 #, php-format msgid "Welcome to %s" msgstr "Dobrodošli na %s" @@ -1593,105 +1593,105 @@ msgstr "" "php i uvjerite se da odgovaraju podacima koje ste dobili od administratora " "MySQL servera." -#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:488 +#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:484 msgid "Log in" msgstr "Prijavljivanje" #: libraries/auth/cookie.auth.lib.php:246 -#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:659 +#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:655 #: libraries/navigation_header.inc.php:93 #: libraries/navigation_header.inc.php:95 msgid "phpMyAdmin documentation" msgstr "phpMyAdmin dokumentacija" #: libraries/auth/cookie.auth.lib.php:258 -#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:492 +#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:488 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:493 +#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:489 #, fuzzy msgid "Server:" msgstr "Server" -#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:494 +#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:490 msgid "Username:" msgstr "Korisničko ime:" -#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:491 +#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:487 msgid "Password:" msgstr "Lozinka:" -#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:854 +#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:850 msgid "Server Choice" msgstr "Izbor servera" #: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 -#: libraries/messages.inc.php:177 +#: libraries/messages.inc.php:173 msgid "Cookies must be enabled past this point." msgstr "Kolačići (Cookies) moraju u ovom slučaju biti aktivirani." #: libraries/auth/cookie.auth.lib.php:671 -#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:489 +#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:485 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" #: libraries/auth/cookie.auth.lib.php:675 -#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:544 +#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:540 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" #: libraries/auth/cookie.auth.lib.php:685 #: libraries/auth/cookie.auth.lib.php:687 -#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:126 +#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:122 msgid "Cannot log in to the MySQL server" msgstr "Ne mogu da se prijavim na MySQL server" -#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1245 +#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1241 msgid "Wrong username/password. Access denied." msgstr "Pogrešno korisničko ime/lozinka. Ulaz nije dozvoljen." #: libraries/auth/swekey/swekey.auth.lib.php:118 -#: libraries/messages.inc.php:1057 +#: libraries/messages.inc.php:1053 #, php-format msgid "File %s does not contain any key id" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:157 #: libraries/auth/swekey/swekey.auth.lib.php:180 -#: libraries/messages.inc.php:1056 +#: libraries/messages.inc.php:1052 msgid "Hardware authentication failed" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:166 -#: libraries/messages.inc.php:1058 +#: libraries/messages.inc.php:1054 msgid "No valid authentication key plugged" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:202 -#: libraries/messages.inc.php:1055 +#: libraries/messages.inc.php:1051 msgid "Authenticating..." msgstr "" -#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1230 +#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1226 msgid "View image" msgstr "" -#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:652 +#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:648 msgid "Play audio" msgstr "" -#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1232 +#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1228 msgid "View video" msgstr "" -#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:269 +#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:265 msgid "Download file" msgstr "" -#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:128 +#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:124 msgid "" "Couldn't load the iconv or recode extension needed for charset conversion. " "Either configure PHP to enable these extensions or disable charset " @@ -1703,7 +1703,7 @@ msgstr "" #: libraries/charset_conversion.lib.php:79 #: libraries/charset_conversion.lib.php:90 -#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:130 +#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:126 msgid "" "Couldn't use the iconv, libiconv, or recode_string functions, although the " "necessary extensions appear to be loaded. Check your PHP configuration." @@ -1711,7 +1711,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/messages.inc.php:170 +#: libraries/common.inc.php:583 libraries/messages.inc.php:166 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!" @@ -1744,22 +1744,22 @@ msgstr "" msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:636 libraries/messages.inc.php:448 +#: libraries/common.inc.php:636 libraries/messages.inc.php:444 #, 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/messages.inc.php:856 libraries/select_server.lib.php:41 +#: libraries/messages.inc.php:852 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/messages.inc.php:437 +#: libraries/common.inc.php:823 libraries/messages.inc.php:433 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.lib.php:147 libraries/messages.inc.php:499 +#: libraries/common.lib.php:147 libraries/messages.inc.php:495 #, php-format msgid "Max: %s%s" msgstr "" @@ -1781,7 +1781,7 @@ msgstr "Poslato" #: libraries/common.lib.php:428 libraries/common.lib.php:430 #: libraries/common.lib.php:432 libraries/common.lib.php:448 #: libraries/common.lib.php:450 libraries/dbg/setup.php:25 -#: libraries/display_export.lib.php:164 libraries/messages.inc.php:267 +#: libraries/display_export.lib.php:164 libraries/messages.inc.php:263 #: libraries/relation.lib.php:97 libraries/sql_query_form.lib.php:451 #: libraries/sql_query_form.lib.php:454 main.php:229 pdf_pages.php:37 #: pdf_pages.php:43 pdf_pages.php:49 pdf_pages.php:54 @@ -1791,55 +1791,55 @@ msgstr "Dokumentacija" #: libraries/common.lib.php:581 libraries/core.lib.php:234 #: libraries/core.lib.php:263 libraries/import.lib.php:134 -#: libraries/messages.inc.php:297 pdf_schema.php:32 pdf_schema.php:232 +#: libraries/messages.inc.php:293 pdf_schema.php:32 pdf_schema.php:232 #: tbl_change.php:1027 tbl_operations.php:213 tbl_relation.php:290 #: view_operations.php:62 msgid "Error" msgstr "Greška" #: libraries/common.lib.php:595 libraries/header_printview.inc.php:61 -#: libraries/messages.inc.php:1023 server_processlist.php:60 +#: libraries/messages.inc.php:1019 server_processlist.php:60 #: server_status.php:247 msgid "SQL query" msgstr "SQL upit" -#: libraries/common.lib.php:634 libraries/messages.inc.php:538 +#: libraries/common.lib.php:634 libraries/messages.inc.php:534 msgid "MySQL said: " msgstr "MySQL kaže: " -#: libraries/common.lib.php:667 libraries/messages.inc.php:76 +#: libraries/common.lib.php:667 libraries/messages.inc.php:72 #: pdf_schema.php:241 user_password.php:115 msgid "Back" msgstr "Nazad" -#: libraries/common.lib.php:1177 libraries/messages.inc.php:309 +#: libraries/common.lib.php:1177 libraries/messages.inc.php:305 #: setup/lib/messages.inc.php:353 msgid "Explain SQL" msgstr "Objasni SQL" -#: libraries/common.lib.php:1180 libraries/messages.inc.php:551 +#: libraries/common.lib.php:1180 libraries/messages.inc.php:547 msgid "Skip Explain SQL" msgstr "Preskoči objašnjavanje SQL-a" -#: libraries/common.lib.php:1212 libraries/messages.inc.php:563 +#: libraries/common.lib.php:1212 libraries/messages.inc.php:559 msgid "Without PHP Code" msgstr "bez PHP koda" -#: libraries/common.lib.php:1215 libraries/messages.inc.php:649 +#: libraries/common.lib.php:1215 libraries/messages.inc.php:645 #: setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "Napravi PHP kod" -#: libraries/common.lib.php:1233 libraries/messages.inc.php:737 +#: libraries/common.lib.php:1233 libraries/messages.inc.php:733 #: server_status.php:341 setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "" -#: libraries/common.lib.php:1242 libraries/messages.inc.php:575 +#: libraries/common.lib.php:1242 libraries/messages.inc.php:571 msgid "Skip Validate SQL" msgstr "Preskoči provjeru SQL-a" -#: libraries/common.lib.php:1245 libraries/messages.inc.php:1220 +#: libraries/common.lib.php:1245 libraries/messages.inc.php:1216 #: setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "Provjeri SQL" @@ -1853,11 +1853,11 @@ msgid "Inline" msgstr "" #: libraries/common.lib.php:1332 libraries/common.lib.php:1347 -#: libraries/messages.inc.php:713 +#: libraries/messages.inc.php:709 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1351 libraries/messages.inc.php:1108 +#: libraries/common.lib.php:1351 libraries/messages.inc.php:1104 #: libraries/tbl_triggers.lib.php:28 server_processlist.php:58 msgid "Time" msgstr "Vrijeme" @@ -1891,46 +1891,56 @@ msgstr "PB" msgid "EiB" msgstr "EB" +#. l10n: Thousands separator +#: libraries/common.lib.php:1417 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: libraries/common.lib.php:1419 +msgid "." +msgstr "." + #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1584 +#: libraries/common.lib.php:1596 #: libraries/transformations/text_plain__dateformat.inc.php:28 msgid "%B %d, %Y at %I:%M %p" msgstr "%d. %B %Y. u %H:%M" -#: libraries/common.lib.php:1886 +#: libraries/common.lib.php:1898 #, 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:2301 libraries/common.lib.php:2304 -#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:664 +#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:660 #: server_status.php:608 msgid "Begin" msgstr "Početak" -#: libraries/common.lib.php:2302 libraries/common.lib.php:2305 -#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:665 +#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:661 #: server_binlog.php:168 server_binlog.php:170 msgid "Previous" msgstr "Prethodna" -#: libraries/common.lib.php:2333 libraries/common.lib.php:2336 -#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:289 +#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:285 msgid "End" msgstr "Kraj" -#: libraries/common.lib.php:2409 libraries/messages.inc.php:455 +#: libraries/common.lib.php:2421 libraries/messages.inc.php:451 #, php-format msgid "Jump to database "%s"." msgstr "Pređi na bazu "%s"." -#: libraries/common.lib.php:2429 libraries/messages.inc.php:461 +#: libraries/common.lib.php:2441 libraries/messages.inc.php:457 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/core.lib.php:286 libraries/dbg/setup.php:22 -#: libraries/messages.inc.php:127 +#: libraries/messages.inc.php:123 #, php-format msgid "" "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " @@ -1939,116 +1949,116 @@ msgstr "" "ne mogu da učitam ekstenziju %s,
molim provjerite PHP konfiguraciju" #: libraries/db_events.inc.php:20 libraries/db_events.inc.php:22 -#: libraries/export/sql.php:415 libraries/messages.inc.php:306 +#: libraries/export/sql.php:415 libraries/messages.inc.php:302 msgid "Events" msgstr "" #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 -#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:541 +#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:537 #: libraries/tbl_triggers.lib.php:27 setup/frames/index.inc.php:112 msgid "Name" msgstr "Ime" -#: libraries/db_links.inc.php:45 libraries/messages.inc.php:216 +#: libraries/db_links.inc.php:45 libraries/messages.inc.php:212 #, php-format msgid "Database %s has been dropped." msgstr "Baza %s je odbačena." #: libraries/db_links.inc.php:57 libraries/db_links.inc.php:58 -#: libraries/db_links.inc.php:59 libraries/messages.inc.php:234 +#: libraries/db_links.inc.php:59 libraries/messages.inc.php:230 msgid "Database seems to be empty!" msgstr "" -#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1025 +#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1021 #: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60 #: querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1152 +#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1148 #: libraries/tbl_links.inc.php:69 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:86 libraries/messages.inc.php:719 +#: libraries/db_links.inc.php:86 libraries/messages.inc.php:715 msgid "Query" msgstr "Upit po primeru" -#: libraries/db_links.inc.php:91 libraries/messages.inc.php:253 +#: libraries/db_links.inc.php:91 libraries/messages.inc.php:249 msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:98 libraries/messages.inc.php:397 +#: libraries/db_links.inc.php:98 libraries/messages.inc.php:393 #: libraries/server_links.inc.php:88 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:104 libraries/messages.inc.php:587 +#: libraries/db_links.inc.php:104 libraries/messages.inc.php:583 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" msgstr "Operacije" -#: libraries/db_links.inc.php:111 libraries/messages.inc.php:709 +#: libraries/db_links.inc.php:111 libraries/messages.inc.php:705 #: libraries/server_links.inc.php:66 server_privileges.php:72 #: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117 msgid "Privileges" msgstr "Privilegije" #: libraries/db_routines.inc.php:30 libraries/db_routines.inc.php:32 -#: libraries/messages.inc.php:812 +#: libraries/messages.inc.php:808 msgid "Routines" msgstr "" -#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:811 +#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:807 msgid "Return type" msgstr "" #: libraries/db_structure.lib.php:57 libraries/display_tbl.lib.php:1848 -#: libraries/messages.inc.php:65 +#: libraries/messages.inc.php:61 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "" -#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:593 +#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:589 #: server_databases.php:142 tbl_printview.php:336 tbl_structure.php:683 msgid "Overhead" msgstr "Prekoračenje" #: libraries/dbi/mysql.dbi.lib.php:112 libraries/dbi/mysqli.dbi.lib.php:124 -#: libraries/messages.inc.php:176 +#: libraries/messages.inc.php:172 msgid "Connection for controluser as defined in your configuration failed." msgstr "" #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 -#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:855 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:851 msgid "The server is not responding" msgstr "" #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:1010 +#: libraries/messages.inc.php:1006 msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "" -#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:255 +#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:251 #: tbl_structure.php:609 msgid "Details..." msgstr "" -#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:143 +#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:139 #: main.php:91 user_password.php:111 user_password.php:129 msgid "Change password" msgstr "Promeni lozinku" -#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:561 +#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:557 #: libraries/replication_gui.lib.php:341 server_privileges.php:768 msgid "No Password" msgstr "Nema lozinke" -#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:610 +#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:606 #: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60 #: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335 #: libraries/replication_gui.lib.php:345 server_privileges.php:757 @@ -2057,13 +2067,13 @@ msgstr "Nema lozinke" msgid "Password" msgstr "Lozinka" -#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:806 +#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:802 #: libraries/replication_gui.lib.php:349 libraries/replication_gui.lib.php:352 #: server_privileges.php:776 server_privileges.php:779 msgid "Re-type" msgstr "Ponovite unos" -#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:608 +#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:604 msgid "Password Hashing" msgstr "" @@ -2071,91 +2081,91 @@ msgstr "" msgid "MySQL 4.0 compatible" msgstr "" -#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:353 +#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:349 #: libraries/replication_gui.lib.php:356 server_privileges.php:783 msgid "Generate Password" msgstr "" -#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:352 +#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:348 #: libraries/replication_gui.lib.php:359 server_privileges.php:786 #, fuzzy msgid "Generate" msgstr "Generirao" #: libraries/display_create_database.lib.php:22 -#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:189 +#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:185 msgid "Create new database" msgstr "Napravi novu bazu podataka" -#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:185 +#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:181 msgid "Create" msgstr "Napravi" -#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:564 +#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:560 #: server_privileges.php:74 server_privileges.php:1388 #: server_replication.php:35 msgid "No Privileges" msgstr "Nema privilegija" -#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:445 +#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:441 msgid "Table must have at least one field." msgstr "" -#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:190 +#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:186 #, php-format msgid "Create table on database %s" msgstr "Napravi novu tabelu u bazi %s" -#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:577 +#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:573 msgid "Number of fields" msgstr "" -#: libraries/display_export.lib.php:42 libraries/messages.inc.php:124 +#: libraries/display_export.lib.php:42 libraries/messages.inc.php:120 msgid "Could not load export plugins, please check your installation!" msgstr "" -#: libraries/display_export.lib.php:107 libraries/messages.inc.php:277 +#: libraries/display_export.lib.php:107 libraries/messages.inc.php:273 #, php-format msgid "Dump %s row(s) starting at record # %s" msgstr "Prikaži %s redova počevši od reda %s." -#: libraries/display_export.lib.php:115 libraries/messages.inc.php:274 +#: libraries/display_export.lib.php:115 libraries/messages.inc.php:270 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:125 libraries/messages.inc.php:852 +#: libraries/display_export.lib.php:125 libraries/messages.inc.php:848 #: setup/lib/messages.inc.php:82 msgid "Save as file" msgstr "Sačuvaj kao datoteku" -#: libraries/display_export.lib.php:134 libraries/messages.inc.php:828 +#: libraries/display_export.lib.php:134 libraries/messages.inc.php:824 #, php-format msgid "Save on server in %s directory" msgstr "Sačuvaj na server u direktorijum %s" -#: libraries/display_export.lib.php:142 libraries/messages.inc.php:594 +#: libraries/display_export.lib.php:142 libraries/messages.inc.php:590 #: setup/lib/messages.inc.php:90 msgid "Overwrite existing file(s)" msgstr "Prepiši postojeće fajlove" -#: libraries/display_export.lib.php:148 libraries/messages.inc.php:330 +#: libraries/display_export.lib.php:148 libraries/messages.inc.php:326 msgid "File name template" msgstr "Šablon imena datoteke" -#: libraries/display_export.lib.php:152 libraries/messages.inc.php:327 +#: libraries/display_export.lib.php:152 libraries/messages.inc.php:323 #, fuzzy msgid "server name" msgstr "Ime korisnika" -#: libraries/display_export.lib.php:155 libraries/messages.inc.php:326 +#: libraries/display_export.lib.php:155 libraries/messages.inc.php:322 msgid "database name" msgstr "" -#: libraries/display_export.lib.php:158 libraries/messages.inc.php:328 +#: libraries/display_export.lib.php:158 libraries/messages.inc.php:324 msgid "table name" msgstr "" -#: libraries/display_export.lib.php:162 libraries/messages.inc.php:329 +#: libraries/display_export.lib.php:162 libraries/messages.inc.php:325 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2163,24 +2173,24 @@ msgid "" "3$s. Other text will be kept as is." msgstr "" -#: libraries/display_export.lib.php:202 libraries/messages.inc.php:331 +#: libraries/display_export.lib.php:202 libraries/messages.inc.php:327 msgid "remember template" msgstr "zapamti šablon" #: libraries/display_export.lib.php:210 libraries/display_import.lib.php:178 -#: libraries/display_import.lib.php:191 libraries/messages.inc.php:145 +#: libraries/display_import.lib.php:191 libraries/messages.inc.php:141 #: libraries/sql_query_form.lib.php:549 msgid "Character set of the file:" msgstr "Karakter set datoteke:" -#: libraries/display_export.lib.php:235 libraries/messages.inc.php:166 +#: libraries/display_export.lib.php:235 libraries/messages.inc.php:162 #: setup/lib/messages.inc.php:84 msgid "Compression" 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/messages.inc.php:558 +#: libraries/export/sql.php:868 libraries/messages.inc.php:554 #: libraries/tbl_properties.inc.php:575 server_privileges.php:1836 #: server_processlist.php:75 msgid "None" @@ -2204,467 +2214,467 @@ msgstr "\"gzip-ovano\"" msgid "bzipped" msgstr "\"bzip-ovano\"" -#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1018 +#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1014 msgid "SQL compatibility mode" msgstr "" -#: libraries/display_import.lib.php:67 libraries/messages.inc.php:398 +#: libraries/display_import.lib.php:67 libraries/messages.inc.php:394 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " "browsers." msgstr "" -#: libraries/display_import.lib.php:77 libraries/messages.inc.php:406 +#: libraries/display_import.lib.php:77 libraries/messages.inc.php:402 msgid "The file is being processed, please be patient." msgstr "" -#: libraries/display_import.lib.php:99 libraries/messages.inc.php:408 +#: libraries/display_import.lib.php:99 libraries/messages.inc.php:404 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." msgstr "" -#: libraries/display_import.lib.php:126 libraries/messages.inc.php:333 +#: libraries/display_import.lib.php:126 libraries/messages.inc.php:329 msgid "File to import" msgstr "" -#: libraries/display_import.lib.php:137 libraries/messages.inc.php:486 +#: libraries/display_import.lib.php:137 libraries/messages.inc.php:482 #: libraries/sql_query_form.lib.php:524 msgid "Location of the text file" msgstr "Lokacija tekstualne datoteke" -#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1203 +#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1199 msgid "File uploads are not allowed on this server." msgstr "" -#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1235 +#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1231 #: libraries/sql_query_form.lib.php:533 tbl_change.php:1028 msgid "The directory you set for upload work cannot be reached" msgstr "Direkcija koju ste izabrali za slanje nije dostupna" -#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1236 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1232 #: libraries/sql_query_form.lib.php:536 tbl_change.php:1031 msgid "web server upload directory" msgstr "direkcija za slanje web servera " -#: libraries/display_import.lib.php:212 libraries/messages.inc.php:167 +#: libraries/display_import.lib.php:212 libraries/messages.inc.php:163 #, php-format msgid "Imported file compression will be automatically detected from: %s" msgstr "" -#: libraries/display_import.lib.php:219 libraries/messages.inc.php:600 +#: libraries/display_import.lib.php:219 libraries/messages.inc.php:596 msgid "Partial import" msgstr "" -#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1105 +#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1101 #, php-format msgid "" "Previous import timed out, after resubmitting will continue from position %d." msgstr "" -#: libraries/display_import.lib.php:232 libraries/messages.inc.php:51 +#: libraries/display_import.lib.php:232 libraries/messages.inc.php:47 msgid "" "Allow the interruption of an import in case the script detects it is close " "to the PHP timeout limit. This might be good way to import large files, " "however it can break transactions." msgstr "" -#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1004 +#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1000 #: setup/lib/messages.inc.php:161 msgid "Number of records (queries) to skip from start" msgstr "" -#: libraries/display_import.lib.php:255 libraries/messages.inc.php:396 +#: libraries/display_import.lib.php:255 libraries/messages.inc.php:392 #: setup/lib/messages.inc.php:160 msgid "Format of imported file" msgstr "" #: libraries/display_select_lang.lib.php:45 -#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:465 +#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:461 #: setup/frames/index.inc.php:70 msgid "Language" msgstr "" -#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:447 +#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:443 #, php-format msgid "%d is not valid row number." msgstr "" -#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:814 +#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:810 msgid "row(s) starting from record #" msgstr " redova počev od reda" -#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:817 +#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:813 msgid "horizontal" msgstr "horizontalnom" -#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:816 +#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:812 msgid "horizontal (rotated headers)" msgstr "horizontalnom (rotirana zaglavlja)" -#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:819 +#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:815 msgid "vertical" msgstr "vertikalnom" -#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:818 +#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:814 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "u %s modu i ponovi zaglavlje posle svakog %s reda" -#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:495 +#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:491 msgid "This operation could take a long time. Proceed anyway?" msgstr "" -#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1012 +#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1008 msgid "Sort by key" msgstr "" #: libraries/display_tbl.lib.php:555 libraries/import.lib.php:1082 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:591 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:587 #: tbl_select.php:267 tbl_structure.php:754 #, fuzzy msgid "Options" msgstr "Operacije" #: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:570 -#: libraries/messages.inc.php:601 +#: libraries/messages.inc.php:597 msgid "Partial Texts" msgstr "Dio teksta" #: libraries/display_tbl.lib.php:561 libraries/display_tbl.lib.php:574 -#: libraries/messages.inc.php:346 +#: libraries/messages.inc.php:342 msgid "Full Texts" msgstr "Pun tekst" -#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:739 +#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:735 #, fuzzy msgid "Relational key" msgstr "Relaciona shema" -#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:738 +#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:734 msgid "Relational display field" msgstr "" -#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:872 +#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:868 msgid "Show binary contents" msgstr "" -#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:873 +#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:869 msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:871 +#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:867 msgid "Show binary contents as HEX" msgstr "" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:375 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:371 #: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320 msgid "Hide" msgstr "" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:508 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:504 #: libraries/tbl_properties.inc.php:144 transformation_overview.php:47 msgid "Browser transformation" msgstr "Tranformacije čitača" #: libraries/display_tbl.lib.php:1126 libraries/display_tbl.lib.php:1130 -#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:308 +#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:304 msgid "Execute bookmarked query" msgstr "Izvrši upamćen upit" #: libraries/display_tbl.lib.php:1145 libraries/display_tbl.lib.php:1157 -#: libraries/messages.inc.php:244 +#: libraries/messages.inc.php:240 msgid "The row has been deleted" msgstr "Red je obrisan" #: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056 -#: libraries/messages.inc.php:460 server_processlist.php:71 +#: libraries/messages.inc.php:456 server_processlist.php:71 #: tbl_row_action.php:64 msgid "Kill" msgstr "Obustavi" -#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:849 +#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:845 msgid "in query" msgstr "u upitu" -#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:881 +#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:877 msgid "Showing rows" msgstr "Prikaz zapisa" -#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1113 +#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1109 msgid "total" msgstr "ukupno" -#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:727 +#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:723 #: sql.php:524 #, php-format msgid "Query took %01.4f sec" msgstr "Upit je trajao %01.4f sekundi" -#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:135 +#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:131 #: 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:471 msgid "Change" msgstr "Promijeni" -#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:724 +#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:720 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:671 +#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:667 msgid "Print view (with full texts)" msgstr "" -#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:482 +#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:478 msgid "Link not found" msgstr "Veza nije pronađena" -#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1224 +#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1220 #: main.php:228 #, fuzzy msgid "Version information" msgstr "Podatci o prijavi" -#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:423 +#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:419 msgid "Data home directory" msgstr "" -#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:424 +#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:420 msgid "The common part of the directory path for all InnoDB data files." msgstr "" -#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:422 +#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:418 #, fuzzy msgid "Data files" msgstr "Samo podaci" -#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:418 +#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:414 msgid "Autoextend increment" msgstr "" -#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:419 +#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:415 msgid "" " The increment size for extending the size of an autoextending tablespace " "when it becomes full." msgstr "" -#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:420 +#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:416 msgid "Buffer pool size" msgstr "" -#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:421 +#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:417 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." msgstr "" -#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:112 +#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:108 msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:426 +#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:422 #: server_status.php:306 msgid "InnoDB Status" msgstr "InnoDB status" -#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:113 +#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:109 msgid "Buffer Pool Usage" msgstr "" -#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1114 +#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1110 #: server_databases.php:137 server_databases.php:305 server_status.php:414 #: server_status.php:475 server_status.php:496 tbl_printview.php:351 #: tbl_structure.php:697 msgid "Total" msgstr "Ukupno" -#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:425 +#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:421 msgid "pages" msgstr "" -#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:343 +#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:339 msgid "Free pages" msgstr "" -#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:259 +#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:255 msgid "Dirty pages" msgstr "" -#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:230 +#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:226 msgid "Pages containing data" msgstr "" -#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:598 +#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:594 #, fuzzy msgid "Pages to be flushed" msgstr "Tabela %s je osvežena" -#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:119 +#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:115 msgid "Busy pages" msgstr "" -#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:467 +#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:463 msgid "Latched pages" msgstr "" -#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:111 +#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:107 msgid "Buffer Pool Activity" msgstr "" -#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:731 +#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:727 msgid "Read requests" msgstr "" -#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1244 +#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1240 msgid "Write requests" msgstr "" -#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:115 +#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:111 msgid "Read misses" msgstr "" -#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:117 +#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:113 msgid "Write waits" msgstr "" -#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:114 +#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:110 msgid "Read misses in %" msgstr "" -#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:116 +#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:112 msgid "Write waits in %" msgstr "" -#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:522 +#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:518 msgid "Data pointer size" msgstr "" -#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:523 +#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:519 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." msgstr "" -#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:528 +#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:524 msgid "Automatic recovery mode" msgstr "" -#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:529 +#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:525 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." msgstr "" -#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:527 +#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:523 msgid "Maximum size for temporary sort files" msgstr "" -#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:526 +#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:522 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " "INFILE)." msgstr "" -#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:525 +#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:521 msgid "Maximum size for temporary files on index creation" msgstr "" -#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:524 +#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:520 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " "method." msgstr "" -#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:531 +#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:527 msgid "Repair threads" msgstr "" -#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:530 +#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:526 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." msgstr "" -#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:533 +#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:529 msgid "Sort buffer size" msgstr "" -#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:532 +#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:528 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." msgstr "" -#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:620 +#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:616 msgid "Index cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:619 +#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:615 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." msgstr "" -#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:630 +#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:626 msgid "Record cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:629 +#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:625 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " "to the handle data (.xtd) and row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:624 +#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:620 msgid "Log cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:623 +#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:619 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:628 +#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:624 msgid "Log file threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:627 +#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:623 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:634 +#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:630 msgid "Transaction buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:633 +#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:629 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." msgstr "" -#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:611 +#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:607 msgid "Checkpoint frequency" msgstr "" -#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:612 +#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:608 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." msgstr "" -#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:615 +#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:611 msgid "Data log threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:616 +#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:612 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -2672,48 +2682,48 @@ msgid "" "that can be stored in the database." msgstr "" -#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:618 +#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:614 msgid "Garbage threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:617 +#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:613 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." msgstr "" -#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:622 +#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:618 msgid "Log buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:621 +#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:617 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " "required to write a data log." msgstr "" -#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:613 +#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:609 msgid "Data file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:614 +#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:610 msgid "The grow size of the handle data (.xtd) files." msgstr "" -#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:632 +#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:628 msgid "Row file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:631 +#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:627 msgid "The grow size of the row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:626 +#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:622 msgid "Log file count" msgstr "" -#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:625 +#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:621 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -2723,19 +2733,19 @@ msgstr "" #: libraries/export/htmlword.php:132 libraries/export/odt.php:168 #: libraries/export/sql.php:881 libraries/export/texytext.php:130 -#: libraries/messages.inc.php:275 +#: libraries/messages.inc.php:271 msgid "Dumping data for table" msgstr "Prikaz podataka tabele" #: libraries/export/htmlword.php:185 libraries/export/odt.php:238 #: libraries/export/sql.php:785 libraries/export/texytext.php:177 -#: libraries/messages.inc.php:1086 +#: libraries/messages.inc.php:1082 msgid "Table structure for table" msgstr "Struktura tabele" #: libraries/export/latex.php:125 libraries/export/sql.php:232 #: libraries/export/xml.php:102 libraries/header_printview.inc.php:57 -#: libraries/messages.inc.php:381 libraries/replication_gui.lib.php:63 +#: libraries/messages.inc.php:377 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:170 libraries/replication_gui.lib.php:265 #: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325 #: server_privileges.php:692 server_privileges.php:695 @@ -2747,189 +2757,189 @@ msgstr "Host" #: libraries/export/latex.php:130 libraries/export/sql.php:233 #: libraries/export/xml.php:107 libraries/header_printview.inc.php:59 -#: libraries/messages.inc.php:354 +#: libraries/messages.inc.php:350 msgid "Generation Time" msgstr "Vrijeme kreiranja" #: libraries/export/latex.php:131 libraries/export/sql.php:235 -#: libraries/export/xml.php:108 libraries/messages.inc.php:864 main.php:186 +#: libraries/export/xml.php:108 libraries/messages.inc.php:860 main.php:186 msgid "Server version" msgstr "Verzija servera" #: libraries/export/latex.php:132 libraries/export/sql.php:236 -#: libraries/export/xml.php:109 libraries/messages.inc.php:651 +#: libraries/export/xml.php:109 libraries/messages.inc.php:647 msgid "PHP Version" msgstr "verzija PHP-a" #: libraries/export/latex.php:201 libraries/export/sql.php:868 -#: libraries/messages.inc.php:226 server_databases.php:127 +#: libraries/messages.inc.php:222 server_databases.php:127 #: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317 #: tbl_structure.php:666 msgid "Data" msgstr "Podaci" -#: libraries/export/odt.php:318 libraries/messages.inc.php:506 +#: libraries/export/odt.php:318 libraries/messages.inc.php:502 #: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "MIME-tipovi" -#: libraries/export/sql.php:387 libraries/messages.inc.php:711 +#: libraries/export/sql.php:387 libraries/messages.inc.php:707 #, fuzzy msgid "Procedures" msgstr "Procesi" -#: libraries/export/sql.php:401 libraries/messages.inc.php:348 +#: libraries/export/sql.php:401 libraries/messages.inc.php:344 #, fuzzy msgid "Functions" msgstr "Funkcija" -#: libraries/export/sql.php:618 libraries/messages.inc.php:174 +#: libraries/export/sql.php:618 libraries/messages.inc.php:170 msgid "Constraints for dumped tables" msgstr "" -#: libraries/export/sql.php:627 libraries/messages.inc.php:175 +#: libraries/export/sql.php:627 libraries/messages.inc.php:171 msgid "Constraints for table" msgstr "" -#: libraries/export/sql.php:727 libraries/messages.inc.php:512 +#: libraries/export/sql.php:727 libraries/messages.inc.php:508 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/export/sql.php:739 libraries/messages.inc.php:743 +#: libraries/export/sql.php:739 libraries/messages.inc.php:739 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/export/sql.php:796 libraries/messages.inc.php:1178 +#: libraries/export/sql.php:796 libraries/messages.inc.php:1174 #: libraries/tbl_triggers.lib.php:19 msgid "Triggers" msgstr "" -#: libraries/export/sql.php:808 libraries/messages.inc.php:1046 +#: libraries/export/sql.php:808 libraries/messages.inc.php:1042 #, fuzzy msgid "Structure for view" msgstr "Samo struktura" -#: libraries/export/sql.php:817 libraries/messages.inc.php:1029 +#: libraries/export/sql.php:817 libraries/messages.inc.php:1025 msgid "Stand-in structure for view" msgstr "" #: libraries/footer.inc.php:184 libraries/footer.inc.php:195 -#: libraries/footer.inc.php:198 libraries/messages.inc.php:586 +#: libraries/footer.inc.php:198 libraries/messages.inc.php:582 msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/header.inc.php:115 libraries/messages.inc.php:542 +#: libraries/header.inc.php:115 libraries/messages.inc.php:538 #, fuzzy msgid "New table" msgstr "Nema tabela" #: libraries/header_printview.inc.php:50 libraries/header_printview.inc.php:55 -#: libraries/messages.inc.php:1024 +#: libraries/messages.inc.php:1020 msgid "SQL result" msgstr "SQL rezultat" -#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:350 +#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:346 msgid "Generated by" msgstr "Generirao" #: libraries/header_printview.inc.php:63 libraries/import.lib.php:145 -#: libraries/messages.inc.php:820 navigation.php:652 navigation.php:674 +#: libraries/messages.inc.php:816 navigation.php:652 navigation.php:674 #: server_databases.php:122 tbl_printview.php:394 tbl_structure.php:366 #: tbl_structure.php:778 msgid "Rows" msgstr "Redova" -#: libraries/import.lib.php:150 libraries/messages.inc.php:285 sql.php:520 +#: libraries/import.lib.php:150 libraries/messages.inc.php:281 sql.php:520 #: tbl_change.php:181 tbl_get_field.php:35 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL je vratio prazan rezultat (nula redova)." -#: libraries/import.lib.php:1078 libraries/messages.inc.php:399 +#: libraries/import.lib.php:1078 libraries/messages.inc.php:395 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1079 libraries/messages.inc.php:400 +#: libraries/import.lib.php:1079 libraries/messages.inc.php:396 msgid "View a structure`s contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1080 libraries/messages.inc.php:401 +#: libraries/import.lib.php:1080 libraries/messages.inc.php:397 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1081 libraries/messages.inc.php:402 +#: libraries/import.lib.php:1081 libraries/messages.inc.php:398 msgid "Edit its structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1084 libraries/messages.inc.php:362 +#: libraries/import.lib.php:1084 libraries/messages.inc.php:358 #, fuzzy msgid "Go to database" msgstr "Baza ne postoji" #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:869 +#: libraries/messages.inc.php:865 msgid "settings" msgstr "" -#: libraries/import.lib.php:1106 libraries/messages.inc.php:363 +#: libraries/import.lib.php:1106 libraries/messages.inc.php:359 msgid "Go to table" msgstr "" -#: libraries/import.lib.php:1109 libraries/messages.inc.php:1047 +#: libraries/import.lib.php:1109 libraries/messages.inc.php:1043 #, fuzzy msgid "structure" msgstr "Struktura" -#: libraries/import.lib.php:1115 libraries/messages.inc.php:364 +#: libraries/import.lib.php:1115 libraries/messages.inc.php:360 msgid "Go to view" msgstr "" #: libraries/import/csv.php:58 libraries/import/csv.php:70 #: libraries/import/csv.php:74 libraries/import/csv.php:78 -#: libraries/messages.inc.php:442 +#: libraries/messages.inc.php:438 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "" -#: libraries/import/csv.php:59 libraries/messages.inc.php:323 +#: libraries/import/csv.php:59 libraries/messages.inc.php:319 msgid "Fields terminated by" msgstr "Polja razdvojena sa" -#: libraries/import/csv.php:71 libraries/messages.inc.php:320 +#: libraries/import/csv.php:71 libraries/messages.inc.php:316 msgid "Fields enclosed by" msgstr "Polja ograničena sa" -#: libraries/import/csv.php:75 libraries/messages.inc.php:321 +#: libraries/import/csv.php:75 libraries/messages.inc.php:317 msgid "Fields escaped by" msgstr "Escape karakter      " -#: libraries/import/csv.php:79 libraries/messages.inc.php:481 +#: libraries/import/csv.php:79 libraries/messages.inc.php:477 msgid "Lines terminated by" msgstr "Linije se završavaju sa" -#: libraries/import/csv.php:119 libraries/messages.inc.php:439 +#: libraries/import/csv.php:119 libraries/messages.inc.php:435 #, php-format msgid "Invalid column (%s) specified!" msgstr "" #: libraries/import/csv.php:177 libraries/import/csv.php:424 -#: libraries/messages.inc.php:441 +#: libraries/messages.inc.php:437 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/import/csv.php:312 libraries/messages.inc.php:440 +#: libraries/import/csv.php:312 libraries/messages.inc.php:436 #, php-format msgid "Invalid field count in CSV input on line %d." msgstr "" -#: libraries/import/ldi.php:55 libraries/messages.inc.php:446 +#: libraries/import/ldi.php:55 libraries/messages.inc.php:442 msgid "This plugin does not support compressed imports!" msgstr "" #: libraries/import/xml.php:74 libraries/import/xml.php:130 -#: libraries/messages.inc.php:1247 +#: libraries/messages.inc.php:1243 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -2958,583 +2968,573 @@ msgstr "" msgid "ltr" msgstr "ltr" -#. l10n: Thousands separator -#: libraries/messages.inc.php:21 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: libraries/messages.inc.php:23 -msgid "." -msgstr "." - -#: libraries/messages.inc.php:25 server_status.php:461 +#: libraries/messages.inc.php:21 server_status.php:461 msgid "Aborted" msgstr "Prekinuto" -#: libraries/messages.inc.php:28 main.php:68 +#: libraries/messages.inc.php:24 main.php:68 #, fuzzy msgid "Actions" msgstr "Akcija" -#: libraries/messages.inc.php:34 libraries/tbl_properties.inc.php:780 +#: libraries/messages.inc.php:30 libraries/tbl_properties.inc.php:780 #: tbl_structure.php:543 #, fuzzy, php-format msgid "Add %s field(s)" msgstr "Dodaj novo polje" -#: libraries/messages.inc.php:35 +#: libraries/messages.inc.php:31 msgid "Add custom comment into header (\\n splits lines)" msgstr "" -#: libraries/messages.inc.php:36 +#: libraries/messages.inc.php:32 msgid "Add into comments" msgstr "Dodaj u komentare" -#: libraries/messages.inc.php:37 tbl_structure.php:541 +#: libraries/messages.inc.php:33 tbl_structure.php:541 msgid "Add new field" msgstr "Dodaj novo polje" -#: libraries/messages.inc.php:38 server_privileges.php:1886 +#: libraries/messages.inc.php:34 server_privileges.php:1886 msgid "Add privileges on the following database" msgstr "Dodaj privilegije na slijedećoj bazi" -#: libraries/messages.inc.php:39 server_privileges.php:1907 +#: libraries/messages.inc.php:35 server_privileges.php:1907 msgid "Add privileges on the following table" msgstr "Dodaj privilegije na slijedećoj tabeli" -#: libraries/messages.inc.php:40 tbl_select.php:288 +#: libraries/messages.inc.php:36 tbl_select.php:288 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Dodaj uslove pretraživanja (dio \"WHERE\" upita):" -#: libraries/messages.inc.php:41 tbl_indexes.php:251 +#: libraries/messages.inc.php:37 tbl_indexes.php:251 #, php-format msgid "Add to index  %s column(s)" msgstr "Dodaj u ključ  %s kolona(e)" -#: libraries/messages.inc.php:42 server_privileges.php:1570 +#: libraries/messages.inc.php:38 server_privileges.php:1570 #: server_privileges.php:1594 server_privileges.php:1988 #: server_privileges.php:2177 msgid "Add a new User" msgstr "Dodaj novog korisnika" -#: libraries/messages.inc.php:43 server_privileges.php:931 +#: libraries/messages.inc.php:39 server_privileges.php:931 msgid "You have added a new user." msgstr "Dodali ste novog korisnika." -#: libraries/messages.inc.php:44 server_privileges.php:571 +#: libraries/messages.inc.php:40 server_privileges.php:571 msgid "Administration" msgstr "Administracija" -#: libraries/messages.inc.php:45 tbl_structure.php:557 +#: libraries/messages.inc.php:41 tbl_structure.php:557 #, php-format msgid "After %s" msgstr "Poslije %s" -#: libraries/messages.inc.php:46 tbl_change.php:1147 +#: libraries/messages.inc.php:42 tbl_change.php:1147 msgid "Go back to previous page" msgstr "Nazad na prethodnu stranu" -#: libraries/messages.inc.php:47 tbl_change.php:1148 +#: libraries/messages.inc.php:43 tbl_change.php:1148 msgid "Insert another new row" msgstr "Dodaj još jedan novi red" -#: libraries/messages.inc.php:48 tbl_change.php:1160 +#: libraries/messages.inc.php:44 tbl_change.php:1160 msgid "Edit next row" msgstr "" -#: libraries/messages.inc.php:49 tbl_change.php:1152 +#: libraries/messages.inc.php:45 tbl_change.php:1152 #, fuzzy msgid "Go back to this page" msgstr "Nazad na prethodnu stranu" -#: libraries/messages.inc.php:50 querywindow.php:115 +#: libraries/messages.inc.php:46 querywindow.php:115 msgid "All" msgstr "Sve" -#: libraries/messages.inc.php:53 tbl_operations.php:249 +#: libraries/messages.inc.php:49 tbl_operations.php:249 msgid "Alter table order by" msgstr "Promijeni redoslijed u tabeli" -#: libraries/messages.inc.php:54 tbl_operations.php:660 +#: libraries/messages.inc.php:50 tbl_operations.php:660 msgid "Analyze" msgstr "" -#: libraries/messages.inc.php:57 +#: libraries/messages.inc.php:53 #, fuzzy msgid "and" msgstr "i" -#: libraries/messages.inc.php:59 pmd_general.php:87 +#: libraries/messages.inc.php:55 pmd_general.php:87 msgid "Angular links" msgstr "" -#: libraries/messages.inc.php:60 tbl_structure.php:401 tbl_structure.php:415 +#: libraries/messages.inc.php:56 tbl_structure.php:401 tbl_structure.php:415 #: tbl_structure.php:429 #, php-format msgid "An index has been added on %s" msgstr "Ključ je upravo dodan %s" -#: libraries/messages.inc.php:61 server_privileges.php:1521 +#: libraries/messages.inc.php:57 server_privileges.php:1521 #: server_privileges.php:2123 msgid "Any" msgstr "Bilo koji" -#: libraries/messages.inc.php:62 libraries/replication_gui.lib.php:298 +#: libraries/messages.inc.php:58 libraries/replication_gui.lib.php:298 #: server_privileges.php:725 msgid "Any host" msgstr "Bilo koji host" -#: libraries/messages.inc.php:63 libraries/replication_gui.lib.php:250 +#: libraries/messages.inc.php:59 libraries/replication_gui.lib.php:250 #: server_privileges.php:677 msgid "Any user" msgstr "Bilo koji korisnik" -#: libraries/messages.inc.php:64 server_synchronize.php:449 +#: libraries/messages.inc.php:60 server_synchronize.php:449 #: server_synchronize.php:894 msgid "Apply Selected Changes" msgstr "" -#: libraries/messages.inc.php:66 tbl_structure.php:386 +#: libraries/messages.inc.php:62 tbl_structure.php:386 #, php-format msgid "A primary key has been added on %s" msgstr "Osnovni ključ je upravo dodan %s" -#: libraries/messages.inc.php:67 libraries/mysql_charsets.lib.php:368 +#: libraries/messages.inc.php:63 libraries/mysql_charsets.lib.php:368 msgid "Arabic" msgstr "Arapski" -#: libraries/messages.inc.php:68 libraries/mysql_charsets.lib.php:359 +#: libraries/messages.inc.php:64 libraries/mysql_charsets.lib.php:359 msgid "Armenian" msgstr "Jermenski" -#: libraries/messages.inc.php:70 libraries/tbl_properties.inc.php:394 +#: libraries/messages.inc.php:66 libraries/tbl_properties.inc.php:394 msgid "As defined:" msgstr "" -#: libraries/messages.inc.php:71 tbl_structure.php:556 +#: libraries/messages.inc.php:67 tbl_structure.php:556 msgid "At Beginning of Table" msgstr "Na početku tabele" -#: libraries/messages.inc.php:72 tbl_structure.php:555 +#: libraries/messages.inc.php:68 tbl_structure.php:555 msgid "At End of Table" msgstr "Na kraju tabele" -#: libraries/messages.inc.php:73 libraries/tbl_properties.inc.php:108 +#: libraries/messages.inc.php:69 libraries/tbl_properties.inc.php:108 #: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:144 #: tbl_structure.php:180 msgid "Attributes" msgstr "Atributi" -#: libraries/messages.inc.php:74 pdf_pages.php:303 pdf_pages.php:306 +#: libraries/messages.inc.php:70 pdf_pages.php:303 pdf_pages.php:306 msgid "Automatic layout" msgstr "Automatski raspored" -#: libraries/messages.inc.php:77 libraries/mysql_charsets.lib.php:354 +#: libraries/messages.inc.php:73 libraries/mysql_charsets.lib.php:354 msgid "Baltic" msgstr "Baltički" -#: libraries/messages.inc.php:78 libraries/sqlparser.lib.php:175 +#: libraries/messages.inc.php:74 libraries/sqlparser.lib.php:175 msgid "BEGIN CUT" msgstr "POČETAK REZ" -#: libraries/messages.inc.php:79 libraries/sqlparser.lib.php:179 +#: libraries/messages.inc.php:75 libraries/sqlparser.lib.php:179 msgid "BEGIN RAW" msgstr "POČETAK SIROVO" -#: libraries/messages.inc.php:80 libraries/mysql_charsets.lib.php:201 +#: libraries/messages.inc.php:76 libraries/mysql_charsets.lib.php:201 #: libraries/mysql_charsets.lib.php:402 tbl_change.php:518 msgid "Binary" msgstr "Binarni" -#: libraries/messages.inc.php:81 tbl_change.php:894 +#: libraries/messages.inc.php:77 tbl_change.php:894 msgid "Binary - do not edit" msgstr "Binarni - ne mijenjaj" -#: libraries/messages.inc.php:82 libraries/server_links.inc.php:76 +#: libraries/messages.inc.php:78 libraries/server_links.inc.php:76 #: server_binlog.php:110 server_status.php:253 test/theme.php:121 #, fuzzy msgid "Binary log" msgstr "Binarni" -#: libraries/messages.inc.php:83 server_binlog.php:217 +#: libraries/messages.inc.php:79 server_binlog.php:217 #, fuzzy msgid "Event type" msgstr "Vrsta upita" -#: libraries/messages.inc.php:84 server_binlog.php:220 +#: libraries/messages.inc.php:80 server_binlog.php:220 #, fuzzy msgid "Information" msgstr "Podatci o prijavi" -#: libraries/messages.inc.php:85 server_binlog.php:215 +#: libraries/messages.inc.php:81 server_binlog.php:215 msgid "Log name" msgstr "" -#: libraries/messages.inc.php:86 server_binlog.php:219 +#: libraries/messages.inc.php:82 server_binlog.php:219 msgid "Original position" msgstr "" -#: libraries/messages.inc.php:87 server_binlog.php:216 +#: libraries/messages.inc.php:83 server_binlog.php:216 msgid "Position" msgstr "" -#: libraries/messages.inc.php:88 libraries/replication_gui.lib.php:169 +#: libraries/messages.inc.php:84 libraries/replication_gui.lib.php:169 #: server_binlog.php:218 #, fuzzy msgid "Server ID" msgstr "Server" -#: libraries/messages.inc.php:92 +#: libraries/messages.inc.php:88 #, fuzzy msgctxt "$strBLOBRepositoryDisabled" msgid "Disabled" msgstr "Onemogućeno" -#: libraries/messages.inc.php:95 +#: libraries/messages.inc.php:91 #, fuzzy msgctxt "$strBLOBRepositoryEnabled" msgid "Enabled" msgstr "Omogućeno" -#: libraries/messages.inc.php:97 tbl_change.php:888 +#: libraries/messages.inc.php:93 tbl_change.php:888 msgid "Remove BLOB Repository Reference" msgstr "" -#: libraries/messages.inc.php:98 +#: libraries/messages.inc.php:94 #, fuzzy msgctxt "$strBLOBRepositoryRepair" msgid "Repair" msgstr "Popravi tabelu" -#: libraries/messages.inc.php:99 tbl_change.php:987 +#: libraries/messages.inc.php:95 tbl_change.php:987 msgid "Upload to BLOB repository" msgstr "" -#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:359 +#: libraries/messages.inc.php:96 libraries/sql_query_form.lib.php:359 #: sql.php:677 msgid "Let every user access this bookmark" msgstr "" -#: libraries/messages.inc.php:103 sql.php:671 +#: libraries/messages.inc.php:99 sql.php:671 msgid "Label" msgstr "Naziv" -#: libraries/messages.inc.php:104 libraries/sql_query_form.lib.php:433 +#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:433 msgid "Bookmarked SQL query" msgstr "Obilježen SQL-upit" -#: libraries/messages.inc.php:105 libraries/sql_query_form.lib.php:365 +#: libraries/messages.inc.php:101 libraries/sql_query_form.lib.php:365 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/messages.inc.php:106 libraries/sql_query_form.lib.php:352 +#: libraries/messages.inc.php:102 libraries/sql_query_form.lib.php:352 #: sql.php:665 sql.php:666 sql.php:683 msgid "Bookmark this SQL query" msgstr "Obilježi SQL-upit" -#: libraries/messages.inc.php:107 libraries/sql_query_form.lib.php:466 +#: libraries/messages.inc.php:103 libraries/sql_query_form.lib.php:466 msgid "View only" msgstr "Vidi samo" -#: libraries/messages.inc.php:109 tbl_structure.php:161 +#: libraries/messages.inc.php:105 tbl_structure.php:161 #, fuzzy msgid "Browse distinct values" msgstr "Pregledaj strane vrijednosti" -#: libraries/messages.inc.php:110 tbl_change.php:252 tbl_select.php:27 +#: libraries/messages.inc.php:106 tbl_change.php:252 tbl_select.php:27 #: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34 msgid "Browse foreign values" msgstr "Pregledaj strane vrijednosti" -#: libraries/messages.inc.php:118 libraries/mysql_charsets.lib.php:213 +#: libraries/messages.inc.php:114 libraries/mysql_charsets.lib.php:213 msgid "Bulgarian" msgstr "Bugarski" -#: libraries/messages.inc.php:120 +#: libraries/messages.inc.php:116 msgid "\"bzipped\"" msgstr "\"bzip-ovano\"" -#: libraries/messages.inc.php:122 +#: libraries/messages.inc.php:118 msgid "Calendar" msgstr "" -#: libraries/messages.inc.php:129 tbl_indexes.php:75 +#: libraries/messages.inc.php:125 tbl_indexes.php:75 msgid "Can't rename index to PRIMARY!" msgstr "Ne mogu da promenim ključ u PRIMARY (primarni) !" -#: libraries/messages.inc.php:132 libraries/mysql_charsets.lib.php:223 +#: libraries/messages.inc.php:128 libraries/mysql_charsets.lib.php:223 #: libraries/mysql_charsets.lib.php:409 msgid "case-insensitive" msgstr "Ne razlikuje mala i velika slova" -#: libraries/messages.inc.php:133 libraries/mysql_charsets.lib.php:226 +#: libraries/messages.inc.php:129 libraries/mysql_charsets.lib.php:226 #: libraries/mysql_charsets.lib.php:411 msgid "case-sensitive" msgstr "Razlikuje mala i velika slova" -#: libraries/messages.inc.php:134 libraries/mysql_charsets.lib.php:332 +#: libraries/messages.inc.php:130 libraries/mysql_charsets.lib.php:332 msgid "Central European" msgstr "Centralnoevropski" -#: libraries/messages.inc.php:136 server_privileges.php:1969 +#: libraries/messages.inc.php:132 server_privileges.php:1969 msgid "... keep the old one." msgstr "... sačuvaj stare." -#: libraries/messages.inc.php:137 server_privileges.php:1967 +#: libraries/messages.inc.php:133 server_privileges.php:1967 msgid "Create a new user with the same privileges and ..." msgstr "Napravi novog korisnika sa istim privilegijama i ..." -#: libraries/messages.inc.php:138 server_privileges.php:1972 +#: libraries/messages.inc.php:134 server_privileges.php:1972 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" " ... obriši starog iz tabele korisnika i zatim ponovo učitaj privilegije." -#: libraries/messages.inc.php:139 server_privileges.php:1970 +#: libraries/messages.inc.php:135 server_privileges.php:1970 msgid " ... delete the old one from the user tables." msgstr " ... obriši stare iz tabela korisnika." -#: libraries/messages.inc.php:140 server_privileges.php:1971 +#: libraries/messages.inc.php:136 server_privileges.php:1971 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr " ... obustavi sve privilegije starog korisnika i zatim ga obriši." -#: libraries/messages.inc.php:141 server_privileges.php:1964 +#: libraries/messages.inc.php:137 server_privileges.php:1964 msgid "Change Login Information / Copy User" msgstr "Promeni informacije o prijavi / Kopiraj korisnika" -#: libraries/messages.inc.php:144 libraries/mysql_charsets.lib.php:107 +#: libraries/messages.inc.php:140 libraries/mysql_charsets.lib.php:107 msgid "Charset" msgstr "Karakter set" -#: libraries/messages.inc.php:146 server_collations.php:40 +#: libraries/messages.inc.php:142 server_collations.php:40 msgid "Character Sets and Collations" msgstr "Karakter setovi i sortiranje" -#: libraries/messages.inc.php:147 libraries/server_links.inc.php:57 +#: libraries/messages.inc.php:143 libraries/server_links.inc.php:57 #: test/theme.php:109 msgid "Charsets" msgstr "Kodne strane" -#: libraries/messages.inc.php:149 tbl_operations.php:661 +#: libraries/messages.inc.php:145 tbl_operations.php:661 #, fuzzy msgid "Check" msgstr "Češki" -#: libraries/messages.inc.php:151 server_databases.php:293 +#: libraries/messages.inc.php:147 server_databases.php:293 #: server_databases.php:294 msgid "Check Privileges" msgstr "Provjeri privilegije" -#: libraries/messages.inc.php:152 server_databases.php:289 +#: libraries/messages.inc.php:148 server_databases.php:289 #, php-format msgid "Check privileges for database "%s"." msgstr "Provjeri privilegije za bazu "%s"." -#: libraries/messages.inc.php:154 pdf_pages.php:261 +#: libraries/messages.inc.php:150 pdf_pages.php:261 msgid "Please choose a page to edit" msgstr "Izaberite stranu koju menjate" -#: libraries/messages.inc.php:157 +#: libraries/messages.inc.php:153 msgid "Displaying Column Comments" msgstr "Prikazujem komentare kolone" -#: libraries/messages.inc.php:159 pdf_pages.php:483 view_create.php:148 +#: libraries/messages.inc.php:155 pdf_pages.php:483 view_create.php:148 msgid "Column names" msgstr "Imena kolona" -#: libraries/messages.inc.php:160 server_privileges.php:1685 +#: libraries/messages.inc.php:156 server_privileges.php:1685 msgid "Column-specific privileges" msgstr "Privilegije vezane za kolone" -#: libraries/messages.inc.php:164 +#: libraries/messages.inc.php:160 msgid "MySQL 4.0 compatible" msgstr "" -#: libraries/messages.inc.php:165 +#: libraries/messages.inc.php:161 msgid "Complete inserts" msgstr "Kompletan INSERT (sa imenima polja)" -#: libraries/messages.inc.php:168 +#: libraries/messages.inc.php:164 #, php-format msgid "Could not load default configuration from: \"%1$s\"" msgstr "" -#: libraries/messages.inc.php:169 main.php:306 +#: libraries/messages.inc.php:165 main.php:306 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: libraries/messages.inc.php:171 pdf_schema.php:672 +#: libraries/messages.inc.php:167 pdf_schema.php:672 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Podesite koordinate za tabelu %s" -#: libraries/messages.inc.php:173 server_status.php:433 +#: libraries/messages.inc.php:169 server_status.php:433 msgid "Connections" msgstr "Konekcije" -#: libraries/messages.inc.php:179 tbl_operations.php:509 +#: libraries/messages.inc.php:175 tbl_operations.php:509 msgid "Copy table to (database.table):" msgstr "Kopiraj tabelu u (baza.tabela):" -#: libraries/messages.inc.php:180 tbl_move_copy.php:58 +#: libraries/messages.inc.php:176 tbl_move_copy.php:58 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabela %s je kopirana u %s." -#: libraries/messages.inc.php:181 tbl_move_copy.php:48 +#: libraries/messages.inc.php:177 tbl_move_copy.php:48 msgid "Can't copy table to same one!" msgstr "Ne mogu da kopiram tabelu u samu sebe!" -#: libraries/messages.inc.php:182 server_synchronize.php:94 +#: libraries/messages.inc.php:178 server_synchronize.php:94 msgid "Could not connect to the source" msgstr "" -#: libraries/messages.inc.php:183 server_synchronize.php:97 +#: libraries/messages.inc.php:179 server_synchronize.php:97 msgid "Could not connect to the target" msgstr "" -#: libraries/messages.inc.php:184 server_processlist.php:24 +#: libraries/messages.inc.php:180 server_processlist.php:24 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" "phpMyAdmin nije mogao da prekine proces %s. Vjerovatno je već zatvoren." -#: libraries/messages.inc.php:187 +#: libraries/messages.inc.php:183 #, php-format msgid "Create an index on %s columns" msgstr "Napravi ključ na %s kolona" -#: libraries/messages.inc.php:188 tbl_indexes.php:160 +#: libraries/messages.inc.php:184 tbl_indexes.php:160 msgid "Create a new index" msgstr "Napravi novi ključ" -#: libraries/messages.inc.php:191 pdf_pages.php:297 pmd_pdf.php:114 +#: libraries/messages.inc.php:187 pdf_pages.php:297 pmd_pdf.php:114 msgid "Create a page" msgstr "Napravi novu stranu" -#: libraries/messages.inc.php:192 +#: libraries/messages.inc.php:188 msgid "Creation of PDFs" msgstr "Pravljenje PDF-ova" -#: libraries/messages.inc.php:193 pmd_general.php:74 pmd_general.php:306 +#: libraries/messages.inc.php:189 pmd_general.php:74 pmd_general.php:306 msgid "Create relation" msgstr "" -#: libraries/messages.inc.php:194 pmd_general.php:71 +#: libraries/messages.inc.php:190 pmd_general.php:71 #: server_synchronize.php:429 server_synchronize.php:872 #, fuzzy msgid "Create table" msgstr "Napravi novu stranu" -#: libraries/messages.inc.php:195 +#: libraries/messages.inc.php:191 #, fuzzy msgctxt "$strCreateTableShort" msgid "Create table" msgstr "Napravi novu stranu" -#: libraries/messages.inc.php:196 server_privileges.php:1994 +#: libraries/messages.inc.php:192 server_privileges.php:1994 msgid "Database for user" msgstr "" -#: libraries/messages.inc.php:197 server_privileges.php:1999 +#: libraries/messages.inc.php:193 server_privileges.php:1999 msgid "Create database with same name and grant all privileges" msgstr "" -#: libraries/messages.inc.php:198 +#: libraries/messages.inc.php:194 #, fuzzy msgctxt "$strCreateUserDatabaseNone" msgid "None" msgstr "nema" -#: libraries/messages.inc.php:199 server_privileges.php:2003 +#: libraries/messages.inc.php:195 server_privileges.php:2003 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "Provjeri privilegije za bazu "%s"." -#: libraries/messages.inc.php:200 server_privileges.php:2000 +#: libraries/messages.inc.php:196 server_privileges.php:2000 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: libraries/messages.inc.php:201 +#: libraries/messages.inc.php:197 msgid "Creation/Update/Check dates" msgstr "" -#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:229 +#: libraries/messages.inc.php:199 libraries/mysql_charsets.lib.php:229 msgid "Croatian" msgstr "Hrvatski" -#: libraries/messages.inc.php:204 +#: libraries/messages.inc.php:200 msgid "CSV" msgstr "CSV format" -#: libraries/messages.inc.php:205 libraries/server_synchronize.lib.php:1343 +#: libraries/messages.inc.php:201 libraries/server_synchronize.lib.php:1343 #: libraries/server_synchronize.lib.php:1369 msgid "Current server" msgstr "" -#: libraries/messages.inc.php:206 main.php:159 +#: libraries/messages.inc.php:202 main.php:159 msgid "Custom color" msgstr "" -#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:365 +#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:365 msgid "Cyrillic" msgstr "Ćirilični" -#: libraries/messages.inc.php:208 libraries/mysql_charsets.lib.php:232 +#: libraries/messages.inc.php:204 libraries/mysql_charsets.lib.php:232 msgid "Czech" msgstr "Češki" -#: libraries/messages.inc.php:209 libraries/mysql_charsets.lib.php:383 +#: libraries/messages.inc.php:205 libraries/mysql_charsets.lib.php:383 msgid "Czech-Slovak" msgstr "" -#: libraries/messages.inc.php:211 libraries/mysql_charsets.lib.php:235 +#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:235 msgid "Danish" msgstr "Danski" -#: libraries/messages.inc.php:214 +#: libraries/messages.inc.php:210 msgid "Database export options" msgstr "Opcije za izvoz baze" -#: libraries/messages.inc.php:217 server_synchronize.php:122 +#: libraries/messages.inc.php:213 server_synchronize.php:122 #: server_synchronize.php:125 tbl_create.php:82 tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "" -#: libraries/messages.inc.php:219 server_databases.php:63 +#: libraries/messages.inc.php:215 server_databases.php:63 #, php-format msgid "%s databases have been dropped successfully." msgstr "%s baza je uspješno odbačena." -#: libraries/messages.inc.php:220 libraries/server_synchronize.lib.php:1341 +#: libraries/messages.inc.php:216 libraries/server_synchronize.lib.php:1341 #: server_synchronize.php:1110 #, fuzzy msgid "Source database" msgstr "Pretraživanje baze" -#: libraries/messages.inc.php:221 server_databases.php:88 +#: libraries/messages.inc.php:217 server_databases.php:88 msgid "Databases statistics" msgstr "Statistika baze" -#: libraries/messages.inc.php:222 server_databases.php:362 +#: libraries/messages.inc.php:218 server_databases.php:362 #: server_databases.php:363 msgid "Disable Statistics" msgstr "Isključi statistike" -#: libraries/messages.inc.php:223 server_databases.php:358 +#: libraries/messages.inc.php:219 server_databases.php:358 #: server_databases.php:359 msgid "Enable Statistics" msgstr "Uključi statistike" -#: libraries/messages.inc.php:224 server_databases.php:366 +#: libraries/messages.inc.php:220 server_databases.php:366 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -3542,31 +3542,31 @@ msgstr "" "Napomena: uključivanje statistika može prouzrokovati veliki protok podataka " "između web i MySQL servera." -#: libraries/messages.inc.php:225 libraries/server_synchronize.lib.php:1367 +#: libraries/messages.inc.php:221 libraries/server_synchronize.lib.php:1367 #: server_synchronize.php:1112 #, fuzzy msgid "Target database" msgstr "Pretraživanje baze" -#: libraries/messages.inc.php:228 server_synchronize.php:425 +#: libraries/messages.inc.php:224 server_synchronize.php:425 #: server_synchronize.php:868 msgid "Data Difference" msgstr "" -#: libraries/messages.inc.php:231 server_synchronize.php:272 +#: libraries/messages.inc.php:227 server_synchronize.php:272 msgid "Data Synchronization" msgstr "" -#: libraries/messages.inc.php:235 server_privileges.php:526 +#: libraries/messages.inc.php:231 server_privileges.php:526 #: server_privileges.php:1679 msgid "Database-specific privileges" msgstr "Privilegije vezane za bazu" -#: libraries/messages.inc.php:237 server_privileges.php:2136 +#: libraries/messages.inc.php:233 server_privileges.php:2136 msgid "database-specific" msgstr "Specifično za bazu" -#: libraries/messages.inc.php:240 libraries/tbl_properties.inc.php:106 +#: libraries/messages.inc.php:236 libraries/tbl_properties.inc.php:106 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" @@ -3574,32 +3574,32 @@ msgstr "" "Za podrazumjevanu vrijednost, unesite samo jednu vrijednost, bez kosih crta " "ili navodnika u ovom obliku: a" -#: libraries/messages.inc.php:241 tbl_operations.php:589 +#: libraries/messages.inc.php:237 tbl_operations.php:589 msgid "Defragment table" msgstr "" -#: libraries/messages.inc.php:242 +#: libraries/messages.inc.php:238 msgid "Use delayed inserts" msgstr "" -#: libraries/messages.inc.php:245 server_privileges.php:1243 +#: libraries/messages.inc.php:241 server_privileges.php:1243 msgid "No users selected for deleting!" msgstr "" -#: libraries/messages.inc.php:246 pmd_general.php:372 +#: libraries/messages.inc.php:242 pmd_general.php:372 msgid "Delete relation" msgstr "" -#: libraries/messages.inc.php:248 server_privileges.php:1232 +#: libraries/messages.inc.php:244 server_privileges.php:1232 #, php-format msgid "Deleting %s" msgstr "Brišem %s" -#: libraries/messages.inc.php:249 libraries/sql_query_form.lib.php:388 +#: libraries/messages.inc.php:245 libraries/sql_query_form.lib.php:388 msgid "Delimiter" msgstr "" -#: libraries/messages.inc.php:250 pdf_pages.php:506 +#: libraries/messages.inc.php:246 pdf_pages.php:506 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -3607,151 +3607,151 @@ msgstr "" "Trenutna strana ima reference na tabele koje više ne postoje. Želite li da " "obrišete te reference?" -#: libraries/messages.inc.php:254 pmd_help.php:29 +#: libraries/messages.inc.php:250 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." msgstr "" -#: libraries/messages.inc.php:256 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:252 libraries/mysql_charsets.lib.php:247 msgid "dictionary" msgstr "riječnik" -#: libraries/messages.inc.php:257 libraries/server_synchronize.lib.php:1348 +#: libraries/messages.inc.php:253 libraries/server_synchronize.lib.php:1348 msgid "Difference" msgstr "" -#: libraries/messages.inc.php:258 pmd_general.php:87 +#: libraries/messages.inc.php:254 pmd_general.php:87 msgid "Direct links" msgstr "" -#: libraries/messages.inc.php:261 +#: libraries/messages.inc.php:257 msgid "Disable foreign key checks" msgstr "" -#: libraries/messages.inc.php:262 +#: libraries/messages.inc.php:258 msgid "Display Features" msgstr "Prikaži osobine" -#: libraries/messages.inc.php:263 tbl_select.php:301 +#: libraries/messages.inc.php:259 tbl_select.php:301 msgid "Display order:" msgstr "Redosled prikaza:" -#: libraries/messages.inc.php:265 tbl_select.php:132 +#: libraries/messages.inc.php:261 tbl_select.php:132 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Napravi \"upit po primjeru\" (džoker: \"%\")" -#: libraries/messages.inc.php:266 +#: libraries/messages.inc.php:262 msgid "DocSQL" msgstr "" -#: libraries/messages.inc.php:268 +#: libraries/messages.inc.php:264 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/messages.inc.php:273 server_privileges.php:1579 +#: libraries/messages.inc.php:269 server_privileges.php:1579 #: server_privileges.php:1580 server_privileges.php:1581 msgid "Drop the databases that have the same names as the users." msgstr "Odbaci baze koje se zovu isto kao korisnici." -#: libraries/messages.inc.php:278 tbl_printview.php:382 tbl_structure.php:743 +#: libraries/messages.inc.php:274 tbl_printview.php:382 tbl_structure.php:743 msgid "dynamic" msgstr "dinamički" -#: libraries/messages.inc.php:282 server_privileges.php:1324 +#: libraries/messages.inc.php:278 server_privileges.php:1324 #: server_privileges.php:1610 msgid "Edit Privileges" msgstr "Promijeni privilegije" -#: libraries/messages.inc.php:283 tbl_printview.php:341 tbl_structure.php:688 +#: libraries/messages.inc.php:279 tbl_printview.php:341 tbl_structure.php:688 msgid "Effective" msgstr "Efektivne" -#: libraries/messages.inc.php:286 libraries/relation.lib.php:100 +#: libraries/messages.inc.php:282 libraries/relation.lib.php:100 msgid "Enabled" msgstr "Omogućeno" -#: libraries/messages.inc.php:287 +#: libraries/messages.inc.php:283 msgid "Enclose export in a transaction" msgstr "" -#: libraries/messages.inc.php:288 libraries/sqlparser.lib.php:177 +#: libraries/messages.inc.php:284 libraries/sqlparser.lib.php:177 msgid "END CUT" msgstr "KRAJ REZ" -#: libraries/messages.inc.php:290 libraries/sqlparser.lib.php:183 +#: libraries/messages.inc.php:286 libraries/sqlparser.lib.php:183 msgid "END RAW" msgstr "KRAJ SIROVO" -#: libraries/messages.inc.php:293 libraries/server_links.inc.php:61 +#: libraries/messages.inc.php:289 libraries/server_links.inc.php:61 #: test/theme.php:113 msgid "Engines" msgstr "" -#: libraries/messages.inc.php:295 libraries/mysql_charsets.lib.php:238 +#: libraries/messages.inc.php:291 libraries/mysql_charsets.lib.php:238 msgid "English" msgstr "Engleski" -#: libraries/messages.inc.php:296 server_privileges.php:393 +#: libraries/messages.inc.php:292 server_privileges.php:393 #: server_privileges.php:535 server_privileges.php:1501 msgid " Note: MySQL privilege names are expressed in English " msgstr " Napomena: MySQL imena privilegija moraju da budu na engleskom " -#: libraries/messages.inc.php:298 libraries/zip_extension.lib.php:49 +#: libraries/messages.inc.php:294 libraries/zip_extension.lib.php:49 #: libraries/zip_extension.lib.php:51 libraries/zip_extension.lib.php:66 msgid "Error in ZIP archive:" msgstr "" -#: libraries/messages.inc.php:303 libraries/mysql_charsets.lib.php:241 +#: libraries/messages.inc.php:299 libraries/mysql_charsets.lib.php:241 msgid "Esperanto" msgstr "" -#: libraries/messages.inc.php:304 libraries/mysql_charsets.lib.php:244 +#: libraries/messages.inc.php:300 libraries/mysql_charsets.lib.php:244 msgid "Estonian" msgstr "Estonski" -#: libraries/messages.inc.php:305 libraries/tbl_triggers.lib.php:29 +#: libraries/messages.inc.php:301 libraries/tbl_triggers.lib.php:29 #, fuzzy msgid "Event" msgstr "Poslato" -#: libraries/messages.inc.php:307 +#: libraries/messages.inc.php:303 msgid "Excel edition" msgstr "" -#: libraries/messages.inc.php:311 pmd_pdf.php:85 +#: libraries/messages.inc.php:307 pmd_pdf.php:85 msgid "Export/Import to scale" msgstr "" -#: libraries/messages.inc.php:313 +#: libraries/messages.inc.php:309 msgid "Extended inserts" msgstr "Prošireni INSERT" -#: libraries/messages.inc.php:314 pdf_schema.php:1267 pdf_schema.php:1288 +#: libraries/messages.inc.php:310 pdf_schema.php:1267 pdf_schema.php:1288 #: tbl_printview.php:147 tbl_structure.php:183 tbl_tracking.php:278 msgid "Extra" msgstr "Dodatno" -#: libraries/messages.inc.php:316 server_status.php:447 +#: libraries/messages.inc.php:312 server_status.php:447 msgid "Failed attempts" msgstr "Neuspelih pokušaja" -#: libraries/messages.inc.php:318 tbl_structure.php:375 +#: libraries/messages.inc.php:314 tbl_structure.php:375 #, php-format msgid "Field %s has been dropped" msgstr "Polje %s je obrisano" -#: libraries/messages.inc.php:322 libraries/sql_query_form.lib.php:317 +#: libraries/messages.inc.php:318 libraries/sql_query_form.lib.php:317 msgid "Fields" msgstr "Polja" -#: libraries/messages.inc.php:332 server_binlog.php:136 +#: libraries/messages.inc.php:328 server_binlog.php:136 #, fuzzy msgid "Files" msgstr "Polja" -#: libraries/messages.inc.php:334 server_privileges.php:1597 +#: libraries/messages.inc.php:330 server_privileges.php:1597 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -3764,220 +3764,220 @@ msgstr "" "server koristi ako su izvršene ručne izmjene. U tom slučaju %sponovo " "učitajte privilegije%s pre nego što nastavite." -#: libraries/messages.inc.php:335 server_status.php:289 +#: libraries/messages.inc.php:331 server_status.php:289 msgid "Flush query cache" msgstr "" -#: libraries/messages.inc.php:336 +#: libraries/messages.inc.php:332 msgid "Flush the table (\"FLUSH\")" msgstr "Osvježi tabelu (\"FLUSH\")" -#: libraries/messages.inc.php:337 server_status.php:271 +#: libraries/messages.inc.php:333 server_status.php:271 msgid "Flush (close) all tables" msgstr "" -#: libraries/messages.inc.php:339 tbl_relation.php:279 +#: libraries/messages.inc.php:335 tbl_relation.php:279 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" -#: libraries/messages.inc.php:341 setup/lib/messages.inc.php:88 +#: libraries/messages.inc.php:337 setup/lib/messages.inc.php:88 #: tbl_printview.php:376 tbl_structure.php:738 msgid "Format" msgstr "Format" -#: libraries/messages.inc.php:344 server_replication.php:325 +#: libraries/messages.inc.php:340 server_replication.php:325 #, fuzzy msgid "Full start" msgstr "Tekst ključ" -#: libraries/messages.inc.php:345 server_replication.php:325 +#: libraries/messages.inc.php:341 server_replication.php:325 msgid "Full stop" msgstr "" -#: libraries/messages.inc.php:347 tbl_change.php:282 tbl_change.php:320 +#: libraries/messages.inc.php:343 tbl_change.php:282 tbl_change.php:320 msgid "Function" msgstr "Funkcija" -#: libraries/messages.inc.php:355 libraries/mysql_charsets.lib.php:377 +#: libraries/messages.inc.php:351 libraries/mysql_charsets.lib.php:377 #, fuzzy msgid "Georgian" msgstr "Njemački" -#: libraries/messages.inc.php:356 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:352 libraries/mysql_charsets.lib.php:247 #: libraries/mysql_charsets.lib.php:250 msgid "German" msgstr "Njemački" -#: libraries/messages.inc.php:357 themes.php:42 +#: libraries/messages.inc.php:353 themes.php:42 msgid "Get more themes!" msgstr "" -#: libraries/messages.inc.php:358 server_privileges.php:2134 +#: libraries/messages.inc.php:354 server_privileges.php:2134 msgid "global" msgstr "globalno" -#: libraries/messages.inc.php:359 server_privileges.php:524 +#: libraries/messages.inc.php:355 server_privileges.php:524 #: server_privileges.php:1500 msgid "Global privileges" msgstr "Globalne privilegije" -#: libraries/messages.inc.php:360 server_variables.php:55 +#: libraries/messages.inc.php:356 server_variables.php:55 #: server_variables.php:89 msgid "Global value" msgstr "Globalna vrednost" -#: libraries/messages.inc.php:365 server_privileges.php:1502 +#: libraries/messages.inc.php:361 server_privileges.php:1502 #: server_privileges.php:1684 server_privileges.php:2033 msgid "Grant" msgstr "Omogući" -#: libraries/messages.inc.php:366 libraries/mysql_charsets.lib.php:380 +#: libraries/messages.inc.php:362 libraries/mysql_charsets.lib.php:380 msgid "Greek" msgstr "Grčki" -#: libraries/messages.inc.php:367 +#: libraries/messages.inc.php:363 msgid "\"gzipped\"" msgstr "\"gzip-ovano\"" -#: libraries/messages.inc.php:369 server_status.php:250 +#: libraries/messages.inc.php:365 server_status.php:250 msgid "Handler" msgstr "" -#: libraries/messages.inc.php:370 server_synchronize.php:464 +#: libraries/messages.inc.php:366 server_synchronize.php:464 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: libraries/messages.inc.php:372 libraries/mysql_charsets.lib.php:374 +#: libraries/messages.inc.php:368 libraries/mysql_charsets.lib.php:374 msgid "Hebrew" msgstr "Jevrejski" -#: libraries/messages.inc.php:373 pmd_general.php:83 +#: libraries/messages.inc.php:369 pmd_general.php:83 msgid "Help" msgstr "" -#: libraries/messages.inc.php:374 +#: libraries/messages.inc.php:370 msgid "Use hexadecimal for BLOB" msgstr "" -#: libraries/messages.inc.php:376 pmd_general.php:120 +#: libraries/messages.inc.php:372 pmd_general.php:120 #, fuzzy msgid "Hide/Show all" msgstr "Prikaži sve" -#: libraries/messages.inc.php:377 pmd_general.php:124 +#: libraries/messages.inc.php:373 pmd_general.php:124 msgid "Hide/Show Tables with no relation" msgstr "" -#: libraries/messages.inc.php:378 libraries/navigation_header.inc.php:54 +#: libraries/messages.inc.php:374 libraries/navigation_header.inc.php:54 #: libraries/navigation_header.inc.php:57 #: libraries/navigation_header.inc.php:58 msgid "Home" msgstr "Početna strana" -#: libraries/messages.inc.php:379 main.php:233 +#: libraries/messages.inc.php:375 main.php:233 msgid "Official Homepage" msgstr "phpMyAdmin veb sajt" -#: libraries/messages.inc.php:382 libraries/replication_gui.lib.php:327 +#: libraries/messages.inc.php:378 libraries/replication_gui.lib.php:327 #: server_privileges.php:753 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/messages.inc.php:383 +#: libraries/messages.inc.php:379 msgid "Microsoft Word 2000" msgstr "" -#: libraries/messages.inc.php:384 libraries/mysql_charsets.lib.php:253 +#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:253 msgid "Hungarian" msgstr "Mađarski" -#: libraries/messages.inc.php:386 libraries/mysql_charsets.lib.php:256 +#: libraries/messages.inc.php:382 libraries/mysql_charsets.lib.php:256 msgid "Icelandic" msgstr "" -#: libraries/messages.inc.php:387 server_processlist.php:53 +#: libraries/messages.inc.php:383 server_processlist.php:53 msgid "ID" msgstr "ID" -#: libraries/messages.inc.php:388 libraries/mult_submits.inc.php:108 +#: libraries/messages.inc.php:384 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:479 msgid "Fulltext" msgstr "Tekst ključ" -#: libraries/messages.inc.php:389 +#: libraries/messages.inc.php:385 msgid "Ignore duplicate rows" msgstr "" -#: libraries/messages.inc.php:390 tbl_change.php:302 tbl_indexes.php:200 +#: libraries/messages.inc.php:386 tbl_change.php:302 tbl_indexes.php:200 #: tbl_indexes.php:225 msgid "Ignore" msgstr "Ignoriši" -#: libraries/messages.inc.php:391 +#: libraries/messages.inc.php:387 msgid "Use ignore inserts" msgstr "" -#: libraries/messages.inc.php:392 +#: libraries/messages.inc.php:388 msgid "Column names in first row" msgstr "" -#: libraries/messages.inc.php:393 +#: libraries/messages.inc.php:389 msgid "Do not import empty rows" msgstr "" -#: libraries/messages.inc.php:394 pmd_general.php:104 +#: libraries/messages.inc.php:390 pmd_general.php:104 msgid "Import/Export coordinates for PDF schema" msgstr "" -#: libraries/messages.inc.php:395 querywindow.php:104 +#: libraries/messages.inc.php:391 querywindow.php:104 msgid "Import files" msgstr "Uvoz fajlova" -#: libraries/messages.inc.php:403 +#: libraries/messages.inc.php:399 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/messages.inc.php:404 libraries/messages.inc.php:584 +#: libraries/messages.inc.php:400 libraries/messages.inc.php:580 msgid "Open Document Spreadsheet" msgstr "" -#: libraries/messages.inc.php:405 +#: libraries/messages.inc.php:401 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/messages.inc.php:409 +#: libraries/messages.inc.php:405 msgid "Excel 97-2003 XLS Workbook" msgstr "" -#: libraries/messages.inc.php:410 +#: libraries/messages.inc.php:406 msgid "Excel 2007 XLSX Workbook" msgstr "" -#: libraries/messages.inc.php:414 libraries/mult_submits.inc.php:98 +#: libraries/messages.inc.php:410 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:476 tbl_structure.php:674 msgid "Index" msgstr "Ključ" -#: libraries/messages.inc.php:415 tbl_indexes.php:168 +#: libraries/messages.inc.php:411 tbl_indexes.php:168 msgid "Index name:" msgstr "Ime ključa :" -#: libraries/messages.inc.php:416 tbl_indexes.php:174 +#: libraries/messages.inc.php:412 tbl_indexes.php:174 msgid "Index type:" msgstr "Tip ključa :" -#: libraries/messages.inc.php:417 sql.php:639 +#: libraries/messages.inc.php:413 sql.php:639 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: libraries/messages.inc.php:427 main.php:266 +#: libraries/messages.inc.php:423 main.php:266 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -3989,195 +3989,195 @@ msgstr "" "ovim podešavanjima, otvoren je za hakovanje, i zaista treba da ispravite " "ovaj sigurnosni rizik." -#: libraries/messages.inc.php:428 tbl_change.php:1130 +#: libraries/messages.inc.php:424 tbl_change.php:1130 msgid "Insert as new row" msgstr "Unesi kao novi red" -#: libraries/messages.inc.php:429 sql.php:496 tbl_replace.php:386 +#: libraries/messages.inc.php:425 sql.php:496 tbl_replace.php:386 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: libraries/messages.inc.php:430 tbl_change.php:1131 +#: libraries/messages.inc.php:426 tbl_change.php:1131 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/messages.inc.php:432 main.php:139 +#: libraries/messages.inc.php:428 main.php:139 msgid "Interface" msgstr "" -#: libraries/messages.inc.php:433 tbl_relation.php:407 +#: libraries/messages.inc.php:429 tbl_relation.php:407 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: libraries/messages.inc.php:435 pdf_pages.php:303 +#: libraries/messages.inc.php:431 pdf_pages.php:303 msgid "Internal relations" msgstr "" -#: libraries/messages.inc.php:438 tbl_indexes.php:256 tbl_structure.php:590 +#: libraries/messages.inc.php:434 tbl_indexes.php:256 tbl_structure.php:590 #: tbl_structure.php:601 msgid "Column count has to be larger than zero." msgstr "" -#: libraries/messages.inc.php:444 libraries/tbl_properties.inc.php:784 +#: libraries/messages.inc.php:440 libraries/tbl_properties.inc.php:784 #: tbl_structure.php:537 msgid "You have to add at least one field." msgstr "" -#: libraries/messages.inc.php:449 +#: libraries/messages.inc.php:445 #, php-format msgid "Invalid server index: \"%s\"" msgstr "" -#: libraries/messages.inc.php:452 libraries/mysql_charsets.lib.php:259 +#: libraries/messages.inc.php:448 libraries/mysql_charsets.lib.php:259 #: libraries/mysql_charsets.lib.php:349 msgid "Japanese" msgstr "Japanski" -#: libraries/messages.inc.php:453 main.php:331 +#: libraries/messages.inc.php:449 main.php:331 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: libraries/messages.inc.php:454 server_status.php:257 +#: libraries/messages.inc.php:450 server_status.php:257 msgid "Joins" msgstr "" -#: libraries/messages.inc.php:457 server_privileges.php:763 +#: libraries/messages.inc.php:453 server_privileges.php:763 msgid "Do not change the password" msgstr "Nemoj da mijenjaš lozinku" -#: libraries/messages.inc.php:458 server_status.php:256 +#: libraries/messages.inc.php:454 server_status.php:256 msgid "Key cache" msgstr "" -#: libraries/messages.inc.php:462 libraries/mysql_charsets.lib.php:268 +#: libraries/messages.inc.php:458 libraries/mysql_charsets.lib.php:268 #: libraries/mysql_charsets.lib.php:371 msgid "Korean" msgstr "Korejski" -#: libraries/messages.inc.php:466 libraries/select_lang.lib.php:480 +#: libraries/messages.inc.php:462 libraries/select_lang.lib.php:480 #: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492 #, php-format msgid "Unknown language: %1$s." msgstr "" -#: libraries/messages.inc.php:468 +#: libraries/messages.inc.php:464 #, fuzzy msgid "Table caption" msgstr "Opcije tabele" -#: libraries/messages.inc.php:469 +#: libraries/messages.inc.php:465 msgid "Content of table __TABLE__" msgstr "" -#: libraries/messages.inc.php:470 +#: libraries/messages.inc.php:466 msgid "Continued table caption" msgstr "" -#: libraries/messages.inc.php:471 +#: libraries/messages.inc.php:467 msgid "(continued)" msgstr "" -#: libraries/messages.inc.php:472 +#: libraries/messages.inc.php:468 msgid "Include table caption" msgstr "" -#: libraries/messages.inc.php:473 +#: libraries/messages.inc.php:469 msgid "Label key" msgstr "" -#: libraries/messages.inc.php:474 +#: libraries/messages.inc.php:470 msgid "LaTeX" msgstr "LaTeX" -#: libraries/messages.inc.php:475 +#: libraries/messages.inc.php:471 msgid "Structure of table __TABLE__" msgstr "" -#: libraries/messages.inc.php:476 libraries/mysql_charsets.lib.php:262 +#: libraries/messages.inc.php:472 libraries/mysql_charsets.lib.php:262 msgid "Latvian" msgstr "" -#: libraries/messages.inc.php:477 +#: libraries/messages.inc.php:473 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/messages.inc.php:478 +#: libraries/messages.inc.php:474 msgid "Use LOCAL keyword" msgstr "" -#: libraries/messages.inc.php:479 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:475 libraries/tbl_properties.inc.php:105 msgid "Length/Values" msgstr "Dužina/Vrijednost*" -#: libraries/messages.inc.php:480 tbl_select.php:295 +#: libraries/messages.inc.php:476 tbl_select.php:295 msgid "Number of rows per page" msgstr "Broj redova po strani" -#: libraries/messages.inc.php:484 libraries/mysql_charsets.lib.php:265 +#: libraries/messages.inc.php:480 libraries/mysql_charsets.lib.php:265 msgid "Lithuanian" msgstr "Litvanski" -#: libraries/messages.inc.php:485 libraries/replication_gui.lib.php:302 +#: libraries/messages.inc.php:481 libraries/replication_gui.lib.php:302 #: server_privileges.php:729 msgid "Local" msgstr "Lokalni" -#: libraries/messages.inc.php:487 server_privileges.php:669 +#: libraries/messages.inc.php:483 server_privileges.php:669 msgid "Login Information" msgstr "Podatci o prijavi" -#: libraries/messages.inc.php:490 libraries/navigation_header.inc.php:67 +#: libraries/messages.inc.php:486 libraries/navigation_header.inc.php:67 #: libraries/navigation_header.inc.php:70 #: libraries/navigation_header.inc.php:71 main.php:99 msgid "Log out" msgstr "Odjavljivanje" -#: libraries/messages.inc.php:497 server_status.php:440 +#: libraries/messages.inc.php:493 server_status.php:440 msgid "max. concurrent connections" msgstr "" -#: libraries/messages.inc.php:498 +#: libraries/messages.inc.php:494 msgid "Maximal length of created query" msgstr "" -#: libraries/messages.inc.php:500 main.php:282 +#: libraries/messages.inc.php:496 main.php:282 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " "split strings correctly and it may result in unexpected results." msgstr "" -#: libraries/messages.inc.php:501 main.php:274 +#: libraries/messages.inc.php:497 main.php:274 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " "corrupted!" msgstr "" -#: libraries/messages.inc.php:502 +#: libraries/messages.inc.php:498 msgid "MediaWiki Table" msgstr "" -#: libraries/messages.inc.php:503 transformation_overview.php:25 +#: libraries/messages.inc.php:499 transformation_overview.php:25 msgid "Available MIME types" msgstr "Dostupni MIME-tipovi" -#: libraries/messages.inc.php:504 transformation_overview.php:43 +#: libraries/messages.inc.php:500 transformation_overview.php:43 msgid "Available transformations" msgstr "Dostupne transformacije" -#: libraries/messages.inc.php:505 +#: libraries/messages.inc.php:501 msgctxt "$strMIME_description" msgid "Description" msgstr "Opis" -#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:580 +#: libraries/messages.inc.php:503 libraries/tbl_properties.inc.php:580 #: transformation_overview.php:60 #, php-format msgid "" @@ -4186,7 +4186,7 @@ msgid "" msgstr "" "Nema opisa za ovu transformaciju.
Molimo pitajte autora šta %s radi." -#: libraries/messages.inc.php:509 libraries/tbl_properties.inc.php:137 +#: libraries/messages.inc.php:505 libraries/tbl_properties.inc.php:137 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -4195,7 +4195,7 @@ msgstr "" "Za listu dostupnih opcija transformacije i njihove transformacije MIME-" "tipova, kliknite na %sopise transformacija%s" -#: libraries/messages.inc.php:510 libraries/tbl_properties.inc.php:146 +#: libraries/messages.inc.php:506 libraries/tbl_properties.inc.php:146 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -4207,410 +4207,410 @@ msgstr "" "apostrof (\"'\") u te vrijednosti, stavite obrnutu kosu crtu ispred njih (na " "primjer '\\\\xyz' ili 'a\\'b')." -#: libraries/messages.inc.php:511 libraries/tbl_properties.inc.php:145 +#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:145 msgid "Transformation options" msgstr "Opcije transformacije" -#: libraries/messages.inc.php:513 transformation_overview.php:38 +#: libraries/messages.inc.php:509 transformation_overview.php:38 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "" "MIME-tipovi prikazani u kursivu nemaju odvojene funkcije transformacije." -#: libraries/messages.inc.php:515 tbl_indexes.php:162 +#: libraries/messages.inc.php:511 tbl_indexes.php:162 msgid "Modify an index" msgstr "Izmijeni ključ" -#: libraries/messages.inc.php:517 pmd_general.php:108 +#: libraries/messages.inc.php:513 pmd_general.php:108 msgid "Move Menu" msgstr "" -#: libraries/messages.inc.php:518 tbl_operations.php:276 +#: libraries/messages.inc.php:514 tbl_operations.php:276 msgid "Move table to (database.table):" msgstr "Pomjeri tabelu u (baza.tabela):" -#: libraries/messages.inc.php:519 tbl_move_copy.php:56 +#: libraries/messages.inc.php:515 tbl_move_copy.php:56 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabela %s je pomjerena u %s." -#: libraries/messages.inc.php:520 tbl_move_copy.php:46 +#: libraries/messages.inc.php:516 tbl_move_copy.php:46 msgid "Can't move table to same one!" msgstr "Ne mogu da premjestim tabelu u samu sebe!" -#: libraries/messages.inc.php:521 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:517 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 #: libraries/mysql_charsets.lib.php:332 libraries/mysql_charsets.lib.php:354 #: libraries/mysql_charsets.lib.php:365 msgid "multilingual" msgstr "višejezički" -#: libraries/messages.inc.php:534 main.php:193 +#: libraries/messages.inc.php:530 main.php:193 msgid "MySQL charset" msgstr "MySQL set karaktera" -#: libraries/messages.inc.php:535 main.php:211 +#: libraries/messages.inc.php:531 main.php:211 msgid "MySQL client version" msgstr "" -#: libraries/messages.inc.php:536 main.php:125 +#: libraries/messages.inc.php:532 main.php:125 msgid "MySQL connection collation" msgstr "" -#: libraries/messages.inc.php:537 main.php:346 +#: libraries/messages.inc.php:533 main.php:346 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: libraries/messages.inc.php:539 server_status.php:294 +#: libraries/messages.inc.php:535 server_status.php:294 msgid "Show processes" msgstr "Prikaži listu procesa" -#: libraries/messages.inc.php:545 navigation.php:210 server_databases.php:371 +#: libraries/messages.inc.php:541 navigation.php:210 server_databases.php:371 #: server_synchronize.php:1191 msgid "No databases" msgstr "Baza ne postoji" -#: libraries/messages.inc.php:546 server_databases.php:52 +#: libraries/messages.inc.php:542 server_databases.php:52 msgid "No databases selected." msgstr "Nije izabrana ni jedna baza." -#: libraries/messages.inc.php:548 libraries/relation.lib.php:1173 +#: libraries/messages.inc.php:544 libraries/relation.lib.php:1173 msgid "no description" msgstr "nema opisa" -#: libraries/messages.inc.php:552 libraries/zip_extension.lib.php:26 +#: libraries/messages.inc.php:548 libraries/zip_extension.lib.php:26 msgid "No files found inside ZIP archive!" msgstr "" -#: libraries/messages.inc.php:555 tbl_indexes.php:91 +#: libraries/messages.inc.php:551 tbl_indexes.php:91 msgid "No index parts defined!" msgstr "Dijelovi ključa nisu definisani!" -#: libraries/messages.inc.php:556 libraries/mult_submits.inc.php:435 +#: libraries/messages.inc.php:552 libraries/mult_submits.inc.php:435 #: tbl_replace.php:331 msgid "No change" msgstr "Nema izmjena" -#: libraries/messages.inc.php:557 +#: libraries/messages.inc.php:553 #, fuzzy msgctxt "$strNoneDefault" msgid "None" msgstr "nema" -#: libraries/messages.inc.php:560 libraries/plugin_interface.lib.php:312 +#: libraries/messages.inc.php:556 libraries/plugin_interface.lib.php:312 msgid "This format has no options" msgstr "Ne postoje opcije za ovaj format" -#: libraries/messages.inc.php:565 user_password.php:54 +#: libraries/messages.inc.php:561 user_password.php:54 msgid "You don't have sufficient privileges to be here right now!" msgstr "Nije Vam dozvoljeno da budete ovdje!" -#: libraries/messages.inc.php:566 tbl_row_action.php:29 +#: libraries/messages.inc.php:562 tbl_row_action.php:29 msgid "No rows selected" msgstr "" -#: libraries/messages.inc.php:569 themes.php:32 +#: libraries/messages.inc.php:565 themes.php:32 #, php-format msgid "" "No themes support; please check your configuration and/or your themes in " "directory %s." msgstr "" -#: libraries/messages.inc.php:571 libraries/relation.lib.php:95 +#: libraries/messages.inc.php:567 libraries/relation.lib.php:95 msgid "not OK" msgstr "nije u redu" -#: libraries/messages.inc.php:572 server_synchronize.php:400 +#: libraries/messages.inc.php:568 server_synchronize.php:400 #: server_synchronize.php:839 msgid "not present" msgstr "" -#: libraries/messages.inc.php:573 pdf_pages.php:36 pdf_pages.php:42 +#: libraries/messages.inc.php:569 pdf_pages.php:36 pdf_pages.php:42 #: pdf_pages.php:48 pdf_pages.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "%s tabela nije pronađena ili nije postavljena u %s" -#: libraries/messages.inc.php:574 server_privileges.php:804 +#: libraries/messages.inc.php:570 server_privileges.php:804 #: server_privileges.php:2166 msgid "No user(s) found." msgstr "Korisnik nije nađen." -#: libraries/messages.inc.php:578 pmd_general.php:164 +#: libraries/messages.inc.php:574 pmd_general.php:164 msgid "Number of tables" msgstr "" -#: libraries/messages.inc.php:581 server_databases.php:117 +#: libraries/messages.inc.php:577 server_databases.php:117 #: server_status.php:260 setup/lib/messages.inc.php:117 msgid "Tables" msgstr "Tabele" -#: libraries/messages.inc.php:583 libraries/relation.lib.php:99 +#: libraries/messages.inc.php:579 libraries/relation.lib.php:99 #: pmd_general.php:340 msgid "OK" msgstr "U redu" -#: libraries/messages.inc.php:585 +#: libraries/messages.inc.php:581 msgid "Open Document Text" msgstr "" -#: libraries/messages.inc.php:588 tbl_select.php:138 +#: libraries/messages.inc.php:584 tbl_select.php:138 #, fuzzy msgid "Operator" msgstr "Operacije" -#: libraries/messages.inc.php:589 tbl_operations.php:662 +#: libraries/messages.inc.php:585 tbl_operations.php:662 msgid "Optimize" msgstr "" -#: libraries/messages.inc.php:602 libraries/tbl_properties.inc.php:755 +#: libraries/messages.inc.php:598 libraries/tbl_properties.inc.php:755 msgid "PARTITION definition" msgstr "" -#: libraries/messages.inc.php:603 tbl_structure.php:757 +#: libraries/messages.inc.php:599 tbl_structure.php:757 msgid "partitioned" msgstr "" -#: libraries/messages.inc.php:604 tbl_operations.php:649 +#: libraries/messages.inc.php:600 tbl_operations.php:649 #, fuzzy msgid "Partition maintenance" msgstr "Radnje na tabeli" -#: libraries/messages.inc.php:605 tbl_operations.php:657 +#: libraries/messages.inc.php:601 tbl_operations.php:657 #, php-format msgid "Partition %s" msgstr "" -#: libraries/messages.inc.php:606 server_privileges.php:1212 +#: libraries/messages.inc.php:602 server_privileges.php:1212 #, php-format msgid "The password for %s was changed successfully." msgstr "Lozinka za %s je uspješno promjenjena." -#: libraries/messages.inc.php:635 +#: libraries/messages.inc.php:631 #, php-format msgid "Schema of the \"%s\" database - Page %s" msgstr "Shema baze \"%s\" - Strana %s" -#: libraries/messages.inc.php:636 +#: libraries/messages.inc.php:632 #, php-format msgid "The \"%s\" table doesn't exist!" msgstr "Tabela \"%s\" ne postoji!" -#: libraries/messages.inc.php:637 pdf_schema.php:1013 +#: libraries/messages.inc.php:633 pdf_schema.php:1013 msgid "No tables" msgstr "Nema tabela" -#: libraries/messages.inc.php:638 pmd_pdf.php:63 +#: libraries/messages.inc.php:634 pmd_pdf.php:63 #, fuzzy msgid "Page has been created" msgstr "Tabela %s je odbačena" -#: libraries/messages.inc.php:639 pmd_pdf.php:65 +#: libraries/messages.inc.php:635 pmd_pdf.php:65 msgid "Page creation failed" msgstr "" -#: libraries/messages.inc.php:640 +#: libraries/messages.inc.php:636 msgid "PDF" msgstr "" -#: libraries/messages.inc.php:641 +#: libraries/messages.inc.php:637 msgid "(Generates a report containing the data of a single table)" msgstr "" -#: libraries/messages.inc.php:642 +#: libraries/messages.inc.php:638 msgid "Report title" msgstr "" -#: libraries/messages.inc.php:643 server_status.php:389 server_status.php:434 +#: libraries/messages.inc.php:639 server_status.php:389 server_status.php:434 #: server_status.php:497 server_status.php:555 msgid "per hour" msgstr "na sat" -#: libraries/messages.inc.php:644 server_status.php:498 +#: libraries/messages.inc.php:640 server_status.php:498 msgid "per minute" msgstr "u minuti" -#: libraries/messages.inc.php:645 server_status.php:499 +#: libraries/messages.inc.php:641 server_status.php:499 msgid "per second" msgstr "u sekundi" -#: libraries/messages.inc.php:646 libraries/mysql_charsets.lib.php:271 +#: libraries/messages.inc.php:642 libraries/mysql_charsets.lib.php:271 msgid "Persian" msgstr "" -#: libraries/messages.inc.php:647 libraries/mysql_charsets.lib.php:250 +#: libraries/messages.inc.php:643 libraries/mysql_charsets.lib.php:250 msgid "phone book" msgstr "telefonski imenik" -#: libraries/messages.inc.php:648 +#: libraries/messages.inc.php:644 msgid "PHP array" msgstr "" -#: libraries/messages.inc.php:650 main.php:213 +#: libraries/messages.inc.php:646 main.php:213 #, fuzzy msgid "PHP extension" msgstr "verzija PHP-a" -#: libraries/messages.inc.php:654 libraries/relation.lib.php:163 +#: libraries/messages.inc.php:650 libraries/relation.lib.php:163 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/messages.inc.php:655 libraries/relation.lib.php:159 +#: libraries/messages.inc.php:651 libraries/relation.lib.php:159 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/messages.inc.php:656 libraries/relation.lib.php:161 +#: libraries/messages.inc.php:652 libraries/relation.lib.php:161 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" -#: libraries/messages.inc.php:657 libraries/relation.lib.php:162 +#: libraries/messages.inc.php:653 libraries/relation.lib.php:162 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/messages.inc.php:658 libraries/relation.lib.php:164 +#: libraries/messages.inc.php:654 libraries/relation.lib.php:164 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/messages.inc.php:661 libraries/mysql_charsets.lib.php:274 +#: libraries/messages.inc.php:657 libraries/mysql_charsets.lib.php:274 msgid "Polish" msgstr "" -#: libraries/messages.inc.php:662 libraries/replication_gui.lib.php:67 +#: libraries/messages.inc.php:658 libraries/replication_gui.lib.php:67 #: server_synchronize.php:1163 #, fuzzy msgid "Port" msgstr "Sortiranje" -#: libraries/messages.inc.php:667 tbl_indexes.php:67 +#: libraries/messages.inc.php:663 tbl_indexes.php:67 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Ime primarnog ključa mora da bude... PRIMARY!" -#: libraries/messages.inc.php:668 tbl_indexes.php:184 +#: libraries/messages.inc.php:664 tbl_indexes.php:184 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "(\"PRIMARY\" mora biti ime samo primarnog ključa!)" -#: libraries/messages.inc.php:669 libraries/mult_submits.inc.php:76 +#: libraries/messages.inc.php:665 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:474 msgid "Primary" msgstr "Primarni" -#: libraries/messages.inc.php:673 server_privileges.php:227 +#: libraries/messages.inc.php:669 server_privileges.php:227 msgid "Includes all privileges except GRANT." msgstr "Uključuje sve privilegije osim GRANT." -#: libraries/messages.inc.php:674 server_privileges.php:153 +#: libraries/messages.inc.php:670 server_privileges.php:153 #: server_privileges.php:476 msgid "Allows altering the structure of existing tables." msgstr "Dozvoljava izmjenu struktura postojećih tabela." -#: libraries/messages.inc.php:675 server_privileges.php:169 +#: libraries/messages.inc.php:671 server_privileges.php:169 #: server_privileges.php:482 #, fuzzy msgid "Allows altering and dropping stored routines." msgstr "Dozvoljava kreiranje i brisanje ključeva." -#: libraries/messages.inc.php:676 server_privileges.php:145 +#: libraries/messages.inc.php:672 server_privileges.php:145 #: server_privileges.php:475 msgid "Allows creating new databases and tables." msgstr "Dozvoljava kreiranje novih baza i tabela." -#: libraries/messages.inc.php:677 server_privileges.php:168 +#: libraries/messages.inc.php:673 server_privileges.php:168 #: server_privileges.php:481 #, fuzzy msgid "Allows creating stored routines." msgstr "Dozvoljava kreiranje novih tabela." -#: libraries/messages.inc.php:678 server_privileges.php:475 +#: libraries/messages.inc.php:674 server_privileges.php:475 msgid "Allows creating new tables." msgstr "Dozvoljava kreiranje novih tabela." -#: libraries/messages.inc.php:679 server_privileges.php:156 +#: libraries/messages.inc.php:675 server_privileges.php:156 #: server_privileges.php:479 msgid "Allows creating temporary tables." msgstr "Dozvoljava kreiranje privremenih tabela.." -#: libraries/messages.inc.php:680 server_privileges.php:170 +#: libraries/messages.inc.php:676 server_privileges.php:170 #: server_privileges.php:515 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: libraries/messages.inc.php:681 server_privileges.php:160 +#: libraries/messages.inc.php:677 server_privileges.php:160 #: server_privileges.php:164 server_privileges.php:487 #: server_privileges.php:491 #, fuzzy msgid "Allows creating new views." msgstr "Dozvoljava kreiranje novih tabela." -#: libraries/messages.inc.php:682 server_privileges.php:144 +#: libraries/messages.inc.php:678 server_privileges.php:144 #: server_privileges.php:467 msgid "Allows deleting data." msgstr "Dozvoljava brisanje podataka." -#: libraries/messages.inc.php:683 server_privileges.php:146 +#: libraries/messages.inc.php:679 server_privileges.php:146 #: server_privileges.php:478 msgid "Allows dropping databases and tables." msgstr "Dozvoljava odbacivanje baza i tabela." -#: libraries/messages.inc.php:684 server_privileges.php:478 +#: libraries/messages.inc.php:680 server_privileges.php:478 msgid "Allows dropping tables." msgstr "Dozvoljava odbacivanje tabela." -#: libraries/messages.inc.php:685 server_privileges.php:161 +#: libraries/messages.inc.php:681 server_privileges.php:161 #: server_privileges.php:495 msgid "Allows to set up events for the event scheduler" msgstr "" -#: libraries/messages.inc.php:686 server_privileges.php:171 +#: libraries/messages.inc.php:682 server_privileges.php:171 #: server_privileges.php:483 msgid "Allows executing stored routines." msgstr "" -#: libraries/messages.inc.php:687 server_privileges.php:150 +#: libraries/messages.inc.php:683 server_privileges.php:150 #: server_privileges.php:470 msgid "Allows importing data from and exporting data into files." msgstr "Dozvoljava uvoz podataka i njihov izvoz u datoteke." -#: libraries/messages.inc.php:688 server_privileges.php:501 +#: libraries/messages.inc.php:684 server_privileges.php:501 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Dozvoljava dodavanje korisnika i privilegija bez ponovnog učitavanja tabela " "privilegija." -#: libraries/messages.inc.php:689 server_privileges.php:152 +#: libraries/messages.inc.php:685 server_privileges.php:152 #: server_privileges.php:477 msgid "Allows creating and dropping indexes." msgstr "Dozvoljava kreiranje i brisanje ključeva." -#: libraries/messages.inc.php:690 server_privileges.php:142 +#: libraries/messages.inc.php:686 server_privileges.php:142 #: server_privileges.php:403 server_privileges.php:465 msgid "Allows inserting and replacing data." msgstr "Dozvoljava umetanje i zamjenu podataka." -#: libraries/messages.inc.php:691 server_privileges.php:157 +#: libraries/messages.inc.php:687 server_privileges.php:157 #: server_privileges.php:510 msgid "Allows locking tables for the current thread." msgstr "Dozvoljava zaključavanje tabela tekućim procesima." -#: libraries/messages.inc.php:692 server_privileges.php:607 +#: libraries/messages.inc.php:688 server_privileges.php:607 #: server_privileges.php:609 msgid "Limits the number of new connections the user may open per hour." msgstr "Ograničava broj novih konekcija koje korisnik može ta otvori na sat." -#: libraries/messages.inc.php:693 server_privileges.php:595 +#: libraries/messages.inc.php:689 server_privileges.php:595 #: server_privileges.php:597 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Ograničava broj upita koje korisnik može da uputi serveru za sat." -#: libraries/messages.inc.php:694 server_privileges.php:601 +#: libraries/messages.inc.php:690 server_privileges.php:601 #: server_privileges.php:603 msgid "" "Limits the number of commands that change any table or database the user may " @@ -4619,59 +4619,59 @@ msgstr "" "Ograničava broj komandi koje menjaju tabele ili baze koje korisnik može da " "izvrši na sat." -#: libraries/messages.inc.php:695 server_privileges.php:613 +#: libraries/messages.inc.php:691 server_privileges.php:613 #: server_privileges.php:615 #, fuzzy msgid "Limits the number of simultaneous connections the user may have." msgstr "Ograničava broj novih konekcija koje korisnik može ta otvori na sat." -#: libraries/messages.inc.php:696 server_privileges.php:149 +#: libraries/messages.inc.php:692 server_privileges.php:149 #: server_privileges.php:505 msgid "Allows viewing processes of all users" msgstr "" -#: libraries/messages.inc.php:697 server_privileges.php:151 +#: libraries/messages.inc.php:693 server_privileges.php:151 #: server_privileges.php:409 server_privileges.php:511 msgid "Has no effect in this MySQL version." msgstr "Nema efekta u ovoj verziji MySQL-a." -#: libraries/messages.inc.php:698 server_privileges.php:147 +#: libraries/messages.inc.php:694 server_privileges.php:147 #: server_privileges.php:506 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Dozvoljava ponovno učitavanje podešavanja servera i pražnjenje keša servera." -#: libraries/messages.inc.php:699 server_privileges.php:159 +#: libraries/messages.inc.php:695 server_privileges.php:159 #: server_privileges.php:513 msgid "Allows the user to ask where the slaves / masters are." msgstr "Daje pravo korisniku da pita gde su glavni/pomoćni serveri." -#: libraries/messages.inc.php:700 server_privileges.php:158 +#: libraries/messages.inc.php:696 server_privileges.php:158 #: server_privileges.php:514 msgid "Needed for the replication slaves." msgstr "Potrebno zbog pomoćnih servera za replikaciju." -#: libraries/messages.inc.php:701 server_privileges.php:141 +#: libraries/messages.inc.php:697 server_privileges.php:141 #: server_privileges.php:400 server_privileges.php:464 msgid "Allows reading data." msgstr "Dozvoljava čitanje podataka." -#: libraries/messages.inc.php:702 server_privileges.php:154 +#: libraries/messages.inc.php:698 server_privileges.php:154 #: server_privileges.php:508 msgid "Gives access to the complete list of databases." msgstr "Daje pristup kompletnoj listi baza." -#: libraries/messages.inc.php:703 server_privileges.php:165 +#: libraries/messages.inc.php:699 server_privileges.php:165 #: server_privileges.php:167 server_privileges.php:480 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: libraries/messages.inc.php:704 server_privileges.php:148 +#: libraries/messages.inc.php:700 server_privileges.php:148 #: server_privileges.php:507 msgid "Allows shutting down the server." msgstr "Dozvoljava gašenje servera." -#: libraries/messages.inc.php:705 server_privileges.php:155 +#: libraries/messages.inc.php:701 server_privileges.php:155 #: server_privileges.php:504 msgid "" "Allows connecting, even if maximum number of connections is reached; " @@ -4682,57 +4682,57 @@ msgstr "" "Neophodno za većinu administrativnih opcija kao što su podešavanje globalnih " "promenljivih ili prekidanje procesa ostalih korisnika." -#: libraries/messages.inc.php:706 server_privileges.php:162 +#: libraries/messages.inc.php:702 server_privileges.php:162 #: server_privileges.php:496 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "Dozvoljava kreiranje i brisanje ključeva." -#: libraries/messages.inc.php:707 server_privileges.php:143 +#: libraries/messages.inc.php:703 server_privileges.php:143 #: server_privileges.php:406 server_privileges.php:466 msgid "Allows changing data." msgstr "Dozvoljava izmenu podataka." -#: libraries/messages.inc.php:708 server_privileges.php:221 +#: libraries/messages.inc.php:704 server_privileges.php:221 msgid "No privileges." msgstr "Nema privilegija." -#: libraries/messages.inc.php:710 server_privileges.php:1296 +#: libraries/messages.inc.php:706 server_privileges.php:1296 msgid "The privileges were reloaded successfully." msgstr "Privilegije su uspešno ponovo učitane." -#: libraries/messages.inc.php:712 libraries/server_links.inc.php:80 +#: libraries/messages.inc.php:708 libraries/server_links.inc.php:80 msgid "Processes" msgstr "Procesi" -#: libraries/messages.inc.php:714 main.php:187 +#: libraries/messages.inc.php:710 main.php:187 msgid "Protocol version" msgstr "" -#: libraries/messages.inc.php:715 +#: libraries/messages.inc.php:711 msgid "Put fields names in the first row" msgstr "Stavi imena polja u prvi red" -#: libraries/messages.inc.php:720 server_synchronize.php:1003 +#: libraries/messages.inc.php:716 server_synchronize.php:1003 msgid "The following queries have been executed:" msgstr "" -#: libraries/messages.inc.php:721 server_status.php:251 +#: libraries/messages.inc.php:717 server_status.php:251 #, fuzzy msgid "Query cache" msgstr "Vrsta upita" -#: libraries/messages.inc.php:722 libraries/navigation_header.inc.php:80 +#: libraries/messages.inc.php:718 libraries/navigation_header.inc.php:80 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 setup/lib/messages.inc.php:122 msgid "Query window" msgstr "Prozor za upite" -#: libraries/messages.inc.php:725 querywindow.php:109 querywindow.php:217 +#: libraries/messages.inc.php:721 querywindow.php:109 querywindow.php:217 msgid "SQL history" msgstr "SQL istorijat" -#: libraries/messages.inc.php:726 server_status.php:490 +#: libraries/messages.inc.php:722 server_status.php:490 #, php-format msgid "" "Query statistics: Since its startup, %s queries have been sent to the " @@ -4741,137 +4741,137 @@ msgstr "" "Statistike upita: %s upita je postavljeno serveru od njegovog " "pokretanja." -#: libraries/messages.inc.php:728 server_status.php:554 +#: libraries/messages.inc.php:724 server_status.php:554 msgid "Query type" msgstr "Vrsta upita" -#: libraries/messages.inc.php:729 libraries/sql_query_form.lib.php:381 +#: libraries/messages.inc.php:725 libraries/sql_query_form.lib.php:381 msgid "Do not overwrite this query from outside the window" msgstr "Ne prepisuj ovaj upit izvan prozora" -#: libraries/messages.inc.php:732 tbl_operations.php:663 +#: libraries/messages.inc.php:728 tbl_operations.php:663 msgid "Rebuild" msgstr "" -#: libraries/messages.inc.php:733 server_status.php:394 +#: libraries/messages.inc.php:729 server_status.php:394 msgid "Received" msgstr "Primljeno" -#: libraries/messages.inc.php:734 pmd_pdf.php:89 +#: libraries/messages.inc.php:730 pmd_pdf.php:89 msgid "recommended" msgstr "" -#: libraries/messages.inc.php:736 tbl_operations.php:702 +#: libraries/messages.inc.php:732 tbl_operations.php:702 msgid "Check referential integrity:" msgstr "Proveri referencijalni integritet:" -#: libraries/messages.inc.php:740 pdf_schema.php:1032 pdf_schema.php:1141 +#: libraries/messages.inc.php:736 pdf_schema.php:1032 pdf_schema.php:1141 msgid "Relational schema" msgstr "Relaciona shema" -#: libraries/messages.inc.php:744 tbl_relation.php:399 +#: libraries/messages.inc.php:740 tbl_relation.php:399 msgid "Relations" msgstr "Relacije" -#: libraries/messages.inc.php:745 tbl_structure.php:507 tbl_structure.php:509 +#: libraries/messages.inc.php:741 tbl_structure.php:507 tbl_structure.php:509 msgid "Relation view" msgstr "Relacioni pogled" -#: libraries/messages.inc.php:746 server_privileges.php:1246 +#: libraries/messages.inc.php:742 server_privileges.php:1246 msgid "Reloading the privileges" msgstr "Ponovo učitavam privilegije" -#: libraries/messages.inc.php:747 navigation.php:66 navigation.php:67 +#: libraries/messages.inc.php:743 navigation.php:66 navigation.php:67 #: navigation.php:70 msgid "Reload navigation frame" msgstr "" -#: libraries/messages.inc.php:748 pmd_general.php:80 +#: libraries/messages.inc.php:744 pmd_general.php:80 msgid "Reload" msgstr "" -#: libraries/messages.inc.php:749 libraries/server_synchronize.lib.php:1345 +#: libraries/messages.inc.php:745 libraries/server_synchronize.lib.php:1345 #: libraries/server_synchronize.lib.php:1371 msgid "Remote server" msgstr "" -#: libraries/messages.inc.php:750 +#: libraries/messages.inc.php:746 msgid "Remove CRLF characters within fields" msgstr "" -#: libraries/messages.inc.php:751 tbl_operations.php:676 +#: libraries/messages.inc.php:747 tbl_operations.php:676 msgid "Remove partitioning" msgstr "" -#: libraries/messages.inc.php:752 server_privileges.php:1575 +#: libraries/messages.inc.php:748 server_privileges.php:1575 msgid "Remove selected users" msgstr "Ukloni izabrane korisnike" -#: libraries/messages.inc.php:755 tbl_operations.php:338 +#: libraries/messages.inc.php:751 tbl_operations.php:338 msgid "Rename table to" msgstr "Promjeni ime tabele u " -#: libraries/messages.inc.php:756 view_operations.php:93 +#: libraries/messages.inc.php:752 view_operations.php:93 #, fuzzy msgid "Rename view to" msgstr "Promjeni ime tabele u " -#: libraries/messages.inc.php:757 tbl_operations.php:664 +#: libraries/messages.inc.php:753 tbl_operations.php:664 #, fuzzy msgid "Repair" msgstr "Popravi tabelu" -#: libraries/messages.inc.php:759 +#: libraries/messages.inc.php:755 msgid "Replace NULL by" msgstr "Zamijeni NULL sa" -#: libraries/messages.inc.php:760 +#: libraries/messages.inc.php:756 msgid "Replace table data with file" msgstr "Zamijeni podatke u tabeli sa podatcima iz datoteke" -#: libraries/messages.inc.php:761 server_replication.php:228 +#: libraries/messages.inc.php:757 server_replication.php:228 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: libraries/messages.inc.php:762 libraries/replication_gui.lib.php:236 +#: libraries/messages.inc.php:758 libraries/replication_gui.lib.php:236 #: server_replication.php:194 msgid "Add slave replication user" msgstr "" -#: libraries/messages.inc.php:763 server_replication.php:74 +#: libraries/messages.inc.php:759 server_replication.php:74 #, php-format msgid "Master server changed succesfully to %s" msgstr "" -#: libraries/messages.inc.php:764 server_replication.php:182 +#: libraries/messages.inc.php:760 server_replication.php:182 msgid "This server is configured as master in a replication process." msgstr "" -#: libraries/messages.inc.php:765 server_replication.php:322 +#: libraries/messages.inc.php:761 server_replication.php:322 msgid "Control slave:" msgstr "" -#: libraries/messages.inc.php:766 server_replication.php:65 +#: libraries/messages.inc.php:762 server_replication.php:65 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: libraries/messages.inc.php:767 server_replication.php:58 +#: libraries/messages.inc.php:763 server_replication.php:58 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: libraries/messages.inc.php:768 server_replication.php:221 +#: libraries/messages.inc.php:764 server_replication.php:221 msgid "Replicate all databases; Ignore:" msgstr "" -#: libraries/messages.inc.php:769 server_replication.php:222 +#: libraries/messages.inc.php:765 server_replication.php:222 msgid "Ignore all databases; Replicate:" msgstr "" -#: libraries/messages.inc.php:770 server_replication.php:218 +#: libraries/messages.inc.php:766 server_replication.php:218 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -4880,121 +4880,121 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: libraries/messages.inc.php:771 server_replication.php:217 +#: libraries/messages.inc.php:767 server_replication.php:217 msgid "Master configuration" msgstr "" -#: libraries/messages.inc.php:772 server_replication.php:181 +#: libraries/messages.inc.php:768 server_replication.php:181 #: server_replication.php:209 msgid "Master replication" msgstr "" -#: libraries/messages.inc.php:774 server_replication.php:230 +#: libraries/messages.inc.php:770 server_replication.php:230 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: libraries/messages.inc.php:775 server_replication.php:225 +#: libraries/messages.inc.php:771 server_replication.php:225 #, fuzzy msgid "Please select databases:" msgstr "Izaberite bazu" -#: libraries/messages.inc.php:776 server_replication.php:210 +#: libraries/messages.inc.php:772 server_replication.php:210 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:188 +#: libraries/messages.inc.php:773 libraries/replication_gui.lib.php:188 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/messages.inc.php:778 server_replication.php:187 +#: libraries/messages.inc.php:774 server_replication.php:187 msgid "Show connected slaves" msgstr "" -#: libraries/messages.inc.php:779 libraries/messages.inc.php:885 +#: libraries/messages.inc.php:775 libraries/messages.inc.php:881 #: server_replication.php:184 server_status.php:281 msgid "Show master status" msgstr "" -#: libraries/messages.inc.php:780 server_replication.php:334 +#: libraries/messages.inc.php:776 server_replication.php:334 msgid "Skipping error(s) might lead into unsynchronized master and slave!" msgstr "" -#: libraries/messages.inc.php:781 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:51 #: server_replication.php:347 msgid "Change or reconfigure master server" msgstr "" -#: libraries/messages.inc.php:782 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:778 libraries/replication_gui.lib.php:51 msgid "Slave configuration" msgstr "" -#: libraries/messages.inc.php:783 server_replication.php:305 +#: libraries/messages.inc.php:779 server_replication.php:305 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: libraries/messages.inc.php:784 server_replication.php:332 +#: libraries/messages.inc.php:780 server_replication.php:332 msgid "Error management:" msgstr "" -#: libraries/messages.inc.php:785 server_replication.php:328 +#: libraries/messages.inc.php:781 server_replication.php:328 #, php-format msgid "IO Thread %s only" msgstr "" -#: libraries/messages.inc.php:786 server_replication.php:296 +#: libraries/messages.inc.php:782 server_replication.php:296 msgid "Slave IO Thread not running!" msgstr "" -#: libraries/messages.inc.php:787 server_replication.php:355 +#: libraries/messages.inc.php:783 server_replication.php:355 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/messages.inc.php:788 server_replication.php:326 +#: libraries/messages.inc.php:784 server_replication.php:326 msgid "Reset slave" msgstr "" -#: libraries/messages.inc.php:789 server_replication.php:308 +#: libraries/messages.inc.php:785 server_replication.php:308 msgid "See slave status table" msgstr "" -#: libraries/messages.inc.php:790 server_replication.php:336 +#: libraries/messages.inc.php:786 server_replication.php:336 msgid "Skip current error" msgstr "" -#: libraries/messages.inc.php:791 server_replication.php:340 +#: libraries/messages.inc.php:787 server_replication.php:340 msgid "errors." msgstr "" -#: libraries/messages.inc.php:792 server_replication.php:337 +#: libraries/messages.inc.php:788 server_replication.php:337 msgid "Skip next" msgstr "" -#: libraries/messages.inc.php:793 server_replication.php:248 +#: libraries/messages.inc.php:789 server_replication.php:248 msgid "Slave replication" msgstr "" -#: libraries/messages.inc.php:794 server_replication.php:293 +#: libraries/messages.inc.php:790 server_replication.php:293 msgid "Slave SQL Thread not running!" msgstr "" -#: libraries/messages.inc.php:795 server_replication.php:327 +#: libraries/messages.inc.php:791 server_replication.php:327 #, php-format msgid "SQL Thread %s only" msgstr "" -#: libraries/messages.inc.php:796 +#: libraries/messages.inc.php:792 #, php-format msgid "" "This MySQL server works as %s in replication process. For further " @@ -5002,160 +5002,160 @@ msgid "" "\"#replication\">replication section." msgstr "" -#: libraries/messages.inc.php:797 +#: libraries/messages.inc.php:793 msgid "Master status" msgstr "" -#: libraries/messages.inc.php:798 server_status.php:721 +#: libraries/messages.inc.php:794 server_status.php:721 msgid "Replication status" msgstr "" -#: libraries/messages.inc.php:799 +#: libraries/messages.inc.php:795 msgid "Slave status" msgstr "" -#: libraries/messages.inc.php:800 server_replication.php:311 +#: libraries/messages.inc.php:796 server_replication.php:311 msgid "Synchronize databases with master" msgstr "" -#: libraries/messages.inc.php:801 server_replication.php:71 +#: libraries/messages.inc.php:797 server_replication.php:71 msgid "Unable to change master" msgstr "" -#: libraries/messages.inc.php:802 server_replication.php:51 +#: libraries/messages.inc.php:798 server_replication.php:51 msgid "Unknown error" msgstr "" -#: libraries/messages.inc.php:803 main.php:163 pdf_pages.php:344 +#: libraries/messages.inc.php:799 main.php:163 pdf_pages.php:344 #: setup/lib/FormDisplay.tpl.php:216 tbl_change.php:1175 msgid "Reset" msgstr "Resetuj" -#: libraries/messages.inc.php:804 server_privileges.php:591 +#: libraries/messages.inc.php:800 server_privileges.php:591 msgid "Resource limits" msgstr "Ograničenja resursa" -#: libraries/messages.inc.php:805 tbl_change.php:1209 +#: libraries/messages.inc.php:801 tbl_change.php:1209 #, php-format msgid "Restart insertion with %s rows" msgstr "" -#: libraries/messages.inc.php:807 server_privileges.php:1578 +#: libraries/messages.inc.php:803 server_privileges.php:1578 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Obustavi sve aktivne privilegije korisnika i zatim ih obriši." -#: libraries/messages.inc.php:808 server_privileges.php:1176 +#: libraries/messages.inc.php:804 server_privileges.php:1176 #, php-format msgid "You have revoked the privileges for %s" msgstr "Zabranili ste privilegije za %s" -#: libraries/messages.inc.php:809 server_privileges.php:1333 +#: libraries/messages.inc.php:805 server_privileges.php:1333 msgid "Revoke" msgstr "Zabrani" -#: libraries/messages.inc.php:810 libraries/mysql_charsets.lib.php:280 +#: libraries/messages.inc.php:806 libraries/mysql_charsets.lib.php:280 #, fuzzy msgid "Romanian" msgstr "Jermenski" -#: libraries/messages.inc.php:813 tbl_printview.php:404 tbl_structure.php:786 +#: libraries/messages.inc.php:809 tbl_printview.php:404 tbl_structure.php:786 msgid "Row length" msgstr "Dužina reda" -#: libraries/messages.inc.php:815 tbl_printview.php:414 tbl_structure.php:794 +#: libraries/messages.inc.php:811 tbl_printview.php:414 tbl_structure.php:794 msgid " Row size " msgstr "Veličina reda" -#: libraries/messages.inc.php:821 tbl_printview.php:366 tbl_structure.php:726 +#: libraries/messages.inc.php:817 tbl_printview.php:366 tbl_structure.php:726 msgid "Row Statistics" msgstr "Statistike reda" -#: libraries/messages.inc.php:822 +#: libraries/messages.inc.php:818 #, php-format msgid "running on %s" msgstr "na serveru %s" -#: libraries/messages.inc.php:824 libraries/sql_query_form.lib.php:223 +#: libraries/messages.inc.php:820 libraries/sql_query_form.lib.php:223 #, fuzzy, php-format msgid "Run SQL query/queries on server %s" msgstr "Izvrši SQL upit(e) na bazi %s" -#: libraries/messages.inc.php:825 libraries/sql_query_form.lib.php:240 +#: libraries/messages.inc.php:821 libraries/sql_query_form.lib.php:240 #: libraries/sql_query_form.lib.php:265 #, php-format msgid "Run SQL query/queries on database %s" msgstr "Izvrši SQL upit(e) na bazi %s" -#: libraries/messages.inc.php:826 libraries/mysql_charsets.lib.php:337 +#: libraries/messages.inc.php:822 libraries/mysql_charsets.lib.php:337 msgid "Russian" msgstr "Ruski" -#: libraries/messages.inc.php:829 pmd_general.php:68 +#: libraries/messages.inc.php:825 pmd_general.php:68 msgid "Save position" msgstr "" -#: libraries/messages.inc.php:830 libraries/tbl_properties.inc.php:776 +#: libraries/messages.inc.php:826 libraries/tbl_properties.inc.php:776 #: pdf_pages.php:484 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:214 setup/lib/FormDisplay.tpl.php:215 #: tbl_change.php:1126 tbl_indexes.php:248 tbl_relation.php:566 msgid "Save" msgstr "Sačuvaj" -#: libraries/messages.inc.php:831 +#: libraries/messages.inc.php:827 msgid "The scale factor is too small to fit the schema on one page" msgstr "Faktor umanjenja je premali da bi shema stala na jednu stranu" -#: libraries/messages.inc.php:843 main.php:298 +#: libraries/messages.inc.php:839 main.php:298 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "Konfiguraciona datoteka zahtjeva tajnu lozinku (blowfish_secret)." -#: libraries/messages.inc.php:844 navigation.php:353 navigation.php:516 +#: libraries/messages.inc.php:840 navigation.php:353 navigation.php:516 msgid "Please select a database" msgstr "Izaberite bazu" -#: libraries/messages.inc.php:846 server_binlog.php:120 +#: libraries/messages.inc.php:842 server_binlog.php:120 msgid "Select binary log to view" msgstr "" -#: libraries/messages.inc.php:847 tbl_select.php:270 +#: libraries/messages.inc.php:843 tbl_select.php:270 msgid "Select fields (at least one):" msgstr "Izaberi polja (najmanje jedno)" -#: libraries/messages.inc.php:851 pdf_pages.php:320 +#: libraries/messages.inc.php:847 pdf_pages.php:320 msgid "Select Tables" msgstr "Izaberi tabele" -#: libraries/messages.inc.php:853 server_status.php:404 +#: libraries/messages.inc.php:849 server_status.php:404 msgid "Sent" msgstr "Poslato" -#: libraries/messages.inc.php:857 libraries/select_server.lib.php:45 +#: libraries/messages.inc.php:853 libraries/select_server.lib.php:45 #: setup/frames/index.inc.php:97 setup/lib/messages.inc.php:115 #, fuzzy msgid "Servers" msgstr "Server" -#: libraries/messages.inc.php:858 server_status.php:255 +#: libraries/messages.inc.php:854 server_status.php:255 #, fuzzy msgid "Delayed inserts" msgstr "Prošireni INSERT" -#: libraries/messages.inc.php:859 server_status.php:46 +#: libraries/messages.inc.php:855 server_status.php:46 msgid "Runtime Information" msgstr "Informacije o toku rada" -#: libraries/messages.inc.php:860 server_status.php:350 +#: libraries/messages.inc.php:856 server_status.php:350 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Ovaj MySQL server radi već %s. Pokrenut je %s." -#: libraries/messages.inc.php:861 libraries/server_links.inc.php:53 +#: libraries/messages.inc.php:857 libraries/server_links.inc.php:53 #: server_engines.php:112 server_engines.php:116 server_status.php:304 #: test/theme.php:105 msgid "Variables" msgstr "Promjenljive" -#: libraries/messages.inc.php:862 server_status.php:383 +#: libraries/messages.inc.php:858 server_status.php:383 msgid "" "Server traffic: These tables show the network traffic statistics of " "this MySQL server since its startup." @@ -5163,11 +5163,11 @@ msgstr "" "Saobraćaj servera: Tabele pokazuju statistike mrežnog saobraćaja na " "ovom MySQL serveru od njegovog pokretanja." -#: libraries/messages.inc.php:863 server_variables.php:35 +#: libraries/messages.inc.php:859 server_variables.php:35 msgid "Server variables and settings" msgstr "Serverske promenljive i podešavanja" -#: libraries/messages.inc.php:865 main.php:290 +#: libraries/messages.inc.php:861 main.php:290 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -5175,17 +5175,17 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: libraries/messages.inc.php:866 +#: libraries/messages.inc.php:862 msgid "" "Cannot start session without errors, please check errors given in your PHP " "and/or webserver log file and configure your PHP installation properly." msgstr "" -#: libraries/messages.inc.php:867 server_variables.php:55 +#: libraries/messages.inc.php:863 server_variables.php:55 msgid "Session value" msgstr "Vrijednost sesije" -#: libraries/messages.inc.php:868 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:864 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 " @@ -5197,56 +5197,56 @@ msgstr "" "(\"'\") koristite ih u \"izbjegnutom\" (escaped) obliku (na primer '\\\\xyz' " "ili 'a\\'b')." -#: libraries/messages.inc.php:876 server_binlog.php:192 server_binlog.php:195 +#: libraries/messages.inc.php:872 server_binlog.php:192 server_binlog.php:195 #: server_processlist.php:49 server_processlist.php:51 msgid "Show Full Queries" msgstr "Prikaži kompletne upite" -#: libraries/messages.inc.php:878 pmd_general.php:64 +#: libraries/messages.inc.php:874 pmd_general.php:64 msgid "Show/Hide left menu" msgstr "" -#: libraries/messages.inc.php:880 sql.php:513 +#: libraries/messages.inc.php:876 sql.php:513 msgid "Showing as PHP code" msgstr "" -#: libraries/messages.inc.php:882 sql.php:516 tbl_replace.php:360 +#: libraries/messages.inc.php:878 sql.php:516 tbl_replace.php:360 msgid "Showing SQL query" msgstr "" -#: libraries/messages.inc.php:883 tbl_change.php:1132 +#: libraries/messages.inc.php:879 tbl_change.php:1132 msgid "Show insert query" msgstr "" -#: libraries/messages.inc.php:886 server_status.php:273 +#: libraries/messages.inc.php:882 server_status.php:273 #, fuzzy msgid "Show open tables" msgstr "Prikaži tabele" -#: libraries/messages.inc.php:887 main.php:219 +#: libraries/messages.inc.php:883 main.php:219 msgid "Show PHP information" msgstr "Prikaži informacije o PHP-u" -#: libraries/messages.inc.php:889 server_status.php:278 +#: libraries/messages.inc.php:885 server_status.php:278 msgid "Show slave hosts" msgstr "" -#: libraries/messages.inc.php:890 server_status.php:284 +#: libraries/messages.inc.php:886 server_status.php:284 msgid "Show slave status" msgstr "" -#: libraries/messages.inc.php:891 +#: libraries/messages.inc.php:887 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/messages.inc.php:892 +#: libraries/messages.inc.php:888 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/messages.inc.php:893 +#: libraries/messages.inc.php:889 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -5254,78 +5254,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/messages.inc.php:894 +#: libraries/messages.inc.php:890 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/messages.inc.php:895 +#: libraries/messages.inc.php:891 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/messages.inc.php:896 +#: libraries/messages.inc.php:892 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/messages.inc.php:897 +#: libraries/messages.inc.php:893 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/messages.inc.php:898 +#: libraries/messages.inc.php:894 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/messages.inc.php:899 +#: libraries/messages.inc.php:895 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/messages.inc.php:900 +#: libraries/messages.inc.php:896 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/messages.inc.php:901 +#: libraries/messages.inc.php:897 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/messages.inc.php:902 +#: libraries/messages.inc.php:898 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/messages.inc.php:903 +#: libraries/messages.inc.php:899 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/messages.inc.php:904 +#: libraries/messages.inc.php:900 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: libraries/messages.inc.php:905 +#: libraries/messages.inc.php:901 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/messages.inc.php:906 +#: libraries/messages.inc.php:902 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: libraries/messages.inc.php:907 +#: libraries/messages.inc.php:903 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -5333,7 +5333,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/messages.inc.php:908 +#: libraries/messages.inc.php:904 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -5341,42 +5341,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/messages.inc.php:909 +#: libraries/messages.inc.php:905 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/messages.inc.php:910 +#: libraries/messages.inc.php:906 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/messages.inc.php:911 +#: libraries/messages.inc.php:907 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/messages.inc.php:912 +#: libraries/messages.inc.php:908 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/messages.inc.php:913 +#: libraries/messages.inc.php:909 msgid "The number of pages currently dirty." msgstr "" -#: libraries/messages.inc.php:914 +#: libraries/messages.inc.php:910 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/messages.inc.php:915 +#: libraries/messages.inc.php:911 msgid "The number of free pages." msgstr "" -#: libraries/messages.inc.php:916 +#: libraries/messages.inc.php:912 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/messages.inc.php:917 +#: libraries/messages.inc.php:913 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -5384,33 +5384,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/messages.inc.php:918 +#: libraries/messages.inc.php:914 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/messages.inc.php:919 +#: libraries/messages.inc.php:915 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/messages.inc.php:920 +#: libraries/messages.inc.php:916 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/messages.inc.php:921 +#: libraries/messages.inc.php:917 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/messages.inc.php:922 +#: libraries/messages.inc.php:918 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/messages.inc.php:923 +#: libraries/messages.inc.php:919 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -5419,218 +5419,218 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/messages.inc.php:924 +#: libraries/messages.inc.php:920 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/messages.inc.php:925 +#: libraries/messages.inc.php:921 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/messages.inc.php:926 +#: libraries/messages.inc.php:922 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/messages.inc.php:927 +#: libraries/messages.inc.php:923 msgid "The current number of pending reads." msgstr "" -#: libraries/messages.inc.php:928 +#: libraries/messages.inc.php:924 msgid "The current number of pending writes." msgstr "" -#: libraries/messages.inc.php:929 +#: libraries/messages.inc.php:925 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/messages.inc.php:930 +#: libraries/messages.inc.php:926 msgid "The total number of data reads." msgstr "" -#: libraries/messages.inc.php:931 +#: libraries/messages.inc.php:927 msgid "The total number of data writes." msgstr "" -#: libraries/messages.inc.php:932 +#: libraries/messages.inc.php:928 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/messages.inc.php:933 +#: libraries/messages.inc.php:929 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/messages.inc.php:934 +#: libraries/messages.inc.php:930 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/messages.inc.php:935 +#: libraries/messages.inc.php:931 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/messages.inc.php:936 +#: libraries/messages.inc.php:932 msgid "The number of log write requests." msgstr "" -#: libraries/messages.inc.php:937 +#: libraries/messages.inc.php:933 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/messages.inc.php:938 +#: libraries/messages.inc.php:934 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/messages.inc.php:939 +#: libraries/messages.inc.php:935 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/messages.inc.php:940 +#: libraries/messages.inc.php:936 msgid "Pending log file writes." msgstr "" -#: libraries/messages.inc.php:941 +#: libraries/messages.inc.php:937 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/messages.inc.php:942 +#: libraries/messages.inc.php:938 msgid "The number of pages created." msgstr "" -#: libraries/messages.inc.php:943 +#: libraries/messages.inc.php:939 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: libraries/messages.inc.php:944 +#: libraries/messages.inc.php:940 msgid "The number of pages read." msgstr "" -#: libraries/messages.inc.php:945 +#: libraries/messages.inc.php:941 msgid "The number of pages written." msgstr "" -#: libraries/messages.inc.php:946 +#: libraries/messages.inc.php:942 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/messages.inc.php:947 +#: libraries/messages.inc.php:943 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/messages.inc.php:948 +#: libraries/messages.inc.php:944 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/messages.inc.php:949 +#: libraries/messages.inc.php:945 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/messages.inc.php:950 +#: libraries/messages.inc.php:946 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/messages.inc.php:951 +#: libraries/messages.inc.php:947 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/messages.inc.php:952 +#: libraries/messages.inc.php:948 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/messages.inc.php:953 +#: libraries/messages.inc.php:949 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/messages.inc.php:954 +#: libraries/messages.inc.php:950 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/messages.inc.php:955 +#: libraries/messages.inc.php:951 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/messages.inc.php:956 +#: libraries/messages.inc.php:952 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: libraries/messages.inc.php:957 +#: libraries/messages.inc.php:953 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/messages.inc.php:958 +#: libraries/messages.inc.php:954 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/messages.inc.php:959 +#: libraries/messages.inc.php:955 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/messages.inc.php:960 +#: libraries/messages.inc.php:956 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/messages.inc.php:961 +#: libraries/messages.inc.php:957 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/messages.inc.php:962 +#: libraries/messages.inc.php:958 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/messages.inc.php:963 +#: libraries/messages.inc.php:959 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/messages.inc.php:964 +#: libraries/messages.inc.php:960 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/messages.inc.php:965 +#: libraries/messages.inc.php:961 msgid "The number of files that are open." msgstr "" -#: libraries/messages.inc.php:966 +#: libraries/messages.inc.php:962 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/messages.inc.php:967 +#: libraries/messages.inc.php:963 msgid "The number of tables that are open." msgstr "" -#: libraries/messages.inc.php:968 +#: libraries/messages.inc.php:964 msgid "The number of free memory blocks in query cache." msgstr "" -#: libraries/messages.inc.php:969 +#: libraries/messages.inc.php:965 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/messages.inc.php:970 +#: libraries/messages.inc.php:966 msgid "The number of cache hits." msgstr "" -#: libraries/messages.inc.php:971 +#: libraries/messages.inc.php:967 msgid "The number of queries added to the cache." msgstr "" -#: libraries/messages.inc.php:972 +#: libraries/messages.inc.php:968 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -5638,105 +5638,105 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/messages.inc.php:973 +#: libraries/messages.inc.php:969 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/messages.inc.php:974 +#: libraries/messages.inc.php:970 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/messages.inc.php:975 +#: libraries/messages.inc.php:971 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/messages.inc.php:976 +#: libraries/messages.inc.php:972 #, fuzzy msgctxt "$strShowStatusReset" msgid "Reset" msgstr "Resetuj" -#: libraries/messages.inc.php:977 +#: libraries/messages.inc.php:973 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/messages.inc.php:978 +#: libraries/messages.inc.php:974 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: libraries/messages.inc.php:979 +#: libraries/messages.inc.php:975 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/messages.inc.php:980 +#: libraries/messages.inc.php:976 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: libraries/messages.inc.php:981 +#: libraries/messages.inc.php:977 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/messages.inc.php:982 +#: libraries/messages.inc.php:978 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/messages.inc.php:983 +#: libraries/messages.inc.php:979 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/messages.inc.php:984 +#: libraries/messages.inc.php:980 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/messages.inc.php:985 +#: libraries/messages.inc.php:981 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/messages.inc.php:986 +#: libraries/messages.inc.php:982 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/messages.inc.php:987 +#: libraries/messages.inc.php:983 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/messages.inc.php:988 +#: libraries/messages.inc.php:984 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/messages.inc.php:989 +#: libraries/messages.inc.php:985 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/messages.inc.php:990 +#: libraries/messages.inc.php:986 msgid "The number of sorted rows." msgstr "" -#: libraries/messages.inc.php:991 +#: libraries/messages.inc.php:987 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/messages.inc.php:992 +#: libraries/messages.inc.php:988 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/messages.inc.php:993 +#: libraries/messages.inc.php:989 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -5744,18 +5744,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/messages.inc.php:994 +#: libraries/messages.inc.php:990 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/messages.inc.php:995 +#: libraries/messages.inc.php:991 msgid "The number of currently open connections." msgstr "" -#: libraries/messages.inc.php:996 +#: libraries/messages.inc.php:992 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -5763,75 +5763,75 @@ msgid "" "implementation.)" msgstr "" -#: libraries/messages.inc.php:997 +#: libraries/messages.inc.php:993 msgid "The number of threads that are not sleeping." msgstr "" -#: libraries/messages.inc.php:999 tbl_printview.php:75 +#: libraries/messages.inc.php:995 tbl_printview.php:75 msgid "Show tables" msgstr "Prikaži tabele" -#: libraries/messages.inc.php:1000 libraries/sql_query_form.lib.php:396 +#: libraries/messages.inc.php:996 libraries/sql_query_form.lib.php:396 msgid " Show this query here again " msgstr "Prikaži ponovo ovaj upit" -#: libraries/messages.inc.php:1001 libraries/mysql_charsets.lib.php:217 +#: libraries/messages.inc.php:997 libraries/mysql_charsets.lib.php:217 #: libraries/mysql_charsets.lib.php:342 msgid "Simplified Chinese" msgstr "Pojednostavljeni kineski" -#: libraries/messages.inc.php:1002 tbl_operations.php:258 +#: libraries/messages.inc.php:998 tbl_operations.php:258 msgid "(singly)" msgstr "(po jednom polju)" -#: libraries/messages.inc.php:1005 libraries/replication_gui.lib.php:52 +#: libraries/messages.inc.php:1001 libraries/replication_gui.lib.php:52 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" msgstr "" -#: libraries/messages.inc.php:1006 libraries/mysql_charsets.lib.php:283 +#: libraries/messages.inc.php:1002 libraries/mysql_charsets.lib.php:283 msgid "Slovak" msgstr "" -#: libraries/messages.inc.php:1007 libraries/mysql_charsets.lib.php:286 +#: libraries/messages.inc.php:1003 libraries/mysql_charsets.lib.php:286 msgid "Slovenian" msgstr "" -#: libraries/messages.inc.php:1008 pmd_general.php:95 +#: libraries/messages.inc.php:1004 pmd_general.php:95 msgid "Small/Big All" msgstr "" -#: libraries/messages.inc.php:1009 pmd_general.php:91 +#: libraries/messages.inc.php:1005 pmd_general.php:91 msgid "Snap to grid" msgstr "" -#: libraries/messages.inc.php:1011 server_synchronize.php:1167 +#: libraries/messages.inc.php:1007 server_synchronize.php:1167 msgid "Socket" msgstr "" -#: libraries/messages.inc.php:1013 server_status.php:259 +#: libraries/messages.inc.php:1009 server_status.php:259 msgid "Sorting" msgstr "" -#: libraries/messages.inc.php:1015 tbl_printview.php:310 tbl_structure.php:657 +#: libraries/messages.inc.php:1011 tbl_printview.php:310 tbl_structure.php:657 msgid "Space usage" msgstr "Zauzeće" -#: libraries/messages.inc.php:1016 libraries/mysql_charsets.lib.php:289 +#: libraries/messages.inc.php:1012 libraries/mysql_charsets.lib.php:289 #, fuzzy msgid "Spanish" msgstr "Danski" -#: libraries/messages.inc.php:1019 +#: libraries/messages.inc.php:1015 msgid "Export type" msgstr "" -#: libraries/messages.inc.php:1020 +#: libraries/messages.inc.php:1016 msgid "Export time in UTC" msgstr "" -#: libraries/messages.inc.php:1021 libraries/sqlparser.lib.php:173 +#: libraries/messages.inc.php:1017 libraries/sqlparser.lib.php:173 msgid "" "There is a chance that you may have found a bug in the SQL parser. Please " "examine your query closely, and check that the quotes are correct and not " @@ -5853,7 +5853,7 @@ msgstr "" "jedan jedini upit koji stvara probleme i pošaljite nam izvještaj o grešci sa " "delom koda u donjoj REZ sekciji:" -#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:137 +#: libraries/messages.inc.php:1018 libraries/sqlparser.lib.php:137 msgid "" "There seems to be an error in your SQL query. The MySQL server error output " "below, if there is any, may also help you in diagnosing the problem" @@ -5861,419 +5861,419 @@ msgstr "" "Izgleda da postoji greška u vašem SQL upitu. Ovde je poruka o greški MySQL " "servera, koja vam može pomoći u otkrivanju problema" -#: libraries/messages.inc.php:1026 libraries/sqlparser.lib.php:495 +#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:495 msgid "Invalid Identifer" msgstr "Neispravan identifikator" -#: libraries/messages.inc.php:1027 libraries/sqlparser.lib.php:344 +#: libraries/messages.inc.php:1023 libraries/sqlparser.lib.php:344 msgid "Unclosed quote" msgstr "Navodnik nije zatvoren" -#: libraries/messages.inc.php:1028 libraries/sqlparser.lib.php:612 +#: libraries/messages.inc.php:1024 libraries/sqlparser.lib.php:612 msgid "Unknown Punctuation String" msgstr "Nepoznat string interpunkcije" -#: libraries/messages.inc.php:1030 server_replication.php:327 +#: libraries/messages.inc.php:1026 server_replication.php:327 #: server_replication.php:328 #, fuzzy msgid "Start" msgstr "Sub" -#: libraries/messages.inc.php:1033 tbl_printview.php:369 tbl_structure.php:729 +#: libraries/messages.inc.php:1029 tbl_printview.php:369 tbl_structure.php:729 msgid "Statements" msgstr "Ime" -#: libraries/messages.inc.php:1034 tbl_printview.php:380 tbl_structure.php:741 +#: libraries/messages.inc.php:1030 tbl_printview.php:380 tbl_structure.php:741 msgid "static" msgstr "" -#: libraries/messages.inc.php:1035 server_status.php:388 +#: libraries/messages.inc.php:1031 server_status.php:388 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: libraries/messages.inc.php:1038 server_replication.php:327 +#: libraries/messages.inc.php:1034 server_replication.php:327 #: server_replication.php:328 msgid "Stop" msgstr "" -#: libraries/messages.inc.php:1039 server_engines.php:49 +#: libraries/messages.inc.php:1035 server_engines.php:49 msgid "Storage Engines" msgstr "" -#: libraries/messages.inc.php:1040 libraries/tbl_properties.inc.php:726 +#: libraries/messages.inc.php:1036 libraries/tbl_properties.inc.php:726 #: server_engines.php:58 tbl_operations.php:353 msgid "Storage Engine" msgstr "" -#: libraries/messages.inc.php:1042 +#: libraries/messages.inc.php:1038 msgid "CSV for MS Excel" msgstr "CSV za MS Excel" -#: libraries/messages.inc.php:1044 tbl_structure.php:516 tbl_structure.php:518 +#: libraries/messages.inc.php:1040 tbl_structure.php:516 tbl_structure.php:518 msgid "Propose table structure" msgstr "Predloži strukturu tabele" -#: libraries/messages.inc.php:1045 server_synchronize.php:424 +#: libraries/messages.inc.php:1041 server_synchronize.php:424 #: server_synchronize.php:867 msgid "Structure Difference" msgstr "" -#: libraries/messages.inc.php:1049 server_synchronize.php:265 +#: libraries/messages.inc.php:1045 server_synchronize.php:265 msgid "Structure Synchronization" msgstr "" -#: libraries/messages.inc.php:1050 libraries/sql_query_form.lib.php:462 +#: libraries/messages.inc.php:1046 libraries/sql_query_form.lib.php:462 msgid "Submit" msgstr "Pošalji" -#: libraries/messages.inc.php:1052 main.php:358 +#: libraries/messages.inc.php:1048 main.php:358 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " "issues." msgstr "" -#: libraries/messages.inc.php:1054 libraries/mysql_charsets.lib.php:295 +#: libraries/messages.inc.php:1050 libraries/mysql_charsets.lib.php:295 #: libraries/mysql_charsets.lib.php:392 msgid "Swedish" msgstr "Švedski" -#: libraries/messages.inc.php:1060 tbl_operations.php:556 +#: libraries/messages.inc.php:1056 tbl_operations.php:556 msgid "Switch to copied table" msgstr "Pređi na kopiranu tabelu" -#: libraries/messages.inc.php:1061 server_synchronize.php:1213 +#: libraries/messages.inc.php:1057 server_synchronize.php:1213 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." msgstr "" -#: libraries/messages.inc.php:1062 server_synchronize.php:451 +#: libraries/messages.inc.php:1058 server_synchronize.php:451 #: server_synchronize.php:896 msgid "Synchronize Databases" msgstr "" -#: libraries/messages.inc.php:1063 libraries/server_links.inc.php:92 +#: libraries/messages.inc.php:1059 libraries/server_links.inc.php:92 #: server_synchronize.php:1092 server_synchronize.php:1100 msgid "Synchronize" msgstr "" -#: libraries/messages.inc.php:1065 server_synchronize.php:430 +#: libraries/messages.inc.php:1061 server_synchronize.php:430 #: server_synchronize.php:873 msgid "Add column(s)" msgstr "" -#: libraries/messages.inc.php:1066 tbl_create.php:62 +#: libraries/messages.inc.php:1062 tbl_create.php:62 #, fuzzy, php-format msgid "Table %s already exists!" msgstr "Korisnik %s već postoji!" -#: libraries/messages.inc.php:1067 server_synchronize.php:432 +#: libraries/messages.inc.php:1063 server_synchronize.php:432 #: server_synchronize.php:875 msgid "Alter column(s)" msgstr "" -#: libraries/messages.inc.php:1068 tbl_addfield.php:189 tbl_alter.php:103 +#: libraries/messages.inc.php:1064 tbl_addfield.php:189 tbl_alter.php:103 #: tbl_indexes.php:98 #, fuzzy, php-format msgid "Table %1$s has been altered successfully" msgstr "Izabrani korisnici su uspješno obrisani." -#: libraries/messages.inc.php:1069 server_synchronize.php:434 +#: libraries/messages.inc.php:1065 server_synchronize.php:434 #: server_synchronize.php:877 msgid "Apply index(s)" msgstr "" -#: libraries/messages.inc.php:1071 server_synchronize.php:446 +#: libraries/messages.inc.php:1067 server_synchronize.php:446 #: server_synchronize.php:890 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: libraries/messages.inc.php:1072 tbl_move_copy.php:82 +#: libraries/messages.inc.php:1068 tbl_move_copy.php:82 msgid "The table name is empty!" msgstr "Ima tabele je prazno!" -#: libraries/messages.inc.php:1073 tbl_create.php:249 +#: libraries/messages.inc.php:1069 tbl_create.php:249 #, fuzzy, php-format msgid "Table %1$s has been created." msgstr "Tabela %s je odbačena" -#: libraries/messages.inc.php:1076 tbl_operations.php:628 +#: libraries/messages.inc.php:1072 tbl_operations.php:628 #, php-format msgid "Table %s has been flushed" msgstr "Tabela %s je osvežena" -#: libraries/messages.inc.php:1077 server_synchronize.php:436 +#: libraries/messages.inc.php:1073 server_synchronize.php:436 #: server_synchronize.php:879 msgid "Insert row(s)" msgstr "" -#: libraries/messages.inc.php:1078 libraries/tbl_links.inc.php:107 +#: libraries/messages.inc.php:1074 libraries/tbl_links.inc.php:107 #: libraries/tbl_links.inc.php:140 libraries/tbl_links.inc.php:141 msgid "Table seems to be empty!" msgstr "" -#: libraries/messages.inc.php:1079 tbl_operations.php:568 +#: libraries/messages.inc.php:1075 tbl_operations.php:568 msgid "Table maintenance" msgstr "Radnje na tabeli" -#: libraries/messages.inc.php:1080 libraries/tbl_properties.inc.php:618 +#: libraries/messages.inc.php:1076 libraries/tbl_properties.inc.php:618 #: server_synchronize.php:428 server_synchronize.php:871 msgid "Table name" msgstr "" -#: libraries/messages.inc.php:1081 pdf_schema.php:1116 +#: libraries/messages.inc.php:1077 pdf_schema.php:1116 msgid "Table of contents" msgstr "Sadržaj" -#: libraries/messages.inc.php:1082 tbl_operations.php:334 +#: libraries/messages.inc.php:1078 tbl_operations.php:334 msgid "Table options" msgstr "Opcije tabele" -#: libraries/messages.inc.php:1083 server_synchronize.php:431 +#: libraries/messages.inc.php:1079 server_synchronize.php:431 #: server_synchronize.php:874 msgid "Remove column(s)" msgstr "" -#: libraries/messages.inc.php:1084 server_synchronize.php:433 +#: libraries/messages.inc.php:1080 server_synchronize.php:433 #: server_synchronize.php:876 msgid "Remove index(s)" msgstr "" -#: libraries/messages.inc.php:1088 server_synchronize.php:435 +#: libraries/messages.inc.php:1084 server_synchronize.php:435 #: server_synchronize.php:878 msgid "Update row(s)" msgstr "" -#: libraries/messages.inc.php:1090 server_synchronize.php:942 +#: libraries/messages.inc.php:1086 server_synchronize.php:942 msgid "Target database has been synchronized with source database" msgstr "" -#: libraries/messages.inc.php:1091 server_privileges.php:392 +#: libraries/messages.inc.php:1087 server_privileges.php:392 #: server_privileges.php:527 server_privileges.php:1679 #: server_privileges.php:1685 msgid "Table-specific privileges" msgstr "Privilegije vezane za tabele" -#: libraries/messages.inc.php:1092 server_status.php:254 +#: libraries/messages.inc.php:1088 server_status.php:254 msgid "Temporary data" msgstr "" -#: libraries/messages.inc.php:1093 tbl_change.php:728 +#: libraries/messages.inc.php:1089 tbl_change.php:728 msgid " Because of its length,
this field might not be editable " msgstr "Zbog njehove veličine, polje
možda nećete moći da izmenite" -#: libraries/messages.inc.php:1094 +#: libraries/messages.inc.php:1090 msgid "Texy! text" msgstr "" -#: libraries/messages.inc.php:1095 libraries/mysql_charsets.lib.php:298 +#: libraries/messages.inc.php:1091 libraries/mysql_charsets.lib.php:298 #: libraries/mysql_charsets.lib.php:395 msgid "Thai" msgstr "Tajlandski " -#: libraries/messages.inc.php:1102 libraries/replication_gui.lib.php:308 +#: libraries/messages.inc.php:1098 libraries/replication_gui.lib.php:308 #: server_privileges.php:734 msgid "This Host" msgstr "Ovaj server" -#: libraries/messages.inc.php:1103 server_status.php:252 +#: libraries/messages.inc.php:1099 server_status.php:252 msgid "Threads" msgstr "" -#: libraries/messages.inc.php:1104 server_processlist.php:22 +#: libraries/messages.inc.php:1100 server_processlist.php:22 #, php-format msgid "Thread %s was successfully killed." msgstr "Proces %s je uspješno prekinut." -#: libraries/messages.inc.php:1106 +#: libraries/messages.inc.php:1102 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." msgstr "" -#: libraries/messages.inc.php:1109 pmd_pdf.php:94 +#: libraries/messages.inc.php:1105 pmd_pdf.php:94 msgid "to/from page" msgstr "" -#: libraries/messages.inc.php:1110 pdf_pages.php:343 +#: libraries/messages.inc.php:1106 pdf_pages.php:343 msgid "Toggle scratchboard" msgstr "Uključuje/isključuje scratchboard" -#: libraries/messages.inc.php:1111 pmd_general.php:99 +#: libraries/messages.inc.php:1107 pmd_general.php:99 msgid "Toggle small/big" msgstr "" -#: libraries/messages.inc.php:1112 pmd_help.php:27 +#: libraries/messages.inc.php:1108 pmd_help.php:27 msgid "To select relation, click :" msgstr "" -#: libraries/messages.inc.php:1115 libraries/tbl_links.inc.php:149 +#: libraries/messages.inc.php:1111 libraries/tbl_links.inc.php:149 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" -#: libraries/messages.inc.php:1116 tbl_tracking.php:655 +#: libraries/messages.inc.php:1112 tbl_tracking.php:655 msgid "Activate now" msgstr "" -#: libraries/messages.inc.php:1117 tbl_tracking.php:653 +#: libraries/messages.inc.php:1113 tbl_tracking.php:653 #, php-format msgid "Activate tracking for %s.%s" msgstr "" -#: libraries/messages.inc.php:1118 tbl_tracking.php:221 +#: libraries/messages.inc.php:1114 tbl_tracking.php:221 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/messages.inc.php:1119 tbl_tracking.php:688 +#: libraries/messages.inc.php:1115 tbl_tracking.php:688 #, fuzzy msgid "Create version" msgstr "Verzija servera" -#: libraries/messages.inc.php:1120 tbl_tracking.php:668 +#: libraries/messages.inc.php:1116 tbl_tracking.php:668 #, php-format msgid "Create version %s of %s.%s" msgstr "" -#: libraries/messages.inc.php:1122 tbl_tracking.php:412 +#: libraries/messages.inc.php:1118 tbl_tracking.php:412 msgid "Data definition statement" msgstr "" -#: libraries/messages.inc.php:1123 tbl_tracking.php:463 +#: libraries/messages.inc.php:1119 tbl_tracking.php:463 msgid "Data manipulation statement" msgstr "" -#: libraries/messages.inc.php:1124 tbl_tracking.php:410 tbl_tracking.php:461 +#: libraries/messages.inc.php:1120 tbl_tracking.php:410 tbl_tracking.php:461 #, fuzzy msgid "Date" msgstr "Podaci" -#: libraries/messages.inc.php:1125 tbl_tracking.php:642 +#: libraries/messages.inc.php:1121 tbl_tracking.php:642 msgid "Deactivate now" msgstr "" -#: libraries/messages.inc.php:1126 tbl_tracking.php:640 +#: libraries/messages.inc.php:1122 tbl_tracking.php:640 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "" -#: libraries/messages.inc.php:1127 tbl_tracking.php:521 +#: libraries/messages.inc.php:1123 tbl_tracking.php:521 #, php-format msgid "Export as %s" msgstr "" -#: libraries/messages.inc.php:1130 tbl_tracking.php:251 tbl_tracking.php:379 +#: libraries/messages.inc.php:1126 tbl_tracking.php:251 tbl_tracking.php:379 msgid "Close" msgstr "" -#: libraries/messages.inc.php:1131 tbl_tracking.php:114 +#: libraries/messages.inc.php:1127 tbl_tracking.php:114 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/messages.inc.php:1133 tbl_tracking.php:397 tbl_tracking.php:504 +#: libraries/messages.inc.php:1129 tbl_tracking.php:397 tbl_tracking.php:504 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "" -#: libraries/messages.inc.php:1134 tbl_tracking.php:561 +#: libraries/messages.inc.php:1130 tbl_tracking.php:561 msgid "Show versions" msgstr "" -#: libraries/messages.inc.php:1135 tbl_tracking.php:507 +#: libraries/messages.inc.php:1131 tbl_tracking.php:507 msgid "SQL dump (file download)" msgstr "" -#: libraries/messages.inc.php:1136 tbl_tracking.php:508 +#: libraries/messages.inc.php:1132 tbl_tracking.php:508 msgid "SQL dump" msgstr "" -#: libraries/messages.inc.php:1137 tbl_tracking.php:213 +#: libraries/messages.inc.php:1133 tbl_tracking.php:213 msgid "SQL statements executed." msgstr "" -#: libraries/messages.inc.php:1138 +#: libraries/messages.inc.php:1134 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/messages.inc.php:1139 tbl_tracking.php:509 +#: libraries/messages.inc.php:1135 tbl_tracking.php:509 msgid "SQL execution" msgstr "" -#: libraries/messages.inc.php:1140 tbl_tracking.php:230 +#: libraries/messages.inc.php:1136 tbl_tracking.php:230 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/messages.inc.php:1141 tbl_tracking.php:381 +#: libraries/messages.inc.php:1137 tbl_tracking.php:381 msgid "Tracking statements" msgstr "" -#: libraries/messages.inc.php:1148 tbl_tracking.php:593 +#: libraries/messages.inc.php:1144 tbl_tracking.php:593 #, fuzzy msgid "Version" msgstr "verzija PHP-a" -#: libraries/messages.inc.php:1149 tbl_tracking.php:672 +#: libraries/messages.inc.php:1145 tbl_tracking.php:672 msgid "Track these data definition statements:" msgstr "" -#: libraries/messages.inc.php:1150 tbl_tracking.php:680 +#: libraries/messages.inc.php:1146 tbl_tracking.php:680 msgid "Track these data manipulation statements:" msgstr "" -#: libraries/messages.inc.php:1155 tbl_tracking.php:411 tbl_tracking.php:462 +#: libraries/messages.inc.php:1151 tbl_tracking.php:411 tbl_tracking.php:462 #, fuzzy msgid "Username" msgstr "Korisničko ime:" -#: libraries/messages.inc.php:1156 tbl_tracking.php:203 +#: libraries/messages.inc.php:1152 tbl_tracking.php:203 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "" -#: libraries/messages.inc.php:1157 tbl_tracking.php:187 +#: libraries/messages.inc.php:1153 tbl_tracking.php:187 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "" -#: libraries/messages.inc.php:1158 tbl_tracking.php:195 +#: libraries/messages.inc.php:1154 tbl_tracking.php:195 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "" -#: libraries/messages.inc.php:1159 tbl_tracking.php:262 +#: libraries/messages.inc.php:1155 tbl_tracking.php:262 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/messages.inc.php:1161 tbl_tracking.php:220 +#: libraries/messages.inc.php:1157 tbl_tracking.php:220 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/messages.inc.php:1162 libraries/mysql_charsets.lib.php:219 +#: libraries/messages.inc.php:1158 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:362 msgid "Traditional Chinese" msgstr "Tradicionalni kineski" -#: libraries/messages.inc.php:1163 libraries/mysql_charsets.lib.php:292 +#: libraries/messages.inc.php:1159 libraries/mysql_charsets.lib.php:292 #, fuzzy msgid "Traditional Spanish" msgstr "Tradicionalni kineski" -#: libraries/messages.inc.php:1164 server_status.php:388 +#: libraries/messages.inc.php:1160 server_status.php:388 msgid "Traffic" msgstr "Saobraćaj" -#: libraries/messages.inc.php:1165 server_status.php:261 +#: libraries/messages.inc.php:1161 server_status.php:261 msgid "Transaction coordinator" msgstr "" -#: libraries/messages.inc.php:1166 +#: libraries/messages.inc.php:1162 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 " @@ -6281,13 +6281,13 @@ msgid "" "need to set the first option to the empty string." msgstr "" -#: libraries/messages.inc.php:1167 +#: libraries/messages.inc.php:1163 msgid "" "Displays hexadecimal representation of data. Optional first parameter " "specifies how often space will be added (defaults to 2 nibbles)." msgstr "" -#: libraries/messages.inc.php:1168 +#: libraries/messages.inc.php:1164 msgid "" "Displays a clickable thumbnail. The options are the maximum width and height " "in pixels. The original aspect ratio is preserved." @@ -6295,15 +6295,15 @@ msgstr "" "Prikazuje umanjenu sliku na koju je moguće kliknuti; opcije: širina, visina " "u pikselima (čuva originalni odnos)" -#: libraries/messages.inc.php:1169 +#: libraries/messages.inc.php:1165 msgid "Displays a link to download this image." msgstr "Prikazuje link ka ovoj slici (npr. direktno preuzimanje iz BLOB-a)." -#: libraries/messages.inc.php:1170 +#: libraries/messages.inc.php:1166 msgid "See image/jpeg: inline" msgstr "Prikaži JPEG slike na strani" -#: libraries/messages.inc.php:1171 +#: libraries/messages.inc.php:1167 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 " @@ -6315,7 +6315,7 @@ msgid "" "gmdate() function." msgstr "" -#: libraries/messages.inc.php:1172 +#: libraries/messages.inc.php:1168 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 " @@ -6338,13 +6338,13 @@ msgstr "" "1). Ako je četvrti parametar postavljen na 1, NOWRAP će biti dodato ćeliji " "sa sadržajem tako da će izlaz biti prikazan bez izmena. (podrazumevano 1)" -#: libraries/messages.inc.php:1173 +#: libraries/messages.inc.php:1169 msgid "" "Displays the contents of the field as-is, without running it through " "htmlspecialchars(). That is, the field is assumed to contain valid HTML." msgstr "Čuva originalno formatiranje polja. Escaping se ne vrši." -#: libraries/messages.inc.php:1174 +#: libraries/messages.inc.php:1170 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 " @@ -6354,7 +6354,7 @@ msgstr "" "kao \"http://domain.com/\", druga opcija je širina u pikselima, treća je " "visina." -#: libraries/messages.inc.php:1175 +#: libraries/messages.inc.php:1171 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 " @@ -6363,11 +6363,11 @@ msgstr "" "Prikazuje link, polje sadrži naziv datoteke; prva opcija je prefiks kao " "\"http://domain.com/\", druga opcija je naslov za link." -#: libraries/messages.inc.php:1176 +#: libraries/messages.inc.php:1172 msgid "Formats text as SQL query with syntax highlighting." msgstr "" -#: libraries/messages.inc.php:1177 +#: libraries/messages.inc.php:1173 msgid "" "Displays a part of a string. The first option is the number of characters to " "skip from the beginning of the string (Default 0). The second option is the " @@ -6381,70 +6381,70 @@ msgstr "" "prikazan. Treća opcija određuje koji će znaci biti dodati izlazu kada se " "prikaže podstring (podrazumevano: ...) ." -#: libraries/messages.inc.php:1179 server_binlog.php:183 server_binlog.php:186 +#: libraries/messages.inc.php:1175 server_binlog.php:183 server_binlog.php:186 #: server_processlist.php:49 server_processlist.php:51 msgid "Truncate Shown Queries" msgstr "Prikaži skraćene upite" -#: libraries/messages.inc.php:1180 libraries/mysql_charsets.lib.php:301 +#: libraries/messages.inc.php:1176 libraries/mysql_charsets.lib.php:301 #: libraries/mysql_charsets.lib.php:389 msgid "Turkish" msgstr "Turski" -#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:304 +#: libraries/messages.inc.php:1179 libraries/mysql_charsets.lib.php:304 #: libraries/mysql_charsets.lib.php:386 msgid "Ukrainian" msgstr "Ukrajinski" -#: libraries/messages.inc.php:1185 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:1181 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 msgid "Unicode" msgstr "Unikod" -#: libraries/messages.inc.php:1187 libraries/mysql_charsets.lib.php:398 +#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:398 #: libraries/mysql_charsets.lib.php:405 msgid "unknown" msgstr "nepoznat" -#: libraries/messages.inc.php:1190 server_privileges.php:1152 +#: libraries/messages.inc.php:1186 server_privileges.php:1152 #, php-format msgid "You have updated the privileges for %s." msgstr "Ažurirali ste privilegije za %s." -#: libraries/messages.inc.php:1191 user_password.php:112 +#: libraries/messages.inc.php:1187 user_password.php:112 msgid "The profile has been updated." msgstr "Profil je promjenjen." -#: libraries/messages.inc.php:1193 libraries/relation.lib.php:138 +#: libraries/messages.inc.php:1189 libraries/relation.lib.php:138 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "Molimo pogledajte u dokumentaciji kako se ažurira tabela Column_comments" -#: libraries/messages.inc.php:1194 +#: libraries/messages.inc.php:1190 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/messages.inc.php:1204 tbl_printview.php:314 tbl_structure.php:661 +#: libraries/messages.inc.php:1200 tbl_printview.php:314 tbl_structure.php:661 msgid "Usage" msgstr "Zauzeće" -#: libraries/messages.inc.php:1205 +#: libraries/messages.inc.php:1201 msgid "Enclose table and field names with backquotes" msgstr "Koristi ' za ograničavanje imena polja" -#: libraries/messages.inc.php:1206 libraries/replication_gui.lib.php:314 +#: libraries/messages.inc.php:1202 libraries/replication_gui.lib.php:314 #: server_privileges.php:740 msgid "Use Host Table" msgstr "Koristi tabelu hosta" -#: libraries/messages.inc.php:1207 server_privileges.php:848 +#: libraries/messages.inc.php:1203 server_privileges.php:848 #, php-format msgid "The user %s already exists!" msgstr "Korisnik %s već postoji!" -#: libraries/messages.inc.php:1209 libraries/replication_gui.lib.php:55 +#: libraries/messages.inc.php:1205 libraries/replication_gui.lib.php:55 #: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245 #: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255 #: server_privileges.php:672 server_privileges.php:675 @@ -6452,35 +6452,35 @@ msgstr "Korisnik %s već postoji!" msgid "User name" msgstr "Ime korisnika" -#: libraries/messages.inc.php:1210 server_privileges.php:1645 +#: libraries/messages.inc.php:1206 server_privileges.php:1645 msgid "The selected user was not found in the privilege table." msgstr "Izabrani korisnik nije pronađen u tabeli privilegija." -#: libraries/messages.inc.php:1211 server_privileges.php:1365 +#: libraries/messages.inc.php:1207 server_privileges.php:1365 msgid "User overview" msgstr "Pregled korisnika" -#: libraries/messages.inc.php:1212 server_privileges.php:1261 +#: libraries/messages.inc.php:1208 server_privileges.php:1261 msgid "The selected users have been deleted successfully." msgstr "Izabrani korisnici su uspješno obrisani." -#: libraries/messages.inc.php:1213 server_privileges.php:2026 +#: libraries/messages.inc.php:1209 server_privileges.php:2026 #, php-format msgid "Users having access to "%s"" msgstr "Korisnici koji imaju pristup "%s"" -#: libraries/messages.inc.php:1214 main.php:189 server_privileges.php:1350 +#: libraries/messages.inc.php:1210 main.php:189 server_privileges.php:1350 #: server_privileges.php:1497 server_privileges.php:1611 #: server_privileges.php:2029 server_processlist.php:54 msgid "User" msgstr "Korisnik" -#: libraries/messages.inc.php:1215 tbl_change.php:1171 +#: libraries/messages.inc.php:1211 tbl_change.php:1171 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/messages.inc.php:1217 libraries/replication_gui.lib.php:251 +#: libraries/messages.inc.php:1213 libraries/replication_gui.lib.php:251 #: libraries/replication_gui.lib.php:319 libraries/replication_gui.lib.php:342 #: server_privileges.php:678 server_privileges.php:745 #: server_privileges.php:769 server_privileges.php:1889 @@ -6488,7 +6488,7 @@ msgstr "" msgid "Use text field" msgstr "Koristi tekst polje" -#: libraries/messages.inc.php:1221 libraries/sqlvalidator.lib.php:68 +#: libraries/messages.inc.php:1217 libraries/sqlvalidator.lib.php:68 #, php-format msgid "" "The SQL validator could not be initialized. Please check if you have " @@ -6497,85 +6497,85 @@ msgstr "" "SQL validator nije mogao da bude pokrenut. Proverite da li su instalirane " "neophodne PHP ekstenzije opisane u %sdokumentaciji%s." -#: libraries/messages.inc.php:1222 libraries/replication_gui.lib.php:111 +#: libraries/messages.inc.php:1218 libraries/replication_gui.lib.php:111 #: server_status.php:627 tbl_change.php:324 tbl_printview.php:370 #: tbl_select.php:139 tbl_structure.php:730 msgid "Value" msgstr "Vrijednost" -#: libraries/messages.inc.php:1223 libraries/replication_gui.lib.php:110 +#: libraries/messages.inc.php:1219 libraries/replication_gui.lib.php:110 #: libraries/sql_query_form.lib.php:445 server_status.php:626 #: server_variables.php:52 msgid "Variable" msgstr "Promjenljiva" -#: libraries/messages.inc.php:1225 server_export.php:21 +#: libraries/messages.inc.php:1221 server_export.php:21 msgid "View dump (schema) of databases" msgstr "Prikaži sadržaj (shemu) baze" -#: libraries/messages.inc.php:1227 tbl_export.php:23 +#: libraries/messages.inc.php:1223 tbl_export.php:23 msgid "View dump (schema) of table" msgstr "Prikaži sadržaj (shemu) tabele" -#: libraries/messages.inc.php:1231 view_create.php:142 +#: libraries/messages.inc.php:1227 view_create.php:142 msgid "VIEW name" msgstr "" -#: libraries/messages.inc.php:1237 main.php:205 +#: libraries/messages.inc.php:1233 main.php:205 msgid "Web server" msgstr "" -#: libraries/messages.inc.php:1239 libraries/mysql_charsets.lib.php:277 +#: libraries/messages.inc.php:1235 libraries/mysql_charsets.lib.php:277 #: libraries/mysql_charsets.lib.php:325 msgid "West European" msgstr "Zapadnoevropski" -#: libraries/messages.inc.php:1240 main.php:230 +#: libraries/messages.inc.php:1236 main.php:230 msgid "Wiki" msgstr "" -#: libraries/messages.inc.php:1241 server_privileges.php:2138 +#: libraries/messages.inc.php:1237 server_privileges.php:2138 msgid "wildcard" msgstr "Džoker" -#: libraries/messages.inc.php:1248 +#: libraries/messages.inc.php:1244 msgid "Export contents" msgstr "" -#: libraries/messages.inc.php:1249 +#: libraries/messages.inc.php:1245 msgid "Export functions" msgstr "" -#: libraries/messages.inc.php:1250 +#: libraries/messages.inc.php:1246 msgid "Export procedures" msgstr "" -#: libraries/messages.inc.php:1251 +#: libraries/messages.inc.php:1247 msgid "Export Structure Schemas (recommended)" msgstr "" -#: libraries/messages.inc.php:1252 +#: libraries/messages.inc.php:1248 #, fuzzy msgid "Export tables" msgstr "Nema tabela" -#: libraries/messages.inc.php:1253 +#: libraries/messages.inc.php:1249 msgid "Export triggers" msgstr "" -#: libraries/messages.inc.php:1254 +#: libraries/messages.inc.php:1250 msgid "Export views" msgstr "" -#: libraries/messages.inc.php:1255 +#: libraries/messages.inc.php:1251 msgid "XML" msgstr "XML" -#: libraries/messages.inc.php:1259 server_privileges.php:592 +#: libraries/messages.inc.php:1255 server_privileges.php:592 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Napomena: Postavljanje ovih opcija na 0 (nulu) uklanja limite." -#: libraries/messages.inc.php:1260 +#: libraries/messages.inc.php:1256 msgid "\"zipped\"" msgstr "\"zipovano\"" diff --git a/po/ca.po b/po/ca.po index ae61d7bb1..fdce5e5ef 100644 --- 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-05-13 11:25+0200\n" +"POT-Creation-Date: 2010-05-13 11:30+0200\n" "PO-Revision-Date: 2010-03-12 09:13+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: catalan \n" @@ -13,19 +13,19 @@ msgstr "" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:38 browse_foreigners.php:59 -#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:870 +#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:866 #: server_privileges.php:1475 msgid "Show all" msgstr "Mostra tot" #: browse_foreigners.php:82 db_operations.php:648 -#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:394 -#: libraries/export/pdf.php:147 libraries/messages.inc.php:597 +#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394 +#: libraries/export/pdf.php:147 libraries/messages.inc.php:593 #: pdf_schema.php:283 pdf_schema.php:1123 pdf_schema.php:1139 msgid "Page number:" msgstr "Número de pàgina:" -#: browse_foreigners.php:132 libraries/messages.inc.php:1242 +#: browse_foreigners.php:132 libraries/messages.inc.php:1238 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -38,7 +38,7 @@ 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/db_links.inc.php:75 -#: libraries/messages.inc.php:841 libraries/tbl_links.inc.php:63 +#: libraries/messages.inc.php:837 libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Cerca" @@ -47,12 +47,12 @@ msgstr "Cerca" #: db_search.php:362 db_structure.php:567 js/messages.php:48 #: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2267 +#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 #: 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 #: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614 -#: libraries/messages.inc.php:361 libraries/replication_gui.lib.php:73 +#: libraries/messages.inc.php:357 libraries/replication_gui.lib.php:73 #: libraries/replication_gui.lib.php:365 libraries/select_server.lib.php:104 #: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477 #: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782 @@ -72,33 +72,33 @@ msgid "Go" msgstr "Executa" #: browse_foreigners.php:168 browse_foreigners.php:172 -#: libraries/Index.class.php:442 libraries/messages.inc.php:459 +#: libraries/Index.class.php:442 libraries/messages.inc.php:455 #: tbl_tracking.php:320 msgid "Keyname" msgstr "Nom Clau" #: browse_foreigners.php:169 browse_foreigners.php:171 -#: libraries/messages.inc.php:252 server_collations.php:55 +#: libraries/messages.inc.php:248 server_collations.php:55 #: server_collations.php:67 server_engines.php:59 server_status.php:628 msgid "Description" msgstr "Descripció" #: browse_foreigners.php:247 browse_foreigners.php:256 #: browse_foreigners.php:268 browse_foreigners.php:276 -#: libraries/messages.inc.php:1218 +#: libraries/messages.inc.php:1214 msgid "Use this value" msgstr "Fes servir aquest valor" -#: db_create.php:46 libraries/messages.inc.php:215 +#: db_create.php:46 libraries/messages.inc.php:211 #, php-format 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 libraries/messages.inc.php:232 +#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:228 msgid "Database comment: " msgstr "Comentaris de la Base de Dades: " -#: db_datadict.php:165 libraries/messages.inc.php:1070 +#: db_datadict.php:165 libraries/messages.inc.php:1066 #: libraries/tbl_properties.inc.php:724 pdf_schema.php:1236 #: tbl_operations.php:345 tbl_printview.php:130 msgid "Table comments" @@ -107,7 +107,7 @@ msgstr "Comentaris de la taula" #: db_datadict.php:174 db_qbe.php:174 libraries/Index.class.php:446 #: libraries/export/htmlword.php:244 libraries/export/latex.php:360 #: libraries/export/odt.php:294 libraries/export/texytext.php:233 -#: libraries/messages.inc.php:317 libraries/tbl_properties.inc.php:99 +#: libraries/messages.inc.php:313 libraries/tbl_properties.inc.php:99 #: libraries/tbl_properties.inc.php:275 pdf_schema.php:1262 #: pdf_schema.php:1283 tbl_change.php:308 tbl_indexes.php:189 #: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135 @@ -119,7 +119,7 @@ msgstr "Camp" #: libraries/db_events.inc.php:31 libraries/db_routines.inc.php:42 #: 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/messages.inc.php:1181 +#: libraries/export/texytext.php:234 libraries/messages.inc.php:1177 #: libraries/tbl_properties.inc.php:100 pdf_schema.php:1263 #: pdf_schema.php:1284 server_privileges.php:2031 tbl_change.php:287 #: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313 @@ -131,7 +131,7 @@ msgstr "Tipus" #: db_datadict.php:177 libraries/Index.class.php:449 #: libraries/export/htmlword.php:246 libraries/export/latex.php:360 #: libraries/export/odt.php:300 libraries/export/texytext.php:235 -#: libraries/messages.inc.php:576 libraries/tbl_properties.inc.php:109 +#: libraries/messages.inc.php:572 libraries/tbl_properties.inc.php:109 #: pdf_schema.php:1265 pdf_schema.php:1286 tbl_change.php:323 #: tbl_printview.php:145 tbl_structure.php:181 tbl_tracking.php:276 #: tbl_tracking.php:327 @@ -140,7 +140,7 @@ msgstr "Nul" #: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 -#: libraries/export/texytext.php:236 libraries/messages.inc.php:238 +#: libraries/export/texytext.php:236 libraries/messages.inc.php:234 #: libraries/tbl_properties.inc.php:106 pdf_schema.php:1266 #: pdf_schema.php:1287 tbl_printview.php:146 tbl_structure.php:182 #: tbl_tracking.php:277 @@ -149,14 +149,14 @@ msgstr "Defecte" #: db_datadict.php:182 libraries/export/htmlword.php:249 #: libraries/export/latex.php:362 libraries/export/odt.php:307 -#: libraries/export/texytext.php:238 libraries/messages.inc.php:483 +#: libraries/export/texytext.php:238 libraries/messages.inc.php:479 #: pdf_schema.php:1268 pdf_schema.php:1289 tbl_printview.php:150 msgid "Links to" msgstr "Enllaços a" #: db_datadict.php:184 db_printview.php:112 libraries/export/htmlword.php:252 #: libraries/export/latex.php:365 libraries/export/odt.php:312 -#: libraries/export/texytext.php:241 libraries/messages.inc.php:163 +#: libraries/export/texytext.php:241 libraries/messages.inc.php:159 #: libraries/tbl_properties.inc.php:130 pdf_schema.php:1279 #: pdf_schema.php:1290 tbl_printview.php:152 msgid "Comments" @@ -165,7 +165,7 @@ msgstr "Comentaris" #: db_datadict.php:267 libraries/Index.class.php:359 #: 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/messages.inc.php:559 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:555 #: libraries/mult_submits.inc.php:263 pdf_schema.php:1344 #: server_privileges.php:1529 server_privileges.php:1540 #: server_privileges.php:1850 server_privileges.php:1855 @@ -177,7 +177,7 @@ msgstr "No" #: db_datadict.php:267 libraries/Index.class.php:360 #: libraries/Index.class.php:385 libraries/export/htmlword.php:322 #: libraries/export/latex.php:430 libraries/export/odt.php:368 -#: libraries/export/texytext.php:311 libraries/messages.inc.php:1257 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:1253 #: libraries/mult_submits.inc.php:45 libraries/mult_submits.inc.php:50 #: libraries/mult_submits.inc.php:55 libraries/mult_submits.inc.php:60 #: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:101 @@ -191,108 +191,108 @@ msgstr "No" msgid "Yes" msgstr "Si" -#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:670 +#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:666 #: tbl_printview.php:498 msgid "Print" msgstr "Imprimeix" -#: db_export.php:29 libraries/messages.inc.php:1226 +#: db_export.php:29 libraries/messages.inc.php:1222 msgid "View dump (schema) of database" msgstr "Veure l'esquema de la base de dades" #: db_export.php:33 db_printview.php:96 db_qbe.php:102 db_structure.php:51 -#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:568 +#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:564 #: navigation.php:346 msgid "No tables found in database." msgstr "Base de dades sense taules." -#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:845 +#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:841 #: server_export.php:27 msgid "Select All" msgstr "Tria Tot" -#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1188 +#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1184 #: server_export.php:29 msgid "Unselect All" msgstr "Desmarca tot" -#: db_operations.php:38 libraries/messages.inc.php:213 tbl_create.php:54 +#: db_operations.php:38 libraries/messages.inc.php:209 tbl_create.php:54 msgid "The database name is empty!" msgstr "El nom de la base de dades és buit!" -#: db_operations.php:236 libraries/messages.inc.php:753 +#: db_operations.php:236 libraries/messages.inc.php:749 #, php-format msgid "Database %s has been renamed to %s" msgstr "Base de dades %s reanomenada a %s" -#: db_operations.php:240 libraries/messages.inc.php:178 +#: db_operations.php:240 libraries/messages.inc.php:174 #, php-format msgid "Database %s has been copied to %s" msgstr "La Base de dades %s s'ha copiat a %s" -#: db_operations.php:410 libraries/messages.inc.php:236 +#: db_operations.php:410 libraries/messages.inc.php:232 msgid "Rename database to" msgstr "Reanomena base de dades a" -#: db_operations.php:415 libraries/messages.inc.php:161 +#: db_operations.php:415 libraries/messages.inc.php:157 #: server_processlist.php:57 msgid "Command" msgstr "Ordre" -#: db_operations.php:425 libraries/messages.inc.php:58 tbl_change.php:1143 +#: db_operations.php:425 libraries/messages.inc.php:54 tbl_change.php:1143 msgid "and then" msgstr "i llavors" -#: db_operations.php:451 libraries/messages.inc.php:233 +#: db_operations.php:451 libraries/messages.inc.php:229 msgid "Copy database to" msgstr "Còpia base de dades a" -#: db_operations.php:458 libraries/messages.inc.php:1043 +#: db_operations.php:458 libraries/messages.inc.php:1039 #: tbl_operations.php:526 tbl_tracking.php:388 msgid "Structure only" msgstr "Només l'estructura" -#: db_operations.php:459 libraries/messages.inc.php:1041 +#: db_operations.php:459 libraries/messages.inc.php:1037 #: tbl_operations.php:527 tbl_tracking.php:390 msgid "Structure and data" msgstr "Estructura i dades" -#: db_operations.php:460 libraries/messages.inc.php:229 tbl_operations.php:528 +#: db_operations.php:460 libraries/messages.inc.php:225 tbl_operations.php:528 #: tbl_tracking.php:389 msgid "Data only" msgstr "Només dades" -#: db_operations.php:468 libraries/messages.inc.php:186 +#: db_operations.php:468 libraries/messages.inc.php:182 msgid "CREATE DATABASE before copying" msgstr "Inclou CREATE DATABASE abans de copiar" #: db_operations.php:471 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 -#: libraries/export/sql.php:82 libraries/messages.inc.php:30 +#: libraries/export/sql.php:82 libraries/messages.inc.php:26 #: tbl_operations.php:534 #, php-format msgid "Add %s" msgstr "Afegeix %s" -#: db_operations.php:475 libraries/messages.inc.php:29 tbl_operations.php:297 +#: db_operations.php:475 libraries/messages.inc.php:25 tbl_operations.php:297 #: tbl_operations.php:536 msgid "Add AUTO_INCREMENT value" msgstr "Afegeix valor AUTO_INCREMENT" -#: db_operations.php:479 libraries/messages.inc.php:31 tbl_operations.php:543 +#: db_operations.php:479 libraries/messages.inc.php:27 tbl_operations.php:543 msgid "Add constraints" msgstr "Afegeix restriccions" -#: db_operations.php:492 libraries/messages.inc.php:1059 +#: db_operations.php:492 libraries/messages.inc.php:1055 msgid "Switch to copied database" msgstr "Canvia a la base de dades copiada" -#: db_operations.php:533 libraries/messages.inc.php:89 +#: db_operations.php:533 libraries/messages.inc.php:85 msgid "BLOB Repository" msgstr "Repositori BLOB" #: db_operations.php:536 db_tracking.php:76 libraries/common.lib.php:1350 -#: libraries/messages.inc.php:1037 libraries/server_links.inc.php:49 +#: libraries/messages.inc.php:1033 libraries/server_links.inc.php:49 #: server_processlist.php:59 tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "Estat" @@ -304,11 +304,11 @@ msgctxt "BLOB repository" msgid "Enabled" msgstr "Activat" -#: db_operations.php:548 libraries/messages.inc.php:93 +#: db_operations.php:548 libraries/messages.inc.php:89 msgid "Disable" msgstr "Desactiva" -#: db_operations.php:558 libraries/messages.inc.php:90 +#: db_operations.php:558 libraries/messages.inc.php:86 msgid "Damaged" msgstr "Fet malbé" @@ -326,12 +326,12 @@ msgctxt "BLOB repository" msgid "Disabled" msgstr "Desactivat" -#: db_operations.php:574 libraries/messages.inc.php:96 +#: db_operations.php:574 libraries/messages.inc.php:92 msgid "Enable" msgstr "Activa" #: db_operations.php:598 libraries/Index.class.php:448 -#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:158 +#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:154 #: 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:361 @@ -340,7 +340,7 @@ msgstr "Activa" msgid "Collation" msgstr "Ordenació" -#: db_operations.php:609 libraries/messages.inc.php:742 main.php:316 +#: db_operations.php:609 libraries/messages.inc.php:738 main.php:316 #: pdf_schema.php:34 #, php-format msgid "" @@ -350,58 +350,58 @@ msgstr "" "Les característiques addicionals per treballar amb taules enllaçades s'han " "desactivat. Per saber perquè prem a %saquí%s." -#: db_operations.php:645 libraries/messages.inc.php:264 pdf_pages.php:528 +#: db_operations.php:645 libraries/messages.inc.php:260 pdf_pages.php:528 msgid "Display PDF schema" msgstr "Mostra l'esquema PDF" -#: db_operations.php:661 libraries/messages.inc.php:877 pdf_pages.php:529 +#: db_operations.php:661 libraries/messages.inc.php:873 pdf_pages.php:529 msgid "Show grid" msgstr "Mostra graella" -#: db_operations.php:664 libraries/messages.inc.php:874 pdf_pages.php:530 +#: db_operations.php:664 libraries/messages.inc.php:870 pdf_pages.php:530 msgid "Show color" msgstr "Mostra color" -#: db_operations.php:666 libraries/messages.inc.php:998 pdf_pages.php:531 +#: db_operations.php:666 libraries/messages.inc.php:994 pdf_pages.php:531 msgid "Show dimension of tables" msgstr "Mostra dimensió de les taules" -#: db_operations.php:669 libraries/messages.inc.php:52 pdf_pages.php:532 +#: db_operations.php:669 libraries/messages.inc.php:48 pdf_pages.php:532 msgid "Display all tables with the same width" msgstr "Mostrar totes les taules amb la mateixa amplada?" -#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:227 +#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:223 #: pdf_pages.php:533 msgid "Data Dictionary" msgstr "Diccionari de Dades" -#: db_operations.php:674 libraries/messages.inc.php:884 pdf_pages.php:534 +#: db_operations.php:674 libraries/messages.inc.php:880 pdf_pages.php:534 msgid "Only show keys" msgstr "Només mostrar claus" -#: db_operations.php:676 libraries/messages.inc.php:875 pdf_pages.php:535 +#: db_operations.php:676 libraries/messages.inc.php:871 pdf_pages.php:535 msgid "Data Dictionary Format" msgstr "Format del Diccionari de Dades" -#: db_operations.php:678 libraries/messages.inc.php:464 pdf_pages.php:537 +#: db_operations.php:678 libraries/messages.inc.php:460 pdf_pages.php:537 msgid "Landscape" msgstr "Horitzontal" -#: db_operations.php:679 libraries/messages.inc.php:663 pdf_pages.php:538 +#: db_operations.php:679 libraries/messages.inc.php:659 pdf_pages.php:538 msgid "Portrait" msgstr "Vertical" -#: db_operations.php:682 libraries/messages.inc.php:599 pdf_pages.php:541 +#: db_operations.php:682 libraries/messages.inc.php:595 pdf_pages.php:541 msgid "Paper size" msgstr "Tamany de paper" -#: db_operations.php:706 libraries/messages.inc.php:281 +#: db_operations.php:706 libraries/messages.inc.php:277 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 libraries/messages.inc.php:1087 +#: libraries/header.inc.php:126 libraries/messages.inc.php:1083 #: pdf_pages.php:405 server_privileges.php:1626 server_privileges.php:1682 #: server_privileges.php:1946 server_synchronize.php:423 #: server_synchronize.php:866 tbl_tracking.php:592 test/theme.php:75 @@ -409,176 +409,176 @@ msgid "Table" msgstr "Taula" #: db_printview.php:105 libraries/db_structure.lib.php:56 -#: libraries/messages.inc.php:735 +#: libraries/messages.inc.php:731 msgid "Records" msgstr "Registres" #: db_printview.php:109 libraries/db_structure.lib.php:67 -#: libraries/messages.inc.php:1003 tbl_indexes.php:190 +#: libraries/messages.inc.php:999 tbl_indexes.php:190 msgid "Size" msgstr "Mida" #: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 -#: libraries/export/sql.php:899 libraries/messages.inc.php:436 +#: libraries/export/sql.php:899 libraries/messages.inc.php:432 msgid "in use" msgstr "en ús" #: db_printview.php:187 libraries/db_info.inc.php:88 -#: libraries/export/sql.php:514 libraries/messages.inc.php:1032 +#: libraries/export/sql.php:514 libraries/messages.inc.php:1028 #: pdf_schema.php:1241 tbl_printview.php:434 tbl_structure.php:810 msgid "Creation" msgstr "Creació" #: db_printview.php:196 libraries/db_info.inc.php:93 -#: libraries/export/sql.php:519 libraries/messages.inc.php:1036 +#: libraries/export/sql.php:519 libraries/messages.inc.php:1032 #: pdf_schema.php:1246 tbl_printview.php:444 tbl_structure.php:818 msgid "Last update" msgstr "Darrera actualització" #: db_printview.php:205 libraries/db_info.inc.php:98 -#: libraries/export/sql.php:524 libraries/messages.inc.php:1031 +#: libraries/export/sql.php:524 libraries/messages.inc.php:1027 #: pdf_schema.php:1251 tbl_printview.php:454 tbl_structure.php:826 msgid "Last check" msgstr "Darrera comprovació" -#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1085 +#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1081 #, php-format msgid "%s table(s)" msgstr "%s taula(es)" #: db_qbe.php:29 libraries/display_tbl.lib.php:1981 -#: libraries/messages.inc.php:1051 libraries/sql_query_form.lib.php:140 +#: libraries/messages.inc.php:1047 libraries/sql_query_form.lib.php:140 #: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131 #: view_operations.php:62 msgid "Your SQL query has been executed successfully" msgstr "La vostra comanda SQL ha estat executada amb èxit" -#: db_qbe.php:42 libraries/messages.inc.php:371 +#: db_qbe.php:42 libraries/messages.inc.php:367 msgid "You have to choose at least one column to display" msgstr "Has de triar al menys una columna per mostrar" #: db_qbe.php:200 libraries/db_structure.lib.php:104 -#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1014 +#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1010 msgid "Sort" msgstr "Classificació" #: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111 #: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828 -#: libraries/messages.inc.php:69 server_databases.php:170 +#: libraries/messages.inc.php:65 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314 msgid "Ascending" msgstr "Ascendent" #: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119 #: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825 -#: libraries/messages.inc.php:251 server_databases.php:170 +#: libraries/messages.inc.php:247 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315 msgid "Descending" msgstr "Descendent" #: db_qbe.php:264 db_tracking.php:78 libraries/display_tbl.lib.php:308 -#: libraries/messages.inc.php:888 tbl_change.php:277 tbl_tracking.php:597 +#: libraries/messages.inc.php:884 tbl_change.php:277 tbl_tracking.php:597 msgid "Show" msgstr "Mostra" -#: db_qbe.php:300 libraries/messages.inc.php:202 +#: db_qbe.php:300 libraries/messages.inc.php:198 msgid "Criteria" msgstr "Criteris" #: db_qbe.php:353 db_qbe.php:435 db_qbe.php:527 db_qbe.php:558 -#: libraries/messages.inc.php:718 +#: libraries/messages.inc.php:714 msgid "Ins" msgstr "Ins" #: db_qbe.php:357 db_qbe.php:439 db_qbe.php:524 db_qbe.php:555 -#: libraries/messages.inc.php:56 +#: libraries/messages.inc.php:52 msgid "And" msgstr "I" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:529 db_qbe.php:560 -#: libraries/messages.inc.php:717 +#: libraries/messages.inc.php:713 msgid "Del" 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/messages.inc.php:592 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:588 #: libraries/tbl_properties.inc.php:779 server_privileges.php:258 #: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288 msgid "Or" msgstr "O" -#: db_qbe.php:507 libraries/messages.inc.php:516 +#: db_qbe.php:507 libraries/messages.inc.php:512 msgid "Modify" msgstr "Modificar" -#: db_qbe.php:584 libraries/messages.inc.php:33 +#: db_qbe.php:584 libraries/messages.inc.php:29 msgid "Add/Delete Criteria Row" msgstr "Afegeix/esborra fila de criteri" -#: db_qbe.php:596 libraries/messages.inc.php:32 +#: db_qbe.php:596 libraries/messages.inc.php:28 msgid "Add/Delete Field Columns" msgstr "Afegeix/esborra Camps de Columna" -#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1192 +#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1188 msgid "Update Query" msgstr "Actualitza consulta" -#: db_qbe.php:617 libraries/messages.inc.php:1216 +#: db_qbe.php:617 libraries/messages.inc.php:1212 msgid "Use Tables" msgstr "Usa Taules" -#: db_qbe.php:640 libraries/messages.inc.php:723 +#: db_qbe.php:640 libraries/messages.inc.php:719 #, php-format msgid "SQL query on database %s:" msgstr "Consulta SQL a la base de dades %s:" -#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:823 +#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:819 msgid "Submit Query" msgstr "Executa consulta" #: db_search.php:68 libraries/auth/config.auth.lib.php:84 #: libraries/auth/config.auth.lib.php:103 #: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52 -#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:26 +#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:22 msgid "Access denied" msgstr "Accés denegat" -#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:836 +#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:832 msgid "at least one of the words" msgstr "al menys una d'aquestes paraules" -#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:837 +#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:833 msgid "all words" msgstr "Totes les paraules" -#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:838 +#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:834 msgid "the exact phrase" msgstr "La frase exacta" -#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:839 +#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:835 msgid "as regular expression" msgstr "com a expressió regular" -#: db_search.php:242 libraries/messages.inc.php:840 +#: db_search.php:242 libraries/messages.inc.php:836 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Resultats de la recerca per a \"%s\" %s:" -#: db_search.php:260 libraries/messages.inc.php:579 +#: db_search.php:260 libraries/messages.inc.php:575 #, php-format msgid "%s match(es) inside table %s" 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/messages.inc.php:108 +#: db_structure.php:105 libraries/messages.inc.php:104 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468 msgid "Browse" msgstr "Navega" #: db_search.php:272 libraries/display_tbl.lib.php:1165 -#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:243 +#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:239 #: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406 #: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377 #: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216 @@ -586,45 +586,45 @@ msgstr "Navega" msgid "Delete" msgstr "Esborra" -#: db_search.php:285 libraries/messages.inc.php:580 +#: db_search.php:285 libraries/messages.inc.php:576 #, php-format msgid "Total: %s match(es)" msgstr "Total: %s resultat(s)" -#: db_search.php:299 libraries/messages.inc.php:832 +#: db_search.php:299 libraries/messages.inc.php:828 msgid "Search in database" msgstr "Cerca a la base de dades" -#: db_search.php:302 libraries/messages.inc.php:835 +#: db_search.php:302 libraries/messages.inc.php:831 msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgstr "Paraula(es) o valor(s) a cercar (comodí: \"%\"):" -#: db_search.php:307 libraries/messages.inc.php:842 +#: db_search.php:307 libraries/messages.inc.php:838 msgid "Find:" msgstr "Trobat:" -#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1017 +#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1013 msgid "Words are separated by a space character (\" \")." msgstr "Paraules separades per un espai (\" \")." -#: db_search.php:325 libraries/messages.inc.php:834 +#: db_search.php:325 libraries/messages.inc.php:830 msgid "Inside table(s):" msgstr "A la(les) taula(es):" -#: db_search.php:355 libraries/messages.inc.php:833 +#: db_search.php:355 libraries/messages.inc.php:829 msgid "Inside field:" 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/messages.inc.php:431 libraries/sql_query_form.lib.php:334 +#: libraries/messages.inc.php:427 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/db_links.inc.php:63 libraries/export/latex.php:337 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:1048 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:1044 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 #: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269 msgid "Structure" @@ -633,8 +633,8 @@ 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:1642 -#: libraries/db_links.inc.php:100 libraries/messages.inc.php:272 +#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/db_links.inc.php:100 libraries/messages.inc.php:268 #: 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 @@ -644,40 +644,40 @@ 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:1641 -#: libraries/messages.inc.php:284 libraries/mult_submits.inc.php:39 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: libraries/messages.inc.php:280 libraries/mult_submits.inc.php:39 #: libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Buida" -#: db_structure.php:316 libraries/messages.inc.php:1075 +#: db_structure.php:316 libraries/messages.inc.php:1071 #: libraries/tbl_links.inc.php:100 #, php-format msgid "Table %s has been emptied" msgstr "S'ha buidat la taula %s" -#: db_structure.php:326 libraries/messages.inc.php:1229 +#: db_structure.php:326 libraries/messages.inc.php:1225 #: libraries/tbl_links.inc.php:133 #, php-format msgid "View %s has been dropped" msgstr "Vista %s esborrada" -#: db_structure.php:326 libraries/messages.inc.php:1074 +#: db_structure.php:326 libraries/messages.inc.php:1070 #: 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 libraries/messages.inc.php:1128 +#: db_structure.php:333 libraries/messages.inc.php:1124 msgid "Tracking is active." msgstr "El seguiment està actiu." -#: db_structure.php:335 libraries/messages.inc.php:1129 +#: db_structure.php:335 libraries/messages.inc.php:1125 msgid "Tracking is not active." msgstr "El seguiment no està actiu." #: db_structure.php:420 libraries/display_tbl.lib.php:1944 -#: libraries/messages.inc.php:1228 +#: libraries/messages.inc.php:1224 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -686,83 +686,83 @@ 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 -#: libraries/messages.inc.php:1233 libraries/tbl_info.inc.php:66 +#: libraries/messages.inc.php:1229 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/messages.inc.php:773 libraries/server_links.inc.php:70 +#: libraries/messages.inc.php:769 libraries/server_links.inc.php:70 #: server_replication.php:33 server_replication.php:164 server_status.php:258 msgid "Replication" msgstr "Replicació" -#: db_structure.php:489 libraries/messages.inc.php:1053 +#: db_structure.php:489 libraries/messages.inc.php:1049 msgid "Sum" msgstr "Suma" #: db_structure.php:496 libraries/StorageEngine.class.php:356 -#: libraries/messages.inc.php:239 +#: libraries/messages.inc.php:235 #, 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 #: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086 -#: libraries/messages.inc.php:1243 libraries/mult_submits.inc.php:16 +#: libraries/messages.inc.php:1239 libraries/mult_submits.inc.php:16 #: server_databases.php:346 server_databases.php:351 #: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465 msgid "With selected:" msgstr "Amb marca:" #: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: libraries/messages.inc.php:148 server_databases.php:348 +#: libraries/messages.inc.php:144 server_databases.php:348 #: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459 msgid "Check All" msgstr "Marcar-ho tot" #: db_structure.php:531 libraries/display_tbl.lib.php:2077 -#: libraries/messages.inc.php:1184 libraries/replication_gui.lib.php:33 +#: libraries/messages.inc.php:1180 libraries/replication_gui.lib.php:33 #: server_databases.php:350 server_privileges.php:533 #: server_privileges.php:1564 tbl_structure.php:463 msgid "Uncheck All" msgstr "Desmarcar tot" -#: db_structure.php:536 libraries/messages.inc.php:150 +#: db_structure.php:536 libraries/messages.inc.php:146 msgid "Check tables having overhead" msgstr "Comprova taules desfragmentades" #: db_structure.php:547 db_structure.php:548 db_structure.php:599 -#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:672 +#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:668 #: libraries/mult_submits.inc.php:28 tbl_structure.php:493 #: tbl_structure.php:495 msgid "Print view" msgstr "Imprimeix vista" -#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:153 +#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:149 #: libraries/mult_submits.inc.php:42 tbl_operations.php:579 msgid "Check table" msgstr "Verifica la taula" -#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:590 +#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:586 #: libraries/mult_submits.inc.php:47 tbl_operations.php:619 #: tbl_structure.php:710 tbl_structure.php:712 msgid "Optimize table" msgstr "Optimitza la taula" -#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:758 +#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:754 #: libraries/mult_submits.inc.php:52 tbl_operations.php:609 msgid "Repair table" msgstr "Repara la taula" -#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:55 +#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:51 #: libraries/mult_submits.inc.php:57 tbl_operations.php:599 msgid "Analyze table" msgstr "Analitza la taula" #: db_structure.php:557 db_structure.php:558 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/messages.inc.php:310 +#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:306 #: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84 #: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109 #: server_privileges.php:1341 setup/frames/menu.inc.php:22 @@ -770,7 +770,7 @@ msgstr "Analitza la taula" msgid "Export" msgstr "Exporta" -#: db_tracking.php:66 libraries/messages.inc.php:1151 +#: db_tracking.php:66 libraries/messages.inc.php:1147 msgid "Tracked tables" msgstr "Taules seguides" @@ -778,7 +778,7 @@ msgstr "Taules seguides" #: 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/header_printview.inc.php:58 libraries/messages.inc.php:212 +#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:208 #: navigation.php:233 server_databases.php:169 server_privileges.php:1621 #: server_privileges.php:1682 server_privileges.php:1940 #: server_processlist.php:56 server_synchronize.php:1179 @@ -786,76 +786,76 @@ msgstr "Taules seguides" msgid "Database" msgstr "Base de dades" -#: db_tracking.php:73 libraries/messages.inc.php:1146 +#: db_tracking.php:73 libraries/messages.inc.php:1142 msgid "Last version" msgstr "Darrera versió" -#: db_tracking.php:74 libraries/messages.inc.php:1145 tbl_tracking.php:594 +#: db_tracking.php:74 libraries/messages.inc.php:1141 tbl_tracking.php:594 msgid "Created" msgstr "Creat" -#: db_tracking.php:75 libraries/messages.inc.php:1147 tbl_tracking.php:595 +#: db_tracking.php:75 libraries/messages.inc.php:1143 tbl_tracking.php:595 msgid "Updated" msgstr "Actualitzat" #: db_tracking.php:77 libraries/Index.class.php:440 -#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:27 +#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:23 #: server_databases.php:203 server_privileges.php:1503 #: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187 msgid "Action" msgstr "Acció" -#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:247 +#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:243 msgid "Delete tracking data for this table" msgstr "Esborra les dades de seguiment per aquesta taula" -#: db_tracking.php:106 libraries/messages.inc.php:1142 tbl_tracking.php:548 +#: db_tracking.php:106 libraries/messages.inc.php:1138 tbl_tracking.php:548 #: tbl_tracking.php:606 tbl_tracking.php:613 msgid "active" msgstr "actiu" -#: db_tracking.php:108 libraries/messages.inc.php:1143 tbl_tracking.php:550 +#: db_tracking.php:108 libraries/messages.inc.php:1139 tbl_tracking.php:550 #: tbl_tracking.php:608 tbl_tracking.php:610 msgid "not active" msgstr "no actiu" -#: db_tracking.php:121 libraries/messages.inc.php:1160 +#: db_tracking.php:121 libraries/messages.inc.php:1156 msgid "Versions" msgstr "Versions" -#: db_tracking.php:122 libraries/messages.inc.php:1132 tbl_tracking.php:379 +#: db_tracking.php:122 libraries/messages.inc.php:1128 tbl_tracking.php:379 #: tbl_tracking.php:624 msgid "Tracking report" msgstr "Informe de seguiment" -#: db_tracking.php:123 libraries/messages.inc.php:1144 tbl_tracking.php:251 +#: db_tracking.php:123 libraries/messages.inc.php:1140 tbl_tracking.php:251 #: tbl_tracking.php:624 msgid "Structure snapshot" msgstr "Instantània de l'estructura" -#: db_tracking.php:152 libraries/messages.inc.php:1154 +#: db_tracking.php:152 libraries/messages.inc.php:1150 msgid "Untracked tables" msgstr "Taules no seguides" -#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1153 +#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1149 #: tbl_structure.php:529 tbl_structure.php:531 msgid "Track table" msgstr "Segueix taula" -#: db_tracking.php:200 libraries/messages.inc.php:1121 +#: db_tracking.php:200 libraries/messages.inc.php:1117 msgid "Database Log" msgstr "Registre de la base de dades" -#: export.php:62 libraries/messages.inc.php:312 +#: export.php:62 libraries/messages.inc.php:308 msgid "Selected export type has to be saved in file!" msgstr "El tipus d'exportació triat s'ha de desar en un arxiu!" -#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:567 +#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:563 #, php-format msgid "Insufficient space to save the file %s." msgstr "No hi ha prou espai per desar l'arxiu %s." -#: export.php:294 libraries/messages.inc.php:324 +#: export.php:294 libraries/messages.inc.php:320 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -863,17 +863,17 @@ msgstr "" "L'arxiu %s ja existeix al servidor, canvia el nom o marca l'opció de " "sobreescriure." -#: export.php:298 export.php:302 libraries/messages.inc.php:562 +#: export.php:298 export.php:302 libraries/messages.inc.php:558 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "El servidor web no té permisos per a desar l'arxiu %s." -#: export.php:629 libraries/messages.inc.php:276 +#: export.php:629 libraries/messages.inc.php:272 #, php-format msgid "Dump has been saved to file %s." msgstr "El bolcat s'ha desat amb el nom d'arxiu %s." -#: import.php:60 libraries/messages.inc.php:1202 +#: import.php:60 libraries/messages.inc.php:1198 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation%" @@ -883,14 +883,14 @@ msgstr "" "sdocumentació%s per trobar formes de modificar aquest límit." #: import.php:279 import.php:332 libraries/File.class.php:849 -#: libraries/File.class.php:961 libraries/messages.inc.php:325 +#: libraries/File.class.php:961 libraries/messages.inc.php:321 msgid "File could not be read" msgstr "No es pot llegir l'arxiu" #: import.php:287 import.php:296 import.php:315 import.php:324 #: libraries/File.class.php:1031 libraries/File.class.php:1039 #: libraries/File.class.php:1055 libraries/File.class.php:1063 -#: libraries/messages.inc.php:1189 +#: libraries/messages.inc.php:1185 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -899,7 +899,7 @@ msgstr "" "S'intenta carregar un arxiu amb una compresió no suportada (%s). O bé aquest " "suport no s'ha implementat encara o bé el teniu desactivat a la configuració." -#: import.php:337 libraries/messages.inc.php:547 +#: import.php:337 libraries/messages.inc.php:543 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -910,30 +910,30 @@ msgstr "" "vostre PHP. Veieu PFC(FAQ) 1.16." #: import.php:372 libraries/display_import.lib.php:24 -#: libraries/messages.inc.php:125 +#: libraries/messages.inc.php:121 msgid "Could not load import plugins, please check your installation!" msgstr "" "No es poden carregar les extensions d'importació, comprova l'instal.lació!" -#: import.php:397 libraries/messages.inc.php:102 +#: import.php:397 libraries/messages.inc.php:98 msgid "The bookmark has been deleted." msgstr "S'ha esborrat la consulta desada." -#: import.php:401 libraries/messages.inc.php:879 +#: import.php:401 libraries/messages.inc.php:875 msgid "Showing bookmark" msgstr "Mostrant consultes desades" -#: import.php:403 libraries/messages.inc.php:101 +#: import.php:403 libraries/messages.inc.php:97 #, php-format msgid "Bookmark %s created" msgstr "%s creat com a consulta desada" -#: import.php:409 import.php:415 libraries/messages.inc.php:407 +#: import.php:409 import.php:415 libraries/messages.inc.php:403 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Importació finalitzada correctament, %d consultes executades." -#: import.php:424 libraries/messages.inc.php:1107 +#: import.php:424 libraries/messages.inc.php:1103 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -941,12 +941,12 @@ msgstr "" "Temps exaurit de l'arxiu d'ordres, si voleu finalitzar l'importació, torneu " "a enviar el mateix arxiu a importar i el procés continuarà." -#: index.php:190 libraries/messages.inc.php:553 +#: index.php:190 libraries/messages.inc.php:549 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" "phpMyAdmin és més fàcil amb un navegador que suporti marcs (frames)." -#: js/messages.php:25 libraries/messages.inc.php:155 +#: js/messages.php:25 libraries/messages.inc.php:151 #: server_synchronize.php:345 server_synchronize.php:357 #: server_synchronize.php:373 server_synchronize.php:380 #: server_synchronize.php:739 server_synchronize.php:767 @@ -954,118 +954,118 @@ msgstr "" msgid "Click to select" msgstr "Clica per seleccionar" -#: js/messages.php:26 libraries/messages.inc.php:156 +#: js/messages.php:26 libraries/messages.inc.php:152 msgid "Click to unselect" msgstr "Clica per deseleccionar" #: js/messages.php:27 libraries/import.lib.php:103 -#: libraries/messages.inc.php:550 sql.php:89 +#: libraries/messages.inc.php:546 sql.php:89 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Instrucció \"DROP DATABASE\" desactivada." -#: js/messages.php:30 libraries/messages.inc.php:270 +#: js/messages.php:30 libraries/messages.inc.php:266 #: libraries/mult_submits.inc.php:258 sql.php:188 msgid "Do you really want to " msgstr "Realment vols fer?" -#: js/messages.php:31 libraries/messages.inc.php:271 +#: js/messages.php:31 libraries/messages.inc.php:267 #: libraries/mult_submits.inc.php:258 sql.php:172 msgid "You are about to DESTROY a complete database!" msgstr "Ets a punt d'ELIMINAR completament una base de dades!" -#: js/messages.php:34 libraries/messages.inc.php:94 +#: js/messages.php:34 libraries/messages.inc.php:90 msgid "You are about to DISABLE a BLOB Repository!" msgstr "Estàs a punt de DESACTIVAR un repositori BLOB!" -#: js/messages.php:35 libraries/messages.inc.php:91 +#: js/messages.php:35 libraries/messages.inc.php:87 #, php-format msgid "Are you sure you want to disable all BLOB references for database %s?" msgstr "" "Estàs segur de voler desactivar totes les referències BLOB per a la base de " "dades %s?" -#: js/messages.php:38 libraries/messages.inc.php:342 +#: js/messages.php:38 libraries/messages.inc.php:338 msgid "Missing value in the form!" msgstr "Falta un valor al formulari !" -#: js/messages.php:39 libraries/messages.inc.php:570 +#: js/messages.php:39 libraries/messages.inc.php:566 msgid "This is not a number!" msgstr "Aquest valor no és un número!" -#: js/messages.php:42 libraries/messages.inc.php:380 +#: js/messages.php:42 libraries/messages.inc.php:376 msgid "The host name is empty!" msgstr "El nom del servidor és buit!" -#: js/messages.php:43 libraries/messages.inc.php:1208 +#: js/messages.php:43 libraries/messages.inc.php:1204 msgid "The user name is empty!" msgstr "El nom d'usuari és buit!" -#: js/messages.php:44 libraries/messages.inc.php:607 +#: js/messages.php:44 libraries/messages.inc.php:603 #: server_privileges.php:1197 user_password.php:70 msgid "The password is empty!" msgstr "La contrasenya és buida!" -#: js/messages.php:45 libraries/messages.inc.php:609 +#: js/messages.php:45 libraries/messages.inc.php:605 #: server_privileges.php:1195 user_password.php:73 msgid "The passwords aren't the same!" msgstr "Les contrasenyes no coincideixen!" -#: js/messages.php:49 libraries/messages.inc.php:123 pmd_general.php:342 +#: js/messages.php:49 libraries/messages.inc.php:119 pmd_general.php:342 #: pmd_general.php:379 msgid "Cancel" msgstr "Cancel.lar" -#: js/messages.php:52 libraries/messages.inc.php:514 +#: js/messages.php:52 libraries/messages.inc.php:510 msgid "Modifications have been saved" msgstr "Les modificacions han estat desades" -#: js/messages.php:53 libraries/messages.inc.php:741 +#: js/messages.php:53 libraries/messages.inc.php:737 msgid "Relation deleted" msgstr "Relació esborrada" -#: js/messages.php:54 libraries/messages.inc.php:340 +#: js/messages.php:54 libraries/messages.inc.php:336 msgid "FOREIGN KEY relation added" msgstr "Afegida relació de FOREIGN KEY" -#: js/messages.php:55 libraries/messages.inc.php:434 +#: js/messages.php:55 libraries/messages.inc.php:430 msgid "Internal relation added" msgstr "Afegida relació interna" -#: js/messages.php:56 libraries/messages.inc.php:299 +#: js/messages.php:56 libraries/messages.inc.php:295 msgid "Error: Relation not added." msgstr "Error: La relació no s'ha afegit." -#: js/messages.php:57 libraries/messages.inc.php:300 +#: js/messages.php:57 libraries/messages.inc.php:296 msgid "Error: relation already exists." msgstr "Error: La relació ja existeix." -#: js/messages.php:58 libraries/messages.inc.php:302 +#: js/messages.php:58 libraries/messages.inc.php:298 msgid "Error saving coordinates for Designer." msgstr "Error desant coordenades per al Dissenyador." -#: js/messages.php:59 libraries/messages.inc.php:351 +#: js/messages.php:59 libraries/messages.inc.php:347 #: libraries/relation.lib.php:107 msgid "General relation features" msgstr "Característiques generals de relacions" -#: js/messages.php:59 libraries/messages.inc.php:260 +#: js/messages.php:59 libraries/messages.inc.php:256 #: libraries/relation.lib.php:101 libraries/relation.lib.php:108 msgid "Disabled" msgstr "Desactivat" -#: js/messages.php:60 libraries/messages.inc.php:850 +#: js/messages.php:60 libraries/messages.inc.php:846 msgid "Select referenced key" msgstr "Tria la clau referenciada" -#: js/messages.php:61 libraries/messages.inc.php:848 +#: js/messages.php:61 libraries/messages.inc.php:844 msgid "Select Foreign Key" msgstr "Tria una clau externa" -#: js/messages.php:62 libraries/messages.inc.php:653 +#: js/messages.php:62 libraries/messages.inc.php:649 msgid "Please select the primary key or a unique key" msgstr "Tria la clau principal o una clau única" -#: js/messages.php:63 libraries/messages.inc.php:142 pmd_general.php:77 +#: js/messages.php:63 libraries/messages.inc.php:138 pmd_general.php:77 #: tbl_relation.php:548 msgid "Choose field to display" msgstr "Tria el camp a mostrar" @@ -1085,9 +1085,9 @@ msgid "Prev" msgstr "Anterior" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2332 -#: libraries/common.lib.php:2335 libraries/display_tbl.lib.php:338 -#: libraries/messages.inc.php:543 server_binlog.php:205 server_binlog.php:207 +#: js/messages.php:77 libraries/common.lib.php:2344 +#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: libraries/messages.inc.php:539 server_binlog.php:205 server_binlog.php:207 #: tbl_printview.php:424 tbl_structure.php:802 msgid "Next" msgstr "Següent" @@ -1162,27 +1162,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1543 +#: js/messages.php:97 libraries/common.lib.php:1555 msgid "Jan" msgstr "Gen" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1545 +#: js/messages.php:99 libraries/common.lib.php:1557 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1547 +#: js/messages.php:101 libraries/common.lib.php:1559 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1549 +#: js/messages.php:103 libraries/common.lib.php:1561 msgid "Apr" msgstr "Abr" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1551 +#: js/messages.php:105 libraries/common.lib.php:1563 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1190,37 +1190,37 @@ msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1553 +#: js/messages.php:107 libraries/common.lib.php:1565 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1555 +#: js/messages.php:109 libraries/common.lib.php:1567 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1557 +#: js/messages.php:111 libraries/common.lib.php:1569 msgid "Aug" msgstr "Ago" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1559 +#: js/messages.php:113 libraries/common.lib.php:1571 msgid "Sep" msgstr "Set" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1561 +#: js/messages.php:115 libraries/common.lib.php:1573 msgid "Oct" msgstr "Oct" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1563 +#: js/messages.php:117 libraries/common.lib.php:1575 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1565 +#: js/messages.php:119 libraries/common.lib.php:1577 msgid "Dec" msgstr "Dec" @@ -1261,37 +1261,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1568 +#: js/messages.php:132 libraries/common.lib.php:1580 msgid "Sun" msgstr "Diu" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1570 +#: js/messages.php:134 libraries/common.lib.php:1582 msgid "Mon" msgstr "Dll" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1572 +#: js/messages.php:136 libraries/common.lib.php:1584 msgid "Tue" msgstr "Dma" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1574 +#: js/messages.php:138 libraries/common.lib.php:1586 msgid "Wed" msgstr "Dcr" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1576 +#: js/messages.php:140 libraries/common.lib.php:1588 msgid "Thu" msgstr "Dij" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1578 +#: js/messages.php:142 libraries/common.lib.php:1590 msgid "Fri" msgstr "Div" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1580 +#: js/messages.php:144 libraries/common.lib.php:1592 msgid "Sat" msgstr "Dis" @@ -1367,22 +1367,22 @@ msgstr "en ús" msgid "Second" msgstr "per segon" -#: libraries/Config.class.php:1015 libraries/messages.inc.php:338 +#: libraries/Config.class.php:1015 libraries/messages.inc.php:334 msgid "Font size" msgstr "Tamany de lletra" #: libraries/File.class.php:344 libraries/File.class.php:432 #: libraries/File.class.php:569 libraries/File.class.php:708 -#: libraries/messages.inc.php:1201 +#: libraries/messages.inc.php:1197 msgid "Unknown error in file upload." msgstr "Error desconegut al pujar l'arxiu." -#: libraries/File.class.php:414 libraries/messages.inc.php:1198 +#: libraries/File.class.php:414 libraries/messages.inc.php:1194 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "El tamany d'arxiu pujat supera la directiva upload_max_filesize de php.ini." -#: libraries/File.class.php:417 libraries/messages.inc.php:1197 +#: libraries/File.class.php:417 libraries/messages.inc.php:1193 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -1390,56 +1390,56 @@ msgstr "" "El tamany d'arxiu pujat supera la directiva MAX_FILE_SIZE especificada al " "formulari HTML." -#: libraries/File.class.php:420 libraries/messages.inc.php:1200 +#: libraries/File.class.php:420 libraries/messages.inc.php:1196 msgid "The uploaded file was only partially uploaded." msgstr "Només s'ha pujat parcialment l'arxiu." -#: libraries/File.class.php:423 libraries/messages.inc.php:1199 +#: libraries/File.class.php:423 libraries/messages.inc.php:1195 msgid "Missing a temporary folder." msgstr "No es troba la carpeta temporal." -#: libraries/File.class.php:426 libraries/messages.inc.php:1195 +#: libraries/File.class.php:426 libraries/messages.inc.php:1191 msgid "Failed to write file to disk." msgstr "Error en gravar l'arxiu al disc." -#: libraries/File.class.php:429 libraries/messages.inc.php:1196 +#: libraries/File.class.php:429 libraries/messages.inc.php:1192 msgid "File upload stopped by extension." msgstr "Pujada de l'arxiu aturada per l'extensió." -#: libraries/File.class.php:908 libraries/messages.inc.php:319 +#: libraries/File.class.php:908 libraries/messages.inc.php:315 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "Error movent l'arxiu pujat, consulta la FAQ 1.11" -#: libraries/Index.class.php:428 libraries/messages.inc.php:554 +#: libraries/Index.class.php:428 libraries/messages.inc.php:550 #: tbl_relation.php:529 msgid "No index defined!" msgstr "No s'ha definit l'índex!" -#: libraries/Index.class.php:433 libraries/messages.inc.php:411 +#: libraries/Index.class.php:433 libraries/messages.inc.php:407 #: server_databases.php:132 tbl_tracking.php:316 msgid "Indexes" msgstr "Indexos" -#: libraries/Index.class.php:444 libraries/messages.inc.php:1186 +#: libraries/Index.class.php:444 libraries/messages.inc.php:1182 #: 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:475 tbl_tracking.php:322 msgid "Unique" msgstr "Única" -#: libraries/Index.class.php:445 libraries/messages.inc.php:596 +#: libraries/Index.class.php:445 libraries/messages.inc.php:592 #: tbl_tracking.php:323 msgid "Packed" msgstr "Comprimit" -#: libraries/Index.class.php:447 libraries/messages.inc.php:131 +#: libraries/Index.class.php:447 libraries/messages.inc.php:127 #: tbl_tracking.php:325 msgid "Cardinality" msgstr "Cardinalitat" -#: libraries/Index.class.php:450 libraries/messages.inc.php:162 +#: libraries/Index.class.php:450 libraries/messages.inc.php:158 #: tbl_tracking.php:279 tbl_tracking.php:328 msgid "Comment" msgstr "Comentari" @@ -1447,22 +1447,22 @@ msgstr "Comentari" #: libraries/Index.class.php:466 libraries/common.lib.php:616 #: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:280 pdf_pages.php:280 +#: libraries/messages.inc.php:276 pdf_pages.php:280 #: setup/frames/index.inc.php:124 setup/lib/messages.inc.php:352 #: tbl_row_action.php:69 msgid "Edit" msgstr "Edita" -#: libraries/Index.class.php:472 libraries/messages.inc.php:666 +#: libraries/Index.class.php:472 libraries/messages.inc.php:662 msgid "The primary key has been dropped" msgstr "S'ha esborrat la clau principal" -#: libraries/Index.class.php:476 libraries/messages.inc.php:413 +#: libraries/Index.class.php:476 libraries/messages.inc.php:409 #, php-format msgid "Index %s has been dropped" msgstr "S'ha esborrat l'índex %s" -#: libraries/Index.class.php:576 libraries/messages.inc.php:412 +#: libraries/Index.class.php:576 libraries/messages.inc.php:408 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -1471,7 +1471,7 @@ 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/messages.inc.php:218 +#: libraries/List_Database.class.php:431 libraries/messages.inc.php:214 #: libraries/server_links.inc.php:41 server_databases.php:88 #: server_privileges.php:1621 setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" @@ -1501,87 +1501,87 @@ msgid_plural "%1$d rows inserted." msgstr[0] "%1$d fila(es) inserida(es)." msgstr[1] "%1$d fila(es) inserida(es)." -#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:549 +#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:545 msgid "" "There is no detailed status information available for this storage engine." msgstr "" "No hi ha informació detallada de l'estat disponible per a aquest motor " "d'emmagatzematge." -#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:291 +#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:287 #, php-format msgid "%s is available on this MySQL server." msgstr "%s està disponible en aquest servidor MySQL." -#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:292 +#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:288 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s s'ha desactivat en aquest servidor MySQL." -#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:294 +#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:290 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "Aquest servidor MySQL no suporta el motor d'emmagatzematge %s." -#: libraries/Table.class.php:1019 libraries/messages.inc.php:443 +#: libraries/Table.class.php:1019 libraries/messages.inc.php:439 msgid "Invalid database" msgstr "Base de dades incorrecte" -#: libraries/Table.class.php:1033 libraries/messages.inc.php:450 +#: libraries/Table.class.php:1033 libraries/messages.inc.php:446 #: tbl_get_field.php:26 msgid "Invalid table name" msgstr "Nom de taula incorrecte" -#: libraries/Table.class.php:1048 libraries/messages.inc.php:301 +#: libraries/Table.class.php:1048 libraries/messages.inc.php:297 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "Error reanomenant la taula %1$s a %2$s" -#: libraries/Table.class.php:1132 libraries/messages.inc.php:754 +#: libraries/Table.class.php:1132 libraries/messages.inc.php:750 #, php-format msgid "Table %s has been renamed to %s" msgstr "La taula %s ha canviat de nom. Ara es diu %s" -#: libraries/Theme.class.php:162 libraries/messages.inc.php:1099 +#: libraries/Theme.class.php:162 libraries/messages.inc.php:1095 #, php-format msgid "No valid image path for theme %s found!" msgstr "El camí de les imatges del tema %s és incorrecte!" -#: libraries/Theme.class.php:384 libraries/messages.inc.php:1097 +#: libraries/Theme.class.php:384 libraries/messages.inc.php:1093 msgid "No preview available." msgstr "No hi ha vista prèvia disponible." -#: libraries/Theme.class.php:387 libraries/messages.inc.php:1089 +#: libraries/Theme.class.php:387 libraries/messages.inc.php:1085 msgid "take it" msgstr "agafa" -#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1096 +#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1092 #, php-format msgid "Default theme %s not found!" msgstr "Tema per defecte %s no trobat!" -#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1098 +#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1094 #, php-format msgid "Theme %s not found!" msgstr "Tema %s no trobat!" -#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1100 +#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1096 #, php-format msgid "Theme path not found for theme %s!" msgstr "No s'ha trobat el camí de les imatges del tema %s!" -#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1101 +#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1097 #: test/theme.php:161 themes.php:21 themes.php:41 msgid "Theme / Style" msgstr "Tema / Estil" -#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:172 +#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:168 msgid "Cannot connect: invalid settings." msgstr "No puc connectar: paràmetres incorrectes." #: libraries/auth/config.auth.lib.php:92 #: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65 -#: libraries/messages.inc.php:1238 test/theme.php:152 +#: libraries/messages.inc.php:1234 test/theme.php:152 #, php-format msgid "Welcome to %s" msgstr "Benvingut a %s" @@ -1607,46 +1607,46 @@ msgstr "" "a l'arxiu config.inc.php i mira que es correspongui amb l'informació " "facilitada per l'administrador del servidor de MySQL." -#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:488 +#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:484 msgid "Log in" msgstr "Identificació" #: libraries/auth/cookie.auth.lib.php:246 -#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:659 +#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:655 #: libraries/navigation_header.inc.php:93 #: libraries/navigation_header.inc.php:95 msgid "phpMyAdmin documentation" msgstr "Documentació de phpMyAdmin" #: libraries/auth/cookie.auth.lib.php:258 -#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:492 +#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:488 msgid "You can enter hostname/IP address and port separated by space." msgstr "Pots entrar un nom d'amfitrió/adreça IP i port separat per espai." -#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:493 +#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:489 msgid "Server:" msgstr "Servidor" -#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:494 +#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:490 msgid "Username:" msgstr "Nom d'Usuari:" -#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:491 +#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:487 msgid "Password:" msgstr "Contrasenya:" -#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:854 +#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:850 msgid "Server Choice" msgstr "Elecció de Servidor" #: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 -#: libraries/messages.inc.php:177 +#: libraries/messages.inc.php:173 msgid "Cookies must be enabled past this point." msgstr "" "A partir d'aquest punt és necessari tenir les galetes (cookies) activades." #: libraries/auth/cookie.auth.lib.php:671 -#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:489 +#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:485 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" @@ -1654,60 +1654,60 @@ msgstr "" "AllowNoPassword)" #: libraries/auth/cookie.auth.lib.php:675 -#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:544 +#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:540 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "Sense activitat des de fa %s segons o més, entra de nou" #: libraries/auth/cookie.auth.lib.php:685 #: libraries/auth/cookie.auth.lib.php:687 -#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:126 +#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:122 msgid "Cannot log in to the MySQL server" msgstr "No podem connectar amb el servidor MySQL" -#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1245 +#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1241 msgid "Wrong username/password. Access denied." msgstr "Usuari i/o clau erronis. Accés denegat." #: libraries/auth/swekey/swekey.auth.lib.php:118 -#: libraries/messages.inc.php:1057 +#: libraries/messages.inc.php:1053 #, php-format msgid "File %s does not contain any key id" msgstr "L 'arxiu %s no conté cap identificació de clau" #: libraries/auth/swekey/swekey.auth.lib.php:157 #: libraries/auth/swekey/swekey.auth.lib.php:180 -#: libraries/messages.inc.php:1056 +#: libraries/messages.inc.php:1052 msgid "Hardware authentication failed" msgstr "Error a l'autenticació de maquinari" #: libraries/auth/swekey/swekey.auth.lib.php:166 -#: libraries/messages.inc.php:1058 +#: libraries/messages.inc.php:1054 msgid "No valid authentication key plugged" msgstr "Cap clau d'autenticació vàlida endollada" #: libraries/auth/swekey/swekey.auth.lib.php:202 -#: libraries/messages.inc.php:1055 +#: libraries/messages.inc.php:1051 msgid "Authenticating..." msgstr "Autenticant..." -#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1230 +#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1226 msgid "View image" msgstr "Veure imatge" -#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:652 +#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:648 msgid "Play audio" msgstr "Escolta audio" -#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1232 +#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1228 msgid "View video" msgstr "Veure video" -#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:269 +#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:265 msgid "Download file" msgstr "Descarrega arxiu" -#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:128 +#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:124 msgid "" "Couldn't load the iconv or recode extension needed for charset conversion. " "Either configure PHP to enable these extensions or disable charset " @@ -1719,7 +1719,7 @@ msgstr "" #: libraries/charset_conversion.lib.php:79 #: libraries/charset_conversion.lib.php:90 -#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:130 +#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:126 msgid "" "Couldn't use the iconv, libiconv, or recode_string functions, although the " "necessary extensions appear to be loaded. Check your PHP configuration." @@ -1727,7 +1727,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/messages.inc.php:170 +#: libraries/common.inc.php:583 libraries/messages.inc.php:166 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!" @@ -1763,23 +1763,23 @@ msgstr "" msgid "Invalid server index: %s" msgstr "Index de servidor invàlid: \"%s\"" -#: libraries/common.inc.php:636 libraries/messages.inc.php:448 +#: libraries/common.inc.php:636 libraries/messages.inc.php:444 #, 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/messages.inc.php:856 libraries/select_server.lib.php:41 +#: libraries/messages.inc.php:852 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/messages.inc.php:437 +#: libraries/common.inc.php:823 libraries/messages.inc.php:433 msgid "Invalid authentication method set in configuration:" msgstr "Mètode d'identificació incorrecte establert a la configuració:" -#: libraries/common.lib.php:147 libraries/messages.inc.php:499 +#: libraries/common.lib.php:147 libraries/messages.inc.php:495 #, php-format msgid "Max: %s%s" msgstr "Tamany Màxim: %s%s" @@ -1801,7 +1801,7 @@ msgstr "Enviat" #: libraries/common.lib.php:428 libraries/common.lib.php:430 #: libraries/common.lib.php:432 libraries/common.lib.php:448 #: libraries/common.lib.php:450 libraries/dbg/setup.php:25 -#: libraries/display_export.lib.php:164 libraries/messages.inc.php:267 +#: libraries/display_export.lib.php:164 libraries/messages.inc.php:263 #: libraries/relation.lib.php:97 libraries/sql_query_form.lib.php:451 #: libraries/sql_query_form.lib.php:454 main.php:229 pdf_pages.php:37 #: pdf_pages.php:43 pdf_pages.php:49 pdf_pages.php:54 @@ -1811,55 +1811,55 @@ msgstr "Documentació" #: libraries/common.lib.php:581 libraries/core.lib.php:234 #: libraries/core.lib.php:263 libraries/import.lib.php:134 -#: libraries/messages.inc.php:297 pdf_schema.php:32 pdf_schema.php:232 +#: libraries/messages.inc.php:293 pdf_schema.php:32 pdf_schema.php:232 #: tbl_change.php:1027 tbl_operations.php:213 tbl_relation.php:290 #: view_operations.php:62 msgid "Error" msgstr "Error" #: libraries/common.lib.php:595 libraries/header_printview.inc.php:61 -#: libraries/messages.inc.php:1023 server_processlist.php:60 +#: libraries/messages.inc.php:1019 server_processlist.php:60 #: server_status.php:247 msgid "SQL query" msgstr "crida SQL" -#: libraries/common.lib.php:634 libraries/messages.inc.php:538 +#: libraries/common.lib.php:634 libraries/messages.inc.php:534 msgid "MySQL said: " msgstr "MySQL diu: " -#: libraries/common.lib.php:667 libraries/messages.inc.php:76 +#: libraries/common.lib.php:667 libraries/messages.inc.php:72 #: pdf_schema.php:241 user_password.php:115 msgid "Back" msgstr "Enrere" -#: libraries/common.lib.php:1177 libraries/messages.inc.php:309 +#: libraries/common.lib.php:1177 libraries/messages.inc.php:305 #: setup/lib/messages.inc.php:353 msgid "Explain SQL" msgstr "Explica SQL" -#: libraries/common.lib.php:1180 libraries/messages.inc.php:551 +#: libraries/common.lib.php:1180 libraries/messages.inc.php:547 msgid "Skip Explain SQL" msgstr "Salta l'explicació de l'SQL" -#: libraries/common.lib.php:1212 libraries/messages.inc.php:563 +#: libraries/common.lib.php:1212 libraries/messages.inc.php:559 msgid "Without PHP Code" msgstr "Sense codi PHP" -#: libraries/common.lib.php:1215 libraries/messages.inc.php:649 +#: libraries/common.lib.php:1215 libraries/messages.inc.php:645 #: setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "Crea codi PHP" -#: libraries/common.lib.php:1233 libraries/messages.inc.php:737 +#: libraries/common.lib.php:1233 libraries/messages.inc.php:733 #: server_status.php:341 setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "Refresca" -#: libraries/common.lib.php:1242 libraries/messages.inc.php:575 +#: libraries/common.lib.php:1242 libraries/messages.inc.php:571 msgid "Skip Validate SQL" msgstr "Salta la Validació de l'SQL" -#: libraries/common.lib.php:1245 libraries/messages.inc.php:1220 +#: libraries/common.lib.php:1245 libraries/messages.inc.php:1216 #: setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "Valida l'SQL" @@ -1875,11 +1875,11 @@ msgid "Inline" msgstr "Motors" #: libraries/common.lib.php:1332 libraries/common.lib.php:1347 -#: libraries/messages.inc.php:713 +#: libraries/messages.inc.php:709 msgid "Profiling" msgstr "Perfils" -#: libraries/common.lib.php:1351 libraries/messages.inc.php:1108 +#: libraries/common.lib.php:1351 libraries/messages.inc.php:1104 #: libraries/tbl_triggers.lib.php:28 server_processlist.php:58 msgid "Time" msgstr "Temps" @@ -1913,46 +1913,56 @@ msgstr "PB" msgid "EiB" msgstr "EB" +#. l10n: Thousands separator +#: libraries/common.lib.php:1417 +msgid "," +msgstr "." + +#. l10n: Decimal separator +#: libraries/common.lib.php:1419 +msgid "." +msgstr "," + #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1584 +#: libraries/common.lib.php:1596 #: libraries/transformations/text_plain__dateformat.inc.php:28 msgid "%B %d, %Y at %I:%M %p" msgstr "%d-%m-%Y a les %H:%M:%S" -#: libraries/common.lib.php:1886 +#: libraries/common.lib.php:1898 #, 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:2301 libraries/common.lib.php:2304 -#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:664 +#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:660 #: server_status.php:608 msgid "Begin" msgstr "Inici" -#: libraries/common.lib.php:2302 libraries/common.lib.php:2305 -#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:665 +#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:661 #: server_binlog.php:168 server_binlog.php:170 msgid "Previous" msgstr "Anterior" -#: libraries/common.lib.php:2333 libraries/common.lib.php:2336 -#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:289 +#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:285 msgid "End" msgstr "Final" -#: libraries/common.lib.php:2409 libraries/messages.inc.php:455 +#: libraries/common.lib.php:2421 libraries/messages.inc.php:451 #, php-format msgid "Jump to database "%s"." msgstr "Vés a la Base de Dades "%s"." -#: libraries/common.lib.php:2429 libraries/messages.inc.php:461 +#: libraries/common.lib.php:2441 libraries/messages.inc.php:457 #, 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/core.lib.php:286 libraries/dbg/setup.php:22 -#: libraries/messages.inc.php:127 +#: libraries/messages.inc.php:123 #, php-format msgid "" "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " @@ -1960,117 +1970,117 @@ msgid "" msgstr "No puc carregar l'extensió %s,
Comprova la configuració de PHP." #: libraries/db_events.inc.php:20 libraries/db_events.inc.php:22 -#: libraries/export/sql.php:415 libraries/messages.inc.php:306 +#: libraries/export/sql.php:415 libraries/messages.inc.php:302 msgid "Events" msgstr "Esdeveniments" #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 -#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:541 +#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:537 #: libraries/tbl_triggers.lib.php:27 setup/frames/index.inc.php:112 msgid "Name" msgstr "Nom" -#: libraries/db_links.inc.php:45 libraries/messages.inc.php:216 +#: libraries/db_links.inc.php:45 libraries/messages.inc.php:212 #, php-format msgid "Database %s has been dropped." msgstr "La Base de Dades %s s'ha eliminat." #: libraries/db_links.inc.php:57 libraries/db_links.inc.php:58 -#: libraries/db_links.inc.php:59 libraries/messages.inc.php:234 +#: libraries/db_links.inc.php:59 libraries/messages.inc.php:230 msgid "Database seems to be empty!" msgstr "La base de dades sembla buida!" -#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1025 +#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1021 #: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60 #: querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1152 +#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1148 #: libraries/tbl_links.inc.php:69 msgid "Tracking" msgstr "Seguiment" -#: libraries/db_links.inc.php:86 libraries/messages.inc.php:719 +#: libraries/db_links.inc.php:86 libraries/messages.inc.php:715 msgid "Query" msgstr "Consulta segons exemple" -#: libraries/db_links.inc.php:91 libraries/messages.inc.php:253 +#: libraries/db_links.inc.php:91 libraries/messages.inc.php:249 msgid "Designer" msgstr "Dissenyador" -#: libraries/db_links.inc.php:98 libraries/messages.inc.php:397 +#: libraries/db_links.inc.php:98 libraries/messages.inc.php:393 #: libraries/server_links.inc.php:88 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:104 libraries/messages.inc.php:587 +#: libraries/db_links.inc.php:104 libraries/messages.inc.php:583 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" msgstr "Operacions" -#: libraries/db_links.inc.php:111 libraries/messages.inc.php:709 +#: libraries/db_links.inc.php:111 libraries/messages.inc.php:705 #: libraries/server_links.inc.php:66 server_privileges.php:72 #: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117 msgid "Privileges" msgstr "Permisos" #: libraries/db_routines.inc.php:30 libraries/db_routines.inc.php:32 -#: libraries/messages.inc.php:812 +#: libraries/messages.inc.php:808 msgid "Routines" msgstr "Rutines" -#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:811 +#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:807 msgid "Return type" msgstr "Tipus de retorn" #: libraries/db_structure.lib.php:57 libraries/display_tbl.lib.php:1848 -#: libraries/messages.inc.php:65 +#: libraries/messages.inc.php:61 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "Pot ser aproximat. Veieu PFC (FAQ) 3.11" -#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:593 +#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:589 #: server_databases.php:142 tbl_printview.php:336 tbl_structure.php:683 msgid "Overhead" msgstr "Defragmentat" #: libraries/dbi/mysql.dbi.lib.php:112 libraries/dbi/mysqli.dbi.lib.php:124 -#: libraries/messages.inc.php:176 +#: libraries/messages.inc.php:172 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "La connexió de l'usuari de control ha fallat, tal com està definida ara a la " "configuració." #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 -#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:855 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:851 msgid "The server is not responding" msgstr "El servidor no respon" #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:1010 +#: libraries/messages.inc.php:1006 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 libraries/messages.inc.php:255 +#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:251 #: tbl_structure.php:609 msgid "Details..." msgstr "Detalls..." -#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:143 +#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:139 #: main.php:91 user_password.php:111 user_password.php:129 msgid "Change password" msgstr "Canvi de contrasenya" -#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:561 +#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:557 #: libraries/replication_gui.lib.php:341 server_privileges.php:768 msgid "No Password" msgstr "Sense contrasenya" -#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:610 +#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:606 #: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60 #: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335 #: libraries/replication_gui.lib.php:345 server_privileges.php:757 @@ -2079,13 +2089,13 @@ msgstr "Sense contrasenya" msgid "Password" msgstr "Contrasenya" -#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:806 +#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:802 #: libraries/replication_gui.lib.php:349 libraries/replication_gui.lib.php:352 #: server_privileges.php:776 server_privileges.php:779 msgid "Re-type" msgstr "Reescriu" -#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:608 +#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:604 msgid "Password Hashing" msgstr "Contrasenya Hashing" @@ -2095,90 +2105,90 @@ msgstr "Contrasenya Hashing" msgid "MySQL 4.0 compatible" msgstr "Compatible amb MySQL 4.0" -#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:353 +#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:349 #: libraries/replication_gui.lib.php:356 server_privileges.php:783 msgid "Generate Password" msgstr "Genera una Contrasenya" -#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:352 +#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:348 #: libraries/replication_gui.lib.php:359 server_privileges.php:786 msgid "Generate" msgstr "Genera" #: libraries/display_create_database.lib.php:22 -#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:189 +#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:185 msgid "Create new database" msgstr "Crea una nova base de dades" -#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:185 +#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:181 msgid "Create" msgstr "Crea" -#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:564 +#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:560 #: server_privileges.php:74 server_privileges.php:1388 #: server_replication.php:35 msgid "No Privileges" msgstr "Sense permisos" -#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:445 +#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:441 msgid "Table must have at least one field." msgstr "La taula ha de tenir al menys un camp." -#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:190 +#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:186 #, php-format msgid "Create table on database %s" msgstr "Crear una taula nova a la base de dades %s" -#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:577 +#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:573 msgid "Number of fields" msgstr "Nombre de camps" -#: libraries/display_export.lib.php:42 libraries/messages.inc.php:124 +#: libraries/display_export.lib.php:42 libraries/messages.inc.php:120 msgid "Could not load export plugins, please check your installation!" msgstr "" "No es poden carregar les extensions d'exportació, comprova l'instal.lació!" -#: libraries/display_export.lib.php:107 libraries/messages.inc.php:277 +#: libraries/display_export.lib.php:107 libraries/messages.inc.php:273 #, php-format msgid "Dump %s row(s) starting at record # %s" msgstr "Bolcar %s files començant a la fila %s." -#: libraries/display_export.lib.php:115 libraries/messages.inc.php:274 +#: libraries/display_export.lib.php:115 libraries/messages.inc.php:270 msgid "Dump all rows" msgstr "Bolca totes les files" -#: libraries/display_export.lib.php:125 libraries/messages.inc.php:852 +#: libraries/display_export.lib.php:125 libraries/messages.inc.php:848 #: setup/lib/messages.inc.php:82 msgid "Save as file" msgstr "Desa com a arxiu" -#: libraries/display_export.lib.php:134 libraries/messages.inc.php:828 +#: libraries/display_export.lib.php:134 libraries/messages.inc.php:824 #, php-format msgid "Save on server in %s directory" msgstr "Desa al servidor al directori %s" -#: libraries/display_export.lib.php:142 libraries/messages.inc.php:594 +#: libraries/display_export.lib.php:142 libraries/messages.inc.php:590 #: setup/lib/messages.inc.php:90 msgid "Overwrite existing file(s)" msgstr "Sobreescriu arxiu(s) existent(s)" -#: libraries/display_export.lib.php:148 libraries/messages.inc.php:330 +#: libraries/display_export.lib.php:148 libraries/messages.inc.php:326 msgid "File name template" msgstr "Nom d'arxiu de plantilla" -#: libraries/display_export.lib.php:152 libraries/messages.inc.php:327 +#: libraries/display_export.lib.php:152 libraries/messages.inc.php:323 msgid "server name" msgstr "nom de servidor" -#: libraries/display_export.lib.php:155 libraries/messages.inc.php:326 +#: libraries/display_export.lib.php:155 libraries/messages.inc.php:322 msgid "database name" msgstr "nom de base de dades" -#: libraries/display_export.lib.php:158 libraries/messages.inc.php:328 +#: libraries/display_export.lib.php:158 libraries/messages.inc.php:324 msgid "table name" msgstr "nom de taula" -#: libraries/display_export.lib.php:162 libraries/messages.inc.php:329 +#: libraries/display_export.lib.php:162 libraries/messages.inc.php:325 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2189,24 +2199,24 @@ msgstr "" "cadenes de formateig de temps. A més, es faràn aquestes transformacions: %3" "$s. Altre text es deixarà sense variació." -#: libraries/display_export.lib.php:202 libraries/messages.inc.php:331 +#: libraries/display_export.lib.php:202 libraries/messages.inc.php:327 msgid "remember template" msgstr "Recordar plantilla" #: libraries/display_export.lib.php:210 libraries/display_import.lib.php:178 -#: libraries/display_import.lib.php:191 libraries/messages.inc.php:145 +#: libraries/display_import.lib.php:191 libraries/messages.inc.php:141 #: libraries/sql_query_form.lib.php:549 msgid "Character set of the file:" msgstr "Joc de caràcters de l'arxiu:" -#: libraries/display_export.lib.php:235 libraries/messages.inc.php:166 +#: libraries/display_export.lib.php:235 libraries/messages.inc.php:162 #: setup/lib/messages.inc.php:84 msgid "Compression" 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/messages.inc.php:558 +#: libraries/export/sql.php:868 libraries/messages.inc.php:554 #: libraries/tbl_properties.inc.php:575 server_privileges.php:1836 #: server_processlist.php:75 msgid "None" @@ -2230,11 +2240,11 @@ msgstr "\"comprimit amb gzip\"" msgid "bzipped" msgstr "\"comprimit amb bzip\"" -#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1018 +#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1014 msgid "SQL compatibility mode" msgstr "Modus de compatibilitat SQL" -#: libraries/display_import.lib.php:67 libraries/messages.inc.php:398 +#: libraries/display_import.lib.php:67 libraries/messages.inc.php:394 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " @@ -2244,11 +2254,11 @@ msgstr "" "permesa o es tracta d'un error conegut dels navegadors basats en WebKit " "(Safari, Google Chrome, Arora, etc)." -#: libraries/display_import.lib.php:77 libraries/messages.inc.php:406 +#: libraries/display_import.lib.php:77 libraries/messages.inc.php:402 msgid "The file is being processed, please be patient." msgstr "L'arxiu s'està processant, per favor, sigues pacient." -#: libraries/display_import.lib.php:99 libraries/messages.inc.php:408 +#: libraries/display_import.lib.php:99 libraries/messages.inc.php:404 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." @@ -2256,40 +2266,40 @@ msgstr "" "Per favor, sigues pacient, l'arxiu s'està carregant. Els detalls de la " "càrrega no estàn disponibles." -#: libraries/display_import.lib.php:126 libraries/messages.inc.php:333 +#: libraries/display_import.lib.php:126 libraries/messages.inc.php:329 msgid "File to import" msgstr "Arxiu a importar" -#: libraries/display_import.lib.php:137 libraries/messages.inc.php:486 +#: libraries/display_import.lib.php:137 libraries/messages.inc.php:482 #: libraries/sql_query_form.lib.php:524 msgid "Location of the text file" msgstr "Ubicació de l'arxiu de text" -#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1203 +#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1199 msgid "File uploads are not allowed on this server." msgstr "No es permet pujar arxius en aquest servidor." -#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1235 +#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1231 #: libraries/sql_query_form.lib.php:533 tbl_change.php:1028 msgid "The directory you set for upload work cannot be reached" msgstr "No està disponible el directori indicat per pujar arxius" -#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1236 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1232 #: libraries/sql_query_form.lib.php:536 tbl_change.php:1031 msgid "web server upload directory" msgstr "Directori de pujada d'arxius del servidor web" -#: libraries/display_import.lib.php:212 libraries/messages.inc.php:167 +#: libraries/display_import.lib.php:212 libraries/messages.inc.php:163 #, php-format msgid "Imported file compression will be automatically detected from: %s" msgstr "" "La compressió de l'arxiu importat es detectarà automàticament des de: %s" -#: libraries/display_import.lib.php:219 libraries/messages.inc.php:600 +#: libraries/display_import.lib.php:219 libraries/messages.inc.php:596 msgid "Partial import" msgstr "Importació parcial" -#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1105 +#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1101 #, php-format msgid "" "Previous import timed out, after resubmitting will continue from position %d." @@ -2297,7 +2307,7 @@ msgstr "" "La darrera importació ha esgotat el temps, després de reenviar continuarà " "des de la posició %d." -#: libraries/display_import.lib.php:232 libraries/messages.inc.php:51 +#: libraries/display_import.lib.php:232 libraries/messages.inc.php:47 msgid "" "Allow the interruption of an import in case the script detects it is close " "to the PHP timeout limit. This might be good way to import large files, " @@ -2307,178 +2317,178 @@ msgstr "" "que s'acosta el limit del temps. Pot ser una bona solució per importar " "arxius grans, però pot trencar transaccions." -#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1004 +#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1000 #: setup/lib/messages.inc.php:161 msgid "Number of records (queries) to skip from start" msgstr "Nombre de registres(consultes) a saltar des de l'inici" -#: libraries/display_import.lib.php:255 libraries/messages.inc.php:396 +#: libraries/display_import.lib.php:255 libraries/messages.inc.php:392 #: setup/lib/messages.inc.php:160 msgid "Format of imported file" msgstr "Format de l'arxiu importat" #: libraries/display_select_lang.lib.php:45 -#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:465 +#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:461 #: setup/frames/index.inc.php:70 msgid "Language" msgstr "Idioma" -#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:447 +#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:443 #, php-format msgid "%d is not valid row number." msgstr "%d no és un num. vàlid de fila." -#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:814 +#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:810 msgid "row(s) starting from record #" msgstr "Files començant des de" -#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:817 +#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:813 msgid "horizontal" msgstr "horitzontal" -#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:816 +#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:812 msgid "horizontal (rotated headers)" msgstr "horitzontal (capçaleres rotades)" -#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:819 +#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:815 msgid "vertical" msgstr "vertical" -#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:818 +#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:814 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr " en mode %s i repeteix capçaleres després de %s cel·les " -#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:495 +#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:491 msgid "This operation could take a long time. Proceed anyway?" msgstr "Aquesta operació pot ser bastant llarga. Procedim igualment?" -#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1012 +#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1008 msgid "Sort by key" msgstr "Classifica per la clau" #: libraries/display_tbl.lib.php:555 libraries/import.lib.php:1082 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:591 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:587 #: tbl_select.php:267 tbl_structure.php:754 msgid "Options" msgstr "Opcions" #: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:570 -#: libraries/messages.inc.php:601 +#: libraries/messages.inc.php:597 msgid "Partial Texts" msgstr "Texts Parcials" #: libraries/display_tbl.lib.php:561 libraries/display_tbl.lib.php:574 -#: libraries/messages.inc.php:346 +#: libraries/messages.inc.php:342 msgid "Full Texts" msgstr "Texts sencers" -#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:739 +#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:735 msgid "Relational key" msgstr "Clau relacional" -#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:738 +#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:734 msgid "Relational display field" msgstr "Camp relacional per mostrar" -#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:872 +#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:868 msgid "Show binary contents" msgstr "Mostra continguts binaris" -#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:873 +#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:869 msgid "Show BLOB contents" msgstr "Mostra contingut BLOB" -#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:871 +#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:867 msgid "Show binary contents as HEX" msgstr "Mostra el contingut binari com HEX" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:375 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:371 #: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320 msgid "Hide" msgstr "Amaga" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:508 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:504 #: libraries/tbl_properties.inc.php:144 transformation_overview.php:47 msgid "Browser transformation" msgstr "Transformació del Navegador" #: libraries/display_tbl.lib.php:1126 libraries/display_tbl.lib.php:1130 -#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:308 +#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:304 msgid "Execute bookmarked query" msgstr "Executa una consulta desada" #: libraries/display_tbl.lib.php:1145 libraries/display_tbl.lib.php:1157 -#: libraries/messages.inc.php:244 +#: libraries/messages.inc.php:240 msgid "The row has been deleted" msgstr "S'ha esborrat la fila" #: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056 -#: libraries/messages.inc.php:460 server_processlist.php:71 +#: libraries/messages.inc.php:456 server_processlist.php:71 #: tbl_row_action.php:64 msgid "Kill" msgstr "Finalitzar" -#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:849 +#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:845 msgid "in query" msgstr "en consulta" -#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:881 +#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:877 msgid "Showing rows" msgstr "Mostrant registres: " -#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1113 +#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1109 msgid "total" msgstr "total" -#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:727 +#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:723 #: sql.php:524 #, php-format msgid "Query took %01.4f sec" msgstr "La consulta tarda %01.4f seg" -#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:135 +#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:131 #: 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:471 msgid "Change" msgstr "Canvi" -#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:724 +#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:720 msgid "Query results operations" msgstr "Operacions de resultats de consultes" -#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:671 +#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:667 msgid "Print view (with full texts)" msgstr "Vista d'impresió (amb texts sencers)" -#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:482 +#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:478 msgid "Link not found" msgstr "No s'ha trobat l'enllaç " -#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1224 +#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1220 #: main.php:228 msgid "Version information" msgstr "Informació de Versió" -#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:423 +#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:419 msgid "Data home directory" msgstr "Directori local de dades" -#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:424 +#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:420 msgid "The common part of the directory path for all InnoDB data files." msgstr "" "La part comuna de la ruta al directori per tots els arxius de dades InnoDB." -#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:422 +#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:418 msgid "Data files" msgstr "Arxius de dades" -#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:418 +#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:414 msgid "Autoextend increment" msgstr "Increment d'autoextensió" -#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:419 +#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:415 msgid "" " The increment size for extending the size of an autoextending tablespace " "when it becomes full." @@ -2486,11 +2496,11 @@ msgstr "" " La quantitat a incrementar per ampliar el tamany d'una taula autoextensible " "quan estigui a punt d'omplir-se." -#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:420 +#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:416 msgid "Buffer pool size" msgstr "Tamany de la memòria cau" -#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:421 +#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:417 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." @@ -2498,87 +2508,87 @@ msgstr "" "El tamany de memòria cau que InnoDB fa servir per desar les dades i indexs " "de les seves taules." -#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:112 +#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:108 msgid "Buffer Pool" msgstr "Grup de memòries intermitges" -#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:426 +#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:422 #: server_status.php:306 msgid "InnoDB Status" msgstr "Estat InnoDB" -#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:113 +#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:109 msgid "Buffer Pool Usage" msgstr "Ús del grup de memòries intermitges" -#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1114 +#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1110 #: server_databases.php:137 server_databases.php:305 server_status.php:414 #: server_status.php:475 server_status.php:496 tbl_printview.php:351 #: tbl_structure.php:697 msgid "Total" msgstr "Total" -#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:425 +#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:421 msgid "pages" msgstr "pàgines" -#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:343 +#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:339 msgid "Free pages" msgstr "Pàgines lliures" -#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:259 +#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:255 msgid "Dirty pages" msgstr "Pàgines brutes" -#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:230 +#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:226 msgid "Pages containing data" msgstr "Pàgines contenint dades" -#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:598 +#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:594 msgid "Pages to be flushed" msgstr "Pàgines per a purgar" -#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:119 +#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:115 msgid "Busy pages" msgstr "Pàgines ocupades" -#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:467 +#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:463 msgid "Latched pages" msgstr "Pàgines inalterables" -#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:111 +#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:107 msgid "Buffer Pool Activity" msgstr "Activitat de la Memòria intermitja" -#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:731 +#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:727 msgid "Read requests" msgstr "Peticions de lectura" -#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1244 +#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1240 msgid "Write requests" msgstr "Peticions d'escriptura" -#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:115 +#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:111 msgid "Read misses" msgstr "Lectures omeses" -#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:117 +#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:113 msgid "Write waits" msgstr "Esperes d'escriptura" -#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:114 +#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:110 msgid "Read misses in %" msgstr "Lectures omeses en %" -#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:116 +#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:112 msgid "Write waits in %" msgstr "Esperes d'escriptura en %" -#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:522 +#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:518 msgid "Data pointer size" msgstr "Tamany del punter de dades" -#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:523 +#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:519 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." @@ -2586,11 +2596,11 @@ msgstr "" "El tamany per defecte del punter en bytes, usat en CREATE TABLE per a taules " "MyISAM quan no s'especifica l'opció MAX_ROWS." -#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:528 +#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:524 msgid "Automatic recovery mode" msgstr "Modus de recuperació automàtic" -#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:529 +#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:525 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." @@ -2598,11 +2608,11 @@ msgstr "" "El modus per a recuperació automàtica en taules MyISAM corruptes, com " "s'estableix via l'opció d'inici del servidor --myisam-recover." -#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:527 +#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:523 msgid "Maximum size for temporary sort files" msgstr "Tamany màxim per arxius temporals de classificació" -#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:526 +#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:522 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " @@ -2612,11 +2622,11 @@ msgstr "" "torna acrear un índex MyISAM (mentre es fa un REPAIR TABLE, ALTER TABLE, o " "LOAD DATA INFILE)." -#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:525 +#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:521 msgid "Maximum size for temporary files on index creation" msgstr "Màxim tamany per arxius temporals en creació d'índex" -#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:524 +#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:520 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " @@ -2626,11 +2636,11 @@ msgstr "" "gran que usant el cau principal per la quantitat especificada aquí, es " "recomana fer servir el cau principal." -#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:531 +#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:527 msgid "Repair threads" msgstr "Repara fils" -#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:530 +#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:526 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." @@ -2639,11 +2649,11 @@ msgstr "" "paralel (cada índex en el seu propi fil) mentre s'executa el procés de " "reparació per classificació." -#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:533 +#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:529 msgid "Sort buffer size" msgstr "Tamany de l'àrea de classificació" -#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:532 +#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:528 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." @@ -2651,11 +2661,11 @@ msgstr "" "Ârea assignada per classificar índexos MyISAM mentre es fa un REPAIR TABLE o " "mentre es creen índexs amb CREATE INDEX o ALTER TABLE." -#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:620 +#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:616 msgid "Index cache size" msgstr "Tamany del cau d'index" -#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:619 +#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:615 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." @@ -2664,11 +2674,11 @@ msgstr "" "defecte és 32MB. La memòria assignada aqui només s'utilitza per cau de " "pàgines d'index." -#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:630 +#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:626 msgid "Record cache size" msgstr "Tamany del cau de registre" -#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:629 +#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:625 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " @@ -2679,11 +2689,11 @@ msgstr "" "com a cau de canvis dels arxius del gestor de dades (.xtd) i indicadors de " "fila (.xtr)." -#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:624 +#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:620 msgid "Log cache size" msgstr "Tamany del cau del Registre (Log)" -#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:623 +#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:619 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." @@ -2691,11 +2701,11 @@ msgstr "" "La quantitat de memòria assignada al cau del registre de transaccions usat " "en registres de transacció de dades. El valor per defecte és 16MB." -#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:628 +#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:624 msgid "Log file threshold" msgstr "LLindar de l'arxiu de Registre (Log)" -#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:627 +#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:623 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." @@ -2703,11 +2713,11 @@ msgstr "" "El tamany del registre de transaccions abans d'un ajornament, i un nou " "registre es crea. El valor per defecte és 16MB." -#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:634 +#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:630 msgid "Transaction buffer size" msgstr "Tamany de la memòria cau de transaccions" -#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:633 +#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:629 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." @@ -2715,11 +2725,11 @@ msgstr "" "El tamany de la memòria cau global del registre de transaccions (el motor " "assigna 2 memòries intermèdies d'aquest tamany). El valor per defecte és 1MB." -#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:611 +#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:607 msgid "Checkpoint frequency" msgstr "Frequència dels controls" -#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:612 +#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:608 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." @@ -2727,11 +2737,11 @@ msgstr "" "La quantitat de dades escrites al registre de transaccions abans de executar " "un control. El valor per defecte és 24MB." -#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:615 +#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:611 msgid "Data log threshold" msgstr "Llindar del registre de dades (Data log)" -#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:616 +#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:612 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -2744,11 +2754,11 @@ msgstr "" "augmentar la quantitat total de dades que es poden emmagatzemar en la base " "de dades." -#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:618 +#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:614 msgid "Garbage threshold" msgstr "Llindar de les escombraries" -#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:617 +#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:613 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." @@ -2756,11 +2766,11 @@ msgstr "" "El percentatge d'escombraries en un registre de dades abans de compactar. És " "un valor entre 1 i 99. El valor per defecte és 50." -#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:622 +#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:618 msgid "Log buffer size" msgstr "Tamany de la memòria cau del Registre" -#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:621 +#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:617 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " @@ -2770,27 +2780,27 @@ msgstr "" "valor per defecte és 256MB. El motor assigna una memòria intermèdia per fil, " "però només si es requereix el fil per escriure un registre de dades." -#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:613 +#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:609 msgid "Data file grow size" msgstr "Tamany de creixement de l'arxiu de dades" -#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:614 +#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:610 msgid "The grow size of the handle data (.xtd) files." msgstr "El tamany de creixement dels arxius del gestor de dades (.xtd)." -#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:632 +#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:628 msgid "Row file grow size" msgstr "Tamany de creixement de l'arxiu de files" -#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:631 +#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:627 msgid "The grow size of the row pointer (.xtr) files." msgstr "El tamany de creixement dels arxius d'indicadors de fila (.xtr)." -#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:626 +#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:622 msgid "Log file count" msgstr "Comptador de l'arxiu de registre" -#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:625 +#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:621 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -2804,19 +2814,19 @@ msgstr "" #: libraries/export/htmlword.php:132 libraries/export/odt.php:168 #: libraries/export/sql.php:881 libraries/export/texytext.php:130 -#: libraries/messages.inc.php:275 +#: libraries/messages.inc.php:271 msgid "Dumping data for table" msgstr "Bolcant dades de la taula" #: libraries/export/htmlword.php:185 libraries/export/odt.php:238 #: libraries/export/sql.php:785 libraries/export/texytext.php:177 -#: libraries/messages.inc.php:1086 +#: libraries/messages.inc.php:1082 msgid "Table structure for table" msgstr "Estructura de la taula" #: libraries/export/latex.php:125 libraries/export/sql.php:232 #: libraries/export/xml.php:102 libraries/header_printview.inc.php:57 -#: libraries/messages.inc.php:381 libraries/replication_gui.lib.php:63 +#: libraries/messages.inc.php:377 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:170 libraries/replication_gui.lib.php:265 #: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325 #: server_privileges.php:692 server_privileges.php:695 @@ -2828,186 +2838,186 @@ msgstr "Servidor" #: libraries/export/latex.php:130 libraries/export/sql.php:233 #: libraries/export/xml.php:107 libraries/header_printview.inc.php:59 -#: libraries/messages.inc.php:354 +#: libraries/messages.inc.php:350 msgid "Generation Time" msgstr "Temps de generació" #: libraries/export/latex.php:131 libraries/export/sql.php:235 -#: libraries/export/xml.php:108 libraries/messages.inc.php:864 main.php:186 +#: libraries/export/xml.php:108 libraries/messages.inc.php:860 main.php:186 msgid "Server version" msgstr "Versió del servidor" #: libraries/export/latex.php:132 libraries/export/sql.php:236 -#: libraries/export/xml.php:109 libraries/messages.inc.php:651 +#: libraries/export/xml.php:109 libraries/messages.inc.php:647 msgid "PHP Version" msgstr "Versió de PHP " #: libraries/export/latex.php:201 libraries/export/sql.php:868 -#: libraries/messages.inc.php:226 server_databases.php:127 +#: libraries/messages.inc.php:222 server_databases.php:127 #: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317 #: tbl_structure.php:666 msgid "Data" msgstr "Dades" -#: libraries/export/odt.php:318 libraries/messages.inc.php:506 +#: libraries/export/odt.php:318 libraries/messages.inc.php:502 #: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "Tipus MIME" -#: libraries/export/sql.php:387 libraries/messages.inc.php:711 +#: libraries/export/sql.php:387 libraries/messages.inc.php:707 msgid "Procedures" msgstr "Procediments" -#: libraries/export/sql.php:401 libraries/messages.inc.php:348 +#: libraries/export/sql.php:401 libraries/messages.inc.php:344 msgid "Functions" msgstr "Funcions" -#: libraries/export/sql.php:618 libraries/messages.inc.php:174 +#: libraries/export/sql.php:618 libraries/messages.inc.php:170 msgid "Constraints for dumped tables" msgstr "Restriccions per taules bolcades" -#: libraries/export/sql.php:627 libraries/messages.inc.php:175 +#: libraries/export/sql.php:627 libraries/messages.inc.php:171 msgid "Constraints for table" msgstr "Restriccions per la taula" -#: libraries/export/sql.php:727 libraries/messages.inc.php:512 +#: libraries/export/sql.php:727 libraries/messages.inc.php:508 msgid "MIME TYPES FOR TABLE" msgstr "TIPUS MIME PER LA TAULA" -#: libraries/export/sql.php:739 libraries/messages.inc.php:743 +#: libraries/export/sql.php:739 libraries/messages.inc.php:739 msgid "RELATIONS FOR TABLE" msgstr "RELACIONS DE LA TAULA" -#: libraries/export/sql.php:796 libraries/messages.inc.php:1178 +#: libraries/export/sql.php:796 libraries/messages.inc.php:1174 #: libraries/tbl_triggers.lib.php:19 msgid "Triggers" msgstr "Disparadors" -#: libraries/export/sql.php:808 libraries/messages.inc.php:1046 +#: libraries/export/sql.php:808 libraries/messages.inc.php:1042 msgid "Structure for view" msgstr "Estructura per a vista" -#: libraries/export/sql.php:817 libraries/messages.inc.php:1029 +#: libraries/export/sql.php:817 libraries/messages.inc.php:1025 msgid "Stand-in structure for view" msgstr "Estructura de suport per a vistes" #: libraries/footer.inc.php:184 libraries/footer.inc.php:195 -#: libraries/footer.inc.php:198 libraries/messages.inc.php:586 +#: libraries/footer.inc.php:198 libraries/messages.inc.php:582 msgid "Open new phpMyAdmin window" msgstr "Obrir nova finestra de phpMyAdmin" -#: libraries/header.inc.php:115 libraries/messages.inc.php:542 +#: libraries/header.inc.php:115 libraries/messages.inc.php:538 #, fuzzy msgid "New table" msgstr "No hi ha taules" #: libraries/header_printview.inc.php:50 libraries/header_printview.inc.php:55 -#: libraries/messages.inc.php:1024 +#: libraries/messages.inc.php:1020 msgid "SQL result" msgstr "Resultat SQL" -#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:350 +#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:346 msgid "Generated by" msgstr "Generat per" #: libraries/header_printview.inc.php:63 libraries/import.lib.php:145 -#: libraries/messages.inc.php:820 navigation.php:652 navigation.php:674 +#: libraries/messages.inc.php:816 navigation.php:652 navigation.php:674 #: server_databases.php:122 tbl_printview.php:394 tbl_structure.php:366 #: tbl_structure.php:778 msgid "Rows" msgstr "Fila" -#: libraries/import.lib.php:150 libraries/messages.inc.php:285 sql.php:520 +#: libraries/import.lib.php:150 libraries/messages.inc.php:281 sql.php:520 #: tbl_change.php:181 tbl_get_field.php:35 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL ha retornat un conjunt buit (p.e. cap fila)." -#: libraries/import.lib.php:1078 libraries/messages.inc.php:399 +#: libraries/import.lib.php:1078 libraries/messages.inc.php:395 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "Les següents estructures han estat creades o bé alterades. Aquí pots:" -#: libraries/import.lib.php:1079 libraries/messages.inc.php:400 +#: libraries/import.lib.php:1079 libraries/messages.inc.php:396 msgid "View a structure`s contents by clicking on its name" msgstr "Veure el contingut d'una estructura fent clic sobre el seu nom" -#: libraries/import.lib.php:1080 libraries/messages.inc.php:401 +#: libraries/import.lib.php:1080 libraries/messages.inc.php:397 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" "Canviar qualsevol dels seus ajustaments fent clic al corresponents enllaç " "\"Opcions\"" -#: libraries/import.lib.php:1081 libraries/messages.inc.php:402 +#: libraries/import.lib.php:1081 libraries/messages.inc.php:398 msgid "Edit its structure by following the \"Structure\" link" msgstr "Modificar la seva estructura, seguint l'enllaç \"Estructura\"" -#: libraries/import.lib.php:1084 libraries/messages.inc.php:362 +#: libraries/import.lib.php:1084 libraries/messages.inc.php:358 msgid "Go to database" msgstr "Vés a la base de dades" #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:869 +#: libraries/messages.inc.php:865 msgid "settings" msgstr "configuració" -#: libraries/import.lib.php:1106 libraries/messages.inc.php:363 +#: libraries/import.lib.php:1106 libraries/messages.inc.php:359 msgid "Go to table" msgstr "Vés a la taula" -#: libraries/import.lib.php:1109 libraries/messages.inc.php:1047 +#: libraries/import.lib.php:1109 libraries/messages.inc.php:1043 msgid "structure" msgstr "estructura" -#: libraries/import.lib.php:1115 libraries/messages.inc.php:364 +#: libraries/import.lib.php:1115 libraries/messages.inc.php:360 msgid "Go to view" msgstr "Vés a la vista" #: libraries/import/csv.php:58 libraries/import/csv.php:70 #: libraries/import/csv.php:74 libraries/import/csv.php:78 -#: libraries/messages.inc.php:442 +#: libraries/messages.inc.php:438 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "Paràmetre incorrecte per importació CSV: %s" -#: libraries/import/csv.php:59 libraries/messages.inc.php:323 +#: libraries/import/csv.php:59 libraries/messages.inc.php:319 msgid "Fields terminated by" msgstr "Camps acabats per" -#: libraries/import/csv.php:71 libraries/messages.inc.php:320 +#: libraries/import/csv.php:71 libraries/messages.inc.php:316 msgid "Fields enclosed by" msgstr "Camps englobats per" -#: libraries/import/csv.php:75 libraries/messages.inc.php:321 +#: libraries/import/csv.php:75 libraries/messages.inc.php:317 msgid "Fields escaped by" msgstr "Camps amb marca d'escapada" -#: libraries/import/csv.php:79 libraries/messages.inc.php:481 +#: libraries/import/csv.php:79 libraries/messages.inc.php:477 msgid "Lines terminated by" msgstr "Línies acabades amb" -#: libraries/import/csv.php:119 libraries/messages.inc.php:439 +#: libraries/import/csv.php:119 libraries/messages.inc.php:435 #, php-format msgid "Invalid column (%s) specified!" msgstr "S'ha especificat una columna incorrecta (%s)!" #: libraries/import/csv.php:177 libraries/import/csv.php:424 -#: libraries/messages.inc.php:441 +#: libraries/messages.inc.php:437 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "Format incorrecte a l'entrada CSV a la línia %d." -#: libraries/import/csv.php:312 libraries/messages.inc.php:440 +#: libraries/import/csv.php:312 libraries/messages.inc.php:436 #, php-format msgid "Invalid field count in CSV input on line %d." msgstr "Comptador de camps incorrecte en l'entrada CSV a la línia %d." -#: libraries/import/ldi.php:55 libraries/messages.inc.php:446 +#: libraries/import/ldi.php:55 libraries/messages.inc.php:442 msgid "This plugin does not support compressed imports!" msgstr "Aquesta extensió no suporta importacions comprimides!" #: libraries/import/xml.php:74 libraries/import/xml.php:130 -#: libraries/messages.inc.php:1247 +#: libraries/messages.inc.php:1243 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -3040,326 +3050,316 @@ msgstr "" msgid "ltr" msgstr "ltr" -#. l10n: Thousands separator -#: libraries/messages.inc.php:21 -msgid "," -msgstr "." - -#. l10n: Decimal separator -#: libraries/messages.inc.php:23 -msgid "." -msgstr "," - -#: libraries/messages.inc.php:25 server_status.php:461 +#: libraries/messages.inc.php:21 server_status.php:461 msgid "Aborted" msgstr "Avortat" -#: libraries/messages.inc.php:28 main.php:68 +#: libraries/messages.inc.php:24 main.php:68 msgid "Actions" msgstr "Accions" -#: libraries/messages.inc.php:34 libraries/tbl_properties.inc.php:780 +#: libraries/messages.inc.php:30 libraries/tbl_properties.inc.php:780 #: tbl_structure.php:543 #, php-format msgid "Add %s field(s)" msgstr "Afegeix %s camp(s)" -#: libraries/messages.inc.php:35 +#: libraries/messages.inc.php:31 msgid "Add custom comment into header (\\n splits lines)" msgstr "Afegeix comentari personalitzat a la capçalera (\\n divideix linies)" -#: libraries/messages.inc.php:36 +#: libraries/messages.inc.php:32 msgid "Add into comments" msgstr "Afegeix en comentaris" -#: libraries/messages.inc.php:37 tbl_structure.php:541 +#: libraries/messages.inc.php:33 tbl_structure.php:541 msgid "Add new field" msgstr "Afegeix un camp nou" -#: libraries/messages.inc.php:38 server_privileges.php:1886 +#: libraries/messages.inc.php:34 server_privileges.php:1886 msgid "Add privileges on the following database" msgstr "Afegeix permisos a la següent base de dades" -#: libraries/messages.inc.php:39 server_privileges.php:1907 +#: libraries/messages.inc.php:35 server_privileges.php:1907 msgid "Add privileges on the following table" msgstr "Afegeix permisos a la següent taula" -#: libraries/messages.inc.php:40 tbl_select.php:288 +#: libraries/messages.inc.php:36 tbl_select.php:288 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Afegeix condicions de recerca (cos de la clàusula \"WHERE\"):" -#: libraries/messages.inc.php:41 tbl_indexes.php:251 +#: libraries/messages.inc.php:37 tbl_indexes.php:251 #, php-format msgid "Add to index  %s column(s)" msgstr "Afegeix a l'índex %s columna(es)  " -#: libraries/messages.inc.php:42 server_privileges.php:1570 +#: libraries/messages.inc.php:38 server_privileges.php:1570 #: server_privileges.php:1594 server_privileges.php:1988 #: server_privileges.php:2177 msgid "Add a new User" msgstr "Afegeix un usuari nou" -#: libraries/messages.inc.php:43 server_privileges.php:931 +#: libraries/messages.inc.php:39 server_privileges.php:931 msgid "You have added a new user." msgstr "Has afegit un usuari nou." -#: libraries/messages.inc.php:44 server_privileges.php:571 +#: libraries/messages.inc.php:40 server_privileges.php:571 msgid "Administration" msgstr "Administració" -#: libraries/messages.inc.php:45 tbl_structure.php:557 +#: libraries/messages.inc.php:41 tbl_structure.php:557 #, php-format msgid "After %s" msgstr "Darrere de %s" -#: libraries/messages.inc.php:46 tbl_change.php:1147 +#: libraries/messages.inc.php:42 tbl_change.php:1147 msgid "Go back to previous page" msgstr "Torna" -#: libraries/messages.inc.php:47 tbl_change.php:1148 +#: libraries/messages.inc.php:43 tbl_change.php:1148 msgid "Insert another new row" msgstr "Insereix un nou registre" -#: libraries/messages.inc.php:48 tbl_change.php:1160 +#: libraries/messages.inc.php:44 tbl_change.php:1160 msgid "Edit next row" msgstr "Edita el següent registre" -#: libraries/messages.inc.php:49 tbl_change.php:1152 +#: libraries/messages.inc.php:45 tbl_change.php:1152 msgid "Go back to this page" msgstr "Torna a aquesta pàgina" -#: libraries/messages.inc.php:50 querywindow.php:115 +#: libraries/messages.inc.php:46 querywindow.php:115 msgid "All" msgstr "Tot" -#: libraries/messages.inc.php:53 tbl_operations.php:249 +#: libraries/messages.inc.php:49 tbl_operations.php:249 msgid "Alter table order by" msgstr "Altera la taula i ordena per" -#: libraries/messages.inc.php:54 tbl_operations.php:660 +#: libraries/messages.inc.php:50 tbl_operations.php:660 msgid "Analyze" msgstr "Analitza" -#: libraries/messages.inc.php:57 +#: libraries/messages.inc.php:53 msgid "and" msgstr "i" -#: libraries/messages.inc.php:59 pmd_general.php:87 +#: libraries/messages.inc.php:55 pmd_general.php:87 msgid "Angular links" msgstr "Enllaços angulars" -#: libraries/messages.inc.php:60 tbl_structure.php:401 tbl_structure.php:415 +#: libraries/messages.inc.php:56 tbl_structure.php:401 tbl_structure.php:415 #: tbl_structure.php:429 #, php-format msgid "An index has been added on %s" msgstr "S'ha afegit un índex a %s" -#: libraries/messages.inc.php:61 server_privileges.php:1521 +#: libraries/messages.inc.php:57 server_privileges.php:1521 #: server_privileges.php:2123 msgid "Any" msgstr "Qualsevol" -#: libraries/messages.inc.php:62 libraries/replication_gui.lib.php:298 +#: libraries/messages.inc.php:58 libraries/replication_gui.lib.php:298 #: server_privileges.php:725 msgid "Any host" msgstr "Qualsevol servidor" -#: libraries/messages.inc.php:63 libraries/replication_gui.lib.php:250 +#: libraries/messages.inc.php:59 libraries/replication_gui.lib.php:250 #: server_privileges.php:677 msgid "Any user" msgstr "Qualsevol usuari" -#: libraries/messages.inc.php:64 server_synchronize.php:449 +#: libraries/messages.inc.php:60 server_synchronize.php:449 #: server_synchronize.php:894 msgid "Apply Selected Changes" msgstr "Aplica els canvis seleccionats" -#: libraries/messages.inc.php:66 tbl_structure.php:386 +#: libraries/messages.inc.php:62 tbl_structure.php:386 #, php-format msgid "A primary key has been added on %s" msgstr "S'ha afegit una clau principal a %s" -#: libraries/messages.inc.php:67 libraries/mysql_charsets.lib.php:368 +#: libraries/messages.inc.php:63 libraries/mysql_charsets.lib.php:368 msgid "Arabic" msgstr "Àrab" -#: libraries/messages.inc.php:68 libraries/mysql_charsets.lib.php:359 +#: libraries/messages.inc.php:64 libraries/mysql_charsets.lib.php:359 msgid "Armenian" msgstr "Armeni" -#: libraries/messages.inc.php:70 libraries/tbl_properties.inc.php:394 +#: libraries/messages.inc.php:66 libraries/tbl_properties.inc.php:394 msgid "As defined:" msgstr "Com definit:" -#: libraries/messages.inc.php:71 tbl_structure.php:556 +#: libraries/messages.inc.php:67 tbl_structure.php:556 msgid "At Beginning of Table" msgstr "Al principi de la taula" -#: libraries/messages.inc.php:72 tbl_structure.php:555 +#: libraries/messages.inc.php:68 tbl_structure.php:555 msgid "At End of Table" msgstr "Al final de la taula" -#: libraries/messages.inc.php:73 libraries/tbl_properties.inc.php:108 +#: libraries/messages.inc.php:69 libraries/tbl_properties.inc.php:108 #: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:144 #: tbl_structure.php:180 msgid "Attributes" msgstr "Atributs" -#: libraries/messages.inc.php:74 pdf_pages.php:303 pdf_pages.php:306 +#: libraries/messages.inc.php:70 pdf_pages.php:303 pdf_pages.php:306 msgid "Automatic layout" msgstr "Disseny automàtic" -#: libraries/messages.inc.php:77 libraries/mysql_charsets.lib.php:354 +#: libraries/messages.inc.php:73 libraries/mysql_charsets.lib.php:354 msgid "Baltic" msgstr "Bàltic" -#: libraries/messages.inc.php:78 libraries/sqlparser.lib.php:175 +#: libraries/messages.inc.php:74 libraries/sqlparser.lib.php:175 msgid "BEGIN CUT" msgstr "INICI DEL TALL" -#: libraries/messages.inc.php:79 libraries/sqlparser.lib.php:179 +#: libraries/messages.inc.php:75 libraries/sqlparser.lib.php:179 msgid "BEGIN RAW" msgstr "INICI DEL BOLCAT" -#: libraries/messages.inc.php:80 libraries/mysql_charsets.lib.php:201 +#: libraries/messages.inc.php:76 libraries/mysql_charsets.lib.php:201 #: libraries/mysql_charsets.lib.php:402 tbl_change.php:518 msgid "Binary" msgstr " Binari " -#: libraries/messages.inc.php:81 tbl_change.php:894 +#: libraries/messages.inc.php:77 tbl_change.php:894 msgid "Binary - do not edit" msgstr " Binari - no editeu " -#: libraries/messages.inc.php:82 libraries/server_links.inc.php:76 +#: libraries/messages.inc.php:78 libraries/server_links.inc.php:76 #: server_binlog.php:110 server_status.php:253 test/theme.php:121 msgid "Binary log" msgstr "Registre binari" -#: libraries/messages.inc.php:83 server_binlog.php:217 +#: libraries/messages.inc.php:79 server_binlog.php:217 msgid "Event type" msgstr "Tipus d'event" -#: libraries/messages.inc.php:84 server_binlog.php:220 +#: libraries/messages.inc.php:80 server_binlog.php:220 msgid "Information" msgstr "Informació" -#: libraries/messages.inc.php:85 server_binlog.php:215 +#: libraries/messages.inc.php:81 server_binlog.php:215 msgid "Log name" msgstr "Nom del registre" -#: libraries/messages.inc.php:86 server_binlog.php:219 +#: libraries/messages.inc.php:82 server_binlog.php:219 msgid "Original position" msgstr "Posició original" -#: libraries/messages.inc.php:87 server_binlog.php:216 +#: libraries/messages.inc.php:83 server_binlog.php:216 msgid "Position" msgstr "Posició" -#: libraries/messages.inc.php:88 libraries/replication_gui.lib.php:169 +#: libraries/messages.inc.php:84 libraries/replication_gui.lib.php:169 #: server_binlog.php:218 msgid "Server ID" msgstr "ID de Servidor" -#: libraries/messages.inc.php:92 +#: libraries/messages.inc.php:88 #, fuzzy msgctxt "$strBLOBRepositoryDisabled" msgid "Disabled" msgstr "Desactivat" -#: libraries/messages.inc.php:95 +#: libraries/messages.inc.php:91 #, fuzzy msgctxt "$strBLOBRepositoryEnabled" msgid "Enabled" msgstr "Activat" -#: libraries/messages.inc.php:97 tbl_change.php:888 +#: libraries/messages.inc.php:93 tbl_change.php:888 msgid "Remove BLOB Repository Reference" msgstr "Treure Referència a Repositori BLOB" -#: libraries/messages.inc.php:98 +#: libraries/messages.inc.php:94 #, fuzzy msgctxt "$strBLOBRepositoryRepair" msgid "Repair" msgstr "Repara" -#: libraries/messages.inc.php:99 tbl_change.php:987 +#: libraries/messages.inc.php:95 tbl_change.php:987 msgid "Upload to BLOB repository" msgstr "Puja al repositori BLOB" -#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:359 +#: libraries/messages.inc.php:96 libraries/sql_query_form.lib.php:359 #: sql.php:677 msgid "Let every user access this bookmark" msgstr "Deixa accedir a cada usuari a aquesta consulta desada" -#: libraries/messages.inc.php:103 sql.php:671 +#: libraries/messages.inc.php:99 sql.php:671 msgid "Label" msgstr "Etiqueta" -#: libraries/messages.inc.php:104 libraries/sql_query_form.lib.php:433 +#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:433 msgid "Bookmarked SQL query" msgstr "Consulta SQL desada" -#: libraries/messages.inc.php:105 libraries/sql_query_form.lib.php:365 +#: libraries/messages.inc.php:101 libraries/sql_query_form.lib.php:365 msgid "Replace existing bookmark of same name" msgstr "Reemplaça una consulta desada ja existent amb el mateix nom" -#: libraries/messages.inc.php:106 libraries/sql_query_form.lib.php:352 +#: libraries/messages.inc.php:102 libraries/sql_query_form.lib.php:352 #: sql.php:665 sql.php:666 sql.php:683 msgid "Bookmark this SQL query" msgstr "Desa aquesta consulta SQL" -#: libraries/messages.inc.php:107 libraries/sql_query_form.lib.php:466 +#: libraries/messages.inc.php:103 libraries/sql_query_form.lib.php:466 msgid "View only" msgstr "Només mirar" -#: libraries/messages.inc.php:109 tbl_structure.php:161 +#: libraries/messages.inc.php:105 tbl_structure.php:161 msgid "Browse distinct values" msgstr "Navega per valors diferents" -#: libraries/messages.inc.php:110 tbl_change.php:252 tbl_select.php:27 +#: libraries/messages.inc.php:106 tbl_change.php:252 tbl_select.php:27 #: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34 msgid "Browse foreign values" msgstr "Navega valors externs" -#: libraries/messages.inc.php:118 libraries/mysql_charsets.lib.php:213 +#: libraries/messages.inc.php:114 libraries/mysql_charsets.lib.php:213 msgid "Bulgarian" msgstr "Búlgar" -#: libraries/messages.inc.php:120 +#: libraries/messages.inc.php:116 msgid "\"bzipped\"" msgstr "\"comprimit amb bzip\"" -#: libraries/messages.inc.php:122 +#: libraries/messages.inc.php:118 msgid "Calendar" msgstr "Calendari" -#: libraries/messages.inc.php:129 tbl_indexes.php:75 +#: libraries/messages.inc.php:125 tbl_indexes.php:75 msgid "Can't rename index to PRIMARY!" msgstr "No pots canviar el nom d'un índex a \"PRIMARY\"!" -#: libraries/messages.inc.php:132 libraries/mysql_charsets.lib.php:223 +#: libraries/messages.inc.php:128 libraries/mysql_charsets.lib.php:223 #: libraries/mysql_charsets.lib.php:409 msgid "case-insensitive" msgstr "No sensible a majúscules" -#: libraries/messages.inc.php:133 libraries/mysql_charsets.lib.php:226 +#: libraries/messages.inc.php:129 libraries/mysql_charsets.lib.php:226 #: libraries/mysql_charsets.lib.php:411 msgid "case-sensitive" msgstr "sensible a majúscules" -#: libraries/messages.inc.php:134 libraries/mysql_charsets.lib.php:332 +#: libraries/messages.inc.php:130 libraries/mysql_charsets.lib.php:332 msgid "Central European" msgstr "Europa Central" -#: libraries/messages.inc.php:136 server_privileges.php:1969 +#: libraries/messages.inc.php:132 server_privileges.php:1969 msgid "... keep the old one." msgstr "... respecta l'antic." -#: libraries/messages.inc.php:137 server_privileges.php:1967 +#: libraries/messages.inc.php:133 server_privileges.php:1967 msgid "Create a new user with the same privileges and ..." msgstr "Crea un nou usuari amb els mateixos permisos i ..." -#: libraries/messages.inc.php:138 server_privileges.php:1972 +#: libraries/messages.inc.php:134 server_privileges.php:1972 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -3367,76 +3367,76 @@ msgstr "" " ... esborra l'antic de les taules d'usuaris i recarrega els permisos " "després." -#: libraries/messages.inc.php:139 server_privileges.php:1970 +#: libraries/messages.inc.php:135 server_privileges.php:1970 msgid " ... delete the old one from the user tables." msgstr " ... esborra l'antic de les taules d'usuaris." -#: libraries/messages.inc.php:140 server_privileges.php:1971 +#: libraries/messages.inc.php:136 server_privileges.php:1971 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr " ... treu tots els permisos actius de l'antic i esborra'l després." -#: libraries/messages.inc.php:141 server_privileges.php:1964 +#: libraries/messages.inc.php:137 server_privileges.php:1964 msgid "Change Login Information / Copy User" msgstr "Canvi d'Informació de Connexió / Copia d'Usuari" -#: libraries/messages.inc.php:144 libraries/mysql_charsets.lib.php:107 +#: libraries/messages.inc.php:140 libraries/mysql_charsets.lib.php:107 msgid "Charset" msgstr "Joc de Caràcters" -#: libraries/messages.inc.php:146 server_collations.php:40 +#: libraries/messages.inc.php:142 server_collations.php:40 msgid "Character Sets and Collations" msgstr "Jocs de Caràcters i ordenacions" -#: libraries/messages.inc.php:147 libraries/server_links.inc.php:57 +#: libraries/messages.inc.php:143 libraries/server_links.inc.php:57 #: test/theme.php:109 msgid "Charsets" msgstr "Jocs de caràcters" -#: libraries/messages.inc.php:149 tbl_operations.php:661 +#: libraries/messages.inc.php:145 tbl_operations.php:661 msgid "Check" msgstr "Comprova" -#: libraries/messages.inc.php:151 server_databases.php:293 +#: libraries/messages.inc.php:147 server_databases.php:293 #: server_databases.php:294 msgid "Check Privileges" msgstr "Comprova els permisos" -#: libraries/messages.inc.php:152 server_databases.php:289 +#: libraries/messages.inc.php:148 server_databases.php:289 #, php-format msgid "Check privileges for database "%s"." msgstr "Comprova els permisos per la Base de dades "%s"." -#: libraries/messages.inc.php:154 pdf_pages.php:261 +#: libraries/messages.inc.php:150 pdf_pages.php:261 msgid "Please choose a page to edit" msgstr "Tria una pàgina per editar" -#: libraries/messages.inc.php:157 +#: libraries/messages.inc.php:153 msgid "Displaying Column Comments" msgstr "Mostrant comentaris de les columnes" -#: libraries/messages.inc.php:159 pdf_pages.php:483 view_create.php:148 +#: libraries/messages.inc.php:155 pdf_pages.php:483 view_create.php:148 msgid "Column names" msgstr "Nom de les columnes" -#: libraries/messages.inc.php:160 server_privileges.php:1685 +#: libraries/messages.inc.php:156 server_privileges.php:1685 msgid "Column-specific privileges" msgstr "Permisos específics de columna" -#: libraries/messages.inc.php:164 +#: libraries/messages.inc.php:160 msgid "MySQL 4.0 compatible" msgstr "Compatible amb MySQL 4.0" -#: libraries/messages.inc.php:165 +#: libraries/messages.inc.php:161 msgid "Complete inserts" msgstr "Completa insercions" -#: libraries/messages.inc.php:168 +#: libraries/messages.inc.php:164 #, php-format msgid "Could not load default configuration from: \"%1$s\"" msgstr "No es pot carregar la configuració per defecte des de: \"%1$s\"" -#: libraries/messages.inc.php:169 main.php:306 +#: libraries/messages.inc.php:165 main.php:306 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " @@ -3446,169 +3446,169 @@ msgstr "" "encara existeix dins del vostre directori de phpMyAdmin. Heu d'esborrar-ho " "un cop heu acabat de configurar phpMyAdmin." -#: libraries/messages.inc.php:171 pdf_schema.php:672 +#: libraries/messages.inc.php:167 pdf_schema.php:672 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Configura les coordinades per la taula %s" -#: libraries/messages.inc.php:173 server_status.php:433 +#: libraries/messages.inc.php:169 server_status.php:433 msgid "Connections" msgstr "Connexions" -#: libraries/messages.inc.php:179 tbl_operations.php:509 +#: libraries/messages.inc.php:175 tbl_operations.php:509 msgid "Copy table to (database.table):" msgstr "Còpia taula a (base-de-dades.taula):" -#: libraries/messages.inc.php:180 tbl_move_copy.php:58 +#: libraries/messages.inc.php:176 tbl_move_copy.php:58 #, php-format msgid "Table %s has been copied to %s." msgstr "La taula %s s'ha copiat a %s." -#: libraries/messages.inc.php:181 tbl_move_copy.php:48 +#: libraries/messages.inc.php:177 tbl_move_copy.php:48 msgid "Can't copy table to same one!" msgstr "No es pot copiar la taula sobre ella mateixa" -#: libraries/messages.inc.php:182 server_synchronize.php:94 +#: libraries/messages.inc.php:178 server_synchronize.php:94 msgid "Could not connect to the source" msgstr "No s'ha pogut connectar a l'origen" -#: libraries/messages.inc.php:183 server_synchronize.php:97 +#: libraries/messages.inc.php:179 server_synchronize.php:97 msgid "Could not connect to the target" msgstr "No s'ha pogut connectar a la destinació" -#: libraries/messages.inc.php:184 server_processlist.php:24 +#: libraries/messages.inc.php:180 server_processlist.php:24 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin no pot cancel.lar el fil %s. Probablement, ja és tancat." -#: libraries/messages.inc.php:187 +#: libraries/messages.inc.php:183 #, php-format msgid "Create an index on %s columns" msgstr "Crea un índex de columnes %s: " -#: libraries/messages.inc.php:188 tbl_indexes.php:160 +#: libraries/messages.inc.php:184 tbl_indexes.php:160 msgid "Create a new index" msgstr "Crea un nou índex" -#: libraries/messages.inc.php:191 pdf_pages.php:297 pmd_pdf.php:114 +#: libraries/messages.inc.php:187 pdf_pages.php:297 pmd_pdf.php:114 msgid "Create a page" msgstr "Crea una nova Pàgina" -#: libraries/messages.inc.php:192 +#: libraries/messages.inc.php:188 msgid "Creation of PDFs" msgstr "Creació de PDFs" -#: libraries/messages.inc.php:193 pmd_general.php:74 pmd_general.php:306 +#: libraries/messages.inc.php:189 pmd_general.php:74 pmd_general.php:306 msgid "Create relation" msgstr "Crea una relació" -#: libraries/messages.inc.php:194 pmd_general.php:71 +#: libraries/messages.inc.php:190 pmd_general.php:71 #: server_synchronize.php:429 server_synchronize.php:872 msgid "Create table" msgstr "Crea una taula" -#: libraries/messages.inc.php:195 +#: libraries/messages.inc.php:191 #, fuzzy msgctxt "$strCreateTableShort" msgid "Create table" msgstr "Crea una taula" -#: libraries/messages.inc.php:196 server_privileges.php:1994 +#: libraries/messages.inc.php:192 server_privileges.php:1994 msgid "Database for user" msgstr "Base de dades per usuari" -#: libraries/messages.inc.php:197 server_privileges.php:1999 +#: libraries/messages.inc.php:193 server_privileges.php:1999 msgid "Create database with same name and grant all privileges" msgstr "Crea una base de dades amb el mateix nom i atorga tots els permisos" -#: libraries/messages.inc.php:198 +#: libraries/messages.inc.php:194 #, fuzzy msgctxt "$strCreateUserDatabaseNone" msgid "None" msgstr "Res" -#: libraries/messages.inc.php:199 server_privileges.php:2003 +#: libraries/messages.inc.php:195 server_privileges.php:2003 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Atorga tots els permisos a la base de dades "%s"" -#: libraries/messages.inc.php:200 server_privileges.php:2000 +#: libraries/messages.inc.php:196 server_privileges.php:2000 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Atorga tots els permisos en un nom comodí (nomusuari_%)" -#: libraries/messages.inc.php:201 +#: libraries/messages.inc.php:197 msgid "Creation/Update/Check dates" msgstr "Dates de Creació/Modificació/Comprovació" -#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:229 +#: libraries/messages.inc.php:199 libraries/mysql_charsets.lib.php:229 msgid "Croatian" msgstr "Croata" -#: libraries/messages.inc.php:204 +#: libraries/messages.inc.php:200 msgid "CSV" msgstr "dades CSV " -#: libraries/messages.inc.php:205 libraries/server_synchronize.lib.php:1343 +#: libraries/messages.inc.php:201 libraries/server_synchronize.lib.php:1343 #: libraries/server_synchronize.lib.php:1369 msgid "Current server" msgstr "Servidor actual" -#: libraries/messages.inc.php:206 main.php:159 +#: libraries/messages.inc.php:202 main.php:159 msgid "Custom color" msgstr "Color triat" -#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:365 +#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:365 msgid "Cyrillic" msgstr "Ciríl.lic" -#: libraries/messages.inc.php:208 libraries/mysql_charsets.lib.php:232 +#: libraries/messages.inc.php:204 libraries/mysql_charsets.lib.php:232 msgid "Czech" msgstr "Txec" -#: libraries/messages.inc.php:209 libraries/mysql_charsets.lib.php:383 +#: libraries/messages.inc.php:205 libraries/mysql_charsets.lib.php:383 msgid "Czech-Slovak" msgstr "Txec-Eslovac" -#: libraries/messages.inc.php:211 libraries/mysql_charsets.lib.php:235 +#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:235 msgid "Danish" msgstr "Danès" -#: libraries/messages.inc.php:214 +#: libraries/messages.inc.php:210 msgid "Database export options" msgstr "Opcions d'exportació de Bases de Dades" -#: libraries/messages.inc.php:217 server_synchronize.php:122 +#: libraries/messages.inc.php:213 server_synchronize.php:122 #: server_synchronize.php:125 tbl_create.php:82 tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "La base de dades '%s' no existeix." -#: libraries/messages.inc.php:219 server_databases.php:63 +#: libraries/messages.inc.php:215 server_databases.php:63 #, php-format msgid "%s databases have been dropped successfully." msgstr "%s Bases de dades s'han esborrat correctament." -#: libraries/messages.inc.php:220 libraries/server_synchronize.lib.php:1341 +#: libraries/messages.inc.php:216 libraries/server_synchronize.lib.php:1341 #: server_synchronize.php:1110 msgid "Source database" msgstr "Base de dades origen" -#: libraries/messages.inc.php:221 server_databases.php:88 +#: libraries/messages.inc.php:217 server_databases.php:88 msgid "Databases statistics" msgstr "Estadístiques de les bases de dades" -#: libraries/messages.inc.php:222 server_databases.php:362 +#: libraries/messages.inc.php:218 server_databases.php:362 #: server_databases.php:363 msgid "Disable Statistics" msgstr "Desactiva Estadístiques" -#: libraries/messages.inc.php:223 server_databases.php:358 +#: libraries/messages.inc.php:219 server_databases.php:358 #: server_databases.php:359 msgid "Enable Statistics" msgstr "Activa Estadístiques" -#: libraries/messages.inc.php:224 server_databases.php:366 +#: libraries/messages.inc.php:220 server_databases.php:366 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -3616,30 +3616,30 @@ msgstr "" "Nota: Activant les estadístiques de Base de Dades aqui pot provocar elevat " "tràfic entre el servidor Web i el de MySQL." -#: libraries/messages.inc.php:225 libraries/server_synchronize.lib.php:1367 +#: libraries/messages.inc.php:221 libraries/server_synchronize.lib.php:1367 #: server_synchronize.php:1112 msgid "Target database" msgstr "Base de dades destinació" -#: libraries/messages.inc.php:228 server_synchronize.php:425 +#: libraries/messages.inc.php:224 server_synchronize.php:425 #: server_synchronize.php:868 msgid "Data Difference" msgstr "Diferència de dades" -#: libraries/messages.inc.php:231 server_synchronize.php:272 +#: libraries/messages.inc.php:227 server_synchronize.php:272 msgid "Data Synchronization" msgstr "Sincronizació de dades" -#: libraries/messages.inc.php:235 server_privileges.php:526 +#: libraries/messages.inc.php:231 server_privileges.php:526 #: server_privileges.php:1679 msgid "Database-specific privileges" msgstr "Permisos especifics de Base de dades" -#: libraries/messages.inc.php:237 server_privileges.php:2136 +#: libraries/messages.inc.php:233 server_privileges.php:2136 msgid "database-specific" msgstr "específic de la base de dades" -#: libraries/messages.inc.php:240 libraries/tbl_properties.inc.php:106 +#: libraries/messages.inc.php:236 libraries/tbl_properties.inc.php:106 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" @@ -3647,32 +3647,32 @@ msgstr "" "Per a valors per defecte, només entra un valor, sense barres invertides ni " "cometes, fent servir aquest format: a" -#: libraries/messages.inc.php:241 tbl_operations.php:589 +#: libraries/messages.inc.php:237 tbl_operations.php:589 msgid "Defragment table" msgstr "Desfragmenta la taula" -#: libraries/messages.inc.php:242 +#: libraries/messages.inc.php:238 msgid "Use delayed inserts" msgstr "Usa insercions diferides" -#: libraries/messages.inc.php:245 server_privileges.php:1243 +#: libraries/messages.inc.php:241 server_privileges.php:1243 msgid "No users selected for deleting!" msgstr "No s\\han triat usuaris per esborrar!" -#: libraries/messages.inc.php:246 pmd_general.php:372 +#: libraries/messages.inc.php:242 pmd_general.php:372 msgid "Delete relation" msgstr "Esborra la relació" -#: libraries/messages.inc.php:248 server_privileges.php:1232 +#: libraries/messages.inc.php:244 server_privileges.php:1232 #, php-format msgid "Deleting %s" msgstr "Esborrant %s" -#: libraries/messages.inc.php:249 libraries/sql_query_form.lib.php:388 +#: libraries/messages.inc.php:245 libraries/sql_query_form.lib.php:388 msgid "Delimiter" msgstr "Separador" -#: libraries/messages.inc.php:250 pdf_pages.php:506 +#: libraries/messages.inc.php:246 pdf_pages.php:506 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -3680,7 +3680,7 @@ msgstr "" "La pàgina actual té referències a taules que no existeixen. Vols esborrar " "aquestes referències?" -#: libraries/messages.inc.php:254 pmd_help.php:29 +#: libraries/messages.inc.php:250 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 " @@ -3690,143 +3690,143 @@ msgstr "" "camp de visualització, clica la icona \"Tria camp a visualitzar\", i clica " "també en el nom de camp adient." -#: libraries/messages.inc.php:256 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:252 libraries/mysql_charsets.lib.php:247 msgid "dictionary" msgstr "diccionari" -#: libraries/messages.inc.php:257 libraries/server_synchronize.lib.php:1348 +#: libraries/messages.inc.php:253 libraries/server_synchronize.lib.php:1348 msgid "Difference" msgstr "Diferència" -#: libraries/messages.inc.php:258 pmd_general.php:87 +#: libraries/messages.inc.php:254 pmd_general.php:87 msgid "Direct links" msgstr "Enllaços directes" -#: libraries/messages.inc.php:261 +#: libraries/messages.inc.php:257 msgid "Disable foreign key checks" msgstr "Desactiva les comprovacions de claus externes" -#: libraries/messages.inc.php:262 +#: libraries/messages.inc.php:258 msgid "Display Features" msgstr "Mostra les característiques" -#: libraries/messages.inc.php:263 tbl_select.php:301 +#: libraries/messages.inc.php:259 tbl_select.php:301 msgid "Display order:" msgstr "Ordre del llistat:" -#: libraries/messages.inc.php:265 tbl_select.php:132 +#: libraries/messages.inc.php:261 tbl_select.php:132 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Fer una \"petició segons exemple\" (comodí: \"%\")" -#: libraries/messages.inc.php:266 +#: libraries/messages.inc.php:262 msgid "DocSQL" msgstr "DocSQL" -#: libraries/messages.inc.php:268 +#: libraries/messages.inc.php:264 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "No feu servir AUTO_INCREMENT per a valors zero" -#: libraries/messages.inc.php:273 server_privileges.php:1579 +#: libraries/messages.inc.php:269 server_privileges.php:1579 #: server_privileges.php:1580 server_privileges.php:1581 msgid "Drop the databases that have the same names as the users." msgstr "" "Esborra les bases de dades que tenen els mateixos noms que els usuaris." -#: libraries/messages.inc.php:278 tbl_printview.php:382 tbl_structure.php:743 +#: libraries/messages.inc.php:274 tbl_printview.php:382 tbl_structure.php:743 msgid "dynamic" msgstr "dinàmic" -#: libraries/messages.inc.php:282 server_privileges.php:1324 +#: libraries/messages.inc.php:278 server_privileges.php:1324 #: server_privileges.php:1610 msgid "Edit Privileges" msgstr "Edita permisos" -#: libraries/messages.inc.php:283 tbl_printview.php:341 tbl_structure.php:688 +#: libraries/messages.inc.php:279 tbl_printview.php:341 tbl_structure.php:688 msgid "Effective" msgstr "Efectiu" -#: libraries/messages.inc.php:286 libraries/relation.lib.php:100 +#: libraries/messages.inc.php:282 libraries/relation.lib.php:100 msgid "Enabled" msgstr "Activat" -#: libraries/messages.inc.php:287 +#: libraries/messages.inc.php:283 msgid "Enclose export in a transaction" msgstr "Incloure exportació en la transacció" -#: libraries/messages.inc.php:288 libraries/sqlparser.lib.php:177 +#: libraries/messages.inc.php:284 libraries/sqlparser.lib.php:177 msgid "END CUT" msgstr "FI DEL TALL" -#: libraries/messages.inc.php:290 libraries/sqlparser.lib.php:183 +#: libraries/messages.inc.php:286 libraries/sqlparser.lib.php:183 msgid "END RAW" msgstr "FI DEL BOLCAT" -#: libraries/messages.inc.php:293 libraries/server_links.inc.php:61 +#: libraries/messages.inc.php:289 libraries/server_links.inc.php:61 #: test/theme.php:113 msgid "Engines" msgstr "Motors" -#: libraries/messages.inc.php:295 libraries/mysql_charsets.lib.php:238 +#: libraries/messages.inc.php:291 libraries/mysql_charsets.lib.php:238 msgid "English" msgstr "Anglès" -#: libraries/messages.inc.php:296 server_privileges.php:393 +#: libraries/messages.inc.php:292 server_privileges.php:393 #: server_privileges.php:535 server_privileges.php:1501 msgid " Note: MySQL privilege names are expressed in English " msgstr " Nota: Els noms dels privilegis del MySQL són en idioma anglès " -#: libraries/messages.inc.php:298 libraries/zip_extension.lib.php:49 +#: libraries/messages.inc.php:294 libraries/zip_extension.lib.php:49 #: libraries/zip_extension.lib.php:51 libraries/zip_extension.lib.php:66 msgid "Error in ZIP archive:" msgstr "Error en arxiu ZIP:" -#: libraries/messages.inc.php:303 libraries/mysql_charsets.lib.php:241 +#: libraries/messages.inc.php:299 libraries/mysql_charsets.lib.php:241 msgid "Esperanto" msgstr "Esperanto" -#: libraries/messages.inc.php:304 libraries/mysql_charsets.lib.php:244 +#: libraries/messages.inc.php:300 libraries/mysql_charsets.lib.php:244 msgid "Estonian" msgstr "Estonià " -#: libraries/messages.inc.php:305 libraries/tbl_triggers.lib.php:29 +#: libraries/messages.inc.php:301 libraries/tbl_triggers.lib.php:29 msgid "Event" msgstr "Esdevenivent" -#: libraries/messages.inc.php:307 +#: libraries/messages.inc.php:303 msgid "Excel edition" msgstr "Edició per Excel" -#: libraries/messages.inc.php:311 pmd_pdf.php:85 +#: libraries/messages.inc.php:307 pmd_pdf.php:85 msgid "Export/Import to scale" msgstr "Exporta/Importa a escala" -#: libraries/messages.inc.php:313 +#: libraries/messages.inc.php:309 msgid "Extended inserts" msgstr "Insercions ampliades" -#: libraries/messages.inc.php:314 pdf_schema.php:1267 pdf_schema.php:1288 +#: libraries/messages.inc.php:310 pdf_schema.php:1267 pdf_schema.php:1288 #: tbl_printview.php:147 tbl_structure.php:183 tbl_tracking.php:278 msgid "Extra" msgstr "Extra" -#: libraries/messages.inc.php:316 server_status.php:447 +#: libraries/messages.inc.php:312 server_status.php:447 msgid "Failed attempts" msgstr "Intents erronis" -#: libraries/messages.inc.php:318 tbl_structure.php:375 +#: libraries/messages.inc.php:314 tbl_structure.php:375 #, php-format msgid "Field %s has been dropped" msgstr "S'ha esborrat el camp %s" -#: libraries/messages.inc.php:322 libraries/sql_query_form.lib.php:317 +#: libraries/messages.inc.php:318 libraries/sql_query_form.lib.php:317 msgid "Fields" msgstr "Camps" -#: libraries/messages.inc.php:332 server_binlog.php:136 +#: libraries/messages.inc.php:328 server_binlog.php:136 msgid "Files" msgstr "Arxius" -#: libraries/messages.inc.php:334 server_privileges.php:1597 +#: libraries/messages.inc.php:330 server_privileges.php:1597 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -3839,122 +3839,122 @@ msgstr "" "permisos que utilitza el servidor si s'han fet canvis manualment. En aquest " "cas, es necessari %srecarregar els permisos%s abans de continuar." -#: libraries/messages.inc.php:335 server_status.php:289 +#: libraries/messages.inc.php:331 server_status.php:289 msgid "Flush query cache" msgstr "Buida la memòria cau de consultes" -#: libraries/messages.inc.php:336 +#: libraries/messages.inc.php:332 msgid "Flush the table (\"FLUSH\")" msgstr "Buida la memòria cau de la taula (\"FLUSH\")" -#: libraries/messages.inc.php:337 server_status.php:271 +#: libraries/messages.inc.php:333 server_status.php:271 msgid "Flush (close) all tables" msgstr "Sincronitza (tanca) totes les taules" -#: libraries/messages.inc.php:339 tbl_relation.php:279 +#: libraries/messages.inc.php:335 tbl_relation.php:279 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" "Error creant clau externa (foreign key) a %1$s (comprovar tipus de dades)" -#: libraries/messages.inc.php:341 setup/lib/messages.inc.php:88 +#: libraries/messages.inc.php:337 setup/lib/messages.inc.php:88 #: tbl_printview.php:376 tbl_structure.php:738 msgid "Format" msgstr "Format" -#: libraries/messages.inc.php:344 server_replication.php:325 +#: libraries/messages.inc.php:340 server_replication.php:325 msgid "Full start" msgstr "Inici total" -#: libraries/messages.inc.php:345 server_replication.php:325 +#: libraries/messages.inc.php:341 server_replication.php:325 msgid "Full stop" msgstr "Parada total" -#: libraries/messages.inc.php:347 tbl_change.php:282 tbl_change.php:320 +#: libraries/messages.inc.php:343 tbl_change.php:282 tbl_change.php:320 msgid "Function" msgstr "Funció" -#: libraries/messages.inc.php:355 libraries/mysql_charsets.lib.php:377 +#: libraries/messages.inc.php:351 libraries/mysql_charsets.lib.php:377 msgid "Georgian" msgstr "Georgià" -#: libraries/messages.inc.php:356 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:352 libraries/mysql_charsets.lib.php:247 #: libraries/mysql_charsets.lib.php:250 msgid "German" msgstr "Alemany" -#: libraries/messages.inc.php:357 themes.php:42 +#: libraries/messages.inc.php:353 themes.php:42 msgid "Get more themes!" msgstr "Obtenir més temes!" -#: libraries/messages.inc.php:358 server_privileges.php:2134 +#: libraries/messages.inc.php:354 server_privileges.php:2134 msgid "global" msgstr "global" -#: libraries/messages.inc.php:359 server_privileges.php:524 +#: libraries/messages.inc.php:355 server_privileges.php:524 #: server_privileges.php:1500 msgid "Global privileges" msgstr "Permisos generals" -#: libraries/messages.inc.php:360 server_variables.php:55 +#: libraries/messages.inc.php:356 server_variables.php:55 #: server_variables.php:89 msgid "Global value" msgstr "Valor global" -#: libraries/messages.inc.php:365 server_privileges.php:1502 +#: libraries/messages.inc.php:361 server_privileges.php:1502 #: server_privileges.php:1684 server_privileges.php:2033 msgid "Grant" msgstr "Atorga" -#: libraries/messages.inc.php:366 libraries/mysql_charsets.lib.php:380 +#: libraries/messages.inc.php:362 libraries/mysql_charsets.lib.php:380 msgid "Greek" msgstr "Grec" -#: libraries/messages.inc.php:367 +#: libraries/messages.inc.php:363 msgid "\"gzipped\"" msgstr "\"comprimit amb gzip\"" -#: libraries/messages.inc.php:369 server_status.php:250 +#: libraries/messages.inc.php:365 server_status.php:250 msgid "Handler" msgstr "Gestor" -#: libraries/messages.inc.php:370 server_synchronize.php:464 +#: libraries/messages.inc.php:366 server_synchronize.php:464 msgid "Selected target tables have been synchronized with source tables." msgstr "" "Les taules de destinació seleccionades s'han sincronitzat amb les taules " "d'origen." -#: libraries/messages.inc.php:372 libraries/mysql_charsets.lib.php:374 +#: libraries/messages.inc.php:368 libraries/mysql_charsets.lib.php:374 msgid "Hebrew" msgstr "Hebreu" -#: libraries/messages.inc.php:373 pmd_general.php:83 +#: libraries/messages.inc.php:369 pmd_general.php:83 msgid "Help" msgstr "Ajuda" -#: libraries/messages.inc.php:374 +#: libraries/messages.inc.php:370 msgid "Use hexadecimal for BLOB" msgstr "Usa hexadecimal per a BLOB" -#: libraries/messages.inc.php:376 pmd_general.php:120 +#: libraries/messages.inc.php:372 pmd_general.php:120 msgid "Hide/Show all" msgstr "Amaga/Mostra tot" -#: libraries/messages.inc.php:377 pmd_general.php:124 +#: libraries/messages.inc.php:373 pmd_general.php:124 msgid "Hide/Show Tables with no relation" msgstr "Amaga/Mostra taules sense relacions" -#: libraries/messages.inc.php:378 libraries/navigation_header.inc.php:54 +#: libraries/messages.inc.php:374 libraries/navigation_header.inc.php:54 #: libraries/navigation_header.inc.php:57 #: libraries/navigation_header.inc.php:58 msgid "Home" msgstr "Inici" -#: libraries/messages.inc.php:379 main.php:233 +#: libraries/messages.inc.php:375 main.php:233 msgid "Official Homepage" msgstr "Pàgina oficial del phpMyAdmin" -#: libraries/messages.inc.php:382 libraries/replication_gui.lib.php:327 +#: libraries/messages.inc.php:378 libraries/replication_gui.lib.php:327 #: server_privileges.php:753 msgid "" "When Host table is used, this field is ignored and values stored in Host " @@ -3963,98 +3963,98 @@ msgstr "" "Quan s'utilitza la taula Host, aquest camp s'ignora i es fan servir els " "valors enmagatzemats a la taula Host en lloc seu." -#: libraries/messages.inc.php:383 +#: libraries/messages.inc.php:379 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/messages.inc.php:384 libraries/mysql_charsets.lib.php:253 +#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:253 msgid "Hungarian" msgstr "Húngar" -#: libraries/messages.inc.php:386 libraries/mysql_charsets.lib.php:256 +#: libraries/messages.inc.php:382 libraries/mysql_charsets.lib.php:256 msgid "Icelandic" msgstr "Islandès" -#: libraries/messages.inc.php:387 server_processlist.php:53 +#: libraries/messages.inc.php:383 server_processlist.php:53 msgid "ID" msgstr "ID" -#: libraries/messages.inc.php:388 libraries/mult_submits.inc.php:108 +#: libraries/messages.inc.php:384 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:479 msgid "Fulltext" msgstr "Text sencer" -#: libraries/messages.inc.php:389 +#: libraries/messages.inc.php:385 msgid "Ignore duplicate rows" msgstr "Ignora les files duplicades" -#: libraries/messages.inc.php:390 tbl_change.php:302 tbl_indexes.php:200 +#: libraries/messages.inc.php:386 tbl_change.php:302 tbl_indexes.php:200 #: tbl_indexes.php:225 msgid "Ignore" msgstr "Ignora" -#: libraries/messages.inc.php:391 +#: libraries/messages.inc.php:387 msgid "Use ignore inserts" msgstr "Utilitza \"ignore inserts\"" -#: libraries/messages.inc.php:392 +#: libraries/messages.inc.php:388 msgid "Column names in first row" msgstr "Noms de columnes a la primera fila" -#: libraries/messages.inc.php:393 +#: libraries/messages.inc.php:389 msgid "Do not import empty rows" msgstr "No importis files buides" -#: libraries/messages.inc.php:394 pmd_general.php:104 +#: libraries/messages.inc.php:390 pmd_general.php:104 msgid "Import/Export coordinates for PDF schema" msgstr "Importa/Exporta coordenades per a esquema PDF" -#: libraries/messages.inc.php:395 querywindow.php:104 +#: libraries/messages.inc.php:391 querywindow.php:104 msgid "Import files" msgstr "Importa arxius" -#: libraries/messages.inc.php:403 +#: libraries/messages.inc.php:399 msgid "Import currencies ($5.00 to 5.00)" msgstr "Importar monedes ($5.00 a 5.00)" -#: libraries/messages.inc.php:404 libraries/messages.inc.php:584 +#: libraries/messages.inc.php:400 libraries/messages.inc.php:580 msgid "Open Document Spreadsheet" msgstr "Full de càlcul Open Document" -#: libraries/messages.inc.php:405 +#: libraries/messages.inc.php:401 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "Importar percentatges amb els decimals adients (12.00% a .12)" -#: libraries/messages.inc.php:409 +#: libraries/messages.inc.php:405 msgid "Excel 97-2003 XLS Workbook" msgstr "Llibre d'Excel 97-2003 XLS" -#: libraries/messages.inc.php:410 +#: libraries/messages.inc.php:406 msgid "Excel 2007 XLSX Workbook" msgstr "Llibre d'Excel 2007 XLSX" -#: libraries/messages.inc.php:414 libraries/mult_submits.inc.php:98 +#: libraries/messages.inc.php:410 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:476 tbl_structure.php:674 msgid "Index" msgstr "Índex" -#: libraries/messages.inc.php:415 tbl_indexes.php:168 +#: libraries/messages.inc.php:411 tbl_indexes.php:168 msgid "Index name:" msgstr "Nom d'índex:" -#: libraries/messages.inc.php:416 tbl_indexes.php:174 +#: libraries/messages.inc.php:412 tbl_indexes.php:174 msgid "Index type:" msgstr "Tipus d'índex:" -#: libraries/messages.inc.php:417 sql.php:639 +#: libraries/messages.inc.php:413 sql.php:639 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemes amb els indexs de la taula `%s`" -#: libraries/messages.inc.php:427 main.php:266 +#: libraries/messages.inc.php:423 main.php:266 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -4067,24 +4067,24 @@ msgstr "" "i s'exposa a intrusions, pel que recomanem la reparació urgent d'aquest " "forat de seguretat." -#: libraries/messages.inc.php:428 tbl_change.php:1130 +#: libraries/messages.inc.php:424 tbl_change.php:1130 msgid "Insert as new row" msgstr "Insereix com a nova fila" -#: libraries/messages.inc.php:429 sql.php:496 tbl_replace.php:386 +#: libraries/messages.inc.php:425 sql.php:496 tbl_replace.php:386 #, php-format msgid "Inserted row id: %1$d" msgstr "Id de la fila inserida: %1$d" -#: libraries/messages.inc.php:430 tbl_change.php:1131 +#: libraries/messages.inc.php:426 tbl_change.php:1131 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/messages.inc.php:432 main.php:139 +#: libraries/messages.inc.php:428 main.php:139 msgid "Interface" msgstr "Interficie" -#: libraries/messages.inc.php:433 tbl_relation.php:407 +#: libraries/messages.inc.php:429 tbl_relation.php:407 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -4092,140 +4092,140 @@ msgstr "" "No es necessita una relació interna quan existeix una relació corresponent " "de FOREIGN KEY." -#: libraries/messages.inc.php:435 pdf_pages.php:303 +#: libraries/messages.inc.php:431 pdf_pages.php:303 msgid "Internal relations" msgstr "Relacions internes" -#: libraries/messages.inc.php:438 tbl_indexes.php:256 tbl_structure.php:590 +#: libraries/messages.inc.php:434 tbl_indexes.php:256 tbl_structure.php:590 #: tbl_structure.php:601 msgid "Column count has to be larger than zero." msgstr "El comptador de columnes ha de ser més gran que zero." -#: libraries/messages.inc.php:444 libraries/tbl_properties.inc.php:784 +#: libraries/messages.inc.php:440 libraries/tbl_properties.inc.php:784 #: tbl_structure.php:537 msgid "You have to add at least one field." msgstr "Has d'afegir al menys un camp." -#: libraries/messages.inc.php:449 +#: libraries/messages.inc.php:445 #, php-format msgid "Invalid server index: \"%s\"" msgstr "Index de servidor invàlid: \"%s\"" -#: libraries/messages.inc.php:452 libraries/mysql_charsets.lib.php:259 +#: libraries/messages.inc.php:448 libraries/mysql_charsets.lib.php:259 #: libraries/mysql_charsets.lib.php:349 msgid "Japanese" msgstr "Japonès" -#: libraries/messages.inc.php:453 main.php:331 +#: libraries/messages.inc.php:449 main.php:331 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: libraries/messages.inc.php:454 server_status.php:257 +#: libraries/messages.inc.php:450 server_status.php:257 msgid "Joins" msgstr "Unions" -#: libraries/messages.inc.php:457 server_privileges.php:763 +#: libraries/messages.inc.php:453 server_privileges.php:763 msgid "Do not change the password" msgstr "No canviïs la contrasenya" -#: libraries/messages.inc.php:458 server_status.php:256 +#: libraries/messages.inc.php:454 server_status.php:256 msgid "Key cache" msgstr "Memòria cau de claus" -#: libraries/messages.inc.php:462 libraries/mysql_charsets.lib.php:268 +#: libraries/messages.inc.php:458 libraries/mysql_charsets.lib.php:268 #: libraries/mysql_charsets.lib.php:371 msgid "Korean" msgstr "Coreà" -#: libraries/messages.inc.php:466 libraries/select_lang.lib.php:480 +#: libraries/messages.inc.php:462 libraries/select_lang.lib.php:480 #: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492 #, php-format msgid "Unknown language: %1$s." msgstr "Idioma desconegut: %1$s." -#: libraries/messages.inc.php:468 +#: libraries/messages.inc.php:464 msgid "Table caption" msgstr "Titol de Taula" -#: libraries/messages.inc.php:469 +#: libraries/messages.inc.php:465 msgid "Content of table __TABLE__" msgstr "Contingut de la taula __TABLE__" -#: libraries/messages.inc.php:470 +#: libraries/messages.inc.php:466 msgid "Continued table caption" msgstr "Continuació del Titol de taula" -#: libraries/messages.inc.php:471 +#: libraries/messages.inc.php:467 msgid "(continued)" msgstr "(continúa)" -#: libraries/messages.inc.php:472 +#: libraries/messages.inc.php:468 msgid "Include table caption" msgstr "Inclusió del titol de taula" -#: libraries/messages.inc.php:473 +#: libraries/messages.inc.php:469 msgid "Label key" msgstr "Etiqueta de clau" -#: libraries/messages.inc.php:474 +#: libraries/messages.inc.php:470 msgid "LaTeX" msgstr "LaTeX" -#: libraries/messages.inc.php:475 +#: libraries/messages.inc.php:471 msgid "Structure of table __TABLE__" msgstr "Estructura de la taula __TABLE__" -#: libraries/messages.inc.php:476 libraries/mysql_charsets.lib.php:262 +#: libraries/messages.inc.php:472 libraries/mysql_charsets.lib.php:262 msgid "Latvian" msgstr "Letó" -#: libraries/messages.inc.php:477 +#: libraries/messages.inc.php:473 msgid "CSV using LOAD DATA" msgstr "CSV usant LOAD DATA" -#: libraries/messages.inc.php:478 +#: libraries/messages.inc.php:474 msgid "Use LOCAL keyword" msgstr "Usa clau LOCAL" -#: libraries/messages.inc.php:479 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:475 libraries/tbl_properties.inc.php:105 msgid "Length/Values" msgstr "Longitud/Valors*" -#: libraries/messages.inc.php:480 tbl_select.php:295 +#: libraries/messages.inc.php:476 tbl_select.php:295 msgid "Number of rows per page" msgstr "registres per pàgina" -#: libraries/messages.inc.php:484 libraries/mysql_charsets.lib.php:265 +#: libraries/messages.inc.php:480 libraries/mysql_charsets.lib.php:265 msgid "Lithuanian" msgstr "Lituà " -#: libraries/messages.inc.php:485 libraries/replication_gui.lib.php:302 +#: libraries/messages.inc.php:481 libraries/replication_gui.lib.php:302 #: server_privileges.php:729 msgid "Local" msgstr "Local" -#: libraries/messages.inc.php:487 server_privileges.php:669 +#: libraries/messages.inc.php:483 server_privileges.php:669 msgid "Login Information" msgstr "Informació d'Identificació" -#: libraries/messages.inc.php:490 libraries/navigation_header.inc.php:67 +#: libraries/messages.inc.php:486 libraries/navigation_header.inc.php:67 #: libraries/navigation_header.inc.php:70 #: libraries/navigation_header.inc.php:71 main.php:99 msgid "Log out" msgstr "Surt" -#: libraries/messages.inc.php:497 server_status.php:440 +#: libraries/messages.inc.php:493 server_status.php:440 msgid "max. concurrent connections" msgstr "max. connexions a la vegada" -#: libraries/messages.inc.php:498 +#: libraries/messages.inc.php:494 msgid "Maximal length of created query" msgstr "Tamany màxim de la consulta creada" -#: libraries/messages.inc.php:500 main.php:282 +#: libraries/messages.inc.php:496 main.php:282 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -4235,7 +4235,7 @@ msgstr "" "de caràcters multibyte. Sense l'extensió -mbstring-, phpMyAdmin és incapaç " "de dividir cadenes de text correctament i pot generar resultats inesperats." -#: libraries/messages.inc.php:501 main.php:274 +#: libraries/messages.inc.php:497 main.php:274 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -4245,24 +4245,24 @@ msgstr "" "PHP. Aquesta opció és incompatible amb phpMyAdmin i pot provocar la perdua " "de dades!" -#: libraries/messages.inc.php:502 +#: libraries/messages.inc.php:498 msgid "MediaWiki Table" msgstr "Taula MediaWiki" -#: libraries/messages.inc.php:503 transformation_overview.php:25 +#: libraries/messages.inc.php:499 transformation_overview.php:25 msgid "Available MIME types" msgstr "Tipus MIME disponibles" -#: libraries/messages.inc.php:504 transformation_overview.php:43 +#: libraries/messages.inc.php:500 transformation_overview.php:43 msgid "Available transformations" msgstr "Transformacions disponibles" -#: libraries/messages.inc.php:505 +#: libraries/messages.inc.php:501 msgctxt "$strMIME_description" msgid "Description" msgstr "Descripció" -#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:580 +#: libraries/messages.inc.php:503 libraries/tbl_properties.inc.php:580 #: transformation_overview.php:60 #, php-format msgid "" @@ -4272,7 +4272,7 @@ msgstr "" "No hi ha cap descripció disponible per a aquesta transformació.
Demana " "a l'autor qué fa %s." -#: libraries/messages.inc.php:509 libraries/tbl_properties.inc.php:137 +#: libraries/messages.inc.php:505 libraries/tbl_properties.inc.php:137 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -4281,7 +4281,7 @@ msgstr "" "Per veure una llista d'opcions de transformació disponibles i els seus tipus " "MIME de transformació, prem a %sdescripcions de transformació%s" -#: libraries/messages.inc.php:510 libraries/tbl_properties.inc.php:146 +#: libraries/messages.inc.php:506 libraries/tbl_properties.inc.php:146 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -4293,56 +4293,56 @@ msgstr "" "apòstrof (\"'\") entre aquests valors, posa una barra invertida devant (per " "exemple '\\\\xyz' o 'a\\'b')." -#: libraries/messages.inc.php:511 libraries/tbl_properties.inc.php:145 +#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:145 msgid "Transformation options" msgstr "Opcions de Transformació" -#: libraries/messages.inc.php:513 transformation_overview.php:38 +#: libraries/messages.inc.php:509 transformation_overview.php:38 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "Els tipus MIME en cursiva no tenen funcions de transformació a part" -#: libraries/messages.inc.php:515 tbl_indexes.php:162 +#: libraries/messages.inc.php:511 tbl_indexes.php:162 msgid "Modify an index" msgstr "Modifica un índex" -#: libraries/messages.inc.php:517 pmd_general.php:108 +#: libraries/messages.inc.php:513 pmd_general.php:108 msgid "Move Menu" msgstr "Menú Mou" -#: libraries/messages.inc.php:518 tbl_operations.php:276 +#: libraries/messages.inc.php:514 tbl_operations.php:276 msgid "Move table to (database.table):" msgstr "Mou la taula a (base-de-dades.taula):" -#: libraries/messages.inc.php:519 tbl_move_copy.php:56 +#: libraries/messages.inc.php:515 tbl_move_copy.php:56 #, php-format msgid "Table %s has been moved to %s." msgstr "Taula %s moguda a %s." -#: libraries/messages.inc.php:520 tbl_move_copy.php:46 +#: libraries/messages.inc.php:516 tbl_move_copy.php:46 msgid "Can't move table to same one!" msgstr "No es pot moure la taula sobre ella mateixa!" -#: libraries/messages.inc.php:521 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:517 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 #: libraries/mysql_charsets.lib.php:332 libraries/mysql_charsets.lib.php:354 #: libraries/mysql_charsets.lib.php:365 msgid "multilingual" msgstr "multilingüe" -#: libraries/messages.inc.php:534 main.php:193 +#: libraries/messages.inc.php:530 main.php:193 msgid "MySQL charset" msgstr "Joc de caràcters de MySQL" -#: libraries/messages.inc.php:535 main.php:211 +#: libraries/messages.inc.php:531 main.php:211 msgid "MySQL client version" msgstr "Versió del client MySQL" -#: libraries/messages.inc.php:536 main.php:125 +#: libraries/messages.inc.php:532 main.php:125 msgid "MySQL connection collation" msgstr "Ordenació de la connexió MySQL" -#: libraries/messages.inc.php:537 main.php:346 +#: libraries/messages.inc.php:533 main.php:346 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -4351,54 +4351,54 @@ msgstr "" "La teva llibreria MySQL de PHP MySQL versió %s és diferent del teu servidor " "MySQL versió %s. Aixó pot provocar comportaments inesperats." -#: libraries/messages.inc.php:539 server_status.php:294 +#: libraries/messages.inc.php:535 server_status.php:294 msgid "Show processes" msgstr "Mostra els processos" -#: libraries/messages.inc.php:545 navigation.php:210 server_databases.php:371 +#: libraries/messages.inc.php:541 navigation.php:210 server_databases.php:371 #: server_synchronize.php:1191 msgid "No databases" msgstr "No hi ha Bases de Dades" -#: libraries/messages.inc.php:546 server_databases.php:52 +#: libraries/messages.inc.php:542 server_databases.php:52 msgid "No databases selected." msgstr "No s'han triat Bases de dades." -#: libraries/messages.inc.php:548 libraries/relation.lib.php:1173 +#: libraries/messages.inc.php:544 libraries/relation.lib.php:1173 msgid "no description" msgstr "Sense Descripció" -#: libraries/messages.inc.php:552 libraries/zip_extension.lib.php:26 +#: libraries/messages.inc.php:548 libraries/zip_extension.lib.php:26 msgid "No files found inside ZIP archive!" msgstr "No s'han trobat arxius dins de l'arxiu ZIP!" -#: libraries/messages.inc.php:555 tbl_indexes.php:91 +#: libraries/messages.inc.php:551 tbl_indexes.php:91 msgid "No index parts defined!" msgstr "No s'han definit parts de l'índex!" -#: libraries/messages.inc.php:556 libraries/mult_submits.inc.php:435 +#: libraries/messages.inc.php:552 libraries/mult_submits.inc.php:435 #: tbl_replace.php:331 msgid "No change" msgstr "Sense canvis" -#: libraries/messages.inc.php:557 +#: libraries/messages.inc.php:553 msgctxt "$strNoneDefault" msgid "None" msgstr "Cap" -#: libraries/messages.inc.php:560 libraries/plugin_interface.lib.php:312 +#: libraries/messages.inc.php:556 libraries/plugin_interface.lib.php:312 msgid "This format has no options" msgstr "Aquest format no té opcions" -#: libraries/messages.inc.php:565 user_password.php:54 +#: libraries/messages.inc.php:561 user_password.php:54 msgid "You don't have sufficient privileges to be here right now!" msgstr "No tens prou permisos per visualitzar aquesta informació!" -#: libraries/messages.inc.php:566 tbl_row_action.php:29 +#: libraries/messages.inc.php:562 tbl_row_action.php:29 msgid "No rows selected" msgstr "No s'han triat arxius" -#: libraries/messages.inc.php:569 themes.php:32 +#: libraries/messages.inc.php:565 themes.php:32 #, php-format msgid "" "No themes support; please check your configuration and/or your themes in " @@ -4407,294 +4407,294 @@ msgstr "" "No hi ha suport pels temes, si et plau comprova la teva configuració i/o els " "teus temes al directori %s." -#: libraries/messages.inc.php:571 libraries/relation.lib.php:95 +#: libraries/messages.inc.php:567 libraries/relation.lib.php:95 msgid "not OK" msgstr "Incorrecte" -#: libraries/messages.inc.php:572 server_synchronize.php:400 +#: libraries/messages.inc.php:568 server_synchronize.php:400 #: server_synchronize.php:839 msgid "not present" msgstr "no present" -#: libraries/messages.inc.php:573 pdf_pages.php:36 pdf_pages.php:42 +#: libraries/messages.inc.php:569 pdf_pages.php:36 pdf_pages.php:42 #: pdf_pages.php:48 pdf_pages.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "Taula %s no trobada o no definida a %s" -#: libraries/messages.inc.php:574 server_privileges.php:804 +#: libraries/messages.inc.php:570 server_privileges.php:804 #: server_privileges.php:2166 msgid "No user(s) found." msgstr "No s'han trobat usuaris." -#: libraries/messages.inc.php:578 pmd_general.php:164 +#: libraries/messages.inc.php:574 pmd_general.php:164 msgid "Number of tables" msgstr "Nombre de taules" -#: libraries/messages.inc.php:581 server_databases.php:117 +#: libraries/messages.inc.php:577 server_databases.php:117 #: server_status.php:260 setup/lib/messages.inc.php:117 msgid "Tables" msgstr "Taules" -#: libraries/messages.inc.php:583 libraries/relation.lib.php:99 +#: libraries/messages.inc.php:579 libraries/relation.lib.php:99 #: pmd_general.php:340 msgid "OK" msgstr "Correcte" -#: libraries/messages.inc.php:585 +#: libraries/messages.inc.php:581 msgid "Open Document Text" msgstr "Text format Open Document" -#: libraries/messages.inc.php:588 tbl_select.php:138 +#: libraries/messages.inc.php:584 tbl_select.php:138 msgid "Operator" msgstr "Operador" -#: libraries/messages.inc.php:589 tbl_operations.php:662 +#: libraries/messages.inc.php:585 tbl_operations.php:662 msgid "Optimize" msgstr "Optimitza" -#: libraries/messages.inc.php:602 libraries/tbl_properties.inc.php:755 +#: libraries/messages.inc.php:598 libraries/tbl_properties.inc.php:755 msgid "PARTITION definition" msgstr "Definicio de PARTICIÓ" -#: libraries/messages.inc.php:603 tbl_structure.php:757 +#: libraries/messages.inc.php:599 tbl_structure.php:757 msgid "partitioned" msgstr "particionat" -#: libraries/messages.inc.php:604 tbl_operations.php:649 +#: libraries/messages.inc.php:600 tbl_operations.php:649 msgid "Partition maintenance" msgstr "Manteniment de particions" -#: libraries/messages.inc.php:605 tbl_operations.php:657 +#: libraries/messages.inc.php:601 tbl_operations.php:657 #, php-format msgid "Partition %s" msgstr "Partició %s" -#: libraries/messages.inc.php:606 server_privileges.php:1212 +#: libraries/messages.inc.php:602 server_privileges.php:1212 #, php-format msgid "The password for %s was changed successfully." msgstr "La contrasenya per %s s'ha canviat correctament." -#: libraries/messages.inc.php:635 +#: libraries/messages.inc.php:631 #, php-format msgid "Schema of the \"%s\" database - Page %s" msgstr "Esquema de la base de dades \"%s\" - Pàgina %s" -#: libraries/messages.inc.php:636 +#: libraries/messages.inc.php:632 #, php-format msgid "The \"%s\" table doesn't exist!" msgstr "La taula \"%s\" no existeix!" -#: libraries/messages.inc.php:637 pdf_schema.php:1013 +#: libraries/messages.inc.php:633 pdf_schema.php:1013 msgid "No tables" msgstr "No hi ha taules" -#: libraries/messages.inc.php:638 pmd_pdf.php:63 +#: libraries/messages.inc.php:634 pmd_pdf.php:63 #, fuzzy msgid "Page has been created" msgstr "S'ha creat la taula %1$s." -#: libraries/messages.inc.php:639 pmd_pdf.php:65 +#: libraries/messages.inc.php:635 pmd_pdf.php:65 msgid "Page creation failed" msgstr "" -#: libraries/messages.inc.php:640 +#: libraries/messages.inc.php:636 msgid "PDF" msgstr "PDF" -#: libraries/messages.inc.php:641 +#: libraries/messages.inc.php:637 msgid "(Generates a report containing the data of a single table)" msgstr "(Crea un llistat que conté les dades d'una sola taula)" -#: libraries/messages.inc.php:642 +#: libraries/messages.inc.php:638 msgid "Report title" msgstr "Títol de llistat" -#: libraries/messages.inc.php:643 server_status.php:389 server_status.php:434 +#: libraries/messages.inc.php:639 server_status.php:389 server_status.php:434 #: server_status.php:497 server_status.php:555 msgid "per hour" msgstr "per hora" -#: libraries/messages.inc.php:644 server_status.php:498 +#: libraries/messages.inc.php:640 server_status.php:498 msgid "per minute" msgstr "per minut" -#: libraries/messages.inc.php:645 server_status.php:499 +#: libraries/messages.inc.php:641 server_status.php:499 msgid "per second" msgstr "per segon" -#: libraries/messages.inc.php:646 libraries/mysql_charsets.lib.php:271 +#: libraries/messages.inc.php:642 libraries/mysql_charsets.lib.php:271 msgid "Persian" msgstr "Persa" -#: libraries/messages.inc.php:647 libraries/mysql_charsets.lib.php:250 +#: libraries/messages.inc.php:643 libraries/mysql_charsets.lib.php:250 msgid "phone book" msgstr "Libreta d'adreces" -#: libraries/messages.inc.php:648 +#: libraries/messages.inc.php:644 msgid "PHP array" msgstr "matriu PHP" -#: libraries/messages.inc.php:650 main.php:213 +#: libraries/messages.inc.php:646 main.php:213 msgid "PHP extension" msgstr "Extensió PHP" -#: libraries/messages.inc.php:654 libraries/relation.lib.php:163 +#: libraries/messages.inc.php:650 libraries/relation.lib.php:163 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/messages.inc.php:655 libraries/relation.lib.php:159 +#: libraries/messages.inc.php:651 libraries/relation.lib.php:159 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/messages.inc.php:656 libraries/relation.lib.php:161 +#: libraries/messages.inc.php:652 libraries/relation.lib.php:161 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" -#: libraries/messages.inc.php:657 libraries/relation.lib.php:162 +#: libraries/messages.inc.php:653 libraries/relation.lib.php:162 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/messages.inc.php:658 libraries/relation.lib.php:164 +#: libraries/messages.inc.php:654 libraries/relation.lib.php:164 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/messages.inc.php:661 libraries/mysql_charsets.lib.php:274 +#: libraries/messages.inc.php:657 libraries/mysql_charsets.lib.php:274 msgid "Polish" msgstr "Polac" -#: libraries/messages.inc.php:662 libraries/replication_gui.lib.php:67 +#: libraries/messages.inc.php:658 libraries/replication_gui.lib.php:67 #: server_synchronize.php:1163 msgid "Port" msgstr "Port" -#: libraries/messages.inc.php:667 tbl_indexes.php:67 +#: libraries/messages.inc.php:663 tbl_indexes.php:67 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "El nom de la clau principal ha de ser ... PRIMARY!" -#: libraries/messages.inc.php:668 tbl_indexes.php:184 +#: libraries/messages.inc.php:664 tbl_indexes.php:184 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" "(\"PRIMARY\" ha de ser el nom i només el nom de la clau " "principal!)" -#: libraries/messages.inc.php:669 libraries/mult_submits.inc.php:76 +#: libraries/messages.inc.php:665 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:474 msgid "Primary" msgstr "Principal" -#: libraries/messages.inc.php:673 server_privileges.php:227 +#: libraries/messages.inc.php:669 server_privileges.php:227 msgid "Includes all privileges except GRANT." msgstr "Inclou tots els permisos excepte GRANT (atorgar)." -#: libraries/messages.inc.php:674 server_privileges.php:153 +#: libraries/messages.inc.php:670 server_privileges.php:153 #: server_privileges.php:476 msgid "Allows altering the structure of existing tables." msgstr "Permet alterar l'estructura de taules existents." -#: libraries/messages.inc.php:675 server_privileges.php:169 +#: libraries/messages.inc.php:671 server_privileges.php:169 #: server_privileges.php:482 msgid "Allows altering and dropping stored routines." msgstr "Permet alterar i esborrar rutines enmagatzemades." -#: libraries/messages.inc.php:676 server_privileges.php:145 +#: libraries/messages.inc.php:672 server_privileges.php:145 #: server_privileges.php:475 msgid "Allows creating new databases and tables." msgstr "Permet crear noves bases de dades i taules." -#: libraries/messages.inc.php:677 server_privileges.php:168 +#: libraries/messages.inc.php:673 server_privileges.php:168 #: server_privileges.php:481 msgid "Allows creating stored routines." msgstr "Permet crear rutines enmgatzemades." -#: libraries/messages.inc.php:678 server_privileges.php:475 +#: libraries/messages.inc.php:674 server_privileges.php:475 msgid "Allows creating new tables." msgstr "Permet crear noves taules." -#: libraries/messages.inc.php:679 server_privileges.php:156 +#: libraries/messages.inc.php:675 server_privileges.php:156 #: server_privileges.php:479 msgid "Allows creating temporary tables." msgstr "Permet crear taules temporals." -#: libraries/messages.inc.php:680 server_privileges.php:170 +#: libraries/messages.inc.php:676 server_privileges.php:170 #: server_privileges.php:515 msgid "Allows creating, dropping and renaming user accounts." msgstr "Permet crear, esborrar i reanomenar comptes d'usuari." -#: libraries/messages.inc.php:681 server_privileges.php:160 +#: libraries/messages.inc.php:677 server_privileges.php:160 #: server_privileges.php:164 server_privileges.php:487 #: server_privileges.php:491 msgid "Allows creating new views." msgstr "Permet crear noves vistes." -#: libraries/messages.inc.php:682 server_privileges.php:144 +#: libraries/messages.inc.php:678 server_privileges.php:144 #: server_privileges.php:467 msgid "Allows deleting data." msgstr "Permet esborrar dades." -#: libraries/messages.inc.php:683 server_privileges.php:146 +#: libraries/messages.inc.php:679 server_privileges.php:146 #: server_privileges.php:478 msgid "Allows dropping databases and tables." msgstr "Permet eliminar bases de dades i taules." -#: libraries/messages.inc.php:684 server_privileges.php:478 +#: libraries/messages.inc.php:680 server_privileges.php:478 msgid "Allows dropping tables." msgstr "Permet eliminar taules." -#: libraries/messages.inc.php:685 server_privileges.php:161 +#: libraries/messages.inc.php:681 server_privileges.php:161 #: server_privileges.php:495 msgid "Allows to set up events for the event scheduler" msgstr "Permet establir events per al planificador d'events" -#: libraries/messages.inc.php:686 server_privileges.php:171 +#: libraries/messages.inc.php:682 server_privileges.php:171 #: server_privileges.php:483 msgid "Allows executing stored routines." msgstr "Permet executar rutines enmagatzemades." -#: libraries/messages.inc.php:687 server_privileges.php:150 +#: libraries/messages.inc.php:683 server_privileges.php:150 #: server_privileges.php:470 msgid "Allows importing data from and exporting data into files." msgstr "Permet importar i exportar dades amb arxius externs." -#: libraries/messages.inc.php:688 server_privileges.php:501 +#: libraries/messages.inc.php:684 server_privileges.php:501 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Permet afegir usuaris i permisos sense tenir que recarregar les taules de " "permisos." -#: libraries/messages.inc.php:689 server_privileges.php:152 +#: libraries/messages.inc.php:685 server_privileges.php:152 #: server_privileges.php:477 msgid "Allows creating and dropping indexes." msgstr "Permet crear i eliminar indexs." -#: libraries/messages.inc.php:690 server_privileges.php:142 +#: libraries/messages.inc.php:686 server_privileges.php:142 #: server_privileges.php:403 server_privileges.php:465 msgid "Allows inserting and replacing data." msgstr "Permet inserir i modificar dades." -#: libraries/messages.inc.php:691 server_privileges.php:157 +#: libraries/messages.inc.php:687 server_privileges.php:157 #: server_privileges.php:510 msgid "Allows locking tables for the current thread." msgstr "Permet bloquejar taules per l'actual fil d'execució." -#: libraries/messages.inc.php:692 server_privileges.php:607 +#: libraries/messages.inc.php:688 server_privileges.php:607 #: server_privileges.php:609 msgid "Limits the number of new connections the user may open per hour." msgstr "Limita el numero de noves connexions que pot obrir l'usuari per hora." -#: libraries/messages.inc.php:693 server_privileges.php:595 +#: libraries/messages.inc.php:689 server_privileges.php:595 #: server_privileges.php:597 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Limita el numero de consultes que pot enviar l'usuari al servidor per hora." -#: libraries/messages.inc.php:694 server_privileges.php:601 +#: libraries/messages.inc.php:690 server_privileges.php:601 #: server_privileges.php:603 msgid "" "Limits the number of commands that change any table or database the user may " @@ -4703,60 +4703,60 @@ msgstr "" "Limita el numero d'ordres que pot executar l'usuari canviant qualsevol taula " "o base de dades per hora." -#: libraries/messages.inc.php:695 server_privileges.php:613 +#: libraries/messages.inc.php:691 server_privileges.php:613 #: server_privileges.php:615 msgid "Limits the number of simultaneous connections the user may have." msgstr "Límita el nombre de connexions simultànies que l'usuari pot tenir." -#: libraries/messages.inc.php:696 server_privileges.php:149 +#: libraries/messages.inc.php:692 server_privileges.php:149 #: server_privileges.php:505 msgid "Allows viewing processes of all users" msgstr "Permet veure processos de tots els usuaris" -#: libraries/messages.inc.php:697 server_privileges.php:151 +#: libraries/messages.inc.php:693 server_privileges.php:151 #: server_privileges.php:409 server_privileges.php:511 msgid "Has no effect in this MySQL version." msgstr "No té efecte en aquesta versió de MySQL." -#: libraries/messages.inc.php:698 server_privileges.php:147 +#: libraries/messages.inc.php:694 server_privileges.php:147 #: server_privileges.php:506 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Permet recarregar les configuracions del servidor i buidar les seves " "memòries cau." -#: libraries/messages.inc.php:699 server_privileges.php:159 +#: libraries/messages.inc.php:695 server_privileges.php:159 #: server_privileges.php:513 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Dona el dret a l'usuari de preguntar quins servidors mestres / esclaus hi ha." -#: libraries/messages.inc.php:700 server_privileges.php:158 +#: libraries/messages.inc.php:696 server_privileges.php:158 #: server_privileges.php:514 msgid "Needed for the replication slaves." msgstr "Es necessari per a la replicació en servidors esclaus." -#: libraries/messages.inc.php:701 server_privileges.php:141 +#: libraries/messages.inc.php:697 server_privileges.php:141 #: server_privileges.php:400 server_privileges.php:464 msgid "Allows reading data." msgstr "Permet llegir dades." -#: libraries/messages.inc.php:702 server_privileges.php:154 +#: libraries/messages.inc.php:698 server_privileges.php:154 #: server_privileges.php:508 msgid "Gives access to the complete list of databases." msgstr "Dona accés a la llista completa de bases de dades." -#: libraries/messages.inc.php:703 server_privileges.php:165 +#: libraries/messages.inc.php:699 server_privileges.php:165 #: server_privileges.php:167 server_privileges.php:480 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Permet fer consultes de tipus SHOW CREATE VIEW." -#: libraries/messages.inc.php:704 server_privileges.php:148 +#: libraries/messages.inc.php:700 server_privileges.php:148 #: server_privileges.php:507 msgid "Allows shutting down the server." msgstr "Permet parar el servidor." -#: libraries/messages.inc.php:705 server_privileges.php:155 +#: libraries/messages.inc.php:701 server_privileges.php:155 #: server_privileges.php:504 msgid "" "Allows connecting, even if maximum number of connections is reached; " @@ -4767,55 +4767,55 @@ msgstr "" "permés; Es necessari per moltes operacions d'administració com ara establir " "variables globals o bé cancel.lar fils d'execució d'altres usuaris." -#: libraries/messages.inc.php:706 server_privileges.php:162 +#: libraries/messages.inc.php:702 server_privileges.php:162 #: server_privileges.php:496 msgid "Allows creating and dropping triggers" msgstr "Permet crear i eliminar disparadors (triggers)" -#: libraries/messages.inc.php:707 server_privileges.php:143 +#: libraries/messages.inc.php:703 server_privileges.php:143 #: server_privileges.php:406 server_privileges.php:466 msgid "Allows changing data." msgstr "Permet canviar dades." -#: libraries/messages.inc.php:708 server_privileges.php:221 +#: libraries/messages.inc.php:704 server_privileges.php:221 msgid "No privileges." msgstr "Sense permisos." -#: libraries/messages.inc.php:710 server_privileges.php:1296 +#: libraries/messages.inc.php:706 server_privileges.php:1296 msgid "The privileges were reloaded successfully." msgstr "Els permisos s'han recarregat correctament." -#: libraries/messages.inc.php:712 libraries/server_links.inc.php:80 +#: libraries/messages.inc.php:708 libraries/server_links.inc.php:80 msgid "Processes" msgstr "Processos" -#: libraries/messages.inc.php:714 main.php:187 +#: libraries/messages.inc.php:710 main.php:187 msgid "Protocol version" msgstr "Versió del protocol" -#: libraries/messages.inc.php:715 +#: libraries/messages.inc.php:711 msgid "Put fields names in the first row" msgstr "Posa els noms de camp a la primera fila" -#: libraries/messages.inc.php:720 server_synchronize.php:1003 +#: libraries/messages.inc.php:716 server_synchronize.php:1003 msgid "The following queries have been executed:" msgstr "Les següents consultes s'han executat:" -#: libraries/messages.inc.php:721 server_status.php:251 +#: libraries/messages.inc.php:717 server_status.php:251 msgid "Query cache" msgstr "Memòria cau de consultes" -#: libraries/messages.inc.php:722 libraries/navigation_header.inc.php:80 +#: libraries/messages.inc.php:718 libraries/navigation_header.inc.php:80 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 setup/lib/messages.inc.php:122 msgid "Query window" msgstr "Finestra de consultes" -#: libraries/messages.inc.php:725 querywindow.php:109 querywindow.php:217 +#: libraries/messages.inc.php:721 querywindow.php:109 querywindow.php:217 msgid "SQL history" msgstr "Historial SQL" -#: libraries/messages.inc.php:726 server_status.php:490 +#: libraries/messages.inc.php:722 server_status.php:490 #, php-format msgid "" "Query statistics: Since its startup, %s queries have been sent to the " @@ -4824,95 +4824,95 @@ msgstr "" "Estadístiques de Consultes: Des de l'últim inici, s'han enviat %s " "consultes al servidor." -#: libraries/messages.inc.php:728 server_status.php:554 +#: libraries/messages.inc.php:724 server_status.php:554 msgid "Query type" msgstr "Tipus de consulta" -#: libraries/messages.inc.php:729 libraries/sql_query_form.lib.php:381 +#: libraries/messages.inc.php:725 libraries/sql_query_form.lib.php:381 msgid "Do not overwrite this query from outside the window" msgstr "No sobreescriure aquesta consulta des de fora de la finestra" -#: libraries/messages.inc.php:732 tbl_operations.php:663 +#: libraries/messages.inc.php:728 tbl_operations.php:663 msgid "Rebuild" msgstr "Reconstrueix" -#: libraries/messages.inc.php:733 server_status.php:394 +#: libraries/messages.inc.php:729 server_status.php:394 msgid "Received" msgstr "Rebut" -#: libraries/messages.inc.php:734 pmd_pdf.php:89 +#: libraries/messages.inc.php:730 pmd_pdf.php:89 msgid "recommended" msgstr "recomanat" -#: libraries/messages.inc.php:736 tbl_operations.php:702 +#: libraries/messages.inc.php:732 tbl_operations.php:702 msgid "Check referential integrity:" msgstr "Comprova la integritat referencial:" -#: libraries/messages.inc.php:740 pdf_schema.php:1032 pdf_schema.php:1141 +#: libraries/messages.inc.php:736 pdf_schema.php:1032 pdf_schema.php:1141 msgid "Relational schema" msgstr "Esquema Relacional" -#: libraries/messages.inc.php:744 tbl_relation.php:399 +#: libraries/messages.inc.php:740 tbl_relation.php:399 msgid "Relations" msgstr "Relacions" -#: libraries/messages.inc.php:745 tbl_structure.php:507 tbl_structure.php:509 +#: libraries/messages.inc.php:741 tbl_structure.php:507 tbl_structure.php:509 msgid "Relation view" msgstr "Vista de Relacions" -#: libraries/messages.inc.php:746 server_privileges.php:1246 +#: libraries/messages.inc.php:742 server_privileges.php:1246 msgid "Reloading the privileges" msgstr "Recarregant permisos" -#: libraries/messages.inc.php:747 navigation.php:66 navigation.php:67 +#: libraries/messages.inc.php:743 navigation.php:66 navigation.php:67 #: navigation.php:70 #, fuzzy msgid "Reload navigation frame" msgstr "Configurar marc de navegació" -#: libraries/messages.inc.php:748 pmd_general.php:80 +#: libraries/messages.inc.php:744 pmd_general.php:80 msgid "Reload" msgstr "Recarrega" -#: libraries/messages.inc.php:749 libraries/server_synchronize.lib.php:1345 +#: libraries/messages.inc.php:745 libraries/server_synchronize.lib.php:1345 #: libraries/server_synchronize.lib.php:1371 msgid "Remote server" msgstr "Servidor remot" -#: libraries/messages.inc.php:750 +#: libraries/messages.inc.php:746 msgid "Remove CRLF characters within fields" msgstr "Treu caràcters CRLF de dins dels camps" -#: libraries/messages.inc.php:751 tbl_operations.php:676 +#: libraries/messages.inc.php:747 tbl_operations.php:676 msgid "Remove partitioning" msgstr "Elimina particionament" -#: libraries/messages.inc.php:752 server_privileges.php:1575 +#: libraries/messages.inc.php:748 server_privileges.php:1575 msgid "Remove selected users" msgstr "Treu els usuaris triats" -#: libraries/messages.inc.php:755 tbl_operations.php:338 +#: libraries/messages.inc.php:751 tbl_operations.php:338 msgid "Rename table to" msgstr "Reanomena les taules a" -#: libraries/messages.inc.php:756 view_operations.php:93 +#: libraries/messages.inc.php:752 view_operations.php:93 #, fuzzy msgid "Rename view to" msgstr "Reanomena les taules a" -#: libraries/messages.inc.php:757 tbl_operations.php:664 +#: libraries/messages.inc.php:753 tbl_operations.php:664 msgid "Repair" msgstr "Repara" -#: libraries/messages.inc.php:759 +#: libraries/messages.inc.php:755 msgid "Replace NULL by" msgstr "Canvía NULL per" -#: libraries/messages.inc.php:760 +#: libraries/messages.inc.php:756 msgid "Replace table data with file" msgstr "Canviar les dades de la taula per l'arxiu " -#: libraries/messages.inc.php:761 server_replication.php:228 +#: libraries/messages.inc.php:757 server_replication.php:228 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -4920,46 +4920,46 @@ msgstr "" "Ara, afegeix les següents línies al final del teu arxiu -my.cnf- i després " "reinicia el servidor MySQL." -#: libraries/messages.inc.php:762 libraries/replication_gui.lib.php:236 +#: libraries/messages.inc.php:758 libraries/replication_gui.lib.php:236 #: server_replication.php:194 msgid "Add slave replication user" msgstr "Afegeix l'usuari esclau de replicació" -#: libraries/messages.inc.php:763 server_replication.php:74 +#: libraries/messages.inc.php:759 server_replication.php:74 #, php-format msgid "Master server changed succesfully to %s" msgstr "S'ha canviat correctament el servidor mestre a %s" -#: libraries/messages.inc.php:764 server_replication.php:182 +#: libraries/messages.inc.php:760 server_replication.php:182 msgid "This server is configured as master in a replication process." msgstr "" "Aquest servidor s'ha configurat com a mestre en un procés de replicació." -#: libraries/messages.inc.php:765 server_replication.php:322 +#: libraries/messages.inc.php:761 server_replication.php:322 msgid "Control slave:" msgstr "Control esclau:" -#: libraries/messages.inc.php:766 server_replication.php:65 +#: libraries/messages.inc.php:762 server_replication.php:65 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" "Incapaços de llegir la posició del registre mestre. Posible problema de " "permissos en el mestre." -#: libraries/messages.inc.php:767 server_replication.php:58 +#: libraries/messages.inc.php:763 server_replication.php:58 #, php-format msgid "Unable to connect to master %s." msgstr "Incapaços de connectar amb el mestre %s." -#: libraries/messages.inc.php:768 server_replication.php:221 +#: libraries/messages.inc.php:764 server_replication.php:221 msgid "Replicate all databases; Ignore:" msgstr "Replica totes les bases de dades; Ignora:" -#: libraries/messages.inc.php:769 server_replication.php:222 +#: libraries/messages.inc.php:765 server_replication.php:222 msgid "Ignore all databases; Replicate:" msgstr "Ignora totes les bases de dades; Replica:" -#: libraries/messages.inc.php:770 server_replication.php:218 +#: libraries/messages.inc.php:766 server_replication.php:218 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -4973,16 +4973,16 @@ msgstr "" "optar per ignorar totes les bases de dades per defecte i permetre que només " "determinades bases de dades es repliquin. Si us plau, selecciona l'opció:" -#: libraries/messages.inc.php:771 server_replication.php:217 +#: libraries/messages.inc.php:767 server_replication.php:217 msgid "Master configuration" msgstr "Configuració del mestre" -#: libraries/messages.inc.php:772 server_replication.php:181 +#: libraries/messages.inc.php:768 server_replication.php:181 #: server_replication.php:209 msgid "Master replication" msgstr "Replicació del mestre" -#: libraries/messages.inc.php:774 server_replication.php:230 +#: libraries/messages.inc.php:770 server_replication.php:230 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " @@ -4992,11 +4992,11 @@ msgstr "" "de veure un missatge que t'informi que aquest servidor està " "configurat com a mestre" -#: libraries/messages.inc.php:775 server_replication.php:225 +#: libraries/messages.inc.php:771 server_replication.php:225 msgid "Please select databases:" msgstr "Selecciona bases de dades:" -#: libraries/messages.inc.php:776 server_replication.php:210 +#: libraries/messages.inc.php:772 server_replication.php:210 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -5005,7 +5005,7 @@ msgstr "" "Aquest servidor no està configurat com a mestre en un procés de replicació. " "Vols configurar-lo?" -#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:188 +#: libraries/messages.inc.php:773 libraries/replication_gui.lib.php:188 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." @@ -5013,49 +5013,49 @@ msgstr "" "Només els servidors iniciats amb l'opció --report-host=nom_de_servidor es " "mostren en aquesta llista." -#: libraries/messages.inc.php:778 server_replication.php:187 +#: libraries/messages.inc.php:774 server_replication.php:187 msgid "Show connected slaves" msgstr "Mostra els esclaus connectats" -#: libraries/messages.inc.php:779 libraries/messages.inc.php:885 +#: libraries/messages.inc.php:775 libraries/messages.inc.php:881 #: server_replication.php:184 server_status.php:281 msgid "Show master status" msgstr "Mostra l'estat del mestre (Show master status)" -#: libraries/messages.inc.php:780 server_replication.php:334 +#: libraries/messages.inc.php:776 server_replication.php:334 msgid "Skipping error(s) might lead into unsynchronized master and slave!" msgstr "" "Saltar error(s) podria donar lloc a falta de sincronització entre mestre i " "esclau!" -#: libraries/messages.inc.php:781 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:51 #: server_replication.php:347 msgid "Change or reconfigure master server" msgstr "Canvia o reconfigura el servidor mestre" -#: libraries/messages.inc.php:782 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:778 libraries/replication_gui.lib.php:51 msgid "Slave configuration" msgstr "Configració de l'esclau" -#: libraries/messages.inc.php:783 server_replication.php:305 +#: libraries/messages.inc.php:779 server_replication.php:305 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "Servidor configurat com a esclau en un procés de replicació. Vols?:" -#: libraries/messages.inc.php:784 server_replication.php:332 +#: libraries/messages.inc.php:780 server_replication.php:332 msgid "Error management:" msgstr "Gestió d'errors:" -#: libraries/messages.inc.php:785 server_replication.php:328 +#: libraries/messages.inc.php:781 server_replication.php:328 #, php-format msgid "IO Thread %s only" msgstr "Només fils IO %s" -#: libraries/messages.inc.php:786 server_replication.php:296 +#: libraries/messages.inc.php:782 server_replication.php:296 msgid "Slave IO Thread not running!" msgstr "El fil IO de l'esclau IO no va!" -#: libraries/messages.inc.php:787 server_replication.php:355 +#: libraries/messages.inc.php:783 server_replication.php:355 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -5064,40 +5064,40 @@ msgstr "" "Aquest servidor no està configurat com a esclau en un procés de replicació. " "Vols configurar-lo?" -#: libraries/messages.inc.php:788 server_replication.php:326 +#: libraries/messages.inc.php:784 server_replication.php:326 msgid "Reset slave" msgstr "Reinicia l'esclau" -#: libraries/messages.inc.php:789 server_replication.php:308 +#: libraries/messages.inc.php:785 server_replication.php:308 msgid "See slave status table" msgstr "Veure la taula d'estat de l'esclau" -#: libraries/messages.inc.php:790 server_replication.php:336 +#: libraries/messages.inc.php:786 server_replication.php:336 msgid "Skip current error" msgstr "Salta l'error actual" -#: libraries/messages.inc.php:791 server_replication.php:340 +#: libraries/messages.inc.php:787 server_replication.php:340 msgid "errors." msgstr "errors." -#: libraries/messages.inc.php:792 server_replication.php:337 +#: libraries/messages.inc.php:788 server_replication.php:337 msgid "Skip next" msgstr "Salta el següent" -#: libraries/messages.inc.php:793 server_replication.php:248 +#: libraries/messages.inc.php:789 server_replication.php:248 msgid "Slave replication" msgstr "Replicació de l'esclau" -#: libraries/messages.inc.php:794 server_replication.php:293 +#: libraries/messages.inc.php:790 server_replication.php:293 msgid "Slave SQL Thread not running!" msgstr "El fil SQL de l'esclau SQL no va!" -#: libraries/messages.inc.php:795 server_replication.php:327 +#: libraries/messages.inc.php:791 server_replication.php:327 #, php-format msgid "SQL Thread %s only" msgstr "Només fils SQL %s" -#: libraries/messages.inc.php:796 +#: libraries/messages.inc.php:792 #, php-format msgid "" "This MySQL server works as %s in replication process. For further " @@ -5108,159 +5108,159 @@ msgstr "" "a més informació sobre l'estat de replicació al servidor, mira la secció " "replicació." -#: libraries/messages.inc.php:797 +#: libraries/messages.inc.php:793 msgid "Master status" msgstr "Estat del mestre" -#: libraries/messages.inc.php:798 server_status.php:721 +#: libraries/messages.inc.php:794 server_status.php:721 msgid "Replication status" msgstr "Estat de la replicació" -#: libraries/messages.inc.php:799 +#: libraries/messages.inc.php:795 msgid "Slave status" msgstr "Estat de l'esclau" -#: libraries/messages.inc.php:800 server_replication.php:311 +#: libraries/messages.inc.php:796 server_replication.php:311 msgid "Synchronize databases with master" msgstr "Sincronitza les bases de dades amb el mestre" -#: libraries/messages.inc.php:801 server_replication.php:71 +#: libraries/messages.inc.php:797 server_replication.php:71 msgid "Unable to change master" msgstr "No es pot canviar el mestre" -#: libraries/messages.inc.php:802 server_replication.php:51 +#: libraries/messages.inc.php:798 server_replication.php:51 msgid "Unknown error" msgstr "Error desconegut" -#: libraries/messages.inc.php:803 main.php:163 pdf_pages.php:344 +#: libraries/messages.inc.php:799 main.php:163 pdf_pages.php:344 #: setup/lib/FormDisplay.tpl.php:216 tbl_change.php:1175 msgid "Reset" msgstr "Reinicia" -#: libraries/messages.inc.php:804 server_privileges.php:591 +#: libraries/messages.inc.php:800 server_privileges.php:591 msgid "Resource limits" msgstr "Limit de recursos" -#: libraries/messages.inc.php:805 tbl_change.php:1209 +#: libraries/messages.inc.php:801 tbl_change.php:1209 #, php-format msgid "Restart insertion with %s rows" msgstr "Reinicia l'inserció amb %s files" -#: libraries/messages.inc.php:807 server_privileges.php:1578 +#: libraries/messages.inc.php:803 server_privileges.php:1578 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Treu tots els permisos actius dels usuaris i els esborra després." -#: libraries/messages.inc.php:808 server_privileges.php:1176 +#: libraries/messages.inc.php:804 server_privileges.php:1176 #, php-format msgid "You have revoked the privileges for %s" msgstr "Has tret els permisos per %s" -#: libraries/messages.inc.php:809 server_privileges.php:1333 +#: libraries/messages.inc.php:805 server_privileges.php:1333 msgid "Revoke" msgstr "Treu" -#: libraries/messages.inc.php:810 libraries/mysql_charsets.lib.php:280 +#: libraries/messages.inc.php:806 libraries/mysql_charsets.lib.php:280 msgid "Romanian" msgstr "Romanés" -#: libraries/messages.inc.php:813 tbl_printview.php:404 tbl_structure.php:786 +#: libraries/messages.inc.php:809 tbl_printview.php:404 tbl_structure.php:786 msgid "Row length" msgstr "Tamany de fila" -#: libraries/messages.inc.php:815 tbl_printview.php:414 tbl_structure.php:794 +#: libraries/messages.inc.php:811 tbl_printview.php:414 tbl_structure.php:794 msgid " Row size " msgstr "Mida de fila " -#: libraries/messages.inc.php:821 tbl_printview.php:366 tbl_structure.php:726 +#: libraries/messages.inc.php:817 tbl_printview.php:366 tbl_structure.php:726 msgid "Row Statistics" msgstr "Estadística de files" -#: libraries/messages.inc.php:822 +#: libraries/messages.inc.php:818 #, php-format msgid "running on %s" msgstr "funcionant a %s" -#: libraries/messages.inc.php:824 libraries/sql_query_form.lib.php:223 +#: libraries/messages.inc.php:820 libraries/sql_query_form.lib.php:223 #, php-format msgid "Run SQL query/queries on server %s" msgstr "Executar consulta/es SQL al servidor %s" -#: libraries/messages.inc.php:825 libraries/sql_query_form.lib.php:240 +#: libraries/messages.inc.php:821 libraries/sql_query_form.lib.php:240 #: libraries/sql_query_form.lib.php:265 #, php-format msgid "Run SQL query/queries on database %s" msgstr "Executa consulta/s SQL a la Base de Dades %s" -#: libraries/messages.inc.php:826 libraries/mysql_charsets.lib.php:337 +#: libraries/messages.inc.php:822 libraries/mysql_charsets.lib.php:337 msgid "Russian" msgstr "Rus" -#: libraries/messages.inc.php:829 pmd_general.php:68 +#: libraries/messages.inc.php:825 pmd_general.php:68 msgid "Save position" msgstr "Desa la posició" -#: libraries/messages.inc.php:830 libraries/tbl_properties.inc.php:776 +#: libraries/messages.inc.php:826 libraries/tbl_properties.inc.php:776 #: pdf_pages.php:484 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:214 setup/lib/FormDisplay.tpl.php:215 #: tbl_change.php:1126 tbl_indexes.php:248 tbl_relation.php:566 msgid "Save" msgstr "Desa" -#: libraries/messages.inc.php:831 +#: libraries/messages.inc.php:827 msgid "The scale factor is too small to fit the schema on one page" msgstr "El factor de l'escala és massa petit per posar l'esquema en una pàgina" -#: libraries/messages.inc.php:843 main.php:298 +#: libraries/messages.inc.php:839 main.php:298 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "L'arxiu de configuració necessita ara una frase de pas secreta " "(blowfish_secret)." -#: libraries/messages.inc.php:844 navigation.php:353 navigation.php:516 +#: libraries/messages.inc.php:840 navigation.php:353 navigation.php:516 msgid "Please select a database" msgstr "Tria una Base de Dades" -#: libraries/messages.inc.php:846 server_binlog.php:120 +#: libraries/messages.inc.php:842 server_binlog.php:120 msgid "Select binary log to view" msgstr "Tria el registre binari per veure" -#: libraries/messages.inc.php:847 tbl_select.php:270 +#: libraries/messages.inc.php:843 tbl_select.php:270 msgid "Select fields (at least one):" msgstr "Tria els camps (un com a mínim):" -#: libraries/messages.inc.php:851 pdf_pages.php:320 +#: libraries/messages.inc.php:847 pdf_pages.php:320 msgid "Select Tables" msgstr "Tria Taules" -#: libraries/messages.inc.php:853 server_status.php:404 +#: libraries/messages.inc.php:849 server_status.php:404 msgid "Sent" msgstr "Enviat" -#: libraries/messages.inc.php:857 libraries/select_server.lib.php:45 +#: libraries/messages.inc.php:853 libraries/select_server.lib.php:45 #: setup/frames/index.inc.php:97 setup/lib/messages.inc.php:115 msgid "Servers" msgstr "Servidors" -#: libraries/messages.inc.php:858 server_status.php:255 +#: libraries/messages.inc.php:854 server_status.php:255 msgid "Delayed inserts" msgstr "Insercions demorades" -#: libraries/messages.inc.php:859 server_status.php:46 +#: libraries/messages.inc.php:855 server_status.php:46 msgid "Runtime Information" msgstr "Informació d'execució" -#: libraries/messages.inc.php:860 server_status.php:350 +#: libraries/messages.inc.php:856 server_status.php:350 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Aquest servidor MySQL és en marxa durant %s. Es va iniciar en %s." -#: libraries/messages.inc.php:861 libraries/server_links.inc.php:53 +#: libraries/messages.inc.php:857 libraries/server_links.inc.php:53 #: server_engines.php:112 server_engines.php:116 server_status.php:304 #: test/theme.php:105 msgid "Variables" msgstr "Variables" -#: libraries/messages.inc.php:862 server_status.php:383 +#: libraries/messages.inc.php:858 server_status.php:383 msgid "" "Server traffic: These tables show the network traffic statistics of " "this MySQL server since its startup." @@ -5268,11 +5268,11 @@ msgstr "" "Ocupació de servidor: Aquestes taules mostren la ocupació de la xarxa " "d'aquest servidor MySQL des de l'últim inici." -#: libraries/messages.inc.php:863 server_variables.php:35 +#: libraries/messages.inc.php:859 server_variables.php:35 msgid "Server variables and settings" msgstr "Variables i configuracions del servidor" -#: libraries/messages.inc.php:865 main.php:290 +#: libraries/messages.inc.php:861 main.php:290 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -5284,7 +5284,7 @@ msgstr "" "caducitat de galetes (cookies) configurat a phpMyAdmin, degut a aixó, la " "vostra conenexió caducarà abans del establert a phpMyAdmin." -#: libraries/messages.inc.php:866 +#: libraries/messages.inc.php:862 msgid "" "Cannot start session without errors, please check errors given in your PHP " "and/or webserver log file and configure your PHP installation properly." @@ -5293,11 +5293,11 @@ msgstr "" "teu registre de PHP i/o servidor web i configura el teu entorn de PHP " "acuradament." -#: libraries/messages.inc.php:867 server_variables.php:55 +#: libraries/messages.inc.php:863 server_variables.php:55 msgid "Session value" msgstr "Valor de sessió" -#: libraries/messages.inc.php:868 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:864 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 " @@ -5309,45 +5309,45 @@ msgstr "" "(\"\\\") o la cometa simple (\"'\") abans d'aquests valors, escriu barres " "invertides (per exemple '\\\\xyz' o 'a\\'b')." -#: libraries/messages.inc.php:876 server_binlog.php:192 server_binlog.php:195 +#: libraries/messages.inc.php:872 server_binlog.php:192 server_binlog.php:195 #: server_processlist.php:49 server_processlist.php:51 msgid "Show Full Queries" msgstr "Mostra Consultes completes" -#: libraries/messages.inc.php:878 pmd_general.php:64 +#: libraries/messages.inc.php:874 pmd_general.php:64 msgid "Show/Hide left menu" msgstr "Menú esquerre Mostra/Amaga" -#: libraries/messages.inc.php:880 sql.php:513 +#: libraries/messages.inc.php:876 sql.php:513 msgid "Showing as PHP code" msgstr "Mostrant com a codi PHP" -#: libraries/messages.inc.php:882 sql.php:516 tbl_replace.php:360 +#: libraries/messages.inc.php:878 sql.php:516 tbl_replace.php:360 msgid "Showing SQL query" msgstr "Mostrant consulta SQL" -#: libraries/messages.inc.php:883 tbl_change.php:1132 +#: libraries/messages.inc.php:879 tbl_change.php:1132 #, fuzzy msgid "Show insert query" msgstr "Mostrant consulta SQL" -#: libraries/messages.inc.php:886 server_status.php:273 +#: libraries/messages.inc.php:882 server_status.php:273 msgid "Show open tables" msgstr "Mostra taules obertes" -#: libraries/messages.inc.php:887 main.php:219 +#: libraries/messages.inc.php:883 main.php:219 msgid "Show PHP information" msgstr "Mostra informació de PHP" -#: libraries/messages.inc.php:889 server_status.php:278 +#: libraries/messages.inc.php:885 server_status.php:278 msgid "Show slave hosts" msgstr "Mostra servidors esclaus" -#: libraries/messages.inc.php:890 server_status.php:284 +#: libraries/messages.inc.php:886 server_status.php:284 msgid "Show slave status" msgstr "Mostra l'estat d'esclaus" -#: libraries/messages.inc.php:891 +#: libraries/messages.inc.php:887 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -5357,12 +5357,12 @@ msgstr "" "però que excedeixen el valor de binlog_cache_size i usen un arxiu temporal " "per desar elements de la transacció." -#: libraries/messages.inc.php:892 +#: libraries/messages.inc.php:888 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "El nombre de transaccions que han fet servir el registre binari temporal." -#: libraries/messages.inc.php:893 +#: libraries/messages.inc.php:889 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -5374,11 +5374,11 @@ msgstr "" "incrementar el valor de tmp_table_size per fer que les taules temporals " "treballin en memòria en lloc de treballar en disc." -#: libraries/messages.inc.php:894 +#: libraries/messages.inc.php:890 msgid "How many temporary files mysqld has created." msgstr "Arxius temporals creats per mysqld." -#: libraries/messages.inc.php:895 +#: libraries/messages.inc.php:891 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -5386,7 +5386,7 @@ msgstr "" "El nombre de taules temporals creades en memòria per el servidor mentre " "executa instruccions." -#: libraries/messages.inc.php:896 +#: libraries/messages.inc.php:892 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -5394,7 +5394,7 @@ msgstr "" "El nombre de files escrites amb INSERT DELAYED en les que s'ha detectat " "quelcom error (possile clau duplicada)." -#: libraries/messages.inc.php:897 +#: libraries/messages.inc.php:893 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -5402,23 +5402,23 @@ msgstr "" "El nombre de gestors de fils de INSERT DELAYED en ús. Cada taula diferent ón " "s'usa INSERT DELAYED té el seu propi fil." -#: libraries/messages.inc.php:898 +#: libraries/messages.inc.php:894 msgid "The number of INSERT DELAYED rows written." msgstr "El nombre de files escrites amb INSERT DELAYED." -#: libraries/messages.inc.php:899 +#: libraries/messages.inc.php:895 msgid "The number of executed FLUSH statements." msgstr "El nombre d'instruccions FLUSH executades." -#: libraries/messages.inc.php:900 +#: libraries/messages.inc.php:896 msgid "The number of internal COMMIT statements." msgstr "El nombre d'instruccions COMMIT internes." -#: libraries/messages.inc.php:901 +#: libraries/messages.inc.php:897 msgid "The number of times a row was deleted from a table." msgstr "El nombre de vegades que s'ha esborrat una fila d'una taula." -#: libraries/messages.inc.php:902 +#: libraries/messages.inc.php:898 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -5428,7 +5428,7 @@ msgstr "" "coneix quelcom taula amb el nom especificat. Aixó s'anomena descobriment. " "Handler_discover indica el nombre de taules descobertes." -#: libraries/messages.inc.php:903 +#: libraries/messages.inc.php:899 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -5438,7 +5438,7 @@ msgstr "" "és alt, suggereix que el servidor està fent moltes cerques d'índex complet; " "per exemple, SELECT col1 FROM taula, assumint que col1 és indexat." -#: libraries/messages.inc.php:904 +#: libraries/messages.inc.php:900 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -5447,7 +5447,7 @@ msgstr "" "és una bona indicació de que les consultes i taules estàn indexades " "acuradament." -#: libraries/messages.inc.php:905 +#: libraries/messages.inc.php:901 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -5457,7 +5457,7 @@ msgstr "" "Aixó s'incrementa si s'està consultant una columna d'index amb limitació de " "rang o si s'està fent una cerca d'index." -#: libraries/messages.inc.php:906 +#: libraries/messages.inc.php:902 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -5466,7 +5466,7 @@ msgstr "" "Aquest mètode de lectura s'utilitza principalment per optimizar ORDER BY ... " "DESC." -#: libraries/messages.inc.php:907 +#: libraries/messages.inc.php:903 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -5478,7 +5478,7 @@ msgstr "" "Probablement tens moltes consultes que fan que MySQL cerqui les taules " "senceres o bé hi ha joins que no fan servir les claus acuradament." -#: libraries/messages.inc.php:908 +#: libraries/messages.inc.php:904 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -5490,37 +5490,37 @@ msgstr "" "taules no estàn indexades acuradament o bé les consultes no estàn fetes per " "aprofitar les avantatges dels índexos definits." -#: libraries/messages.inc.php:909 +#: libraries/messages.inc.php:905 msgid "The number of internal ROLLBACK statements." msgstr "El nombre d'instruccions ROLLBACK." -#: libraries/messages.inc.php:910 +#: libraries/messages.inc.php:906 msgid "The number of requests to update a row in a table." msgstr "El nombre de peticions per a actualitzar una fila en una taula." -#: libraries/messages.inc.php:911 +#: libraries/messages.inc.php:907 msgid "The number of requests to insert a row in a table." msgstr "El nombre de peticions per a insertar una fila en una taula." -#: libraries/messages.inc.php:912 +#: libraries/messages.inc.php:908 msgid "The number of pages containing data (dirty or clean)." msgstr "El nombre de pàgines contenint dades (brutes o netes)." -#: libraries/messages.inc.php:913 +#: libraries/messages.inc.php:909 msgid "The number of pages currently dirty." msgstr "El nombre de pàgines actualment brutes." -#: libraries/messages.inc.php:914 +#: libraries/messages.inc.php:910 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" "El nombre de pàgines a la memòria cau que s'han demanat per ser " "actualitzades." -#: libraries/messages.inc.php:915 +#: libraries/messages.inc.php:911 msgid "The number of free pages." msgstr "El nombre de pàgines lliures." -#: libraries/messages.inc.php:916 +#: libraries/messages.inc.php:912 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -5530,7 +5530,7 @@ msgstr "" "pàgines s'estàn llegint o escrivint actualment o no es poden actualitzar o " "esborrar per qualsevol altra raó." -#: libraries/messages.inc.php:917 +#: libraries/messages.inc.php:913 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -5542,11 +5542,11 @@ msgstr "" "Aquest valor es pot calcular com Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: libraries/messages.inc.php:918 +#: libraries/messages.inc.php:914 msgid "Total size of buffer pool, in pages." msgstr "Tamany total de la memòria cau, en pàgines." -#: libraries/messages.inc.php:919 +#: libraries/messages.inc.php:915 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -5554,7 +5554,7 @@ msgstr "" "El nombre de lectures aleatòries d'InnoDB iniciades. Aixó passa quan una " "consulta cerca en una gran part de una taula però en ordre aleatori." -#: libraries/messages.inc.php:920 +#: libraries/messages.inc.php:916 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -5562,11 +5562,11 @@ msgstr "" "El nombre de lectures secuencials d'InnoDB iniciades. Aixó passa quan InnoDB " "fa una cerca secuencial a la taula sencera." -#: libraries/messages.inc.php:921 +#: libraries/messages.inc.php:917 msgid "The number of logical read requests InnoDB has done." msgstr "El nombre de peticions de lectures lògiques que InnoDB ha fet." -#: libraries/messages.inc.php:922 +#: libraries/messages.inc.php:918 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -5574,7 +5574,7 @@ msgstr "" "El nombre de peticions de lectures lògiques que InnoDB no pot satisfer de la " "memòria cau i ha de fer lectures de pàgines individuals." -#: libraries/messages.inc.php:923 +#: libraries/messages.inc.php:919 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -5588,55 +5588,55 @@ msgstr "" "comptador mostra instàncies d'aquestes esperes. Si el tamany de la memòria " "cau és adequat, aquest valor sól ser petit." -#: libraries/messages.inc.php:924 +#: libraries/messages.inc.php:920 msgid "The number writes done to the InnoDB buffer pool." msgstr "El nombre d'escriptures fetes a la memòria cau d'InnoDB." -#: libraries/messages.inc.php:925 +#: libraries/messages.inc.php:921 msgid "The number of fsync() operations so far." msgstr "El nombre d'operacions fsync() aproximades." -#: libraries/messages.inc.php:926 +#: libraries/messages.inc.php:922 msgid "The current number of pending fsync() operations." msgstr "El nombre actual d'operacions fsync() pendents." -#: libraries/messages.inc.php:927 +#: libraries/messages.inc.php:923 msgid "The current number of pending reads." msgstr "El nombre actual de lectures pendents." -#: libraries/messages.inc.php:928 +#: libraries/messages.inc.php:924 msgid "The current number of pending writes." msgstr "El nombre actual d'escritures pendents." -#: libraries/messages.inc.php:929 +#: libraries/messages.inc.php:925 msgid "The amount of data read so far, in bytes." msgstr "La quantitat aproximada de dades llegides, en bytes." -#: libraries/messages.inc.php:930 +#: libraries/messages.inc.php:926 msgid "The total number of data reads." msgstr "El nombre total de dades llegides." -#: libraries/messages.inc.php:931 +#: libraries/messages.inc.php:927 msgid "The total number of data writes." msgstr "El nombre total de dades escrites." -#: libraries/messages.inc.php:932 +#: libraries/messages.inc.php:928 msgid "The amount of data written so far, in bytes." msgstr "La quantitat aproximada de dades escrites, en bytes." -#: libraries/messages.inc.php:933 +#: libraries/messages.inc.php:929 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "El nombre de dobles escriptures realitzades i el nombre de pàgines escrites " "per a aquest propòsit." -#: libraries/messages.inc.php:934 +#: libraries/messages.inc.php:930 msgid "The number of doublewrite operations that have been performed." msgstr "" "El nombre de dobles escriptures realitzades i el nombre de pàgines escrites " "per a aquest propòsit." -#: libraries/messages.inc.php:935 +#: libraries/messages.inc.php:931 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -5644,35 +5644,35 @@ msgstr "" "El nombre d'esperes fetes degut al petit tamany de la memòria intermèdia del " "registre i a esperar a que s'actualitzés abans de continuar." -#: libraries/messages.inc.php:936 +#: libraries/messages.inc.php:932 msgid "The number of log write requests." msgstr "El nombre de peticions d'escriptura al registre." -#: libraries/messages.inc.php:937 +#: libraries/messages.inc.php:933 msgid "The number of physical writes to the log file." msgstr "El nombre d'escriptures físiques a l'arxiu de registre." -#: libraries/messages.inc.php:938 +#: libraries/messages.inc.php:934 msgid "The number of fsync() writes done to the log file." msgstr "El nombre d'escriptures fsync fetes a l'arxiu de registre." -#: libraries/messages.inc.php:939 +#: libraries/messages.inc.php:935 msgid "The number of pending log file fsyncs." msgstr "El nombre d'operacions fsync pendents a l'arxiu de registre." -#: libraries/messages.inc.php:940 +#: libraries/messages.inc.php:936 msgid "Pending log file writes." msgstr "Escriptures pendents a l'arxiu de registre." -#: libraries/messages.inc.php:941 +#: libraries/messages.inc.php:937 msgid "The number of bytes written to the log file." msgstr "El nombre de bytes escrits a l'arxiu de registre." -#: libraries/messages.inc.php:942 +#: libraries/messages.inc.php:938 msgid "The number of pages created." msgstr "El nombre de pàgines creades." -#: libraries/messages.inc.php:943 +#: libraries/messages.inc.php:939 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -5681,51 +5681,51 @@ msgstr "" "comptabilitzen en pàgines; el tamany de pàgina permet convertir-lo fàcilment " "a bytes." -#: libraries/messages.inc.php:944 +#: libraries/messages.inc.php:940 msgid "The number of pages read." msgstr "El nombre de pàgines llegides." -#: libraries/messages.inc.php:945 +#: libraries/messages.inc.php:941 msgid "The number of pages written." msgstr "El nombre de pàgines escrites." -#: libraries/messages.inc.php:946 +#: libraries/messages.inc.php:942 msgid "The number of row locks currently being waited for." msgstr "El nombre de bloquejos de files actualment en espera." -#: libraries/messages.inc.php:947 +#: libraries/messages.inc.php:943 msgid "The average time to acquire a row lock, in milliseconds." msgstr "El temps promig en fer un bloqueig de fila, en milisegons." -#: libraries/messages.inc.php:948 +#: libraries/messages.inc.php:944 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "El temps total emprat en fer bloquejos de files, en milisegons." -#: libraries/messages.inc.php:949 +#: libraries/messages.inc.php:945 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "El temps màxim en fer un bloqueig de fila, en milisegons." -#: libraries/messages.inc.php:950 +#: libraries/messages.inc.php:946 msgid "The number of times a row lock had to be waited for." msgstr "El nombre de vegades que un bloqueig de fila ha estat en espera." -#: libraries/messages.inc.php:951 +#: libraries/messages.inc.php:947 msgid "The number of rows deleted from InnoDB tables." msgstr "El nombre de files esborrades de taules InnoDB." -#: libraries/messages.inc.php:952 +#: libraries/messages.inc.php:948 msgid "The number of rows inserted in InnoDB tables." msgstr "El nombre de files afegides a taules InnoDB." -#: libraries/messages.inc.php:953 +#: libraries/messages.inc.php:949 msgid "The number of rows read from InnoDB tables." msgstr "El nombre de files llegides de taules InnoDB." -#: libraries/messages.inc.php:954 +#: libraries/messages.inc.php:950 msgid "The number of rows updated in InnoDB tables." msgstr "El nombre de files actualitzades en taules InnoDB." -#: libraries/messages.inc.php:955 +#: libraries/messages.inc.php:951 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -5734,7 +5734,7 @@ msgstr "" "però que encara no han estat actualitzades a disc. Es coneix com a " "Not_flushed_key_blocks." -#: libraries/messages.inc.php:956 +#: libraries/messages.inc.php:952 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -5742,7 +5742,7 @@ msgstr "" "El nombre de blocs no usats a la memòria cau de les claus. Aquest valor es " "pot fer servir per saber quànta memòria cau de les claus s'utilitza." -#: libraries/messages.inc.php:957 +#: libraries/messages.inc.php:953 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -5751,11 +5751,11 @@ msgstr "" "El nombre de blocs usats a la memòria cau de les claus. Aquest valor és la " "marca indicativa del màxim nombre de blocs usats mai a l'hora." -#: libraries/messages.inc.php:958 +#: libraries/messages.inc.php:954 msgid "The number of requests to read a key block from the cache." msgstr "El nombre de peticions de lectura d'un bloc de clau de la memòria cau." -#: libraries/messages.inc.php:959 +#: libraries/messages.inc.php:955 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -5765,16 +5765,16 @@ msgstr "" "gran, llavors el valor de key_buffer_size probablement és massa petit. El " "rati de la memòria cau es pot calcular com Key_reads/Key_read_requests." -#: libraries/messages.inc.php:960 +#: libraries/messages.inc.php:956 msgid "The number of requests to write a key block to the cache." msgstr "" "El nombre de peticions d'escriptura d'un bloc de clau a la memòria cau." -#: libraries/messages.inc.php:961 +#: libraries/messages.inc.php:957 msgid "The number of physical writes of a key block to disk." msgstr "El nombre d'escriptures físiques d'un bloc de clau a disc." -#: libraries/messages.inc.php:962 +#: libraries/messages.inc.php:958 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -5785,11 +5785,11 @@ msgstr "" "de consulta per a la mateixa consulta. El valor 0 vol dr que encara no s'ha " "compilat cap consulta." -#: libraries/messages.inc.php:963 +#: libraries/messages.inc.php:959 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "El nombre de files esperant a ser escrites en cues INSERT DELAYED." -#: libraries/messages.inc.php:964 +#: libraries/messages.inc.php:960 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -5797,36 +5797,36 @@ msgstr "" "El nombre de taules que han estat obertes. Si el nombre de taules obertes és " "gran, probablement el valor de memòria cau de taula és massa petit." -#: libraries/messages.inc.php:965 +#: libraries/messages.inc.php:961 msgid "The number of files that are open." msgstr "El nombre d'arxius que estàn oberts." -#: libraries/messages.inc.php:966 +#: libraries/messages.inc.php:962 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "El nombre de fluxes que estàn oberts (usats principalment per a registre)." -#: libraries/messages.inc.php:967 +#: libraries/messages.inc.php:963 msgid "The number of tables that are open." msgstr "El nombre de taules que estàn obertes." -#: libraries/messages.inc.php:968 +#: libraries/messages.inc.php:964 msgid "The number of free memory blocks in query cache." msgstr "El nombre de blocs de memòria lliures a la memòria cau de consultes." -#: libraries/messages.inc.php:969 +#: libraries/messages.inc.php:965 msgid "The amount of free memory for query cache." msgstr "La quantitat de memòria liure per a memòria cau de consultes." -#: libraries/messages.inc.php:970 +#: libraries/messages.inc.php:966 msgid "The number of cache hits." msgstr "El nombre d'encerts a memòria cau." -#: libraries/messages.inc.php:971 +#: libraries/messages.inc.php:967 msgid "The number of queries added to the cache." msgstr "El nombre de consultes afegides a la memòria cau." -#: libraries/messages.inc.php:972 +#: libraries/messages.inc.php:968 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -5839,7 +5839,7 @@ msgstr "" "l'estratègia menys recentment usada(least recently used - LRU) per decidir " "quines consultes treure de la memòria cau." -#: libraries/messages.inc.php:973 +#: libraries/messages.inc.php:969 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -5847,24 +5847,24 @@ msgstr "" "El nombre de consultes no enviades a la memòria cau (no enviables, o no " "enviades degut al paràmetre query_cache_type)." -#: libraries/messages.inc.php:974 +#: libraries/messages.inc.php:970 msgid "The number of queries registered in the cache." msgstr "El nombre de consultes registrades a la memòria cau." -#: libraries/messages.inc.php:975 +#: libraries/messages.inc.php:971 msgid "The total number of blocks in the query cache." msgstr "El nombre total de blocs a la memòria cau de consultes." -#: libraries/messages.inc.php:976 +#: libraries/messages.inc.php:972 msgctxt "$strShowStatusReset" msgid "Reset" msgstr "Reinicia" -#: libraries/messages.inc.php:977 +#: libraries/messages.inc.php:973 msgid "The status of failsafe replication (not yet implemented)." msgstr "L'estat de la replicació a prova d'errades (no implementat encara)." -#: libraries/messages.inc.php:978 +#: libraries/messages.inc.php:974 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -5872,12 +5872,12 @@ msgstr "" "El nombre de joins que no usen indexs. Si aquest valor no és 0, s'haurien de " "comprovar acuradament els indexs de les taules." -#: libraries/messages.inc.php:979 +#: libraries/messages.inc.php:975 msgid "The number of joins that used a range search on a reference table." msgstr "" "El nombre de joins que han usat un rang de cerca en una taula de referència." -#: libraries/messages.inc.php:980 +#: libraries/messages.inc.php:976 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -5886,7 +5886,7 @@ msgstr "" "cada fila. (Si aquiest valor no és 0, s'haurien de comprovar acuradament els " "indexs de les taules.)" -#: libraries/messages.inc.php:981 +#: libraries/messages.inc.php:977 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -5894,16 +5894,16 @@ msgstr "" "El nombre de joins que han usat rangs a la primera taula. (Normalment no és " "crític si el valor no és molt gran.)" -#: libraries/messages.inc.php:982 +#: libraries/messages.inc.php:978 msgid "The number of joins that did a full scan of the first table." msgstr "El nombre de joins que han fet una cerca a la primera taula sencera." -#: libraries/messages.inc.php:983 +#: libraries/messages.inc.php:979 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "El nombre de taules temporals obertes actualment pel fil esclau de SQL." -#: libraries/messages.inc.php:984 +#: libraries/messages.inc.php:980 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -5911,25 +5911,25 @@ msgstr "" "Nombre total (des de l'arrencada) de vegades que el fil esclau de replicació " "de SQL ha recuperat transaccions." -#: libraries/messages.inc.php:985 +#: libraries/messages.inc.php:981 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Aixó és ACTIU (ON) si aquest servidor és un esclau que està connectat a un " "mestre." -#: libraries/messages.inc.php:986 +#: libraries/messages.inc.php:982 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" "El nombre de fils que han tardat més que slow_launch_time segons a crear." -#: libraries/messages.inc.php:987 +#: libraries/messages.inc.php:983 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "El nombre de consultes que han tardat més que long_query_time segons." -#: libraries/messages.inc.php:988 +#: libraries/messages.inc.php:984 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -5939,23 +5939,23 @@ msgstr "" "hagut de fer. Si aquest valor és gran, s'hauria de considerar incrementar el " "valor de la variable de sistema sort_buffer_size." -#: libraries/messages.inc.php:989 +#: libraries/messages.inc.php:985 msgid "The number of sorts that were done with ranges." msgstr "El nombre de classificacions fetes amb rangs." -#: libraries/messages.inc.php:990 +#: libraries/messages.inc.php:986 msgid "The number of sorted rows." msgstr "El nombre de files classificades." -#: libraries/messages.inc.php:991 +#: libraries/messages.inc.php:987 msgid "The number of sorts that were done by scanning the table." msgstr "El nombre de classificacions fetes cercant la taula." -#: libraries/messages.inc.php:992 +#: libraries/messages.inc.php:988 msgid "The number of times that a table lock was acquired immediately." msgstr "El nombre de vegades que un bloqueig de taula s'ha fet immediatament." -#: libraries/messages.inc.php:993 +#: libraries/messages.inc.php:989 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -5968,7 +5968,7 @@ msgstr "" "consultes, o també dividir la taula o taules en vàries o bé utilitzar la " "replicació." -#: libraries/messages.inc.php:994 +#: libraries/messages.inc.php:990 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -5978,11 +5978,11 @@ msgstr "" "comptar com Threads_created/Connections. Si aquest valor és vermell s'hauria " "d'augmentar el valor de thread_cache_size." -#: libraries/messages.inc.php:995 +#: libraries/messages.inc.php:991 msgid "The number of currently open connections." msgstr "El nombre de connexions obertes simultàniament." -#: libraries/messages.inc.php:996 +#: libraries/messages.inc.php:992 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -5993,28 +5993,28 @@ msgstr "" "gran, pots voler augmentar el valor de thread_cache_size. (Normalment això " "no dóna una millora de rendiment notable si es té una bona aplicació de fil.)" -#: libraries/messages.inc.php:997 +#: libraries/messages.inc.php:993 msgid "The number of threads that are not sleeping." msgstr "El nombre de fils que no estàn dormint." -#: libraries/messages.inc.php:999 tbl_printview.php:75 +#: libraries/messages.inc.php:995 tbl_printview.php:75 msgid "Show tables" msgstr "Mostra taules" -#: libraries/messages.inc.php:1000 libraries/sql_query_form.lib.php:396 +#: libraries/messages.inc.php:996 libraries/sql_query_form.lib.php:396 msgid " Show this query here again " msgstr " Mostra aquesta consulta de nou " -#: libraries/messages.inc.php:1001 libraries/mysql_charsets.lib.php:217 +#: libraries/messages.inc.php:997 libraries/mysql_charsets.lib.php:217 #: libraries/mysql_charsets.lib.php:342 msgid "Simplified Chinese" msgstr "Xinés Simplificat" -#: libraries/messages.inc.php:1002 tbl_operations.php:258 +#: libraries/messages.inc.php:998 tbl_operations.php:258 msgid "(singly)" msgstr "(només)" -#: libraries/messages.inc.php:1005 libraries/replication_gui.lib.php:52 +#: libraries/messages.inc.php:1001 libraries/replication_gui.lib.php:52 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" @@ -6022,47 +6022,47 @@ msgstr "" "Assegura't que tens un identificador únic de servidor en el teu arxiu de " "configuració (my.cnf). Si no, afegeix la línia següent a la secció [mysqld]:" -#: libraries/messages.inc.php:1006 libraries/mysql_charsets.lib.php:283 +#: libraries/messages.inc.php:1002 libraries/mysql_charsets.lib.php:283 msgid "Slovak" msgstr "Eslovac" -#: libraries/messages.inc.php:1007 libraries/mysql_charsets.lib.php:286 +#: libraries/messages.inc.php:1003 libraries/mysql_charsets.lib.php:286 msgid "Slovenian" msgstr "Eslové" -#: libraries/messages.inc.php:1008 pmd_general.php:95 +#: libraries/messages.inc.php:1004 pmd_general.php:95 msgid "Small/Big All" msgstr "Tot Petit/Gran" -#: libraries/messages.inc.php:1009 pmd_general.php:91 +#: libraries/messages.inc.php:1005 pmd_general.php:91 msgid "Snap to grid" msgstr "Alinia a la graella" -#: libraries/messages.inc.php:1011 server_synchronize.php:1167 +#: libraries/messages.inc.php:1007 server_synchronize.php:1167 msgid "Socket" msgstr "Sòcol" -#: libraries/messages.inc.php:1013 server_status.php:259 +#: libraries/messages.inc.php:1009 server_status.php:259 msgid "Sorting" msgstr "Classificant" -#: libraries/messages.inc.php:1015 tbl_printview.php:310 tbl_structure.php:657 +#: libraries/messages.inc.php:1011 tbl_printview.php:310 tbl_structure.php:657 msgid "Space usage" msgstr "Utilització d'espai" -#: libraries/messages.inc.php:1016 libraries/mysql_charsets.lib.php:289 +#: libraries/messages.inc.php:1012 libraries/mysql_charsets.lib.php:289 msgid "Spanish" msgstr "Espanyol" -#: libraries/messages.inc.php:1019 +#: libraries/messages.inc.php:1015 msgid "Export type" msgstr "Tipus d' Exportació" -#: libraries/messages.inc.php:1020 +#: libraries/messages.inc.php:1016 msgid "Export time in UTC" msgstr "" -#: libraries/messages.inc.php:1021 libraries/sqlparser.lib.php:173 +#: libraries/messages.inc.php:1017 libraries/sqlparser.lib.php:173 msgid "" "There is a chance that you may have found a bug in the SQL parser. Please " "examine your query closely, and check that the quotes are correct and not " @@ -6085,7 +6085,7 @@ msgstr "" "la part de l'SQL que produeix l'errada, i envieu un informe d'error amb la " "cadena de dades de la secció de TALL indicada avall:" -#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:137 +#: libraries/messages.inc.php:1018 libraries/sqlparser.lib.php:137 msgid "" "There seems to be an error in your SQL query. The MySQL server error output " "below, if there is any, may also help you in diagnosing the problem" @@ -6093,32 +6093,32 @@ msgstr "" "Sembla que hi ha un error a la consulta SQL. La sortida següent generada pel " "servidor MySQL, si n'hi ha, pot ajudar-vos a diagnosticar el problema" -#: libraries/messages.inc.php:1026 libraries/sqlparser.lib.php:495 +#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:495 msgid "Invalid Identifer" msgstr "Identificador Incorrecte" -#: libraries/messages.inc.php:1027 libraries/sqlparser.lib.php:344 +#: libraries/messages.inc.php:1023 libraries/sqlparser.lib.php:344 msgid "Unclosed quote" msgstr "Cometa no tancada" -#: libraries/messages.inc.php:1028 libraries/sqlparser.lib.php:612 +#: libraries/messages.inc.php:1024 libraries/sqlparser.lib.php:612 msgid "Unknown Punctuation String" msgstr "Signe de puntuació desconegut" -#: libraries/messages.inc.php:1030 server_replication.php:327 +#: libraries/messages.inc.php:1026 server_replication.php:327 #: server_replication.php:328 msgid "Start" msgstr "Inicia" -#: libraries/messages.inc.php:1033 tbl_printview.php:369 tbl_structure.php:729 +#: libraries/messages.inc.php:1029 tbl_printview.php:369 tbl_structure.php:729 msgid "Statements" msgstr "Sentències" -#: libraries/messages.inc.php:1034 tbl_printview.php:380 tbl_structure.php:741 +#: libraries/messages.inc.php:1030 tbl_printview.php:380 tbl_structure.php:741 msgid "static" msgstr "estàtic" -#: libraries/messages.inc.php:1035 server_status.php:388 +#: libraries/messages.inc.php:1031 server_status.php:388 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -6126,42 +6126,42 @@ msgstr "" "En un servidor ocupat, els comptadors de bytes poden excedir el seu tamany, " "llavors les estadístiques donades pel servidor MySQL poden ser incorrectes." -#: libraries/messages.inc.php:1038 server_replication.php:327 +#: libraries/messages.inc.php:1034 server_replication.php:327 #: server_replication.php:328 msgid "Stop" msgstr "Para" -#: libraries/messages.inc.php:1039 server_engines.php:49 +#: libraries/messages.inc.php:1035 server_engines.php:49 msgid "Storage Engines" msgstr "Motors d'emmagatzematge" -#: libraries/messages.inc.php:1040 libraries/tbl_properties.inc.php:726 +#: libraries/messages.inc.php:1036 libraries/tbl_properties.inc.php:726 #: server_engines.php:58 tbl_operations.php:353 msgid "Storage Engine" msgstr "Motor d'emmagatzematge" -#: libraries/messages.inc.php:1042 +#: libraries/messages.inc.php:1038 msgid "CSV for MS Excel" msgstr "CSV per dades de MS Excel" -#: libraries/messages.inc.php:1044 tbl_structure.php:516 tbl_structure.php:518 +#: libraries/messages.inc.php:1040 tbl_structure.php:516 tbl_structure.php:518 msgid "Propose table structure" msgstr "Proposa una estructura de taula" -#: libraries/messages.inc.php:1045 server_synchronize.php:424 +#: libraries/messages.inc.php:1041 server_synchronize.php:424 #: server_synchronize.php:867 msgid "Structure Difference" msgstr "Diferència d'estructura" -#: libraries/messages.inc.php:1049 server_synchronize.php:265 +#: libraries/messages.inc.php:1045 server_synchronize.php:265 msgid "Structure Synchronization" msgstr "Sincronització d'estructura" -#: libraries/messages.inc.php:1050 libraries/sql_query_form.lib.php:462 +#: libraries/messages.inc.php:1046 libraries/sql_query_form.lib.php:462 msgid "Submit" msgstr "Envia" -#: libraries/messages.inc.php:1052 main.php:358 +#: libraries/messages.inc.php:1048 main.php:358 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -6170,16 +6170,16 @@ msgstr "" "Servidor executant-se amb Suhosin. Si us plau, consulta %sdocumentation%s " "per a possibles assumptes." -#: libraries/messages.inc.php:1054 libraries/mysql_charsets.lib.php:295 +#: libraries/messages.inc.php:1050 libraries/mysql_charsets.lib.php:295 #: libraries/mysql_charsets.lib.php:392 msgid "Swedish" msgstr "Suec" -#: libraries/messages.inc.php:1060 tbl_operations.php:556 +#: libraries/messages.inc.php:1056 tbl_operations.php:556 msgid "Switch to copied table" msgstr "Canvia a una taula copiada" -#: libraries/messages.inc.php:1061 server_synchronize.php:1213 +#: libraries/messages.inc.php:1057 server_synchronize.php:1213 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -6187,146 +6187,146 @@ msgstr "" "La base de dades destinació s'ha sincronitzat completament amb la base de " "dades origen. L'origen restarà sense canvis." -#: libraries/messages.inc.php:1062 server_synchronize.php:451 +#: libraries/messages.inc.php:1058 server_synchronize.php:451 #: server_synchronize.php:896 msgid "Synchronize Databases" msgstr "Sincronitza Based de dades" -#: libraries/messages.inc.php:1063 libraries/server_links.inc.php:92 +#: libraries/messages.inc.php:1059 libraries/server_links.inc.php:92 #: server_synchronize.php:1092 server_synchronize.php:1100 msgid "Synchronize" msgstr "Sincronitza" -#: libraries/messages.inc.php:1065 server_synchronize.php:430 +#: libraries/messages.inc.php:1061 server_synchronize.php:430 #: server_synchronize.php:873 msgid "Add column(s)" msgstr "Afegeix columna(es)" -#: libraries/messages.inc.php:1066 tbl_create.php:62 +#: libraries/messages.inc.php:1062 tbl_create.php:62 #, php-format msgid "Table %s already exists!" msgstr "La taula %s ja existeix!" -#: libraries/messages.inc.php:1067 server_synchronize.php:432 +#: libraries/messages.inc.php:1063 server_synchronize.php:432 #: server_synchronize.php:875 msgid "Alter column(s)" msgstr "Canvia columna(es)" -#: libraries/messages.inc.php:1068 tbl_addfield.php:189 tbl_alter.php:103 +#: libraries/messages.inc.php:1064 tbl_addfield.php:189 tbl_alter.php:103 #: tbl_indexes.php:98 #, php-format msgid "Table %1$s has been altered successfully" msgstr "S'ha modificat la taula %1$s correctament" -#: libraries/messages.inc.php:1069 server_synchronize.php:434 +#: libraries/messages.inc.php:1065 server_synchronize.php:434 #: server_synchronize.php:877 msgid "Apply index(s)" msgstr "Aplica index(s)" -#: libraries/messages.inc.php:1071 server_synchronize.php:446 +#: libraries/messages.inc.php:1067 server_synchronize.php:446 #: server_synchronize.php:890 msgid "Would you like to delete all the previous rows from target tables?" msgstr "Vols eliminar totes les files anteriors de les taules de destinació?" -#: libraries/messages.inc.php:1072 tbl_move_copy.php:82 +#: libraries/messages.inc.php:1068 tbl_move_copy.php:82 msgid "The table name is empty!" msgstr "El nom de la taula és buit!" -#: libraries/messages.inc.php:1073 tbl_create.php:249 +#: libraries/messages.inc.php:1069 tbl_create.php:249 #, php-format msgid "Table %1$s has been created." msgstr "S'ha creat la taula %1$s." -#: libraries/messages.inc.php:1076 tbl_operations.php:628 +#: libraries/messages.inc.php:1072 tbl_operations.php:628 #, php-format msgid "Table %s has been flushed" msgstr "S'ha buidat la memòria cau de la taula %s" -#: libraries/messages.inc.php:1077 server_synchronize.php:436 +#: libraries/messages.inc.php:1073 server_synchronize.php:436 #: server_synchronize.php:879 msgid "Insert row(s)" msgstr "Afegeix fila(es)" -#: libraries/messages.inc.php:1078 libraries/tbl_links.inc.php:107 +#: libraries/messages.inc.php:1074 libraries/tbl_links.inc.php:107 #: libraries/tbl_links.inc.php:140 libraries/tbl_links.inc.php:141 msgid "Table seems to be empty!" msgstr "La taula sembla buida!" -#: libraries/messages.inc.php:1079 tbl_operations.php:568 +#: libraries/messages.inc.php:1075 tbl_operations.php:568 msgid "Table maintenance" msgstr "Manteniment de la taula" -#: libraries/messages.inc.php:1080 libraries/tbl_properties.inc.php:618 +#: libraries/messages.inc.php:1076 libraries/tbl_properties.inc.php:618 #: server_synchronize.php:428 server_synchronize.php:871 msgid "Table name" msgstr "Nom de taula" -#: libraries/messages.inc.php:1081 pdf_schema.php:1116 +#: libraries/messages.inc.php:1077 pdf_schema.php:1116 msgid "Table of contents" msgstr "Taula de continguts" -#: libraries/messages.inc.php:1082 tbl_operations.php:334 +#: libraries/messages.inc.php:1078 tbl_operations.php:334 msgid "Table options" msgstr "Opcions de Taula" -#: libraries/messages.inc.php:1083 server_synchronize.php:431 +#: libraries/messages.inc.php:1079 server_synchronize.php:431 #: server_synchronize.php:874 msgid "Remove column(s)" msgstr "Treu columna(es)" -#: libraries/messages.inc.php:1084 server_synchronize.php:433 +#: libraries/messages.inc.php:1080 server_synchronize.php:433 #: server_synchronize.php:876 msgid "Remove index(s)" msgstr "Treu index(s)" -#: libraries/messages.inc.php:1088 server_synchronize.php:435 +#: libraries/messages.inc.php:1084 server_synchronize.php:435 #: server_synchronize.php:878 msgid "Update row(s)" msgstr "Actualitza fila(es)" -#: libraries/messages.inc.php:1090 server_synchronize.php:942 +#: libraries/messages.inc.php:1086 server_synchronize.php:942 msgid "Target database has been synchronized with source database" msgstr "" "La base de dades destinació s'ha sincronitzat amb la base de dades origen" -#: libraries/messages.inc.php:1091 server_privileges.php:392 +#: libraries/messages.inc.php:1087 server_privileges.php:392 #: server_privileges.php:527 server_privileges.php:1679 #: server_privileges.php:1685 msgid "Table-specific privileges" msgstr "Permisos especifics de taula" -#: libraries/messages.inc.php:1092 server_status.php:254 +#: libraries/messages.inc.php:1088 server_status.php:254 msgid "Temporary data" msgstr "Dades temporals" -#: libraries/messages.inc.php:1093 tbl_change.php:728 +#: libraries/messages.inc.php:1089 tbl_change.php:728 msgid " Because of its length,
this field might not be editable " msgstr " A causa de la seva longitud,
aquest camp pot no ser editable " -#: libraries/messages.inc.php:1094 +#: libraries/messages.inc.php:1090 msgid "Texy! text" msgstr "Text Texy!" -#: libraries/messages.inc.php:1095 libraries/mysql_charsets.lib.php:298 +#: libraries/messages.inc.php:1091 libraries/mysql_charsets.lib.php:298 #: libraries/mysql_charsets.lib.php:395 msgid "Thai" msgstr "Tailandès" -#: libraries/messages.inc.php:1102 libraries/replication_gui.lib.php:308 +#: libraries/messages.inc.php:1098 libraries/replication_gui.lib.php:308 #: server_privileges.php:734 msgid "This Host" msgstr "Aquest Host" -#: libraries/messages.inc.php:1103 server_status.php:252 +#: libraries/messages.inc.php:1099 server_status.php:252 msgid "Threads" msgstr "Fils" -#: libraries/messages.inc.php:1104 server_processlist.php:22 +#: libraries/messages.inc.php:1100 server_processlist.php:22 #, php-format msgid "Thread %s was successfully killed." msgstr "Fil %s cancel.lat correctament." -#: libraries/messages.inc.php:1106 +#: libraries/messages.inc.php:1102 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -6335,158 +6335,158 @@ msgstr "" "indica que phpMyAdmin no ha pogut finalitzar aquesta importació a menys que " "incrementeu els límits de temps de php." -#: libraries/messages.inc.php:1109 pmd_pdf.php:94 +#: libraries/messages.inc.php:1105 pmd_pdf.php:94 msgid "to/from page" msgstr "plana a/de" -#: libraries/messages.inc.php:1110 pdf_pages.php:343 +#: libraries/messages.inc.php:1106 pdf_pages.php:343 msgid "Toggle scratchboard" msgstr "Canvia l' scratchboard" -#: libraries/messages.inc.php:1111 pmd_general.php:99 +#: libraries/messages.inc.php:1107 pmd_general.php:99 msgid "Toggle small/big" msgstr "Canviar petit/gran" -#: libraries/messages.inc.php:1112 pmd_help.php:27 +#: libraries/messages.inc.php:1108 pmd_help.php:27 msgid "To select relation, click :" msgstr "Per triar una relació, clica :" -#: libraries/messages.inc.php:1115 libraries/tbl_links.inc.php:149 +#: libraries/messages.inc.php:1111 libraries/tbl_links.inc.php:149 #, php-format msgid "Tracking of %s.%s is activated." msgstr "S'ha activat el seguiment de %s.%s." -#: libraries/messages.inc.php:1116 tbl_tracking.php:655 +#: libraries/messages.inc.php:1112 tbl_tracking.php:655 msgid "Activate now" msgstr "Activa ara" -#: libraries/messages.inc.php:1117 tbl_tracking.php:653 +#: libraries/messages.inc.php:1113 tbl_tracking.php:653 #, php-format msgid "Activate tracking for %s.%s" msgstr "Activa el seguiment per %s.%s" -#: libraries/messages.inc.php:1118 tbl_tracking.php:221 +#: libraries/messages.inc.php:1114 tbl_tracking.php:221 msgid "Comment out these two lines if you do not need them." msgstr "Comenta aquestes dues línies si no les necessites." -#: libraries/messages.inc.php:1119 tbl_tracking.php:688 +#: libraries/messages.inc.php:1115 tbl_tracking.php:688 msgid "Create version" msgstr "Crea versió" -#: libraries/messages.inc.php:1120 tbl_tracking.php:668 +#: libraries/messages.inc.php:1116 tbl_tracking.php:668 #, php-format msgid "Create version %s of %s.%s" msgstr "Crea versió %s de %s.%s" -#: libraries/messages.inc.php:1122 tbl_tracking.php:412 +#: libraries/messages.inc.php:1118 tbl_tracking.php:412 msgid "Data definition statement" msgstr "Declaració de definició de dades" -#: libraries/messages.inc.php:1123 tbl_tracking.php:463 +#: libraries/messages.inc.php:1119 tbl_tracking.php:463 msgid "Data manipulation statement" msgstr "Declaració de manipulació de dades" -#: libraries/messages.inc.php:1124 tbl_tracking.php:410 tbl_tracking.php:461 +#: libraries/messages.inc.php:1120 tbl_tracking.php:410 tbl_tracking.php:461 msgid "Date" msgstr "Data" -#: libraries/messages.inc.php:1125 tbl_tracking.php:642 +#: libraries/messages.inc.php:1121 tbl_tracking.php:642 msgid "Deactivate now" msgstr "Desactiva ara" -#: libraries/messages.inc.php:1126 tbl_tracking.php:640 +#: libraries/messages.inc.php:1122 tbl_tracking.php:640 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "Desactiva el seguiment per %s.%s" -#: libraries/messages.inc.php:1127 tbl_tracking.php:521 +#: libraries/messages.inc.php:1123 tbl_tracking.php:521 #, php-format msgid "Export as %s" msgstr "Exporta com %s" -#: libraries/messages.inc.php:1130 tbl_tracking.php:251 tbl_tracking.php:379 +#: libraries/messages.inc.php:1126 tbl_tracking.php:251 tbl_tracking.php:379 msgid "Close" msgstr "Tanca" -#: libraries/messages.inc.php:1131 tbl_tracking.php:114 +#: libraries/messages.inc.php:1127 tbl_tracking.php:114 #, php-format msgid "Tracking report for table `%s`" msgstr "Informe de seguiment per la taula `%s`" -#: libraries/messages.inc.php:1133 tbl_tracking.php:397 tbl_tracking.php:504 +#: libraries/messages.inc.php:1129 tbl_tracking.php:397 tbl_tracking.php:504 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "Mostra %s amb dates des de %s fins a %s per l'usuari %s %s" -#: libraries/messages.inc.php:1134 tbl_tracking.php:561 +#: libraries/messages.inc.php:1130 tbl_tracking.php:561 msgid "Show versions" msgstr "Mostra versions" -#: libraries/messages.inc.php:1135 tbl_tracking.php:507 +#: libraries/messages.inc.php:1131 tbl_tracking.php:507 msgid "SQL dump (file download)" msgstr "Bolcat SQL (descàrrega d'arxiu)" -#: libraries/messages.inc.php:1136 tbl_tracking.php:508 +#: libraries/messages.inc.php:1132 tbl_tracking.php:508 msgid "SQL dump" msgstr "Bolcat SQL" -#: libraries/messages.inc.php:1137 tbl_tracking.php:213 +#: libraries/messages.inc.php:1133 tbl_tracking.php:213 msgid "SQL statements executed." msgstr "Declaracions SQL executades." -#: libraries/messages.inc.php:1138 +#: libraries/messages.inc.php:1134 msgid "This option will replace your table and contained data." msgstr "Aquesta opció substituirà la taula i les dades contingudes." -#: libraries/messages.inc.php:1139 tbl_tracking.php:509 +#: libraries/messages.inc.php:1135 tbl_tracking.php:509 msgid "SQL execution" msgstr "Execució SQL" -#: libraries/messages.inc.php:1140 tbl_tracking.php:230 +#: libraries/messages.inc.php:1136 tbl_tracking.php:230 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "Declaracions SQL exportades. Copia el bolcat o executa'l." -#: libraries/messages.inc.php:1141 tbl_tracking.php:381 +#: libraries/messages.inc.php:1137 tbl_tracking.php:381 msgid "Tracking statements" msgstr "Seguiment de declaracions" -#: libraries/messages.inc.php:1148 tbl_tracking.php:593 +#: libraries/messages.inc.php:1144 tbl_tracking.php:593 msgid "Version" msgstr "Versió" -#: libraries/messages.inc.php:1149 tbl_tracking.php:672 +#: libraries/messages.inc.php:1145 tbl_tracking.php:672 msgid "Track these data definition statements:" msgstr "Segueix aquestes declaracions de definició de dades:" -#: libraries/messages.inc.php:1150 tbl_tracking.php:680 +#: libraries/messages.inc.php:1146 tbl_tracking.php:680 msgid "Track these data manipulation statements:" msgstr "Segueix aquestes declaracions de manipulació de dades:" -#: libraries/messages.inc.php:1155 tbl_tracking.php:411 tbl_tracking.php:462 +#: libraries/messages.inc.php:1151 tbl_tracking.php:411 tbl_tracking.php:462 msgid "Username" msgstr "Nom d'usuari" -#: libraries/messages.inc.php:1156 tbl_tracking.php:203 +#: libraries/messages.inc.php:1152 tbl_tracking.php:203 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "Activat el seguiment per %s.%s , versió %s." -#: libraries/messages.inc.php:1157 tbl_tracking.php:187 +#: libraries/messages.inc.php:1153 tbl_tracking.php:187 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "S'ha creat la Versió %s, activat el seguiment per %s.%s." -#: libraries/messages.inc.php:1158 tbl_tracking.php:195 +#: libraries/messages.inc.php:1154 tbl_tracking.php:195 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "Seguiment per %s.%s , desactivada la versió %s." -#: libraries/messages.inc.php:1159 tbl_tracking.php:262 +#: libraries/messages.inc.php:1155 tbl_tracking.php:262 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Instantània de la versió %s (codi SQL)" -#: libraries/messages.inc.php:1161 tbl_tracking.php:220 +#: libraries/messages.inc.php:1157 tbl_tracking.php:220 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -6494,24 +6494,24 @@ msgstr "" "Pots executar el bolcat mitjançant la creació i utilització d'una base de " "dades temporal. Si us plau, assegura't que tens els permisos per fer-ho." -#: libraries/messages.inc.php:1162 libraries/mysql_charsets.lib.php:219 +#: libraries/messages.inc.php:1158 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:362 msgid "Traditional Chinese" msgstr "Xinés Tradicional" -#: libraries/messages.inc.php:1163 libraries/mysql_charsets.lib.php:292 +#: libraries/messages.inc.php:1159 libraries/mysql_charsets.lib.php:292 msgid "Traditional Spanish" msgstr "Espanyol Tradicional" -#: libraries/messages.inc.php:1164 server_status.php:388 +#: libraries/messages.inc.php:1160 server_status.php:388 msgid "Traffic" msgstr "Tràfic" -#: libraries/messages.inc.php:1165 server_status.php:261 +#: libraries/messages.inc.php:1161 server_status.php:261 msgid "Transaction coordinator" msgstr "Coordinador de transaccions" -#: libraries/messages.inc.php:1166 +#: libraries/messages.inc.php:1162 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 " @@ -6523,7 +6523,7 @@ msgstr "" "d'una taula que contingui el nom d'arxiu. Si es facilita la segona dada és " "necessari tenir la primera dada buida" -#: libraries/messages.inc.php:1167 +#: libraries/messages.inc.php:1163 msgid "" "Displays hexadecimal representation of data. Optional first parameter " "specifies how often space will be added (defaults to 2 nibbles)." @@ -6532,7 +6532,7 @@ msgstr "" "opcional i especifica cóm de sovint s'afegirá l'espai (per defecte a 2 \\" "\"nibbles\\\")." -#: libraries/messages.inc.php:1168 +#: libraries/messages.inc.php:1164 msgid "" "Displays a clickable thumbnail. The options are the maximum width and height " "in pixels. The original aspect ratio is preserved." @@ -6540,15 +6540,15 @@ msgstr "" "Mostra una miniatura amb enllaç; opcions: ample,alt en pixels (respecta la " "proporció original)" -#: libraries/messages.inc.php:1169 +#: libraries/messages.inc.php:1165 msgid "Displays a link to download this image." msgstr "Es mostra com a enllaç a la imatge." -#: libraries/messages.inc.php:1170 +#: libraries/messages.inc.php:1166 msgid "See image/jpeg: inline" msgstr "Veure image/jpeg: en linia" -#: libraries/messages.inc.php:1171 +#: libraries/messages.inc.php:1167 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 " @@ -6567,7 +6567,7 @@ msgstr "" "diferent valor - per a \"local\" veieu la documentació de la funció strftime" "() de PHP i per a \"utc\" s'obté amb l'ús de la funció gmdate()." -#: libraries/messages.inc.php:1172 +#: libraries/messages.inc.php:1168 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 " @@ -6591,13 +6591,13 @@ msgstr "" "1, posarà un NOWRAP al contingut de les cel.les de forma que la sortida " "sencera es mostrarà sense reformatejar (Per defecte 1)" -#: libraries/messages.inc.php:1173 +#: libraries/messages.inc.php:1169 msgid "" "Displays the contents of the field as-is, without running it through " "htmlspecialchars(). That is, the field is assumed to contain valid HTML." msgstr "Conserva el format original del camp. No es fa cap canvi." -#: libraries/messages.inc.php:1174 +#: libraries/messages.inc.php:1170 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 " @@ -6607,7 +6607,7 @@ msgstr "" "opció és un prefixe com \"http://domini.com/\", la segona opció és l'amplada " "en pixels, la tercera és l'alçada." -#: libraries/messages.inc.php:1175 +#: libraries/messages.inc.php:1171 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 " @@ -6616,11 +6616,11 @@ msgstr "" "Mostra un enllaç, el camp conté el nom de l'arxiu; la primera opció és un " "prefixe com \"http://domini.com/\", la segona opció és el titol del enllaç." -#: libraries/messages.inc.php:1176 +#: libraries/messages.inc.php:1172 msgid "Formats text as SQL query with syntax highlighting." msgstr "Formateig del text com a consulta SQL amb resaltat de sintaxi." -#: libraries/messages.inc.php:1177 +#: libraries/messages.inc.php:1173 msgid "" "Displays a part of a string. The first option is the number of characters to " "skip from the beginning of the string (Default 0). The second option is the " @@ -6634,71 +6634,71 @@ msgstr "" "cadena). La tercera opció és la cadena a afegir a l'inici o al final quan hi " "ha truncament (Per defecte: \"...\")." -#: libraries/messages.inc.php:1179 server_binlog.php:183 server_binlog.php:186 +#: libraries/messages.inc.php:1175 server_binlog.php:183 server_binlog.php:186 #: server_processlist.php:49 server_processlist.php:51 msgid "Truncate Shown Queries" msgstr "Talla les consultes mostrades" -#: libraries/messages.inc.php:1180 libraries/mysql_charsets.lib.php:301 +#: libraries/messages.inc.php:1176 libraries/mysql_charsets.lib.php:301 #: libraries/mysql_charsets.lib.php:389 msgid "Turkish" msgstr "Turc" -#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:304 +#: libraries/messages.inc.php:1179 libraries/mysql_charsets.lib.php:304 #: libraries/mysql_charsets.lib.php:386 msgid "Ukrainian" msgstr "Ucrainès " -#: libraries/messages.inc.php:1185 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:1181 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 msgid "Unicode" msgstr "Unicode" -#: libraries/messages.inc.php:1187 libraries/mysql_charsets.lib.php:398 +#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:398 #: libraries/mysql_charsets.lib.php:405 msgid "unknown" msgstr "Desconegut" -#: libraries/messages.inc.php:1190 server_privileges.php:1152 +#: libraries/messages.inc.php:1186 server_privileges.php:1152 #, php-format msgid "You have updated the privileges for %s." msgstr "Heu actualitzat els permisos de %s." -#: libraries/messages.inc.php:1191 user_password.php:112 +#: libraries/messages.inc.php:1187 user_password.php:112 msgid "The profile has been updated." msgstr "S'ha actualitzat el perfil." -#: libraries/messages.inc.php:1193 libraries/relation.lib.php:138 +#: libraries/messages.inc.php:1189 libraries/relation.lib.php:138 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "Mira a la documentació cóm actualitzar la teva Taula de Comentaris de les " "Columnes" -#: libraries/messages.inc.php:1194 +#: libraries/messages.inc.php:1190 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Es necessari actualitzar a %s %s o posterior." -#: libraries/messages.inc.php:1204 tbl_printview.php:314 tbl_structure.php:661 +#: libraries/messages.inc.php:1200 tbl_printview.php:314 tbl_structure.php:661 msgid "Usage" msgstr "Ús" -#: libraries/messages.inc.php:1205 +#: libraries/messages.inc.php:1201 msgid "Enclose table and field names with backquotes" msgstr "Usa "backquotes" amb taules i noms de camps" -#: libraries/messages.inc.php:1206 libraries/replication_gui.lib.php:314 +#: libraries/messages.inc.php:1202 libraries/replication_gui.lib.php:314 #: server_privileges.php:740 msgid "Use Host Table" msgstr "Utilitza la Taula de Hosts" -#: libraries/messages.inc.php:1207 server_privileges.php:848 +#: libraries/messages.inc.php:1203 server_privileges.php:848 #, php-format msgid "The user %s already exists!" msgstr "L'usuari %s ja existeix!" -#: libraries/messages.inc.php:1209 libraries/replication_gui.lib.php:55 +#: libraries/messages.inc.php:1205 libraries/replication_gui.lib.php:55 #: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245 #: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255 #: server_privileges.php:672 server_privileges.php:675 @@ -6706,37 +6706,37 @@ msgstr "L'usuari %s ja existeix!" msgid "User name" msgstr "Nom d'usuari" -#: libraries/messages.inc.php:1210 server_privileges.php:1645 +#: libraries/messages.inc.php:1206 server_privileges.php:1645 msgid "The selected user was not found in the privilege table." msgstr "No s'ha trobat l'usuari triat a la taula de permisos." -#: libraries/messages.inc.php:1211 server_privileges.php:1365 +#: libraries/messages.inc.php:1207 server_privileges.php:1365 msgid "User overview" msgstr "Informació general de l'usuari" -#: libraries/messages.inc.php:1212 server_privileges.php:1261 +#: libraries/messages.inc.php:1208 server_privileges.php:1261 msgid "The selected users have been deleted successfully." msgstr "S'han esborrat correctament els usuaris triats." -#: libraries/messages.inc.php:1213 server_privileges.php:2026 +#: libraries/messages.inc.php:1209 server_privileges.php:2026 #, php-format msgid "Users having access to "%s"" msgstr "Usuaris amb accés a "%s"" -#: libraries/messages.inc.php:1214 main.php:189 server_privileges.php:1350 +#: libraries/messages.inc.php:1210 main.php:189 server_privileges.php:1350 #: server_privileges.php:1497 server_privileges.php:1611 #: server_privileges.php:2029 server_processlist.php:54 msgid "User" msgstr "Usuari" -#: libraries/messages.inc.php:1215 tbl_change.php:1171 +#: libraries/messages.inc.php:1211 tbl_change.php:1171 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Usa la tecla TAB per moure't de valor en valor, o CTRL+fletxes per moure't " "on vulguis" -#: libraries/messages.inc.php:1217 libraries/replication_gui.lib.php:251 +#: libraries/messages.inc.php:1213 libraries/replication_gui.lib.php:251 #: libraries/replication_gui.lib.php:319 libraries/replication_gui.lib.php:342 #: server_privileges.php:678 server_privileges.php:745 #: server_privileges.php:769 server_privileges.php:1889 @@ -6744,7 +6744,7 @@ msgstr "" msgid "Use text field" msgstr "Usa camp de text" -#: libraries/messages.inc.php:1221 libraries/sqlvalidator.lib.php:68 +#: libraries/messages.inc.php:1217 libraries/sqlvalidator.lib.php:68 #, php-format msgid "" "The SQL validator could not be initialized. Please check if you have " @@ -6754,84 +6754,84 @@ msgstr "" "instal·lats els mòduls de PHP necessaris tal i com s'indica a la %" "sdocumentació%s." -#: libraries/messages.inc.php:1222 libraries/replication_gui.lib.php:111 +#: libraries/messages.inc.php:1218 libraries/replication_gui.lib.php:111 #: server_status.php:627 tbl_change.php:324 tbl_printview.php:370 #: tbl_select.php:139 tbl_structure.php:730 msgid "Value" msgstr "Valor" -#: libraries/messages.inc.php:1223 libraries/replication_gui.lib.php:110 +#: libraries/messages.inc.php:1219 libraries/replication_gui.lib.php:110 #: libraries/sql_query_form.lib.php:445 server_status.php:626 #: server_variables.php:52 msgid "Variable" msgstr "Variable" -#: libraries/messages.inc.php:1225 server_export.php:21 +#: libraries/messages.inc.php:1221 server_export.php:21 msgid "View dump (schema) of databases" msgstr "Veure volcat (esquema) de les bases de dades" -#: libraries/messages.inc.php:1227 tbl_export.php:23 +#: libraries/messages.inc.php:1223 tbl_export.php:23 msgid "View dump (schema) of table" msgstr "Veure un esquema de la taula" -#: libraries/messages.inc.php:1231 view_create.php:142 +#: libraries/messages.inc.php:1227 view_create.php:142 msgid "VIEW name" msgstr "Nom de VISTA" -#: libraries/messages.inc.php:1237 main.php:205 +#: libraries/messages.inc.php:1233 main.php:205 msgid "Web server" msgstr "Servidor Web" -#: libraries/messages.inc.php:1239 libraries/mysql_charsets.lib.php:277 +#: libraries/messages.inc.php:1235 libraries/mysql_charsets.lib.php:277 #: libraries/mysql_charsets.lib.php:325 msgid "West European" msgstr "Europa Occidental" -#: libraries/messages.inc.php:1240 main.php:230 +#: libraries/messages.inc.php:1236 main.php:230 msgid "Wiki" msgstr "Wiki" -#: libraries/messages.inc.php:1241 server_privileges.php:2138 +#: libraries/messages.inc.php:1237 server_privileges.php:2138 msgid "wildcard" msgstr "comodins" -#: libraries/messages.inc.php:1248 +#: libraries/messages.inc.php:1244 msgid "Export contents" msgstr "Exporta contingut" -#: libraries/messages.inc.php:1249 +#: libraries/messages.inc.php:1245 msgid "Export functions" msgstr "Exporta funcions" -#: libraries/messages.inc.php:1250 +#: libraries/messages.inc.php:1246 msgid "Export procedures" msgstr "Exporta procediments" -#: libraries/messages.inc.php:1251 +#: libraries/messages.inc.php:1247 msgid "Export Structure Schemas (recommended)" msgstr "Exporta esquemes d'estructura (recomanat)" -#: libraries/messages.inc.php:1252 +#: libraries/messages.inc.php:1248 msgid "Export tables" msgstr "Exporta taules" -#: libraries/messages.inc.php:1253 +#: libraries/messages.inc.php:1249 msgid "Export triggers" msgstr "Exporta disparadors (triggers)" -#: libraries/messages.inc.php:1254 +#: libraries/messages.inc.php:1250 msgid "Export views" msgstr "Exporta vistes" -#: libraries/messages.inc.php:1255 +#: libraries/messages.inc.php:1251 msgid "XML" msgstr "XML" -#: libraries/messages.inc.php:1259 server_privileges.php:592 +#: libraries/messages.inc.php:1255 server_privileges.php:592 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Nota: Es treu el limit establint aquestes opcions a 0 (zero)." -#: libraries/messages.inc.php:1260 +#: libraries/messages.inc.php:1256 msgid "\"zipped\"" msgstr "\"comprimit amb zip\"" diff --git a/po/cs.po b/po/cs.po index 19ce5f96b..293d8066f 100644 --- a/po/cs.po +++ b/po/cs.po @@ -4,7 +4,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-05-13 11:25+0200\n" +"POT-Creation-Date: 2010-05-13 11:30+0200\n" "PO-Revision-Date: 2010-05-10 14:24+0200\n" "Last-Translator: Michal \n" "Language-Team: czech \n" @@ -16,19 +16,19 @@ msgstr "" "X-Generator: Pootle 2.0.1\n" #: browse_foreigners.php:38 browse_foreigners.php:59 -#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:870 +#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:866 #: server_privileges.php:1475 msgid "Show all" msgstr "Zobrazit vše" #: browse_foreigners.php:82 db_operations.php:648 -#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:394 -#: libraries/export/pdf.php:147 libraries/messages.inc.php:597 +#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394 +#: libraries/export/pdf.php:147 libraries/messages.inc.php:593 #: pdf_schema.php:283 pdf_schema.php:1123 pdf_schema.php:1139 msgid "Page number:" msgstr "Strana číslo:" -#: browse_foreigners.php:132 libraries/messages.inc.php:1242 +#: browse_foreigners.php:132 libraries/messages.inc.php:1238 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -41,7 +41,7 @@ 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/db_links.inc.php:75 -#: libraries/messages.inc.php:841 libraries/tbl_links.inc.php:63 +#: libraries/messages.inc.php:837 libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Vyhledávání" @@ -50,12 +50,12 @@ msgstr "Vyhledávání" #: db_search.php:362 db_structure.php:567 js/messages.php:48 #: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2267 +#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 #: 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 #: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614 -#: libraries/messages.inc.php:361 libraries/replication_gui.lib.php:73 +#: libraries/messages.inc.php:357 libraries/replication_gui.lib.php:73 #: libraries/replication_gui.lib.php:365 libraries/select_server.lib.php:104 #: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477 #: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782 @@ -75,33 +75,33 @@ msgid "Go" msgstr "Proveď" #: browse_foreigners.php:168 browse_foreigners.php:172 -#: libraries/Index.class.php:442 libraries/messages.inc.php:459 +#: libraries/Index.class.php:442 libraries/messages.inc.php:455 #: tbl_tracking.php:320 msgid "Keyname" msgstr "Klíčový název" #: browse_foreigners.php:169 browse_foreigners.php:171 -#: libraries/messages.inc.php:252 server_collations.php:55 +#: libraries/messages.inc.php:248 server_collations.php:55 #: server_collations.php:67 server_engines.php:59 server_status.php:628 msgid "Description" msgstr "Popis" #: browse_foreigners.php:247 browse_foreigners.php:256 #: browse_foreigners.php:268 browse_foreigners.php:276 -#: libraries/messages.inc.php:1218 +#: libraries/messages.inc.php:1214 msgid "Use this value" msgstr "Použít tuto hodnotu" -#: db_create.php:46 libraries/messages.inc.php:215 +#: db_create.php:46 libraries/messages.inc.php:211 #, php-format msgid "Database %1$s has been created." msgstr "Byla vytvořena databáze %1$s." -#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:232 +#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:228 msgid "Database comment: " msgstr "Komentář k databázi: " -#: db_datadict.php:165 libraries/messages.inc.php:1070 +#: db_datadict.php:165 libraries/messages.inc.php:1066 #: libraries/tbl_properties.inc.php:724 pdf_schema.php:1236 #: tbl_operations.php:345 tbl_printview.php:130 msgid "Table comments" @@ -110,7 +110,7 @@ msgstr "Komentář k tabulce" #: db_datadict.php:174 db_qbe.php:174 libraries/Index.class.php:446 #: libraries/export/htmlword.php:244 libraries/export/latex.php:360 #: libraries/export/odt.php:294 libraries/export/texytext.php:233 -#: libraries/messages.inc.php:317 libraries/tbl_properties.inc.php:99 +#: libraries/messages.inc.php:313 libraries/tbl_properties.inc.php:99 #: libraries/tbl_properties.inc.php:275 pdf_schema.php:1262 #: pdf_schema.php:1283 tbl_change.php:308 tbl_indexes.php:189 #: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135 @@ -122,7 +122,7 @@ msgstr "Sloupec" #: libraries/db_events.inc.php:31 libraries/db_routines.inc.php:42 #: 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/messages.inc.php:1181 +#: libraries/export/texytext.php:234 libraries/messages.inc.php:1177 #: libraries/tbl_properties.inc.php:100 pdf_schema.php:1263 #: pdf_schema.php:1284 server_privileges.php:2031 tbl_change.php:287 #: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313 @@ -134,7 +134,7 @@ msgstr "Typ" #: db_datadict.php:177 libraries/Index.class.php:449 #: libraries/export/htmlword.php:246 libraries/export/latex.php:360 #: libraries/export/odt.php:300 libraries/export/texytext.php:235 -#: libraries/messages.inc.php:576 libraries/tbl_properties.inc.php:109 +#: libraries/messages.inc.php:572 libraries/tbl_properties.inc.php:109 #: pdf_schema.php:1265 pdf_schema.php:1286 tbl_change.php:323 #: tbl_printview.php:145 tbl_structure.php:181 tbl_tracking.php:276 #: tbl_tracking.php:327 @@ -143,7 +143,7 @@ msgstr "Nulový" #: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 -#: libraries/export/texytext.php:236 libraries/messages.inc.php:238 +#: libraries/export/texytext.php:236 libraries/messages.inc.php:234 #: libraries/tbl_properties.inc.php:106 pdf_schema.php:1266 #: pdf_schema.php:1287 tbl_printview.php:146 tbl_structure.php:182 #: tbl_tracking.php:277 @@ -152,14 +152,14 @@ msgstr "Výchozí" #: db_datadict.php:182 libraries/export/htmlword.php:249 #: libraries/export/latex.php:362 libraries/export/odt.php:307 -#: libraries/export/texytext.php:238 libraries/messages.inc.php:483 +#: libraries/export/texytext.php:238 libraries/messages.inc.php:479 #: pdf_schema.php:1268 pdf_schema.php:1289 tbl_printview.php:150 msgid "Links to" msgstr "Odkazuje na" #: db_datadict.php:184 db_printview.php:112 libraries/export/htmlword.php:252 #: libraries/export/latex.php:365 libraries/export/odt.php:312 -#: libraries/export/texytext.php:241 libraries/messages.inc.php:163 +#: libraries/export/texytext.php:241 libraries/messages.inc.php:159 #: libraries/tbl_properties.inc.php:130 pdf_schema.php:1279 #: pdf_schema.php:1290 tbl_printview.php:152 msgid "Comments" @@ -168,7 +168,7 @@ msgstr "Komentáře" #: db_datadict.php:267 libraries/Index.class.php:359 #: 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/messages.inc.php:559 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:555 #: libraries/mult_submits.inc.php:263 pdf_schema.php:1344 #: server_privileges.php:1529 server_privileges.php:1540 #: server_privileges.php:1850 server_privileges.php:1855 @@ -180,7 +180,7 @@ msgstr "Ne" #: db_datadict.php:267 libraries/Index.class.php:360 #: libraries/Index.class.php:385 libraries/export/htmlword.php:322 #: libraries/export/latex.php:430 libraries/export/odt.php:368 -#: libraries/export/texytext.php:311 libraries/messages.inc.php:1257 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:1253 #: libraries/mult_submits.inc.php:45 libraries/mult_submits.inc.php:50 #: libraries/mult_submits.inc.php:55 libraries/mult_submits.inc.php:60 #: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:101 @@ -194,108 +194,108 @@ msgstr "Ne" msgid "Yes" msgstr "Ano" -#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:670 +#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:666 #: tbl_printview.php:498 msgid "Print" msgstr "Vytisknout" -#: db_export.php:29 libraries/messages.inc.php:1226 +#: db_export.php:29 libraries/messages.inc.php:1222 msgid "View dump (schema) of database" msgstr "Export databáze" #: db_export.php:33 db_printview.php:96 db_qbe.php:102 db_structure.php:51 -#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:568 +#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:564 #: navigation.php:346 msgid "No tables found in database." msgstr "V databázi nebyla nalezena žádná tabulka." -#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:845 +#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:841 #: server_export.php:27 msgid "Select All" msgstr "Vybrat vše" -#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1188 +#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1184 #: server_export.php:29 msgid "Unselect All" msgstr "Odznačit vše" -#: db_operations.php:38 libraries/messages.inc.php:213 tbl_create.php:54 +#: db_operations.php:38 libraries/messages.inc.php:209 tbl_create.php:54 msgid "The database name is empty!" msgstr "Jméno databáze je prázdné!" -#: db_operations.php:236 libraries/messages.inc.php:753 +#: db_operations.php:236 libraries/messages.inc.php:749 #, php-format msgid "Database %s has been renamed to %s" msgstr "Databáze %s byla přejmenována na %s" -#: db_operations.php:240 libraries/messages.inc.php:178 +#: db_operations.php:240 libraries/messages.inc.php:174 #, php-format msgid "Database %s has been copied to %s" msgstr "Databáze %s byla zkopírována na %s" -#: db_operations.php:410 libraries/messages.inc.php:236 +#: db_operations.php:410 libraries/messages.inc.php:232 msgid "Rename database to" msgstr "Přejmenovat databázi na" -#: db_operations.php:415 libraries/messages.inc.php:161 +#: db_operations.php:415 libraries/messages.inc.php:157 #: server_processlist.php:57 msgid "Command" msgstr "Příkaz" -#: db_operations.php:425 libraries/messages.inc.php:58 tbl_change.php:1143 +#: db_operations.php:425 libraries/messages.inc.php:54 tbl_change.php:1143 msgid "and then" msgstr "a poté" -#: db_operations.php:451 libraries/messages.inc.php:233 +#: db_operations.php:451 libraries/messages.inc.php:229 msgid "Copy database to" msgstr "Zkopírovat databázi na" -#: db_operations.php:458 libraries/messages.inc.php:1043 +#: db_operations.php:458 libraries/messages.inc.php:1039 #: tbl_operations.php:526 tbl_tracking.php:388 msgid "Structure only" msgstr "Pouze strukturu" -#: db_operations.php:459 libraries/messages.inc.php:1041 +#: db_operations.php:459 libraries/messages.inc.php:1037 #: tbl_operations.php:527 tbl_tracking.php:390 msgid "Structure and data" msgstr "Strukturu a data" -#: db_operations.php:460 libraries/messages.inc.php:229 tbl_operations.php:528 +#: db_operations.php:460 libraries/messages.inc.php:225 tbl_operations.php:528 #: tbl_tracking.php:389 msgid "Data only" msgstr "Jen data" -#: db_operations.php:468 libraries/messages.inc.php:186 +#: db_operations.php:468 libraries/messages.inc.php:182 msgid "CREATE DATABASE before copying" msgstr "Vytvořit databázi před kopírováním (CREATE DATABASE)" #: db_operations.php:471 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 -#: libraries/export/sql.php:82 libraries/messages.inc.php:30 +#: libraries/export/sql.php:82 libraries/messages.inc.php:26 #: tbl_operations.php:534 #, php-format msgid "Add %s" msgstr "Přidat %s" -#: db_operations.php:475 libraries/messages.inc.php:29 tbl_operations.php:297 +#: db_operations.php:475 libraries/messages.inc.php:25 tbl_operations.php:297 #: tbl_operations.php:536 msgid "Add AUTO_INCREMENT value" msgstr "Přidat hodnotu AUTO_INCREMENT" -#: db_operations.php:479 libraries/messages.inc.php:31 tbl_operations.php:543 +#: db_operations.php:479 libraries/messages.inc.php:27 tbl_operations.php:543 msgid "Add constraints" msgstr "Přidat integritní omezení" -#: db_operations.php:492 libraries/messages.inc.php:1059 +#: db_operations.php:492 libraries/messages.inc.php:1055 msgid "Switch to copied database" msgstr "Přepnout na zkopírovanou databázi" -#: db_operations.php:533 libraries/messages.inc.php:89 +#: db_operations.php:533 libraries/messages.inc.php:85 msgid "BLOB Repository" msgstr "Skladiště BLOBů" #: db_operations.php:536 db_tracking.php:76 libraries/common.lib.php:1350 -#: libraries/messages.inc.php:1037 libraries/server_links.inc.php:49 +#: libraries/messages.inc.php:1033 libraries/server_links.inc.php:49 #: server_processlist.php:59 tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "Stav" @@ -305,11 +305,11 @@ msgctxt "BLOB repository" msgid "Enabled" msgstr "Zapnuté" -#: db_operations.php:548 libraries/messages.inc.php:93 +#: db_operations.php:548 libraries/messages.inc.php:89 msgid "Disable" msgstr "Vypnout" -#: db_operations.php:558 libraries/messages.inc.php:90 +#: db_operations.php:558 libraries/messages.inc.php:86 msgid "Damaged" msgstr "Poškozené" @@ -323,12 +323,12 @@ msgctxt "BLOB repository" msgid "Disabled" msgstr "Vypnuté" -#: db_operations.php:574 libraries/messages.inc.php:96 +#: db_operations.php:574 libraries/messages.inc.php:92 msgid "Enable" msgstr "Zapnout" #: db_operations.php:598 libraries/Index.class.php:448 -#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:158 +#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:154 #: 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:361 @@ -337,7 +337,7 @@ msgstr "Zapnout" msgid "Collation" msgstr "Porovnávání" -#: db_operations.php:609 libraries/messages.inc.php:742 main.php:316 +#: db_operations.php:609 libraries/messages.inc.php:738 main.php:316 #: pdf_schema.php:34 #, php-format msgid "" @@ -347,58 +347,58 @@ msgstr "" "Některé z rozšířených funkcí phpMyAdmina nelze používat. %sZde%s zjistíte " "proč." -#: db_operations.php:645 libraries/messages.inc.php:264 pdf_pages.php:528 +#: db_operations.php:645 libraries/messages.inc.php:260 pdf_pages.php:528 msgid "Display PDF schema" msgstr "Zobrazit jako schéma v PDF" -#: db_operations.php:661 libraries/messages.inc.php:877 pdf_pages.php:529 +#: db_operations.php:661 libraries/messages.inc.php:873 pdf_pages.php:529 msgid "Show grid" msgstr "Zobrazit mřížku" -#: db_operations.php:664 libraries/messages.inc.php:874 pdf_pages.php:530 +#: db_operations.php:664 libraries/messages.inc.php:870 pdf_pages.php:530 msgid "Show color" msgstr "Barevné šipky" -#: db_operations.php:666 libraries/messages.inc.php:998 pdf_pages.php:531 +#: db_operations.php:666 libraries/messages.inc.php:994 pdf_pages.php:531 msgid "Show dimension of tables" msgstr "Rozměry tabulek" -#: db_operations.php:669 libraries/messages.inc.php:52 pdf_pages.php:532 +#: db_operations.php:669 libraries/messages.inc.php:48 pdf_pages.php:532 msgid "Display all tables with the same width" msgstr "Použít pro všechny tabulky stejnou šířku" -#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:227 +#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:223 #: pdf_pages.php:533 msgid "Data Dictionary" msgstr "Datový slovník" -#: db_operations.php:674 libraries/messages.inc.php:884 pdf_pages.php:534 +#: db_operations.php:674 libraries/messages.inc.php:880 pdf_pages.php:534 msgid "Only show keys" msgstr "Jen zobrazit klíče" -#: db_operations.php:676 libraries/messages.inc.php:875 pdf_pages.php:535 +#: db_operations.php:676 libraries/messages.inc.php:871 pdf_pages.php:535 msgid "Data Dictionary Format" msgstr "Formát datového slovníku" -#: db_operations.php:678 libraries/messages.inc.php:464 pdf_pages.php:537 +#: db_operations.php:678 libraries/messages.inc.php:460 pdf_pages.php:537 msgid "Landscape" msgstr "Na šířku" -#: db_operations.php:679 libraries/messages.inc.php:663 pdf_pages.php:538 +#: db_operations.php:679 libraries/messages.inc.php:659 pdf_pages.php:538 msgid "Portrait" msgstr "Na výšku" -#: db_operations.php:682 libraries/messages.inc.php:599 pdf_pages.php:541 +#: db_operations.php:682 libraries/messages.inc.php:595 pdf_pages.php:541 msgid "Paper size" msgstr "Velikost stránky" -#: db_operations.php:706 libraries/messages.inc.php:281 +#: db_operations.php:706 libraries/messages.inc.php:277 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 libraries/messages.inc.php:1087 +#: libraries/header.inc.php:126 libraries/messages.inc.php:1083 #: pdf_pages.php:405 server_privileges.php:1626 server_privileges.php:1682 #: server_privileges.php:1946 server_synchronize.php:423 #: server_synchronize.php:866 tbl_tracking.php:592 test/theme.php:75 @@ -406,176 +406,176 @@ msgid "Table" msgstr "Tabulka" #: db_printview.php:105 libraries/db_structure.lib.php:56 -#: libraries/messages.inc.php:735 +#: libraries/messages.inc.php:731 msgid "Records" msgstr "Záznamů" #: db_printview.php:109 libraries/db_structure.lib.php:67 -#: libraries/messages.inc.php:1003 tbl_indexes.php:190 +#: libraries/messages.inc.php:999 tbl_indexes.php:190 msgid "Size" msgstr "Velikost" #: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 -#: libraries/export/sql.php:899 libraries/messages.inc.php:436 +#: libraries/export/sql.php:899 libraries/messages.inc.php:432 msgid "in use" msgstr "právě se používá" #: db_printview.php:187 libraries/db_info.inc.php:88 -#: libraries/export/sql.php:514 libraries/messages.inc.php:1032 +#: libraries/export/sql.php:514 libraries/messages.inc.php:1028 #: pdf_schema.php:1241 tbl_printview.php:434 tbl_structure.php:810 msgid "Creation" msgstr "Vytvoření" #: db_printview.php:196 libraries/db_info.inc.php:93 -#: libraries/export/sql.php:519 libraries/messages.inc.php:1036 +#: libraries/export/sql.php:519 libraries/messages.inc.php:1032 #: pdf_schema.php:1246 tbl_printview.php:444 tbl_structure.php:818 msgid "Last update" msgstr "Poslední změna" #: db_printview.php:205 libraries/db_info.inc.php:98 -#: libraries/export/sql.php:524 libraries/messages.inc.php:1031 +#: libraries/export/sql.php:524 libraries/messages.inc.php:1027 #: pdf_schema.php:1251 tbl_printview.php:454 tbl_structure.php:826 msgid "Last check" msgstr "Poslední kontrola" -#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1085 +#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1081 #, php-format msgid "%s table(s)" msgstr "%s tabulek" #: db_qbe.php:29 libraries/display_tbl.lib.php:1981 -#: libraries/messages.inc.php:1051 libraries/sql_query_form.lib.php:140 +#: libraries/messages.inc.php:1047 libraries/sql_query_form.lib.php:140 #: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131 #: view_operations.php:62 msgid "Your SQL query has been executed successfully" msgstr "Váš SQL-dotaz byl úspěšně vykonán" -#: db_qbe.php:42 libraries/messages.inc.php:371 +#: db_qbe.php:42 libraries/messages.inc.php:367 msgid "You have to choose at least one column to display" msgstr "Musíte zvolit alespoň jeden sloupec, který chcete zobrazit" #: db_qbe.php:200 libraries/db_structure.lib.php:104 -#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1014 +#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1010 msgid "Sort" msgstr "Řadit" #: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111 #: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828 -#: libraries/messages.inc.php:69 server_databases.php:170 +#: libraries/messages.inc.php:65 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314 msgid "Ascending" msgstr "Vzestupně" #: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119 #: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825 -#: libraries/messages.inc.php:251 server_databases.php:170 +#: libraries/messages.inc.php:247 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315 msgid "Descending" msgstr "Sestupně" #: db_qbe.php:264 db_tracking.php:78 libraries/display_tbl.lib.php:308 -#: libraries/messages.inc.php:888 tbl_change.php:277 tbl_tracking.php:597 +#: libraries/messages.inc.php:884 tbl_change.php:277 tbl_tracking.php:597 msgid "Show" msgstr "Zobrazit" -#: db_qbe.php:300 libraries/messages.inc.php:202 +#: db_qbe.php:300 libraries/messages.inc.php:198 msgid "Criteria" msgstr "Podmínka" #: db_qbe.php:353 db_qbe.php:435 db_qbe.php:527 db_qbe.php:558 -#: libraries/messages.inc.php:718 +#: libraries/messages.inc.php:714 msgid "Ins" msgstr "přidat" #: db_qbe.php:357 db_qbe.php:439 db_qbe.php:524 db_qbe.php:555 -#: libraries/messages.inc.php:56 +#: libraries/messages.inc.php:52 msgid "And" msgstr "a" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:529 db_qbe.php:560 -#: libraries/messages.inc.php:717 +#: libraries/messages.inc.php:713 msgid "Del" 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/messages.inc.php:592 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:588 #: libraries/tbl_properties.inc.php:779 server_privileges.php:258 #: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288 msgid "Or" msgstr "nebo" -#: db_qbe.php:507 libraries/messages.inc.php:516 +#: db_qbe.php:507 libraries/messages.inc.php:512 msgid "Modify" msgstr "Úpravy" -#: db_qbe.php:584 libraries/messages.inc.php:33 +#: db_qbe.php:584 libraries/messages.inc.php:29 msgid "Add/Delete Criteria Row" msgstr "Přidat nebo odebrat řádek" -#: db_qbe.php:596 libraries/messages.inc.php:32 +#: db_qbe.php:596 libraries/messages.inc.php:28 msgid "Add/Delete Field Columns" msgstr "Přidat nebo odebrat sloupec" -#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1192 +#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1188 msgid "Update Query" msgstr "Aktualizovat dotaz" -#: db_qbe.php:617 libraries/messages.inc.php:1216 +#: db_qbe.php:617 libraries/messages.inc.php:1212 msgid "Use Tables" msgstr "Použít tabulky" -#: db_qbe.php:640 libraries/messages.inc.php:723 +#: db_qbe.php:640 libraries/messages.inc.php:719 #, php-format msgid "SQL query on database %s:" msgstr "SQL dotaz na databázi %s:" -#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:823 +#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:819 msgid "Submit Query" msgstr "Provést dotaz" #: db_search.php:68 libraries/auth/config.auth.lib.php:84 #: libraries/auth/config.auth.lib.php:103 #: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52 -#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:26 +#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:22 msgid "Access denied" msgstr "Přístup odepřen" -#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:836 +#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:832 msgid "at least one of the words" msgstr "alespoň jedno ze slov" -#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:837 +#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:833 msgid "all words" msgstr "všechna slova" -#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:838 +#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:834 msgid "the exact phrase" msgstr "přesnou frázi" -#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:839 +#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:835 msgid "as regular expression" msgstr "jako regulární výraz" -#: db_search.php:242 libraries/messages.inc.php:840 +#: db_search.php:242 libraries/messages.inc.php:836 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Výsledky vyhledávání pro „%s“ %s:" -#: db_search.php:260 libraries/messages.inc.php:579 +#: db_search.php:260 libraries/messages.inc.php:575 #, php-format msgid "%s match(es) inside table %s" 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/messages.inc.php:108 +#: db_structure.php:105 libraries/messages.inc.php:104 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468 msgid "Browse" msgstr "Projít" #: db_search.php:272 libraries/display_tbl.lib.php:1165 -#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:243 +#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:239 #: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406 #: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377 #: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216 @@ -583,45 +583,45 @@ msgstr "Projít" msgid "Delete" msgstr "Odstranit" -#: db_search.php:285 libraries/messages.inc.php:580 +#: db_search.php:285 libraries/messages.inc.php:576 #, php-format msgid "Total: %s match(es)" msgstr "Celkem: %s odpovídající(ch) záznam(ů)" -#: db_search.php:299 libraries/messages.inc.php:832 +#: db_search.php:299 libraries/messages.inc.php:828 msgid "Search in database" msgstr "Vyhledávání v databázi" -#: db_search.php:302 libraries/messages.inc.php:835 +#: db_search.php:302 libraries/messages.inc.php:831 msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgstr "Slova nebo hodnoty, které chcete vyhledat (zástupný znak: „%“):" -#: db_search.php:307 libraries/messages.inc.php:842 +#: db_search.php:307 libraries/messages.inc.php:838 msgid "Find:" msgstr "Najít:" -#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1017 +#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1013 msgid "Words are separated by a space character (\" \")." msgstr "Slova jsou oddělena mezerou („ “)." -#: db_search.php:325 libraries/messages.inc.php:834 +#: db_search.php:325 libraries/messages.inc.php:830 msgid "Inside table(s):" msgstr "V tabulkách:" -#: db_search.php:355 libraries/messages.inc.php:833 +#: db_search.php:355 libraries/messages.inc.php:829 msgid "Inside field:" 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/messages.inc.php:431 libraries/sql_query_form.lib.php:334 +#: libraries/messages.inc.php:427 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/db_links.inc.php:63 libraries/export/latex.php:337 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:1048 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:1044 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 #: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269 msgid "Structure" @@ -630,8 +630,8 @@ 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:1642 -#: libraries/db_links.inc.php:100 libraries/messages.inc.php:272 +#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/db_links.inc.php:100 libraries/messages.inc.php:268 #: 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 @@ -641,40 +641,40 @@ 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:1641 -#: libraries/messages.inc.php:284 libraries/mult_submits.inc.php:39 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: libraries/messages.inc.php:280 libraries/mult_submits.inc.php:39 #: libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Vyprázdnit" -#: db_structure.php:316 libraries/messages.inc.php:1075 +#: db_structure.php:316 libraries/messages.inc.php:1071 #: libraries/tbl_links.inc.php:100 #, php-format msgid "Table %s has been emptied" msgstr "Tabulka %s byla vyprázdněna" -#: db_structure.php:326 libraries/messages.inc.php:1229 +#: db_structure.php:326 libraries/messages.inc.php:1225 #: 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/messages.inc.php:1074 +#: db_structure.php:326 libraries/messages.inc.php:1070 #: libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "Tabulka %s byla odstraněna" -#: db_structure.php:333 libraries/messages.inc.php:1128 +#: db_structure.php:333 libraries/messages.inc.php:1124 msgid "Tracking is active." msgstr "Sledování je zapnuté." -#: db_structure.php:335 libraries/messages.inc.php:1129 +#: db_structure.php:335 libraries/messages.inc.php:1125 msgid "Tracking is not active." msgstr "Sledování není zapnuté." #: db_structure.php:420 libraries/display_tbl.lib.php:1944 -#: libraries/messages.inc.php:1228 +#: libraries/messages.inc.php:1224 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -683,83 +683,83 @@ 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 -#: libraries/messages.inc.php:1233 libraries/tbl_info.inc.php:66 +#: libraries/messages.inc.php:1229 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/messages.inc.php:773 libraries/server_links.inc.php:70 +#: libraries/messages.inc.php:769 libraries/server_links.inc.php:70 #: server_replication.php:33 server_replication.php:164 server_status.php:258 msgid "Replication" msgstr "Replikace" -#: db_structure.php:489 libraries/messages.inc.php:1053 +#: db_structure.php:489 libraries/messages.inc.php:1049 msgid "Sum" msgstr "Celkem" #: db_structure.php:496 libraries/StorageEngine.class.php:356 -#: libraries/messages.inc.php:239 +#: libraries/messages.inc.php:235 #, 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 #: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086 -#: libraries/messages.inc.php:1243 libraries/mult_submits.inc.php:16 +#: libraries/messages.inc.php:1239 libraries/mult_submits.inc.php:16 #: server_databases.php:346 server_databases.php:351 #: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465 msgid "With selected:" msgstr "Zaškrtnuté:" #: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: libraries/messages.inc.php:148 server_databases.php:348 +#: libraries/messages.inc.php:144 server_databases.php:348 #: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459 msgid "Check All" msgstr "Zaškrtnout vše" #: db_structure.php:531 libraries/display_tbl.lib.php:2077 -#: libraries/messages.inc.php:1184 libraries/replication_gui.lib.php:33 +#: libraries/messages.inc.php:1180 libraries/replication_gui.lib.php:33 #: server_databases.php:350 server_privileges.php:533 #: server_privileges.php:1564 tbl_structure.php:463 msgid "Uncheck All" msgstr "Odškrtnout vše" -#: db_structure.php:536 libraries/messages.inc.php:150 +#: db_structure.php:536 libraries/messages.inc.php:146 msgid "Check tables having overhead" msgstr "Zaškrtnout neoptimální" #: db_structure.php:547 db_structure.php:548 db_structure.php:599 -#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:672 +#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:668 #: libraries/mult_submits.inc.php:28 tbl_structure.php:493 #: tbl_structure.php:495 msgid "Print view" msgstr "Náhled pro tisk" -#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:153 +#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:149 #: libraries/mult_submits.inc.php:42 tbl_operations.php:579 msgid "Check table" msgstr "Zkontrolovat tabulku" -#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:590 +#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:586 #: libraries/mult_submits.inc.php:47 tbl_operations.php:619 #: tbl_structure.php:710 tbl_structure.php:712 msgid "Optimize table" msgstr "Optimalizovat tabulku" -#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:758 +#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:754 #: libraries/mult_submits.inc.php:52 tbl_operations.php:609 msgid "Repair table" msgstr "Opravit tabulku" -#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:55 +#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:51 #: libraries/mult_submits.inc.php:57 tbl_operations.php:599 msgid "Analyze table" msgstr "Analyzovat tabulku" #: db_structure.php:557 db_structure.php:558 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/messages.inc.php:310 +#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:306 #: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84 #: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109 #: server_privileges.php:1341 setup/frames/menu.inc.php:22 @@ -767,7 +767,7 @@ msgstr "Analyzovat tabulku" msgid "Export" msgstr "Export" -#: db_tracking.php:66 libraries/messages.inc.php:1151 +#: db_tracking.php:66 libraries/messages.inc.php:1147 msgid "Tracked tables" msgstr "Sledované tabulky" @@ -775,7 +775,7 @@ msgstr "Sledované tabulky" #: 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/header_printview.inc.php:58 libraries/messages.inc.php:212 +#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:208 #: navigation.php:233 server_databases.php:169 server_privileges.php:1621 #: server_privileges.php:1682 server_privileges.php:1940 #: server_processlist.php:56 server_synchronize.php:1179 @@ -783,76 +783,76 @@ msgstr "Sledované tabulky" msgid "Database" msgstr "Databáze" -#: db_tracking.php:73 libraries/messages.inc.php:1146 +#: db_tracking.php:73 libraries/messages.inc.php:1142 msgid "Last version" msgstr "Poslední verze" -#: db_tracking.php:74 libraries/messages.inc.php:1145 tbl_tracking.php:594 +#: db_tracking.php:74 libraries/messages.inc.php:1141 tbl_tracking.php:594 msgid "Created" msgstr "Vytvořeno" -#: db_tracking.php:75 libraries/messages.inc.php:1147 tbl_tracking.php:595 +#: db_tracking.php:75 libraries/messages.inc.php:1143 tbl_tracking.php:595 msgid "Updated" msgstr "Aktualizováno" #: db_tracking.php:77 libraries/Index.class.php:440 -#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:27 +#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:23 #: server_databases.php:203 server_privileges.php:1503 #: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187 msgid "Action" msgstr "Akce" -#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:247 +#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:243 msgid "Delete tracking data for this table" msgstr "Odstranit všechny informace o sledování této tabulky" -#: db_tracking.php:106 libraries/messages.inc.php:1142 tbl_tracking.php:548 +#: db_tracking.php:106 libraries/messages.inc.php:1138 tbl_tracking.php:548 #: tbl_tracking.php:606 tbl_tracking.php:613 msgid "active" msgstr "zapnuté" -#: db_tracking.php:108 libraries/messages.inc.php:1143 tbl_tracking.php:550 +#: db_tracking.php:108 libraries/messages.inc.php:1139 tbl_tracking.php:550 #: tbl_tracking.php:608 tbl_tracking.php:610 msgid "not active" msgstr "není zapnuté" -#: db_tracking.php:121 libraries/messages.inc.php:1160 +#: db_tracking.php:121 libraries/messages.inc.php:1156 msgid "Versions" msgstr "Verze" -#: db_tracking.php:122 libraries/messages.inc.php:1132 tbl_tracking.php:379 +#: db_tracking.php:122 libraries/messages.inc.php:1128 tbl_tracking.php:379 #: tbl_tracking.php:624 msgid "Tracking report" msgstr "Informace o sledování" -#: db_tracking.php:123 libraries/messages.inc.php:1144 tbl_tracking.php:251 +#: db_tracking.php:123 libraries/messages.inc.php:1140 tbl_tracking.php:251 #: tbl_tracking.php:624 msgid "Structure snapshot" msgstr "Snímek struktury" -#: db_tracking.php:152 libraries/messages.inc.php:1154 +#: db_tracking.php:152 libraries/messages.inc.php:1150 msgid "Untracked tables" msgstr "Nesledované tabulky" -#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1153 +#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1149 #: tbl_structure.php:529 tbl_structure.php:531 msgid "Track table" msgstr "Sledovat tabulku" -#: db_tracking.php:200 libraries/messages.inc.php:1121 +#: db_tracking.php:200 libraries/messages.inc.php:1117 msgid "Database Log" msgstr "Historie databáze" -#: export.php:62 libraries/messages.inc.php:312 +#: export.php:62 libraries/messages.inc.php:308 msgid "Selected export type has to be saved in file!" msgstr "Zvolený export musí být uložen do souboru!" -#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:567 +#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:563 #, php-format msgid "Insufficient space to save the file %s." msgstr "Nedostatek místa pro uložení souboru %s." -#: export.php:294 libraries/messages.inc.php:324 +#: export.php:294 libraries/messages.inc.php:320 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -860,17 +860,17 @@ msgstr "" "Soubor %s již na serveru existuje, změňte jméno souboru, nebo zvolte " "přepsání souboru." -#: export.php:298 export.php:302 libraries/messages.inc.php:562 +#: export.php:298 export.php:302 libraries/messages.inc.php:558 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Web server nemá oprávnění uložit výpis do souboru %s." -#: export.php:629 libraries/messages.inc.php:276 +#: export.php:629 libraries/messages.inc.php:272 #, php-format msgid "Dump has been saved to file %s." msgstr "Výpis byl uložen do souboru %s." -#: import.php:60 libraries/messages.inc.php:1202 +#: import.php:60 libraries/messages.inc.php:1198 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation%" @@ -880,14 +880,14 @@ msgstr "" "prosím %sdokumentaci%s, jak toto omezení obejít." #: import.php:279 import.php:332 libraries/File.class.php:849 -#: libraries/File.class.php:961 libraries/messages.inc.php:325 +#: libraries/File.class.php:961 libraries/messages.inc.php:321 msgid "File could not be read" msgstr "Soubor nelze přečíst" #: import.php:287 import.php:296 import.php:315 import.php:324 #: libraries/File.class.php:1031 libraries/File.class.php:1039 #: libraries/File.class.php:1055 libraries/File.class.php:1063 -#: libraries/messages.inc.php:1189 +#: libraries/messages.inc.php:1185 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -896,7 +896,7 @@ msgstr "" "Pokusili jste se importovat soubor s nepodporovanou kompresí (%s). Buďto " "podpora není implementována nebo je vypnuta ve vaší konfiguraci." -#: import.php:337 libraries/messages.inc.php:547 +#: import.php:337 libraries/messages.inc.php:543 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -907,30 +907,30 @@ msgstr "" "Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." #: import.php:372 libraries/display_import.lib.php:24 -#: libraries/messages.inc.php:125 +#: libraries/messages.inc.php:121 msgid "Could not load import plugins, please check your installation!" msgstr "" "Nepodařilo se nahrát pluginy pro import, zkontrolujte prosím vaší instalaci!" -#: import.php:397 libraries/messages.inc.php:102 +#: import.php:397 libraries/messages.inc.php:98 msgid "The bookmark has been deleted." msgstr "Položka byla smazána z oblíbených." -#: import.php:401 libraries/messages.inc.php:879 +#: import.php:401 libraries/messages.inc.php:875 msgid "Showing bookmark" msgstr "Zobrazuji oblíbený dotaz" -#: import.php:403 libraries/messages.inc.php:101 +#: import.php:403 libraries/messages.inc.php:97 #, php-format msgid "Bookmark %s created" msgstr "Vytvořen oblíbený dotaz %s" -#: import.php:409 import.php:415 libraries/messages.inc.php:407 +#: import.php:409 import.php:415 libraries/messages.inc.php:403 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Import byl úspěšně dokončen, bylo provedeno %d dotazů." -#: import.php:424 libraries/messages.inc.php:1107 +#: import.php:424 libraries/messages.inc.php:1103 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -938,11 +938,11 @@ msgstr "" "Limit pro běh importu vypršel, prosím odešlete formulář znovu se stejným " "souborem a import bude pokračovat." -#: index.php:190 libraries/messages.inc.php:553 +#: index.php:190 libraries/messages.inc.php:549 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin se lépe používá v prohlížeči podporujícím rámce." -#: js/messages.php:25 libraries/messages.inc.php:155 +#: js/messages.php:25 libraries/messages.inc.php:151 #: server_synchronize.php:345 server_synchronize.php:357 #: server_synchronize.php:373 server_synchronize.php:380 #: server_synchronize.php:739 server_synchronize.php:767 @@ -950,116 +950,116 @@ msgstr "phpMyAdmin se lépe používá v prohlížeči podporujícím rámce msgid "Click to select" msgstr "Klikněte pro vybrání" -#: js/messages.php:26 libraries/messages.inc.php:156 +#: js/messages.php:26 libraries/messages.inc.php:152 msgid "Click to unselect" msgstr "Klikněte pro zrušení výběru" #: js/messages.php:27 libraries/import.lib.php:103 -#: libraries/messages.inc.php:550 sql.php:89 +#: libraries/messages.inc.php:546 sql.php:89 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Příkaz „DROP DATABASE“ je vypnutý." -#: js/messages.php:30 libraries/messages.inc.php:270 +#: js/messages.php:30 libraries/messages.inc.php:266 #: libraries/mult_submits.inc.php:258 sql.php:188 msgid "Do you really want to " msgstr "Opravdu si přejete vykonat příkaz " -#: js/messages.php:31 libraries/messages.inc.php:271 +#: js/messages.php:31 libraries/messages.inc.php:267 #: libraries/mult_submits.inc.php:258 sql.php:172 msgid "You are about to DESTROY a complete database!" msgstr "Chystáte se ZRUŠIT celou databázi!" -#: js/messages.php:34 libraries/messages.inc.php:94 +#: js/messages.php:34 libraries/messages.inc.php:90 msgid "You are about to DISABLE a BLOB Repository!" msgstr "Chystáte se vypnout skladiště BLOBů!" -#: js/messages.php:35 libraries/messages.inc.php:91 +#: js/messages.php:35 libraries/messages.inc.php:87 #, php-format msgid "Are you sure you want to disable all BLOB references for database %s?" msgstr "Chcete vypnout všechny odkazy do skladiště BLOBů v databázi %s?" -#: js/messages.php:38 libraries/messages.inc.php:342 +#: js/messages.php:38 libraries/messages.inc.php:338 msgid "Missing value in the form!" msgstr "Chybějící hodnota ve formuláři!" -#: js/messages.php:39 libraries/messages.inc.php:570 +#: js/messages.php:39 libraries/messages.inc.php:566 msgid "This is not a number!" msgstr "Nebylo zadáno číslo!" -#: js/messages.php:42 libraries/messages.inc.php:380 +#: js/messages.php:42 libraries/messages.inc.php:376 msgid "The host name is empty!" msgstr "Jméno počítače je prázdné!" -#: js/messages.php:43 libraries/messages.inc.php:1208 +#: js/messages.php:43 libraries/messages.inc.php:1204 msgid "The user name is empty!" msgstr "Jméno uživatele je prázdné!" -#: js/messages.php:44 libraries/messages.inc.php:607 +#: js/messages.php:44 libraries/messages.inc.php:603 #: server_privileges.php:1197 user_password.php:70 msgid "The password is empty!" msgstr "Heslo je prázdné!" -#: js/messages.php:45 libraries/messages.inc.php:609 +#: js/messages.php:45 libraries/messages.inc.php:605 #: server_privileges.php:1195 user_password.php:73 msgid "The passwords aren't the same!" msgstr "Hesla nejsou stejná!" -#: js/messages.php:49 libraries/messages.inc.php:123 pmd_general.php:342 +#: js/messages.php:49 libraries/messages.inc.php:119 pmd_general.php:342 #: pmd_general.php:379 msgid "Cancel" msgstr "Zrušit" -#: js/messages.php:52 libraries/messages.inc.php:514 +#: js/messages.php:52 libraries/messages.inc.php:510 msgid "Modifications have been saved" msgstr "Změny byly uloženy" -#: js/messages.php:53 libraries/messages.inc.php:741 +#: js/messages.php:53 libraries/messages.inc.php:737 msgid "Relation deleted" msgstr "Relace smazána" -#: js/messages.php:54 libraries/messages.inc.php:340 +#: js/messages.php:54 libraries/messages.inc.php:336 msgid "FOREIGN KEY relation added" msgstr "Relace FOREIGN KEY byla vytvořena" -#: js/messages.php:55 libraries/messages.inc.php:434 +#: js/messages.php:55 libraries/messages.inc.php:430 msgid "Internal relation added" msgstr "Interní relace vytvořena" -#: js/messages.php:56 libraries/messages.inc.php:299 +#: js/messages.php:56 libraries/messages.inc.php:295 msgid "Error: Relation not added." msgstr "Chyba: relace nebyla přidána." -#: js/messages.php:57 libraries/messages.inc.php:300 +#: js/messages.php:57 libraries/messages.inc.php:296 msgid "Error: relation already exists." msgstr "Chyba: relace již existuje." -#: js/messages.php:58 libraries/messages.inc.php:302 +#: js/messages.php:58 libraries/messages.inc.php:298 msgid "Error saving coordinates for Designer." msgstr "Chyba při ukládání souřadnic pro Návrháře." -#: js/messages.php:59 libraries/messages.inc.php:351 +#: js/messages.php:59 libraries/messages.inc.php:347 #: libraries/relation.lib.php:107 msgid "General relation features" msgstr "Obecné funkce relací" -#: js/messages.php:59 libraries/messages.inc.php:260 +#: js/messages.php:59 libraries/messages.inc.php:256 #: libraries/relation.lib.php:101 libraries/relation.lib.php:108 msgid "Disabled" msgstr "Vypnuto" -#: js/messages.php:60 libraries/messages.inc.php:850 +#: js/messages.php:60 libraries/messages.inc.php:846 msgid "Select referenced key" msgstr "Zvolte odkazovaný klíč" -#: js/messages.php:61 libraries/messages.inc.php:848 +#: js/messages.php:61 libraries/messages.inc.php:844 msgid "Select Foreign Key" msgstr "Zvolte cizí klíč" -#: js/messages.php:62 libraries/messages.inc.php:653 +#: js/messages.php:62 libraries/messages.inc.php:649 msgid "Please select the primary key or a unique key" msgstr "Zvolte, prosím, primární nebo unikátní klíč" -#: js/messages.php:63 libraries/messages.inc.php:142 pmd_general.php:77 +#: js/messages.php:63 libraries/messages.inc.php:138 pmd_general.php:77 #: tbl_relation.php:548 msgid "Choose field to display" msgstr "Zvolte které sloupce zobrazit" @@ -1075,9 +1075,9 @@ msgid "Prev" msgstr "Předchozí" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2332 -#: libraries/common.lib.php:2335 libraries/display_tbl.lib.php:338 -#: libraries/messages.inc.php:543 server_binlog.php:205 server_binlog.php:207 +#: js/messages.php:77 libraries/common.lib.php:2344 +#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: libraries/messages.inc.php:539 server_binlog.php:205 server_binlog.php:207 #: tbl_printview.php:424 tbl_structure.php:802 msgid "Next" msgstr "Další" @@ -1136,63 +1136,63 @@ msgid "December" msgstr "prosinec" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1543 +#: js/messages.php:97 libraries/common.lib.php:1555 msgid "Jan" msgstr "led" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1545 +#: js/messages.php:99 libraries/common.lib.php:1557 msgid "Feb" msgstr "úno" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1547 +#: js/messages.php:101 libraries/common.lib.php:1559 msgid "Mar" msgstr "bře" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1549 +#: js/messages.php:103 libraries/common.lib.php:1561 msgid "Apr" msgstr "dub" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1551 +#: js/messages.php:105 libraries/common.lib.php:1563 msgctxt "Short month name" msgid "May" msgstr "kvě" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1553 +#: js/messages.php:107 libraries/common.lib.php:1565 msgid "Jun" msgstr "čen" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1555 +#: js/messages.php:109 libraries/common.lib.php:1567 msgid "Jul" msgstr "čec" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1557 +#: js/messages.php:111 libraries/common.lib.php:1569 msgid "Aug" msgstr "srp" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1559 +#: js/messages.php:113 libraries/common.lib.php:1571 msgid "Sep" msgstr "zář" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1561 +#: js/messages.php:115 libraries/common.lib.php:1573 msgid "Oct" msgstr "říj" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1563 +#: js/messages.php:117 libraries/common.lib.php:1575 msgid "Nov" msgstr "lis" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1565 +#: js/messages.php:119 libraries/common.lib.php:1577 msgid "Dec" msgstr "pro" @@ -1225,37 +1225,37 @@ msgid "Saturday" msgstr "Sobota" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1568 +#: js/messages.php:132 libraries/common.lib.php:1580 msgid "Sun" msgstr "Ned" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1570 +#: js/messages.php:134 libraries/common.lib.php:1582 msgid "Mon" msgstr "Pon" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1572 +#: js/messages.php:136 libraries/common.lib.php:1584 msgid "Tue" msgstr "Úte" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1574 +#: js/messages.php:138 libraries/common.lib.php:1586 msgid "Wed" msgstr "Stř" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1576 +#: js/messages.php:140 libraries/common.lib.php:1588 msgid "Thu" msgstr "Čtv" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1578 +#: js/messages.php:142 libraries/common.lib.php:1590 msgid "Fri" msgstr "Pát" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1580 +#: js/messages.php:144 libraries/common.lib.php:1592 msgid "Sat" msgstr "Sob" @@ -1311,22 +1311,22 @@ msgstr "Minuty" msgid "Second" msgstr "Sekundy" -#: libraries/Config.class.php:1015 libraries/messages.inc.php:338 +#: libraries/Config.class.php:1015 libraries/messages.inc.php:334 msgid "Font size" msgstr "Velikost písma" #: libraries/File.class.php:344 libraries/File.class.php:432 #: libraries/File.class.php:569 libraries/File.class.php:708 -#: libraries/messages.inc.php:1201 +#: libraries/messages.inc.php:1197 msgid "Unknown error in file upload." msgstr "Neznámá chyba při nahrávání souboru." -#: libraries/File.class.php:414 libraries/messages.inc.php:1198 +#: libraries/File.class.php:414 libraries/messages.inc.php:1194 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "Velikost nahraného souboru přesahuje nastavení upload_max_filesize v php.ini." -#: libraries/File.class.php:417 libraries/messages.inc.php:1197 +#: libraries/File.class.php:417 libraries/messages.inc.php:1193 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -1334,23 +1334,23 @@ msgstr "" "Velikost nahraného souboru přesahuje hodnotu MAX_FILE_SIZE, která byla " "zadána v HTML formuláři." -#: libraries/File.class.php:420 libraries/messages.inc.php:1200 +#: libraries/File.class.php:420 libraries/messages.inc.php:1196 msgid "The uploaded file was only partially uploaded." msgstr "Soubor byl nahrán jen částečně." -#: libraries/File.class.php:423 libraries/messages.inc.php:1199 +#: libraries/File.class.php:423 libraries/messages.inc.php:1195 msgid "Missing a temporary folder." msgstr "Chybějící adresář pro dočasné soubory." -#: libraries/File.class.php:426 libraries/messages.inc.php:1195 +#: libraries/File.class.php:426 libraries/messages.inc.php:1191 msgid "Failed to write file to disk." msgstr "Chyba při zapisování souboru na disk." -#: libraries/File.class.php:429 libraries/messages.inc.php:1196 +#: libraries/File.class.php:429 libraries/messages.inc.php:1192 msgid "File upload stopped by extension." msgstr "Nahrávání souboru zastaveno rozšířením." -#: libraries/File.class.php:908 libraries/messages.inc.php:319 +#: libraries/File.class.php:908 libraries/messages.inc.php:315 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -1358,34 +1358,34 @@ msgstr "" "Chyba při přejmenování nahraného soubory, viz [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" -#: libraries/Index.class.php:428 libraries/messages.inc.php:554 +#: libraries/Index.class.php:428 libraries/messages.inc.php:550 #: tbl_relation.php:529 msgid "No index defined!" msgstr "Není definován žádný index!" -#: libraries/Index.class.php:433 libraries/messages.inc.php:411 +#: libraries/Index.class.php:433 libraries/messages.inc.php:407 #: server_databases.php:132 tbl_tracking.php:316 msgid "Indexes" msgstr "Indexy" -#: libraries/Index.class.php:444 libraries/messages.inc.php:1186 +#: libraries/Index.class.php:444 libraries/messages.inc.php:1182 #: 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:475 tbl_tracking.php:322 msgid "Unique" msgstr "Unikátní" -#: libraries/Index.class.php:445 libraries/messages.inc.php:596 +#: libraries/Index.class.php:445 libraries/messages.inc.php:592 #: tbl_tracking.php:323 msgid "Packed" msgstr "Zabaleno" -#: libraries/Index.class.php:447 libraries/messages.inc.php:131 +#: libraries/Index.class.php:447 libraries/messages.inc.php:127 #: tbl_tracking.php:325 msgid "Cardinality" msgstr "Mohutnost" -#: libraries/Index.class.php:450 libraries/messages.inc.php:162 +#: libraries/Index.class.php:450 libraries/messages.inc.php:158 #: tbl_tracking.php:279 tbl_tracking.php:328 msgid "Comment" msgstr "Komentář" @@ -1393,22 +1393,22 @@ msgstr "Komentář" #: libraries/Index.class.php:466 libraries/common.lib.php:616 #: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:280 pdf_pages.php:280 +#: libraries/messages.inc.php:276 pdf_pages.php:280 #: setup/frames/index.inc.php:124 setup/lib/messages.inc.php:352 #: tbl_row_action.php:69 msgid "Edit" msgstr "Upravit" -#: libraries/Index.class.php:472 libraries/messages.inc.php:666 +#: libraries/Index.class.php:472 libraries/messages.inc.php:662 msgid "The primary key has been dropped" msgstr "Primární klíč byl odstraněn" -#: libraries/Index.class.php:476 libraries/messages.inc.php:413 +#: libraries/Index.class.php:476 libraries/messages.inc.php:409 #, php-format msgid "Index %s has been dropped" msgstr "Index %s byl odstraněn" -#: libraries/Index.class.php:576 libraries/messages.inc.php:412 +#: libraries/Index.class.php:576 libraries/messages.inc.php:408 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -1417,7 +1417,7 @@ 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/messages.inc.php:218 +#: libraries/List_Database.class.php:431 libraries/messages.inc.php:214 #: libraries/server_links.inc.php:41 server_databases.php:88 #: server_privileges.php:1621 setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" @@ -1447,85 +1447,85 @@ msgstr[0] "Vložen %1$d řádek." msgstr[1] "Vloženy %1$d řádky." msgstr[2] "Vloženo %1$d řádek." -#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:549 +#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:545 msgid "" "There is no detailed status information available for this storage engine." msgstr "Nejsou dostupné podrobnější informace o tomto úložišti." -#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:291 +#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:287 #, php-format msgid "%s is available on this MySQL server." msgstr "Úložiště %s je dostupné na tomto MySQL serveru." -#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:292 +#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:288 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "Úložiště %s je vypnuté na tomto MySQL serveru." -#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:294 +#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:290 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "Tento MySQL server nepodporuje úložiště %s." -#: libraries/Table.class.php:1019 libraries/messages.inc.php:443 +#: libraries/Table.class.php:1019 libraries/messages.inc.php:439 msgid "Invalid database" msgstr "Chybná databáze" -#: libraries/Table.class.php:1033 libraries/messages.inc.php:450 +#: libraries/Table.class.php:1033 libraries/messages.inc.php:446 #: tbl_get_field.php:26 msgid "Invalid table name" msgstr "Chybné jméno tabulky" -#: libraries/Table.class.php:1048 libraries/messages.inc.php:301 +#: libraries/Table.class.php:1048 libraries/messages.inc.php:297 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "Chyba při přejmenování tabulky %1$s na %2$s" -#: libraries/Table.class.php:1132 libraries/messages.inc.php:754 +#: libraries/Table.class.php:1132 libraries/messages.inc.php:750 #, php-format msgid "Table %s has been renamed to %s" msgstr "Tabulka %s byla přejmenována na %s" -#: libraries/Theme.class.php:162 libraries/messages.inc.php:1099 +#: libraries/Theme.class.php:162 libraries/messages.inc.php:1095 #, php-format msgid "No valid image path for theme %s found!" msgstr "Nebyla nalezena platná cesta k obrázkům pro vzhled %s!" -#: libraries/Theme.class.php:384 libraries/messages.inc.php:1097 +#: libraries/Theme.class.php:384 libraries/messages.inc.php:1093 msgid "No preview available." msgstr "Náhled není k dispozici." -#: libraries/Theme.class.php:387 libraries/messages.inc.php:1089 +#: libraries/Theme.class.php:387 libraries/messages.inc.php:1085 msgid "take it" msgstr "zvolit" -#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1096 +#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1092 #, php-format msgid "Default theme %s not found!" msgstr "Výchozí vzhled %s nebyl nalezen!" -#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1098 +#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1094 #, php-format msgid "Theme %s not found!" msgstr "Vzhled %s nebyl nalezen!" -#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1100 +#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1096 #, php-format msgid "Theme path not found for theme %s!" msgstr "Nebyla nalezena platná cesta k vzhledu %s!" -#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1101 +#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1097 #: test/theme.php:161 themes.php:21 themes.php:41 msgid "Theme / Style" msgstr "Vzhled" -#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:172 +#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:168 msgid "Cannot connect: invalid settings." msgstr "Nepodařilo se připojit: chybné nastavení." #: libraries/auth/config.auth.lib.php:92 #: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65 -#: libraries/messages.inc.php:1238 test/theme.php:152 +#: libraries/messages.inc.php:1234 test/theme.php:152 #, php-format msgid "Welcome to %s" msgstr "Vítejte v %s" @@ -1551,51 +1551,51 @@ msgstr "" "php a ujistěte se, že jsou totožné s těmi, které máte od administrátora " "MySQL serveru." -#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:488 +#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:484 msgid "Log in" msgstr "Přihlášení" #: libraries/auth/cookie.auth.lib.php:246 -#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:659 +#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:655 #: libraries/navigation_header.inc.php:93 #: libraries/navigation_header.inc.php:95 msgid "phpMyAdmin documentation" msgstr "Dokumentace phpMyAdmina" #: libraries/auth/cookie.auth.lib.php:258 -#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:492 +#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:488 msgid "You can enter hostname/IP address and port separated by space." msgstr "Můžete zadat jméno počítače (nebo IP adresu) a port oddělené mezerou." -#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:493 +#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:489 msgid "Server:" msgstr "Server:" -#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:494 +#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:490 msgid "Username:" msgstr "Jméno:" -#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:491 +#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:487 msgid "Password:" msgstr "Heslo:" -#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:854 +#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:850 msgid "Server Choice" msgstr "Server" #: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 -#: libraries/messages.inc.php:177 +#: libraries/messages.inc.php:173 msgid "Cookies must be enabled past this point." msgstr "Přihlášení vyžaduje povolené cookies." #: libraries/auth/cookie.auth.lib.php:671 -#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:489 +#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:485 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "Přihlášení bez hesla je zakázáno v konfiguraci (viz AllowNoPassword)" #: libraries/auth/cookie.auth.lib.php:675 -#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:544 +#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:540 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" @@ -1604,53 +1604,53 @@ msgstr "" #: libraries/auth/cookie.auth.lib.php:685 #: libraries/auth/cookie.auth.lib.php:687 -#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:126 +#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:122 msgid "Cannot log in to the MySQL server" msgstr "Nepodařilo se přihlášení k MySQL serveru" -#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1245 +#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1241 msgid "Wrong username/password. Access denied." msgstr "Špatné uživatelské jméno nebo heslo. Přístup odepřen." #: libraries/auth/swekey/swekey.auth.lib.php:118 -#: libraries/messages.inc.php:1057 +#: libraries/messages.inc.php:1053 #, php-format msgid "File %s does not contain any key id" msgstr "Soubor %s neobsahuje ID klíče" #: libraries/auth/swekey/swekey.auth.lib.php:157 #: libraries/auth/swekey/swekey.auth.lib.php:180 -#: libraries/messages.inc.php:1056 +#: libraries/messages.inc.php:1052 msgid "Hardware authentication failed" msgstr "Hardwarová autentizace selhala" #: libraries/auth/swekey/swekey.auth.lib.php:166 -#: libraries/messages.inc.php:1058 +#: libraries/messages.inc.php:1054 msgid "No valid authentication key plugged" msgstr "Nebyl připojen autentizační klíč" #: libraries/auth/swekey/swekey.auth.lib.php:202 -#: libraries/messages.inc.php:1055 +#: libraries/messages.inc.php:1051 msgid "Authenticating..." msgstr "Authentizuji..." -#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1230 +#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1226 msgid "View image" msgstr "Zobrazit obrázek" -#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:652 +#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:648 msgid "Play audio" msgstr "Přehrát zvuk" -#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1232 +#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1228 msgid "View video" msgstr "Přehrát video" -#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:269 +#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:265 msgid "Download file" msgstr "Stáhnout soubor" -#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:128 +#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:124 msgid "" "Couldn't load the iconv or recode extension needed for charset conversion. " "Either configure PHP to enable these extensions or disable charset " @@ -1662,7 +1662,7 @@ msgstr "" #: libraries/charset_conversion.lib.php:79 #: libraries/charset_conversion.lib.php:90 -#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:130 +#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:126 msgid "" "Couldn't use the iconv, libiconv, or recode_string functions, although the " "necessary extensions appear to be loaded. Check your PHP configuration." @@ -1670,7 +1670,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/messages.inc.php:170 +#: libraries/common.inc.php:583 libraries/messages.inc.php:166 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!" @@ -1704,22 +1704,22 @@ msgstr "" msgid "Invalid server index: %s" msgstr "Chybný index serveru: „%s“" -#: libraries/common.inc.php:636 libraries/messages.inc.php:448 +#: libraries/common.inc.php:636 libraries/messages.inc.php:444 #, 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/messages.inc.php:856 libraries/select_server.lib.php:41 +#: libraries/messages.inc.php:852 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/messages.inc.php:437 +#: libraries/common.inc.php:823 libraries/messages.inc.php:433 msgid "Invalid authentication method set in configuration:" msgstr "V konfiguraci máte špatnou autentizační metodu:" -#: libraries/common.lib.php:147 libraries/messages.inc.php:499 +#: libraries/common.lib.php:147 libraries/messages.inc.php:495 #, php-format msgid "Max: %s%s" msgstr "Maximální velikost: %s%s" @@ -1739,7 +1739,7 @@ msgstr "en" #: libraries/common.lib.php:428 libraries/common.lib.php:430 #: libraries/common.lib.php:432 libraries/common.lib.php:448 #: libraries/common.lib.php:450 libraries/dbg/setup.php:25 -#: libraries/display_export.lib.php:164 libraries/messages.inc.php:267 +#: libraries/display_export.lib.php:164 libraries/messages.inc.php:263 #: libraries/relation.lib.php:97 libraries/sql_query_form.lib.php:451 #: libraries/sql_query_form.lib.php:454 main.php:229 pdf_pages.php:37 #: pdf_pages.php:43 pdf_pages.php:49 pdf_pages.php:54 @@ -1749,55 +1749,55 @@ msgstr "Dokumentace" #: libraries/common.lib.php:581 libraries/core.lib.php:234 #: libraries/core.lib.php:263 libraries/import.lib.php:134 -#: libraries/messages.inc.php:297 pdf_schema.php:32 pdf_schema.php:232 +#: libraries/messages.inc.php:293 pdf_schema.php:32 pdf_schema.php:232 #: tbl_change.php:1027 tbl_operations.php:213 tbl_relation.php:290 #: view_operations.php:62 msgid "Error" msgstr "Chyba" #: libraries/common.lib.php:595 libraries/header_printview.inc.php:61 -#: libraries/messages.inc.php:1023 server_processlist.php:60 +#: libraries/messages.inc.php:1019 server_processlist.php:60 #: server_status.php:247 msgid "SQL query" msgstr "SQL-dotaz" -#: libraries/common.lib.php:634 libraries/messages.inc.php:538 +#: libraries/common.lib.php:634 libraries/messages.inc.php:534 msgid "MySQL said: " msgstr "MySQL hlásí: " -#: libraries/common.lib.php:667 libraries/messages.inc.php:76 +#: libraries/common.lib.php:667 libraries/messages.inc.php:72 #: pdf_schema.php:241 user_password.php:115 msgid "Back" msgstr "Zpět" -#: libraries/common.lib.php:1177 libraries/messages.inc.php:309 +#: libraries/common.lib.php:1177 libraries/messages.inc.php:305 #: setup/lib/messages.inc.php:353 msgid "Explain SQL" msgstr "Vysvětlit SQL" -#: libraries/common.lib.php:1180 libraries/messages.inc.php:551 +#: libraries/common.lib.php:1180 libraries/messages.inc.php:547 msgid "Skip Explain SQL" msgstr "Bez vysvětlení (EXPLAIN) SQL" -#: libraries/common.lib.php:1212 libraries/messages.inc.php:563 +#: libraries/common.lib.php:1212 libraries/messages.inc.php:559 msgid "Without PHP Code" msgstr "Bez PHP kódu" -#: libraries/common.lib.php:1215 libraries/messages.inc.php:649 +#: libraries/common.lib.php:1215 libraries/messages.inc.php:645 #: setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "Vytvořit PHP kód" -#: libraries/common.lib.php:1233 libraries/messages.inc.php:737 +#: libraries/common.lib.php:1233 libraries/messages.inc.php:733 #: server_status.php:341 setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "Obnovit" -#: libraries/common.lib.php:1242 libraries/messages.inc.php:575 +#: libraries/common.lib.php:1242 libraries/messages.inc.php:571 msgid "Skip Validate SQL" msgstr "Bez kontroly SQL" -#: libraries/common.lib.php:1245 libraries/messages.inc.php:1220 +#: libraries/common.lib.php:1245 libraries/messages.inc.php:1216 #: setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "Zkontrolovat SQL" @@ -1811,11 +1811,11 @@ msgid "Inline" msgstr "Upravit zde" #: libraries/common.lib.php:1332 libraries/common.lib.php:1347 -#: libraries/messages.inc.php:713 +#: libraries/messages.inc.php:709 msgid "Profiling" msgstr "Profilování" -#: libraries/common.lib.php:1351 libraries/messages.inc.php:1108 +#: libraries/common.lib.php:1351 libraries/messages.inc.php:1104 #: libraries/tbl_triggers.lib.php:28 server_processlist.php:58 msgid "Time" msgstr "Čas" @@ -1849,46 +1849,56 @@ msgstr "PiB" msgid "EiB" msgstr "EiB" +#. l10n: Thousands separator +#: libraries/common.lib.php:1417 +msgid "," +msgstr " " + +#. l10n: Decimal separator +#: libraries/common.lib.php:1419 +msgid "." +msgstr "." + #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1584 +#: libraries/common.lib.php:1596 #: libraries/transformations/text_plain__dateformat.inc.php:28 msgid "%B %d, %Y at %I:%M %p" msgstr "%a %d. %b %Y, %H:%M" -#: libraries/common.lib.php:1886 +#: libraries/common.lib.php:1898 #, 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:2301 libraries/common.lib.php:2304 -#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:664 +#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:660 #: server_status.php:608 msgid "Begin" msgstr "Začátek" -#: libraries/common.lib.php:2302 libraries/common.lib.php:2305 -#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:665 +#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:661 #: server_binlog.php:168 server_binlog.php:170 msgid "Previous" msgstr "Předchozí" -#: libraries/common.lib.php:2333 libraries/common.lib.php:2336 -#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:289 +#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:285 msgid "End" msgstr "Konec" -#: libraries/common.lib.php:2409 libraries/messages.inc.php:455 +#: libraries/common.lib.php:2421 libraries/messages.inc.php:451 #, php-format msgid "Jump to database "%s"." msgstr "Přejít na databázi „%s“." -#: libraries/common.lib.php:2429 libraries/messages.inc.php:461 +#: libraries/common.lib.php:2441 libraries/messages.inc.php:457 #, 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/core.lib.php:286 libraries/dbg/setup.php:22 -#: libraries/messages.inc.php:127 +#: libraries/messages.inc.php:123 #, php-format msgid "" "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " @@ -1898,74 +1908,74 @@ msgstr "" "a], prosím zkontrolujte nastavení PHP." #: libraries/db_events.inc.php:20 libraries/db_events.inc.php:22 -#: libraries/export/sql.php:415 libraries/messages.inc.php:306 +#: libraries/export/sql.php:415 libraries/messages.inc.php:302 msgid "Events" msgstr "Události" #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 -#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:541 +#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:537 #: libraries/tbl_triggers.lib.php:27 setup/frames/index.inc.php:112 msgid "Name" msgstr "Název" -#: libraries/db_links.inc.php:45 libraries/messages.inc.php:216 +#: libraries/db_links.inc.php:45 libraries/messages.inc.php:212 #, php-format msgid "Database %s has been dropped." msgstr "Databáze %s byla zrušena." #: libraries/db_links.inc.php:57 libraries/db_links.inc.php:58 -#: libraries/db_links.inc.php:59 libraries/messages.inc.php:234 +#: libraries/db_links.inc.php:59 libraries/messages.inc.php:230 msgid "Database seems to be empty!" msgstr "Databáze se zdá být prázdná!" -#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1025 +#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1021 #: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60 #: querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1152 +#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1148 #: libraries/tbl_links.inc.php:69 msgid "Tracking" msgstr "Sledování" -#: libraries/db_links.inc.php:86 libraries/messages.inc.php:719 +#: libraries/db_links.inc.php:86 libraries/messages.inc.php:715 msgid "Query" msgstr "Dotaz" -#: libraries/db_links.inc.php:91 libraries/messages.inc.php:253 +#: libraries/db_links.inc.php:91 libraries/messages.inc.php:249 msgid "Designer" msgstr "Návrhář" -#: libraries/db_links.inc.php:98 libraries/messages.inc.php:397 +#: libraries/db_links.inc.php:98 libraries/messages.inc.php:393 #: libraries/server_links.inc.php:88 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:104 libraries/messages.inc.php:587 +#: libraries/db_links.inc.php:104 libraries/messages.inc.php:583 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" msgstr "Úpravy" -#: libraries/db_links.inc.php:111 libraries/messages.inc.php:709 +#: libraries/db_links.inc.php:111 libraries/messages.inc.php:705 #: libraries/server_links.inc.php:66 server_privileges.php:72 #: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117 msgid "Privileges" msgstr "Oprávnění" #: libraries/db_routines.inc.php:30 libraries/db_routines.inc.php:32 -#: libraries/messages.inc.php:812 +#: libraries/messages.inc.php:808 msgid "Routines" msgstr "Rutiny" -#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:811 +#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:807 msgid "Return type" msgstr "Návratový typ" #: libraries/db_structure.lib.php:57 libraries/display_tbl.lib.php:1848 -#: libraries/messages.inc.php:65 +#: libraries/messages.inc.php:61 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -1973,43 +1983,43 @@ msgstr "" "Počet nemusí být přesný, viz [a@./Documentation.html#faq3_11@Documentation]" "FAQ 3.11[/a]" -#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:593 +#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:589 #: server_databases.php:142 tbl_printview.php:336 tbl_structure.php:683 msgid "Overhead" msgstr "Navíc" #: libraries/dbi/mysql.dbi.lib.php:112 libraries/dbi/mysqli.dbi.lib.php:124 -#: libraries/messages.inc.php:176 +#: libraries/messages.inc.php:172 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Nepodařilo se připojit jako controluser, který je nadefinován v nastaveních." #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 -#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:855 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:851 msgid "The server is not responding" msgstr "Server neodpovídá" #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:1010 +#: libraries/messages.inc.php:1006 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 libraries/messages.inc.php:255 +#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:251 #: tbl_structure.php:609 msgid "Details..." msgstr "Podrobnosti..." -#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:143 +#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:139 #: main.php:91 user_password.php:111 user_password.php:129 msgid "Change password" msgstr "Změnit heslo" -#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:561 +#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:557 #: libraries/replication_gui.lib.php:341 server_privileges.php:768 msgid "No Password" msgstr "Žádné heslo" -#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:610 +#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:606 #: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60 #: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335 #: libraries/replication_gui.lib.php:345 server_privileges.php:757 @@ -2018,13 +2028,13 @@ msgstr "Žádné heslo" msgid "Password" msgstr "Heslo" -#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:806 +#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:802 #: libraries/replication_gui.lib.php:349 libraries/replication_gui.lib.php:352 #: server_privileges.php:776 server_privileges.php:779 msgid "Re-type" msgstr "Heslo znovu" -#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:608 +#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:604 msgid "Password Hashing" msgstr "Hašovací funkce pro heslo" @@ -2032,90 +2042,90 @@ msgstr "Hašovací funkce pro heslo" msgid "MySQL 4.0 compatible" msgstr "Kompatibilní s MySQL 4.0" -#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:353 +#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:349 #: libraries/replication_gui.lib.php:356 server_privileges.php:783 msgid "Generate Password" msgstr "Vytvořit heslo" -#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:352 +#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:348 #: libraries/replication_gui.lib.php:359 server_privileges.php:786 msgid "Generate" msgstr "Vytvořit" #: libraries/display_create_database.lib.php:22 -#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:189 +#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:185 msgid "Create new database" msgstr "Vytvořit novou databázi" -#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:185 +#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:181 msgid "Create" msgstr "Vytvořit" -#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:564 +#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:560 #: server_privileges.php:74 server_privileges.php:1388 #: server_replication.php:35 msgid "No Privileges" msgstr "Nemáte oprávnění" -#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:445 +#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:441 msgid "Table must have at least one field." msgstr "Tabulka musí mít alespoň jeden sloupec." -#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:190 +#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:186 #, php-format msgid "Create table on database %s" msgstr "Vytvořit novou tabulku v databázi %s" -#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:577 +#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:573 msgid "Number of fields" msgstr "Počet sloupců" -#: libraries/display_export.lib.php:42 libraries/messages.inc.php:124 +#: libraries/display_export.lib.php:42 libraries/messages.inc.php:120 msgid "Could not load export plugins, please check your installation!" msgstr "" "Nepodařilo se nahrát pluginy pro export, zkontrolujte prosím vaší instalaci!" -#: libraries/display_export.lib.php:107 libraries/messages.inc.php:277 +#: libraries/display_export.lib.php:107 libraries/messages.inc.php:273 #, php-format msgid "Dump %s row(s) starting at record # %s" msgstr "Vypsat %s řádků od %s" -#: libraries/display_export.lib.php:115 libraries/messages.inc.php:274 +#: libraries/display_export.lib.php:115 libraries/messages.inc.php:270 msgid "Dump all rows" msgstr "Všechny řádky" -#: libraries/display_export.lib.php:125 libraries/messages.inc.php:852 +#: libraries/display_export.lib.php:125 libraries/messages.inc.php:848 #: setup/lib/messages.inc.php:82 msgid "Save as file" msgstr "Uložit jako soubor" -#: libraries/display_export.lib.php:134 libraries/messages.inc.php:828 +#: libraries/display_export.lib.php:134 libraries/messages.inc.php:824 #, php-format msgid "Save on server in %s directory" msgstr "Uložit na serveru v adresáři %s" -#: libraries/display_export.lib.php:142 libraries/messages.inc.php:594 +#: libraries/display_export.lib.php:142 libraries/messages.inc.php:590 #: setup/lib/messages.inc.php:90 msgid "Overwrite existing file(s)" msgstr "Přepsat existující soubory" -#: libraries/display_export.lib.php:148 libraries/messages.inc.php:330 +#: libraries/display_export.lib.php:148 libraries/messages.inc.php:326 msgid "File name template" msgstr "Vzor pro jméno souboru" -#: libraries/display_export.lib.php:152 libraries/messages.inc.php:327 +#: libraries/display_export.lib.php:152 libraries/messages.inc.php:323 msgid "server name" msgstr "jméno serveru" -#: libraries/display_export.lib.php:155 libraries/messages.inc.php:326 +#: libraries/display_export.lib.php:155 libraries/messages.inc.php:322 msgid "database name" msgstr "jméno databáze" -#: libraries/display_export.lib.php:158 libraries/messages.inc.php:328 +#: libraries/display_export.lib.php:158 libraries/messages.inc.php:324 msgid "table name" msgstr "jméno tabulky" -#: libraries/display_export.lib.php:162 libraries/messages.inc.php:329 +#: libraries/display_export.lib.php:162 libraries/messages.inc.php:325 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2126,24 +2136,24 @@ msgstr "" "libovolné řetězce pro formátování data a času. Dále budou provedena " "následující nahrazení: %3$s. Jakýkoliv jiný text zůstane zachován beze změny." -#: libraries/display_export.lib.php:202 libraries/messages.inc.php:331 +#: libraries/display_export.lib.php:202 libraries/messages.inc.php:327 msgid "remember template" msgstr "zapamatovat si hodnotu" #: libraries/display_export.lib.php:210 libraries/display_import.lib.php:178 -#: libraries/display_import.lib.php:191 libraries/messages.inc.php:145 +#: libraries/display_import.lib.php:191 libraries/messages.inc.php:141 #: libraries/sql_query_form.lib.php:549 msgid "Character set of the file:" msgstr "Znaková sada souboru:" -#: libraries/display_export.lib.php:235 libraries/messages.inc.php:166 +#: libraries/display_export.lib.php:235 libraries/messages.inc.php:162 #: setup/lib/messages.inc.php:84 msgid "Compression" 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/messages.inc.php:558 +#: libraries/export/sql.php:868 libraries/messages.inc.php:554 #: libraries/tbl_properties.inc.php:575 server_privileges.php:1836 #: server_processlist.php:75 msgid "None" @@ -2161,11 +2171,11 @@ msgstr "„zagzipováno“" msgid "bzipped" msgstr "„zabzipováno“" -#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1018 +#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1014 msgid "SQL compatibility mode" msgstr "Režim kompatibility SQL" -#: libraries/display_import.lib.php:67 libraries/messages.inc.php:398 +#: libraries/display_import.lib.php:67 libraries/messages.inc.php:394 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " @@ -2175,11 +2185,11 @@ msgstr "" "jedná o známou chybu prohlížečů založených na webkitu (Safari, Google " "Chrome, Arora apod.)." -#: libraries/display_import.lib.php:77 libraries/messages.inc.php:406 +#: libraries/display_import.lib.php:77 libraries/messages.inc.php:402 msgid "The file is being processed, please be patient." msgstr "Soubor je zpracováván, prosím buďte trpěliví." -#: libraries/display_import.lib.php:99 libraries/messages.inc.php:408 +#: libraries/display_import.lib.php:99 libraries/messages.inc.php:404 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." @@ -2187,41 +2197,41 @@ msgstr "" "Soubor je zpracováván, prosím buďte trpěliví. Podrobnosti o nahrávání nejsou " "dostupné." -#: libraries/display_import.lib.php:126 libraries/messages.inc.php:333 +#: libraries/display_import.lib.php:126 libraries/messages.inc.php:329 msgid "File to import" msgstr "Soubor pro importování" -#: libraries/display_import.lib.php:137 libraries/messages.inc.php:486 +#: libraries/display_import.lib.php:137 libraries/messages.inc.php:482 #: libraries/sql_query_form.lib.php:524 msgid "Location of the text file" msgstr "textový soubor" -#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1203 +#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1199 msgid "File uploads are not allowed on this server." msgstr "Upload souborů není na tomto serveru povolen." -#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1235 +#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1231 #: libraries/sql_query_form.lib.php:533 tbl_change.php:1028 msgid "The directory you set for upload work cannot be reached" msgstr "Adresář určený pro upload souborů nemohl být otevřen" -#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1236 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1232 #: libraries/sql_query_form.lib.php:536 tbl_change.php:1031 msgid "web server upload directory" msgstr "soubor z adresáře pro upload" -#: libraries/display_import.lib.php:212 libraries/messages.inc.php:167 +#: libraries/display_import.lib.php:212 libraries/messages.inc.php:163 #, php-format msgid "Imported file compression will be automatically detected from: %s" msgstr "" "Komprimace importovaného souboru bude automaticky rozpoznána. Podporovány " "jsou: %s" -#: libraries/display_import.lib.php:219 libraries/messages.inc.php:600 +#: libraries/display_import.lib.php:219 libraries/messages.inc.php:596 msgid "Partial import" msgstr "Částečný import" -#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1105 +#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1101 #, php-format msgid "" "Previous import timed out, after resubmitting will continue from position %d." @@ -2229,7 +2239,7 @@ msgstr "" "Předchozí ímport vyčerpal veškerý čas, po dalším odeslání bude import " "pokračovat od pozice %d." -#: libraries/display_import.lib.php:232 libraries/messages.inc.php:51 +#: libraries/display_import.lib.php:232 libraries/messages.inc.php:47 msgid "" "Allow the interruption of an import in case the script detects it is close " "to the PHP timeout limit. This might be good way to import large files, " @@ -2239,187 +2249,187 @@ msgstr "" "limit nastavený v PHP. Tímto způsobem můžete importovat i velké soubory, ale " "může to způsobit problémy s transakcemi." -#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1004 +#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1000 #: setup/lib/messages.inc.php:161 msgid "Number of records (queries) to skip from start" msgstr "Počet záznamů (dotazů) od začátku, které se mají přeskočit" -#: libraries/display_import.lib.php:255 libraries/messages.inc.php:396 +#: libraries/display_import.lib.php:255 libraries/messages.inc.php:392 #: setup/lib/messages.inc.php:160 msgid "Format of imported file" msgstr "Formát importovaného souboru" #: libraries/display_select_lang.lib.php:45 -#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:465 +#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:461 #: setup/frames/index.inc.php:70 msgid "Language" msgstr "Jazyk" -#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:447 +#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:443 #, php-format msgid "%d is not valid row number." msgstr "%d není platné číslo řádku." -#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:814 +#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:810 msgid "row(s) starting from record #" msgstr "řádků začínající od" -#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:817 +#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:813 msgid "horizontal" msgstr "vodorovném" -#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:816 +#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:812 msgid "horizontal (rotated headers)" msgstr "vodorovném (otočené hlavičky)" -#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:819 +#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:815 msgid "vertical" msgstr "svislém" -#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:818 +#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:814 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "ve %s režimu a opakovat hlavičky po %s řádcích" -#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:495 +#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:491 msgid "This operation could take a long time. Proceed anyway?" msgstr "Tato operace může trvat velmi dlouho. Chcete je přesto provést?" -#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1012 +#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1008 msgid "Sort by key" msgstr "Setřídit podle klíče" #: libraries/display_tbl.lib.php:555 libraries/import.lib.php:1082 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:591 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:587 #: tbl_select.php:267 tbl_structure.php:754 msgid "Options" msgstr "Nastavení" #: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:570 -#: libraries/messages.inc.php:601 +#: libraries/messages.inc.php:597 msgid "Partial Texts" msgstr "Zkrácené texty" #: libraries/display_tbl.lib.php:561 libraries/display_tbl.lib.php:574 -#: libraries/messages.inc.php:346 +#: libraries/messages.inc.php:342 msgid "Full Texts" msgstr "Celé texty" -#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:739 +#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:735 msgid "Relational key" msgstr "Relační klíč" -#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:738 +#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:734 msgid "Relational display field" msgstr "Položka k zobrazení v relacích" -#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:872 +#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:868 msgid "Show binary contents" msgstr "Zobrazit binární obsah" -#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:873 +#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:869 msgid "Show BLOB contents" msgstr "Zobrazit obsah BLOBu" -#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:871 +#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:867 msgid "Show binary contents as HEX" msgstr "Zobrazit binární obsah šestnáctkově (HEX)" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:375 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:371 #: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320 msgid "Hide" msgstr "Skrýt" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:508 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:504 #: libraries/tbl_properties.inc.php:144 transformation_overview.php:47 msgid "Browser transformation" msgstr "Transformace při prohlížení" #: libraries/display_tbl.lib.php:1126 libraries/display_tbl.lib.php:1130 -#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:308 +#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:304 msgid "Execute bookmarked query" msgstr "Spustit oblíbený dotaz" #: libraries/display_tbl.lib.php:1145 libraries/display_tbl.lib.php:1157 -#: libraries/messages.inc.php:244 +#: libraries/messages.inc.php:240 msgid "The row has been deleted" msgstr "Řádek byl smazán" #: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056 -#: libraries/messages.inc.php:460 server_processlist.php:71 +#: libraries/messages.inc.php:456 server_processlist.php:71 #: tbl_row_action.php:64 msgid "Kill" msgstr "Ukončit" -#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:849 +#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:845 msgid "in query" msgstr "v dotazu" -#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:881 +#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:877 msgid "Showing rows" msgstr "Zobrazeny záznamy" -#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1113 +#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1109 msgid "total" msgstr "celkem" -#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:727 +#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:723 #: sql.php:524 #, php-format msgid "Query took %01.4f sec" msgstr "dotaz trval %01.4f sekund" -#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:135 +#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:131 #: 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:471 msgid "Change" msgstr "Změnit" -#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:724 +#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:720 msgid "Query results operations" msgstr "Operace s výsledky dotazu" -#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:671 +#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:667 msgid "Print view (with full texts)" msgstr "Náhled pro tisk (s kompletními texty)" -#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:482 +#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:478 msgid "Link not found" msgstr "Odkaz nenalezen" -#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1224 +#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1220 #: main.php:228 msgid "Version information" msgstr "Informace o verzi" -#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:423 +#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:419 msgid "Data home directory" msgstr "Domovský adresář pro data" -#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:424 +#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:420 msgid "The common part of the directory path for all InnoDB data files." msgstr "Společná část cesty pro všechny soubory obsahující data InnoDB." -#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:422 +#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:418 msgid "Data files" msgstr "Soubor s daty" -#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:418 +#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:414 msgid "Autoextend increment" msgstr "Krok automatického zvětšování" -#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:419 +#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:415 msgid "" " The increment size for extending the size of an autoextending tablespace " "when it becomes full." msgstr " Velikost o kterou je zvětšen soubor s daty, pokud je zaplněný." -#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:420 +#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:416 msgid "Buffer pool size" msgstr "Velikost vyrovnávací paměti" -#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:421 +#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:417 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." @@ -2427,87 +2437,87 @@ msgstr "" "Velikost vyrovnávací paměti, kterou InnoDB používá pro vyrovnávací paměť dat " "a indexů tabulek." -#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:112 +#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:108 msgid "Buffer Pool" msgstr "Vyrovnávací paměť" -#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:426 +#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:422 #: server_status.php:306 msgid "InnoDB Status" msgstr "Stav InnoDB" -#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:113 +#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:109 msgid "Buffer Pool Usage" msgstr "Využití vyrovnávací paměti" -#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1114 +#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1110 #: server_databases.php:137 server_databases.php:305 server_status.php:414 #: server_status.php:475 server_status.php:496 tbl_printview.php:351 #: tbl_structure.php:697 msgid "Total" msgstr "Celkem" -#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:425 +#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:421 msgid "pages" msgstr "stránek" -#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:343 +#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:339 msgid "Free pages" msgstr "Volných stránek" -#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:259 +#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:255 msgid "Dirty pages" msgstr "Změněných stránek" -#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:230 +#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:226 msgid "Pages containing data" msgstr "Stránek obsahujících data" -#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:598 +#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:594 msgid "Pages to be flushed" msgstr "Stránek určených k uvolnění" -#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:119 +#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:115 msgid "Busy pages" msgstr "Zpracovávaných stránek" -#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:467 +#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:463 msgid "Latched pages" msgstr "Zamčených stránek" -#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:111 +#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:107 msgid "Buffer Pool Activity" msgstr "Aktivita vyrovnávací paměti" -#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:731 +#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:727 msgid "Read requests" msgstr "Požadavků na zápis" -#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1244 +#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1240 msgid "Write requests" msgstr "Požadavků na čtení" -#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:115 +#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:111 msgid "Read misses" msgstr "Výpadků při čtení" -#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:117 +#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:113 msgid "Write waits" msgstr "Čekání na zápis" -#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:114 +#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:110 msgid "Read misses in %" msgstr "Výpadků při čtení v %" -#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:116 +#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:112 msgid "Write waits in %" msgstr "Čekání na zápis v %" -#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:522 +#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:518 msgid "Data pointer size" msgstr "Velikost ukazatele na data" -#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:523 +#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:519 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." @@ -2515,11 +2525,11 @@ msgstr "" "Výchozí velikost ukazatele v bajtech, která bude použita pro vytváření " "MyISAM tabulek příkazem CREATE TABLE, pokud není uvedeno MAX_ROWS." -#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:528 +#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:524 msgid "Automatic recovery mode" msgstr "Automatický režim obnovy" -#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:529 +#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:525 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." @@ -2527,11 +2537,11 @@ msgstr "" "Režim automatické obnovy poškozených MyISAM tabulek. Nastavuje se parametrem " "--myisam-recover při spouštění serveru." -#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:527 +#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:523 msgid "Maximum size for temporary sort files" msgstr "Maximální velikost dočasných souborů pro řazení" -#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:526 +#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:522 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " @@ -2540,11 +2550,11 @@ msgstr "" "Maximální velikost dočasných souborů, které smí MySQL použít při obnově " "indexu (při REPAIR TABLE, ALTER TABLE nebo LOAD DATA INFILE)." -#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:525 +#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:521 msgid "Maximum size for temporary files on index creation" msgstr "Maximální velikost dočasných souborů při vytváření indexu" -#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:524 +#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:520 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " @@ -2553,11 +2563,11 @@ msgstr "" "Pokud by byl soubor pro vytváření MyISAM indexu byl větší než zde uvedená " "hodnota, použije se pomalejší metoda vyrovnávací paměti klíčů." -#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:531 +#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:527 msgid "Repair threads" msgstr "Vláken pro opravování" -#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:530 +#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:526 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." @@ -2565,11 +2575,11 @@ msgstr "" "Pokud je tato hodnota větší než 1, indexy v MyISAM tabulkách jsou vytvářeny " "paralelně (každý index vlastním vláknem) při obnově nebo řazení." -#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:533 +#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:529 msgid "Sort buffer size" msgstr "Velikost paměti pro řazení" -#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:532 +#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:528 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." @@ -2577,11 +2587,11 @@ msgstr "" "Paměť, která je alokována při řazení MyISAM indexů během jejich vytváření " "příkazem CREATE INDEX nebo opravování příkazem ALTER TABLE." -#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:620 +#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:616 msgid "Index cache size" msgstr "Velikost vyrovnávací paměti indexu" -#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:619 +#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:615 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." @@ -2590,11 +2600,11 @@ msgstr "" "velikost je 32MB. Zde alokovaná paměť se používá pouze pro vyrovnávací pamět " "stránek indexu." -#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:630 +#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:626 msgid "Record cache size" msgstr "Velikost vyrovnávací paměti záznamu" -#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:629 +#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:625 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " @@ -2604,11 +2614,11 @@ msgstr "" "ukládání dat tabulky. Výchozí velikost je 32MB. Tato pamět se používá k " "ukládání změn souborů zpracovávaných dat (.xtd) a ukazatelů řádků (.xtr)." -#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:624 +#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:620 msgid "Log cache size" msgstr "Velikost vyrovnávací paměti logů" -#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:623 +#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:619 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." @@ -2616,11 +2626,11 @@ msgstr "" "Množství paměti alokované pro vyrovnávací pamět transakčního logu, která se " "využívá pro dočasné ukládání dat transakčního logu. Výchozí velikost je 16MB." -#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:628 +#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:624 msgid "Log file threshold" msgstr "Prahová hodnota logového souboru" -#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:627 +#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:623 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." @@ -2628,11 +2638,11 @@ msgstr "" "Velikost, jaké musí transakční log dosáhnout předtím, než je vytvořen nový " "soubor. Východzí velikost je 16MB." -#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:634 +#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:630 msgid "Transaction buffer size" msgstr "Velikost vyrovnávací paměti transakcí" -#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:633 +#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:629 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." @@ -2640,11 +2650,11 @@ msgstr "" "Velikost vyrovnávací paměti logu souhrných transakcí (vytváří se 2 " "vyrovnávací paměti). Výchozí velikost je 1MB." -#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:611 +#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:607 msgid "Checkpoint frequency" msgstr "Četnost vytváření kontrolních bodů" -#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:612 +#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:608 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." @@ -2652,11 +2662,11 @@ msgstr "" "Množství dat zapsaných do logu transakcí předtím, než dojde k vytvoření " "kontrolního bodu. Výchozí velikost je 24MB." -#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:615 +#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:611 msgid "Data log threshold" msgstr "Nejvyšší velikost datového logu" -#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:616 +#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:612 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -2668,11 +2678,11 @@ msgstr "" "proměnné tedy může být zvýšena, aby se zvýšilo celkové množství dat, které " "může být uloženo v databázi." -#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:618 +#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:614 msgid "Garbage threshold" msgstr "Největší velikost odpadu (garbage)" -#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:617 +#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:613 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." @@ -2681,11 +2691,11 @@ msgstr "" "soubor stlačen. Tato hodnota se může pohybovat mezi 1 a 99. Výchozí hodnota " "je 50." -#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:622 +#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:618 msgid "Log buffer size" msgstr "Velikost vyrovnávací paměti logu" -#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:621 +#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:617 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " @@ -2695,27 +2705,27 @@ msgstr "" "velikost je 256MB. Vyrovnávací paměť se alokuje pro každé vlákno, ale pouze " "pokud toto vlákno potřebuje zapsat datový log." -#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:613 +#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:609 msgid "Data file grow size" msgstr "Velikost nárůstu souboru s daty" -#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:614 +#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:610 msgid "The grow size of the handle data (.xtd) files." msgstr "Velikost nárůstu souborů se zpracovávanými daty (.xtd)." -#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:632 +#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:628 msgid "Row file grow size" msgstr "Velikost nárůstu souboru řádků" -#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:631 +#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:627 msgid "The grow size of the row pointer (.xtr) files." msgstr "Velikost nárůstu souboru ukazatelů řádku (.xtr)." -#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:626 +#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:622 msgid "Log file count" msgstr "Počet souborů s logy" -#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:625 +#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:621 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -2728,19 +2738,19 @@ msgstr "" #: libraries/export/htmlword.php:132 libraries/export/odt.php:168 #: libraries/export/sql.php:881 libraries/export/texytext.php:130 -#: libraries/messages.inc.php:275 +#: libraries/messages.inc.php:271 msgid "Dumping data for table" msgstr "Vypisuji data pro tabulku" #: libraries/export/htmlword.php:185 libraries/export/odt.php:238 #: libraries/export/sql.php:785 libraries/export/texytext.php:177 -#: libraries/messages.inc.php:1086 +#: libraries/messages.inc.php:1082 msgid "Table structure for table" msgstr "Struktura tabulky" #: libraries/export/latex.php:125 libraries/export/sql.php:232 #: libraries/export/xml.php:102 libraries/header_printview.inc.php:57 -#: libraries/messages.inc.php:381 libraries/replication_gui.lib.php:63 +#: libraries/messages.inc.php:377 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:170 libraries/replication_gui.lib.php:265 #: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325 #: server_privileges.php:692 server_privileges.php:695 @@ -2752,183 +2762,183 @@ msgstr "Počítač" #: libraries/export/latex.php:130 libraries/export/sql.php:233 #: libraries/export/xml.php:107 libraries/header_printview.inc.php:59 -#: libraries/messages.inc.php:354 +#: libraries/messages.inc.php:350 msgid "Generation Time" msgstr "Vygenerováno" #: libraries/export/latex.php:131 libraries/export/sql.php:235 -#: libraries/export/xml.php:108 libraries/messages.inc.php:864 main.php:186 +#: libraries/export/xml.php:108 libraries/messages.inc.php:860 main.php:186 msgid "Server version" msgstr "Verze MySQL" #: libraries/export/latex.php:132 libraries/export/sql.php:236 -#: libraries/export/xml.php:109 libraries/messages.inc.php:651 +#: libraries/export/xml.php:109 libraries/messages.inc.php:647 msgid "PHP Version" msgstr "Verze PHP" #: libraries/export/latex.php:201 libraries/export/sql.php:868 -#: libraries/messages.inc.php:226 server_databases.php:127 +#: libraries/messages.inc.php:222 server_databases.php:127 #: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317 #: tbl_structure.php:666 msgid "Data" msgstr "Data" -#: libraries/export/odt.php:318 libraries/messages.inc.php:506 +#: libraries/export/odt.php:318 libraries/messages.inc.php:502 #: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "MIME typ" -#: libraries/export/sql.php:387 libraries/messages.inc.php:711 +#: libraries/export/sql.php:387 libraries/messages.inc.php:707 msgid "Procedures" msgstr "Procedury" -#: libraries/export/sql.php:401 libraries/messages.inc.php:348 +#: libraries/export/sql.php:401 libraries/messages.inc.php:344 msgid "Functions" msgstr "Funkce" -#: libraries/export/sql.php:618 libraries/messages.inc.php:174 +#: libraries/export/sql.php:618 libraries/messages.inc.php:170 msgid "Constraints for dumped tables" msgstr "Omezení pro exportované tabulky" -#: libraries/export/sql.php:627 libraries/messages.inc.php:175 +#: libraries/export/sql.php:627 libraries/messages.inc.php:171 msgid "Constraints for table" msgstr "Omezení pro tabulku" -#: libraries/export/sql.php:727 libraries/messages.inc.php:512 +#: libraries/export/sql.php:727 libraries/messages.inc.php:508 msgid "MIME TYPES FOR TABLE" msgstr "MIME TYPY PRO TABULKU" -#: libraries/export/sql.php:739 libraries/messages.inc.php:743 +#: libraries/export/sql.php:739 libraries/messages.inc.php:739 msgid "RELATIONS FOR TABLE" msgstr "RELACE PRO TABULKU" -#: libraries/export/sql.php:796 libraries/messages.inc.php:1178 +#: libraries/export/sql.php:796 libraries/messages.inc.php:1174 #: libraries/tbl_triggers.lib.php:19 msgid "Triggers" msgstr "Spouště" -#: libraries/export/sql.php:808 libraries/messages.inc.php:1046 +#: libraries/export/sql.php:808 libraries/messages.inc.php:1042 msgid "Structure for view" msgstr "Struktura pro pohled" -#: libraries/export/sql.php:817 libraries/messages.inc.php:1029 +#: libraries/export/sql.php:817 libraries/messages.inc.php:1025 msgid "Stand-in structure for view" msgstr "Zástupná struktura pro pohled" #: libraries/footer.inc.php:184 libraries/footer.inc.php:195 -#: libraries/footer.inc.php:198 libraries/messages.inc.php:586 +#: libraries/footer.inc.php:198 libraries/messages.inc.php:582 msgid "Open new phpMyAdmin window" msgstr "Otevřít nové okno phpMyAdmina" -#: libraries/header.inc.php:115 libraries/messages.inc.php:542 +#: libraries/header.inc.php:115 libraries/messages.inc.php:538 msgid "New table" msgstr "Nová tabulka" #: libraries/header_printview.inc.php:50 libraries/header_printview.inc.php:55 -#: libraries/messages.inc.php:1024 +#: libraries/messages.inc.php:1020 msgid "SQL result" msgstr "Výsledek SQL dotazu" -#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:350 +#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:346 msgid "Generated by" msgstr "Vygeneroval" #: libraries/header_printview.inc.php:63 libraries/import.lib.php:145 -#: libraries/messages.inc.php:820 navigation.php:652 navigation.php:674 +#: libraries/messages.inc.php:816 navigation.php:652 navigation.php:674 #: server_databases.php:122 tbl_printview.php:394 tbl_structure.php:366 #: tbl_structure.php:778 msgid "Rows" msgstr "Řádků" -#: libraries/import.lib.php:150 libraries/messages.inc.php:285 sql.php:520 +#: libraries/import.lib.php:150 libraries/messages.inc.php:281 sql.php:520 #: tbl_change.php:181 tbl_get_field.php:35 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL vrátil prázdný výsledek (tj. nulový počet řádků)." -#: libraries/import.lib.php:1078 libraries/messages.inc.php:399 +#: libraries/import.lib.php:1078 libraries/messages.inc.php:395 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "Následující tabulkybyly vytvořeny nebo změněny. Teď můžete:" -#: libraries/import.lib.php:1079 libraries/messages.inc.php:400 +#: libraries/import.lib.php:1079 libraries/messages.inc.php:396 msgid "View a structure`s contents by clicking on its name" msgstr "Zobrazit obsah tabulky kliknutím na její jméno" -#: libraries/import.lib.php:1080 libraries/messages.inc.php:401 +#: libraries/import.lib.php:1080 libraries/messages.inc.php:397 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "Změnit jakákoliv její nastavení kliknutím na odkaz \"Nastavení\"" -#: libraries/import.lib.php:1081 libraries/messages.inc.php:402 +#: libraries/import.lib.php:1081 libraries/messages.inc.php:398 msgid "Edit its structure by following the \"Structure\" link" msgstr "Upravit strukturu kliknutím na odkaz \"Struktura\"" -#: libraries/import.lib.php:1084 libraries/messages.inc.php:362 +#: libraries/import.lib.php:1084 libraries/messages.inc.php:358 msgid "Go to database" msgstr "Přejít na databázi" #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:869 +#: libraries/messages.inc.php:865 msgid "settings" msgstr "nastavení" -#: libraries/import.lib.php:1106 libraries/messages.inc.php:363 +#: libraries/import.lib.php:1106 libraries/messages.inc.php:359 msgid "Go to table" msgstr "Přejít na tabulku" -#: libraries/import.lib.php:1109 libraries/messages.inc.php:1047 +#: libraries/import.lib.php:1109 libraries/messages.inc.php:1043 msgid "structure" msgstr "struktura" -#: libraries/import.lib.php:1115 libraries/messages.inc.php:364 +#: libraries/import.lib.php:1115 libraries/messages.inc.php:360 msgid "Go to view" msgstr "Přejít na podhled" #: libraries/import/csv.php:58 libraries/import/csv.php:70 #: libraries/import/csv.php:74 libraries/import/csv.php:78 -#: libraries/messages.inc.php:442 +#: libraries/messages.inc.php:438 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "Neznámý parametr pro import CSV: %s" -#: libraries/import/csv.php:59 libraries/messages.inc.php:323 +#: libraries/import/csv.php:59 libraries/messages.inc.php:319 msgid "Fields terminated by" msgstr "Sloupce oddělené" -#: libraries/import/csv.php:71 libraries/messages.inc.php:320 +#: libraries/import/csv.php:71 libraries/messages.inc.php:316 msgid "Fields enclosed by" msgstr "Názvy sloupců uzavřené" -#: libraries/import/csv.php:75 libraries/messages.inc.php:321 +#: libraries/import/csv.php:75 libraries/messages.inc.php:317 msgid "Fields escaped by" msgstr "Názvy sloupců escapovány" -#: libraries/import/csv.php:79 libraries/messages.inc.php:481 +#: libraries/import/csv.php:79 libraries/messages.inc.php:477 msgid "Lines terminated by" msgstr "Řádky ukončené" -#: libraries/import/csv.php:119 libraries/messages.inc.php:439 +#: libraries/import/csv.php:119 libraries/messages.inc.php:435 #, php-format msgid "Invalid column (%s) specified!" msgstr "Byl zadán chybný sloupec (%s)!" #: libraries/import/csv.php:177 libraries/import/csv.php:424 -#: libraries/messages.inc.php:441 +#: libraries/messages.inc.php:437 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "Chybný formát CSV dat na řádku %d." -#: libraries/import/csv.php:312 libraries/messages.inc.php:440 +#: libraries/import/csv.php:312 libraries/messages.inc.php:436 #, php-format msgid "Invalid field count in CSV input on line %d." msgstr "Chybný počet položek v CSV datech na řádku %d." -#: libraries/import/ldi.php:55 libraries/messages.inc.php:446 +#: libraries/import/ldi.php:55 libraries/messages.inc.php:442 msgid "This plugin does not support compressed imports!" msgstr "Tento plugin nepodporuje komprimované soubory!" #: libraries/import/xml.php:74 libraries/import/xml.php:130 -#: libraries/messages.inc.php:1247 +#: libraries/messages.inc.php:1243 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -2957,398 +2967,388 @@ msgstr "Převést na Kanu" msgid "ltr" msgstr "ltr" -#. l10n: Thousands separator -#: libraries/messages.inc.php:21 -msgid "," -msgstr " " - -#. l10n: Decimal separator -#: libraries/messages.inc.php:23 -msgid "." -msgstr "." - -#: libraries/messages.inc.php:25 server_status.php:461 +#: libraries/messages.inc.php:21 server_status.php:461 msgid "Aborted" msgstr "Přerušené" -#: libraries/messages.inc.php:28 main.php:68 +#: libraries/messages.inc.php:24 main.php:68 msgid "Actions" msgstr "Akce" -#: libraries/messages.inc.php:34 libraries/tbl_properties.inc.php:780 +#: libraries/messages.inc.php:30 libraries/tbl_properties.inc.php:780 #: tbl_structure.php:543 #, php-format msgid "Add %s field(s)" msgstr "Přidat %s sloupců" -#: libraries/messages.inc.php:35 +#: libraries/messages.inc.php:31 msgid "Add custom comment into header (\\n splits lines)" msgstr "Přidat vlastní komentář do hlavičky (\\n odděluje řádky)" -#: libraries/messages.inc.php:36 +#: libraries/messages.inc.php:32 msgid "Add into comments" msgstr "Do komentářů přidat" -#: libraries/messages.inc.php:37 tbl_structure.php:541 +#: libraries/messages.inc.php:33 tbl_structure.php:541 msgid "Add new field" msgstr "Přidat sloupec" -#: libraries/messages.inc.php:38 server_privileges.php:1886 +#: libraries/messages.inc.php:34 server_privileges.php:1886 msgid "Add privileges on the following database" msgstr "Přidat oprávnění pro databázi" -#: libraries/messages.inc.php:39 server_privileges.php:1907 +#: libraries/messages.inc.php:35 server_privileges.php:1907 msgid "Add privileges on the following table" msgstr "Přidat oprávnění pro tabulku" -#: libraries/messages.inc.php:40 tbl_select.php:288 +#: libraries/messages.inc.php:36 tbl_select.php:288 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Přidat vyhledávací parametry (část dotazu po příkazu „WHERE“):" -#: libraries/messages.inc.php:41 tbl_indexes.php:251 +#: libraries/messages.inc.php:37 tbl_indexes.php:251 #, php-format msgid "Add to index  %s column(s)" msgstr "Přidat %s sloupců do indexu" -#: libraries/messages.inc.php:42 server_privileges.php:1570 +#: libraries/messages.inc.php:38 server_privileges.php:1570 #: server_privileges.php:1594 server_privileges.php:1988 #: server_privileges.php:2177 msgid "Add a new User" msgstr "Přidat nového uživatele" -#: libraries/messages.inc.php:43 server_privileges.php:931 +#: libraries/messages.inc.php:39 server_privileges.php:931 msgid "You have added a new user." msgstr "Uživatel byl přidán." -#: libraries/messages.inc.php:44 server_privileges.php:571 +#: libraries/messages.inc.php:40 server_privileges.php:571 msgid "Administration" msgstr "Správa" -#: libraries/messages.inc.php:45 tbl_structure.php:557 +#: libraries/messages.inc.php:41 tbl_structure.php:557 #, php-format msgid "After %s" msgstr "Po %s" -#: libraries/messages.inc.php:46 tbl_change.php:1147 +#: libraries/messages.inc.php:42 tbl_change.php:1147 msgid "Go back to previous page" msgstr "Návrat na předchozí stránku" -#: libraries/messages.inc.php:47 tbl_change.php:1148 +#: libraries/messages.inc.php:43 tbl_change.php:1148 msgid "Insert another new row" msgstr "Vložit další řádek" -#: libraries/messages.inc.php:48 tbl_change.php:1160 +#: libraries/messages.inc.php:44 tbl_change.php:1160 msgid "Edit next row" msgstr "Upravit následující řádek" -#: libraries/messages.inc.php:49 tbl_change.php:1152 +#: libraries/messages.inc.php:45 tbl_change.php:1152 msgid "Go back to this page" msgstr "Návrat na tuto stránku" -#: libraries/messages.inc.php:50 querywindow.php:115 +#: libraries/messages.inc.php:46 querywindow.php:115 msgid "All" msgstr "Všechno" -#: libraries/messages.inc.php:53 tbl_operations.php:249 +#: libraries/messages.inc.php:49 tbl_operations.php:249 msgid "Alter table order by" msgstr "Změnit pořadí tabulky podle" -#: libraries/messages.inc.php:54 tbl_operations.php:660 +#: libraries/messages.inc.php:50 tbl_operations.php:660 msgid "Analyze" msgstr "Analyzovat" -#: libraries/messages.inc.php:57 +#: libraries/messages.inc.php:53 msgid "and" msgstr "a" -#: libraries/messages.inc.php:59 pmd_general.php:87 +#: libraries/messages.inc.php:55 pmd_general.php:87 msgid "Angular links" msgstr "Pravoúhlé spoje" -#: libraries/messages.inc.php:60 tbl_structure.php:401 tbl_structure.php:415 +#: libraries/messages.inc.php:56 tbl_structure.php:401 tbl_structure.php:415 #: tbl_structure.php:429 #, php-format msgid "An index has been added on %s" msgstr "Na sloupci %s byl vytvořen index" -#: libraries/messages.inc.php:61 server_privileges.php:1521 +#: libraries/messages.inc.php:57 server_privileges.php:1521 #: server_privileges.php:2123 msgid "Any" msgstr "Jakýkoliv" -#: libraries/messages.inc.php:62 libraries/replication_gui.lib.php:298 +#: libraries/messages.inc.php:58 libraries/replication_gui.lib.php:298 #: server_privileges.php:725 msgid "Any host" msgstr "Jakýkoliv počítač" -#: libraries/messages.inc.php:63 libraries/replication_gui.lib.php:250 +#: libraries/messages.inc.php:59 libraries/replication_gui.lib.php:250 #: server_privileges.php:677 msgid "Any user" msgstr "Jakýkoliv uživatel" -#: libraries/messages.inc.php:64 server_synchronize.php:449 +#: libraries/messages.inc.php:60 server_synchronize.php:449 #: server_synchronize.php:894 msgid "Apply Selected Changes" msgstr "Provést vybrané změny" -#: libraries/messages.inc.php:66 tbl_structure.php:386 +#: libraries/messages.inc.php:62 tbl_structure.php:386 #, php-format msgid "A primary key has been added on %s" msgstr "V tabulce %s byl vytvořen primární klíč" -#: libraries/messages.inc.php:67 libraries/mysql_charsets.lib.php:368 +#: libraries/messages.inc.php:63 libraries/mysql_charsets.lib.php:368 msgid "Arabic" msgstr "Arabština" -#: libraries/messages.inc.php:68 libraries/mysql_charsets.lib.php:359 +#: libraries/messages.inc.php:64 libraries/mysql_charsets.lib.php:359 msgid "Armenian" msgstr "Arménština" -#: libraries/messages.inc.php:70 libraries/tbl_properties.inc.php:394 +#: libraries/messages.inc.php:66 libraries/tbl_properties.inc.php:394 msgid "As defined:" msgstr "Dle zadání:" -#: libraries/messages.inc.php:71 tbl_structure.php:556 +#: libraries/messages.inc.php:67 tbl_structure.php:556 msgid "At Beginning of Table" msgstr "Na začátku tabulky" -#: libraries/messages.inc.php:72 tbl_structure.php:555 +#: libraries/messages.inc.php:68 tbl_structure.php:555 msgid "At End of Table" msgstr "Na konci tabulky" -#: libraries/messages.inc.php:73 libraries/tbl_properties.inc.php:108 +#: libraries/messages.inc.php:69 libraries/tbl_properties.inc.php:108 #: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:144 #: tbl_structure.php:180 msgid "Attributes" msgstr "Vlastnosti" -#: libraries/messages.inc.php:74 pdf_pages.php:303 pdf_pages.php:306 +#: libraries/messages.inc.php:70 pdf_pages.php:303 pdf_pages.php:306 msgid "Automatic layout" msgstr "automatické rozvržení" -#: libraries/messages.inc.php:77 libraries/mysql_charsets.lib.php:354 +#: libraries/messages.inc.php:73 libraries/mysql_charsets.lib.php:354 msgid "Baltic" msgstr "Baltické" -#: libraries/messages.inc.php:78 libraries/sqlparser.lib.php:175 +#: libraries/messages.inc.php:74 libraries/sqlparser.lib.php:175 msgid "BEGIN CUT" msgstr "ZAČÁTEK VÝPISU" -#: libraries/messages.inc.php:79 libraries/sqlparser.lib.php:179 +#: libraries/messages.inc.php:75 libraries/sqlparser.lib.php:179 msgid "BEGIN RAW" msgstr "ZAČÁTEK VÝPISU" -#: libraries/messages.inc.php:80 libraries/mysql_charsets.lib.php:201 +#: libraries/messages.inc.php:76 libraries/mysql_charsets.lib.php:201 #: libraries/mysql_charsets.lib.php:402 tbl_change.php:518 msgid "Binary" msgstr "Binární" -#: libraries/messages.inc.php:81 tbl_change.php:894 +#: libraries/messages.inc.php:77 tbl_change.php:894 msgid "Binary - do not edit" msgstr "Binární - neupravujte" -#: libraries/messages.inc.php:82 libraries/server_links.inc.php:76 +#: libraries/messages.inc.php:78 libraries/server_links.inc.php:76 #: server_binlog.php:110 server_status.php:253 test/theme.php:121 msgid "Binary log" msgstr "Binární log" -#: libraries/messages.inc.php:83 server_binlog.php:217 +#: libraries/messages.inc.php:79 server_binlog.php:217 msgid "Event type" msgstr "Typ události" -#: libraries/messages.inc.php:84 server_binlog.php:220 +#: libraries/messages.inc.php:80 server_binlog.php:220 msgid "Information" msgstr "Informace" -#: libraries/messages.inc.php:85 server_binlog.php:215 +#: libraries/messages.inc.php:81 server_binlog.php:215 msgid "Log name" msgstr "Jméno logu" -#: libraries/messages.inc.php:86 server_binlog.php:219 +#: libraries/messages.inc.php:82 server_binlog.php:219 msgid "Original position" msgstr "Původní pozice" -#: libraries/messages.inc.php:87 server_binlog.php:216 +#: libraries/messages.inc.php:83 server_binlog.php:216 msgid "Position" msgstr "Pozice" -#: libraries/messages.inc.php:88 libraries/replication_gui.lib.php:169 +#: libraries/messages.inc.php:84 libraries/replication_gui.lib.php:169 #: server_binlog.php:218 msgid "Server ID" msgstr "ID serveru" -#: libraries/messages.inc.php:92 +#: libraries/messages.inc.php:88 msgctxt "$strBLOBRepositoryDisabled" msgid "Disabled" msgstr "Vypnuté" -#: libraries/messages.inc.php:95 +#: libraries/messages.inc.php:91 msgctxt "$strBLOBRepositoryEnabled" msgid "Enabled" msgstr "Zapnuté" -#: libraries/messages.inc.php:97 tbl_change.php:888 +#: libraries/messages.inc.php:93 tbl_change.php:888 msgid "Remove BLOB Repository Reference" msgstr "Odstranit odkaz do skladiště BLOBů" -#: libraries/messages.inc.php:98 +#: libraries/messages.inc.php:94 msgctxt "$strBLOBRepositoryRepair" msgid "Repair" msgstr "Opravit" -#: libraries/messages.inc.php:99 tbl_change.php:987 +#: libraries/messages.inc.php:95 tbl_change.php:987 msgid "Upload to BLOB repository" msgstr "Nahrát do skladiště BLOBů" -#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:359 +#: libraries/messages.inc.php:96 libraries/sql_query_form.lib.php:359 #: sql.php:677 msgid "Let every user access this bookmark" msgstr "Umožnit všem uživatelům používat tuto položku" -#: libraries/messages.inc.php:103 sql.php:671 +#: libraries/messages.inc.php:99 sql.php:671 msgid "Label" msgstr "Název" -#: libraries/messages.inc.php:104 libraries/sql_query_form.lib.php:433 +#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:433 msgid "Bookmarked SQL query" msgstr "Oblíbený SQL dotaz" -#: libraries/messages.inc.php:105 libraries/sql_query_form.lib.php:365 +#: libraries/messages.inc.php:101 libraries/sql_query_form.lib.php:365 msgid "Replace existing bookmark of same name" msgstr "Přepsat existující oblíbený dotaz stejného jména" -#: libraries/messages.inc.php:106 libraries/sql_query_form.lib.php:352 +#: libraries/messages.inc.php:102 libraries/sql_query_form.lib.php:352 #: sql.php:665 sql.php:666 sql.php:683 msgid "Bookmark this SQL query" msgstr "Přidat tento SQL dotaz do oblíbených" -#: libraries/messages.inc.php:107 libraries/sql_query_form.lib.php:466 +#: libraries/messages.inc.php:103 libraries/sql_query_form.lib.php:466 msgid "View only" msgstr "Zobrazit" -#: libraries/messages.inc.php:109 tbl_structure.php:161 +#: libraries/messages.inc.php:105 tbl_structure.php:161 msgid "Browse distinct values" msgstr "Procházet odlišné hodnoty" -#: libraries/messages.inc.php:110 tbl_change.php:252 tbl_select.php:27 +#: libraries/messages.inc.php:106 tbl_change.php:252 tbl_select.php:27 #: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34 msgid "Browse foreign values" msgstr "Projít hodnoty cizích klíčů" -#: libraries/messages.inc.php:118 libraries/mysql_charsets.lib.php:213 +#: libraries/messages.inc.php:114 libraries/mysql_charsets.lib.php:213 msgid "Bulgarian" msgstr "Bulharština" -#: libraries/messages.inc.php:120 +#: libraries/messages.inc.php:116 msgid "\"bzipped\"" msgstr "„zabzipováno“" -#: libraries/messages.inc.php:122 +#: libraries/messages.inc.php:118 msgid "Calendar" msgstr "Kalendář" -#: libraries/messages.inc.php:129 tbl_indexes.php:75 +#: libraries/messages.inc.php:125 tbl_indexes.php:75 msgid "Can't rename index to PRIMARY!" msgstr "Index nemůžete přejmenovat na „PRIMARY“!" -#: libraries/messages.inc.php:132 libraries/mysql_charsets.lib.php:223 +#: libraries/messages.inc.php:128 libraries/mysql_charsets.lib.php:223 #: libraries/mysql_charsets.lib.php:409 msgid "case-insensitive" msgstr "nerozlišovat velká a malá písmena" -#: libraries/messages.inc.php:133 libraries/mysql_charsets.lib.php:226 +#: libraries/messages.inc.php:129 libraries/mysql_charsets.lib.php:226 #: libraries/mysql_charsets.lib.php:411 msgid "case-sensitive" msgstr "rozlišovat velká a malá písmena" -#: libraries/messages.inc.php:134 libraries/mysql_charsets.lib.php:332 +#: libraries/messages.inc.php:130 libraries/mysql_charsets.lib.php:332 msgid "Central European" msgstr "Střední Evropa" -#: libraries/messages.inc.php:136 server_privileges.php:1969 +#: libraries/messages.inc.php:132 server_privileges.php:1969 msgid "... keep the old one." msgstr "... zachovat původního uživatele." -#: libraries/messages.inc.php:137 server_privileges.php:1967 +#: libraries/messages.inc.php:133 server_privileges.php:1967 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 ..." -#: libraries/messages.inc.php:138 server_privileges.php:1972 +#: libraries/messages.inc.php:134 server_privileges.php:1972 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr " ... smazat uživatele a poté znovu načíst oprávnění." -#: libraries/messages.inc.php:139 server_privileges.php:1970 +#: libraries/messages.inc.php:135 server_privileges.php:1970 msgid " ... delete the old one from the user tables." msgstr " ... smazat původního uživatele ze všech tabulek." -#: libraries/messages.inc.php:140 server_privileges.php:1971 +#: libraries/messages.inc.php:136 server_privileges.php:1971 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr " ... odebrat všechna oprávnění původnímu uživateli a poté ho smazat." -#: libraries/messages.inc.php:141 server_privileges.php:1964 +#: libraries/messages.inc.php:137 server_privileges.php:1964 msgid "Change Login Information / Copy User" msgstr "Změnit informace o uživateli / Kopírovat uživatele" -#: libraries/messages.inc.php:144 libraries/mysql_charsets.lib.php:107 +#: libraries/messages.inc.php:140 libraries/mysql_charsets.lib.php:107 msgid "Charset" msgstr "Znaková sada" -#: libraries/messages.inc.php:146 server_collations.php:40 +#: libraries/messages.inc.php:142 server_collations.php:40 msgid "Character Sets and Collations" msgstr "Znakové sady a porovnávání" -#: libraries/messages.inc.php:147 libraries/server_links.inc.php:57 +#: libraries/messages.inc.php:143 libraries/server_links.inc.php:57 #: test/theme.php:109 msgid "Charsets" msgstr "Znakové sady" -#: libraries/messages.inc.php:149 tbl_operations.php:661 +#: libraries/messages.inc.php:145 tbl_operations.php:661 msgid "Check" msgstr "Zkontrolovat" -#: libraries/messages.inc.php:151 server_databases.php:293 +#: libraries/messages.inc.php:147 server_databases.php:293 #: server_databases.php:294 msgid "Check Privileges" msgstr "Zkontrolovat oprávnění" -#: libraries/messages.inc.php:152 server_databases.php:289 +#: libraries/messages.inc.php:148 server_databases.php:289 #, php-format msgid "Check privileges for database "%s"." msgstr "Zkontrolovat oprávnění pro databázi „%s“." -#: libraries/messages.inc.php:154 pdf_pages.php:261 +#: libraries/messages.inc.php:150 pdf_pages.php:261 msgid "Please choose a page to edit" msgstr "Zvolte stránku, kterou chcete změnit" -#: libraries/messages.inc.php:157 +#: libraries/messages.inc.php:153 msgid "Displaying Column Comments" msgstr "Zobrazuji komentáře sloupců" -#: libraries/messages.inc.php:159 pdf_pages.php:483 view_create.php:148 +#: libraries/messages.inc.php:155 pdf_pages.php:483 view_create.php:148 msgid "Column names" msgstr "Názvy sloupců" -#: libraries/messages.inc.php:160 server_privileges.php:1685 +#: libraries/messages.inc.php:156 server_privileges.php:1685 msgid "Column-specific privileges" msgstr "Oprávnění pro jednotlivé sloupce" -#: libraries/messages.inc.php:164 +#: libraries/messages.inc.php:160 msgid "MySQL 4.0 compatible" msgstr "Kompatibilní s MySQL 4.0" -#: libraries/messages.inc.php:165 +#: libraries/messages.inc.php:161 msgid "Complete inserts" msgstr "Úplné inserty" -#: libraries/messages.inc.php:168 +#: libraries/messages.inc.php:164 #, 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/messages.inc.php:169 main.php:306 +#: libraries/messages.inc.php:165 main.php:306 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " @@ -3358,37 +3358,37 @@ msgstr "" "existuje v adresáři s phpMyAdminem. Měli byste ho odstranit, jakmile je " "phpMyAdmin nastaven." -#: libraries/messages.inc.php:171 pdf_schema.php:672 +#: libraries/messages.inc.php:167 pdf_schema.php:672 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Prosím, nastavte souřadnice pro tabulku %s" -#: libraries/messages.inc.php:173 server_status.php:433 +#: libraries/messages.inc.php:169 server_status.php:433 msgid "Connections" msgstr "Připojení" -#: libraries/messages.inc.php:179 tbl_operations.php:509 +#: libraries/messages.inc.php:175 tbl_operations.php:509 msgid "Copy table to (database.table):" msgstr "Kopírovat tabulku do (databáze.tabulka):" -#: libraries/messages.inc.php:180 tbl_move_copy.php:58 +#: libraries/messages.inc.php:176 tbl_move_copy.php:58 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabulka %s byla zkopírována do %s." -#: libraries/messages.inc.php:181 tbl_move_copy.php:48 +#: libraries/messages.inc.php:177 tbl_move_copy.php:48 msgid "Can't copy table to same one!" msgstr "Nelze kopírovat tabulku na sebe samu!" -#: libraries/messages.inc.php:182 server_synchronize.php:94 +#: libraries/messages.inc.php:178 server_synchronize.php:94 msgid "Could not connect to the source" msgstr "Nepodařilo se připojit ke zdrojové databázi" -#: libraries/messages.inc.php:183 server_synchronize.php:97 +#: libraries/messages.inc.php:179 server_synchronize.php:97 msgid "Could not connect to the target" msgstr "Nepodařilo se připojit k cílové databázi" -#: libraries/messages.inc.php:184 server_processlist.php:24 +#: libraries/messages.inc.php:180 server_processlist.php:24 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -3396,131 +3396,131 @@ msgstr "" "phpMyAdminovi se nepodařilo ukončit vlákno %s. Pravděpodobně jeho běh již " "skončil." -#: libraries/messages.inc.php:187 +#: libraries/messages.inc.php:183 #, php-format msgid "Create an index on %s columns" msgstr "Vytvořit index na %s sloupcích" -#: libraries/messages.inc.php:188 tbl_indexes.php:160 +#: libraries/messages.inc.php:184 tbl_indexes.php:160 msgid "Create a new index" msgstr "Vytvořit nový index" -#: libraries/messages.inc.php:191 pdf_pages.php:297 pmd_pdf.php:114 +#: libraries/messages.inc.php:187 pdf_pages.php:297 pmd_pdf.php:114 msgid "Create a page" msgstr "Vytvořit novou stránku" -#: libraries/messages.inc.php:192 +#: libraries/messages.inc.php:188 msgid "Creation of PDFs" msgstr "Vytváření PDF" -#: libraries/messages.inc.php:193 pmd_general.php:74 pmd_general.php:306 +#: libraries/messages.inc.php:189 pmd_general.php:74 pmd_general.php:306 msgid "Create relation" msgstr "Vytvořit relaci" -#: libraries/messages.inc.php:194 pmd_general.php:71 +#: libraries/messages.inc.php:190 pmd_general.php:71 #: server_synchronize.php:429 server_synchronize.php:872 msgid "Create table" msgstr "Vytvořit tabulku" -#: libraries/messages.inc.php:195 +#: libraries/messages.inc.php:191 msgctxt "$strCreateTableShort" msgid "Create table" msgstr "Vytvořit tabulku" -#: libraries/messages.inc.php:196 server_privileges.php:1994 +#: libraries/messages.inc.php:192 server_privileges.php:1994 msgid "Database for user" msgstr "Databáze pro uživatele" -#: libraries/messages.inc.php:197 server_privileges.php:1999 +#: libraries/messages.inc.php:193 server_privileges.php:1999 msgid "Create database with same name and grant all privileges" msgstr "Vytvořit databázi stejného jména a přidělit všechna oprávnění" -#: libraries/messages.inc.php:198 +#: libraries/messages.inc.php:194 msgctxt "$strCreateUserDatabaseNone" msgid "None" msgstr "Žádná" -#: libraries/messages.inc.php:199 server_privileges.php:2003 +#: libraries/messages.inc.php:195 server_privileges.php:2003 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Přidělit všechna oprávnění na databázi "%s"" -#: libraries/messages.inc.php:200 server_privileges.php:2000 +#: libraries/messages.inc.php:196 server_privileges.php:2000 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Přidělit všechna oprávnění na jméno odpovídající masce (uživatel\\_%)" -#: libraries/messages.inc.php:201 +#: libraries/messages.inc.php:197 msgid "Creation/Update/Check dates" msgstr "Datum vytvoření, poslední změny a kontroly" -#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:229 +#: libraries/messages.inc.php:199 libraries/mysql_charsets.lib.php:229 msgid "Croatian" msgstr "Chorvatština" -#: libraries/messages.inc.php:204 +#: libraries/messages.inc.php:200 msgid "CSV" msgstr "CSV" -#: libraries/messages.inc.php:205 libraries/server_synchronize.lib.php:1343 +#: libraries/messages.inc.php:201 libraries/server_synchronize.lib.php:1343 #: libraries/server_synchronize.lib.php:1369 msgid "Current server" msgstr "Aktuální server" -#: libraries/messages.inc.php:206 main.php:159 +#: libraries/messages.inc.php:202 main.php:159 msgid "Custom color" msgstr "Vlastní barva" -#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:365 +#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:365 msgid "Cyrillic" msgstr "Cyrilika" -#: libraries/messages.inc.php:208 libraries/mysql_charsets.lib.php:232 +#: libraries/messages.inc.php:204 libraries/mysql_charsets.lib.php:232 msgid "Czech" msgstr "Čeština" -#: libraries/messages.inc.php:209 libraries/mysql_charsets.lib.php:383 +#: libraries/messages.inc.php:205 libraries/mysql_charsets.lib.php:383 msgid "Czech-Slovak" msgstr "Čeština/Slovenština" -#: libraries/messages.inc.php:211 libraries/mysql_charsets.lib.php:235 +#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:235 msgid "Danish" msgstr "Dánština" -#: libraries/messages.inc.php:214 +#: libraries/messages.inc.php:210 msgid "Database export options" msgstr "Nastavení exportu databází" -#: libraries/messages.inc.php:217 server_synchronize.php:122 +#: libraries/messages.inc.php:213 server_synchronize.php:122 #: server_synchronize.php:125 tbl_create.php:82 tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "Databáze '%s' neexistuje." -#: libraries/messages.inc.php:219 server_databases.php:63 +#: libraries/messages.inc.php:215 server_databases.php:63 #, php-format msgid "%s databases have been dropped successfully." msgstr "%s databáze byla úspěšně zrušena." -#: libraries/messages.inc.php:220 libraries/server_synchronize.lib.php:1341 +#: libraries/messages.inc.php:216 libraries/server_synchronize.lib.php:1341 #: server_synchronize.php:1110 msgid "Source database" msgstr "Zdrojová databáze" -#: libraries/messages.inc.php:221 server_databases.php:88 +#: libraries/messages.inc.php:217 server_databases.php:88 msgid "Databases statistics" msgstr "Statistiky databází" -#: libraries/messages.inc.php:222 server_databases.php:362 +#: libraries/messages.inc.php:218 server_databases.php:362 #: server_databases.php:363 msgid "Disable Statistics" msgstr "Skrýt podrobnosti" -#: libraries/messages.inc.php:223 server_databases.php:358 +#: libraries/messages.inc.php:219 server_databases.php:358 #: server_databases.php:359 msgid "Enable Statistics" msgstr "Zobrazit podrobnosti" -#: libraries/messages.inc.php:224 server_databases.php:366 +#: libraries/messages.inc.php:220 server_databases.php:366 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -3528,30 +3528,30 @@ msgstr "" "Poznámka: Zobrazení podrobností o databázích může způsobit značné zvýšení " "provozu mezi webserverem a MySQL serverem." -#: libraries/messages.inc.php:225 libraries/server_synchronize.lib.php:1367 +#: libraries/messages.inc.php:221 libraries/server_synchronize.lib.php:1367 #: server_synchronize.php:1112 msgid "Target database" msgstr "Cílová databáze" -#: libraries/messages.inc.php:228 server_synchronize.php:425 +#: libraries/messages.inc.php:224 server_synchronize.php:425 #: server_synchronize.php:868 msgid "Data Difference" msgstr "Rozdíl mezi daty" -#: libraries/messages.inc.php:231 server_synchronize.php:272 +#: libraries/messages.inc.php:227 server_synchronize.php:272 msgid "Data Synchronization" msgstr "Synchronizace dat" -#: libraries/messages.inc.php:235 server_privileges.php:526 +#: libraries/messages.inc.php:231 server_privileges.php:526 #: server_privileges.php:1679 msgid "Database-specific privileges" msgstr "Oprávnění pro jednotlivé databáze" -#: libraries/messages.inc.php:237 server_privileges.php:2136 +#: libraries/messages.inc.php:233 server_privileges.php:2136 msgid "database-specific" msgstr "závislé na databázi" -#: libraries/messages.inc.php:240 libraries/tbl_properties.inc.php:106 +#: libraries/messages.inc.php:236 libraries/tbl_properties.inc.php:106 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" @@ -3559,32 +3559,32 @@ msgstr "" "Výchozí hodnotu zadejte jen jednu hodnotu bez uvozovek a escapování znaků, " "například: a" -#: libraries/messages.inc.php:241 tbl_operations.php:589 +#: libraries/messages.inc.php:237 tbl_operations.php:589 msgid "Defragment table" msgstr "Defragmentovat tabulku" -#: libraries/messages.inc.php:242 +#: libraries/messages.inc.php:238 msgid "Use delayed inserts" msgstr "Používat zpožděné inserty" -#: libraries/messages.inc.php:245 server_privileges.php:1243 +#: libraries/messages.inc.php:241 server_privileges.php:1243 msgid "No users selected for deleting!" msgstr "Musíte vybrat uživatele, které chcete odstranit!" -#: libraries/messages.inc.php:246 pmd_general.php:372 +#: libraries/messages.inc.php:242 pmd_general.php:372 msgid "Delete relation" msgstr "Odstranit relaci" -#: libraries/messages.inc.php:248 server_privileges.php:1232 +#: libraries/messages.inc.php:244 server_privileges.php:1232 #, php-format msgid "Deleting %s" msgstr "Odstraňuji %s" -#: libraries/messages.inc.php:249 libraries/sql_query_form.lib.php:388 +#: libraries/messages.inc.php:245 libraries/sql_query_form.lib.php:388 msgid "Delimiter" msgstr "Oddělovač" -#: libraries/messages.inc.php:250 pdf_pages.php:506 +#: libraries/messages.inc.php:246 pdf_pages.php:506 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -3592,7 +3592,7 @@ msgstr "" "Aktuální stránka se odkazuje na tabulky, které již neexistují. Chcete " "odstranit tyto odkazy?" -#: libraries/messages.inc.php:254 pmd_help.php:29 +#: libraries/messages.inc.php:250 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 " @@ -3601,142 +3601,142 @@ msgstr "" "Zobrazované pole je označeno růžovou barvou. Pro jeho změnu klikněte na " "ikonu „Zvolte které sloupce zobrazit“ a poté zvolte odpovídající sloupec." -#: libraries/messages.inc.php:256 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:252 libraries/mysql_charsets.lib.php:247 msgid "dictionary" msgstr "slovník" -#: libraries/messages.inc.php:257 libraries/server_synchronize.lib.php:1348 +#: libraries/messages.inc.php:253 libraries/server_synchronize.lib.php:1348 msgid "Difference" msgstr "Rozdíly" -#: libraries/messages.inc.php:258 pmd_general.php:87 +#: libraries/messages.inc.php:254 pmd_general.php:87 msgid "Direct links" msgstr "Přímé spoje" -#: libraries/messages.inc.php:261 +#: libraries/messages.inc.php:257 msgid "Disable foreign key checks" msgstr "Vypnout kontrolu cizích klíčů" -#: libraries/messages.inc.php:262 +#: libraries/messages.inc.php:258 msgid "Display Features" msgstr "Zobrazení funkcí" -#: libraries/messages.inc.php:263 tbl_select.php:301 +#: libraries/messages.inc.php:259 tbl_select.php:301 msgid "Display order:" msgstr "Seřadit podle:" -#: libraries/messages.inc.php:265 tbl_select.php:132 +#: libraries/messages.inc.php:261 tbl_select.php:132 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Provést „dotaz podle příkladu“ (zástupný znak: „%“)" -#: libraries/messages.inc.php:266 +#: libraries/messages.inc.php:262 msgid "DocSQL" msgstr "DocSQL" -#: libraries/messages.inc.php:268 +#: libraries/messages.inc.php:264 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Nepoužívat AUTO_INCREMENT pro nulové hodnoty" -#: libraries/messages.inc.php:273 server_privileges.php:1579 +#: libraries/messages.inc.php:269 server_privileges.php:1579 #: server_privileges.php:1580 server_privileges.php:1581 msgid "Drop the databases that have the same names as the users." msgstr "Odstranit databáze se stejnými jmény jako uživatelé." -#: libraries/messages.inc.php:278 tbl_printview.php:382 tbl_structure.php:743 +#: libraries/messages.inc.php:274 tbl_printview.php:382 tbl_structure.php:743 msgid "dynamic" msgstr "dynamický" -#: libraries/messages.inc.php:282 server_privileges.php:1324 +#: libraries/messages.inc.php:278 server_privileges.php:1324 #: server_privileges.php:1610 msgid "Edit Privileges" msgstr "Upravit oprávnění" -#: libraries/messages.inc.php:283 tbl_printview.php:341 tbl_structure.php:688 +#: libraries/messages.inc.php:279 tbl_printview.php:341 tbl_structure.php:688 msgid "Effective" msgstr "Efektivní" -#: libraries/messages.inc.php:286 libraries/relation.lib.php:100 +#: libraries/messages.inc.php:282 libraries/relation.lib.php:100 msgid "Enabled" msgstr "Zapnuto" -#: libraries/messages.inc.php:287 +#: libraries/messages.inc.php:283 msgid "Enclose export in a transaction" msgstr "Uzavřít příkazy v transakci" -#: libraries/messages.inc.php:288 libraries/sqlparser.lib.php:177 +#: libraries/messages.inc.php:284 libraries/sqlparser.lib.php:177 msgid "END CUT" msgstr "KONEC VÝPISU" -#: libraries/messages.inc.php:290 libraries/sqlparser.lib.php:183 +#: libraries/messages.inc.php:286 libraries/sqlparser.lib.php:183 msgid "END RAW" msgstr "KONEC VÝPISU" -#: libraries/messages.inc.php:293 libraries/server_links.inc.php:61 +#: libraries/messages.inc.php:289 libraries/server_links.inc.php:61 #: test/theme.php:113 msgid "Engines" msgstr "Úložiště" -#: libraries/messages.inc.php:295 libraries/mysql_charsets.lib.php:238 +#: libraries/messages.inc.php:291 libraries/mysql_charsets.lib.php:238 msgid "English" msgstr "Anglicky" -#: libraries/messages.inc.php:296 server_privileges.php:393 +#: libraries/messages.inc.php:292 server_privileges.php:393 #: server_privileges.php:535 server_privileges.php:1501 msgid " Note: MySQL privilege names are expressed in English " msgstr " Poznámka: názvy oprávnění v MySQL jsou uváděny anglicky " -#: libraries/messages.inc.php:298 libraries/zip_extension.lib.php:49 +#: libraries/messages.inc.php:294 libraries/zip_extension.lib.php:49 #: libraries/zip_extension.lib.php:51 libraries/zip_extension.lib.php:66 msgid "Error in ZIP archive:" msgstr "Chyba v ZIP archívu:" -#: libraries/messages.inc.php:303 libraries/mysql_charsets.lib.php:241 +#: libraries/messages.inc.php:299 libraries/mysql_charsets.lib.php:241 msgid "Esperanto" msgstr "Esperanto" -#: libraries/messages.inc.php:304 libraries/mysql_charsets.lib.php:244 +#: libraries/messages.inc.php:300 libraries/mysql_charsets.lib.php:244 msgid "Estonian" msgstr "Estonština" -#: libraries/messages.inc.php:305 libraries/tbl_triggers.lib.php:29 +#: libraries/messages.inc.php:301 libraries/tbl_triggers.lib.php:29 msgid "Event" msgstr "Událost" -#: libraries/messages.inc.php:307 +#: libraries/messages.inc.php:303 msgid "Excel edition" msgstr "Verze Excelu" -#: libraries/messages.inc.php:311 pmd_pdf.php:85 +#: libraries/messages.inc.php:307 pmd_pdf.php:85 msgid "Export/Import to scale" msgstr "Exportovat/Importovat v měřítku" -#: libraries/messages.inc.php:313 +#: libraries/messages.inc.php:309 msgid "Extended inserts" msgstr "Rozšířené inserty" -#: libraries/messages.inc.php:314 pdf_schema.php:1267 pdf_schema.php:1288 +#: libraries/messages.inc.php:310 pdf_schema.php:1267 pdf_schema.php:1288 #: tbl_printview.php:147 tbl_structure.php:183 tbl_tracking.php:278 msgid "Extra" msgstr "Extra" -#: libraries/messages.inc.php:316 server_status.php:447 +#: libraries/messages.inc.php:312 server_status.php:447 msgid "Failed attempts" msgstr "Nepovedených pokusů" -#: libraries/messages.inc.php:318 tbl_structure.php:375 +#: libraries/messages.inc.php:314 tbl_structure.php:375 #, php-format msgid "Field %s has been dropped" msgstr "Sloupec %s byl odstraněn" -#: libraries/messages.inc.php:322 libraries/sql_query_form.lib.php:317 +#: libraries/messages.inc.php:318 libraries/sql_query_form.lib.php:317 msgid "Fields" msgstr "Sloupce" -#: libraries/messages.inc.php:332 server_binlog.php:136 +#: libraries/messages.inc.php:328 server_binlog.php:136 msgid "Files" msgstr "Soubory" -#: libraries/messages.inc.php:334 server_privileges.php:1597 +#: libraries/messages.inc.php:330 server_privileges.php:1597 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -3749,119 +3749,119 @@ msgstr "" "tyto tabulky upravovány. V tomto případě je vhodné provést %snové načtení " "oprávnění%s před pokračováním." -#: libraries/messages.inc.php:335 server_status.php:289 +#: libraries/messages.inc.php:331 server_status.php:289 msgid "Flush query cache" msgstr "Vyprázdnit vyrovnávací paměť dotazů" -#: libraries/messages.inc.php:336 +#: libraries/messages.inc.php:332 msgid "Flush the table (\"FLUSH\")" msgstr "Vyprázdnit vyrovnávací paměť pro tabulku („FLUSH“)" -#: libraries/messages.inc.php:337 server_status.php:271 +#: libraries/messages.inc.php:333 server_status.php:271 msgid "Flush (close) all tables" msgstr "Zavřít všechny tabulky" -#: libraries/messages.inc.php:339 tbl_relation.php:279 +#: libraries/messages.inc.php:335 tbl_relation.php:279 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "Chyba při vytváření cizího klíče na %1$s (zkotrolujte typ sloupce)" -#: libraries/messages.inc.php:341 setup/lib/messages.inc.php:88 +#: libraries/messages.inc.php:337 setup/lib/messages.inc.php:88 #: tbl_printview.php:376 tbl_structure.php:738 msgid "Format" msgstr "Formát" -#: libraries/messages.inc.php:344 server_replication.php:325 +#: libraries/messages.inc.php:340 server_replication.php:325 msgid "Full start" msgstr "Kompletně spustit" -#: libraries/messages.inc.php:345 server_replication.php:325 +#: libraries/messages.inc.php:341 server_replication.php:325 msgid "Full stop" msgstr "Kompletně zastavit" -#: libraries/messages.inc.php:347 tbl_change.php:282 tbl_change.php:320 +#: libraries/messages.inc.php:343 tbl_change.php:282 tbl_change.php:320 msgid "Function" msgstr "Funkce" -#: libraries/messages.inc.php:355 libraries/mysql_charsets.lib.php:377 +#: libraries/messages.inc.php:351 libraries/mysql_charsets.lib.php:377 msgid "Georgian" msgstr "Gruzínština" -#: libraries/messages.inc.php:356 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:352 libraries/mysql_charsets.lib.php:247 #: libraries/mysql_charsets.lib.php:250 msgid "German" msgstr "Německy" -#: libraries/messages.inc.php:357 themes.php:42 +#: libraries/messages.inc.php:353 themes.php:42 msgid "Get more themes!" msgstr "Získejte další témata vzhledu!" -#: libraries/messages.inc.php:358 server_privileges.php:2134 +#: libraries/messages.inc.php:354 server_privileges.php:2134 msgid "global" msgstr "globální" -#: libraries/messages.inc.php:359 server_privileges.php:524 +#: libraries/messages.inc.php:355 server_privileges.php:524 #: server_privileges.php:1500 msgid "Global privileges" msgstr "Globální oprávnění" -#: libraries/messages.inc.php:360 server_variables.php:55 +#: libraries/messages.inc.php:356 server_variables.php:55 #: server_variables.php:89 msgid "Global value" msgstr "Globální hodnota" -#: libraries/messages.inc.php:365 server_privileges.php:1502 +#: libraries/messages.inc.php:361 server_privileges.php:1502 #: server_privileges.php:1684 server_privileges.php:2033 msgid "Grant" msgstr "Přidělování" -#: libraries/messages.inc.php:366 libraries/mysql_charsets.lib.php:380 +#: libraries/messages.inc.php:362 libraries/mysql_charsets.lib.php:380 msgid "Greek" msgstr "Řečtina" -#: libraries/messages.inc.php:367 +#: libraries/messages.inc.php:363 msgid "\"gzipped\"" msgstr "„zagzipováno“" -#: libraries/messages.inc.php:369 server_status.php:250 +#: libraries/messages.inc.php:365 server_status.php:250 msgid "Handler" msgstr "Obslužné rutiny" -#: libraries/messages.inc.php:370 server_synchronize.php:464 +#: libraries/messages.inc.php:366 server_synchronize.php:464 msgid "Selected target tables have been synchronized with source tables." msgstr "Vybrané cílové tabulky byly synchronizovány se zdrojovými." -#: libraries/messages.inc.php:372 libraries/mysql_charsets.lib.php:374 +#: libraries/messages.inc.php:368 libraries/mysql_charsets.lib.php:374 msgid "Hebrew" msgstr "Hebrejština" -#: libraries/messages.inc.php:373 pmd_general.php:83 +#: libraries/messages.inc.php:369 pmd_general.php:83 msgid "Help" msgstr "Nápověda" -#: libraries/messages.inc.php:374 +#: libraries/messages.inc.php:370 msgid "Use hexadecimal for BLOB" msgstr "Použít šestnáctkové zobrazení pro BLOB" -#: libraries/messages.inc.php:376 pmd_general.php:120 +#: libraries/messages.inc.php:372 pmd_general.php:120 msgid "Hide/Show all" msgstr "Skrýt/Zobrazit vše" -#: libraries/messages.inc.php:377 pmd_general.php:124 +#: libraries/messages.inc.php:373 pmd_general.php:124 msgid "Hide/Show Tables with no relation" msgstr "Skrýt/Zobrazit tabulky bez relací" -#: libraries/messages.inc.php:378 libraries/navigation_header.inc.php:54 +#: libraries/messages.inc.php:374 libraries/navigation_header.inc.php:54 #: libraries/navigation_header.inc.php:57 #: libraries/navigation_header.inc.php:58 msgid "Home" msgstr "Hlavní strana" -#: libraries/messages.inc.php:379 main.php:233 +#: libraries/messages.inc.php:375 main.php:233 msgid "Official Homepage" msgstr "Oficiální stránka phpMyAdmina" -#: libraries/messages.inc.php:382 libraries/replication_gui.lib.php:327 +#: libraries/messages.inc.php:378 libraries/replication_gui.lib.php:327 #: server_privileges.php:753 msgid "" "When Host table is used, this field is ignored and values stored in Host " @@ -3870,98 +3870,98 @@ msgstr "" "Pokud je použita tabulka Host, toto pole je ignorováno a jsou použity " "hodnoty uložené v tabulce Host." -#: libraries/messages.inc.php:383 +#: libraries/messages.inc.php:379 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/messages.inc.php:384 libraries/mysql_charsets.lib.php:253 +#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:253 msgid "Hungarian" msgstr "Maďarština" -#: libraries/messages.inc.php:386 libraries/mysql_charsets.lib.php:256 +#: libraries/messages.inc.php:382 libraries/mysql_charsets.lib.php:256 msgid "Icelandic" msgstr "Islandština" -#: libraries/messages.inc.php:387 server_processlist.php:53 +#: libraries/messages.inc.php:383 server_processlist.php:53 msgid "ID" msgstr "ID" -#: libraries/messages.inc.php:388 libraries/mult_submits.inc.php:108 +#: libraries/messages.inc.php:384 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:479 msgid "Fulltext" msgstr "Fulltext" -#: libraries/messages.inc.php:389 +#: libraries/messages.inc.php:385 msgid "Ignore duplicate rows" msgstr "Ignorovat duplicitní řádky" -#: libraries/messages.inc.php:390 tbl_change.php:302 tbl_indexes.php:200 +#: libraries/messages.inc.php:386 tbl_change.php:302 tbl_indexes.php:200 #: tbl_indexes.php:225 msgid "Ignore" msgstr "Ignorovat" -#: libraries/messages.inc.php:391 +#: libraries/messages.inc.php:387 msgid "Use ignore inserts" msgstr "Použít IGNORE" -#: libraries/messages.inc.php:392 +#: libraries/messages.inc.php:388 msgid "Column names in first row" msgstr "Jména sloupců na prvním řádku" -#: libraries/messages.inc.php:393 +#: libraries/messages.inc.php:389 msgid "Do not import empty rows" msgstr "Neimportovat prázdné řádky" -#: libraries/messages.inc.php:394 pmd_general.php:104 +#: libraries/messages.inc.php:390 pmd_general.php:104 msgid "Import/Export coordinates for PDF schema" msgstr "Import/Export souřadnic pro PDF schéma" -#: libraries/messages.inc.php:395 querywindow.php:104 +#: libraries/messages.inc.php:391 querywindow.php:104 msgid "Import files" msgstr "Importovat soubory" -#: libraries/messages.inc.php:403 +#: libraries/messages.inc.php:399 msgid "Import currencies ($5.00 to 5.00)" msgstr "Importovat měny (5.00 místo $5.00)" -#: libraries/messages.inc.php:404 libraries/messages.inc.php:584 +#: libraries/messages.inc.php:400 libraries/messages.inc.php:580 msgid "Open Document Spreadsheet" msgstr "Sešit OpenDocument" -#: libraries/messages.inc.php:405 +#: libraries/messages.inc.php:401 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "Importovat procenta jako desetinná čísla (0.12 místo 12.00%)" -#: libraries/messages.inc.php:409 +#: libraries/messages.inc.php:405 msgid "Excel 97-2003 XLS Workbook" msgstr "Excel 97-2003 XLS" -#: libraries/messages.inc.php:410 +#: libraries/messages.inc.php:406 msgid "Excel 2007 XLSX Workbook" msgstr "Excel 2007 XLSX" -#: libraries/messages.inc.php:414 libraries/mult_submits.inc.php:98 +#: libraries/messages.inc.php:410 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:476 tbl_structure.php:674 msgid "Index" msgstr "Index" -#: libraries/messages.inc.php:415 tbl_indexes.php:168 +#: libraries/messages.inc.php:411 tbl_indexes.php:168 msgid "Index name:" msgstr "Jméno indexu:" -#: libraries/messages.inc.php:416 tbl_indexes.php:174 +#: libraries/messages.inc.php:412 tbl_indexes.php:174 msgid "Index type:" msgstr "Typ indexu:" -#: libraries/messages.inc.php:417 sql.php:639 +#: libraries/messages.inc.php:413 sql.php:639 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problémy s indexy v tabulce `%s`" -#: libraries/messages.inc.php:427 main.php:266 +#: libraries/messages.inc.php:423 main.php:266 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -3971,55 +3971,55 @@ msgstr "" "Máte standardní nastavení hesla uživatele root v MySQL. Doporučujeme změnit " "toto nastavení a tím podstatně zvýšit zabezpečení vašeho serveru." -#: libraries/messages.inc.php:428 tbl_change.php:1130 +#: libraries/messages.inc.php:424 tbl_change.php:1130 msgid "Insert as new row" msgstr "Vložit jako nový řádek" -#: libraries/messages.inc.php:429 sql.php:496 tbl_replace.php:386 +#: libraries/messages.inc.php:425 sql.php:496 tbl_replace.php:386 #, php-format msgid "Inserted row id: %1$d" msgstr "ID vloženého řádku: %1$d" -#: libraries/messages.inc.php:430 tbl_change.php:1131 +#: libraries/messages.inc.php:426 tbl_change.php:1131 msgid "Insert as new row and ignore errors" msgstr "Vložit jako nový řádek a ignorovat chyby" -#: libraries/messages.inc.php:432 main.php:139 +#: libraries/messages.inc.php:428 main.php:139 msgid "Interface" msgstr "Rozhraní" -#: libraries/messages.inc.php:433 tbl_relation.php:407 +#: libraries/messages.inc.php:429 tbl_relation.php:407 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" "Interní relace není potřebná pokud existuje stejná relace pomocí FOREIGN KEY." -#: libraries/messages.inc.php:435 pdf_pages.php:303 +#: libraries/messages.inc.php:431 pdf_pages.php:303 msgid "Internal relations" msgstr "Interní relace" -#: libraries/messages.inc.php:438 tbl_indexes.php:256 tbl_structure.php:590 +#: libraries/messages.inc.php:434 tbl_indexes.php:256 tbl_structure.php:590 #: tbl_structure.php:601 msgid "Column count has to be larger than zero." msgstr "Počet sloupců musí být větší než nula." -#: libraries/messages.inc.php:444 libraries/tbl_properties.inc.php:784 +#: libraries/messages.inc.php:440 libraries/tbl_properties.inc.php:784 #: tbl_structure.php:537 msgid "You have to add at least one field." msgstr "Musíte přidat alespoň jeden sloupec." -#: libraries/messages.inc.php:449 +#: libraries/messages.inc.php:445 #, php-format msgid "Invalid server index: \"%s\"" msgstr "Chybný index serveru: „%s“" -#: libraries/messages.inc.php:452 libraries/mysql_charsets.lib.php:259 +#: libraries/messages.inc.php:448 libraries/mysql_charsets.lib.php:259 #: libraries/mysql_charsets.lib.php:349 msgid "Japanese" msgstr "Japonština" -#: libraries/messages.inc.php:453 main.php:331 +#: libraries/messages.inc.php:449 main.php:331 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " @@ -4029,109 +4029,109 @@ msgstr "" "phpMyAdmin nemusí fungovat správně. Například navigační rám se nebude " "automaticky obnovovat." -#: libraries/messages.inc.php:454 server_status.php:257 +#: libraries/messages.inc.php:450 server_status.php:257 msgid "Joins" msgstr "Použité výběry" -#: libraries/messages.inc.php:457 server_privileges.php:763 +#: libraries/messages.inc.php:453 server_privileges.php:763 msgid "Do not change the password" msgstr "Neměnit heslo" -#: libraries/messages.inc.php:458 server_status.php:256 +#: libraries/messages.inc.php:454 server_status.php:256 msgid "Key cache" msgstr "Vyrovnávací paměť klíčů" -#: libraries/messages.inc.php:462 libraries/mysql_charsets.lib.php:268 +#: libraries/messages.inc.php:458 libraries/mysql_charsets.lib.php:268 #: libraries/mysql_charsets.lib.php:371 msgid "Korean" msgstr "Korejština" -#: libraries/messages.inc.php:466 libraries/select_lang.lib.php:480 +#: libraries/messages.inc.php:462 libraries/select_lang.lib.php:480 #: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492 #, php-format msgid "Unknown language: %1$s." msgstr "Neznámý jazyk: %1$s." -#: libraries/messages.inc.php:468 +#: libraries/messages.inc.php:464 msgid "Table caption" msgstr "Titulek tabulky" -#: libraries/messages.inc.php:469 +#: libraries/messages.inc.php:465 msgid "Content of table __TABLE__" msgstr "Obsah tabulky __TABLE__" -#: libraries/messages.inc.php:470 +#: libraries/messages.inc.php:466 msgid "Continued table caption" msgstr "Titulek pokračování tabulky" -#: libraries/messages.inc.php:471 +#: libraries/messages.inc.php:467 msgid "(continued)" msgstr "(pokračování)" -#: libraries/messages.inc.php:472 +#: libraries/messages.inc.php:468 msgid "Include table caption" msgstr "Použít titulek tabulky" -#: libraries/messages.inc.php:473 +#: libraries/messages.inc.php:469 msgid "Label key" msgstr "Návěstí" -#: libraries/messages.inc.php:474 +#: libraries/messages.inc.php:470 msgid "LaTeX" msgstr "LaTeX" -#: libraries/messages.inc.php:475 +#: libraries/messages.inc.php:471 msgid "Structure of table __TABLE__" msgstr "Struktura tabulky __TABLE__" -#: libraries/messages.inc.php:476 libraries/mysql_charsets.lib.php:262 +#: libraries/messages.inc.php:472 libraries/mysql_charsets.lib.php:262 msgid "Latvian" msgstr "Lotyština" -#: libraries/messages.inc.php:477 +#: libraries/messages.inc.php:473 msgid "CSV using LOAD DATA" msgstr "CSV pomocí LOAD DATA" -#: libraries/messages.inc.php:478 +#: libraries/messages.inc.php:474 msgid "Use LOCAL keyword" msgstr "Použít klíčové slovo LOCAL" -#: libraries/messages.inc.php:479 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:475 libraries/tbl_properties.inc.php:105 msgid "Length/Values" msgstr "Délka/Množina" -#: libraries/messages.inc.php:480 tbl_select.php:295 +#: libraries/messages.inc.php:476 tbl_select.php:295 msgid "Number of rows per page" msgstr "záznamů na stránku" -#: libraries/messages.inc.php:484 libraries/mysql_charsets.lib.php:265 +#: libraries/messages.inc.php:480 libraries/mysql_charsets.lib.php:265 msgid "Lithuanian" msgstr "Litevština" -#: libraries/messages.inc.php:485 libraries/replication_gui.lib.php:302 +#: libraries/messages.inc.php:481 libraries/replication_gui.lib.php:302 #: server_privileges.php:729 msgid "Local" msgstr "Lokální" -#: libraries/messages.inc.php:487 server_privileges.php:669 +#: libraries/messages.inc.php:483 server_privileges.php:669 msgid "Login Information" msgstr "Přihlašování" -#: libraries/messages.inc.php:490 libraries/navigation_header.inc.php:67 +#: libraries/messages.inc.php:486 libraries/navigation_header.inc.php:67 #: libraries/navigation_header.inc.php:70 #: libraries/navigation_header.inc.php:71 main.php:99 msgid "Log out" msgstr "Odhlásit se" -#: libraries/messages.inc.php:497 server_status.php:440 +#: libraries/messages.inc.php:493 server_status.php:440 msgid "max. concurrent connections" msgstr "Maximum současných připojení" -#: libraries/messages.inc.php:498 +#: libraries/messages.inc.php:494 msgid "Maximal length of created query" msgstr "Maximální velikost vytvořeného dotazu" -#: libraries/messages.inc.php:500 main.php:282 +#: libraries/messages.inc.php:496 main.php:282 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -4141,7 +4141,7 @@ msgstr "" "bajtovou znakovou sadu. Bez rozšíření mbstring neumí phpMyAdmin správně " "rozdělovat řetězce a proto to může mít nečekané následky." -#: libraries/messages.inc.php:501 main.php:274 +#: libraries/messages.inc.php:497 main.php:274 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -4150,24 +4150,24 @@ msgstr "" "V nastavení PHP máte zapnuto mbstring.func_overload. Toto nastavení není " "kompatibilní s phpMyAdminem a může způsobit poškození dat!" -#: libraries/messages.inc.php:502 +#: libraries/messages.inc.php:498 msgid "MediaWiki Table" msgstr "Tabulka MediaWiki" -#: libraries/messages.inc.php:503 transformation_overview.php:25 +#: libraries/messages.inc.php:499 transformation_overview.php:25 msgid "Available MIME types" msgstr "Dostupné MIME typy" -#: libraries/messages.inc.php:504 transformation_overview.php:43 +#: libraries/messages.inc.php:500 transformation_overview.php:43 msgid "Available transformations" msgstr "Dostupné transformace" -#: libraries/messages.inc.php:505 +#: libraries/messages.inc.php:501 msgctxt "$strMIME_description" msgid "Description" msgstr "Popis" -#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:580 +#: libraries/messages.inc.php:503 libraries/tbl_properties.inc.php:580 #: transformation_overview.php:60 #, php-format msgid "" @@ -4177,7 +4177,7 @@ msgstr "" "Pro tuto transformaci není dostupný žádný popis.
Zeptejte se autora co %" "s dělá." -#: libraries/messages.inc.php:509 libraries/tbl_properties.inc.php:137 +#: libraries/messages.inc.php:505 libraries/tbl_properties.inc.php:137 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -4186,7 +4186,7 @@ msgstr "" "Pro seznam dostupných parametrů transformací a jejich MIME typů klikněte na %" "spopisy transformací%s" -#: libraries/messages.inc.php:510 libraries/tbl_properties.inc.php:146 +#: libraries/messages.inc.php:506 libraries/tbl_properties.inc.php:146 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -4198,56 +4198,56 @@ msgstr "" "(„'“) mezi těmito hodnotami, vložte před ně zpětné lomítko (například '\\" "\\xyz' nebo 'a\\'b')." -#: libraries/messages.inc.php:511 libraries/tbl_properties.inc.php:145 +#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:145 msgid "Transformation options" msgstr "Parametry transformace" -#: libraries/messages.inc.php:513 transformation_overview.php:38 +#: libraries/messages.inc.php:509 transformation_overview.php:38 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "MIME typy zobrazené kurzívou nemají vlastní transformační funkci" -#: libraries/messages.inc.php:515 tbl_indexes.php:162 +#: libraries/messages.inc.php:511 tbl_indexes.php:162 msgid "Modify an index" msgstr "Upravit index" -#: libraries/messages.inc.php:517 pmd_general.php:108 +#: libraries/messages.inc.php:513 pmd_general.php:108 msgid "Move Menu" msgstr "Přesun menu" -#: libraries/messages.inc.php:518 tbl_operations.php:276 +#: libraries/messages.inc.php:514 tbl_operations.php:276 msgid "Move table to (database.table):" msgstr "Přesunout tabulku do (databáze.tabulka):" -#: libraries/messages.inc.php:519 tbl_move_copy.php:56 +#: libraries/messages.inc.php:515 tbl_move_copy.php:56 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabulka %s byla přesunuta do %s." -#: libraries/messages.inc.php:520 tbl_move_copy.php:46 +#: libraries/messages.inc.php:516 tbl_move_copy.php:46 msgid "Can't move table to same one!" msgstr "Nelze přesunout tabulku na sebe samu!" -#: libraries/messages.inc.php:521 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:517 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 #: libraries/mysql_charsets.lib.php:332 libraries/mysql_charsets.lib.php:354 #: libraries/mysql_charsets.lib.php:365 msgid "multilingual" msgstr "mnohojazyčný" -#: libraries/messages.inc.php:534 main.php:193 +#: libraries/messages.inc.php:530 main.php:193 msgid "MySQL charset" msgstr "Znaková sada v MySQL" -#: libraries/messages.inc.php:535 main.php:211 +#: libraries/messages.inc.php:531 main.php:211 msgid "MySQL client version" msgstr "Verze MySQL klienta" -#: libraries/messages.inc.php:536 main.php:125 +#: libraries/messages.inc.php:532 main.php:125 msgid "MySQL connection collation" msgstr "Porovnávání pro toto připojení k MySQL" -#: libraries/messages.inc.php:537 main.php:346 +#: libraries/messages.inc.php:533 main.php:346 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -4256,54 +4256,54 @@ msgstr "" "Používaný MySQL modul v PHP je kompilován pro MySQL %s a server používá " "verzi %s. Používání různých verzí může způsobit problémy." -#: libraries/messages.inc.php:539 server_status.php:294 +#: libraries/messages.inc.php:535 server_status.php:294 msgid "Show processes" msgstr "Zobrazit procesy" -#: libraries/messages.inc.php:545 navigation.php:210 server_databases.php:371 +#: libraries/messages.inc.php:541 navigation.php:210 server_databases.php:371 #: server_synchronize.php:1191 msgid "No databases" msgstr "Žádné databáze" -#: libraries/messages.inc.php:546 server_databases.php:52 +#: libraries/messages.inc.php:542 server_databases.php:52 msgid "No databases selected." msgstr "Nebyla vybrána žádná databáze." -#: libraries/messages.inc.php:548 libraries/relation.lib.php:1173 +#: libraries/messages.inc.php:544 libraries/relation.lib.php:1173 msgid "no description" msgstr "žádný popisek" -#: libraries/messages.inc.php:552 libraries/zip_extension.lib.php:26 +#: libraries/messages.inc.php:548 libraries/zip_extension.lib.php:26 msgid "No files found inside ZIP archive!" msgstr "V ZIP archívu nebyly nalezeny žádné soubory!" -#: libraries/messages.inc.php:555 tbl_indexes.php:91 +#: libraries/messages.inc.php:551 tbl_indexes.php:91 msgid "No index parts defined!" msgstr "Nebyla zadána žádná část indexu!" -#: libraries/messages.inc.php:556 libraries/mult_submits.inc.php:435 +#: libraries/messages.inc.php:552 libraries/mult_submits.inc.php:435 #: tbl_replace.php:331 msgid "No change" msgstr "Žádná změna" -#: libraries/messages.inc.php:557 +#: libraries/messages.inc.php:553 msgctxt "$strNoneDefault" msgid "None" msgstr "Žádná" -#: libraries/messages.inc.php:560 libraries/plugin_interface.lib.php:312 +#: libraries/messages.inc.php:556 libraries/plugin_interface.lib.php:312 msgid "This format has no options" msgstr "Tento formát nemá žádná nastavení" -#: libraries/messages.inc.php:565 user_password.php:54 +#: libraries/messages.inc.php:561 user_password.php:54 msgid "You don't have sufficient privileges to be here right now!" msgstr "Nemáte dostatečná práva na provedení této akce!" -#: libraries/messages.inc.php:566 tbl_row_action.php:29 +#: libraries/messages.inc.php:562 tbl_row_action.php:29 msgid "No rows selected" msgstr "Nebyl vybrán žádný řádek" -#: libraries/messages.inc.php:569 themes.php:32 +#: libraries/messages.inc.php:565 themes.php:32 #, php-format msgid "" "No themes support; please check your configuration and/or your themes in " @@ -4311,138 +4311,138 @@ msgid "" msgstr "" "Není podporována změna tématu, zkontrolujte nastavení a témata v adresáři %s." -#: libraries/messages.inc.php:571 libraries/relation.lib.php:95 +#: libraries/messages.inc.php:567 libraries/relation.lib.php:95 msgid "not OK" msgstr "není v pořádku" -#: libraries/messages.inc.php:572 server_synchronize.php:400 +#: libraries/messages.inc.php:568 server_synchronize.php:400 #: server_synchronize.php:839 msgid "not present" msgstr "zde není" -#: libraries/messages.inc.php:573 pdf_pages.php:36 pdf_pages.php:42 +#: libraries/messages.inc.php:569 pdf_pages.php:36 pdf_pages.php:42 #: pdf_pages.php:48 pdf_pages.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "%s tabulka nenalezena nebo není nastavena v %s" -#: libraries/messages.inc.php:574 server_privileges.php:804 +#: libraries/messages.inc.php:570 server_privileges.php:804 #: server_privileges.php:2166 msgid "No user(s) found." msgstr "Žádný uživatel nenalezen." -#: libraries/messages.inc.php:578 pmd_general.php:164 +#: libraries/messages.inc.php:574 pmd_general.php:164 msgid "Number of tables" msgstr "Počet tabulek" -#: libraries/messages.inc.php:581 server_databases.php:117 +#: libraries/messages.inc.php:577 server_databases.php:117 #: server_status.php:260 setup/lib/messages.inc.php:117 msgid "Tables" msgstr "Tabulky" -#: libraries/messages.inc.php:583 libraries/relation.lib.php:99 +#: libraries/messages.inc.php:579 libraries/relation.lib.php:99 #: pmd_general.php:340 msgid "OK" msgstr "OK" -#: libraries/messages.inc.php:585 +#: libraries/messages.inc.php:581 msgid "Open Document Text" msgstr "Text OpenDocument" -#: libraries/messages.inc.php:588 tbl_select.php:138 +#: libraries/messages.inc.php:584 tbl_select.php:138 msgid "Operator" msgstr "Operátor" -#: libraries/messages.inc.php:589 tbl_operations.php:662 +#: libraries/messages.inc.php:585 tbl_operations.php:662 msgid "Optimize" msgstr "Optimalizovat" -#: libraries/messages.inc.php:602 libraries/tbl_properties.inc.php:755 +#: libraries/messages.inc.php:598 libraries/tbl_properties.inc.php:755 msgid "PARTITION definition" msgstr "Definice PARTITION" -#: libraries/messages.inc.php:603 tbl_structure.php:757 +#: libraries/messages.inc.php:599 tbl_structure.php:757 msgid "partitioned" msgstr "používá oddíly" -#: libraries/messages.inc.php:604 tbl_operations.php:649 +#: libraries/messages.inc.php:600 tbl_operations.php:649 msgid "Partition maintenance" msgstr "Údržba oddílů" -#: libraries/messages.inc.php:605 tbl_operations.php:657 +#: libraries/messages.inc.php:601 tbl_operations.php:657 #, php-format msgid "Partition %s" msgstr "Oddíl %s" -#: libraries/messages.inc.php:606 server_privileges.php:1212 +#: libraries/messages.inc.php:602 server_privileges.php:1212 #, php-format msgid "The password for %s was changed successfully." msgstr "Heslo pro %s bylo úspěšně změněno." -#: libraries/messages.inc.php:635 +#: libraries/messages.inc.php:631 #, php-format msgid "Schema of the \"%s\" database - Page %s" msgstr "Schéma databáze „%s“ - Strana %s" -#: libraries/messages.inc.php:636 +#: libraries/messages.inc.php:632 #, php-format msgid "The \"%s\" table doesn't exist!" msgstr "Tabulka „%s“ neexistuje!" -#: libraries/messages.inc.php:637 pdf_schema.php:1013 +#: libraries/messages.inc.php:633 pdf_schema.php:1013 msgid "No tables" msgstr "žádné tabulky" -#: libraries/messages.inc.php:638 pmd_pdf.php:63 +#: libraries/messages.inc.php:634 pmd_pdf.php:63 msgid "Page has been created" msgstr "Stránka byla vytvořena" -#: libraries/messages.inc.php:639 pmd_pdf.php:65 +#: libraries/messages.inc.php:635 pmd_pdf.php:65 msgid "Page creation failed" msgstr "Vytvoření stránky selhalo" -#: libraries/messages.inc.php:640 +#: libraries/messages.inc.php:636 msgid "PDF" msgstr "PDF" -#: libraries/messages.inc.php:641 +#: libraries/messages.inc.php:637 msgid "(Generates a report containing the data of a single table)" msgstr "(Vygeneruje dokument obsahující data jedné tabulky)" -#: libraries/messages.inc.php:642 +#: libraries/messages.inc.php:638 msgid "Report title" msgstr "Název výpisu" -#: libraries/messages.inc.php:643 server_status.php:389 server_status.php:434 +#: libraries/messages.inc.php:639 server_status.php:389 server_status.php:434 #: server_status.php:497 server_status.php:555 msgid "per hour" msgstr "za hodinu" -#: libraries/messages.inc.php:644 server_status.php:498 +#: libraries/messages.inc.php:640 server_status.php:498 msgid "per minute" msgstr "za minutu" -#: libraries/messages.inc.php:645 server_status.php:499 +#: libraries/messages.inc.php:641 server_status.php:499 msgid "per second" msgstr "za sekundu" -#: libraries/messages.inc.php:646 libraries/mysql_charsets.lib.php:271 +#: libraries/messages.inc.php:642 libraries/mysql_charsets.lib.php:271 msgid "Persian" msgstr "Perština" -#: libraries/messages.inc.php:647 libraries/mysql_charsets.lib.php:250 +#: libraries/messages.inc.php:643 libraries/mysql_charsets.lib.php:250 msgid "phone book" msgstr "adresář" -#: libraries/messages.inc.php:648 +#: libraries/messages.inc.php:644 msgid "PHP array" msgstr "PHP pole" -#: libraries/messages.inc.php:650 main.php:213 +#: libraries/messages.inc.php:646 main.php:213 msgid "PHP extension" msgstr "Rozšíření PHP" -#: libraries/messages.inc.php:654 libraries/relation.lib.php:163 +#: libraries/messages.inc.php:650 libraries/relation.lib.php:163 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." @@ -4450,157 +4450,157 @@ msgstr "" "Zapněte rozšířené funkce v konfiguračním souboru (config.inc.php), můžete se inspirovat v config.sample.inc.php." -#: libraries/messages.inc.php:655 libraries/relation.lib.php:159 +#: libraries/messages.inc.php:651 libraries/relation.lib.php:159 msgid "Quick steps to setup advanced features:" msgstr "Stručný návod pro zapnutí rozšířených funkcí:" -#: libraries/messages.inc.php:656 libraries/relation.lib.php:161 +#: libraries/messages.inc.php:652 libraries/relation.lib.php:161 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" "Vytvořte potřebné tabulky pomocí skriptu script/create_tables.sql." -#: libraries/messages.inc.php:657 libraries/relation.lib.php:162 +#: libraries/messages.inc.php:653 libraries/relation.lib.php:162 msgid "Create a pma user and give access to these tables." msgstr "Vytvořte uživatele pma a přidělte mu oprávnění na tyto tabulky." -#: libraries/messages.inc.php:658 libraries/relation.lib.php:164 +#: libraries/messages.inc.php:654 libraries/relation.lib.php:164 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" "Prosím přihlašte se znovu , aby se projevily změny v konfiguračním souboru." -#: libraries/messages.inc.php:661 libraries/mysql_charsets.lib.php:274 +#: libraries/messages.inc.php:657 libraries/mysql_charsets.lib.php:274 msgid "Polish" msgstr "Polština" -#: libraries/messages.inc.php:662 libraries/replication_gui.lib.php:67 +#: libraries/messages.inc.php:658 libraries/replication_gui.lib.php:67 #: server_synchronize.php:1163 msgid "Port" msgstr "Port" -#: libraries/messages.inc.php:667 tbl_indexes.php:67 +#: libraries/messages.inc.php:663 tbl_indexes.php:67 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Jméno primárního klíče musí být „PRIMARY“!" -#: libraries/messages.inc.php:668 tbl_indexes.php:184 +#: libraries/messages.inc.php:664 tbl_indexes.php:184 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "(„PRIMARY“ musí být jméno pouze primárního klíče!)" -#: libraries/messages.inc.php:669 libraries/mult_submits.inc.php:76 +#: libraries/messages.inc.php:665 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:474 msgid "Primary" msgstr "Primární" -#: libraries/messages.inc.php:673 server_privileges.php:227 +#: libraries/messages.inc.php:669 server_privileges.php:227 msgid "Includes all privileges except GRANT." msgstr "Všechna oprávnění kromě GRANT." -#: libraries/messages.inc.php:674 server_privileges.php:153 +#: libraries/messages.inc.php:670 server_privileges.php:153 #: server_privileges.php:476 msgid "Allows altering the structure of existing tables." msgstr "Umožňuje měnit strukturu existujících tabulek." -#: libraries/messages.inc.php:675 server_privileges.php:169 +#: libraries/messages.inc.php:671 server_privileges.php:169 #: server_privileges.php:482 msgid "Allows altering and dropping stored routines." msgstr "Umožňuje měnit a rušit uložené procedury." -#: libraries/messages.inc.php:676 server_privileges.php:145 +#: libraries/messages.inc.php:672 server_privileges.php:145 #: server_privileges.php:475 msgid "Allows creating new databases and tables." msgstr "Umožňuje vytvářet nové databáze a tabulky." -#: libraries/messages.inc.php:677 server_privileges.php:168 +#: libraries/messages.inc.php:673 server_privileges.php:168 #: server_privileges.php:481 msgid "Allows creating stored routines." msgstr "Umožňuje vytvářet uložené procedury." -#: libraries/messages.inc.php:678 server_privileges.php:475 +#: libraries/messages.inc.php:674 server_privileges.php:475 msgid "Allows creating new tables." msgstr "Umožňuje vytvářet nové tabulky." -#: libraries/messages.inc.php:679 server_privileges.php:156 +#: libraries/messages.inc.php:675 server_privileges.php:156 #: server_privileges.php:479 msgid "Allows creating temporary tables." msgstr "Umožňuje vytvářet dočasné tabulky." -#: libraries/messages.inc.php:680 server_privileges.php:170 +#: libraries/messages.inc.php:676 server_privileges.php:170 #: server_privileges.php:515 msgid "Allows creating, dropping and renaming user accounts." msgstr "Umožňuje vytvářet, rušit a přejmenovávat účty uživatelů." -#: libraries/messages.inc.php:681 server_privileges.php:160 +#: libraries/messages.inc.php:677 server_privileges.php:160 #: server_privileges.php:164 server_privileges.php:487 #: server_privileges.php:491 msgid "Allows creating new views." msgstr "Umožňuje vytvářet nové pohledy." -#: libraries/messages.inc.php:682 server_privileges.php:144 +#: libraries/messages.inc.php:678 server_privileges.php:144 #: server_privileges.php:467 msgid "Allows deleting data." msgstr "Umožňuje mazat data." -#: libraries/messages.inc.php:683 server_privileges.php:146 +#: libraries/messages.inc.php:679 server_privileges.php:146 #: server_privileges.php:478 msgid "Allows dropping databases and tables." msgstr "Umožňuje odstranit databáze a tabulky." -#: libraries/messages.inc.php:684 server_privileges.php:478 +#: libraries/messages.inc.php:680 server_privileges.php:478 msgid "Allows dropping tables." msgstr "Umožňuje odstranit tabulky." -#: libraries/messages.inc.php:685 server_privileges.php:161 +#: libraries/messages.inc.php:681 server_privileges.php:161 #: server_privileges.php:495 msgid "Allows to set up events for the event scheduler" msgstr "Umožňuje plánovat úlohy pomocí plánovače" -#: libraries/messages.inc.php:686 server_privileges.php:171 +#: libraries/messages.inc.php:682 server_privileges.php:171 #: server_privileges.php:483 msgid "Allows executing stored routines." msgstr "Umožňuje spouštět uložené procedury." -#: libraries/messages.inc.php:687 server_privileges.php:150 +#: libraries/messages.inc.php:683 server_privileges.php:150 #: server_privileges.php:470 msgid "Allows importing data from and exporting data into files." msgstr "Umožňuje importovat a exportovat data z/do souborů na serveru." -#: libraries/messages.inc.php:688 server_privileges.php:501 +#: libraries/messages.inc.php:684 server_privileges.php:501 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Umožňuje přidávat uživatele a oprávnění bez znovunačítání tabulek " "s oprávněními." -#: libraries/messages.inc.php:689 server_privileges.php:152 +#: libraries/messages.inc.php:685 server_privileges.php:152 #: server_privileges.php:477 msgid "Allows creating and dropping indexes." msgstr "Umožňuje vytvářet a rušit indexy." -#: libraries/messages.inc.php:690 server_privileges.php:142 +#: libraries/messages.inc.php:686 server_privileges.php:142 #: server_privileges.php:403 server_privileges.php:465 msgid "Allows inserting and replacing data." msgstr "Umožňuje vkládat a přepisovat data." -#: libraries/messages.inc.php:691 server_privileges.php:157 +#: libraries/messages.inc.php:687 server_privileges.php:157 #: server_privileges.php:510 msgid "Allows locking tables for the current thread." msgstr "Umožňuje zamknout tabulku pro aktuální vlákno." -#: libraries/messages.inc.php:692 server_privileges.php:607 +#: libraries/messages.inc.php:688 server_privileges.php:607 #: server_privileges.php:609 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Omezuje počet nových připojení, která může uživatel vytvořit za hodinu." -#: libraries/messages.inc.php:693 server_privileges.php:595 +#: libraries/messages.inc.php:689 server_privileges.php:595 #: server_privileges.php:597 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Omezuje, kolik dotazů může uživatel odeslat serveru za hodinu." -#: libraries/messages.inc.php:694 server_privileges.php:601 +#: libraries/messages.inc.php:690 server_privileges.php:601 #: server_privileges.php:603 msgid "" "Limits the number of commands that change any table or database the user may " @@ -4609,59 +4609,59 @@ msgstr "" "Omezuje, kolik dotazů měnících nějakou tabulku nebo databázi může uživatel " "spustit za hodinu." -#: libraries/messages.inc.php:695 server_privileges.php:613 +#: libraries/messages.inc.php:691 server_privileges.php:613 #: server_privileges.php:615 msgid "Limits the number of simultaneous connections the user may have." msgstr "Omezuje počet současných připojení uživatele." -#: libraries/messages.inc.php:696 server_privileges.php:149 +#: libraries/messages.inc.php:692 server_privileges.php:149 #: server_privileges.php:505 msgid "Allows viewing processes of all users" msgstr "Umožňuje prohlížet procesy všech uživatelů" -#: libraries/messages.inc.php:697 server_privileges.php:151 +#: libraries/messages.inc.php:693 server_privileges.php:151 #: server_privileges.php:409 server_privileges.php:511 msgid "Has no effect in this MySQL version." msgstr "Nemá žádný vliv v této verzi MySQL." -#: libraries/messages.inc.php:698 server_privileges.php:147 +#: libraries/messages.inc.php:694 server_privileges.php:147 #: server_privileges.php:506 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Umožňuje znovu načíst nastavení a vyprázdnění vyrovnávacích pamětí MySQL " "serveru." -#: libraries/messages.inc.php:699 server_privileges.php:159 +#: libraries/messages.inc.php:695 server_privileges.php:159 #: server_privileges.php:513 msgid "Allows the user to ask where the slaves / masters are." msgstr "Umožní uživateli zjistit, kde je hlavní / pomocný server." -#: libraries/messages.inc.php:700 server_privileges.php:158 +#: libraries/messages.inc.php:696 server_privileges.php:158 #: server_privileges.php:514 msgid "Needed for the replication slaves." msgstr "Potřebné pro replikaci pomocných serverů." -#: libraries/messages.inc.php:701 server_privileges.php:141 +#: libraries/messages.inc.php:697 server_privileges.php:141 #: server_privileges.php:400 server_privileges.php:464 msgid "Allows reading data." msgstr "Umožňuje vybírat data." -#: libraries/messages.inc.php:702 server_privileges.php:154 +#: libraries/messages.inc.php:698 server_privileges.php:154 #: server_privileges.php:508 msgid "Gives access to the complete list of databases." msgstr "Umožňuje přístup k úplnému seznamu databází." -#: libraries/messages.inc.php:703 server_privileges.php:165 +#: libraries/messages.inc.php:699 server_privileges.php:165 #: server_privileges.php:167 server_privileges.php:480 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Umožňuje spuštění dotazu SHOW CREATE VIEW." -#: libraries/messages.inc.php:704 server_privileges.php:148 +#: libraries/messages.inc.php:700 server_privileges.php:148 #: server_privileges.php:507 msgid "Allows shutting down the server." msgstr "Umožňuje vypnout server." -#: libraries/messages.inc.php:705 server_privileges.php:155 +#: libraries/messages.inc.php:701 server_privileges.php:155 #: server_privileges.php:504 msgid "" "Allows connecting, even if maximum number of connections is reached; " @@ -4672,148 +4672,148 @@ msgstr "" "pro většinu operací pro správu serveru jako nastavování globálních " "proměnných a zabíjení vláken jiných uživatelů." -#: libraries/messages.inc.php:706 server_privileges.php:162 +#: libraries/messages.inc.php:702 server_privileges.php:162 #: server_privileges.php:496 msgid "Allows creating and dropping triggers" msgstr "Umožňuje vytváření a mazání spouští" -#: libraries/messages.inc.php:707 server_privileges.php:143 +#: libraries/messages.inc.php:703 server_privileges.php:143 #: server_privileges.php:406 server_privileges.php:466 msgid "Allows changing data." msgstr "Umožňuje měnit data." -#: libraries/messages.inc.php:708 server_privileges.php:221 +#: libraries/messages.inc.php:704 server_privileges.php:221 msgid "No privileges." msgstr "Žádná oprávnění." -#: libraries/messages.inc.php:710 server_privileges.php:1296 +#: libraries/messages.inc.php:706 server_privileges.php:1296 msgid "The privileges were reloaded successfully." msgstr "Oprávnění byla načtena úspěšně." -#: libraries/messages.inc.php:712 libraries/server_links.inc.php:80 +#: libraries/messages.inc.php:708 libraries/server_links.inc.php:80 msgid "Processes" msgstr "Procesy" -#: libraries/messages.inc.php:714 main.php:187 +#: libraries/messages.inc.php:710 main.php:187 msgid "Protocol version" msgstr "Verze protokolu" -#: libraries/messages.inc.php:715 +#: libraries/messages.inc.php:711 msgid "Put fields names in the first row" msgstr "Přidat jména sloupců na první řádek" -#: libraries/messages.inc.php:720 server_synchronize.php:1003 +#: libraries/messages.inc.php:716 server_synchronize.php:1003 msgid "The following queries have been executed:" msgstr "Byly provedeny následující dotazy:" -#: libraries/messages.inc.php:721 server_status.php:251 +#: libraries/messages.inc.php:717 server_status.php:251 msgid "Query cache" msgstr "Vyrovnávací paměť dotazů" -#: libraries/messages.inc.php:722 libraries/navigation_header.inc.php:80 +#: libraries/messages.inc.php:718 libraries/navigation_header.inc.php:80 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 setup/lib/messages.inc.php:122 msgid "Query window" msgstr "Okno dotazů" -#: libraries/messages.inc.php:725 querywindow.php:109 querywindow.php:217 +#: libraries/messages.inc.php:721 querywindow.php:109 querywindow.php:217 msgid "SQL history" msgstr "SQL historie" -#: libraries/messages.inc.php:726 server_status.php:490 +#: libraries/messages.inc.php:722 server_status.php:490 #, php-format msgid "" "Query statistics: Since its startup, %s queries have been sent to the " "server." msgstr "Statistika dotazů: Od spuštění bylo serveru posláno %s dotazů." -#: libraries/messages.inc.php:728 server_status.php:554 +#: libraries/messages.inc.php:724 server_status.php:554 msgid "Query type" msgstr "Typ dotazu" -#: libraries/messages.inc.php:729 libraries/sql_query_form.lib.php:381 +#: libraries/messages.inc.php:725 libraries/sql_query_form.lib.php:381 msgid "Do not overwrite this query from outside the window" msgstr "Nepřepisovat tento dotaz z hlavního okna" -#: libraries/messages.inc.php:732 tbl_operations.php:663 +#: libraries/messages.inc.php:728 tbl_operations.php:663 msgid "Rebuild" msgstr "Přestavět" -#: libraries/messages.inc.php:733 server_status.php:394 +#: libraries/messages.inc.php:729 server_status.php:394 msgid "Received" msgstr "Přijato" -#: libraries/messages.inc.php:734 pmd_pdf.php:89 +#: libraries/messages.inc.php:730 pmd_pdf.php:89 msgid "recommended" msgstr "doporučené" -#: libraries/messages.inc.php:736 tbl_operations.php:702 +#: libraries/messages.inc.php:732 tbl_operations.php:702 msgid "Check referential integrity:" msgstr "Zkontrolovat integritu odkazů:" -#: libraries/messages.inc.php:740 pdf_schema.php:1032 pdf_schema.php:1141 +#: libraries/messages.inc.php:736 pdf_schema.php:1032 pdf_schema.php:1141 msgid "Relational schema" msgstr "Relační schéma" -#: libraries/messages.inc.php:744 tbl_relation.php:399 +#: libraries/messages.inc.php:740 tbl_relation.php:399 msgid "Relations" msgstr "Relace" -#: libraries/messages.inc.php:745 tbl_structure.php:507 tbl_structure.php:509 +#: libraries/messages.inc.php:741 tbl_structure.php:507 tbl_structure.php:509 msgid "Relation view" msgstr "Zobrazit relace" -#: libraries/messages.inc.php:746 server_privileges.php:1246 +#: libraries/messages.inc.php:742 server_privileges.php:1246 msgid "Reloading the privileges" msgstr "Načítám oprávnění" -#: libraries/messages.inc.php:747 navigation.php:66 navigation.php:67 +#: libraries/messages.inc.php:743 navigation.php:66 navigation.php:67 #: navigation.php:70 msgid "Reload navigation frame" msgstr "Znovu nahrát navigační rám" -#: libraries/messages.inc.php:748 pmd_general.php:80 +#: libraries/messages.inc.php:744 pmd_general.php:80 msgid "Reload" msgstr "Znovu načíst" -#: libraries/messages.inc.php:749 libraries/server_synchronize.lib.php:1345 +#: libraries/messages.inc.php:745 libraries/server_synchronize.lib.php:1345 #: libraries/server_synchronize.lib.php:1371 msgid "Remote server" msgstr "Vzdálený server" -#: libraries/messages.inc.php:750 +#: libraries/messages.inc.php:746 msgid "Remove CRLF characters within fields" msgstr "Odstranit znaky CRLF z položek" -#: libraries/messages.inc.php:751 tbl_operations.php:676 +#: libraries/messages.inc.php:747 tbl_operations.php:676 msgid "Remove partitioning" msgstr "Zrušit oddíly" -#: libraries/messages.inc.php:752 server_privileges.php:1575 +#: libraries/messages.inc.php:748 server_privileges.php:1575 msgid "Remove selected users" msgstr "Odstranit vybrané uživatele" -#: libraries/messages.inc.php:755 tbl_operations.php:338 +#: libraries/messages.inc.php:751 tbl_operations.php:338 msgid "Rename table to" msgstr "Přejmenovat tabulku na" -#: libraries/messages.inc.php:756 view_operations.php:93 +#: libraries/messages.inc.php:752 view_operations.php:93 msgid "Rename view to" msgstr "Přejmenovat pohled na" -#: libraries/messages.inc.php:757 tbl_operations.php:664 +#: libraries/messages.inc.php:753 tbl_operations.php:664 msgid "Repair" msgstr "Opravit" -#: libraries/messages.inc.php:759 +#: libraries/messages.inc.php:755 msgid "Replace NULL by" msgstr "Nahradit NULL hodnoty" -#: libraries/messages.inc.php:760 +#: libraries/messages.inc.php:756 msgid "Replace table data with file" msgstr "Přepsat data tabulky souborem" -#: libraries/messages.inc.php:761 server_replication.php:228 +#: libraries/messages.inc.php:757 server_replication.php:228 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -4821,45 +4821,45 @@ msgstr "" "Nyní, prosím, přidejte následující řádky na konec sekce [mysqld] ve vašem " "souboru my.cnf a poté restartutje MySQL server." -#: libraries/messages.inc.php:762 libraries/replication_gui.lib.php:236 +#: libraries/messages.inc.php:758 libraries/replication_gui.lib.php:236 #: server_replication.php:194 msgid "Add slave replication user" msgstr "Přidat replikačního uživatele pro podřízený server" -#: libraries/messages.inc.php:763 server_replication.php:74 +#: libraries/messages.inc.php:759 server_replication.php:74 #, php-format msgid "Master server changed succesfully to %s" msgstr "Nadřízený server bych úspěšně změněn na %s" -#: libraries/messages.inc.php:764 server_replication.php:182 +#: libraries/messages.inc.php:760 server_replication.php:182 msgid "This server is configured as master in a replication process." msgstr "Tento server je v replikačním procesu nastavený jako nadřízený." -#: libraries/messages.inc.php:765 server_replication.php:322 +#: libraries/messages.inc.php:761 server_replication.php:322 msgid "Control slave:" msgstr "Ovládání podřízeného:" -#: libraries/messages.inc.php:766 server_replication.php:65 +#: libraries/messages.inc.php:762 server_replication.php:65 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" "Nepodařilo se zjistit pozici v logu na nadřízeném serveru. Pravděpodobně je " "na něm problém s přístupovými právy." -#: libraries/messages.inc.php:767 server_replication.php:58 +#: libraries/messages.inc.php:763 server_replication.php:58 #, php-format msgid "Unable to connect to master %s." msgstr "Nepodařilo se připojit k nadřízenému %s." -#: libraries/messages.inc.php:768 server_replication.php:221 +#: libraries/messages.inc.php:764 server_replication.php:221 msgid "Replicate all databases; Ignore:" msgstr "Replikovat všechny databáze s výjimkou::" -#: libraries/messages.inc.php:769 server_replication.php:222 +#: libraries/messages.inc.php:765 server_replication.php:222 msgid "Ignore all databases; Replicate:" msgstr "Nereplikovat databáze s výjimkou:" -#: libraries/messages.inc.php:770 server_replication.php:218 +#: libraries/messages.inc.php:766 server_replication.php:218 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -4872,16 +4872,16 @@ msgstr "" "chcete replikovat většinu databází) nebo můžete zvolit opačný přístup - jen " "vybrat databáze, které chcete synchronizovat. Prosím zvolte požadovaný režim:" -#: libraries/messages.inc.php:771 server_replication.php:217 +#: libraries/messages.inc.php:767 server_replication.php:217 msgid "Master configuration" msgstr "Nastavení nadřízeného" -#: libraries/messages.inc.php:772 server_replication.php:181 +#: libraries/messages.inc.php:768 server_replication.php:181 #: server_replication.php:209 msgid "Master replication" msgstr "Replikace nadřízeného" -#: libraries/messages.inc.php:774 server_replication.php:230 +#: libraries/messages.inc.php:770 server_replication.php:230 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " @@ -4890,11 +4890,11 @@ msgstr "" "Prosím klikněte na tlačítko po restartování MySQL serveru. Poté byste měli " "vidět zprávu informující vás že server je nastaven jako nadřízený" -#: libraries/messages.inc.php:775 server_replication.php:225 +#: libraries/messages.inc.php:771 server_replication.php:225 msgid "Please select databases:" msgstr "Prosím vyberte databáze:" -#: libraries/messages.inc.php:776 server_replication.php:210 +#: libraries/messages.inc.php:772 server_replication.php:210 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -4903,7 +4903,7 @@ msgstr "" "Tento server není nastaven jako nadřízený v replikačním procesu. Přejete si " "ho nastavit?" -#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:188 +#: libraries/messages.inc.php:773 libraries/replication_gui.lib.php:188 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." @@ -4911,49 +4911,49 @@ msgstr "" "V tomto seznamu jsou zobrazeny jen podřízené servery spuštěné s parametrem --" "report-host=host_name." -#: libraries/messages.inc.php:778 server_replication.php:187 +#: libraries/messages.inc.php:774 server_replication.php:187 msgid "Show connected slaves" msgstr "Zobrazit připojené podřízené" -#: libraries/messages.inc.php:779 libraries/messages.inc.php:885 +#: libraries/messages.inc.php:775 libraries/messages.inc.php:881 #: server_replication.php:184 server_status.php:281 msgid "Show master status" msgstr "Zobrazit stav nadřízeného" -#: libraries/messages.inc.php:780 server_replication.php:334 +#: libraries/messages.inc.php:776 server_replication.php:334 msgid "Skipping error(s) might lead into unsynchronized master and slave!" msgstr "" "Přeskakování chyb může vést k rozdílným datům na nadřízeném a podřízeném " "serveru." -#: libraries/messages.inc.php:781 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:51 #: server_replication.php:347 msgid "Change or reconfigure master server" msgstr "Změnit nebo přenastavit nadřízený server" -#: libraries/messages.inc.php:782 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:778 libraries/replication_gui.lib.php:51 msgid "Slave configuration" msgstr "Nastavení podřízeného" -#: libraries/messages.inc.php:783 server_replication.php:305 +#: libraries/messages.inc.php:779 server_replication.php:305 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "Server je nastaven jako podřízený v replikačním procesu. Přejete si:" -#: libraries/messages.inc.php:784 server_replication.php:332 +#: libraries/messages.inc.php:780 server_replication.php:332 msgid "Error management:" msgstr "Práce s chybami:" -#: libraries/messages.inc.php:785 server_replication.php:328 +#: libraries/messages.inc.php:781 server_replication.php:328 #, php-format msgid "IO Thread %s only" msgstr "%s jen IO vlákno" -#: libraries/messages.inc.php:786 server_replication.php:296 +#: libraries/messages.inc.php:782 server_replication.php:296 msgid "Slave IO Thread not running!" msgstr "IO vlákno pro podřízený server neběží!" -#: libraries/messages.inc.php:787 server_replication.php:355 +#: libraries/messages.inc.php:783 server_replication.php:355 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -4962,40 +4962,40 @@ msgstr "" "Tento server není nastaven jako podřízený v replikačním procesu. Přejete si " "ho nastavit?" -#: libraries/messages.inc.php:788 server_replication.php:326 +#: libraries/messages.inc.php:784 server_replication.php:326 msgid "Reset slave" msgstr "Resetovat podřízený server" -#: libraries/messages.inc.php:789 server_replication.php:308 +#: libraries/messages.inc.php:785 server_replication.php:308 msgid "See slave status table" msgstr "Zobrazit tabulku se stavem podřízených" -#: libraries/messages.inc.php:790 server_replication.php:336 +#: libraries/messages.inc.php:786 server_replication.php:336 msgid "Skip current error" msgstr "Přeskočit současnou chybu" -#: libraries/messages.inc.php:791 server_replication.php:340 +#: libraries/messages.inc.php:787 server_replication.php:340 msgid "errors." msgstr "chyb." -#: libraries/messages.inc.php:792 server_replication.php:337 +#: libraries/messages.inc.php:788 server_replication.php:337 msgid "Skip next" msgstr "Přeskočit dalších" -#: libraries/messages.inc.php:793 server_replication.php:248 +#: libraries/messages.inc.php:789 server_replication.php:248 msgid "Slave replication" msgstr "Replikace podřízeného" -#: libraries/messages.inc.php:794 server_replication.php:293 +#: libraries/messages.inc.php:790 server_replication.php:293 msgid "Slave SQL Thread not running!" msgstr "SQL vlákno pro podřízený server neběží!" -#: libraries/messages.inc.php:795 server_replication.php:327 +#: libraries/messages.inc.php:791 server_replication.php:327 #, php-format msgid "SQL Thread %s only" msgstr "%s jen SQL vlákno" -#: libraries/messages.inc.php:796 +#: libraries/messages.inc.php:792 #, php-format msgid "" "This MySQL server works as %s in replication process. For further " @@ -5006,159 +5006,159 @@ msgstr "" "informací o stavu replikace se podívejte do sekce " "replikace." -#: libraries/messages.inc.php:797 +#: libraries/messages.inc.php:793 msgid "Master status" msgstr "Stav nadřízeného" -#: libraries/messages.inc.php:798 server_status.php:721 +#: libraries/messages.inc.php:794 server_status.php:721 msgid "Replication status" msgstr "Stav replikace" -#: libraries/messages.inc.php:799 +#: libraries/messages.inc.php:795 msgid "Slave status" msgstr "Stav podřízeného" -#: libraries/messages.inc.php:800 server_replication.php:311 +#: libraries/messages.inc.php:796 server_replication.php:311 msgid "Synchronize databases with master" msgstr "Synchronizovat databáze s nadřízeným" -#: libraries/messages.inc.php:801 server_replication.php:71 +#: libraries/messages.inc.php:797 server_replication.php:71 msgid "Unable to change master" msgstr "Nepodařilo se změnit nadřízeného" -#: libraries/messages.inc.php:802 server_replication.php:51 +#: libraries/messages.inc.php:798 server_replication.php:51 msgid "Unknown error" msgstr "Neznámá chyba" -#: libraries/messages.inc.php:803 main.php:163 pdf_pages.php:344 +#: libraries/messages.inc.php:799 main.php:163 pdf_pages.php:344 #: setup/lib/FormDisplay.tpl.php:216 tbl_change.php:1175 msgid "Reset" msgstr "Původní" -#: libraries/messages.inc.php:804 server_privileges.php:591 +#: libraries/messages.inc.php:800 server_privileges.php:591 msgid "Resource limits" msgstr "Omezení zdrojů" -#: libraries/messages.inc.php:805 tbl_change.php:1209 +#: libraries/messages.inc.php:801 tbl_change.php:1209 #, php-format msgid "Restart insertion with %s rows" msgstr "Začít znovu vkládání s %s řádky" -#: libraries/messages.inc.php:807 server_privileges.php:1578 +#: libraries/messages.inc.php:803 server_privileges.php:1578 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Odebrat uživatelům veškerá oprávnění a poté je odstranit z tabulek." -#: libraries/messages.inc.php:808 server_privileges.php:1176 +#: libraries/messages.inc.php:804 server_privileges.php:1176 #, php-format msgid "You have revoked the privileges for %s" msgstr "Byla zrušena práva pro %s" -#: libraries/messages.inc.php:809 server_privileges.php:1333 +#: libraries/messages.inc.php:805 server_privileges.php:1333 msgid "Revoke" msgstr "Zrušit" -#: libraries/messages.inc.php:810 libraries/mysql_charsets.lib.php:280 +#: libraries/messages.inc.php:806 libraries/mysql_charsets.lib.php:280 msgid "Romanian" msgstr "Rumunština" -#: libraries/messages.inc.php:813 tbl_printview.php:404 tbl_structure.php:786 +#: libraries/messages.inc.php:809 tbl_printview.php:404 tbl_structure.php:786 msgid "Row length" msgstr "Délka řádku" -#: libraries/messages.inc.php:815 tbl_printview.php:414 tbl_structure.php:794 +#: libraries/messages.inc.php:811 tbl_printview.php:414 tbl_structure.php:794 msgid " Row size " msgstr " Velikost řádku " -#: libraries/messages.inc.php:821 tbl_printview.php:366 tbl_structure.php:726 +#: libraries/messages.inc.php:817 tbl_printview.php:366 tbl_structure.php:726 msgid "Row Statistics" msgstr "Statistika řádků" -#: libraries/messages.inc.php:822 +#: libraries/messages.inc.php:818 #, php-format msgid "running on %s" msgstr "na %s" -#: libraries/messages.inc.php:824 libraries/sql_query_form.lib.php:223 +#: libraries/messages.inc.php:820 libraries/sql_query_form.lib.php:223 #, php-format msgid "Run SQL query/queries on server %s" msgstr "Spustit SQL dotaz(y) na serveru %s" -#: libraries/messages.inc.php:825 libraries/sql_query_form.lib.php:240 +#: libraries/messages.inc.php:821 libraries/sql_query_form.lib.php:240 #: libraries/sql_query_form.lib.php:265 #, php-format msgid "Run SQL query/queries on database %s" msgstr "Spustit SQL dotaz(y) na databázi %s" -#: libraries/messages.inc.php:826 libraries/mysql_charsets.lib.php:337 +#: libraries/messages.inc.php:822 libraries/mysql_charsets.lib.php:337 msgid "Russian" msgstr "Ruština" -#: libraries/messages.inc.php:829 pmd_general.php:68 +#: libraries/messages.inc.php:825 pmd_general.php:68 msgid "Save position" msgstr "Uložit rozmístění" -#: libraries/messages.inc.php:830 libraries/tbl_properties.inc.php:776 +#: libraries/messages.inc.php:826 libraries/tbl_properties.inc.php:776 #: pdf_pages.php:484 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:214 setup/lib/FormDisplay.tpl.php:215 #: tbl_change.php:1126 tbl_indexes.php:248 tbl_relation.php:566 msgid "Save" msgstr "Uložit" -#: libraries/messages.inc.php:831 +#: libraries/messages.inc.php:827 msgid "The scale factor is too small to fit the schema on one page" msgstr "Měřítko je příliš malé, aby se schéma vešlo na jednu stránku" -#: libraries/messages.inc.php:843 main.php:298 +#: libraries/messages.inc.php:839 main.php:298 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "Nastavte klíč pro šifrování cookies (blowfish_secret) v konfiguračním " "souboru (config.inc.php)." -#: libraries/messages.inc.php:844 navigation.php:353 navigation.php:516 +#: libraries/messages.inc.php:840 navigation.php:353 navigation.php:516 msgid "Please select a database" msgstr "Prosím vyberte databázi" -#: libraries/messages.inc.php:846 server_binlog.php:120 +#: libraries/messages.inc.php:842 server_binlog.php:120 msgid "Select binary log to view" msgstr "Zvolte binární log pro zobrazení" -#: libraries/messages.inc.php:847 tbl_select.php:270 +#: libraries/messages.inc.php:843 tbl_select.php:270 msgid "Select fields (at least one):" msgstr "Zvolte sloupec (alespoň jeden):" -#: libraries/messages.inc.php:851 pdf_pages.php:320 +#: libraries/messages.inc.php:847 pdf_pages.php:320 msgid "Select Tables" msgstr "Vybrat tabulky" -#: libraries/messages.inc.php:853 server_status.php:404 +#: libraries/messages.inc.php:849 server_status.php:404 msgid "Sent" msgstr "Odesláno" -#: libraries/messages.inc.php:857 libraries/select_server.lib.php:45 +#: libraries/messages.inc.php:853 libraries/select_server.lib.php:45 #: setup/frames/index.inc.php:97 setup/lib/messages.inc.php:115 msgid "Servers" msgstr "Servery" -#: libraries/messages.inc.php:858 server_status.php:255 +#: libraries/messages.inc.php:854 server_status.php:255 msgid "Delayed inserts" msgstr "Odložené inserty" -#: libraries/messages.inc.php:859 server_status.php:46 +#: libraries/messages.inc.php:855 server_status.php:46 msgid "Runtime Information" msgstr "Stav serveru" -#: libraries/messages.inc.php:860 server_status.php:350 +#: libraries/messages.inc.php:856 server_status.php:350 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Tento MySQL server běží %s. Čas spuštění: %s." -#: libraries/messages.inc.php:861 libraries/server_links.inc.php:53 +#: libraries/messages.inc.php:857 libraries/server_links.inc.php:53 #: server_engines.php:112 server_engines.php:116 server_status.php:304 #: test/theme.php:105 msgid "Variables" msgstr "Proměnné" -#: libraries/messages.inc.php:862 server_status.php:383 +#: libraries/messages.inc.php:858 server_status.php:383 msgid "" "Server traffic: These tables show the network traffic statistics of " "this MySQL server since its startup." @@ -5166,11 +5166,11 @@ msgstr "" "Provoz serveru: Informace o síťovém provozu MySQL serveru od jeho " "spuštění." -#: libraries/messages.inc.php:863 server_variables.php:35 +#: libraries/messages.inc.php:859 server_variables.php:35 msgid "Server variables and settings" msgstr "Proměnné a nastavení serveru" -#: libraries/messages.inc.php:865 main.php:290 +#: libraries/messages.inc.php:861 main.php:290 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -5182,7 +5182,7 @@ msgstr "" "platnost cookies nastavená v phpMyAdminovi. Z tohoto důvodu bude vaše " "přilášení neplatné dříve, než je nastaveno v phpMyAdminovi." -#: libraries/messages.inc.php:866 +#: libraries/messages.inc.php:862 msgid "" "Cannot start session without errors, please check errors given in your PHP " "and/or webserver log file and configure your PHP installation properly." @@ -5190,11 +5190,11 @@ msgstr "" "Vytváření sezení selhalo, prosím zkontrolujte chyby v logu PHP a/nebo " "webserveru a pečlivě nastavte podporu sezení v PHP." -#: libraries/messages.inc.php:867 server_variables.php:55 +#: libraries/messages.inc.php:863 server_variables.php:55 msgid "Session value" msgstr "Hodnota sezení" -#: libraries/messages.inc.php:868 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:864 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 " @@ -5206,44 +5206,44 @@ msgstr "" "nebo jednoduché uvozovky („'“) mezi těmito hodnotami, napište před ně zpětné " "lomítko (příklad: '\\\\xyz' nebo 'a\\'b')." -#: libraries/messages.inc.php:876 server_binlog.php:192 server_binlog.php:195 +#: libraries/messages.inc.php:872 server_binlog.php:192 server_binlog.php:195 #: server_processlist.php:49 server_processlist.php:51 msgid "Show Full Queries" msgstr "Zobrazit celé dotazy" -#: libraries/messages.inc.php:878 pmd_general.php:64 +#: libraries/messages.inc.php:874 pmd_general.php:64 msgid "Show/Hide left menu" msgstr "Zobrazit/Skrýt levé menu" -#: libraries/messages.inc.php:880 sql.php:513 +#: libraries/messages.inc.php:876 sql.php:513 msgid "Showing as PHP code" msgstr "Zobrazuji jako PHP kód" -#: libraries/messages.inc.php:882 sql.php:516 tbl_replace.php:360 +#: libraries/messages.inc.php:878 sql.php:516 tbl_replace.php:360 msgid "Showing SQL query" msgstr "Zobrazuji SQL dotaz" -#: libraries/messages.inc.php:883 tbl_change.php:1132 +#: libraries/messages.inc.php:879 tbl_change.php:1132 msgid "Show insert query" msgstr "Zobrazit dotaz pro vložení" -#: libraries/messages.inc.php:886 server_status.php:273 +#: libraries/messages.inc.php:882 server_status.php:273 msgid "Show open tables" msgstr "Zobrazit otevřené tabulky" -#: libraries/messages.inc.php:887 main.php:219 +#: libraries/messages.inc.php:883 main.php:219 msgid "Show PHP information" msgstr "Zobrazit informace o PHP" -#: libraries/messages.inc.php:889 server_status.php:278 +#: libraries/messages.inc.php:885 server_status.php:278 msgid "Show slave hosts" msgstr "Zobrazit podřízené servery" -#: libraries/messages.inc.php:890 server_status.php:284 +#: libraries/messages.inc.php:886 server_status.php:284 msgid "Show slave status" msgstr "Zobrazit stav podřízených serverů" -#: libraries/messages.inc.php:891 +#: libraries/messages.inc.php:887 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -5253,11 +5253,11 @@ msgstr "" "binlog_cache_size a musely použít dočasný soubor pro uložení příkazů " "transakce." -#: libraries/messages.inc.php:892 +#: libraries/messages.inc.php:888 msgid "The number of transactions that used the temporary binary log cache." msgstr "Počet transakcí, které využily dočasný binární log." -#: libraries/messages.inc.php:893 +#: libraries/messages.inc.php:889 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -5268,18 +5268,18 @@ msgstr "" "Pokud je tato hodnota velká, můžete zvětšit parametr tmp_table_size a MySQL " "bude používat větší dočasné tabulky v paměti." -#: libraries/messages.inc.php:894 +#: libraries/messages.inc.php:890 msgid "How many temporary files mysqld has created." msgstr "Počet vytvořených dočasných souborů." -#: libraries/messages.inc.php:895 +#: libraries/messages.inc.php:891 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" "Počet dočasných tabulek vytvořených serverem v paměti při provádění dotazů." -#: libraries/messages.inc.php:896 +#: libraries/messages.inc.php:892 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -5287,7 +5287,7 @@ msgstr "" "Počet řádků provedených pomocí INSERT DELAYED, u kterých se vyskytla chyba " "(pravděpodobně duplicitní klíč)." -#: libraries/messages.inc.php:897 +#: libraries/messages.inc.php:893 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -5295,23 +5295,23 @@ msgstr "" "Počet vláken používaných pro INSERT DELAYED. Každá tabulka na které je " "použit INSERT DEKAYED má přiděleno jedno vlákno." -#: libraries/messages.inc.php:898 +#: libraries/messages.inc.php:894 msgid "The number of INSERT DELAYED rows written." msgstr "Počet řádků zapsaných pomocí INSERT DELAYED." -#: libraries/messages.inc.php:899 +#: libraries/messages.inc.php:895 msgid "The number of executed FLUSH statements." msgstr "Počet provedených příkazů FLUSH." -#: libraries/messages.inc.php:900 +#: libraries/messages.inc.php:896 msgid "The number of internal COMMIT statements." msgstr "Počet interních příkazů COMMIT." -#: libraries/messages.inc.php:901 +#: libraries/messages.inc.php:897 msgid "The number of times a row was deleted from a table." msgstr "Počet požadavků na smazání řádku." -#: libraries/messages.inc.php:902 +#: libraries/messages.inc.php:898 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -5320,7 +5320,7 @@ msgstr "" "Počet zjišťování tabulek. Tímto se nazývá dotaz NDB clusteru, jestli ví o " "tabulce daného jména." -#: libraries/messages.inc.php:903 +#: libraries/messages.inc.php:899 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -5330,7 +5330,7 @@ msgstr "" "server provádí mnoho kompletních procházení indexu. Na příklad SELECT col1 " "FROM foo, pokud je col1 indexována." -#: libraries/messages.inc.php:904 +#: libraries/messages.inc.php:900 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -5338,7 +5338,7 @@ msgstr "" "Počet požadavků na přečtení řádku vycházející z indexu. Vysoká hodnota " "znamená, že dotazy správně využívají indexy." -#: libraries/messages.inc.php:905 +#: libraries/messages.inc.php:901 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -5348,7 +5348,7 @@ msgstr "" "zvětšuje pokud provádíte dotaz na indexovaný sloupec s omezením rozsahu nebo " "prohledáváte index." -#: libraries/messages.inc.php:906 +#: libraries/messages.inc.php:902 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -5356,7 +5356,7 @@ msgstr "" "Počet požadavků na přečtení předchozího řádku z indexu. Používané pro " "optimalizaci dotazů ORDER BY ... DESC." -#: libraries/messages.inc.php:907 +#: libraries/messages.inc.php:903 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -5368,7 +5368,7 @@ msgstr "" "Pravděpodobně používáte mnoho dotazů, které vyžadují prohlížení celé tabulky " "nebo používáte spojení tabulek, která nevyužívají indexů." -#: libraries/messages.inc.php:908 +#: libraries/messages.inc.php:904 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -5379,35 +5379,35 @@ msgstr "" "pokud dotazy procházejí celé tabulky, pravděpodobně tedy nemají vhodné " "indexy." -#: libraries/messages.inc.php:909 +#: libraries/messages.inc.php:905 msgid "The number of internal ROLLBACK statements." msgstr "Počet interních příkazů ROLLBACK." -#: libraries/messages.inc.php:910 +#: libraries/messages.inc.php:906 msgid "The number of requests to update a row in a table." msgstr "Počet požadavků na aktualizaci řádku." -#: libraries/messages.inc.php:911 +#: libraries/messages.inc.php:907 msgid "The number of requests to insert a row in a table." msgstr "Počet požadavků na vložení řádku." -#: libraries/messages.inc.php:912 +#: libraries/messages.inc.php:908 msgid "The number of pages containing data (dirty or clean)." msgstr "Počet stránek obsahujících data (změněné i nezměněné)." -#: libraries/messages.inc.php:913 +#: libraries/messages.inc.php:909 msgid "The number of pages currently dirty." msgstr "Počet změněných stránek." -#: libraries/messages.inc.php:914 +#: libraries/messages.inc.php:910 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Počet stránek, na které je požadavek na vyprázdnění." -#: libraries/messages.inc.php:915 +#: libraries/messages.inc.php:911 msgid "The number of free pages." msgstr "Počet volných stránek." -#: libraries/messages.inc.php:916 +#: libraries/messages.inc.php:912 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -5416,7 +5416,7 @@ msgstr "" "Počet zamčených stránek, tzn. stránek, které jsou právě zapisovány nebo " "čteny nebo nemohou být odstraněny z jakéhokoliv důvodu." -#: libraries/messages.inc.php:917 +#: libraries/messages.inc.php:913 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -5428,11 +5428,11 @@ msgstr "" "Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data." -#: libraries/messages.inc.php:918 +#: libraries/messages.inc.php:914 msgid "Total size of buffer pool, in pages." msgstr "Celková velikost InnoDB bufferů, ve stránkách." -#: libraries/messages.inc.php:919 +#: libraries/messages.inc.php:915 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -5440,7 +5440,7 @@ msgstr "" "Počet provedených „náhodných“ dopředných čtení. Tato situace nastává pokud " "dotaz prochází velkou část tabulky v náhodném pořadí." -#: libraries/messages.inc.php:920 +#: libraries/messages.inc.php:916 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -5448,11 +5448,11 @@ msgstr "" "Počet provedených sekvenčních dopředných čtení. Toto nastává pokud InnoDB " "musí procházet celou tabulku." -#: libraries/messages.inc.php:921 +#: libraries/messages.inc.php:917 msgid "The number of logical read requests InnoDB has done." msgstr "Počet provedených logických čtení." -#: libraries/messages.inc.php:922 +#: libraries/messages.inc.php:918 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -5460,7 +5460,7 @@ msgstr "" "Počet logických čtení, které nemohly být uspokojeny z bufferu, ale bylo " "nutné přečíst stránku ze souboru." -#: libraries/messages.inc.php:923 +#: libraries/messages.inc.php:919 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -5473,55 +5473,55 @@ msgstr "" "k dispozici, musí se čekat. Pokud je velikost bufferů nastavena správně, " "měla by tato hodnota být malá." -#: libraries/messages.inc.php:924 +#: libraries/messages.inc.php:920 msgid "The number writes done to the InnoDB buffer pool." msgstr "Počet zápisů provedených do InnoDB bufferu." -#: libraries/messages.inc.php:925 +#: libraries/messages.inc.php:921 msgid "The number of fsync() operations so far." msgstr "Počet provedených synchronizací fsync()." -#: libraries/messages.inc.php:926 +#: libraries/messages.inc.php:922 msgid "The current number of pending fsync() operations." msgstr "Počet nevyřízených synchronizací fsync()." -#: libraries/messages.inc.php:927 +#: libraries/messages.inc.php:923 msgid "The current number of pending reads." msgstr "Počet nevyřízených čtení." -#: libraries/messages.inc.php:928 +#: libraries/messages.inc.php:924 msgid "The current number of pending writes." msgstr "Počet nevyřízených zápisů." -#: libraries/messages.inc.php:929 +#: libraries/messages.inc.php:925 msgid "The amount of data read so far, in bytes." msgstr "Velikost přečtených dat, v bajtech." -#: libraries/messages.inc.php:930 +#: libraries/messages.inc.php:926 msgid "The total number of data reads." msgstr "Počet provedených čtení dat." -#: libraries/messages.inc.php:931 +#: libraries/messages.inc.php:927 msgid "The total number of data writes." msgstr "Počet provedených zápisů dat." -#: libraries/messages.inc.php:932 +#: libraries/messages.inc.php:928 msgid "The amount of data written so far, in bytes." msgstr "Velikost zapsaných dat, v bajtech." -#: libraries/messages.inc.php:933 +#: libraries/messages.inc.php:929 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Počet provedených dvojitých zapsání a počet stránek, které byly takto " "zapsány." -#: libraries/messages.inc.php:934 +#: libraries/messages.inc.php:930 msgid "The number of doublewrite operations that have been performed." msgstr "" "Počet provedených dvojitých zapsání a počet stránek, které byly takto " "zapsány." -#: libraries/messages.inc.php:935 +#: libraries/messages.inc.php:931 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -5529,35 +5529,35 @@ msgstr "" "Počet čekání kvůli plnému bufferu logu, který musel být vyprázdněn před " "pokračováním." -#: libraries/messages.inc.php:936 +#: libraries/messages.inc.php:932 msgid "The number of log write requests." msgstr "Počet požadavků na zápis do logovacího souboru." -#: libraries/messages.inc.php:937 +#: libraries/messages.inc.php:933 msgid "The number of physical writes to the log file." msgstr "Počet skutečných zápisů do logovacího souboru." -#: libraries/messages.inc.php:938 +#: libraries/messages.inc.php:934 msgid "The number of fsync() writes done to the log file." msgstr "Počet synchronizací fsync() provedených na logovacích souborech." -#: libraries/messages.inc.php:939 +#: libraries/messages.inc.php:935 msgid "The number of pending log file fsyncs." msgstr "Počet nevyřízených synchronizací logovacích souborů." -#: libraries/messages.inc.php:940 +#: libraries/messages.inc.php:936 msgid "Pending log file writes." msgstr "Počet nevyřízených zápisů do logovacích souborů." -#: libraries/messages.inc.php:941 +#: libraries/messages.inc.php:937 msgid "The number of bytes written to the log file." msgstr "Počet bajtů zapsaných do logovacího souboru." -#: libraries/messages.inc.php:942 +#: libraries/messages.inc.php:938 msgid "The number of pages created." msgstr "Počet vytvořených stránek." -#: libraries/messages.inc.php:943 +#: libraries/messages.inc.php:939 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -5565,51 +5565,51 @@ msgstr "" "Zakompilovaná velikost stránky InnoDB (výchozí je 16 kB). Mnoho hodnot je " "uváděno ve stránkách, pomocí této hodnoty je můžete přepočítat na velikost." -#: libraries/messages.inc.php:944 +#: libraries/messages.inc.php:940 msgid "The number of pages read." msgstr "Počet přečtených stránek." -#: libraries/messages.inc.php:945 +#: libraries/messages.inc.php:941 msgid "The number of pages written." msgstr "Počet zapsaných stránek." -#: libraries/messages.inc.php:946 +#: libraries/messages.inc.php:942 msgid "The number of row locks currently being waited for." msgstr "Počet zámků řádku, na které se v současné době čeká." -#: libraries/messages.inc.php:947 +#: libraries/messages.inc.php:943 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Průměrný čas potřebný pro získání zámku řádku, v milisekundách." -#: libraries/messages.inc.php:948 +#: libraries/messages.inc.php:944 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Celkový čas strávený čekáním na zámek řádku, v milisekundách." -#: libraries/messages.inc.php:949 +#: libraries/messages.inc.php:945 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Maximální čas potřebný pro získání zámku řádku, v milisekundách." -#: libraries/messages.inc.php:950 +#: libraries/messages.inc.php:946 msgid "The number of times a row lock had to be waited for." msgstr "Kolikrát se muselo čekat na zámek řádku." -#: libraries/messages.inc.php:951 +#: libraries/messages.inc.php:947 msgid "The number of rows deleted from InnoDB tables." msgstr "Počet řádků odstraněných z InnoDB tabulek." -#: libraries/messages.inc.php:952 +#: libraries/messages.inc.php:948 msgid "The number of rows inserted in InnoDB tables." msgstr "Počet řádků vložených do InnoDB tabulek." -#: libraries/messages.inc.php:953 +#: libraries/messages.inc.php:949 msgid "The number of rows read from InnoDB tables." msgstr "Počet řádků přečtených z InnoDB tabulek." -#: libraries/messages.inc.php:954 +#: libraries/messages.inc.php:950 msgid "The number of rows updated in InnoDB tables." msgstr "Počet řádků aktualizovaných v InnoDB tabulkách." -#: libraries/messages.inc.php:955 +#: libraries/messages.inc.php:951 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -5617,7 +5617,7 @@ msgstr "" "Počet bloků ve vyrovnávací paměti klíčů, které byly změněny, ale nebyly " "zapsány na disk. Dříve se tato hodnota jmenovala Not_flushed_key_blocks." -#: libraries/messages.inc.php:956 +#: libraries/messages.inc.php:952 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -5625,7 +5625,7 @@ msgstr "" "Počet nepoužitých bloků ve vyrovnávací paměti klíčů. Pomocí této hodnoty " "poznáte jak moc je vyrovnávací paměť využitá." -#: libraries/messages.inc.php:957 +#: libraries/messages.inc.php:953 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -5634,11 +5634,11 @@ msgstr "" "Počet použitých bloků ve vyrovnávací paměti klíčů. Tato hodnota určuje " "maximum bloků, které kdy byly obsazeny najednou." -#: libraries/messages.inc.php:958 +#: libraries/messages.inc.php:954 msgid "The number of requests to read a key block from the cache." msgstr "Počet požadavků na přečtení klíče z vyrovnávací paměti." -#: libraries/messages.inc.php:959 +#: libraries/messages.inc.php:955 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -5648,15 +5648,15 @@ msgstr "" "pravděpodobně máte malou vyrovnávací paměť (key_buffer_size). Úspěšnost " "vyrovnávací paměti můžete spočítat jako Key_reads/Key_read_requests." -#: libraries/messages.inc.php:960 +#: libraries/messages.inc.php:956 msgid "The number of requests to write a key block to the cache." msgstr "Počet požadavků na zápis bloku klíče na disk." -#: libraries/messages.inc.php:961 +#: libraries/messages.inc.php:957 msgid "The number of physical writes of a key block to disk." msgstr "Počet skutečných zápisů bloku klíče na disk." -#: libraries/messages.inc.php:962 +#: libraries/messages.inc.php:958 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -5666,11 +5666,11 @@ msgstr "" "dotazů. Užitečné pro porovnání různých dotazů. Výchozí hodnota 0 znamená, že " "žádný dotaz ještě nebyl kompilován." -#: libraries/messages.inc.php:963 +#: libraries/messages.inc.php:959 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Počet řádků čekajících na zapsání ve frontě INSERT DELAYED." -#: libraries/messages.inc.php:964 +#: libraries/messages.inc.php:960 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -5678,35 +5678,35 @@ msgstr "" "Celkem otevřených tabulek. Pokud je tato hodnota příliš vysoká, " "pravděpodobně máte malou vyrovnávací paměť pro tabulky." -#: libraries/messages.inc.php:965 +#: libraries/messages.inc.php:961 msgid "The number of files that are open." msgstr "Počet otevřených souborů." -#: libraries/messages.inc.php:966 +#: libraries/messages.inc.php:962 msgid "The number of streams that are open (used mainly for logging)." msgstr "Počet otevřených streamů (používané převážně pro logování)." -#: libraries/messages.inc.php:967 +#: libraries/messages.inc.php:963 msgid "The number of tables that are open." msgstr "Počet aktuálně otevřených tabulek." -#: libraries/messages.inc.php:968 +#: libraries/messages.inc.php:964 msgid "The number of free memory blocks in query cache." msgstr "Počet volných bloků paměti ve vyrovnávací paměti dotazů." -#: libraries/messages.inc.php:969 +#: libraries/messages.inc.php:965 msgid "The amount of free memory for query cache." msgstr "Velikost volné paměti ve vyrovnávací paměti dotazů." -#: libraries/messages.inc.php:970 +#: libraries/messages.inc.php:966 msgid "The number of cache hits." msgstr "Počet zásahů vyrovnávací paměti dotazů." -#: libraries/messages.inc.php:971 +#: libraries/messages.inc.php:967 msgid "The number of queries added to the cache." msgstr "Počet dotazů přidaných do vyrovnávací paměti dotazů." -#: libraries/messages.inc.php:972 +#: libraries/messages.inc.php:968 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -5718,7 +5718,7 @@ msgstr "" "Vyrovnávací paměť používá strategii LRU (nejdéle nepoužité) pro vyřazování " "dotazů z vyrovnávací paměti." -#: libraries/messages.inc.php:973 +#: libraries/messages.inc.php:969 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -5726,24 +5726,24 @@ msgstr "" "Počet necachovaných dotazů (necachovatelných nebo necachovaných kvůli " "nastavení query_cache_type)." -#: libraries/messages.inc.php:974 +#: libraries/messages.inc.php:970 msgid "The number of queries registered in the cache." msgstr "Počet dotazů ve vyrovnávací paměti dotazů." -#: libraries/messages.inc.php:975 +#: libraries/messages.inc.php:971 msgid "The total number of blocks in the query cache." msgstr "Celkový počet bloků ve vyrovnávací paměti dotazů." -#: libraries/messages.inc.php:976 +#: libraries/messages.inc.php:972 msgctxt "$strShowStatusReset" msgid "Reset" msgstr "Vynulovat statistiky" -#: libraries/messages.inc.php:977 +#: libraries/messages.inc.php:973 msgid "The status of failsafe replication (not yet implemented)." msgstr "Stav failsafe replikace." -#: libraries/messages.inc.php:978 +#: libraries/messages.inc.php:974 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -5751,12 +5751,12 @@ msgstr "" "Počet spojení, které nevyužívaly indexy. Pokud tato hodnota není 0, měli " "byste zkontrolovat indexy tabulek." -#: libraries/messages.inc.php:979 +#: libraries/messages.inc.php:975 msgid "The number of joins that used a range search on a reference table." msgstr "" "Počet spojení, které používaly intervalové vyhledávání na referenční tabulce." -#: libraries/messages.inc.php:980 +#: libraries/messages.inc.php:976 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -5764,7 +5764,7 @@ msgstr "" "Počet spojení bez klíčů, které kontrolovaly použití klíčů po každém řádku. " "(Pokud tato hodnota není 0, měli byste zkontrolovat indexy tabulek.)" -#: libraries/messages.inc.php:981 +#: libraries/messages.inc.php:977 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -5772,38 +5772,38 @@ msgstr "" "Počet spojení, které používaly intervalové vyhledávání na první tabulce. " "(Tato hodnota obvykle není kritická i když je vysoká.)" -#: libraries/messages.inc.php:982 +#: libraries/messages.inc.php:978 msgid "The number of joins that did a full scan of the first table." msgstr "Počet spojení, které prováděly kompletní procházení první tabulky." -#: libraries/messages.inc.php:983 +#: libraries/messages.inc.php:979 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "Počet dočasných tabulek v současné době otevřených podřízeným serverem." -#: libraries/messages.inc.php:984 +#: libraries/messages.inc.php:980 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "Celkový počet, kolikrát musel podřízený server opakovat transakce." -#: libraries/messages.inc.php:985 +#: libraries/messages.inc.php:981 msgid "This is ON if this server is a slave that is connected to a master." msgstr "Tato položka je zapnutá, pokud server pracuje jako podřízený." -#: libraries/messages.inc.php:986 +#: libraries/messages.inc.php:982 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" "Počet vláken jejichž vytvoření trvalo déle než slow_launch_time sekund." -#: libraries/messages.inc.php:987 +#: libraries/messages.inc.php:983 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "Počet dotazů, které trvaly déle než long_query_time sekund." -#: libraries/messages.inc.php:988 +#: libraries/messages.inc.php:984 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -5812,23 +5812,23 @@ msgstr "" "Počet průchodů slučování, které musel provést řadicí algoritmus. Při příliš " "vysoké hodnotě zvažte zvýšení sort_buffer_size." -#: libraries/messages.inc.php:989 +#: libraries/messages.inc.php:985 msgid "The number of sorts that were done with ranges." msgstr "Počet řazení, které byly omezeny rozsahem." -#: libraries/messages.inc.php:990 +#: libraries/messages.inc.php:986 msgid "The number of sorted rows." msgstr "Počet řazených řádek." -#: libraries/messages.inc.php:991 +#: libraries/messages.inc.php:987 msgid "The number of sorts that were done by scanning the table." msgstr "Počet řazení provedených procházením tabulky." -#: libraries/messages.inc.php:992 +#: libraries/messages.inc.php:988 msgid "The number of times that a table lock was acquired immediately." msgstr "Počet okamžitých získání zámku tabulky." -#: libraries/messages.inc.php:993 +#: libraries/messages.inc.php:989 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -5839,7 +5839,7 @@ msgstr "" "problémy s výkonem, měli byste optimalizovat dotazy a případně rozdělit " "tabulky nebo použít replikaci." -#: libraries/messages.inc.php:994 +#: libraries/messages.inc.php:990 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -5849,11 +5849,11 @@ msgstr "" "spočítána jako Threads_created/Connections. Pokud je tato hodnota červená, " "měli byste zvýšit thread_cache_size." -#: libraries/messages.inc.php:995 +#: libraries/messages.inc.php:991 msgid "The number of currently open connections." msgstr "Počet aktuálně otevřených připojení." -#: libraries/messages.inc.php:996 +#: libraries/messages.inc.php:992 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -5864,28 +5864,28 @@ msgstr "" "velká, můžete zvětšit parametr thread_cache_size. (Na platformách, které " "mají dobrou implementaci vláken však toto nemá příliš velký vliv.)" -#: libraries/messages.inc.php:997 +#: libraries/messages.inc.php:993 msgid "The number of threads that are not sleeping." msgstr "Počet vláken, která nespí." -#: libraries/messages.inc.php:999 tbl_printview.php:75 +#: libraries/messages.inc.php:995 tbl_printview.php:75 msgid "Show tables" msgstr "Zobrazit tabulky" -#: libraries/messages.inc.php:1000 libraries/sql_query_form.lib.php:396 +#: libraries/messages.inc.php:996 libraries/sql_query_form.lib.php:396 msgid " Show this query here again " msgstr " Zobrazit zde tento dotaz znovu " -#: libraries/messages.inc.php:1001 libraries/mysql_charsets.lib.php:217 +#: libraries/messages.inc.php:997 libraries/mysql_charsets.lib.php:217 #: libraries/mysql_charsets.lib.php:342 msgid "Simplified Chinese" msgstr "Zjednodušená čínština" -#: libraries/messages.inc.php:1002 tbl_operations.php:258 +#: libraries/messages.inc.php:998 tbl_operations.php:258 msgid "(singly)" msgstr "(po jednom)" -#: libraries/messages.inc.php:1005 libraries/replication_gui.lib.php:52 +#: libraries/messages.inc.php:1001 libraries/replication_gui.lib.php:52 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" @@ -5893,47 +5893,47 @@ msgstr "" "Ujistěte se, že máte unikátní ID serveru ve vašem konfiguračním souboru (my." "cnf). Pokud ne, prosím přidejte následující řádek to sekce [mysqld]:" -#: libraries/messages.inc.php:1006 libraries/mysql_charsets.lib.php:283 +#: libraries/messages.inc.php:1002 libraries/mysql_charsets.lib.php:283 msgid "Slovak" msgstr "Slovenština" -#: libraries/messages.inc.php:1007 libraries/mysql_charsets.lib.php:286 +#: libraries/messages.inc.php:1003 libraries/mysql_charsets.lib.php:286 msgid "Slovenian" msgstr "Slovinština" -#: libraries/messages.inc.php:1008 pmd_general.php:95 +#: libraries/messages.inc.php:1004 pmd_general.php:95 msgid "Small/Big All" msgstr "Vše malé/velké" -#: libraries/messages.inc.php:1009 pmd_general.php:91 +#: libraries/messages.inc.php:1005 pmd_general.php:91 msgid "Snap to grid" msgstr "Zachytávat na mřížku" -#: libraries/messages.inc.php:1011 server_synchronize.php:1167 +#: libraries/messages.inc.php:1007 server_synchronize.php:1167 msgid "Socket" msgstr "Socket" -#: libraries/messages.inc.php:1013 server_status.php:259 +#: libraries/messages.inc.php:1009 server_status.php:259 msgid "Sorting" msgstr "Řazení" -#: libraries/messages.inc.php:1015 tbl_printview.php:310 tbl_structure.php:657 +#: libraries/messages.inc.php:1011 tbl_printview.php:310 tbl_structure.php:657 msgid "Space usage" msgstr "Využití místa" -#: libraries/messages.inc.php:1016 libraries/mysql_charsets.lib.php:289 +#: libraries/messages.inc.php:1012 libraries/mysql_charsets.lib.php:289 msgid "Spanish" msgstr "Španělština" -#: libraries/messages.inc.php:1019 +#: libraries/messages.inc.php:1015 msgid "Export type" msgstr "Typ vytvořených dotazů" -#: libraries/messages.inc.php:1020 +#: libraries/messages.inc.php:1016 msgid "Export time in UTC" msgstr "Exportovat čas v UTC" -#: libraries/messages.inc.php:1021 libraries/sqlparser.lib.php:173 +#: libraries/messages.inc.php:1017 libraries/sqlparser.lib.php:173 msgid "" "There is a chance that you may have found a bug in the SQL parser. Please " "examine your query closely, and check that the quotes are correct and not " @@ -5955,7 +5955,7 @@ msgstr "" "dotaz na co nejmenší, ve kterém se problém ještě vyskytne, a ohlaste chybu " "na stránkách phpMyAdmina spolu se sekcí VÝPIS uvedenou níže:" -#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:137 +#: libraries/messages.inc.php:1018 libraries/sqlparser.lib.php:137 msgid "" "There seems to be an error in your SQL query. The MySQL server error output " "below, if there is any, may also help you in diagnosing the problem" @@ -5963,32 +5963,32 @@ msgstr "" "Pravděpodobně máte v SQL dotazu chybu. Níže uvedený výstup MySQL serveru " "(pokud je nějaký) vám také může pomoci při zkoumání problému" -#: libraries/messages.inc.php:1026 libraries/sqlparser.lib.php:495 +#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:495 msgid "Invalid Identifer" msgstr "Chybný identifikátor" -#: libraries/messages.inc.php:1027 libraries/sqlparser.lib.php:344 +#: libraries/messages.inc.php:1023 libraries/sqlparser.lib.php:344 msgid "Unclosed quote" msgstr "Neuzavřené uvozovky" -#: libraries/messages.inc.php:1028 libraries/sqlparser.lib.php:612 +#: libraries/messages.inc.php:1024 libraries/sqlparser.lib.php:612 msgid "Unknown Punctuation String" msgstr "Neznámé interpunkční znaménko" -#: libraries/messages.inc.php:1030 server_replication.php:327 +#: libraries/messages.inc.php:1026 server_replication.php:327 #: server_replication.php:328 msgid "Start" msgstr "Spustit" -#: libraries/messages.inc.php:1033 tbl_printview.php:369 tbl_structure.php:729 +#: libraries/messages.inc.php:1029 tbl_printview.php:369 tbl_structure.php:729 msgid "Statements" msgstr "Údaj" -#: libraries/messages.inc.php:1034 tbl_printview.php:380 tbl_structure.php:741 +#: libraries/messages.inc.php:1030 tbl_printview.php:380 tbl_structure.php:741 msgid "static" msgstr "statický" -#: libraries/messages.inc.php:1035 server_status.php:388 +#: libraries/messages.inc.php:1031 server_status.php:388 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -5996,42 +5996,42 @@ msgstr "" "Na hodně zatíženém serveru mohou čítače přetéct, takže statistiky MySQL " "serveru mohou být nepřesné." -#: libraries/messages.inc.php:1038 server_replication.php:327 +#: libraries/messages.inc.php:1034 server_replication.php:327 #: server_replication.php:328 msgid "Stop" msgstr "Zastavit" -#: libraries/messages.inc.php:1039 server_engines.php:49 +#: libraries/messages.inc.php:1035 server_engines.php:49 msgid "Storage Engines" msgstr "Úložiště" -#: libraries/messages.inc.php:1040 libraries/tbl_properties.inc.php:726 +#: libraries/messages.inc.php:1036 libraries/tbl_properties.inc.php:726 #: server_engines.php:58 tbl_operations.php:353 msgid "Storage Engine" msgstr "Úložiště" -#: libraries/messages.inc.php:1042 +#: libraries/messages.inc.php:1038 msgid "CSV for MS Excel" msgstr "CSV pro MS Excel" -#: libraries/messages.inc.php:1044 tbl_structure.php:516 tbl_structure.php:518 +#: libraries/messages.inc.php:1040 tbl_structure.php:516 tbl_structure.php:518 msgid "Propose table structure" msgstr "Navrhnout strukturu tabulky" -#: libraries/messages.inc.php:1045 server_synchronize.php:424 +#: libraries/messages.inc.php:1041 server_synchronize.php:424 #: server_synchronize.php:867 msgid "Structure Difference" msgstr "Rozdíly ve struktuře" -#: libraries/messages.inc.php:1049 server_synchronize.php:265 +#: libraries/messages.inc.php:1045 server_synchronize.php:265 msgid "Structure Synchronization" msgstr "Synchronizace struktury" -#: libraries/messages.inc.php:1050 libraries/sql_query_form.lib.php:462 +#: libraries/messages.inc.php:1046 libraries/sql_query_form.lib.php:462 msgid "Submit" msgstr "Provést" -#: libraries/messages.inc.php:1052 main.php:358 +#: libraries/messages.inc.php:1048 main.php:358 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -6040,16 +6040,16 @@ msgstr "" "Server používá Suhosin. Prosím podívejte se do %sdokumentace%s pro popis " "problémů, které tím mohou být způsobeny." -#: libraries/messages.inc.php:1054 libraries/mysql_charsets.lib.php:295 +#: libraries/messages.inc.php:1050 libraries/mysql_charsets.lib.php:295 #: libraries/mysql_charsets.lib.php:392 msgid "Swedish" msgstr "Švédština" -#: libraries/messages.inc.php:1060 tbl_operations.php:556 +#: libraries/messages.inc.php:1056 tbl_operations.php:556 msgid "Switch to copied table" msgstr "Přepnout na zkopírovanou tabulku" -#: libraries/messages.inc.php:1061 server_synchronize.php:1213 +#: libraries/messages.inc.php:1057 server_synchronize.php:1213 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -6057,145 +6057,145 @@ msgstr "" "Cílová databáze bude kompletně synchronizována se zdrojovou. Zdrojová nebude " "nijak změněna." -#: libraries/messages.inc.php:1062 server_synchronize.php:451 +#: libraries/messages.inc.php:1058 server_synchronize.php:451 #: server_synchronize.php:896 msgid "Synchronize Databases" msgstr "Synchronizovat databáze" -#: libraries/messages.inc.php:1063 libraries/server_links.inc.php:92 +#: libraries/messages.inc.php:1059 libraries/server_links.inc.php:92 #: server_synchronize.php:1092 server_synchronize.php:1100 msgid "Synchronize" msgstr "Synchronizace" -#: libraries/messages.inc.php:1065 server_synchronize.php:430 +#: libraries/messages.inc.php:1061 server_synchronize.php:430 #: server_synchronize.php:873 msgid "Add column(s)" msgstr "Přidat sloupce" -#: libraries/messages.inc.php:1066 tbl_create.php:62 +#: libraries/messages.inc.php:1062 tbl_create.php:62 #, php-format msgid "Table %s already exists!" msgstr "Tabulka %s již existuje!" -#: libraries/messages.inc.php:1067 server_synchronize.php:432 +#: libraries/messages.inc.php:1063 server_synchronize.php:432 #: server_synchronize.php:875 msgid "Alter column(s)" msgstr "Změnit sloupce" -#: libraries/messages.inc.php:1068 tbl_addfield.php:189 tbl_alter.php:103 +#: libraries/messages.inc.php:1064 tbl_addfield.php:189 tbl_alter.php:103 #: tbl_indexes.php:98 #, php-format msgid "Table %1$s has been altered successfully" msgstr "Tabulka %1$s byla úspěšně změněna" -#: libraries/messages.inc.php:1069 server_synchronize.php:434 +#: libraries/messages.inc.php:1065 server_synchronize.php:434 #: server_synchronize.php:877 msgid "Apply index(s)" msgstr "Applikovat indexy" -#: libraries/messages.inc.php:1071 server_synchronize.php:446 +#: libraries/messages.inc.php:1067 server_synchronize.php:446 #: server_synchronize.php:890 msgid "Would you like to delete all the previous rows from target tables?" msgstr "Chcete odstranit všechny stávající řídky z cílových tabulek?" -#: libraries/messages.inc.php:1072 tbl_move_copy.php:82 +#: libraries/messages.inc.php:1068 tbl_move_copy.php:82 msgid "The table name is empty!" msgstr "Jméno tabulky je prázdné!" -#: libraries/messages.inc.php:1073 tbl_create.php:249 +#: libraries/messages.inc.php:1069 tbl_create.php:249 #, php-format msgid "Table %1$s has been created." msgstr "Byla vytvořena tabulka %1$s." -#: libraries/messages.inc.php:1076 tbl_operations.php:628 +#: libraries/messages.inc.php:1072 tbl_operations.php:628 #, php-format msgid "Table %s has been flushed" msgstr "Vyrovnávací paměť pro tabulku %s byla vyprázdněna" -#: libraries/messages.inc.php:1077 server_synchronize.php:436 +#: libraries/messages.inc.php:1073 server_synchronize.php:436 #: server_synchronize.php:879 msgid "Insert row(s)" msgstr "Vložit řádky" -#: libraries/messages.inc.php:1078 libraries/tbl_links.inc.php:107 +#: libraries/messages.inc.php:1074 libraries/tbl_links.inc.php:107 #: libraries/tbl_links.inc.php:140 libraries/tbl_links.inc.php:141 msgid "Table seems to be empty!" msgstr "Tabulka se zdá být prázdná!" -#: libraries/messages.inc.php:1079 tbl_operations.php:568 +#: libraries/messages.inc.php:1075 tbl_operations.php:568 msgid "Table maintenance" msgstr "Údržba tabulky" -#: libraries/messages.inc.php:1080 libraries/tbl_properties.inc.php:618 +#: libraries/messages.inc.php:1076 libraries/tbl_properties.inc.php:618 #: server_synchronize.php:428 server_synchronize.php:871 msgid "Table name" msgstr "Jméno tabulky" -#: libraries/messages.inc.php:1081 pdf_schema.php:1116 +#: libraries/messages.inc.php:1077 pdf_schema.php:1116 msgid "Table of contents" msgstr "Obsah" -#: libraries/messages.inc.php:1082 tbl_operations.php:334 +#: libraries/messages.inc.php:1078 tbl_operations.php:334 msgid "Table options" msgstr "Parametry tabulky" -#: libraries/messages.inc.php:1083 server_synchronize.php:431 +#: libraries/messages.inc.php:1079 server_synchronize.php:431 #: server_synchronize.php:874 msgid "Remove column(s)" msgstr "Odstranit sloupce" -#: libraries/messages.inc.php:1084 server_synchronize.php:433 +#: libraries/messages.inc.php:1080 server_synchronize.php:433 #: server_synchronize.php:876 msgid "Remove index(s)" msgstr "Odstranit indexy" -#: libraries/messages.inc.php:1088 server_synchronize.php:435 +#: libraries/messages.inc.php:1084 server_synchronize.php:435 #: server_synchronize.php:878 msgid "Update row(s)" msgstr "Aktuallizovat řádky" -#: libraries/messages.inc.php:1090 server_synchronize.php:942 +#: libraries/messages.inc.php:1086 server_synchronize.php:942 msgid "Target database has been synchronized with source database" msgstr "Cílová databáze byla synchronizována se zdrojovou" -#: libraries/messages.inc.php:1091 server_privileges.php:392 +#: libraries/messages.inc.php:1087 server_privileges.php:392 #: server_privileges.php:527 server_privileges.php:1679 #: server_privileges.php:1685 msgid "Table-specific privileges" msgstr "Oprávnění pro jednotlivé tabulky" -#: libraries/messages.inc.php:1092 server_status.php:254 +#: libraries/messages.inc.php:1088 server_status.php:254 msgid "Temporary data" msgstr "Dočasná data" -#: libraries/messages.inc.php:1093 tbl_change.php:728 +#: libraries/messages.inc.php:1089 tbl_change.php:728 msgid " Because of its length,
this field might not be editable " msgstr " Tento sloupec možná nepůjde
kvůli délce upravit " -#: libraries/messages.inc.php:1094 +#: libraries/messages.inc.php:1090 msgid "Texy! text" msgstr "Texy! text" -#: libraries/messages.inc.php:1095 libraries/mysql_charsets.lib.php:298 +#: libraries/messages.inc.php:1091 libraries/mysql_charsets.lib.php:298 #: libraries/mysql_charsets.lib.php:395 msgid "Thai" msgstr "Thajština" -#: libraries/messages.inc.php:1102 libraries/replication_gui.lib.php:308 +#: libraries/messages.inc.php:1098 libraries/replication_gui.lib.php:308 #: server_privileges.php:734 msgid "This Host" msgstr "Tento počítač" -#: libraries/messages.inc.php:1103 server_status.php:252 +#: libraries/messages.inc.php:1099 server_status.php:252 msgid "Threads" msgstr "Počet vláken" -#: libraries/messages.inc.php:1104 server_processlist.php:22 +#: libraries/messages.inc.php:1100 server_processlist.php:22 #, php-format msgid "Thread %s was successfully killed." msgstr "Vlákno %s bylo úspěšně zabito." -#: libraries/messages.inc.php:1106 +#: libraries/messages.inc.php:1102 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -6204,159 +6204,159 @@ msgstr "" "znamená, že phpMyAdmin nebude schopen načíst tento soubor, pokud nezvýšíte " "časové limity v PHP." -#: libraries/messages.inc.php:1109 pmd_pdf.php:94 +#: libraries/messages.inc.php:1105 pmd_pdf.php:94 msgid "to/from page" msgstr "do/ze stránky" -#: libraries/messages.inc.php:1110 pdf_pages.php:343 +#: libraries/messages.inc.php:1106 pdf_pages.php:343 msgid "Toggle scratchboard" msgstr "Zobrazit grafický návrh" -#: libraries/messages.inc.php:1111 pmd_general.php:99 +#: libraries/messages.inc.php:1107 pmd_general.php:99 msgid "Toggle small/big" msgstr "Přepnout malé/velké" -#: libraries/messages.inc.php:1112 pmd_help.php:27 +#: libraries/messages.inc.php:1108 pmd_help.php:27 msgid "To select relation, click :" msgstr "Pro výběr relace klikněte :" -#: libraries/messages.inc.php:1115 libraries/tbl_links.inc.php:149 +#: libraries/messages.inc.php:1111 libraries/tbl_links.inc.php:149 #, php-format msgid "Tracking of %s.%s is activated." msgstr "Sledování pro %s.%s je zapnuté." -#: libraries/messages.inc.php:1116 tbl_tracking.php:655 +#: libraries/messages.inc.php:1112 tbl_tracking.php:655 msgid "Activate now" msgstr "Zapnout teď" -#: libraries/messages.inc.php:1117 tbl_tracking.php:653 +#: libraries/messages.inc.php:1113 tbl_tracking.php:653 #, php-format msgid "Activate tracking for %s.%s" msgstr "Zapnuté sledování pro %s.%s" -#: libraries/messages.inc.php:1118 tbl_tracking.php:221 +#: libraries/messages.inc.php:1114 tbl_tracking.php:221 msgid "Comment out these two lines if you do not need them." msgstr "Zakomentujte následující dva řádky pokud je nepotřebujete." -#: libraries/messages.inc.php:1119 tbl_tracking.php:688 +#: libraries/messages.inc.php:1115 tbl_tracking.php:688 msgid "Create version" msgstr "Vytvořit verzi" -#: libraries/messages.inc.php:1120 tbl_tracking.php:668 +#: libraries/messages.inc.php:1116 tbl_tracking.php:668 #, php-format msgid "Create version %s of %s.%s" msgstr "Vytvořit verzi %s z %s.%s" -#: libraries/messages.inc.php:1122 tbl_tracking.php:412 +#: libraries/messages.inc.php:1118 tbl_tracking.php:412 msgid "Data definition statement" msgstr "Příkaz pro definici dat" -#: libraries/messages.inc.php:1123 tbl_tracking.php:463 +#: libraries/messages.inc.php:1119 tbl_tracking.php:463 msgid "Data manipulation statement" msgstr "Příkaz pro úpravu dat" -#: libraries/messages.inc.php:1124 tbl_tracking.php:410 tbl_tracking.php:461 +#: libraries/messages.inc.php:1120 tbl_tracking.php:410 tbl_tracking.php:461 msgid "Date" msgstr "Datum" -#: libraries/messages.inc.php:1125 tbl_tracking.php:642 +#: libraries/messages.inc.php:1121 tbl_tracking.php:642 msgid "Deactivate now" msgstr "Vypnout teď" -#: libraries/messages.inc.php:1126 tbl_tracking.php:640 +#: libraries/messages.inc.php:1122 tbl_tracking.php:640 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "Vypnout sledování pro %s.%s" -#: libraries/messages.inc.php:1127 tbl_tracking.php:521 +#: libraries/messages.inc.php:1123 tbl_tracking.php:521 #, php-format msgid "Export as %s" msgstr "Exportovat jako %s" -#: libraries/messages.inc.php:1130 tbl_tracking.php:251 tbl_tracking.php:379 +#: libraries/messages.inc.php:1126 tbl_tracking.php:251 tbl_tracking.php:379 msgid "Close" msgstr "Ukončit" -#: libraries/messages.inc.php:1131 tbl_tracking.php:114 +#: libraries/messages.inc.php:1127 tbl_tracking.php:114 #, php-format msgid "Tracking report for table `%s`" msgstr "Záznamy o sledování tabulky `%s`" -#: libraries/messages.inc.php:1133 tbl_tracking.php:397 tbl_tracking.php:504 +#: libraries/messages.inc.php:1129 tbl_tracking.php:397 tbl_tracking.php:504 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "Zobrazit %s s datem od %s do %s od uživatele %s %s" -#: libraries/messages.inc.php:1134 tbl_tracking.php:561 +#: libraries/messages.inc.php:1130 tbl_tracking.php:561 msgid "Show versions" msgstr "Zobrazit verze" -#: libraries/messages.inc.php:1135 tbl_tracking.php:507 +#: libraries/messages.inc.php:1131 tbl_tracking.php:507 msgid "SQL dump (file download)" msgstr "výpis SQL (stáhnout soubor)" -#: libraries/messages.inc.php:1136 tbl_tracking.php:508 +#: libraries/messages.inc.php:1132 tbl_tracking.php:508 msgid "SQL dump" msgstr "výpis SQL" -#: libraries/messages.inc.php:1137 tbl_tracking.php:213 +#: libraries/messages.inc.php:1133 tbl_tracking.php:213 msgid "SQL statements executed." msgstr "provedené SQL příkazy." -#: libraries/messages.inc.php:1138 +#: libraries/messages.inc.php:1134 msgid "This option will replace your table and contained data." msgstr "Tato volba nahradí vaší tabulku a data, která obsahuje." -#: libraries/messages.inc.php:1139 tbl_tracking.php:509 +#: libraries/messages.inc.php:1135 tbl_tracking.php:509 msgid "SQL execution" msgstr "Provedení SQL" -#: libraries/messages.inc.php:1140 tbl_tracking.php:230 +#: libraries/messages.inc.php:1136 tbl_tracking.php:230 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" "SQL příkazy byly exportovány. Prosím zkopírujte si je, nebo je spusťte." -#: libraries/messages.inc.php:1141 tbl_tracking.php:381 +#: libraries/messages.inc.php:1137 tbl_tracking.php:381 msgid "Tracking statements" msgstr "Sledování příkazů" -#: libraries/messages.inc.php:1148 tbl_tracking.php:593 +#: libraries/messages.inc.php:1144 tbl_tracking.php:593 msgid "Version" msgstr "Verze" -#: libraries/messages.inc.php:1149 tbl_tracking.php:672 +#: libraries/messages.inc.php:1145 tbl_tracking.php:672 msgid "Track these data definition statements:" msgstr "Sledovat tyto příkazy pro definici dat:" -#: libraries/messages.inc.php:1150 tbl_tracking.php:680 +#: libraries/messages.inc.php:1146 tbl_tracking.php:680 msgid "Track these data manipulation statements:" msgstr "Sledovat tyto příkazy pro úpravu dat:" -#: libraries/messages.inc.php:1155 tbl_tracking.php:411 tbl_tracking.php:462 +#: libraries/messages.inc.php:1151 tbl_tracking.php:411 tbl_tracking.php:462 msgid "Username" msgstr "Uživatel" -#: libraries/messages.inc.php:1156 tbl_tracking.php:203 +#: libraries/messages.inc.php:1152 tbl_tracking.php:203 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "Sledování pro %s.%s , verze %s je zapnuté." -#: libraries/messages.inc.php:1157 tbl_tracking.php:187 +#: libraries/messages.inc.php:1153 tbl_tracking.php:187 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "Verze %s vytvořena, sledování pro %s.%s je zapnuté." -#: libraries/messages.inc.php:1158 tbl_tracking.php:195 +#: libraries/messages.inc.php:1154 tbl_tracking.php:195 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "Sledování pro %s.%s , verze %s je vypnuté." -#: libraries/messages.inc.php:1159 tbl_tracking.php:262 +#: libraries/messages.inc.php:1155 tbl_tracking.php:262 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Snímek verze %s (SQL kód)" -#: libraries/messages.inc.php:1161 tbl_tracking.php:220 +#: libraries/messages.inc.php:1157 tbl_tracking.php:220 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -6364,24 +6364,24 @@ msgstr "" "Záznam můžete spustit vytvořením a použitím dočasné databáze. Prosím ověřte, " "že na tuto operací máte oprávnění." -#: libraries/messages.inc.php:1162 libraries/mysql_charsets.lib.php:219 +#: libraries/messages.inc.php:1158 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:362 msgid "Traditional Chinese" msgstr "Tradiční čínština" -#: libraries/messages.inc.php:1163 libraries/mysql_charsets.lib.php:292 +#: libraries/messages.inc.php:1159 libraries/mysql_charsets.lib.php:292 msgid "Traditional Spanish" msgstr "Tradiční španělština" -#: libraries/messages.inc.php:1164 server_status.php:388 +#: libraries/messages.inc.php:1160 server_status.php:388 msgid "Traffic" msgstr "Provoz" -#: libraries/messages.inc.php:1165 server_status.php:261 +#: libraries/messages.inc.php:1161 server_status.php:261 msgid "Transaction coordinator" msgstr "Koordinátor transakcí" -#: libraries/messages.inc.php:1166 +#: libraries/messages.inc.php:1162 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 " @@ -6392,7 +6392,7 @@ msgstr "" "sloupce v tabulce obsahující jméno souboru. Pokud zadáte druhý parametr, " "první musí být prázdný." -#: libraries/messages.inc.php:1167 +#: libraries/messages.inc.php:1163 msgid "" "Displays hexadecimal representation of data. Optional first parameter " "specifies how often space will be added (defaults to 2 nibbles)." @@ -6400,7 +6400,7 @@ msgstr "" "Zobrazí data šestnáctkově. Nepovinný parametr určuje po kolika znacích má " "být přidána mezera (výchozí hodnota je 2)." -#: libraries/messages.inc.php:1168 +#: libraries/messages.inc.php:1164 msgid "" "Displays a clickable thumbnail. The options are the maximum width and height " "in pixels. The original aspect ratio is preserved." @@ -6408,15 +6408,15 @@ msgstr "" "Zobrazí náhled obrázku s odkazem na obrázek; parametry šířka a výška " "v bodech. Poměr stran obrázku zůstane zachován." -#: libraries/messages.inc.php:1169 +#: libraries/messages.inc.php:1165 msgid "Displays a link to download this image." msgstr "Zobrazí odkaz na obrázek (například stáhnutí pole blob)." -#: libraries/messages.inc.php:1170 +#: libraries/messages.inc.php:1166 msgid "See image/jpeg: inline" msgstr "Viz image/jpeg: inline" -#: libraries/messages.inc.php:1171 +#: libraries/messages.inc.php:1167 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 " @@ -6435,7 +6435,7 @@ msgstr "" "funkce strftime() pokud použijete „local“ nebo pro gmtime() pokud použijete " "„utc“." -#: libraries/messages.inc.php:1172 +#: libraries/messages.inc.php:1168 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 " @@ -6459,7 +6459,7 @@ msgstr "" "přidání parametru NOWRAP k vypisovanému textu, čímž se zachová formátování " "(výchozí je 1)." -#: libraries/messages.inc.php:1173 +#: libraries/messages.inc.php:1169 msgid "" "Displays the contents of the field as-is, without running it through " "htmlspecialchars(). That is, the field is assumed to contain valid HTML." @@ -6467,7 +6467,7 @@ msgstr "" "Zachová původní formátování sloupce, tak jak je uložen v databázi, bez " "použití htmlspecialchars(). Předpokládá se, že sloupec obsahuje platné HTML." -#: libraries/messages.inc.php:1174 +#: libraries/messages.inc.php:1170 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 " @@ -6477,7 +6477,7 @@ msgstr "" "je prefix URL (například „http://mojedomena.cz/“), druhý a třetí určuje " "šířku a výšku obrázku." -#: libraries/messages.inc.php:1175 +#: libraries/messages.inc.php:1171 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 " @@ -6486,11 +6486,11 @@ msgstr "" "Zobrazí odkaz z pole obsahujícího odkaz. První parametr je prefix URL " "(například „http://mojedomena.cz/“), druhý text odkazu." -#: libraries/messages.inc.php:1176 +#: libraries/messages.inc.php:1172 msgid "Formats text as SQL query with syntax highlighting." msgstr "Zobrazí text jako SQL dotaz se zvýrazňováním syntaxe." -#: libraries/messages.inc.php:1177 +#: libraries/messages.inc.php:1173 msgid "" "Displays a part of a string. The first option is the number of characters to " "skip from the beginning of the string (Default 0). The second option is the " @@ -6503,71 +6503,71 @@ msgstr "" "zobrazen zbytek textu. Třetí parametr určuje, jaký text má být přidán za " "zkrácený text (výchozí je ...)." -#: libraries/messages.inc.php:1179 server_binlog.php:183 server_binlog.php:186 +#: libraries/messages.inc.php:1175 server_binlog.php:183 server_binlog.php:186 #: server_processlist.php:49 server_processlist.php:51 msgid "Truncate Shown Queries" msgstr "Zobrazit zkrácené dotazy" -#: libraries/messages.inc.php:1180 libraries/mysql_charsets.lib.php:301 +#: libraries/messages.inc.php:1176 libraries/mysql_charsets.lib.php:301 #: libraries/mysql_charsets.lib.php:389 msgid "Turkish" msgstr "Turecky" -#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:304 +#: libraries/messages.inc.php:1179 libraries/mysql_charsets.lib.php:304 #: libraries/mysql_charsets.lib.php:386 msgid "Ukrainian" msgstr "Ukrajinština" -#: libraries/messages.inc.php:1185 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:1181 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 msgid "Unicode" msgstr "Unicode" -#: libraries/messages.inc.php:1187 libraries/mysql_charsets.lib.php:398 +#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:398 #: libraries/mysql_charsets.lib.php:405 msgid "unknown" msgstr "neznámý" -#: libraries/messages.inc.php:1190 server_privileges.php:1152 +#: libraries/messages.inc.php:1186 server_privileges.php:1152 #, php-format msgid "You have updated the privileges for %s." msgstr "Byla aktualizována oprávnění pro %s." -#: libraries/messages.inc.php:1191 user_password.php:112 +#: libraries/messages.inc.php:1187 user_password.php:112 msgid "The profile has been updated." msgstr "Přístup byl změněn." -#: libraries/messages.inc.php:1193 libraries/relation.lib.php:138 +#: libraries/messages.inc.php:1189 libraries/relation.lib.php:138 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "Podívejte se prosím do dokumentace, jak aktualizovat tabulku s informacemi " "o sloupcích (tabulka column_comments)" -#: libraries/messages.inc.php:1194 +#: libraries/messages.inc.php:1190 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Měli byste aktualizovat %s na verzi %s nebo vyšší." -#: libraries/messages.inc.php:1204 tbl_printview.php:314 tbl_structure.php:661 +#: libraries/messages.inc.php:1200 tbl_printview.php:314 tbl_structure.php:661 msgid "Usage" msgstr "Používá" -#: libraries/messages.inc.php:1205 +#: libraries/messages.inc.php:1201 msgid "Enclose table and field names with backquotes" msgstr "Použít zpětné uvozovky u jmen tabulek a sloupců" -#: libraries/messages.inc.php:1206 libraries/replication_gui.lib.php:314 +#: libraries/messages.inc.php:1202 libraries/replication_gui.lib.php:314 #: server_privileges.php:740 msgid "Use Host Table" msgstr "Použít tabulku Host" -#: libraries/messages.inc.php:1207 server_privileges.php:848 +#: libraries/messages.inc.php:1203 server_privileges.php:848 #, php-format msgid "The user %s already exists!" msgstr "Uživatel %s již existuje!" -#: libraries/messages.inc.php:1209 libraries/replication_gui.lib.php:55 +#: libraries/messages.inc.php:1205 libraries/replication_gui.lib.php:55 #: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245 #: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255 #: server_privileges.php:672 server_privileges.php:675 @@ -6575,37 +6575,37 @@ msgstr "Uživatel %s již existuje!" msgid "User name" msgstr "Jméno uživatele" -#: libraries/messages.inc.php:1210 server_privileges.php:1645 +#: libraries/messages.inc.php:1206 server_privileges.php:1645 msgid "The selected user was not found in the privilege table." msgstr "Zvolený uživatel nebyl nalezen v tabulce oprávnění." -#: libraries/messages.inc.php:1211 server_privileges.php:1365 +#: libraries/messages.inc.php:1207 server_privileges.php:1365 msgid "User overview" msgstr "Přehled uživatelů" -#: libraries/messages.inc.php:1212 server_privileges.php:1261 +#: libraries/messages.inc.php:1208 server_privileges.php:1261 msgid "The selected users have been deleted successfully." msgstr "Vybraní uživatelé byli úspěšně odstraněni." -#: libraries/messages.inc.php:1213 server_privileges.php:2026 +#: libraries/messages.inc.php:1209 server_privileges.php:2026 #, php-format msgid "Users having access to "%s"" msgstr "Uživatelé mající přístup k „%s“" -#: libraries/messages.inc.php:1214 main.php:189 server_privileges.php:1350 +#: libraries/messages.inc.php:1210 main.php:189 server_privileges.php:1350 #: server_privileges.php:1497 server_privileges.php:1611 #: server_privileges.php:2029 server_processlist.php:54 msgid "User" msgstr "Uživatel" -#: libraries/messages.inc.php:1215 tbl_change.php:1171 +#: libraries/messages.inc.php:1211 tbl_change.php:1171 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Použijte klávesu TAB pro pohyb mezi hodnotami nebo CTRL+šipky po pohyb všemi " "směry" -#: libraries/messages.inc.php:1217 libraries/replication_gui.lib.php:251 +#: libraries/messages.inc.php:1213 libraries/replication_gui.lib.php:251 #: libraries/replication_gui.lib.php:319 libraries/replication_gui.lib.php:342 #: server_privileges.php:678 server_privileges.php:745 #: server_privileges.php:769 server_privileges.php:1889 @@ -6613,7 +6613,7 @@ msgstr "" msgid "Use text field" msgstr "Použít textové pole" -#: libraries/messages.inc.php:1221 libraries/sqlvalidator.lib.php:68 +#: libraries/messages.inc.php:1217 libraries/sqlvalidator.lib.php:68 #, php-format msgid "" "The SQL validator could not be initialized. Please check if you have " @@ -6622,84 +6622,84 @@ msgstr "" "SQL validátor nemohl být inicializován. Prosím zkontrolujte, jestli máte " "požadovaná rozšíření PHP, která jsou uvedena v %sdokumentaci%s." -#: libraries/messages.inc.php:1222 libraries/replication_gui.lib.php:111 +#: libraries/messages.inc.php:1218 libraries/replication_gui.lib.php:111 #: server_status.php:627 tbl_change.php:324 tbl_printview.php:370 #: tbl_select.php:139 tbl_structure.php:730 msgid "Value" msgstr "Hodnota" -#: libraries/messages.inc.php:1223 libraries/replication_gui.lib.php:110 +#: libraries/messages.inc.php:1219 libraries/replication_gui.lib.php:110 #: libraries/sql_query_form.lib.php:445 server_status.php:626 #: server_variables.php:52 msgid "Variable" msgstr "Proměnná" -#: libraries/messages.inc.php:1225 server_export.php:21 +#: libraries/messages.inc.php:1221 server_export.php:21 msgid "View dump (schema) of databases" msgstr "Export databází" -#: libraries/messages.inc.php:1227 tbl_export.php:23 +#: libraries/messages.inc.php:1223 tbl_export.php:23 msgid "View dump (schema) of table" msgstr "Export tabulky" -#: libraries/messages.inc.php:1231 view_create.php:142 +#: libraries/messages.inc.php:1227 view_create.php:142 msgid "VIEW name" msgstr "Jméno pohledu" -#: libraries/messages.inc.php:1237 main.php:205 +#: libraries/messages.inc.php:1233 main.php:205 msgid "Web server" msgstr "Webserver" -#: libraries/messages.inc.php:1239 libraries/mysql_charsets.lib.php:277 +#: libraries/messages.inc.php:1235 libraries/mysql_charsets.lib.php:277 #: libraries/mysql_charsets.lib.php:325 msgid "West European" msgstr "Západní Evropa" -#: libraries/messages.inc.php:1240 main.php:230 +#: libraries/messages.inc.php:1236 main.php:230 msgid "Wiki" msgstr "Wiki" -#: libraries/messages.inc.php:1241 server_privileges.php:2138 +#: libraries/messages.inc.php:1237 server_privileges.php:2138 msgid "wildcard" msgstr "maska" -#: libraries/messages.inc.php:1248 +#: libraries/messages.inc.php:1244 msgid "Export contents" msgstr "Exportovat obsah" -#: libraries/messages.inc.php:1249 +#: libraries/messages.inc.php:1245 msgid "Export functions" msgstr "Exportovat funkce" -#: libraries/messages.inc.php:1250 +#: libraries/messages.inc.php:1246 msgid "Export procedures" msgstr "Exportovat procedury" -#: libraries/messages.inc.php:1251 +#: libraries/messages.inc.php:1247 msgid "Export Structure Schemas (recommended)" msgstr "Exportovat schéma struktury (doporučené)" -#: libraries/messages.inc.php:1252 +#: libraries/messages.inc.php:1248 msgid "Export tables" msgstr "Exportovat tabulky" -#: libraries/messages.inc.php:1253 +#: libraries/messages.inc.php:1249 msgid "Export triggers" msgstr "Exportovat spouště" -#: libraries/messages.inc.php:1254 +#: libraries/messages.inc.php:1250 msgid "Export views" msgstr "Exportovat pohledy" -#: libraries/messages.inc.php:1255 +#: libraries/messages.inc.php:1251 msgid "XML" msgstr "XML" -#: libraries/messages.inc.php:1259 server_privileges.php:592 +#: libraries/messages.inc.php:1255 server_privileges.php:592 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Poznámka: Nastavení těchto parametrů na 0 (nulu) odstraní omezení." -#: libraries/messages.inc.php:1260 +#: libraries/messages.inc.php:1256 msgid "\"zipped\"" msgstr "„zazipováno“" diff --git a/po/da.po b/po/da.po index 9e7c0f6a7..cde46e3f5 100644 --- 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-05-13 11:25+0200\n" +"POT-Creation-Date: 2010-05-13 11:30+0200\n" "PO-Revision-Date: 2010-03-12 09:13+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: danish \n" @@ -13,19 +13,19 @@ msgstr "" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:38 browse_foreigners.php:59 -#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:870 +#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:866 #: server_privileges.php:1475 msgid "Show all" msgstr "Vis alle" #: browse_foreigners.php:82 db_operations.php:648 -#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:394 -#: libraries/export/pdf.php:147 libraries/messages.inc.php:597 +#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394 +#: libraries/export/pdf.php:147 libraries/messages.inc.php:593 #: pdf_schema.php:283 pdf_schema.php:1123 pdf_schema.php:1139 msgid "Page number:" msgstr "Side nummer:" -#: browse_foreigners.php:132 libraries/messages.inc.php:1242 +#: browse_foreigners.php:132 libraries/messages.inc.php:1238 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -38,7 +38,7 @@ 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/db_links.inc.php:75 -#: libraries/messages.inc.php:841 libraries/tbl_links.inc.php:63 +#: libraries/messages.inc.php:837 libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Søg" @@ -47,12 +47,12 @@ msgstr "Søg" #: db_search.php:362 db_structure.php:567 js/messages.php:48 #: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2267 +#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 #: 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 #: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614 -#: libraries/messages.inc.php:361 libraries/replication_gui.lib.php:73 +#: libraries/messages.inc.php:357 libraries/replication_gui.lib.php:73 #: libraries/replication_gui.lib.php:365 libraries/select_server.lib.php:104 #: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477 #: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782 @@ -72,33 +72,33 @@ msgid "Go" msgstr "Udfør" #: browse_foreigners.php:168 browse_foreigners.php:172 -#: libraries/Index.class.php:442 libraries/messages.inc.php:459 +#: libraries/Index.class.php:442 libraries/messages.inc.php:455 #: tbl_tracking.php:320 msgid "Keyname" msgstr "Nøglenavn" #: browse_foreigners.php:169 browse_foreigners.php:171 -#: libraries/messages.inc.php:252 server_collations.php:55 +#: libraries/messages.inc.php:248 server_collations.php:55 #: server_collations.php:67 server_engines.php:59 server_status.php:628 msgid "Description" msgstr "Beskrivelse" #: browse_foreigners.php:247 browse_foreigners.php:256 #: browse_foreigners.php:268 browse_foreigners.php:276 -#: libraries/messages.inc.php:1218 +#: libraries/messages.inc.php:1214 msgid "Use this value" msgstr "Brug denne værdi" -#: db_create.php:46 libraries/messages.inc.php:215 +#: db_create.php:46 libraries/messages.inc.php:211 #, php-format msgid "Database %1$s has been created." msgstr "" -#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:232 +#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:228 msgid "Database comment: " msgstr "Databasekommentar: " -#: db_datadict.php:165 libraries/messages.inc.php:1070 +#: db_datadict.php:165 libraries/messages.inc.php:1066 #: libraries/tbl_properties.inc.php:724 pdf_schema.php:1236 #: tbl_operations.php:345 tbl_printview.php:130 msgid "Table comments" @@ -107,7 +107,7 @@ msgstr "Tabel kommentarer" #: db_datadict.php:174 db_qbe.php:174 libraries/Index.class.php:446 #: libraries/export/htmlword.php:244 libraries/export/latex.php:360 #: libraries/export/odt.php:294 libraries/export/texytext.php:233 -#: libraries/messages.inc.php:317 libraries/tbl_properties.inc.php:99 +#: libraries/messages.inc.php:313 libraries/tbl_properties.inc.php:99 #: libraries/tbl_properties.inc.php:275 pdf_schema.php:1262 #: pdf_schema.php:1283 tbl_change.php:308 tbl_indexes.php:189 #: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135 @@ -119,7 +119,7 @@ msgstr "Feltnavn" #: libraries/db_events.inc.php:31 libraries/db_routines.inc.php:42 #: 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/messages.inc.php:1181 +#: libraries/export/texytext.php:234 libraries/messages.inc.php:1177 #: libraries/tbl_properties.inc.php:100 pdf_schema.php:1263 #: pdf_schema.php:1284 server_privileges.php:2031 tbl_change.php:287 #: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313 @@ -131,7 +131,7 @@ msgstr "Datatype" #: db_datadict.php:177 libraries/Index.class.php:449 #: libraries/export/htmlword.php:246 libraries/export/latex.php:360 #: libraries/export/odt.php:300 libraries/export/texytext.php:235 -#: libraries/messages.inc.php:576 libraries/tbl_properties.inc.php:109 +#: libraries/messages.inc.php:572 libraries/tbl_properties.inc.php:109 #: pdf_schema.php:1265 pdf_schema.php:1286 tbl_change.php:323 #: tbl_printview.php:145 tbl_structure.php:181 tbl_tracking.php:276 #: tbl_tracking.php:327 @@ -140,7 +140,7 @@ msgstr "Nulværdi" #: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 -#: libraries/export/texytext.php:236 libraries/messages.inc.php:238 +#: libraries/export/texytext.php:236 libraries/messages.inc.php:234 #: libraries/tbl_properties.inc.php:106 pdf_schema.php:1266 #: pdf_schema.php:1287 tbl_printview.php:146 tbl_structure.php:182 #: tbl_tracking.php:277 @@ -149,14 +149,14 @@ msgstr "Standardværdi" #: db_datadict.php:182 libraries/export/htmlword.php:249 #: libraries/export/latex.php:362 libraries/export/odt.php:307 -#: libraries/export/texytext.php:238 libraries/messages.inc.php:483 +#: libraries/export/texytext.php:238 libraries/messages.inc.php:479 #: pdf_schema.php:1268 pdf_schema.php:1289 tbl_printview.php:150 msgid "Links to" msgstr "Linker til" #: db_datadict.php:184 db_printview.php:112 libraries/export/htmlword.php:252 #: libraries/export/latex.php:365 libraries/export/odt.php:312 -#: libraries/export/texytext.php:241 libraries/messages.inc.php:163 +#: libraries/export/texytext.php:241 libraries/messages.inc.php:159 #: libraries/tbl_properties.inc.php:130 pdf_schema.php:1279 #: pdf_schema.php:1290 tbl_printview.php:152 msgid "Comments" @@ -165,7 +165,7 @@ msgstr "Kommentarer" #: db_datadict.php:267 libraries/Index.class.php:359 #: 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/messages.inc.php:559 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:555 #: libraries/mult_submits.inc.php:263 pdf_schema.php:1344 #: server_privileges.php:1529 server_privileges.php:1540 #: server_privileges.php:1850 server_privileges.php:1855 @@ -177,7 +177,7 @@ msgstr "Nej" #: db_datadict.php:267 libraries/Index.class.php:360 #: libraries/Index.class.php:385 libraries/export/htmlword.php:322 #: libraries/export/latex.php:430 libraries/export/odt.php:368 -#: libraries/export/texytext.php:311 libraries/messages.inc.php:1257 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:1253 #: libraries/mult_submits.inc.php:45 libraries/mult_submits.inc.php:50 #: libraries/mult_submits.inc.php:55 libraries/mult_submits.inc.php:60 #: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:101 @@ -191,108 +191,108 @@ msgstr "Nej" msgid "Yes" msgstr "Ja" -#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:670 +#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:666 #: tbl_printview.php:498 msgid "Print" msgstr "Print" -#: db_export.php:29 libraries/messages.inc.php:1226 +#: db_export.php:29 libraries/messages.inc.php:1222 msgid "View dump (schema) of database" msgstr "Vis dump (skema) af database" #: db_export.php:33 db_printview.php:96 db_qbe.php:102 db_structure.php:51 -#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:568 +#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:564 #: navigation.php:346 msgid "No tables found in database." msgstr "Ingen tabeller fundet i databasen." -#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:845 +#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:841 #: server_export.php:27 msgid "Select All" msgstr "Vælg alle" -#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1188 +#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1184 #: server_export.php:29 msgid "Unselect All" msgstr "Fravælg alle" -#: db_operations.php:38 libraries/messages.inc.php:213 tbl_create.php:54 +#: db_operations.php:38 libraries/messages.inc.php:209 tbl_create.php:54 msgid "The database name is empty!" msgstr "Databasenavnet er tomt!" -#: db_operations.php:236 libraries/messages.inc.php:753 +#: db_operations.php:236 libraries/messages.inc.php:749 #, php-format msgid "Database %s has been renamed to %s" msgstr "Database %s er blevet omdøbt til %s" -#: db_operations.php:240 libraries/messages.inc.php:178 +#: db_operations.php:240 libraries/messages.inc.php:174 #, php-format msgid "Database %s has been copied to %s" msgstr "Database %s er blevet kopieret til %s" -#: db_operations.php:410 libraries/messages.inc.php:236 +#: db_operations.php:410 libraries/messages.inc.php:232 msgid "Rename database to" msgstr "Omdøb database til" -#: db_operations.php:415 libraries/messages.inc.php:161 +#: db_operations.php:415 libraries/messages.inc.php:157 #: server_processlist.php:57 msgid "Command" msgstr "Kommando" -#: db_operations.php:425 libraries/messages.inc.php:58 tbl_change.php:1143 +#: db_operations.php:425 libraries/messages.inc.php:54 tbl_change.php:1143 msgid "and then" msgstr "og derefter" -#: db_operations.php:451 libraries/messages.inc.php:233 +#: db_operations.php:451 libraries/messages.inc.php:229 msgid "Copy database to" msgstr "Kopiér database til" -#: db_operations.php:458 libraries/messages.inc.php:1043 +#: db_operations.php:458 libraries/messages.inc.php:1039 #: tbl_operations.php:526 tbl_tracking.php:388 msgid "Structure only" msgstr "Kun strukturen" -#: db_operations.php:459 libraries/messages.inc.php:1041 +#: db_operations.php:459 libraries/messages.inc.php:1037 #: tbl_operations.php:527 tbl_tracking.php:390 msgid "Structure and data" msgstr "Struktur og data" -#: db_operations.php:460 libraries/messages.inc.php:229 tbl_operations.php:528 +#: db_operations.php:460 libraries/messages.inc.php:225 tbl_operations.php:528 #: tbl_tracking.php:389 msgid "Data only" msgstr "Kun data" -#: db_operations.php:468 libraries/messages.inc.php:186 +#: db_operations.php:468 libraries/messages.inc.php:182 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE før kopiering" #: db_operations.php:471 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 -#: libraries/export/sql.php:82 libraries/messages.inc.php:30 +#: libraries/export/sql.php:82 libraries/messages.inc.php:26 #: tbl_operations.php:534 #, php-format msgid "Add %s" msgstr "Tilføj %s" -#: db_operations.php:475 libraries/messages.inc.php:29 tbl_operations.php:297 +#: db_operations.php:475 libraries/messages.inc.php:25 tbl_operations.php:297 #: tbl_operations.php:536 msgid "Add AUTO_INCREMENT value" msgstr "Tilføj AUTO_INCREMENT værdi" -#: db_operations.php:479 libraries/messages.inc.php:31 tbl_operations.php:543 +#: db_operations.php:479 libraries/messages.inc.php:27 tbl_operations.php:543 msgid "Add constraints" msgstr "Tilføj begrænsninger" -#: db_operations.php:492 libraries/messages.inc.php:1059 +#: db_operations.php:492 libraries/messages.inc.php:1055 msgid "Switch to copied database" msgstr "Skift til den kopierede database" -#: db_operations.php:533 libraries/messages.inc.php:89 +#: db_operations.php:533 libraries/messages.inc.php:85 msgid "BLOB Repository" msgstr "" #: db_operations.php:536 db_tracking.php:76 libraries/common.lib.php:1350 -#: libraries/messages.inc.php:1037 libraries/server_links.inc.php:49 +#: libraries/messages.inc.php:1033 libraries/server_links.inc.php:49 #: server_processlist.php:59 tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "Status" @@ -304,11 +304,11 @@ msgctxt "BLOB repository" msgid "Enabled" msgstr "Slået til" -#: db_operations.php:548 libraries/messages.inc.php:93 +#: db_operations.php:548 libraries/messages.inc.php:89 msgid "Disable" msgstr "" -#: db_operations.php:558 libraries/messages.inc.php:90 +#: db_operations.php:558 libraries/messages.inc.php:86 msgid "Damaged" msgstr "" @@ -326,12 +326,12 @@ msgctxt "BLOB repository" msgid "Disabled" msgstr "Slået fra" -#: db_operations.php:574 libraries/messages.inc.php:96 +#: db_operations.php:574 libraries/messages.inc.php:92 msgid "Enable" msgstr "" #: db_operations.php:598 libraries/Index.class.php:448 -#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:158 +#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:154 #: 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:361 @@ -340,7 +340,7 @@ msgstr "" msgid "Collation" msgstr "Kollation (Collation)" -#: db_operations.php:609 libraries/messages.inc.php:742 main.php:316 +#: db_operations.php:609 libraries/messages.inc.php:738 main.php:316 #: pdf_schema.php:34 #, php-format msgid "" @@ -350,58 +350,58 @@ msgstr "" "De ekstra features for at arbejde med linkede tabeller er deaktiveret. For " "at se hvorfor, klik %sher%s." -#: db_operations.php:645 libraries/messages.inc.php:264 pdf_pages.php:528 +#: db_operations.php:645 libraries/messages.inc.php:260 pdf_pages.php:528 msgid "Display PDF schema" msgstr "Vis PDF-skematik" -#: db_operations.php:661 libraries/messages.inc.php:877 pdf_pages.php:529 +#: db_operations.php:661 libraries/messages.inc.php:873 pdf_pages.php:529 msgid "Show grid" msgstr "Vis gitter" -#: db_operations.php:664 libraries/messages.inc.php:874 pdf_pages.php:530 +#: db_operations.php:664 libraries/messages.inc.php:870 pdf_pages.php:530 msgid "Show color" msgstr "Vis farve" -#: db_operations.php:666 libraries/messages.inc.php:998 pdf_pages.php:531 +#: db_operations.php:666 libraries/messages.inc.php:994 pdf_pages.php:531 msgid "Show dimension of tables" msgstr "Vis tabellernes dimensioner" -#: db_operations.php:669 libraries/messages.inc.php:52 pdf_pages.php:532 +#: db_operations.php:669 libraries/messages.inc.php:48 pdf_pages.php:532 msgid "Display all tables with the same width" msgstr "vis alle tabeller med samme bredde?" -#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:227 +#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:223 #: pdf_pages.php:533 msgid "Data Dictionary" msgstr "Data Dictionary" -#: db_operations.php:674 libraries/messages.inc.php:884 pdf_pages.php:534 +#: db_operations.php:674 libraries/messages.inc.php:880 pdf_pages.php:534 msgid "Only show keys" msgstr "" -#: db_operations.php:676 libraries/messages.inc.php:875 pdf_pages.php:535 +#: db_operations.php:676 libraries/messages.inc.php:871 pdf_pages.php:535 msgid "Data Dictionary Format" msgstr "Data Dictionary-format" -#: db_operations.php:678 libraries/messages.inc.php:464 pdf_pages.php:537 +#: db_operations.php:678 libraries/messages.inc.php:460 pdf_pages.php:537 msgid "Landscape" msgstr "Liggende" -#: db_operations.php:679 libraries/messages.inc.php:663 pdf_pages.php:538 +#: db_operations.php:679 libraries/messages.inc.php:659 pdf_pages.php:538 msgid "Portrait" msgstr "Stående" -#: db_operations.php:682 libraries/messages.inc.php:599 pdf_pages.php:541 +#: db_operations.php:682 libraries/messages.inc.php:595 pdf_pages.php:541 msgid "Paper size" msgstr "Papirstørrelse" -#: db_operations.php:706 libraries/messages.inc.php:281 +#: db_operations.php:706 libraries/messages.inc.php:277 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 libraries/messages.inc.php:1087 +#: libraries/header.inc.php:126 libraries/messages.inc.php:1083 #: pdf_pages.php:405 server_privileges.php:1626 server_privileges.php:1682 #: server_privileges.php:1946 server_synchronize.php:423 #: server_synchronize.php:866 tbl_tracking.php:592 test/theme.php:75 @@ -409,176 +409,176 @@ msgid "Table" msgstr "Tabel" #: db_printview.php:105 libraries/db_structure.lib.php:56 -#: libraries/messages.inc.php:735 +#: libraries/messages.inc.php:731 msgid "Records" msgstr "Poster" #: db_printview.php:109 libraries/db_structure.lib.php:67 -#: libraries/messages.inc.php:1003 tbl_indexes.php:190 +#: libraries/messages.inc.php:999 tbl_indexes.php:190 msgid "Size" msgstr "Størrelse" #: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 -#: libraries/export/sql.php:899 libraries/messages.inc.php:436 +#: libraries/export/sql.php:899 libraries/messages.inc.php:432 msgid "in use" msgstr "i brug" #: db_printview.php:187 libraries/db_info.inc.php:88 -#: libraries/export/sql.php:514 libraries/messages.inc.php:1032 +#: libraries/export/sql.php:514 libraries/messages.inc.php:1028 #: pdf_schema.php:1241 tbl_printview.php:434 tbl_structure.php:810 msgid "Creation" msgstr "Oprettelse" #: db_printview.php:196 libraries/db_info.inc.php:93 -#: libraries/export/sql.php:519 libraries/messages.inc.php:1036 +#: libraries/export/sql.php:519 libraries/messages.inc.php:1032 #: pdf_schema.php:1246 tbl_printview.php:444 tbl_structure.php:818 msgid "Last update" msgstr "Sidste opdatering" #: db_printview.php:205 libraries/db_info.inc.php:98 -#: libraries/export/sql.php:524 libraries/messages.inc.php:1031 +#: libraries/export/sql.php:524 libraries/messages.inc.php:1027 #: pdf_schema.php:1251 tbl_printview.php:454 tbl_structure.php:826 msgid "Last check" msgstr "Sidste check" -#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1085 +#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1081 #, php-format msgid "%s table(s)" msgstr "%s tabel(ler)" #: db_qbe.php:29 libraries/display_tbl.lib.php:1981 -#: libraries/messages.inc.php:1051 libraries/sql_query_form.lib.php:140 +#: libraries/messages.inc.php:1047 libraries/sql_query_form.lib.php:140 #: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131 #: view_operations.php:62 msgid "Your SQL query has been executed successfully" msgstr "Din SQL-forespørgsel blev udført korrekt" -#: db_qbe.php:42 libraries/messages.inc.php:371 +#: db_qbe.php:42 libraries/messages.inc.php:367 msgid "You have to choose at least one column to display" msgstr "Du skal vælge mindst en kolonne der skal vises" #: db_qbe.php:200 libraries/db_structure.lib.php:104 -#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1014 +#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1010 msgid "Sort" msgstr "Sorter" #: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111 #: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828 -#: libraries/messages.inc.php:69 server_databases.php:170 +#: libraries/messages.inc.php:65 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314 msgid "Ascending" msgstr "Stigende" #: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119 #: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825 -#: libraries/messages.inc.php:251 server_databases.php:170 +#: libraries/messages.inc.php:247 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315 msgid "Descending" msgstr "Faldende" #: db_qbe.php:264 db_tracking.php:78 libraries/display_tbl.lib.php:308 -#: libraries/messages.inc.php:888 tbl_change.php:277 tbl_tracking.php:597 +#: libraries/messages.inc.php:884 tbl_change.php:277 tbl_tracking.php:597 msgid "Show" msgstr "Vis" -#: db_qbe.php:300 libraries/messages.inc.php:202 +#: db_qbe.php:300 libraries/messages.inc.php:198 msgid "Criteria" msgstr "Kriterier" #: db_qbe.php:353 db_qbe.php:435 db_qbe.php:527 db_qbe.php:558 -#: libraries/messages.inc.php:718 +#: libraries/messages.inc.php:714 msgid "Ins" msgstr "Ins (Indsæt)" #: db_qbe.php:357 db_qbe.php:439 db_qbe.php:524 db_qbe.php:555 -#: libraries/messages.inc.php:56 +#: libraries/messages.inc.php:52 msgid "And" msgstr "Og" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:529 db_qbe.php:560 -#: libraries/messages.inc.php:717 +#: libraries/messages.inc.php:713 msgid "Del" 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/messages.inc.php:592 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:588 #: libraries/tbl_properties.inc.php:779 server_privileges.php:258 #: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288 msgid "Or" msgstr "Eller" -#: db_qbe.php:507 libraries/messages.inc.php:516 +#: db_qbe.php:507 libraries/messages.inc.php:512 msgid "Modify" msgstr "Ret" -#: db_qbe.php:584 libraries/messages.inc.php:33 +#: db_qbe.php:584 libraries/messages.inc.php:29 msgid "Add/Delete Criteria Row" msgstr "Tilføj/Slet kriterie-række" -#: db_qbe.php:596 libraries/messages.inc.php:32 +#: db_qbe.php:596 libraries/messages.inc.php:28 msgid "Add/Delete Field Columns" msgstr "Tilføj/Slet felt-kolonne" -#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1192 +#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1188 msgid "Update Query" msgstr "Opdater forespørgsel" -#: db_qbe.php:617 libraries/messages.inc.php:1216 +#: db_qbe.php:617 libraries/messages.inc.php:1212 msgid "Use Tables" msgstr "Benyt tabeller" -#: db_qbe.php:640 libraries/messages.inc.php:723 +#: db_qbe.php:640 libraries/messages.inc.php:719 #, php-format msgid "SQL query on database %s:" msgstr "SQL-forespørgsel til database %s:" -#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:823 +#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:819 msgid "Submit Query" msgstr "Send forespørgsel" #: db_search.php:68 libraries/auth/config.auth.lib.php:84 #: libraries/auth/config.auth.lib.php:103 #: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52 -#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:26 +#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:22 msgid "Access denied" msgstr "Adgang Nægtet" -#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:836 +#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:832 msgid "at least one of the words" msgstr "mindst et af ordene" -#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:837 +#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:833 msgid "all words" msgstr "alle ordene" -#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:838 +#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:834 msgid "the exact phrase" msgstr "den nøjagtige sætning" -#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:839 +#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:835 msgid "as regular expression" msgstr "som regulært udtryk" -#: db_search.php:242 libraries/messages.inc.php:840 +#: db_search.php:242 libraries/messages.inc.php:836 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Søgeresultater for \"%s\" %s:" -#: db_search.php:260 libraries/messages.inc.php:579 +#: db_search.php:260 libraries/messages.inc.php:575 #, php-format msgid "%s match(es) inside table %s" 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/messages.inc.php:108 +#: db_structure.php:105 libraries/messages.inc.php:104 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468 msgid "Browse" msgstr "Vis" #: db_search.php:272 libraries/display_tbl.lib.php:1165 -#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:243 +#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:239 #: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406 #: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377 #: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216 @@ -586,45 +586,45 @@ msgstr "Vis" msgid "Delete" msgstr "Slet" -#: db_search.php:285 libraries/messages.inc.php:580 +#: db_search.php:285 libraries/messages.inc.php:576 #, php-format msgid "Total: %s match(es)" msgstr "Total: %s hit(s)" -#: db_search.php:299 libraries/messages.inc.php:832 +#: db_search.php:299 libraries/messages.inc.php:828 msgid "Search in database" msgstr "Søg i databasen" -#: db_search.php:302 libraries/messages.inc.php:835 +#: db_search.php:302 libraries/messages.inc.php:831 msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgstr "Ord eller værdi(er) (jokertegn: \"%\"):" -#: db_search.php:307 libraries/messages.inc.php:842 +#: db_search.php:307 libraries/messages.inc.php:838 msgid "Find:" msgstr "Find:" -#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1017 +#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1013 msgid "Words are separated by a space character (\" \")." msgstr "Ord adskilles af mellemrums-karakter (\" \")." -#: db_search.php:325 libraries/messages.inc.php:834 +#: db_search.php:325 libraries/messages.inc.php:830 msgid "Inside table(s):" msgstr "Indeni tabel(ler):" -#: db_search.php:355 libraries/messages.inc.php:833 +#: db_search.php:355 libraries/messages.inc.php:829 msgid "Inside field:" 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/messages.inc.php:431 libraries/sql_query_form.lib.php:334 +#: libraries/messages.inc.php:427 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/db_links.inc.php:63 libraries/export/latex.php:337 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:1048 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:1044 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 #: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269 msgid "Structure" @@ -633,8 +633,8 @@ 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:1642 -#: libraries/db_links.inc.php:100 libraries/messages.inc.php:272 +#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/db_links.inc.php:100 libraries/messages.inc.php:268 #: 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 @@ -644,40 +644,40 @@ 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:1641 -#: libraries/messages.inc.php:284 libraries/mult_submits.inc.php:39 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: libraries/messages.inc.php:280 libraries/mult_submits.inc.php:39 #: libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Tøm" -#: db_structure.php:316 libraries/messages.inc.php:1075 +#: db_structure.php:316 libraries/messages.inc.php:1071 #: libraries/tbl_links.inc.php:100 #, php-format msgid "Table %s has been emptied" msgstr "Tabel %s er tømt" -#: db_structure.php:326 libraries/messages.inc.php:1229 +#: db_structure.php:326 libraries/messages.inc.php:1225 #: 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/messages.inc.php:1074 +#: db_structure.php:326 libraries/messages.inc.php:1070 #: libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "Tabel %s er slettet" -#: db_structure.php:333 libraries/messages.inc.php:1128 +#: db_structure.php:333 libraries/messages.inc.php:1124 msgid "Tracking is active." msgstr "" -#: db_structure.php:335 libraries/messages.inc.php:1129 +#: db_structure.php:335 libraries/messages.inc.php:1125 msgid "Tracking is not active." msgstr "" #: db_structure.php:420 libraries/display_tbl.lib.php:1944 -#: libraries/messages.inc.php:1228 +#: libraries/messages.inc.php:1224 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -685,83 +685,83 @@ msgid "" msgstr "" #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 -#: libraries/messages.inc.php:1233 libraries/tbl_info.inc.php:66 +#: libraries/messages.inc.php:1229 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/messages.inc.php:773 libraries/server_links.inc.php:70 +#: libraries/messages.inc.php:769 libraries/server_links.inc.php:70 #: server_replication.php:33 server_replication.php:164 server_status.php:258 msgid "Replication" msgstr "Replikering" -#: db_structure.php:489 libraries/messages.inc.php:1053 +#: db_structure.php:489 libraries/messages.inc.php:1049 msgid "Sum" msgstr "Sum" #: db_structure.php:496 libraries/StorageEngine.class.php:356 -#: libraries/messages.inc.php:239 +#: libraries/messages.inc.php:235 #, 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 #: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086 -#: libraries/messages.inc.php:1243 libraries/mult_submits.inc.php:16 +#: libraries/messages.inc.php:1239 libraries/mult_submits.inc.php:16 #: server_databases.php:346 server_databases.php:351 #: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465 msgid "With selected:" msgstr "Med det markerede:" #: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: libraries/messages.inc.php:148 server_databases.php:348 +#: libraries/messages.inc.php:144 server_databases.php:348 #: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459 msgid "Check All" msgstr "Afmærk alt" #: db_structure.php:531 libraries/display_tbl.lib.php:2077 -#: libraries/messages.inc.php:1184 libraries/replication_gui.lib.php:33 +#: libraries/messages.inc.php:1180 libraries/replication_gui.lib.php:33 #: server_databases.php:350 server_privileges.php:533 #: server_privileges.php:1564 tbl_structure.php:463 msgid "Uncheck All" msgstr "Fjern alle mærker" -#: db_structure.php:536 libraries/messages.inc.php:150 +#: db_structure.php:536 libraries/messages.inc.php:146 msgid "Check tables having overhead" msgstr "Check tabeller der har overhead" #: db_structure.php:547 db_structure.php:548 db_structure.php:599 -#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:672 +#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:668 #: libraries/mult_submits.inc.php:28 tbl_structure.php:493 #: tbl_structure.php:495 msgid "Print view" msgstr "Vis (udskriftvenlig)" -#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:153 +#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:149 #: libraries/mult_submits.inc.php:42 tbl_operations.php:579 msgid "Check table" msgstr "Tjek tabel" -#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:590 +#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:586 #: libraries/mult_submits.inc.php:47 tbl_operations.php:619 #: tbl_structure.php:710 tbl_structure.php:712 msgid "Optimize table" msgstr "Optimer tabel" -#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:758 +#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:754 #: libraries/mult_submits.inc.php:52 tbl_operations.php:609 msgid "Repair table" msgstr "Reparer tabel" -#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:55 +#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:51 #: libraries/mult_submits.inc.php:57 tbl_operations.php:599 msgid "Analyze table" msgstr "Analysér tabel" #: db_structure.php:557 db_structure.php:558 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/messages.inc.php:310 +#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:306 #: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84 #: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109 #: server_privileges.php:1341 setup/frames/menu.inc.php:22 @@ -769,7 +769,7 @@ msgstr "Analysér tabel" msgid "Export" msgstr "Eksport" -#: db_tracking.php:66 libraries/messages.inc.php:1151 +#: db_tracking.php:66 libraries/messages.inc.php:1147 msgid "Tracked tables" msgstr "" @@ -777,7 +777,7 @@ msgstr "" #: 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/header_printview.inc.php:58 libraries/messages.inc.php:212 +#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:208 #: navigation.php:233 server_databases.php:169 server_privileges.php:1621 #: server_privileges.php:1682 server_privileges.php:1940 #: server_processlist.php:56 server_synchronize.php:1179 @@ -785,76 +785,76 @@ msgstr "" msgid "Database" msgstr "Database" -#: db_tracking.php:73 libraries/messages.inc.php:1146 +#: db_tracking.php:73 libraries/messages.inc.php:1142 msgid "Last version" msgstr "" -#: db_tracking.php:74 libraries/messages.inc.php:1145 tbl_tracking.php:594 +#: db_tracking.php:74 libraries/messages.inc.php:1141 tbl_tracking.php:594 msgid "Created" msgstr "" -#: db_tracking.php:75 libraries/messages.inc.php:1147 tbl_tracking.php:595 +#: db_tracking.php:75 libraries/messages.inc.php:1143 tbl_tracking.php:595 msgid "Updated" msgstr "" #: db_tracking.php:77 libraries/Index.class.php:440 -#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:27 +#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:23 #: server_databases.php:203 server_privileges.php:1503 #: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187 msgid "Action" msgstr "Handling" -#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:247 +#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:243 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:106 libraries/messages.inc.php:1142 tbl_tracking.php:548 +#: db_tracking.php:106 libraries/messages.inc.php:1138 tbl_tracking.php:548 #: tbl_tracking.php:606 tbl_tracking.php:613 msgid "active" msgstr "" -#: db_tracking.php:108 libraries/messages.inc.php:1143 tbl_tracking.php:550 +#: db_tracking.php:108 libraries/messages.inc.php:1139 tbl_tracking.php:550 #: tbl_tracking.php:608 tbl_tracking.php:610 msgid "not active" msgstr "" -#: db_tracking.php:121 libraries/messages.inc.php:1160 +#: db_tracking.php:121 libraries/messages.inc.php:1156 msgid "Versions" msgstr "" -#: db_tracking.php:122 libraries/messages.inc.php:1132 tbl_tracking.php:379 +#: db_tracking.php:122 libraries/messages.inc.php:1128 tbl_tracking.php:379 #: tbl_tracking.php:624 msgid "Tracking report" msgstr "" -#: db_tracking.php:123 libraries/messages.inc.php:1144 tbl_tracking.php:251 +#: db_tracking.php:123 libraries/messages.inc.php:1140 tbl_tracking.php:251 #: tbl_tracking.php:624 msgid "Structure snapshot" msgstr "" -#: db_tracking.php:152 libraries/messages.inc.php:1154 +#: db_tracking.php:152 libraries/messages.inc.php:1150 msgid "Untracked tables" msgstr "" -#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1153 +#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1149 #: tbl_structure.php:529 tbl_structure.php:531 msgid "Track table" msgstr "" -#: db_tracking.php:200 libraries/messages.inc.php:1121 +#: db_tracking.php:200 libraries/messages.inc.php:1117 msgid "Database Log" msgstr "" -#: export.php:62 libraries/messages.inc.php:312 +#: export.php:62 libraries/messages.inc.php:308 msgid "Selected export type has to be saved in file!" msgstr "Valgte eksporttype skal gemmes som fil!" -#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:567 +#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:563 #, php-format msgid "Insufficient space to save the file %s." msgstr "Utilstrækkeligt plads til at gemme filen %s." -#: export.php:294 libraries/messages.inc.php:324 +#: export.php:294 libraries/messages.inc.php:320 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -862,17 +862,17 @@ msgstr "" "Filen %s findes allerede på serveren, lav filnavnet om eller tillad at der " "overskrives." -#: export.php:298 export.php:302 libraries/messages.inc.php:562 +#: export.php:298 export.php:302 libraries/messages.inc.php:558 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Webserveren har ikke tilladelse til at gemme filen %s." -#: export.php:629 libraries/messages.inc.php:276 +#: export.php:629 libraries/messages.inc.php:272 #, php-format msgid "Dump has been saved to file %s." msgstr "Dump er blevet gemt i filen %s." -#: import.php:60 libraries/messages.inc.php:1202 +#: import.php:60 libraries/messages.inc.php:1198 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation%" @@ -883,14 +883,14 @@ msgstr "" "begrænsning." #: import.php:279 import.php:332 libraries/File.class.php:849 -#: libraries/File.class.php:961 libraries/messages.inc.php:325 +#: libraries/File.class.php:961 libraries/messages.inc.php:321 msgid "File could not be read" msgstr "Filen kunne ikke læses" #: import.php:287 import.php:296 import.php:315 import.php:324 #: libraries/File.class.php:1031 libraries/File.class.php:1039 #: libraries/File.class.php:1055 libraries/File.class.php:1063 -#: libraries/messages.inc.php:1189 +#: libraries/messages.inc.php:1185 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -900,7 +900,7 @@ msgstr "" "Understøttelse af denne funktion er ikke implementeret eller ikke slået til " "for din konfiguration." -#: import.php:337 libraries/messages.inc.php:547 +#: import.php:337 libraries/messages.inc.php:543 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -911,29 +911,29 @@ msgstr "" "tilladt af din PHP-konfiguration. Se FAQ 1.16." #: import.php:372 libraries/display_import.lib.php:24 -#: libraries/messages.inc.php:125 +#: libraries/messages.inc.php:121 msgid "Could not load import plugins, please check your installation!" msgstr "Kunne ikke indlæse importplugins, check venligst din installation!" -#: import.php:397 libraries/messages.inc.php:102 +#: import.php:397 libraries/messages.inc.php:98 msgid "The bookmark has been deleted." msgstr "Bogmærket er fjernet." -#: import.php:401 libraries/messages.inc.php:879 +#: import.php:401 libraries/messages.inc.php:875 msgid "Showing bookmark" msgstr "Viser bogmærke" -#: import.php:403 libraries/messages.inc.php:101 +#: import.php:403 libraries/messages.inc.php:97 #, php-format msgid "Bookmark %s created" msgstr "Bogmærke %s oprettet" -#: import.php:409 import.php:415 libraries/messages.inc.php:407 +#: import.php:409 import.php:415 libraries/messages.inc.php:403 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Importen er korrekt gennemført, %d forespørgsler udført." -#: import.php:424 libraries/messages.inc.php:1107 +#: import.php:424 libraries/messages.inc.php:1103 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -941,12 +941,12 @@ msgstr "" "Script timeout nået, hvis du vil afslutte importen, indsend venligst samme " "fil igen og importen vil fortsætte hvor den slap." -#: index.php:190 libraries/messages.inc.php:553 +#: index.php:190 libraries/messages.inc.php:549 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" "phpMyAdmin er mere brugervenlig med en browser, der kan klare frames." -#: js/messages.php:25 libraries/messages.inc.php:155 +#: js/messages.php:25 libraries/messages.inc.php:151 #: server_synchronize.php:345 server_synchronize.php:357 #: server_synchronize.php:373 server_synchronize.php:380 #: server_synchronize.php:739 server_synchronize.php:767 @@ -954,116 +954,116 @@ msgstr "" msgid "Click to select" msgstr "" -#: js/messages.php:26 libraries/messages.inc.php:156 +#: js/messages.php:26 libraries/messages.inc.php:152 msgid "Click to unselect" msgstr "" #: js/messages.php:27 libraries/import.lib.php:103 -#: libraries/messages.inc.php:550 sql.php:89 +#: libraries/messages.inc.php:546 sql.php:89 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" erklæringer kan ikke bruges." -#: js/messages.php:30 libraries/messages.inc.php:270 +#: js/messages.php:30 libraries/messages.inc.php:266 #: libraries/mult_submits.inc.php:258 sql.php:188 msgid "Do you really want to " msgstr "Er du sikker på at du vil " -#: js/messages.php:31 libraries/messages.inc.php:271 +#: js/messages.php:31 libraries/messages.inc.php:267 #: libraries/mult_submits.inc.php:258 sql.php:172 msgid "You are about to DESTROY a complete database!" msgstr "Du er ved at DESTRUERE en komplet database!" -#: js/messages.php:34 libraries/messages.inc.php:94 +#: js/messages.php:34 libraries/messages.inc.php:90 msgid "You are about to DISABLE a BLOB Repository!" msgstr "" -#: js/messages.php:35 libraries/messages.inc.php:91 +#: js/messages.php:35 libraries/messages.inc.php:87 #, php-format msgid "Are you sure you want to disable all BLOB references for database %s?" msgstr "" -#: js/messages.php:38 libraries/messages.inc.php:342 +#: js/messages.php:38 libraries/messages.inc.php:338 msgid "Missing value in the form!" msgstr "Ingen værdi i formularen !" -#: js/messages.php:39 libraries/messages.inc.php:570 +#: js/messages.php:39 libraries/messages.inc.php:566 msgid "This is not a number!" msgstr "Dette er ikke et tal!" -#: js/messages.php:42 libraries/messages.inc.php:380 +#: js/messages.php:42 libraries/messages.inc.php:376 msgid "The host name is empty!" msgstr "Der er intet værtsnavn!" -#: js/messages.php:43 libraries/messages.inc.php:1208 +#: js/messages.php:43 libraries/messages.inc.php:1204 msgid "The user name is empty!" msgstr "Intet brugernavn!" -#: js/messages.php:44 libraries/messages.inc.php:607 +#: js/messages.php:44 libraries/messages.inc.php:603 #: server_privileges.php:1197 user_password.php:70 msgid "The password is empty!" msgstr "Der er ikke angivet noget kodeord!" -#: js/messages.php:45 libraries/messages.inc.php:609 +#: js/messages.php:45 libraries/messages.inc.php:605 #: server_privileges.php:1195 user_password.php:73 msgid "The passwords aren't the same!" msgstr "De to kodeord er ikke ens!" -#: js/messages.php:49 libraries/messages.inc.php:123 pmd_general.php:342 +#: js/messages.php:49 libraries/messages.inc.php:119 pmd_general.php:342 #: pmd_general.php:379 msgid "Cancel" msgstr "Annuller" -#: js/messages.php:52 libraries/messages.inc.php:514 +#: js/messages.php:52 libraries/messages.inc.php:510 msgid "Modifications have been saved" msgstr "Rettelserne er gemt!" -#: js/messages.php:53 libraries/messages.inc.php:741 +#: js/messages.php:53 libraries/messages.inc.php:737 msgid "Relation deleted" msgstr "Relation slettet" -#: js/messages.php:54 libraries/messages.inc.php:340 +#: js/messages.php:54 libraries/messages.inc.php:336 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:55 libraries/messages.inc.php:434 +#: js/messages.php:55 libraries/messages.inc.php:430 msgid "Internal relation added" msgstr "Intern relation tilføjet" -#: js/messages.php:56 libraries/messages.inc.php:299 +#: js/messages.php:56 libraries/messages.inc.php:295 msgid "Error: Relation not added." msgstr "Fejl: Relation ikke tilføjet." -#: js/messages.php:57 libraries/messages.inc.php:300 +#: js/messages.php:57 libraries/messages.inc.php:296 msgid "Error: relation already exists." msgstr "Fejl: Relation findes allerede." -#: js/messages.php:58 libraries/messages.inc.php:302 +#: js/messages.php:58 libraries/messages.inc.php:298 msgid "Error saving coordinates for Designer." msgstr "Fejl ved lagring af koordinater for Designer." -#: js/messages.php:59 libraries/messages.inc.php:351 +#: js/messages.php:59 libraries/messages.inc.php:347 #: libraries/relation.lib.php:107 msgid "General relation features" msgstr "Generelle relationsmuligheder" -#: js/messages.php:59 libraries/messages.inc.php:260 +#: js/messages.php:59 libraries/messages.inc.php:256 #: libraries/relation.lib.php:101 libraries/relation.lib.php:108 msgid "Disabled" msgstr "Slået fra" -#: js/messages.php:60 libraries/messages.inc.php:850 +#: js/messages.php:60 libraries/messages.inc.php:846 msgid "Select referenced key" msgstr "Vælg refereret nøgle" -#: js/messages.php:61 libraries/messages.inc.php:848 +#: js/messages.php:61 libraries/messages.inc.php:844 msgid "Select Foreign Key" msgstr "Vælg fremmednøgle" -#: js/messages.php:62 libraries/messages.inc.php:653 +#: js/messages.php:62 libraries/messages.inc.php:649 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 libraries/messages.inc.php:142 pmd_general.php:77 +#: js/messages.php:63 libraries/messages.inc.php:138 pmd_general.php:77 #: tbl_relation.php:548 msgid "Choose field to display" msgstr "Vælg felt der skal vises" @@ -1083,9 +1083,9 @@ msgid "Prev" msgstr "Forrige" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2332 -#: libraries/common.lib.php:2335 libraries/display_tbl.lib.php:338 -#: libraries/messages.inc.php:543 server_binlog.php:205 server_binlog.php:207 +#: js/messages.php:77 libraries/common.lib.php:2344 +#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: libraries/messages.inc.php:539 server_binlog.php:205 server_binlog.php:207 #: tbl_printview.php:424 tbl_structure.php:802 msgid "Next" msgstr "Næste" @@ -1160,27 +1160,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1543 +#: js/messages.php:97 libraries/common.lib.php:1555 msgid "Jan" msgstr "jan" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1545 +#: js/messages.php:99 libraries/common.lib.php:1557 msgid "Feb" msgstr "feb" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1547 +#: js/messages.php:101 libraries/common.lib.php:1559 msgid "Mar" msgstr "mar" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1549 +#: js/messages.php:103 libraries/common.lib.php:1561 msgid "Apr" msgstr "apr" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1551 +#: js/messages.php:105 libraries/common.lib.php:1563 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1188,37 +1188,37 @@ msgid "May" msgstr "maj" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1553 +#: js/messages.php:107 libraries/common.lib.php:1565 msgid "Jun" msgstr "jun" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1555 +#: js/messages.php:109 libraries/common.lib.php:1567 msgid "Jul" msgstr "jul" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1557 +#: js/messages.php:111 libraries/common.lib.php:1569 msgid "Aug" msgstr "aug" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1559 +#: js/messages.php:113 libraries/common.lib.php:1571 msgid "Sep" msgstr "sep" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1561 +#: js/messages.php:115 libraries/common.lib.php:1573 msgid "Oct" msgstr "okt" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1563 +#: js/messages.php:117 libraries/common.lib.php:1575 msgid "Nov" msgstr "nov" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1565 +#: js/messages.php:119 libraries/common.lib.php:1577 msgid "Dec" msgstr "dec" @@ -1259,37 +1259,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1568 +#: js/messages.php:132 libraries/common.lib.php:1580 msgid "Sun" msgstr "søn" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1570 +#: js/messages.php:134 libraries/common.lib.php:1582 msgid "Mon" msgstr "man" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1572 +#: js/messages.php:136 libraries/common.lib.php:1584 msgid "Tue" msgstr "tir" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1574 +#: js/messages.php:138 libraries/common.lib.php:1586 msgid "Wed" msgstr "ons" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1576 +#: js/messages.php:140 libraries/common.lib.php:1588 msgid "Thu" msgstr "tor" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1578 +#: js/messages.php:142 libraries/common.lib.php:1590 msgid "Fri" msgstr "fre" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1580 +#: js/messages.php:144 libraries/common.lib.php:1592 msgid "Sat" msgstr "lør" @@ -1363,21 +1363,21 @@ msgstr "i brug" msgid "Second" msgstr "pr. sekund" -#: libraries/Config.class.php:1015 libraries/messages.inc.php:338 +#: libraries/Config.class.php:1015 libraries/messages.inc.php:334 msgid "Font size" msgstr "Skriftstørrelse" #: libraries/File.class.php:344 libraries/File.class.php:432 #: libraries/File.class.php:569 libraries/File.class.php:708 -#: libraries/messages.inc.php:1201 +#: libraries/messages.inc.php:1197 msgid "Unknown error in file upload." msgstr "Ukendt fejl i filupload." -#: libraries/File.class.php:414 libraries/messages.inc.php:1198 +#: libraries/File.class.php:414 libraries/messages.inc.php:1194 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "Den uploadede fil overstiger upload_max_filesize direktivet i php.ini." -#: libraries/File.class.php:417 libraries/messages.inc.php:1197 +#: libraries/File.class.php:417 libraries/messages.inc.php:1193 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -1385,56 +1385,56 @@ msgstr "" "Den uploadede fil overstiger MAX_FILE_SIZE direktivet som angivet i HTML-" "formularen." -#: libraries/File.class.php:420 libraries/messages.inc.php:1200 +#: libraries/File.class.php:420 libraries/messages.inc.php:1196 msgid "The uploaded file was only partially uploaded." msgstr "Den uploadede fil blev kun delvist uploaded." -#: libraries/File.class.php:423 libraries/messages.inc.php:1199 +#: libraries/File.class.php:423 libraries/messages.inc.php:1195 msgid "Missing a temporary folder." msgstr "Mangler en midlertidig mappe." -#: libraries/File.class.php:426 libraries/messages.inc.php:1195 +#: libraries/File.class.php:426 libraries/messages.inc.php:1191 msgid "Failed to write file to disk." msgstr "Kunne ikke skrive fil til disk." -#: libraries/File.class.php:429 libraries/messages.inc.php:1196 +#: libraries/File.class.php:429 libraries/messages.inc.php:1192 msgid "File upload stopped by extension." msgstr "Filupload stoppet af udvidelse." -#: libraries/File.class.php:908 libraries/messages.inc.php:319 +#: libraries/File.class.php:908 libraries/messages.inc.php:315 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "Fejl ved flytning af den uploadede fil, se FAQ 1.11" -#: libraries/Index.class.php:428 libraries/messages.inc.php:554 +#: libraries/Index.class.php:428 libraries/messages.inc.php:550 #: tbl_relation.php:529 msgid "No index defined!" msgstr "Intet indeks defineret!" -#: libraries/Index.class.php:433 libraries/messages.inc.php:411 +#: libraries/Index.class.php:433 libraries/messages.inc.php:407 #: server_databases.php:132 tbl_tracking.php:316 msgid "Indexes" msgstr "Indeks" -#: libraries/Index.class.php:444 libraries/messages.inc.php:1186 +#: libraries/Index.class.php:444 libraries/messages.inc.php:1182 #: 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:475 tbl_tracking.php:322 msgid "Unique" msgstr "Unik" -#: libraries/Index.class.php:445 libraries/messages.inc.php:596 +#: libraries/Index.class.php:445 libraries/messages.inc.php:592 #: tbl_tracking.php:323 msgid "Packed" msgstr "" -#: libraries/Index.class.php:447 libraries/messages.inc.php:131 +#: libraries/Index.class.php:447 libraries/messages.inc.php:127 #: tbl_tracking.php:325 msgid "Cardinality" msgstr "Kardinalitet" -#: libraries/Index.class.php:450 libraries/messages.inc.php:162 +#: libraries/Index.class.php:450 libraries/messages.inc.php:158 #: tbl_tracking.php:279 tbl_tracking.php:328 msgid "Comment" msgstr "" @@ -1442,29 +1442,29 @@ msgstr "" #: libraries/Index.class.php:466 libraries/common.lib.php:616 #: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:280 pdf_pages.php:280 +#: libraries/messages.inc.php:276 pdf_pages.php:280 #: setup/frames/index.inc.php:124 setup/lib/messages.inc.php:352 #: tbl_row_action.php:69 msgid "Edit" msgstr "Ret" -#: libraries/Index.class.php:472 libraries/messages.inc.php:666 +#: libraries/Index.class.php:472 libraries/messages.inc.php:662 msgid "The primary key has been dropped" msgstr "Primærnøglen er slettet" -#: libraries/Index.class.php:476 libraries/messages.inc.php:413 +#: libraries/Index.class.php:476 libraries/messages.inc.php:409 #, php-format msgid "Index %s has been dropped" msgstr "Indeks %s er blevet slettet" -#: libraries/Index.class.php:576 libraries/messages.inc.php:412 +#: libraries/Index.class.php:576 libraries/messages.inc.php:408 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "" -#: libraries/List_Database.class.php:431 libraries/messages.inc.php:218 +#: libraries/List_Database.class.php:431 libraries/messages.inc.php:214 #: libraries/server_links.inc.php:41 server_databases.php:88 #: server_privileges.php:1621 setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" @@ -1493,87 +1493,87 @@ msgid_plural "%1$d rows inserted." msgstr[0] "Ingen rækker valgt" msgstr[1] "Ingen rækker valgt" -#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:549 +#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:545 msgid "" "There is no detailed status information available for this storage engine." msgstr "" "Der er ingen detaljerede statusinformationer tilgængelige for dette " "datalager." -#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:291 +#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:287 #, php-format msgid "%s is available on this MySQL server." msgstr "%s er tilgængelig på denne MySQL-server." -#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:292 +#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:288 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s er slået fra på denne MySQL-server." -#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:294 +#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:290 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "Denne MySQL-server understøtter ikke %s datalager." -#: libraries/Table.class.php:1019 libraries/messages.inc.php:443 +#: libraries/Table.class.php:1019 libraries/messages.inc.php:439 msgid "Invalid database" msgstr "Ugyldig database" -#: libraries/Table.class.php:1033 libraries/messages.inc.php:450 +#: libraries/Table.class.php:1033 libraries/messages.inc.php:446 #: tbl_get_field.php:26 msgid "Invalid table name" msgstr "Ugyldigt tabelnavn" -#: libraries/Table.class.php:1048 libraries/messages.inc.php:301 +#: libraries/Table.class.php:1048 libraries/messages.inc.php:297 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "Fejl ved omdøbning af tabel %1$s til %2$s" -#: libraries/Table.class.php:1132 libraries/messages.inc.php:754 +#: libraries/Table.class.php:1132 libraries/messages.inc.php:750 #, php-format msgid "Table %s has been renamed to %s" msgstr "Tabellen %s er nu omdøbt til %s" -#: libraries/Theme.class.php:162 libraries/messages.inc.php:1099 +#: libraries/Theme.class.php:162 libraries/messages.inc.php:1095 #, php-format msgid "No valid image path for theme %s found!" msgstr "Ingen gyldig billedsti for tema %s fundet!" -#: libraries/Theme.class.php:384 libraries/messages.inc.php:1097 +#: libraries/Theme.class.php:384 libraries/messages.inc.php:1093 msgid "No preview available." msgstr "Intet billede til rådighed." -#: libraries/Theme.class.php:387 libraries/messages.inc.php:1089 +#: libraries/Theme.class.php:387 libraries/messages.inc.php:1085 msgid "take it" msgstr "Vælg dette" -#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1096 +#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1092 #, php-format msgid "Default theme %s not found!" msgstr "Standardtema %s ikke fundet!" -#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1098 +#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1094 #, php-format msgid "Theme %s not found!" msgstr "Tema %s ikke fundet!" -#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1100 +#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1096 #, php-format msgid "Theme path not found for theme %s!" msgstr "Sti til tema ikke fundet for tema %s!" -#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1101 +#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1097 #: test/theme.php:161 themes.php:21 themes.php:41 msgid "Theme / Style" msgstr "Tema / Layout" -#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:172 +#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:168 msgid "Cannot connect: invalid settings." msgstr "Kan ikke forbinde: ugyldige indstillinger." #: libraries/auth/config.auth.lib.php:92 #: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65 -#: libraries/messages.inc.php:1238 test/theme.php:152 +#: libraries/messages.inc.php:1234 test/theme.php:152 #, php-format msgid "Welcome to %s" msgstr "Velkommen til %s" @@ -1599,51 +1599,51 @@ msgstr "" "sikre dig at de svarer til den information du har fået af administratoren af " "MySQL-serveren." -#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:488 +#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:484 msgid "Log in" msgstr "Login" #: libraries/auth/cookie.auth.lib.php:246 -#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:659 +#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:655 #: libraries/navigation_header.inc.php:93 #: libraries/navigation_header.inc.php:95 msgid "phpMyAdmin documentation" msgstr "phpMyAdmin dokumentation" #: libraries/auth/cookie.auth.lib.php:258 -#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:492 +#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:488 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:493 +#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:489 msgid "Server:" msgstr "Server" -#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:494 +#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:490 msgid "Username:" msgstr "Brugernavn:" -#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:491 +#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:487 msgid "Password:" msgstr "Kodeord:" -#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:854 +#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:850 msgid "Server Choice" msgstr "Server valg" #: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 -#: libraries/messages.inc.php:177 +#: libraries/messages.inc.php:173 msgid "Cookies must be enabled past this point." msgstr "Herefter skal cookies være slået til." #: libraries/auth/cookie.auth.lib.php:671 -#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:489 +#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:485 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" #: libraries/auth/cookie.auth.lib.php:675 -#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:544 +#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:540 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" @@ -1651,53 +1651,53 @@ msgstr "" #: libraries/auth/cookie.auth.lib.php:685 #: libraries/auth/cookie.auth.lib.php:687 -#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:126 +#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:122 msgid "Cannot log in to the MySQL server" msgstr "Kan ikke logge ind på MySQL-serveren" -#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1245 +#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1241 msgid "Wrong username/password. Access denied." msgstr "Forkert brugernavn/kodeord. Adgang nægtet." #: libraries/auth/swekey/swekey.auth.lib.php:118 -#: libraries/messages.inc.php:1057 +#: libraries/messages.inc.php:1053 #, php-format msgid "File %s does not contain any key id" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:157 #: libraries/auth/swekey/swekey.auth.lib.php:180 -#: libraries/messages.inc.php:1056 +#: libraries/messages.inc.php:1052 msgid "Hardware authentication failed" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:166 -#: libraries/messages.inc.php:1058 +#: libraries/messages.inc.php:1054 msgid "No valid authentication key plugged" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:202 -#: libraries/messages.inc.php:1055 +#: libraries/messages.inc.php:1051 msgid "Authenticating..." msgstr "" -#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1230 +#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1226 msgid "View image" msgstr "" -#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:652 +#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:648 msgid "Play audio" msgstr "" -#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1232 +#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1228 msgid "View video" msgstr "" -#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:269 +#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:265 msgid "Download file" msgstr "" -#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:128 +#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:124 msgid "" "Couldn't load the iconv or recode extension needed for charset conversion. " "Either configure PHP to enable these extensions or disable charset " @@ -1709,7 +1709,7 @@ msgstr "" #: libraries/charset_conversion.lib.php:79 #: libraries/charset_conversion.lib.php:90 -#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:130 +#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:126 msgid "" "Couldn't use the iconv, libiconv, or recode_string functions, although the " "necessary extensions appear to be loaded. Check your PHP configuration." @@ -1717,7 +1717,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/messages.inc.php:170 +#: libraries/common.inc.php:583 libraries/messages.inc.php:166 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!" @@ -1752,23 +1752,23 @@ msgstr "" msgid "Invalid server index: %s" msgstr "Ugyldigt server indeks: \"%s\"" -#: libraries/common.inc.php:636 libraries/messages.inc.php:448 +#: libraries/common.inc.php:636 libraries/messages.inc.php:444 #, 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/messages.inc.php:856 libraries/select_server.lib.php:41 +#: libraries/messages.inc.php:852 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/messages.inc.php:437 +#: libraries/common.inc.php:823 libraries/messages.inc.php:433 msgid "Invalid authentication method set in configuration:" msgstr "Ugyldig autorisationsmetode sat i konfiguration:" -#: libraries/common.lib.php:147 libraries/messages.inc.php:499 +#: libraries/common.lib.php:147 libraries/messages.inc.php:495 #, php-format msgid "Max: %s%s" msgstr "Maksimum størrelse: %s%s" @@ -1788,7 +1788,7 @@ msgstr "en" #: libraries/common.lib.php:428 libraries/common.lib.php:430 #: libraries/common.lib.php:432 libraries/common.lib.php:448 #: libraries/common.lib.php:450 libraries/dbg/setup.php:25 -#: libraries/display_export.lib.php:164 libraries/messages.inc.php:267 +#: libraries/display_export.lib.php:164 libraries/messages.inc.php:263 #: libraries/relation.lib.php:97 libraries/sql_query_form.lib.php:451 #: libraries/sql_query_form.lib.php:454 main.php:229 pdf_pages.php:37 #: pdf_pages.php:43 pdf_pages.php:49 pdf_pages.php:54 @@ -1798,55 +1798,55 @@ msgstr "Dokumentation" #: libraries/common.lib.php:581 libraries/core.lib.php:234 #: libraries/core.lib.php:263 libraries/import.lib.php:134 -#: libraries/messages.inc.php:297 pdf_schema.php:32 pdf_schema.php:232 +#: libraries/messages.inc.php:293 pdf_schema.php:32 pdf_schema.php:232 #: tbl_change.php:1027 tbl_operations.php:213 tbl_relation.php:290 #: view_operations.php:62 msgid "Error" msgstr "Fejl" #: libraries/common.lib.php:595 libraries/header_printview.inc.php:61 -#: libraries/messages.inc.php:1023 server_processlist.php:60 +#: libraries/messages.inc.php:1019 server_processlist.php:60 #: server_status.php:247 msgid "SQL query" msgstr "SQL-forespørgsel" -#: libraries/common.lib.php:634 libraries/messages.inc.php:538 +#: libraries/common.lib.php:634 libraries/messages.inc.php:534 msgid "MySQL said: " msgstr "MySQL returnerede: " -#: libraries/common.lib.php:667 libraries/messages.inc.php:76 +#: libraries/common.lib.php:667 libraries/messages.inc.php:72 #: pdf_schema.php:241 user_password.php:115 msgid "Back" msgstr "Tilbage" -#: libraries/common.lib.php:1177 libraries/messages.inc.php:309 +#: libraries/common.lib.php:1177 libraries/messages.inc.php:305 #: setup/lib/messages.inc.php:353 msgid "Explain SQL" msgstr "Forklar SQL" -#: libraries/common.lib.php:1180 libraries/messages.inc.php:551 +#: libraries/common.lib.php:1180 libraries/messages.inc.php:547 msgid "Skip Explain SQL" msgstr "Spring over Forklar SQL" -#: libraries/common.lib.php:1212 libraries/messages.inc.php:563 +#: libraries/common.lib.php:1212 libraries/messages.inc.php:559 msgid "Without PHP Code" msgstr "uden PHP-kode" -#: libraries/common.lib.php:1215 libraries/messages.inc.php:649 +#: libraries/common.lib.php:1215 libraries/messages.inc.php:645 #: setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "Fremstil PHP-kode" -#: libraries/common.lib.php:1233 libraries/messages.inc.php:737 +#: libraries/common.lib.php:1233 libraries/messages.inc.php:733 #: server_status.php:341 setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "Opdatér" -#: libraries/common.lib.php:1242 libraries/messages.inc.php:575 +#: libraries/common.lib.php:1242 libraries/messages.inc.php:571 msgid "Skip Validate SQL" msgstr "Spring over Validér SQL" -#: libraries/common.lib.php:1245 libraries/messages.inc.php:1220 +#: libraries/common.lib.php:1245 libraries/messages.inc.php:1216 #: setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "Validér SQL" @@ -1862,11 +1862,11 @@ msgid "Inline" msgstr "Lagre" #: libraries/common.lib.php:1332 libraries/common.lib.php:1347 -#: libraries/messages.inc.php:713 +#: libraries/messages.inc.php:709 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1351 libraries/messages.inc.php:1108 +#: libraries/common.lib.php:1351 libraries/messages.inc.php:1104 #: libraries/tbl_triggers.lib.php:28 server_processlist.php:58 msgid "Time" msgstr "Tid" @@ -1900,46 +1900,56 @@ msgstr "PiB" msgid "EiB" msgstr "EiB" +#. l10n: Thousands separator +#: libraries/common.lib.php:1417 +msgid "," +msgstr "." + +#. l10n: Decimal separator +#: libraries/common.lib.php:1419 +msgid "." +msgstr "," + #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1584 +#: libraries/common.lib.php:1596 #: libraries/transformations/text_plain__dateformat.inc.php:28 msgid "%B %d, %Y at %I:%M %p" msgstr "%d. %m %Y kl. %H:%M:%S" -#: libraries/common.lib.php:1886 +#: libraries/common.lib.php:1898 #, 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:2301 libraries/common.lib.php:2304 -#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:664 +#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:660 #: server_status.php:608 msgid "Begin" msgstr "Start" -#: libraries/common.lib.php:2302 libraries/common.lib.php:2305 -#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:665 +#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:661 #: server_binlog.php:168 server_binlog.php:170 msgid "Previous" msgstr "Forrige" -#: libraries/common.lib.php:2333 libraries/common.lib.php:2336 -#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:289 +#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:285 msgid "End" msgstr "Slut" -#: libraries/common.lib.php:2409 libraries/messages.inc.php:455 +#: libraries/common.lib.php:2421 libraries/messages.inc.php:451 #, php-format msgid "Jump to database "%s"." msgstr "Hop til database "%s"." -#: libraries/common.lib.php:2429 libraries/messages.inc.php:461 +#: libraries/common.lib.php:2441 libraries/messages.inc.php:457 #, 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/core.lib.php:286 libraries/dbg/setup.php:22 -#: libraries/messages.inc.php:127 +#: libraries/messages.inc.php:123 #, php-format msgid "" "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " @@ -1949,116 +1959,116 @@ msgstr "" "udvidelsen. Tjek venligst din PHP-konfiguration." #: libraries/db_events.inc.php:20 libraries/db_events.inc.php:22 -#: libraries/export/sql.php:415 libraries/messages.inc.php:306 +#: libraries/export/sql.php:415 libraries/messages.inc.php:302 msgid "Events" msgstr "" #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 -#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:541 +#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:537 #: libraries/tbl_triggers.lib.php:27 setup/frames/index.inc.php:112 msgid "Name" msgstr "Navn" -#: libraries/db_links.inc.php:45 libraries/messages.inc.php:216 +#: libraries/db_links.inc.php:45 libraries/messages.inc.php:212 #, php-format msgid "Database %s has been dropped." msgstr "Database %s er slettet." #: libraries/db_links.inc.php:57 libraries/db_links.inc.php:58 -#: libraries/db_links.inc.php:59 libraries/messages.inc.php:234 +#: libraries/db_links.inc.php:59 libraries/messages.inc.php:230 msgid "Database seems to be empty!" msgstr "Database ser ud til at være tom!" -#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1025 +#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1021 #: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60 #: querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1152 +#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1148 #: libraries/tbl_links.inc.php:69 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:86 libraries/messages.inc.php:719 +#: libraries/db_links.inc.php:86 libraries/messages.inc.php:715 msgid "Query" msgstr "Foresp. via eks." -#: libraries/db_links.inc.php:91 libraries/messages.inc.php:253 +#: libraries/db_links.inc.php:91 libraries/messages.inc.php:249 msgid "Designer" msgstr "Designer" -#: libraries/db_links.inc.php:98 libraries/messages.inc.php:397 +#: libraries/db_links.inc.php:98 libraries/messages.inc.php:393 #: libraries/server_links.inc.php:88 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:104 libraries/messages.inc.php:587 +#: libraries/db_links.inc.php:104 libraries/messages.inc.php:583 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" msgstr "Operationer" -#: libraries/db_links.inc.php:111 libraries/messages.inc.php:709 +#: libraries/db_links.inc.php:111 libraries/messages.inc.php:705 #: libraries/server_links.inc.php:66 server_privileges.php:72 #: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117 msgid "Privileges" msgstr "Privilegier" #: libraries/db_routines.inc.php:30 libraries/db_routines.inc.php:32 -#: libraries/messages.inc.php:812 +#: libraries/messages.inc.php:808 msgid "Routines" msgstr "Rutiner" -#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:811 +#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:807 msgid "Return type" msgstr "Retur type" #: libraries/db_structure.lib.php:57 libraries/display_tbl.lib.php:1848 -#: libraries/messages.inc.php:65 +#: libraries/messages.inc.php:61 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "Kan være anslået. Se FAQ 3.11" -#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:593 +#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:589 #: server_databases.php:142 tbl_printview.php:336 tbl_structure.php:683 msgid "Overhead" msgstr "Overhead" #: libraries/dbi/mysql.dbi.lib.php:112 libraries/dbi/mysqli.dbi.lib.php:124 -#: libraries/messages.inc.php:176 +#: libraries/messages.inc.php:172 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Forbindelse for kontrolbruger som defineret i din konfiguration slog fejl." #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 -#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:855 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:851 msgid "The server is not responding" msgstr "Serveren svarer ikke" #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:1010 +#: libraries/messages.inc.php:1006 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 libraries/messages.inc.php:255 +#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:251 #: tbl_structure.php:609 msgid "Details..." msgstr "" -#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:143 +#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:139 #: main.php:91 user_password.php:111 user_password.php:129 msgid "Change password" msgstr "Ændre kodeord" -#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:561 +#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:557 #: libraries/replication_gui.lib.php:341 server_privileges.php:768 msgid "No Password" msgstr "Intet kodeord" -#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:610 +#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:606 #: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60 #: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335 #: libraries/replication_gui.lib.php:345 server_privileges.php:757 @@ -2067,13 +2077,13 @@ msgstr "Intet kodeord" msgid "Password" msgstr "Kodeord" -#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:806 +#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:802 #: libraries/replication_gui.lib.php:349 libraries/replication_gui.lib.php:352 #: server_privileges.php:776 server_privileges.php:779 msgid "Re-type" msgstr "Skriv igen" -#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:608 +#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:604 msgid "Password Hashing" msgstr "Kodeord Hashing" @@ -2083,89 +2093,89 @@ msgstr "Kodeord Hashing" msgid "MySQL 4.0 compatible" msgstr "MySQL 4.0 kompatibel" -#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:353 +#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:349 #: libraries/replication_gui.lib.php:356 server_privileges.php:783 msgid "Generate Password" msgstr "Generér Kodeord" -#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:352 +#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:348 #: libraries/replication_gui.lib.php:359 server_privileges.php:786 msgid "Generate" msgstr "Generér" #: libraries/display_create_database.lib.php:22 -#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:189 +#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:185 msgid "Create new database" msgstr "Opret ny database" -#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:185 +#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:181 msgid "Create" msgstr "Opret" -#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:564 +#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:560 #: server_privileges.php:74 server_privileges.php:1388 #: server_replication.php:35 msgid "No Privileges" msgstr "Ingen privilegier" -#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:445 +#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:441 msgid "Table must have at least one field." msgstr "Tabellen skal indeholde mindst ét felt." -#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:190 +#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:186 #, php-format msgid "Create table on database %s" msgstr "Opret ny tabel i database %s" -#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:577 +#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:573 msgid "Number of fields" msgstr "Antal felter" -#: libraries/display_export.lib.php:42 libraries/messages.inc.php:124 +#: libraries/display_export.lib.php:42 libraries/messages.inc.php:120 msgid "Could not load export plugins, please check your installation!" msgstr "Kunne ikke indlæse eksportplugins, check venligst din installation!" -#: libraries/display_export.lib.php:107 libraries/messages.inc.php:277 +#: libraries/display_export.lib.php:107 libraries/messages.inc.php:273 #, php-format msgid "Dump %s row(s) starting at record # %s" msgstr "Dump %s rækker startende med række %s." -#: libraries/display_export.lib.php:115 libraries/messages.inc.php:274 +#: libraries/display_export.lib.php:115 libraries/messages.inc.php:270 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:125 libraries/messages.inc.php:852 +#: libraries/display_export.lib.php:125 libraries/messages.inc.php:848 #: setup/lib/messages.inc.php:82 msgid "Save as file" msgstr "Send (download)" -#: libraries/display_export.lib.php:134 libraries/messages.inc.php:828 +#: libraries/display_export.lib.php:134 libraries/messages.inc.php:824 #, php-format msgid "Save on server in %s directory" msgstr "Gem på serveren i mappen %s " -#: libraries/display_export.lib.php:142 libraries/messages.inc.php:594 +#: libraries/display_export.lib.php:142 libraries/messages.inc.php:590 #: setup/lib/messages.inc.php:90 msgid "Overwrite existing file(s)" msgstr "Overskriv eksisterende fil(er)" -#: libraries/display_export.lib.php:148 libraries/messages.inc.php:330 +#: libraries/display_export.lib.php:148 libraries/messages.inc.php:326 msgid "File name template" msgstr "Skabelon for filnavn" -#: libraries/display_export.lib.php:152 libraries/messages.inc.php:327 +#: libraries/display_export.lib.php:152 libraries/messages.inc.php:323 msgid "server name" msgstr "servernavn" -#: libraries/display_export.lib.php:155 libraries/messages.inc.php:326 +#: libraries/display_export.lib.php:155 libraries/messages.inc.php:322 msgid "database name" msgstr "databasenavn" -#: libraries/display_export.lib.php:158 libraries/messages.inc.php:328 +#: libraries/display_export.lib.php:158 libraries/messages.inc.php:324 msgid "table name" msgstr "tabelnavn" -#: libraries/display_export.lib.php:162 libraries/messages.inc.php:329 +#: libraries/display_export.lib.php:162 libraries/messages.inc.php:325 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2176,24 +2186,24 @@ msgstr "" "strenge. Ydermere vil følgende transformationer foregå: %3$s. Anden tekst " "vil blive bevaret som det er." -#: libraries/display_export.lib.php:202 libraries/messages.inc.php:331 +#: libraries/display_export.lib.php:202 libraries/messages.inc.php:327 msgid "remember template" msgstr "husk skabelonen" #: libraries/display_export.lib.php:210 libraries/display_import.lib.php:178 -#: libraries/display_import.lib.php:191 libraries/messages.inc.php:145 +#: libraries/display_import.lib.php:191 libraries/messages.inc.php:141 #: libraries/sql_query_form.lib.php:549 msgid "Character set of the file:" msgstr "Tegnsæt for filen:" -#: libraries/display_export.lib.php:235 libraries/messages.inc.php:166 +#: libraries/display_export.lib.php:235 libraries/messages.inc.php:162 #: setup/lib/messages.inc.php:84 msgid "Compression" 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/messages.inc.php:558 +#: libraries/export/sql.php:868 libraries/messages.inc.php:554 #: libraries/tbl_properties.inc.php:575 server_privileges.php:1836 #: server_processlist.php:75 msgid "None" @@ -2217,60 +2227,60 @@ msgstr "\"gzipped\"" msgid "bzipped" msgstr "\"bzipped\"" -#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1018 +#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1014 msgid "SQL compatibility mode" msgstr "SQL-kompatibilitetsmodus" -#: libraries/display_import.lib.php:67 libraries/messages.inc.php:398 +#: libraries/display_import.lib.php:67 libraries/messages.inc.php:394 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " "browsers." msgstr "" -#: libraries/display_import.lib.php:77 libraries/messages.inc.php:406 +#: libraries/display_import.lib.php:77 libraries/messages.inc.php:402 msgid "The file is being processed, please be patient." msgstr "" -#: libraries/display_import.lib.php:99 libraries/messages.inc.php:408 +#: libraries/display_import.lib.php:99 libraries/messages.inc.php:404 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." msgstr "" -#: libraries/display_import.lib.php:126 libraries/messages.inc.php:333 +#: libraries/display_import.lib.php:126 libraries/messages.inc.php:329 msgid "File to import" msgstr "Fil til import" -#: libraries/display_import.lib.php:137 libraries/messages.inc.php:486 +#: libraries/display_import.lib.php:137 libraries/messages.inc.php:482 #: libraries/sql_query_form.lib.php:524 msgid "Location of the text file" msgstr "Tekstfilens placering" -#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1203 +#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1199 msgid "File uploads are not allowed on this server." msgstr "Fil-uploads er ikke tilladte på denne server." -#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1235 +#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1231 #: libraries/sql_query_form.lib.php:533 tbl_change.php:1028 msgid "The directory you set for upload work cannot be reached" msgstr "Mappen du har sat til upload-arbejde kan ikke findes" -#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1236 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1232 #: libraries/sql_query_form.lib.php:536 tbl_change.php:1031 msgid "web server upload directory" msgstr "webserver upload-mappe" -#: libraries/display_import.lib.php:212 libraries/messages.inc.php:167 +#: libraries/display_import.lib.php:212 libraries/messages.inc.php:163 #, php-format msgid "Imported file compression will be automatically detected from: %s" msgstr "Importeret fil-komprimering vil blive automatisk registreret fra: %s" -#: libraries/display_import.lib.php:219 libraries/messages.inc.php:600 +#: libraries/display_import.lib.php:219 libraries/messages.inc.php:596 msgid "Partial import" msgstr "Delvis import" -#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1105 +#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1101 #, php-format msgid "" "Previous import timed out, after resubmitting will continue from position %d." @@ -2278,7 +2288,7 @@ msgstr "" "Foregående import timede ud, efter genindsendelse vil fortsætte fra position " "%d." -#: libraries/display_import.lib.php:232 libraries/messages.inc.php:51 +#: libraries/display_import.lib.php:232 libraries/messages.inc.php:47 msgid "" "Allow the interruption of an import in case the script detects it is close " "to the PHP timeout limit. This might be good way to import large files, " @@ -2288,177 +2298,177 @@ msgstr "" "være en god metode til at importere større filer, men kan knække " "transaktioner." -#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1004 +#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1000 #: setup/lib/messages.inc.php:161 msgid "Number of records (queries) to skip from start" msgstr "Antal poster (queries) der skal springes over fra start" -#: libraries/display_import.lib.php:255 libraries/messages.inc.php:396 +#: libraries/display_import.lib.php:255 libraries/messages.inc.php:392 #: setup/lib/messages.inc.php:160 msgid "Format of imported file" msgstr "Format på importeret fil" #: libraries/display_select_lang.lib.php:45 -#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:465 +#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:461 #: setup/frames/index.inc.php:70 msgid "Language" msgstr "Sprog" -#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:447 +#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:443 #, php-format msgid "%d is not valid row number." msgstr "%d er ikke et gyldigt rækkenummer." -#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:814 +#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:810 msgid "row(s) starting from record #" msgstr "rækker startende fra post #" -#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:817 +#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:813 msgid "horizontal" msgstr "vandret" -#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:816 +#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:812 msgid "horizontal (rotated headers)" msgstr "horisontalt (roterede overskrifter)" -#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:819 +#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:815 msgid "vertical" msgstr "lodret" -#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:818 +#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:814 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "%s og gentag overskrifter efter %s celler" -#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:495 +#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:491 msgid "This operation could take a long time. Proceed anyway?" msgstr "Denne operation kan tage lang tid. Fortsæt alligevel?" -#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1012 +#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1008 msgid "Sort by key" msgstr "Sorteringsnøgle" #: libraries/display_tbl.lib.php:555 libraries/import.lib.php:1082 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:591 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:587 #: tbl_select.php:267 tbl_structure.php:754 msgid "Options" msgstr "Indstillinger" #: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:570 -#: libraries/messages.inc.php:601 +#: libraries/messages.inc.php:597 msgid "Partial Texts" msgstr "Delvise tekster" #: libraries/display_tbl.lib.php:561 libraries/display_tbl.lib.php:574 -#: libraries/messages.inc.php:346 +#: libraries/messages.inc.php:342 msgid "Full Texts" msgstr "Komplette tekster" -#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:739 +#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:735 msgid "Relational key" msgstr "" -#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:738 +#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:734 msgid "Relational display field" msgstr "" -#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:872 +#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:868 msgid "Show binary contents" msgstr "" -#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:873 +#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:869 msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:871 +#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:867 msgid "Show binary contents as HEX" msgstr "" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:375 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:371 #: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320 msgid "Hide" msgstr "Skjul" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:508 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:504 #: libraries/tbl_properties.inc.php:144 transformation_overview.php:47 msgid "Browser transformation" msgstr "Browser transformation" #: libraries/display_tbl.lib.php:1126 libraries/display_tbl.lib.php:1130 -#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:308 +#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:304 msgid "Execute bookmarked query" msgstr "Udfør forespørgsel iflg. bogmærke" #: libraries/display_tbl.lib.php:1145 libraries/display_tbl.lib.php:1157 -#: libraries/messages.inc.php:244 +#: libraries/messages.inc.php:240 msgid "The row has been deleted" msgstr "Rækken er slettet!" #: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056 -#: libraries/messages.inc.php:460 server_processlist.php:71 +#: libraries/messages.inc.php:456 server_processlist.php:71 #: tbl_row_action.php:64 msgid "Kill" msgstr "Dræb (Kill)" -#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:849 +#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:845 msgid "in query" msgstr "i forespørgsel" -#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:881 +#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:877 msgid "Showing rows" msgstr "Viser poster " -#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1113 +#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1109 msgid "total" msgstr "total" -#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:727 +#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:723 #: sql.php:524 #, php-format msgid "Query took %01.4f sec" msgstr "Forepørgsel tog %01.4f sek" -#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:135 +#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:131 #: 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:471 msgid "Change" msgstr "Ændre" -#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:724 +#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:720 msgid "Query results operations" msgstr "Forespørgselsresultat operationer" -#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:671 +#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:667 msgid "Print view (with full texts)" msgstr "Udskrift-visning (med fulde tekster)" -#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:482 +#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:478 msgid "Link not found" msgstr "Link ikke fundet" -#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1224 +#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1220 #: main.php:228 msgid "Version information" msgstr "Versionsinformation" -#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:423 +#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:419 msgid "Data home directory" msgstr "Data hovedmappe" -#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:424 +#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:420 msgid "The common part of the directory path for all InnoDB data files." msgstr "Den fælles del af stien til mappen med alle InnoDB datafiler." -#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:422 +#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:418 msgid "Data files" msgstr "Datafiler" -#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:418 +#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:414 msgid "Autoextend increment" msgstr "Autoextend forøgelse" -#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:419 +#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:415 msgid "" " The increment size for extending the size of an autoextending tablespace " "when it becomes full." @@ -2466,11 +2476,11 @@ msgstr "" " Størrelsen på den udvidelse der vil forekomme, når pladsen i en " "autoudvidende tabel udvides fordi den løber fuld." -#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:420 +#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:416 msgid "Buffer pool size" msgstr "Buffer pool størrelse" -#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:421 +#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:417 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." @@ -2478,87 +2488,87 @@ msgstr "" "Størrelse på memorybufferen InnoDB bruger til at mellemlagre data og indeks " "på dens tabeller." -#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:112 +#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:108 msgid "Buffer Pool" msgstr "Buffer Pool" -#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:426 +#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:422 #: server_status.php:306 msgid "InnoDB Status" msgstr "InnoDB status" -#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:113 +#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:109 msgid "Buffer Pool Usage" msgstr "Buffer Pool Forbrug" -#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1114 +#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1110 #: server_databases.php:137 server_databases.php:305 server_status.php:414 #: server_status.php:475 server_status.php:496 tbl_printview.php:351 #: tbl_structure.php:697 msgid "Total" msgstr "Total" -#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:425 +#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:421 msgid "pages" msgstr "sider" -#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:343 +#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:339 msgid "Free pages" msgstr "Frie sider" -#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:259 +#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:255 msgid "Dirty pages" msgstr "Beskidte sider" -#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:230 +#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:226 msgid "Pages containing data" msgstr "Sider der indeholder data" -#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:598 +#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:594 msgid "Pages to be flushed" msgstr "Sider der står til at blive tømt" -#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:119 +#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:115 msgid "Busy pages" msgstr "Travle sider" -#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:467 +#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:463 msgid "Latched pages" msgstr "Eksklusivt låste (latched) sider" -#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:111 +#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:107 msgid "Buffer Pool Activity" msgstr "Buffer Pool Aktivitet" -#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:731 +#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:727 msgid "Read requests" msgstr "Read-anmodninger" -#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1244 +#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1240 msgid "Write requests" msgstr "Write-anmodninger" -#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:115 +#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:111 msgid "Read misses" msgstr "Read misses" -#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:117 +#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:113 msgid "Write waits" msgstr "Write waits" -#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:114 +#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:110 msgid "Read misses in %" msgstr "Read misses i %" -#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:116 +#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:112 msgid "Write waits in %" msgstr "Write waits i %" -#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:522 +#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:518 msgid "Data pointer size" msgstr "Data pointer størrelse" -#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:523 +#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:519 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." @@ -2566,11 +2576,11 @@ msgstr "" "Standard pointerstørrelse i bytes, til brug ved CREATE TABLE for MyISAM " "tabeller når der ikke er specificeret nogen MAX_ROWS indstilling." -#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:528 +#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:524 msgid "Automatic recovery mode" msgstr "Automatisk genopretnings-modus" -#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:529 +#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:525 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." @@ -2578,11 +2588,11 @@ msgstr "" "Modus for automatisk genetablering af crashede MyISAM tabeller, som sat via " "--myisam-recover server opstartsindstillingen." -#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:527 +#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:523 msgid "Maximum size for temporary sort files" msgstr "Maksimal størrelse for midlertidige sorteringsfiler" -#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:526 +#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:522 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " @@ -2592,11 +2602,11 @@ msgstr "" "genetablering af et MyISAM indeks (under REPAIR TABLE, ALTER TABLE, eller " "LOAD DATA INFILE)." -#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:525 +#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:521 msgid "Maximum size for temporary files on index creation" msgstr "Maksimal størrelse for midlertidige filer ved oprettelse af indeks" -#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:524 +#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:520 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " @@ -2606,11 +2616,11 @@ msgstr "" "ville være større end ved brug af key cache med størrelsen angivet her, " "foretræk key cache-metoden." -#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:531 +#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:527 msgid "Repair threads" msgstr "Reparér tråde" -#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:530 +#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:526 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." @@ -2618,11 +2628,11 @@ msgstr "" "Hvis denne værdi er større end 1, oprettes MyISAM tabel-indeks parallelt " "(hvert indeks i dets egen tråd) under Reparation ved sortering-processen." -#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:533 +#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:529 msgid "Sort buffer size" msgstr "Sorterings-bufferstørrelse" -#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:532 +#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:528 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." @@ -2630,72 +2640,72 @@ msgstr "" "Bufferen der allokeres ved sortering af MyISAM indeks under en REPAIR TABLE " "eller når indeks oprettes med CREATE INDEX eller ALTER TABLE." -#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:620 +#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:616 msgid "Index cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:619 +#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:615 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." msgstr "" -#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:630 +#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:626 msgid "Record cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:629 +#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:625 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " "to the handle data (.xtd) and row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:624 +#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:620 msgid "Log cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:623 +#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:619 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:628 +#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:624 msgid "Log file threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:627 +#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:623 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:634 +#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:630 msgid "Transaction buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:633 +#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:629 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." msgstr "" -#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:611 +#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:607 msgid "Checkpoint frequency" msgstr "" -#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:612 +#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:608 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." msgstr "" -#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:615 +#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:611 msgid "Data log threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:616 +#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:612 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -2703,48 +2713,48 @@ msgid "" "that can be stored in the database." msgstr "" -#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:618 +#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:614 msgid "Garbage threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:617 +#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:613 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." msgstr "" -#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:622 +#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:618 msgid "Log buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:621 +#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:617 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " "required to write a data log." msgstr "" -#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:613 +#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:609 msgid "Data file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:614 +#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:610 msgid "The grow size of the handle data (.xtd) files." msgstr "" -#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:632 +#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:628 msgid "Row file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:631 +#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:627 msgid "The grow size of the row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:626 +#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:622 msgid "Log file count" msgstr "" -#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:625 +#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:621 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -2754,19 +2764,19 @@ msgstr "" #: libraries/export/htmlword.php:132 libraries/export/odt.php:168 #: libraries/export/sql.php:881 libraries/export/texytext.php:130 -#: libraries/messages.inc.php:275 +#: libraries/messages.inc.php:271 msgid "Dumping data for table" msgstr "Data dump for tabellen" #: libraries/export/htmlword.php:185 libraries/export/odt.php:238 #: libraries/export/sql.php:785 libraries/export/texytext.php:177 -#: libraries/messages.inc.php:1086 +#: libraries/messages.inc.php:1082 msgid "Table structure for table" msgstr "Struktur-dump for tabellen" #: libraries/export/latex.php:125 libraries/export/sql.php:232 #: libraries/export/xml.php:102 libraries/header_printview.inc.php:57 -#: libraries/messages.inc.php:381 libraries/replication_gui.lib.php:63 +#: libraries/messages.inc.php:377 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:170 libraries/replication_gui.lib.php:265 #: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325 #: server_privileges.php:692 server_privileges.php:695 @@ -2778,183 +2788,183 @@ msgstr "Vært" #: libraries/export/latex.php:130 libraries/export/sql.php:233 #: libraries/export/xml.php:107 libraries/header_printview.inc.php:59 -#: libraries/messages.inc.php:354 +#: libraries/messages.inc.php:350 msgid "Generation Time" msgstr "Genereringstid" #: libraries/export/latex.php:131 libraries/export/sql.php:235 -#: libraries/export/xml.php:108 libraries/messages.inc.php:864 main.php:186 +#: libraries/export/xml.php:108 libraries/messages.inc.php:860 main.php:186 msgid "Server version" msgstr "Serverversion" #: libraries/export/latex.php:132 libraries/export/sql.php:236 -#: libraries/export/xml.php:109 libraries/messages.inc.php:651 +#: libraries/export/xml.php:109 libraries/messages.inc.php:647 msgid "PHP Version" msgstr "PHP-version" #: libraries/export/latex.php:201 libraries/export/sql.php:868 -#: libraries/messages.inc.php:226 server_databases.php:127 +#: libraries/messages.inc.php:222 server_databases.php:127 #: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317 #: tbl_structure.php:666 msgid "Data" msgstr "Data" -#: libraries/export/odt.php:318 libraries/messages.inc.php:506 +#: libraries/export/odt.php:318 libraries/messages.inc.php:502 #: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "MIME-type" -#: libraries/export/sql.php:387 libraries/messages.inc.php:711 +#: libraries/export/sql.php:387 libraries/messages.inc.php:707 msgid "Procedures" msgstr "Procedurer" -#: libraries/export/sql.php:401 libraries/messages.inc.php:348 +#: libraries/export/sql.php:401 libraries/messages.inc.php:344 msgid "Functions" msgstr "Funktioner" -#: libraries/export/sql.php:618 libraries/messages.inc.php:174 +#: libraries/export/sql.php:618 libraries/messages.inc.php:170 msgid "Constraints for dumped tables" msgstr "Begrænsninger for dumpede tabeller" -#: libraries/export/sql.php:627 libraries/messages.inc.php:175 +#: libraries/export/sql.php:627 libraries/messages.inc.php:171 msgid "Constraints for table" msgstr "Begrænsninger for tabel" -#: libraries/export/sql.php:727 libraries/messages.inc.php:512 +#: libraries/export/sql.php:727 libraries/messages.inc.php:508 msgid "MIME TYPES FOR TABLE" msgstr "MIME TYPES FOR TABLE (MIME-typer for tabellen)" -#: libraries/export/sql.php:739 libraries/messages.inc.php:743 +#: libraries/export/sql.php:739 libraries/messages.inc.php:739 msgid "RELATIONS FOR TABLE" msgstr "RELATIONS FOR TABLE (Relationer for tabellen)" -#: libraries/export/sql.php:796 libraries/messages.inc.php:1178 +#: libraries/export/sql.php:796 libraries/messages.inc.php:1174 #: libraries/tbl_triggers.lib.php:19 msgid "Triggers" msgstr "" -#: libraries/export/sql.php:808 libraries/messages.inc.php:1046 +#: libraries/export/sql.php:808 libraries/messages.inc.php:1042 msgid "Structure for view" msgstr "Struktur for visning" -#: libraries/export/sql.php:817 libraries/messages.inc.php:1029 +#: libraries/export/sql.php:817 libraries/messages.inc.php:1025 msgid "Stand-in structure for view" msgstr "Stand-in-struktur for visning" #: libraries/footer.inc.php:184 libraries/footer.inc.php:195 -#: libraries/footer.inc.php:198 libraries/messages.inc.php:586 +#: libraries/footer.inc.php:198 libraries/messages.inc.php:582 msgid "Open new phpMyAdmin window" msgstr "Åbn nyt phpMyAdmin vindue" -#: libraries/header.inc.php:115 libraries/messages.inc.php:542 +#: libraries/header.inc.php:115 libraries/messages.inc.php:538 msgid "New table" msgstr "" #: libraries/header_printview.inc.php:50 libraries/header_printview.inc.php:55 -#: libraries/messages.inc.php:1024 +#: libraries/messages.inc.php:1020 msgid "SQL result" msgstr "SQL-resultat" -#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:350 +#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:346 msgid "Generated by" msgstr "Genereret af" #: libraries/header_printview.inc.php:63 libraries/import.lib.php:145 -#: libraries/messages.inc.php:820 navigation.php:652 navigation.php:674 +#: libraries/messages.inc.php:816 navigation.php:652 navigation.php:674 #: server_databases.php:122 tbl_printview.php:394 tbl_structure.php:366 #: tbl_structure.php:778 msgid "Rows" msgstr "Rækker" -#: libraries/import.lib.php:150 libraries/messages.inc.php:285 sql.php:520 +#: libraries/import.lib.php:150 libraries/messages.inc.php:281 sql.php:520 #: tbl_change.php:181 tbl_get_field.php:35 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL returnerede ingen data (fx ingen rækker)." -#: libraries/import.lib.php:1078 libraries/messages.inc.php:399 +#: libraries/import.lib.php:1078 libraries/messages.inc.php:395 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1079 libraries/messages.inc.php:400 +#: libraries/import.lib.php:1079 libraries/messages.inc.php:396 msgid "View a structure`s contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1080 libraries/messages.inc.php:401 +#: libraries/import.lib.php:1080 libraries/messages.inc.php:397 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1081 libraries/messages.inc.php:402 +#: libraries/import.lib.php:1081 libraries/messages.inc.php:398 msgid "Edit its structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1084 libraries/messages.inc.php:362 +#: libraries/import.lib.php:1084 libraries/messages.inc.php:358 msgid "Go to database" msgstr "" #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:869 +#: libraries/messages.inc.php:865 msgid "settings" msgstr "" -#: libraries/import.lib.php:1106 libraries/messages.inc.php:363 +#: libraries/import.lib.php:1106 libraries/messages.inc.php:359 msgid "Go to table" msgstr "" -#: libraries/import.lib.php:1109 libraries/messages.inc.php:1047 +#: libraries/import.lib.php:1109 libraries/messages.inc.php:1043 msgid "structure" msgstr "" -#: libraries/import.lib.php:1115 libraries/messages.inc.php:364 +#: libraries/import.lib.php:1115 libraries/messages.inc.php:360 msgid "Go to view" msgstr "" #: libraries/import/csv.php:58 libraries/import/csv.php:70 #: libraries/import/csv.php:74 libraries/import/csv.php:78 -#: libraries/messages.inc.php:442 +#: libraries/messages.inc.php:438 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "Ugyldigt parameter for CSV-import: %s" -#: libraries/import/csv.php:59 libraries/messages.inc.php:323 +#: libraries/import/csv.php:59 libraries/messages.inc.php:319 msgid "Fields terminated by" msgstr "Felter afsluttet med" -#: libraries/import/csv.php:71 libraries/messages.inc.php:320 +#: libraries/import/csv.php:71 libraries/messages.inc.php:316 msgid "Fields enclosed by" msgstr "Felter indrammet med" -#: libraries/import/csv.php:75 libraries/messages.inc.php:321 +#: libraries/import/csv.php:75 libraries/messages.inc.php:317 msgid "Fields escaped by" msgstr "Felter escaped med" -#: libraries/import/csv.php:79 libraries/messages.inc.php:481 +#: libraries/import/csv.php:79 libraries/messages.inc.php:477 msgid "Lines terminated by" msgstr "Linjer afsluttet med" -#: libraries/import/csv.php:119 libraries/messages.inc.php:439 +#: libraries/import/csv.php:119 libraries/messages.inc.php:435 #, php-format msgid "Invalid column (%s) specified!" msgstr "Ugyldig kolonne (%s) angivet!" #: libraries/import/csv.php:177 libraries/import/csv.php:424 -#: libraries/messages.inc.php:441 +#: libraries/messages.inc.php:437 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "Ugyldigt format for CSV-input på linie %d." -#: libraries/import/csv.php:312 libraries/messages.inc.php:440 +#: libraries/import/csv.php:312 libraries/messages.inc.php:436 #, php-format msgid "Invalid field count in CSV input on line %d." msgstr "Ugyldigt feltantal i CSV-input på linie %d." -#: libraries/import/ldi.php:55 libraries/messages.inc.php:446 +#: libraries/import/ldi.php:55 libraries/messages.inc.php:442 msgid "This plugin does not support compressed imports!" msgstr "Denne plugin understøtter ikke komprimeret import!" #: libraries/import/xml.php:74 libraries/import/xml.php:130 -#: libraries/messages.inc.php:1247 +#: libraries/messages.inc.php:1243 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -2983,323 +2993,313 @@ msgstr "" msgid "ltr" msgstr "ltr" -#. l10n: Thousands separator -#: libraries/messages.inc.php:21 -msgid "," -msgstr "." - -#. l10n: Decimal separator -#: libraries/messages.inc.php:23 -msgid "." -msgstr "," - -#: libraries/messages.inc.php:25 server_status.php:461 +#: libraries/messages.inc.php:21 server_status.php:461 msgid "Aborted" msgstr "Afbrudt" -#: libraries/messages.inc.php:28 main.php:68 +#: libraries/messages.inc.php:24 main.php:68 msgid "Actions" msgstr "" -#: libraries/messages.inc.php:34 libraries/tbl_properties.inc.php:780 +#: libraries/messages.inc.php:30 libraries/tbl_properties.inc.php:780 #: tbl_structure.php:543 #, php-format msgid "Add %s field(s)" msgstr "Tilføj %s felt(er)" -#: libraries/messages.inc.php:35 +#: libraries/messages.inc.php:31 msgid "Add custom comment into header (\\n splits lines)" msgstr "Tilføj tilpassede kommentarer i headeren (\\n deler linjer)" -#: libraries/messages.inc.php:36 +#: libraries/messages.inc.php:32 msgid "Add into comments" msgstr "Tilføj til kommentarer" -#: libraries/messages.inc.php:37 tbl_structure.php:541 +#: libraries/messages.inc.php:33 tbl_structure.php:541 msgid "Add new field" msgstr "Tilføj nyt felt" -#: libraries/messages.inc.php:38 server_privileges.php:1886 +#: libraries/messages.inc.php:34 server_privileges.php:1886 msgid "Add privileges on the following database" msgstr "Tilføj privilegier på følgende database" -#: libraries/messages.inc.php:39 server_privileges.php:1907 +#: libraries/messages.inc.php:35 server_privileges.php:1907 msgid "Add privileges on the following table" msgstr "Tilføj privileges på følgende tabel" -#: libraries/messages.inc.php:40 tbl_select.php:288 +#: libraries/messages.inc.php:36 tbl_select.php:288 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Tilføj søgekriterier (kroppen af \"WHERE\" sætningen):" -#: libraries/messages.inc.php:41 tbl_indexes.php:251 +#: libraries/messages.inc.php:37 tbl_indexes.php:251 #, php-format msgid "Add to index  %s column(s)" msgstr "Føj til indeks  %s kolonne(r)" -#: libraries/messages.inc.php:42 server_privileges.php:1570 +#: libraries/messages.inc.php:38 server_privileges.php:1570 #: server_privileges.php:1594 server_privileges.php:1988 #: server_privileges.php:2177 msgid "Add a new User" msgstr "Tilføj en ny bruger" -#: libraries/messages.inc.php:43 server_privileges.php:931 +#: libraries/messages.inc.php:39 server_privileges.php:931 msgid "You have added a new user." msgstr "Du har tilføjet en ny bruger." -#: libraries/messages.inc.php:44 server_privileges.php:571 +#: libraries/messages.inc.php:40 server_privileges.php:571 msgid "Administration" msgstr "Administration" -#: libraries/messages.inc.php:45 tbl_structure.php:557 +#: libraries/messages.inc.php:41 tbl_structure.php:557 #, php-format msgid "After %s" msgstr "Efter %s" -#: libraries/messages.inc.php:46 tbl_change.php:1147 +#: libraries/messages.inc.php:42 tbl_change.php:1147 msgid "Go back to previous page" msgstr "Tilbage til foregående side" -#: libraries/messages.inc.php:47 tbl_change.php:1148 +#: libraries/messages.inc.php:43 tbl_change.php:1148 msgid "Insert another new row" msgstr "Indsæt endnu en ny række" -#: libraries/messages.inc.php:48 tbl_change.php:1160 +#: libraries/messages.inc.php:44 tbl_change.php:1160 msgid "Edit next row" msgstr "Redigér næste række" -#: libraries/messages.inc.php:49 tbl_change.php:1152 +#: libraries/messages.inc.php:45 tbl_change.php:1152 msgid "Go back to this page" msgstr "Gå tilbage til denne side" -#: libraries/messages.inc.php:50 querywindow.php:115 +#: libraries/messages.inc.php:46 querywindow.php:115 msgid "All" msgstr "Alle" -#: libraries/messages.inc.php:53 tbl_operations.php:249 +#: libraries/messages.inc.php:49 tbl_operations.php:249 msgid "Alter table order by" msgstr "Arrangér tabelrækkefølge efter" -#: libraries/messages.inc.php:54 tbl_operations.php:660 +#: libraries/messages.inc.php:50 tbl_operations.php:660 msgid "Analyze" msgstr "" -#: libraries/messages.inc.php:57 +#: libraries/messages.inc.php:53 msgid "and" msgstr "" -#: libraries/messages.inc.php:59 pmd_general.php:87 +#: libraries/messages.inc.php:55 pmd_general.php:87 msgid "Angular links" msgstr "Angulære links" -#: libraries/messages.inc.php:60 tbl_structure.php:401 tbl_structure.php:415 +#: libraries/messages.inc.php:56 tbl_structure.php:401 tbl_structure.php:415 #: tbl_structure.php:429 #, php-format msgid "An index has been added on %s" msgstr "Der er tilføjet et indeks til %s" -#: libraries/messages.inc.php:61 server_privileges.php:1521 +#: libraries/messages.inc.php:57 server_privileges.php:1521 #: server_privileges.php:2123 msgid "Any" msgstr "Enhver" -#: libraries/messages.inc.php:62 libraries/replication_gui.lib.php:298 +#: libraries/messages.inc.php:58 libraries/replication_gui.lib.php:298 #: server_privileges.php:725 msgid "Any host" msgstr "Enhver vært" -#: libraries/messages.inc.php:63 libraries/replication_gui.lib.php:250 +#: libraries/messages.inc.php:59 libraries/replication_gui.lib.php:250 #: server_privileges.php:677 msgid "Any user" msgstr "Enhver bruger" -#: libraries/messages.inc.php:64 server_synchronize.php:449 +#: libraries/messages.inc.php:60 server_synchronize.php:449 #: server_synchronize.php:894 msgid "Apply Selected Changes" msgstr "" -#: libraries/messages.inc.php:66 tbl_structure.php:386 +#: libraries/messages.inc.php:62 tbl_structure.php:386 #, php-format msgid "A primary key has been added on %s" msgstr "En primær nøgle er blevet tilføjet til %s" -#: libraries/messages.inc.php:67 libraries/mysql_charsets.lib.php:368 +#: libraries/messages.inc.php:63 libraries/mysql_charsets.lib.php:368 msgid "Arabic" msgstr "Arabisk" -#: libraries/messages.inc.php:68 libraries/mysql_charsets.lib.php:359 +#: libraries/messages.inc.php:64 libraries/mysql_charsets.lib.php:359 msgid "Armenian" msgstr "Armensk" -#: libraries/messages.inc.php:70 libraries/tbl_properties.inc.php:394 +#: libraries/messages.inc.php:66 libraries/tbl_properties.inc.php:394 msgid "As defined:" msgstr "" -#: libraries/messages.inc.php:71 tbl_structure.php:556 +#: libraries/messages.inc.php:67 tbl_structure.php:556 msgid "At Beginning of Table" msgstr "I begyndelsen af tabel" -#: libraries/messages.inc.php:72 tbl_structure.php:555 +#: libraries/messages.inc.php:68 tbl_structure.php:555 msgid "At End of Table" msgstr "I slutningen af tabel" -#: libraries/messages.inc.php:73 libraries/tbl_properties.inc.php:108 +#: libraries/messages.inc.php:69 libraries/tbl_properties.inc.php:108 #: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:144 #: tbl_structure.php:180 msgid "Attributes" msgstr "Attributter" -#: libraries/messages.inc.php:74 pdf_pages.php:303 pdf_pages.php:306 +#: libraries/messages.inc.php:70 pdf_pages.php:303 pdf_pages.php:306 msgid "Automatic layout" msgstr "Automatisk layout" -#: libraries/messages.inc.php:77 libraries/mysql_charsets.lib.php:354 +#: libraries/messages.inc.php:73 libraries/mysql_charsets.lib.php:354 msgid "Baltic" msgstr "Baltisk" -#: libraries/messages.inc.php:78 libraries/sqlparser.lib.php:175 +#: libraries/messages.inc.php:74 libraries/sqlparser.lib.php:175 msgid "BEGIN CUT" msgstr "BEGYND KLIP" -#: libraries/messages.inc.php:79 libraries/sqlparser.lib.php:179 +#: libraries/messages.inc.php:75 libraries/sqlparser.lib.php:179 msgid "BEGIN RAW" msgstr "BEGYND RÅ" -#: libraries/messages.inc.php:80 libraries/mysql_charsets.lib.php:201 +#: libraries/messages.inc.php:76 libraries/mysql_charsets.lib.php:201 #: libraries/mysql_charsets.lib.php:402 tbl_change.php:518 msgid "Binary" msgstr " Binært " -#: libraries/messages.inc.php:81 tbl_change.php:894 +#: libraries/messages.inc.php:77 tbl_change.php:894 msgid "Binary - do not edit" msgstr " Binært - må ikke ændres " -#: libraries/messages.inc.php:82 libraries/server_links.inc.php:76 +#: libraries/messages.inc.php:78 libraries/server_links.inc.php:76 #: server_binlog.php:110 server_status.php:253 test/theme.php:121 msgid "Binary log" msgstr "Binær log" -#: libraries/messages.inc.php:83 server_binlog.php:217 +#: libraries/messages.inc.php:79 server_binlog.php:217 msgid "Event type" msgstr "Hændelsestype" -#: libraries/messages.inc.php:84 server_binlog.php:220 +#: libraries/messages.inc.php:80 server_binlog.php:220 msgid "Information" msgstr "Information" -#: libraries/messages.inc.php:85 server_binlog.php:215 +#: libraries/messages.inc.php:81 server_binlog.php:215 msgid "Log name" msgstr "Lognavn" -#: libraries/messages.inc.php:86 server_binlog.php:219 +#: libraries/messages.inc.php:82 server_binlog.php:219 msgid "Original position" msgstr "Original position" -#: libraries/messages.inc.php:87 server_binlog.php:216 +#: libraries/messages.inc.php:83 server_binlog.php:216 msgid "Position" msgstr "Position" -#: libraries/messages.inc.php:88 libraries/replication_gui.lib.php:169 +#: libraries/messages.inc.php:84 libraries/replication_gui.lib.php:169 #: server_binlog.php:218 msgid "Server ID" msgstr "Server ID" -#: libraries/messages.inc.php:92 +#: libraries/messages.inc.php:88 msgctxt "$strBLOBRepositoryDisabled" msgid "Disabled" msgstr "" -#: libraries/messages.inc.php:95 +#: libraries/messages.inc.php:91 msgctxt "$strBLOBRepositoryEnabled" msgid "Enabled" msgstr "" -#: libraries/messages.inc.php:97 tbl_change.php:888 +#: libraries/messages.inc.php:93 tbl_change.php:888 msgid "Remove BLOB Repository Reference" msgstr "" -#: libraries/messages.inc.php:98 +#: libraries/messages.inc.php:94 msgctxt "$strBLOBRepositoryRepair" msgid "Repair" msgstr "" -#: libraries/messages.inc.php:99 tbl_change.php:987 +#: libraries/messages.inc.php:95 tbl_change.php:987 msgid "Upload to BLOB repository" msgstr "" -#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:359 +#: libraries/messages.inc.php:96 libraries/sql_query_form.lib.php:359 #: sql.php:677 msgid "Let every user access this bookmark" msgstr "Lad alle brugere bruge dette bogmærke" -#: libraries/messages.inc.php:103 sql.php:671 +#: libraries/messages.inc.php:99 sql.php:671 msgid "Label" msgstr "Mærke" -#: libraries/messages.inc.php:104 libraries/sql_query_form.lib.php:433 +#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:433 msgid "Bookmarked SQL query" msgstr "SQL-forespørgsel med bogmærke" -#: libraries/messages.inc.php:105 libraries/sql_query_form.lib.php:365 +#: libraries/messages.inc.php:101 libraries/sql_query_form.lib.php:365 msgid "Replace existing bookmark of same name" msgstr "Erstat eksisterende bogmærke af samme navn" -#: libraries/messages.inc.php:106 libraries/sql_query_form.lib.php:352 +#: libraries/messages.inc.php:102 libraries/sql_query_form.lib.php:352 #: sql.php:665 sql.php:666 sql.php:683 msgid "Bookmark this SQL query" msgstr "Lav bogmærke til denne SQL-forespørgsel" -#: libraries/messages.inc.php:107 libraries/sql_query_form.lib.php:466 +#: libraries/messages.inc.php:103 libraries/sql_query_form.lib.php:466 msgid "View only" msgstr "Kun oversigt" -#: libraries/messages.inc.php:109 tbl_structure.php:161 +#: libraries/messages.inc.php:105 tbl_structure.php:161 msgid "Browse distinct values" msgstr "Gennemse bestemte værdier" -#: libraries/messages.inc.php:110 tbl_change.php:252 tbl_select.php:27 +#: libraries/messages.inc.php:106 tbl_change.php:252 tbl_select.php:27 #: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34 msgid "Browse foreign values" msgstr "Bladre i fremmedværdier" -#: libraries/messages.inc.php:118 libraries/mysql_charsets.lib.php:213 +#: libraries/messages.inc.php:114 libraries/mysql_charsets.lib.php:213 msgid "Bulgarian" msgstr "Bulgarsk" -#: libraries/messages.inc.php:120 +#: libraries/messages.inc.php:116 msgid "\"bzipped\"" msgstr "\"bzipped\"" -#: libraries/messages.inc.php:122 +#: libraries/messages.inc.php:118 msgid "Calendar" msgstr "Kalender" -#: libraries/messages.inc.php:129 tbl_indexes.php:75 +#: libraries/messages.inc.php:125 tbl_indexes.php:75 msgid "Can't rename index to PRIMARY!" msgstr "Kan ikke omdøbe indeks til PRIMARY!" -#: libraries/messages.inc.php:132 libraries/mysql_charsets.lib.php:223 +#: libraries/messages.inc.php:128 libraries/mysql_charsets.lib.php:223 #: libraries/mysql_charsets.lib.php:409 msgid "case-insensitive" msgstr "ingen forskel på store/små bogstaver" -#: libraries/messages.inc.php:133 libraries/mysql_charsets.lib.php:226 +#: libraries/messages.inc.php:129 libraries/mysql_charsets.lib.php:226 #: libraries/mysql_charsets.lib.php:411 msgid "case-sensitive" msgstr "forskel på store/små bogstaver" -#: libraries/messages.inc.php:134 libraries/mysql_charsets.lib.php:332 +#: libraries/messages.inc.php:130 libraries/mysql_charsets.lib.php:332 msgid "Central European" msgstr "Centraleuropæisk" -#: libraries/messages.inc.php:136 server_privileges.php:1969 +#: libraries/messages.inc.php:132 server_privileges.php:1969 msgid "... keep the old one." msgstr "... behold den gamle." -#: libraries/messages.inc.php:137 server_privileges.php:1967 +#: libraries/messages.inc.php:133 server_privileges.php:1967 msgid "Create a new user with the same privileges and ..." msgstr "Opret en bruger med samme privilegier og ..." -#: libraries/messages.inc.php:138 server_privileges.php:1972 +#: libraries/messages.inc.php:134 server_privileges.php:1972 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -3307,246 +3307,246 @@ msgstr "" " ... slet den gamle fra brugertabellerne og genindlæs privilegierne " "efterfølgende." -#: libraries/messages.inc.php:139 server_privileges.php:1970 +#: libraries/messages.inc.php:135 server_privileges.php:1970 msgid " ... delete the old one from the user tables." msgstr " ... slet den gamle fra brugertabellerne." -#: libraries/messages.inc.php:140 server_privileges.php:1971 +#: libraries/messages.inc.php:136 server_privileges.php:1971 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "" " ... tilbagekald alle aktive privilegier fra den gamle og slet den " "efterfølgende." -#: libraries/messages.inc.php:141 server_privileges.php:1964 +#: libraries/messages.inc.php:137 server_privileges.php:1964 msgid "Change Login Information / Copy User" msgstr "Ret Login-information / Kopiér bruger" -#: libraries/messages.inc.php:144 libraries/mysql_charsets.lib.php:107 +#: libraries/messages.inc.php:140 libraries/mysql_charsets.lib.php:107 msgid "Charset" msgstr "Tegnsæt" -#: libraries/messages.inc.php:146 server_collations.php:40 +#: libraries/messages.inc.php:142 server_collations.php:40 msgid "Character Sets and Collations" msgstr "Tegnsæt og kollationer (Collations)" -#: libraries/messages.inc.php:147 libraries/server_links.inc.php:57 +#: libraries/messages.inc.php:143 libraries/server_links.inc.php:57 #: test/theme.php:109 msgid "Charsets" msgstr "Tegnsæt" -#: libraries/messages.inc.php:149 tbl_operations.php:661 +#: libraries/messages.inc.php:145 tbl_operations.php:661 msgid "Check" msgstr "" -#: libraries/messages.inc.php:151 server_databases.php:293 +#: libraries/messages.inc.php:147 server_databases.php:293 #: server_databases.php:294 msgid "Check Privileges" msgstr "Check Privilegier" -#: libraries/messages.inc.php:152 server_databases.php:289 +#: libraries/messages.inc.php:148 server_databases.php:289 #, php-format msgid "Check privileges for database "%s"." msgstr "Check privilegier for database "%s"." -#: libraries/messages.inc.php:154 pdf_pages.php:261 +#: libraries/messages.inc.php:150 pdf_pages.php:261 msgid "Please choose a page to edit" msgstr "Vælg en side der skal redigeres" -#: libraries/messages.inc.php:157 +#: libraries/messages.inc.php:153 msgid "Displaying Column Comments" msgstr "Viser kolonne-kommentarer" -#: libraries/messages.inc.php:159 pdf_pages.php:483 view_create.php:148 +#: libraries/messages.inc.php:155 pdf_pages.php:483 view_create.php:148 msgid "Column names" msgstr "Kolonnenavne" -#: libraries/messages.inc.php:160 server_privileges.php:1685 +#: libraries/messages.inc.php:156 server_privileges.php:1685 msgid "Column-specific privileges" msgstr "Kolonne-specifikke privilegier" -#: libraries/messages.inc.php:164 +#: libraries/messages.inc.php:160 msgid "MySQL 4.0 compatible" msgstr "MySQL 4.0 kompatibel" -#: libraries/messages.inc.php:165 +#: libraries/messages.inc.php:161 msgid "Complete inserts" msgstr "Komplette inserts" -#: libraries/messages.inc.php:168 +#: libraries/messages.inc.php:164 #, php-format msgid "Could not load default configuration from: \"%1$s\"" msgstr "Kunne ikke indlæse standardkonfiguration fra: \"%1$s\"" -#: libraries/messages.inc.php:169 main.php:306 +#: libraries/messages.inc.php:165 main.php:306 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: libraries/messages.inc.php:171 pdf_schema.php:672 +#: libraries/messages.inc.php:167 pdf_schema.php:672 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Konfigurér venligst koordinaterne for tabel %s" -#: libraries/messages.inc.php:173 server_status.php:433 +#: libraries/messages.inc.php:169 server_status.php:433 msgid "Connections" msgstr "Forbindelser" -#: libraries/messages.inc.php:179 tbl_operations.php:509 +#: libraries/messages.inc.php:175 tbl_operations.php:509 msgid "Copy table to (database.table):" msgstr "Kopier tabel til (database.tabel):" -#: libraries/messages.inc.php:180 tbl_move_copy.php:58 +#: libraries/messages.inc.php:176 tbl_move_copy.php:58 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabellen %s er nu kopieret til: %s." -#: libraries/messages.inc.php:181 tbl_move_copy.php:48 +#: libraries/messages.inc.php:177 tbl_move_copy.php:48 msgid "Can't copy table to same one!" msgstr "Kan ikke kopiere tabellen til den samme!" -#: libraries/messages.inc.php:182 server_synchronize.php:94 +#: libraries/messages.inc.php:178 server_synchronize.php:94 msgid "Could not connect to the source" msgstr "" -#: libraries/messages.inc.php:183 server_synchronize.php:97 +#: libraries/messages.inc.php:179 server_synchronize.php:97 msgid "Could not connect to the target" msgstr "" -#: libraries/messages.inc.php:184 server_processlist.php:24 +#: libraries/messages.inc.php:180 server_processlist.php:24 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" "phpMyAdmin kunne ikke dræbe tråden %s. Den er sandsynligvis allerede lukket." -#: libraries/messages.inc.php:187 +#: libraries/messages.inc.php:183 #, php-format msgid "Create an index on %s columns" msgstr "Dan et indeks på %s kolonner" -#: libraries/messages.inc.php:188 tbl_indexes.php:160 +#: libraries/messages.inc.php:184 tbl_indexes.php:160 msgid "Create a new index" msgstr "Lav et nyt indeks" -#: libraries/messages.inc.php:191 pdf_pages.php:297 pmd_pdf.php:114 +#: libraries/messages.inc.php:187 pdf_pages.php:297 pmd_pdf.php:114 msgid "Create a page" msgstr "Opret en ny side" -#: libraries/messages.inc.php:192 +#: libraries/messages.inc.php:188 msgid "Creation of PDFs" msgstr "Oprettelse af PDFer" -#: libraries/messages.inc.php:193 pmd_general.php:74 pmd_general.php:306 +#: libraries/messages.inc.php:189 pmd_general.php:74 pmd_general.php:306 msgid "Create relation" msgstr "Opret relation" -#: libraries/messages.inc.php:194 pmd_general.php:71 +#: libraries/messages.inc.php:190 pmd_general.php:71 #: server_synchronize.php:429 server_synchronize.php:872 msgid "Create table" msgstr "Opret tabel" -#: libraries/messages.inc.php:195 +#: libraries/messages.inc.php:191 msgctxt "$strCreateTableShort" msgid "Create table" msgstr "" -#: libraries/messages.inc.php:196 server_privileges.php:1994 +#: libraries/messages.inc.php:192 server_privileges.php:1994 msgid "Database for user" msgstr "Database for bruger" -#: libraries/messages.inc.php:197 server_privileges.php:1999 +#: libraries/messages.inc.php:193 server_privileges.php:1999 msgid "Create database with same name and grant all privileges" msgstr "Opret database med samme navn og tildel alle privilegier" -#: libraries/messages.inc.php:198 +#: libraries/messages.inc.php:194 msgctxt "$strCreateUserDatabaseNone" msgid "None" msgstr "" -#: libraries/messages.inc.php:199 server_privileges.php:2003 +#: libraries/messages.inc.php:195 server_privileges.php:2003 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: libraries/messages.inc.php:200 server_privileges.php:2000 +#: libraries/messages.inc.php:196 server_privileges.php:2000 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Tildel alle privilegier til jokertegn-navn (brugernavn_%)" -#: libraries/messages.inc.php:201 +#: libraries/messages.inc.php:197 msgid "Creation/Update/Check dates" msgstr "Oprettet/Opdateret/Check datoer" -#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:229 +#: libraries/messages.inc.php:199 libraries/mysql_charsets.lib.php:229 msgid "Croatian" msgstr "Kroatisk" -#: libraries/messages.inc.php:204 +#: libraries/messages.inc.php:200 msgid "CSV" msgstr "CSV (kommasepareret)" -#: libraries/messages.inc.php:205 libraries/server_synchronize.lib.php:1343 +#: libraries/messages.inc.php:201 libraries/server_synchronize.lib.php:1343 #: libraries/server_synchronize.lib.php:1369 msgid "Current server" msgstr "" -#: libraries/messages.inc.php:206 main.php:159 +#: libraries/messages.inc.php:202 main.php:159 msgid "Custom color" msgstr "" -#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:365 +#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:365 msgid "Cyrillic" msgstr "Kyrillisk" -#: libraries/messages.inc.php:208 libraries/mysql_charsets.lib.php:232 +#: libraries/messages.inc.php:204 libraries/mysql_charsets.lib.php:232 msgid "Czech" msgstr "Tjekkisk" -#: libraries/messages.inc.php:209 libraries/mysql_charsets.lib.php:383 +#: libraries/messages.inc.php:205 libraries/mysql_charsets.lib.php:383 msgid "Czech-Slovak" msgstr "Tjekkisk-Slovakisk" -#: libraries/messages.inc.php:211 libraries/mysql_charsets.lib.php:235 +#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:235 msgid "Danish" msgstr "Dansk" -#: libraries/messages.inc.php:214 +#: libraries/messages.inc.php:210 msgid "Database export options" msgstr "Database eksportindstillinger" -#: libraries/messages.inc.php:217 server_synchronize.php:122 +#: libraries/messages.inc.php:213 server_synchronize.php:122 #: server_synchronize.php:125 tbl_create.php:82 tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "" -#: libraries/messages.inc.php:219 server_databases.php:63 +#: libraries/messages.inc.php:215 server_databases.php:63 #, php-format msgid "%s databases have been dropped successfully." msgstr "%s databaser er blevet droppet korrekt." -#: libraries/messages.inc.php:220 libraries/server_synchronize.lib.php:1341 +#: libraries/messages.inc.php:216 libraries/server_synchronize.lib.php:1341 #: server_synchronize.php:1110 msgid "Source database" msgstr "" -#: libraries/messages.inc.php:221 server_databases.php:88 +#: libraries/messages.inc.php:217 server_databases.php:88 msgid "Databases statistics" msgstr "Databasestatistik" -#: libraries/messages.inc.php:222 server_databases.php:362 +#: libraries/messages.inc.php:218 server_databases.php:362 #: server_databases.php:363 msgid "Disable Statistics" msgstr "Slå Statistikker fra" -#: libraries/messages.inc.php:223 server_databases.php:358 +#: libraries/messages.inc.php:219 server_databases.php:358 #: server_databases.php:359 msgid "Enable Statistics" msgstr "Slå Statistikker til" -#: libraries/messages.inc.php:224 server_databases.php:366 +#: libraries/messages.inc.php:220 server_databases.php:366 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -3554,30 +3554,30 @@ msgstr "" "Bemærk: Aktivering af databasestatistikkerne hér kan forårsage tung trafik " "mellem webserveren og MySQL-serveren." -#: libraries/messages.inc.php:225 libraries/server_synchronize.lib.php:1367 +#: libraries/messages.inc.php:221 libraries/server_synchronize.lib.php:1367 #: server_synchronize.php:1112 msgid "Target database" msgstr "" -#: libraries/messages.inc.php:228 server_synchronize.php:425 +#: libraries/messages.inc.php:224 server_synchronize.php:425 #: server_synchronize.php:868 msgid "Data Difference" msgstr "" -#: libraries/messages.inc.php:231 server_synchronize.php:272 +#: libraries/messages.inc.php:227 server_synchronize.php:272 msgid "Data Synchronization" msgstr "" -#: libraries/messages.inc.php:235 server_privileges.php:526 +#: libraries/messages.inc.php:231 server_privileges.php:526 #: server_privileges.php:1679 msgid "Database-specific privileges" msgstr "Database-specifikke privilegier" -#: libraries/messages.inc.php:237 server_privileges.php:2136 +#: libraries/messages.inc.php:233 server_privileges.php:2136 msgid "database-specific" msgstr "database-specifik" -#: libraries/messages.inc.php:240 libraries/tbl_properties.inc.php:106 +#: libraries/messages.inc.php:236 libraries/tbl_properties.inc.php:106 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" @@ -3585,32 +3585,32 @@ msgstr "" "For standardværdier, indtast venligst kun en enkelt værdi, uden backslash " "escaping eller quotes, ud fra følgende format: a" -#: libraries/messages.inc.php:241 tbl_operations.php:589 +#: libraries/messages.inc.php:237 tbl_operations.php:589 msgid "Defragment table" msgstr "Defragmentér tabel" -#: libraries/messages.inc.php:242 +#: libraries/messages.inc.php:238 msgid "Use delayed inserts" msgstr "Brug forsinkede indsættelser" -#: libraries/messages.inc.php:245 server_privileges.php:1243 +#: libraries/messages.inc.php:241 server_privileges.php:1243 msgid "No users selected for deleting!" msgstr "Ingen brugere valgt til sletning!" -#: libraries/messages.inc.php:246 pmd_general.php:372 +#: libraries/messages.inc.php:242 pmd_general.php:372 msgid "Delete relation" msgstr "Slet relation" -#: libraries/messages.inc.php:248 server_privileges.php:1232 +#: libraries/messages.inc.php:244 server_privileges.php:1232 #, php-format msgid "Deleting %s" msgstr "Sletter %s" -#: libraries/messages.inc.php:249 libraries/sql_query_form.lib.php:388 +#: libraries/messages.inc.php:245 libraries/sql_query_form.lib.php:388 msgid "Delimiter" msgstr "Adskiller" -#: libraries/messages.inc.php:250 pdf_pages.php:506 +#: libraries/messages.inc.php:246 pdf_pages.php:506 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -3618,7 +3618,7 @@ msgstr "" "Nuværende side har referencer til tabeller der ikke længere eksisterer. Vil " "du slette disse referencer?" -#: libraries/messages.inc.php:254 pmd_help.php:29 +#: libraries/messages.inc.php:250 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 " @@ -3628,142 +3628,142 @@ msgstr "" "visningsfelt, klik på \"Vælg felt der skal vises\" ikonet, og klik derefter " "på det pågældende feltnavn." -#: libraries/messages.inc.php:256 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:252 libraries/mysql_charsets.lib.php:247 msgid "dictionary" msgstr "ordbog" -#: libraries/messages.inc.php:257 libraries/server_synchronize.lib.php:1348 +#: libraries/messages.inc.php:253 libraries/server_synchronize.lib.php:1348 msgid "Difference" msgstr "" -#: libraries/messages.inc.php:258 pmd_general.php:87 +#: libraries/messages.inc.php:254 pmd_general.php:87 msgid "Direct links" msgstr "Direkte links" -#: libraries/messages.inc.php:261 +#: libraries/messages.inc.php:257 msgid "Disable foreign key checks" msgstr "Slå fremmednøgle-checks fra" -#: libraries/messages.inc.php:262 +#: libraries/messages.inc.php:258 msgid "Display Features" msgstr "Vis muligheder" -#: libraries/messages.inc.php:263 tbl_select.php:301 +#: libraries/messages.inc.php:259 tbl_select.php:301 msgid "Display order:" msgstr "Rækkefølge af visning:" -#: libraries/messages.inc.php:265 tbl_select.php:132 +#: libraries/messages.inc.php:261 tbl_select.php:132 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Kør en forespørgsel på felter (jokertegn: \"%\")" -#: libraries/messages.inc.php:266 +#: libraries/messages.inc.php:262 msgid "DocSQL" msgstr "DocSQL" -#: libraries/messages.inc.php:268 +#: libraries/messages.inc.php:264 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/messages.inc.php:273 server_privileges.php:1579 +#: libraries/messages.inc.php:269 server_privileges.php:1579 #: server_privileges.php:1580 server_privileges.php:1581 msgid "Drop the databases that have the same names as the users." msgstr "Drop databaser der har samme navne som brugernes." -#: libraries/messages.inc.php:278 tbl_printview.php:382 tbl_structure.php:743 +#: libraries/messages.inc.php:274 tbl_printview.php:382 tbl_structure.php:743 msgid "dynamic" msgstr "dynamisk" -#: libraries/messages.inc.php:282 server_privileges.php:1324 +#: libraries/messages.inc.php:278 server_privileges.php:1324 #: server_privileges.php:1610 msgid "Edit Privileges" msgstr "Ret privilegier" -#: libraries/messages.inc.php:283 tbl_printview.php:341 tbl_structure.php:688 +#: libraries/messages.inc.php:279 tbl_printview.php:341 tbl_structure.php:688 msgid "Effective" msgstr "Effektiv" -#: libraries/messages.inc.php:286 libraries/relation.lib.php:100 +#: libraries/messages.inc.php:282 libraries/relation.lib.php:100 msgid "Enabled" msgstr "Slået til" -#: libraries/messages.inc.php:287 +#: libraries/messages.inc.php:283 msgid "Enclose export in a transaction" msgstr "Inkludér eksport i en transaktion" -#: libraries/messages.inc.php:288 libraries/sqlparser.lib.php:177 +#: libraries/messages.inc.php:284 libraries/sqlparser.lib.php:177 msgid "END CUT" msgstr "SLUT KLIP" -#: libraries/messages.inc.php:290 libraries/sqlparser.lib.php:183 +#: libraries/messages.inc.php:286 libraries/sqlparser.lib.php:183 msgid "END RAW" msgstr "SLUT RÅ" -#: libraries/messages.inc.php:293 libraries/server_links.inc.php:61 +#: libraries/messages.inc.php:289 libraries/server_links.inc.php:61 #: test/theme.php:113 msgid "Engines" msgstr "Lagre" -#: libraries/messages.inc.php:295 libraries/mysql_charsets.lib.php:238 +#: libraries/messages.inc.php:291 libraries/mysql_charsets.lib.php:238 msgid "English" msgstr "Engelsk" -#: libraries/messages.inc.php:296 server_privileges.php:393 +#: libraries/messages.inc.php:292 server_privileges.php:393 #: server_privileges.php:535 server_privileges.php:1501 msgid " Note: MySQL privilege names are expressed in English " msgstr " NB: Navne på MySQL privilegier er på engelsk " -#: libraries/messages.inc.php:298 libraries/zip_extension.lib.php:49 +#: libraries/messages.inc.php:294 libraries/zip_extension.lib.php:49 #: libraries/zip_extension.lib.php:51 libraries/zip_extension.lib.php:66 msgid "Error in ZIP archive:" msgstr "Fejl i ZIP arkiv:" -#: libraries/messages.inc.php:303 libraries/mysql_charsets.lib.php:241 +#: libraries/messages.inc.php:299 libraries/mysql_charsets.lib.php:241 msgid "Esperanto" msgstr "Esperanto" -#: libraries/messages.inc.php:304 libraries/mysql_charsets.lib.php:244 +#: libraries/messages.inc.php:300 libraries/mysql_charsets.lib.php:244 msgid "Estonian" msgstr "Estisk" -#: libraries/messages.inc.php:305 libraries/tbl_triggers.lib.php:29 +#: libraries/messages.inc.php:301 libraries/tbl_triggers.lib.php:29 msgid "Event" msgstr "" -#: libraries/messages.inc.php:307 +#: libraries/messages.inc.php:303 msgid "Excel edition" msgstr "Excel-udgave" -#: libraries/messages.inc.php:311 pmd_pdf.php:85 +#: libraries/messages.inc.php:307 pmd_pdf.php:85 msgid "Export/Import to scale" msgstr "Eksporter/Importer til skala" -#: libraries/messages.inc.php:313 +#: libraries/messages.inc.php:309 msgid "Extended inserts" msgstr "Udvidede inserts" -#: libraries/messages.inc.php:314 pdf_schema.php:1267 pdf_schema.php:1288 +#: libraries/messages.inc.php:310 pdf_schema.php:1267 pdf_schema.php:1288 #: tbl_printview.php:147 tbl_structure.php:183 tbl_tracking.php:278 msgid "Extra" msgstr "Ekstra" -#: libraries/messages.inc.php:316 server_status.php:447 +#: libraries/messages.inc.php:312 server_status.php:447 msgid "Failed attempts" msgstr "Mislykkede forsøg" -#: libraries/messages.inc.php:318 tbl_structure.php:375 +#: libraries/messages.inc.php:314 tbl_structure.php:375 #, php-format msgid "Field %s has been dropped" msgstr "Felt %s er slettet" -#: libraries/messages.inc.php:322 libraries/sql_query_form.lib.php:317 +#: libraries/messages.inc.php:318 libraries/sql_query_form.lib.php:317 msgid "Fields" msgstr "Felter" -#: libraries/messages.inc.php:332 server_binlog.php:136 +#: libraries/messages.inc.php:328 server_binlog.php:136 msgid "Files" msgstr "Filer" -#: libraries/messages.inc.php:334 server_privileges.php:1597 +#: libraries/messages.inc.php:330 server_privileges.php:1597 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -3777,217 +3777,217 @@ msgstr "" "ændringer i den. Hvis dette er tilfældet, bør du %sgenindlæse privilegierne%" "s før du fortsætter." -#: libraries/messages.inc.php:335 server_status.php:289 +#: libraries/messages.inc.php:331 server_status.php:289 msgid "Flush query cache" msgstr "Flush forespørgsel-mellemlager (query cache)" -#: libraries/messages.inc.php:336 +#: libraries/messages.inc.php:332 msgid "Flush the table (\"FLUSH\")" msgstr "Flush tabellen (\"FLUSH\")" -#: libraries/messages.inc.php:337 server_status.php:271 +#: libraries/messages.inc.php:333 server_status.php:271 msgid "Flush (close) all tables" msgstr "Flush (luk) alle tabeller" -#: libraries/messages.inc.php:339 tbl_relation.php:279 +#: libraries/messages.inc.php:335 tbl_relation.php:279 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" -#: libraries/messages.inc.php:341 setup/lib/messages.inc.php:88 +#: libraries/messages.inc.php:337 setup/lib/messages.inc.php:88 #: tbl_printview.php:376 tbl_structure.php:738 msgid "Format" msgstr "Format" -#: libraries/messages.inc.php:344 server_replication.php:325 +#: libraries/messages.inc.php:340 server_replication.php:325 msgid "Full start" msgstr "" -#: libraries/messages.inc.php:345 server_replication.php:325 +#: libraries/messages.inc.php:341 server_replication.php:325 msgid "Full stop" msgstr "" -#: libraries/messages.inc.php:347 tbl_change.php:282 tbl_change.php:320 +#: libraries/messages.inc.php:343 tbl_change.php:282 tbl_change.php:320 msgid "Function" msgstr "Funktion" -#: libraries/messages.inc.php:355 libraries/mysql_charsets.lib.php:377 +#: libraries/messages.inc.php:351 libraries/mysql_charsets.lib.php:377 msgid "Georgian" msgstr "Georgisk" -#: libraries/messages.inc.php:356 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:352 libraries/mysql_charsets.lib.php:247 #: libraries/mysql_charsets.lib.php:250 msgid "German" msgstr "Tysk" -#: libraries/messages.inc.php:357 themes.php:42 +#: libraries/messages.inc.php:353 themes.php:42 msgid "Get more themes!" msgstr "" -#: libraries/messages.inc.php:358 server_privileges.php:2134 +#: libraries/messages.inc.php:354 server_privileges.php:2134 msgid "global" msgstr "global" -#: libraries/messages.inc.php:359 server_privileges.php:524 +#: libraries/messages.inc.php:355 server_privileges.php:524 #: server_privileges.php:1500 msgid "Global privileges" msgstr "Globale privilegier" -#: libraries/messages.inc.php:360 server_variables.php:55 +#: libraries/messages.inc.php:356 server_variables.php:55 #: server_variables.php:89 msgid "Global value" msgstr "Global værdi" -#: libraries/messages.inc.php:365 server_privileges.php:1502 +#: libraries/messages.inc.php:361 server_privileges.php:1502 #: server_privileges.php:1684 server_privileges.php:2033 msgid "Grant" msgstr "Tildel" -#: libraries/messages.inc.php:366 libraries/mysql_charsets.lib.php:380 +#: libraries/messages.inc.php:362 libraries/mysql_charsets.lib.php:380 msgid "Greek" msgstr "Græsk" -#: libraries/messages.inc.php:367 +#: libraries/messages.inc.php:363 msgid "\"gzipped\"" msgstr "\"gzipped\"" -#: libraries/messages.inc.php:369 server_status.php:250 +#: libraries/messages.inc.php:365 server_status.php:250 msgid "Handler" msgstr "Handler" -#: libraries/messages.inc.php:370 server_synchronize.php:464 +#: libraries/messages.inc.php:366 server_synchronize.php:464 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: libraries/messages.inc.php:372 libraries/mysql_charsets.lib.php:374 +#: libraries/messages.inc.php:368 libraries/mysql_charsets.lib.php:374 msgid "Hebrew" msgstr "Hebræisk" -#: libraries/messages.inc.php:373 pmd_general.php:83 +#: libraries/messages.inc.php:369 pmd_general.php:83 msgid "Help" msgstr "Hjælp" -#: libraries/messages.inc.php:374 +#: libraries/messages.inc.php:370 msgid "Use hexadecimal for BLOB" msgstr "Brug heksadecimal for BLOB" -#: libraries/messages.inc.php:376 pmd_general.php:120 +#: libraries/messages.inc.php:372 pmd_general.php:120 msgid "Hide/Show all" msgstr "Skjul/Vis alle" -#: libraries/messages.inc.php:377 pmd_general.php:124 +#: libraries/messages.inc.php:373 pmd_general.php:124 msgid "Hide/Show Tables with no relation" msgstr "Skjul/Vis tabeller uden relation" -#: libraries/messages.inc.php:378 libraries/navigation_header.inc.php:54 +#: libraries/messages.inc.php:374 libraries/navigation_header.inc.php:54 #: libraries/navigation_header.inc.php:57 #: libraries/navigation_header.inc.php:58 msgid "Home" msgstr "Hjem" -#: libraries/messages.inc.php:379 main.php:233 +#: libraries/messages.inc.php:375 main.php:233 msgid "Official Homepage" msgstr "Officiel phpMyAdmin hjemmeside " -#: libraries/messages.inc.php:382 libraries/replication_gui.lib.php:327 +#: libraries/messages.inc.php:378 libraries/replication_gui.lib.php:327 #: server_privileges.php:753 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/messages.inc.php:383 +#: libraries/messages.inc.php:379 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/messages.inc.php:384 libraries/mysql_charsets.lib.php:253 +#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:253 msgid "Hungarian" msgstr "Ungarsk" -#: libraries/messages.inc.php:386 libraries/mysql_charsets.lib.php:256 +#: libraries/messages.inc.php:382 libraries/mysql_charsets.lib.php:256 msgid "Icelandic" msgstr "Islandsk" -#: libraries/messages.inc.php:387 server_processlist.php:53 +#: libraries/messages.inc.php:383 server_processlist.php:53 msgid "ID" msgstr "ID" -#: libraries/messages.inc.php:388 libraries/mult_submits.inc.php:108 +#: libraries/messages.inc.php:384 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:479 msgid "Fulltext" msgstr "Fuldtekst" -#: libraries/messages.inc.php:389 +#: libraries/messages.inc.php:385 msgid "Ignore duplicate rows" msgstr "Ignorér gentagne rækker" -#: libraries/messages.inc.php:390 tbl_change.php:302 tbl_indexes.php:200 +#: libraries/messages.inc.php:386 tbl_change.php:302 tbl_indexes.php:200 #: tbl_indexes.php:225 msgid "Ignore" msgstr "Ignorer" -#: libraries/messages.inc.php:391 +#: libraries/messages.inc.php:387 msgid "Use ignore inserts" msgstr "Brug ignorér inserts" -#: libraries/messages.inc.php:392 +#: libraries/messages.inc.php:388 msgid "Column names in first row" msgstr "" -#: libraries/messages.inc.php:393 +#: libraries/messages.inc.php:389 msgid "Do not import empty rows" msgstr "" -#: libraries/messages.inc.php:394 pmd_general.php:104 +#: libraries/messages.inc.php:390 pmd_general.php:104 msgid "Import/Export coordinates for PDF schema" msgstr "Importer/Eksporter koordinater for PDF-opstilling" -#: libraries/messages.inc.php:395 querywindow.php:104 +#: libraries/messages.inc.php:391 querywindow.php:104 msgid "Import files" msgstr "Importér filer" -#: libraries/messages.inc.php:403 +#: libraries/messages.inc.php:399 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/messages.inc.php:404 libraries/messages.inc.php:584 +#: libraries/messages.inc.php:400 libraries/messages.inc.php:580 msgid "Open Document Spreadsheet" msgstr "Open Document regneark" -#: libraries/messages.inc.php:405 +#: libraries/messages.inc.php:401 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/messages.inc.php:409 +#: libraries/messages.inc.php:405 msgid "Excel 97-2003 XLS Workbook" msgstr "" -#: libraries/messages.inc.php:410 +#: libraries/messages.inc.php:406 msgid "Excel 2007 XLSX Workbook" msgstr "" -#: libraries/messages.inc.php:414 libraries/mult_submits.inc.php:98 +#: libraries/messages.inc.php:410 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:476 tbl_structure.php:674 msgid "Index" msgstr "Indeks" -#: libraries/messages.inc.php:415 tbl_indexes.php:168 +#: libraries/messages.inc.php:411 tbl_indexes.php:168 msgid "Index name:" msgstr "Indeksnavn :" -#: libraries/messages.inc.php:416 tbl_indexes.php:174 +#: libraries/messages.inc.php:412 tbl_indexes.php:174 msgid "Index type:" msgstr "Indekstype :" -#: libraries/messages.inc.php:417 sql.php:639 +#: libraries/messages.inc.php:413 sql.php:639 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemer med indeksene på tabel `%s`" -#: libraries/messages.inc.php:427 main.php:266 +#: libraries/messages.inc.php:423 main.php:266 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -3999,163 +3999,163 @@ msgstr "" "kører med denne standardindstilling, er åben for indtrængen, og du " "opfordres stærkt til at gøre noget ved dette sikkerhedshul." -#: libraries/messages.inc.php:428 tbl_change.php:1130 +#: libraries/messages.inc.php:424 tbl_change.php:1130 msgid "Insert as new row" msgstr "Indsæt som ny række" -#: libraries/messages.inc.php:429 sql.php:496 tbl_replace.php:386 +#: libraries/messages.inc.php:425 sql.php:496 tbl_replace.php:386 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: libraries/messages.inc.php:430 tbl_change.php:1131 +#: libraries/messages.inc.php:426 tbl_change.php:1131 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/messages.inc.php:432 main.php:139 +#: libraries/messages.inc.php:428 main.php:139 msgid "Interface" msgstr "" -#: libraries/messages.inc.php:433 tbl_relation.php:407 +#: libraries/messages.inc.php:429 tbl_relation.php:407 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: libraries/messages.inc.php:435 pdf_pages.php:303 +#: libraries/messages.inc.php:431 pdf_pages.php:303 msgid "Internal relations" msgstr "Interne relationer" -#: libraries/messages.inc.php:438 tbl_indexes.php:256 tbl_structure.php:590 +#: libraries/messages.inc.php:434 tbl_indexes.php:256 tbl_structure.php:590 #: tbl_structure.php:601 msgid "Column count has to be larger than zero." msgstr "Kolonneantal skal være større end nul." -#: libraries/messages.inc.php:444 libraries/tbl_properties.inc.php:784 +#: libraries/messages.inc.php:440 libraries/tbl_properties.inc.php:784 #: tbl_structure.php:537 msgid "You have to add at least one field." msgstr "Du skal tilføje mindst ét felt." -#: libraries/messages.inc.php:449 +#: libraries/messages.inc.php:445 #, php-format msgid "Invalid server index: \"%s\"" msgstr "Ugyldigt server indeks: \"%s\"" -#: libraries/messages.inc.php:452 libraries/mysql_charsets.lib.php:259 +#: libraries/messages.inc.php:448 libraries/mysql_charsets.lib.php:259 #: libraries/mysql_charsets.lib.php:349 msgid "Japanese" msgstr "Japansk" -#: libraries/messages.inc.php:453 main.php:331 +#: libraries/messages.inc.php:449 main.php:331 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: libraries/messages.inc.php:454 server_status.php:257 +#: libraries/messages.inc.php:450 server_status.php:257 msgid "Joins" msgstr "Joins" -#: libraries/messages.inc.php:457 server_privileges.php:763 +#: libraries/messages.inc.php:453 server_privileges.php:763 msgid "Do not change the password" msgstr "Kodeord må ikke ændres" -#: libraries/messages.inc.php:458 server_status.php:256 +#: libraries/messages.inc.php:454 server_status.php:256 msgid "Key cache" msgstr "Nøglemellemlager (key cache)" -#: libraries/messages.inc.php:462 libraries/mysql_charsets.lib.php:268 +#: libraries/messages.inc.php:458 libraries/mysql_charsets.lib.php:268 #: libraries/mysql_charsets.lib.php:371 msgid "Korean" msgstr "Koreansk" -#: libraries/messages.inc.php:466 libraries/select_lang.lib.php:480 +#: libraries/messages.inc.php:462 libraries/select_lang.lib.php:480 #: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492 #, php-format msgid "Unknown language: %1$s." msgstr "Ukendt sprog: %1$s." -#: libraries/messages.inc.php:468 +#: libraries/messages.inc.php:464 msgid "Table caption" msgstr "Tabeloverskrift" -#: libraries/messages.inc.php:469 +#: libraries/messages.inc.php:465 msgid "Content of table __TABLE__" msgstr "Indhold af tabel __TABLE__" -#: libraries/messages.inc.php:470 +#: libraries/messages.inc.php:466 msgid "Continued table caption" msgstr "Fortsat tabeloverskrift" -#: libraries/messages.inc.php:471 +#: libraries/messages.inc.php:467 msgid "(continued)" msgstr "(fortsættes)" -#: libraries/messages.inc.php:472 +#: libraries/messages.inc.php:468 msgid "Include table caption" msgstr "Inkluder tabeloverskrift" -#: libraries/messages.inc.php:473 +#: libraries/messages.inc.php:469 msgid "Label key" msgstr "Mærke nøgle" -#: libraries/messages.inc.php:474 +#: libraries/messages.inc.php:470 msgid "LaTeX" msgstr "LaTeX" -#: libraries/messages.inc.php:475 +#: libraries/messages.inc.php:471 msgid "Structure of table __TABLE__" msgstr "Struktur for tabel __TABLE__" -#: libraries/messages.inc.php:476 libraries/mysql_charsets.lib.php:262 +#: libraries/messages.inc.php:472 libraries/mysql_charsets.lib.php:262 msgid "Latvian" msgstr "Lettisk" -#: libraries/messages.inc.php:477 +#: libraries/messages.inc.php:473 msgid "CSV using LOAD DATA" msgstr "CSV vha. LOAD DATA" -#: libraries/messages.inc.php:478 +#: libraries/messages.inc.php:474 msgid "Use LOCAL keyword" msgstr "Brug LOCAL nøgleord" -#: libraries/messages.inc.php:479 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:475 libraries/tbl_properties.inc.php:105 msgid "Length/Values" msgstr "Længde/Værdi*" -#: libraries/messages.inc.php:480 tbl_select.php:295 +#: libraries/messages.inc.php:476 tbl_select.php:295 msgid "Number of rows per page" msgstr "poster pr. side" -#: libraries/messages.inc.php:484 libraries/mysql_charsets.lib.php:265 +#: libraries/messages.inc.php:480 libraries/mysql_charsets.lib.php:265 msgid "Lithuanian" msgstr "Litauisk" -#: libraries/messages.inc.php:485 libraries/replication_gui.lib.php:302 +#: libraries/messages.inc.php:481 libraries/replication_gui.lib.php:302 #: server_privileges.php:729 msgid "Local" msgstr "Lokal" -#: libraries/messages.inc.php:487 server_privileges.php:669 +#: libraries/messages.inc.php:483 server_privileges.php:669 msgid "Login Information" msgstr "Login-information" -#: libraries/messages.inc.php:490 libraries/navigation_header.inc.php:67 +#: libraries/messages.inc.php:486 libraries/navigation_header.inc.php:67 #: libraries/navigation_header.inc.php:70 #: libraries/navigation_header.inc.php:71 main.php:99 msgid "Log out" msgstr "Log af" -#: libraries/messages.inc.php:497 server_status.php:440 +#: libraries/messages.inc.php:493 server_status.php:440 msgid "max. concurrent connections" msgstr "maks. samtidige forbindelser" -#: libraries/messages.inc.php:498 +#: libraries/messages.inc.php:494 msgid "Maximal length of created query" msgstr "Maksimal længde på oprettet forespørgsel" -#: libraries/messages.inc.php:500 main.php:282 +#: libraries/messages.inc.php:496 main.php:282 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -4165,7 +4165,7 @@ msgstr "" "multibyte tegnsæt. Uden mbstring-udvidelsen er phpMyAdmin ude af stand til " "at opdele strenge korrekt og dette kan forårsage uventede resultater" -#: libraries/messages.inc.php:501 main.php:274 +#: libraries/messages.inc.php:497 main.php:274 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -4175,24 +4175,24 @@ msgstr "" "indstilling er ikke kompatibel med phpMyAdmin og kan forårsage ødelæggelse " "af nogle data!" -#: libraries/messages.inc.php:502 +#: libraries/messages.inc.php:498 msgid "MediaWiki Table" msgstr "" -#: libraries/messages.inc.php:503 transformation_overview.php:25 +#: libraries/messages.inc.php:499 transformation_overview.php:25 msgid "Available MIME types" msgstr "Tilgængelige MIME-typer" -#: libraries/messages.inc.php:504 transformation_overview.php:43 +#: libraries/messages.inc.php:500 transformation_overview.php:43 msgid "Available transformations" msgstr "Tilgængelige transformationer" -#: libraries/messages.inc.php:505 +#: libraries/messages.inc.php:501 msgctxt "$strMIME_description" msgid "Description" msgstr "Beskrivelse" -#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:580 +#: libraries/messages.inc.php:503 libraries/tbl_properties.inc.php:580 #: transformation_overview.php:60 #, php-format msgid "" @@ -4202,7 +4202,7 @@ msgstr "" "Der er ingen beskrivelse af denne transformation.
Spørg venligst " "forfatteren, hvad %s gør." -#: libraries/messages.inc.php:509 libraries/tbl_properties.inc.php:137 +#: libraries/messages.inc.php:505 libraries/tbl_properties.inc.php:137 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -4211,7 +4211,7 @@ msgstr "" "For en liste over mulige transformationsindstillinger og deres MIME-type " "transformationer, klik på %stransformationsbeskrivelser%s" -#: libraries/messages.inc.php:510 libraries/tbl_properties.inc.php:146 +#: libraries/messages.inc.php:506 libraries/tbl_properties.inc.php:146 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -4223,57 +4223,57 @@ msgstr "" "\") eller en apostrof (\"'\") i værdierne, backslash det (for eksempel '\\" "\\xyz' eller 'a\\'b')." -#: libraries/messages.inc.php:511 libraries/tbl_properties.inc.php:145 +#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:145 msgid "Transformation options" msgstr "Transformationsindstillinger" -#: libraries/messages.inc.php:513 transformation_overview.php:38 +#: libraries/messages.inc.php:509 transformation_overview.php:38 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "" "MIME-typer skrevet med kursiv har ikke en separat transformationsfunktion" -#: libraries/messages.inc.php:515 tbl_indexes.php:162 +#: libraries/messages.inc.php:511 tbl_indexes.php:162 msgid "Modify an index" msgstr "Ændring af et indeks" -#: libraries/messages.inc.php:517 pmd_general.php:108 +#: libraries/messages.inc.php:513 pmd_general.php:108 msgid "Move Menu" msgstr "Flyt Menu" -#: libraries/messages.inc.php:518 tbl_operations.php:276 +#: libraries/messages.inc.php:514 tbl_operations.php:276 msgid "Move table to (database.table):" msgstr "Flyt tabel til (database.tabel):" -#: libraries/messages.inc.php:519 tbl_move_copy.php:56 +#: libraries/messages.inc.php:515 tbl_move_copy.php:56 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabel %s er flyttet til %s." -#: libraries/messages.inc.php:520 tbl_move_copy.php:46 +#: libraries/messages.inc.php:516 tbl_move_copy.php:46 msgid "Can't move table to same one!" msgstr "Kan ikke flytte tabellen til den samme!" -#: libraries/messages.inc.php:521 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:517 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 #: libraries/mysql_charsets.lib.php:332 libraries/mysql_charsets.lib.php:354 #: libraries/mysql_charsets.lib.php:365 msgid "multilingual" msgstr "flersproget" -#: libraries/messages.inc.php:534 main.php:193 +#: libraries/messages.inc.php:530 main.php:193 msgid "MySQL charset" msgstr "MySQL Tegnsæt" -#: libraries/messages.inc.php:535 main.php:211 +#: libraries/messages.inc.php:531 main.php:211 msgid "MySQL client version" msgstr "MySQL klientversion" -#: libraries/messages.inc.php:536 main.php:125 +#: libraries/messages.inc.php:532 main.php:125 msgid "MySQL connection collation" msgstr "MySQL forbindelses-sammenkøring" -#: libraries/messages.inc.php:537 main.php:346 +#: libraries/messages.inc.php:533 main.php:346 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -4282,54 +4282,54 @@ msgstr "" "Din PHP MySQL-biblioteks version %s afviger fra din MySQL server version %s. " "Dette kan forårsage uforudsigelige resultater." -#: libraries/messages.inc.php:539 server_status.php:294 +#: libraries/messages.inc.php:535 server_status.php:294 msgid "Show processes" msgstr "Vis tråde" -#: libraries/messages.inc.php:545 navigation.php:210 server_databases.php:371 +#: libraries/messages.inc.php:541 navigation.php:210 server_databases.php:371 #: server_synchronize.php:1191 msgid "No databases" msgstr "Ingen databaser" -#: libraries/messages.inc.php:546 server_databases.php:52 +#: libraries/messages.inc.php:542 server_databases.php:52 msgid "No databases selected." msgstr "Ingen databaser valgt." -#: libraries/messages.inc.php:548 libraries/relation.lib.php:1173 +#: libraries/messages.inc.php:544 libraries/relation.lib.php:1173 msgid "no description" msgstr "ingen beskrivelse" -#: libraries/messages.inc.php:552 libraries/zip_extension.lib.php:26 +#: libraries/messages.inc.php:548 libraries/zip_extension.lib.php:26 msgid "No files found inside ZIP archive!" msgstr "Ingen filer fundet i ZIP arkivet!" -#: libraries/messages.inc.php:555 tbl_indexes.php:91 +#: libraries/messages.inc.php:551 tbl_indexes.php:91 msgid "No index parts defined!" msgstr "Ingen dele af indeks er defineret!" -#: libraries/messages.inc.php:556 libraries/mult_submits.inc.php:435 +#: libraries/messages.inc.php:552 libraries/mult_submits.inc.php:435 #: tbl_replace.php:331 msgid "No change" msgstr "Ingen ændring" -#: libraries/messages.inc.php:557 +#: libraries/messages.inc.php:553 msgctxt "$strNoneDefault" msgid "None" msgstr "" -#: libraries/messages.inc.php:560 libraries/plugin_interface.lib.php:312 +#: libraries/messages.inc.php:556 libraries/plugin_interface.lib.php:312 msgid "This format has no options" msgstr "Dette format har ingen indstillinger" -#: libraries/messages.inc.php:565 user_password.php:54 +#: libraries/messages.inc.php:561 user_password.php:54 msgid "You don't have sufficient privileges to be here right now!" msgstr "Du har ikke tilstrækkelige rettigheder til at være her!" -#: libraries/messages.inc.php:566 tbl_row_action.php:29 +#: libraries/messages.inc.php:562 tbl_row_action.php:29 msgid "No rows selected" msgstr "Ingen rækker valgt" -#: libraries/messages.inc.php:569 themes.php:32 +#: libraries/messages.inc.php:565 themes.php:32 #, php-format msgid "" "No themes support; please check your configuration and/or your themes in " @@ -4338,292 +4338,292 @@ msgstr "" "Ingen tema/layout-understøttelse, tjek venligst din konfiguration og/eller " "dine temaer i mappen %s." -#: libraries/messages.inc.php:571 libraries/relation.lib.php:95 +#: libraries/messages.inc.php:567 libraries/relation.lib.php:95 msgid "not OK" msgstr "ikke OK" -#: libraries/messages.inc.php:572 server_synchronize.php:400 +#: libraries/messages.inc.php:568 server_synchronize.php:400 #: server_synchronize.php:839 msgid "not present" msgstr "" -#: libraries/messages.inc.php:573 pdf_pages.php:36 pdf_pages.php:42 +#: libraries/messages.inc.php:569 pdf_pages.php:36 pdf_pages.php:42 #: pdf_pages.php:48 pdf_pages.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "Tabel %s findes ikke eller er ikke sat i %s" -#: libraries/messages.inc.php:574 server_privileges.php:804 +#: libraries/messages.inc.php:570 server_privileges.php:804 #: server_privileges.php:2166 msgid "No user(s) found." msgstr "Ingen bruger(e) fundet." -#: libraries/messages.inc.php:578 pmd_general.php:164 +#: libraries/messages.inc.php:574 pmd_general.php:164 msgid "Number of tables" msgstr "Antal tabeller" -#: libraries/messages.inc.php:581 server_databases.php:117 +#: libraries/messages.inc.php:577 server_databases.php:117 #: server_status.php:260 setup/lib/messages.inc.php:117 msgid "Tables" msgstr "Tabeller" -#: libraries/messages.inc.php:583 libraries/relation.lib.php:99 +#: libraries/messages.inc.php:579 libraries/relation.lib.php:99 #: pmd_general.php:340 msgid "OK" msgstr "OK" -#: libraries/messages.inc.php:585 +#: libraries/messages.inc.php:581 msgid "Open Document Text" msgstr "Open Document tekst" -#: libraries/messages.inc.php:588 tbl_select.php:138 +#: libraries/messages.inc.php:584 tbl_select.php:138 msgid "Operator" msgstr "Operatør" -#: libraries/messages.inc.php:589 tbl_operations.php:662 +#: libraries/messages.inc.php:585 tbl_operations.php:662 msgid "Optimize" msgstr "" -#: libraries/messages.inc.php:602 libraries/tbl_properties.inc.php:755 +#: libraries/messages.inc.php:598 libraries/tbl_properties.inc.php:755 msgid "PARTITION definition" msgstr "" -#: libraries/messages.inc.php:603 tbl_structure.php:757 +#: libraries/messages.inc.php:599 tbl_structure.php:757 msgid "partitioned" msgstr "" -#: libraries/messages.inc.php:604 tbl_operations.php:649 +#: libraries/messages.inc.php:600 tbl_operations.php:649 msgid "Partition maintenance" msgstr "" -#: libraries/messages.inc.php:605 tbl_operations.php:657 +#: libraries/messages.inc.php:601 tbl_operations.php:657 #, php-format msgid "Partition %s" msgstr "" -#: libraries/messages.inc.php:606 server_privileges.php:1212 +#: libraries/messages.inc.php:602 server_privileges.php:1212 #, php-format msgid "The password for %s was changed successfully." msgstr "Kodeordet for %s blev korrekt udskiftet." -#: libraries/messages.inc.php:635 +#: libraries/messages.inc.php:631 #, php-format msgid "Schema of the \"%s\" database - Page %s" msgstr "Skematik for databasen \"%s\" - Side %s" -#: libraries/messages.inc.php:636 +#: libraries/messages.inc.php:632 #, php-format msgid "The \"%s\" table doesn't exist!" msgstr "Tabellen \"%s\" findes ikke!" -#: libraries/messages.inc.php:637 pdf_schema.php:1013 +#: libraries/messages.inc.php:633 pdf_schema.php:1013 msgid "No tables" msgstr "Ingen tabeller" -#: libraries/messages.inc.php:638 pmd_pdf.php:63 +#: libraries/messages.inc.php:634 pmd_pdf.php:63 msgid "Page has been created" msgstr "" -#: libraries/messages.inc.php:639 pmd_pdf.php:65 +#: libraries/messages.inc.php:635 pmd_pdf.php:65 msgid "Page creation failed" msgstr "" -#: libraries/messages.inc.php:640 +#: libraries/messages.inc.php:636 msgid "PDF" msgstr "PDF" -#: libraries/messages.inc.php:641 +#: libraries/messages.inc.php:637 msgid "(Generates a report containing the data of a single table)" msgstr "(Genererer en rapport indeholdende dataene fra en enkelt tabel)" -#: libraries/messages.inc.php:642 +#: libraries/messages.inc.php:638 msgid "Report title" msgstr "Rapporttitel" -#: libraries/messages.inc.php:643 server_status.php:389 server_status.php:434 +#: libraries/messages.inc.php:639 server_status.php:389 server_status.php:434 #: server_status.php:497 server_status.php:555 msgid "per hour" msgstr "pr. time" -#: libraries/messages.inc.php:644 server_status.php:498 +#: libraries/messages.inc.php:640 server_status.php:498 msgid "per minute" msgstr "pr. minut" -#: libraries/messages.inc.php:645 server_status.php:499 +#: libraries/messages.inc.php:641 server_status.php:499 msgid "per second" msgstr "pr. sekund" -#: libraries/messages.inc.php:646 libraries/mysql_charsets.lib.php:271 +#: libraries/messages.inc.php:642 libraries/mysql_charsets.lib.php:271 msgid "Persian" msgstr "Persisk" -#: libraries/messages.inc.php:647 libraries/mysql_charsets.lib.php:250 +#: libraries/messages.inc.php:643 libraries/mysql_charsets.lib.php:250 msgid "phone book" msgstr "telefonbog" -#: libraries/messages.inc.php:648 +#: libraries/messages.inc.php:644 msgid "PHP array" msgstr "" -#: libraries/messages.inc.php:650 main.php:213 +#: libraries/messages.inc.php:646 main.php:213 msgid "PHP extension" msgstr "" -#: libraries/messages.inc.php:654 libraries/relation.lib.php:163 +#: libraries/messages.inc.php:650 libraries/relation.lib.php:163 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/messages.inc.php:655 libraries/relation.lib.php:159 +#: libraries/messages.inc.php:651 libraries/relation.lib.php:159 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/messages.inc.php:656 libraries/relation.lib.php:161 +#: libraries/messages.inc.php:652 libraries/relation.lib.php:161 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" -#: libraries/messages.inc.php:657 libraries/relation.lib.php:162 +#: libraries/messages.inc.php:653 libraries/relation.lib.php:162 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/messages.inc.php:658 libraries/relation.lib.php:164 +#: libraries/messages.inc.php:654 libraries/relation.lib.php:164 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/messages.inc.php:661 libraries/mysql_charsets.lib.php:274 +#: libraries/messages.inc.php:657 libraries/mysql_charsets.lib.php:274 msgid "Polish" msgstr "Polsk" -#: libraries/messages.inc.php:662 libraries/replication_gui.lib.php:67 +#: libraries/messages.inc.php:658 libraries/replication_gui.lib.php:67 #: server_synchronize.php:1163 msgid "Port" msgstr "" -#: libraries/messages.inc.php:667 tbl_indexes.php:67 +#: libraries/messages.inc.php:663 tbl_indexes.php:67 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Navnet på primærnøglen skal være... PRIMARY!" -#: libraries/messages.inc.php:668 tbl_indexes.php:184 +#: libraries/messages.inc.php:664 tbl_indexes.php:184 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" "(\"PRIMARY\" skal være navnet på og kun på en primær nøgle!)" -#: libraries/messages.inc.php:669 libraries/mult_submits.inc.php:76 +#: libraries/messages.inc.php:665 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:474 msgid "Primary" msgstr "Primær" -#: libraries/messages.inc.php:673 server_privileges.php:227 +#: libraries/messages.inc.php:669 server_privileges.php:227 msgid "Includes all privileges except GRANT." msgstr "Inkluderer alle privilegier pånær GRANT." -#: libraries/messages.inc.php:674 server_privileges.php:153 +#: libraries/messages.inc.php:670 server_privileges.php:153 #: server_privileges.php:476 msgid "Allows altering the structure of existing tables." msgstr "Tillader ændring af strukturen på eksisterende tabeller." -#: libraries/messages.inc.php:675 server_privileges.php:169 +#: libraries/messages.inc.php:671 server_privileges.php:169 #: server_privileges.php:482 msgid "Allows altering and dropping stored routines." msgstr "Tillader ændring og sletning af gemte rutiner." -#: libraries/messages.inc.php:676 server_privileges.php:145 +#: libraries/messages.inc.php:672 server_privileges.php:145 #: server_privileges.php:475 msgid "Allows creating new databases and tables." msgstr "Tillader oprettelse af nye databaser og tabeller." -#: libraries/messages.inc.php:677 server_privileges.php:168 +#: libraries/messages.inc.php:673 server_privileges.php:168 #: server_privileges.php:481 msgid "Allows creating stored routines." msgstr "Tillader oprettelse af gemte rutiner." -#: libraries/messages.inc.php:678 server_privileges.php:475 +#: libraries/messages.inc.php:674 server_privileges.php:475 msgid "Allows creating new tables." msgstr "Tillader oprettelse af nye tabeller." -#: libraries/messages.inc.php:679 server_privileges.php:156 +#: libraries/messages.inc.php:675 server_privileges.php:156 #: server_privileges.php:479 msgid "Allows creating temporary tables." msgstr "Tillader oprettelse af midlertidige tabeller." -#: libraries/messages.inc.php:680 server_privileges.php:170 +#: libraries/messages.inc.php:676 server_privileges.php:170 #: server_privileges.php:515 msgid "Allows creating, dropping and renaming user accounts." msgstr "Tillader oprettelse, sletning og omdøbning af brugerkonti." -#: libraries/messages.inc.php:681 server_privileges.php:160 +#: libraries/messages.inc.php:677 server_privileges.php:160 #: server_privileges.php:164 server_privileges.php:487 #: server_privileges.php:491 msgid "Allows creating new views." msgstr "Tillader oprettelse af nye Allows creating new views." -#: libraries/messages.inc.php:682 server_privileges.php:144 +#: libraries/messages.inc.php:678 server_privileges.php:144 #: server_privileges.php:467 msgid "Allows deleting data." msgstr "Tillader sletning af data." -#: libraries/messages.inc.php:683 server_privileges.php:146 +#: libraries/messages.inc.php:679 server_privileges.php:146 #: server_privileges.php:478 msgid "Allows dropping databases and tables." msgstr "Tillader at droppe databaser og tabeller." -#: libraries/messages.inc.php:684 server_privileges.php:478 +#: libraries/messages.inc.php:680 server_privileges.php:478 msgid "Allows dropping tables." msgstr "Tillader at droppe tabeller." -#: libraries/messages.inc.php:685 server_privileges.php:161 +#: libraries/messages.inc.php:681 server_privileges.php:161 #: server_privileges.php:495 msgid "Allows to set up events for the event scheduler" msgstr "" -#: libraries/messages.inc.php:686 server_privileges.php:171 +#: libraries/messages.inc.php:682 server_privileges.php:171 #: server_privileges.php:483 msgid "Allows executing stored routines." msgstr "Tillader udførelse af gemte rutiner." -#: libraries/messages.inc.php:687 server_privileges.php:150 +#: libraries/messages.inc.php:683 server_privileges.php:150 #: server_privileges.php:470 msgid "Allows importing data from and exporting data into files." msgstr "Tillader import af data fra og eksport af data til filer." -#: libraries/messages.inc.php:688 server_privileges.php:501 +#: libraries/messages.inc.php:684 server_privileges.php:501 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Tillader oprettelse af brugere og privilegier uden at genindlæse privilegie-" "tabellerne." -#: libraries/messages.inc.php:689 server_privileges.php:152 +#: libraries/messages.inc.php:685 server_privileges.php:152 #: server_privileges.php:477 msgid "Allows creating and dropping indexes." msgstr "Tillader at skabe og droppe indeks." -#: libraries/messages.inc.php:690 server_privileges.php:142 +#: libraries/messages.inc.php:686 server_privileges.php:142 #: server_privileges.php:403 server_privileges.php:465 msgid "Allows inserting and replacing data." msgstr "Tillader indsættelse og erstatning af data." -#: libraries/messages.inc.php:691 server_privileges.php:157 +#: libraries/messages.inc.php:687 server_privileges.php:157 #: server_privileges.php:510 msgid "Allows locking tables for the current thread." msgstr "Tillader låsning af tabeller for nuværende tråd." -#: libraries/messages.inc.php:692 server_privileges.php:607 +#: libraries/messages.inc.php:688 server_privileges.php:607 #: server_privileges.php:609 msgid "Limits the number of new connections the user may open per hour." msgstr "Begrænser antallet af nye forbindelser brugeren må åbne pr. time." -#: libraries/messages.inc.php:693 server_privileges.php:595 +#: libraries/messages.inc.php:689 server_privileges.php:595 #: server_privileges.php:597 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Begrænser antallet af forespørgsler brugeren må sende til serveren pr. time." -#: libraries/messages.inc.php:694 server_privileges.php:601 +#: libraries/messages.inc.php:690 server_privileges.php:601 #: server_privileges.php:603 msgid "" "Limits the number of commands that change any table or database the user may " @@ -4632,57 +4632,57 @@ msgstr "" "Begrænser antallet af kommandoer som ændrer enhver tabel eller database " "brugeren må udføre pr. time." -#: libraries/messages.inc.php:695 server_privileges.php:613 +#: libraries/messages.inc.php:691 server_privileges.php:613 #: server_privileges.php:615 msgid "Limits the number of simultaneous connections the user may have." msgstr "Begrænser antallet af samtidige forbindelser brugere må have." -#: libraries/messages.inc.php:696 server_privileges.php:149 +#: libraries/messages.inc.php:692 server_privileges.php:149 #: server_privileges.php:505 msgid "Allows viewing processes of all users" msgstr "" -#: libraries/messages.inc.php:697 server_privileges.php:151 +#: libraries/messages.inc.php:693 server_privileges.php:151 #: server_privileges.php:409 server_privileges.php:511 msgid "Has no effect in this MySQL version." msgstr "Har ingen effekt i denne MySQL version." -#: libraries/messages.inc.php:698 server_privileges.php:147 +#: libraries/messages.inc.php:694 server_privileges.php:147 #: server_privileges.php:506 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Tillader genindlæsning af serverindstillinger og tømning af caches." -#: libraries/messages.inc.php:699 server_privileges.php:159 +#: libraries/messages.inc.php:695 server_privileges.php:159 #: server_privileges.php:513 msgid "Allows the user to ask where the slaves / masters are." msgstr "Giver brugeren rettigheder til at spørge hvor Slaves / Masters er." -#: libraries/messages.inc.php:700 server_privileges.php:158 +#: libraries/messages.inc.php:696 server_privileges.php:158 #: server_privileges.php:514 msgid "Needed for the replication slaves." msgstr "Nødvendigt for replikationsslaverne." -#: libraries/messages.inc.php:701 server_privileges.php:141 +#: libraries/messages.inc.php:697 server_privileges.php:141 #: server_privileges.php:400 server_privileges.php:464 msgid "Allows reading data." msgstr "Tillader læsning af data." -#: libraries/messages.inc.php:702 server_privileges.php:154 +#: libraries/messages.inc.php:698 server_privileges.php:154 #: server_privileges.php:508 msgid "Gives access to the complete list of databases." msgstr "Giver adgang til den fuldstændige liste over databaser." -#: libraries/messages.inc.php:703 server_privileges.php:165 +#: libraries/messages.inc.php:699 server_privileges.php:165 #: server_privileges.php:167 server_privileges.php:480 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Tillader udførelse af SHOW CREATE VIEW forespørgsler." -#: libraries/messages.inc.php:704 server_privileges.php:148 +#: libraries/messages.inc.php:700 server_privileges.php:148 #: server_privileges.php:507 msgid "Allows shutting down the server." msgstr "Tillader nedlukning af serveren." -#: libraries/messages.inc.php:705 server_privileges.php:155 +#: libraries/messages.inc.php:701 server_privileges.php:155 #: server_privileges.php:504 msgid "" "Allows connecting, even if maximum number of connections is reached; " @@ -4693,55 +4693,55 @@ msgstr "" "Nødvendigt for de fleste administrative operationer som indstilling af " "globale variabler eller for at dræbe andre brugeres tråde." -#: libraries/messages.inc.php:706 server_privileges.php:162 +#: libraries/messages.inc.php:702 server_privileges.php:162 #: server_privileges.php:496 msgid "Allows creating and dropping triggers" msgstr "" -#: libraries/messages.inc.php:707 server_privileges.php:143 +#: libraries/messages.inc.php:703 server_privileges.php:143 #: server_privileges.php:406 server_privileges.php:466 msgid "Allows changing data." msgstr "Tillader ændring af data." -#: libraries/messages.inc.php:708 server_privileges.php:221 +#: libraries/messages.inc.php:704 server_privileges.php:221 msgid "No privileges." msgstr "Ingen privilegier." -#: libraries/messages.inc.php:710 server_privileges.php:1296 +#: libraries/messages.inc.php:706 server_privileges.php:1296 msgid "The privileges were reloaded successfully." msgstr "Privilegierne blev korrekt genindlæst." -#: libraries/messages.inc.php:712 libraries/server_links.inc.php:80 +#: libraries/messages.inc.php:708 libraries/server_links.inc.php:80 msgid "Processes" msgstr "Processer" -#: libraries/messages.inc.php:714 main.php:187 +#: libraries/messages.inc.php:710 main.php:187 msgid "Protocol version" msgstr "Protokolversion" -#: libraries/messages.inc.php:715 +#: libraries/messages.inc.php:711 msgid "Put fields names in the first row" msgstr "Indsæt feltnavne i første række" -#: libraries/messages.inc.php:720 server_synchronize.php:1003 +#: libraries/messages.inc.php:716 server_synchronize.php:1003 msgid "The following queries have been executed:" msgstr "" -#: libraries/messages.inc.php:721 server_status.php:251 +#: libraries/messages.inc.php:717 server_status.php:251 msgid "Query cache" msgstr "Forespørgsel-mellemlager" -#: libraries/messages.inc.php:722 libraries/navigation_header.inc.php:80 +#: libraries/messages.inc.php:718 libraries/navigation_header.inc.php:80 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 setup/lib/messages.inc.php:122 msgid "Query window" msgstr "Foresp. vindue" -#: libraries/messages.inc.php:725 querywindow.php:109 querywindow.php:217 +#: libraries/messages.inc.php:721 querywindow.php:109 querywindow.php:217 msgid "SQL history" msgstr "SQL-historik" -#: libraries/messages.inc.php:726 server_status.php:490 +#: libraries/messages.inc.php:722 server_status.php:490 #, php-format msgid "" "Query statistics: Since its startup, %s queries have been sent to the " @@ -4750,135 +4750,135 @@ msgstr "" "Forespørgselsstatistikker: Siden opstarten er der blevet sendt %s " "forespørgsler til serveren." -#: libraries/messages.inc.php:728 server_status.php:554 +#: libraries/messages.inc.php:724 server_status.php:554 msgid "Query type" msgstr "Forespørgselstype" -#: libraries/messages.inc.php:729 libraries/sql_query_form.lib.php:381 +#: libraries/messages.inc.php:725 libraries/sql_query_form.lib.php:381 msgid "Do not overwrite this query from outside the window" msgstr "Overskriv ikke denne forespørgsel fra udenfor vinduet" -#: libraries/messages.inc.php:732 tbl_operations.php:663 +#: libraries/messages.inc.php:728 tbl_operations.php:663 msgid "Rebuild" msgstr "" -#: libraries/messages.inc.php:733 server_status.php:394 +#: libraries/messages.inc.php:729 server_status.php:394 msgid "Received" msgstr "Modtaget" -#: libraries/messages.inc.php:734 pmd_pdf.php:89 +#: libraries/messages.inc.php:730 pmd_pdf.php:89 msgid "recommended" msgstr "anbefalet" -#: libraries/messages.inc.php:736 tbl_operations.php:702 +#: libraries/messages.inc.php:732 tbl_operations.php:702 msgid "Check referential integrity:" msgstr "Check reference-integriteten" -#: libraries/messages.inc.php:740 pdf_schema.php:1032 pdf_schema.php:1141 +#: libraries/messages.inc.php:736 pdf_schema.php:1032 pdf_schema.php:1141 msgid "Relational schema" msgstr "Relationel skematik" -#: libraries/messages.inc.php:744 tbl_relation.php:399 +#: libraries/messages.inc.php:740 tbl_relation.php:399 msgid "Relations" msgstr "Relationer" -#: libraries/messages.inc.php:745 tbl_structure.php:507 tbl_structure.php:509 +#: libraries/messages.inc.php:741 tbl_structure.php:507 tbl_structure.php:509 msgid "Relation view" msgstr "Se Relationer" -#: libraries/messages.inc.php:746 server_privileges.php:1246 +#: libraries/messages.inc.php:742 server_privileges.php:1246 msgid "Reloading the privileges" msgstr "Genindlæs privilegierne" -#: libraries/messages.inc.php:747 navigation.php:66 navigation.php:67 +#: libraries/messages.inc.php:743 navigation.php:66 navigation.php:67 #: navigation.php:70 msgid "Reload navigation frame" msgstr "" -#: libraries/messages.inc.php:748 pmd_general.php:80 +#: libraries/messages.inc.php:744 pmd_general.php:80 msgid "Reload" msgstr "Genindlæs" -#: libraries/messages.inc.php:749 libraries/server_synchronize.lib.php:1345 +#: libraries/messages.inc.php:745 libraries/server_synchronize.lib.php:1345 #: libraries/server_synchronize.lib.php:1371 msgid "Remote server" msgstr "" -#: libraries/messages.inc.php:750 +#: libraries/messages.inc.php:746 msgid "Remove CRLF characters within fields" msgstr "" -#: libraries/messages.inc.php:751 tbl_operations.php:676 +#: libraries/messages.inc.php:747 tbl_operations.php:676 msgid "Remove partitioning" msgstr "" -#: libraries/messages.inc.php:752 server_privileges.php:1575 +#: libraries/messages.inc.php:748 server_privileges.php:1575 msgid "Remove selected users" msgstr "Fjern valgte brugere" -#: libraries/messages.inc.php:755 tbl_operations.php:338 +#: libraries/messages.inc.php:751 tbl_operations.php:338 msgid "Rename table to" msgstr "Omdøb tabel til" -#: libraries/messages.inc.php:756 view_operations.php:93 +#: libraries/messages.inc.php:752 view_operations.php:93 msgid "Rename view to" msgstr "" -#: libraries/messages.inc.php:757 tbl_operations.php:664 +#: libraries/messages.inc.php:753 tbl_operations.php:664 msgid "Repair" msgstr "" -#: libraries/messages.inc.php:759 +#: libraries/messages.inc.php:755 msgid "Replace NULL by" msgstr "Erstat NULL med" -#: libraries/messages.inc.php:760 +#: libraries/messages.inc.php:756 msgid "Replace table data with file" msgstr "Erstat data i tabellen med filens data" -#: libraries/messages.inc.php:761 server_replication.php:228 +#: libraries/messages.inc.php:757 server_replication.php:228 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: libraries/messages.inc.php:762 libraries/replication_gui.lib.php:236 +#: libraries/messages.inc.php:758 libraries/replication_gui.lib.php:236 #: server_replication.php:194 msgid "Add slave replication user" msgstr "" -#: libraries/messages.inc.php:763 server_replication.php:74 +#: libraries/messages.inc.php:759 server_replication.php:74 #, php-format msgid "Master server changed succesfully to %s" msgstr "" -#: libraries/messages.inc.php:764 server_replication.php:182 +#: libraries/messages.inc.php:760 server_replication.php:182 msgid "This server is configured as master in a replication process." msgstr "" -#: libraries/messages.inc.php:765 server_replication.php:322 +#: libraries/messages.inc.php:761 server_replication.php:322 msgid "Control slave:" msgstr "" -#: libraries/messages.inc.php:766 server_replication.php:65 +#: libraries/messages.inc.php:762 server_replication.php:65 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: libraries/messages.inc.php:767 server_replication.php:58 +#: libraries/messages.inc.php:763 server_replication.php:58 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: libraries/messages.inc.php:768 server_replication.php:221 +#: libraries/messages.inc.php:764 server_replication.php:221 msgid "Replicate all databases; Ignore:" msgstr "" -#: libraries/messages.inc.php:769 server_replication.php:222 +#: libraries/messages.inc.php:765 server_replication.php:222 msgid "Ignore all databases; Replicate:" msgstr "" -#: libraries/messages.inc.php:770 server_replication.php:218 +#: libraries/messages.inc.php:766 server_replication.php:218 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -4887,120 +4887,120 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: libraries/messages.inc.php:771 server_replication.php:217 +#: libraries/messages.inc.php:767 server_replication.php:217 msgid "Master configuration" msgstr "" -#: libraries/messages.inc.php:772 server_replication.php:181 +#: libraries/messages.inc.php:768 server_replication.php:181 #: server_replication.php:209 msgid "Master replication" msgstr "" -#: libraries/messages.inc.php:774 server_replication.php:230 +#: libraries/messages.inc.php:770 server_replication.php:230 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: libraries/messages.inc.php:775 server_replication.php:225 +#: libraries/messages.inc.php:771 server_replication.php:225 msgid "Please select databases:" msgstr "" -#: libraries/messages.inc.php:776 server_replication.php:210 +#: libraries/messages.inc.php:772 server_replication.php:210 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:188 +#: libraries/messages.inc.php:773 libraries/replication_gui.lib.php:188 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/messages.inc.php:778 server_replication.php:187 +#: libraries/messages.inc.php:774 server_replication.php:187 msgid "Show connected slaves" msgstr "" -#: libraries/messages.inc.php:779 libraries/messages.inc.php:885 +#: libraries/messages.inc.php:775 libraries/messages.inc.php:881 #: server_replication.php:184 server_status.php:281 msgid "Show master status" msgstr "" -#: libraries/messages.inc.php:780 server_replication.php:334 +#: libraries/messages.inc.php:776 server_replication.php:334 msgid "Skipping error(s) might lead into unsynchronized master and slave!" msgstr "" -#: libraries/messages.inc.php:781 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:51 #: server_replication.php:347 msgid "Change or reconfigure master server" msgstr "" -#: libraries/messages.inc.php:782 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:778 libraries/replication_gui.lib.php:51 msgid "Slave configuration" msgstr "" -#: libraries/messages.inc.php:783 server_replication.php:305 +#: libraries/messages.inc.php:779 server_replication.php:305 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: libraries/messages.inc.php:784 server_replication.php:332 +#: libraries/messages.inc.php:780 server_replication.php:332 msgid "Error management:" msgstr "" -#: libraries/messages.inc.php:785 server_replication.php:328 +#: libraries/messages.inc.php:781 server_replication.php:328 #, php-format msgid "IO Thread %s only" msgstr "" -#: libraries/messages.inc.php:786 server_replication.php:296 +#: libraries/messages.inc.php:782 server_replication.php:296 msgid "Slave IO Thread not running!" msgstr "" -#: libraries/messages.inc.php:787 server_replication.php:355 +#: libraries/messages.inc.php:783 server_replication.php:355 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/messages.inc.php:788 server_replication.php:326 +#: libraries/messages.inc.php:784 server_replication.php:326 msgid "Reset slave" msgstr "" -#: libraries/messages.inc.php:789 server_replication.php:308 +#: libraries/messages.inc.php:785 server_replication.php:308 msgid "See slave status table" msgstr "" -#: libraries/messages.inc.php:790 server_replication.php:336 +#: libraries/messages.inc.php:786 server_replication.php:336 msgid "Skip current error" msgstr "" -#: libraries/messages.inc.php:791 server_replication.php:340 +#: libraries/messages.inc.php:787 server_replication.php:340 msgid "errors." msgstr "" -#: libraries/messages.inc.php:792 server_replication.php:337 +#: libraries/messages.inc.php:788 server_replication.php:337 msgid "Skip next" msgstr "" -#: libraries/messages.inc.php:793 server_replication.php:248 +#: libraries/messages.inc.php:789 server_replication.php:248 msgid "Slave replication" msgstr "" -#: libraries/messages.inc.php:794 server_replication.php:293 +#: libraries/messages.inc.php:790 server_replication.php:293 msgid "Slave SQL Thread not running!" msgstr "" -#: libraries/messages.inc.php:795 server_replication.php:327 +#: libraries/messages.inc.php:791 server_replication.php:327 #, php-format msgid "SQL Thread %s only" msgstr "" -#: libraries/messages.inc.php:796 +#: libraries/messages.inc.php:792 #, php-format msgid "" "This MySQL server works as %s in replication process. For further " @@ -5008,160 +5008,160 @@ msgid "" "\"#replication\">replication section." msgstr "" -#: libraries/messages.inc.php:797 +#: libraries/messages.inc.php:793 msgid "Master status" msgstr "" -#: libraries/messages.inc.php:798 server_status.php:721 +#: libraries/messages.inc.php:794 server_status.php:721 msgid "Replication status" msgstr "" -#: libraries/messages.inc.php:799 +#: libraries/messages.inc.php:795 msgid "Slave status" msgstr "" -#: libraries/messages.inc.php:800 server_replication.php:311 +#: libraries/messages.inc.php:796 server_replication.php:311 msgid "Synchronize databases with master" msgstr "" -#: libraries/messages.inc.php:801 server_replication.php:71 +#: libraries/messages.inc.php:797 server_replication.php:71 msgid "Unable to change master" msgstr "" -#: libraries/messages.inc.php:802 server_replication.php:51 +#: libraries/messages.inc.php:798 server_replication.php:51 msgid "Unknown error" msgstr "" -#: libraries/messages.inc.php:803 main.php:163 pdf_pages.php:344 +#: libraries/messages.inc.php:799 main.php:163 pdf_pages.php:344 #: setup/lib/FormDisplay.tpl.php:216 tbl_change.php:1175 msgid "Reset" msgstr "Nulstil" -#: libraries/messages.inc.php:804 server_privileges.php:591 +#: libraries/messages.inc.php:800 server_privileges.php:591 msgid "Resource limits" msgstr "Ressourcebegrænsninger" -#: libraries/messages.inc.php:805 tbl_change.php:1209 +#: libraries/messages.inc.php:801 tbl_change.php:1209 #, php-format msgid "Restart insertion with %s rows" msgstr "" -#: libraries/messages.inc.php:807 server_privileges.php:1578 +#: libraries/messages.inc.php:803 server_privileges.php:1578 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Tilbagekald alle aktive privilegier fra brugerne og slet dem efterfølgende." -#: libraries/messages.inc.php:808 server_privileges.php:1176 +#: libraries/messages.inc.php:804 server_privileges.php:1176 #, php-format msgid "You have revoked the privileges for %s" msgstr "Du har tilbagekaldt privilegierne for %s" -#: libraries/messages.inc.php:809 server_privileges.php:1333 +#: libraries/messages.inc.php:805 server_privileges.php:1333 msgid "Revoke" msgstr "Tilbagekald" -#: libraries/messages.inc.php:810 libraries/mysql_charsets.lib.php:280 +#: libraries/messages.inc.php:806 libraries/mysql_charsets.lib.php:280 msgid "Romanian" msgstr "Rumænsk" -#: libraries/messages.inc.php:813 tbl_printview.php:404 tbl_structure.php:786 +#: libraries/messages.inc.php:809 tbl_printview.php:404 tbl_structure.php:786 msgid "Row length" msgstr "Rækkelængde" -#: libraries/messages.inc.php:815 tbl_printview.php:414 tbl_structure.php:794 +#: libraries/messages.inc.php:811 tbl_printview.php:414 tbl_structure.php:794 msgid " Row size " msgstr " Rækkestørrelse " -#: libraries/messages.inc.php:821 tbl_printview.php:366 tbl_structure.php:726 +#: libraries/messages.inc.php:817 tbl_printview.php:366 tbl_structure.php:726 msgid "Row Statistics" msgstr "Række-statistik" -#: libraries/messages.inc.php:822 +#: libraries/messages.inc.php:818 #, php-format msgid "running on %s" msgstr "kører på %s" -#: libraries/messages.inc.php:824 libraries/sql_query_form.lib.php:223 +#: libraries/messages.inc.php:820 libraries/sql_query_form.lib.php:223 #, php-format msgid "Run SQL query/queries on server %s" msgstr "Kør SQL-forespørgsel/forespørgsler på server %s" -#: libraries/messages.inc.php:825 libraries/sql_query_form.lib.php:240 +#: libraries/messages.inc.php:821 libraries/sql_query_form.lib.php:240 #: libraries/sql_query_form.lib.php:265 #, php-format msgid "Run SQL query/queries on database %s" msgstr "Kør SQL-forspørgsel(er) på database %s" -#: libraries/messages.inc.php:826 libraries/mysql_charsets.lib.php:337 +#: libraries/messages.inc.php:822 libraries/mysql_charsets.lib.php:337 msgid "Russian" msgstr "Russisk" -#: libraries/messages.inc.php:829 pmd_general.php:68 +#: libraries/messages.inc.php:825 pmd_general.php:68 msgid "Save position" msgstr "Gem position" -#: libraries/messages.inc.php:830 libraries/tbl_properties.inc.php:776 +#: libraries/messages.inc.php:826 libraries/tbl_properties.inc.php:776 #: pdf_pages.php:484 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:214 setup/lib/FormDisplay.tpl.php:215 #: tbl_change.php:1126 tbl_indexes.php:248 tbl_relation.php:566 msgid "Save" msgstr "Gem" -#: libraries/messages.inc.php:831 +#: libraries/messages.inc.php:827 msgid "The scale factor is too small to fit the schema on one page" msgstr "" "Skaleringsfaktoren er for lille til at tilpasse skematikken til en side" -#: libraries/messages.inc.php:843 main.php:298 +#: libraries/messages.inc.php:839 main.php:298 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "Konfigurationsfilen skal nu bruge et hemmeligt kodeord (blowfish_secret)." -#: libraries/messages.inc.php:844 navigation.php:353 navigation.php:516 +#: libraries/messages.inc.php:840 navigation.php:353 navigation.php:516 msgid "Please select a database" msgstr "Vælg en database" -#: libraries/messages.inc.php:846 server_binlog.php:120 +#: libraries/messages.inc.php:842 server_binlog.php:120 msgid "Select binary log to view" msgstr "Vælg binærlog til gennemsyn" -#: libraries/messages.inc.php:847 tbl_select.php:270 +#: libraries/messages.inc.php:843 tbl_select.php:270 msgid "Select fields (at least one):" msgstr "Vælg mindst eet felt:" -#: libraries/messages.inc.php:851 pdf_pages.php:320 +#: libraries/messages.inc.php:847 pdf_pages.php:320 msgid "Select Tables" msgstr "Vælg Tabeller" -#: libraries/messages.inc.php:853 server_status.php:404 +#: libraries/messages.inc.php:849 server_status.php:404 msgid "Sent" msgstr "Sendt" -#: libraries/messages.inc.php:857 libraries/select_server.lib.php:45 +#: libraries/messages.inc.php:853 libraries/select_server.lib.php:45 #: setup/frames/index.inc.php:97 setup/lib/messages.inc.php:115 msgid "Servers" msgstr "Servere" -#: libraries/messages.inc.php:858 server_status.php:255 +#: libraries/messages.inc.php:854 server_status.php:255 msgid "Delayed inserts" msgstr "Forsinkede inserts" -#: libraries/messages.inc.php:859 server_status.php:46 +#: libraries/messages.inc.php:855 server_status.php:46 msgid "Runtime Information" msgstr "Runtime-information" -#: libraries/messages.inc.php:860 server_status.php:350 +#: libraries/messages.inc.php:856 server_status.php:350 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Denne MySQL-server har kørt i %s. Den startede op den %s." -#: libraries/messages.inc.php:861 libraries/server_links.inc.php:53 +#: libraries/messages.inc.php:857 libraries/server_links.inc.php:53 #: server_engines.php:112 server_engines.php:116 server_status.php:304 #: test/theme.php:105 msgid "Variables" msgstr "Variabler" -#: libraries/messages.inc.php:862 server_status.php:383 +#: libraries/messages.inc.php:858 server_status.php:383 msgid "" "Server traffic: These tables show the network traffic statistics of " "this MySQL server since its startup." @@ -5169,11 +5169,11 @@ msgstr "" "Servertrafik: Disse tabeller viser netværkstrafik-statistikkerne for " "denne MySQL-server siden dens opstart." -#: libraries/messages.inc.php:863 server_variables.php:35 +#: libraries/messages.inc.php:859 server_variables.php:35 msgid "Server variables and settings" msgstr "Server-variabler og indstillinger" -#: libraries/messages.inc.php:865 main.php:290 +#: libraries/messages.inc.php:861 main.php:290 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -5181,7 +5181,7 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: libraries/messages.inc.php:866 +#: libraries/messages.inc.php:862 msgid "" "Cannot start session without errors, please check errors given in your PHP " "and/or webserver log file and configure your PHP installation properly." @@ -5189,11 +5189,11 @@ msgstr "" "Kan ikke starte session uden fejl, tjek venligst fejl i din PHP og/eller " "webserver log fil og konfigurer din PHP installation ordentligt." -#: libraries/messages.inc.php:867 server_variables.php:55 +#: libraries/messages.inc.php:863 server_variables.php:55 msgid "Session value" msgstr "Sessionsværdi" -#: libraries/messages.inc.php:868 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:864 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 " @@ -5205,44 +5205,44 @@ msgstr "" "eller et enkelt anførselstegn (\"'\") blandt disse værdier, så tilføj en " "ekstra backslash (fx '\\\\xyz' eller 'a\\'b')." -#: libraries/messages.inc.php:876 server_binlog.php:192 server_binlog.php:195 +#: libraries/messages.inc.php:872 server_binlog.php:192 server_binlog.php:195 #: server_processlist.php:49 server_processlist.php:51 msgid "Show Full Queries" msgstr "Vis fuldstændige forespørgsler" -#: libraries/messages.inc.php:878 pmd_general.php:64 +#: libraries/messages.inc.php:874 pmd_general.php:64 msgid "Show/Hide left menu" msgstr "Vis/skjul venstre menu" -#: libraries/messages.inc.php:880 sql.php:513 +#: libraries/messages.inc.php:876 sql.php:513 msgid "Showing as PHP code" msgstr "Viser som PHP-kode" -#: libraries/messages.inc.php:882 sql.php:516 tbl_replace.php:360 +#: libraries/messages.inc.php:878 sql.php:516 tbl_replace.php:360 msgid "Showing SQL query" msgstr "Viser SQL-forespørgsel" -#: libraries/messages.inc.php:883 tbl_change.php:1132 +#: libraries/messages.inc.php:879 tbl_change.php:1132 msgid "Show insert query" msgstr "" -#: libraries/messages.inc.php:886 server_status.php:273 +#: libraries/messages.inc.php:882 server_status.php:273 msgid "Show open tables" msgstr "Vis åbne tabeller" -#: libraries/messages.inc.php:887 main.php:219 +#: libraries/messages.inc.php:883 main.php:219 msgid "Show PHP information" msgstr "Vis PHP-information" -#: libraries/messages.inc.php:889 server_status.php:278 +#: libraries/messages.inc.php:885 server_status.php:278 msgid "Show slave hosts" msgstr "Vis slaveværter" -#: libraries/messages.inc.php:890 server_status.php:284 +#: libraries/messages.inc.php:886 server_status.php:284 msgid "Show slave status" msgstr "Vis slavestatus" -#: libraries/messages.inc.php:891 +#: libraries/messages.inc.php:887 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -5252,12 +5252,12 @@ msgstr "" "overskred værdien for binlog_cache_size og brugte en midlertidig fil til at " "gemme statements fra transaktionen." -#: libraries/messages.inc.php:892 +#: libraries/messages.inc.php:888 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Antal transaktioner der brugte det midlertidige binære log mellemlager." -#: libraries/messages.inc.php:893 +#: libraries/messages.inc.php:889 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -5269,11 +5269,11 @@ msgstr "" "overveje at forøge tmp_table_size værdien for at gøre midlertidige tabeller " "hukommelses-baserede i stedet for disk-baserede." -#: libraries/messages.inc.php:894 +#: libraries/messages.inc.php:890 msgid "How many temporary files mysqld has created." msgstr "Hvor mange midlertidige filer mysqld har oprettet." -#: libraries/messages.inc.php:895 +#: libraries/messages.inc.php:891 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -5281,7 +5281,7 @@ msgstr "" "Antal i-hukommelsen midlertidige tabeller oprettet automatisk af serveren " "under udførelse af statements." -#: libraries/messages.inc.php:896 +#: libraries/messages.inc.php:892 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -5289,7 +5289,7 @@ msgstr "" "Antal rækker skrevet med INSERT DELAYED (forsinket indsættelse) under hvilke " "der opstod fejl (sandsynligvis dublerede nøgler)." -#: libraries/messages.inc.php:897 +#: libraries/messages.inc.php:893 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -5297,23 +5297,23 @@ msgstr "" "Antallet af INSERT DELAYED handler-tråde i brug. Hver forskellig tabel " "hvorpå en bruger INSERT DELAYED får sin egen tråd." -#: libraries/messages.inc.php:898 +#: libraries/messages.inc.php:894 msgid "The number of INSERT DELAYED rows written." msgstr "Antallet af INSERT DELAYED rækker skrevet." -#: libraries/messages.inc.php:899 +#: libraries/messages.inc.php:895 msgid "The number of executed FLUSH statements." msgstr "Antallet af udførte FLUSH statements." -#: libraries/messages.inc.php:900 +#: libraries/messages.inc.php:896 msgid "The number of internal COMMIT statements." msgstr "Antallet af interne COMMIT statements." -#: libraries/messages.inc.php:901 +#: libraries/messages.inc.php:897 msgid "The number of times a row was deleted from a table." msgstr "Antallet af gange en række blev slettet fra en tabel." -#: libraries/messages.inc.php:902 +#: libraries/messages.inc.php:898 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -5323,7 +5323,7 @@ msgstr "" "tabel med et givent navn. Dette kaldes opdagelse. Handler_discover indikerer " "antallet af gange tabeller er blevet opdaget." -#: libraries/messages.inc.php:903 +#: libraries/messages.inc.php:899 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -5333,7 +5333,7 @@ msgstr "" "antyder det at serveren laver mange fulde indeks scans; for eksempel, SELECT " "col1 FROM foo, antagende at col1 er indekseret." -#: libraries/messages.inc.php:904 +#: libraries/messages.inc.php:900 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -5342,7 +5342,7 @@ msgstr "" "er høj, er det en god indikation af at dine forespørgsler og tabeller er " "ordentligt indekserede." -#: libraries/messages.inc.php:905 +#: libraries/messages.inc.php:901 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -5352,7 +5352,7 @@ msgstr "" "hvis du forespørger på en indekskolonne med en range-begrænsning eller hvis " "du udfører et indeks scan." -#: libraries/messages.inc.php:906 +#: libraries/messages.inc.php:902 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -5360,7 +5360,7 @@ msgstr "" "Antallet af anmodninger om at læse foregående række i nøgleorden. Denne " "læsemetode bruges hovedsageligt til at optimere ORDER BY ... DESC." -#: libraries/messages.inc.php:907 +#: libraries/messages.inc.php:903 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -5372,7 +5372,7 @@ msgstr "" "resultatet. Du har sandsynligvis mange forespørgsler der forlanger at MySQL " "scanner hele tabeller eller du har joins der ikke bruger nøgler ordentligt." -#: libraries/messages.inc.php:908 +#: libraries/messages.inc.php:904 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -5384,35 +5384,35 @@ msgstr "" "enten ikke er ordentligt indekserede eller at dine forespørgsler ikke er " "skrevet til at drage fordel af de indeks du har." -#: libraries/messages.inc.php:909 +#: libraries/messages.inc.php:905 msgid "The number of internal ROLLBACK statements." msgstr "Antallet af interne ROLLBACK statements." -#: libraries/messages.inc.php:910 +#: libraries/messages.inc.php:906 msgid "The number of requests to update a row in a table." msgstr "Antallet af anmodninger om at opdatere en række i en tabel." -#: libraries/messages.inc.php:911 +#: libraries/messages.inc.php:907 msgid "The number of requests to insert a row in a table." msgstr "Antallet af anmodninger om at indsætte en række i en tabel." -#: libraries/messages.inc.php:912 +#: libraries/messages.inc.php:908 msgid "The number of pages containing data (dirty or clean)." msgstr "Antallet af sider der indeholder data (beskidte eller rene)." -#: libraries/messages.inc.php:913 +#: libraries/messages.inc.php:909 msgid "The number of pages currently dirty." msgstr "Antallet af såkaldt beskidte sider." -#: libraries/messages.inc.php:914 +#: libraries/messages.inc.php:910 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Antallet af buffer pool sider der er anmodet om at skulle flushes." -#: libraries/messages.inc.php:915 +#: libraries/messages.inc.php:911 msgid "The number of free pages." msgstr "Antallet af frie sider." -#: libraries/messages.inc.php:916 +#: libraries/messages.inc.php:912 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -5422,7 +5422,7 @@ msgstr "" "sider der i øjeblikket læses eller skrives eller som ikke kan flushes eller " "fjernes af andre årsager." -#: libraries/messages.inc.php:917 +#: libraries/messages.inc.php:913 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -5434,11 +5434,11 @@ msgstr "" "også beregnes som Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: libraries/messages.inc.php:918 +#: libraries/messages.inc.php:914 msgid "Total size of buffer pool, in pages." msgstr "Total størrelse på buffer pool, i sider." -#: libraries/messages.inc.php:919 +#: libraries/messages.inc.php:915 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -5447,7 +5447,7 @@ msgstr "" "forespørgsel skal scanne en større del af en tabel men i tilfældig " "rækkefølge." -#: libraries/messages.inc.php:920 +#: libraries/messages.inc.php:916 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -5455,11 +5455,11 @@ msgstr "" "Antallet af sekventielle read-aheads InnoDB initierede. Dette sker når " "InnoDB laver en sekventiel fuld tabelscanning." -#: libraries/messages.inc.php:921 +#: libraries/messages.inc.php:917 msgid "The number of logical read requests InnoDB has done." msgstr "Antallet af logiske read anmodninger InnoDB har lavet." -#: libraries/messages.inc.php:922 +#: libraries/messages.inc.php:918 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -5467,7 +5467,7 @@ msgstr "" "Antallet af logiske reads som InnoDB ikke kunne tilfredsstille fra buffer " "pool og måtte lave en enkelt-side read." -#: libraries/messages.inc.php:923 +#: libraries/messages.inc.php:919 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -5481,55 +5481,55 @@ msgstr "" "sider først. Denne tæller tæller hvor mange gange det er sket. Hvis buffer " "pool størrelsen er sat ordentligt, skulle denne værdi være lille." -#: libraries/messages.inc.php:924 +#: libraries/messages.inc.php:920 msgid "The number writes done to the InnoDB buffer pool." msgstr "Antallet af skrivninger til InnoDB buffer poolen." -#: libraries/messages.inc.php:925 +#: libraries/messages.inc.php:921 msgid "The number of fsync() operations so far." msgstr "Antallet af fsync() operationer indtil nu." -#: libraries/messages.inc.php:926 +#: libraries/messages.inc.php:922 msgid "The current number of pending fsync() operations." msgstr "Nuværende antal ventende fsync() operationer." -#: libraries/messages.inc.php:927 +#: libraries/messages.inc.php:923 msgid "The current number of pending reads." msgstr "Nuværende antal af ventende reads." -#: libraries/messages.inc.php:928 +#: libraries/messages.inc.php:924 msgid "The current number of pending writes." msgstr "Nuværende antal af ventende writes." -#: libraries/messages.inc.php:929 +#: libraries/messages.inc.php:925 msgid "The amount of data read so far, in bytes." msgstr "Mængden af data læst indtil nu, i bytes." -#: libraries/messages.inc.php:930 +#: libraries/messages.inc.php:926 msgid "The total number of data reads." msgstr "Det totale antal af data reads." -#: libraries/messages.inc.php:931 +#: libraries/messages.inc.php:927 msgid "The total number of data writes." msgstr "Det totale antal af data writes." -#: libraries/messages.inc.php:932 +#: libraries/messages.inc.php:928 msgid "The amount of data written so far, in bytes." msgstr "Mængden af data skrevet indtil nu, i bytes." -#: libraries/messages.inc.php:933 +#: libraries/messages.inc.php:929 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Antallet af doublewrite skrivninger der er udført og antallet af sider der " "er blevet skrevet til dette formål." -#: libraries/messages.inc.php:934 +#: libraries/messages.inc.php:930 msgid "The number of doublewrite operations that have been performed." msgstr "" "Antallet af doublewrite skrivninger der er udført og antallet af sider der " "er blevet skrevet til dette formål." -#: libraries/messages.inc.php:935 +#: libraries/messages.inc.php:931 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -5537,35 +5537,35 @@ msgstr "" "Antallet af waits vi har haft fordi log buffer var for lille og vi skulle " "vente på at den blev flushed før vi kunne fortsætte." -#: libraries/messages.inc.php:936 +#: libraries/messages.inc.php:932 msgid "The number of log write requests." msgstr "Antallet af log write anmodninger." -#: libraries/messages.inc.php:937 +#: libraries/messages.inc.php:933 msgid "The number of physical writes to the log file." msgstr "Antallet af fysiske skrivninger til log filen." -#: libraries/messages.inc.php:938 +#: libraries/messages.inc.php:934 msgid "The number of fsync() writes done to the log file." msgstr "Antallet af fsyncs skrivninger lavet til log filen." -#: libraries/messages.inc.php:939 +#: libraries/messages.inc.php:935 msgid "The number of pending log file fsyncs." msgstr "Antallet af ventende log fil fsyncs." -#: libraries/messages.inc.php:940 +#: libraries/messages.inc.php:936 msgid "Pending log file writes." msgstr "Ventende log fil skrivninger." -#: libraries/messages.inc.php:941 +#: libraries/messages.inc.php:937 msgid "The number of bytes written to the log file." msgstr "Antallet af bytes skrevet til log filen." -#: libraries/messages.inc.php:942 +#: libraries/messages.inc.php:938 msgid "The number of pages created." msgstr "Antallet af sider oprettet." -#: libraries/messages.inc.php:943 +#: libraries/messages.inc.php:939 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -5573,51 +5573,51 @@ msgstr "" "Den indkompilerede InnoDB sidestørrelse (standard 16KB). Mange værdier " "tælles i sider; sidestørrelsen gør at man let kan omregne dem til bytes." -#: libraries/messages.inc.php:944 +#: libraries/messages.inc.php:940 msgid "The number of pages read." msgstr "Antallet af sider læst." -#: libraries/messages.inc.php:945 +#: libraries/messages.inc.php:941 msgid "The number of pages written." msgstr "Antallet af sider skrevet." -#: libraries/messages.inc.php:946 +#: libraries/messages.inc.php:942 msgid "The number of row locks currently being waited for." msgstr "Antallet af rækkelåse der ventes på i øjeblikket." -#: libraries/messages.inc.php:947 +#: libraries/messages.inc.php:943 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Gennemsnitstiden for at få en rækkelås, i millisekunder." -#: libraries/messages.inc.php:948 +#: libraries/messages.inc.php:944 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Total tid brugt på at hente rækkelåse, i millisekunder." -#: libraries/messages.inc.php:949 +#: libraries/messages.inc.php:945 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Maksimale tid for at hente en rækkelås, i millisekunder." -#: libraries/messages.inc.php:950 +#: libraries/messages.inc.php:946 msgid "The number of times a row lock had to be waited for." msgstr "Antallet af gange der skulle ventes på en rækkelås." -#: libraries/messages.inc.php:951 +#: libraries/messages.inc.php:947 msgid "The number of rows deleted from InnoDB tables." msgstr "Antallet af rækker slettet fra InnoDB tabeller." -#: libraries/messages.inc.php:952 +#: libraries/messages.inc.php:948 msgid "The number of rows inserted in InnoDB tables." msgstr "Antallet af rækker indsat i InnoDB tabeller." -#: libraries/messages.inc.php:953 +#: libraries/messages.inc.php:949 msgid "The number of rows read from InnoDB tables." msgstr "Antallet af rækker læst fra InnoDB tables." -#: libraries/messages.inc.php:954 +#: libraries/messages.inc.php:950 msgid "The number of rows updated in InnoDB tables." msgstr "Antallet af rækker opdateret i InnoDB tabeller." -#: libraries/messages.inc.php:955 +#: libraries/messages.inc.php:951 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -5626,7 +5626,7 @@ msgstr "" "endnu ikke er blevet flushet til disk. Det hed tidligere " "Not_flushed_key_blocks." -#: libraries/messages.inc.php:956 +#: libraries/messages.inc.php:952 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -5634,7 +5634,7 @@ msgstr "" "Antallet af ubrugte blokke i nøglemellemlageret. Du kan bruge denne værdi " "til at fastslå hvor meget af nøglemellemlagere der er i brug." -#: libraries/messages.inc.php:957 +#: libraries/messages.inc.php:953 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -5644,11 +5644,11 @@ msgstr "" "mærke der indikerer det maksimale antal blokke der på noget tidspunkt har " "været i brug på en gang." -#: libraries/messages.inc.php:958 +#: libraries/messages.inc.php:954 msgid "The number of requests to read a key block from the cache." msgstr "Antallet af anmodninger om at læse en nøgleblok fra mellemlageret." -#: libraries/messages.inc.php:959 +#: libraries/messages.inc.php:955 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -5658,15 +5658,15 @@ msgstr "" "stor, er din key_buffer_size værdi sandsynligvis for lille. Mellemlager miss " "raten kan beregnes som Key_reads/Key_read_requests." -#: libraries/messages.inc.php:960 +#: libraries/messages.inc.php:956 msgid "The number of requests to write a key block to the cache." msgstr "Antallet af anmodninger om at skrive en nøgleblok til mellemlageret." -#: libraries/messages.inc.php:961 +#: libraries/messages.inc.php:957 msgid "The number of physical writes of a key block to disk." msgstr "Antallet af fysiske skrivninger af en nøgleblok til disk." -#: libraries/messages.inc.php:962 +#: libraries/messages.inc.php:958 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -5678,12 +5678,12 @@ msgstr "" "standardværdi på 0 betyder at der ikke er kompileret nogen forespørgsler " "endnu." -#: libraries/messages.inc.php:963 +#: libraries/messages.inc.php:959 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" "Antallet af rækker der venter på at blive skrevet i INSERT DELAYED køer." -#: libraries/messages.inc.php:964 +#: libraries/messages.inc.php:960 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -5691,35 +5691,35 @@ msgstr "" "Antallet af tabeller der er blevet åbnet. Hvis åbnede tabeller er stor, er " "dit tabelmellemlager sandsynligvis for lille." -#: libraries/messages.inc.php:965 +#: libraries/messages.inc.php:961 msgid "The number of files that are open." msgstr "Antallet af filer der er åbne." -#: libraries/messages.inc.php:966 +#: libraries/messages.inc.php:962 msgid "The number of streams that are open (used mainly for logging)." msgstr "Antallet af streams der er åbne (bruges hovedsageligt til logning)." -#: libraries/messages.inc.php:967 +#: libraries/messages.inc.php:963 msgid "The number of tables that are open." msgstr "Antallet af tabeller der er åbne." -#: libraries/messages.inc.php:968 +#: libraries/messages.inc.php:964 msgid "The number of free memory blocks in query cache." msgstr "Antallet af frie hukommelsesblokke i forespørgsels-mellemlageret." -#: libraries/messages.inc.php:969 +#: libraries/messages.inc.php:965 msgid "The amount of free memory for query cache." msgstr "Mængden af fri hukommelse til forespørgselsmellemlageret." -#: libraries/messages.inc.php:970 +#: libraries/messages.inc.php:966 msgid "The number of cache hits." msgstr "Antallet af mellemlager hits." -#: libraries/messages.inc.php:971 +#: libraries/messages.inc.php:967 msgid "The number of queries added to the cache." msgstr "Antallet af forespørgsler tilføjet til mellemlageret." -#: libraries/messages.inc.php:972 +#: libraries/messages.inc.php:968 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -5732,7 +5732,7 @@ msgstr "" "Forespørgselsmellemlageret bruger en mindst nyligt brugt (LRU) strategi til " "at afgøre hvilke forespørgsler der skal fjernes fra mellemlageret." -#: libraries/messages.inc.php:973 +#: libraries/messages.inc.php:969 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -5740,24 +5740,24 @@ msgstr "" "Antallet af ikke-mellemlagrede forespørgsler (ikke mulige at mellemlagre " "eller ikke mellemlagret grundet query_cache_type indstillingen)." -#: libraries/messages.inc.php:974 +#: libraries/messages.inc.php:970 msgid "The number of queries registered in the cache." msgstr "Antallet af forespørgsler registreret i mellemlageret." -#: libraries/messages.inc.php:975 +#: libraries/messages.inc.php:971 msgid "The total number of blocks in the query cache." msgstr "Totalt antal blokke i forespørgsels-mellemlageret." -#: libraries/messages.inc.php:976 +#: libraries/messages.inc.php:972 msgctxt "$strShowStatusReset" msgid "Reset" msgstr "Nulstil" -#: libraries/messages.inc.php:977 +#: libraries/messages.inc.php:973 msgid "The status of failsafe replication (not yet implemented)." msgstr "Status på failsafe replikering (endnu ikke implementeret)." -#: libraries/messages.inc.php:978 +#: libraries/messages.inc.php:974 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -5765,11 +5765,11 @@ msgstr "" "Antallet af joins der ikke bruger indeks. Hvis denne værdi ikke er 0, bør du " "nøje tjekke indeksene på dine tabeller." -#: libraries/messages.inc.php:979 +#: libraries/messages.inc.php:975 msgid "The number of joins that used a range search on a reference table." msgstr "Antallet af joins der brugte en range søgning på en reference tabel." -#: libraries/messages.inc.php:980 +#: libraries/messages.inc.php:976 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -5777,7 +5777,7 @@ msgstr "" "Antallet af joins uden nøgler der tjekker for nøglebrug efter hver række. " "(Hvis denne ikke er 0, bør du nøje tjekke indeks på dine tabeller.)" -#: libraries/messages.inc.php:981 +#: libraries/messages.inc.php:977 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -5785,15 +5785,15 @@ msgstr "" "Antallet af joins der brugte ranges på den første tabel. (Normalt ikke " "kritisk selvom tallet er stort.)" -#: libraries/messages.inc.php:982 +#: libraries/messages.inc.php:978 msgid "The number of joins that did a full scan of the first table." msgstr "Antallet af joins som lavede en fuld scan af den første tabel." -#: libraries/messages.inc.php:983 +#: libraries/messages.inc.php:979 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "Antallet af midlertidige tabeller i øjeblikket åbne af SQL tråden." -#: libraries/messages.inc.php:984 +#: libraries/messages.inc.php:980 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -5801,12 +5801,12 @@ msgstr "" "Totalt (siden opstart) antal gange replikeringsslave SQL tråden har gen-" "forsøgt transaktioner." -#: libraries/messages.inc.php:985 +#: libraries/messages.inc.php:981 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Dette er TIL hvis denne server er en slave der er forbundet til en master." -#: libraries/messages.inc.php:986 +#: libraries/messages.inc.php:982 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -5814,13 +5814,13 @@ msgstr "" "Antallet af tråde der har taget mere end slow_launch_time sekunder at " "oprette." -#: libraries/messages.inc.php:987 +#: libraries/messages.inc.php:983 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "Antallet af forespørgsler der har taget mere end long_query_time sekunder." -#: libraries/messages.inc.php:988 +#: libraries/messages.inc.php:984 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -5830,23 +5830,23 @@ msgstr "" "denne værdi er høj, bør du overveje at forøge værdien af sort_buffer_size " "systemvariablen." -#: libraries/messages.inc.php:989 +#: libraries/messages.inc.php:985 msgid "The number of sorts that were done with ranges." msgstr "Antallet af sorteringer lavet med ranges." -#: libraries/messages.inc.php:990 +#: libraries/messages.inc.php:986 msgid "The number of sorted rows." msgstr "Antallet af sorterede rækker." -#: libraries/messages.inc.php:991 +#: libraries/messages.inc.php:987 msgid "The number of sorts that were done by scanning the table." msgstr "Antallet af sorteringer udført ved scanning af tabellen." -#: libraries/messages.inc.php:992 +#: libraries/messages.inc.php:988 msgid "The number of times that a table lock was acquired immediately." msgstr "Antallet af gange en tabellås blev givet øjeblikkeligt." -#: libraries/messages.inc.php:993 +#: libraries/messages.inc.php:989 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -5858,7 +5858,7 @@ msgstr "" "optimere dine forespørgsler, og derefter enten opdele din tabel eller " "tabeller, eller bruge replikering." -#: libraries/messages.inc.php:994 +#: libraries/messages.inc.php:990 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -5868,11 +5868,11 @@ msgstr "" "som Threads_created/Forbindelser. Hvis denne værdi er rød bør du forøge din " "thread_cache_size." -#: libraries/messages.inc.php:995 +#: libraries/messages.inc.php:991 msgid "The number of currently open connections." msgstr "Antallet af i øjeblikket åbne forbindelser." -#: libraries/messages.inc.php:996 +#: libraries/messages.inc.php:992 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -5884,74 +5884,74 @@ msgstr "" "(Normalt giver dette ingen nævneværdig ydelsesforbedring hvis du har god " "tråd-implementering.)" -#: libraries/messages.inc.php:997 +#: libraries/messages.inc.php:993 msgid "The number of threads that are not sleeping." msgstr "Antallet af tråde der ikke sover." -#: libraries/messages.inc.php:999 tbl_printview.php:75 +#: libraries/messages.inc.php:995 tbl_printview.php:75 msgid "Show tables" msgstr "Vis tabeller" -#: libraries/messages.inc.php:1000 libraries/sql_query_form.lib.php:396 +#: libraries/messages.inc.php:996 libraries/sql_query_form.lib.php:396 msgid " Show this query here again " msgstr " Vis forespørgslen her igen " -#: libraries/messages.inc.php:1001 libraries/mysql_charsets.lib.php:217 +#: libraries/messages.inc.php:997 libraries/mysql_charsets.lib.php:217 #: libraries/mysql_charsets.lib.php:342 msgid "Simplified Chinese" msgstr "Simplificeret Kinesisk" -#: libraries/messages.inc.php:1002 tbl_operations.php:258 +#: libraries/messages.inc.php:998 tbl_operations.php:258 msgid "(singly)" msgstr "(enkeltvis)" -#: libraries/messages.inc.php:1005 libraries/replication_gui.lib.php:52 +#: libraries/messages.inc.php:1001 libraries/replication_gui.lib.php:52 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" msgstr "" -#: libraries/messages.inc.php:1006 libraries/mysql_charsets.lib.php:283 +#: libraries/messages.inc.php:1002 libraries/mysql_charsets.lib.php:283 msgid "Slovak" msgstr "Slovakisk" -#: libraries/messages.inc.php:1007 libraries/mysql_charsets.lib.php:286 +#: libraries/messages.inc.php:1003 libraries/mysql_charsets.lib.php:286 msgid "Slovenian" msgstr "Slovensk" -#: libraries/messages.inc.php:1008 pmd_general.php:95 +#: libraries/messages.inc.php:1004 pmd_general.php:95 msgid "Small/Big All" msgstr "Små/store alle" -#: libraries/messages.inc.php:1009 pmd_general.php:91 +#: libraries/messages.inc.php:1005 pmd_general.php:91 msgid "Snap to grid" msgstr "Snap til gitter" -#: libraries/messages.inc.php:1011 server_synchronize.php:1167 +#: libraries/messages.inc.php:1007 server_synchronize.php:1167 msgid "Socket" msgstr "" -#: libraries/messages.inc.php:1013 server_status.php:259 +#: libraries/messages.inc.php:1009 server_status.php:259 msgid "Sorting" msgstr "Sortering" -#: libraries/messages.inc.php:1015 tbl_printview.php:310 tbl_structure.php:657 +#: libraries/messages.inc.php:1011 tbl_printview.php:310 tbl_structure.php:657 msgid "Space usage" msgstr "Pladsforbrug" -#: libraries/messages.inc.php:1016 libraries/mysql_charsets.lib.php:289 +#: libraries/messages.inc.php:1012 libraries/mysql_charsets.lib.php:289 msgid "Spanish" msgstr "Spansk" -#: libraries/messages.inc.php:1019 +#: libraries/messages.inc.php:1015 msgid "Export type" msgstr "Eksporttype" -#: libraries/messages.inc.php:1020 +#: libraries/messages.inc.php:1016 msgid "Export time in UTC" msgstr "" -#: libraries/messages.inc.php:1021 libraries/sqlparser.lib.php:173 +#: libraries/messages.inc.php:1017 libraries/sqlparser.lib.php:173 msgid "" "There is a chance that you may have found a bug in the SQL parser. Please " "examine your query closely, and check that the quotes are correct and not " @@ -5974,7 +5974,7 @@ msgstr "" "forårsager problemet, og indsend en fejlrapport med datablokken i KLIP-" "sektionen herunder:" -#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:137 +#: libraries/messages.inc.php:1018 libraries/sqlparser.lib.php:137 msgid "" "There seems to be an error in your SQL query. The MySQL server error output " "below, if there is any, may also help you in diagnosing the problem" @@ -5983,32 +5983,32 @@ msgstr "" "fejlmelding der følger herunder, hvis der er nogen, kan også hjælpe dig med " "at finde problemet." -#: libraries/messages.inc.php:1026 libraries/sqlparser.lib.php:495 +#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:495 msgid "Invalid Identifer" msgstr "Ugyldig identifikator" -#: libraries/messages.inc.php:1027 libraries/sqlparser.lib.php:344 +#: libraries/messages.inc.php:1023 libraries/sqlparser.lib.php:344 msgid "Unclosed quote" msgstr "Ikke-lukket quote" -#: libraries/messages.inc.php:1028 libraries/sqlparser.lib.php:612 +#: libraries/messages.inc.php:1024 libraries/sqlparser.lib.php:612 msgid "Unknown Punctuation String" msgstr "Ukendt tegnsætnings-streng" -#: libraries/messages.inc.php:1030 server_replication.php:327 +#: libraries/messages.inc.php:1026 server_replication.php:327 #: server_replication.php:328 msgid "Start" msgstr "" -#: libraries/messages.inc.php:1033 tbl_printview.php:369 tbl_structure.php:729 +#: libraries/messages.inc.php:1029 tbl_printview.php:369 tbl_structure.php:729 msgid "Statements" msgstr "Erklæringer" -#: libraries/messages.inc.php:1034 tbl_printview.php:380 tbl_structure.php:741 +#: libraries/messages.inc.php:1030 tbl_printview.php:380 tbl_structure.php:741 msgid "static" msgstr "" -#: libraries/messages.inc.php:1035 server_status.php:388 +#: libraries/messages.inc.php:1031 server_status.php:388 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -6016,202 +6016,202 @@ msgstr "" "På en travl server er der risiko for at bytetællerne løber over, så disse " "statistikker som rapporteret af MySQL-serveren kan være forkerte." -#: libraries/messages.inc.php:1038 server_replication.php:327 +#: libraries/messages.inc.php:1034 server_replication.php:327 #: server_replication.php:328 msgid "Stop" msgstr "" -#: libraries/messages.inc.php:1039 server_engines.php:49 +#: libraries/messages.inc.php:1035 server_engines.php:49 msgid "Storage Engines" msgstr "Datalagre" -#: libraries/messages.inc.php:1040 libraries/tbl_properties.inc.php:726 +#: libraries/messages.inc.php:1036 libraries/tbl_properties.inc.php:726 #: server_engines.php:58 tbl_operations.php:353 msgid "Storage Engine" msgstr "Datalager" -#: libraries/messages.inc.php:1042 +#: libraries/messages.inc.php:1038 msgid "CSV for MS Excel" msgstr "CSV til MS Excel-data" -#: libraries/messages.inc.php:1044 tbl_structure.php:516 tbl_structure.php:518 +#: libraries/messages.inc.php:1040 tbl_structure.php:516 tbl_structure.php:518 msgid "Propose table structure" msgstr "Foreslå tabelstruktur" -#: libraries/messages.inc.php:1045 server_synchronize.php:424 +#: libraries/messages.inc.php:1041 server_synchronize.php:424 #: server_synchronize.php:867 msgid "Structure Difference" msgstr "" -#: libraries/messages.inc.php:1049 server_synchronize.php:265 +#: libraries/messages.inc.php:1045 server_synchronize.php:265 msgid "Structure Synchronization" msgstr "" -#: libraries/messages.inc.php:1050 libraries/sql_query_form.lib.php:462 +#: libraries/messages.inc.php:1046 libraries/sql_query_form.lib.php:462 msgid "Submit" msgstr "Send" -#: libraries/messages.inc.php:1052 main.php:358 +#: libraries/messages.inc.php:1048 main.php:358 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " "issues." msgstr "" -#: libraries/messages.inc.php:1054 libraries/mysql_charsets.lib.php:295 +#: libraries/messages.inc.php:1050 libraries/mysql_charsets.lib.php:295 #: libraries/mysql_charsets.lib.php:392 msgid "Swedish" msgstr "Svensk" -#: libraries/messages.inc.php:1060 tbl_operations.php:556 +#: libraries/messages.inc.php:1056 tbl_operations.php:556 msgid "Switch to copied table" msgstr "Skift til den kopierede tabel" -#: libraries/messages.inc.php:1061 server_synchronize.php:1213 +#: libraries/messages.inc.php:1057 server_synchronize.php:1213 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." msgstr "" -#: libraries/messages.inc.php:1062 server_synchronize.php:451 +#: libraries/messages.inc.php:1058 server_synchronize.php:451 #: server_synchronize.php:896 msgid "Synchronize Databases" msgstr "" -#: libraries/messages.inc.php:1063 libraries/server_links.inc.php:92 +#: libraries/messages.inc.php:1059 libraries/server_links.inc.php:92 #: server_synchronize.php:1092 server_synchronize.php:1100 msgid "Synchronize" msgstr "" -#: libraries/messages.inc.php:1065 server_synchronize.php:430 +#: libraries/messages.inc.php:1061 server_synchronize.php:430 #: server_synchronize.php:873 msgid "Add column(s)" msgstr "" -#: libraries/messages.inc.php:1066 tbl_create.php:62 +#: libraries/messages.inc.php:1062 tbl_create.php:62 #, php-format msgid "Table %s already exists!" msgstr "Table %s already exists!" -#: libraries/messages.inc.php:1067 server_synchronize.php:432 +#: libraries/messages.inc.php:1063 server_synchronize.php:432 #: server_synchronize.php:875 msgid "Alter column(s)" msgstr "" -#: libraries/messages.inc.php:1068 tbl_addfield.php:189 tbl_alter.php:103 +#: libraries/messages.inc.php:1064 tbl_addfield.php:189 tbl_alter.php:103 #: tbl_indexes.php:98 #, php-format msgid "Table %1$s has been altered successfully" msgstr "" -#: libraries/messages.inc.php:1069 server_synchronize.php:434 +#: libraries/messages.inc.php:1065 server_synchronize.php:434 #: server_synchronize.php:877 msgid "Apply index(s)" msgstr "" -#: libraries/messages.inc.php:1071 server_synchronize.php:446 +#: libraries/messages.inc.php:1067 server_synchronize.php:446 #: server_synchronize.php:890 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: libraries/messages.inc.php:1072 tbl_move_copy.php:82 +#: libraries/messages.inc.php:1068 tbl_move_copy.php:82 msgid "The table name is empty!" msgstr "Intet tabelnavn!" -#: libraries/messages.inc.php:1073 tbl_create.php:249 +#: libraries/messages.inc.php:1069 tbl_create.php:249 #, php-format msgid "Table %1$s has been created." msgstr "" -#: libraries/messages.inc.php:1076 tbl_operations.php:628 +#: libraries/messages.inc.php:1072 tbl_operations.php:628 #, php-format msgid "Table %s has been flushed" msgstr "Tabel %s er blevet flushet" -#: libraries/messages.inc.php:1077 server_synchronize.php:436 +#: libraries/messages.inc.php:1073 server_synchronize.php:436 #: server_synchronize.php:879 msgid "Insert row(s)" msgstr "" -#: libraries/messages.inc.php:1078 libraries/tbl_links.inc.php:107 +#: libraries/messages.inc.php:1074 libraries/tbl_links.inc.php:107 #: libraries/tbl_links.inc.php:140 libraries/tbl_links.inc.php:141 msgid "Table seems to be empty!" msgstr "Tabel ser ud til at være tom" -#: libraries/messages.inc.php:1079 tbl_operations.php:568 +#: libraries/messages.inc.php:1075 tbl_operations.php:568 msgid "Table maintenance" msgstr "Tabelvedligeholdelse" -#: libraries/messages.inc.php:1080 libraries/tbl_properties.inc.php:618 +#: libraries/messages.inc.php:1076 libraries/tbl_properties.inc.php:618 #: server_synchronize.php:428 server_synchronize.php:871 msgid "Table name" msgstr "Tabelnavn" -#: libraries/messages.inc.php:1081 pdf_schema.php:1116 +#: libraries/messages.inc.php:1077 pdf_schema.php:1116 msgid "Table of contents" msgstr "Indholdsfortegnelse" -#: libraries/messages.inc.php:1082 tbl_operations.php:334 +#: libraries/messages.inc.php:1078 tbl_operations.php:334 msgid "Table options" msgstr "Tabel-indstillinger" -#: libraries/messages.inc.php:1083 server_synchronize.php:431 +#: libraries/messages.inc.php:1079 server_synchronize.php:431 #: server_synchronize.php:874 msgid "Remove column(s)" msgstr "" -#: libraries/messages.inc.php:1084 server_synchronize.php:433 +#: libraries/messages.inc.php:1080 server_synchronize.php:433 #: server_synchronize.php:876 msgid "Remove index(s)" msgstr "" -#: libraries/messages.inc.php:1088 server_synchronize.php:435 +#: libraries/messages.inc.php:1084 server_synchronize.php:435 #: server_synchronize.php:878 msgid "Update row(s)" msgstr "" -#: libraries/messages.inc.php:1090 server_synchronize.php:942 +#: libraries/messages.inc.php:1086 server_synchronize.php:942 msgid "Target database has been synchronized with source database" msgstr "" -#: libraries/messages.inc.php:1091 server_privileges.php:392 +#: libraries/messages.inc.php:1087 server_privileges.php:392 #: server_privileges.php:527 server_privileges.php:1679 #: server_privileges.php:1685 msgid "Table-specific privileges" msgstr "Tabel-specifikke privilegier" -#: libraries/messages.inc.php:1092 server_status.php:254 +#: libraries/messages.inc.php:1088 server_status.php:254 msgid "Temporary data" msgstr "Midlertidige data" -#: libraries/messages.inc.php:1093 tbl_change.php:728 +#: libraries/messages.inc.php:1089 tbl_change.php:728 msgid " Because of its length,
this field might not be editable " msgstr " På grund af feltets længde,
kan det muligvis ikke ændres " -#: libraries/messages.inc.php:1094 +#: libraries/messages.inc.php:1090 msgid "Texy! text" msgstr "" -#: libraries/messages.inc.php:1095 libraries/mysql_charsets.lib.php:298 +#: libraries/messages.inc.php:1091 libraries/mysql_charsets.lib.php:298 #: libraries/mysql_charsets.lib.php:395 msgid "Thai" msgstr "Thai" -#: libraries/messages.inc.php:1102 libraries/replication_gui.lib.php:308 +#: libraries/messages.inc.php:1098 libraries/replication_gui.lib.php:308 #: server_privileges.php:734 msgid "This Host" msgstr "Denne Host" -#: libraries/messages.inc.php:1103 server_status.php:252 +#: libraries/messages.inc.php:1099 server_status.php:252 msgid "Threads" msgstr "Tråde" -#: libraries/messages.inc.php:1104 server_processlist.php:22 +#: libraries/messages.inc.php:1100 server_processlist.php:22 #, php-format msgid "Thread %s was successfully killed." msgstr "Tråd %s blev stoppet." -#: libraries/messages.inc.php:1106 +#: libraries/messages.inc.php:1102 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -6220,181 +6220,181 @@ msgstr "" "normalt at phpMyAdmin ikke vil være i stand til at gennemføre importen med " "mindre du forøger PHP-tidsbegrænsningerne." -#: libraries/messages.inc.php:1109 pmd_pdf.php:94 +#: libraries/messages.inc.php:1105 pmd_pdf.php:94 msgid "to/from page" msgstr "til/fra side" -#: libraries/messages.inc.php:1110 pdf_pages.php:343 +#: libraries/messages.inc.php:1106 pdf_pages.php:343 msgid "Toggle scratchboard" msgstr "tegnebræt til/fra" -#: libraries/messages.inc.php:1111 pmd_general.php:99 +#: libraries/messages.inc.php:1107 pmd_general.php:99 msgid "Toggle small/big" msgstr "Skift mellem små/store" -#: libraries/messages.inc.php:1112 pmd_help.php:27 +#: libraries/messages.inc.php:1108 pmd_help.php:27 msgid "To select relation, click :" msgstr "For at vælge relation, klik :" -#: libraries/messages.inc.php:1115 libraries/tbl_links.inc.php:149 +#: libraries/messages.inc.php:1111 libraries/tbl_links.inc.php:149 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" -#: libraries/messages.inc.php:1116 tbl_tracking.php:655 +#: libraries/messages.inc.php:1112 tbl_tracking.php:655 msgid "Activate now" msgstr "" -#: libraries/messages.inc.php:1117 tbl_tracking.php:653 +#: libraries/messages.inc.php:1113 tbl_tracking.php:653 #, php-format msgid "Activate tracking for %s.%s" msgstr "" -#: libraries/messages.inc.php:1118 tbl_tracking.php:221 +#: libraries/messages.inc.php:1114 tbl_tracking.php:221 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/messages.inc.php:1119 tbl_tracking.php:688 +#: libraries/messages.inc.php:1115 tbl_tracking.php:688 msgid "Create version" msgstr "" -#: libraries/messages.inc.php:1120 tbl_tracking.php:668 +#: libraries/messages.inc.php:1116 tbl_tracking.php:668 #, php-format msgid "Create version %s of %s.%s" msgstr "" -#: libraries/messages.inc.php:1122 tbl_tracking.php:412 +#: libraries/messages.inc.php:1118 tbl_tracking.php:412 msgid "Data definition statement" msgstr "" -#: libraries/messages.inc.php:1123 tbl_tracking.php:463 +#: libraries/messages.inc.php:1119 tbl_tracking.php:463 msgid "Data manipulation statement" msgstr "" -#: libraries/messages.inc.php:1124 tbl_tracking.php:410 tbl_tracking.php:461 +#: libraries/messages.inc.php:1120 tbl_tracking.php:410 tbl_tracking.php:461 msgid "Date" msgstr "" -#: libraries/messages.inc.php:1125 tbl_tracking.php:642 +#: libraries/messages.inc.php:1121 tbl_tracking.php:642 msgid "Deactivate now" msgstr "" -#: libraries/messages.inc.php:1126 tbl_tracking.php:640 +#: libraries/messages.inc.php:1122 tbl_tracking.php:640 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "" -#: libraries/messages.inc.php:1127 tbl_tracking.php:521 +#: libraries/messages.inc.php:1123 tbl_tracking.php:521 #, php-format msgid "Export as %s" msgstr "" -#: libraries/messages.inc.php:1130 tbl_tracking.php:251 tbl_tracking.php:379 +#: libraries/messages.inc.php:1126 tbl_tracking.php:251 tbl_tracking.php:379 msgid "Close" msgstr "" -#: libraries/messages.inc.php:1131 tbl_tracking.php:114 +#: libraries/messages.inc.php:1127 tbl_tracking.php:114 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/messages.inc.php:1133 tbl_tracking.php:397 tbl_tracking.php:504 +#: libraries/messages.inc.php:1129 tbl_tracking.php:397 tbl_tracking.php:504 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "" -#: libraries/messages.inc.php:1134 tbl_tracking.php:561 +#: libraries/messages.inc.php:1130 tbl_tracking.php:561 msgid "Show versions" msgstr "" -#: libraries/messages.inc.php:1135 tbl_tracking.php:507 +#: libraries/messages.inc.php:1131 tbl_tracking.php:507 msgid "SQL dump (file download)" msgstr "" -#: libraries/messages.inc.php:1136 tbl_tracking.php:508 +#: libraries/messages.inc.php:1132 tbl_tracking.php:508 msgid "SQL dump" msgstr "" -#: libraries/messages.inc.php:1137 tbl_tracking.php:213 +#: libraries/messages.inc.php:1133 tbl_tracking.php:213 msgid "SQL statements executed." msgstr "" -#: libraries/messages.inc.php:1138 +#: libraries/messages.inc.php:1134 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/messages.inc.php:1139 tbl_tracking.php:509 +#: libraries/messages.inc.php:1135 tbl_tracking.php:509 msgid "SQL execution" msgstr "" -#: libraries/messages.inc.php:1140 tbl_tracking.php:230 +#: libraries/messages.inc.php:1136 tbl_tracking.php:230 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/messages.inc.php:1141 tbl_tracking.php:381 +#: libraries/messages.inc.php:1137 tbl_tracking.php:381 msgid "Tracking statements" msgstr "" -#: libraries/messages.inc.php:1148 tbl_tracking.php:593 +#: libraries/messages.inc.php:1144 tbl_tracking.php:593 msgid "Version" msgstr "" -#: libraries/messages.inc.php:1149 tbl_tracking.php:672 +#: libraries/messages.inc.php:1145 tbl_tracking.php:672 msgid "Track these data definition statements:" msgstr "" -#: libraries/messages.inc.php:1150 tbl_tracking.php:680 +#: libraries/messages.inc.php:1146 tbl_tracking.php:680 msgid "Track these data manipulation statements:" msgstr "" -#: libraries/messages.inc.php:1155 tbl_tracking.php:411 tbl_tracking.php:462 +#: libraries/messages.inc.php:1151 tbl_tracking.php:411 tbl_tracking.php:462 msgid "Username" msgstr "" -#: libraries/messages.inc.php:1156 tbl_tracking.php:203 +#: libraries/messages.inc.php:1152 tbl_tracking.php:203 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "" -#: libraries/messages.inc.php:1157 tbl_tracking.php:187 +#: libraries/messages.inc.php:1153 tbl_tracking.php:187 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "" -#: libraries/messages.inc.php:1158 tbl_tracking.php:195 +#: libraries/messages.inc.php:1154 tbl_tracking.php:195 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "" -#: libraries/messages.inc.php:1159 tbl_tracking.php:262 +#: libraries/messages.inc.php:1155 tbl_tracking.php:262 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/messages.inc.php:1161 tbl_tracking.php:220 +#: libraries/messages.inc.php:1157 tbl_tracking.php:220 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/messages.inc.php:1162 libraries/mysql_charsets.lib.php:219 +#: libraries/messages.inc.php:1158 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:362 msgid "Traditional Chinese" msgstr "Traditionelt Kinesisk" -#: libraries/messages.inc.php:1163 libraries/mysql_charsets.lib.php:292 +#: libraries/messages.inc.php:1159 libraries/mysql_charsets.lib.php:292 msgid "Traditional Spanish" msgstr "Traditionelt Spansk" -#: libraries/messages.inc.php:1164 server_status.php:388 +#: libraries/messages.inc.php:1160 server_status.php:388 msgid "Traffic" msgstr "Trafik" -#: libraries/messages.inc.php:1165 server_status.php:261 +#: libraries/messages.inc.php:1161 server_status.php:261 msgid "Transaction coordinator" msgstr "Transaktionskoordinator" -#: libraries/messages.inc.php:1166 +#: libraries/messages.inc.php:1162 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 " @@ -6406,7 +6406,7 @@ msgstr "" "tabelrække indeholdende filnavnet. Hvis du bruger anden indstilling, skal " "feltet i den første indstilling være sat til en tom streng." -#: libraries/messages.inc.php:1167 +#: libraries/messages.inc.php:1163 msgid "" "Displays hexadecimal representation of data. Optional first parameter " "specifies how often space will be added (defaults to 2 nibbles)." @@ -6414,7 +6414,7 @@ msgstr "" "Viser hexadecimal udgave af data. Valgfrit førsteparameter angiver hvor " "meget plads der tilføjes (standard er 2 nibbles)." -#: libraries/messages.inc.php:1168 +#: libraries/messages.inc.php:1164 msgid "" "Displays a clickable thumbnail. The options are the maximum width and height " "in pixels. The original aspect ratio is preserved." @@ -6422,15 +6422,15 @@ msgstr "" "Viser et klikbart minibillede; indstillinger: bredde,højde i pixel. Det " "originale perspektiv bevares." -#: libraries/messages.inc.php:1169 +#: libraries/messages.inc.php:1165 msgid "Displays a link to download this image." msgstr "Viser et link til dette billede (f.eks. direkte blob-download)." -#: libraries/messages.inc.php:1170 +#: libraries/messages.inc.php:1166 msgid "See image/jpeg: inline" msgstr "Se under image/jpeg: inline" -#: libraries/messages.inc.php:1171 +#: libraries/messages.inc.php:1167 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 " @@ -6450,7 +6450,7 @@ msgstr "" "dokumentationen for PHP's strftime() funktion og for \"utc\" sker det ved " "brug af gmdate() funktionen." -#: libraries/messages.inc.php:1172 +#: libraries/messages.inc.php:1168 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 " @@ -6474,14 +6474,14 @@ msgstr "" "parameter vil, hvis sat til 1, sætte et NOWRAP om cellens indhold så hele " "outputtet bliver vist uden omformattering (Standard 1)" -#: libraries/messages.inc.php:1173 +#: libraries/messages.inc.php:1169 msgid "" "Displays the contents of the field as-is, without running it through " "htmlspecialchars(). That is, the field is assumed to contain valid HTML." msgstr "" "Bevarer original formattering af feltet. Der laves ikke nogen Escaping." -#: libraries/messages.inc.php:1174 +#: libraries/messages.inc.php:1170 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 " @@ -6491,7 +6491,7 @@ msgstr "" "er et præfiks som \"http://domain.com/\", anden indstilling er bredde i " "pixel, tredie er højden." -#: libraries/messages.inc.php:1175 +#: libraries/messages.inc.php:1171 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 " @@ -6500,11 +6500,11 @@ msgstr "" "Viser et link, feltet indeholder filnavnet; første indstilling er et præfiks " "som \"http://domain.com/\", anden indstilling er en titel på linket." -#: libraries/messages.inc.php:1176 +#: libraries/messages.inc.php:1172 msgid "Formats text as SQL query with syntax highlighting." msgstr "Formatterer tekst som SQL-forespørgsel med syntaks farvemarkering." -#: libraries/messages.inc.php:1177 +#: libraries/messages.inc.php:1173 msgid "" "Displays a part of a string. The first option is the number of characters to " "skip from the beginning of the string (Default 0). The second option is the " @@ -6518,71 +6518,71 @@ msgstr "" "parameter definerer hvilke tegn der skal føjes til foran eller efter " "outputtet når en substring (understreng) returneres (Standard: \"...\") ." -#: libraries/messages.inc.php:1179 server_binlog.php:183 server_binlog.php:186 +#: libraries/messages.inc.php:1175 server_binlog.php:183 server_binlog.php:186 #: server_processlist.php:49 server_processlist.php:51 msgid "Truncate Shown Queries" msgstr "Trunkér viste forespørgsler" -#: libraries/messages.inc.php:1180 libraries/mysql_charsets.lib.php:301 +#: libraries/messages.inc.php:1176 libraries/mysql_charsets.lib.php:301 #: libraries/mysql_charsets.lib.php:389 msgid "Turkish" msgstr "Tyrkisk" -#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:304 +#: libraries/messages.inc.php:1179 libraries/mysql_charsets.lib.php:304 #: libraries/mysql_charsets.lib.php:386 msgid "Ukrainian" msgstr "Ukrainsk" -#: libraries/messages.inc.php:1185 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:1181 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 msgid "Unicode" msgstr "Unicode" -#: libraries/messages.inc.php:1187 libraries/mysql_charsets.lib.php:398 +#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:398 #: libraries/mysql_charsets.lib.php:405 msgid "unknown" msgstr "ukendt" -#: libraries/messages.inc.php:1190 server_privileges.php:1152 +#: libraries/messages.inc.php:1186 server_privileges.php:1152 #, php-format msgid "You have updated the privileges for %s." msgstr "Du har opdateret privilegierne for %s." -#: libraries/messages.inc.php:1191 user_password.php:112 +#: libraries/messages.inc.php:1187 user_password.php:112 msgid "The profile has been updated." msgstr "Profilen er blevet opdateret." -#: libraries/messages.inc.php:1193 libraries/relation.lib.php:138 +#: libraries/messages.inc.php:1189 libraries/relation.lib.php:138 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "Se venligst Dokumentationen for oplysninger om hvordan du opdaterer din " "Column_comments (kolonne-kommentarer) tabel" -#: libraries/messages.inc.php:1194 +#: libraries/messages.inc.php:1190 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Du burde opdatere til %s %s eller senere." -#: libraries/messages.inc.php:1204 tbl_printview.php:314 tbl_structure.php:661 +#: libraries/messages.inc.php:1200 tbl_printview.php:314 tbl_structure.php:661 msgid "Usage" msgstr "Benyttelse" -#: libraries/messages.inc.php:1205 +#: libraries/messages.inc.php:1201 msgid "Enclose table and field names with backquotes" msgstr "Brug \"backquotes\" omkring tabeller og felters navne" -#: libraries/messages.inc.php:1206 libraries/replication_gui.lib.php:314 +#: libraries/messages.inc.php:1202 libraries/replication_gui.lib.php:314 #: server_privileges.php:740 msgid "Use Host Table" msgstr "Brug Host Tabel" -#: libraries/messages.inc.php:1207 server_privileges.php:848 +#: libraries/messages.inc.php:1203 server_privileges.php:848 #, php-format msgid "The user %s already exists!" msgstr "Brugeren %s findes i forvejen!" -#: libraries/messages.inc.php:1209 libraries/replication_gui.lib.php:55 +#: libraries/messages.inc.php:1205 libraries/replication_gui.lib.php:55 #: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245 #: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255 #: server_privileges.php:672 server_privileges.php:675 @@ -6590,37 +6590,37 @@ msgstr "Brugeren %s findes i forvejen!" msgid "User name" msgstr "Brugernavn" -#: libraries/messages.inc.php:1210 server_privileges.php:1645 +#: libraries/messages.inc.php:1206 server_privileges.php:1645 msgid "The selected user was not found in the privilege table." msgstr "Den valgte bruger blev ikke fundet i privilegietabellen." -#: libraries/messages.inc.php:1211 server_privileges.php:1365 +#: libraries/messages.inc.php:1207 server_privileges.php:1365 msgid "User overview" msgstr "Brugeroversigt" -#: libraries/messages.inc.php:1212 server_privileges.php:1261 +#: libraries/messages.inc.php:1208 server_privileges.php:1261 msgid "The selected users have been deleted successfully." msgstr "De valgte brugere er blevet korrekt slettet." -#: libraries/messages.inc.php:1213 server_privileges.php:2026 +#: libraries/messages.inc.php:1209 server_privileges.php:2026 #, php-format msgid "Users having access to "%s"" msgstr "Brugere med adgang til "%s"" -#: libraries/messages.inc.php:1214 main.php:189 server_privileges.php:1350 +#: libraries/messages.inc.php:1210 main.php:189 server_privileges.php:1350 #: server_privileges.php:1497 server_privileges.php:1611 #: server_privileges.php:2029 server_processlist.php:54 msgid "User" msgstr "Bruger" -#: libraries/messages.inc.php:1215 tbl_change.php:1171 +#: libraries/messages.inc.php:1211 tbl_change.php:1171 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Brug TAB-tasten for at flytte dig fra værdi til værdi, eller CTRL" "+piletasterne til at flytte frit omkring" -#: libraries/messages.inc.php:1217 libraries/replication_gui.lib.php:251 +#: libraries/messages.inc.php:1213 libraries/replication_gui.lib.php:251 #: libraries/replication_gui.lib.php:319 libraries/replication_gui.lib.php:342 #: server_privileges.php:678 server_privileges.php:745 #: server_privileges.php:769 server_privileges.php:1889 @@ -6628,7 +6628,7 @@ msgstr "" msgid "Use text field" msgstr "Brug tekstfelt" -#: libraries/messages.inc.php:1221 libraries/sqlvalidator.lib.php:68 +#: libraries/messages.inc.php:1217 libraries/sqlvalidator.lib.php:68 #, php-format msgid "" "The SQL validator could not be initialized. Please check if you have " @@ -6637,85 +6637,85 @@ msgstr "" "SQL-validatoren kunne ikke initialiseres. Check venligst at du har de " "nødvendige PHP-udvidelser installeret som beskrevet i %sdokumentationen%s." -#: libraries/messages.inc.php:1222 libraries/replication_gui.lib.php:111 +#: libraries/messages.inc.php:1218 libraries/replication_gui.lib.php:111 #: server_status.php:627 tbl_change.php:324 tbl_printview.php:370 #: tbl_select.php:139 tbl_structure.php:730 msgid "Value" msgstr "Værdi" -#: libraries/messages.inc.php:1223 libraries/replication_gui.lib.php:110 +#: libraries/messages.inc.php:1219 libraries/replication_gui.lib.php:110 #: libraries/sql_query_form.lib.php:445 server_status.php:626 #: server_variables.php:52 msgid "Variable" msgstr "Variabel" -#: libraries/messages.inc.php:1225 server_export.php:21 +#: libraries/messages.inc.php:1221 server_export.php:21 msgid "View dump (schema) of databases" msgstr "Vis dump (skema) for databaser" -#: libraries/messages.inc.php:1227 tbl_export.php:23 +#: libraries/messages.inc.php:1223 tbl_export.php:23 msgid "View dump (schema) of table" msgstr "Vis dump (skema) over tabel" -#: libraries/messages.inc.php:1231 view_create.php:142 +#: libraries/messages.inc.php:1227 view_create.php:142 msgid "VIEW name" msgstr "VIEW navn" -#: libraries/messages.inc.php:1237 main.php:205 +#: libraries/messages.inc.php:1233 main.php:205 msgid "Web server" msgstr "" -#: libraries/messages.inc.php:1239 libraries/mysql_charsets.lib.php:277 +#: libraries/messages.inc.php:1235 libraries/mysql_charsets.lib.php:277 #: libraries/mysql_charsets.lib.php:325 msgid "West European" msgstr "Vesteuropæisk" -#: libraries/messages.inc.php:1240 main.php:230 +#: libraries/messages.inc.php:1236 main.php:230 msgid "Wiki" msgstr "" -#: libraries/messages.inc.php:1241 server_privileges.php:2138 +#: libraries/messages.inc.php:1237 server_privileges.php:2138 msgid "wildcard" msgstr "jokertegn" -#: libraries/messages.inc.php:1248 +#: libraries/messages.inc.php:1244 msgid "Export contents" msgstr "" -#: libraries/messages.inc.php:1249 +#: libraries/messages.inc.php:1245 msgid "Export functions" msgstr "" -#: libraries/messages.inc.php:1250 +#: libraries/messages.inc.php:1246 msgid "Export procedures" msgstr "" -#: libraries/messages.inc.php:1251 +#: libraries/messages.inc.php:1247 msgid "Export Structure Schemas (recommended)" msgstr "" -#: libraries/messages.inc.php:1252 +#: libraries/messages.inc.php:1248 msgid "Export tables" msgstr "" -#: libraries/messages.inc.php:1253 +#: libraries/messages.inc.php:1249 msgid "Export triggers" msgstr "" -#: libraries/messages.inc.php:1254 +#: libraries/messages.inc.php:1250 msgid "Export views" msgstr "" -#: libraries/messages.inc.php:1255 +#: libraries/messages.inc.php:1251 msgid "XML" msgstr "XML" -#: libraries/messages.inc.php:1259 server_privileges.php:592 +#: libraries/messages.inc.php:1255 server_privileges.php:592 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" "Bemærk: Indstilling af disse værdier til 0 (nul) fjerner begrænsningen." -#: libraries/messages.inc.php:1260 +#: libraries/messages.inc.php:1256 msgid "\"zipped\"" msgstr "\"zippet\"" diff --git a/po/de.po b/po/de.po index 5ee33770a..5e97244d7 100644 --- 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-05-13 11:25+0200\n" +"POT-Creation-Date: 2010-05-13 11:30+0200\n" "PO-Revision-Date: 2010-05-11 15:22+0200\n" "Last-Translator: \n" "Language-Team: german \n" @@ -15,19 +15,19 @@ msgstr "" "X-Generator: Pootle 2.0.1\n" #: browse_foreigners.php:38 browse_foreigners.php:59 -#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:870 +#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:866 #: server_privileges.php:1475 msgid "Show all" msgstr "Alles anzeigen" #: browse_foreigners.php:82 db_operations.php:648 -#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:394 -#: libraries/export/pdf.php:147 libraries/messages.inc.php:597 +#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394 +#: libraries/export/pdf.php:147 libraries/messages.inc.php:593 #: pdf_schema.php:283 pdf_schema.php:1123 pdf_schema.php:1139 msgid "Page number:" msgstr "Seite:" -#: browse_foreigners.php:132 libraries/messages.inc.php:1242 +#: browse_foreigners.php:132 libraries/messages.inc.php:1238 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -40,7 +40,7 @@ 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/db_links.inc.php:75 -#: libraries/messages.inc.php:841 libraries/tbl_links.inc.php:63 +#: libraries/messages.inc.php:837 libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Suche" @@ -49,12 +49,12 @@ msgstr "Suche" #: db_search.php:362 db_structure.php:567 js/messages.php:48 #: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2267 +#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 #: 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 #: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614 -#: libraries/messages.inc.php:361 libraries/replication_gui.lib.php:73 +#: libraries/messages.inc.php:357 libraries/replication_gui.lib.php:73 #: libraries/replication_gui.lib.php:365 libraries/select_server.lib.php:104 #: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477 #: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782 @@ -74,33 +74,33 @@ msgid "Go" msgstr "OK" #: browse_foreigners.php:168 browse_foreigners.php:172 -#: libraries/Index.class.php:442 libraries/messages.inc.php:459 +#: libraries/Index.class.php:442 libraries/messages.inc.php:455 #: tbl_tracking.php:320 msgid "Keyname" msgstr "Name" #: browse_foreigners.php:169 browse_foreigners.php:171 -#: libraries/messages.inc.php:252 server_collations.php:55 +#: libraries/messages.inc.php:248 server_collations.php:55 #: server_collations.php:67 server_engines.php:59 server_status.php:628 msgid "Description" msgstr "Beschreibung" #: browse_foreigners.php:247 browse_foreigners.php:256 #: browse_foreigners.php:268 browse_foreigners.php:276 -#: libraries/messages.inc.php:1218 +#: libraries/messages.inc.php:1214 msgid "Use this value" msgstr "Diesen Wert verwenden" -#: db_create.php:46 libraries/messages.inc.php:215 +#: db_create.php:46 libraries/messages.inc.php:211 #, php-format msgid "Database %1$s has been created." msgstr "Die Datenbank %1$s wurde erzeugt." -#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:232 +#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:228 msgid "Database comment: " msgstr "Datenbankkommentar: " -#: db_datadict.php:165 libraries/messages.inc.php:1070 +#: db_datadict.php:165 libraries/messages.inc.php:1066 #: libraries/tbl_properties.inc.php:724 pdf_schema.php:1236 #: tbl_operations.php:345 tbl_printview.php:130 msgid "Table comments" @@ -109,7 +109,7 @@ msgstr "Tabellen-Kommentar" #: db_datadict.php:174 db_qbe.php:174 libraries/Index.class.php:446 #: libraries/export/htmlword.php:244 libraries/export/latex.php:360 #: libraries/export/odt.php:294 libraries/export/texytext.php:233 -#: libraries/messages.inc.php:317 libraries/tbl_properties.inc.php:99 +#: libraries/messages.inc.php:313 libraries/tbl_properties.inc.php:99 #: libraries/tbl_properties.inc.php:275 pdf_schema.php:1262 #: pdf_schema.php:1283 tbl_change.php:308 tbl_indexes.php:189 #: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135 @@ -121,7 +121,7 @@ msgstr "Feld" #: libraries/db_events.inc.php:31 libraries/db_routines.inc.php:42 #: 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/messages.inc.php:1181 +#: libraries/export/texytext.php:234 libraries/messages.inc.php:1177 #: libraries/tbl_properties.inc.php:100 pdf_schema.php:1263 #: pdf_schema.php:1284 server_privileges.php:2031 tbl_change.php:287 #: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313 @@ -133,7 +133,7 @@ msgstr "Typ" #: db_datadict.php:177 libraries/Index.class.php:449 #: libraries/export/htmlword.php:246 libraries/export/latex.php:360 #: libraries/export/odt.php:300 libraries/export/texytext.php:235 -#: libraries/messages.inc.php:576 libraries/tbl_properties.inc.php:109 +#: libraries/messages.inc.php:572 libraries/tbl_properties.inc.php:109 #: pdf_schema.php:1265 pdf_schema.php:1286 tbl_change.php:323 #: tbl_printview.php:145 tbl_structure.php:181 tbl_tracking.php:276 #: tbl_tracking.php:327 @@ -142,7 +142,7 @@ msgstr "Null" #: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 -#: libraries/export/texytext.php:236 libraries/messages.inc.php:238 +#: libraries/export/texytext.php:236 libraries/messages.inc.php:234 #: libraries/tbl_properties.inc.php:106 pdf_schema.php:1266 #: pdf_schema.php:1287 tbl_printview.php:146 tbl_structure.php:182 #: tbl_tracking.php:277 @@ -151,14 +151,14 @@ msgstr "Standard" #: db_datadict.php:182 libraries/export/htmlword.php:249 #: libraries/export/latex.php:362 libraries/export/odt.php:307 -#: libraries/export/texytext.php:238 libraries/messages.inc.php:483 +#: libraries/export/texytext.php:238 libraries/messages.inc.php:479 #: pdf_schema.php:1268 pdf_schema.php:1289 tbl_printview.php:150 msgid "Links to" msgstr "Verweise" #: db_datadict.php:184 db_printview.php:112 libraries/export/htmlword.php:252 #: libraries/export/latex.php:365 libraries/export/odt.php:312 -#: libraries/export/texytext.php:241 libraries/messages.inc.php:163 +#: libraries/export/texytext.php:241 libraries/messages.inc.php:159 #: libraries/tbl_properties.inc.php:130 pdf_schema.php:1279 #: pdf_schema.php:1290 tbl_printview.php:152 msgid "Comments" @@ -167,7 +167,7 @@ msgstr "Kommentare" #: db_datadict.php:267 libraries/Index.class.php:359 #: 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/messages.inc.php:559 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:555 #: libraries/mult_submits.inc.php:263 pdf_schema.php:1344 #: server_privileges.php:1529 server_privileges.php:1540 #: server_privileges.php:1850 server_privileges.php:1855 @@ -179,7 +179,7 @@ msgstr "Nein" #: db_datadict.php:267 libraries/Index.class.php:360 #: libraries/Index.class.php:385 libraries/export/htmlword.php:322 #: libraries/export/latex.php:430 libraries/export/odt.php:368 -#: libraries/export/texytext.php:311 libraries/messages.inc.php:1257 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:1253 #: libraries/mult_submits.inc.php:45 libraries/mult_submits.inc.php:50 #: libraries/mult_submits.inc.php:55 libraries/mult_submits.inc.php:60 #: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:101 @@ -193,108 +193,108 @@ msgstr "Nein" msgid "Yes" msgstr "Ja" -#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:670 +#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:666 #: tbl_printview.php:498 msgid "Print" msgstr "Drucken" -#: db_export.php:29 libraries/messages.inc.php:1226 +#: db_export.php:29 libraries/messages.inc.php:1222 msgid "View dump (schema) of database" msgstr "Dump (Schema) der Datenbank anzeigen" #: db_export.php:33 db_printview.php:96 db_qbe.php:102 db_structure.php:51 -#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:568 +#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:564 #: navigation.php:346 msgid "No tables found in database." msgstr "Es wurden keine Tabellen in der Datenbank gefunden." -#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:845 +#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:841 #: server_export.php:27 msgid "Select All" msgstr "Alle auswählen" -#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1188 +#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1184 #: server_export.php:29 msgid "Unselect All" msgstr "Auswahl entfernen" -#: db_operations.php:38 libraries/messages.inc.php:213 tbl_create.php:54 +#: db_operations.php:38 libraries/messages.inc.php:209 tbl_create.php:54 msgid "The database name is empty!" msgstr "Der Datenbankname ist leer!" -#: db_operations.php:236 libraries/messages.inc.php:753 +#: db_operations.php:236 libraries/messages.inc.php:749 #, php-format msgid "Database %s has been renamed to %s" msgstr "Datenbank %s wurde umbenannt zu %s" -#: db_operations.php:240 libraries/messages.inc.php:178 +#: db_operations.php:240 libraries/messages.inc.php:174 #, php-format msgid "Database %s has been copied to %s" msgstr "Datenbank %s wurde nach %s kopiert" -#: db_operations.php:410 libraries/messages.inc.php:236 +#: db_operations.php:410 libraries/messages.inc.php:232 msgid "Rename database to" msgstr "Datenbank umbenennen in" -#: db_operations.php:415 libraries/messages.inc.php:161 +#: db_operations.php:415 libraries/messages.inc.php:157 #: server_processlist.php:57 msgid "Command" msgstr "Befehl" -#: db_operations.php:425 libraries/messages.inc.php:58 tbl_change.php:1143 +#: db_operations.php:425 libraries/messages.inc.php:54 tbl_change.php:1143 msgid "and then" msgstr "und dann" -#: db_operations.php:451 libraries/messages.inc.php:233 +#: db_operations.php:451 libraries/messages.inc.php:229 msgid "Copy database to" msgstr "Datenbank kopieren nach" -#: db_operations.php:458 libraries/messages.inc.php:1043 +#: db_operations.php:458 libraries/messages.inc.php:1039 #: tbl_operations.php:526 tbl_tracking.php:388 msgid "Structure only" msgstr "Nur Struktur" -#: db_operations.php:459 libraries/messages.inc.php:1041 +#: db_operations.php:459 libraries/messages.inc.php:1037 #: tbl_operations.php:527 tbl_tracking.php:390 msgid "Structure and data" msgstr "Struktur und Daten" -#: db_operations.php:460 libraries/messages.inc.php:229 tbl_operations.php:528 +#: db_operations.php:460 libraries/messages.inc.php:225 tbl_operations.php:528 #: tbl_tracking.php:389 msgid "Data only" msgstr "Nur Daten" -#: db_operations.php:468 libraries/messages.inc.php:186 +#: db_operations.php:468 libraries/messages.inc.php:182 msgid "CREATE DATABASE before copying" msgstr "Vor dem Kopieren CREATE DATABASE ausführen." #: db_operations.php:471 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 -#: libraries/export/sql.php:82 libraries/messages.inc.php:30 +#: libraries/export/sql.php:82 libraries/messages.inc.php:26 #: tbl_operations.php:534 #, php-format msgid "Add %s" msgstr "Füge %s hinzu" -#: db_operations.php:475 libraries/messages.inc.php:29 tbl_operations.php:297 +#: db_operations.php:475 libraries/messages.inc.php:25 tbl_operations.php:297 #: tbl_operations.php:536 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT-Wert hinzufügen" -#: db_operations.php:479 libraries/messages.inc.php:31 tbl_operations.php:543 +#: db_operations.php:479 libraries/messages.inc.php:27 tbl_operations.php:543 msgid "Add constraints" msgstr "Constraints hinzufügen" -#: db_operations.php:492 libraries/messages.inc.php:1059 +#: db_operations.php:492 libraries/messages.inc.php:1055 msgid "Switch to copied database" msgstr "Zu kopierter Datenbank wechseln" -#: db_operations.php:533 libraries/messages.inc.php:89 +#: db_operations.php:533 libraries/messages.inc.php:85 msgid "BLOB Repository" msgstr "BLOB-Repository" #: db_operations.php:536 db_tracking.php:76 libraries/common.lib.php:1350 -#: libraries/messages.inc.php:1037 libraries/server_links.inc.php:49 +#: libraries/messages.inc.php:1033 libraries/server_links.inc.php:49 #: server_processlist.php:59 tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "Status" @@ -304,11 +304,11 @@ msgctxt "BLOB repository" msgid "Enabled" msgstr "Aktiviert" -#: db_operations.php:548 libraries/messages.inc.php:93 +#: db_operations.php:548 libraries/messages.inc.php:89 msgid "Disable" msgstr "Deaktivieren" -#: db_operations.php:558 libraries/messages.inc.php:90 +#: db_operations.php:558 libraries/messages.inc.php:86 msgid "Damaged" msgstr "Beschädigt" @@ -322,12 +322,12 @@ msgctxt "BLOB repository" msgid "Disabled" msgstr "Deaktiviert" -#: db_operations.php:574 libraries/messages.inc.php:96 +#: db_operations.php:574 libraries/messages.inc.php:92 msgid "Enable" msgstr "Aktivieren" #: db_operations.php:598 libraries/Index.class.php:448 -#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:158 +#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:154 #: 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:361 @@ -336,7 +336,7 @@ msgstr "Aktivieren" msgid "Collation" msgstr "Kollation" -#: db_operations.php:609 libraries/messages.inc.php:742 main.php:316 +#: db_operations.php:609 libraries/messages.inc.php:738 main.php:316 #: pdf_schema.php:34 #, php-format msgid "" @@ -346,58 +346,58 @@ msgstr "" "Die zusätzlichen Funktionen für verknüpfte Tabellen wurden automatisch " "deaktiviert. Klicken Sie %shier%s um herauszufinden warum." -#: db_operations.php:645 libraries/messages.inc.php:264 pdf_pages.php:528 +#: db_operations.php:645 libraries/messages.inc.php:260 pdf_pages.php:528 msgid "Display PDF schema" msgstr "PDF-Schema anzeigen" -#: db_operations.php:661 libraries/messages.inc.php:877 pdf_pages.php:529 +#: db_operations.php:661 libraries/messages.inc.php:873 pdf_pages.php:529 msgid "Show grid" msgstr "Gitterlinien anzeigen" -#: db_operations.php:664 libraries/messages.inc.php:874 pdf_pages.php:530 +#: db_operations.php:664 libraries/messages.inc.php:870 pdf_pages.php:530 msgid "Show color" msgstr "mehrfarbig" -#: db_operations.php:666 libraries/messages.inc.php:998 pdf_pages.php:531 +#: db_operations.php:666 libraries/messages.inc.php:994 pdf_pages.php:531 msgid "Show dimension of tables" msgstr "Tabellendimensionen anzeigen." -#: db_operations.php:669 libraries/messages.inc.php:52 pdf_pages.php:532 +#: db_operations.php:669 libraries/messages.inc.php:48 pdf_pages.php:532 msgid "Display all tables with the same width" msgstr "Sollen alle Tabellen mit der gleichen Breite angezeigt werden?" -#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:227 +#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:223 #: pdf_pages.php:533 msgid "Data Dictionary" msgstr "Strukturverzeichnis" -#: db_operations.php:674 libraries/messages.inc.php:884 pdf_pages.php:534 +#: db_operations.php:674 libraries/messages.inc.php:880 pdf_pages.php:534 msgid "Only show keys" msgstr "Nur Schlüssel anzeigen" -#: db_operations.php:676 libraries/messages.inc.php:875 pdf_pages.php:535 +#: db_operations.php:676 libraries/messages.inc.php:871 pdf_pages.php:535 msgid "Data Dictionary Format" msgstr "Format des Strukturverzeichnisses" -#: db_operations.php:678 libraries/messages.inc.php:464 pdf_pages.php:537 +#: db_operations.php:678 libraries/messages.inc.php:460 pdf_pages.php:537 msgid "Landscape" msgstr "Querformat" -#: db_operations.php:679 libraries/messages.inc.php:663 pdf_pages.php:538 +#: db_operations.php:679 libraries/messages.inc.php:659 pdf_pages.php:538 msgid "Portrait" msgstr "Hochformat" -#: db_operations.php:682 libraries/messages.inc.php:599 pdf_pages.php:541 +#: db_operations.php:682 libraries/messages.inc.php:595 pdf_pages.php:541 msgid "Paper size" msgstr "Papiergröße" -#: db_operations.php:706 libraries/messages.inc.php:281 +#: db_operations.php:706 libraries/messages.inc.php:277 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 libraries/messages.inc.php:1087 +#: libraries/header.inc.php:126 libraries/messages.inc.php:1083 #: pdf_pages.php:405 server_privileges.php:1626 server_privileges.php:1682 #: server_privileges.php:1946 server_synchronize.php:423 #: server_synchronize.php:866 tbl_tracking.php:592 test/theme.php:75 @@ -405,176 +405,176 @@ msgid "Table" msgstr "Tabelle" #: db_printview.php:105 libraries/db_structure.lib.php:56 -#: libraries/messages.inc.php:735 +#: libraries/messages.inc.php:731 msgid "Records" msgstr "Einträge" #: db_printview.php:109 libraries/db_structure.lib.php:67 -#: libraries/messages.inc.php:1003 tbl_indexes.php:190 +#: libraries/messages.inc.php:999 tbl_indexes.php:190 msgid "Size" msgstr "Größe" #: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 -#: libraries/export/sql.php:899 libraries/messages.inc.php:436 +#: libraries/export/sql.php:899 libraries/messages.inc.php:432 msgid "in use" msgstr "in Benutzung" #: db_printview.php:187 libraries/db_info.inc.php:88 -#: libraries/export/sql.php:514 libraries/messages.inc.php:1032 +#: libraries/export/sql.php:514 libraries/messages.inc.php:1028 #: pdf_schema.php:1241 tbl_printview.php:434 tbl_structure.php:810 msgid "Creation" msgstr "Erzeugt am" #: db_printview.php:196 libraries/db_info.inc.php:93 -#: libraries/export/sql.php:519 libraries/messages.inc.php:1036 +#: libraries/export/sql.php:519 libraries/messages.inc.php:1032 #: pdf_schema.php:1246 tbl_printview.php:444 tbl_structure.php:818 msgid "Last update" msgstr "Aktualisiert am" #: db_printview.php:205 libraries/db_info.inc.php:98 -#: libraries/export/sql.php:524 libraries/messages.inc.php:1031 +#: libraries/export/sql.php:524 libraries/messages.inc.php:1027 #: pdf_schema.php:1251 tbl_printview.php:454 tbl_structure.php:826 msgid "Last check" msgstr "Letzter Check am" -#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1085 +#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1081 #, php-format msgid "%s table(s)" msgstr "%s Tabellen" #: db_qbe.php:29 libraries/display_tbl.lib.php:1981 -#: libraries/messages.inc.php:1051 libraries/sql_query_form.lib.php:140 +#: libraries/messages.inc.php:1047 libraries/sql_query_form.lib.php:140 #: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131 #: view_operations.php:62 msgid "Your SQL query has been executed successfully" msgstr "Ihr SQL-Befehl wurde erfolgreich ausgeführt." -#: db_qbe.php:42 libraries/messages.inc.php:371 +#: db_qbe.php:42 libraries/messages.inc.php:367 msgid "You have to choose at least one column to display" msgstr "Bitte wählen Sie mindestens eine anzuzeigende Spalte" #: db_qbe.php:200 libraries/db_structure.lib.php:104 -#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1014 +#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1010 msgid "Sort" msgstr "Sortierung" #: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111 #: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828 -#: libraries/messages.inc.php:69 server_databases.php:170 +#: libraries/messages.inc.php:65 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314 msgid "Ascending" msgstr "aufsteigend" #: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119 #: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825 -#: libraries/messages.inc.php:251 server_databases.php:170 +#: libraries/messages.inc.php:247 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315 msgid "Descending" msgstr "absteigend" #: db_qbe.php:264 db_tracking.php:78 libraries/display_tbl.lib.php:308 -#: libraries/messages.inc.php:888 tbl_change.php:277 tbl_tracking.php:597 +#: libraries/messages.inc.php:884 tbl_change.php:277 tbl_tracking.php:597 msgid "Show" msgstr "Zeige" -#: db_qbe.php:300 libraries/messages.inc.php:202 +#: db_qbe.php:300 libraries/messages.inc.php:198 msgid "Criteria" msgstr "Kriterium" #: db_qbe.php:353 db_qbe.php:435 db_qbe.php:527 db_qbe.php:558 -#: libraries/messages.inc.php:718 +#: libraries/messages.inc.php:714 msgid "Ins" msgstr "Einf." #: db_qbe.php:357 db_qbe.php:439 db_qbe.php:524 db_qbe.php:555 -#: libraries/messages.inc.php:56 +#: libraries/messages.inc.php:52 msgid "And" msgstr "und" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:529 db_qbe.php:560 -#: libraries/messages.inc.php:717 +#: libraries/messages.inc.php:713 msgid "Del" 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/messages.inc.php:592 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:588 #: libraries/tbl_properties.inc.php:779 server_privileges.php:258 #: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288 msgid "Or" msgstr "oder" -#: db_qbe.php:507 libraries/messages.inc.php:516 +#: db_qbe.php:507 libraries/messages.inc.php:512 msgid "Modify" msgstr "Verändern" -#: db_qbe.php:584 libraries/messages.inc.php:33 +#: db_qbe.php:584 libraries/messages.inc.php:29 msgid "Add/Delete Criteria Row" msgstr "Zeilen hinzufügen/entfernen" -#: db_qbe.php:596 libraries/messages.inc.php:32 +#: db_qbe.php:596 libraries/messages.inc.php:28 msgid "Add/Delete Field Columns" msgstr "Spalten hinzufügen/entfernen" -#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1192 +#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1188 msgid "Update Query" msgstr "Aktualisieren" -#: db_qbe.php:617 libraries/messages.inc.php:1216 +#: db_qbe.php:617 libraries/messages.inc.php:1212 msgid "Use Tables" msgstr "Verwendete Tabellen" -#: db_qbe.php:640 libraries/messages.inc.php:723 +#: db_qbe.php:640 libraries/messages.inc.php:719 #, php-format msgid "SQL query on database %s:" msgstr " SQL-Befehl in der Datenbank %s:" -#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:823 +#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:819 msgid "Submit Query" msgstr "SQL-Befehl ausführen" #: db_search.php:68 libraries/auth/config.auth.lib.php:84 #: libraries/auth/config.auth.lib.php:103 #: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52 -#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:26 +#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:22 msgid "Access denied" msgstr "Zugriff verweigert." -#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:836 +#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:832 msgid "at least one of the words" msgstr "mindestens eines der Wörter" -#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:837 +#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:833 msgid "all words" msgstr "alle Wörter" -#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:838 +#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:834 msgid "the exact phrase" msgstr "genau diese Zeichenkette" -#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:839 +#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:835 msgid "as regular expression" msgstr "als regulären Ausdruck" -#: db_search.php:242 libraries/messages.inc.php:840 +#: db_search.php:242 libraries/messages.inc.php:836 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Suchergebnisse für \"%s\" %s:" -#: db_search.php:260 libraries/messages.inc.php:579 +#: db_search.php:260 libraries/messages.inc.php:575 #, php-format msgid "%s match(es) inside table %s" 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/messages.inc.php:108 +#: db_structure.php:105 libraries/messages.inc.php:104 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468 msgid "Browse" msgstr "Anzeigen" #: db_search.php:272 libraries/display_tbl.lib.php:1165 -#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:243 +#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:239 #: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406 #: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377 #: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216 @@ -582,45 +582,45 @@ msgstr "Anzeigen" msgid "Delete" msgstr "Löschen" -#: db_search.php:285 libraries/messages.inc.php:580 +#: db_search.php:285 libraries/messages.inc.php:576 #, php-format msgid "Total: %s match(es)" msgstr "Insgesamt %s Treffer" -#: db_search.php:299 libraries/messages.inc.php:832 +#: db_search.php:299 libraries/messages.inc.php:828 msgid "Search in database" msgstr "Durchsuche die Datenbank" -#: db_search.php:302 libraries/messages.inc.php:835 +#: db_search.php:302 libraries/messages.inc.php:831 msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgstr "Zu suchende Wörter oder Werte (Platzhalter: \"%\"):" -#: db_search.php:307 libraries/messages.inc.php:842 +#: db_search.php:307 libraries/messages.inc.php:838 msgid "Find:" msgstr "Finde:" -#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1017 +#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1013 msgid "Words are separated by a space character (\" \")." msgstr "Die Wörter werden durch Leerzeichen (\" \") getrennt." -#: db_search.php:325 libraries/messages.inc.php:834 +#: db_search.php:325 libraries/messages.inc.php:830 msgid "Inside table(s):" msgstr "In der / den Tabelle(n):" -#: db_search.php:355 libraries/messages.inc.php:833 +#: db_search.php:355 libraries/messages.inc.php:829 msgid "Inside field:" 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/messages.inc.php:431 libraries/sql_query_form.lib.php:334 +#: libraries/messages.inc.php:427 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/db_links.inc.php:63 libraries/export/latex.php:337 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:1048 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:1044 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 #: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269 msgid "Structure" @@ -629,8 +629,8 @@ 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:1642 -#: libraries/db_links.inc.php:100 libraries/messages.inc.php:272 +#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/db_links.inc.php:100 libraries/messages.inc.php:268 #: 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 @@ -640,40 +640,40 @@ 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:1641 -#: libraries/messages.inc.php:284 libraries/mult_submits.inc.php:39 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: libraries/messages.inc.php:280 libraries/mult_submits.inc.php:39 #: libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Leeren" -#: db_structure.php:316 libraries/messages.inc.php:1075 +#: db_structure.php:316 libraries/messages.inc.php:1071 #: libraries/tbl_links.inc.php:100 #, php-format msgid "Table %s has been emptied" msgstr "Die Tabelle %s wurde geleert." -#: db_structure.php:326 libraries/messages.inc.php:1229 +#: db_structure.php:326 libraries/messages.inc.php:1225 #: 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/messages.inc.php:1074 +#: db_structure.php:326 libraries/messages.inc.php:1070 #: 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 libraries/messages.inc.php:1128 +#: db_structure.php:333 libraries/messages.inc.php:1124 msgid "Tracking is active." msgstr "Tracking ist aktiviert." -#: db_structure.php:335 libraries/messages.inc.php:1129 +#: db_structure.php:335 libraries/messages.inc.php:1125 msgid "Tracking is not active." msgstr "Tracking ist nicht aktiviert." #: db_structure.php:420 libraries/display_tbl.lib.php:1944 -#: libraries/messages.inc.php:1228 +#: libraries/messages.inc.php:1224 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -683,83 +683,83 @@ msgstr "" "sDokumentation%s." #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 -#: libraries/messages.inc.php:1233 libraries/tbl_info.inc.php:66 +#: libraries/messages.inc.php:1229 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/messages.inc.php:773 libraries/server_links.inc.php:70 +#: libraries/messages.inc.php:769 libraries/server_links.inc.php:70 #: server_replication.php:33 server_replication.php:164 server_status.php:258 msgid "Replication" msgstr "Replikation" -#: db_structure.php:489 libraries/messages.inc.php:1053 +#: db_structure.php:489 libraries/messages.inc.php:1049 msgid "Sum" msgstr "Gesamt" #: db_structure.php:496 libraries/StorageEngine.class.php:356 -#: libraries/messages.inc.php:239 +#: libraries/messages.inc.php:235 #, 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 #: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086 -#: libraries/messages.inc.php:1243 libraries/mult_submits.inc.php:16 +#: libraries/messages.inc.php:1239 libraries/mult_submits.inc.php:16 #: server_databases.php:346 server_databases.php:351 #: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465 msgid "With selected:" msgstr "markierte:" #: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: libraries/messages.inc.php:148 server_databases.php:348 +#: libraries/messages.inc.php:144 server_databases.php:348 #: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459 msgid "Check All" msgstr "Alle auswählen" #: db_structure.php:531 libraries/display_tbl.lib.php:2077 -#: libraries/messages.inc.php:1184 libraries/replication_gui.lib.php:33 +#: libraries/messages.inc.php:1180 libraries/replication_gui.lib.php:33 #: server_databases.php:350 server_privileges.php:533 #: server_privileges.php:1564 tbl_structure.php:463 msgid "Uncheck All" msgstr "Auswahl entfernen" -#: db_structure.php:536 libraries/messages.inc.php:150 +#: db_structure.php:536 libraries/messages.inc.php:146 msgid "Check tables having overhead" msgstr "Tabellen m. Überhang ausw." #: db_structure.php:547 db_structure.php:548 db_structure.php:599 -#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:672 +#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:668 #: libraries/mult_submits.inc.php:28 tbl_structure.php:493 #: tbl_structure.php:495 msgid "Print view" msgstr "Druckansicht" -#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:153 +#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:149 #: libraries/mult_submits.inc.php:42 tbl_operations.php:579 msgid "Check table" msgstr "Überprüfe Tabelle" -#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:590 +#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:586 #: libraries/mult_submits.inc.php:47 tbl_operations.php:619 #: tbl_structure.php:710 tbl_structure.php:712 msgid "Optimize table" msgstr "Optimiere Tabelle" -#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:758 +#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:754 #: libraries/mult_submits.inc.php:52 tbl_operations.php:609 msgid "Repair table" msgstr "Repariere Tabelle" -#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:55 +#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:51 #: libraries/mult_submits.inc.php:57 tbl_operations.php:599 msgid "Analyze table" msgstr "Analysiere Tabelle" #: db_structure.php:557 db_structure.php:558 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/messages.inc.php:310 +#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:306 #: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84 #: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109 #: server_privileges.php:1341 setup/frames/menu.inc.php:22 @@ -767,7 +767,7 @@ msgstr "Analysiere Tabelle" msgid "Export" msgstr "Exportieren" -#: db_tracking.php:66 libraries/messages.inc.php:1151 +#: db_tracking.php:66 libraries/messages.inc.php:1147 msgid "Tracked tables" msgstr "Verfolgte Tabellen" @@ -775,7 +775,7 @@ msgstr "Verfolgte Tabellen" #: 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/header_printview.inc.php:58 libraries/messages.inc.php:212 +#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:208 #: navigation.php:233 server_databases.php:169 server_privileges.php:1621 #: server_privileges.php:1682 server_privileges.php:1940 #: server_processlist.php:56 server_synchronize.php:1179 @@ -783,76 +783,76 @@ msgstr "Verfolgte Tabellen" msgid "Database" msgstr "Datenbank" -#: db_tracking.php:73 libraries/messages.inc.php:1146 +#: db_tracking.php:73 libraries/messages.inc.php:1142 msgid "Last version" msgstr "Letzte Version" -#: db_tracking.php:74 libraries/messages.inc.php:1145 tbl_tracking.php:594 +#: db_tracking.php:74 libraries/messages.inc.php:1141 tbl_tracking.php:594 msgid "Created" msgstr "Erstellt" -#: db_tracking.php:75 libraries/messages.inc.php:1147 tbl_tracking.php:595 +#: db_tracking.php:75 libraries/messages.inc.php:1143 tbl_tracking.php:595 msgid "Updated" msgstr "Aktualisiert" #: db_tracking.php:77 libraries/Index.class.php:440 -#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:27 +#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:23 #: server_databases.php:203 server_privileges.php:1503 #: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187 msgid "Action" msgstr "Aktion" -#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:247 +#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:243 msgid "Delete tracking data for this table" msgstr "Lösche die Verlaufsdaten für die diese Tabelle" -#: db_tracking.php:106 libraries/messages.inc.php:1142 tbl_tracking.php:548 +#: db_tracking.php:106 libraries/messages.inc.php:1138 tbl_tracking.php:548 #: tbl_tracking.php:606 tbl_tracking.php:613 msgid "active" msgstr "aktiv" -#: db_tracking.php:108 libraries/messages.inc.php:1143 tbl_tracking.php:550 +#: db_tracking.php:108 libraries/messages.inc.php:1139 tbl_tracking.php:550 #: tbl_tracking.php:608 tbl_tracking.php:610 msgid "not active" msgstr "nicht aktiv" -#: db_tracking.php:121 libraries/messages.inc.php:1160 +#: db_tracking.php:121 libraries/messages.inc.php:1156 msgid "Versions" msgstr "Versionen" -#: db_tracking.php:122 libraries/messages.inc.php:1132 tbl_tracking.php:379 +#: db_tracking.php:122 libraries/messages.inc.php:1128 tbl_tracking.php:379 #: tbl_tracking.php:624 msgid "Tracking report" msgstr "Tracking Report" -#: db_tracking.php:123 libraries/messages.inc.php:1144 tbl_tracking.php:251 +#: db_tracking.php:123 libraries/messages.inc.php:1140 tbl_tracking.php:251 #: tbl_tracking.php:624 msgid "Structure snapshot" msgstr "Struktur Schnapschuss" -#: db_tracking.php:152 libraries/messages.inc.php:1154 +#: db_tracking.php:152 libraries/messages.inc.php:1150 msgid "Untracked tables" msgstr "Nicht verfolgte Tabellen" -#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1153 +#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1149 #: tbl_structure.php:529 tbl_structure.php:531 msgid "Track table" msgstr "Verfolge Tabelle" -#: db_tracking.php:200 libraries/messages.inc.php:1121 +#: db_tracking.php:200 libraries/messages.inc.php:1117 msgid "Database Log" msgstr "Datenbank-Log" -#: export.php:62 libraries/messages.inc.php:312 +#: export.php:62 libraries/messages.inc.php:308 msgid "Selected export type has to be saved in file!" msgstr "Der gewählte Export-Typ kann nur als Datei exportiert werden!" -#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:567 +#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:563 #, php-format msgid "Insufficient space to save the file %s." msgstr "Zu wenig Speicherplatz um die Datei %s zu speichern." -#: export.php:294 libraries/messages.inc.php:324 +#: export.php:294 libraries/messages.inc.php:320 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -860,17 +860,17 @@ msgstr "" "Die Datei %s besteht bereits auf dem Server. Bitte ändern Sie den Dateinamen " "oder wählen Sie die Überschreibungs-Option." -#: export.php:298 export.php:302 libraries/messages.inc.php:562 +#: export.php:298 export.php:302 libraries/messages.inc.php:558 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Der Webserver hat keine Schreibrechte um die Datei %s zu speichern." -#: export.php:629 libraries/messages.inc.php:276 +#: export.php:629 libraries/messages.inc.php:272 #, php-format msgid "Dump has been saved to file %s." msgstr "Dump (Schema) wurde in Datei %s gespeichert." -#: import.php:60 libraries/messages.inc.php:1202 +#: import.php:60 libraries/messages.inc.php:1198 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation%" @@ -880,14 +880,14 @@ msgstr "" "sDokumentation%s zur Lösung diese Problems." #: import.php:279 import.php:332 libraries/File.class.php:849 -#: libraries/File.class.php:961 libraries/messages.inc.php:325 +#: libraries/File.class.php:961 libraries/messages.inc.php:321 msgid "File could not be read" msgstr "Die Datei konnte nicht gelesen werden" #: import.php:287 import.php:296 import.php:315 import.php:324 #: libraries/File.class.php:1031 libraries/File.class.php:1039 #: libraries/File.class.php:1055 libraries/File.class.php:1063 -#: libraries/messages.inc.php:1189 +#: libraries/messages.inc.php:1185 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -897,7 +897,7 @@ msgstr "" "Verfahren komprimiert wurde (%s). Entweder ist die Unterstützung für " "selbiges nicht implementiert oder in Ihrer Konfiguration deaktiviert." -#: import.php:337 libraries/messages.inc.php:547 +#: import.php:337 libraries/messages.inc.php:543 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -908,32 +908,32 @@ msgstr "" "Konfiguration überschritten. Siehe FAQ 1.16." #: import.php:372 libraries/display_import.lib.php:24 -#: libraries/messages.inc.php:125 +#: libraries/messages.inc.php:121 msgid "Could not load import plugins, please check your installation!" msgstr "" "Die Import-Plugins konnten nicht geladen werden. Bitte überprüfen Sie Ihre " "phpMyAdmin-Installation." -#: import.php:397 libraries/messages.inc.php:102 +#: import.php:397 libraries/messages.inc.php:98 msgid "The bookmark has been deleted." msgstr "SQL-Abfrage wurde gelöscht." -#: import.php:401 libraries/messages.inc.php:879 +#: import.php:401 libraries/messages.inc.php:875 msgid "Showing bookmark" msgstr "Bookmark wird angezeigt" -#: import.php:403 libraries/messages.inc.php:101 +#: import.php:403 libraries/messages.inc.php:97 #, php-format msgid "Bookmark %s created" msgstr "Bookmark %s wurde gespeichert" -#: import.php:409 import.php:415 libraries/messages.inc.php:407 +#: import.php:409 import.php:415 libraries/messages.inc.php:403 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" "Der Import wurde erfolgreich abgeschlossen, %d Abfragen wurden ausgeführt." -#: import.php:424 libraries/messages.inc.php:1107 +#: import.php:424 libraries/messages.inc.php:1103 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -941,11 +941,11 @@ msgstr "" "Das Ausführungszeitlimit wurde erreicht. Wenn Sie die Datei erneut " "abschicken, wird der Import fortgesetzt." -#: index.php:190 libraries/messages.inc.php:553 +#: index.php:190 libraries/messages.inc.php:549 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin arbeitet besser mit einem Frame-fähigen Browser." -#: js/messages.php:25 libraries/messages.inc.php:155 +#: js/messages.php:25 libraries/messages.inc.php:151 #: server_synchronize.php:345 server_synchronize.php:357 #: server_synchronize.php:373 server_synchronize.php:380 #: server_synchronize.php:739 server_synchronize.php:767 @@ -953,116 +953,116 @@ msgstr "phpMyAdmin arbeitet besser mit einem Frame-fähigen Browser." msgid "Click to select" msgstr "Zur Auswahl bitte anklicken" -#: js/messages.php:26 libraries/messages.inc.php:156 +#: js/messages.php:26 libraries/messages.inc.php:152 msgid "Click to unselect" msgstr "Zum Abwählen bitte anklicken" #: js/messages.php:27 libraries/import.lib.php:103 -#: libraries/messages.inc.php:550 sql.php:89 +#: libraries/messages.inc.php:546 sql.php:89 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Die Anweisung \"DROP DATABASE\" wurde deaktiviert." -#: js/messages.php:30 libraries/messages.inc.php:270 +#: js/messages.php:30 libraries/messages.inc.php:266 #: libraries/mult_submits.inc.php:258 sql.php:188 msgid "Do you really want to " msgstr "Möchten Sie wirklich diese Abfrage ausführen " -#: js/messages.php:31 libraries/messages.inc.php:271 +#: js/messages.php:31 libraries/messages.inc.php:267 #: libraries/mult_submits.inc.php:258 sql.php:172 msgid "You are about to DESTROY a complete database!" msgstr "Sie sind dabei eine komplette Datenbank zu ZERSTÖREN!" -#: js/messages.php:34 libraries/messages.inc.php:94 +#: js/messages.php:34 libraries/messages.inc.php:90 msgid "You are about to DISABLE a BLOB Repository!" msgstr "Sie sind dabei ein BLOB-Repository zu deaktivieren!" -#: js/messages.php:35 libraries/messages.inc.php:91 +#: js/messages.php:35 libraries/messages.inc.php:87 #, php-format msgid "Are you sure you want to disable all BLOB references for database %s?" msgstr "Wirklich alle BLOB-Referenzen für Datenbank %s deaktivieren?" -#: js/messages.php:38 libraries/messages.inc.php:342 +#: js/messages.php:38 libraries/messages.inc.php:338 msgid "Missing value in the form!" msgstr "Das Formular ist leer !" -#: js/messages.php:39 libraries/messages.inc.php:570 +#: js/messages.php:39 libraries/messages.inc.php:566 msgid "This is not a number!" msgstr "Das ist keine Zahl!" -#: js/messages.php:42 libraries/messages.inc.php:380 +#: js/messages.php:42 libraries/messages.inc.php:376 msgid "The host name is empty!" msgstr "Es wurde kein Host angegeben!" -#: js/messages.php:43 libraries/messages.inc.php:1208 +#: js/messages.php:43 libraries/messages.inc.php:1204 msgid "The user name is empty!" msgstr "Kein Benutzername eingegeben!" -#: js/messages.php:44 libraries/messages.inc.php:607 +#: js/messages.php:44 libraries/messages.inc.php:603 #: server_privileges.php:1197 user_password.php:70 msgid "The password is empty!" msgstr "Es wurde kein Passwort angegeben!" -#: js/messages.php:45 libraries/messages.inc.php:609 +#: js/messages.php:45 libraries/messages.inc.php:605 #: server_privileges.php:1195 user_password.php:73 msgid "The passwords aren't the same!" msgstr "Die eingegebenen Passwörter sind nicht identisch!" -#: js/messages.php:49 libraries/messages.inc.php:123 pmd_general.php:342 +#: js/messages.php:49 libraries/messages.inc.php:119 pmd_general.php:342 #: pmd_general.php:379 msgid "Cancel" msgstr "Abbrechen" -#: js/messages.php:52 libraries/messages.inc.php:514 +#: js/messages.php:52 libraries/messages.inc.php:510 msgid "Modifications have been saved" msgstr "Änderungen gespeichert." -#: js/messages.php:53 libraries/messages.inc.php:741 +#: js/messages.php:53 libraries/messages.inc.php:737 msgid "Relation deleted" msgstr "Verknüpfung gelöscht" -#: js/messages.php:54 libraries/messages.inc.php:340 +#: js/messages.php:54 libraries/messages.inc.php:336 msgid "FOREIGN KEY relation added" msgstr "FOREIGN KEY Relation hinzugefügt" -#: js/messages.php:55 libraries/messages.inc.php:434 +#: js/messages.php:55 libraries/messages.inc.php:430 msgid "Internal relation added" msgstr "Interne Verknüpfung hinzugefügt" -#: js/messages.php:56 libraries/messages.inc.php:299 +#: js/messages.php:56 libraries/messages.inc.php:295 msgid "Error: Relation not added." msgstr "Fehler: Verknüpfung nicht hinzugefügt." -#: js/messages.php:57 libraries/messages.inc.php:300 +#: js/messages.php:57 libraries/messages.inc.php:296 msgid "Error: relation already exists." msgstr "Fehler: Verknüpfung existiert bereits." -#: js/messages.php:58 libraries/messages.inc.php:302 +#: js/messages.php:58 libraries/messages.inc.php:298 msgid "Error saving coordinates for Designer." msgstr "Fehler beim speichern der Koordinaten für den Designer." -#: js/messages.php:59 libraries/messages.inc.php:351 +#: js/messages.php:59 libraries/messages.inc.php:347 #: libraries/relation.lib.php:107 msgid "General relation features" msgstr "Allgemeine Verknüpfungsfunktionen" -#: js/messages.php:59 libraries/messages.inc.php:260 +#: js/messages.php:59 libraries/messages.inc.php:256 #: libraries/relation.lib.php:101 libraries/relation.lib.php:108 msgid "Disabled" msgstr "Deaktiviert" -#: js/messages.php:60 libraries/messages.inc.php:850 +#: js/messages.php:60 libraries/messages.inc.php:846 msgid "Select referenced key" msgstr "Wählen Sie den referenzierten Schlüssel" -#: js/messages.php:61 libraries/messages.inc.php:848 +#: js/messages.php:61 libraries/messages.inc.php:844 msgid "Select Foreign Key" msgstr "Wähle Fremdschlüssel" -#: js/messages.php:62 libraries/messages.inc.php:653 +#: js/messages.php:62 libraries/messages.inc.php:649 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 libraries/messages.inc.php:142 pmd_general.php:77 +#: js/messages.php:63 libraries/messages.inc.php:138 pmd_general.php:77 #: tbl_relation.php:548 msgid "Choose field to display" msgstr "Anzuzeigende Spalte bestimmen" @@ -1078,9 +1078,9 @@ msgid "Prev" msgstr "Vorherige" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2332 -#: libraries/common.lib.php:2335 libraries/display_tbl.lib.php:338 -#: libraries/messages.inc.php:543 server_binlog.php:205 server_binlog.php:207 +#: js/messages.php:77 libraries/common.lib.php:2344 +#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: libraries/messages.inc.php:539 server_binlog.php:205 server_binlog.php:207 #: tbl_printview.php:424 tbl_structure.php:802 msgid "Next" msgstr "Nächste" @@ -1139,63 +1139,63 @@ msgid "December" msgstr "Dezember" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1543 +#: js/messages.php:97 libraries/common.lib.php:1555 msgid "Jan" msgstr "Januar" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1545 +#: js/messages.php:99 libraries/common.lib.php:1557 msgid "Feb" msgstr "Februar" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1547 +#: js/messages.php:101 libraries/common.lib.php:1559 msgid "Mar" msgstr "März" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1549 +#: js/messages.php:103 libraries/common.lib.php:1561 msgid "Apr" msgstr "April" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1551 +#: js/messages.php:105 libraries/common.lib.php:1563 msgctxt "Short month name" msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1553 +#: js/messages.php:107 libraries/common.lib.php:1565 msgid "Jun" msgstr "Juni" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1555 +#: js/messages.php:109 libraries/common.lib.php:1567 msgid "Jul" msgstr "Juli" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1557 +#: js/messages.php:111 libraries/common.lib.php:1569 msgid "Aug" msgstr "August" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1559 +#: js/messages.php:113 libraries/common.lib.php:1571 msgid "Sep" msgstr "September" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1561 +#: js/messages.php:115 libraries/common.lib.php:1573 msgid "Oct" msgstr "Oktober" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1563 +#: js/messages.php:117 libraries/common.lib.php:1575 msgid "Nov" msgstr "November" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1565 +#: js/messages.php:119 libraries/common.lib.php:1577 msgid "Dec" msgstr "Dezember" @@ -1228,37 +1228,37 @@ msgid "Saturday" msgstr "Samstag" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1568 +#: js/messages.php:132 libraries/common.lib.php:1580 msgid "Sun" msgstr "So" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1570 +#: js/messages.php:134 libraries/common.lib.php:1582 msgid "Mon" msgstr "Mo" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1572 +#: js/messages.php:136 libraries/common.lib.php:1584 msgid "Tue" msgstr "Di" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1574 +#: js/messages.php:138 libraries/common.lib.php:1586 msgid "Wed" msgstr "Mi" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1576 +#: js/messages.php:140 libraries/common.lib.php:1588 msgid "Thu" msgstr "Do" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1578 +#: js/messages.php:142 libraries/common.lib.php:1590 msgid "Fri" msgstr "Fr" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1580 +#: js/messages.php:144 libraries/common.lib.php:1592 msgid "Sat" msgstr "Sa" @@ -1314,23 +1314,23 @@ msgstr "Minute" msgid "Second" msgstr "Sekunde" -#: libraries/Config.class.php:1015 libraries/messages.inc.php:338 +#: libraries/Config.class.php:1015 libraries/messages.inc.php:334 msgid "Font size" msgstr "Schriftgröße" #: libraries/File.class.php:344 libraries/File.class.php:432 #: libraries/File.class.php:569 libraries/File.class.php:708 -#: libraries/messages.inc.php:1201 +#: libraries/messages.inc.php:1197 msgid "Unknown error in file upload." msgstr "Unbekannter Fehler beim Dateihochladen." -#: libraries/File.class.php:414 libraries/messages.inc.php:1198 +#: libraries/File.class.php:414 libraries/messages.inc.php:1194 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "Die hochgeladene Datei ist größer als der in der php.ini in " "upload_max_filesize angegebene Wert." -#: libraries/File.class.php:417 libraries/messages.inc.php:1197 +#: libraries/File.class.php:417 libraries/messages.inc.php:1193 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -1338,56 +1338,56 @@ msgstr "" "Die hochgeladene Datei ist größer als der in MAX_FILE_SIZE des HTML " "Formulars angegebene Wert." -#: libraries/File.class.php:420 libraries/messages.inc.php:1200 +#: libraries/File.class.php:420 libraries/messages.inc.php:1196 msgid "The uploaded file was only partially uploaded." msgstr "Die Datei wurde teilweise übertragen." -#: libraries/File.class.php:423 libraries/messages.inc.php:1199 +#: libraries/File.class.php:423 libraries/messages.inc.php:1195 msgid "Missing a temporary folder." msgstr "Kein gültiges Temporäres Verzeichnis für hochgeladene Dateien." -#: libraries/File.class.php:426 libraries/messages.inc.php:1195 +#: libraries/File.class.php:426 libraries/messages.inc.php:1191 msgid "Failed to write file to disk." msgstr "Datei konnte gespeichert werden." -#: libraries/File.class.php:429 libraries/messages.inc.php:1196 +#: libraries/File.class.php:429 libraries/messages.inc.php:1192 msgid "File upload stopped by extension." msgstr "Dateihochladen durch eine Erweiterung gestoppt." -#: libraries/File.class.php:908 libraries/messages.inc.php:319 +#: libraries/File.class.php:908 libraries/messages.inc.php:315 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "Fehler beim Verschieben der hochgeladenen Datei, siehe FAQ 1.11" -#: libraries/Index.class.php:428 libraries/messages.inc.php:554 +#: libraries/Index.class.php:428 libraries/messages.inc.php:550 #: tbl_relation.php:529 msgid "No index defined!" msgstr "Kein Index definiert!" -#: libraries/Index.class.php:433 libraries/messages.inc.php:411 +#: libraries/Index.class.php:433 libraries/messages.inc.php:407 #: server_databases.php:132 tbl_tracking.php:316 msgid "Indexes" msgstr "Indizes" -#: libraries/Index.class.php:444 libraries/messages.inc.php:1186 +#: libraries/Index.class.php:444 libraries/messages.inc.php:1182 #: 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:475 tbl_tracking.php:322 msgid "Unique" msgstr "Unique" -#: libraries/Index.class.php:445 libraries/messages.inc.php:596 +#: libraries/Index.class.php:445 libraries/messages.inc.php:592 #: tbl_tracking.php:323 msgid "Packed" msgstr "Gepackt" -#: libraries/Index.class.php:447 libraries/messages.inc.php:131 +#: libraries/Index.class.php:447 libraries/messages.inc.php:127 #: tbl_tracking.php:325 msgid "Cardinality" msgstr "Kardinalität" -#: libraries/Index.class.php:450 libraries/messages.inc.php:162 +#: libraries/Index.class.php:450 libraries/messages.inc.php:158 #: tbl_tracking.php:279 tbl_tracking.php:328 msgid "Comment" msgstr "Kommentar" @@ -1395,22 +1395,22 @@ msgstr "Kommentar" #: libraries/Index.class.php:466 libraries/common.lib.php:616 #: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:280 pdf_pages.php:280 +#: libraries/messages.inc.php:276 pdf_pages.php:280 #: setup/frames/index.inc.php:124 setup/lib/messages.inc.php:352 #: tbl_row_action.php:69 msgid "Edit" msgstr "Bearbeiten" -#: libraries/Index.class.php:472 libraries/messages.inc.php:666 +#: libraries/Index.class.php:472 libraries/messages.inc.php:662 msgid "The primary key has been dropped" msgstr "Der Primärschlüssel wurde gelöscht." -#: libraries/Index.class.php:476 libraries/messages.inc.php:413 +#: libraries/Index.class.php:476 libraries/messages.inc.php:409 #, php-format msgid "Index %s has been dropped" msgstr "Index %s wurde entfernt." -#: libraries/Index.class.php:576 libraries/messages.inc.php:412 +#: libraries/Index.class.php:576 libraries/messages.inc.php:408 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -1419,7 +1419,7 @@ 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/messages.inc.php:218 +#: libraries/List_Database.class.php:431 libraries/messages.inc.php:214 #: libraries/server_links.inc.php:41 server_databases.php:88 #: server_privileges.php:1621 setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" @@ -1446,80 +1446,80 @@ msgid_plural "%1$d rows inserted." msgstr[0] "%1$d Zeile eingefügt." msgstr[1] "%1$d Zeilen eingefügt." -#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:549 +#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:545 msgid "" "There is no detailed status information available for this storage engine." msgstr "Für dieses Tabellenformat sind keine Statusinformationen verfügbar" -#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:291 +#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:287 #, php-format msgid "%s is available on this MySQL server." msgstr "%s ist auf diesem MySQL-Server verfügbar." -#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:292 +#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:288 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s wurde auf diesem MySQL-Server deaktiviert." -#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:294 +#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:290 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "Dieser MySQL-Server unterstützt %s nicht." -#: libraries/Table.class.php:1019 libraries/messages.inc.php:443 +#: libraries/Table.class.php:1019 libraries/messages.inc.php:439 msgid "Invalid database" msgstr "ungültige Datenbank" -#: libraries/Table.class.php:1033 libraries/messages.inc.php:450 +#: libraries/Table.class.php:1033 libraries/messages.inc.php:446 #: tbl_get_field.php:26 msgid "Invalid table name" msgstr "ungültiger Tabellenname" -#: libraries/Table.class.php:1048 libraries/messages.inc.php:301 +#: libraries/Table.class.php:1048 libraries/messages.inc.php:297 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "Fehler beim umbenennen von Tabelle %1$s nach %2$s" -#: libraries/Table.class.php:1132 libraries/messages.inc.php:754 +#: libraries/Table.class.php:1132 libraries/messages.inc.php:750 #, php-format msgid "Table %s has been renamed to %s" msgstr "Tabelle %s wurde umbenannt in %s." -#: libraries/Theme.class.php:162 libraries/messages.inc.php:1099 +#: libraries/Theme.class.php:162 libraries/messages.inc.php:1095 #, php-format msgid "No valid image path for theme %s found!" msgstr "" "Keinen gültiges Pfad für Grafiken des Oberflächendesigns \"%s\" gefunden!" -#: libraries/Theme.class.php:384 libraries/messages.inc.php:1097 +#: libraries/Theme.class.php:384 libraries/messages.inc.php:1093 msgid "No preview available." msgstr "Keine Vorschau verfügbar." -#: libraries/Theme.class.php:387 libraries/messages.inc.php:1089 +#: libraries/Theme.class.php:387 libraries/messages.inc.php:1085 msgid "take it" msgstr "auswählen" -#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1096 +#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1092 #, php-format msgid "Default theme %s not found!" msgstr "Standard-Oberflächendesign \"%s\" nicht gefunden!" -#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1098 +#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1094 #, php-format msgid "Theme %s not found!" msgstr "Oberflächendesign \"%s\" nicht gefunden!" -#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1100 +#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1096 #, php-format msgid "Theme path not found for theme %s!" msgstr "Pfad für das Oberflächendesign \"%s\" nicht gefunden!" -#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1101 +#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1097 #: test/theme.php:161 themes.php:21 themes.php:41 msgid "Theme / Style" msgstr "Oberflächendesign" -#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:172 +#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:168 msgid "Cannot connect: invalid settings." msgstr "" "Die Verbindung konnte aufgrund von ungültigen Einstellungen nicht " @@ -1527,7 +1527,7 @@ msgstr "" #: libraries/auth/config.auth.lib.php:92 #: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65 -#: libraries/messages.inc.php:1238 test/theme.php:152 +#: libraries/messages.inc.php:1234 test/theme.php:152 #, php-format msgid "Welcome to %s" msgstr "Willkommen bei %s" @@ -1555,54 +1555,54 @@ msgstr "" "vergewissern, dass diese den Informationen, welche Sie vom Administrator " "erhalten haben, entsprechen." -#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:488 +#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:484 msgid "Log in" msgstr "Anmeldung" #: libraries/auth/cookie.auth.lib.php:246 -#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:659 +#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:655 #: libraries/navigation_header.inc.php:93 #: libraries/navigation_header.inc.php:95 msgid "phpMyAdmin documentation" msgstr "phpMyAdmin-Dokumentation" #: libraries/auth/cookie.auth.lib.php:258 -#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:492 +#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:488 msgid "You can enter hostname/IP address and port separated by space." msgstr "" "Sie können einen Rechnernamen oder eine IP Adresse und einen Port durch " "Leerzeichen getrennt eingeben." -#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:493 +#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:489 msgid "Server:" msgstr "Server" -#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:494 +#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:490 msgid "Username:" msgstr "Benutzername:" -#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:491 +#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:487 msgid "Password:" msgstr "Passwort:" -#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:854 +#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:850 msgid "Server Choice" msgstr "Server Auswählen" #: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 -#: libraries/messages.inc.php:177 +#: libraries/messages.inc.php:173 msgid "Cookies must be enabled past this point." msgstr "Ab diesem Punkt müssen Cookies aktiviert sein." #: libraries/auth/cookie.auth.lib.php:671 -#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:489 +#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:485 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" "Login ohne Passwort ist verboten (siehe AllowNoPassword in der Konfiguration)" #: libraries/auth/cookie.auth.lib.php:675 -#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:544 +#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:540 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" @@ -1611,53 +1611,53 @@ msgstr "" #: libraries/auth/cookie.auth.lib.php:685 #: libraries/auth/cookie.auth.lib.php:687 -#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:126 +#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:122 msgid "Cannot log in to the MySQL server" msgstr "Die Anmeldung am MySQL-Server ist fehlgeschlagen." -#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1245 +#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1241 msgid "Wrong username/password. Access denied." msgstr "Falscher Benutzername/Passwort. Zugriff verweigert." #: libraries/auth/swekey/swekey.auth.lib.php:118 -#: libraries/messages.inc.php:1057 +#: libraries/messages.inc.php:1053 #, php-format msgid "File %s does not contain any key id" msgstr "Die Datei %s enthält keine Schlüsselnummer" #: libraries/auth/swekey/swekey.auth.lib.php:157 #: libraries/auth/swekey/swekey.auth.lib.php:180 -#: libraries/messages.inc.php:1056 +#: libraries/messages.inc.php:1052 msgid "Hardware authentication failed" msgstr "Hardware Authentisierung fehlgeschlagen" #: libraries/auth/swekey/swekey.auth.lib.php:166 -#: libraries/messages.inc.php:1058 +#: libraries/messages.inc.php:1054 msgid "No valid authentication key plugged" msgstr "Kein gültiger Authentisierungsschlüssel angeschlossen" #: libraries/auth/swekey/swekey.auth.lib.php:202 -#: libraries/messages.inc.php:1055 +#: libraries/messages.inc.php:1051 msgid "Authenticating..." msgstr "Authentifiziere ..." -#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1230 +#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1226 msgid "View image" msgstr "Bild anzeigen" -#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:652 +#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:648 msgid "Play audio" msgstr "Tonaufnahme abspielen" -#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1232 +#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1228 msgid "View video" msgstr "Filmaufnahme abspielen" -#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:269 +#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:265 msgid "Download file" msgstr "Datei herunterladen" -#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:128 +#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:124 msgid "" "Couldn't load the iconv or recode extension needed for charset conversion. " "Either configure PHP to enable these extensions or disable charset " @@ -1671,7 +1671,7 @@ msgstr "" #: libraries/charset_conversion.lib.php:79 #: libraries/charset_conversion.lib.php:90 -#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:130 +#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:126 msgid "" "Couldn't use the iconv, libiconv, or recode_string functions, although the " "necessary extensions appear to be loaded. Check your PHP configuration." @@ -1680,7 +1680,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/messages.inc.php:170 +#: libraries/common.inc.php:583 libraries/messages.inc.php:166 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!" @@ -1714,7 +1714,7 @@ msgstr "" msgid "Invalid server index: %s" msgstr "Ungültige Server-Nummer: %s" -#: libraries/common.inc.php:636 libraries/messages.inc.php:448 +#: libraries/common.inc.php:636 libraries/messages.inc.php:444 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" @@ -1722,16 +1722,16 @@ msgstr "" "Konfiguration." #: libraries/common.inc.php:645 libraries/header.inc.php:96 -#: libraries/messages.inc.php:856 libraries/select_server.lib.php:41 +#: libraries/messages.inc.php:852 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/messages.inc.php:437 +#: libraries/common.inc.php:823 libraries/messages.inc.php:433 msgid "Invalid authentication method set in configuration:" msgstr "Ungültige Authentifikationsmethode:" -#: libraries/common.lib.php:147 libraries/messages.inc.php:499 +#: libraries/common.lib.php:147 libraries/messages.inc.php:495 #, php-format msgid "Max: %s%s" msgstr "Maximale Dateigröße: %s%s" @@ -1751,7 +1751,7 @@ msgstr "en" #: libraries/common.lib.php:428 libraries/common.lib.php:430 #: libraries/common.lib.php:432 libraries/common.lib.php:448 #: libraries/common.lib.php:450 libraries/dbg/setup.php:25 -#: libraries/display_export.lib.php:164 libraries/messages.inc.php:267 +#: libraries/display_export.lib.php:164 libraries/messages.inc.php:263 #: libraries/relation.lib.php:97 libraries/sql_query_form.lib.php:451 #: libraries/sql_query_form.lib.php:454 main.php:229 pdf_pages.php:37 #: pdf_pages.php:43 pdf_pages.php:49 pdf_pages.php:54 @@ -1761,55 +1761,55 @@ msgstr "Dokumentation" #: libraries/common.lib.php:581 libraries/core.lib.php:234 #: libraries/core.lib.php:263 libraries/import.lib.php:134 -#: libraries/messages.inc.php:297 pdf_schema.php:32 pdf_schema.php:232 +#: libraries/messages.inc.php:293 pdf_schema.php:32 pdf_schema.php:232 #: tbl_change.php:1027 tbl_operations.php:213 tbl_relation.php:290 #: view_operations.php:62 msgid "Error" msgstr "Fehler" #: libraries/common.lib.php:595 libraries/header_printview.inc.php:61 -#: libraries/messages.inc.php:1023 server_processlist.php:60 +#: libraries/messages.inc.php:1019 server_processlist.php:60 #: server_status.php:247 msgid "SQL query" msgstr "SQL-Befehl" -#: libraries/common.lib.php:634 libraries/messages.inc.php:538 +#: libraries/common.lib.php:634 libraries/messages.inc.php:534 msgid "MySQL said: " msgstr "MySQL meldet: " -#: libraries/common.lib.php:667 libraries/messages.inc.php:76 +#: libraries/common.lib.php:667 libraries/messages.inc.php:72 #: pdf_schema.php:241 user_password.php:115 msgid "Back" msgstr "Zurück" -#: libraries/common.lib.php:1177 libraries/messages.inc.php:309 +#: libraries/common.lib.php:1177 libraries/messages.inc.php:305 #: setup/lib/messages.inc.php:353 msgid "Explain SQL" msgstr "SQL erklären" -#: libraries/common.lib.php:1180 libraries/messages.inc.php:551 +#: libraries/common.lib.php:1180 libraries/messages.inc.php:547 msgid "Skip Explain SQL" msgstr "SQL-Erklärung umgehen" -#: libraries/common.lib.php:1212 libraries/messages.inc.php:563 +#: libraries/common.lib.php:1212 libraries/messages.inc.php:559 msgid "Without PHP Code" msgstr "ohne PHP-Code" -#: libraries/common.lib.php:1215 libraries/messages.inc.php:649 +#: libraries/common.lib.php:1215 libraries/messages.inc.php:645 #: setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "PHP-Code erzeugen" -#: libraries/common.lib.php:1233 libraries/messages.inc.php:737 +#: libraries/common.lib.php:1233 libraries/messages.inc.php:733 #: server_status.php:341 setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "Aktualisieren" -#: libraries/common.lib.php:1242 libraries/messages.inc.php:575 +#: libraries/common.lib.php:1242 libraries/messages.inc.php:571 msgid "Skip Validate SQL" msgstr "SQL-Validierung umgehen" -#: libraries/common.lib.php:1245 libraries/messages.inc.php:1220 +#: libraries/common.lib.php:1245 libraries/messages.inc.php:1216 #: setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "SQL validieren" @@ -1825,11 +1825,11 @@ msgid "Inline" msgstr "Formate" #: libraries/common.lib.php:1332 libraries/common.lib.php:1347 -#: libraries/messages.inc.php:713 +#: libraries/messages.inc.php:709 msgid "Profiling" msgstr "Messen" -#: libraries/common.lib.php:1351 libraries/messages.inc.php:1108 +#: libraries/common.lib.php:1351 libraries/messages.inc.php:1104 #: libraries/tbl_triggers.lib.php:28 server_processlist.php:58 msgid "Time" msgstr "Dauer" @@ -1863,40 +1863,50 @@ msgstr "PiB" msgid "EiB" msgstr "EiB" +#. l10n: Thousands separator +#: libraries/common.lib.php:1417 +msgid "," +msgstr "." + +#. l10n: Decimal separator +#: libraries/common.lib.php:1419 +msgid "." +msgstr "," + #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1584 +#: libraries/common.lib.php:1596 #: libraries/transformations/text_plain__dateformat.inc.php:28 msgid "%B %d, %Y at %I:%M %p" msgstr "%d. %B %Y um %H:%M" -#: libraries/common.lib.php:1886 +#: libraries/common.lib.php:1898 #, 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:2301 libraries/common.lib.php:2304 -#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:664 +#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:660 #: server_status.php:608 msgid "Begin" msgstr "Anfang" -#: libraries/common.lib.php:2302 libraries/common.lib.php:2305 -#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:665 +#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:661 #: server_binlog.php:168 server_binlog.php:170 msgid "Previous" msgstr "Vorherige" -#: libraries/common.lib.php:2333 libraries/common.lib.php:2336 -#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:289 +#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:285 msgid "End" msgstr "Ende" -#: libraries/common.lib.php:2409 libraries/messages.inc.php:455 +#: libraries/common.lib.php:2421 libraries/messages.inc.php:451 #, php-format msgid "Jump to database "%s"." msgstr "Zur Datenbank "%s" springen." -#: libraries/common.lib.php:2429 libraries/messages.inc.php:461 +#: libraries/common.lib.php:2441 libraries/messages.inc.php:457 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" @@ -1904,7 +1914,7 @@ msgstr "" "%s" #: libraries/core.lib.php:286 libraries/dbg/setup.php:22 -#: libraries/messages.inc.php:127 +#: libraries/messages.inc.php:123 #, php-format msgid "" "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " @@ -1914,120 +1924,120 @@ msgstr "" "nicht geladen werden. Bitte überprüfen Sie Ihre PHP-Konfiguration." #: libraries/db_events.inc.php:20 libraries/db_events.inc.php:22 -#: libraries/export/sql.php:415 libraries/messages.inc.php:306 +#: libraries/export/sql.php:415 libraries/messages.inc.php:302 msgid "Events" msgstr "Ereignisse" #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 -#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:541 +#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:537 #: libraries/tbl_triggers.lib.php:27 setup/frames/index.inc.php:112 msgid "Name" msgstr "Name" -#: libraries/db_links.inc.php:45 libraries/messages.inc.php:216 +#: libraries/db_links.inc.php:45 libraries/messages.inc.php:212 #, php-format msgid "Database %s has been dropped." msgstr "Datenbank %s wurde gelöscht." #: libraries/db_links.inc.php:57 libraries/db_links.inc.php:58 -#: libraries/db_links.inc.php:59 libraries/messages.inc.php:234 +#: libraries/db_links.inc.php:59 libraries/messages.inc.php:230 msgid "Database seems to be empty!" msgstr "Die Datenbank scheint leer zu sein!" -#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1025 +#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1021 #: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60 #: querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1152 +#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1148 #: libraries/tbl_links.inc.php:69 msgid "Tracking" msgstr "Tracking" -#: libraries/db_links.inc.php:86 libraries/messages.inc.php:719 +#: libraries/db_links.inc.php:86 libraries/messages.inc.php:715 msgid "Query" msgstr "Abfrageeditor" -#: libraries/db_links.inc.php:91 libraries/messages.inc.php:253 +#: libraries/db_links.inc.php:91 libraries/messages.inc.php:249 msgid "Designer" msgstr "Designer" -#: libraries/db_links.inc.php:98 libraries/messages.inc.php:397 +#: libraries/db_links.inc.php:98 libraries/messages.inc.php:393 #: libraries/server_links.inc.php:88 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:104 libraries/messages.inc.php:587 +#: libraries/db_links.inc.php:104 libraries/messages.inc.php:583 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" msgstr "Operationen" -#: libraries/db_links.inc.php:111 libraries/messages.inc.php:709 +#: libraries/db_links.inc.php:111 libraries/messages.inc.php:705 #: libraries/server_links.inc.php:66 server_privileges.php:72 #: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117 msgid "Privileges" msgstr "Rechte" #: libraries/db_routines.inc.php:30 libraries/db_routines.inc.php:32 -#: libraries/messages.inc.php:812 +#: libraries/messages.inc.php:808 msgid "Routines" msgstr "Routinen" -#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:811 +#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:807 msgid "Return type" msgstr "Rückgabe-Typ" #: libraries/db_structure.lib.php:57 libraries/display_tbl.lib.php:1848 -#: libraries/messages.inc.php:65 +#: libraries/messages.inc.php:61 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "" "Es kann sich hierbei um Näherungswerte handeln. Bitte lesen Sie auch FAQ 3.11" -#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:593 +#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:589 #: server_databases.php:142 tbl_printview.php:336 tbl_structure.php:683 msgid "Overhead" msgstr "Überhang" #: libraries/dbi/mysql.dbi.lib.php:112 libraries/dbi/mysqli.dbi.lib.php:124 -#: libraries/messages.inc.php:176 +#: libraries/messages.inc.php:172 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Verbindung für den controluser, wie er in Ihrer Konfiguration angegeben ist, " "ist fehlgeschlagen." #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 -#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:855 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:851 msgid "The server is not responding" msgstr "Der Server antwortet nicht." #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:1010 +#: libraries/messages.inc.php:1006 msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "" "(evtl. ist auch der Socket des lokalen MySQL-Servers socket nicht korrekt " "konfiguriert)" -#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:255 +#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:251 #: tbl_structure.php:609 msgid "Details..." msgstr "Details ..." -#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:143 +#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:139 #: main.php:91 user_password.php:111 user_password.php:129 msgid "Change password" msgstr "Passwort ändern" -#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:561 +#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:557 #: libraries/replication_gui.lib.php:341 server_privileges.php:768 msgid "No Password" msgstr "Kein Passwort" -#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:610 +#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:606 #: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60 #: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335 #: libraries/replication_gui.lib.php:345 server_privileges.php:757 @@ -2036,13 +2046,13 @@ msgstr "Kein Passwort" msgid "Password" msgstr "Passwort" -#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:806 +#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:802 #: libraries/replication_gui.lib.php:349 libraries/replication_gui.lib.php:352 #: server_privileges.php:776 server_privileges.php:779 msgid "Re-type" msgstr "Wiederholen" -#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:608 +#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:604 msgid "Password Hashing" msgstr "Password-Verschlüsselung" @@ -2050,90 +2060,90 @@ msgstr "Password-Verschlüsselung" msgid "MySQL 4.0 compatible" msgstr "MySQL 4.0 kompatibel" -#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:353 +#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:349 #: libraries/replication_gui.lib.php:356 server_privileges.php:783 msgid "Generate Password" msgstr "Passwort generieren" -#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:352 +#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:348 #: libraries/replication_gui.lib.php:359 server_privileges.php:786 msgid "Generate" msgstr "Generieren" #: libraries/display_create_database.lib.php:22 -#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:189 +#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:185 msgid "Create new database" msgstr "Neue Datenbank anlegen" -#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:185 +#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:181 msgid "Create" msgstr "Anlegen" -#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:564 +#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:560 #: server_privileges.php:74 server_privileges.php:1388 #: server_replication.php:35 msgid "No Privileges" msgstr "Keine Rechte" -#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:445 +#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:441 msgid "Table must have at least one field." msgstr "Die Tabelle muss mindestens ein Feld haben." -#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:190 +#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:186 #, php-format msgid "Create table on database %s" msgstr "Neue Tabelle in Datenbank %s erstellen" -#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:577 +#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:573 msgid "Number of fields" msgstr "Anzahl der Felder" -#: libraries/display_export.lib.php:42 libraries/messages.inc.php:124 +#: libraries/display_export.lib.php:42 libraries/messages.inc.php:120 msgid "Could not load export plugins, please check your installation!" msgstr "" "Export-Plugins konnten nicht geladen werden, bitte Installation überprüfen!" -#: libraries/display_export.lib.php:107 libraries/messages.inc.php:277 +#: libraries/display_export.lib.php:107 libraries/messages.inc.php:273 #, php-format msgid "Dump %s row(s) starting at record # %s" msgstr "Exportiere %s Datensätze ab Zeile %s." -#: libraries/display_export.lib.php:115 libraries/messages.inc.php:274 +#: libraries/display_export.lib.php:115 libraries/messages.inc.php:270 msgid "Dump all rows" msgstr "Alle Datensätze exportieren" -#: libraries/display_export.lib.php:125 libraries/messages.inc.php:852 +#: libraries/display_export.lib.php:125 libraries/messages.inc.php:848 #: setup/lib/messages.inc.php:82 msgid "Save as file" msgstr "Senden" -#: libraries/display_export.lib.php:134 libraries/messages.inc.php:828 +#: libraries/display_export.lib.php:134 libraries/messages.inc.php:824 #, php-format msgid "Save on server in %s directory" msgstr "Datei auf dem Server in Verzeichnis %s speichern" -#: libraries/display_export.lib.php:142 libraries/messages.inc.php:594 +#: libraries/display_export.lib.php:142 libraries/messages.inc.php:590 #: setup/lib/messages.inc.php:90 msgid "Overwrite existing file(s)" msgstr "Bestehende Datei(en) überschreiben" -#: libraries/display_export.lib.php:148 libraries/messages.inc.php:330 +#: libraries/display_export.lib.php:148 libraries/messages.inc.php:326 msgid "File name template" msgstr "Dateinamenskonvention" -#: libraries/display_export.lib.php:152 libraries/messages.inc.php:327 +#: libraries/display_export.lib.php:152 libraries/messages.inc.php:323 msgid "server name" msgstr "Server-Name" -#: libraries/display_export.lib.php:155 libraries/messages.inc.php:326 +#: libraries/display_export.lib.php:155 libraries/messages.inc.php:322 msgid "database name" msgstr "Datenbank-Name" -#: libraries/display_export.lib.php:158 libraries/messages.inc.php:328 +#: libraries/display_export.lib.php:158 libraries/messages.inc.php:324 msgid "table name" msgstr "Tabellen-Name" -#: libraries/display_export.lib.php:162 libraries/messages.inc.php:329 +#: libraries/display_export.lib.php:162 libraries/messages.inc.php:325 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2144,24 +2154,24 @@ msgstr "" "für Datum und Uhrzeit verwenden. Darüber hinaus werden folgende Umformungen " "durchgeführt: %3$s. Der übrige Text bleibt unberührt." -#: libraries/display_export.lib.php:202 libraries/messages.inc.php:331 +#: libraries/display_export.lib.php:202 libraries/messages.inc.php:327 msgid "remember template" msgstr "Konvention merken" #: libraries/display_export.lib.php:210 libraries/display_import.lib.php:178 -#: libraries/display_import.lib.php:191 libraries/messages.inc.php:145 +#: libraries/display_import.lib.php:191 libraries/messages.inc.php:141 #: libraries/sql_query_form.lib.php:549 msgid "Character set of the file:" msgstr "Zeichencodierung der Datei:" -#: libraries/display_export.lib.php:235 libraries/messages.inc.php:166 +#: libraries/display_export.lib.php:235 libraries/messages.inc.php:162 #: setup/lib/messages.inc.php:84 msgid "Compression" 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/messages.inc.php:558 +#: libraries/export/sql.php:868 libraries/messages.inc.php:554 #: libraries/tbl_properties.inc.php:575 server_privileges.php:1836 #: server_processlist.php:75 msgid "None" @@ -2179,12 +2189,12 @@ msgstr "GZip-komprimiert" msgid "bzipped" msgstr "BZip-komprimiert" -#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1018 +#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1014 msgid "SQL compatibility mode" msgstr "SQL-Kompatibilitätsmodus" # Der Kontext der Fehlermeldung ist mir nicht klar. Daher allgemein formuliert. -#: libraries/display_import.lib.php:67 libraries/messages.inc.php:398 +#: libraries/display_import.lib.php:67 libraries/messages.inc.php:394 #, fuzzy msgid "" "The file being uploaded is probably larger than the maximum allowed size or " @@ -2195,11 +2205,11 @@ msgstr "" "ein bekannter Fehler in Webkit-basierten Browsern (Safari, Google Chrome, " "Arora etc.) auf." -#: libraries/display_import.lib.php:77 libraries/messages.inc.php:406 +#: libraries/display_import.lib.php:77 libraries/messages.inc.php:402 msgid "The file is being processed, please be patient." msgstr "Bitte Geduld, die Datei wird abgearbeitet." -#: libraries/display_import.lib.php:99 libraries/messages.inc.php:408 +#: libraries/display_import.lib.php:99 libraries/messages.inc.php:404 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." @@ -2207,39 +2217,39 @@ msgstr "" "Bitte warten, bis die Datei übertragen wurde. Details über die Übertragung " "sind nicht verfügbar." -#: libraries/display_import.lib.php:126 libraries/messages.inc.php:333 +#: libraries/display_import.lib.php:126 libraries/messages.inc.php:329 msgid "File to import" msgstr "Zu importierende Datei" -#: libraries/display_import.lib.php:137 libraries/messages.inc.php:486 +#: libraries/display_import.lib.php:137 libraries/messages.inc.php:482 #: libraries/sql_query_form.lib.php:524 msgid "Location of the text file" msgstr "Datei" -#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1203 +#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1199 msgid "File uploads are not allowed on this server." msgstr "Das hochladen von Dateien ist auf diesem Server nicht erlaubt." -#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1235 +#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1231 #: libraries/sql_query_form.lib.php:533 tbl_change.php:1028 msgid "The directory you set for upload work cannot be reached" msgstr "Auf das festgelegte Upload-Verzeichnis kann nicht zugegriffen werden." -#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1236 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1232 #: libraries/sql_query_form.lib.php:536 tbl_change.php:1031 msgid "web server upload directory" msgstr "Upload-Verzeichnis auf dem Webserver" -#: libraries/display_import.lib.php:212 libraries/messages.inc.php:167 +#: libraries/display_import.lib.php:212 libraries/messages.inc.php:163 #, php-format msgid "Imported file compression will be automatically detected from: %s" msgstr "Dateikomprimierung wird automatisch erkannt bei: %s" -#: libraries/display_import.lib.php:219 libraries/messages.inc.php:600 +#: libraries/display_import.lib.php:219 libraries/messages.inc.php:596 msgid "Partial import" msgstr "Partieller Import" -#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1105 +#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1101 #, php-format msgid "" "Previous import timed out, after resubmitting will continue from position %d." @@ -2247,7 +2257,7 @@ msgstr "" "Der vorherige Import-Vorgang wurde abgebrochen. Er wird nun bei Position %d " "fortgesetzt." -#: libraries/display_import.lib.php:232 libraries/messages.inc.php:51 +#: libraries/display_import.lib.php:232 libraries/messages.inc.php:47 msgid "" "Allow the interruption of an import in case the script detects it is close " "to the PHP timeout limit. This might be good way to import large files, " @@ -2256,191 +2266,191 @@ msgstr "" "Abbruch wenn die maximale Scriptlaufzeit erreicht wird. Damit ist es möglich " "große Dateien zu importieren, allerdings kann es Transaktionen zerstören." -#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1004 +#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1000 #: setup/lib/messages.inc.php:161 msgid "Number of records (queries) to skip from start" msgstr "Anzahl der am Anfang zu überspringenden Einträge (Abfragen)" -#: libraries/display_import.lib.php:255 libraries/messages.inc.php:396 +#: libraries/display_import.lib.php:255 libraries/messages.inc.php:392 #: setup/lib/messages.inc.php:160 msgid "Format of imported file" msgstr "Dateiformat" #: libraries/display_select_lang.lib.php:45 -#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:465 +#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:461 #: setup/frames/index.inc.php:70 msgid "Language" msgstr "Sprache" -#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:447 +#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:443 #, php-format msgid "%d is not valid row number." msgstr "%d ist keine gültige Zeilennummer." -#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:814 +#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:810 msgid "row(s) starting from record #" msgstr "Datensätze, beginnend ab" -#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:817 +#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:813 msgid "horizontal" msgstr "untereinander" -#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:816 +#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:812 msgid "horizontal (rotated headers)" msgstr "horizontal (gedrehte Bezeichner)" -#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:819 +#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:815 msgid "vertical" msgstr "nebeneinander" -#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:818 +#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:814 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "%s angeordnet und wiederhole die Kopfzeilen nach %s Datensätzen." -#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:495 +#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:491 msgid "This operation could take a long time. Proceed anyway?" msgstr "" "Diese Operation könnte einige Zeit beanspruchen. Trotzdem weitermachen?" -#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1012 +#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1008 msgid "Sort by key" msgstr "Nach Schlüssel sortieren" #: libraries/display_tbl.lib.php:555 libraries/import.lib.php:1082 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:591 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:587 #: tbl_select.php:267 tbl_structure.php:754 msgid "Options" msgstr "Optionen" #: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:570 -#: libraries/messages.inc.php:601 +#: libraries/messages.inc.php:597 msgid "Partial Texts" msgstr "gekürzte Textfelder" #: libraries/display_tbl.lib.php:561 libraries/display_tbl.lib.php:574 -#: libraries/messages.inc.php:346 +#: libraries/messages.inc.php:342 msgid "Full Texts" msgstr "vollständige Textfelder" -#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:739 +#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:735 msgid "Relational key" msgstr "Relationaler Schlüssel" -#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:738 +#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:734 msgid "Relational display field" msgstr "Relationaler Wert" -#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:872 +#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:868 msgid "Show binary contents" msgstr "Binäre Inhalte anzeigen" -#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:873 +#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:869 msgid "Show BLOB contents" msgstr "BLOB Inhalte anzeigen" -#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:871 +#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:867 msgid "Show binary contents as HEX" msgstr "Binäre Inhalte in hexadezimal anzeigen" # Hide heist im deutschen in der EDV ausblenden -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:375 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:371 #: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320 msgid "Hide" msgstr "Verstecken" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:508 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:504 #: libraries/tbl_properties.inc.php:144 transformation_overview.php:47 msgid "Browser transformation" msgstr "Darstellungsumwandlung" #: libraries/display_tbl.lib.php:1126 libraries/display_tbl.lib.php:1130 -#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:308 +#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:304 msgid "Execute bookmarked query" msgstr "Gespeicherte SQL-Anfrage ausführen" #: libraries/display_tbl.lib.php:1145 libraries/display_tbl.lib.php:1157 -#: libraries/messages.inc.php:244 +#: libraries/messages.inc.php:240 msgid "The row has been deleted" msgstr "Die Zeile wurde gelöscht." #: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056 -#: libraries/messages.inc.php:460 server_processlist.php:71 +#: libraries/messages.inc.php:456 server_processlist.php:71 #: tbl_row_action.php:64 msgid "Kill" msgstr "Beenden" -#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:849 +#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:845 msgid "in query" msgstr "in der Abfrage" -#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:881 +#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:877 msgid "Showing rows" msgstr "Zeige Datensätze " -#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1113 +#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1109 msgid "total" msgstr "insgesamt" -#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:727 +#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:723 #: sql.php:524 #, php-format msgid "Query took %01.4f sec" msgstr "die Abfrage dauerte %01.4f sek." -#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:135 +#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:131 #: 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:471 msgid "Change" msgstr "Ändern" -#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:724 +#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:720 msgid "Query results operations" msgstr "Operationen für das Abfrageergebnis" -#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:671 +#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:667 msgid "Print view (with full texts)" msgstr "Druckansicht (vollständige Textfelder)" -#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:482 +#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:478 msgid "Link not found" msgstr "Der Verweis wurde nicht gefunden." -#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1224 +#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1220 #: main.php:228 msgid "Version information" msgstr "Versionsinformationen" -#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:423 +#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:419 msgid "Data home directory" msgstr "Pfad für Datendateien" -#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:424 +#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:420 msgid "The common part of the directory path for all InnoDB data files." msgstr "" "Der Pfad des Verzeichnisses, unter welchem alle InnoDB-Datendateien abgelegt " "werden." -#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:422 +#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:418 msgid "Data files" msgstr "Datendateien" -#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:418 +#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:414 msgid "Autoextend increment" msgstr "Autoerweiterungs-Schrittgröße" -#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:419 +#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:415 msgid "" " The increment size for extending the size of an autoextending tablespace " "when it becomes full." msgstr "Die Größe, um die ein Tablespace erweitert wird, wenn er voll ist." -#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:420 +#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:416 msgid "Buffer pool size" msgstr "Größe des Puffer-Pools" -#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:421 +#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:417 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." @@ -2448,87 +2458,87 @@ msgstr "" "Die Größe des Arbeitsspeicherpuffers, den InnoDB verwendet, um Daten und " "Indizes zwischenzuspeichern." -#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:112 +#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:108 msgid "Buffer Pool" msgstr "Puffer-Pool" -#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:426 +#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:422 #: server_status.php:306 msgid "InnoDB Status" msgstr "InnoDB-Status" -#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:113 +#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:109 msgid "Buffer Pool Usage" msgstr "Auslastung des Puffer-Pools" -#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1114 +#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1110 #: server_databases.php:137 server_databases.php:305 server_status.php:414 #: server_status.php:475 server_status.php:496 tbl_printview.php:351 #: tbl_structure.php:697 msgid "Total" msgstr "Insgesamt" -#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:425 +#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:421 msgid "pages" msgstr "Seiten" -#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:343 +#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:339 msgid "Free pages" msgstr "Unbenutzte Seiten" -#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:259 +#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:255 msgid "Dirty pages" msgstr "Inkonsistente Seiten ("dirty")" -#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:230 +#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:226 msgid "Pages containing data" msgstr "Daten enthaltende Seiten" -#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:598 +#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:594 msgid "Pages to be flushed" msgstr "Zurückzuschreibende Seiten" -#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:119 +#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:115 msgid "Busy pages" msgstr "Ausgelastete Seiten" -#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:467 +#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:463 msgid "Latched pages" msgstr "Belegte Seiten" -#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:111 +#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:107 msgid "Buffer Pool Activity" msgstr "Aktivität des Puffer-Pools" -#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:731 +#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:727 msgid "Read requests" msgstr "Leseanfragen" -#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1244 +#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1240 msgid "Write requests" msgstr "Schreibanfragen" -#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:115 +#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:111 msgid "Read misses" msgstr "Fehlgeschlagene Leseanfragen" -#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:117 +#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:113 msgid "Write waits" msgstr "Schreibverzögerungen" -#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:114 +#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:110 msgid "Read misses in %" msgstr "Fehlgeschlagene Leseanfragen in %" -#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:116 +#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:112 msgid "Write waits in %" msgstr "Schreibverzögerungen in %" -#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:522 +#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:518 msgid "Data pointer size" msgstr "Größe des Datenzeigers" -#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:523 +#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:519 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." @@ -2536,11 +2546,11 @@ msgstr "" "Standardmäßige Größe des Zeigers, welcher von CREATE TABLE für MyISAM-" "Tabellen verwendet wird, sofern die Option MAX_ROWS nicht angegeben wird." -#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:528 +#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:524 msgid "Automatic recovery mode" msgstr "Autoreparatur-Modus" -#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:529 +#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:525 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." @@ -2548,11 +2558,11 @@ msgstr "" "Der Modus der automatischen Wiederherstellung abgestürzter MyISAM-Tabellen, " "wie über den Startparameter --myisam-recover angegeben." -#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:527 +#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:523 msgid "Maximum size for temporary sort files" msgstr "Maximale Größe temporärer Dateien beim Sortieren" -#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:526 +#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:522 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " @@ -2561,11 +2571,11 @@ msgstr "" "Die maximale Größe der temporären Datei, die MySQL benutzen darf, während es " "den Index erzeugt (während REPAIR, ALTER TABLE oder LOAD DATA INFILE)." -#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:525 +#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:521 msgid "Maximum size for temporary files on index creation" msgstr "Maximum Größe temporärer Dateien bei Indexerstellung" -#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:524 +#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:520 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " @@ -2575,11 +2585,11 @@ msgstr "" "diesen Wert größer sein würde als die Benutzung des Schlüssel-Caches, wird " "die Schlüssel-Cache-Methode bevorzugt." -#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:531 +#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:527 msgid "Repair threads" msgstr "Reparaturprozess" -#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:530 +#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:526 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." @@ -2588,11 +2598,11 @@ msgstr "" "einer Reparatur oder eines Sortierungsprozesses parallel erstellt (jeder " "Index in einem separatem Prozess)." -#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:533 +#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:529 msgid "Sort buffer size" msgstr "Größe des Sortierungspuffers" -#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:532 +#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:528 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." @@ -2600,11 +2610,11 @@ msgstr "" "Der Puffer, der beim Sortieren des Indexes zugewiesen wird, wenn man ein " "REPAIR oder ausführt oder Indizes mit CREATE INDEX oder ALTER TABLE erzeugt." -#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:620 +#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:616 msgid "Index cache size" msgstr "Index-Cache Größe" -#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:619 +#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:615 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." @@ -2612,11 +2622,11 @@ msgstr "" "Die Menge an reserviertem Speicher für den Index-Cache. Die Voreinstellung " "ist 32 MB. Der Speicher wird nur zum cachen von Index-Seiten verwendet." -#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:630 +#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:626 msgid "Record cache size" msgstr "Record-Cache-Größe" -#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:629 +#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:625 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " @@ -2626,11 +2636,11 @@ msgstr "" "Voreinstellung ist 32 MB. Der Speicher wird verwendet um Änderungen an " "Handle-Dateien (.xtd) und Row-Pointer-Dateien (.xtr) zu cachen." -#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:624 +#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:620 msgid "Log cache size" msgstr "Log-Cache Größe" -#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:623 +#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:619 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." @@ -2638,11 +2648,11 @@ msgstr "" "Die Menge an reserviertem Speicher für den Transaktionslog. Die " "Voreinstellung ist 16 MB." -#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:628 +#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:624 msgid "Log file threshold" msgstr "Logdatei Grenzwert" -#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:627 +#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:623 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." @@ -2650,11 +2660,11 @@ msgstr "" "Die Größe des Transaktionslog bevor ein Rollover durchgeführt wird und eine " "neue Logdatei angelegt wird. Die Voreinstellung ist 16 MB." -#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:634 +#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:630 msgid "Transaction buffer size" msgstr "Transaktionspuffergröße" -#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:633 +#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:629 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." @@ -2662,11 +2672,11 @@ msgstr "" "Die Größe des globalen Transaktionslogpuffers (es werden zwei Puffer dieser " "Größe angelegt. Die Voreinstellung ist 1 MB." -#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:611 +#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:607 msgid "Checkpoint frequency" msgstr "Checkpoint-Frequenz" -#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:612 +#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:608 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." @@ -2674,11 +2684,11 @@ msgstr "" "Die Menge an geschriebenen Daten in das Transaktionslog, bevor ein neuer " "Checkpoint angelegt wird. Die Voreinstellung ist 24 MB." -#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:615 +#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:611 msgid "Data log threshold" msgstr "Data Log Grenzwert" -#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:616 +#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:612 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -2690,11 +2700,11 @@ msgstr "" "Variable kann erhöht werden um die Menge an Daten, welche in der Datenbank " "gespeichert werden können zu vergrößern." -#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:618 +#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:614 msgid "Garbage threshold" msgstr "Müll-Grenzwert" -#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:617 +#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:613 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." @@ -2702,11 +2712,11 @@ msgstr "" "Der Prozentsatz an Müll in einer Logdatei bevor sie komprimiert wird. Der " "Wert kann zwischen 1 und 99 liegen, Voreinstellung ist 50." -#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:622 +#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:618 msgid "Log buffer size" msgstr "Log Puffergröße" -#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:621 +#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:617 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " @@ -2716,27 +2726,27 @@ msgstr "" "256 MB. Pro Thread wird ein Puffer reserviert, aber nur wenn der Thread " "Logdateien schreiben können muss." -#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:613 +#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:609 msgid "Data file grow size" msgstr "Dateiwachstumsgröße" -#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:614 +#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:610 msgid "The grow size of the handle data (.xtd) files." msgstr "Die Wachstumsgröße der Handle-Dateien (.xtd)" -#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:632 +#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:628 msgid "Row file grow size" msgstr "Zeilenwachstum" -#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:631 +#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:627 msgid "The grow size of the row pointer (.xtr) files." msgstr "Wachstum der Row-Pointer-Dateien (.xtr)." -#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:626 +#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:622 msgid "Log file count" msgstr "Log file Anzahl" -#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:625 +#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:621 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -2749,19 +2759,19 @@ msgstr "" #: libraries/export/htmlword.php:132 libraries/export/odt.php:168 #: libraries/export/sql.php:881 libraries/export/texytext.php:130 -#: libraries/messages.inc.php:275 +#: libraries/messages.inc.php:271 msgid "Dumping data for table" msgstr "Daten für Tabelle" #: libraries/export/htmlword.php:185 libraries/export/odt.php:238 #: libraries/export/sql.php:785 libraries/export/texytext.php:177 -#: libraries/messages.inc.php:1086 +#: libraries/messages.inc.php:1082 msgid "Table structure for table" msgstr "Tabellenstruktur für Tabelle" #: libraries/export/latex.php:125 libraries/export/sql.php:232 #: libraries/export/xml.php:102 libraries/header_printview.inc.php:57 -#: libraries/messages.inc.php:381 libraries/replication_gui.lib.php:63 +#: libraries/messages.inc.php:377 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:170 libraries/replication_gui.lib.php:265 #: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325 #: server_privileges.php:692 server_privileges.php:695 @@ -2773,186 +2783,186 @@ msgstr "Host" #: libraries/export/latex.php:130 libraries/export/sql.php:233 #: libraries/export/xml.php:107 libraries/header_printview.inc.php:59 -#: libraries/messages.inc.php:354 +#: libraries/messages.inc.php:350 msgid "Generation Time" msgstr "Erstellungszeit" #: libraries/export/latex.php:131 libraries/export/sql.php:235 -#: libraries/export/xml.php:108 libraries/messages.inc.php:864 main.php:186 +#: libraries/export/xml.php:108 libraries/messages.inc.php:860 main.php:186 msgid "Server version" msgstr "Server Version" #: libraries/export/latex.php:132 libraries/export/sql.php:236 -#: libraries/export/xml.php:109 libraries/messages.inc.php:651 +#: libraries/export/xml.php:109 libraries/messages.inc.php:647 msgid "PHP Version" msgstr "PHP-Version" #: libraries/export/latex.php:201 libraries/export/sql.php:868 -#: libraries/messages.inc.php:226 server_databases.php:127 +#: libraries/messages.inc.php:222 server_databases.php:127 #: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317 #: tbl_structure.php:666 msgid "Data" msgstr "Daten" -#: libraries/export/odt.php:318 libraries/messages.inc.php:506 +#: libraries/export/odt.php:318 libraries/messages.inc.php:502 #: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "MIME-Typ" -#: libraries/export/sql.php:387 libraries/messages.inc.php:711 +#: libraries/export/sql.php:387 libraries/messages.inc.php:707 msgid "Procedures" msgstr "Prozeduren" -#: libraries/export/sql.php:401 libraries/messages.inc.php:348 +#: libraries/export/sql.php:401 libraries/messages.inc.php:344 msgid "Functions" msgstr "Funktionen" -#: libraries/export/sql.php:618 libraries/messages.inc.php:174 +#: libraries/export/sql.php:618 libraries/messages.inc.php:170 msgid "Constraints for dumped tables" msgstr "Constraints der exportierten Tabellen" -#: libraries/export/sql.php:627 libraries/messages.inc.php:175 +#: libraries/export/sql.php:627 libraries/messages.inc.php:171 msgid "Constraints for table" msgstr "Constraints der Tabelle" -#: libraries/export/sql.php:727 libraries/messages.inc.php:512 +#: libraries/export/sql.php:727 libraries/messages.inc.php:508 msgid "MIME TYPES FOR TABLE" msgstr "MIME TYPEN DER TABELLE" -#: libraries/export/sql.php:739 libraries/messages.inc.php:743 +#: libraries/export/sql.php:739 libraries/messages.inc.php:739 msgid "RELATIONS FOR TABLE" msgstr "RELATIONEN DER TABELLE" -#: libraries/export/sql.php:796 libraries/messages.inc.php:1178 +#: libraries/export/sql.php:796 libraries/messages.inc.php:1174 #: libraries/tbl_triggers.lib.php:19 msgid "Triggers" msgstr "Trigger" -#: libraries/export/sql.php:808 libraries/messages.inc.php:1046 +#: libraries/export/sql.php:808 libraries/messages.inc.php:1042 msgid "Structure for view" msgstr "Struktur des Views" -#: libraries/export/sql.php:817 libraries/messages.inc.php:1029 +#: libraries/export/sql.php:817 libraries/messages.inc.php:1025 msgid "Stand-in structure for view" msgstr "Stellvertreter-Struktur des Views" #: libraries/footer.inc.php:184 libraries/footer.inc.php:195 -#: libraries/footer.inc.php:198 libraries/messages.inc.php:586 +#: libraries/footer.inc.php:198 libraries/messages.inc.php:582 msgid "Open new phpMyAdmin window" msgstr "Neues phpMyAdmin-Fenster" -#: libraries/header.inc.php:115 libraries/messages.inc.php:542 +#: libraries/header.inc.php:115 libraries/messages.inc.php:538 msgid "New table" msgstr "Neue Tabelle" #: libraries/header_printview.inc.php:50 libraries/header_printview.inc.php:55 -#: libraries/messages.inc.php:1024 +#: libraries/messages.inc.php:1020 msgid "SQL result" msgstr "SQL-Abfrageergebnis" -#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:350 +#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:346 msgid "Generated by" msgstr "Erstellt von" #: libraries/header_printview.inc.php:63 libraries/import.lib.php:145 -#: libraries/messages.inc.php:820 navigation.php:652 navigation.php:674 +#: libraries/messages.inc.php:816 navigation.php:652 navigation.php:674 #: server_databases.php:122 tbl_printview.php:394 tbl_structure.php:366 #: tbl_structure.php:778 msgid "Rows" msgstr "Zeilen" -#: libraries/import.lib.php:150 libraries/messages.inc.php:285 sql.php:520 +#: libraries/import.lib.php:150 libraries/messages.inc.php:281 sql.php:520 #: tbl_change.php:181 tbl_get_field.php:35 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL lieferte ein leeres Resultat zurück (d. h. null Zeilen)." -#: libraries/import.lib.php:1078 libraries/messages.inc.php:399 +#: libraries/import.lib.php:1078 libraries/messages.inc.php:395 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" "Die folgenden Strukturen wurden entweder erstellt oder verändert. Hier " "können Sie:" -#: libraries/import.lib.php:1079 libraries/messages.inc.php:400 +#: libraries/import.lib.php:1079 libraries/messages.inc.php:396 msgid "View a structure`s contents by clicking on its name" msgstr "Zum Anzeigen einer Struktur einfach auf den Namen klicken" -#: libraries/import.lib.php:1080 libraries/messages.inc.php:401 +#: libraries/import.lib.php:1080 libraries/messages.inc.php:397 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" "Zum Ändern der Einstellungen auf das entsprechende \"Optionen\" klicken" -#: libraries/import.lib.php:1081 libraries/messages.inc.php:402 +#: libraries/import.lib.php:1081 libraries/messages.inc.php:398 msgid "Edit its structure by following the \"Structure\" link" msgstr "Zum Ändern der Struktur auf das entsprechenden \"Struktur\" klicken" -#: libraries/import.lib.php:1084 libraries/messages.inc.php:362 +#: libraries/import.lib.php:1084 libraries/messages.inc.php:358 msgid "Go to database" msgstr "Gehe zur Datenbank" #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:869 +#: libraries/messages.inc.php:865 msgid "settings" msgstr "Einstellungen" -#: libraries/import.lib.php:1106 libraries/messages.inc.php:363 +#: libraries/import.lib.php:1106 libraries/messages.inc.php:359 msgid "Go to table" msgstr "Gehe zur Tabelle" -#: libraries/import.lib.php:1109 libraries/messages.inc.php:1047 +#: libraries/import.lib.php:1109 libraries/messages.inc.php:1043 msgid "structure" msgstr "Struktur" -#: libraries/import.lib.php:1115 libraries/messages.inc.php:364 +#: libraries/import.lib.php:1115 libraries/messages.inc.php:360 msgid "Go to view" msgstr "Gehe zum View" #: libraries/import/csv.php:58 libraries/import/csv.php:70 #: libraries/import/csv.php:74 libraries/import/csv.php:78 -#: libraries/messages.inc.php:442 +#: libraries/messages.inc.php:438 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "Ungültiger Parameter für CSV-Import: \"%s\"" -#: libraries/import/csv.php:59 libraries/messages.inc.php:323 +#: libraries/import/csv.php:59 libraries/messages.inc.php:319 msgid "Fields terminated by" msgstr "Felder getrennt mit" -#: libraries/import/csv.php:71 libraries/messages.inc.php:320 +#: libraries/import/csv.php:71 libraries/messages.inc.php:316 msgid "Fields enclosed by" msgstr "Felder eingeschlossen von" -#: libraries/import/csv.php:75 libraries/messages.inc.php:321 +#: libraries/import/csv.php:75 libraries/messages.inc.php:317 msgid "Fields escaped by" msgstr "Felder escaped von" -#: libraries/import/csv.php:79 libraries/messages.inc.php:481 +#: libraries/import/csv.php:79 libraries/messages.inc.php:477 msgid "Lines terminated by" msgstr "Zeilen getrennt mit" -#: libraries/import/csv.php:119 libraries/messages.inc.php:439 +#: libraries/import/csv.php:119 libraries/messages.inc.php:435 #, php-format msgid "Invalid column (%s) specified!" msgstr "Ungültige Spalte angegeben (%s)!" #: libraries/import/csv.php:177 libraries/import/csv.php:424 -#: libraries/messages.inc.php:441 +#: libraries/messages.inc.php:437 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "Ungültiges Format in Zeile %d." -#: libraries/import/csv.php:312 libraries/messages.inc.php:440 +#: libraries/import/csv.php:312 libraries/messages.inc.php:436 #, php-format msgid "Invalid field count in CSV input on line %d." msgstr "Ungültige Anzahl an Feldern in Zeile %d." -#: libraries/import/ldi.php:55 libraries/messages.inc.php:446 +#: libraries/import/ldi.php:55 libraries/messages.inc.php:442 msgid "This plugin does not support compressed imports!" msgstr "Dieses Plugin unterstützt keine Kompression!" #: libraries/import/xml.php:74 libraries/import/xml.php:130 -#: libraries/messages.inc.php:1247 +#: libraries/messages.inc.php:1243 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -2981,399 +2991,389 @@ msgstr "Nach Kana konvertieren" msgid "ltr" msgstr "ltr" -#. l10n: Thousands separator -#: libraries/messages.inc.php:21 -msgid "," -msgstr "." - -#. l10n: Decimal separator -#: libraries/messages.inc.php:23 -msgid "." -msgstr "," - -#: libraries/messages.inc.php:25 server_status.php:461 +#: libraries/messages.inc.php:21 server_status.php:461 msgid "Aborted" msgstr "Abgebrochen" -#: libraries/messages.inc.php:28 main.php:68 +#: libraries/messages.inc.php:24 main.php:68 msgid "Actions" msgstr "Aktionen" -#: libraries/messages.inc.php:34 libraries/tbl_properties.inc.php:780 +#: libraries/messages.inc.php:30 libraries/tbl_properties.inc.php:780 #: tbl_structure.php:543 #, php-format msgid "Add %s field(s)" msgstr "%s Felder hinzufügen" -#: libraries/messages.inc.php:35 +#: libraries/messages.inc.php:31 msgid "Add custom comment into header (\\n splits lines)" msgstr "" "Individuelle Kommentare für den Kopfbereich (\\n erzeugt einen Zeilenumbruch)" -#: libraries/messages.inc.php:36 +#: libraries/messages.inc.php:32 msgid "Add into comments" msgstr "In Kommentarbereich einbeziehen" -#: libraries/messages.inc.php:37 tbl_structure.php:541 +#: libraries/messages.inc.php:33 tbl_structure.php:541 msgid "Add new field" msgstr "Neue Felder hinzufügen" -#: libraries/messages.inc.php:38 server_privileges.php:1886 +#: libraries/messages.inc.php:34 server_privileges.php:1886 msgid "Add privileges on the following database" msgstr "Rechte zu folgender Datenbank hinzufügen" -#: libraries/messages.inc.php:39 server_privileges.php:1907 +#: libraries/messages.inc.php:35 server_privileges.php:1907 msgid "Add privileges on the following table" msgstr "Rechte zu folgender Tabelle hinzufügen" -#: libraries/messages.inc.php:40 tbl_select.php:288 +#: libraries/messages.inc.php:36 tbl_select.php:288 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Eigenes Filterkriterium (Argumente für den WHERE-Ausdruck):" -#: libraries/messages.inc.php:41 tbl_indexes.php:251 +#: libraries/messages.inc.php:37 tbl_indexes.php:251 #, php-format msgid "Add to index  %s column(s)" msgstr "%s Spalten zum Index hinzufügen" -#: libraries/messages.inc.php:42 server_privileges.php:1570 +#: libraries/messages.inc.php:38 server_privileges.php:1570 #: server_privileges.php:1594 server_privileges.php:1988 #: server_privileges.php:2177 msgid "Add a new User" msgstr "Neuen Benutzer hinzufügen" -#: libraries/messages.inc.php:43 server_privileges.php:931 +#: libraries/messages.inc.php:39 server_privileges.php:931 msgid "You have added a new user." msgstr "Der Benutzer wurde hinzugefügt." -#: libraries/messages.inc.php:44 server_privileges.php:571 +#: libraries/messages.inc.php:40 server_privileges.php:571 msgid "Administration" msgstr "Administration" -#: libraries/messages.inc.php:45 tbl_structure.php:557 +#: libraries/messages.inc.php:41 tbl_structure.php:557 #, php-format msgid "After %s" msgstr "Nach %s" -#: libraries/messages.inc.php:46 tbl_change.php:1147 +#: libraries/messages.inc.php:42 tbl_change.php:1147 msgid "Go back to previous page" msgstr "zurück" -#: libraries/messages.inc.php:47 tbl_change.php:1148 +#: libraries/messages.inc.php:43 tbl_change.php:1148 msgid "Insert another new row" msgstr "anschließend einen weiteren Datensatz einfügen" -#: libraries/messages.inc.php:48 tbl_change.php:1160 +#: libraries/messages.inc.php:44 tbl_change.php:1160 msgid "Edit next row" msgstr "nächste Zeile bearbeiten" -#: libraries/messages.inc.php:49 tbl_change.php:1152 +#: libraries/messages.inc.php:45 tbl_change.php:1152 msgid "Go back to this page" msgstr "Zurück zu dieser Seite" -#: libraries/messages.inc.php:50 querywindow.php:115 +#: libraries/messages.inc.php:46 querywindow.php:115 msgid "All" msgstr "Alle" -#: libraries/messages.inc.php:53 tbl_operations.php:249 +#: libraries/messages.inc.php:49 tbl_operations.php:249 msgid "Alter table order by" msgstr "Tabelle sortieren nach" -#: libraries/messages.inc.php:54 tbl_operations.php:660 +#: libraries/messages.inc.php:50 tbl_operations.php:660 msgid "Analyze" msgstr "Analysieren" -#: libraries/messages.inc.php:57 +#: libraries/messages.inc.php:53 msgid "and" msgstr "und" -#: libraries/messages.inc.php:59 pmd_general.php:87 +#: libraries/messages.inc.php:55 pmd_general.php:87 msgid "Angular links" msgstr "Winklige Verbindung" -#: libraries/messages.inc.php:60 tbl_structure.php:401 tbl_structure.php:415 +#: libraries/messages.inc.php:56 tbl_structure.php:401 tbl_structure.php:415 #: tbl_structure.php:429 #, php-format msgid "An index has been added on %s" msgstr "Ein Index wurde in %s erzeugt" -#: libraries/messages.inc.php:61 server_privileges.php:1521 +#: libraries/messages.inc.php:57 server_privileges.php:1521 #: server_privileges.php:2123 msgid "Any" msgstr "Jeder" -#: libraries/messages.inc.php:62 libraries/replication_gui.lib.php:298 +#: libraries/messages.inc.php:58 libraries/replication_gui.lib.php:298 #: server_privileges.php:725 msgid "Any host" msgstr "Jeder Host" -#: libraries/messages.inc.php:63 libraries/replication_gui.lib.php:250 +#: libraries/messages.inc.php:59 libraries/replication_gui.lib.php:250 #: server_privileges.php:677 msgid "Any user" msgstr "Jeder Benutzer" -#: libraries/messages.inc.php:64 server_synchronize.php:449 +#: libraries/messages.inc.php:60 server_synchronize.php:449 #: server_synchronize.php:894 msgid "Apply Selected Changes" msgstr "Ausgewählte Änderungen anwenden" -#: libraries/messages.inc.php:66 tbl_structure.php:386 +#: libraries/messages.inc.php:62 tbl_structure.php:386 #, php-format msgid "A primary key has been added on %s" msgstr "Ein Primärschlüssel wurde in %s erzeugt" -#: libraries/messages.inc.php:67 libraries/mysql_charsets.lib.php:368 +#: libraries/messages.inc.php:63 libraries/mysql_charsets.lib.php:368 msgid "Arabic" msgstr "Arabisch" -#: libraries/messages.inc.php:68 libraries/mysql_charsets.lib.php:359 +#: libraries/messages.inc.php:64 libraries/mysql_charsets.lib.php:359 msgid "Armenian" msgstr "Armenisch" -#: libraries/messages.inc.php:70 libraries/tbl_properties.inc.php:394 +#: libraries/messages.inc.php:66 libraries/tbl_properties.inc.php:394 msgid "As defined:" msgstr "Benutzerdefiniert:" -#: libraries/messages.inc.php:71 tbl_structure.php:556 +#: libraries/messages.inc.php:67 tbl_structure.php:556 msgid "At Beginning of Table" msgstr "An den Anfang der Tabelle" -#: libraries/messages.inc.php:72 tbl_structure.php:555 +#: libraries/messages.inc.php:68 tbl_structure.php:555 msgid "At End of Table" msgstr "An das Ende der Tabelle" -#: libraries/messages.inc.php:73 libraries/tbl_properties.inc.php:108 +#: libraries/messages.inc.php:69 libraries/tbl_properties.inc.php:108 #: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:144 #: tbl_structure.php:180 msgid "Attributes" msgstr "Attribute" -#: libraries/messages.inc.php:74 pdf_pages.php:303 pdf_pages.php:306 +#: libraries/messages.inc.php:70 pdf_pages.php:303 pdf_pages.php:306 msgid "Automatic layout" msgstr "Automatische Anordnung" -#: libraries/messages.inc.php:77 libraries/mysql_charsets.lib.php:354 +#: libraries/messages.inc.php:73 libraries/mysql_charsets.lib.php:354 msgid "Baltic" msgstr "Baltisch" -#: libraries/messages.inc.php:78 libraries/sqlparser.lib.php:175 +#: libraries/messages.inc.php:74 libraries/sqlparser.lib.php:175 msgid "BEGIN CUT" msgstr "AUSSCHNITTSANFANG" -#: libraries/messages.inc.php:79 libraries/sqlparser.lib.php:179 +#: libraries/messages.inc.php:75 libraries/sqlparser.lib.php:179 msgid "BEGIN RAW" msgstr "BEGINN DER AUSGABE" -#: libraries/messages.inc.php:80 libraries/mysql_charsets.lib.php:201 +#: libraries/messages.inc.php:76 libraries/mysql_charsets.lib.php:201 #: libraries/mysql_charsets.lib.php:402 tbl_change.php:518 msgid "Binary" msgstr "Binär" -#: libraries/messages.inc.php:81 tbl_change.php:894 +#: libraries/messages.inc.php:77 tbl_change.php:894 msgid "Binary - do not edit" msgstr "Binär - nicht editierbar!" -#: libraries/messages.inc.php:82 libraries/server_links.inc.php:76 +#: libraries/messages.inc.php:78 libraries/server_links.inc.php:76 #: server_binlog.php:110 server_status.php:253 test/theme.php:121 msgid "Binary log" msgstr "Binäres Protokoll" -#: libraries/messages.inc.php:83 server_binlog.php:217 +#: libraries/messages.inc.php:79 server_binlog.php:217 msgid "Event type" msgstr "Ereignistyp" -#: libraries/messages.inc.php:84 server_binlog.php:220 +#: libraries/messages.inc.php:80 server_binlog.php:220 msgid "Information" msgstr "Information" -#: libraries/messages.inc.php:85 server_binlog.php:215 +#: libraries/messages.inc.php:81 server_binlog.php:215 msgid "Log name" msgstr "Protokoll" -#: libraries/messages.inc.php:86 server_binlog.php:219 +#: libraries/messages.inc.php:82 server_binlog.php:219 msgid "Original position" msgstr "Ursprungsposition" -#: libraries/messages.inc.php:87 server_binlog.php:216 +#: libraries/messages.inc.php:83 server_binlog.php:216 msgid "Position" msgstr "Position" -#: libraries/messages.inc.php:88 libraries/replication_gui.lib.php:169 +#: libraries/messages.inc.php:84 libraries/replication_gui.lib.php:169 #: server_binlog.php:218 msgid "Server ID" msgstr "Server-ID" -#: libraries/messages.inc.php:92 +#: libraries/messages.inc.php:88 msgctxt "$strBLOBRepositoryDisabled" msgid "Disabled" msgstr "Deaktiviert" -#: libraries/messages.inc.php:95 +#: libraries/messages.inc.php:91 msgctxt "$strBLOBRepositoryEnabled" msgid "Enabled" msgstr "Aktiviert" -#: libraries/messages.inc.php:97 tbl_change.php:888 +#: libraries/messages.inc.php:93 tbl_change.php:888 msgid "Remove BLOB Repository Reference" msgstr "BLOB-Referenz entfernen" -#: libraries/messages.inc.php:98 +#: libraries/messages.inc.php:94 msgctxt "$strBLOBRepositoryRepair" msgid "Repair" msgstr "Reparieren" -#: libraries/messages.inc.php:99 tbl_change.php:987 +#: libraries/messages.inc.php:95 tbl_change.php:987 msgid "Upload to BLOB repository" msgstr "Zu BLOB-Repository hochladen" -#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:359 +#: libraries/messages.inc.php:96 libraries/sql_query_form.lib.php:359 #: sql.php:677 msgid "Let every user access this bookmark" msgstr "Diese gespeicherte SQL-Abfrage für jeden Benutzer verfügbar machen" -#: libraries/messages.inc.php:103 sql.php:671 +#: libraries/messages.inc.php:99 sql.php:671 msgid "Label" msgstr "Titel" -#: libraries/messages.inc.php:104 libraries/sql_query_form.lib.php:433 +#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:433 msgid "Bookmarked SQL query" msgstr "Gespeicherte SQL-Abfrage" -#: libraries/messages.inc.php:105 libraries/sql_query_form.lib.php:365 +#: libraries/messages.inc.php:101 libraries/sql_query_form.lib.php:365 msgid "Replace existing bookmark of same name" msgstr "Überschreibe gleichnamiges Bookmark" -#: libraries/messages.inc.php:106 libraries/sql_query_form.lib.php:352 +#: libraries/messages.inc.php:102 libraries/sql_query_form.lib.php:352 #: sql.php:665 sql.php:666 sql.php:683 msgid "Bookmark this SQL query" msgstr "SQL-Abfrage speichern" -#: libraries/messages.inc.php:107 libraries/sql_query_form.lib.php:466 +#: libraries/messages.inc.php:103 libraries/sql_query_form.lib.php:466 msgid "View only" msgstr "Nur zeigen" -#: libraries/messages.inc.php:109 tbl_structure.php:161 +#: libraries/messages.inc.php:105 tbl_structure.php:161 msgid "Browse distinct values" msgstr "Zeige nur unterschiedliche Werte" -#: libraries/messages.inc.php:110 tbl_change.php:252 tbl_select.php:27 +#: libraries/messages.inc.php:106 tbl_change.php:252 tbl_select.php:27 #: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34 msgid "Browse foreign values" msgstr "Fremdschlüsselwerte ansehen" -#: libraries/messages.inc.php:118 libraries/mysql_charsets.lib.php:213 +#: libraries/messages.inc.php:114 libraries/mysql_charsets.lib.php:213 msgid "Bulgarian" msgstr "Bulgarisch" -#: libraries/messages.inc.php:120 +#: libraries/messages.inc.php:116 msgid "\"bzipped\"" msgstr "BZip-komprimiert" -#: libraries/messages.inc.php:122 +#: libraries/messages.inc.php:118 msgid "Calendar" msgstr "Kalender" -#: libraries/messages.inc.php:129 tbl_indexes.php:75 +#: libraries/messages.inc.php:125 tbl_indexes.php:75 msgid "Can't rename index to PRIMARY!" msgstr "Kann Index nicht in PRIMARY umbenennen!" -#: libraries/messages.inc.php:132 libraries/mysql_charsets.lib.php:223 +#: libraries/messages.inc.php:128 libraries/mysql_charsets.lib.php:223 #: libraries/mysql_charsets.lib.php:409 msgid "case-insensitive" msgstr "case-insensitive" -#: libraries/messages.inc.php:133 libraries/mysql_charsets.lib.php:226 +#: libraries/messages.inc.php:129 libraries/mysql_charsets.lib.php:226 #: libraries/mysql_charsets.lib.php:411 msgid "case-sensitive" msgstr "case-sensitive" -#: libraries/messages.inc.php:134 libraries/mysql_charsets.lib.php:332 +#: libraries/messages.inc.php:130 libraries/mysql_charsets.lib.php:332 msgid "Central European" msgstr "Mitteleuropäisch" -#: libraries/messages.inc.php:136 server_privileges.php:1969 +#: libraries/messages.inc.php:132 server_privileges.php:1969 msgid "... keep the old one." msgstr " ... behalte den alten bei." -#: libraries/messages.inc.php:137 server_privileges.php:1967 +#: libraries/messages.inc.php:133 server_privileges.php:1967 msgid "Create a new user with the same privileges and ..." msgstr "Erstelle einen neuen Benutzer mit identischen Rechten und ..." -#: libraries/messages.inc.php:138 server_privileges.php:1972 +#: libraries/messages.inc.php:134 server_privileges.php:1972 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr " ... lösche den alten und lade anschließend die Benutzertabellen neu." -#: libraries/messages.inc.php:139 server_privileges.php:1970 +#: libraries/messages.inc.php:135 server_privileges.php:1970 msgid " ... delete the old one from the user tables." msgstr " ... lösche den alten von den Benutzertabellen." -#: libraries/messages.inc.php:140 server_privileges.php:1971 +#: libraries/messages.inc.php:136 server_privileges.php:1971 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr " ... entziehe dem alten alle Rechte und lösche ihn anschließend." -#: libraries/messages.inc.php:141 server_privileges.php:1964 +#: libraries/messages.inc.php:137 server_privileges.php:1964 msgid "Change Login Information / Copy User" msgstr "Anmelde-Information ändern / Benutzer kopieren" -#: libraries/messages.inc.php:144 libraries/mysql_charsets.lib.php:107 +#: libraries/messages.inc.php:140 libraries/mysql_charsets.lib.php:107 msgid "Charset" msgstr "Zeichensatz" -#: libraries/messages.inc.php:146 server_collations.php:40 +#: libraries/messages.inc.php:142 server_collations.php:40 msgid "Character Sets and Collations" msgstr "Zeichensätze und Kollationen" -#: libraries/messages.inc.php:147 libraries/server_links.inc.php:57 +#: libraries/messages.inc.php:143 libraries/server_links.inc.php:57 #: test/theme.php:109 msgid "Charsets" msgstr "Zeichensätze" -#: libraries/messages.inc.php:149 tbl_operations.php:661 +#: libraries/messages.inc.php:145 tbl_operations.php:661 msgid "Check" msgstr "Überprüfen" -#: libraries/messages.inc.php:151 server_databases.php:293 +#: libraries/messages.inc.php:147 server_databases.php:293 #: server_databases.php:294 msgid "Check Privileges" msgstr "Rechte überprüfen" -#: libraries/messages.inc.php:152 server_databases.php:289 +#: libraries/messages.inc.php:148 server_databases.php:289 #, php-format msgid "Check privileges for database "%s"." msgstr "Überprüft die Rechte für die Datenbank "%s"." -#: libraries/messages.inc.php:154 pdf_pages.php:261 +#: libraries/messages.inc.php:150 pdf_pages.php:261 msgid "Please choose a page to edit" msgstr "Bitte wählen Sie die zu bearbeitende Seite." -#: libraries/messages.inc.php:157 +#: libraries/messages.inc.php:153 msgid "Displaying Column Comments" msgstr "Darstellung von Spaltenkommentaren" -#: libraries/messages.inc.php:159 pdf_pages.php:483 view_create.php:148 +#: libraries/messages.inc.php:155 pdf_pages.php:483 view_create.php:148 msgid "Column names" msgstr "Spaltennamen" -#: libraries/messages.inc.php:160 server_privileges.php:1685 +#: libraries/messages.inc.php:156 server_privileges.php:1685 msgid "Column-specific privileges" msgstr "Spaltenspezifische Rechte" -#: libraries/messages.inc.php:164 +#: libraries/messages.inc.php:160 msgid "MySQL 4.0 compatible" msgstr "MySQL 4.0 kompatibel" -#: libraries/messages.inc.php:165 +#: libraries/messages.inc.php:161 msgid "Complete inserts" msgstr "Vollständige 'INSERT's" -#: libraries/messages.inc.php:168 +#: libraries/messages.inc.php:164 #, php-format msgid "Could not load default configuration from: \"%1$s\"" msgstr "Fehler beim Laden der Standard-Konfiguration von: \"%1$s\"" -#: libraries/messages.inc.php:169 main.php:306 +#: libraries/messages.inc.php:165 main.php:306 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " @@ -3382,37 +3382,37 @@ msgstr "" "Das [code]config[/code] Unterverzeichnis des Installationsskripts ist noch " "vorhanden. Sie sollten es nach der Konfiguration von phpMyAdmin entfernen." -#: libraries/messages.inc.php:171 pdf_schema.php:672 +#: libraries/messages.inc.php:167 pdf_schema.php:672 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Bitte konfigurieren Sie die Koordinaten für die Tabelle %s" -#: libraries/messages.inc.php:173 server_status.php:433 +#: libraries/messages.inc.php:169 server_status.php:433 msgid "Connections" msgstr "Verbindungen" -#: libraries/messages.inc.php:179 tbl_operations.php:509 +#: libraries/messages.inc.php:175 tbl_operations.php:509 msgid "Copy table to (database.table):" msgstr "Kopiere Tabelle nach (Datenbank.Tabellenname):" -#: libraries/messages.inc.php:180 tbl_move_copy.php:58 +#: libraries/messages.inc.php:176 tbl_move_copy.php:58 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabelle %s wurde nach %s kopiert." -#: libraries/messages.inc.php:181 tbl_move_copy.php:48 +#: libraries/messages.inc.php:177 tbl_move_copy.php:48 msgid "Can't copy table to same one!" msgstr "Tabelle kann nicht mit gleichem Namen kopiert werden!" -#: libraries/messages.inc.php:182 server_synchronize.php:94 +#: libraries/messages.inc.php:178 server_synchronize.php:94 msgid "Could not connect to the source" msgstr "Es konnte keine Verbindung zu Quell-Datenbank hergestellt werden" -#: libraries/messages.inc.php:183 server_synchronize.php:97 +#: libraries/messages.inc.php:179 server_synchronize.php:97 msgid "Could not connect to the target" msgstr "Es konnte keine Verbindung zu Ziel-Datenbank hergestellt werden" -#: libraries/messages.inc.php:184 server_processlist.php:24 +#: libraries/messages.inc.php:180 server_processlist.php:24 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -3420,134 +3420,134 @@ msgstr "" "phpMyAdmin konnte den Prozess %s nicht abbrechen. Er wurde wahrscheinlich " "bereits geschlossen." -#: libraries/messages.inc.php:187 +#: libraries/messages.inc.php:183 #, php-format msgid "Create an index on %s columns" msgstr "Index über %s Spalten anlegen" -#: libraries/messages.inc.php:188 tbl_indexes.php:160 +#: libraries/messages.inc.php:184 tbl_indexes.php:160 msgid "Create a new index" msgstr "Neuen Index anlegen" -#: libraries/messages.inc.php:191 pdf_pages.php:297 pmd_pdf.php:114 +#: libraries/messages.inc.php:187 pdf_pages.php:297 pmd_pdf.php:114 msgid "Create a page" msgstr "Neue Seite erstellen" -#: libraries/messages.inc.php:192 +#: libraries/messages.inc.php:188 msgid "Creation of PDFs" msgstr "Erzeugen von PDFs" -#: libraries/messages.inc.php:193 pmd_general.php:74 pmd_general.php:306 +#: libraries/messages.inc.php:189 pmd_general.php:74 pmd_general.php:306 msgid "Create relation" msgstr "Erzeuge Verknüpfung" -#: libraries/messages.inc.php:194 pmd_general.php:71 +#: libraries/messages.inc.php:190 pmd_general.php:71 #: server_synchronize.php:429 server_synchronize.php:872 msgid "Create table" msgstr "Erzeuge Tabelle" -#: libraries/messages.inc.php:195 +#: libraries/messages.inc.php:191 msgctxt "$strCreateTableShort" msgid "Create table" msgstr "Erzeuge Tabelle" -#: libraries/messages.inc.php:196 server_privileges.php:1994 +#: libraries/messages.inc.php:192 server_privileges.php:1994 msgid "Database for user" msgstr "Datenbank für Benutzer" -#: libraries/messages.inc.php:197 server_privileges.php:1999 +#: libraries/messages.inc.php:193 server_privileges.php:1999 msgid "Create database with same name and grant all privileges" msgstr "Erstelle eine Datenbank mit gleichem Namen und gewähre alle Rechte" -#: libraries/messages.inc.php:198 +#: libraries/messages.inc.php:194 msgctxt "$strCreateUserDatabaseNone" msgid "None" msgstr "keine" -#: libraries/messages.inc.php:199 server_privileges.php:2003 +#: libraries/messages.inc.php:195 server_privileges.php:2003 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Gewähre alle Rechte auf die Datenbank "%s"" -#: libraries/messages.inc.php:200 server_privileges.php:2000 +#: libraries/messages.inc.php:196 server_privileges.php:2000 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" "Gewähre alle Rechte auf Datenbanken die mit dem Benuterznamen beginnen " "(username\\_%)" -#: libraries/messages.inc.php:201 +#: libraries/messages.inc.php:197 msgid "Creation/Update/Check dates" msgstr "Erzeugungs- / Aktualisierungs- / Überprüfungszeiten" -#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:229 +#: libraries/messages.inc.php:199 libraries/mysql_charsets.lib.php:229 msgid "Croatian" msgstr "Kroatisch" -#: libraries/messages.inc.php:204 +#: libraries/messages.inc.php:200 msgid "CSV" msgstr "CSV" -#: libraries/messages.inc.php:205 libraries/server_synchronize.lib.php:1343 +#: libraries/messages.inc.php:201 libraries/server_synchronize.lib.php:1343 #: libraries/server_synchronize.lib.php:1369 msgid "Current server" msgstr "Aktueller Server" -#: libraries/messages.inc.php:206 main.php:159 +#: libraries/messages.inc.php:202 main.php:159 msgid "Custom color" msgstr "Benutzerdefinierte Farbe" -#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:365 +#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:365 msgid "Cyrillic" msgstr "Kyrillisch" -#: libraries/messages.inc.php:208 libraries/mysql_charsets.lib.php:232 +#: libraries/messages.inc.php:204 libraries/mysql_charsets.lib.php:232 msgid "Czech" msgstr "Tschechisch" -#: libraries/messages.inc.php:209 libraries/mysql_charsets.lib.php:383 +#: libraries/messages.inc.php:205 libraries/mysql_charsets.lib.php:383 msgid "Czech-Slovak" msgstr "Tschechoslowakisch" -#: libraries/messages.inc.php:211 libraries/mysql_charsets.lib.php:235 +#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:235 msgid "Danish" msgstr "Dänisch" -#: libraries/messages.inc.php:214 +#: libraries/messages.inc.php:210 msgid "Database export options" msgstr "Export-Optionen der Datenbank" -#: libraries/messages.inc.php:217 server_synchronize.php:122 +#: libraries/messages.inc.php:213 server_synchronize.php:122 #: server_synchronize.php:125 tbl_create.php:82 tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "Datenbank '%s' existiert nicht." -#: libraries/messages.inc.php:219 server_databases.php:63 +#: libraries/messages.inc.php:215 server_databases.php:63 #, php-format msgid "%s databases have been dropped successfully." msgstr "Es wurden %s Datenbanken gelöscht." # source != search / Source != Suche -#: libraries/messages.inc.php:220 libraries/server_synchronize.lib.php:1341 +#: libraries/messages.inc.php:216 libraries/server_synchronize.lib.php:1341 #: server_synchronize.php:1110 msgid "Source database" msgstr "Quell-Datenbank" -#: libraries/messages.inc.php:221 server_databases.php:88 +#: libraries/messages.inc.php:217 server_databases.php:88 msgid "Databases statistics" msgstr "Statistik über alle Datenbanken" -#: libraries/messages.inc.php:222 server_databases.php:362 +#: libraries/messages.inc.php:218 server_databases.php:362 #: server_databases.php:363 msgid "Disable Statistics" msgstr "Datenbankstatistiken deaktivieren" -#: libraries/messages.inc.php:223 server_databases.php:358 +#: libraries/messages.inc.php:219 server_databases.php:358 #: server_databases.php:359 msgid "Enable Statistics" msgstr "Datenbankstatistiken aktivieren" -#: libraries/messages.inc.php:224 server_databases.php:366 +#: libraries/messages.inc.php:220 server_databases.php:366 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -3555,30 +3555,30 @@ msgstr "" "Bitte beachten Sie: Das Aktivieren der Datenbankstatistiken kann starken " "Traffic zwischen dem Web- und dem MySQL-Server zur Folge haben." -#: libraries/messages.inc.php:225 libraries/server_synchronize.lib.php:1367 +#: libraries/messages.inc.php:221 libraries/server_synchronize.lib.php:1367 #: server_synchronize.php:1112 msgid "Target database" msgstr "Ziel-Datenbank" -#: libraries/messages.inc.php:228 server_synchronize.php:425 +#: libraries/messages.inc.php:224 server_synchronize.php:425 #: server_synchronize.php:868 msgid "Data Difference" msgstr "Datenunterschied" -#: libraries/messages.inc.php:231 server_synchronize.php:272 +#: libraries/messages.inc.php:227 server_synchronize.php:272 msgid "Data Synchronization" msgstr "Datenabgleich" -#: libraries/messages.inc.php:235 server_privileges.php:526 +#: libraries/messages.inc.php:231 server_privileges.php:526 #: server_privileges.php:1679 msgid "Database-specific privileges" msgstr "Datenbankspezifische Rechte" -#: libraries/messages.inc.php:237 server_privileges.php:2136 +#: libraries/messages.inc.php:233 server_privileges.php:2136 msgid "database-specific" msgstr "datenbankspezifisch" -#: libraries/messages.inc.php:240 libraries/tbl_properties.inc.php:106 +#: libraries/messages.inc.php:236 libraries/tbl_properties.inc.php:106 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" @@ -3586,32 +3586,32 @@ msgstr "" "Bitte geben Sie jeweils nur einen Standardwert ohne Escape- oder " "Anführungszeichen an." -#: libraries/messages.inc.php:241 tbl_operations.php:589 +#: libraries/messages.inc.php:237 tbl_operations.php:589 msgid "Defragment table" msgstr "Tabelle defragmentieren" -#: libraries/messages.inc.php:242 +#: libraries/messages.inc.php:238 msgid "Use delayed inserts" msgstr "Verzögerten INSERT-Befehl verwenden" -#: libraries/messages.inc.php:245 server_privileges.php:1243 +#: libraries/messages.inc.php:241 server_privileges.php:1243 msgid "No users selected for deleting!" msgstr "Es wurden keine Benutzer zum Löschen ausgewählt!" -#: libraries/messages.inc.php:246 pmd_general.php:372 +#: libraries/messages.inc.php:242 pmd_general.php:372 msgid "Delete relation" msgstr "Verknüpfung löschen" -#: libraries/messages.inc.php:248 server_privileges.php:1232 +#: libraries/messages.inc.php:244 server_privileges.php:1232 #, php-format msgid "Deleting %s" msgstr "Lösche %s" -#: libraries/messages.inc.php:249 libraries/sql_query_form.lib.php:388 +#: libraries/messages.inc.php:245 libraries/sql_query_form.lib.php:388 msgid "Delimiter" msgstr "Begrenzer" -#: libraries/messages.inc.php:250 pdf_pages.php:506 +#: libraries/messages.inc.php:246 pdf_pages.php:506 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -3619,7 +3619,7 @@ msgstr "" "Auf der aktuellen Seite bestehen Referenzen zu Tabellen, die nicht mehr " "existieren. Sollen diese Referenzen gelöscht werden?" -#: libraries/messages.inc.php:254 pmd_help.php:29 +#: libraries/messages.inc.php:250 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 " @@ -3629,142 +3629,142 @@ msgstr "" "nicht, klicken Sie auf das \"Anzeige-Wahl-Bild\", dann auf den passenden " "Feldnamen." -#: libraries/messages.inc.php:256 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:252 libraries/mysql_charsets.lib.php:247 msgid "dictionary" msgstr "Wörterbuch" -#: libraries/messages.inc.php:257 libraries/server_synchronize.lib.php:1348 +#: libraries/messages.inc.php:253 libraries/server_synchronize.lib.php:1348 msgid "Difference" msgstr "Unterschied" -#: libraries/messages.inc.php:258 pmd_general.php:87 +#: libraries/messages.inc.php:254 pmd_general.php:87 msgid "Direct links" msgstr "Direkte Verbindung" -#: libraries/messages.inc.php:261 +#: libraries/messages.inc.php:257 msgid "Disable foreign key checks" msgstr "Fremdschlüsselüberprüfung deaktivieren" -#: libraries/messages.inc.php:262 +#: libraries/messages.inc.php:258 msgid "Display Features" msgstr "Anzeige verknüpfter Daten" -#: libraries/messages.inc.php:263 tbl_select.php:301 +#: libraries/messages.inc.php:259 tbl_select.php:301 msgid "Display order:" msgstr "Sortierung nach:" -#: libraries/messages.inc.php:265 tbl_select.php:132 +#: libraries/messages.inc.php:261 tbl_select.php:132 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Suche über Beispielwerte (\"query by example\") (Platzhalter: \"%\")" -#: libraries/messages.inc.php:266 +#: libraries/messages.inc.php:262 msgid "DocSQL" msgstr "DocSQL" -#: libraries/messages.inc.php:268 +#: libraries/messages.inc.php:264 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Nicht AUTO_INCREMENT für Nullwerte verwenden" -#: libraries/messages.inc.php:273 server_privileges.php:1579 +#: libraries/messages.inc.php:269 server_privileges.php:1579 #: server_privileges.php:1580 server_privileges.php:1581 msgid "Drop the databases that have the same names as the users." msgstr "Die gleichnamigen Datenbanken löschen." -#: libraries/messages.inc.php:278 tbl_printview.php:382 tbl_structure.php:743 +#: libraries/messages.inc.php:274 tbl_printview.php:382 tbl_structure.php:743 msgid "dynamic" msgstr "dynamisch" -#: libraries/messages.inc.php:282 server_privileges.php:1324 +#: libraries/messages.inc.php:278 server_privileges.php:1324 #: server_privileges.php:1610 msgid "Edit Privileges" msgstr "Rechte ändern" -#: libraries/messages.inc.php:283 tbl_printview.php:341 tbl_structure.php:688 +#: libraries/messages.inc.php:279 tbl_printview.php:341 tbl_structure.php:688 msgid "Effective" msgstr "Effektiv" -#: libraries/messages.inc.php:286 libraries/relation.lib.php:100 +#: libraries/messages.inc.php:282 libraries/relation.lib.php:100 msgid "Enabled" msgstr "Aktiviert" -#: libraries/messages.inc.php:287 +#: libraries/messages.inc.php:283 msgid "Enclose export in a transaction" msgstr "Export in einer Transaktion zusammenfassen" -#: libraries/messages.inc.php:288 libraries/sqlparser.lib.php:177 +#: libraries/messages.inc.php:284 libraries/sqlparser.lib.php:177 msgid "END CUT" msgstr "AUSSCHNITTSENDE" -#: libraries/messages.inc.php:290 libraries/sqlparser.lib.php:183 +#: libraries/messages.inc.php:286 libraries/sqlparser.lib.php:183 msgid "END RAW" msgstr "ENDE DER AUSGABE" -#: libraries/messages.inc.php:293 libraries/server_links.inc.php:61 +#: libraries/messages.inc.php:289 libraries/server_links.inc.php:61 #: test/theme.php:113 msgid "Engines" msgstr "Formate" -#: libraries/messages.inc.php:295 libraries/mysql_charsets.lib.php:238 +#: libraries/messages.inc.php:291 libraries/mysql_charsets.lib.php:238 msgid "English" msgstr "Englisch" -#: libraries/messages.inc.php:296 server_privileges.php:393 +#: libraries/messages.inc.php:292 server_privileges.php:393 #: server_privileges.php:535 server_privileges.php:1501 msgid " Note: MySQL privilege names are expressed in English " msgstr "MySQL-Rechte werden auf Englisch angegeben." -#: libraries/messages.inc.php:298 libraries/zip_extension.lib.php:49 +#: libraries/messages.inc.php:294 libraries/zip_extension.lib.php:49 #: libraries/zip_extension.lib.php:51 libraries/zip_extension.lib.php:66 msgid "Error in ZIP archive:" msgstr "Fehler im ZIP-Archiv:" -#: libraries/messages.inc.php:303 libraries/mysql_charsets.lib.php:241 +#: libraries/messages.inc.php:299 libraries/mysql_charsets.lib.php:241 msgid "Esperanto" msgstr "Esperanto" -#: libraries/messages.inc.php:304 libraries/mysql_charsets.lib.php:244 +#: libraries/messages.inc.php:300 libraries/mysql_charsets.lib.php:244 msgid "Estonian" msgstr "Estnisch" -#: libraries/messages.inc.php:305 libraries/tbl_triggers.lib.php:29 +#: libraries/messages.inc.php:301 libraries/tbl_triggers.lib.php:29 msgid "Event" msgstr "Ereignis" -#: libraries/messages.inc.php:307 +#: libraries/messages.inc.php:303 msgid "Excel edition" msgstr "Excel-Ausgabe" -#: libraries/messages.inc.php:311 pmd_pdf.php:85 +#: libraries/messages.inc.php:307 pmd_pdf.php:85 msgid "Export/Import to scale" msgstr "Export/Import skalieren" -#: libraries/messages.inc.php:313 +#: libraries/messages.inc.php:309 msgid "Extended inserts" msgstr "Erweiterte 'INSERT's" -#: libraries/messages.inc.php:314 pdf_schema.php:1267 pdf_schema.php:1288 +#: libraries/messages.inc.php:310 pdf_schema.php:1267 pdf_schema.php:1288 #: tbl_printview.php:147 tbl_structure.php:183 tbl_tracking.php:278 msgid "Extra" msgstr "Extra" -#: libraries/messages.inc.php:316 server_status.php:447 +#: libraries/messages.inc.php:312 server_status.php:447 msgid "Failed attempts" msgstr "Fehlgeschlagen" -#: libraries/messages.inc.php:318 tbl_structure.php:375 +#: libraries/messages.inc.php:314 tbl_structure.php:375 #, php-format msgid "Field %s has been dropped" msgstr "Spalte %s wurde entfernt." -#: libraries/messages.inc.php:322 libraries/sql_query_form.lib.php:317 +#: libraries/messages.inc.php:318 libraries/sql_query_form.lib.php:317 msgid "Fields" msgstr "Felder" -#: libraries/messages.inc.php:332 server_binlog.php:136 +#: libraries/messages.inc.php:328 server_binlog.php:136 msgid "Files" msgstr "Dateien" -#: libraries/messages.inc.php:334 server_privileges.php:1597 +#: libraries/messages.inc.php:330 server_privileges.php:1597 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -3778,123 +3778,123 @@ msgstr "" "vorgenommen wurden. In diesem Fall sollten Sie %sdie Benutzerprofile neu " "laden%s bevor Sie fortfahren." -#: libraries/messages.inc.php:335 server_status.php:289 +#: libraries/messages.inc.php:331 server_status.php:289 msgid "Flush query cache" msgstr "Den Abfragencache leeren (FLUSH)" -#: libraries/messages.inc.php:336 +#: libraries/messages.inc.php:332 msgid "Flush the table (\"FLUSH\")" msgstr "Leeren des Tabellencaches (\"FLUSH\")" -#: libraries/messages.inc.php:337 server_status.php:271 +#: libraries/messages.inc.php:333 server_status.php:271 msgid "Flush (close) all tables" msgstr "Den Tabellencache leeren (\"FLUSH\")" -#: libraries/messages.inc.php:339 tbl_relation.php:279 +#: libraries/messages.inc.php:335 tbl_relation.php:279 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" "Fehler beim Erzeugen eines Fremdschlüssels für %1$s (überprüfen Sie die " "Datentypen)" -#: libraries/messages.inc.php:341 setup/lib/messages.inc.php:88 +#: libraries/messages.inc.php:337 setup/lib/messages.inc.php:88 #: tbl_printview.php:376 tbl_structure.php:738 msgid "Format" msgstr "Format" -#: libraries/messages.inc.php:344 server_replication.php:325 +#: libraries/messages.inc.php:340 server_replication.php:325 #, fuzzy msgid "Full start" msgstr "Volltext" -#: libraries/messages.inc.php:345 server_replication.php:325 +#: libraries/messages.inc.php:341 server_replication.php:325 #, fuzzy msgid "Full stop" msgstr "Volltext" -#: libraries/messages.inc.php:347 tbl_change.php:282 tbl_change.php:320 +#: libraries/messages.inc.php:343 tbl_change.php:282 tbl_change.php:320 msgid "Function" msgstr "Funktion" -#: libraries/messages.inc.php:355 libraries/mysql_charsets.lib.php:377 +#: libraries/messages.inc.php:351 libraries/mysql_charsets.lib.php:377 msgid "Georgian" msgstr "Georgisch" -#: libraries/messages.inc.php:356 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:352 libraries/mysql_charsets.lib.php:247 #: libraries/mysql_charsets.lib.php:250 msgid "German" msgstr "Deutsch" -#: libraries/messages.inc.php:357 themes.php:42 +#: libraries/messages.inc.php:353 themes.php:42 msgid "Get more themes!" msgstr "Mehr Designs herunterladen!" -#: libraries/messages.inc.php:358 server_privileges.php:2134 +#: libraries/messages.inc.php:354 server_privileges.php:2134 msgid "global" msgstr "global" -#: libraries/messages.inc.php:359 server_privileges.php:524 +#: libraries/messages.inc.php:355 server_privileges.php:524 #: server_privileges.php:1500 msgid "Global privileges" msgstr "Globale Rechte" -#: libraries/messages.inc.php:360 server_variables.php:55 +#: libraries/messages.inc.php:356 server_variables.php:55 #: server_variables.php:89 msgid "Global value" msgstr "Globaler Wert" -#: libraries/messages.inc.php:365 server_privileges.php:1502 +#: libraries/messages.inc.php:361 server_privileges.php:1502 #: server_privileges.php:1684 server_privileges.php:2033 msgid "Grant" msgstr "GRANT" -#: libraries/messages.inc.php:366 libraries/mysql_charsets.lib.php:380 +#: libraries/messages.inc.php:362 libraries/mysql_charsets.lib.php:380 msgid "Greek" msgstr "Griechisch" -#: libraries/messages.inc.php:367 +#: libraries/messages.inc.php:363 msgid "\"gzipped\"" msgstr "GZip-komprimiert" -#: libraries/messages.inc.php:369 server_status.php:250 +#: libraries/messages.inc.php:365 server_status.php:250 msgid "Handler" msgstr "Handler" -#: libraries/messages.inc.php:370 server_synchronize.php:464 +#: libraries/messages.inc.php:366 server_synchronize.php:464 msgid "Selected target tables have been synchronized with source tables." msgstr "Ausgewählte Ziel-Tabellen wurden mit Quell-Tabellen abgeglichen." -#: libraries/messages.inc.php:372 libraries/mysql_charsets.lib.php:374 +#: libraries/messages.inc.php:368 libraries/mysql_charsets.lib.php:374 msgid "Hebrew" msgstr "Hebräisch" -#: libraries/messages.inc.php:373 pmd_general.php:83 +#: libraries/messages.inc.php:369 pmd_general.php:83 msgid "Help" msgstr "Hilfe" -#: libraries/messages.inc.php:374 +#: libraries/messages.inc.php:370 msgid "Use hexadecimal for BLOB" msgstr "Benutze hexadecimal für BLOB" -#: libraries/messages.inc.php:376 pmd_general.php:120 +#: libraries/messages.inc.php:372 pmd_general.php:120 msgid "Hide/Show all" msgstr "Alles ein-/ausblenden" -#: libraries/messages.inc.php:377 pmd_general.php:124 +#: libraries/messages.inc.php:373 pmd_general.php:124 msgid "Hide/Show Tables with no relation" msgstr "Tabellen ohne Verknüpfung aus-/einblenden" -#: libraries/messages.inc.php:378 libraries/navigation_header.inc.php:54 +#: libraries/messages.inc.php:374 libraries/navigation_header.inc.php:54 #: libraries/navigation_header.inc.php:57 #: libraries/navigation_header.inc.php:58 msgid "Home" msgstr "Home" -#: libraries/messages.inc.php:379 main.php:233 +#: libraries/messages.inc.php:375 main.php:233 msgid "Official Homepage" msgstr " Offizielle Homepage " -#: libraries/messages.inc.php:382 libraries/replication_gui.lib.php:327 +#: libraries/messages.inc.php:378 libraries/replication_gui.lib.php:327 #: server_privileges.php:753 msgid "" "When Host table is used, this field is ignored and values stored in Host " @@ -3903,98 +3903,98 @@ msgstr "" "Wenn die Host-Tabelle aktiv ist, wird dieses Feld ignoriert und stattdessen " "die Werte aus der Host-Tabelle verwendet." -#: libraries/messages.inc.php:383 +#: libraries/messages.inc.php:379 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/messages.inc.php:384 libraries/mysql_charsets.lib.php:253 +#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:253 msgid "Hungarian" msgstr "Ungarisch" -#: libraries/messages.inc.php:386 libraries/mysql_charsets.lib.php:256 +#: libraries/messages.inc.php:382 libraries/mysql_charsets.lib.php:256 msgid "Icelandic" msgstr "Isländisch" -#: libraries/messages.inc.php:387 server_processlist.php:53 +#: libraries/messages.inc.php:383 server_processlist.php:53 msgid "ID" msgstr "ID" -#: libraries/messages.inc.php:388 libraries/mult_submits.inc.php:108 +#: libraries/messages.inc.php:384 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:479 msgid "Fulltext" msgstr "Volltext" -#: libraries/messages.inc.php:389 +#: libraries/messages.inc.php:385 msgid "Ignore duplicate rows" msgstr "Ignoriere doppelte Zeilen" -#: libraries/messages.inc.php:390 tbl_change.php:302 tbl_indexes.php:200 +#: libraries/messages.inc.php:386 tbl_change.php:302 tbl_indexes.php:200 #: tbl_indexes.php:225 msgid "Ignore" msgstr "Ignorieren" -#: libraries/messages.inc.php:391 +#: libraries/messages.inc.php:387 msgid "Use ignore inserts" msgstr "Fehlerübergehenden INSERT-Befehl verwenden" -#: libraries/messages.inc.php:392 +#: libraries/messages.inc.php:388 msgid "Column names in first row" msgstr "Spaltennamen in der ersten Zeile" -#: libraries/messages.inc.php:393 +#: libraries/messages.inc.php:389 msgid "Do not import empty rows" msgstr "Keine leeren Zeilen importieren" -#: libraries/messages.inc.php:394 pmd_general.php:104 +#: libraries/messages.inc.php:390 pmd_general.php:104 msgid "Import/Export coordinates for PDF schema" msgstr "Import/Export Koordinaten für das PDF Schema" -#: libraries/messages.inc.php:395 querywindow.php:104 +#: libraries/messages.inc.php:391 querywindow.php:104 msgid "Import files" msgstr "Dateiimport" -#: libraries/messages.inc.php:403 +#: libraries/messages.inc.php:399 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/messages.inc.php:404 libraries/messages.inc.php:584 +#: libraries/messages.inc.php:400 libraries/messages.inc.php:580 msgid "Open Document Spreadsheet" msgstr "Open Document Kalkulationstabelle" -#: libraries/messages.inc.php:405 +#: libraries/messages.inc.php:401 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "Prozentwerte importieren (12.00% wird zu .12)" -#: libraries/messages.inc.php:409 +#: libraries/messages.inc.php:405 msgid "Excel 97-2003 XLS Workbook" msgstr "Excel 97-2003 XLS Workbook" -#: libraries/messages.inc.php:410 +#: libraries/messages.inc.php:406 msgid "Excel 2007 XLSX Workbook" msgstr "Excel 2007 XLSX Workbook" -#: libraries/messages.inc.php:414 libraries/mult_submits.inc.php:98 +#: libraries/messages.inc.php:410 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:476 tbl_structure.php:674 msgid "Index" msgstr "Index" -#: libraries/messages.inc.php:415 tbl_indexes.php:168 +#: libraries/messages.inc.php:411 tbl_indexes.php:168 msgid "Index name:" msgstr "Indexname:" -#: libraries/messages.inc.php:416 tbl_indexes.php:174 +#: libraries/messages.inc.php:412 tbl_indexes.php:174 msgid "Index type:" msgstr "Indextyp:" -#: libraries/messages.inc.php:417 sql.php:639 +#: libraries/messages.inc.php:413 sql.php:639 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Warnungen bei den Indizes der Tabelle `%s`" -#: libraries/messages.inc.php:427 main.php:266 +#: libraries/messages.inc.php:423 main.php:266 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -4007,24 +4007,24 @@ msgstr "" "leicht von außen auf ihn zugreifen. Sie sollten diese Sicherheitslücke " "unbedingt schließen!" -#: libraries/messages.inc.php:428 tbl_change.php:1130 +#: libraries/messages.inc.php:424 tbl_change.php:1130 msgid "Insert as new row" msgstr " Als neuen Datensatz speichern " -#: libraries/messages.inc.php:429 sql.php:496 tbl_replace.php:386 +#: libraries/messages.inc.php:425 sql.php:496 tbl_replace.php:386 #, php-format msgid "Inserted row id: %1$d" msgstr "ID der eingefügten Zeile: %1$d" -#: libraries/messages.inc.php:430 tbl_change.php:1131 +#: libraries/messages.inc.php:426 tbl_change.php:1131 msgid "Insert as new row and ignore errors" msgstr "Als neue Zeile einfügen und Fehler ignorieren" -#: libraries/messages.inc.php:432 main.php:139 +#: libraries/messages.inc.php:428 main.php:139 msgid "Interface" msgstr "Oberfläche" -#: libraries/messages.inc.php:433 tbl_relation.php:407 +#: libraries/messages.inc.php:429 tbl_relation.php:407 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -4032,31 +4032,31 @@ msgstr "" "Eine interne Beziehung ist nicht notwendig, wenn bereits ein entsprechender " "FOREIGN KEY existiert." -#: libraries/messages.inc.php:435 pdf_pages.php:303 +#: libraries/messages.inc.php:431 pdf_pages.php:303 msgid "Internal relations" msgstr "Interne Beziehungen" -#: libraries/messages.inc.php:438 tbl_indexes.php:256 tbl_structure.php:590 +#: libraries/messages.inc.php:434 tbl_indexes.php:256 tbl_structure.php:590 #: tbl_structure.php:601 msgid "Column count has to be larger than zero." msgstr "Die Spaltenanzahl muss größer als 0 sein." -#: libraries/messages.inc.php:444 libraries/tbl_properties.inc.php:784 +#: libraries/messages.inc.php:440 libraries/tbl_properties.inc.php:784 #: tbl_structure.php:537 msgid "You have to add at least one field." msgstr "Sie müssen mindestens ein Feld hinzufügen." -#: libraries/messages.inc.php:449 +#: libraries/messages.inc.php:445 #, php-format msgid "Invalid server index: \"%s\"" msgstr "Ungültige Server-Nummer: \"%s\"" -#: libraries/messages.inc.php:452 libraries/mysql_charsets.lib.php:259 +#: libraries/messages.inc.php:448 libraries/mysql_charsets.lib.php:259 #: libraries/mysql_charsets.lib.php:349 msgid "Japanese" msgstr "Japanisch" -#: libraries/messages.inc.php:453 main.php:331 +#: libraries/messages.inc.php:449 main.php:331 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " @@ -4066,109 +4066,109 @@ msgstr "" "von phpMyAdmin stehen daher nicht zur Verfügung. Zum Beispiel wird die " "Navigation nicht automatisch aktualisiert." -#: libraries/messages.inc.php:454 server_status.php:257 +#: libraries/messages.inc.php:450 server_status.php:257 msgid "Joins" msgstr "Tabellenverknüpfungen (joins)" -#: libraries/messages.inc.php:457 server_privileges.php:763 +#: libraries/messages.inc.php:453 server_privileges.php:763 msgid "Do not change the password" msgstr "Passwort nicht verändert" -#: libraries/messages.inc.php:458 server_status.php:256 +#: libraries/messages.inc.php:454 server_status.php:256 msgid "Key cache" msgstr "Schlüssel-Cache" -#: libraries/messages.inc.php:462 libraries/mysql_charsets.lib.php:268 +#: libraries/messages.inc.php:458 libraries/mysql_charsets.lib.php:268 #: libraries/mysql_charsets.lib.php:371 msgid "Korean" msgstr "Koreanisch" -#: libraries/messages.inc.php:466 libraries/select_lang.lib.php:480 +#: libraries/messages.inc.php:462 libraries/select_lang.lib.php:480 #: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492 #, php-format msgid "Unknown language: %1$s." msgstr "Unbekannte Sprache: \"%1$s\"." -#: libraries/messages.inc.php:468 +#: libraries/messages.inc.php:464 msgid "Table caption" msgstr "Tabellenbeschriftung" -#: libraries/messages.inc.php:469 +#: libraries/messages.inc.php:465 msgid "Content of table __TABLE__" msgstr "Inhalt der Tabelle __TABLE__" -#: libraries/messages.inc.php:470 +#: libraries/messages.inc.php:466 msgid "Continued table caption" msgstr "Fortgesetzte Tabellenbeschriftung" -#: libraries/messages.inc.php:471 +#: libraries/messages.inc.php:467 msgid "(continued)" msgstr "(Fortsetzung)" -#: libraries/messages.inc.php:472 +#: libraries/messages.inc.php:468 msgid "Include table caption" msgstr "Tabellenbeschriftung einfügen" -#: libraries/messages.inc.php:473 +#: libraries/messages.inc.php:469 msgid "Label key" msgstr "Kennzeichen" -#: libraries/messages.inc.php:474 +#: libraries/messages.inc.php:470 msgid "LaTeX" msgstr "LaTeX" -#: libraries/messages.inc.php:475 +#: libraries/messages.inc.php:471 msgid "Structure of table __TABLE__" msgstr "Struktur der Tabelle __TABLE__" -#: libraries/messages.inc.php:476 libraries/mysql_charsets.lib.php:262 +#: libraries/messages.inc.php:472 libraries/mysql_charsets.lib.php:262 msgid "Latvian" msgstr "Lettisch" -#: libraries/messages.inc.php:477 +#: libraries/messages.inc.php:473 msgid "CSV using LOAD DATA" msgstr "CSV mit LOAD DATA" -#: libraries/messages.inc.php:478 +#: libraries/messages.inc.php:474 msgid "Use LOCAL keyword" msgstr "verwende LOCAL" -#: libraries/messages.inc.php:479 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:475 libraries/tbl_properties.inc.php:105 msgid "Length/Values" msgstr "Länge/Set" -#: libraries/messages.inc.php:480 tbl_select.php:295 +#: libraries/messages.inc.php:476 tbl_select.php:295 msgid "Number of rows per page" msgstr "Einträge pro Seite" -#: libraries/messages.inc.php:484 libraries/mysql_charsets.lib.php:265 +#: libraries/messages.inc.php:480 libraries/mysql_charsets.lib.php:265 msgid "Lithuanian" msgstr "Litauisch" -#: libraries/messages.inc.php:485 libraries/replication_gui.lib.php:302 +#: libraries/messages.inc.php:481 libraries/replication_gui.lib.php:302 #: server_privileges.php:729 msgid "Local" msgstr "Lokal" -#: libraries/messages.inc.php:487 server_privileges.php:669 +#: libraries/messages.inc.php:483 server_privileges.php:669 msgid "Login Information" msgstr "Anmelde-Informationen" -#: libraries/messages.inc.php:490 libraries/navigation_header.inc.php:67 +#: libraries/messages.inc.php:486 libraries/navigation_header.inc.php:67 #: libraries/navigation_header.inc.php:70 #: libraries/navigation_header.inc.php:71 main.php:99 msgid "Log out" msgstr "Neu anmelden" -#: libraries/messages.inc.php:497 server_status.php:440 +#: libraries/messages.inc.php:493 server_status.php:440 msgid "max. concurrent connections" msgstr "max. gleichzeitige Verbindungen" -#: libraries/messages.inc.php:498 +#: libraries/messages.inc.php:494 msgid "Maximal length of created query" msgstr "Maximale Länge der erstellten Abfrage" -#: libraries/messages.inc.php:500 main.php:282 +#: libraries/messages.inc.php:496 main.php:282 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -4179,7 +4179,7 @@ msgstr "" "Erweiterung ist phpMyAdmin nicht in der Lage Zeichenketten zu trennen, was " "zu unerwarteten Ergebnissen führen kann." -#: libraries/messages.inc.php:501 main.php:274 +#: libraries/messages.inc.php:497 main.php:274 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -4189,24 +4189,24 @@ msgstr "" "aktiviert. Diese ist nicht kompatibel zu phpMyAdmin, weshalb es zu Problemen " "und Datenverlust kommen kann." -#: libraries/messages.inc.php:502 +#: libraries/messages.inc.php:498 msgid "MediaWiki Table" msgstr "Tabelle für MediaWiki" -#: libraries/messages.inc.php:503 transformation_overview.php:25 +#: libraries/messages.inc.php:499 transformation_overview.php:25 msgid "Available MIME types" msgstr "Verfügbare MIME-Typen" -#: libraries/messages.inc.php:504 transformation_overview.php:43 +#: libraries/messages.inc.php:500 transformation_overview.php:43 msgid "Available transformations" msgstr "Verfügbare Umwandlungen" -#: libraries/messages.inc.php:505 +#: libraries/messages.inc.php:501 msgctxt "$strMIME_description" msgid "Description" msgstr "Beschreibung" -#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:580 +#: libraries/messages.inc.php:503 libraries/tbl_properties.inc.php:580 #: transformation_overview.php:60 #, php-format msgid "" @@ -4217,7 +4217,7 @@ msgstr "" "Informationen wenden Sie sich bitte an den Autoren der Funktion "%" "s"." -#: libraries/messages.inc.php:509 libraries/tbl_properties.inc.php:137 +#: libraries/messages.inc.php:505 libraries/tbl_properties.inc.php:137 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -4226,7 +4226,7 @@ msgstr "" "Um eine Liste aller verfügbaren MIME-Typen-Umwandlungen und deren Optionen " "zu sehen, klicken Sie bitte auf %sUmwandlungen%s" -#: libraries/messages.inc.php:510 libraries/tbl_properties.inc.php:146 +#: libraries/messages.inc.php:506 libraries/tbl_properties.inc.php:146 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -4238,57 +4238,57 @@ msgstr "" "Anführungszeichen (\"'\") verwenden, setzen Sie bitte ein Backslash vor das " "Zeichen. (z. B.: '\\\\xyz' oder 'a\\'b')." -#: libraries/messages.inc.php:511 libraries/tbl_properties.inc.php:145 +#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:145 msgid "Transformation options" msgstr "Umwandlungsoptionen" -#: libraries/messages.inc.php:513 transformation_overview.php:38 +#: libraries/messages.inc.php:509 transformation_overview.php:38 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "" "Kursiv dargestellte MIME-Typen besitzen keine untergliederten Umwandlungen." -#: libraries/messages.inc.php:515 tbl_indexes.php:162 +#: libraries/messages.inc.php:511 tbl_indexes.php:162 msgid "Modify an index" msgstr "Index modifizieren" -#: libraries/messages.inc.php:517 pmd_general.php:108 +#: libraries/messages.inc.php:513 pmd_general.php:108 msgid "Move Menu" msgstr "Verschiebe Menü" -#: libraries/messages.inc.php:518 tbl_operations.php:276 +#: libraries/messages.inc.php:514 tbl_operations.php:276 msgid "Move table to (database.table):" msgstr "Verschiebe Tabelle nach (Datenbank.Tabellenname):" -#: libraries/messages.inc.php:519 tbl_move_copy.php:56 +#: libraries/messages.inc.php:515 tbl_move_copy.php:56 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabelle %s wurde nach %s verschoben." -#: libraries/messages.inc.php:520 tbl_move_copy.php:46 +#: libraries/messages.inc.php:516 tbl_move_copy.php:46 msgid "Can't move table to same one!" msgstr "Tabelle kann nicht mit gleichem Namen verschoben werden!" -#: libraries/messages.inc.php:521 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:517 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 #: libraries/mysql_charsets.lib.php:332 libraries/mysql_charsets.lib.php:354 #: libraries/mysql_charsets.lib.php:365 msgid "multilingual" msgstr "mehrsprachig" -#: libraries/messages.inc.php:534 main.php:193 +#: libraries/messages.inc.php:530 main.php:193 msgid "MySQL charset" msgstr "MySQL-Zeichensatz" -#: libraries/messages.inc.php:535 main.php:211 +#: libraries/messages.inc.php:531 main.php:211 msgid "MySQL client version" msgstr "MySQL-Client-Version" -#: libraries/messages.inc.php:536 main.php:125 +#: libraries/messages.inc.php:532 main.php:125 msgid "MySQL connection collation" msgstr "Zeichensatz / Kollation der MySQL-Verbindung" -#: libraries/messages.inc.php:537 main.php:346 +#: libraries/messages.inc.php:533 main.php:346 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -4297,54 +4297,54 @@ msgstr "" "Die Version der verwendeten PHP MySQL Bibliothek %s unterscheidet sich von " "der Version des MySQL Servers %s. Dies kann zu unerwartetem Verhalten führen." -#: libraries/messages.inc.php:539 server_status.php:294 +#: libraries/messages.inc.php:535 server_status.php:294 msgid "Show processes" msgstr "Prozesse anzeigen" -#: libraries/messages.inc.php:545 navigation.php:210 server_databases.php:371 +#: libraries/messages.inc.php:541 navigation.php:210 server_databases.php:371 #: server_synchronize.php:1191 msgid "No databases" msgstr "Keine Datenbanken" -#: libraries/messages.inc.php:546 server_databases.php:52 +#: libraries/messages.inc.php:542 server_databases.php:52 msgid "No databases selected." msgstr "Es wurden keine Datenbanken ausgewählt." -#: libraries/messages.inc.php:548 libraries/relation.lib.php:1173 +#: libraries/messages.inc.php:544 libraries/relation.lib.php:1173 msgid "no description" msgstr "keine Beschreibung" -#: libraries/messages.inc.php:552 libraries/zip_extension.lib.php:26 +#: libraries/messages.inc.php:548 libraries/zip_extension.lib.php:26 msgid "No files found inside ZIP archive!" msgstr "Keine Dateien im ZIP-Archiv gefunden!" -#: libraries/messages.inc.php:555 tbl_indexes.php:91 +#: libraries/messages.inc.php:551 tbl_indexes.php:91 msgid "No index parts defined!" msgstr "Keine Indizes definiert." -#: libraries/messages.inc.php:556 libraries/mult_submits.inc.php:435 +#: libraries/messages.inc.php:552 libraries/mult_submits.inc.php:435 #: tbl_replace.php:331 msgid "No change" msgstr "Keine Änderung" -#: libraries/messages.inc.php:557 +#: libraries/messages.inc.php:553 msgctxt "$strNoneDefault" msgid "None" msgstr "Kein" -#: libraries/messages.inc.php:560 libraries/plugin_interface.lib.php:312 +#: libraries/messages.inc.php:556 libraries/plugin_interface.lib.php:312 msgid "This format has no options" msgstr "Für dieses Format sind keine Optionen vorhanden" -#: libraries/messages.inc.php:565 user_password.php:54 +#: libraries/messages.inc.php:561 user_password.php:54 msgid "You don't have sufficient privileges to be here right now!" msgstr "Sie haben nicht genug Rechte um fortzufahren!" -#: libraries/messages.inc.php:566 tbl_row_action.php:29 +#: libraries/messages.inc.php:562 tbl_row_action.php:29 msgid "No rows selected" msgstr "Es wurden keine Datensätze ausgewählt." -#: libraries/messages.inc.php:569 themes.php:32 +#: libraries/messages.inc.php:565 themes.php:32 #, php-format msgid "" "No themes support; please check your configuration and/or your themes in " @@ -4353,16 +4353,16 @@ msgstr "" "Die Unterstützung für Oberflächendesigns ist deaktiviert. Bitte überprüfen " "Sie Ihre Konfiguration und / oder Ihre Designs im Verzeichnis %s." -#: libraries/messages.inc.php:571 libraries/relation.lib.php:95 +#: libraries/messages.inc.php:567 libraries/relation.lib.php:95 msgid "not OK" msgstr "fehlerhaft" -#: libraries/messages.inc.php:572 server_synchronize.php:400 +#: libraries/messages.inc.php:568 server_synchronize.php:400 #: server_synchronize.php:839 msgid "not present" msgstr "nicht vorhanden" -#: libraries/messages.inc.php:573 pdf_pages.php:36 pdf_pages.php:42 +#: libraries/messages.inc.php:569 pdf_pages.php:36 pdf_pages.php:42 #: pdf_pages.php:48 pdf_pages.php:53 #, php-format msgid "%s table not found or not set in %s" @@ -4370,123 +4370,123 @@ msgstr "" "Die Tabelle %s wurde entweder nicht gefunden oder in der " "Kofigurationsdatei %s nicht gesetzt." -#: libraries/messages.inc.php:574 server_privileges.php:804 +#: libraries/messages.inc.php:570 server_privileges.php:804 #: server_privileges.php:2166 msgid "No user(s) found." msgstr "Es wurden keine Benutzer gefunden." -#: libraries/messages.inc.php:578 pmd_general.php:164 +#: libraries/messages.inc.php:574 pmd_general.php:164 msgid "Number of tables" msgstr "Anzahl Tabellen" -#: libraries/messages.inc.php:581 server_databases.php:117 +#: libraries/messages.inc.php:577 server_databases.php:117 #: server_status.php:260 setup/lib/messages.inc.php:117 msgid "Tables" msgstr "Tabellen" -#: libraries/messages.inc.php:583 libraries/relation.lib.php:99 +#: libraries/messages.inc.php:579 libraries/relation.lib.php:99 #: pmd_general.php:340 msgid "OK" msgstr "OK" -#: libraries/messages.inc.php:585 +#: libraries/messages.inc.php:581 msgid "Open Document Text" msgstr "Open Document Text" -#: libraries/messages.inc.php:588 tbl_select.php:138 +#: libraries/messages.inc.php:584 tbl_select.php:138 msgid "Operator" msgstr "Operator" -#: libraries/messages.inc.php:589 tbl_operations.php:662 +#: libraries/messages.inc.php:585 tbl_operations.php:662 msgid "Optimize" msgstr "Optimieren" -#: libraries/messages.inc.php:602 libraries/tbl_properties.inc.php:755 +#: libraries/messages.inc.php:598 libraries/tbl_properties.inc.php:755 msgid "PARTITION definition" msgstr "PARTITION Definition" -#: libraries/messages.inc.php:603 tbl_structure.php:757 +#: libraries/messages.inc.php:599 tbl_structure.php:757 msgid "partitioned" msgstr "partitioniert" -#: libraries/messages.inc.php:604 tbl_operations.php:649 +#: libraries/messages.inc.php:600 tbl_operations.php:649 msgid "Partition maintenance" msgstr "Partitions-Hilfsmittel" -#: libraries/messages.inc.php:605 tbl_operations.php:657 +#: libraries/messages.inc.php:601 tbl_operations.php:657 #, php-format msgid "Partition %s" msgstr "Partition %s" -#: libraries/messages.inc.php:606 server_privileges.php:1212 +#: libraries/messages.inc.php:602 server_privileges.php:1212 #, php-format msgid "The password for %s was changed successfully." msgstr "Das Passwort für %s wurde geändert." -#: libraries/messages.inc.php:635 +#: libraries/messages.inc.php:631 #, php-format msgid "Schema of the \"%s\" database - Page %s" msgstr "Schema der Datenbank \"%s\" - Seite %s" -#: libraries/messages.inc.php:636 +#: libraries/messages.inc.php:632 #, php-format msgid "The \"%s\" table doesn't exist!" msgstr "Die Tabelle \"%s\" existiert nicht!" -#: libraries/messages.inc.php:637 pdf_schema.php:1013 +#: libraries/messages.inc.php:633 pdf_schema.php:1013 msgid "No tables" msgstr "keine Tabellen" -#: libraries/messages.inc.php:638 pmd_pdf.php:63 +#: libraries/messages.inc.php:634 pmd_pdf.php:63 msgid "Page has been created" msgstr "Seite wurde erstellt" -#: libraries/messages.inc.php:639 pmd_pdf.php:65 +#: libraries/messages.inc.php:635 pmd_pdf.php:65 msgid "Page creation failed" msgstr "Seitenerstellung fehlgeschlagen" -#: libraries/messages.inc.php:640 +#: libraries/messages.inc.php:636 msgid "PDF" msgstr "PDF" -#: libraries/messages.inc.php:641 +#: libraries/messages.inc.php:637 msgid "(Generates a report containing the data of a single table)" msgstr "(Erstellt einen Report mit den Daten einer Tabelle)" -#: libraries/messages.inc.php:642 +#: libraries/messages.inc.php:638 msgid "Report title" msgstr "Titel des Reports" -#: libraries/messages.inc.php:643 server_status.php:389 server_status.php:434 +#: libraries/messages.inc.php:639 server_status.php:389 server_status.php:434 #: server_status.php:497 server_status.php:555 msgid "per hour" msgstr "pro Stunde" -#: libraries/messages.inc.php:644 server_status.php:498 +#: libraries/messages.inc.php:640 server_status.php:498 msgid "per minute" msgstr "pro Minute" -#: libraries/messages.inc.php:645 server_status.php:499 +#: libraries/messages.inc.php:641 server_status.php:499 msgid "per second" msgstr "pro Sekunde" -#: libraries/messages.inc.php:646 libraries/mysql_charsets.lib.php:271 +#: libraries/messages.inc.php:642 libraries/mysql_charsets.lib.php:271 msgid "Persian" msgstr "Persisch" -#: libraries/messages.inc.php:647 libraries/mysql_charsets.lib.php:250 +#: libraries/messages.inc.php:643 libraries/mysql_charsets.lib.php:250 msgid "phone book" msgstr "Telefonbuch" -#: libraries/messages.inc.php:648 +#: libraries/messages.inc.php:644 msgid "PHP array" msgstr "PHP-Array" -#: libraries/messages.inc.php:650 main.php:213 +#: libraries/messages.inc.php:646 main.php:213 msgid "PHP extension" msgstr "PHP Erweiterung" -#: libraries/messages.inc.php:654 libraries/relation.lib.php:163 +#: libraries/messages.inc.php:650 libraries/relation.lib.php:163 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." @@ -4495,160 +4495,160 @@ msgstr "" "php) aktiviert werden. Beispiele finden sich in der config." "sample.inc.php." -#: libraries/messages.inc.php:655 libraries/relation.lib.php:159 +#: libraries/messages.inc.php:651 libraries/relation.lib.php:159 msgid "Quick steps to setup advanced features:" msgstr "Kurzanleitung zum Einrichten der zusätzlichen Funktionen:" -#: libraries/messages.inc.php:656 libraries/relation.lib.php:161 +#: libraries/messages.inc.php:652 libraries/relation.lib.php:161 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" "Erstellen der benötigten Tabellen mittels script/create_tables.sql." -#: libraries/messages.inc.php:657 libraries/relation.lib.php:162 +#: libraries/messages.inc.php:653 libraries/relation.lib.php:162 msgid "Create a pma user and give access to these tables." msgstr "Den Benutzer pma einrichten und Zugriff auf diese Tabellen geben." -#: libraries/messages.inc.php:658 libraries/relation.lib.php:164 +#: libraries/messages.inc.php:654 libraries/relation.lib.php:164 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" "Erneut in phpMyAdmin anmelden um die neue Konfigurationsdatei zu laden." -#: libraries/messages.inc.php:661 libraries/mysql_charsets.lib.php:274 +#: libraries/messages.inc.php:657 libraries/mysql_charsets.lib.php:274 msgid "Polish" msgstr "Polnisch" -#: libraries/messages.inc.php:662 libraries/replication_gui.lib.php:67 +#: libraries/messages.inc.php:658 libraries/replication_gui.lib.php:67 #: server_synchronize.php:1163 msgid "Port" msgstr "Port" -#: libraries/messages.inc.php:667 tbl_indexes.php:67 +#: libraries/messages.inc.php:663 tbl_indexes.php:67 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Der Name des Primärschlüssels muss PRIMARY lauten!" -#: libraries/messages.inc.php:668 tbl_indexes.php:184 +#: libraries/messages.inc.php:664 tbl_indexes.php:184 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "Der Name des Primärschlüssels darf nur \"PRIMARY\" lauten." -#: libraries/messages.inc.php:669 libraries/mult_submits.inc.php:76 +#: libraries/messages.inc.php:665 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:474 msgid "Primary" msgstr "Primärschlüssel" -#: libraries/messages.inc.php:673 server_privileges.php:227 +#: libraries/messages.inc.php:669 server_privileges.php:227 msgid "Includes all privileges except GRANT." msgstr "Enthält alle Rechte bis auf GRANT." -#: libraries/messages.inc.php:674 server_privileges.php:153 +#: libraries/messages.inc.php:670 server_privileges.php:153 #: server_privileges.php:476 msgid "Allows altering the structure of existing tables." msgstr "Erlaubt das Verändern der Struktur bestehender Tabellen." -#: libraries/messages.inc.php:675 server_privileges.php:169 +#: libraries/messages.inc.php:671 server_privileges.php:169 #: server_privileges.php:482 msgid "Allows altering and dropping stored routines." msgstr "Erlaubt das Verändern und Löschen von Routinen." -#: libraries/messages.inc.php:676 server_privileges.php:145 +#: libraries/messages.inc.php:672 server_privileges.php:145 #: server_privileges.php:475 msgid "Allows creating new databases and tables." msgstr "Erlaubt das Erstellen neuer Datenbanken und Tabellen." -#: libraries/messages.inc.php:677 server_privileges.php:168 +#: libraries/messages.inc.php:673 server_privileges.php:168 #: server_privileges.php:481 msgid "Allows creating stored routines." msgstr "Erlaubt das Erstellen von gespeicherten Routinen." -#: libraries/messages.inc.php:678 server_privileges.php:475 +#: libraries/messages.inc.php:674 server_privileges.php:475 msgid "Allows creating new tables." msgstr "Erlaubt das Erstellen neuer Tabellen." -#: libraries/messages.inc.php:679 server_privileges.php:156 +#: libraries/messages.inc.php:675 server_privileges.php:156 #: server_privileges.php:479 msgid "Allows creating temporary tables." msgstr "Erlaubt das Erstellen temporärer Tabellen." -#: libraries/messages.inc.php:680 server_privileges.php:170 +#: libraries/messages.inc.php:676 server_privileges.php:170 #: server_privileges.php:515 msgid "Allows creating, dropping and renaming user accounts." msgstr "Erlaubt das Erstellen, Löschen und Umbenennen von Benutzern." -#: libraries/messages.inc.php:681 server_privileges.php:160 +#: libraries/messages.inc.php:677 server_privileges.php:160 #: server_privileges.php:164 server_privileges.php:487 #: server_privileges.php:491 msgid "Allows creating new views." msgstr "Erlaubt das Erstellen von Views." -#: libraries/messages.inc.php:682 server_privileges.php:144 +#: libraries/messages.inc.php:678 server_privileges.php:144 #: server_privileges.php:467 msgid "Allows deleting data." msgstr "Erlaubt das Löschen von Daten." -#: libraries/messages.inc.php:683 server_privileges.php:146 +#: libraries/messages.inc.php:679 server_privileges.php:146 #: server_privileges.php:478 msgid "Allows dropping databases and tables." msgstr "Erlaubt das Löschen ganzer Datenbanken und Tabellen." -#: libraries/messages.inc.php:684 server_privileges.php:478 +#: libraries/messages.inc.php:680 server_privileges.php:478 msgid "Allows dropping tables." msgstr "Erlaubt das Löschen ganzer Tabellen." -#: libraries/messages.inc.php:685 server_privileges.php:161 +#: libraries/messages.inc.php:681 server_privileges.php:161 #: server_privileges.php:495 msgid "Allows to set up events for the event scheduler" msgstr "Erlaubt das Anlegen von Events für den Event-Scheduler" -#: libraries/messages.inc.php:686 server_privileges.php:171 +#: libraries/messages.inc.php:682 server_privileges.php:171 #: server_privileges.php:483 msgid "Allows executing stored routines." msgstr "Erlaubt das Ausführen von Routinen." -#: libraries/messages.inc.php:687 server_privileges.php:150 +#: libraries/messages.inc.php:683 server_privileges.php:150 #: server_privileges.php:470 msgid "Allows importing data from and exporting data into files." msgstr "" "Erlaubt das Importieren von Daten aus und das Exportieren in externe Dateien." -#: libraries/messages.inc.php:688 server_privileges.php:501 +#: libraries/messages.inc.php:684 server_privileges.php:501 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Erlaubt das Hinzufügen von Benutzern und Rechten ohne den die " "Benutzerprofile neu laden zu müssen." -#: libraries/messages.inc.php:689 server_privileges.php:152 +#: libraries/messages.inc.php:685 server_privileges.php:152 #: server_privileges.php:477 msgid "Allows creating and dropping indexes." msgstr "Erlaubt das Erstellen und Löschen von Indizes." -#: libraries/messages.inc.php:690 server_privileges.php:142 +#: libraries/messages.inc.php:686 server_privileges.php:142 #: server_privileges.php:403 server_privileges.php:465 msgid "Allows inserting and replacing data." msgstr "Erlaubt das Hinzufügen und Ersetzen von Daten." -#: libraries/messages.inc.php:691 server_privileges.php:157 +#: libraries/messages.inc.php:687 server_privileges.php:157 #: server_privileges.php:510 msgid "Allows locking tables for the current thread." msgstr "Erlaubt die Sperrung bestimmter Tabellen." -#: libraries/messages.inc.php:692 server_privileges.php:607 +#: libraries/messages.inc.php:688 server_privileges.php:607 #: server_privileges.php:609 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Begrenzt die Anzahl neuer Verbindungen, welche ein Benutzer pro Stunde " "aufbauen darf." -#: libraries/messages.inc.php:693 server_privileges.php:595 +#: libraries/messages.inc.php:689 server_privileges.php:595 #: server_privileges.php:597 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Begrenzt die Anzahl der Abfragen, welche ein Benutzer pro Stunde senden darf." -#: libraries/messages.inc.php:694 server_privileges.php:601 +#: libraries/messages.inc.php:690 server_privileges.php:601 #: server_privileges.php:603 msgid "" "Limits the number of commands that change any table or database the user may " @@ -4657,62 +4657,62 @@ msgstr "" "Begrenzt die Anzahl der Veränderungen, welche ein Benutzer pro Stunde an " "allen Datenbanken und Tabellen vornehmen darf." -#: libraries/messages.inc.php:695 server_privileges.php:613 +#: libraries/messages.inc.php:691 server_privileges.php:613 #: server_privileges.php:615 msgid "Limits the number of simultaneous connections the user may have." msgstr "" "Beschränkt die Anzahl der gleichzeitigen Verbindungen für diesen Benutzer." -#: libraries/messages.inc.php:696 server_privileges.php:149 +#: libraries/messages.inc.php:692 server_privileges.php:149 #: server_privileges.php:505 msgid "Allows viewing processes of all users" msgstr "Erlaubt die Anzeige der Prozesse aller Benutzer" -#: libraries/messages.inc.php:697 server_privileges.php:151 +#: libraries/messages.inc.php:693 server_privileges.php:151 #: server_privileges.php:409 server_privileges.php:511 msgid "Has no effect in this MySQL version." msgstr "Hat keinen Effekt in dieser MySQL-Version." -#: libraries/messages.inc.php:698 server_privileges.php:147 +#: libraries/messages.inc.php:694 server_privileges.php:147 #: server_privileges.php:506 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Erlaubt das erneute Laden von Servereinstellungen und das Leeren der " "Zwischenspeicher zur Laufzeit." -#: libraries/messages.inc.php:699 server_privileges.php:159 +#: libraries/messages.inc.php:695 server_privileges.php:159 #: server_privileges.php:513 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Erlaubt dem Benutzer zu fragen, wo sich die Master- bzw. Slave-Systeme " "befinden" -#: libraries/messages.inc.php:700 server_privileges.php:158 +#: libraries/messages.inc.php:696 server_privileges.php:158 #: server_privileges.php:514 msgid "Needed for the replication slaves." msgstr "Wird für die Replication-Slave-Systeme benötigt." -#: libraries/messages.inc.php:701 server_privileges.php:141 +#: libraries/messages.inc.php:697 server_privileges.php:141 #: server_privileges.php:400 server_privileges.php:464 msgid "Allows reading data." msgstr "Erlaubt das Auslesen von Daten." -#: libraries/messages.inc.php:702 server_privileges.php:154 +#: libraries/messages.inc.php:698 server_privileges.php:154 #: server_privileges.php:508 msgid "Gives access to the complete list of databases." msgstr "Gewährt Zugang zur vollständigen Datenbankliste." -#: libraries/messages.inc.php:703 server_privileges.php:165 +#: libraries/messages.inc.php:699 server_privileges.php:165 #: server_privileges.php:167 server_privileges.php:480 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Erlaubt das Ausführen von 'SHOW CREATE VIEW'." -#: libraries/messages.inc.php:704 server_privileges.php:148 +#: libraries/messages.inc.php:700 server_privileges.php:148 #: server_privileges.php:507 msgid "Allows shutting down the server." msgstr "Erlaubt das Beenden des Servers." -#: libraries/messages.inc.php:705 server_privileges.php:155 +#: libraries/messages.inc.php:701 server_privileges.php:155 #: server_privileges.php:504 msgid "" "Allows connecting, even if maximum number of connections is reached; " @@ -4723,55 +4723,55 @@ msgstr "" "bereits erreicht ist; Wird für viele administrative Operationen, wie das " "Setzen globaler Variables oder das Beenden fremder Prozesse, vorausgesetzt." -#: libraries/messages.inc.php:706 server_privileges.php:162 +#: libraries/messages.inc.php:702 server_privileges.php:162 #: server_privileges.php:496 msgid "Allows creating and dropping triggers" msgstr "Erlaubt das Erzeugen und Löschen Triggern" -#: libraries/messages.inc.php:707 server_privileges.php:143 +#: libraries/messages.inc.php:703 server_privileges.php:143 #: server_privileges.php:406 server_privileges.php:466 msgid "Allows changing data." msgstr "Erlaubt das Verändern von gespeicherten Daten." -#: libraries/messages.inc.php:708 server_privileges.php:221 +#: libraries/messages.inc.php:704 server_privileges.php:221 msgid "No privileges." msgstr "Keine Rechte." -#: libraries/messages.inc.php:710 server_privileges.php:1296 +#: libraries/messages.inc.php:706 server_privileges.php:1296 msgid "The privileges were reloaded successfully." msgstr "Die Benutzerprofile wurden neu geladen." -#: libraries/messages.inc.php:712 libraries/server_links.inc.php:80 +#: libraries/messages.inc.php:708 libraries/server_links.inc.php:80 msgid "Processes" msgstr "Prozesse" -#: libraries/messages.inc.php:714 main.php:187 +#: libraries/messages.inc.php:710 main.php:187 msgid "Protocol version" msgstr "Protokoll-Version" -#: libraries/messages.inc.php:715 +#: libraries/messages.inc.php:711 msgid "Put fields names in the first row" msgstr "Feldnamen in die erste Zeile setzen" -#: libraries/messages.inc.php:720 server_synchronize.php:1003 +#: libraries/messages.inc.php:716 server_synchronize.php:1003 msgid "The following queries have been executed:" msgstr "Die folgenden Abfragen wurden ausgeführt:" -#: libraries/messages.inc.php:721 server_status.php:251 +#: libraries/messages.inc.php:717 server_status.php:251 msgid "Query cache" msgstr "Abfragencache" -#: libraries/messages.inc.php:722 libraries/navigation_header.inc.php:80 +#: libraries/messages.inc.php:718 libraries/navigation_header.inc.php:80 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 setup/lib/messages.inc.php:122 msgid "Query window" msgstr "Abfragefenster" -#: libraries/messages.inc.php:725 querywindow.php:109 querywindow.php:217 +#: libraries/messages.inc.php:721 querywindow.php:109 querywindow.php:217 msgid "SQL history" msgstr "SQL-Verlaufsprotokoll" -#: libraries/messages.inc.php:726 server_status.php:490 +#: libraries/messages.inc.php:722 server_status.php:490 #, php-format msgid "" "Query statistics: Since its startup, %s queries have been sent to the " @@ -4780,93 +4780,93 @@ msgstr "" "Abfragestatistik: Seit seinem Start wurden %s Abfragen an diesen " "MySQL-Server gesandt." -#: libraries/messages.inc.php:728 server_status.php:554 +#: libraries/messages.inc.php:724 server_status.php:554 msgid "Query type" msgstr "Abfrageart" -#: libraries/messages.inc.php:729 libraries/sql_query_form.lib.php:381 +#: libraries/messages.inc.php:725 libraries/sql_query_form.lib.php:381 msgid "Do not overwrite this query from outside the window" msgstr "Abfrage vor Änderungen außerhalb des Fensters schützen" -#: libraries/messages.inc.php:732 tbl_operations.php:663 +#: libraries/messages.inc.php:728 tbl_operations.php:663 msgid "Rebuild" msgstr "Neuaufbauen" -#: libraries/messages.inc.php:733 server_status.php:394 +#: libraries/messages.inc.php:729 server_status.php:394 msgid "Received" msgstr "Empfangen" -#: libraries/messages.inc.php:734 pmd_pdf.php:89 +#: libraries/messages.inc.php:730 pmd_pdf.php:89 msgid "recommended" msgstr "empfohlen" -#: libraries/messages.inc.php:736 tbl_operations.php:702 +#: libraries/messages.inc.php:732 tbl_operations.php:702 msgid "Check referential integrity:" msgstr "Prüfe referentielle Integrität:" -#: libraries/messages.inc.php:740 pdf_schema.php:1032 pdf_schema.php:1141 +#: libraries/messages.inc.php:736 pdf_schema.php:1032 pdf_schema.php:1141 msgid "Relational schema" msgstr "Beziehungsschema" -#: libraries/messages.inc.php:744 tbl_relation.php:399 +#: libraries/messages.inc.php:740 tbl_relation.php:399 msgid "Relations" msgstr "Tabellenverknüpfungen" -#: libraries/messages.inc.php:745 tbl_structure.php:507 tbl_structure.php:509 +#: libraries/messages.inc.php:741 tbl_structure.php:507 tbl_structure.php:509 msgid "Relation view" msgstr "Beziehungsübersicht" -#: libraries/messages.inc.php:746 server_privileges.php:1246 +#: libraries/messages.inc.php:742 server_privileges.php:1246 msgid "Reloading the privileges" msgstr "Lade die Benutzertabellen neu" -#: libraries/messages.inc.php:747 navigation.php:66 navigation.php:67 +#: libraries/messages.inc.php:743 navigation.php:66 navigation.php:67 #: navigation.php:70 msgid "Reload navigation frame" msgstr "Navigation-Frame aktualisieren" -#: libraries/messages.inc.php:748 pmd_general.php:80 +#: libraries/messages.inc.php:744 pmd_general.php:80 msgid "Reload" msgstr "Neuladen" -#: libraries/messages.inc.php:749 libraries/server_synchronize.lib.php:1345 +#: libraries/messages.inc.php:745 libraries/server_synchronize.lib.php:1345 #: libraries/server_synchronize.lib.php:1371 msgid "Remote server" msgstr "Entfernter Server" -#: libraries/messages.inc.php:750 +#: libraries/messages.inc.php:746 msgid "Remove CRLF characters within fields" msgstr "CRLF-Zeichen aus den Feldern entfernen" -#: libraries/messages.inc.php:751 tbl_operations.php:676 +#: libraries/messages.inc.php:747 tbl_operations.php:676 msgid "Remove partitioning" msgstr "Entferne die Partitionierung" -#: libraries/messages.inc.php:752 server_privileges.php:1575 +#: libraries/messages.inc.php:748 server_privileges.php:1575 msgid "Remove selected users" msgstr "Die ausgewählten Benutzer löschen" -#: libraries/messages.inc.php:755 tbl_operations.php:338 +#: libraries/messages.inc.php:751 tbl_operations.php:338 msgid "Rename table to" msgstr "Tabelle umbenennen in" -#: libraries/messages.inc.php:756 view_operations.php:93 +#: libraries/messages.inc.php:752 view_operations.php:93 msgid "Rename view to" msgstr "View umbenennen in" -#: libraries/messages.inc.php:757 tbl_operations.php:664 +#: libraries/messages.inc.php:753 tbl_operations.php:664 msgid "Repair" msgstr "Reparieren" -#: libraries/messages.inc.php:759 +#: libraries/messages.inc.php:755 msgid "Replace NULL by" msgstr "Ersetze NULL durch" -#: libraries/messages.inc.php:760 +#: libraries/messages.inc.php:756 msgid "Replace table data with file" msgstr "Tabelleninhalt ersetzen" -#: libraries/messages.inc.php:761 server_replication.php:228 +#: libraries/messages.inc.php:757 server_replication.php:228 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -4874,44 +4874,44 @@ msgstr "" "Nun die folgenden Zeilen am Ende des [mysqld] Abschnitts in der my.cnf " "hinzufügen. Danach den MySQL-Server neu starten." -#: libraries/messages.inc.php:762 libraries/replication_gui.lib.php:236 +#: libraries/messages.inc.php:758 libraries/replication_gui.lib.php:236 #: server_replication.php:194 msgid "Add slave replication user" msgstr "Benutzer für den Replication-Slave hinzufügen" -#: libraries/messages.inc.php:763 server_replication.php:74 +#: libraries/messages.inc.php:759 server_replication.php:74 #, php-format msgid "Master server changed succesfully to %s" msgstr "Master-Server wurde erfolgreich auf %s geändert." -#: libraries/messages.inc.php:764 server_replication.php:182 +#: libraries/messages.inc.php:760 server_replication.php:182 msgid "This server is configured as master in a replication process." msgstr "" -#: libraries/messages.inc.php:765 server_replication.php:322 +#: libraries/messages.inc.php:761 server_replication.php:322 #, fuzzy msgid "Control slave:" msgstr "Control-user" -#: libraries/messages.inc.php:766 server_replication.php:65 +#: libraries/messages.inc.php:762 server_replication.php:65 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: libraries/messages.inc.php:767 server_replication.php:58 +#: libraries/messages.inc.php:763 server_replication.php:58 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: libraries/messages.inc.php:768 server_replication.php:221 +#: libraries/messages.inc.php:764 server_replication.php:221 msgid "Replicate all databases; Ignore:" msgstr "" -#: libraries/messages.inc.php:769 server_replication.php:222 +#: libraries/messages.inc.php:765 server_replication.php:222 msgid "Ignore all databases; Replicate:" msgstr "" -#: libraries/messages.inc.php:770 server_replication.php:218 +#: libraries/messages.inc.php:766 server_replication.php:218 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -4920,126 +4920,126 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: libraries/messages.inc.php:771 server_replication.php:217 +#: libraries/messages.inc.php:767 server_replication.php:217 #, fuzzy msgid "Master configuration" msgstr "Serverkonfiguration" -#: libraries/messages.inc.php:772 server_replication.php:181 +#: libraries/messages.inc.php:768 server_replication.php:181 #: server_replication.php:209 #, fuzzy msgid "Master replication" msgstr "Serverkonfiguration" -#: libraries/messages.inc.php:774 server_replication.php:230 +#: libraries/messages.inc.php:770 server_replication.php:230 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: libraries/messages.inc.php:775 server_replication.php:225 +#: libraries/messages.inc.php:771 server_replication.php:225 #, fuzzy msgid "Please select databases:" msgstr "Bitte Datenbank auswählen" -#: libraries/messages.inc.php:776 server_replication.php:210 +#: libraries/messages.inc.php:772 server_replication.php:210 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:188 +#: libraries/messages.inc.php:773 libraries/replication_gui.lib.php:188 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/messages.inc.php:778 server_replication.php:187 +#: libraries/messages.inc.php:774 server_replication.php:187 msgid "Show connected slaves" msgstr "" -#: libraries/messages.inc.php:779 libraries/messages.inc.php:885 +#: libraries/messages.inc.php:775 libraries/messages.inc.php:881 #: server_replication.php:184 server_status.php:281 #, fuzzy msgid "Show master status" msgstr "Zeige den Slave-Status" -#: libraries/messages.inc.php:780 server_replication.php:334 +#: libraries/messages.inc.php:776 server_replication.php:334 msgid "Skipping error(s) might lead into unsynchronized master and slave!" msgstr "" -#: libraries/messages.inc.php:781 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:51 #: server_replication.php:347 msgid "Change or reconfigure master server" msgstr "" -#: libraries/messages.inc.php:782 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:778 libraries/replication_gui.lib.php:51 #, fuzzy msgid "Slave configuration" msgstr "Serverkonfiguration" -#: libraries/messages.inc.php:783 server_replication.php:305 +#: libraries/messages.inc.php:779 server_replication.php:305 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: libraries/messages.inc.php:784 server_replication.php:332 +#: libraries/messages.inc.php:780 server_replication.php:332 msgid "Error management:" msgstr "" -#: libraries/messages.inc.php:785 server_replication.php:328 +#: libraries/messages.inc.php:781 server_replication.php:328 #, php-format msgid "IO Thread %s only" msgstr "" -#: libraries/messages.inc.php:786 server_replication.php:296 +#: libraries/messages.inc.php:782 server_replication.php:296 msgid "Slave IO Thread not running!" msgstr "" -#: libraries/messages.inc.php:787 server_replication.php:355 +#: libraries/messages.inc.php:783 server_replication.php:355 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/messages.inc.php:788 server_replication.php:326 +#: libraries/messages.inc.php:784 server_replication.php:326 msgid "Reset slave" msgstr "" -#: libraries/messages.inc.php:789 server_replication.php:308 +#: libraries/messages.inc.php:785 server_replication.php:308 msgid "See slave status table" msgstr "" -#: libraries/messages.inc.php:790 server_replication.php:336 +#: libraries/messages.inc.php:786 server_replication.php:336 msgid "Skip current error" msgstr "" -#: libraries/messages.inc.php:791 server_replication.php:340 +#: libraries/messages.inc.php:787 server_replication.php:340 msgid "errors." msgstr "" -#: libraries/messages.inc.php:792 server_replication.php:337 +#: libraries/messages.inc.php:788 server_replication.php:337 msgid "Skip next" msgstr "" -#: libraries/messages.inc.php:793 server_replication.php:248 +#: libraries/messages.inc.php:789 server_replication.php:248 #, fuzzy msgid "Slave replication" msgstr "Serverkonfiguration" -#: libraries/messages.inc.php:794 server_replication.php:293 +#: libraries/messages.inc.php:790 server_replication.php:293 msgid "Slave SQL Thread not running!" msgstr "" -#: libraries/messages.inc.php:795 server_replication.php:327 +#: libraries/messages.inc.php:791 server_replication.php:327 #, php-format msgid "SQL Thread %s only" msgstr "" -#: libraries/messages.inc.php:796 +#: libraries/messages.inc.php:792 #, php-format msgid "" "This MySQL server works as %s in replication process. For further " @@ -5047,166 +5047,166 @@ msgid "" "\"#replication\">replication section." msgstr "" -#: libraries/messages.inc.php:797 +#: libraries/messages.inc.php:793 #, fuzzy msgid "Master status" msgstr "Zeige den Slave-Status" -#: libraries/messages.inc.php:798 server_status.php:721 +#: libraries/messages.inc.php:794 server_status.php:721 #, fuzzy msgid "Replication status" msgstr "Replikation" -#: libraries/messages.inc.php:799 +#: libraries/messages.inc.php:795 #, fuzzy msgid "Slave status" msgstr "Zeige den Slave-Status" -#: libraries/messages.inc.php:800 server_replication.php:311 +#: libraries/messages.inc.php:796 server_replication.php:311 msgid "Synchronize databases with master" msgstr "" -#: libraries/messages.inc.php:801 server_replication.php:71 +#: libraries/messages.inc.php:797 server_replication.php:71 msgid "Unable to change master" msgstr "" -#: libraries/messages.inc.php:802 server_replication.php:51 +#: libraries/messages.inc.php:798 server_replication.php:51 msgid "Unknown error" msgstr "" -#: libraries/messages.inc.php:803 main.php:163 pdf_pages.php:344 +#: libraries/messages.inc.php:799 main.php:163 pdf_pages.php:344 #: setup/lib/FormDisplay.tpl.php:216 tbl_change.php:1175 msgid "Reset" msgstr "Zurücksetzen" -#: libraries/messages.inc.php:804 server_privileges.php:591 +#: libraries/messages.inc.php:800 server_privileges.php:591 msgid "Resource limits" msgstr "Ressourcenbeschränkungen" -#: libraries/messages.inc.php:805 tbl_change.php:1209 +#: libraries/messages.inc.php:801 tbl_change.php:1209 #, php-format msgid "Restart insertion with %s rows" msgstr "Einfügen mit %s Zeilen neu starten" -#: libraries/messages.inc.php:807 server_privileges.php:1578 +#: libraries/messages.inc.php:803 server_privileges.php:1578 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Den Benutzern alle Rechte entziehen und sie anschließend aus den " "Benutzertabellen löschen." -#: libraries/messages.inc.php:808 server_privileges.php:1176 +#: libraries/messages.inc.php:804 server_privileges.php:1176 #, php-format msgid "You have revoked the privileges for %s" msgstr "Sie haben die Rechte für %s entfernt." -#: libraries/messages.inc.php:809 server_privileges.php:1333 +#: libraries/messages.inc.php:805 server_privileges.php:1333 msgid "Revoke" msgstr "Entfernen" -#: libraries/messages.inc.php:810 libraries/mysql_charsets.lib.php:280 +#: libraries/messages.inc.php:806 libraries/mysql_charsets.lib.php:280 msgid "Romanian" msgstr "Rumänisch" -#: libraries/messages.inc.php:813 tbl_printview.php:404 tbl_structure.php:786 +#: libraries/messages.inc.php:809 tbl_printview.php:404 tbl_structure.php:786 msgid "Row length" msgstr "Zeilenlänge" -#: libraries/messages.inc.php:815 tbl_printview.php:414 tbl_structure.php:794 +#: libraries/messages.inc.php:811 tbl_printview.php:414 tbl_structure.php:794 msgid " Row size " msgstr "Zeilengröße" -#: libraries/messages.inc.php:821 tbl_printview.php:366 tbl_structure.php:726 +#: libraries/messages.inc.php:817 tbl_printview.php:366 tbl_structure.php:726 msgid "Row Statistics" msgstr "Zeilenstatistik" -#: libraries/messages.inc.php:822 +#: libraries/messages.inc.php:818 #, php-format msgid "running on %s" msgstr "auf %s" -#: libraries/messages.inc.php:824 libraries/sql_query_form.lib.php:223 +#: libraries/messages.inc.php:820 libraries/sql_query_form.lib.php:223 #, php-format msgid "Run SQL query/queries on server %s" msgstr "SQL-Befehl(e) auf Server %s ausführen" -#: libraries/messages.inc.php:825 libraries/sql_query_form.lib.php:240 +#: libraries/messages.inc.php:821 libraries/sql_query_form.lib.php:240 #: libraries/sql_query_form.lib.php:265 #, php-format msgid "Run SQL query/queries on database %s" msgstr "SQL-Befehl(e) in Datenbank %s ausführen" -#: libraries/messages.inc.php:826 libraries/mysql_charsets.lib.php:337 +#: libraries/messages.inc.php:822 libraries/mysql_charsets.lib.php:337 msgid "Russian" msgstr "Russisch" -#: libraries/messages.inc.php:829 pmd_general.php:68 +#: libraries/messages.inc.php:825 pmd_general.php:68 msgid "Save position" msgstr "Speichere Position" -#: libraries/messages.inc.php:830 libraries/tbl_properties.inc.php:776 +#: libraries/messages.inc.php:826 libraries/tbl_properties.inc.php:776 #: pdf_pages.php:484 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:214 setup/lib/FormDisplay.tpl.php:215 #: tbl_change.php:1126 tbl_indexes.php:248 tbl_relation.php:566 msgid "Save" msgstr "Speichern" -#: libraries/messages.inc.php:831 +#: libraries/messages.inc.php:827 msgid "The scale factor is too small to fit the schema on one page" msgstr "" "Der Skalierungsfaktor ist zu klein, sodass das Schema nicht auf eine Seite " "passt!" -#: libraries/messages.inc.php:843 main.php:298 +#: libraries/messages.inc.php:839 main.php:298 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "Ab sofort muss ein geheimes Passwort zur Verschlüsselung in der " "Konfigurationsdatei gesetzt werden (blowfish_secret)." -#: libraries/messages.inc.php:844 navigation.php:353 navigation.php:516 +#: libraries/messages.inc.php:840 navigation.php:353 navigation.php:516 msgid "Please select a database" msgstr "Bitte Datenbank auswählen" -#: libraries/messages.inc.php:846 server_binlog.php:120 +#: libraries/messages.inc.php:842 server_binlog.php:120 msgid "Select binary log to view" msgstr "Binäres Protokoll zur Anzeige auswählen" -#: libraries/messages.inc.php:847 tbl_select.php:270 +#: libraries/messages.inc.php:843 tbl_select.php:270 msgid "Select fields (at least one):" msgstr "Felder auswählen (min. eines):" -#: libraries/messages.inc.php:851 pdf_pages.php:320 +#: libraries/messages.inc.php:847 pdf_pages.php:320 msgid "Select Tables" msgstr "Tabellenauswahl" -#: libraries/messages.inc.php:853 server_status.php:404 +#: libraries/messages.inc.php:849 server_status.php:404 msgid "Sent" msgstr "Gesendet" -#: libraries/messages.inc.php:857 libraries/select_server.lib.php:45 +#: libraries/messages.inc.php:853 libraries/select_server.lib.php:45 #: setup/frames/index.inc.php:97 setup/lib/messages.inc.php:115 msgid "Servers" msgstr "Server" -#: libraries/messages.inc.php:858 server_status.php:255 +#: libraries/messages.inc.php:854 server_status.php:255 msgid "Delayed inserts" msgstr "Verzögertes Einfügen (delayed inserts)" -#: libraries/messages.inc.php:859 server_status.php:46 +#: libraries/messages.inc.php:855 server_status.php:46 msgid "Runtime Information" msgstr "Laufzeit-Informationen" -#: libraries/messages.inc.php:860 server_status.php:350 +#: libraries/messages.inc.php:856 server_status.php:350 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Dieser MySQL-Server läuft bereits %s. Er wurde am %s gestartet." -#: libraries/messages.inc.php:861 libraries/server_links.inc.php:53 +#: libraries/messages.inc.php:857 libraries/server_links.inc.php:53 #: server_engines.php:112 server_engines.php:116 server_status.php:304 #: test/theme.php:105 msgid "Variables" msgstr "Variablen" -#: libraries/messages.inc.php:862 server_status.php:383 +#: libraries/messages.inc.php:858 server_status.php:383 msgid "" "Server traffic: These tables show the network traffic statistics of " "this MySQL server since its startup." @@ -5214,11 +5214,11 @@ msgstr "" "Servertraffic: In diesen Tabellen wird der Netzwerkverkehr dieses " "MySQL-Servers seit dessen Start aufgeführt." -#: libraries/messages.inc.php:863 server_variables.php:35 +#: libraries/messages.inc.php:859 server_variables.php:35 msgid "Server variables and settings" msgstr "Servervariablen und -einstellungen" -#: libraries/messages.inc.php:865 main.php:290 +#: libraries/messages.inc.php:861 main.php:290 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -5230,7 +5230,7 @@ msgstr "" "die in phpMyAdmin konfigurierte Cookiegültigkeit, deshalb wird Ihre " "Anmeldung eher ablaufen als in phpMyAdmin konfiguriert." -#: libraries/messages.inc.php:866 +#: libraries/messages.inc.php:862 msgid "" "Cannot start session without errors, please check errors given in your PHP " "and/or webserver log file and configure your PHP installation properly." @@ -5239,11 +5239,11 @@ msgstr "" "das Fehlerprokoll von PHP und/oder Ihres Webservers und konfigurieren Sie " "PHP entsprechend (session.save_path, Schreibrechte)." -#: libraries/messages.inc.php:867 server_variables.php:55 +#: libraries/messages.inc.php:863 server_variables.php:55 msgid "Session value" msgstr "Wert für diese Sitzung" -#: libraries/messages.inc.php:868 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:864 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 " @@ -5255,45 +5255,45 @@ msgstr "" "Anführungszeichen (\"'\") verwenden, setzen Sie bitte ein Backslash vor das " "Zeichen. (z. B.: '\\\\xyz' oder 'a\\'b')." -#: libraries/messages.inc.php:876 server_binlog.php:192 server_binlog.php:195 +#: libraries/messages.inc.php:872 server_binlog.php:192 server_binlog.php:195 #: server_processlist.php:49 server_processlist.php:51 msgid "Show Full Queries" msgstr "Zeige die SQL-Abfragen vollständig an" -#: libraries/messages.inc.php:878 pmd_general.php:64 +#: libraries/messages.inc.php:874 pmd_general.php:64 msgid "Show/Hide left menu" msgstr "Zeige/Verstecke linkes Menü" -#: libraries/messages.inc.php:880 sql.php:513 +#: libraries/messages.inc.php:876 sql.php:513 msgid "Showing as PHP code" msgstr "Ansicht als PHP Code" -#: libraries/messages.inc.php:882 sql.php:516 tbl_replace.php:360 +#: libraries/messages.inc.php:878 sql.php:516 tbl_replace.php:360 msgid "Showing SQL query" msgstr "Ansicht als SQL Abfrage" -#: libraries/messages.inc.php:883 tbl_change.php:1132 +#: libraries/messages.inc.php:879 tbl_change.php:1132 #, fuzzy msgid "Show insert query" msgstr "Ansicht als SQL Abfrage" -#: libraries/messages.inc.php:886 server_status.php:273 +#: libraries/messages.inc.php:882 server_status.php:273 msgid "Show open tables" msgstr "Zeige alle offenen Tabellen" -#: libraries/messages.inc.php:887 main.php:219 +#: libraries/messages.inc.php:883 main.php:219 msgid "Show PHP information" msgstr "PHP-Informationen anzeigen" -#: libraries/messages.inc.php:889 server_status.php:278 +#: libraries/messages.inc.php:885 server_status.php:278 msgid "Show slave hosts" msgstr "Zeige alle Slave-Rechner" -#: libraries/messages.inc.php:890 server_status.php:284 +#: libraries/messages.inc.php:886 server_status.php:284 msgid "Show slave status" msgstr "Zeige den Slave-Status" -#: libraries/messages.inc.php:891 +#: libraries/messages.inc.php:887 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -5303,12 +5303,12 @@ msgstr "" "des Binarylog-Caches (binlog_cache_size) überschritten und eine temporäre " "Datei verwendet haben um die Statements der Transaktion zu speichern." -#: libraries/messages.inc.php:892 +#: libraries/messages.inc.php:888 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Anzahl der Transaktionen, die den temporären Binarylog-Cache verwendet haben." -#: libraries/messages.inc.php:893 +#: libraries/messages.inc.php:889 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -5320,11 +5320,11 @@ msgstr "" "Sie eventuell die Variable tmp_table_size herauf setzen, damit temporäre " "Tabellen im Speicher erzeugt werden statt auf der Festplatte." -#: libraries/messages.inc.php:894 +#: libraries/messages.inc.php:890 msgid "How many temporary files mysqld has created." msgstr "Anzahl der temporären Dateien, die mysqld erzeugt hat." -#: libraries/messages.inc.php:895 +#: libraries/messages.inc.php:891 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -5332,7 +5332,7 @@ msgstr "" "Anzahl der (implizit) im Arbeitsspeicher erzeugten temporären Tabellen bei " "der Ausführung von Statements." -#: libraries/messages.inc.php:896 +#: libraries/messages.inc.php:892 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -5340,7 +5340,7 @@ msgstr "" "Anzahl der Zeilen, die mit INSERT DELAYED geschrieben wurden, und bei denen " "ein Fehler auftrat (z. B. duplicate key)." -#: libraries/messages.inc.php:897 +#: libraries/messages.inc.php:893 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -5348,23 +5348,23 @@ msgstr "" "Anzahl der verzögerten Insert-Handler-Prozesse in Benutzung. Jede einzelne " "Tabelle mit verzögerten Inserts bekommt einen eigenen Prozess." -#: libraries/messages.inc.php:898 +#: libraries/messages.inc.php:894 msgid "The number of INSERT DELAYED rows written." msgstr "Anzahl der Zeilen, die mit INSERT DELAYED geschrieben wurden." -#: libraries/messages.inc.php:899 +#: libraries/messages.inc.php:895 msgid "The number of executed FLUSH statements." msgstr "Anzahl der ausgeführten FLUSH-Befehle." -#: libraries/messages.inc.php:900 +#: libraries/messages.inc.php:896 msgid "The number of internal COMMIT statements." msgstr "Anzahl der Anfragen, ein COMMIT auszuführen." -#: libraries/messages.inc.php:901 +#: libraries/messages.inc.php:897 msgid "The number of times a row was deleted from a table." msgstr "Anzahl der Zeilen, die aus Tabellen gelöscht wurden." -#: libraries/messages.inc.php:902 +#: libraries/messages.inc.php:898 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -5374,7 +5374,7 @@ msgstr "" "kann die NDB-Cluster-Storage-Engine fragen, ob sie eine bestimmte Tabelle " "kennt. Dieser Vorgang wird "discovery" genannt." -#: libraries/messages.inc.php:903 +#: libraries/messages.inc.php:899 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -5385,7 +5385,7 @@ msgstr "" "Beispiel SELECT spalte1 FROM foo, unter der Annahme, dass spalte1 indiziert " "ist)." -#: libraries/messages.inc.php:904 +#: libraries/messages.inc.php:900 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -5394,7 +5394,7 @@ msgstr "" "dieser Wert hoch ist, ist das ein gutes Indiz dafür, dass Ihre Anfragen und " "Tabellen korrekt indiziert sind." -#: libraries/messages.inc.php:905 +#: libraries/messages.inc.php:901 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -5405,7 +5405,7 @@ msgstr "" "Bereichsbeschränkung (Limit) abfragen. Er wird ebenfalls herauf gezählt, " "wenn Sie einen Index-Scan durchführen." -#: libraries/messages.inc.php:906 +#: libraries/messages.inc.php:902 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -5414,7 +5414,7 @@ msgstr "" "Schlüssels zu lesen. Diese Lese-Methode ist hauptsächlich zur Optimierung " "von ORDER BY ... DESC." -#: libraries/messages.inc.php:907 +#: libraries/messages.inc.php:903 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -5427,7 +5427,7 @@ msgstr "" "haben Sie wahrscheinlich viele Anfragen, die MySQL zwingen, ganze Tabellen " "zu scannen, oder Sie haben Joins, die Schlüssel nicht richtig benutzen." -#: libraries/messages.inc.php:908 +#: libraries/messages.inc.php:904 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -5440,36 +5440,36 @@ msgstr "" "sind, oder dass Ihre Anfragen nicht so geschrieben sind, dass Sie Vorteile " "aus den Indexen ziehen, die Sie haben." -#: libraries/messages.inc.php:909 +#: libraries/messages.inc.php:905 msgid "The number of internal ROLLBACK statements." msgstr "Anzahl der Anfragen, ein ROLLBACK auszuführen." -#: libraries/messages.inc.php:910 +#: libraries/messages.inc.php:906 msgid "The number of requests to update a row in a table." msgstr "Anzahl der Anfragen, eine Zeile in einer Tabelle zu aktualisieren." -#: libraries/messages.inc.php:911 +#: libraries/messages.inc.php:907 msgid "The number of requests to insert a row in a table." msgstr "Anzahl der Anfragen, eine Zeile in eine Tabelle einzufügen." -#: libraries/messages.inc.php:912 +#: libraries/messages.inc.php:908 msgid "The number of pages containing data (dirty or clean)." msgstr "" "Anzahl der Seiten, die Daten enthalten (ob "dirty" oder nicht)." -#: libraries/messages.inc.php:913 +#: libraries/messages.inc.php:909 msgid "The number of pages currently dirty." msgstr "Anzahl der als "dirty" markierten Seiten." -#: libraries/messages.inc.php:914 +#: libraries/messages.inc.php:910 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Anzahl der Seiten im Puffer-Pool, die zurückgeschrieben werden müssen." -#: libraries/messages.inc.php:915 +#: libraries/messages.inc.php:911 msgid "The number of free pages." msgstr "Anzahl der unbenutzten Seiten." -#: libraries/messages.inc.php:916 +#: libraries/messages.inc.php:912 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -5479,7 +5479,7 @@ msgstr "" "beschrieben oder können aus einem anderen Grund nicht zurückgeschrieben oder " "entfernt werden können." -#: libraries/messages.inc.php:917 +#: libraries/messages.inc.php:913 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -5491,11 +5491,11 @@ msgstr "" "aus Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data." -#: libraries/messages.inc.php:918 +#: libraries/messages.inc.php:914 msgid "Total size of buffer pool, in pages." msgstr "Die Größe des Puffer-Pools in Seiten." -#: libraries/messages.inc.php:919 +#: libraries/messages.inc.php:915 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -5503,7 +5503,7 @@ msgstr "" "Anzahl \"random\" read-aheads durch InnoDB. Dies geschieht wenn eine Abfrage " "einen großen Teil einer Tabelle durchsucht aber in zufälliger Reihenfolge." -#: libraries/messages.inc.php:920 +#: libraries/messages.inc.php:916 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -5511,11 +5511,11 @@ msgstr "" "Anzahl sequentieller read-aheads durch InnoDB. Dies geschieht wenn InnoDB " "eine Tabelle komplett sequentiell durchsucht." -#: libraries/messages.inc.php:921 +#: libraries/messages.inc.php:917 msgid "The number of logical read requests InnoDB has done." msgstr "Anzahl angeforderter Lesevorgängen durch InnoDB." -#: libraries/messages.inc.php:922 +#: libraries/messages.inc.php:918 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -5523,7 +5523,7 @@ msgstr "" "Anzahl an Lesevorgängen die InnoDB nicht aus dem Zwischenspeicher bedienen " "konnte und deshalb einen Einzel-Seiten-Lesevorgang starten musste." -#: libraries/messages.inc.php:923 +#: libraries/messages.inc.php:919 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -5538,55 +5538,55 @@ msgstr "" "geschehen ist. Wenn die Zwischenspeicher-Größe korrekt eingestellt ist " "sollte dieser Wert klein sein." -#: libraries/messages.inc.php:924 +#: libraries/messages.inc.php:920 msgid "The number writes done to the InnoDB buffer pool." msgstr "Anzahl der Schreibvorgänge im InnoDB Zwischenspeicher." -#: libraries/messages.inc.php:925 +#: libraries/messages.inc.php:921 msgid "The number of fsync() operations so far." msgstr "Bisher ausgeführte fsync()-Operationen." -#: libraries/messages.inc.php:926 +#: libraries/messages.inc.php:922 msgid "The current number of pending fsync() operations." msgstr "Momentan anstehende fsync()-Operationen." -#: libraries/messages.inc.php:927 +#: libraries/messages.inc.php:923 msgid "The current number of pending reads." msgstr "Momentan anstehende Lesezugriffe." -#: libraries/messages.inc.php:928 +#: libraries/messages.inc.php:924 msgid "The current number of pending writes." msgstr "Momentan anstehende Schreizugriffe." -#: libraries/messages.inc.php:929 +#: libraries/messages.inc.php:925 msgid "The amount of data read so far, in bytes." msgstr "Wieviel Daten bisher gelesen wurden, in Byte." -#: libraries/messages.inc.php:930 +#: libraries/messages.inc.php:926 msgid "The total number of data reads." msgstr "Wie oft Daten gelesen wurden." -#: libraries/messages.inc.php:931 +#: libraries/messages.inc.php:927 msgid "The total number of data writes." msgstr "Wie oft Daten geschrieben wurden." -#: libraries/messages.inc.php:932 +#: libraries/messages.inc.php:928 msgid "The amount of data written so far, in bytes." msgstr "Wieviel Daten bisher geschrieben wurden, in Byte." -#: libraries/messages.inc.php:933 +#: libraries/messages.inc.php:929 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Anzahl der ausgeführten \"doublewrite\" Schreibzugriffe und die Anzahl der " "Seiten die dafür geschrieben wurden." -#: libraries/messages.inc.php:934 +#: libraries/messages.inc.php:930 msgid "The number of doublewrite operations that have been performed." msgstr "" "Anzahl der ausgeführten \"doublewrite\" Schreibzugriffe und die Anzahl der " "Seiten die dafür geschrieben wurden." -#: libraries/messages.inc.php:935 +#: libraries/messages.inc.php:931 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -5594,35 +5594,35 @@ msgstr "" "Wie oft gewartet werden musste weil der Protokoll-Zwischenspeicher zu klein " "war und deshalb gewartet wurde das er geleert wird." -#: libraries/messages.inc.php:936 +#: libraries/messages.inc.php:932 msgid "The number of log write requests." msgstr "Anzahl der Schreibzugriffe für die Protokoll-Datei." -#: libraries/messages.inc.php:937 +#: libraries/messages.inc.php:933 msgid "The number of physical writes to the log file." msgstr "Anzahl der tatsächlichen Schreibvorgänge der Protokoll-Datei." -#: libraries/messages.inc.php:938 +#: libraries/messages.inc.php:934 msgid "The number of fsync() writes done to the log file." msgstr "Getätigte fsyncs Schreibzugriffe für die Protokoll-Datei." -#: libraries/messages.inc.php:939 +#: libraries/messages.inc.php:935 msgid "The number of pending log file fsyncs." msgstr "Anstehende \"fsyncs\" für die Protokoll-Datei." -#: libraries/messages.inc.php:940 +#: libraries/messages.inc.php:936 msgid "Pending log file writes." msgstr "Anstehende Schreibzugriffe für die Protokoll-Datei." -#: libraries/messages.inc.php:941 +#: libraries/messages.inc.php:937 msgid "The number of bytes written to the log file." msgstr "Anzahl an Byte die in die Protokoll-Datei geschrieben wurden." -#: libraries/messages.inc.php:942 +#: libraries/messages.inc.php:938 msgid "The number of pages created." msgstr "Anzahl erstellter Seiten." -#: libraries/messages.inc.php:943 +#: libraries/messages.inc.php:939 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -5631,55 +5631,55 @@ msgstr "" "werden in Seiten gezählt; die Seitengröße erlaubt es diese einfach in Byte " "umzurechnen." -#: libraries/messages.inc.php:944 +#: libraries/messages.inc.php:940 msgid "The number of pages read." msgstr "Anzahl gelesener Seiten." -#: libraries/messages.inc.php:945 +#: libraries/messages.inc.php:941 msgid "The number of pages written." msgstr "Anzahl geschriebener Seiten." -#: libraries/messages.inc.php:946 +#: libraries/messages.inc.php:942 msgid "The number of row locks currently being waited for." msgstr "Momentan anstehende Zeilen-Sperren." -#: libraries/messages.inc.php:947 +#: libraries/messages.inc.php:943 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" "Durchschnittliche Wartezeite um eine Zeilen-Sperre zu bekommen, in " "Millisekunden." -#: libraries/messages.inc.php:948 +#: libraries/messages.inc.php:944 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" "Summe aller Wartezeiten um Zeilen-Sperren zu bekommen, in Millisekunden." -#: libraries/messages.inc.php:949 +#: libraries/messages.inc.php:945 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" "Längste Wartezeite um eine Zeilen-Sperre zu bekommen, in Millisekunden." -#: libraries/messages.inc.php:950 +#: libraries/messages.inc.php:946 msgid "The number of times a row lock had to be waited for." msgstr "Wie oft auf ein Zeilen-Sperre gewartet werden musste." -#: libraries/messages.inc.php:951 +#: libraries/messages.inc.php:947 msgid "The number of rows deleted from InnoDB tables." msgstr "Anzahl gelöschter Zeilen aller InnoDB Tabellen." -#: libraries/messages.inc.php:952 +#: libraries/messages.inc.php:948 msgid "The number of rows inserted in InnoDB tables." msgstr "Anzahl der eingefügten Zeilen in alle InnoDB Tabellen." -#: libraries/messages.inc.php:953 +#: libraries/messages.inc.php:949 msgid "The number of rows read from InnoDB tables." msgstr "Anzahl der Zeilen, die aus InnoDB-Tabellen gelesen wurden." -#: libraries/messages.inc.php:954 +#: libraries/messages.inc.php:950 msgid "The number of rows updated in InnoDB tables." msgstr "Anzahl der Zeilen, die in InnoDB-Tabellen aktualisiert wurden." -#: libraries/messages.inc.php:955 +#: libraries/messages.inc.php:951 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -5688,7 +5688,7 @@ msgstr "" "auf die Platte zurück geschrieben (flush) wurden; auch bekannt als " "Not_flushed_key_blocks." -#: libraries/messages.inc.php:956 +#: libraries/messages.inc.php:952 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -5696,7 +5696,7 @@ msgstr "" "Die Anzahl der unbenutzten Schlüssel-Blöcke im Schlüssel-Cache. Dieser Wert " "kann dazu dienen die Auslastung des Schlüssel-Cache zu bestimmen." -#: libraries/messages.inc.php:957 +#: libraries/messages.inc.php:953 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -5704,11 +5704,11 @@ msgid "" msgstr "" "Die Anzahl der maximal gleichzeitig benutzten Blocks im Schlüssel-Cache." -#: libraries/messages.inc.php:958 +#: libraries/messages.inc.php:954 msgid "The number of requests to read a key block from the cache." msgstr "Die Anzahl der Anfragen, einen Schlüssel-Block aus dem Cache zu lesen." -#: libraries/messages.inc.php:959 +#: libraries/messages.inc.php:955 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -5719,17 +5719,17 @@ msgstr "" "Die Cache-Zugriffsrate kann mit key_reads / key_read_requests berechnet " "werden." -#: libraries/messages.inc.php:960 +#: libraries/messages.inc.php:956 msgid "The number of requests to write a key block to the cache." msgstr "" "Die Anzahl der Anfragen, einen Schlüssel-Block in den Cache zu schreiben." -#: libraries/messages.inc.php:961 +#: libraries/messages.inc.php:957 msgid "The number of physical writes of a key block to disk." msgstr "" "Die Anzahl physikalischer Schreibvorgänge eines Schlüssel-Blocks auf Platte." -#: libraries/messages.inc.php:962 +#: libraries/messages.inc.php:958 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -5739,13 +5739,13 @@ msgstr "" "berechnet. Nützlich um verschiedene Formulierungen für eine Abfrage zu " "vergleichen. Der Wert 0 besagt das bisher keine Abfrage übersetzt wurde." -#: libraries/messages.inc.php:963 +#: libraries/messages.inc.php:959 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" "Anzahl der Zeilen, die in INSERT-DELAYED-Warteschleifen darauf warten, " "geschrieben zu werden." -#: libraries/messages.inc.php:964 +#: libraries/messages.inc.php:960 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -5753,36 +5753,36 @@ msgstr "" "Anzahl der Tabellen, die geöffnet wurden. Wenn Opened_tables hoch ist, ist " "Ihre table_cache-Variable wahrscheinlich zu niedrig." -#: libraries/messages.inc.php:965 +#: libraries/messages.inc.php:961 msgid "The number of files that are open." msgstr "Anzahl der geöffneten Dateien." -#: libraries/messages.inc.php:966 +#: libraries/messages.inc.php:962 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Anzahl der geöffneten Streams (hauptsächlich zum Protokolieren benutzt)." -#: libraries/messages.inc.php:967 +#: libraries/messages.inc.php:963 msgid "The number of tables that are open." msgstr "Anzahl der geöffneten Tabellen." -#: libraries/messages.inc.php:968 +#: libraries/messages.inc.php:964 msgid "The number of free memory blocks in query cache." msgstr "Freie Speicherblöcke im Abfragen-Cache." -#: libraries/messages.inc.php:969 +#: libraries/messages.inc.php:965 msgid "The amount of free memory for query cache." msgstr "Freier Speicher im Abfragen-Cache." -#: libraries/messages.inc.php:970 +#: libraries/messages.inc.php:966 msgid "The number of cache hits." msgstr "Abfrage-Cache-Zugriffsrate." -#: libraries/messages.inc.php:971 +#: libraries/messages.inc.php:967 msgid "The number of queries added to the cache." msgstr "Die Anzahl der Abfragen die dem Cache hinzugefügt wurden." -#: libraries/messages.inc.php:972 +#: libraries/messages.inc.php:968 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -5795,7 +5795,7 @@ msgstr "" "recently used), d. h. es wird stets die Abfrage gelöscht, die am " "längsten unbenutzt im Cache lag." -#: libraries/messages.inc.php:973 +#: libraries/messages.inc.php:969 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -5803,24 +5803,24 @@ msgstr "" "Die Anzahl der nicht im Cache eingetragenen Abfragen (nicht möglich, oder " "aufgrund der query_cache_type Einstellung)." -#: libraries/messages.inc.php:974 +#: libraries/messages.inc.php:970 msgid "The number of queries registered in the cache." msgstr "Die Anzahl der Abfragen im Cache." -#: libraries/messages.inc.php:975 +#: libraries/messages.inc.php:971 msgid "The total number of blocks in the query cache." msgstr "Die Anzahl aller Speicherblöcke im Abfrage-Cache." -#: libraries/messages.inc.php:976 +#: libraries/messages.inc.php:972 msgctxt "$strShowStatusReset" msgid "Reset" msgstr "Zurücksetzen" -#: libraries/messages.inc.php:977 +#: libraries/messages.inc.php:973 msgid "The status of failsafe replication (not yet implemented)." msgstr "Der Status der ausfallsicheren Replikation." -#: libraries/messages.inc.php:978 +#: libraries/messages.inc.php:974 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -5828,13 +5828,13 @@ msgstr "" "Anzahl der Joins ohne Schlüssel. Wenn dieser Wert nicht 0 ist sollten die " "Indizes der Tabellen sorgfältig überprüft werden." -#: libraries/messages.inc.php:979 +#: libraries/messages.inc.php:975 msgid "The number of joins that used a range search on a reference table." msgstr "" "Anzahl der Joins, bei denen eine Bereichssuche auf die Referenztabelle statt " "fand." -#: libraries/messages.inc.php:980 +#: libraries/messages.inc.php:976 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -5843,7 +5843,7 @@ msgstr "" "Schlüsselbenutzung geprüft wurde. Wenn dieser Wert nicht 0 ist sollten die " "Indizes der Tabellen sorgfältig überprüft werden." -#: libraries/messages.inc.php:981 +#: libraries/messages.inc.php:977 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -5851,16 +5851,16 @@ msgstr "" "Anzahl der Joins, bei denen Bereiche auf die erste Tabelle benutzt wurden. " "(Es ist normalerweise unkritisch, wenn dieser Wert hoch ist.)" -#: libraries/messages.inc.php:982 +#: libraries/messages.inc.php:978 msgid "The number of joins that did a full scan of the first table." msgstr "Anzahl der Joins, bei denen die erste Tabelle gescannt wurde." -#: libraries/messages.inc.php:983 +#: libraries/messages.inc.php:979 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "Anzahl der temporären Tabellen, die momentan vom Slave-Prozess geöffnet sind." -#: libraries/messages.inc.php:984 +#: libraries/messages.inc.php:980 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -5868,13 +5868,13 @@ msgstr "" "Gesamtzahl (seit Start des Servers) der vom Replikations-Slave-SQL-Thread " "wiederversuchten Transaktionen." -#: libraries/messages.inc.php:985 +#: libraries/messages.inc.php:981 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Dieser Wert steht auf ON wenn dieser Server ein Slave ist und mit dem Master " "verbunden ist." -#: libraries/messages.inc.php:986 +#: libraries/messages.inc.php:982 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -5882,12 +5882,12 @@ msgstr "" "Anzahl der Prozesse, die länger als slow_launch_time brauchten, um sich zu " "verbinden." -#: libraries/messages.inc.php:987 +#: libraries/messages.inc.php:983 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "Anzahl der Anfragen, die länger als long_query_time benötigten." -#: libraries/messages.inc.php:988 +#: libraries/messages.inc.php:984 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -5897,25 +5897,25 @@ msgstr "" "wurden. Wenn dieser Wert hoch ist, sollten Sie in Betracht ziehen, " "sort_buffer herauf zu setzen." -#: libraries/messages.inc.php:989 +#: libraries/messages.inc.php:985 msgid "The number of sorts that were done with ranges." msgstr "Anzahl der Sortiervorgänge, die mit Bereichen durchgeführt wurden." -#: libraries/messages.inc.php:990 +#: libraries/messages.inc.php:986 msgid "The number of sorted rows." msgstr "Anzahl der sortierten Zeilen." -#: libraries/messages.inc.php:991 +#: libraries/messages.inc.php:987 msgid "The number of sorts that were done by scanning the table." msgstr "" "Anzahl der Sortiervorgänge, die durchgeführt wurden, indem die Tabelle " "gescannt wurde." -#: libraries/messages.inc.php:992 +#: libraries/messages.inc.php:988 msgid "The number of times that a table lock was acquired immediately." msgstr "Wie oft eine Tabellensperre sofort erlangt wurde." -#: libraries/messages.inc.php:993 +#: libraries/messages.inc.php:989 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -5927,7 +5927,7 @@ msgstr "" "sollten Sie zunächst Ihre Anfragen optimieren und dann entweder Ihre Tabelle" "(n) zerteilen oder Replikation benutzen." -#: libraries/messages.inc.php:994 +#: libraries/messages.inc.php:990 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -5937,11 +5937,11 @@ msgstr "" "Threads_created / Connections berechnet werden. Wenn dieser Wert rot ist, " "sollte der thread_cache_size erhöht werden." -#: libraries/messages.inc.php:995 +#: libraries/messages.inc.php:991 msgid "The number of currently open connections." msgstr "Anzahl der momentan offenen Verbindungen." -#: libraries/messages.inc.php:996 +#: libraries/messages.inc.php:992 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -5953,74 +5953,74 @@ msgstr "" "Variable herauf setzen. (Normalerweise ergibt sich daraus keine bemerkbare " "Performance-Steigerung wenn eine gute Prozess-Implementierung vorliegt.)" -#: libraries/messages.inc.php:997 +#: libraries/messages.inc.php:993 msgid "The number of threads that are not sleeping." msgstr "Anzahl der Prozesse, die nicht schlafen." -#: libraries/messages.inc.php:999 tbl_printview.php:75 +#: libraries/messages.inc.php:995 tbl_printview.php:75 msgid "Show tables" msgstr "Tabellen anzeigen" -#: libraries/messages.inc.php:1000 libraries/sql_query_form.lib.php:396 +#: libraries/messages.inc.php:996 libraries/sql_query_form.lib.php:396 msgid " Show this query here again " msgstr "SQL-Befehl hier wieder anzeigen" -#: libraries/messages.inc.php:1001 libraries/mysql_charsets.lib.php:217 +#: libraries/messages.inc.php:997 libraries/mysql_charsets.lib.php:217 #: libraries/mysql_charsets.lib.php:342 msgid "Simplified Chinese" msgstr "Vereinfachtes Chinesisch" -#: libraries/messages.inc.php:1002 tbl_operations.php:258 +#: libraries/messages.inc.php:998 tbl_operations.php:258 msgid "(singly)" msgstr "(einmalig)" -#: libraries/messages.inc.php:1005 libraries/replication_gui.lib.php:52 +#: libraries/messages.inc.php:1001 libraries/replication_gui.lib.php:52 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" msgstr "" -#: libraries/messages.inc.php:1006 libraries/mysql_charsets.lib.php:283 +#: libraries/messages.inc.php:1002 libraries/mysql_charsets.lib.php:283 msgid "Slovak" msgstr "Slovakisch" -#: libraries/messages.inc.php:1007 libraries/mysql_charsets.lib.php:286 +#: libraries/messages.inc.php:1003 libraries/mysql_charsets.lib.php:286 msgid "Slovenian" msgstr "Slovenisch" -#: libraries/messages.inc.php:1008 pmd_general.php:95 +#: libraries/messages.inc.php:1004 pmd_general.php:95 msgid "Small/Big All" msgstr "Alles klein/groß" -#: libraries/messages.inc.php:1009 pmd_general.php:91 +#: libraries/messages.inc.php:1005 pmd_general.php:91 msgid "Snap to grid" msgstr "Am Gitter anordnen" -#: libraries/messages.inc.php:1011 server_synchronize.php:1167 +#: libraries/messages.inc.php:1007 server_synchronize.php:1167 msgid "Socket" msgstr "" -#: libraries/messages.inc.php:1013 server_status.php:259 +#: libraries/messages.inc.php:1009 server_status.php:259 msgid "Sorting" msgstr "Sortierung" -#: libraries/messages.inc.php:1015 tbl_printview.php:310 tbl_structure.php:657 +#: libraries/messages.inc.php:1011 tbl_printview.php:310 tbl_structure.php:657 msgid "Space usage" msgstr "Speicherplatzverbrauch" -#: libraries/messages.inc.php:1016 libraries/mysql_charsets.lib.php:289 +#: libraries/messages.inc.php:1012 libraries/mysql_charsets.lib.php:289 msgid "Spanish" msgstr "Spanisch" -#: libraries/messages.inc.php:1019 +#: libraries/messages.inc.php:1015 msgid "Export type" msgstr "Exporttyp" -#: libraries/messages.inc.php:1020 +#: libraries/messages.inc.php:1016 msgid "Export time in UTC" msgstr "" -#: libraries/messages.inc.php:1021 libraries/sqlparser.lib.php:173 +#: libraries/messages.inc.php:1017 libraries/sqlparser.lib.php:173 msgid "" "There is a chance that you may have found a bug in the SQL parser. Please " "examine your query closely, and check that the quotes are correct and not " @@ -6045,7 +6045,7 @@ msgstr "" "einen Fehlerbericht mit den Datenausschnitt, den Sie weiter unten auf dieser " "Seite finden.:" -#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:137 +#: libraries/messages.inc.php:1018 libraries/sqlparser.lib.php:137 msgid "" "There seems to be an error in your SQL query. The MySQL server error output " "below, if there is any, may also help you in diagnosing the problem" @@ -6053,33 +6053,33 @@ msgstr "" "Es scheint einen Fehler in Ihrer MySQL-Abfrage zu geben. Die MySQL-" "Fehlerausgabe, falls vorhanden, kann Ihnen auch bei der Fehleranalyse helfen." -#: libraries/messages.inc.php:1026 libraries/sqlparser.lib.php:495 +#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:495 msgid "Invalid Identifer" msgstr "Ungültiger Bezeichner" -#: libraries/messages.inc.php:1027 libraries/sqlparser.lib.php:344 +#: libraries/messages.inc.php:1023 libraries/sqlparser.lib.php:344 msgid "Unclosed quote" msgstr "Nicht geschlossene Anführungszeichen" -#: libraries/messages.inc.php:1028 libraries/sqlparser.lib.php:612 +#: libraries/messages.inc.php:1024 libraries/sqlparser.lib.php:612 msgid "Unknown Punctuation String" msgstr "Unbekannte Interpunktion" -#: libraries/messages.inc.php:1030 server_replication.php:327 +#: libraries/messages.inc.php:1026 server_replication.php:327 #: server_replication.php:328 #, fuzzy msgid "Start" msgstr "Start" -#: libraries/messages.inc.php:1033 tbl_printview.php:369 tbl_structure.php:729 +#: libraries/messages.inc.php:1029 tbl_printview.php:369 tbl_structure.php:729 msgid "Statements" msgstr "Angaben" -#: libraries/messages.inc.php:1034 tbl_printview.php:380 tbl_structure.php:741 +#: libraries/messages.inc.php:1030 tbl_printview.php:380 tbl_structure.php:741 msgid "static" msgstr "statisch" -#: libraries/messages.inc.php:1035 server_status.php:388 +#: libraries/messages.inc.php:1031 server_status.php:388 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -6088,43 +6088,43 @@ msgstr "" "bei 0 beginnen), deshalb können diese Werte wie sie vom MySQL Server " "ausgegeben werden falsch sein." -#: libraries/messages.inc.php:1038 server_replication.php:327 +#: libraries/messages.inc.php:1034 server_replication.php:327 #: server_replication.php:328 msgid "Stop" msgstr "" -#: libraries/messages.inc.php:1039 server_engines.php:49 +#: libraries/messages.inc.php:1035 server_engines.php:49 msgid "Storage Engines" msgstr "Tabellenformate" -#: libraries/messages.inc.php:1040 libraries/tbl_properties.inc.php:726 +#: libraries/messages.inc.php:1036 libraries/tbl_properties.inc.php:726 #: server_engines.php:58 tbl_operations.php:353 msgid "Storage Engine" msgstr "Tabellenformat" -#: libraries/messages.inc.php:1042 +#: libraries/messages.inc.php:1038 msgid "CSV for MS Excel" msgstr "CSV-Daten für MS Excel" -#: libraries/messages.inc.php:1044 tbl_structure.php:516 tbl_structure.php:518 +#: libraries/messages.inc.php:1040 tbl_structure.php:516 tbl_structure.php:518 msgid "Propose table structure" msgstr "Tabellenstruktur analysieren" -#: libraries/messages.inc.php:1045 server_synchronize.php:424 +#: libraries/messages.inc.php:1041 server_synchronize.php:424 #: server_synchronize.php:867 #, fuzzy msgid "Structure Difference" msgstr "Struktur des Views" -#: libraries/messages.inc.php:1049 server_synchronize.php:265 +#: libraries/messages.inc.php:1045 server_synchronize.php:265 msgid "Structure Synchronization" msgstr "" -#: libraries/messages.inc.php:1050 libraries/sql_query_form.lib.php:462 +#: libraries/messages.inc.php:1046 libraries/sql_query_form.lib.php:462 msgid "Submit" msgstr "Abschicken" -#: libraries/messages.inc.php:1052 main.php:358 +#: libraries/messages.inc.php:1048 main.php:358 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -6133,161 +6133,161 @@ msgstr "" "Der Server läuft mit Suhosin. Bitte lesen Sie die %sDokumentation%s wegen " "möglicher Probleme." -#: libraries/messages.inc.php:1054 libraries/mysql_charsets.lib.php:295 +#: libraries/messages.inc.php:1050 libraries/mysql_charsets.lib.php:295 #: libraries/mysql_charsets.lib.php:392 msgid "Swedish" msgstr "Schwedisch" -#: libraries/messages.inc.php:1060 tbl_operations.php:556 +#: libraries/messages.inc.php:1056 tbl_operations.php:556 msgid "Switch to copied table" msgstr "Zur kopierten Tabelle wechseln" -#: libraries/messages.inc.php:1061 server_synchronize.php:1213 +#: libraries/messages.inc.php:1057 server_synchronize.php:1213 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." msgstr "" -#: libraries/messages.inc.php:1062 server_synchronize.php:451 +#: libraries/messages.inc.php:1058 server_synchronize.php:451 #: server_synchronize.php:896 msgid "Synchronize Databases" msgstr "" -#: libraries/messages.inc.php:1063 libraries/server_links.inc.php:92 +#: libraries/messages.inc.php:1059 libraries/server_links.inc.php:92 #: server_synchronize.php:1092 server_synchronize.php:1100 msgid "Synchronize" msgstr "" -#: libraries/messages.inc.php:1065 server_synchronize.php:430 +#: libraries/messages.inc.php:1061 server_synchronize.php:430 #: server_synchronize.php:873 msgid "Add column(s)" msgstr "" -#: libraries/messages.inc.php:1066 tbl_create.php:62 +#: libraries/messages.inc.php:1062 tbl_create.php:62 #, php-format msgid "Table %s already exists!" msgstr "Die Tabelle %s existiert bereits!" -#: libraries/messages.inc.php:1067 server_synchronize.php:432 +#: libraries/messages.inc.php:1063 server_synchronize.php:432 #: server_synchronize.php:875 msgid "Alter column(s)" msgstr "" -#: libraries/messages.inc.php:1068 tbl_addfield.php:189 tbl_alter.php:103 +#: libraries/messages.inc.php:1064 tbl_addfield.php:189 tbl_alter.php:103 #: tbl_indexes.php:98 #, php-format msgid "Table %1$s has been altered successfully" msgstr "Die Tabelle %1$s wurde erfolgreich geändert" -#: libraries/messages.inc.php:1069 server_synchronize.php:434 +#: libraries/messages.inc.php:1065 server_synchronize.php:434 #: server_synchronize.php:877 msgid "Apply index(s)" msgstr "" -#: libraries/messages.inc.php:1071 server_synchronize.php:446 +#: libraries/messages.inc.php:1067 server_synchronize.php:446 #: server_synchronize.php:890 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: libraries/messages.inc.php:1072 tbl_move_copy.php:82 +#: libraries/messages.inc.php:1068 tbl_move_copy.php:82 msgid "The table name is empty!" msgstr "Der Tabellenname ist leer!" -#: libraries/messages.inc.php:1073 tbl_create.php:249 +#: libraries/messages.inc.php:1069 tbl_create.php:249 #, php-format msgid "Table %1$s has been created." msgstr "Die Tabelle %1$s wurde erzeugt." -#: libraries/messages.inc.php:1076 tbl_operations.php:628 +#: libraries/messages.inc.php:1072 tbl_operations.php:628 #, php-format msgid "Table %s has been flushed" msgstr "" "Die Tabelle %s wurde geschlossen und zwischengespeicherte Daten gespeichert." -#: libraries/messages.inc.php:1077 server_synchronize.php:436 +#: libraries/messages.inc.php:1073 server_synchronize.php:436 #: server_synchronize.php:879 msgid "Insert row(s)" msgstr "" -#: libraries/messages.inc.php:1078 libraries/tbl_links.inc.php:107 +#: libraries/messages.inc.php:1074 libraries/tbl_links.inc.php:107 #: libraries/tbl_links.inc.php:140 libraries/tbl_links.inc.php:141 msgid "Table seems to be empty!" msgstr "Die Tabelle scheint leer zu sein!" -#: libraries/messages.inc.php:1079 tbl_operations.php:568 +#: libraries/messages.inc.php:1075 tbl_operations.php:568 msgid "Table maintenance" msgstr "Hilfsmittel" -#: libraries/messages.inc.php:1080 libraries/tbl_properties.inc.php:618 +#: libraries/messages.inc.php:1076 libraries/tbl_properties.inc.php:618 #: server_synchronize.php:428 server_synchronize.php:871 msgid "Table name" msgstr "Tabellenname" -#: libraries/messages.inc.php:1081 pdf_schema.php:1116 +#: libraries/messages.inc.php:1077 pdf_schema.php:1116 msgid "Table of contents" msgstr "Inhalt" -#: libraries/messages.inc.php:1082 tbl_operations.php:334 +#: libraries/messages.inc.php:1078 tbl_operations.php:334 msgid "Table options" msgstr "Tabellenoptionen" -#: libraries/messages.inc.php:1083 server_synchronize.php:431 +#: libraries/messages.inc.php:1079 server_synchronize.php:431 #: server_synchronize.php:874 msgid "Remove column(s)" msgstr "" -#: libraries/messages.inc.php:1084 server_synchronize.php:433 +#: libraries/messages.inc.php:1080 server_synchronize.php:433 #: server_synchronize.php:876 msgid "Remove index(s)" msgstr "" -#: libraries/messages.inc.php:1088 server_synchronize.php:435 +#: libraries/messages.inc.php:1084 server_synchronize.php:435 #: server_synchronize.php:878 msgid "Update row(s)" msgstr "" -#: libraries/messages.inc.php:1090 server_synchronize.php:942 +#: libraries/messages.inc.php:1086 server_synchronize.php:942 msgid "Target database has been synchronized with source database" msgstr "" -#: libraries/messages.inc.php:1091 server_privileges.php:392 +#: libraries/messages.inc.php:1087 server_privileges.php:392 #: server_privileges.php:527 server_privileges.php:1679 #: server_privileges.php:1685 msgid "Table-specific privileges" msgstr "Tabellenspezifische Rechte" -#: libraries/messages.inc.php:1092 server_status.php:254 +#: libraries/messages.inc.php:1088 server_status.php:254 msgid "Temporary data" msgstr "Temporäre Daten" -#: libraries/messages.inc.php:1093 tbl_change.php:728 +#: libraries/messages.inc.php:1089 tbl_change.php:728 msgid " Because of its length,
this field might not be editable " msgstr "Wegen seiner Länge ist dieses
Feld vielleicht nicht editierbar." -#: libraries/messages.inc.php:1094 +#: libraries/messages.inc.php:1090 msgid "Texy! text" msgstr "Texy! Text" -#: libraries/messages.inc.php:1095 libraries/mysql_charsets.lib.php:298 +#: libraries/messages.inc.php:1091 libraries/mysql_charsets.lib.php:298 #: libraries/mysql_charsets.lib.php:395 msgid "Thai" msgstr "Thai" -#: libraries/messages.inc.php:1102 libraries/replication_gui.lib.php:308 +#: libraries/messages.inc.php:1098 libraries/replication_gui.lib.php:308 #: server_privileges.php:734 msgid "This Host" msgstr "Dieser Host" -#: libraries/messages.inc.php:1103 server_status.php:252 +#: libraries/messages.inc.php:1099 server_status.php:252 msgid "Threads" msgstr "Prozesse" -#: libraries/messages.inc.php:1104 server_processlist.php:22 +#: libraries/messages.inc.php:1100 server_processlist.php:22 #, php-format msgid "Thread %s was successfully killed." msgstr "Der Prozess %s wurde erfolgreich abgebrochen." -#: libraries/messages.inc.php:1106 +#: libraries/messages.inc.php:1102 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -6296,181 +6296,181 @@ msgstr "" "dass phpMyAdmin nicht in der Lage sein wird, den Import zu beenden, sofern " "nicht die Ausführungszeitbeschränkungen von php gelockert werden." -#: libraries/messages.inc.php:1109 pmd_pdf.php:94 +#: libraries/messages.inc.php:1105 pmd_pdf.php:94 msgid "to/from page" msgstr "nach/von Seite" -#: libraries/messages.inc.php:1110 pdf_pages.php:343 +#: libraries/messages.inc.php:1106 pdf_pages.php:343 msgid "Toggle scratchboard" msgstr "Klemmbrett anzeigen" -#: libraries/messages.inc.php:1111 pmd_general.php:99 +#: libraries/messages.inc.php:1107 pmd_general.php:99 msgid "Toggle small/big" msgstr "Wechseln klein/groß" -#: libraries/messages.inc.php:1112 pmd_help.php:27 +#: libraries/messages.inc.php:1108 pmd_help.php:27 msgid "To select relation, click :" msgstr "Um eine Relation auszuwählen, klicken Sie :" -#: libraries/messages.inc.php:1115 libraries/tbl_links.inc.php:149 +#: libraries/messages.inc.php:1111 libraries/tbl_links.inc.php:149 #, php-format msgid "Tracking of %s.%s is activated." msgstr "Tracking der Tabelle %s.%s ist aktiviert." -#: libraries/messages.inc.php:1116 tbl_tracking.php:655 +#: libraries/messages.inc.php:1112 tbl_tracking.php:655 msgid "Activate now" msgstr "Jetzt aktivieren" -#: libraries/messages.inc.php:1117 tbl_tracking.php:653 +#: libraries/messages.inc.php:1113 tbl_tracking.php:653 #, php-format msgid "Activate tracking for %s.%s" msgstr "Aktiviere tracking mechanismus für %s.%s" -#: libraries/messages.inc.php:1118 tbl_tracking.php:221 +#: libraries/messages.inc.php:1114 tbl_tracking.php:221 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/messages.inc.php:1119 tbl_tracking.php:688 +#: libraries/messages.inc.php:1115 tbl_tracking.php:688 msgid "Create version" msgstr "Erzeuge Version" -#: libraries/messages.inc.php:1120 tbl_tracking.php:668 +#: libraries/messages.inc.php:1116 tbl_tracking.php:668 #, php-format msgid "Create version %s of %s.%s" msgstr "Erzeuge Version %s von %s.%s" -#: libraries/messages.inc.php:1122 tbl_tracking.php:412 +#: libraries/messages.inc.php:1118 tbl_tracking.php:412 msgid "Data definition statement" msgstr "DDL Befehl" -#: libraries/messages.inc.php:1123 tbl_tracking.php:463 +#: libraries/messages.inc.php:1119 tbl_tracking.php:463 msgid "Data manipulation statement" msgstr "DML Befehl" -#: libraries/messages.inc.php:1124 tbl_tracking.php:410 tbl_tracking.php:461 +#: libraries/messages.inc.php:1120 tbl_tracking.php:410 tbl_tracking.php:461 msgid "Date" msgstr "Datum" -#: libraries/messages.inc.php:1125 tbl_tracking.php:642 +#: libraries/messages.inc.php:1121 tbl_tracking.php:642 msgid "Deactivate now" msgstr "Jetzt deaktivieren" -#: libraries/messages.inc.php:1126 tbl_tracking.php:640 +#: libraries/messages.inc.php:1122 tbl_tracking.php:640 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "Deaktiviere Tracking Mechanismus für %s.%s" -#: libraries/messages.inc.php:1127 tbl_tracking.php:521 +#: libraries/messages.inc.php:1123 tbl_tracking.php:521 #, php-format msgid "Export as %s" msgstr "Export als %s" -#: libraries/messages.inc.php:1130 tbl_tracking.php:251 tbl_tracking.php:379 +#: libraries/messages.inc.php:1126 tbl_tracking.php:251 tbl_tracking.php:379 msgid "Close" msgstr "Schliesse" -#: libraries/messages.inc.php:1131 tbl_tracking.php:114 +#: libraries/messages.inc.php:1127 tbl_tracking.php:114 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/messages.inc.php:1133 tbl_tracking.php:397 tbl_tracking.php:504 +#: libraries/messages.inc.php:1129 tbl_tracking.php:397 tbl_tracking.php:504 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "Zeige %s mit Datum von %s bis %s und Benutzer %s %s" -#: libraries/messages.inc.php:1134 tbl_tracking.php:561 +#: libraries/messages.inc.php:1130 tbl_tracking.php:561 msgid "Show versions" msgstr "Zeige Versionen" -#: libraries/messages.inc.php:1135 tbl_tracking.php:507 +#: libraries/messages.inc.php:1131 tbl_tracking.php:507 msgid "SQL dump (file download)" msgstr "SQL Dump (Datei Download)" -#: libraries/messages.inc.php:1136 tbl_tracking.php:508 +#: libraries/messages.inc.php:1132 tbl_tracking.php:508 msgid "SQL dump" msgstr "SQL Dump" -#: libraries/messages.inc.php:1137 tbl_tracking.php:213 +#: libraries/messages.inc.php:1133 tbl_tracking.php:213 msgid "SQL statements executed." msgstr "SQL Befehle ausgeführt." -#: libraries/messages.inc.php:1138 +#: libraries/messages.inc.php:1134 msgid "This option will replace your table and contained data." msgstr "Diese Option ersetzt Ihre Tabelle und enthaltene Daten." -#: libraries/messages.inc.php:1139 tbl_tracking.php:509 +#: libraries/messages.inc.php:1135 tbl_tracking.php:509 msgid "SQL execution" msgstr "SQL Ausführung" -#: libraries/messages.inc.php:1140 tbl_tracking.php:230 +#: libraries/messages.inc.php:1136 tbl_tracking.php:230 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "SQL Befehle exportiert." -#: libraries/messages.inc.php:1141 tbl_tracking.php:381 +#: libraries/messages.inc.php:1137 tbl_tracking.php:381 msgid "Tracking statements" msgstr "Verfolge die Befehle" -#: libraries/messages.inc.php:1148 tbl_tracking.php:593 +#: libraries/messages.inc.php:1144 tbl_tracking.php:593 msgid "Version" msgstr "Version" -#: libraries/messages.inc.php:1149 tbl_tracking.php:672 +#: libraries/messages.inc.php:1145 tbl_tracking.php:672 msgid "Track these data definition statements:" msgstr "Verfolge diese Datenbeschreibungsbefehle (DDL):" -#: libraries/messages.inc.php:1150 tbl_tracking.php:680 +#: libraries/messages.inc.php:1146 tbl_tracking.php:680 msgid "Track these data manipulation statements:" msgstr "Verfolge diese Datenbearbeitungsbefehle (DML):" -#: libraries/messages.inc.php:1155 tbl_tracking.php:411 tbl_tracking.php:462 +#: libraries/messages.inc.php:1151 tbl_tracking.php:411 tbl_tracking.php:462 msgid "Username" msgstr "Benutzername" -#: libraries/messages.inc.php:1156 tbl_tracking.php:203 +#: libraries/messages.inc.php:1152 tbl_tracking.php:203 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "Tracking von %s.%s , Version %s ist aktiviert." -#: libraries/messages.inc.php:1157 tbl_tracking.php:187 +#: libraries/messages.inc.php:1153 tbl_tracking.php:187 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "Version %s ist erstellt, Tracking von %s.%s ist aktiviert." -#: libraries/messages.inc.php:1158 tbl_tracking.php:195 +#: libraries/messages.inc.php:1154 tbl_tracking.php:195 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "Tracking von %s.%s , Version %s ist deaktiviert." -#: libraries/messages.inc.php:1159 tbl_tracking.php:262 +#: libraries/messages.inc.php:1155 tbl_tracking.php:262 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Version %s Schnapschuss (SQL code)" -#: libraries/messages.inc.php:1161 tbl_tracking.php:220 +#: libraries/messages.inc.php:1157 tbl_tracking.php:220 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/messages.inc.php:1162 libraries/mysql_charsets.lib.php:219 +#: libraries/messages.inc.php:1158 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:362 msgid "Traditional Chinese" msgstr "Traditionelles Chinesisch" -#: libraries/messages.inc.php:1163 libraries/mysql_charsets.lib.php:292 +#: libraries/messages.inc.php:1159 libraries/mysql_charsets.lib.php:292 msgid "Traditional Spanish" msgstr "Traditionelles Spanisch" -#: libraries/messages.inc.php:1164 server_status.php:388 +#: libraries/messages.inc.php:1160 server_status.php:388 msgid "Traffic" msgstr "Traffic" -#: libraries/messages.inc.php:1165 server_status.php:261 +#: libraries/messages.inc.php:1161 server_status.php:261 msgid "Transaction coordinator" msgstr "Transaction Koordinator" -#: libraries/messages.inc.php:1166 +#: libraries/messages.inc.php:1162 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 " @@ -6483,7 +6483,7 @@ msgstr "" "Sollte die zweite Option gesetzt sein ist es notwendig, die erste Option auf " "einen Leerstring zu setzen ('')" -#: libraries/messages.inc.php:1167 +#: libraries/messages.inc.php:1163 msgid "" "Displays hexadecimal representation of data. Optional first parameter " "specifies how often space will be added (defaults to 2 nibbles)." @@ -6492,7 +6492,7 @@ msgstr "" "fest, nach wie vielen Halbbyte ein Leerzeichen eingefügt werden soll " "(Standardwert ist 2)." -#: libraries/messages.inc.php:1168 +#: libraries/messages.inc.php:1164 msgid "" "Displays a clickable thumbnail. The options are the maximum width and height " "in pixels. The original aspect ratio is preserved." @@ -6500,15 +6500,15 @@ msgstr "" "Ein klickbares Vorschaubild anzeigen. Optionen: Breite, Höhe in Pixeln " "(berücksichtigt Seitenverhältnis)" -#: libraries/messages.inc.php:1169 +#: libraries/messages.inc.php:1165 msgid "Displays a link to download this image." msgstr "Einen Link zum Bild anzeigen, z. B. zum Download von BLOB-Daten." -#: libraries/messages.inc.php:1170 +#: libraries/messages.inc.php:1166 msgid "See image/jpeg: inline" msgstr "Siehe image/jpeg: inline" -#: libraries/messages.inc.php:1171 +#: libraries/messages.inc.php:1167 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 " @@ -6529,7 +6529,7 @@ msgstr "" "für die strftime() Funktion und für \"utc\" wird es mittels der gmdate() " "Funktion konvertiert." -#: libraries/messages.inc.php:1172 +#: libraries/messages.inc.php:1168 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 " @@ -6555,7 +6555,7 @@ msgstr "" "NOWRAP-Parameter der Tabellenzelle hinzugefügt wird um einen automatischen " "Umbruch der Standardausgabe zu verhindern (Standard: 1)" -#: libraries/messages.inc.php:1173 +#: libraries/messages.inc.php:1169 msgid "" "Displays the contents of the field as-is, without running it through " "htmlspecialchars(). That is, the field is assumed to contain valid HTML." @@ -6563,7 +6563,7 @@ msgstr "" "Behält Ursprungsformatierung des Feldes bei. Kein Escaping oder " "Umlautwandlung wird durchgeführt." -#: libraries/messages.inc.php:1174 +#: libraries/messages.inc.php:1170 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 " @@ -6574,7 +6574,7 @@ msgstr "" "Feldinhalt wie \"http://www.domain.com\". Zweite Option ist die Breite des " "Bildes, die dritte Option die Höhe des Bildes in Pixeln." -#: libraries/messages.inc.php:1175 +#: libraries/messages.inc.php:1171 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 " @@ -6584,11 +6584,11 @@ msgstr "" "ist ein Präfix vor dem eigentlichen Feldinhalt wie \"http://www.domain.com" "\". Zweite Option ist der darzustellende Titel des Links" -#: libraries/messages.inc.php:1176 +#: libraries/messages.inc.php:1172 msgid "Formats text as SQL query with syntax highlighting." msgstr "Formatiert den Text als SQL mit Syntaxhervorhebung." -#: libraries/messages.inc.php:1177 +#: libraries/messages.inc.php:1173 msgid "" "Displays a part of a string. The first option is the number of characters to " "skip from the beginning of the string (Default 0). The second option is the " @@ -6604,71 +6604,71 @@ msgstr "" "Textes angehängt wird, um eine Abschneidung kenntlich zu machen " "(Standard: ...)." -#: libraries/messages.inc.php:1179 server_binlog.php:183 server_binlog.php:186 +#: libraries/messages.inc.php:1175 server_binlog.php:183 server_binlog.php:186 #: server_processlist.php:49 server_processlist.php:51 msgid "Truncate Shown Queries" msgstr "Zeige die SQL-Abfragen verkürzt an" -#: libraries/messages.inc.php:1180 libraries/mysql_charsets.lib.php:301 +#: libraries/messages.inc.php:1176 libraries/mysql_charsets.lib.php:301 #: libraries/mysql_charsets.lib.php:389 msgid "Turkish" msgstr "Türkisch" -#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:304 +#: libraries/messages.inc.php:1179 libraries/mysql_charsets.lib.php:304 #: libraries/mysql_charsets.lib.php:386 msgid "Ukrainian" msgstr "Ukrainisch" -#: libraries/messages.inc.php:1185 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:1181 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 msgid "Unicode" msgstr "Unicode" -#: libraries/messages.inc.php:1187 libraries/mysql_charsets.lib.php:398 +#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:398 #: libraries/mysql_charsets.lib.php:405 msgid "unknown" msgstr "unbekannt" -#: libraries/messages.inc.php:1190 server_privileges.php:1152 +#: libraries/messages.inc.php:1186 server_privileges.php:1152 #, php-format msgid "You have updated the privileges for %s." msgstr "Die Rechte für %s wurden geändert." -#: libraries/messages.inc.php:1191 user_password.php:112 +#: libraries/messages.inc.php:1187 user_password.php:112 msgid "The profile has been updated." msgstr "Benutzer wurde geändert." -#: libraries/messages.inc.php:1193 libraries/relation.lib.php:138 +#: libraries/messages.inc.php:1189 libraries/relation.lib.php:138 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "Bitte lesen Sie in der Dokumentation nach, wie Sie die Struktur Ihrer " "Spaltenkommentartabelle aktualisieren können" -#: libraries/messages.inc.php:1194 +#: libraries/messages.inc.php:1190 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Sie sollten auf %s %s oder neuer umsteigen." -#: libraries/messages.inc.php:1204 tbl_printview.php:314 tbl_structure.php:661 +#: libraries/messages.inc.php:1200 tbl_printview.php:314 tbl_structure.php:661 msgid "Usage" msgstr "Verbrauch" -#: libraries/messages.inc.php:1205 +#: libraries/messages.inc.php:1201 msgid "Enclose table and field names with backquotes" msgstr " Tabellen- und Feldnamen in einfachen Anführungszeichen " -#: libraries/messages.inc.php:1206 libraries/replication_gui.lib.php:314 +#: libraries/messages.inc.php:1202 libraries/replication_gui.lib.php:314 #: server_privileges.php:740 msgid "Use Host Table" msgstr "Verwende Hosttabelle" -#: libraries/messages.inc.php:1207 server_privileges.php:848 +#: libraries/messages.inc.php:1203 server_privileges.php:848 #, php-format msgid "The user %s already exists!" msgstr "Der Benutzer %s existiert bereits!" -#: libraries/messages.inc.php:1209 libraries/replication_gui.lib.php:55 +#: libraries/messages.inc.php:1205 libraries/replication_gui.lib.php:55 #: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245 #: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255 #: server_privileges.php:672 server_privileges.php:675 @@ -6676,37 +6676,37 @@ msgstr "Der Benutzer %s existiert bereits!" msgid "User name" msgstr "Benutzername" -#: libraries/messages.inc.php:1210 server_privileges.php:1645 +#: libraries/messages.inc.php:1206 server_privileges.php:1645 msgid "The selected user was not found in the privilege table." msgstr "Der gewählte Benutzer wurde in der Benutzertabelle nicht gefunden." -#: libraries/messages.inc.php:1211 server_privileges.php:1365 +#: libraries/messages.inc.php:1207 server_privileges.php:1365 msgid "User overview" msgstr "Benutzerübersicht" -#: libraries/messages.inc.php:1212 server_privileges.php:1261 +#: libraries/messages.inc.php:1208 server_privileges.php:1261 msgid "The selected users have been deleted successfully." msgstr "Die gewählten Benutzer wurden gelöscht." -#: libraries/messages.inc.php:1213 server_privileges.php:2026 +#: libraries/messages.inc.php:1209 server_privileges.php:2026 #, php-format msgid "Users having access to "%s"" msgstr "Benutzer mit Zugriff auf "%s"" -#: libraries/messages.inc.php:1214 main.php:189 server_privileges.php:1350 +#: libraries/messages.inc.php:1210 main.php:189 server_privileges.php:1350 #: server_privileges.php:1497 server_privileges.php:1611 #: server_privileges.php:2029 server_processlist.php:54 msgid "User" msgstr "Benutzer" -#: libraries/messages.inc.php:1215 tbl_change.php:1171 +#: libraries/messages.inc.php:1211 tbl_change.php:1171 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Mittels TAB-Taste von Feld zu Feld springen, oder mit STRG+Pfeiltasten " "beliebig bewegen" -#: libraries/messages.inc.php:1217 libraries/replication_gui.lib.php:251 +#: libraries/messages.inc.php:1213 libraries/replication_gui.lib.php:251 #: libraries/replication_gui.lib.php:319 libraries/replication_gui.lib.php:342 #: server_privileges.php:678 server_privileges.php:745 #: server_privileges.php:769 server_privileges.php:1889 @@ -6714,7 +6714,7 @@ msgstr "" msgid "Use text field" msgstr "Textfeld verwenden" -#: libraries/messages.inc.php:1221 libraries/sqlvalidator.lib.php:68 +#: libraries/messages.inc.php:1217 libraries/sqlvalidator.lib.php:68 #, php-format msgid "" "The SQL validator could not be initialized. Please check if you have " @@ -6724,89 +6724,89 @@ msgstr "" "überprüfen Sie, ob Sie die in der %sDokumentation%s beschriebenen php-" "Erweiterungen installiert haben." -#: libraries/messages.inc.php:1222 libraries/replication_gui.lib.php:111 +#: libraries/messages.inc.php:1218 libraries/replication_gui.lib.php:111 #: server_status.php:627 tbl_change.php:324 tbl_printview.php:370 #: tbl_select.php:139 tbl_structure.php:730 msgid "Value" msgstr "Wert" -#: libraries/messages.inc.php:1223 libraries/replication_gui.lib.php:110 +#: libraries/messages.inc.php:1219 libraries/replication_gui.lib.php:110 #: libraries/sql_query_form.lib.php:445 server_status.php:626 #: server_variables.php:52 msgid "Variable" msgstr "Variable" -#: libraries/messages.inc.php:1225 server_export.php:21 +#: libraries/messages.inc.php:1221 server_export.php:21 msgid "View dump (schema) of databases" msgstr "Dump (Schema) der Datenbanken anzeigen" -#: libraries/messages.inc.php:1227 tbl_export.php:23 +#: libraries/messages.inc.php:1223 tbl_export.php:23 msgid "View dump (schema) of table" msgstr "Dump (Schema) der Tabelle anzeigen" -#: libraries/messages.inc.php:1231 view_create.php:142 +#: libraries/messages.inc.php:1227 view_create.php:142 msgid "VIEW name" msgstr "VIEW Name" -#: libraries/messages.inc.php:1237 main.php:205 +#: libraries/messages.inc.php:1233 main.php:205 msgid "Web server" msgstr "Webserver" -#: libraries/messages.inc.php:1239 libraries/mysql_charsets.lib.php:277 +#: libraries/messages.inc.php:1235 libraries/mysql_charsets.lib.php:277 #: libraries/mysql_charsets.lib.php:325 msgid "West European" msgstr "Westeuropäisch" -#: libraries/messages.inc.php:1240 main.php:230 +#: libraries/messages.inc.php:1236 main.php:230 msgid "Wiki" msgstr "Wiki" -#: libraries/messages.inc.php:1241 server_privileges.php:2138 +#: libraries/messages.inc.php:1237 server_privileges.php:2138 msgid "wildcard" msgstr "Platzhalter" -#: libraries/messages.inc.php:1248 +#: libraries/messages.inc.php:1244 #, fuzzy msgid "Export contents" msgstr "Voreinstellung für Export" -#: libraries/messages.inc.php:1249 +#: libraries/messages.inc.php:1245 #, fuzzy msgid "Export functions" msgstr "Voreinstellung für Export" -#: libraries/messages.inc.php:1250 +#: libraries/messages.inc.php:1246 msgid "Export procedures" msgstr "" -#: libraries/messages.inc.php:1251 +#: libraries/messages.inc.php:1247 msgid "Export Structure Schemas (recommended)" msgstr "" -#: libraries/messages.inc.php:1252 +#: libraries/messages.inc.php:1248 #, fuzzy msgid "Export tables" msgstr "Exporttyp" -#: libraries/messages.inc.php:1253 +#: libraries/messages.inc.php:1249 #, fuzzy msgid "Export triggers" msgstr "Exporttyp" -#: libraries/messages.inc.php:1254 +#: libraries/messages.inc.php:1250 #, fuzzy msgid "Export views" msgstr "Export als %s" -#: libraries/messages.inc.php:1255 +#: libraries/messages.inc.php:1251 msgid "XML" msgstr "XML" -#: libraries/messages.inc.php:1259 server_privileges.php:592 +#: libraries/messages.inc.php:1255 server_privileges.php:592 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Der Wert 0 (null) entfernt die Beschränkung." -#: libraries/messages.inc.php:1260 +#: libraries/messages.inc.php:1256 msgid "\"zipped\"" msgstr "Zip-komprimiert" diff --git a/po/el.po b/po/el.po index 60b9a5d08..2328b22aa 100644 --- 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-05-13 11:25+0200\n" +"POT-Creation-Date: 2010-05-13 11:30+0200\n" "PO-Revision-Date: 2010-03-30 23:16+0200\n" "Last-Translator: Michal \n" "Language-Team: greek \n" @@ -15,19 +15,19 @@ msgstr "" "X-Generator: Pootle 2.0.1\n" #: browse_foreigners.php:38 browse_foreigners.php:59 -#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:870 +#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:866 #: server_privileges.php:1475 msgid "Show all" msgstr "Εμφάνιση όλων" #: browse_foreigners.php:82 db_operations.php:648 -#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:394 -#: libraries/export/pdf.php:147 libraries/messages.inc.php:597 +#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394 +#: libraries/export/pdf.php:147 libraries/messages.inc.php:593 #: pdf_schema.php:283 pdf_schema.php:1123 pdf_schema.php:1139 msgid "Page number:" msgstr "Σελίδα:" -#: browse_foreigners.php:132 libraries/messages.inc.php:1242 +#: browse_foreigners.php:132 libraries/messages.inc.php:1238 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -40,7 +40,7 @@ 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/db_links.inc.php:75 -#: libraries/messages.inc.php:841 libraries/tbl_links.inc.php:63 +#: libraries/messages.inc.php:837 libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Αναζήτηση" @@ -49,12 +49,12 @@ msgstr "Αναζήτηση" #: db_search.php:362 db_structure.php:567 js/messages.php:48 #: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2267 +#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 #: 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 #: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614 -#: libraries/messages.inc.php:361 libraries/replication_gui.lib.php:73 +#: libraries/messages.inc.php:357 libraries/replication_gui.lib.php:73 #: libraries/replication_gui.lib.php:365 libraries/select_server.lib.php:104 #: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477 #: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782 @@ -74,33 +74,33 @@ msgid "Go" msgstr "Εκτέλεση" #: browse_foreigners.php:168 browse_foreigners.php:172 -#: libraries/Index.class.php:442 libraries/messages.inc.php:459 +#: libraries/Index.class.php:442 libraries/messages.inc.php:455 #: tbl_tracking.php:320 msgid "Keyname" msgstr "Όνομα κλειδιού" #: browse_foreigners.php:169 browse_foreigners.php:171 -#: libraries/messages.inc.php:252 server_collations.php:55 +#: libraries/messages.inc.php:248 server_collations.php:55 #: server_collations.php:67 server_engines.php:59 server_status.php:628 msgid "Description" msgstr "Περιγραφή" #: browse_foreigners.php:247 browse_foreigners.php:256 #: browse_foreigners.php:268 browse_foreigners.php:276 -#: libraries/messages.inc.php:1218 +#: libraries/messages.inc.php:1214 msgid "Use this value" msgstr "Χρήση αυτής της τιμής" -#: db_create.php:46 libraries/messages.inc.php:215 +#: db_create.php:46 libraries/messages.inc.php:211 #, php-format msgid "Database %1$s has been created." msgstr "Δημιουργήθηκε η βάση δεδομένων %1$s." -#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:232 +#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:228 msgid "Database comment: " msgstr "Σχόλιο βάσης: " -#: db_datadict.php:165 libraries/messages.inc.php:1070 +#: db_datadict.php:165 libraries/messages.inc.php:1066 #: libraries/tbl_properties.inc.php:724 pdf_schema.php:1236 #: tbl_operations.php:345 tbl_printview.php:130 msgid "Table comments" @@ -109,7 +109,7 @@ msgstr "Σχόλια Πίνακα" #: db_datadict.php:174 db_qbe.php:174 libraries/Index.class.php:446 #: libraries/export/htmlword.php:244 libraries/export/latex.php:360 #: libraries/export/odt.php:294 libraries/export/texytext.php:233 -#: libraries/messages.inc.php:317 libraries/tbl_properties.inc.php:99 +#: libraries/messages.inc.php:313 libraries/tbl_properties.inc.php:99 #: libraries/tbl_properties.inc.php:275 pdf_schema.php:1262 #: pdf_schema.php:1283 tbl_change.php:308 tbl_indexes.php:189 #: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135 @@ -121,7 +121,7 @@ msgstr "Πεδίο" #: libraries/db_events.inc.php:31 libraries/db_routines.inc.php:42 #: 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/messages.inc.php:1181 +#: libraries/export/texytext.php:234 libraries/messages.inc.php:1177 #: libraries/tbl_properties.inc.php:100 pdf_schema.php:1263 #: pdf_schema.php:1284 server_privileges.php:2031 tbl_change.php:287 #: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313 @@ -133,7 +133,7 @@ msgstr "Τύπος" #: db_datadict.php:177 libraries/Index.class.php:449 #: libraries/export/htmlword.php:246 libraries/export/latex.php:360 #: libraries/export/odt.php:300 libraries/export/texytext.php:235 -#: libraries/messages.inc.php:576 libraries/tbl_properties.inc.php:109 +#: libraries/messages.inc.php:572 libraries/tbl_properties.inc.php:109 #: pdf_schema.php:1265 pdf_schema.php:1286 tbl_change.php:323 #: tbl_printview.php:145 tbl_structure.php:181 tbl_tracking.php:276 #: tbl_tracking.php:327 @@ -142,7 +142,7 @@ msgstr "Κενό" #: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 -#: libraries/export/texytext.php:236 libraries/messages.inc.php:238 +#: libraries/export/texytext.php:236 libraries/messages.inc.php:234 #: libraries/tbl_properties.inc.php:106 pdf_schema.php:1266 #: pdf_schema.php:1287 tbl_printview.php:146 tbl_structure.php:182 #: tbl_tracking.php:277 @@ -151,14 +151,14 @@ msgstr "Προκαθορισμένο" #: db_datadict.php:182 libraries/export/htmlword.php:249 #: libraries/export/latex.php:362 libraries/export/odt.php:307 -#: libraries/export/texytext.php:238 libraries/messages.inc.php:483 +#: libraries/export/texytext.php:238 libraries/messages.inc.php:479 #: pdf_schema.php:1268 pdf_schema.php:1289 tbl_printview.php:150 msgid "Links to" msgstr "Σύνδεση με" #: db_datadict.php:184 db_printview.php:112 libraries/export/htmlword.php:252 #: libraries/export/latex.php:365 libraries/export/odt.php:312 -#: libraries/export/texytext.php:241 libraries/messages.inc.php:163 +#: libraries/export/texytext.php:241 libraries/messages.inc.php:159 #: libraries/tbl_properties.inc.php:130 pdf_schema.php:1279 #: pdf_schema.php:1290 tbl_printview.php:152 msgid "Comments" @@ -167,7 +167,7 @@ msgstr "Σχόλια" #: db_datadict.php:267 libraries/Index.class.php:359 #: 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/messages.inc.php:559 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:555 #: libraries/mult_submits.inc.php:263 pdf_schema.php:1344 #: server_privileges.php:1529 server_privileges.php:1540 #: server_privileges.php:1850 server_privileges.php:1855 @@ -179,7 +179,7 @@ msgstr "Όχι" #: db_datadict.php:267 libraries/Index.class.php:360 #: libraries/Index.class.php:385 libraries/export/htmlword.php:322 #: libraries/export/latex.php:430 libraries/export/odt.php:368 -#: libraries/export/texytext.php:311 libraries/messages.inc.php:1257 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:1253 #: libraries/mult_submits.inc.php:45 libraries/mult_submits.inc.php:50 #: libraries/mult_submits.inc.php:55 libraries/mult_submits.inc.php:60 #: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:101 @@ -193,108 +193,108 @@ msgstr "Όχι" msgid "Yes" msgstr "Ναι" -#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:670 +#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:666 #: tbl_printview.php:498 msgid "Print" msgstr "Εκτύπωση" -#: db_export.php:29 libraries/messages.inc.php:1226 +#: db_export.php:29 libraries/messages.inc.php:1222 msgid "View dump (schema) of database" msgstr "Εμφάνιση σχήματος της βάσης δεδομένων" #: db_export.php:33 db_printview.php:96 db_qbe.php:102 db_structure.php:51 -#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:568 +#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:564 #: navigation.php:346 msgid "No tables found in database." msgstr "Δεν βρέθηκαν Πίνακες στη βάση δεδομένων." -#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:845 +#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:841 #: server_export.php:27 msgid "Select All" msgstr "Επιλογή όλων" -#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1188 +#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1184 #: server_export.php:29 msgid "Unselect All" msgstr "Απεπιλογή όλων" -#: db_operations.php:38 libraries/messages.inc.php:213 tbl_create.php:54 +#: db_operations.php:38 libraries/messages.inc.php:209 tbl_create.php:54 msgid "The database name is empty!" msgstr "Το όνομα της βάσης δεδομένων είναι κενό!" -#: db_operations.php:236 libraries/messages.inc.php:753 +#: db_operations.php:236 libraries/messages.inc.php:749 #, php-format msgid "Database %s has been renamed to %s" msgstr "Η βάση δεδομένων %s μετονομάστηκε σε %s" -#: db_operations.php:240 libraries/messages.inc.php:178 +#: db_operations.php:240 libraries/messages.inc.php:174 #, php-format msgid "Database %s has been copied to %s" msgstr "Η βάση δεδομένων %s αντιγράφηκε στη %s" -#: db_operations.php:410 libraries/messages.inc.php:236 +#: db_operations.php:410 libraries/messages.inc.php:232 msgid "Rename database to" msgstr "Μετονομασία βάσης δεδομένων σε" -#: db_operations.php:415 libraries/messages.inc.php:161 +#: db_operations.php:415 libraries/messages.inc.php:157 #: server_processlist.php:57 msgid "Command" msgstr "Εντολή" -#: db_operations.php:425 libraries/messages.inc.php:58 tbl_change.php:1143 +#: db_operations.php:425 libraries/messages.inc.php:54 tbl_change.php:1143 msgid "and then" msgstr "και μετά" -#: db_operations.php:451 libraries/messages.inc.php:233 +#: db_operations.php:451 libraries/messages.inc.php:229 msgid "Copy database to" msgstr "Αντιγραφή βάσης δεδομένων σε" -#: db_operations.php:458 libraries/messages.inc.php:1043 +#: db_operations.php:458 libraries/messages.inc.php:1039 #: tbl_operations.php:526 tbl_tracking.php:388 msgid "Structure only" msgstr "Μόνο η δομή" -#: db_operations.php:459 libraries/messages.inc.php:1041 +#: db_operations.php:459 libraries/messages.inc.php:1037 #: tbl_operations.php:527 tbl_tracking.php:390 msgid "Structure and data" msgstr "Δομή και δεδομένα" -#: db_operations.php:460 libraries/messages.inc.php:229 tbl_operations.php:528 +#: db_operations.php:460 libraries/messages.inc.php:225 tbl_operations.php:528 #: tbl_tracking.php:389 msgid "Data only" msgstr "Μόνο τα δεδομένα" -#: db_operations.php:468 libraries/messages.inc.php:186 +#: db_operations.php:468 libraries/messages.inc.php:182 msgid "CREATE DATABASE before copying" msgstr "ΔΗΜΙΟΥΡΓΙΑ ΒΑΣΗΣ ΔΕΔΟΜΕΝΩΝ πριν την αντιγραφή" #: db_operations.php:471 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 -#: libraries/export/sql.php:82 libraries/messages.inc.php:30 +#: libraries/export/sql.php:82 libraries/messages.inc.php:26 #: tbl_operations.php:534 #, php-format msgid "Add %s" msgstr "Προσθήκη %s" -#: db_operations.php:475 libraries/messages.inc.php:29 tbl_operations.php:297 +#: db_operations.php:475 libraries/messages.inc.php:25 tbl_operations.php:297 #: tbl_operations.php:536 msgid "Add AUTO_INCREMENT value" msgstr "Προσθήκη τιμής AUTO_INCREMENT" -#: db_operations.php:479 libraries/messages.inc.php:31 tbl_operations.php:543 +#: db_operations.php:479 libraries/messages.inc.php:27 tbl_operations.php:543 msgid "Add constraints" msgstr "Προσθήκη περιορισμών" -#: db_operations.php:492 libraries/messages.inc.php:1059 +#: db_operations.php:492 libraries/messages.inc.php:1055 msgid "Switch to copied database" msgstr "Αλλαγή στο αντίγραφο της βάσης δεδομένων" -#: db_operations.php:533 libraries/messages.inc.php:89 +#: db_operations.php:533 libraries/messages.inc.php:85 msgid "BLOB Repository" msgstr "Αποθήκη BLOB" #: db_operations.php:536 db_tracking.php:76 libraries/common.lib.php:1350 -#: libraries/messages.inc.php:1037 libraries/server_links.inc.php:49 +#: libraries/messages.inc.php:1033 libraries/server_links.inc.php:49 #: server_processlist.php:59 tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "Κατάσταση" @@ -306,11 +306,11 @@ msgctxt "BLOB repository" msgid "Enabled" msgstr "Ενεργοποιημένο" -#: db_operations.php:548 libraries/messages.inc.php:93 +#: db_operations.php:548 libraries/messages.inc.php:89 msgid "Disable" msgstr "Απενεργοποίηση" -#: db_operations.php:558 libraries/messages.inc.php:90 +#: db_operations.php:558 libraries/messages.inc.php:86 msgid "Damaged" msgstr "Καταστράφηκε" @@ -328,12 +328,12 @@ msgctxt "BLOB repository" msgid "Disabled" msgstr "Απενεργοποιημένο" -#: db_operations.php:574 libraries/messages.inc.php:96 +#: db_operations.php:574 libraries/messages.inc.php:92 msgid "Enable" msgstr "Ενεργοποίηση" #: db_operations.php:598 libraries/Index.class.php:448 -#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:158 +#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:154 #: 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:361 @@ -342,7 +342,7 @@ msgstr "Ενεργοποίηση" msgid "Collation" msgstr "Σύνθεση" -#: db_operations.php:609 libraries/messages.inc.php:742 main.php:316 +#: db_operations.php:609 libraries/messages.inc.php:738 main.php:316 #: pdf_schema.php:34 #, php-format msgid "" @@ -352,58 +352,58 @@ msgstr "" "Οι επιπρόσθετες λειτουργίες για εργασία με συσχετισμένους πίνακες έχουν " "απενεργοποιηθεί. Για να μάθετε γιατί, πατήστε %sεδώ%s." -#: db_operations.php:645 libraries/messages.inc.php:264 pdf_pages.php:528 +#: db_operations.php:645 libraries/messages.inc.php:260 pdf_pages.php:528 msgid "Display PDF schema" msgstr "Εμφάνιση σχήματος PDF" -#: db_operations.php:661 libraries/messages.inc.php:877 pdf_pages.php:529 +#: db_operations.php:661 libraries/messages.inc.php:873 pdf_pages.php:529 msgid "Show grid" msgstr "Εμφάνιση πλέγματος" -#: db_operations.php:664 libraries/messages.inc.php:874 pdf_pages.php:530 +#: db_operations.php:664 libraries/messages.inc.php:870 pdf_pages.php:530 msgid "Show color" msgstr "Εμφάνιση χρωμάτων" -#: db_operations.php:666 libraries/messages.inc.php:998 pdf_pages.php:531 +#: db_operations.php:666 libraries/messages.inc.php:994 pdf_pages.php:531 msgid "Show dimension of tables" msgstr "Εμφάνιση διαστάσεων πινάκων" -#: db_operations.php:669 libraries/messages.inc.php:52 pdf_pages.php:532 +#: db_operations.php:669 libraries/messages.inc.php:48 pdf_pages.php:532 msgid "Display all tables with the same width" msgstr "εμφάνιση όλων των πινάκων με το ίδιο πλάτος;" -#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:227 +#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:223 #: pdf_pages.php:533 msgid "Data Dictionary" msgstr "Λεξικό δεδομένων" -#: db_operations.php:674 libraries/messages.inc.php:884 pdf_pages.php:534 +#: db_operations.php:674 libraries/messages.inc.php:880 pdf_pages.php:534 msgid "Only show keys" msgstr "Μόνο ερφάνιση κλειδιών" -#: db_operations.php:676 libraries/messages.inc.php:875 pdf_pages.php:535 +#: db_operations.php:676 libraries/messages.inc.php:871 pdf_pages.php:535 msgid "Data Dictionary Format" msgstr "Μορφή λεξικού δεδομένων" -#: db_operations.php:678 libraries/messages.inc.php:464 pdf_pages.php:537 +#: db_operations.php:678 libraries/messages.inc.php:460 pdf_pages.php:537 msgid "Landscape" msgstr "Οριζόντια διάταξη" -#: db_operations.php:679 libraries/messages.inc.php:663 pdf_pages.php:538 +#: db_operations.php:679 libraries/messages.inc.php:659 pdf_pages.php:538 msgid "Portrait" msgstr "Κάθετη διάταξη" -#: db_operations.php:682 libraries/messages.inc.php:599 pdf_pages.php:541 +#: db_operations.php:682 libraries/messages.inc.php:595 pdf_pages.php:541 msgid "Paper size" msgstr "Μέγεθος χαρτιού" -#: db_operations.php:706 libraries/messages.inc.php:281 +#: db_operations.php:706 libraries/messages.inc.php:277 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 libraries/messages.inc.php:1087 +#: libraries/header.inc.php:126 libraries/messages.inc.php:1083 #: pdf_pages.php:405 server_privileges.php:1626 server_privileges.php:1682 #: server_privileges.php:1946 server_synchronize.php:423 #: server_synchronize.php:866 tbl_tracking.php:592 test/theme.php:75 @@ -411,176 +411,176 @@ msgid "Table" msgstr "Πίνακας " #: db_printview.php:105 libraries/db_structure.lib.php:56 -#: libraries/messages.inc.php:735 +#: libraries/messages.inc.php:731 msgid "Records" msgstr "Εγγραφές" #: db_printview.php:109 libraries/db_structure.lib.php:67 -#: libraries/messages.inc.php:1003 tbl_indexes.php:190 +#: libraries/messages.inc.php:999 tbl_indexes.php:190 msgid "Size" msgstr "Μέγεθος" #: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 -#: libraries/export/sql.php:899 libraries/messages.inc.php:436 +#: libraries/export/sql.php:899 libraries/messages.inc.php:432 msgid "in use" msgstr "σε χρήση" #: db_printview.php:187 libraries/db_info.inc.php:88 -#: libraries/export/sql.php:514 libraries/messages.inc.php:1032 +#: libraries/export/sql.php:514 libraries/messages.inc.php:1028 #: pdf_schema.php:1241 tbl_printview.php:434 tbl_structure.php:810 msgid "Creation" msgstr "Δημιουργία" #: db_printview.php:196 libraries/db_info.inc.php:93 -#: libraries/export/sql.php:519 libraries/messages.inc.php:1036 +#: libraries/export/sql.php:519 libraries/messages.inc.php:1032 #: pdf_schema.php:1246 tbl_printview.php:444 tbl_structure.php:818 msgid "Last update" msgstr "Τελευταία ενημέρωση" #: db_printview.php:205 libraries/db_info.inc.php:98 -#: libraries/export/sql.php:524 libraries/messages.inc.php:1031 +#: libraries/export/sql.php:524 libraries/messages.inc.php:1027 #: pdf_schema.php:1251 tbl_printview.php:454 tbl_structure.php:826 msgid "Last check" msgstr "τελευταίος έλεγχος" -#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1085 +#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1081 #, php-format msgid "%s table(s)" msgstr "%s Πίνακας/Πίνακες" #: db_qbe.php:29 libraries/display_tbl.lib.php:1981 -#: libraries/messages.inc.php:1051 libraries/sql_query_form.lib.php:140 +#: libraries/messages.inc.php:1047 libraries/sql_query_form.lib.php:140 #: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131 #: view_operations.php:62 msgid "Your SQL query has been executed successfully" msgstr "Η SQL εντολή σας εκτελέσθηκε επιτυχώς" -#: db_qbe.php:42 libraries/messages.inc.php:371 +#: db_qbe.php:42 libraries/messages.inc.php:367 msgid "You have to choose at least one column to display" msgstr "Πρέπει να επιλέξετε τουλάχιστον μία στήλη για εμφάνιση" #: db_qbe.php:200 libraries/db_structure.lib.php:104 -#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1014 +#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1010 msgid "Sort" msgstr "Ταξινόμηση" #: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111 #: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828 -#: libraries/messages.inc.php:69 server_databases.php:170 +#: libraries/messages.inc.php:65 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314 msgid "Ascending" msgstr "Αύξουσα" #: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119 #: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825 -#: libraries/messages.inc.php:251 server_databases.php:170 +#: libraries/messages.inc.php:247 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315 msgid "Descending" msgstr "Φθίνουσα" #: db_qbe.php:264 db_tracking.php:78 libraries/display_tbl.lib.php:308 -#: libraries/messages.inc.php:888 tbl_change.php:277 tbl_tracking.php:597 +#: libraries/messages.inc.php:884 tbl_change.php:277 tbl_tracking.php:597 msgid "Show" msgstr "Εμφάνιση" -#: db_qbe.php:300 libraries/messages.inc.php:202 +#: db_qbe.php:300 libraries/messages.inc.php:198 msgid "Criteria" msgstr "Κριτήρια" #: db_qbe.php:353 db_qbe.php:435 db_qbe.php:527 db_qbe.php:558 -#: libraries/messages.inc.php:718 +#: libraries/messages.inc.php:714 msgid "Ins" msgstr "Εισαγωγή" #: db_qbe.php:357 db_qbe.php:439 db_qbe.php:524 db_qbe.php:555 -#: libraries/messages.inc.php:56 +#: libraries/messages.inc.php:52 msgid "And" msgstr "Και" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:529 db_qbe.php:560 -#: libraries/messages.inc.php:717 +#: libraries/messages.inc.php:713 msgid "Del" msgstr "Διαγραφή" #: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553 -#: libraries/display_import.lib.php:166 libraries/messages.inc.php:592 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:588 #: libraries/tbl_properties.inc.php:779 server_privileges.php:258 #: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288 msgid "Or" msgstr "Ή" -#: db_qbe.php:507 libraries/messages.inc.php:516 +#: db_qbe.php:507 libraries/messages.inc.php:512 msgid "Modify" msgstr "Τροποποίηση" -#: db_qbe.php:584 libraries/messages.inc.php:33 +#: db_qbe.php:584 libraries/messages.inc.php:29 msgid "Add/Delete Criteria Row" msgstr "Προσθήκη/Αφαίρεση Γραμμής Κριτηρίων" -#: db_qbe.php:596 libraries/messages.inc.php:32 +#: db_qbe.php:596 libraries/messages.inc.php:28 msgid "Add/Delete Field Columns" msgstr "Προσθήκη/Αφαίρεση Στήλης Πεδίου" -#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1192 +#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1188 msgid "Update Query" msgstr "Ενημέρωση της εντολής" -#: db_qbe.php:617 libraries/messages.inc.php:1216 +#: db_qbe.php:617 libraries/messages.inc.php:1212 msgid "Use Tables" msgstr "Χρήση Πινάκων" -#: db_qbe.php:640 libraries/messages.inc.php:723 +#: db_qbe.php:640 libraries/messages.inc.php:719 #, php-format msgid "SQL query on database %s:" msgstr "Εντολή SQL στη βάση %s:" -#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:823 +#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:819 msgid "Submit Query" msgstr "Υποβολή ερωτήματος" #: db_search.php:68 libraries/auth/config.auth.lib.php:84 #: libraries/auth/config.auth.lib.php:103 #: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52 -#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:26 +#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:22 msgid "Access denied" msgstr "Άρνηση Πρόσβασης" -#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:836 +#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:832 msgid "at least one of the words" msgstr "τουλάχιστον έναν από τους όρους" -#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:837 +#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:833 msgid "all words" msgstr "όλους τους όρους" -#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:838 +#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:834 msgid "the exact phrase" msgstr "την ακριβή φράση" -#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:839 +#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:835 msgid "as regular expression" msgstr "ως κανονική έκφραση" -#: db_search.php:242 libraries/messages.inc.php:840 +#: db_search.php:242 libraries/messages.inc.php:836 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Αποτελέσματα αναζήτησης για «%s» %s:" -#: db_search.php:260 libraries/messages.inc.php:579 +#: db_search.php:260 libraries/messages.inc.php:575 #, php-format msgid "%s match(es) inside table %s" 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/messages.inc.php:108 +#: db_structure.php:105 libraries/messages.inc.php:104 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468 msgid "Browse" msgstr "Περιήγηση" #: db_search.php:272 libraries/display_tbl.lib.php:1165 -#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:243 +#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:239 #: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406 #: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377 #: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216 @@ -588,45 +588,45 @@ msgstr "Περιήγηση" msgid "Delete" msgstr "Διαγραφή" -#: db_search.php:285 libraries/messages.inc.php:580 +#: db_search.php:285 libraries/messages.inc.php:576 #, php-format msgid "Total: %s match(es)" msgstr "Σύνολο: %s αποτελέσματα" -#: db_search.php:299 libraries/messages.inc.php:832 +#: db_search.php:299 libraries/messages.inc.php:828 msgid "Search in database" msgstr "Αναζήτηση στη βάση" -#: db_search.php:302 libraries/messages.inc.php:835 +#: db_search.php:302 libraries/messages.inc.php:831 msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgstr "Όροι ή τιμές για αναζήτηση (μπαλαντέρ: «%»):" -#: db_search.php:307 libraries/messages.inc.php:842 +#: db_search.php:307 libraries/messages.inc.php:838 msgid "Find:" msgstr "Έυρεση:" -#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1017 +#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1013 msgid "Words are separated by a space character (\" \")." msgstr "Οι λέξεις χωρίζονται από τον χαρακτήρα διαστήματος (« »)." -#: db_search.php:325 libraries/messages.inc.php:834 +#: db_search.php:325 libraries/messages.inc.php:830 msgid "Inside table(s):" msgstr "Μέσα στους πίνακες:" -#: db_search.php:355 libraries/messages.inc.php:833 +#: db_search.php:355 libraries/messages.inc.php:829 msgid "Inside field:" 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/messages.inc.php:431 libraries/sql_query_form.lib.php:334 +#: libraries/messages.inc.php:427 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/db_links.inc.php:63 libraries/export/latex.php:337 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:1048 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:1044 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 #: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269 msgid "Structure" @@ -635,8 +635,8 @@ 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:1642 -#: libraries/db_links.inc.php:100 libraries/messages.inc.php:272 +#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/db_links.inc.php:100 libraries/messages.inc.php:268 #: 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 @@ -646,40 +646,40 @@ 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:1641 -#: libraries/messages.inc.php:284 libraries/mult_submits.inc.php:39 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: libraries/messages.inc.php:280 libraries/mult_submits.inc.php:39 #: libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Άδειασμα" -#: db_structure.php:316 libraries/messages.inc.php:1075 +#: db_structure.php:316 libraries/messages.inc.php:1071 #: libraries/tbl_links.inc.php:100 #, php-format msgid "Table %s has been emptied" msgstr "Ο Πίνακας %s άδειασε" -#: db_structure.php:326 libraries/messages.inc.php:1229 +#: db_structure.php:326 libraries/messages.inc.php:1225 #: libraries/tbl_links.inc.php:133 #, php-format msgid "View %s has been dropped" msgstr "Η προβολή %s διαγράφτηκε" -#: db_structure.php:326 libraries/messages.inc.php:1074 +#: db_structure.php:326 libraries/messages.inc.php:1070 #: libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "Ο Πίνακας %s διεγράφη" -#: db_structure.php:333 libraries/messages.inc.php:1128 +#: db_structure.php:333 libraries/messages.inc.php:1124 msgid "Tracking is active." msgstr "Η παρακολούθηση είναι ενεργοποιημένη." -#: db_structure.php:335 libraries/messages.inc.php:1129 +#: db_structure.php:335 libraries/messages.inc.php:1125 msgid "Tracking is not active." msgstr "Η παρακολούθηση δεν έιναι ενεργοποιημένη." #: db_structure.php:420 libraries/display_tbl.lib.php:1944 -#: libraries/messages.inc.php:1228 +#: libraries/messages.inc.php:1224 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -689,23 +689,23 @@ msgstr "" "sτεκμηρίωση%s." #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 -#: libraries/messages.inc.php:1233 libraries/tbl_info.inc.php:66 +#: libraries/messages.inc.php:1229 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/messages.inc.php:773 libraries/server_links.inc.php:70 +#: libraries/messages.inc.php:769 libraries/server_links.inc.php:70 #: server_replication.php:33 server_replication.php:164 server_status.php:258 msgid "Replication" msgstr "Αναπαραγωγή" -#: db_structure.php:489 libraries/messages.inc.php:1053 +#: db_structure.php:489 libraries/messages.inc.php:1049 msgid "Sum" msgstr "Σύνολο" #: db_structure.php:496 libraries/StorageEngine.class.php:356 -#: libraries/messages.inc.php:239 +#: libraries/messages.inc.php:235 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" @@ -713,60 +713,60 @@ msgstr "" #: db_structure.php:524 db_structure.php:541 db_structure.php:542 #: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086 -#: libraries/messages.inc.php:1243 libraries/mult_submits.inc.php:16 +#: libraries/messages.inc.php:1239 libraries/mult_submits.inc.php:16 #: server_databases.php:346 server_databases.php:351 #: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465 msgid "With selected:" msgstr "Με τους επιλεγμένους:" #: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: libraries/messages.inc.php:148 server_databases.php:348 +#: libraries/messages.inc.php:144 server_databases.php:348 #: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459 msgid "Check All" msgstr "Επιλογή όλων" #: db_structure.php:531 libraries/display_tbl.lib.php:2077 -#: libraries/messages.inc.php:1184 libraries/replication_gui.lib.php:33 +#: libraries/messages.inc.php:1180 libraries/replication_gui.lib.php:33 #: server_databases.php:350 server_privileges.php:533 #: server_privileges.php:1564 tbl_structure.php:463 msgid "Uncheck All" msgstr "Απεπιλογή όλων" -#: db_structure.php:536 libraries/messages.inc.php:150 +#: db_structure.php:536 libraries/messages.inc.php:146 msgid "Check tables having overhead" msgstr "Έλεγχος πινάκων με υπερκεφαλίδα" #: db_structure.php:547 db_structure.php:548 db_structure.php:599 -#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:672 +#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:668 #: libraries/mult_submits.inc.php:28 tbl_structure.php:493 #: tbl_structure.php:495 msgid "Print view" msgstr "Εμφάνιση για εκτύπωση" -#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:153 +#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:149 #: libraries/mult_submits.inc.php:42 tbl_operations.php:579 msgid "Check table" msgstr "Έλεγχος πίνακα" -#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:590 +#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:586 #: libraries/mult_submits.inc.php:47 tbl_operations.php:619 #: tbl_structure.php:710 tbl_structure.php:712 msgid "Optimize table" msgstr "Βελτιστοποίηση Πίνακα" -#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:758 +#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:754 #: libraries/mult_submits.inc.php:52 tbl_operations.php:609 msgid "Repair table" msgstr "Επιδιόρθωση πίνακα" -#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:55 +#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:51 #: libraries/mult_submits.inc.php:57 tbl_operations.php:599 msgid "Analyze table" msgstr "Ανάλυση Πίνακα" #: db_structure.php:557 db_structure.php:558 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/messages.inc.php:310 +#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:306 #: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84 #: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109 #: server_privileges.php:1341 setup/frames/menu.inc.php:22 @@ -774,7 +774,7 @@ msgstr "Ανάλυση Πίνακα" msgid "Export" msgstr "Εξαγωγή" -#: db_tracking.php:66 libraries/messages.inc.php:1151 +#: db_tracking.php:66 libraries/messages.inc.php:1147 msgid "Tracked tables" msgstr "Παρακολουθούμενοι πίνακες" @@ -782,7 +782,7 @@ msgstr "Παρακολουθούμενοι πίνακες" #: 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/header_printview.inc.php:58 libraries/messages.inc.php:212 +#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:208 #: navigation.php:233 server_databases.php:169 server_privileges.php:1621 #: server_privileges.php:1682 server_privileges.php:1940 #: server_processlist.php:56 server_synchronize.php:1179 @@ -790,76 +790,76 @@ msgstr "Παρακολουθούμενοι πίνακες" msgid "Database" msgstr "Βάση" -#: db_tracking.php:73 libraries/messages.inc.php:1146 +#: db_tracking.php:73 libraries/messages.inc.php:1142 msgid "Last version" msgstr "Τελευταία έκδοση" -#: db_tracking.php:74 libraries/messages.inc.php:1145 tbl_tracking.php:594 +#: db_tracking.php:74 libraries/messages.inc.php:1141 tbl_tracking.php:594 msgid "Created" msgstr "Δημιουργήθηκε" -#: db_tracking.php:75 libraries/messages.inc.php:1147 tbl_tracking.php:595 +#: db_tracking.php:75 libraries/messages.inc.php:1143 tbl_tracking.php:595 msgid "Updated" msgstr "Ενημερώθηκε" #: db_tracking.php:77 libraries/Index.class.php:440 -#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:27 +#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:23 #: server_databases.php:203 server_privileges.php:1503 #: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187 msgid "Action" msgstr "Ενέργεια" -#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:247 +#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:243 msgid "Delete tracking data for this table" msgstr "Διαγραφή δεδομένων παρακολούθησης για αυτόν τον πίνακα" -#: db_tracking.php:106 libraries/messages.inc.php:1142 tbl_tracking.php:548 +#: db_tracking.php:106 libraries/messages.inc.php:1138 tbl_tracking.php:548 #: tbl_tracking.php:606 tbl_tracking.php:613 msgid "active" msgstr "ενεργή" -#: db_tracking.php:108 libraries/messages.inc.php:1143 tbl_tracking.php:550 +#: db_tracking.php:108 libraries/messages.inc.php:1139 tbl_tracking.php:550 #: tbl_tracking.php:608 tbl_tracking.php:610 msgid "not active" msgstr "μη ενεργή" -#: db_tracking.php:121 libraries/messages.inc.php:1160 +#: db_tracking.php:121 libraries/messages.inc.php:1156 msgid "Versions" msgstr "Εκδόσεις" -#: db_tracking.php:122 libraries/messages.inc.php:1132 tbl_tracking.php:379 +#: db_tracking.php:122 libraries/messages.inc.php:1128 tbl_tracking.php:379 #: tbl_tracking.php:624 msgid "Tracking report" msgstr "Αναφορά παρακολούθησης" -#: db_tracking.php:123 libraries/messages.inc.php:1144 tbl_tracking.php:251 +#: db_tracking.php:123 libraries/messages.inc.php:1140 tbl_tracking.php:251 #: tbl_tracking.php:624 msgid "Structure snapshot" msgstr "Στιγμιότυπο δομής" -#: db_tracking.php:152 libraries/messages.inc.php:1154 +#: db_tracking.php:152 libraries/messages.inc.php:1150 msgid "Untracked tables" msgstr "Μη παρακολουθούμενοι πίνακες" -#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1153 +#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1149 #: tbl_structure.php:529 tbl_structure.php:531 msgid "Track table" msgstr "Παρακολούθηση πίνακα" -#: db_tracking.php:200 libraries/messages.inc.php:1121 +#: db_tracking.php:200 libraries/messages.inc.php:1117 msgid "Database Log" msgstr "Καταγραφή Βάσης Δεδομένων" -#: export.php:62 libraries/messages.inc.php:312 +#: export.php:62 libraries/messages.inc.php:308 msgid "Selected export type has to be saved in file!" msgstr "Ο επιλεγμένος τύπος εξαγωγής πρέπει να αποθηκευτεί σε αρχείο!" -#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:567 +#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:563 #, php-format msgid "Insufficient space to save the file %s." msgstr "Δεν υπάρχει διαθέσιμος χώρος για την αποθήκευση του αρχείου %s." -#: export.php:294 libraries/messages.inc.php:324 +#: export.php:294 libraries/messages.inc.php:320 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -867,17 +867,17 @@ msgstr "" "Το αρχείο %s υπάρχει ήδη στον διακομιστή. Επιλέξτε διαφορετικό όνομα αρχείου " "ή ενεργοποιήστε την επιλογή αντικατάστασης." -#: export.php:298 export.php:302 libraries/messages.inc.php:562 +#: export.php:298 export.php:302 libraries/messages.inc.php:558 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Ο διακομιστής δεν έχει δικαιώματα αποθήκευσης του αρχείου %s." -#: export.php:629 libraries/messages.inc.php:276 +#: export.php:629 libraries/messages.inc.php:272 #, php-format msgid "Dump has been saved to file %s." msgstr "Το αρχείο εξόδου αποθηκεύτηκε ως %s." -#: import.php:60 libraries/messages.inc.php:1202 +#: import.php:60 libraries/messages.inc.php:1198 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation%" @@ -887,14 +887,14 @@ msgstr "" "sτεκμηρίωση%s για τρόπους αντιμετώπισης αυτού του περιορισμού." #: import.php:279 import.php:332 libraries/File.class.php:849 -#: libraries/File.class.php:961 libraries/messages.inc.php:325 +#: libraries/File.class.php:961 libraries/messages.inc.php:321 msgid "File could not be read" msgstr "Δεν ήταν δυνατή η ανάγνωση του αρχείου" #: import.php:287 import.php:296 import.php:315 import.php:324 #: libraries/File.class.php:1031 libraries/File.class.php:1039 #: libraries/File.class.php:1055 libraries/File.class.php:1063 -#: libraries/messages.inc.php:1189 +#: libraries/messages.inc.php:1185 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -904,7 +904,7 @@ msgstr "" "υποστήριξη για αυτή δεν έχει εφαρμοστεί ή απενεργοποιηθεί από τις ρυθμίσεις " "σας." -#: import.php:337 libraries/messages.inc.php:547 +#: import.php:337 libraries/messages.inc.php:543 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -915,29 +915,29 @@ msgstr "" "της ΡΗΡ. Δείτε τις ΣΑΕ 1.16." #: import.php:372 libraries/display_import.lib.php:24 -#: libraries/messages.inc.php:125 +#: libraries/messages.inc.php:121 msgid "Could not load import plugins, please check your installation!" msgstr "Αδύνατη η φόρτωση προσθέτων εισαγωγής. Ελέξτε την εγκατάστασή σας!" -#: import.php:397 libraries/messages.inc.php:102 +#: import.php:397 libraries/messages.inc.php:98 msgid "The bookmark has been deleted." msgstr "Η ετικέτα διεγράφη." -#: import.php:401 libraries/messages.inc.php:879 +#: import.php:401 libraries/messages.inc.php:875 msgid "Showing bookmark" msgstr "Εμφάνιση σελιδοδείκτη" -#: import.php:403 libraries/messages.inc.php:101 +#: import.php:403 libraries/messages.inc.php:97 #, php-format msgid "Bookmark %s created" msgstr "Ο σελιδοδείκτης %s δημιουργήθηκε" -#: import.php:409 import.php:415 libraries/messages.inc.php:407 +#: import.php:409 import.php:415 libraries/messages.inc.php:403 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Η εισαγωγή ολοκληρώθηκε επιτυχώς, %d ερωτήματα εκτελέστηκαν." -#: import.php:424 libraries/messages.inc.php:1107 +#: import.php:424 libraries/messages.inc.php:1103 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -945,13 +945,13 @@ msgstr "" "Το χρονικό όριο του κώδικα εξαντλήθηκε. Αν θέλετε να τελειώσετε την " "εισαγωγή, επανυποβάλτε το ίδιο αρχείο και η εισαγωγή θα συνεχίσει." -#: index.php:190 libraries/messages.inc.php:553 +#: index.php:190 libraries/messages.inc.php:549 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" "Το phpMyAdmin είναι πιο φιλικό με έναν browser που υποστηρίζει πλαίσια " "(frames)." -#: js/messages.php:25 libraries/messages.inc.php:155 +#: js/messages.php:25 libraries/messages.inc.php:151 #: server_synchronize.php:345 server_synchronize.php:357 #: server_synchronize.php:373 server_synchronize.php:380 #: server_synchronize.php:739 server_synchronize.php:767 @@ -959,117 +959,117 @@ msgstr "" msgid "Click to select" msgstr "Πατήστε για επιλογή" -#: js/messages.php:26 libraries/messages.inc.php:156 +#: js/messages.php:26 libraries/messages.inc.php:152 msgid "Click to unselect" msgstr "Πατήστε για απεπιλογή" #: js/messages.php:27 libraries/import.lib.php:103 -#: libraries/messages.inc.php:550 sql.php:89 +#: libraries/messages.inc.php:546 sql.php:89 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Οι εντολές «DROP DATABASE» έχουν απενεργοποιηθεί." -#: js/messages.php:30 libraries/messages.inc.php:270 +#: js/messages.php:30 libraries/messages.inc.php:266 #: libraries/mult_submits.inc.php:258 sql.php:188 msgid "Do you really want to " msgstr "Θέλετε να εκτελέσετε την εντολή" -#: js/messages.php:31 libraries/messages.inc.php:271 +#: js/messages.php:31 libraries/messages.inc.php:267 #: libraries/mult_submits.inc.php:258 sql.php:172 msgid "You are about to DESTROY a complete database!" msgstr "Πρόκειται να ΚΑΤΑΣΤΡΕΨΕΤΕ (DESTROY) μια ολόκληρη βάση δεδομένων!" -#: js/messages.php:34 libraries/messages.inc.php:94 +#: js/messages.php:34 libraries/messages.inc.php:90 msgid "You are about to DISABLE a BLOB Repository!" msgstr "Πρόκειτε να ΑΠΕΝΕΡΓΟΠΟΙΉΣΕΤΕ μια Αποθήκη BLOB!" -#: js/messages.php:35 libraries/messages.inc.php:91 +#: js/messages.php:35 libraries/messages.inc.php:87 #, php-format msgid "Are you sure you want to disable all BLOB references for database %s?" msgstr "" "Θέλετε να απενεργοποιήσετε όλες τις αναφορές BLOB για τη βάση δεδομένων %s;" -#: js/messages.php:38 libraries/messages.inc.php:342 +#: js/messages.php:38 libraries/messages.inc.php:338 msgid "Missing value in the form!" msgstr "Ελλειπής τιμή στο πεδίο !" -#: js/messages.php:39 libraries/messages.inc.php:570 +#: js/messages.php:39 libraries/messages.inc.php:566 msgid "This is not a number!" msgstr "Αυτό δεν είναι αριθμός!" -#: js/messages.php:42 libraries/messages.inc.php:380 +#: js/messages.php:42 libraries/messages.inc.php:376 msgid "The host name is empty!" msgstr "Το όνομα του Συστήματος είναι κενό!" -#: js/messages.php:43 libraries/messages.inc.php:1208 +#: js/messages.php:43 libraries/messages.inc.php:1204 msgid "The user name is empty!" msgstr "Το όνομα του χρήστη είναι κενό!" -#: js/messages.php:44 libraries/messages.inc.php:607 +#: js/messages.php:44 libraries/messages.inc.php:603 #: server_privileges.php:1197 user_password.php:70 msgid "The password is empty!" msgstr "Ο Κωδικός Πρόσβασης είναι κενός!" -#: js/messages.php:45 libraries/messages.inc.php:609 +#: js/messages.php:45 libraries/messages.inc.php:605 #: server_privileges.php:1195 user_password.php:73 msgid "The passwords aren't the same!" msgstr "Οι κωδικοί πρόσβασης δεν είναι ίδιοι!" -#: js/messages.php:49 libraries/messages.inc.php:123 pmd_general.php:342 +#: js/messages.php:49 libraries/messages.inc.php:119 pmd_general.php:342 #: pmd_general.php:379 msgid "Cancel" msgstr "Άκυρο" -#: js/messages.php:52 libraries/messages.inc.php:514 +#: js/messages.php:52 libraries/messages.inc.php:510 msgid "Modifications have been saved" msgstr "Οι αλλαγές αποθηκεύτηκαν" -#: js/messages.php:53 libraries/messages.inc.php:741 +#: js/messages.php:53 libraries/messages.inc.php:737 msgid "Relation deleted" msgstr "Η συσχέτιση διαγράφηκε" -#: js/messages.php:54 libraries/messages.inc.php:340 +#: js/messages.php:54 libraries/messages.inc.php:336 msgid "FOREIGN KEY relation added" msgstr "Προστέθηκε η συσχέτιση ΜΗ ΔΙΑΚΡΙΤΟΥ ΚΛΕΙΔΙΟΥ (FOREIGN KEY)" -#: js/messages.php:55 libraries/messages.inc.php:434 +#: js/messages.php:55 libraries/messages.inc.php:430 msgid "Internal relation added" msgstr "Η εσωτερική συσχέτιση προστέθηκε" -#: js/messages.php:56 libraries/messages.inc.php:299 +#: js/messages.php:56 libraries/messages.inc.php:295 msgid "Error: Relation not added." msgstr "Σφάλμα: Δεν προστέθηκε η συσχέτιση." -#: js/messages.php:57 libraries/messages.inc.php:300 +#: js/messages.php:57 libraries/messages.inc.php:296 msgid "Error: relation already exists." msgstr "Σφάλμα: Η συσχέτιση υπαρχει ήδη." -#: js/messages.php:58 libraries/messages.inc.php:302 +#: js/messages.php:58 libraries/messages.inc.php:298 msgid "Error saving coordinates for Designer." msgstr "Σφάλμα αποθήκευσης συντεταγμένων για τον Σχεδιαστή." -#: js/messages.php:59 libraries/messages.inc.php:351 +#: js/messages.php:59 libraries/messages.inc.php:347 #: libraries/relation.lib.php:107 msgid "General relation features" msgstr "Γενικές λειτουργίες συσχέτισης" -#: js/messages.php:59 libraries/messages.inc.php:260 +#: js/messages.php:59 libraries/messages.inc.php:256 #: libraries/relation.lib.php:101 libraries/relation.lib.php:108 msgid "Disabled" msgstr "Απενεργοποιημένο" -#: js/messages.php:60 libraries/messages.inc.php:850 +#: js/messages.php:60 libraries/messages.inc.php:846 msgid "Select referenced key" msgstr "Επιλέξτε αναφερθέν κλειδί" -#: js/messages.php:61 libraries/messages.inc.php:848 +#: js/messages.php:61 libraries/messages.inc.php:844 msgid "Select Foreign Key" msgstr "Επιλέξτε Μη Διακριτό Κλειδί" -#: js/messages.php:62 libraries/messages.inc.php:653 +#: js/messages.php:62 libraries/messages.inc.php:649 msgid "Please select the primary key or a unique key" msgstr "Επιλέξτε το πρωτεύον κλειδί ή ένα μοναδικό κλειδί" -#: js/messages.php:63 libraries/messages.inc.php:142 pmd_general.php:77 +#: js/messages.php:63 libraries/messages.inc.php:138 pmd_general.php:77 #: tbl_relation.php:548 msgid "Choose field to display" msgstr "Επιλέξτε πεδίο για εμφάνιση" @@ -1089,9 +1089,9 @@ msgid "Prev" msgstr "Προηγούμενο" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2332 -#: libraries/common.lib.php:2335 libraries/display_tbl.lib.php:338 -#: libraries/messages.inc.php:543 server_binlog.php:205 server_binlog.php:207 +#: js/messages.php:77 libraries/common.lib.php:2344 +#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: libraries/messages.inc.php:539 server_binlog.php:205 server_binlog.php:207 #: tbl_printview.php:424 tbl_structure.php:802 msgid "Next" msgstr "Επόμενο" @@ -1166,27 +1166,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1543 +#: js/messages.php:97 libraries/common.lib.php:1555 msgid "Jan" msgstr "Ιανουαρίου" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1545 +#: js/messages.php:99 libraries/common.lib.php:1557 msgid "Feb" msgstr "Φεβρουαρίου" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1547 +#: js/messages.php:101 libraries/common.lib.php:1559 msgid "Mar" msgstr "Μαρτίου" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1549 +#: js/messages.php:103 libraries/common.lib.php:1561 msgid "Apr" msgstr "Απριλίου" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1551 +#: js/messages.php:105 libraries/common.lib.php:1563 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1194,37 +1194,37 @@ msgid "May" msgstr "Μαΐου" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1553 +#: js/messages.php:107 libraries/common.lib.php:1565 msgid "Jun" msgstr "Ιουνίου" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1555 +#: js/messages.php:109 libraries/common.lib.php:1567 msgid "Jul" msgstr "Ιουλίου" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1557 +#: js/messages.php:111 libraries/common.lib.php:1569 msgid "Aug" msgstr "Αυγούστου" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1559 +#: js/messages.php:113 libraries/common.lib.php:1571 msgid "Sep" msgstr "Σεπτεμβρίου" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1561 +#: js/messages.php:115 libraries/common.lib.php:1573 msgid "Oct" msgstr "Οκτωβρίου" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1563 +#: js/messages.php:117 libraries/common.lib.php:1575 msgid "Nov" msgstr "Νοεμβρίου" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1565 +#: js/messages.php:119 libraries/common.lib.php:1577 msgid "Dec" msgstr "Δεκεμβρίου" @@ -1265,37 +1265,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1568 +#: js/messages.php:132 libraries/common.lib.php:1580 msgid "Sun" msgstr "Κυριακή" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1570 +#: js/messages.php:134 libraries/common.lib.php:1582 msgid "Mon" msgstr "Δευτέρα" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1572 +#: js/messages.php:136 libraries/common.lib.php:1584 msgid "Tue" msgstr "Τρίτη" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1574 +#: js/messages.php:138 libraries/common.lib.php:1586 msgid "Wed" msgstr "Τετάρτη" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1576 +#: js/messages.php:140 libraries/common.lib.php:1588 msgid "Thu" msgstr "Πέμπτη" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1578 +#: js/messages.php:142 libraries/common.lib.php:1590 msgid "Fri" msgstr "Παρασκευή" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1580 +#: js/messages.php:144 libraries/common.lib.php:1592 msgid "Sat" msgstr "Σάββατο" @@ -1371,23 +1371,23 @@ msgstr "σε χρήση" msgid "Second" msgstr "ανά δευτερόλεπτο" -#: libraries/Config.class.php:1015 libraries/messages.inc.php:338 +#: libraries/Config.class.php:1015 libraries/messages.inc.php:334 msgid "Font size" msgstr "Μέγεθος γραμματοσειράς" #: libraries/File.class.php:344 libraries/File.class.php:432 #: libraries/File.class.php:569 libraries/File.class.php:708 -#: libraries/messages.inc.php:1201 +#: libraries/messages.inc.php:1197 msgid "Unknown error in file upload." msgstr "Άγνωστο σφάλμα στην αποστολή αρχείου." -#: libraries/File.class.php:414 libraries/messages.inc.php:1198 +#: libraries/File.class.php:414 libraries/messages.inc.php:1194 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "Το προς αποστολή αρχείο υπερβαίνει την οδηγία upload_max_filesize στο php." "ini." -#: libraries/File.class.php:417 libraries/messages.inc.php:1197 +#: libraries/File.class.php:417 libraries/messages.inc.php:1193 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -1395,56 +1395,56 @@ msgstr "" "Το προς αποστολή αρχείο υπερβαίνει την οδηγία MAX_FILE_SIZE όπως ορίστηκε " "στη φόρμα HTML." -#: libraries/File.class.php:420 libraries/messages.inc.php:1200 +#: libraries/File.class.php:420 libraries/messages.inc.php:1196 msgid "The uploaded file was only partially uploaded." msgstr "Το απεσταλμένο αρχείο εστάλει μόνο μερικώς." -#: libraries/File.class.php:423 libraries/messages.inc.php:1199 +#: libraries/File.class.php:423 libraries/messages.inc.php:1195 msgid "Missing a temporary folder." msgstr "Χάθηκε ένας προσωρινός φάκελος." -#: libraries/File.class.php:426 libraries/messages.inc.php:1195 +#: libraries/File.class.php:426 libraries/messages.inc.php:1191 msgid "Failed to write file to disk." msgstr "Αποτυχία εγγραφής του αρχείου στο δίσκο." -#: libraries/File.class.php:429 libraries/messages.inc.php:1196 +#: libraries/File.class.php:429 libraries/messages.inc.php:1192 msgid "File upload stopped by extension." msgstr "Η αποστολή του αρχείου σταμάτησε λόγω επέκτασης." -#: libraries/File.class.php:908 libraries/messages.inc.php:319 +#: libraries/File.class.php:908 libraries/messages.inc.php:315 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "Σφάλμα μετακίνησης του αρχείου αποστολής. Δείτε τις ΣΑΕ 1.11" -#: libraries/Index.class.php:428 libraries/messages.inc.php:554 +#: libraries/Index.class.php:428 libraries/messages.inc.php:550 #: tbl_relation.php:529 msgid "No index defined!" msgstr "Δεν ορίστηκε ευρετήριο!" -#: libraries/Index.class.php:433 libraries/messages.inc.php:411 +#: libraries/Index.class.php:433 libraries/messages.inc.php:407 #: server_databases.php:132 tbl_tracking.php:316 msgid "Indexes" msgstr "Ευρετήρια" -#: libraries/Index.class.php:444 libraries/messages.inc.php:1186 +#: libraries/Index.class.php:444 libraries/messages.inc.php:1182 #: 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:475 tbl_tracking.php:322 msgid "Unique" msgstr "Μοναδικό" -#: libraries/Index.class.php:445 libraries/messages.inc.php:596 +#: libraries/Index.class.php:445 libraries/messages.inc.php:592 #: tbl_tracking.php:323 msgid "Packed" msgstr "Συμπιεσμένο" -#: libraries/Index.class.php:447 libraries/messages.inc.php:131 +#: libraries/Index.class.php:447 libraries/messages.inc.php:127 #: tbl_tracking.php:325 msgid "Cardinality" msgstr "Μοναδικότητα" -#: libraries/Index.class.php:450 libraries/messages.inc.php:162 +#: libraries/Index.class.php:450 libraries/messages.inc.php:158 #: tbl_tracking.php:279 tbl_tracking.php:328 msgid "Comment" msgstr "Σχόλιο" @@ -1452,22 +1452,22 @@ msgstr "Σχόλιο" #: libraries/Index.class.php:466 libraries/common.lib.php:616 #: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:280 pdf_pages.php:280 +#: libraries/messages.inc.php:276 pdf_pages.php:280 #: setup/frames/index.inc.php:124 setup/lib/messages.inc.php:352 #: tbl_row_action.php:69 msgid "Edit" msgstr "Επεξεργασία" -#: libraries/Index.class.php:472 libraries/messages.inc.php:666 +#: libraries/Index.class.php:472 libraries/messages.inc.php:662 msgid "The primary key has been dropped" msgstr "Το πρωτεύον κλειδί διεγράφη" -#: libraries/Index.class.php:476 libraries/messages.inc.php:413 +#: libraries/Index.class.php:476 libraries/messages.inc.php:409 #, php-format msgid "Index %s has been dropped" msgstr "Το ευρετήριο %s διεγράφη" -#: libraries/Index.class.php:576 libraries/messages.inc.php:412 +#: libraries/Index.class.php:576 libraries/messages.inc.php:408 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -1476,7 +1476,7 @@ msgstr "" "Τα ευρετήρια %1$s και %2$s φαίνεται να είναι ίσα και ένα από αυτά μπορεί να " "απομακρυνθεί." -#: libraries/List_Database.class.php:431 libraries/messages.inc.php:218 +#: libraries/List_Database.class.php:431 libraries/messages.inc.php:214 #: libraries/server_links.inc.php:41 server_databases.php:88 #: server_privileges.php:1621 setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" @@ -1506,87 +1506,87 @@ msgid_plural "%1$d rows inserted." msgstr[0] "Εισήχθηκε(αν) %1$d γραμμή(ές)." msgstr[1] "Εισήχθηκε(αν) %1$d γραμμή(ές)." -#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:549 +#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:545 msgid "" "There is no detailed status information available for this storage engine." msgstr "" "Δεν υπάρχουν λεπτομερείς πληροφορίες κατάστασης για αυτή τη μηχανή " "αποθήκευσης." -#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:291 +#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:287 #, php-format msgid "%s is available on this MySQL server." msgstr "Η %s είναι διαθέσιμη σε αυτό το διακομιστή MySQL." -#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:292 +#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:288 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "Η %s έχει απενεργοποιήθεί σε αυτό το διακομιστή MySQL." -#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:294 +#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:290 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "Αύτος ο διακομιστής MySQL δεν υποστηρίζει τη μηχανή αποθήκευσης %s." -#: libraries/Table.class.php:1019 libraries/messages.inc.php:443 +#: libraries/Table.class.php:1019 libraries/messages.inc.php:439 msgid "Invalid database" msgstr "Μη έγκυρη βάση δεδομένων" -#: libraries/Table.class.php:1033 libraries/messages.inc.php:450 +#: libraries/Table.class.php:1033 libraries/messages.inc.php:446 #: tbl_get_field.php:26 msgid "Invalid table name" msgstr "Μη έγκυρο όνομα πίνακα" -#: libraries/Table.class.php:1048 libraries/messages.inc.php:301 +#: libraries/Table.class.php:1048 libraries/messages.inc.php:297 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "Σφάλμα μετονομασίας του πίνακα %1$s σε %2$s" -#: libraries/Table.class.php:1132 libraries/messages.inc.php:754 +#: libraries/Table.class.php:1132 libraries/messages.inc.php:750 #, php-format msgid "Table %s has been renamed to %s" msgstr "Ο Πίνακας %s μετονομάσθηκε σε %s" -#: libraries/Theme.class.php:162 libraries/messages.inc.php:1099 +#: libraries/Theme.class.php:162 libraries/messages.inc.php:1095 #, php-format msgid "No valid image path for theme %s found!" msgstr "Βρέθηκε μη έγκυρη διαδρομή εικόνας για το θέμα %s!" -#: libraries/Theme.class.php:384 libraries/messages.inc.php:1097 +#: libraries/Theme.class.php:384 libraries/messages.inc.php:1093 msgid "No preview available." msgstr "Προεπισκόπηση μη διαθέσιμη." -#: libraries/Theme.class.php:387 libraries/messages.inc.php:1089 +#: libraries/Theme.class.php:387 libraries/messages.inc.php:1085 msgid "take it" msgstr "πάρτε το" -#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1096 +#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1092 #, php-format msgid "Default theme %s not found!" msgstr "Το προεπιλεγμένο θέμα %s δεν βρέθηκε!" -#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1098 +#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1094 #, php-format msgid "Theme %s not found!" msgstr "Το θέμα %s δεν βρέθηκε!" -#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1100 +#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1096 #, php-format msgid "Theme path not found for theme %s!" msgstr "Η διαδρομή θέματος δεν βρέθηκε για το θέμα %s!" -#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1101 +#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1097 #: test/theme.php:161 themes.php:21 themes.php:41 msgid "Theme / Style" msgstr "Θέμα / Στυλ" -#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:172 +#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:168 msgid "Cannot connect: invalid settings." msgstr "Αδύνατη η σύνδεση: άκυρες ρυθμίσεις." #: libraries/auth/config.auth.lib.php:92 #: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65 -#: libraries/messages.inc.php:1238 test/theme.php:152 +#: libraries/messages.inc.php:1234 test/theme.php:152 #, php-format msgid "Welcome to %s" msgstr "Καλωσήρθατε στο %s" @@ -1613,47 +1613,47 @@ msgstr "" "και να βεβαιωθείτε ότι αντιστοιχούν σε αυτά που σας έχει δώσει ο " "διαχειρηστής του διακομιστή MySQL." -#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:488 +#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:484 msgid "Log in" msgstr "Σύνδεση" #: libraries/auth/cookie.auth.lib.php:246 -#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:659 +#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:655 #: libraries/navigation_header.inc.php:93 #: libraries/navigation_header.inc.php:95 msgid "phpMyAdmin documentation" msgstr "Τεκμηρίωση phpMyAdmin" #: libraries/auth/cookie.auth.lib.php:258 -#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:492 +#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:488 msgid "You can enter hostname/IP address and port separated by space." msgstr "" "Μπορείτε να εισάγετε όνομα διακομιστή/διεύθυνση ΙΡ και θύρα χωρισμένα με " "κενό." -#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:493 +#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:489 msgid "Server:" msgstr "Διακομιστής" -#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:494 +#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:490 msgid "Username:" msgstr "Όνομα χρήστη:" -#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:491 +#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:487 msgid "Password:" msgstr "Κωδικός πρόσβασης:" -#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:854 +#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:850 msgid "Server Choice" msgstr "Επιλογή Διακομιστή" #: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 -#: libraries/messages.inc.php:177 +#: libraries/messages.inc.php:173 msgid "Cookies must be enabled past this point." msgstr "Από αυτό το σημείο πρέπει να έχετε ενεργοποιημένα cookies." #: libraries/auth/cookie.auth.lib.php:671 -#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:489 +#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:485 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" @@ -1661,7 +1661,7 @@ msgstr "" "μεταβλητή AllowNoPassword)" #: libraries/auth/cookie.auth.lib.php:675 -#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:544 +#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:540 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" @@ -1669,53 +1669,53 @@ msgstr "" #: libraries/auth/cookie.auth.lib.php:685 #: libraries/auth/cookie.auth.lib.php:687 -#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:126 +#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:122 msgid "Cannot log in to the MySQL server" msgstr "Δεν ήταν δυνατή η σύνδεση με τον διακομιστή MySQL" -#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1245 +#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1241 msgid "Wrong username/password. Access denied." msgstr "Λανθασμένο όνομα χρήστη/κωδικός πρόσβασης. Άρνηση πρόσβασης." #: libraries/auth/swekey/swekey.auth.lib.php:118 -#: libraries/messages.inc.php:1057 +#: libraries/messages.inc.php:1053 #, php-format msgid "File %s does not contain any key id" msgstr "Το αρχείο %s δεν περιέχει καμιά ταυτότητα κλειδιού" #: libraries/auth/swekey/swekey.auth.lib.php:157 #: libraries/auth/swekey/swekey.auth.lib.php:180 -#: libraries/messages.inc.php:1056 +#: libraries/messages.inc.php:1052 msgid "Hardware authentication failed" msgstr "Η επικύρωση του υλικού απέτυχε" #: libraries/auth/swekey/swekey.auth.lib.php:166 -#: libraries/messages.inc.php:1058 +#: libraries/messages.inc.php:1054 msgid "No valid authentication key plugged" msgstr "Δεν τοποθετήθηκε κανένα έγκυρο κλειδί επικύρωσης" #: libraries/auth/swekey/swekey.auth.lib.php:202 -#: libraries/messages.inc.php:1055 +#: libraries/messages.inc.php:1051 msgid "Authenticating..." msgstr "Επικύρωση..." -#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1230 +#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1226 msgid "View image" msgstr "Προβολή εικόνας" -#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:652 +#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:648 msgid "Play audio" msgstr "Αναπαραγωγή ήχου" -#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1232 +#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1228 msgid "View video" msgstr "Προβολή βίντεο" -#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:269 +#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:265 msgid "Download file" msgstr "Λήψη αρχείου" -#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:128 +#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:124 msgid "" "Couldn't load the iconv or recode extension needed for charset conversion. " "Either configure PHP to enable these extensions or disable charset " @@ -1728,7 +1728,7 @@ msgstr "" #: libraries/charset_conversion.lib.php:79 #: libraries/charset_conversion.lib.php:90 -#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:130 +#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:126 msgid "" "Couldn't use the iconv, libiconv, or recode_string functions, although the " "necessary extensions appear to be loaded. Check your PHP configuration." @@ -1737,7 +1737,7 @@ msgstr "" "ρουτίνας recode_string, ενώ η επέκταση έχει φορτωθεί. Ελέξτε τις ρυθμίσεις " "της php." -#: libraries/common.inc.php:583 libraries/messages.inc.php:170 +#: libraries/common.inc.php:583 libraries/messages.inc.php:166 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!" @@ -1774,7 +1774,7 @@ msgstr "" msgid "Invalid server index: %s" msgstr "Μη έγκυρο ευρετήριο διακομιστή: «%s»" -#: libraries/common.inc.php:636 libraries/messages.inc.php:448 +#: libraries/common.inc.php:636 libraries/messages.inc.php:444 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" @@ -1782,16 +1782,16 @@ msgstr "" "σας." #: libraries/common.inc.php:645 libraries/header.inc.php:96 -#: libraries/messages.inc.php:856 libraries/select_server.lib.php:41 +#: libraries/messages.inc.php:852 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/messages.inc.php:437 +#: libraries/common.inc.php:823 libraries/messages.inc.php:433 msgid "Invalid authentication method set in configuration:" msgstr "Ορίστηκε εσφαλμένη μέθοδος πιστοποίησης στη ρύθμιση:" -#: libraries/common.lib.php:147 libraries/messages.inc.php:499 +#: libraries/common.lib.php:147 libraries/messages.inc.php:495 #, php-format msgid "Max: %s%s" msgstr "Μέγιστο μέγεθος: %s%s" @@ -1811,7 +1811,7 @@ msgstr "en" #: libraries/common.lib.php:428 libraries/common.lib.php:430 #: libraries/common.lib.php:432 libraries/common.lib.php:448 #: libraries/common.lib.php:450 libraries/dbg/setup.php:25 -#: libraries/display_export.lib.php:164 libraries/messages.inc.php:267 +#: libraries/display_export.lib.php:164 libraries/messages.inc.php:263 #: libraries/relation.lib.php:97 libraries/sql_query_form.lib.php:451 #: libraries/sql_query_form.lib.php:454 main.php:229 pdf_pages.php:37 #: pdf_pages.php:43 pdf_pages.php:49 pdf_pages.php:54 @@ -1821,55 +1821,55 @@ msgstr "Τεκμηρίωση" #: libraries/common.lib.php:581 libraries/core.lib.php:234 #: libraries/core.lib.php:263 libraries/import.lib.php:134 -#: libraries/messages.inc.php:297 pdf_schema.php:32 pdf_schema.php:232 +#: libraries/messages.inc.php:293 pdf_schema.php:32 pdf_schema.php:232 #: tbl_change.php:1027 tbl_operations.php:213 tbl_relation.php:290 #: view_operations.php:62 msgid "Error" msgstr "λάθος" #: libraries/common.lib.php:595 libraries/header_printview.inc.php:61 -#: libraries/messages.inc.php:1023 server_processlist.php:60 +#: libraries/messages.inc.php:1019 server_processlist.php:60 #: server_status.php:247 msgid "SQL query" msgstr "Εντολή SQL" -#: libraries/common.lib.php:634 libraries/messages.inc.php:538 +#: libraries/common.lib.php:634 libraries/messages.inc.php:534 msgid "MySQL said: " msgstr "Η MySQL επέστρεψε το μύνημα: " -#: libraries/common.lib.php:667 libraries/messages.inc.php:76 +#: libraries/common.lib.php:667 libraries/messages.inc.php:72 #: pdf_schema.php:241 user_password.php:115 msgid "Back" msgstr "Επιστροφή" -#: libraries/common.lib.php:1177 libraries/messages.inc.php:309 +#: libraries/common.lib.php:1177 libraries/messages.inc.php:305 #: setup/lib/messages.inc.php:353 msgid "Explain SQL" msgstr "Ανάλυση SQL" -#: libraries/common.lib.php:1180 libraries/messages.inc.php:551 +#: libraries/common.lib.php:1180 libraries/messages.inc.php:547 msgid "Skip Explain SQL" msgstr "Χωρίς ανάλυση SQL" -#: libraries/common.lib.php:1212 libraries/messages.inc.php:563 +#: libraries/common.lib.php:1212 libraries/messages.inc.php:559 msgid "Without PHP Code" msgstr "χωρίς κώδικα PHP" -#: libraries/common.lib.php:1215 libraries/messages.inc.php:649 +#: libraries/common.lib.php:1215 libraries/messages.inc.php:645 #: setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "Δημιουργία κώδικα PHP" -#: libraries/common.lib.php:1233 libraries/messages.inc.php:737 +#: libraries/common.lib.php:1233 libraries/messages.inc.php:733 #: server_status.php:341 setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "Ανανέωση" -#: libraries/common.lib.php:1242 libraries/messages.inc.php:575 +#: libraries/common.lib.php:1242 libraries/messages.inc.php:571 msgid "Skip Validate SQL" msgstr "Παράβλεψη επικύρωσης SQL" -#: libraries/common.lib.php:1245 libraries/messages.inc.php:1220 +#: libraries/common.lib.php:1245 libraries/messages.inc.php:1216 #: setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "Επικύρωση SQL" @@ -1885,11 +1885,11 @@ msgid "Inline" msgstr "Μηχανές" #: libraries/common.lib.php:1332 libraries/common.lib.php:1347 -#: libraries/messages.inc.php:713 +#: libraries/messages.inc.php:709 msgid "Profiling" msgstr "Δημιουργία προφίλ" -#: libraries/common.lib.php:1351 libraries/messages.inc.php:1108 +#: libraries/common.lib.php:1351 libraries/messages.inc.php:1104 #: libraries/tbl_triggers.lib.php:28 server_processlist.php:58 msgid "Time" msgstr "Χρόνος" @@ -1923,46 +1923,56 @@ msgstr "PB" msgid "EiB" msgstr "EB" +#. l10n: Thousands separator +#: libraries/common.lib.php:1417 +msgid "," +msgstr "." + +#. l10n: Decimal separator +#: libraries/common.lib.php:1419 +msgid "." +msgstr "," + #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1584 +#: libraries/common.lib.php:1596 #: libraries/transformations/text_plain__dateformat.inc.php:28 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y στις %H:%M:%S" -#: libraries/common.lib.php:1886 +#: libraries/common.lib.php:1898 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s μέρες, %s ώρες, %s λεπτά και %s δευτερόλεπτα" -#: libraries/common.lib.php:2301 libraries/common.lib.php:2304 -#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:664 +#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:660 #: server_status.php:608 msgid "Begin" msgstr "Κορυφή" -#: libraries/common.lib.php:2302 libraries/common.lib.php:2305 -#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:665 +#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:661 #: server_binlog.php:168 server_binlog.php:170 msgid "Previous" msgstr "Προηγούμενο" -#: libraries/common.lib.php:2333 libraries/common.lib.php:2336 -#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:289 +#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:285 msgid "End" msgstr "Τέλος" -#: libraries/common.lib.php:2409 libraries/messages.inc.php:455 +#: libraries/common.lib.php:2421 libraries/messages.inc.php:451 #, php-format msgid "Jump to database "%s"." msgstr "Μεταπήδηση στην βάση «%s»." -#: libraries/common.lib.php:2429 libraries/messages.inc.php:461 +#: libraries/common.lib.php:2441 libraries/messages.inc.php:457 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Η λειτουργία %s έχει επηρρεαστεί από ένα γνωστό σφάλμα. Δείτε %s" #: libraries/core.lib.php:286 libraries/dbg/setup.php:22 -#: libraries/messages.inc.php:127 +#: libraries/messages.inc.php:123 #, php-format msgid "" "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " @@ -1972,115 +1982,115 @@ msgstr "" "[em]%1$s[/em][/a], παρακαλώ ελέγξτε τις ρυθμίσεις της PHP" #: libraries/db_events.inc.php:20 libraries/db_events.inc.php:22 -#: libraries/export/sql.php:415 libraries/messages.inc.php:306 +#: libraries/export/sql.php:415 libraries/messages.inc.php:302 msgid "Events" msgstr "Συμβάντα" #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 -#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:541 +#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:537 #: libraries/tbl_triggers.lib.php:27 setup/frames/index.inc.php:112 msgid "Name" msgstr "Όνομα" -#: libraries/db_links.inc.php:45 libraries/messages.inc.php:216 +#: libraries/db_links.inc.php:45 libraries/messages.inc.php:212 #, php-format msgid "Database %s has been dropped." msgstr "Η βάση δεδομένων %s διεγράφη." #: libraries/db_links.inc.php:57 libraries/db_links.inc.php:58 -#: libraries/db_links.inc.php:59 libraries/messages.inc.php:234 +#: libraries/db_links.inc.php:59 libraries/messages.inc.php:230 msgid "Database seems to be empty!" msgstr "Η βάση δεδομένων φαίνεται να είναι άδεια!" -#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1025 +#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1021 #: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60 #: querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1152 +#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1148 #: libraries/tbl_links.inc.php:69 msgid "Tracking" msgstr "Παρακολούθηση" -#: libraries/db_links.inc.php:86 libraries/messages.inc.php:719 +#: libraries/db_links.inc.php:86 libraries/messages.inc.php:715 msgid "Query" msgstr "Επερώτημα κατά παράδειγμα" -#: libraries/db_links.inc.php:91 libraries/messages.inc.php:253 +#: libraries/db_links.inc.php:91 libraries/messages.inc.php:249 msgid "Designer" msgstr "Σχεδιαστής" -#: libraries/db_links.inc.php:98 libraries/messages.inc.php:397 +#: libraries/db_links.inc.php:98 libraries/messages.inc.php:393 #: libraries/server_links.inc.php:88 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:104 libraries/messages.inc.php:587 +#: libraries/db_links.inc.php:104 libraries/messages.inc.php:583 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" msgstr "Λειτουργίες" -#: libraries/db_links.inc.php:111 libraries/messages.inc.php:709 +#: libraries/db_links.inc.php:111 libraries/messages.inc.php:705 #: libraries/server_links.inc.php:66 server_privileges.php:72 #: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117 msgid "Privileges" msgstr "Δικαιώματα" #: libraries/db_routines.inc.php:30 libraries/db_routines.inc.php:32 -#: libraries/messages.inc.php:812 +#: libraries/messages.inc.php:808 msgid "Routines" msgstr "Εργασίες" -#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:811 +#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:807 msgid "Return type" msgstr "Τύπος επιστροφής" #: libraries/db_structure.lib.php:57 libraries/display_tbl.lib.php:1848 -#: libraries/messages.inc.php:65 +#: libraries/messages.inc.php:61 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "Ίσως είναι κατά προσέγγιση. Δείτε τις ΣΑΕ 3.11" -#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:593 +#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:589 #: server_databases.php:142 tbl_printview.php:336 tbl_structure.php:683 msgid "Overhead" msgstr "Επιβάρυνση" #: libraries/dbi/mysql.dbi.lib.php:112 libraries/dbi/mysqli.dbi.lib.php:124 -#: libraries/messages.inc.php:176 +#: libraries/messages.inc.php:172 msgid "Connection for controluser as defined in your configuration failed." msgstr "Ανεπιτυχής σύνδεση του χρήστη ελέγχου όπως ορίστηκε στη ρύθμισή σας." #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 -#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:855 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:851 msgid "The server is not responding" msgstr "Ο διακομιστής δεν αποκρίνεται" #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:1010 +#: libraries/messages.inc.php:1006 msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "(ή η τοπική υποδοχή του διακομιστή MySQL δεν έχει ρυθμιστεί σωστά)" -#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:255 +#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:251 #: tbl_structure.php:609 msgid "Details..." msgstr "Λεπτομέρειες..." -#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:143 +#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:139 #: main.php:91 user_password.php:111 user_password.php:129 msgid "Change password" msgstr "Αλλαγή κωδικού πρόσβασης" -#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:561 +#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:557 #: libraries/replication_gui.lib.php:341 server_privileges.php:768 msgid "No Password" msgstr "Χωρίς Κωδικό Πρόσβασης" -#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:610 +#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:606 #: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60 #: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335 #: libraries/replication_gui.lib.php:345 server_privileges.php:757 @@ -2089,13 +2099,13 @@ msgstr "Χωρίς Κωδικό Πρόσβασης" msgid "Password" msgstr "Κωδικός Πρόσβασης" -#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:806 +#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:802 #: libraries/replication_gui.lib.php:349 libraries/replication_gui.lib.php:352 #: server_privileges.php:776 server_privileges.php:779 msgid "Re-type" msgstr "Επαναεισαγωγή" -#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:608 +#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:604 msgid "Password Hashing" msgstr "Μείγμα κωδικού πρόσβασης" @@ -2105,89 +2115,89 @@ msgstr "Μείγμα κωδικού πρόσβασης" msgid "MySQL 4.0 compatible" msgstr "Συμβατό με MySQL 4.0" -#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:353 +#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:349 #: libraries/replication_gui.lib.php:356 server_privileges.php:783 msgid "Generate Password" msgstr "Παραγωγή Κωδικού Πρόσβασης" -#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:352 +#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:348 #: libraries/replication_gui.lib.php:359 server_privileges.php:786 msgid "Generate" msgstr "Παραγωγή" #: libraries/display_create_database.lib.php:22 -#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:189 +#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:185 msgid "Create new database" msgstr "Δημιουργία νέας βάσης" -#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:185 +#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:181 msgid "Create" msgstr "Δημιουργία" -#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:564 +#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:560 #: server_privileges.php:74 server_privileges.php:1388 #: server_replication.php:35 msgid "No Privileges" msgstr "Χωρίς Δικαιώματα" -#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:445 +#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:441 msgid "Table must have at least one field." msgstr "Ο πίνακας πρέπει να έχει τουλάχιστον ένα πεδίο." -#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:190 +#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:186 #, php-format msgid "Create table on database %s" msgstr "Δημιουργία νέου πίνακα στη βάση %s" -#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:577 +#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:573 msgid "Number of fields" msgstr "Αριθμός πεδίων" -#: libraries/display_export.lib.php:42 libraries/messages.inc.php:124 +#: libraries/display_export.lib.php:42 libraries/messages.inc.php:120 msgid "Could not load export plugins, please check your installation!" msgstr "Αδύνατη η φόρτωση προσθέτων εξαγωγής. Ελέξτε την εγκατάστασή σας!" -#: libraries/display_export.lib.php:107 libraries/messages.inc.php:277 +#: libraries/display_export.lib.php:107 libraries/messages.inc.php:273 #, php-format msgid "Dump %s row(s) starting at record # %s" msgstr "Εμφάνιση %s εγγραφών ξεκινώντας από την εγγραφή %s." -#: libraries/display_export.lib.php:115 libraries/messages.inc.php:274 +#: libraries/display_export.lib.php:115 libraries/messages.inc.php:270 msgid "Dump all rows" msgstr "Αχρήστευση όλων των γραμμών" -#: libraries/display_export.lib.php:125 libraries/messages.inc.php:852 +#: libraries/display_export.lib.php:125 libraries/messages.inc.php:848 #: setup/lib/messages.inc.php:82 msgid "Save as file" msgstr "Αποστολή" -#: libraries/display_export.lib.php:134 libraries/messages.inc.php:828 +#: libraries/display_export.lib.php:134 libraries/messages.inc.php:824 #, php-format msgid "Save on server in %s directory" msgstr "Αποθήκευση στον διακομιστή στον φάκελο %s" -#: libraries/display_export.lib.php:142 libraries/messages.inc.php:594 +#: libraries/display_export.lib.php:142 libraries/messages.inc.php:590 #: setup/lib/messages.inc.php:90 msgid "Overwrite existing file(s)" msgstr "Αντικατάσταση υπαρχόντων αρχείων" -#: libraries/display_export.lib.php:148 libraries/messages.inc.php:330 +#: libraries/display_export.lib.php:148 libraries/messages.inc.php:326 msgid "File name template" msgstr "Μορφή ονόματος αρχείου" -#: libraries/display_export.lib.php:152 libraries/messages.inc.php:327 +#: libraries/display_export.lib.php:152 libraries/messages.inc.php:323 msgid "server name" msgstr "όνομα διακομιστή" -#: libraries/display_export.lib.php:155 libraries/messages.inc.php:326 +#: libraries/display_export.lib.php:155 libraries/messages.inc.php:322 msgid "database name" msgstr "όνομα βάσης δεδομένων" -#: libraries/display_export.lib.php:158 libraries/messages.inc.php:328 +#: libraries/display_export.lib.php:158 libraries/messages.inc.php:324 msgid "table name" msgstr "όνομα πίνακα" -#: libraries/display_export.lib.php:162 libraries/messages.inc.php:329 +#: libraries/display_export.lib.php:162 libraries/messages.inc.php:325 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2199,24 +2209,24 @@ msgstr "" "και οι ακόλουθες μετατροπές: %3$s. Το υπόλοιπο κείμενο θα παραμείνει όπως " "είναι." -#: libraries/display_export.lib.php:202 libraries/messages.inc.php:331 +#: libraries/display_export.lib.php:202 libraries/messages.inc.php:327 msgid "remember template" msgstr "αποθήκευση μορφής" #: libraries/display_export.lib.php:210 libraries/display_import.lib.php:178 -#: libraries/display_import.lib.php:191 libraries/messages.inc.php:145 +#: libraries/display_import.lib.php:191 libraries/messages.inc.php:141 #: libraries/sql_query_form.lib.php:549 msgid "Character set of the file:" msgstr "Σύνολο χαρακτήρων του αρχείου:" -#: libraries/display_export.lib.php:235 libraries/messages.inc.php:166 +#: libraries/display_export.lib.php:235 libraries/messages.inc.php:162 #: setup/lib/messages.inc.php:84 msgid "Compression" 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/messages.inc.php:558 +#: libraries/export/sql.php:868 libraries/messages.inc.php:554 #: libraries/tbl_properties.inc.php:575 server_privileges.php:1836 #: server_processlist.php:75 msgid "None" @@ -2240,11 +2250,11 @@ msgstr "συμπίεση «gzip»" msgid "bzipped" msgstr "συμπίεση «bzip»" -#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1018 +#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1014 msgid "SQL compatibility mode" msgstr "Κατάσταση συμβατότητας SQL" -#: libraries/display_import.lib.php:67 libraries/messages.inc.php:398 +#: libraries/display_import.lib.php:67 libraries/messages.inc.php:394 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " @@ -2254,11 +2264,11 @@ msgstr "" "αυτό είναι ένα γνωστό σφάλμα φυλλομετρητή (Safari, Google Chrome, Arora " "κλπ.)." -#: libraries/display_import.lib.php:77 libraries/messages.inc.php:406 +#: libraries/display_import.lib.php:77 libraries/messages.inc.php:402 msgid "The file is being processed, please be patient." msgstr "Η εισαγωγή του αρχείου είναι σε εξέλιξη, υπομονή." -#: libraries/display_import.lib.php:99 libraries/messages.inc.php:408 +#: libraries/display_import.lib.php:99 libraries/messages.inc.php:404 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." @@ -2266,40 +2276,40 @@ msgstr "" "Υπομονή, το αρχείο αποστέλεται. Λεπτομέρειες για την αποστολή δεν είναι " "διαθέσιμες." -#: libraries/display_import.lib.php:126 libraries/messages.inc.php:333 +#: libraries/display_import.lib.php:126 libraries/messages.inc.php:329 msgid "File to import" msgstr "Αρχείο για εισαγωγή" -#: libraries/display_import.lib.php:137 libraries/messages.inc.php:486 +#: libraries/display_import.lib.php:137 libraries/messages.inc.php:482 #: libraries/sql_query_form.lib.php:524 msgid "Location of the text file" msgstr "Τοποθεσία του αρχείου κειμένου" -#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1203 +#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1199 msgid "File uploads are not allowed on this server." msgstr "Οι αποστολές αρχείων δεν επιτρέπονται σε αυτό τον διακομιστή." -#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1235 +#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1231 #: libraries/sql_query_form.lib.php:533 tbl_change.php:1028 msgid "The directory you set for upload work cannot be reached" msgstr "" "Ο υποκατάλογος που ορίσατε για την αποθήκευση αρχείων δεν μπόρεσε να βρεθεί" -#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1236 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1232 #: libraries/sql_query_form.lib.php:536 tbl_change.php:1031 msgid "web server upload directory" msgstr "Υποκατάλογος αποθήκευσης αρχείων διακομιστή" -#: libraries/display_import.lib.php:212 libraries/messages.inc.php:167 +#: libraries/display_import.lib.php:212 libraries/messages.inc.php:163 #, php-format msgid "Imported file compression will be automatically detected from: %s" msgstr "Η συμπίεση του εισαχθέντος αρχείου θα αναγνωριστεί αυτόματα από: %s" -#: libraries/display_import.lib.php:219 libraries/messages.inc.php:600 +#: libraries/display_import.lib.php:219 libraries/messages.inc.php:596 msgid "Partial import" msgstr "Μερική εισαγωγή" -#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1105 +#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1101 #, php-format msgid "" "Previous import timed out, after resubmitting will continue from position %d." @@ -2307,7 +2317,7 @@ msgstr "" "Η προηγούμενη εισαγωγή εξάντλησε το χρονικό όριο, μετά την επανυποβολή θα " "συνεχίσει από τη θέση %d." -#: libraries/display_import.lib.php:232 libraries/messages.inc.php:51 +#: libraries/display_import.lib.php:232 libraries/messages.inc.php:47 msgid "" "Allow the interruption of an import in case the script detects it is close " "to the PHP timeout limit. This might be good way to import large files, " @@ -2317,178 +2327,178 @@ msgstr "" "εφαρμογή του κώδικα προσεγγίζει το χρονικό όριο. Αυτό μπορεί να είναι καλό " "για εισαγωγή μεγάλων αρχείων, ωστόσο, μπορεί να κόψει τις μεταφορές." -#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1004 +#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1000 #: setup/lib/messages.inc.php:161 msgid "Number of records (queries) to skip from start" msgstr "Αριθμός εγγραφών (ερωτημάτων) που θα παραβλεφθούν από την αρχή" -#: libraries/display_import.lib.php:255 libraries/messages.inc.php:396 +#: libraries/display_import.lib.php:255 libraries/messages.inc.php:392 #: setup/lib/messages.inc.php:160 msgid "Format of imported file" msgstr "Μορφή εισαχθέντος αρχείου" #: libraries/display_select_lang.lib.php:45 -#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:465 +#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:461 #: setup/frames/index.inc.php:70 msgid "Language" msgstr "Γλώσσα" -#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:447 +#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:443 #, php-format msgid "%d is not valid row number." msgstr "Ο αριθμός %d δεν είναι έγκυρος αριθμός γραμμών." -#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:814 +#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:810 msgid "row(s) starting from record #" msgstr "Εγγραφές αρχίζοντας από την εγγραφή" -#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:817 +#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:813 msgid "horizontal" msgstr "οριζόντια" -#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:816 +#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:812 msgid "horizontal (rotated headers)" msgstr "οριζόντια (στραμμένες επικεφαλίδες)" -#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:819 +#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:815 msgid "vertical" msgstr "κάθετη" -#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:818 +#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:814 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "σε %s μορφή με επανάληψη επικεφαλίδων ανά %s κελιά" -#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:495 +#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:491 msgid "This operation could take a long time. Proceed anyway?" msgstr "Αυτή η διαδικασία ίσως κρατήσει αρκετά. Θέλετε να συνεχίσετε;" -#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1012 +#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1008 msgid "Sort by key" msgstr "Ταξινόμηση ανά κλειδί" #: libraries/display_tbl.lib.php:555 libraries/import.lib.php:1082 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:591 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:587 #: tbl_select.php:267 tbl_structure.php:754 msgid "Options" msgstr "Επιλογές" #: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:570 -#: libraries/messages.inc.php:601 +#: libraries/messages.inc.php:597 msgid "Partial Texts" msgstr "Περιληπτικά κείμενα" #: libraries/display_tbl.lib.php:561 libraries/display_tbl.lib.php:574 -#: libraries/messages.inc.php:346 +#: libraries/messages.inc.php:342 msgid "Full Texts" msgstr "Πλήρη κείμενα" -#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:739 +#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:735 msgid "Relational key" msgstr "Κλειδί συσχέτισης" -#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:738 +#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:734 msgid "Relational display field" msgstr "Πεδίο προβολής συσχέτισης" -#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:872 +#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:868 msgid "Show binary contents" msgstr "Εμφάνιση δυαδικών περιεχομένων" -#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:873 +#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:869 msgid "Show BLOB contents" msgstr "Εμφάνιση περιεχομένων BLOB" -#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:871 +#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:867 msgid "Show binary contents as HEX" msgstr "Εμφάνιση δυαδικών περιεχομένων ως Δεκαεξαδικά" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:375 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:371 #: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320 msgid "Hide" msgstr "Απόκρυψη" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:508 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:504 #: libraries/tbl_properties.inc.php:144 transformation_overview.php:47 msgid "Browser transformation" msgstr "Μετατροπή περιηγητή" #: libraries/display_tbl.lib.php:1126 libraries/display_tbl.lib.php:1130 -#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:308 +#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:304 msgid "Execute bookmarked query" msgstr "Εκτέλεση αποθηκευμένου ερωτήματος" #: libraries/display_tbl.lib.php:1145 libraries/display_tbl.lib.php:1157 -#: libraries/messages.inc.php:244 +#: libraries/messages.inc.php:240 msgid "The row has been deleted" msgstr "Η Εγγραφή έχει διαγραφεί" #: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056 -#: libraries/messages.inc.php:460 server_processlist.php:71 +#: libraries/messages.inc.php:456 server_processlist.php:71 #: tbl_row_action.php:64 msgid "Kill" msgstr "Τερματισμός" -#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:849 +#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:845 msgid "in query" msgstr "στην εντολή" -#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:881 +#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:877 msgid "Showing rows" msgstr "Εμφάνιση εγγραφής " -#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1113 +#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1109 msgid "total" msgstr "συνολικά" -#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:727 +#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:723 #: sql.php:524 #, php-format msgid "Query took %01.4f sec" msgstr "Το ερώτημα χρειάστηκε %01.4f δευτερόλεπτα" -#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:135 +#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:131 #: 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:471 msgid "Change" msgstr "Αλλαγή" -#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:724 +#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:720 msgid "Query results operations" msgstr "Λειτουργίες αποτελεσμάτων ερωτήματος" -#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:671 +#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:667 msgid "Print view (with full texts)" msgstr "Προβολή εκτύπωσης (με πλήρη κείμενα)" -#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:482 +#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:478 msgid "Link not found" msgstr "Δεν βρέθηκε η σύνδεση" -#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1224 +#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1220 #: main.php:228 msgid "Version information" msgstr "Πληροφορίες έκδοσης" -#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:423 +#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:419 msgid "Data home directory" msgstr "Αρχικός φάκελος δεδομένων" -#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:424 +#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:420 msgid "The common part of the directory path for all InnoDB data files." msgstr "" "Το κοινό τμήμα της διαδρομής φακέλου για όλα τα αρχεία δεδομένων της InnoDB." -#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:422 +#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:418 msgid "Data files" msgstr "Αρχεία δεδομένων" -#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:418 +#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:414 msgid "Autoextend increment" msgstr "Αυτόματη επέκταση αρίθμηση" -#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:419 +#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:415 msgid "" " The increment size for extending the size of an autoextending tablespace " "when it becomes full." @@ -2496,11 +2506,11 @@ msgstr "" " Το μέγεθος της αύξησης για την επέκταση του μεγέθους ενός αυτόματα " "επεκτεινόμενου χώρου πίνακα όταν πληρωθεί." -#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:420 +#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:416 msgid "Buffer pool size" msgstr "Μέγεθος Buffer pool" -#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:421 +#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:417 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." @@ -2508,87 +2518,87 @@ msgstr "" "Το μέγεθος της μνήμης buffer στην InnoDB χρησιμοποιείται σε λανθάνοντα " "δεδομένα και ευρετήρια των πινάκων της." -#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:112 +#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:108 msgid "Buffer Pool" msgstr "Buffer Pool" -#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:426 +#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:422 #: server_status.php:306 msgid "InnoDB Status" msgstr "Κατάσταση InnoDB" -#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:113 +#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:109 msgid "Buffer Pool Usage" msgstr "Χρήση Buffer Pool" -#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1114 +#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1110 #: server_databases.php:137 server_databases.php:305 server_status.php:414 #: server_status.php:475 server_status.php:496 tbl_printview.php:351 #: tbl_structure.php:697 msgid "Total" msgstr "Σύνολο" -#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:425 +#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:421 msgid "pages" msgstr "σελίδες" -#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:343 +#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:339 msgid "Free pages" msgstr "Ελέυθερες σελίδες" -#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:259 +#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:255 msgid "Dirty pages" msgstr "Προβληματικές σελίδες" -#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:230 +#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:226 msgid "Pages containing data" msgstr "Σελίδες που περιέχουν δεδομένα" -#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:598 +#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:594 msgid "Pages to be flushed" msgstr "Σελίδες για να εκκαθαριστούν" -#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:119 +#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:115 msgid "Busy pages" msgstr "Απασχολημένες σελίδες" -#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:467 +#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:463 msgid "Latched pages" msgstr "Κλειδωμένες σελίδες" -#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:111 +#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:107 msgid "Buffer Pool Activity" msgstr "Δραστηριότητα Buffer Pool" -#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:731 +#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:727 msgid "Read requests" msgstr "Αιτήσεις ανάγνωσεης" -#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1244 +#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1240 msgid "Write requests" msgstr "Αιτήσεις εγγραφής" -#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:115 +#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:111 msgid "Read misses" msgstr "Απώλειες ανάγνωσης" -#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:117 +#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:113 msgid "Write waits" msgstr "Αναμονές εγγραφής" -#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:114 +#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:110 msgid "Read misses in %" msgstr "Απώλειες ανάγνωσης σε ποσοστό" -#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:116 +#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:112 msgid "Write waits in %" msgstr "Αναμονές εγγραφής σε ποσοστό" -#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:522 +#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:518 msgid "Data pointer size" msgstr "Μέγεθος δείκτη δεδομένων" -#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:523 +#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:519 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." @@ -2597,11 +2607,11 @@ msgstr "" "εντολή CREATE TABLE για πίνακες MyISAM όταν δεν έχει οριστεί η επιλογή " "MAX_ROWS." -#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:528 +#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:524 msgid "Automatic recovery mode" msgstr "Αυτόματη κατάσταση επαναφοράς" -#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:529 +#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:525 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." @@ -2609,11 +2619,11 @@ msgstr "" "Η κατάσταση για την αυτόματη επαναφορά για κατεστραμμένους πίνακες MyISAM, " "όπως ορίστηκε στην επιλογή εκκίνησης διακομιστή --myisam-recover." -#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:527 +#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:523 msgid "Maximum size for temporary sort files" msgstr "Μέγιστο μέγεθος αρχείων προσωρινής ταξινόμησης" -#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:526 +#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:522 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " @@ -2623,11 +2633,11 @@ msgstr "" "χρησιμοποιηθεί όταν επαναδημιουργείται ένα ευρετήριο MyISAM (κατά την " "εκτέλεση των εντολών REPAIR TABLE, ALTER TABLE ή LOAD DATA INFILE)." -#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:525 +#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:521 msgid "Maximum size for temporary files on index creation" msgstr "Μέγιστο μέγεθος προσωρινών αρχείων στη δημιουργία ευρετηρίου" -#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:524 +#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:520 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " @@ -2637,11 +2647,11 @@ msgstr "" "MyISAM θα είναι μεγαλύτερο από τη χρήση λανθάνουσας μνήμης κλειδιού από την " "ορισμένη εδώ τιμή, προτιμήστε τη μέθοδο λανθάνουσας μνήμης κλειδιού." -#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:531 +#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:527 msgid "Repair threads" msgstr "Προσπάθειες επιδιόρθωσης" -#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:530 +#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:526 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." @@ -2650,11 +2660,11 @@ msgstr "" "δημιουργούνται παράλληλα (κάθε ευρετήριο ως ξεχωριστή διεργασία) κατά την " "Επιδιόρθωση στη διαδικασία ταξινόμησης." -#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:533 +#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:529 msgid "Sort buffer size" msgstr "Μέγεθος buffer ταξινόμησης" -#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:532 +#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:528 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." @@ -2663,11 +2673,11 @@ msgstr "" "εκτέλεση της εντολής REPAIR TABLE ή όταν δημιουργούνται ευρετήρια με τις " "εντολές CREATE INDEX ή ALTER TABLE." -#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:620 +#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:616 msgid "Index cache size" msgstr "Μέγεθος λανθάνουσας μνήμης ευρετηρίου" -#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:619 +#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:615 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." @@ -2676,11 +2686,11 @@ msgstr "" "μνήμη ευρετηρίου. Προεπιλεγμένη τιμή είναι τα 32MB. Η μνήμη αυτή " "χρησιμοποιείται μόνο για την απομνημόνευση σελίδων ευρετηρίου." -#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:630 +#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:626 msgid "Record cache size" msgstr "Μέγεθος λανθάνουσας μνήμης εγγραφών" -#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:629 +#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:625 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " @@ -2691,11 +2701,11 @@ msgstr "" "έιναι 32MB. Αυτή η μνήμη χρησιμοποιείται για την αποθήκευση αλλαγών στα " "διαχειριζόμενα δεδομένα (.xtd) και στα αρχεία δείκτη γραμμής (.xtr)." -#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:624 +#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:620 msgid "Log cache size" msgstr "Μέγεθος λανθανουσας μνήμης καταγραφής" -#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:623 +#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:619 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." @@ -2703,11 +2713,11 @@ msgstr "" "Το μέγεθος της μνήμης που χρησιμοποιείται στη λανθάνουσα μνήμη καταγραφών. Η " "προεπιλογή είναι 16MB." -#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:628 +#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:624 msgid "Log file threshold" msgstr "Όριο αρχείου καταγραφής" -#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:627 +#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:623 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." @@ -2715,11 +2725,11 @@ msgstr "" "Το μέγεθος της καταγραφής πριν την ανατροπή και τη δημιουργία νέου αρχείου " "καταγραφής. Η προεπιλεγμένη τιμή είναι 16MB." -#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:634 +#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:630 msgid "Transaction buffer size" msgstr "Μέγεθος buffer δραστηριοτήτων" -#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:633 +#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:629 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." @@ -2727,11 +2737,11 @@ msgstr "" "Το μέγεθος του καθολικού buffer καταγραφής (η μηχανή δεσμεύει 2 buffers " "αυτού του μεγέθους). Η προεπιλογή είναι 1MB." -#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:611 +#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:607 msgid "Checkpoint frequency" msgstr "Συχνότητα σημείου ελέγχου" -#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:612 +#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:608 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." @@ -2739,11 +2749,11 @@ msgstr "" "Το πλήθος των εγγεγραμμένων δεδομένων στην καταγραφή πριν το σημείο ελέγχου. " "Η προεπιλεγμένη τιμή είναι 24MB." -#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:615 +#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:611 msgid "Data log threshold" msgstr "Όριο καταγραφής δεδομένων" -#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:616 +#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:612 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -2756,11 +2766,11 @@ msgstr "" "μεταβλητή μπορεί να αυξηθεί για να αυξηθεί το συνολικό πλήθος των δεδομένων " "που μπορούν να αποθηκευτούν στη βάση δεδομένων." -#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:618 +#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:614 msgid "Garbage threshold" msgstr "Όριο σκουπιδιών" -#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:617 +#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:613 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." @@ -2768,11 +2778,11 @@ msgstr "" "Το ποσοστό των σκουπιδιών στο αρχείο καταγραφής δεδομένων πριν συμπιεστεί. " "Λαμβάνει τιμές από 1 έως 99. Προεπιλεγμένη τιμή είναι το 50." -#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:622 +#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:618 msgid "Log buffer size" msgstr "Μέγεθος buffer καταγραφής" -#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:621 +#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:617 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " @@ -2783,27 +2793,27 @@ msgstr "" "buffer ανά διεργασία, αλλά μόνο αν η διεργασία απαιτείται για την εγγραφή " "αρχείου καταγραφής δεδομένων." -#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:613 +#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:609 msgid "Data file grow size" msgstr "Αναπτυγμένο μέγεθος αρχείου δεδομένων" -#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:614 +#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:610 msgid "The grow size of the handle data (.xtd) files." msgstr "Το αναπτυγμένο μέγεθος των αρχείων διαχειρισμένων δεδομένων (.xtd)." -#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:632 +#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:628 msgid "Row file grow size" msgstr "Αναπτυγμένο μέγεθος αρχείου γραμμής" -#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:631 +#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:627 msgid "The grow size of the row pointer (.xtr) files." msgstr "Το αναπτυγμένο μεγεθος των αρχείων δείκτη γραμμής (.xtr)." -#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:626 +#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:622 msgid "Log file count" msgstr "Πλήθος γραμμών αρχείου καταγραφής" -#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:625 +#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:621 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -2817,19 +2827,19 @@ msgstr "" #: libraries/export/htmlword.php:132 libraries/export/odt.php:168 #: libraries/export/sql.php:881 libraries/export/texytext.php:130 -#: libraries/messages.inc.php:275 +#: libraries/messages.inc.php:271 msgid "Dumping data for table" msgstr "Άδειασμα δεδομένων του πίνακα" #: libraries/export/htmlword.php:185 libraries/export/odt.php:238 #: libraries/export/sql.php:785 libraries/export/texytext.php:177 -#: libraries/messages.inc.php:1086 +#: libraries/messages.inc.php:1082 msgid "Table structure for table" msgstr "Δομή Πίνακα για τον Πίνακα" #: libraries/export/latex.php:125 libraries/export/sql.php:232 #: libraries/export/xml.php:102 libraries/header_printview.inc.php:57 -#: libraries/messages.inc.php:381 libraries/replication_gui.lib.php:63 +#: libraries/messages.inc.php:377 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:170 libraries/replication_gui.lib.php:265 #: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325 #: server_privileges.php:692 server_privileges.php:695 @@ -2841,184 +2851,184 @@ msgstr "Σύστημα" #: libraries/export/latex.php:130 libraries/export/sql.php:233 #: libraries/export/xml.php:107 libraries/header_printview.inc.php:59 -#: libraries/messages.inc.php:354 +#: libraries/messages.inc.php:350 msgid "Generation Time" msgstr "Χρόνος δημιουργίας" #: libraries/export/latex.php:131 libraries/export/sql.php:235 -#: libraries/export/xml.php:108 libraries/messages.inc.php:864 main.php:186 +#: libraries/export/xml.php:108 libraries/messages.inc.php:860 main.php:186 msgid "Server version" msgstr "Έκδοση Διακομιστή" #: libraries/export/latex.php:132 libraries/export/sql.php:236 -#: libraries/export/xml.php:109 libraries/messages.inc.php:651 +#: libraries/export/xml.php:109 libraries/messages.inc.php:647 msgid "PHP Version" msgstr "Έκδοση PHP" #: libraries/export/latex.php:201 libraries/export/sql.php:868 -#: libraries/messages.inc.php:226 server_databases.php:127 +#: libraries/messages.inc.php:222 server_databases.php:127 #: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317 #: tbl_structure.php:666 msgid "Data" msgstr "Δεδομένα" -#: libraries/export/odt.php:318 libraries/messages.inc.php:506 +#: libraries/export/odt.php:318 libraries/messages.inc.php:502 #: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "Τύπος MIME" -#: libraries/export/sql.php:387 libraries/messages.inc.php:711 +#: libraries/export/sql.php:387 libraries/messages.inc.php:707 msgid "Procedures" msgstr "Διαδικασίες" -#: libraries/export/sql.php:401 libraries/messages.inc.php:348 +#: libraries/export/sql.php:401 libraries/messages.inc.php:344 msgid "Functions" msgstr "Συναρτήσεις" -#: libraries/export/sql.php:618 libraries/messages.inc.php:174 +#: libraries/export/sql.php:618 libraries/messages.inc.php:170 msgid "Constraints for dumped tables" msgstr "Περιορισμοί για άχρηστους πίνακες" -#: libraries/export/sql.php:627 libraries/messages.inc.php:175 +#: libraries/export/sql.php:627 libraries/messages.inc.php:171 msgid "Constraints for table" msgstr "Περιορισμοί για πίνακα" -#: libraries/export/sql.php:727 libraries/messages.inc.php:512 +#: libraries/export/sql.php:727 libraries/messages.inc.php:508 msgid "MIME TYPES FOR TABLE" msgstr "ΤΥΠΟΙ MIME ΓΙΑ ΠΙΝΑΚΑ" -#: libraries/export/sql.php:739 libraries/messages.inc.php:743 +#: libraries/export/sql.php:739 libraries/messages.inc.php:739 msgid "RELATIONS FOR TABLE" msgstr "ΣΥΣΧΕΤΙΣΕΙΣ ΓΙΑ ΠΙΝΑΚΑ" -#: libraries/export/sql.php:796 libraries/messages.inc.php:1178 +#: libraries/export/sql.php:796 libraries/messages.inc.php:1174 #: libraries/tbl_triggers.lib.php:19 msgid "Triggers" msgstr "Δείκτες" -#: libraries/export/sql.php:808 libraries/messages.inc.php:1046 +#: libraries/export/sql.php:808 libraries/messages.inc.php:1042 msgid "Structure for view" msgstr "Δομή για προβολή" -#: libraries/export/sql.php:817 libraries/messages.inc.php:1029 +#: libraries/export/sql.php:817 libraries/messages.inc.php:1025 msgid "Stand-in structure for view" msgstr "Στημένη δομή για προβολή" #: libraries/footer.inc.php:184 libraries/footer.inc.php:195 -#: libraries/footer.inc.php:198 libraries/messages.inc.php:586 +#: libraries/footer.inc.php:198 libraries/messages.inc.php:582 msgid "Open new phpMyAdmin window" msgstr "Άνοιγμα νέου παραθύρου phpMyAdmin" -#: libraries/header.inc.php:115 libraries/messages.inc.php:542 +#: libraries/header.inc.php:115 libraries/messages.inc.php:538 msgid "New table" msgstr "Νέος πίνακας" #: libraries/header_printview.inc.php:50 libraries/header_printview.inc.php:55 -#: libraries/messages.inc.php:1024 +#: libraries/messages.inc.php:1020 msgid "SQL result" msgstr "αποτέλεσμα SQL" -#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:350 +#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:346 msgid "Generated by" msgstr "Δημιουργήθηκε από:" #: libraries/header_printview.inc.php:63 libraries/import.lib.php:145 -#: libraries/messages.inc.php:820 navigation.php:652 navigation.php:674 +#: libraries/messages.inc.php:816 navigation.php:652 navigation.php:674 #: server_databases.php:122 tbl_printview.php:394 tbl_structure.php:366 #: tbl_structure.php:778 msgid "Rows" msgstr "Εγγραφές" -#: libraries/import.lib.php:150 libraries/messages.inc.php:285 sql.php:520 +#: libraries/import.lib.php:150 libraries/messages.inc.php:281 sql.php:520 #: tbl_change.php:181 tbl_get_field.php:35 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" "Η MySQL επέστρεψε ένα άδειο σύνολο αποτελεσμάτων (π.χ. καμμία εγγραφή)." -#: libraries/import.lib.php:1078 libraries/messages.inc.php:399 +#: libraries/import.lib.php:1078 libraries/messages.inc.php:395 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "Οι ακόλουθες δομές δημιουργήθηκαν ή αλλάχτηκαν. Εδώ μπορείτε να:" -#: libraries/import.lib.php:1079 libraries/messages.inc.php:400 +#: libraries/import.lib.php:1079 libraries/messages.inc.php:396 msgid "View a structure`s contents by clicking on its name" msgstr "Δείτε τα περιεχόμενα δομής πατώντας στο όνομα" -#: libraries/import.lib.php:1080 libraries/messages.inc.php:401 +#: libraries/import.lib.php:1080 libraries/messages.inc.php:397 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "Αλλάξτε τις ρυθμίσεις πατώντας τον αντίστοιχο σύνδεσμο «Επιλογές»" -#: libraries/import.lib.php:1081 libraries/messages.inc.php:402 +#: libraries/import.lib.php:1081 libraries/messages.inc.php:398 msgid "Edit its structure by following the \"Structure\" link" msgstr "Επεξεργαστεί τη δομή από τον σύνδεσμο «Δομή»" -#: libraries/import.lib.php:1084 libraries/messages.inc.php:362 +#: libraries/import.lib.php:1084 libraries/messages.inc.php:358 msgid "Go to database" msgstr "Μετάβαση στη βάση δεδομένων" #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:869 +#: libraries/messages.inc.php:865 msgid "settings" msgstr "ρυθμίσεις" -#: libraries/import.lib.php:1106 libraries/messages.inc.php:363 +#: libraries/import.lib.php:1106 libraries/messages.inc.php:359 msgid "Go to table" msgstr "Μετάβαση στον πίνακα" -#: libraries/import.lib.php:1109 libraries/messages.inc.php:1047 +#: libraries/import.lib.php:1109 libraries/messages.inc.php:1043 msgid "structure" msgstr "δομή" -#: libraries/import.lib.php:1115 libraries/messages.inc.php:364 +#: libraries/import.lib.php:1115 libraries/messages.inc.php:360 msgid "Go to view" msgstr "Μετάβαση στην προβολή" #: libraries/import/csv.php:58 libraries/import/csv.php:70 #: libraries/import/csv.php:74 libraries/import/csv.php:78 -#: libraries/messages.inc.php:442 +#: libraries/messages.inc.php:438 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "Μη έγκυρη παράμετρος στο εισαχθέν CSV: %s" -#: libraries/import/csv.php:59 libraries/messages.inc.php:323 +#: libraries/import/csv.php:59 libraries/messages.inc.php:319 msgid "Fields terminated by" msgstr "Πεδία που τελειώνουν σε" -#: libraries/import/csv.php:71 libraries/messages.inc.php:320 +#: libraries/import/csv.php:71 libraries/messages.inc.php:316 msgid "Fields enclosed by" msgstr "Πεδία που περικλείονται σε" -#: libraries/import/csv.php:75 libraries/messages.inc.php:321 +#: libraries/import/csv.php:75 libraries/messages.inc.php:317 msgid "Fields escaped by" msgstr "Τα πεδία χρησιμοποιούν το χαρακτήρα διαφυγής " -#: libraries/import/csv.php:79 libraries/messages.inc.php:481 +#: libraries/import/csv.php:79 libraries/messages.inc.php:477 msgid "Lines terminated by" msgstr "Γραμμές που τελειώνουν σε" -#: libraries/import/csv.php:119 libraries/messages.inc.php:439 +#: libraries/import/csv.php:119 libraries/messages.inc.php:435 #, php-format msgid "Invalid column (%s) specified!" msgstr "Ορίστηκε μη έγκυρη στήλη (%s)!" #: libraries/import/csv.php:177 libraries/import/csv.php:424 -#: libraries/messages.inc.php:441 +#: libraries/messages.inc.php:437 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "Μη έγκυρη μορφή στο εισαχθέν CSV στη γραμμή %d." -#: libraries/import/csv.php:312 libraries/messages.inc.php:440 +#: libraries/import/csv.php:312 libraries/messages.inc.php:436 #, php-format msgid "Invalid field count in CSV input on line %d." msgstr "Μη έγκυρο πλήθος πεδίων στο εισαχθέν CSV στη γραμμή %d." -#: libraries/import/ldi.php:55 libraries/messages.inc.php:446 +#: libraries/import/ldi.php:55 libraries/messages.inc.php:442 msgid "This plugin does not support compressed imports!" msgstr "Αυτό το πρόσθετο δεν υποστηρίζει συμπιεσμένες εισαγωγές!" #: libraries/import/xml.php:74 libraries/import/xml.php:130 -#: libraries/messages.inc.php:1247 +#: libraries/messages.inc.php:1243 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -3051,323 +3061,313 @@ msgstr "" msgid "ltr" msgstr "ltr" -#. l10n: Thousands separator -#: libraries/messages.inc.php:21 -msgid "," -msgstr "." - -#. l10n: Decimal separator -#: libraries/messages.inc.php:23 -msgid "." -msgstr "," - -#: libraries/messages.inc.php:25 server_status.php:461 +#: libraries/messages.inc.php:21 server_status.php:461 msgid "Aborted" msgstr "Ακυρωμένες συνδέσεις" -#: libraries/messages.inc.php:28 main.php:68 +#: libraries/messages.inc.php:24 main.php:68 msgid "Actions" msgstr "Ενέργειες" -#: libraries/messages.inc.php:34 libraries/tbl_properties.inc.php:780 +#: libraries/messages.inc.php:30 libraries/tbl_properties.inc.php:780 #: tbl_structure.php:543 #, php-format msgid "Add %s field(s)" msgstr "Προσθήκη %s πεδίου(ων)" -#: libraries/messages.inc.php:35 +#: libraries/messages.inc.php:31 msgid "Add custom comment into header (\\n splits lines)" msgstr "Προσθήκη προσαρμοσμένου σχολίου στην κεφαλίδα (το \\n χωρίζει γραμμές)" -#: libraries/messages.inc.php:36 +#: libraries/messages.inc.php:32 msgid "Add into comments" msgstr "Προσθήκη στα σχόλια" -#: libraries/messages.inc.php:37 tbl_structure.php:541 +#: libraries/messages.inc.php:33 tbl_structure.php:541 msgid "Add new field" msgstr "Προσθήκη νέου Πεδίου" -#: libraries/messages.inc.php:38 server_privileges.php:1886 +#: libraries/messages.inc.php:34 server_privileges.php:1886 msgid "Add privileges on the following database" msgstr "Προσθήκη δικαιωμάτων στην ακόλουθη βάση δεδομένων" -#: libraries/messages.inc.php:39 server_privileges.php:1907 +#: libraries/messages.inc.php:35 server_privileges.php:1907 msgid "Add privileges on the following table" msgstr "Προσθήκη δεδομένων στον ακόλουθο πίνακα" -#: libraries/messages.inc.php:40 tbl_select.php:288 +#: libraries/messages.inc.php:36 tbl_select.php:288 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Προσθήκη νέου όρου (σώμα της πρότασης «where» πρότασης):" -#: libraries/messages.inc.php:41 tbl_indexes.php:251 +#: libraries/messages.inc.php:37 tbl_indexes.php:251 #, php-format msgid "Add to index  %s column(s)" msgstr "Προσθήκη στο ευρετήριο «%s» στήλης(ών)" -#: libraries/messages.inc.php:42 server_privileges.php:1570 +#: libraries/messages.inc.php:38 server_privileges.php:1570 #: server_privileges.php:1594 server_privileges.php:1988 #: server_privileges.php:2177 msgid "Add a new User" msgstr "Προσθήκη νέου Χρήστη" -#: libraries/messages.inc.php:43 server_privileges.php:931 +#: libraries/messages.inc.php:39 server_privileges.php:931 msgid "You have added a new user." msgstr "Προσθέσατε ένα νέο χρήστη." -#: libraries/messages.inc.php:44 server_privileges.php:571 +#: libraries/messages.inc.php:40 server_privileges.php:571 msgid "Administration" msgstr "Διαχείριση" -#: libraries/messages.inc.php:45 tbl_structure.php:557 +#: libraries/messages.inc.php:41 tbl_structure.php:557 #, php-format msgid "After %s" msgstr "Μετά το %s" -#: libraries/messages.inc.php:46 tbl_change.php:1147 +#: libraries/messages.inc.php:42 tbl_change.php:1147 msgid "Go back to previous page" msgstr "Επιστροφή" -#: libraries/messages.inc.php:47 tbl_change.php:1148 +#: libraries/messages.inc.php:43 tbl_change.php:1148 msgid "Insert another new row" msgstr "Εισαγωγή νέας εγγραφής" -#: libraries/messages.inc.php:48 tbl_change.php:1160 +#: libraries/messages.inc.php:44 tbl_change.php:1160 msgid "Edit next row" msgstr "Επεξεργασία επόμενης γραμμής" -#: libraries/messages.inc.php:49 tbl_change.php:1152 +#: libraries/messages.inc.php:45 tbl_change.php:1152 msgid "Go back to this page" msgstr "Επιστροφή σε αυτή τη σελίδα" -#: libraries/messages.inc.php:50 querywindow.php:115 +#: libraries/messages.inc.php:46 querywindow.php:115 msgid "All" msgstr "Όλα" -#: libraries/messages.inc.php:53 tbl_operations.php:249 +#: libraries/messages.inc.php:49 tbl_operations.php:249 msgid "Alter table order by" msgstr "Αλλαγή ταξινόμησης Πίνακα κατά" -#: libraries/messages.inc.php:54 tbl_operations.php:660 +#: libraries/messages.inc.php:50 tbl_operations.php:660 msgid "Analyze" msgstr "Ανάλυση" -#: libraries/messages.inc.php:57 +#: libraries/messages.inc.php:53 msgid "and" msgstr "και" -#: libraries/messages.inc.php:59 pmd_general.php:87 +#: libraries/messages.inc.php:55 pmd_general.php:87 msgid "Angular links" msgstr "Γωνιακοί σύνδεσμοι" -#: libraries/messages.inc.php:60 tbl_structure.php:401 tbl_structure.php:415 +#: libraries/messages.inc.php:56 tbl_structure.php:401 tbl_structure.php:415 #: tbl_structure.php:429 #, php-format msgid "An index has been added on %s" msgstr "Ένα ευρετήριο προστέθηκε στο %s" -#: libraries/messages.inc.php:61 server_privileges.php:1521 +#: libraries/messages.inc.php:57 server_privileges.php:1521 #: server_privileges.php:2123 msgid "Any" msgstr "Οποιοδήποτε" -#: libraries/messages.inc.php:62 libraries/replication_gui.lib.php:298 +#: libraries/messages.inc.php:58 libraries/replication_gui.lib.php:298 #: server_privileges.php:725 msgid "Any host" msgstr "Οποιοδήποτε Σύστημα" -#: libraries/messages.inc.php:63 libraries/replication_gui.lib.php:250 +#: libraries/messages.inc.php:59 libraries/replication_gui.lib.php:250 #: server_privileges.php:677 msgid "Any user" msgstr "Οποιοσδήποτε Χρήστης" -#: libraries/messages.inc.php:64 server_synchronize.php:449 +#: libraries/messages.inc.php:60 server_synchronize.php:449 #: server_synchronize.php:894 msgid "Apply Selected Changes" msgstr "Εφαρμογή Επιλεγμένων Αλλαγών" -#: libraries/messages.inc.php:66 tbl_structure.php:386 +#: libraries/messages.inc.php:62 tbl_structure.php:386 #, php-format msgid "A primary key has been added on %s" msgstr "Ένα πρωτεύον κλειδί προστέθηκε στο %s" -#: libraries/messages.inc.php:67 libraries/mysql_charsets.lib.php:368 +#: libraries/messages.inc.php:63 libraries/mysql_charsets.lib.php:368 msgid "Arabic" msgstr "Αραβικά" -#: libraries/messages.inc.php:68 libraries/mysql_charsets.lib.php:359 +#: libraries/messages.inc.php:64 libraries/mysql_charsets.lib.php:359 msgid "Armenian" msgstr "Αρμενικά" -#: libraries/messages.inc.php:70 libraries/tbl_properties.inc.php:394 +#: libraries/messages.inc.php:66 libraries/tbl_properties.inc.php:394 msgid "As defined:" msgstr "Όπως ορίστηκε:" -#: libraries/messages.inc.php:71 tbl_structure.php:556 +#: libraries/messages.inc.php:67 tbl_structure.php:556 msgid "At Beginning of Table" msgstr "Στην αρχή του Πίνακα" -#: libraries/messages.inc.php:72 tbl_structure.php:555 +#: libraries/messages.inc.php:68 tbl_structure.php:555 msgid "At End of Table" msgstr "Στο τέλος του Πίνακα" -#: libraries/messages.inc.php:73 libraries/tbl_properties.inc.php:108 +#: libraries/messages.inc.php:69 libraries/tbl_properties.inc.php:108 #: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:144 #: tbl_structure.php:180 msgid "Attributes" msgstr "Χαρακτηριστικά" -#: libraries/messages.inc.php:74 pdf_pages.php:303 pdf_pages.php:306 +#: libraries/messages.inc.php:70 pdf_pages.php:303 pdf_pages.php:306 msgid "Automatic layout" msgstr "Αυτόματη διάταξη" -#: libraries/messages.inc.php:77 libraries/mysql_charsets.lib.php:354 +#: libraries/messages.inc.php:73 libraries/mysql_charsets.lib.php:354 msgid "Baltic" msgstr "Βαλτικής" -#: libraries/messages.inc.php:78 libraries/sqlparser.lib.php:175 +#: libraries/messages.inc.php:74 libraries/sqlparser.lib.php:175 msgid "BEGIN CUT" msgstr "BEGIN CUT" -#: libraries/messages.inc.php:79 libraries/sqlparser.lib.php:179 +#: libraries/messages.inc.php:75 libraries/sqlparser.lib.php:179 msgid "BEGIN RAW" msgstr "BEGIN RAW" -#: libraries/messages.inc.php:80 libraries/mysql_charsets.lib.php:201 +#: libraries/messages.inc.php:76 libraries/mysql_charsets.lib.php:201 #: libraries/mysql_charsets.lib.php:402 tbl_change.php:518 msgid "Binary" msgstr "Δυαδικό" -#: libraries/messages.inc.php:81 tbl_change.php:894 +#: libraries/messages.inc.php:77 tbl_change.php:894 msgid "Binary - do not edit" msgstr "Δυαδικό - χωρίς δυνατότητα επεξεργασίας" -#: libraries/messages.inc.php:82 libraries/server_links.inc.php:76 +#: libraries/messages.inc.php:78 libraries/server_links.inc.php:76 #: server_binlog.php:110 server_status.php:253 test/theme.php:121 msgid "Binary log" msgstr "Δυαδικό αρχείο καταγραφής" -#: libraries/messages.inc.php:83 server_binlog.php:217 +#: libraries/messages.inc.php:79 server_binlog.php:217 msgid "Event type" msgstr "Τύπος συμβάντος" -#: libraries/messages.inc.php:84 server_binlog.php:220 +#: libraries/messages.inc.php:80 server_binlog.php:220 msgid "Information" msgstr "Πληροφορία" -#: libraries/messages.inc.php:85 server_binlog.php:215 +#: libraries/messages.inc.php:81 server_binlog.php:215 msgid "Log name" msgstr "Όνομασία καταγραφής" -#: libraries/messages.inc.php:86 server_binlog.php:219 +#: libraries/messages.inc.php:82 server_binlog.php:219 msgid "Original position" msgstr "Αρχική θέση" -#: libraries/messages.inc.php:87 server_binlog.php:216 +#: libraries/messages.inc.php:83 server_binlog.php:216 msgid "Position" msgstr "Θέση" -#: libraries/messages.inc.php:88 libraries/replication_gui.lib.php:169 +#: libraries/messages.inc.php:84 libraries/replication_gui.lib.php:169 #: server_binlog.php:218 msgid "Server ID" msgstr "Ταυτότητα Διακομιστή" -#: libraries/messages.inc.php:92 +#: libraries/messages.inc.php:88 msgctxt "$strBLOBRepositoryDisabled" msgid "Disabled" msgstr "Απενεργοποιημένη" -#: libraries/messages.inc.php:95 +#: libraries/messages.inc.php:91 msgctxt "$strBLOBRepositoryEnabled" msgid "Enabled" msgstr "Ενεργοποιημένη" -#: libraries/messages.inc.php:97 tbl_change.php:888 +#: libraries/messages.inc.php:93 tbl_change.php:888 msgid "Remove BLOB Repository Reference" msgstr "Απομάκρυνση της Αναφοράς Αποθήκης BLOB" -#: libraries/messages.inc.php:98 +#: libraries/messages.inc.php:94 msgctxt "$strBLOBRepositoryRepair" msgid "Repair" msgstr "Επισκευή" -#: libraries/messages.inc.php:99 tbl_change.php:987 +#: libraries/messages.inc.php:95 tbl_change.php:987 msgid "Upload to BLOB repository" msgstr "Μεταφορά στην αποθήκη BLOB" -#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:359 +#: libraries/messages.inc.php:96 libraries/sql_query_form.lib.php:359 #: sql.php:677 msgid "Let every user access this bookmark" msgstr "Δικαίωμα πρόσβασης στο σελίδοδείκτη σε κάθε χρήστη" -#: libraries/messages.inc.php:103 sql.php:671 +#: libraries/messages.inc.php:99 sql.php:671 msgid "Label" msgstr "Τίτλος" -#: libraries/messages.inc.php:104 libraries/sql_query_form.lib.php:433 +#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:433 msgid "Bookmarked SQL query" msgstr "Αποθηκευμένο ερώτημα SQL" -#: libraries/messages.inc.php:105 libraries/sql_query_form.lib.php:365 +#: libraries/messages.inc.php:101 libraries/sql_query_form.lib.php:365 msgid "Replace existing bookmark of same name" msgstr "Αντικατάσταση υπάρχοντος σελιδοδείκτη με το ίδιο όνομα" -#: libraries/messages.inc.php:106 libraries/sql_query_form.lib.php:352 +#: libraries/messages.inc.php:102 libraries/sql_query_form.lib.php:352 #: sql.php:665 sql.php:666 sql.php:683 msgid "Bookmark this SQL query" msgstr "Αποθήκευση αυτού του ερωτήματος SQL" -#: libraries/messages.inc.php:107 libraries/sql_query_form.lib.php:466 +#: libraries/messages.inc.php:103 libraries/sql_query_form.lib.php:466 msgid "View only" msgstr "Μόνο ανάγνωση" -#: libraries/messages.inc.php:109 tbl_structure.php:161 +#: libraries/messages.inc.php:105 tbl_structure.php:161 msgid "Browse distinct values" msgstr "Αναζήτηση διακριτων τιμών" -#: libraries/messages.inc.php:110 tbl_change.php:252 tbl_select.php:27 +#: libraries/messages.inc.php:106 tbl_change.php:252 tbl_select.php:27 #: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34 msgid "Browse foreign values" msgstr "Αναζήτηση μη διακριτών τιμών" -#: libraries/messages.inc.php:118 libraries/mysql_charsets.lib.php:213 +#: libraries/messages.inc.php:114 libraries/mysql_charsets.lib.php:213 msgid "Bulgarian" msgstr "Βουλγαρικά" -#: libraries/messages.inc.php:120 +#: libraries/messages.inc.php:116 msgid "\"bzipped\"" msgstr "συμπίεση «bzip»" -#: libraries/messages.inc.php:122 +#: libraries/messages.inc.php:118 msgid "Calendar" msgstr "Ημερολόγιο" -#: libraries/messages.inc.php:129 tbl_indexes.php:75 +#: libraries/messages.inc.php:125 tbl_indexes.php:75 msgid "Can't rename index to PRIMARY!" msgstr "Η μετατροπή του ευρετηρίου σε ΠΡΩΤΕΥΟΝ σε είναι εφικτή!" -#: libraries/messages.inc.php:132 libraries/mysql_charsets.lib.php:223 +#: libraries/messages.inc.php:128 libraries/mysql_charsets.lib.php:223 #: libraries/mysql_charsets.lib.php:409 msgid "case-insensitive" msgstr "χωρίς ταίριασμα πεζών-κεφαλαίων" -#: libraries/messages.inc.php:133 libraries/mysql_charsets.lib.php:226 +#: libraries/messages.inc.php:129 libraries/mysql_charsets.lib.php:226 #: libraries/mysql_charsets.lib.php:411 msgid "case-sensitive" msgstr "ταίριασμα πεζών-κεφαλαίων" -#: libraries/messages.inc.php:134 libraries/mysql_charsets.lib.php:332 +#: libraries/messages.inc.php:130 libraries/mysql_charsets.lib.php:332 msgid "Central European" msgstr "Κεντρικής Ευρώπης" -#: libraries/messages.inc.php:136 server_privileges.php:1969 +#: libraries/messages.inc.php:132 server_privileges.php:1969 msgid "... keep the old one." msgstr "... διατήρηση του παλιού χρήστη." -#: libraries/messages.inc.php:137 server_privileges.php:1967 +#: libraries/messages.inc.php:133 server_privileges.php:1967 msgid "Create a new user with the same privileges and ..." msgstr "Δημιουργία νέου χρήστη με τα ίδια δικαιώματα και ..." -#: libraries/messages.inc.php:138 server_privileges.php:1972 +#: libraries/messages.inc.php:134 server_privileges.php:1972 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -3375,76 +3375,76 @@ msgstr "" " ... διαγραφή του παλιού χρήστη από τους πίνακες χρηστών και επαναφόρτωση " "των δικαιωμάτων." -#: libraries/messages.inc.php:139 server_privileges.php:1970 +#: libraries/messages.inc.php:135 server_privileges.php:1970 msgid " ... delete the old one from the user tables." msgstr " ... διαγραφή του παλιού χρήστη από τους πίνακες χρηστών." -#: libraries/messages.inc.php:140 server_privileges.php:1971 +#: libraries/messages.inc.php:136 server_privileges.php:1971 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr " ... ανάκληση των δικαιωμάτων του παλιού χρήστη και διαγραφή του." -#: libraries/messages.inc.php:141 server_privileges.php:1964 +#: libraries/messages.inc.php:137 server_privileges.php:1964 msgid "Change Login Information / Copy User" msgstr "Αλλαγή Στοιχείων Πρόσβασης / Αντιγραφή Χρήστη" -#: libraries/messages.inc.php:144 libraries/mysql_charsets.lib.php:107 +#: libraries/messages.inc.php:140 libraries/mysql_charsets.lib.php:107 msgid "Charset" msgstr "Σύνολο χαρακτήρων" -#: libraries/messages.inc.php:146 server_collations.php:40 +#: libraries/messages.inc.php:142 server_collations.php:40 msgid "Character Sets and Collations" msgstr "Σύνολα και Συνθέσεις Χαρακτήρων" -#: libraries/messages.inc.php:147 libraries/server_links.inc.php:57 +#: libraries/messages.inc.php:143 libraries/server_links.inc.php:57 #: test/theme.php:109 msgid "Charsets" msgstr "Σύνολο χαρακτήρων" -#: libraries/messages.inc.php:149 tbl_operations.php:661 +#: libraries/messages.inc.php:145 tbl_operations.php:661 msgid "Check" msgstr "Έλεγχος" -#: libraries/messages.inc.php:151 server_databases.php:293 +#: libraries/messages.inc.php:147 server_databases.php:293 #: server_databases.php:294 msgid "Check Privileges" msgstr "Έλεγχος Δικαιωμάτων" -#: libraries/messages.inc.php:152 server_databases.php:289 +#: libraries/messages.inc.php:148 server_databases.php:289 #, php-format msgid "Check privileges for database "%s"." msgstr "Έλεγχος δικαιωμάτων για τη βάση «%s»." -#: libraries/messages.inc.php:154 pdf_pages.php:261 +#: libraries/messages.inc.php:150 pdf_pages.php:261 msgid "Please choose a page to edit" msgstr "Παρακαλώ επιλέξτε σελίδα για αλλαγή" -#: libraries/messages.inc.php:157 +#: libraries/messages.inc.php:153 msgid "Displaying Column Comments" msgstr "Εμφάνιση σχολίων πεδίων" -#: libraries/messages.inc.php:159 pdf_pages.php:483 view_create.php:148 +#: libraries/messages.inc.php:155 pdf_pages.php:483 view_create.php:148 msgid "Column names" msgstr "Ονόματα στηλών" -#: libraries/messages.inc.php:160 server_privileges.php:1685 +#: libraries/messages.inc.php:156 server_privileges.php:1685 msgid "Column-specific privileges" msgstr "Δικαιώματα πεδίων" -#: libraries/messages.inc.php:164 +#: libraries/messages.inc.php:160 msgid "MySQL 4.0 compatible" msgstr "Συμβατό με MySQL 4.0" -#: libraries/messages.inc.php:165 +#: libraries/messages.inc.php:161 msgid "Complete inserts" msgstr "Πλήρεις εντολές «Insert»" -#: libraries/messages.inc.php:168 +#: libraries/messages.inc.php:164 #, php-format msgid "Could not load default configuration from: \"%1$s\"" msgstr "Αδύνατη η φόρτωση της προεπιλεγμένης ρύθμισης από: «%1$s»" -#: libraries/messages.inc.php:169 main.php:306 +#: libraries/messages.inc.php:165 main.php:306 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " @@ -3454,37 +3454,37 @@ msgstr "" "εγκατάστασης, υπάρχει ακόμα στο φάκελο phpMyAdmin. Πρέπει να τον διαγράψετε " "μόλις ρυθμιστεί το phpMyAdmin." -#: libraries/messages.inc.php:171 pdf_schema.php:672 +#: libraries/messages.inc.php:167 pdf_schema.php:672 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Παρακαλώ ορίστε τις συντεταγμένες για τον πίνακα %s" -#: libraries/messages.inc.php:173 server_status.php:433 +#: libraries/messages.inc.php:169 server_status.php:433 msgid "Connections" msgstr "Συνδέσεις" -#: libraries/messages.inc.php:179 tbl_operations.php:509 +#: libraries/messages.inc.php:175 tbl_operations.php:509 msgid "Copy table to (database.table):" msgstr "Αντιγραφή πίνακα σε (βάση.πίνακας):" -#: libraries/messages.inc.php:180 tbl_move_copy.php:58 +#: libraries/messages.inc.php:176 tbl_move_copy.php:58 #, php-format msgid "Table %s has been copied to %s." msgstr "Ο Πίνακας %s αντιγράφηκε στο %s." -#: libraries/messages.inc.php:181 tbl_move_copy.php:48 +#: libraries/messages.inc.php:177 tbl_move_copy.php:48 msgid "Can't copy table to same one!" msgstr "Δεν είναι δυνατή η αντιγραφή του πίνακα στον εαυτό του!" -#: libraries/messages.inc.php:182 server_synchronize.php:94 +#: libraries/messages.inc.php:178 server_synchronize.php:94 msgid "Could not connect to the source" msgstr "Αδύνατη η σύνδεση με την προέλευση" -#: libraries/messages.inc.php:183 server_synchronize.php:97 +#: libraries/messages.inc.php:179 server_synchronize.php:97 msgid "Could not connect to the target" msgstr "Αδύνατη η σύνδεση με τον προορισμό" -#: libraries/messages.inc.php:184 server_processlist.php:24 +#: libraries/messages.inc.php:180 server_processlist.php:24 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -3492,132 +3492,132 @@ msgstr "" "Το phpMyAdmin δεν μπόρεσε να διακόψει τη λειτουργία %s. Μπορεί να έχει ήδη " "σταματήσει." -#: libraries/messages.inc.php:187 +#: libraries/messages.inc.php:183 #, php-format msgid "Create an index on %s columns" msgstr "Δημιουργία ευρετηρίου σε «%s» πεδία" -#: libraries/messages.inc.php:188 tbl_indexes.php:160 +#: libraries/messages.inc.php:184 tbl_indexes.php:160 msgid "Create a new index" msgstr "Δημιουργία νέου ευρετηρίου" -#: libraries/messages.inc.php:191 pdf_pages.php:297 pmd_pdf.php:114 +#: libraries/messages.inc.php:187 pdf_pages.php:297 pmd_pdf.php:114 msgid "Create a page" msgstr "Δημιουργία νέας σελίδας" -#: libraries/messages.inc.php:192 +#: libraries/messages.inc.php:188 msgid "Creation of PDFs" msgstr "Δημιουργία αρχείων PDF" -#: libraries/messages.inc.php:193 pmd_general.php:74 pmd_general.php:306 +#: libraries/messages.inc.php:189 pmd_general.php:74 pmd_general.php:306 msgid "Create relation" msgstr "Δημιουργία συσχέτισης" -#: libraries/messages.inc.php:194 pmd_general.php:71 +#: libraries/messages.inc.php:190 pmd_general.php:71 #: server_synchronize.php:429 server_synchronize.php:872 msgid "Create table" msgstr "Δημιουργία πίνακα" -#: libraries/messages.inc.php:195 +#: libraries/messages.inc.php:191 msgctxt "$strCreateTableShort" msgid "Create table" msgstr "Δημιουργία πίνακα" -#: libraries/messages.inc.php:196 server_privileges.php:1994 +#: libraries/messages.inc.php:192 server_privileges.php:1994 msgid "Database for user" msgstr "Βάση δεδομένων για χρήστη" -#: libraries/messages.inc.php:197 server_privileges.php:1999 +#: libraries/messages.inc.php:193 server_privileges.php:1999 msgid "Create database with same name and grant all privileges" msgstr "" "Δημιουργία βάσης δεδομένων με το ίδιο όνομα και με πλήρη δικαιώματα χρήσης" -#: libraries/messages.inc.php:198 +#: libraries/messages.inc.php:194 msgctxt "$strCreateUserDatabaseNone" msgid "None" msgstr "Καμία" -#: libraries/messages.inc.php:199 server_privileges.php:2003 +#: libraries/messages.inc.php:195 server_privileges.php:2003 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Πλήρη δικαιώματα στη βάση δεδομένων «%s»" -#: libraries/messages.inc.php:200 server_privileges.php:2000 +#: libraries/messages.inc.php:196 server_privileges.php:2000 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Πλήρη δικαιώματα σε όνομα μπαλαντέρ (username\\_%)" -#: libraries/messages.inc.php:201 +#: libraries/messages.inc.php:197 msgid "Creation/Update/Check dates" msgstr "Δημιουργία/Ενημέρωση/Έλεγχος ημερομηνιών" -#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:229 +#: libraries/messages.inc.php:199 libraries/mysql_charsets.lib.php:229 msgid "Croatian" msgstr "Κροατικά" -#: libraries/messages.inc.php:204 +#: libraries/messages.inc.php:200 msgid "CSV" msgstr "CSV" -#: libraries/messages.inc.php:205 libraries/server_synchronize.lib.php:1343 +#: libraries/messages.inc.php:201 libraries/server_synchronize.lib.php:1343 #: libraries/server_synchronize.lib.php:1369 msgid "Current server" msgstr "Τρέχων διακομιστής" -#: libraries/messages.inc.php:206 main.php:159 +#: libraries/messages.inc.php:202 main.php:159 msgid "Custom color" msgstr "Προσαρμοσμένο χρώμα" -#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:365 +#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:365 msgid "Cyrillic" msgstr "Κυριλλικά" -#: libraries/messages.inc.php:208 libraries/mysql_charsets.lib.php:232 +#: libraries/messages.inc.php:204 libraries/mysql_charsets.lib.php:232 msgid "Czech" msgstr "Τσεχικά" -#: libraries/messages.inc.php:209 libraries/mysql_charsets.lib.php:383 +#: libraries/messages.inc.php:205 libraries/mysql_charsets.lib.php:383 msgid "Czech-Slovak" msgstr "Τσέχο-Σλοβάκικα" -#: libraries/messages.inc.php:211 libraries/mysql_charsets.lib.php:235 +#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:235 msgid "Danish" msgstr "Δανικά" -#: libraries/messages.inc.php:214 +#: libraries/messages.inc.php:210 msgid "Database export options" msgstr "Επιλογές εξαγωγής βάσης δεδομένων" -#: libraries/messages.inc.php:217 server_synchronize.php:122 +#: libraries/messages.inc.php:213 server_synchronize.php:122 #: server_synchronize.php:125 tbl_create.php:82 tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "Η βάση δεδομένων «%s» δεν υπάρχει." -#: libraries/messages.inc.php:219 server_databases.php:63 +#: libraries/messages.inc.php:215 server_databases.php:63 #, php-format msgid "%s databases have been dropped successfully." msgstr "%s βάσεις δεδομένων διεγράφησαν επιτυχώς." -#: libraries/messages.inc.php:220 libraries/server_synchronize.lib.php:1341 +#: libraries/messages.inc.php:216 libraries/server_synchronize.lib.php:1341 #: server_synchronize.php:1110 msgid "Source database" msgstr "Βάση δεδομένων προέλευσης" -#: libraries/messages.inc.php:221 server_databases.php:88 +#: libraries/messages.inc.php:217 server_databases.php:88 msgid "Databases statistics" msgstr "Στατιστικά βάσης" -#: libraries/messages.inc.php:222 server_databases.php:362 +#: libraries/messages.inc.php:218 server_databases.php:362 #: server_databases.php:363 msgid "Disable Statistics" msgstr "Απενεργοποίηση Στατιστικών" -#: libraries/messages.inc.php:223 server_databases.php:358 +#: libraries/messages.inc.php:219 server_databases.php:358 #: server_databases.php:359 msgid "Enable Statistics" msgstr "Ενεργοποίηση Στατιστικών" -#: libraries/messages.inc.php:224 server_databases.php:366 +#: libraries/messages.inc.php:220 server_databases.php:366 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -3625,30 +3625,30 @@ msgstr "" "Σημείωση: Η ενεργοποίηση στατιστικών μπορεί να προκαλέσει μεγάλη μεταφορά " "δεδομένων μεταξύ του διακομιστή ιστού και του διακομιστή MySQL." -#: libraries/messages.inc.php:225 libraries/server_synchronize.lib.php:1367 +#: libraries/messages.inc.php:221 libraries/server_synchronize.lib.php:1367 #: server_synchronize.php:1112 msgid "Target database" msgstr "Βάση δεδομένων προορισμού" -#: libraries/messages.inc.php:228 server_synchronize.php:425 +#: libraries/messages.inc.php:224 server_synchronize.php:425 #: server_synchronize.php:868 msgid "Data Difference" msgstr "Διαφορά Δεδομένων" -#: libraries/messages.inc.php:231 server_synchronize.php:272 +#: libraries/messages.inc.php:227 server_synchronize.php:272 msgid "Data Synchronization" msgstr "Συγχρονισμός Δεδομένων" -#: libraries/messages.inc.php:235 server_privileges.php:526 +#: libraries/messages.inc.php:231 server_privileges.php:526 #: server_privileges.php:1679 msgid "Database-specific privileges" msgstr "Δικαιώματα βάσης δεδομένων" -#: libraries/messages.inc.php:237 server_privileges.php:2136 +#: libraries/messages.inc.php:233 server_privileges.php:2136 msgid "database-specific" msgstr "Χρήστης Βάσης" -#: libraries/messages.inc.php:240 libraries/tbl_properties.inc.php:106 +#: libraries/messages.inc.php:236 libraries/tbl_properties.inc.php:106 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" @@ -3656,32 +3656,32 @@ msgstr "" "Για προκαθορισμένες τιμές, παρακαλώ εισάγετε μία τιμή, χωρίς χαρακτήρες " "διαφυγής ή εισαγωγικά, χρησιμοποιώντας τη μορφή: a" -#: libraries/messages.inc.php:241 tbl_operations.php:589 +#: libraries/messages.inc.php:237 tbl_operations.php:589 msgid "Defragment table" msgstr "Ανασυγκρότηση πίνακα" -#: libraries/messages.inc.php:242 +#: libraries/messages.inc.php:238 msgid "Use delayed inserts" msgstr "Χρήση εισαγωγών με καθυστέρηση" -#: libraries/messages.inc.php:245 server_privileges.php:1243 +#: libraries/messages.inc.php:241 server_privileges.php:1243 msgid "No users selected for deleting!" msgstr "Δεν επιλέχθηκαν χρήστες για διαγραφή!" -#: libraries/messages.inc.php:246 pmd_general.php:372 +#: libraries/messages.inc.php:242 pmd_general.php:372 msgid "Delete relation" msgstr "Διαγραφή συσχέτισης" -#: libraries/messages.inc.php:248 server_privileges.php:1232 +#: libraries/messages.inc.php:244 server_privileges.php:1232 #, php-format msgid "Deleting %s" msgstr "Διαγραφή %s" -#: libraries/messages.inc.php:249 libraries/sql_query_form.lib.php:388 +#: libraries/messages.inc.php:245 libraries/sql_query_form.lib.php:388 msgid "Delimiter" msgstr "Διαχωριστικό" -#: libraries/messages.inc.php:250 pdf_pages.php:506 +#: libraries/messages.inc.php:246 pdf_pages.php:506 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -3689,7 +3689,7 @@ msgstr "" "Η τρέχουσα σελίδα έχει αναφορές σε πίνακες που δεν υπάρχουν πια. Θέλετε να " "διαγραφές αυτές οι αναφορές;" -#: libraries/messages.inc.php:254 pmd_help.php:29 +#: libraries/messages.inc.php:250 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 " @@ -3699,142 +3699,142 @@ msgstr "" "εμφανιζόμενο πεδίο, πατήστε το εικονίδιο «Επιλογή πεδίο για εμφάνιση» και " "μετά πατήστε το κατάλληλο όνομα πεδίου." -#: libraries/messages.inc.php:256 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:252 libraries/mysql_charsets.lib.php:247 msgid "dictionary" msgstr "λεξικό" -#: libraries/messages.inc.php:257 libraries/server_synchronize.lib.php:1348 +#: libraries/messages.inc.php:253 libraries/server_synchronize.lib.php:1348 msgid "Difference" msgstr "Διαφορά" -#: libraries/messages.inc.php:258 pmd_general.php:87 +#: libraries/messages.inc.php:254 pmd_general.php:87 msgid "Direct links" msgstr "Άμεσοι σύνδεσμοι" -#: libraries/messages.inc.php:261 +#: libraries/messages.inc.php:257 msgid "Disable foreign key checks" msgstr "Απενεργοποίηση ελέγχων μη διακριτών κλειδιών" -#: libraries/messages.inc.php:262 +#: libraries/messages.inc.php:258 msgid "Display Features" msgstr "Λειτουργίες εμφάνισης" -#: libraries/messages.inc.php:263 tbl_select.php:301 +#: libraries/messages.inc.php:259 tbl_select.php:301 msgid "Display order:" msgstr "Σειρά εμφάνισης:" -#: libraries/messages.inc.php:265 tbl_select.php:132 +#: libraries/messages.inc.php:261 tbl_select.php:132 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Εκτέλεσε ένα «επερώτημα κατά παράδειγμα» (χαρακτήρας μπαλαντέρ «%»)" -#: libraries/messages.inc.php:266 +#: libraries/messages.inc.php:262 msgid "DocSQL" msgstr "DocSQL" -#: libraries/messages.inc.php:268 +#: libraries/messages.inc.php:264 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Να μην γίνεται αυτόματη αρίθμηση σε μηδενικές τιμές" -#: libraries/messages.inc.php:273 server_privileges.php:1579 +#: libraries/messages.inc.php:269 server_privileges.php:1579 #: server_privileges.php:1580 server_privileges.php:1581 msgid "Drop the databases that have the same names as the users." msgstr "Διαγραφή βάσεων δεδομένων που έχουν ίδια ονόματα με χρήστες." -#: libraries/messages.inc.php:278 tbl_printview.php:382 tbl_structure.php:743 +#: libraries/messages.inc.php:274 tbl_printview.php:382 tbl_structure.php:743 msgid "dynamic" msgstr "δυναμικά" -#: libraries/messages.inc.php:282 server_privileges.php:1324 +#: libraries/messages.inc.php:278 server_privileges.php:1324 #: server_privileges.php:1610 msgid "Edit Privileges" msgstr "Επεξεργασία Δικαιωμάτων" -#: libraries/messages.inc.php:283 tbl_printview.php:341 tbl_structure.php:688 +#: libraries/messages.inc.php:279 tbl_printview.php:341 tbl_structure.php:688 msgid "Effective" msgstr "Αποτελεσματικός" -#: libraries/messages.inc.php:286 libraries/relation.lib.php:100 +#: libraries/messages.inc.php:282 libraries/relation.lib.php:100 msgid "Enabled" msgstr "Ενεργοποιημένο" -#: libraries/messages.inc.php:287 +#: libraries/messages.inc.php:283 msgid "Enclose export in a transaction" msgstr "Συμπερίληψη εξαγωγής στη συναλλαγή" -#: libraries/messages.inc.php:288 libraries/sqlparser.lib.php:177 +#: libraries/messages.inc.php:284 libraries/sqlparser.lib.php:177 msgid "END CUT" msgstr "END CUT" -#: libraries/messages.inc.php:290 libraries/sqlparser.lib.php:183 +#: libraries/messages.inc.php:286 libraries/sqlparser.lib.php:183 msgid "END RAW" msgstr "END RAW" -#: libraries/messages.inc.php:293 libraries/server_links.inc.php:61 +#: libraries/messages.inc.php:289 libraries/server_links.inc.php:61 #: test/theme.php:113 msgid "Engines" msgstr "Μηχανές" -#: libraries/messages.inc.php:295 libraries/mysql_charsets.lib.php:238 +#: libraries/messages.inc.php:291 libraries/mysql_charsets.lib.php:238 msgid "English" msgstr "Αγγλικά" -#: libraries/messages.inc.php:296 server_privileges.php:393 +#: libraries/messages.inc.php:292 server_privileges.php:393 #: server_privileges.php:535 server_privileges.php:1501 msgid " Note: MySQL privilege names are expressed in English " msgstr " Σημείωση: Τα ονόματα δικαιωμάτων της MySQL εκφράζονται στα Αγγλικά " -#: libraries/messages.inc.php:298 libraries/zip_extension.lib.php:49 +#: libraries/messages.inc.php:294 libraries/zip_extension.lib.php:49 #: libraries/zip_extension.lib.php:51 libraries/zip_extension.lib.php:66 msgid "Error in ZIP archive:" msgstr "Σφάλμα στο συμπιεσμένο αρχείο ZIP:" -#: libraries/messages.inc.php:303 libraries/mysql_charsets.lib.php:241 +#: libraries/messages.inc.php:299 libraries/mysql_charsets.lib.php:241 msgid "Esperanto" msgstr "Εσπεράντο" -#: libraries/messages.inc.php:304 libraries/mysql_charsets.lib.php:244 +#: libraries/messages.inc.php:300 libraries/mysql_charsets.lib.php:244 msgid "Estonian" msgstr "Εσθονικά" -#: libraries/messages.inc.php:305 libraries/tbl_triggers.lib.php:29 +#: libraries/messages.inc.php:301 libraries/tbl_triggers.lib.php:29 msgid "Event" msgstr "Συμβάν" -#: libraries/messages.inc.php:307 +#: libraries/messages.inc.php:303 msgid "Excel edition" msgstr "Έκδοση Excel" -#: libraries/messages.inc.php:311 pmd_pdf.php:85 +#: libraries/messages.inc.php:307 pmd_pdf.php:85 msgid "Export/Import to scale" msgstr "Εξαγωγή/Εισαγωγή σε κλίμακα" -#: libraries/messages.inc.php:313 +#: libraries/messages.inc.php:309 msgid "Extended inserts" msgstr "Εκτεταμένες εντολές «Insert»" -#: libraries/messages.inc.php:314 pdf_schema.php:1267 pdf_schema.php:1288 +#: libraries/messages.inc.php:310 pdf_schema.php:1267 pdf_schema.php:1288 #: tbl_printview.php:147 tbl_structure.php:183 tbl_tracking.php:278 msgid "Extra" msgstr "Πρόσθετα" -#: libraries/messages.inc.php:316 server_status.php:447 +#: libraries/messages.inc.php:312 server_status.php:447 msgid "Failed attempts" msgstr "Αποτυχημένες προσπάθειες" -#: libraries/messages.inc.php:318 tbl_structure.php:375 +#: libraries/messages.inc.php:314 tbl_structure.php:375 #, php-format msgid "Field %s has been dropped" msgstr "Το πεδίο %s διεγράφη" -#: libraries/messages.inc.php:322 libraries/sql_query_form.lib.php:317 +#: libraries/messages.inc.php:318 libraries/sql_query_form.lib.php:317 msgid "Fields" msgstr "Πεδία" -#: libraries/messages.inc.php:332 server_binlog.php:136 +#: libraries/messages.inc.php:328 server_binlog.php:136 msgid "Files" msgstr "Αρχεία" -#: libraries/messages.inc.php:334 server_privileges.php:1597 +#: libraries/messages.inc.php:330 server_privileges.php:1597 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -3848,123 +3848,123 @@ msgstr "" "αλλαγές χειροκίνητα. Σε αυτήν την περίπτωση, θα πρέπει να %sεπαναφορτώσετε " "τα δικαιώματα%s πριν συνεχίσετε." -#: libraries/messages.inc.php:335 server_status.php:289 +#: libraries/messages.inc.php:331 server_status.php:289 msgid "Flush query cache" msgstr "Εκκαθάριση λανθάνουσας μνήμης ερωτημάτων" -#: libraries/messages.inc.php:336 +#: libraries/messages.inc.php:332 msgid "Flush the table (\"FLUSH\")" msgstr "Εκκαθάριση («FLUSH») πίνακα" -#: libraries/messages.inc.php:337 server_status.php:271 +#: libraries/messages.inc.php:333 server_status.php:271 msgid "Flush (close) all tables" msgstr "Εκκαθάριση (κλείσιμο) όλων των πινάκων" -#: libraries/messages.inc.php:339 tbl_relation.php:279 +#: libraries/messages.inc.php:335 tbl_relation.php:279 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" "Σφάλμα δημιουργίας μη διακριτού κλειδιού στο %1$s (ελέξτε τους τύπους " "δεδομένων)" -#: libraries/messages.inc.php:341 setup/lib/messages.inc.php:88 +#: libraries/messages.inc.php:337 setup/lib/messages.inc.php:88 #: tbl_printview.php:376 tbl_structure.php:738 msgid "Format" msgstr "Μορφοποίηση" -#: libraries/messages.inc.php:344 server_replication.php:325 +#: libraries/messages.inc.php:340 server_replication.php:325 msgid "Full start" msgstr "Πλήρης εκκίνηση" -#: libraries/messages.inc.php:345 server_replication.php:325 +#: libraries/messages.inc.php:341 server_replication.php:325 msgid "Full stop" msgstr "Πλήρες σταμάτημα" -#: libraries/messages.inc.php:347 tbl_change.php:282 tbl_change.php:320 +#: libraries/messages.inc.php:343 tbl_change.php:282 tbl_change.php:320 msgid "Function" msgstr "Έλεγχος" -#: libraries/messages.inc.php:355 libraries/mysql_charsets.lib.php:377 +#: libraries/messages.inc.php:351 libraries/mysql_charsets.lib.php:377 msgid "Georgian" msgstr "Γεωργιανά" -#: libraries/messages.inc.php:356 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:352 libraries/mysql_charsets.lib.php:247 #: libraries/mysql_charsets.lib.php:250 msgid "German" msgstr "Γερμανικά" -#: libraries/messages.inc.php:357 themes.php:42 +#: libraries/messages.inc.php:353 themes.php:42 msgid "Get more themes!" msgstr "Λήψη περισσότερων θεμάτων!" -#: libraries/messages.inc.php:358 server_privileges.php:2134 +#: libraries/messages.inc.php:354 server_privileges.php:2134 msgid "global" msgstr "Γενικός" -#: libraries/messages.inc.php:359 server_privileges.php:524 +#: libraries/messages.inc.php:355 server_privileges.php:524 #: server_privileges.php:1500 msgid "Global privileges" msgstr "Γενικά δικαιώματα" -#: libraries/messages.inc.php:360 server_variables.php:55 +#: libraries/messages.inc.php:356 server_variables.php:55 #: server_variables.php:89 msgid "Global value" msgstr "Προεπιλεγμένη τιμή" -#: libraries/messages.inc.php:365 server_privileges.php:1502 +#: libraries/messages.inc.php:361 server_privileges.php:1502 #: server_privileges.php:1684 server_privileges.php:2033 msgid "Grant" msgstr "Χορήγηση" -#: libraries/messages.inc.php:366 libraries/mysql_charsets.lib.php:380 +#: libraries/messages.inc.php:362 libraries/mysql_charsets.lib.php:380 msgid "Greek" msgstr "Ελληνικά" -#: libraries/messages.inc.php:367 +#: libraries/messages.inc.php:363 msgid "\"gzipped\"" msgstr "συμπίεση «gzip»" -#: libraries/messages.inc.php:369 server_status.php:250 +#: libraries/messages.inc.php:365 server_status.php:250 msgid "Handler" msgstr "Χειριστής" -#: libraries/messages.inc.php:370 server_synchronize.php:464 +#: libraries/messages.inc.php:366 server_synchronize.php:464 msgid "Selected target tables have been synchronized with source tables." msgstr "" "Οι επιλεγμένοι πίνακες προορισμου έχουν συγχρονιστεί με τους πίνακες " "προέλευσης." -#: libraries/messages.inc.php:372 libraries/mysql_charsets.lib.php:374 +#: libraries/messages.inc.php:368 libraries/mysql_charsets.lib.php:374 msgid "Hebrew" msgstr "Εβραϊκά" -#: libraries/messages.inc.php:373 pmd_general.php:83 +#: libraries/messages.inc.php:369 pmd_general.php:83 msgid "Help" msgstr "Βοήθεια" -#: libraries/messages.inc.php:374 +#: libraries/messages.inc.php:370 msgid "Use hexadecimal for BLOB" msgstr "Χρήση δεκαεξαδικού για τον BLOB" -#: libraries/messages.inc.php:376 pmd_general.php:120 +#: libraries/messages.inc.php:372 pmd_general.php:120 msgid "Hide/Show all" msgstr "Απόκρυψη/Προβολή όλων" -#: libraries/messages.inc.php:377 pmd_general.php:124 +#: libraries/messages.inc.php:373 pmd_general.php:124 msgid "Hide/Show Tables with no relation" msgstr "Απόκρυψη/Εμφάνιση Πινάκων χωρίς συσχέτιση" -#: libraries/messages.inc.php:378 libraries/navigation_header.inc.php:54 +#: libraries/messages.inc.php:374 libraries/navigation_header.inc.php:54 #: libraries/navigation_header.inc.php:57 #: libraries/navigation_header.inc.php:58 msgid "Home" msgstr "Κεντρική σελίδα" -#: libraries/messages.inc.php:379 main.php:233 +#: libraries/messages.inc.php:375 main.php:233 msgid "Official Homepage" msgstr "Επίσημη σελίδα του phpMyAdmin" -#: libraries/messages.inc.php:382 libraries/replication_gui.lib.php:327 +#: libraries/messages.inc.php:378 libraries/replication_gui.lib.php:327 #: server_privileges.php:753 msgid "" "When Host table is used, this field is ignored and values stored in Host " @@ -3973,98 +3973,98 @@ msgstr "" "Όταν χρησιμοποιείται ο Οικείος πίνακας, παραβλέπεται αυτό το πεδίο και " "χρησιμοποιούνται τιμές που είναι αποθηκευμένες στον Οικείο πίνακα." -#: libraries/messages.inc.php:383 +#: libraries/messages.inc.php:379 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/messages.inc.php:384 libraries/mysql_charsets.lib.php:253 +#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:253 msgid "Hungarian" msgstr "Ουγγρικά" -#: libraries/messages.inc.php:386 libraries/mysql_charsets.lib.php:256 +#: libraries/messages.inc.php:382 libraries/mysql_charsets.lib.php:256 msgid "Icelandic" msgstr "Ισλανδικά" -#: libraries/messages.inc.php:387 server_processlist.php:53 +#: libraries/messages.inc.php:383 server_processlist.php:53 msgid "ID" msgstr "ID" -#: libraries/messages.inc.php:388 libraries/mult_submits.inc.php:108 +#: libraries/messages.inc.php:384 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:479 msgid "Fulltext" msgstr "Πλήρες κείμενο" -#: libraries/messages.inc.php:389 +#: libraries/messages.inc.php:385 msgid "Ignore duplicate rows" msgstr "Παράβλεψη διπλών γραμμών" -#: libraries/messages.inc.php:390 tbl_change.php:302 tbl_indexes.php:200 +#: libraries/messages.inc.php:386 tbl_change.php:302 tbl_indexes.php:200 #: tbl_indexes.php:225 msgid "Ignore" msgstr "Παράληψη" -#: libraries/messages.inc.php:391 +#: libraries/messages.inc.php:387 msgid "Use ignore inserts" msgstr "Χρήση παραβλεφθέντων εισαγωγών" -#: libraries/messages.inc.php:392 +#: libraries/messages.inc.php:388 msgid "Column names in first row" msgstr "Ονόματα στήλης στην πρώτη γραμμή" -#: libraries/messages.inc.php:393 +#: libraries/messages.inc.php:389 msgid "Do not import empty rows" msgstr "Να μην γίνει εισαγωγή άδειων γραμμών" -#: libraries/messages.inc.php:394 pmd_general.php:104 +#: libraries/messages.inc.php:390 pmd_general.php:104 msgid "Import/Export coordinates for PDF schema" msgstr "Εισαγωγή/Εξαγωγή συντεταγμένων για σχέδιο PDF" -#: libraries/messages.inc.php:395 querywindow.php:104 +#: libraries/messages.inc.php:391 querywindow.php:104 msgid "Import files" msgstr "Εισαγωγή αρχείων" -#: libraries/messages.inc.php:403 +#: libraries/messages.inc.php:399 msgid "Import currencies ($5.00 to 5.00)" msgstr "Εισαγωγή νομισμάτων (€5,00 αντί 5,00)" -#: libraries/messages.inc.php:404 libraries/messages.inc.php:584 +#: libraries/messages.inc.php:400 libraries/messages.inc.php:580 msgid "Open Document Spreadsheet" msgstr "Έγγραφο Λογιστικού Φύλλου Ανοιχτού Κώδικα (ODS)" -#: libraries/messages.inc.php:405 +#: libraries/messages.inc.php:401 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "Εισαγωγή ποσοστών ως κανονικά δεκαδικά (12.00% αντί .12)" -#: libraries/messages.inc.php:409 +#: libraries/messages.inc.php:405 msgid "Excel 97-2003 XLS Workbook" msgstr "Βιβλίο εργασίας Excel 97-2003 XLS" -#: libraries/messages.inc.php:410 +#: libraries/messages.inc.php:406 msgid "Excel 2007 XLSX Workbook" msgstr "Βιβλίο εργασίας Excel 2007 XLSX" -#: libraries/messages.inc.php:414 libraries/mult_submits.inc.php:98 +#: libraries/messages.inc.php:410 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:476 tbl_structure.php:674 msgid "Index" msgstr "Ευρετήριο" -#: libraries/messages.inc.php:415 tbl_indexes.php:168 +#: libraries/messages.inc.php:411 tbl_indexes.php:168 msgid "Index name:" msgstr "Όνομα ευρετηρίου :" -#: libraries/messages.inc.php:416 tbl_indexes.php:174 +#: libraries/messages.inc.php:412 tbl_indexes.php:174 msgid "Index type:" msgstr "Τύπος ευρετηρίου :" -#: libraries/messages.inc.php:417 sql.php:639 +#: libraries/messages.inc.php:413 sql.php:639 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Προβλήματα με τα ευρετήρια στον πίνακα «%s»" -#: libraries/messages.inc.php:427 main.php:266 +#: libraries/messages.inc.php:423 main.php:266 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -4076,24 +4076,24 @@ msgstr "" "διακομιστής MySQL σας που τρέχει με αυτή τη ρύθμιση, είναι ανοιχτός σε " "επιθέσεις και θα πρέπει να διορθώσετε το πρόβλημα." -#: libraries/messages.inc.php:428 tbl_change.php:1130 +#: libraries/messages.inc.php:424 tbl_change.php:1130 msgid "Insert as new row" msgstr "Εισαγωγή ως νέα εγγραφή" -#: libraries/messages.inc.php:429 sql.php:496 tbl_replace.php:386 +#: libraries/messages.inc.php:425 sql.php:496 tbl_replace.php:386 #, php-format msgid "Inserted row id: %1$d" msgstr "Ταυτότητα εισερχόμενης εγγραφής: %1$d" -#: libraries/messages.inc.php:430 tbl_change.php:1131 +#: libraries/messages.inc.php:426 tbl_change.php:1131 msgid "Insert as new row and ignore errors" msgstr "Εισαγωγή ως νέα γραμμή και παράβλεψη σφαλμάτων" -#: libraries/messages.inc.php:432 main.php:139 +#: libraries/messages.inc.php:428 main.php:139 msgid "Interface" msgstr "Περιβάλλον εργασίας" -#: libraries/messages.inc.php:433 tbl_relation.php:407 +#: libraries/messages.inc.php:429 tbl_relation.php:407 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -4101,31 +4101,31 @@ msgstr "" "Μια εσωτερική συσχέτιση δεν είναι απαραίτητη όταν υπάρχει μια αντίστοιχη " "συσχέτιση ΜΗ ΔΙΑΚΡΙΤΟΥ ΚΛΕΙΔΙΟΥ (FOREIGN KEY)." -#: libraries/messages.inc.php:435 pdf_pages.php:303 +#: libraries/messages.inc.php:431 pdf_pages.php:303 msgid "Internal relations" msgstr "Εσωτερικές συσχετίσεις" -#: libraries/messages.inc.php:438 tbl_indexes.php:256 tbl_structure.php:590 +#: libraries/messages.inc.php:434 tbl_indexes.php:256 tbl_structure.php:590 #: tbl_structure.php:601 msgid "Column count has to be larger than zero." msgstr "Το πλήθος των στηλών δεν πρέπει να είναι μηδέν." -#: libraries/messages.inc.php:444 libraries/tbl_properties.inc.php:784 +#: libraries/messages.inc.php:440 libraries/tbl_properties.inc.php:784 #: tbl_structure.php:537 msgid "You have to add at least one field." msgstr "Πρέπει να προσθέσετε τουλάχιστον ένα πεδίο." -#: libraries/messages.inc.php:449 +#: libraries/messages.inc.php:445 #, php-format msgid "Invalid server index: \"%s\"" msgstr "Μη έγκυρο ευρετήριο διακομιστή: «%s»" -#: libraries/messages.inc.php:452 libraries/mysql_charsets.lib.php:259 +#: libraries/messages.inc.php:448 libraries/mysql_charsets.lib.php:259 #: libraries/mysql_charsets.lib.php:349 msgid "Japanese" msgstr "Ιαπωνικά" -#: libraries/messages.inc.php:453 main.php:331 +#: libraries/messages.inc.php:449 main.php:331 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " @@ -4135,109 +4135,109 @@ msgstr "" "σας. Μερικές λειτουργίες του phpMyAdmin δεν θα υφίσταται. Για παράδειγμα το " "πλαίσιο πλοήγησης δεν θα ανανεώνεται αυτόματα." -#: libraries/messages.inc.php:454 server_status.php:257 +#: libraries/messages.inc.php:450 server_status.php:257 msgid "Joins" msgstr "Ενώσεις" -#: libraries/messages.inc.php:457 server_privileges.php:763 +#: libraries/messages.inc.php:453 server_privileges.php:763 msgid "Do not change the password" msgstr "Διατήρηση κωδικού πρόσβασης" -#: libraries/messages.inc.php:458 server_status.php:256 +#: libraries/messages.inc.php:454 server_status.php:256 msgid "Key cache" msgstr "Λανθάνουσα μνήμη κλειδιού" -#: libraries/messages.inc.php:462 libraries/mysql_charsets.lib.php:268 +#: libraries/messages.inc.php:458 libraries/mysql_charsets.lib.php:268 #: libraries/mysql_charsets.lib.php:371 msgid "Korean" msgstr "Κορεατικά" -#: libraries/messages.inc.php:466 libraries/select_lang.lib.php:480 +#: libraries/messages.inc.php:462 libraries/select_lang.lib.php:480 #: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492 #, php-format msgid "Unknown language: %1$s." msgstr "Άγνωστη γλώσσα: %1$s." -#: libraries/messages.inc.php:468 +#: libraries/messages.inc.php:464 msgid "Table caption" msgstr "Λεζάντα πίνακα" -#: libraries/messages.inc.php:469 +#: libraries/messages.inc.php:465 msgid "Content of table __TABLE__" msgstr "Περιεχόμενο του πίνακα __TABLE__" -#: libraries/messages.inc.php:470 +#: libraries/messages.inc.php:466 msgid "Continued table caption" msgstr "Συνεχής λεζάντα πίνακα" -#: libraries/messages.inc.php:471 +#: libraries/messages.inc.php:467 msgid "(continued)" msgstr "(συνεχίζεται)" -#: libraries/messages.inc.php:472 +#: libraries/messages.inc.php:468 msgid "Include table caption" msgstr "Συμπερίληψη λεζάντας πίνακα" -#: libraries/messages.inc.php:473 +#: libraries/messages.inc.php:469 msgid "Label key" msgstr "Κλειδί ετικέτας" -#: libraries/messages.inc.php:474 +#: libraries/messages.inc.php:470 msgid "LaTeX" msgstr "LaTeX" -#: libraries/messages.inc.php:475 +#: libraries/messages.inc.php:471 msgid "Structure of table __TABLE__" msgstr "Δομή του πίνακα __TABLE__" -#: libraries/messages.inc.php:476 libraries/mysql_charsets.lib.php:262 +#: libraries/messages.inc.php:472 libraries/mysql_charsets.lib.php:262 msgid "Latvian" msgstr "Λιθουανικά" -#: libraries/messages.inc.php:477 +#: libraries/messages.inc.php:473 msgid "CSV using LOAD DATA" msgstr "CSV με χρήση ΦΟΡΤΩΣΗΣ ΔΕΔΟΜΕΝΩΝ (LOAD DATA)" -#: libraries/messages.inc.php:478 +#: libraries/messages.inc.php:474 msgid "Use LOCAL keyword" msgstr "Χρήση ΤΟΠΙΚΟΥ πληκτρολογίου" -#: libraries/messages.inc.php:479 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:475 libraries/tbl_properties.inc.php:105 msgid "Length/Values" msgstr "Μήκος/Τιμές*" -#: libraries/messages.inc.php:480 tbl_select.php:295 +#: libraries/messages.inc.php:476 tbl_select.php:295 msgid "Number of rows per page" msgstr "Εγγραφές ανά σελίδα" -#: libraries/messages.inc.php:484 libraries/mysql_charsets.lib.php:265 +#: libraries/messages.inc.php:480 libraries/mysql_charsets.lib.php:265 msgid "Lithuanian" msgstr "Λιθουανικά" -#: libraries/messages.inc.php:485 libraries/replication_gui.lib.php:302 +#: libraries/messages.inc.php:481 libraries/replication_gui.lib.php:302 #: server_privileges.php:729 msgid "Local" msgstr "Τοπικό" -#: libraries/messages.inc.php:487 server_privileges.php:669 +#: libraries/messages.inc.php:483 server_privileges.php:669 msgid "Login Information" msgstr "Πληροφορίες Σύνδεσης" -#: libraries/messages.inc.php:490 libraries/navigation_header.inc.php:67 +#: libraries/messages.inc.php:486 libraries/navigation_header.inc.php:67 #: libraries/navigation_header.inc.php:70 #: libraries/navigation_header.inc.php:71 main.php:99 msgid "Log out" msgstr "Αποσύνδεση" -#: libraries/messages.inc.php:497 server_status.php:440 +#: libraries/messages.inc.php:493 server_status.php:440 msgid "max. concurrent connections" msgstr "μέγιστος αριθμός ταυτόχρονων συνδέσεων" -#: libraries/messages.inc.php:498 +#: libraries/messages.inc.php:494 msgid "Maximal length of created query" msgstr "Μέγιστο μήκος δημιουργηθέντος ερωτήματος" -#: libraries/messages.inc.php:500 main.php:282 +#: libraries/messages.inc.php:496 main.php:282 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -4248,7 +4248,7 @@ msgstr "" "μπορεί να χωρίσει συμβολοσειρές σωστά και ίσως προκύψουν μη αναμενόμενα " "αποτελέσματα." -#: libraries/messages.inc.php:501 main.php:274 +#: libraries/messages.inc.php:497 main.php:274 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -4258,24 +4258,24 @@ msgstr "" "επιλογή είναι ασύμβατη με το phpMyAdmin και ίσως προκαλέσει πρόβλημα με " "μερικά δεδομένα!" -#: libraries/messages.inc.php:502 +#: libraries/messages.inc.php:498 msgid "MediaWiki Table" msgstr "Πίνακας MediaWiki" -#: libraries/messages.inc.php:503 transformation_overview.php:25 +#: libraries/messages.inc.php:499 transformation_overview.php:25 msgid "Available MIME types" msgstr "Διαθέσιμοι τύποι MIME" -#: libraries/messages.inc.php:504 transformation_overview.php:43 +#: libraries/messages.inc.php:500 transformation_overview.php:43 msgid "Available transformations" msgstr "Διαθέσιμες μετατροπές" -#: libraries/messages.inc.php:505 +#: libraries/messages.inc.php:501 msgctxt "$strMIME_description" msgid "Description" msgstr "Περιγραφή" -#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:580 +#: libraries/messages.inc.php:503 libraries/tbl_properties.inc.php:580 #: transformation_overview.php:60 #, php-format msgid "" @@ -4285,7 +4285,7 @@ msgstr "" "Δεν υπάρχει διαθέσιμη περιγραφή για αυτή τη μετατροπή.
Απευθύνθείτε " "στον δημιουργό της για να μάθετε τι κάνει η μετατροπή %s." -#: libraries/messages.inc.php:509 libraries/tbl_properties.inc.php:137 +#: libraries/messages.inc.php:505 libraries/tbl_properties.inc.php:137 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -4294,7 +4294,7 @@ msgstr "" "Για μία λίστα με τις διαθέσιμες μετατροπές και τις μετατροπές τύπου MIME, " "πατήστε %sπεριγραφές μετατροπών%s" -#: libraries/messages.inc.php:510 libraries/tbl_properties.inc.php:146 +#: libraries/messages.inc.php:506 libraries/tbl_properties.inc.php:146 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -4306,58 +4306,58 @@ msgstr "" "εισαγωγικά («'») στις τιμές, χρησιμοποιείτε καθέτους (παράδειγμα '\\\\χψω' ή " "'α\\'β')." -#: libraries/messages.inc.php:511 libraries/tbl_properties.inc.php:145 +#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:145 msgid "Transformation options" msgstr "Επιλογές μετατροπής" -#: libraries/messages.inc.php:513 transformation_overview.php:38 +#: libraries/messages.inc.php:509 transformation_overview.php:38 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "" "Οι τύποι MIME που εμφανίζονται με πλάγια γράμματα δεν έχουν ξεχωριστή " "λειτουργία μετατροπής" -#: libraries/messages.inc.php:515 tbl_indexes.php:162 +#: libraries/messages.inc.php:511 tbl_indexes.php:162 msgid "Modify an index" msgstr "Αλλαγή ενός ευρετηρίου" -#: libraries/messages.inc.php:517 pmd_general.php:108 +#: libraries/messages.inc.php:513 pmd_general.php:108 msgid "Move Menu" msgstr "Μενου μετακίνησης" -#: libraries/messages.inc.php:518 tbl_operations.php:276 +#: libraries/messages.inc.php:514 tbl_operations.php:276 msgid "Move table to (database.table):" msgstr "Μεταφορά πίνακα σε (βάση.πίνακας):" -#: libraries/messages.inc.php:519 tbl_move_copy.php:56 +#: libraries/messages.inc.php:515 tbl_move_copy.php:56 #, php-format msgid "Table %s has been moved to %s." msgstr "Ο πίνακας %s μεταφέρθηκε στο %s." -#: libraries/messages.inc.php:520 tbl_move_copy.php:46 +#: libraries/messages.inc.php:516 tbl_move_copy.php:46 msgid "Can't move table to same one!" msgstr "Δεν είναι δυνατή η μεταφορά του πίνακα στον εαυτό του!" -#: libraries/messages.inc.php:521 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:517 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 #: libraries/mysql_charsets.lib.php:332 libraries/mysql_charsets.lib.php:354 #: libraries/mysql_charsets.lib.php:365 msgid "multilingual" msgstr "πολυγλωσσικό" -#: libraries/messages.inc.php:534 main.php:193 +#: libraries/messages.inc.php:530 main.php:193 msgid "MySQL charset" msgstr "Σύνολο χαρακτήρων MySQL" -#: libraries/messages.inc.php:535 main.php:211 +#: libraries/messages.inc.php:531 main.php:211 msgid "MySQL client version" msgstr "Έκδοση πελάτη MySQL" -#: libraries/messages.inc.php:536 main.php:125 +#: libraries/messages.inc.php:532 main.php:125 msgid "MySQL connection collation" msgstr "Σύνθεση σύνδεσης MySQL" -#: libraries/messages.inc.php:537 main.php:346 +#: libraries/messages.inc.php:533 main.php:346 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -4366,54 +4366,54 @@ msgstr "" "Η έκδοση της βιβλιοθήκης PHP MySQL (%s) διαφέρει από την έκδοση του " "διακομιστή MySQL (%s). Αυτό ίσως έχει μη προβλέψιμα αποτελέσματα." -#: libraries/messages.inc.php:539 server_status.php:294 +#: libraries/messages.inc.php:535 server_status.php:294 msgid "Show processes" msgstr "Εμφάνιση διεργασιών" -#: libraries/messages.inc.php:545 navigation.php:210 server_databases.php:371 +#: libraries/messages.inc.php:541 navigation.php:210 server_databases.php:371 #: server_synchronize.php:1191 msgid "No databases" msgstr "Δεν υπάρχουν βάσεις δεδομένων" -#: libraries/messages.inc.php:546 server_databases.php:52 +#: libraries/messages.inc.php:542 server_databases.php:52 msgid "No databases selected." msgstr "Δεν έχετε επιλέξει βάσεις δεδομένων." -#: libraries/messages.inc.php:548 libraries/relation.lib.php:1173 +#: libraries/messages.inc.php:544 libraries/relation.lib.php:1173 msgid "no description" msgstr "χωρίς περιγραφή" -#: libraries/messages.inc.php:552 libraries/zip_extension.lib.php:26 +#: libraries/messages.inc.php:548 libraries/zip_extension.lib.php:26 msgid "No files found inside ZIP archive!" msgstr "Δεν βρέθηκαν αρχεία στο συμπιεσμένο αρχείο ZIP!" -#: libraries/messages.inc.php:555 tbl_indexes.php:91 +#: libraries/messages.inc.php:551 tbl_indexes.php:91 msgid "No index parts defined!" msgstr "Δεν ορίστηκαν τα στοιχεία του ευρετηρίου!" -#: libraries/messages.inc.php:556 libraries/mult_submits.inc.php:435 +#: libraries/messages.inc.php:552 libraries/mult_submits.inc.php:435 #: tbl_replace.php:331 msgid "No change" msgstr "Χωρίς αλλαγή" -#: libraries/messages.inc.php:557 +#: libraries/messages.inc.php:553 msgctxt "$strNoneDefault" msgid "None" msgstr "Κανένα" -#: libraries/messages.inc.php:560 libraries/plugin_interface.lib.php:312 +#: libraries/messages.inc.php:556 libraries/plugin_interface.lib.php:312 msgid "This format has no options" msgstr "Αυτή η μορφή δεν έχει επιλογές" -#: libraries/messages.inc.php:565 user_password.php:54 +#: libraries/messages.inc.php:561 user_password.php:54 msgid "You don't have sufficient privileges to be here right now!" msgstr "Δεν έχετε αρκετά δικαιώματα να είσαστε εδώ τώρα!" -#: libraries/messages.inc.php:566 tbl_row_action.php:29 +#: libraries/messages.inc.php:562 tbl_row_action.php:29 msgid "No rows selected" msgstr "Δεν επιλέχθηκαν γραμμές" -#: libraries/messages.inc.php:569 themes.php:32 +#: libraries/messages.inc.php:565 themes.php:32 #, php-format msgid "" "No themes support; please check your configuration and/or your themes in " @@ -4422,296 +4422,296 @@ msgstr "" "Δεν υποστηρίζονται θέματα. Ελέξτε τις ρυθμίσεις σας και/ή τα θέματά σας στο " "φάκελο %s." -#: libraries/messages.inc.php:571 libraries/relation.lib.php:95 +#: libraries/messages.inc.php:567 libraries/relation.lib.php:95 msgid "not OK" msgstr "ΛΑΘΟΣ" -#: libraries/messages.inc.php:572 server_synchronize.php:400 +#: libraries/messages.inc.php:568 server_synchronize.php:400 #: server_synchronize.php:839 msgid "not present" msgstr "δεν υφίσταται" -#: libraries/messages.inc.php:573 pdf_pages.php:36 pdf_pages.php:42 +#: libraries/messages.inc.php:569 pdf_pages.php:36 pdf_pages.php:42 #: pdf_pages.php:48 pdf_pages.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "Ο πίνακας %s δεν βρέθηκε ή δεν ορίστηκε στη %s" -#: libraries/messages.inc.php:574 server_privileges.php:804 +#: libraries/messages.inc.php:570 server_privileges.php:804 #: server_privileges.php:2166 msgid "No user(s) found." msgstr "Δεν βρέθηκαν χρήστες." -#: libraries/messages.inc.php:578 pmd_general.php:164 +#: libraries/messages.inc.php:574 pmd_general.php:164 msgid "Number of tables" msgstr "Αριθμός πινάκων" -#: libraries/messages.inc.php:581 server_databases.php:117 +#: libraries/messages.inc.php:577 server_databases.php:117 #: server_status.php:260 setup/lib/messages.inc.php:117 msgid "Tables" msgstr "Πίνακες" -#: libraries/messages.inc.php:583 libraries/relation.lib.php:99 +#: libraries/messages.inc.php:579 libraries/relation.lib.php:99 #: pmd_general.php:340 msgid "OK" msgstr "Εντάξει" -#: libraries/messages.inc.php:585 +#: libraries/messages.inc.php:581 msgid "Open Document Text" msgstr "Έγγραφο Κειμένου Ανοιχτού Κώδικα (ODΤ)" -#: libraries/messages.inc.php:588 tbl_select.php:138 +#: libraries/messages.inc.php:584 tbl_select.php:138 msgid "Operator" msgstr "Τελεστής" -#: libraries/messages.inc.php:589 tbl_operations.php:662 +#: libraries/messages.inc.php:585 tbl_operations.php:662 msgid "Optimize" msgstr "Βελτιστοποίηση" -#: libraries/messages.inc.php:602 libraries/tbl_properties.inc.php:755 +#: libraries/messages.inc.php:598 libraries/tbl_properties.inc.php:755 msgid "PARTITION definition" msgstr "Ορισμός ΚΑΤΑΤΜΗΣΗΣ (PARTITION)" -#: libraries/messages.inc.php:603 tbl_structure.php:757 +#: libraries/messages.inc.php:599 tbl_structure.php:757 msgid "partitioned" msgstr "κατατμήθηκε" -#: libraries/messages.inc.php:604 tbl_operations.php:649 +#: libraries/messages.inc.php:600 tbl_operations.php:649 msgid "Partition maintenance" msgstr "Συντήρηση κατάτμησης" -#: libraries/messages.inc.php:605 tbl_operations.php:657 +#: libraries/messages.inc.php:601 tbl_operations.php:657 #, php-format msgid "Partition %s" msgstr "Κατάτμηση %s" -#: libraries/messages.inc.php:606 server_privileges.php:1212 +#: libraries/messages.inc.php:602 server_privileges.php:1212 #, php-format msgid "The password for %s was changed successfully." msgstr "Ο Κωδικός Πρόσβασης για τον χρήστη %s άλλαξε επιτυχώς." -#: libraries/messages.inc.php:635 +#: libraries/messages.inc.php:631 #, php-format msgid "Schema of the \"%s\" database - Page %s" msgstr "Σχήμα της βάσης «%s» - Σελίδα %s" -#: libraries/messages.inc.php:636 +#: libraries/messages.inc.php:632 #, php-format msgid "The \"%s\" table doesn't exist!" msgstr "Ο πίνακας «%s» δεν υπάρχει!" -#: libraries/messages.inc.php:637 pdf_schema.php:1013 +#: libraries/messages.inc.php:633 pdf_schema.php:1013 msgid "No tables" msgstr "Δεν υπάρχουν πίνακες" -#: libraries/messages.inc.php:638 pmd_pdf.php:63 +#: libraries/messages.inc.php:634 pmd_pdf.php:63 msgid "Page has been created" msgstr "Η σελίδα δημιουργήθηκε" -#: libraries/messages.inc.php:639 pmd_pdf.php:65 +#: libraries/messages.inc.php:635 pmd_pdf.php:65 msgid "Page creation failed" msgstr "Η δημιουργία σελίδας απέτυχε" -#: libraries/messages.inc.php:640 +#: libraries/messages.inc.php:636 msgid "PDF" msgstr "PDF" -#: libraries/messages.inc.php:641 +#: libraries/messages.inc.php:637 msgid "(Generates a report containing the data of a single table)" msgstr "(Δημιουργεί μια αναφορά με τα δεδομένα ενός πίνακα)" -#: libraries/messages.inc.php:642 +#: libraries/messages.inc.php:638 msgid "Report title" msgstr "Τίτλος αναφοράς" -#: libraries/messages.inc.php:643 server_status.php:389 server_status.php:434 +#: libraries/messages.inc.php:639 server_status.php:389 server_status.php:434 #: server_status.php:497 server_status.php:555 msgid "per hour" msgstr "ανά ώρα" -#: libraries/messages.inc.php:644 server_status.php:498 +#: libraries/messages.inc.php:640 server_status.php:498 msgid "per minute" msgstr "ανά λεπτό" -#: libraries/messages.inc.php:645 server_status.php:499 +#: libraries/messages.inc.php:641 server_status.php:499 msgid "per second" msgstr "ανά δευτερόλεπτο" -#: libraries/messages.inc.php:646 libraries/mysql_charsets.lib.php:271 +#: libraries/messages.inc.php:642 libraries/mysql_charsets.lib.php:271 msgid "Persian" msgstr "Περσικά" -#: libraries/messages.inc.php:647 libraries/mysql_charsets.lib.php:250 +#: libraries/messages.inc.php:643 libraries/mysql_charsets.lib.php:250 msgid "phone book" msgstr "τηλ. κατάλογος" -#: libraries/messages.inc.php:648 +#: libraries/messages.inc.php:644 msgid "PHP array" msgstr "σειρά PHP" -#: libraries/messages.inc.php:650 main.php:213 +#: libraries/messages.inc.php:646 main.php:213 msgid "PHP extension" msgstr "Επέκταση PHP" -#: libraries/messages.inc.php:654 libraries/relation.lib.php:163 +#: libraries/messages.inc.php:650 libraries/relation.lib.php:163 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/messages.inc.php:655 libraries/relation.lib.php:159 +#: libraries/messages.inc.php:651 libraries/relation.lib.php:159 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/messages.inc.php:656 libraries/relation.lib.php:161 +#: libraries/messages.inc.php:652 libraries/relation.lib.php:161 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" -#: libraries/messages.inc.php:657 libraries/relation.lib.php:162 +#: libraries/messages.inc.php:653 libraries/relation.lib.php:162 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/messages.inc.php:658 libraries/relation.lib.php:164 +#: libraries/messages.inc.php:654 libraries/relation.lib.php:164 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/messages.inc.php:661 libraries/mysql_charsets.lib.php:274 +#: libraries/messages.inc.php:657 libraries/mysql_charsets.lib.php:274 msgid "Polish" msgstr "Πολωνικά" -#: libraries/messages.inc.php:662 libraries/replication_gui.lib.php:67 +#: libraries/messages.inc.php:658 libraries/replication_gui.lib.php:67 #: server_synchronize.php:1163 msgid "Port" msgstr "Θύρα" -#: libraries/messages.inc.php:667 tbl_indexes.php:67 +#: libraries/messages.inc.php:663 tbl_indexes.php:67 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Το όνομα του πρωτεύοντος κλειδιού πρέπει να είναι... PRIMARY!" -#: libraries/messages.inc.php:668 tbl_indexes.php:184 +#: libraries/messages.inc.php:664 tbl_indexes.php:184 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" "(«PRIMARY» πρέπει να είναι το όνομα του πρωτεύοντος κλειδιού και " "μόνο αυτού !)" -#: libraries/messages.inc.php:669 libraries/mult_submits.inc.php:76 +#: libraries/messages.inc.php:665 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:474 msgid "Primary" msgstr "Πρωτεύον" -#: libraries/messages.inc.php:673 server_privileges.php:227 +#: libraries/messages.inc.php:669 server_privileges.php:227 msgid "Includes all privileges except GRANT." msgstr "Περιλαμβάνει όλα τα δικαιώματα εκτός από το GRANT." -#: libraries/messages.inc.php:674 server_privileges.php:153 +#: libraries/messages.inc.php:670 server_privileges.php:153 #: server_privileges.php:476 msgid "Allows altering the structure of existing tables." msgstr "Επιτρέπει την αλλαγή δομής των υπαρχόντων πινάκων." -#: libraries/messages.inc.php:675 server_privileges.php:169 +#: libraries/messages.inc.php:671 server_privileges.php:169 #: server_privileges.php:482 msgid "Allows altering and dropping stored routines." msgstr "Επιτρέπει την αλλαγή και διαγραφή αποθηκευμένων εργασιών." -#: libraries/messages.inc.php:676 server_privileges.php:145 +#: libraries/messages.inc.php:672 server_privileges.php:145 #: server_privileges.php:475 msgid "Allows creating new databases and tables." msgstr "Επιτρέπει τη δημιουργία νέων βάσεων και πινάκων." -#: libraries/messages.inc.php:677 server_privileges.php:168 +#: libraries/messages.inc.php:673 server_privileges.php:168 #: server_privileges.php:481 msgid "Allows creating stored routines." msgstr "Επιτρέπει τη δημιουργία αποθηκευμένων εργασιών." -#: libraries/messages.inc.php:678 server_privileges.php:475 +#: libraries/messages.inc.php:674 server_privileges.php:475 msgid "Allows creating new tables." msgstr "Επιτρέπει τη δημιουργία νέων πινάκων." -#: libraries/messages.inc.php:679 server_privileges.php:156 +#: libraries/messages.inc.php:675 server_privileges.php:156 #: server_privileges.php:479 msgid "Allows creating temporary tables." msgstr "Επιτρέπει τη δημιουργία προσωρινών πινάκων." -#: libraries/messages.inc.php:680 server_privileges.php:170 +#: libraries/messages.inc.php:676 server_privileges.php:170 #: server_privileges.php:515 msgid "Allows creating, dropping and renaming user accounts." msgstr "Επιτρέπει τη δημιουργία, διαγραφή και μετονομασία λογαριασμών χρηστών." -#: libraries/messages.inc.php:681 server_privileges.php:160 +#: libraries/messages.inc.php:677 server_privileges.php:160 #: server_privileges.php:164 server_privileges.php:487 #: server_privileges.php:491 msgid "Allows creating new views." msgstr "Επιτρέπει τη δημιουργία νέων προβολών." -#: libraries/messages.inc.php:682 server_privileges.php:144 +#: libraries/messages.inc.php:678 server_privileges.php:144 #: server_privileges.php:467 msgid "Allows deleting data." msgstr "Επιτρέπει τη διαγραφή δεδομένων." -#: libraries/messages.inc.php:683 server_privileges.php:146 +#: libraries/messages.inc.php:679 server_privileges.php:146 #: server_privileges.php:478 msgid "Allows dropping databases and tables." msgstr "Επιτρέπει τη διαγραφή βάσεων και πινάκων." -#: libraries/messages.inc.php:684 server_privileges.php:478 +#: libraries/messages.inc.php:680 server_privileges.php:478 msgid "Allows dropping tables." msgstr "Επιτρέπει τη διαγραφή πινάκων." -#: libraries/messages.inc.php:685 server_privileges.php:161 +#: libraries/messages.inc.php:681 server_privileges.php:161 #: server_privileges.php:495 msgid "Allows to set up events for the event scheduler" msgstr "Επιτρέπει τον ορισμό συμβάντων για τον προγραμματιστή συμβάντων" -#: libraries/messages.inc.php:686 server_privileges.php:171 +#: libraries/messages.inc.php:682 server_privileges.php:171 #: server_privileges.php:483 msgid "Allows executing stored routines." msgstr "Επιτρέπει την εκτέλεση αποθηκευμένων εργασιών." -#: libraries/messages.inc.php:687 server_privileges.php:150 +#: libraries/messages.inc.php:683 server_privileges.php:150 #: server_privileges.php:470 msgid "Allows importing data from and exporting data into files." msgstr "Επιτρέπει την εισαγωγή και εξαγωγή δεδομένων από και σε αρχεία." -#: libraries/messages.inc.php:688 server_privileges.php:501 +#: libraries/messages.inc.php:684 server_privileges.php:501 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Επιτρέπει την προσθήκη χρηστών και δικαιωμάτων χωρίς να επαναφορτώσετε τους " "πίνακες δικαιωμάτων." -#: libraries/messages.inc.php:689 server_privileges.php:152 +#: libraries/messages.inc.php:685 server_privileges.php:152 #: server_privileges.php:477 msgid "Allows creating and dropping indexes." msgstr "Επιτρέπει την δημιουργία και την διαγραφή ευρετηρίων." -#: libraries/messages.inc.php:690 server_privileges.php:142 +#: libraries/messages.inc.php:686 server_privileges.php:142 #: server_privileges.php:403 server_privileges.php:465 msgid "Allows inserting and replacing data." msgstr "Επιτρέπει την εισαγωγή και την αντικατάσταση δεδομένων." -#: libraries/messages.inc.php:691 server_privileges.php:157 +#: libraries/messages.inc.php:687 server_privileges.php:157 #: server_privileges.php:510 msgid "Allows locking tables for the current thread." msgstr "Επιτρέπει το κλείδωμα πινάκων για την τρέχουσα λειτουργία." -#: libraries/messages.inc.php:692 server_privileges.php:607 +#: libraries/messages.inc.php:688 server_privileges.php:607 #: server_privileges.php:609 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Περιορίζει τον αριθμό των νέων συνδέσεων που ο χρήστης μπορεί να ξεκινήσει " "ανά ώρα." -#: libraries/messages.inc.php:693 server_privileges.php:595 +#: libraries/messages.inc.php:689 server_privileges.php:595 #: server_privileges.php:597 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Περιορίζει τον αριθμό των ερωτημάτων που ο χρήστης μπορεί να στείλει στον " "διακομιστή ανά ώρα." -#: libraries/messages.inc.php:694 server_privileges.php:601 +#: libraries/messages.inc.php:690 server_privileges.php:601 #: server_privileges.php:603 msgid "" "Limits the number of commands that change any table or database the user may " @@ -4720,62 +4720,62 @@ msgstr "" "Περιορίζει τον αριθμό των αλλαγής πινάκων ή βάσεων που ο χρήστης μπορεί να " "εκετελέσει ανά ώρα." -#: libraries/messages.inc.php:695 server_privileges.php:613 +#: libraries/messages.inc.php:691 server_privileges.php:613 #: server_privileges.php:615 msgid "Limits the number of simultaneous connections the user may have." msgstr "" "Περιορίζει τον αριθμό των ταυτόχρονων συνδέσεων που μπορεί να έχει ο χρήστης." -#: libraries/messages.inc.php:696 server_privileges.php:149 +#: libraries/messages.inc.php:692 server_privileges.php:149 #: server_privileges.php:505 msgid "Allows viewing processes of all users" msgstr "Επιτρέπει την προβολή διεργασιών όλων των χρηστών" -#: libraries/messages.inc.php:697 server_privileges.php:151 +#: libraries/messages.inc.php:693 server_privileges.php:151 #: server_privileges.php:409 server_privileges.php:511 msgid "Has no effect in this MySQL version." msgstr "Δεν έχει χρήση σε αυτήν την έκδοση MySQL." -#: libraries/messages.inc.php:698 server_privileges.php:147 +#: libraries/messages.inc.php:694 server_privileges.php:147 #: server_privileges.php:506 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Επιτρέπει την επανεκκίνηση του διακομιστή και τον καθαρισμό των προσωρινών " "αρχείων του." -#: libraries/messages.inc.php:699 server_privileges.php:159 +#: libraries/messages.inc.php:695 server_privileges.php:159 #: server_privileges.php:513 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Δίνει το δικαίωμα στον χρήστη να βρει που είναι οι κύριοι και δευτερεύοντες " "διακομιστές." -#: libraries/messages.inc.php:700 server_privileges.php:158 +#: libraries/messages.inc.php:696 server_privileges.php:158 #: server_privileges.php:514 msgid "Needed for the replication slaves." msgstr "Απαιτείται για τους δευτερευόντες διακομιστές αναπαραγωγής." -#: libraries/messages.inc.php:701 server_privileges.php:141 +#: libraries/messages.inc.php:697 server_privileges.php:141 #: server_privileges.php:400 server_privileges.php:464 msgid "Allows reading data." msgstr "Επιτρέπει την ανάγνωση δεδομένων." -#: libraries/messages.inc.php:702 server_privileges.php:154 +#: libraries/messages.inc.php:698 server_privileges.php:154 #: server_privileges.php:508 msgid "Gives access to the complete list of databases." msgstr "Δίνει πρόσβαση στην πλήρη λίστα των βάσεων δεδομένων." -#: libraries/messages.inc.php:703 server_privileges.php:165 +#: libraries/messages.inc.php:699 server_privileges.php:165 #: server_privileges.php:167 server_privileges.php:480 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Επιτρέπει την εκτέλεση ερωτημάτων της μορφής SHOW CREATE VIEW." -#: libraries/messages.inc.php:704 server_privileges.php:148 +#: libraries/messages.inc.php:700 server_privileges.php:148 #: server_privileges.php:507 msgid "Allows shutting down the server." msgstr "Επιτρέπει την διακοπή λειτουργίας του διακομιστή." -#: libraries/messages.inc.php:705 server_privileges.php:155 +#: libraries/messages.inc.php:701 server_privileges.php:155 #: server_privileges.php:504 msgid "" "Allows connecting, even if maximum number of connections is reached; " @@ -4786,55 +4786,55 @@ msgstr "" "καλυθφεί; Απαιτείται για τις περισσότερες λειτουργίες διαχείρισης όπως ο " "ορισμός γενικών μεταβλητών ή τη διακοπή λειτουργιών άλλων χρηστών." -#: libraries/messages.inc.php:706 server_privileges.php:162 +#: libraries/messages.inc.php:702 server_privileges.php:162 #: server_privileges.php:496 msgid "Allows creating and dropping triggers" msgstr "Επιτρέπει τη δημιουργία και διαγραφή υποδείξεων" -#: libraries/messages.inc.php:707 server_privileges.php:143 +#: libraries/messages.inc.php:703 server_privileges.php:143 #: server_privileges.php:406 server_privileges.php:466 msgid "Allows changing data." msgstr "Επιτρέπει την αλλαγή δεδομένων." -#: libraries/messages.inc.php:708 server_privileges.php:221 +#: libraries/messages.inc.php:704 server_privileges.php:221 msgid "No privileges." msgstr "Χωρίς δικαιώματα." -#: libraries/messages.inc.php:710 server_privileges.php:1296 +#: libraries/messages.inc.php:706 server_privileges.php:1296 msgid "The privileges were reloaded successfully." msgstr "Τα δικαιώματα επαναφορτώθηκαν επιτυχώς." -#: libraries/messages.inc.php:712 libraries/server_links.inc.php:80 +#: libraries/messages.inc.php:708 libraries/server_links.inc.php:80 msgid "Processes" msgstr "Διεργασίες" -#: libraries/messages.inc.php:714 main.php:187 +#: libraries/messages.inc.php:710 main.php:187 msgid "Protocol version" msgstr "Έκδοση πρωτοκόλλου" -#: libraries/messages.inc.php:715 +#: libraries/messages.inc.php:711 msgid "Put fields names in the first row" msgstr "Εμφάνιση ονομάτων πεδίων στην πρώτη γραμμή" -#: libraries/messages.inc.php:720 server_synchronize.php:1003 +#: libraries/messages.inc.php:716 server_synchronize.php:1003 msgid "The following queries have been executed:" msgstr "Τα ακόλουθα ερωτήματα εκτελέστηκαν:" -#: libraries/messages.inc.php:721 server_status.php:251 +#: libraries/messages.inc.php:717 server_status.php:251 msgid "Query cache" msgstr "Λανθάνουσα μνήμη ερωτήματος" -#: libraries/messages.inc.php:722 libraries/navigation_header.inc.php:80 +#: libraries/messages.inc.php:718 libraries/navigation_header.inc.php:80 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 setup/lib/messages.inc.php:122 msgid "Query window" msgstr "Παράθυρο ερωτήματος" -#: libraries/messages.inc.php:725 querywindow.php:109 querywindow.php:217 +#: libraries/messages.inc.php:721 querywindow.php:109 querywindow.php:217 msgid "SQL history" msgstr "Ιστορικό SQL" -#: libraries/messages.inc.php:726 server_status.php:490 +#: libraries/messages.inc.php:722 server_status.php:490 #, php-format msgid "" "Query statistics: Since its startup, %s queries have been sent to the " @@ -4843,95 +4843,95 @@ msgstr "" "Στατιστικά ερωτημάτων: Από την έναρξη λειτουργίας, %s ερωτήματα έχουν " "σταλεί στον διακομιστή." -#: libraries/messages.inc.php:728 server_status.php:554 +#: libraries/messages.inc.php:724 server_status.php:554 msgid "Query type" msgstr "Τύπος ερωτήματος" -#: libraries/messages.inc.php:729 libraries/sql_query_form.lib.php:381 +#: libraries/messages.inc.php:725 libraries/sql_query_form.lib.php:381 msgid "Do not overwrite this query from outside the window" msgstr "Να μην αλλάξει το ερώτημα από εξωτερική πηγή" -#: libraries/messages.inc.php:732 tbl_operations.php:663 +#: libraries/messages.inc.php:728 tbl_operations.php:663 msgid "Rebuild" msgstr "Επανακατασκευή" -#: libraries/messages.inc.php:733 server_status.php:394 +#: libraries/messages.inc.php:729 server_status.php:394 msgid "Received" msgstr "Ελήφθησαν" -#: libraries/messages.inc.php:734 pmd_pdf.php:89 +#: libraries/messages.inc.php:730 pmd_pdf.php:89 msgid "recommended" msgstr "προτείνεται" -#: libraries/messages.inc.php:736 tbl_operations.php:702 +#: libraries/messages.inc.php:732 tbl_operations.php:702 msgid "Check referential integrity:" msgstr "Έλεγχος ακεραιότητας συσχετίσεων:" -#: libraries/messages.inc.php:740 pdf_schema.php:1032 pdf_schema.php:1141 +#: libraries/messages.inc.php:736 pdf_schema.php:1032 pdf_schema.php:1141 msgid "Relational schema" msgstr "Σχεσιακό σχήμα" -#: libraries/messages.inc.php:744 tbl_relation.php:399 +#: libraries/messages.inc.php:740 tbl_relation.php:399 msgid "Relations" msgstr "Συσχετίσεις" -#: libraries/messages.inc.php:745 tbl_structure.php:507 tbl_structure.php:509 +#: libraries/messages.inc.php:741 tbl_structure.php:507 tbl_structure.php:509 msgid "Relation view" msgstr "Εμφάνιση συσχετίσεων" -#: libraries/messages.inc.php:746 server_privileges.php:1246 +#: libraries/messages.inc.php:742 server_privileges.php:1246 msgid "Reloading the privileges" msgstr "Επαναφόρτωση δικαιωμάτων" -#: libraries/messages.inc.php:747 navigation.php:66 navigation.php:67 +#: libraries/messages.inc.php:743 navigation.php:66 navigation.php:67 #: navigation.php:70 #, fuzzy msgid "Reload navigation frame" msgstr "Προσαρμογή πλαισίου πλοήγησης" -#: libraries/messages.inc.php:748 pmd_general.php:80 +#: libraries/messages.inc.php:744 pmd_general.php:80 msgid "Reload" msgstr "Επαναφόρτωση" -#: libraries/messages.inc.php:749 libraries/server_synchronize.lib.php:1345 +#: libraries/messages.inc.php:745 libraries/server_synchronize.lib.php:1345 #: libraries/server_synchronize.lib.php:1371 msgid "Remote server" msgstr "Απομακρυσμένος διακομιστής" -#: libraries/messages.inc.php:750 +#: libraries/messages.inc.php:746 msgid "Remove CRLF characters within fields" msgstr "Απομάκρυνση χαρακτήρων CRLF μέσα στα πεδία" -#: libraries/messages.inc.php:751 tbl_operations.php:676 +#: libraries/messages.inc.php:747 tbl_operations.php:676 msgid "Remove partitioning" msgstr "Απομάκρυνση κατάτμησης" -#: libraries/messages.inc.php:752 server_privileges.php:1575 +#: libraries/messages.inc.php:748 server_privileges.php:1575 msgid "Remove selected users" msgstr "Διαγραφή των επιλεγμένων χρηστών" -#: libraries/messages.inc.php:755 tbl_operations.php:338 +#: libraries/messages.inc.php:751 tbl_operations.php:338 msgid "Rename table to" msgstr "Μετονομασία πίνακα σε" -#: libraries/messages.inc.php:756 view_operations.php:93 +#: libraries/messages.inc.php:752 view_operations.php:93 #, fuzzy msgid "Rename view to" msgstr "Μετονομασία πίνακα σε" -#: libraries/messages.inc.php:757 tbl_operations.php:664 +#: libraries/messages.inc.php:753 tbl_operations.php:664 msgid "Repair" msgstr "Επιδιόρθωση" -#: libraries/messages.inc.php:759 +#: libraries/messages.inc.php:755 msgid "Replace NULL by" msgstr "Αντικατάσταση τιμής NULL με" -#: libraries/messages.inc.php:760 +#: libraries/messages.inc.php:756 msgid "Replace table data with file" msgstr "Αντικατάσταση δεδομένων Πίνακα με το αρχείο" -#: libraries/messages.inc.php:761 server_replication.php:228 +#: libraries/messages.inc.php:757 server_replication.php:228 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -4939,47 +4939,47 @@ msgstr "" "Τώρα, προσθέστε της ακόλουθες γραμμές στο τέλος του αρχείου my.cnf και " "επανεκκινήστε τον διακομιστή MySQL." -#: libraries/messages.inc.php:762 libraries/replication_gui.lib.php:236 +#: libraries/messages.inc.php:758 libraries/replication_gui.lib.php:236 #: server_replication.php:194 msgid "Add slave replication user" msgstr "Προσθήκη δευτερέοντα χρήστη αναπαραγωγής" -#: libraries/messages.inc.php:763 server_replication.php:74 +#: libraries/messages.inc.php:759 server_replication.php:74 #, php-format msgid "Master server changed succesfully to %s" msgstr "Ο πρωτεύων διακομιστής άλλαξε επιτυχώς σε %s" -#: libraries/messages.inc.php:764 server_replication.php:182 +#: libraries/messages.inc.php:760 server_replication.php:182 msgid "This server is configured as master in a replication process." msgstr "" "Αυτός ο διακομιστής έχει ρυθμιστεί ως πρωτεύων σε μια αναπαραγωγική " "διαδικασία." -#: libraries/messages.inc.php:765 server_replication.php:322 +#: libraries/messages.inc.php:761 server_replication.php:322 msgid "Control slave:" msgstr "Έλεγχος δευτερεύοντος:" -#: libraries/messages.inc.php:766 server_replication.php:65 +#: libraries/messages.inc.php:762 server_replication.php:65 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" "Αδύνατη η ανάγνωση της θέσης πρωτεύουσας καταγραφής. Πιθανό πρόβλημα " "δικαιωμάτων." -#: libraries/messages.inc.php:767 server_replication.php:58 +#: libraries/messages.inc.php:763 server_replication.php:58 #, php-format msgid "Unable to connect to master %s." msgstr "Αδύνατη η σύνδεση στον πρωτεύοντα %s." -#: libraries/messages.inc.php:768 server_replication.php:221 +#: libraries/messages.inc.php:764 server_replication.php:221 msgid "Replicate all databases; Ignore:" msgstr "Αναπαραγωγή όλων των βάσεων δεδομένων. Παράβλεψη:" -#: libraries/messages.inc.php:769 server_replication.php:222 +#: libraries/messages.inc.php:765 server_replication.php:222 msgid "Ignore all databases; Replicate:" msgstr "Παράβλεψη όλων των βάσεων δεδομένων. Αναπαραγωγή:" -#: libraries/messages.inc.php:770 server_replication.php:218 +#: libraries/messages.inc.php:766 server_replication.php:218 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -4994,16 +4994,16 @@ msgstr "" "παραβλέψετε όλες τις βάσεις δεδομένων ως προεπιλογή και να επιτρέψετε μόνο " "σε ορισμένες να αναπαράγονται. Επιλέξτε:" -#: libraries/messages.inc.php:771 server_replication.php:217 +#: libraries/messages.inc.php:767 server_replication.php:217 msgid "Master configuration" msgstr "Ρύθμιση πρωτεύοντος" -#: libraries/messages.inc.php:772 server_replication.php:181 +#: libraries/messages.inc.php:768 server_replication.php:181 #: server_replication.php:209 msgid "Master replication" msgstr "Πρωτεύουσα αναπαραγωγή" -#: libraries/messages.inc.php:774 server_replication.php:230 +#: libraries/messages.inc.php:770 server_replication.php:230 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " @@ -5013,11 +5013,11 @@ msgstr "" "θα πρέπει να δείτε ένα μύνημα που να σας πληροφορεί ότι αυτός ο διακομιστής " "έχει ρυθμιστεί ως πρωτεύων" -#: libraries/messages.inc.php:775 server_replication.php:225 +#: libraries/messages.inc.php:771 server_replication.php:225 msgid "Please select databases:" msgstr "Επιλέξτε βάσεις δεδομένων:" -#: libraries/messages.inc.php:776 server_replication.php:210 +#: libraries/messages.inc.php:772 server_replication.php:210 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -5026,7 +5026,7 @@ msgstr "" "Αυτός ο διακομιστής δεν έχει ρυθμιστεί ως πρωτεύων σε μια διαδικασία " "αναπαραγωγής. Θέλετε να τον ρυθμίσετε;" -#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:188 +#: libraries/messages.inc.php:773 libraries/replication_gui.lib.php:188 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." @@ -5034,51 +5034,51 @@ msgstr "" "Μόνο οι δευτερεύοντες που εκκινούν με την ρύθμιση --report-host=host_name " "είναι ορατοί σε αυτή τη λίστα." -#: libraries/messages.inc.php:778 server_replication.php:187 +#: libraries/messages.inc.php:774 server_replication.php:187 msgid "Show connected slaves" msgstr "Προβολή συνδεδεμένων δευτερευόντων" -#: libraries/messages.inc.php:779 libraries/messages.inc.php:885 +#: libraries/messages.inc.php:775 libraries/messages.inc.php:881 #: server_replication.php:184 server_status.php:281 msgid "Show master status" msgstr "Προβολή κατάστασης πρωτεύοντος" -#: libraries/messages.inc.php:780 server_replication.php:334 +#: libraries/messages.inc.php:776 server_replication.php:334 msgid "Skipping error(s) might lead into unsynchronized master and slave!" msgstr "" "Η παράβλεψη σφαλμάτων μπορεί να οδηγήσει στο μη συγχρονισμό πρωτεύοντος και " "δευτερεύοντος!" -#: libraries/messages.inc.php:781 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:51 #: server_replication.php:347 msgid "Change or reconfigure master server" msgstr "Αλλαγή ή επαναρύθμιση του πρωτεύοντος διακομιστή" -#: libraries/messages.inc.php:782 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:778 libraries/replication_gui.lib.php:51 msgid "Slave configuration" msgstr "Ρύθμιση δευτερεύοντος" -#: libraries/messages.inc.php:783 server_replication.php:305 +#: libraries/messages.inc.php:779 server_replication.php:305 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" "Ο διακομιστής ρυθμίστηκε ως δευτερεύων σε μια διαδικασία αναπαραγωγής. " "Θέλετε να:" -#: libraries/messages.inc.php:784 server_replication.php:332 +#: libraries/messages.inc.php:780 server_replication.php:332 msgid "Error management:" msgstr "Διαχείριση σφάλματος:" -#: libraries/messages.inc.php:785 server_replication.php:328 +#: libraries/messages.inc.php:781 server_replication.php:328 #, php-format msgid "IO Thread %s only" msgstr "Διεργασία IO %s μόνο" -#: libraries/messages.inc.php:786 server_replication.php:296 +#: libraries/messages.inc.php:782 server_replication.php:296 msgid "Slave IO Thread not running!" msgstr "" -#: libraries/messages.inc.php:787 server_replication.php:355 +#: libraries/messages.inc.php:783 server_replication.php:355 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -5087,40 +5087,40 @@ msgstr "" "Αυτός ο διακομιστής δεν ρυθμίστηκε ως δευτερεύων σε μια διαδικασία " "αναπαραγωγής. Θέλετε να τον ρυθμίσετε;" -#: libraries/messages.inc.php:788 server_replication.php:326 +#: libraries/messages.inc.php:784 server_replication.php:326 msgid "Reset slave" msgstr "Επαναφορά δευτερεύοντος" -#: libraries/messages.inc.php:789 server_replication.php:308 +#: libraries/messages.inc.php:785 server_replication.php:308 msgid "See slave status table" msgstr "Δείτε τον πίνακα κατάστασης δευτερεύοντος" -#: libraries/messages.inc.php:790 server_replication.php:336 +#: libraries/messages.inc.php:786 server_replication.php:336 msgid "Skip current error" msgstr "Παράβλεψη τρέχοντος σφάλματος" -#: libraries/messages.inc.php:791 server_replication.php:340 +#: libraries/messages.inc.php:787 server_replication.php:340 msgid "errors." msgstr "σφάλματα." -#: libraries/messages.inc.php:792 server_replication.php:337 +#: libraries/messages.inc.php:788 server_replication.php:337 msgid "Skip next" msgstr "Παράβλεψη επόμενου" -#: libraries/messages.inc.php:793 server_replication.php:248 +#: libraries/messages.inc.php:789 server_replication.php:248 msgid "Slave replication" msgstr "Δευτερεύουσα αναπαραγωγή" -#: libraries/messages.inc.php:794 server_replication.php:293 +#: libraries/messages.inc.php:790 server_replication.php:293 msgid "Slave SQL Thread not running!" msgstr "" -#: libraries/messages.inc.php:795 server_replication.php:327 +#: libraries/messages.inc.php:791 server_replication.php:327 #, php-format msgid "SQL Thread %s only" msgstr "Διεργασία SQL %s μόνο" -#: libraries/messages.inc.php:796 +#: libraries/messages.inc.php:792 #, php-format msgid "" "This MySQL server works as %s in replication process. For further " @@ -5131,160 +5131,160 @@ msgstr "" "b>. Για περισσότερες πληροφορίες για την κατάσταση αναπαραγωγής στο " "διακομιστή, επισκευτείτε τον τομέα αναπαραγωγής." -#: libraries/messages.inc.php:797 +#: libraries/messages.inc.php:793 msgid "Master status" msgstr "Κατάσταση πρωτεύοντος" -#: libraries/messages.inc.php:798 server_status.php:721 +#: libraries/messages.inc.php:794 server_status.php:721 msgid "Replication status" msgstr "Κατάσταση αναπαραγωγής" -#: libraries/messages.inc.php:799 +#: libraries/messages.inc.php:795 msgid "Slave status" msgstr "Κατάσταση δευτερεύοντος" -#: libraries/messages.inc.php:800 server_replication.php:311 +#: libraries/messages.inc.php:796 server_replication.php:311 msgid "Synchronize databases with master" msgstr "Συγχρονισμός βάσεων δεδομένων με την πρωτεύουσα" -#: libraries/messages.inc.php:801 server_replication.php:71 +#: libraries/messages.inc.php:797 server_replication.php:71 msgid "Unable to change master" msgstr "Αδύνατη η αλλαγή της πρωτεύουσας" -#: libraries/messages.inc.php:802 server_replication.php:51 +#: libraries/messages.inc.php:798 server_replication.php:51 msgid "Unknown error" msgstr "Άγνωστο σφάλμα" -#: libraries/messages.inc.php:803 main.php:163 pdf_pages.php:344 +#: libraries/messages.inc.php:799 main.php:163 pdf_pages.php:344 #: setup/lib/FormDisplay.tpl.php:216 tbl_change.php:1175 msgid "Reset" msgstr "Επαναφορά" -#: libraries/messages.inc.php:804 server_privileges.php:591 +#: libraries/messages.inc.php:800 server_privileges.php:591 msgid "Resource limits" msgstr "Όρια πόρων" -#: libraries/messages.inc.php:805 tbl_change.php:1209 +#: libraries/messages.inc.php:801 tbl_change.php:1209 #, php-format msgid "Restart insertion with %s rows" msgstr "Επανεκκίνηση εισαγωγής με %s γραμμές" -#: libraries/messages.inc.php:807 server_privileges.php:1578 +#: libraries/messages.inc.php:803 server_privileges.php:1578 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Ανάκληση όλων των ενεργών δικαιώματα από τους χρήστες και διαγραφή τους." -#: libraries/messages.inc.php:808 server_privileges.php:1176 +#: libraries/messages.inc.php:804 server_privileges.php:1176 #, php-format msgid "You have revoked the privileges for %s" msgstr "Ανακαλέσατε τα δικαιώματα για %s" -#: libraries/messages.inc.php:809 server_privileges.php:1333 +#: libraries/messages.inc.php:805 server_privileges.php:1333 msgid "Revoke" msgstr "Ανάκληση" -#: libraries/messages.inc.php:810 libraries/mysql_charsets.lib.php:280 +#: libraries/messages.inc.php:806 libraries/mysql_charsets.lib.php:280 msgid "Romanian" msgstr "Ρουμάνικα" -#: libraries/messages.inc.php:813 tbl_printview.php:404 tbl_structure.php:786 +#: libraries/messages.inc.php:809 tbl_printview.php:404 tbl_structure.php:786 msgid "Row length" msgstr "Μέγεθος Γραμμής" -#: libraries/messages.inc.php:815 tbl_printview.php:414 tbl_structure.php:794 +#: libraries/messages.inc.php:811 tbl_printview.php:414 tbl_structure.php:794 msgid " Row size " msgstr " Μέγεθος Εγγραφής " -#: libraries/messages.inc.php:821 tbl_printview.php:366 tbl_structure.php:726 +#: libraries/messages.inc.php:817 tbl_printview.php:366 tbl_structure.php:726 msgid "Row Statistics" msgstr "Στατιστικά Εγγραφών" -#: libraries/messages.inc.php:822 +#: libraries/messages.inc.php:818 #, php-format msgid "running on %s" msgstr "που εκτελείται στο %s" -#: libraries/messages.inc.php:824 libraries/sql_query_form.lib.php:223 +#: libraries/messages.inc.php:820 libraries/sql_query_form.lib.php:223 #, php-format msgid "Run SQL query/queries on server %s" msgstr "Εκτέλεση ερωτήματος/ερωτημάτων SQL στο διακομιστή «%s»" -#: libraries/messages.inc.php:825 libraries/sql_query_form.lib.php:240 +#: libraries/messages.inc.php:821 libraries/sql_query_form.lib.php:240 #: libraries/sql_query_form.lib.php:265 #, php-format msgid "Run SQL query/queries on database %s" msgstr "Εκτέλεση εντολής/εντολών SQL στη βάση δεδομένων %s" -#: libraries/messages.inc.php:826 libraries/mysql_charsets.lib.php:337 +#: libraries/messages.inc.php:822 libraries/mysql_charsets.lib.php:337 msgid "Russian" msgstr "Ρωσικά" -#: libraries/messages.inc.php:829 pmd_general.php:68 +#: libraries/messages.inc.php:825 pmd_general.php:68 msgid "Save position" msgstr "Αποθήκευση θέσης" -#: libraries/messages.inc.php:830 libraries/tbl_properties.inc.php:776 +#: libraries/messages.inc.php:826 libraries/tbl_properties.inc.php:776 #: pdf_pages.php:484 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:214 setup/lib/FormDisplay.tpl.php:215 #: tbl_change.php:1126 tbl_indexes.php:248 tbl_relation.php:566 msgid "Save" msgstr "Αποθήκευση" -#: libraries/messages.inc.php:831 +#: libraries/messages.inc.php:827 msgid "The scale factor is too small to fit the schema on one page" msgstr "Η κλίμακα είναι πολύ μικρή για να εμφανιστεί το σχήμα σε μία σελίδα" -#: libraries/messages.inc.php:843 main.php:298 +#: libraries/messages.inc.php:839 main.php:298 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "Το αρχείο ρυθμίσεων χρειάζεται τώρα μία μυστική φράση-κλειδί " "(blowfish_secret)." -#: libraries/messages.inc.php:844 navigation.php:353 navigation.php:516 +#: libraries/messages.inc.php:840 navigation.php:353 navigation.php:516 msgid "Please select a database" msgstr "Παρακαλώ επιλέξτε μία βάση δεδομένων" -#: libraries/messages.inc.php:846 server_binlog.php:120 +#: libraries/messages.inc.php:842 server_binlog.php:120 msgid "Select binary log to view" msgstr "Επιλέξτε δυαδικό αρχείο καταγραφής για προβολή" -#: libraries/messages.inc.php:847 tbl_select.php:270 +#: libraries/messages.inc.php:843 tbl_select.php:270 msgid "Select fields (at least one):" msgstr "Επιλογή πεδίων (τουλάχιστον ένα)" -#: libraries/messages.inc.php:851 pdf_pages.php:320 +#: libraries/messages.inc.php:847 pdf_pages.php:320 msgid "Select Tables" msgstr "Επιλογή Πινάκων" -#: libraries/messages.inc.php:853 server_status.php:404 +#: libraries/messages.inc.php:849 server_status.php:404 msgid "Sent" msgstr "Εστάλησαν" -#: libraries/messages.inc.php:857 libraries/select_server.lib.php:45 +#: libraries/messages.inc.php:853 libraries/select_server.lib.php:45 #: setup/frames/index.inc.php:97 setup/lib/messages.inc.php:115 msgid "Servers" msgstr "Διακομιστές" -#: libraries/messages.inc.php:858 server_status.php:255 +#: libraries/messages.inc.php:854 server_status.php:255 msgid "Delayed inserts" msgstr "Καθυστερημένες εισαγωγές" -#: libraries/messages.inc.php:859 server_status.php:46 +#: libraries/messages.inc.php:855 server_status.php:46 msgid "Runtime Information" msgstr "Πληροφορίες εκτέλεσης" -#: libraries/messages.inc.php:860 server_status.php:350 +#: libraries/messages.inc.php:856 server_status.php:350 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Αυτός ο διακομιστής MySQL λειτουργεί για %s. Ξεκίνησε στις %s." -#: libraries/messages.inc.php:861 libraries/server_links.inc.php:53 +#: libraries/messages.inc.php:857 libraries/server_links.inc.php:53 #: server_engines.php:112 server_engines.php:116 server_status.php:304 #: test/theme.php:105 msgid "Variables" msgstr "Μεταβλητές" -#: libraries/messages.inc.php:862 server_status.php:383 +#: libraries/messages.inc.php:858 server_status.php:383 msgid "" "Server traffic: These tables show the network traffic statistics of " "this MySQL server since its startup." @@ -5292,11 +5292,11 @@ msgstr "" "Κίνηση Διακομιστή: Αυτοί οι πίνακες δείχνουν στατιστικά χρήσης " "δικτύου αυτού του διακομιστή MySQL από την έναρξη της λειτουργίας του." -#: libraries/messages.inc.php:863 server_variables.php:35 +#: libraries/messages.inc.php:859 server_variables.php:35 msgid "Server variables and settings" msgstr "Ρυθμίσεις και μεταβλητές του διακομιστή" -#: libraries/messages.inc.php:865 main.php:290 +#: libraries/messages.inc.php:861 main.php:290 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -5308,7 +5308,7 @@ msgstr "" "ρυθμισμένη εγκυρότητα cookie στο phpMyAdmin. Εξαιτίας αυτού, η σύνδεσή σας " "θα λήξει νωρίτερα από ό,τι ρυθμίστηκε στο phpMyAdmin." -#: libraries/messages.inc.php:866 +#: libraries/messages.inc.php:862 msgid "" "Cannot start session without errors, please check errors given in your PHP " "and/or webserver log file and configure your PHP installation properly." @@ -5317,11 +5317,11 @@ msgstr "" "αρχείο καταγραφής της PHP και/ή του διακομιστή ιστού και ρυθμίστε την " "εγκατάσταση της PHP κατάλληλα." -#: libraries/messages.inc.php:867 server_variables.php:55 +#: libraries/messages.inc.php:863 server_variables.php:55 msgid "Session value" msgstr "Τιμή Συνεδρίας" -#: libraries/messages.inc.php:868 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:864 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 " @@ -5333,45 +5333,45 @@ msgstr "" "εισάγετε την ανάποδη κάθετο («\\») ή απλά εισαγωγικά («'»), προθέστε τα με " "ανάποδη κάθετο στην αρχή (για παράδειγμα '\\\\χψω' ή 'α\\'β')." -#: libraries/messages.inc.php:876 server_binlog.php:192 server_binlog.php:195 +#: libraries/messages.inc.php:872 server_binlog.php:192 server_binlog.php:195 #: server_processlist.php:49 server_processlist.php:51 msgid "Show Full Queries" msgstr "Πλήρης εμφάνιση ερωτημάτων" -#: libraries/messages.inc.php:878 pmd_general.php:64 +#: libraries/messages.inc.php:874 pmd_general.php:64 msgid "Show/Hide left menu" msgstr "Εμφάνιση/Απόκρυψη αριστερού μενού" -#: libraries/messages.inc.php:880 sql.php:513 +#: libraries/messages.inc.php:876 sql.php:513 msgid "Showing as PHP code" msgstr "Εμφάνιση ως κώδικά PHP" -#: libraries/messages.inc.php:882 sql.php:516 tbl_replace.php:360 +#: libraries/messages.inc.php:878 sql.php:516 tbl_replace.php:360 msgid "Showing SQL query" msgstr "Εμφάνιση ερωτήματος SQL" -#: libraries/messages.inc.php:883 tbl_change.php:1132 +#: libraries/messages.inc.php:879 tbl_change.php:1132 #, fuzzy msgid "Show insert query" msgstr "Εμφάνιση ερωτήματος SQL" -#: libraries/messages.inc.php:886 server_status.php:273 +#: libraries/messages.inc.php:882 server_status.php:273 msgid "Show open tables" msgstr "Εμφάνιση ανοιχτών πινάκων" -#: libraries/messages.inc.php:887 main.php:219 +#: libraries/messages.inc.php:883 main.php:219 msgid "Show PHP information" msgstr "Εμφάνιση πληροφοριών της PHP" -#: libraries/messages.inc.php:889 server_status.php:278 +#: libraries/messages.inc.php:885 server_status.php:278 msgid "Show slave hosts" msgstr "Εμφάνιση δευτερευόντων διακομιστών" -#: libraries/messages.inc.php:890 server_status.php:284 +#: libraries/messages.inc.php:886 server_status.php:284 msgid "Show slave status" msgstr "Εμφάνιση κατάστασης δευτερεύοντος" -#: libraries/messages.inc.php:891 +#: libraries/messages.inc.php:887 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -5381,13 +5381,13 @@ msgstr "" "μνήμη καταγραφής που υπερβαίνει την τιμή binlog_cache_size και χρησιμοποιούν " "ένα προσωρινό αρχείο για αποθήκευση δηλώσεων από τη συναλλαγή." -#: libraries/messages.inc.php:892 +#: libraries/messages.inc.php:888 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Ο αριθμός των συναλλαγών που χρησιμοποίησαν την προσωρινή δυαδική λανθάνουσα " "μνήμη καταγραφής." -#: libraries/messages.inc.php:893 +#: libraries/messages.inc.php:889 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -5399,11 +5399,11 @@ msgstr "" "είναι μεγάλο, ίσως θέλετε να αυξήσετε την τιμή tmp_table_size ώστε οι " "προσωρινοί πίνακες να είναι στη μνήμη και όχι στο δίσκο." -#: libraries/messages.inc.php:894 +#: libraries/messages.inc.php:890 msgid "How many temporary files mysqld has created." msgstr "Πόσα προσωρινά αρχεία δημιούργησε το mysqld." -#: libraries/messages.inc.php:895 +#: libraries/messages.inc.php:891 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -5411,7 +5411,7 @@ msgstr "" "Ο αριθμός των προσωρινών πινάκων στη μνήμη που δημιουργήθηκαν αυτόματα από " "τον διακομιστή κατά την εκτέλεσε δηλώσεων." -#: libraries/messages.inc.php:896 +#: libraries/messages.inc.php:892 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -5419,7 +5419,7 @@ msgstr "" "Ο αριθμός των εγεγγραμμένων γραμμών με την εντολή INSERT DELAYED για τις " "οποίες υπήρξε κάποιο σφάλμα (πιθανόν διπλό κλειδί)." -#: libraries/messages.inc.php:897 +#: libraries/messages.inc.php:893 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -5428,25 +5428,25 @@ msgstr "" "διαφορετικός πίνακας στον οποίο κάποιος χρησιμοποιεί την εντολή INSERT " "DELAYED χρησιμοποιεί της δική του διεργασία." -#: libraries/messages.inc.php:898 +#: libraries/messages.inc.php:894 msgid "The number of INSERT DELAYED rows written." msgstr "" "Ο αριθμός των ΚΑΘΥΣΤΕΡΗΜΕΝΑ ΕΙΣΕΡΧΟΜΕΝΩΝ (INSERT DELAYED) γραμμών που " "εγγράφτηκαν." -#: libraries/messages.inc.php:899 +#: libraries/messages.inc.php:895 msgid "The number of executed FLUSH statements." msgstr "Ο αριθμός των εκτελεσθέντων δηλώσεων ΕΚΚΑΘΑΡΙΣΗΣ (FLUSH)." -#: libraries/messages.inc.php:900 +#: libraries/messages.inc.php:896 msgid "The number of internal COMMIT statements." msgstr "Ο αριθμός των εσωτερικών δηλώσεων ΠΑΡΑΠΟΜΠΗΣ (COMMIT)." -#: libraries/messages.inc.php:901 +#: libraries/messages.inc.php:897 msgid "The number of times a row was deleted from a table." msgstr "Οι φορές που διαγράφτηκε μια γραμμή από έναν πίνακα." -#: libraries/messages.inc.php:902 +#: libraries/messages.inc.php:898 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -5457,7 +5457,7 @@ msgstr "" "ανακάλυψη. Το Handler_discover δείχνει τον αριθμό των πινάκων χρόνου που " "βρέθηκαν." -#: libraries/messages.inc.php:903 +#: libraries/messages.inc.php:899 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -5468,7 +5468,7 @@ msgstr "" "ευρετηρίου. Παράδειγμα: SELECT col1 FROM foo, υποθέτοντας ότι το col1 έχει " "ευρετήριο." -#: libraries/messages.inc.php:904 +#: libraries/messages.inc.php:900 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -5477,7 +5477,7 @@ msgstr "" "είναι υψηλός, είναι ένας καλός δείκτης ότι τα ερωτήματά σας και οι πίνακές " "σας έχουν κάνει σωστά ευρετήρια." -#: libraries/messages.inc.php:905 +#: libraries/messages.inc.php:901 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -5487,7 +5487,7 @@ msgstr "" "κλειδιού. Αυτό αυξάνετε αν κάνετε ερώτημα σε μια στήλη ευρετηρίου με ένα " "περιορισμό ευρετηρίου ή αν κάνετε μια σάρωση ευρετηρίου." -#: libraries/messages.inc.php:906 +#: libraries/messages.inc.php:902 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -5496,7 +5496,7 @@ msgstr "" "η μέθοδος ανάγνωσης χρησιμοποιείτε κυρίως για βελτιστοποίηση της εντολής " "ORDER BY ... DESC." -#: libraries/messages.inc.php:907 +#: libraries/messages.inc.php:903 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -5509,7 +5509,7 @@ msgstr "" "σαρώνει ολόκληρους πίνακες ή έχετε ενώσεις που δεν χρησιμοποιούν σωστά τα " "κλειδιά." -#: libraries/messages.inc.php:908 +#: libraries/messages.inc.php:904 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -5521,37 +5521,37 @@ msgstr "" "ότι οι πίνακες σας δεν έχουν σωστά ευρετήρια ή ότι τα ερωτήματά σας δεν " "έχουν γραφτεί ώστε να λαμβάνουν υπόψη τα ευρετήρια που έχετε." -#: libraries/messages.inc.php:909 +#: libraries/messages.inc.php:905 msgid "The number of internal ROLLBACK statements." msgstr "Ο αριθμός των εσωτερικών δηλώσεων ΕΠΙΣΤΡΟΦΗΣ (ROLLBACK)." -#: libraries/messages.inc.php:910 +#: libraries/messages.inc.php:906 msgid "The number of requests to update a row in a table." msgstr "Ο αριθμός των αιτήσεων για ενημέρωση μιας γραμμής σε έναν πίνακα." -#: libraries/messages.inc.php:911 +#: libraries/messages.inc.php:907 msgid "The number of requests to insert a row in a table." msgstr "Ο αριθμός των αιτήσεων για εισαγωγή μιας γραμμής σε έναν πίνακα." -#: libraries/messages.inc.php:912 +#: libraries/messages.inc.php:908 msgid "The number of pages containing data (dirty or clean)." msgstr "Ο αριθμός των σελίδων που περιέχουν δεδομένα (καθαρά και μη)." -#: libraries/messages.inc.php:913 +#: libraries/messages.inc.php:909 msgid "The number of pages currently dirty." msgstr "Ο αριθμός των μη καθαρώ σελίδων." -#: libraries/messages.inc.php:914 +#: libraries/messages.inc.php:910 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" "Ο αριθμός των σελίδων του buffer pool για τις οποίες υπήρξε αίτηση για " "εκκαθάριση." -#: libraries/messages.inc.php:915 +#: libraries/messages.inc.php:911 msgid "The number of free pages." msgstr "Ο αριθμός των ελεύθερων σελίδων." -#: libraries/messages.inc.php:916 +#: libraries/messages.inc.php:912 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -5561,7 +5561,7 @@ msgstr "" "σελίδες που έχουν ήδη αναγνωστεί ή εγγραφεί ή που δεν μπορούν να " "εκκαθαριστούν ή απομακρυνθούν για κάποιο άλλο λόγο." -#: libraries/messages.inc.php:917 +#: libraries/messages.inc.php:913 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -5573,11 +5573,11 @@ msgstr "" "τιμή μπορεί να υπολογιστεί ως Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: libraries/messages.inc.php:918 +#: libraries/messages.inc.php:914 msgid "Total size of buffer pool, in pages." msgstr "Συνολικό μέγεθος του buffer pool, σε σελίδες." -#: libraries/messages.inc.php:919 +#: libraries/messages.inc.php:915 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -5586,7 +5586,7 @@ msgstr "" "συμβαίνει όταν ένα ερώτημα πρόκειται να σαρώσει ένα μεγάλο τμήμα πίνακα αλλά " "με τυχαία σειρά." -#: libraries/messages.inc.php:920 +#: libraries/messages.inc.php:916 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -5594,11 +5594,11 @@ msgstr "" "Ο αριθμός των διαδοχικών αναγνώσεων κεφαλίδων της InnoDB που ξεκίνησαν. Αυτό " "συμβείναι όταν η InnoDB εκτελεί μια διαδοχική πλήρη σάρωση πίνακα." -#: libraries/messages.inc.php:921 +#: libraries/messages.inc.php:917 msgid "The number of logical read requests InnoDB has done." msgstr "Ο αριθμός των λογικών αιτήσεων ανάγνωσης που έκαν η InnoDB." -#: libraries/messages.inc.php:922 +#: libraries/messages.inc.php:918 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -5606,7 +5606,7 @@ msgstr "" "Ο αριθμός των λογικών αναγνώσεων που η InnoDB δεν μπόρεσε να ικανοποιήσει " "από το buffer pool και έπρεπε να κάνει ανάγνωση μονής σελίδας." -#: libraries/messages.inc.php:923 +#: libraries/messages.inc.php:919 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -5621,55 +5621,55 @@ msgstr "" "αναμονών. Αν το μέγεθος του buffer pool έχει οριστεί σωστά, αυτή η τιμή " "πρέπει να είναι μικρή." -#: libraries/messages.inc.php:924 +#: libraries/messages.inc.php:920 msgid "The number writes done to the InnoDB buffer pool." msgstr "Ο αριθμός των εγγραφών που έγιναν στο buffer pool της InnoDB." -#: libraries/messages.inc.php:925 +#: libraries/messages.inc.php:921 msgid "The number of fsync() operations so far." msgstr "Ο αριθμός των λειτουργιών του fsync() μέχρι στιγμής." -#: libraries/messages.inc.php:926 +#: libraries/messages.inc.php:922 msgid "The current number of pending fsync() operations." msgstr "Ο τρέχων αριθμός των εκκρεμών λειτουργιών του fsync()." -#: libraries/messages.inc.php:927 +#: libraries/messages.inc.php:923 msgid "The current number of pending reads." msgstr "Ο τρέχων αριθμός των εκκρεμών αναγνώσεων." -#: libraries/messages.inc.php:928 +#: libraries/messages.inc.php:924 msgid "The current number of pending writes." msgstr "Ο τρέχων αριθμός των εκκρεμών εγγραφών." -#: libraries/messages.inc.php:929 +#: libraries/messages.inc.php:925 msgid "The amount of data read so far, in bytes." msgstr "Το πλήθος των δεδομένων που αναγνώστηκε μέχρι στιγμής σε bytes." -#: libraries/messages.inc.php:930 +#: libraries/messages.inc.php:926 msgid "The total number of data reads." msgstr "Ο συνολικός αριθμός των αναγνώσεων δεδομένων." -#: libraries/messages.inc.php:931 +#: libraries/messages.inc.php:927 msgid "The total number of data writes." msgstr "Ο συνολικός αριθμός των εγγραφών δεδομένων." -#: libraries/messages.inc.php:932 +#: libraries/messages.inc.php:928 msgid "The amount of data written so far, in bytes." msgstr "Το πλήθος των εγεγγραμμένων δεδομένων μέχρι στιγμής, σε bytes." -#: libraries/messages.inc.php:933 +#: libraries/messages.inc.php:929 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Ο αριθμός των εγγραφών διπλοεγγραφής που έγιναν και ο αριθμός των σελίδων " "που γράφτηκαν για αυτό το σκοπό." -#: libraries/messages.inc.php:934 +#: libraries/messages.inc.php:930 msgid "The number of doublewrite operations that have been performed." msgstr "" "Ο αριθμός των εγγραφών διπλοεγγραφής που έγιναν και ο αριθμός των σελίδων " "που γράφτηκαν για αυτό το σκοπό." -#: libraries/messages.inc.php:935 +#: libraries/messages.inc.php:931 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -5677,35 +5677,35 @@ msgstr "" "Ο αριθμός των αναμονών που έγιναν εξαιτίας του μικρού μεγέθος του buffer " "καταγραφής και και έπρεπε να αναμένεται να εκκαθαριστεί πριν συνεχίσει." -#: libraries/messages.inc.php:936 +#: libraries/messages.inc.php:932 msgid "The number of log write requests." msgstr "Ο αριθμός των αιτήσεων εγγραφής καταγραφής." -#: libraries/messages.inc.php:937 +#: libraries/messages.inc.php:933 msgid "The number of physical writes to the log file." msgstr "Ο αριθμός των φυσικών εγγραφών στο αρχείο καταγραφής." -#: libraries/messages.inc.php:938 +#: libraries/messages.inc.php:934 msgid "The number of fsync() writes done to the log file." msgstr "Ο αριθμός των εγγραφών fsyncs που ολοκληρώθηκαν στο αρχείο καταγραφής." -#: libraries/messages.inc.php:939 +#: libraries/messages.inc.php:935 msgid "The number of pending log file fsyncs." msgstr "Ο αριθμός των εκκρεμών fsyncs στο αρχείο καταγραφής." -#: libraries/messages.inc.php:940 +#: libraries/messages.inc.php:936 msgid "Pending log file writes." msgstr "Εκκρεμείς εγγραφές αρχείου καταγραφής." -#: libraries/messages.inc.php:941 +#: libraries/messages.inc.php:937 msgid "The number of bytes written to the log file." msgstr "Ο αριθμός των εγεγγραμμένων bytes στο αρχείο καταγραφής." -#: libraries/messages.inc.php:942 +#: libraries/messages.inc.php:938 msgid "The number of pages created." msgstr "Ο αριθμός των δημιουργηθέντων σελίδων." -#: libraries/messages.inc.php:943 +#: libraries/messages.inc.php:939 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -5714,56 +5714,56 @@ msgstr "" "υπολογίζονται σε σελίδες. Το μέγεθος της σελίδας επιτρέπει την εύκολη " "μετατροπή σε bytes." -#: libraries/messages.inc.php:944 +#: libraries/messages.inc.php:940 msgid "The number of pages read." msgstr "Ο αριθμός των αναγνωσμένων σελίδων." -#: libraries/messages.inc.php:945 +#: libraries/messages.inc.php:941 msgid "The number of pages written." msgstr "Ο αριθμός των εγεγγραμμένων σελίδων." -#: libraries/messages.inc.php:946 +#: libraries/messages.inc.php:942 msgid "The number of row locks currently being waited for." msgstr "Ο αριθμός των κλειδωμάτων γραμμής που είναι τώρα σε αναμονή." -#: libraries/messages.inc.php:947 +#: libraries/messages.inc.php:943 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" "Ο μέσος χρόνος απόκτησης ενός κλειδώματος γραμμής σε χιλιοστοδευτερόλεπτα." -#: libraries/messages.inc.php:948 +#: libraries/messages.inc.php:944 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" "Ο συνολικός απαιτούμενος χρόνος απόκτησης κλειδώματος γραμμής σε " "χιλιοστοδευτερόλεπτα." -#: libraries/messages.inc.php:949 +#: libraries/messages.inc.php:945 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" "Ο μέγιστος χρόνος απόκτησης ενός κλειδώματος γραμμής σε " "χιλιοστοδευτερόλεπτα.." -#: libraries/messages.inc.php:950 +#: libraries/messages.inc.php:946 msgid "The number of times a row lock had to be waited for." msgstr "Οι φορές που πρέπει να αναμένεται ένα κλείδωμα γραμμής." -#: libraries/messages.inc.php:951 +#: libraries/messages.inc.php:947 msgid "The number of rows deleted from InnoDB tables." msgstr "Ο αριθμός των διαγραμμένων γραμμών από πίνακες InnoDB." -#: libraries/messages.inc.php:952 +#: libraries/messages.inc.php:948 msgid "The number of rows inserted in InnoDB tables." msgstr "Ο αριθμός των εισαχθέντων γραμμών σε πίνακες InnoDB." -#: libraries/messages.inc.php:953 +#: libraries/messages.inc.php:949 msgid "The number of rows read from InnoDB tables." msgstr "Ο αριθμός των αναγνωσμένων γραμμών από πίνακες InnoDB." -#: libraries/messages.inc.php:954 +#: libraries/messages.inc.php:950 msgid "The number of rows updated in InnoDB tables." msgstr "Ο αριθμός των ενημερωμένων γραμμών σε πίνακες InnoDB." -#: libraries/messages.inc.php:955 +#: libraries/messages.inc.php:951 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -5772,7 +5772,7 @@ msgstr "" "αλλά δεν έχει ακόμα εκκαθαριστεί στο δίσκο. Ήταν γνωστός ως " "Not_flushed_key_blocks." -#: libraries/messages.inc.php:956 +#: libraries/messages.inc.php:952 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -5781,7 +5781,7 @@ msgstr "" "Μπορείτε να χρησιμοποιήσετε αυτή τη τιμή για να προσδιορίσετε πόση " "λανθάνουσα μνήμη κλειδιού χρησιμοποιείται." -#: libraries/messages.inc.php:957 +#: libraries/messages.inc.php:953 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -5791,12 +5791,12 @@ msgstr "" "τιμή είναι ένα έντονο σημάδι που δείχνει τον μέγιστο αριθμό μπλοκς που είναι " "σε χρήση με μια φορά." -#: libraries/messages.inc.php:958 +#: libraries/messages.inc.php:954 msgid "The number of requests to read a key block from the cache." msgstr "" "Ο αριθμός των αιτήσεων ανάγνωσης ενός μπλοκ κλειδιού από τη λανθάνουσα μνήμη." -#: libraries/messages.inc.php:959 +#: libraries/messages.inc.php:955 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -5807,16 +5807,16 @@ msgstr "" "μικρή. Ο βαθμό απώλειας λανθάνουσας μνήμης μπορεί να υπολογιστεί ως " "Key_reads/Key_read_requests." -#: libraries/messages.inc.php:960 +#: libraries/messages.inc.php:956 msgid "The number of requests to write a key block to the cache." msgstr "" "Ο αριθμός των αιτήσεων εγγραφής ενός μπλοκ κλειδιού στη λανθάνουσα μνήμη." -#: libraries/messages.inc.php:961 +#: libraries/messages.inc.php:957 msgid "The number of physical writes of a key block to disk." msgstr "Ο αριθμός των φυσικών εγγραφών ενός κλειδιού στο δίσκο." -#: libraries/messages.inc.php:962 +#: libraries/messages.inc.php:958 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -5827,13 +5827,13 @@ msgstr "" "διαφορετικών σχεδίων ερωτημάτων για το ίδιο ερώτημα. Η προεπιλεγμένη τιμή 0 " "σημαίνει ότι κανένα ερώτημα δεν μεταφράστηκε ακόμα." -#: libraries/messages.inc.php:963 +#: libraries/messages.inc.php:959 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" "Ο αριθμός των γραμμών σε αναμονή για εγγραφή στις σειρές ΚΑΘΥΣΤΕΡΗΜΕΝΩΝ " "ΕΙΣΑΓΩΓΩΝ (INSERT DELAYED)." -#: libraries/messages.inc.php:964 +#: libraries/messages.inc.php:960 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -5841,37 +5841,37 @@ msgstr "" "Ο αριθμός των πινάκων που ανοίχτηκαν. Αν οι ανοιγμένοι πίνακες είναι " "μεγάλοι, η τιμή λανθάνουσας μνήμης πινάκων είναι πιθανον μικρή." -#: libraries/messages.inc.php:965 +#: libraries/messages.inc.php:961 msgid "The number of files that are open." msgstr "Ο αριθμός των αρχείων που είναι ανοιχτά." -#: libraries/messages.inc.php:966 +#: libraries/messages.inc.php:962 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Ο αριθμός των ροών που είναι ανοιχτές (χρησιμοποιούνται κυρίως για " "καταγραφή)." -#: libraries/messages.inc.php:967 +#: libraries/messages.inc.php:963 msgid "The number of tables that are open." msgstr "Ο αριθμός των πινάκων που είναι ανοιχτοί." -#: libraries/messages.inc.php:968 +#: libraries/messages.inc.php:964 msgid "The number of free memory blocks in query cache." msgstr "Ο αριθμός των ελεύθερων μπλοκ μνήμης στη λανθάνουσα μνήμη ερωτημάτων." -#: libraries/messages.inc.php:969 +#: libraries/messages.inc.php:965 msgid "The amount of free memory for query cache." msgstr "Το μέγεθος της ελεύθερης μνήμης για λανθάνουσα μνήμη ερωτημάτων." -#: libraries/messages.inc.php:970 +#: libraries/messages.inc.php:966 msgid "The number of cache hits." msgstr "Ο αριθμός των προσπελάσεων λανθάνουσας μνήμης." -#: libraries/messages.inc.php:971 +#: libraries/messages.inc.php:967 msgid "The number of queries added to the cache." msgstr "Ο αριθμός των ερωτημάτων που προστέθηκαν στην λανθάνουσα μνήμη." -#: libraries/messages.inc.php:972 +#: libraries/messages.inc.php:968 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -5885,7 +5885,7 @@ msgstr "" "χρησιμοποιούμενη στρατηγική (LRU) για να αποφασίσει ποια ερωτήματα να " "απομακρύνει από τη λανθάνουσα μνήμη." -#: libraries/messages.inc.php:973 +#: libraries/messages.inc.php:969 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -5893,24 +5893,24 @@ msgstr "" "Ο αριθμός των μη λανθανόντων ερωτημάτων (μη απομνημονεύσιμα ή δεν " "απομνημονεύονται λόγω της ρύθμισης query_cache_type)." -#: libraries/messages.inc.php:974 +#: libraries/messages.inc.php:970 msgid "The number of queries registered in the cache." msgstr "Ο αριθμός των καταχωρημένων ερωτημάτων στη λανθάνουσα μνήμη." -#: libraries/messages.inc.php:975 +#: libraries/messages.inc.php:971 msgid "The total number of blocks in the query cache." msgstr "Ο συνολικός αριθμός των μπλοκς στη λανθάνουσα μνήμη ερωτημάτων." -#: libraries/messages.inc.php:976 +#: libraries/messages.inc.php:972 msgctxt "$strShowStatusReset" msgid "Reset" msgstr "Επαναφορά" -#: libraries/messages.inc.php:977 +#: libraries/messages.inc.php:973 msgid "The status of failsafe replication (not yet implemented)." msgstr "Η κατάσταση της ασφαλούς αναπαραγωγής (δεν έχει εφαρμοστεί)." -#: libraries/messages.inc.php:978 +#: libraries/messages.inc.php:974 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -5918,13 +5918,13 @@ msgstr "" "Ο αριθμός των ενώσεων που δεν χρησιμοποιούν ευρετήρια. Αν η τιμή είναι 0, " "πρέπει να ελέγχετε προσεκτικά τα ευρετήρια των πινάκων σας." -#: libraries/messages.inc.php:979 +#: libraries/messages.inc.php:975 msgid "The number of joins that used a range search on a reference table." msgstr "" "Ο αριθμός των ενώσεων που χρησιμοποιήσαν μια αναζήτηση εύρους σε έναν πίνακα " "παραπομπής." -#: libraries/messages.inc.php:980 +#: libraries/messages.inc.php:976 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -5935,7 +5935,7 @@ msgstr "" "(If this is not 0, πρέπει να ελέγχετε προσεκτικά τα ευρετήρια των πινάκων " "σας.)" -#: libraries/messages.inc.php:981 +#: libraries/messages.inc.php:977 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -5943,17 +5943,17 @@ msgstr "" "Ο αριθμός των ενώσεων που χρησιμοποιούν εύρη στον πρώτο πίνακα. (Κανονικά " "δεν είναι κρίσιμος αν δεν είναι μεγάλος.)" -#: libraries/messages.inc.php:982 +#: libraries/messages.inc.php:978 msgid "The number of joins that did a full scan of the first table." msgstr "Ο αριθμός των ενώσεων που έκαναν μια πλήρη σάρωση του πρώτου πίνακα." -#: libraries/messages.inc.php:983 +#: libraries/messages.inc.php:979 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "Ο αριθμός των προσωρινών πινάκων που είναι τώρα ανοιχτοί από τη δευτερεύουσα " "συνεργασία SQL." -#: libraries/messages.inc.php:984 +#: libraries/messages.inc.php:980 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -5961,13 +5961,13 @@ msgstr "" "Συνολικές φορές (από την εκκίνηση) που η διεργασία δευτερεύουσας " "αναπαραγωγής SQL έχει ξαναδοκιμάσει συναλλαγές." -#: libraries/messages.inc.php:985 +#: libraries/messages.inc.php:981 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Αυτό είναι ΑΝΟΙΧΤΟ, αν αυτός ο διακομιστής είναι δευτερεύων που συνδέεται σε " "πρωτεύωντα." -#: libraries/messages.inc.php:986 +#: libraries/messages.inc.php:982 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -5975,14 +5975,14 @@ msgstr "" "Ο αριθμός των διεργασιών που έλαβαν περισσότερα από slow_launch_time " "δευτερόλεπτα να δημιουργηθούν." -#: libraries/messages.inc.php:987 +#: libraries/messages.inc.php:983 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "Ο αριθμός των ερωτημάτων που έλαβαν περισσότερα από long_query_time " "δευτερόλεπτα." -#: libraries/messages.inc.php:988 +#: libraries/messages.inc.php:984 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -5992,23 +5992,23 @@ msgstr "" "ταξινόμησης. Αν ο αριθμός είναι μεγάλος, πρέπει να αυξήσετε την τιμή της " "μεταβλητής συστήματος sort_buffer_size." -#: libraries/messages.inc.php:989 +#: libraries/messages.inc.php:985 msgid "The number of sorts that were done with ranges." msgstr "Ο αριθμός των ταξινομήσεων που έγιναν με εύρη." -#: libraries/messages.inc.php:990 +#: libraries/messages.inc.php:986 msgid "The number of sorted rows." msgstr "Ο αριθμός των ταξινομημένων γραμμών." -#: libraries/messages.inc.php:991 +#: libraries/messages.inc.php:987 msgid "The number of sorts that were done by scanning the table." msgstr "Ο αριθμός των ταξινομήσεων που έγιναν σαρώνοντας τον πίνακα." -#: libraries/messages.inc.php:992 +#: libraries/messages.inc.php:988 msgid "The number of times that a table lock was acquired immediately." msgstr "Οι φορές που ένα κλείδωμα πινακα ανακτήθηκε άμεσα.." -#: libraries/messages.inc.php:993 +#: libraries/messages.inc.php:989 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -6020,7 +6020,7 @@ msgstr "" "απόδοσης, πρέπει πρώτα να βελτιώσετε τα ερωτήματά σας και μετά χωρίστε τον " "πίνακα ή τους πίνακες ή χρησιμοποιείστε αναπαραγωγή." -#: libraries/messages.inc.php:994 +#: libraries/messages.inc.php:990 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -6030,11 +6030,11 @@ msgstr "" "λανθάνουσας μνήμης μπορεί να υπολογιστεί ως Threads_created/Connections. Αν " "η τιμή είναι κόκκινη πρέπει να αυξήσετε την τιμή thread_cache_size." -#: libraries/messages.inc.php:995 +#: libraries/messages.inc.php:991 msgid "The number of currently open connections." msgstr "Ο αριθμός των τρέχοντων ανοιγμένων συνδέσεων." -#: libraries/messages.inc.php:996 +#: libraries/messages.inc.php:992 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -6046,28 +6046,28 @@ msgstr "" "thread_cache_size. (Κανονικά αυτό δεν δίνει μια σημαντική βελτίωση απόδοσης " "αν έχετε μια καλή εφαρμογή διεργασίας.)" -#: libraries/messages.inc.php:997 +#: libraries/messages.inc.php:993 msgid "The number of threads that are not sleeping." msgstr "Ο αριθμός των διεργασιών που δεν είναι σε νάρκη." -#: libraries/messages.inc.php:999 tbl_printview.php:75 +#: libraries/messages.inc.php:995 tbl_printview.php:75 msgid "Show tables" msgstr "Εμφάνιση πινάκων" -#: libraries/messages.inc.php:1000 libraries/sql_query_form.lib.php:396 +#: libraries/messages.inc.php:996 libraries/sql_query_form.lib.php:396 msgid " Show this query here again " msgstr " Εμφάνιση εδώ ξανά αυτού του ερώτηματος" -#: libraries/messages.inc.php:1001 libraries/mysql_charsets.lib.php:217 +#: libraries/messages.inc.php:997 libraries/mysql_charsets.lib.php:217 #: libraries/mysql_charsets.lib.php:342 msgid "Simplified Chinese" msgstr "Απλοποιημένα Κινεζικά" -#: libraries/messages.inc.php:1002 tbl_operations.php:258 +#: libraries/messages.inc.php:998 tbl_operations.php:258 msgid "(singly)" msgstr "(μοναδικά)" -#: libraries/messages.inc.php:1005 libraries/replication_gui.lib.php:52 +#: libraries/messages.inc.php:1001 libraries/replication_gui.lib.php:52 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" @@ -6075,47 +6075,47 @@ msgstr "" "Σιγουρευτείτε ότι έχετε μοναδική ταυτότητα διακομιστή στο αρχείο ρυθμίσεων " "(my.cnf). Αν όχι, προσθέστε την παρακάτω γραμμή στον τομέα [mysqld]:" -#: libraries/messages.inc.php:1006 libraries/mysql_charsets.lib.php:283 +#: libraries/messages.inc.php:1002 libraries/mysql_charsets.lib.php:283 msgid "Slovak" msgstr "Σλοβάκικα" -#: libraries/messages.inc.php:1007 libraries/mysql_charsets.lib.php:286 +#: libraries/messages.inc.php:1003 libraries/mysql_charsets.lib.php:286 msgid "Slovenian" msgstr "Σλοβένικα" -#: libraries/messages.inc.php:1008 pmd_general.php:95 +#: libraries/messages.inc.php:1004 pmd_general.php:95 msgid "Small/Big All" msgstr "Όλα Μικρά/Μεγάλα" -#: libraries/messages.inc.php:1009 pmd_general.php:91 +#: libraries/messages.inc.php:1005 pmd_general.php:91 msgid "Snap to grid" msgstr "Συγκράτηση στο πλέγμα" -#: libraries/messages.inc.php:1011 server_synchronize.php:1167 +#: libraries/messages.inc.php:1007 server_synchronize.php:1167 msgid "Socket" msgstr "Υποδοχή" -#: libraries/messages.inc.php:1013 server_status.php:259 +#: libraries/messages.inc.php:1009 server_status.php:259 msgid "Sorting" msgstr "Ταξινόμηση" -#: libraries/messages.inc.php:1015 tbl_printview.php:310 tbl_structure.php:657 +#: libraries/messages.inc.php:1011 tbl_printview.php:310 tbl_structure.php:657 msgid "Space usage" msgstr "Χρήση χώρου" -#: libraries/messages.inc.php:1016 libraries/mysql_charsets.lib.php:289 +#: libraries/messages.inc.php:1012 libraries/mysql_charsets.lib.php:289 msgid "Spanish" msgstr "Ισπανικά" -#: libraries/messages.inc.php:1019 +#: libraries/messages.inc.php:1015 msgid "Export type" msgstr "Τύπος εξαγωγής" -#: libraries/messages.inc.php:1020 +#: libraries/messages.inc.php:1016 msgid "Export time in UTC" msgstr "" -#: libraries/messages.inc.php:1021 libraries/sqlparser.lib.php:173 +#: libraries/messages.inc.php:1017 libraries/sqlparser.lib.php:173 msgid "" "There is a chance that you may have found a bug in the SQL parser. Please " "examine your query closely, and check that the quotes are correct and not " @@ -6137,7 +6137,7 @@ msgstr "" "πρόβλημα και στείλτε αναφορά λάθους με τα δεδομένα που βρίσκονται στο τμήμα " "CUT που ακολουθεί:" -#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:137 +#: libraries/messages.inc.php:1018 libraries/sqlparser.lib.php:137 msgid "" "There seems to be an error in your SQL query. The MySQL server error output " "below, if there is any, may also help you in diagnosing the problem" @@ -6146,32 +6146,32 @@ msgstr "" "MySQL, εάν υπάρχει κάποιο, μπορεί επίσης να σας βοηθήσει να διαγνώσετε το " "πρόβλημα." -#: libraries/messages.inc.php:1026 libraries/sqlparser.lib.php:495 +#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:495 msgid "Invalid Identifer" msgstr "Άγνωστο Αναγνωριστικό" -#: libraries/messages.inc.php:1027 libraries/sqlparser.lib.php:344 +#: libraries/messages.inc.php:1023 libraries/sqlparser.lib.php:344 msgid "Unclosed quote" msgstr "Ανοιχτά εισαγωγικά" -#: libraries/messages.inc.php:1028 libraries/sqlparser.lib.php:612 +#: libraries/messages.inc.php:1024 libraries/sqlparser.lib.php:612 msgid "Unknown Punctuation String" msgstr "Άγνωστο σημείο στίξης" -#: libraries/messages.inc.php:1030 server_replication.php:327 +#: libraries/messages.inc.php:1026 server_replication.php:327 #: server_replication.php:328 msgid "Start" msgstr "Εκκίνηση" -#: libraries/messages.inc.php:1033 tbl_printview.php:369 tbl_structure.php:729 +#: libraries/messages.inc.php:1029 tbl_printview.php:369 tbl_structure.php:729 msgid "Statements" msgstr "Δηλώσεις" -#: libraries/messages.inc.php:1034 tbl_printview.php:380 tbl_structure.php:741 +#: libraries/messages.inc.php:1030 tbl_printview.php:380 tbl_structure.php:741 msgid "static" msgstr "στατικό" -#: libraries/messages.inc.php:1035 server_status.php:388 +#: libraries/messages.inc.php:1031 server_status.php:388 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -6180,42 +6180,42 @@ msgstr "" "έτσι αυτές οι στατιστικές όπως αναφέρονται από τον διακομιστή μπορεί να " "είναι εσφαλμένες." -#: libraries/messages.inc.php:1038 server_replication.php:327 +#: libraries/messages.inc.php:1034 server_replication.php:327 #: server_replication.php:328 msgid "Stop" msgstr "Σταμάτημα" -#: libraries/messages.inc.php:1039 server_engines.php:49 +#: libraries/messages.inc.php:1035 server_engines.php:49 msgid "Storage Engines" msgstr "Μηχανές αποθήκευσης" -#: libraries/messages.inc.php:1040 libraries/tbl_properties.inc.php:726 +#: libraries/messages.inc.php:1036 libraries/tbl_properties.inc.php:726 #: server_engines.php:58 tbl_operations.php:353 msgid "Storage Engine" msgstr "Μηχανή αποθήκευσης" -#: libraries/messages.inc.php:1042 +#: libraries/messages.inc.php:1038 msgid "CSV for MS Excel" msgstr "Μορφή CSV για δεδομένα MS Excel" -#: libraries/messages.inc.php:1044 tbl_structure.php:516 tbl_structure.php:518 +#: libraries/messages.inc.php:1040 tbl_structure.php:516 tbl_structure.php:518 msgid "Propose table structure" msgstr "Προτεινόμενη δομή πίνακα" -#: libraries/messages.inc.php:1045 server_synchronize.php:424 +#: libraries/messages.inc.php:1041 server_synchronize.php:424 #: server_synchronize.php:867 msgid "Structure Difference" msgstr "Διαφορά δομής" -#: libraries/messages.inc.php:1049 server_synchronize.php:265 +#: libraries/messages.inc.php:1045 server_synchronize.php:265 msgid "Structure Synchronization" msgstr "Συγχρονισμός δομής" -#: libraries/messages.inc.php:1050 libraries/sql_query_form.lib.php:462 +#: libraries/messages.inc.php:1046 libraries/sql_query_form.lib.php:462 msgid "Submit" msgstr "Αποστολή" -#: libraries/messages.inc.php:1052 main.php:358 +#: libraries/messages.inc.php:1048 main.php:358 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -6224,16 +6224,16 @@ msgstr "" "Ο διακομιστής εκτελείται με Suhosin. Αναφερθείτε στην %sτεκμηρίωση%s για " "πιθανά ζητήματα." -#: libraries/messages.inc.php:1054 libraries/mysql_charsets.lib.php:295 +#: libraries/messages.inc.php:1050 libraries/mysql_charsets.lib.php:295 #: libraries/mysql_charsets.lib.php:392 msgid "Swedish" msgstr "Σουηδικά" -#: libraries/messages.inc.php:1060 tbl_operations.php:556 +#: libraries/messages.inc.php:1056 tbl_operations.php:556 msgid "Switch to copied table" msgstr "Μεταφορά στον αντεγραμμένο πίνακα" -#: libraries/messages.inc.php:1061 server_synchronize.php:1213 +#: libraries/messages.inc.php:1057 server_synchronize.php:1213 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -6241,150 +6241,150 @@ msgstr "" "Η βάση δεδομένων προορισμού θα συγχρονιστεί πλήρως με τη βάση δεδομένων " "προέλευσης. Η βάση δεδομένων προέλευσης θα παραμείνει ως έχει." -#: libraries/messages.inc.php:1062 server_synchronize.php:451 +#: libraries/messages.inc.php:1058 server_synchronize.php:451 #: server_synchronize.php:896 msgid "Synchronize Databases" msgstr "Συγχρονισμός Βάσεων δεδομένων" -#: libraries/messages.inc.php:1063 libraries/server_links.inc.php:92 +#: libraries/messages.inc.php:1059 libraries/server_links.inc.php:92 #: server_synchronize.php:1092 server_synchronize.php:1100 msgid "Synchronize" msgstr "Συγχρονισμός" -#: libraries/messages.inc.php:1065 server_synchronize.php:430 +#: libraries/messages.inc.php:1061 server_synchronize.php:430 #: server_synchronize.php:873 msgid "Add column(s)" msgstr "Προσθήκη στήλης(ών)" -#: libraries/messages.inc.php:1066 tbl_create.php:62 +#: libraries/messages.inc.php:1062 tbl_create.php:62 #, php-format msgid "Table %s already exists!" msgstr "Ο πίνακας %s υπάρχει ήδη!" -#: libraries/messages.inc.php:1067 server_synchronize.php:432 +#: libraries/messages.inc.php:1063 server_synchronize.php:432 #: server_synchronize.php:875 msgid "Alter column(s)" msgstr "Αλλαγή στήλης(ών)" -#: libraries/messages.inc.php:1068 tbl_addfield.php:189 tbl_alter.php:103 +#: libraries/messages.inc.php:1064 tbl_addfield.php:189 tbl_alter.php:103 #: tbl_indexes.php:98 #, php-format msgid "Table %1$s has been altered successfully" msgstr "Ο πίνακας %1$s αλλάχτηκε επιτυχώς" -#: libraries/messages.inc.php:1069 server_synchronize.php:434 +#: libraries/messages.inc.php:1065 server_synchronize.php:434 #: server_synchronize.php:877 msgid "Apply index(s)" msgstr "Εφαρμογή ευρετηρίου(ων)" -#: libraries/messages.inc.php:1071 server_synchronize.php:446 +#: libraries/messages.inc.php:1067 server_synchronize.php:446 #: server_synchronize.php:890 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" "Θέλετε να διαγράψετε όλες τις προηγούμενες γραμμές από τους πίνακες " "προορισμού;" -#: libraries/messages.inc.php:1072 tbl_move_copy.php:82 +#: libraries/messages.inc.php:1068 tbl_move_copy.php:82 msgid "The table name is empty!" msgstr "Το όνομα του Πίνακα είναι κενό!" -#: libraries/messages.inc.php:1073 tbl_create.php:249 +#: libraries/messages.inc.php:1069 tbl_create.php:249 #, php-format msgid "Table %1$s has been created." msgstr "Ο πίνακας %1$s έχει δημιουργηθεί." -#: libraries/messages.inc.php:1076 tbl_operations.php:628 +#: libraries/messages.inc.php:1072 tbl_operations.php:628 #, php-format msgid "Table %s has been flushed" msgstr "Ο Πίνακας %s εκκαθαρίστηκε («FLUSH»)" -#: libraries/messages.inc.php:1077 server_synchronize.php:436 +#: libraries/messages.inc.php:1073 server_synchronize.php:436 #: server_synchronize.php:879 msgid "Insert row(s)" msgstr "Εισαγωγή γραμμής(ών)" -#: libraries/messages.inc.php:1078 libraries/tbl_links.inc.php:107 +#: libraries/messages.inc.php:1074 libraries/tbl_links.inc.php:107 #: libraries/tbl_links.inc.php:140 libraries/tbl_links.inc.php:141 msgid "Table seems to be empty!" msgstr "Ο πίνακας φαίνεται να είναι άδειος!" -#: libraries/messages.inc.php:1079 tbl_operations.php:568 +#: libraries/messages.inc.php:1075 tbl_operations.php:568 msgid "Table maintenance" msgstr "Συντήρηση Πίνακα" -#: libraries/messages.inc.php:1080 libraries/tbl_properties.inc.php:618 +#: libraries/messages.inc.php:1076 libraries/tbl_properties.inc.php:618 #: server_synchronize.php:428 server_synchronize.php:871 msgid "Table name" msgstr "Ονομασία πίνακας" -#: libraries/messages.inc.php:1081 pdf_schema.php:1116 +#: libraries/messages.inc.php:1077 pdf_schema.php:1116 msgid "Table of contents" msgstr "Πίνακας περιεχομένων" -#: libraries/messages.inc.php:1082 tbl_operations.php:334 +#: libraries/messages.inc.php:1078 tbl_operations.php:334 msgid "Table options" msgstr "Επιλογές πίνακα" -#: libraries/messages.inc.php:1083 server_synchronize.php:431 +#: libraries/messages.inc.php:1079 server_synchronize.php:431 #: server_synchronize.php:874 msgid "Remove column(s)" msgstr "Απομάκρυνση στήλης(ών)" -#: libraries/messages.inc.php:1084 server_synchronize.php:433 +#: libraries/messages.inc.php:1080 server_synchronize.php:433 #: server_synchronize.php:876 msgid "Remove index(s)" msgstr "Απομάκρυνση ευρετηρίου(ων)" -#: libraries/messages.inc.php:1088 server_synchronize.php:435 +#: libraries/messages.inc.php:1084 server_synchronize.php:435 #: server_synchronize.php:878 msgid "Update row(s)" msgstr "Ενημέρωση γραμμής(ών)" -#: libraries/messages.inc.php:1090 server_synchronize.php:942 +#: libraries/messages.inc.php:1086 server_synchronize.php:942 msgid "Target database has been synchronized with source database" msgstr "" "Η βάση δεδομένων προορισμού συγχρονίστηκε με τη βάση δεδομένων προέλευσης" -#: libraries/messages.inc.php:1091 server_privileges.php:392 +#: libraries/messages.inc.php:1087 server_privileges.php:392 #: server_privileges.php:527 server_privileges.php:1679 #: server_privileges.php:1685 msgid "Table-specific privileges" msgstr "Δικαιώματα πινάκων" -#: libraries/messages.inc.php:1092 server_status.php:254 +#: libraries/messages.inc.php:1088 server_status.php:254 msgid "Temporary data" msgstr "Προσωρινά δεδομένα" -#: libraries/messages.inc.php:1093 tbl_change.php:728 +#: libraries/messages.inc.php:1089 tbl_change.php:728 msgid " Because of its length,
this field might not be editable " msgstr "" " Εξαιτίας του μεγέθος του,
αυτό το πεδίο ίσως να μη μπορεί να " "διορθωθεί " -#: libraries/messages.inc.php:1094 +#: libraries/messages.inc.php:1090 msgid "Texy! text" msgstr "Κείμενο Texy!" -#: libraries/messages.inc.php:1095 libraries/mysql_charsets.lib.php:298 +#: libraries/messages.inc.php:1091 libraries/mysql_charsets.lib.php:298 #: libraries/mysql_charsets.lib.php:395 msgid "Thai" msgstr "Ταϊλανδικά" -#: libraries/messages.inc.php:1102 libraries/replication_gui.lib.php:308 +#: libraries/messages.inc.php:1098 libraries/replication_gui.lib.php:308 #: server_privileges.php:734 msgid "This Host" msgstr "Αυτός ο διακομιστής" -#: libraries/messages.inc.php:1103 server_status.php:252 +#: libraries/messages.inc.php:1099 server_status.php:252 msgid "Threads" msgstr "Διεργασίες" -#: libraries/messages.inc.php:1104 server_processlist.php:22 +#: libraries/messages.inc.php:1100 server_processlist.php:22 #, php-format msgid "Thread %s was successfully killed." msgstr "Η λειτουργία %s διεκόπη." -#: libraries/messages.inc.php:1106 +#: libraries/messages.inc.php:1102 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -6393,159 +6393,159 @@ msgstr "" "σημαίνει ότι το phpMyAdmin δεν θα μπορέσει να τελειώσει την εισαγωγή εκτός " "και αν αυξήσετε τα χρονικά όρια της php." -#: libraries/messages.inc.php:1109 pmd_pdf.php:94 +#: libraries/messages.inc.php:1105 pmd_pdf.php:94 msgid "to/from page" msgstr "από/προς τη σελίδα" -#: libraries/messages.inc.php:1110 pdf_pages.php:343 +#: libraries/messages.inc.php:1106 pdf_pages.php:343 msgid "Toggle scratchboard" msgstr "(Απ)ενεργοποίηση πίνακα σχεδιασμού" -#: libraries/messages.inc.php:1111 pmd_general.php:99 +#: libraries/messages.inc.php:1107 pmd_general.php:99 msgid "Toggle small/big" msgstr "Εναλλαγή μικρά/μεγάλα" -#: libraries/messages.inc.php:1112 pmd_help.php:27 +#: libraries/messages.inc.php:1108 pmd_help.php:27 msgid "To select relation, click :" msgstr "Για να επιλέξετε συσχέτιση, πατήστε :" -#: libraries/messages.inc.php:1115 libraries/tbl_links.inc.php:149 +#: libraries/messages.inc.php:1111 libraries/tbl_links.inc.php:149 #, php-format msgid "Tracking of %s.%s is activated." msgstr "Παρακολούθηση του %s.%s ενεργοποιήθηκε." -#: libraries/messages.inc.php:1116 tbl_tracking.php:655 +#: libraries/messages.inc.php:1112 tbl_tracking.php:655 msgid "Activate now" msgstr "Ενεργοποιήση τώρα" -#: libraries/messages.inc.php:1117 tbl_tracking.php:653 +#: libraries/messages.inc.php:1113 tbl_tracking.php:653 #, php-format msgid "Activate tracking for %s.%s" msgstr "Ενεργοποίηση παρακολούθησης για το %s.%s" -#: libraries/messages.inc.php:1118 tbl_tracking.php:221 +#: libraries/messages.inc.php:1114 tbl_tracking.php:221 msgid "Comment out these two lines if you do not need them." msgstr "Κάντε σχόλια αυτές τις δύο γραμμές αν δεν τις χρειάζεστε." -#: libraries/messages.inc.php:1119 tbl_tracking.php:688 +#: libraries/messages.inc.php:1115 tbl_tracking.php:688 msgid "Create version" msgstr "Δημιουργία έκδοσης" -#: libraries/messages.inc.php:1120 tbl_tracking.php:668 +#: libraries/messages.inc.php:1116 tbl_tracking.php:668 #, php-format msgid "Create version %s of %s.%s" msgstr "Δημιουργία έκδοσης %s του %s.%s" -#: libraries/messages.inc.php:1122 tbl_tracking.php:412 +#: libraries/messages.inc.php:1118 tbl_tracking.php:412 msgid "Data definition statement" msgstr "Δήλωση ορισμού δεδομένων" -#: libraries/messages.inc.php:1123 tbl_tracking.php:463 +#: libraries/messages.inc.php:1119 tbl_tracking.php:463 msgid "Data manipulation statement" msgstr "Δήλωση χειρισμού δεδομένων" -#: libraries/messages.inc.php:1124 tbl_tracking.php:410 tbl_tracking.php:461 +#: libraries/messages.inc.php:1120 tbl_tracking.php:410 tbl_tracking.php:461 msgid "Date" msgstr "Ημερομηνία" -#: libraries/messages.inc.php:1125 tbl_tracking.php:642 +#: libraries/messages.inc.php:1121 tbl_tracking.php:642 msgid "Deactivate now" msgstr "Απενεργοποιήση τώρα" -#: libraries/messages.inc.php:1126 tbl_tracking.php:640 +#: libraries/messages.inc.php:1122 tbl_tracking.php:640 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "Απενεργοποιήση παρακολούθησης για το %s.%s" -#: libraries/messages.inc.php:1127 tbl_tracking.php:521 +#: libraries/messages.inc.php:1123 tbl_tracking.php:521 #, php-format msgid "Export as %s" msgstr "Εξαγωγή ως %s" -#: libraries/messages.inc.php:1130 tbl_tracking.php:251 tbl_tracking.php:379 +#: libraries/messages.inc.php:1126 tbl_tracking.php:251 tbl_tracking.php:379 msgid "Close" msgstr "Κλείσιμο" -#: libraries/messages.inc.php:1131 tbl_tracking.php:114 +#: libraries/messages.inc.php:1127 tbl_tracking.php:114 #, php-format msgid "Tracking report for table `%s`" msgstr "Αναφορά παρακολούθησης για τον πίνακα «%s»" -#: libraries/messages.inc.php:1133 tbl_tracking.php:397 tbl_tracking.php:504 +#: libraries/messages.inc.php:1129 tbl_tracking.php:397 tbl_tracking.php:504 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "Εμφάνιση %s με ημερομηνίες από %s έως %s από χρήστη %s %s" -#: libraries/messages.inc.php:1134 tbl_tracking.php:561 +#: libraries/messages.inc.php:1130 tbl_tracking.php:561 msgid "Show versions" msgstr "Εμφάνιση εκδόσεων" -#: libraries/messages.inc.php:1135 tbl_tracking.php:507 +#: libraries/messages.inc.php:1131 tbl_tracking.php:507 msgid "SQL dump (file download)" msgstr "Κάδος SQL (λήψη αρχείου)" -#: libraries/messages.inc.php:1136 tbl_tracking.php:508 +#: libraries/messages.inc.php:1132 tbl_tracking.php:508 msgid "SQL dump" msgstr "Κάδος SQL" -#: libraries/messages.inc.php:1137 tbl_tracking.php:213 +#: libraries/messages.inc.php:1133 tbl_tracking.php:213 msgid "SQL statements executed." msgstr "Οι δηλώσεις SQL εκτελέστηκαν." -#: libraries/messages.inc.php:1138 +#: libraries/messages.inc.php:1134 msgid "This option will replace your table and contained data." msgstr "" "Αυτή η επιλογή θα αντικαταστήσει τον πίνακα και τα περιεχόμενά δεδομένα." -#: libraries/messages.inc.php:1139 tbl_tracking.php:509 +#: libraries/messages.inc.php:1135 tbl_tracking.php:509 msgid "SQL execution" msgstr "Εκτέλεση SQL" -#: libraries/messages.inc.php:1140 tbl_tracking.php:230 +#: libraries/messages.inc.php:1136 tbl_tracking.php:230 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "Οι δηλώσεις SQL εξήχθησαν. Αντιγράψτε τον κάδο ή εκτελέστε τον." -#: libraries/messages.inc.php:1141 tbl_tracking.php:381 +#: libraries/messages.inc.php:1137 tbl_tracking.php:381 msgid "Tracking statements" msgstr "Δηλώσεις παρακολούθησης" -#: libraries/messages.inc.php:1148 tbl_tracking.php:593 +#: libraries/messages.inc.php:1144 tbl_tracking.php:593 msgid "Version" msgstr "Έκδοση" -#: libraries/messages.inc.php:1149 tbl_tracking.php:672 +#: libraries/messages.inc.php:1145 tbl_tracking.php:672 msgid "Track these data definition statements:" msgstr "Παρακολούθηση αυτών των δηλώσεων ορισμού δεδομένων:" -#: libraries/messages.inc.php:1150 tbl_tracking.php:680 +#: libraries/messages.inc.php:1146 tbl_tracking.php:680 msgid "Track these data manipulation statements:" msgstr "Παρακολούθηση αυτών των δηλώσεων χειρισμού δεδομένων:" -#: libraries/messages.inc.php:1155 tbl_tracking.php:411 tbl_tracking.php:462 +#: libraries/messages.inc.php:1151 tbl_tracking.php:411 tbl_tracking.php:462 msgid "Username" msgstr "Όνομα χρήστη" -#: libraries/messages.inc.php:1156 tbl_tracking.php:203 +#: libraries/messages.inc.php:1152 tbl_tracking.php:203 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "Η παρακολούθηση του %s.%s , η έκδοση %s είναι ενεργοποιημένη." -#: libraries/messages.inc.php:1157 tbl_tracking.php:187 +#: libraries/messages.inc.php:1153 tbl_tracking.php:187 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "Η έκδοση %s δημιουργήθηκε, η παρακολούθηση του %s.%s ενεργοποιήθηκε." -#: libraries/messages.inc.php:1158 tbl_tracking.php:195 +#: libraries/messages.inc.php:1154 tbl_tracking.php:195 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "Η παρακολούθηση του %s.%s , η έκδοση %s είναι απενεργοποιημένη." -#: libraries/messages.inc.php:1159 tbl_tracking.php:262 +#: libraries/messages.inc.php:1155 tbl_tracking.php:262 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Στιγμιότυπο έκδοσης %s (κώδικας SQL)" -#: libraries/messages.inc.php:1161 tbl_tracking.php:220 +#: libraries/messages.inc.php:1157 tbl_tracking.php:220 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -6553,24 +6553,24 @@ msgstr "" "Μπορείτε να εκτελέσετε τον κάδο δημιουργώντας και χρησιμοποιώντας μι " "προσωρινή βάση δεδομένων. Σιγουρευτείτε ότι έχετε τα δικαιώματα για αυτό." -#: libraries/messages.inc.php:1162 libraries/mysql_charsets.lib.php:219 +#: libraries/messages.inc.php:1158 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:362 msgid "Traditional Chinese" msgstr "Παραδοσιακά Κινεζικά" -#: libraries/messages.inc.php:1163 libraries/mysql_charsets.lib.php:292 +#: libraries/messages.inc.php:1159 libraries/mysql_charsets.lib.php:292 msgid "Traditional Spanish" msgstr "Παραδοσιακά Ισπανικά" -#: libraries/messages.inc.php:1164 server_status.php:388 +#: libraries/messages.inc.php:1160 server_status.php:388 msgid "Traffic" msgstr "Κίνηση" -#: libraries/messages.inc.php:1165 server_status.php:261 +#: libraries/messages.inc.php:1161 server_status.php:261 msgid "Transaction coordinator" msgstr "Συντονιστής κινήσεων" -#: libraries/messages.inc.php:1166 +#: libraries/messages.inc.php:1162 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 " @@ -6583,7 +6583,7 @@ msgstr "" "αρχείου. Αν δώσετε μια δεύτερη επιλογή πρέπει να έχετε ορίσει την πρώτη " "επιλογή ως κενό" -#: libraries/messages.inc.php:1167 +#: libraries/messages.inc.php:1163 msgid "" "Displays hexadecimal representation of data. Optional first parameter " "specifies how often space will be added (defaults to 2 nibbles)." @@ -6592,7 +6592,7 @@ msgstr "" "παράμετρος ορίζει πόσο συχνά θα προστείθεται διάστημα (η προεπιλογή στις 2 " "στιγμές)." -#: libraries/messages.inc.php:1168 +#: libraries/messages.inc.php:1164 msgid "" "Displays a clickable thumbnail. The options are the maximum width and height " "in pixels. The original aspect ratio is preserved." @@ -6600,15 +6600,15 @@ msgstr "" "Εμφανίζει μια εικόνα προεπισκόπησης με σύνδεσμο; επιλογές: πλάτος, ύψος σε " "εικονοστοιχεία (διατηρεί τις αρχικές αναλογίες)" -#: libraries/messages.inc.php:1169 +#: libraries/messages.inc.php:1165 msgid "Displays a link to download this image." msgstr "Εμφανίζει έναν σύνδεσμο για αυτήν την εικόνα." -#: libraries/messages.inc.php:1170 +#: libraries/messages.inc.php:1166 msgid "See image/jpeg: inline" msgstr "Δείτε image/jpeg: inline" -#: libraries/messages.inc.php:1171 +#: libraries/messages.inc.php:1167 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 " @@ -6629,7 +6629,7 @@ msgstr "" "τη συνάρτηση strftime() της PHP και για το «utc» γίνεται χρησιμοποιώντας τη " "συνάρτηση gmdate()." -#: libraries/messages.inc.php:1172 +#: libraries/messages.inc.php:1168 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 " @@ -6655,7 +6655,7 @@ msgstr "" "ώστε όλο το αποτέλεσμα να εμφανιστεί χωρίς αλλαγές στην διάταξη " "(Προεπιλεγμένη τιμή: 1)" -#: libraries/messages.inc.php:1173 +#: libraries/messages.inc.php:1169 msgid "" "Displays the contents of the field as-is, without running it through " "htmlspecialchars(). That is, the field is assumed to contain valid HTML." @@ -6663,7 +6663,7 @@ msgstr "" "Διατηρεί την αρχική μορφοποίηση του πεδίου. Δεν χρησιμοποιούνται χαρακτήρες " "διαφυγής." -#: libraries/messages.inc.php:1174 +#: libraries/messages.inc.php:1170 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 " @@ -6673,7 +6673,7 @@ msgstr "" "πρώτη επιλογή είναι ένα πρόθεμα όπως «http://domain.com/», η δεύτερη επιλογή " "είναι το πλάτος σε εικονοστοιχεία, η τρίτη είναι το ύψος." -#: libraries/messages.inc.php:1175 +#: libraries/messages.inc.php:1171 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 " @@ -6683,11 +6683,11 @@ msgstr "" "είναι ένα πρόθεμα όπως «http://domain.com/», η δεύτερη επιλογή είναι ένας " "τίτλος για τον σύνδεσμο." -#: libraries/messages.inc.php:1176 +#: libraries/messages.inc.php:1172 msgid "Formats text as SQL query with syntax highlighting." msgstr "Μορφοποιεί το κείμενο ως ερώτημα SQL με συντακτική επισήμανση." -#: libraries/messages.inc.php:1177 +#: libraries/messages.inc.php:1173 msgid "" "Displays a part of a string. The first option is the number of characters to " "skip from the beginning of the string (Default 0). The second option is the " @@ -6701,71 +6701,71 @@ msgstr "" "αλφαριθμητικό. Η τρίτη επιλογή καθορίζει ποιοι χαρακτήρες θα ακολουθούν το " "κείμενο όταν εμφανίζεται μέρος του (Προεπιλογή: ...) ." -#: libraries/messages.inc.php:1179 server_binlog.php:183 server_binlog.php:186 +#: libraries/messages.inc.php:1175 server_binlog.php:183 server_binlog.php:186 #: server_processlist.php:49 server_processlist.php:51 msgid "Truncate Shown Queries" msgstr "Αποκοπή εμφανιζόμενων ερωτημάτων" -#: libraries/messages.inc.php:1180 libraries/mysql_charsets.lib.php:301 +#: libraries/messages.inc.php:1176 libraries/mysql_charsets.lib.php:301 #: libraries/mysql_charsets.lib.php:389 msgid "Turkish" msgstr "Τουρκικά" -#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:304 +#: libraries/messages.inc.php:1179 libraries/mysql_charsets.lib.php:304 #: libraries/mysql_charsets.lib.php:386 msgid "Ukrainian" msgstr "Ουκρανικά" -#: libraries/messages.inc.php:1185 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:1181 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 msgid "Unicode" msgstr "Unicode" -#: libraries/messages.inc.php:1187 libraries/mysql_charsets.lib.php:398 +#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:398 #: libraries/mysql_charsets.lib.php:405 msgid "unknown" msgstr "άγνωστο" -#: libraries/messages.inc.php:1190 server_privileges.php:1152 +#: libraries/messages.inc.php:1186 server_privileges.php:1152 #, php-format msgid "You have updated the privileges for %s." msgstr "Τα δικαιώματα του χρήστη %s ενημερώθηκαν." -#: libraries/messages.inc.php:1191 user_password.php:112 +#: libraries/messages.inc.php:1187 user_password.php:112 msgid "The profile has been updated." msgstr "Τα στοιχεία ανανεώθηκαν." -#: libraries/messages.inc.php:1193 libraries/relation.lib.php:138 +#: libraries/messages.inc.php:1189 libraries/relation.lib.php:138 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "Παρακαλώ διαβάστε στην τεκμηρίωση για το πως μπορείτε να ανανεώσετε τον " "πίνακα Column_comments" -#: libraries/messages.inc.php:1194 +#: libraries/messages.inc.php:1190 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Πρέπει να αναβαθμίσετε σε %s %s ή νεότερη." -#: libraries/messages.inc.php:1204 tbl_printview.php:314 tbl_structure.php:661 +#: libraries/messages.inc.php:1200 tbl_printview.php:314 tbl_structure.php:661 msgid "Usage" msgstr "Χρήση" -#: libraries/messages.inc.php:1205 +#: libraries/messages.inc.php:1201 msgid "Enclose table and field names with backquotes" msgstr "Χρήση ανάποδων εισαγωγικών στα ονόματα των Πινάκων και των Πεδίων" -#: libraries/messages.inc.php:1206 libraries/replication_gui.lib.php:314 +#: libraries/messages.inc.php:1202 libraries/replication_gui.lib.php:314 #: server_privileges.php:740 msgid "Use Host Table" msgstr "Χρήση Οικείου Πίνακα" -#: libraries/messages.inc.php:1207 server_privileges.php:848 +#: libraries/messages.inc.php:1203 server_privileges.php:848 #, php-format msgid "The user %s already exists!" msgstr "Ο χρήστης %s υπάρχει ήδη!" -#: libraries/messages.inc.php:1209 libraries/replication_gui.lib.php:55 +#: libraries/messages.inc.php:1205 libraries/replication_gui.lib.php:55 #: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245 #: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255 #: server_privileges.php:672 server_privileges.php:675 @@ -6773,37 +6773,37 @@ msgstr "Ο χρήστης %s υπάρχει ήδη!" msgid "User name" msgstr "Όνομα χρήστη" -#: libraries/messages.inc.php:1210 server_privileges.php:1645 +#: libraries/messages.inc.php:1206 server_privileges.php:1645 msgid "The selected user was not found in the privilege table." msgstr "Ο επιλεγμένος χρήστης δεν βρέθηκε στον πίνακα δικαιωμάτων." -#: libraries/messages.inc.php:1211 server_privileges.php:1365 +#: libraries/messages.inc.php:1207 server_privileges.php:1365 msgid "User overview" msgstr "Περίληψη χρηστών" -#: libraries/messages.inc.php:1212 server_privileges.php:1261 +#: libraries/messages.inc.php:1208 server_privileges.php:1261 msgid "The selected users have been deleted successfully." msgstr "Οι επιλεγμένοι χρήστες διεγράφησαν επιτυχώς." -#: libraries/messages.inc.php:1213 server_privileges.php:2026 +#: libraries/messages.inc.php:1209 server_privileges.php:2026 #, php-format msgid "Users having access to "%s"" msgstr "Χρήστες με πρόσβαση στη βάση «%s»" -#: libraries/messages.inc.php:1214 main.php:189 server_privileges.php:1350 +#: libraries/messages.inc.php:1210 main.php:189 server_privileges.php:1350 #: server_privileges.php:1497 server_privileges.php:1611 #: server_privileges.php:2029 server_processlist.php:54 msgid "User" msgstr "Χρήστης" -#: libraries/messages.inc.php:1215 tbl_change.php:1171 +#: libraries/messages.inc.php:1211 tbl_change.php:1171 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Χρήση του πλήκτρου TAB για μετακίνηση από τιμή σε τιμή ή CTRL+βέλη για " "μετακίνηση παντού" -#: libraries/messages.inc.php:1217 libraries/replication_gui.lib.php:251 +#: libraries/messages.inc.php:1213 libraries/replication_gui.lib.php:251 #: libraries/replication_gui.lib.php:319 libraries/replication_gui.lib.php:342 #: server_privileges.php:678 server_privileges.php:745 #: server_privileges.php:769 server_privileges.php:1889 @@ -6811,7 +6811,7 @@ msgstr "" msgid "Use text field" msgstr "Χρησιμοποιήστε το πεδίο κειμένου" -#: libraries/messages.inc.php:1221 libraries/sqlvalidator.lib.php:68 +#: libraries/messages.inc.php:1217 libraries/sqlvalidator.lib.php:68 #, php-format msgid "" "The SQL validator could not be initialized. Please check if you have " @@ -6821,85 +6821,85 @@ msgstr "" "εγκαταστήσει της απαραίτητες επεκτάσεις της php όπως περιγράφεται στην %" "sτεκμηρίωση%s." -#: libraries/messages.inc.php:1222 libraries/replication_gui.lib.php:111 +#: libraries/messages.inc.php:1218 libraries/replication_gui.lib.php:111 #: server_status.php:627 tbl_change.php:324 tbl_printview.php:370 #: tbl_select.php:139 tbl_structure.php:730 msgid "Value" msgstr "Τιμή" -#: libraries/messages.inc.php:1223 libraries/replication_gui.lib.php:110 +#: libraries/messages.inc.php:1219 libraries/replication_gui.lib.php:110 #: libraries/sql_query_form.lib.php:445 server_status.php:626 #: server_variables.php:52 msgid "Variable" msgstr "Μεταβλητή" -#: libraries/messages.inc.php:1225 server_export.php:21 +#: libraries/messages.inc.php:1221 server_export.php:21 msgid "View dump (schema) of databases" msgstr "Εμφάνισης σχήματος βάσεων" -#: libraries/messages.inc.php:1227 tbl_export.php:23 +#: libraries/messages.inc.php:1223 tbl_export.php:23 msgid "View dump (schema) of table" msgstr "Εμφάνιση σχήματος του πίνακα" -#: libraries/messages.inc.php:1231 view_create.php:142 +#: libraries/messages.inc.php:1227 view_create.php:142 msgid "VIEW name" msgstr "ΠΡΟΒΟΛΗ ονόματος" -#: libraries/messages.inc.php:1237 main.php:205 +#: libraries/messages.inc.php:1233 main.php:205 msgid "Web server" msgstr "Διακομιστής ιστού" -#: libraries/messages.inc.php:1239 libraries/mysql_charsets.lib.php:277 +#: libraries/messages.inc.php:1235 libraries/mysql_charsets.lib.php:277 #: libraries/mysql_charsets.lib.php:325 msgid "West European" msgstr "Δυτικής Ευρώπης" -#: libraries/messages.inc.php:1240 main.php:230 +#: libraries/messages.inc.php:1236 main.php:230 msgid "Wiki" msgstr "Wiki" -#: libraries/messages.inc.php:1241 server_privileges.php:2138 +#: libraries/messages.inc.php:1237 server_privileges.php:2138 msgid "wildcard" msgstr "μπαλαντέρ" -#: libraries/messages.inc.php:1248 +#: libraries/messages.inc.php:1244 msgid "Export contents" msgstr "Εξαγωγή περιεχομένων" -#: libraries/messages.inc.php:1249 +#: libraries/messages.inc.php:1245 msgid "Export functions" msgstr "Εξαγωγή συναρτήσεων" -#: libraries/messages.inc.php:1250 +#: libraries/messages.inc.php:1246 msgid "Export procedures" msgstr "Εξαγωγή διεργασιών" -#: libraries/messages.inc.php:1251 +#: libraries/messages.inc.php:1247 msgid "Export Structure Schemas (recommended)" msgstr "Εξαγωγή Σχεδίων Δομής (προτείνεται)" -#: libraries/messages.inc.php:1252 +#: libraries/messages.inc.php:1248 msgid "Export tables" msgstr "Εξαγωγή πινάκων" -#: libraries/messages.inc.php:1253 +#: libraries/messages.inc.php:1249 msgid "Export triggers" msgstr "Εξαγωγή δεικτών" -#: libraries/messages.inc.php:1254 +#: libraries/messages.inc.php:1250 msgid "Export views" msgstr "Εξαγωγή προβολών" -#: libraries/messages.inc.php:1255 +#: libraries/messages.inc.php:1251 msgid "XML" msgstr "XML" -#: libraries/messages.inc.php:1259 server_privileges.php:592 +#: libraries/messages.inc.php:1255 server_privileges.php:592 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" "Σημείωση: Αν ορίσετε αυτές τις επιλογές σε 0 (μηδέν) αφαιρείτε ο περιορισμός." -#: libraries/messages.inc.php:1260 +#: libraries/messages.inc.php:1256 msgid "\"zipped\"" msgstr "συμπίεση «zip»" diff --git a/po/en_GB.po b/po/en_GB.po index e76009ef9..f34a0e206 100644 --- 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-05-13 11:25+0200\n" +"POT-Creation-Date: 2010-05-13 11:30+0200\n" "PO-Revision-Date: 2010-05-10 14:24+0200\n" "Last-Translator: Michal \n" "Language-Team: english-gb \n" @@ -15,19 +15,19 @@ msgstr "" "X-Generator: Pootle 2.0.1\n" #: browse_foreigners.php:38 browse_foreigners.php:59 -#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:870 +#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:866 #: server_privileges.php:1475 msgid "Show all" msgstr "Show all" #: browse_foreigners.php:82 db_operations.php:648 -#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:394 -#: libraries/export/pdf.php:147 libraries/messages.inc.php:597 +#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394 +#: libraries/export/pdf.php:147 libraries/messages.inc.php:593 #: pdf_schema.php:283 pdf_schema.php:1123 pdf_schema.php:1139 msgid "Page number:" msgstr "Page number:" -#: browse_foreigners.php:132 libraries/messages.inc.php:1242 +#: browse_foreigners.php:132 libraries/messages.inc.php:1238 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -40,7 +40,7 @@ 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/db_links.inc.php:75 -#: libraries/messages.inc.php:841 libraries/tbl_links.inc.php:63 +#: libraries/messages.inc.php:837 libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Search" @@ -49,12 +49,12 @@ msgstr "Search" #: db_search.php:362 db_structure.php:567 js/messages.php:48 #: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2267 +#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 #: 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 #: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614 -#: libraries/messages.inc.php:361 libraries/replication_gui.lib.php:73 +#: libraries/messages.inc.php:357 libraries/replication_gui.lib.php:73 #: libraries/replication_gui.lib.php:365 libraries/select_server.lib.php:104 #: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477 #: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782 @@ -74,33 +74,33 @@ msgid "Go" msgstr "Go" #: browse_foreigners.php:168 browse_foreigners.php:172 -#: libraries/Index.class.php:442 libraries/messages.inc.php:459 +#: libraries/Index.class.php:442 libraries/messages.inc.php:455 #: tbl_tracking.php:320 msgid "Keyname" msgstr "Keyname" #: browse_foreigners.php:169 browse_foreigners.php:171 -#: libraries/messages.inc.php:252 server_collations.php:55 +#: libraries/messages.inc.php:248 server_collations.php:55 #: server_collations.php:67 server_engines.php:59 server_status.php:628 msgid "Description" msgstr "Description" #: browse_foreigners.php:247 browse_foreigners.php:256 #: browse_foreigners.php:268 browse_foreigners.php:276 -#: libraries/messages.inc.php:1218 +#: libraries/messages.inc.php:1214 msgid "Use this value" msgstr "Use this value" -#: db_create.php:46 libraries/messages.inc.php:215 +#: db_create.php:46 libraries/messages.inc.php:211 #, php-format msgid "Database %1$s has been created." msgstr "Database %1$s has been created." -#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:232 +#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:228 msgid "Database comment: " msgstr "Database comment: " -#: db_datadict.php:165 libraries/messages.inc.php:1070 +#: db_datadict.php:165 libraries/messages.inc.php:1066 #: libraries/tbl_properties.inc.php:724 pdf_schema.php:1236 #: tbl_operations.php:345 tbl_printview.php:130 msgid "Table comments" @@ -109,7 +109,7 @@ msgstr "Table comments" #: db_datadict.php:174 db_qbe.php:174 libraries/Index.class.php:446 #: libraries/export/htmlword.php:244 libraries/export/latex.php:360 #: libraries/export/odt.php:294 libraries/export/texytext.php:233 -#: libraries/messages.inc.php:317 libraries/tbl_properties.inc.php:99 +#: libraries/messages.inc.php:313 libraries/tbl_properties.inc.php:99 #: libraries/tbl_properties.inc.php:275 pdf_schema.php:1262 #: pdf_schema.php:1283 tbl_change.php:308 tbl_indexes.php:189 #: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135 @@ -121,7 +121,7 @@ msgstr "Field" #: libraries/db_events.inc.php:31 libraries/db_routines.inc.php:42 #: 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/messages.inc.php:1181 +#: libraries/export/texytext.php:234 libraries/messages.inc.php:1177 #: libraries/tbl_properties.inc.php:100 pdf_schema.php:1263 #: pdf_schema.php:1284 server_privileges.php:2031 tbl_change.php:287 #: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313 @@ -133,7 +133,7 @@ msgstr "Type" #: db_datadict.php:177 libraries/Index.class.php:449 #: libraries/export/htmlword.php:246 libraries/export/latex.php:360 #: libraries/export/odt.php:300 libraries/export/texytext.php:235 -#: libraries/messages.inc.php:576 libraries/tbl_properties.inc.php:109 +#: libraries/messages.inc.php:572 libraries/tbl_properties.inc.php:109 #: pdf_schema.php:1265 pdf_schema.php:1286 tbl_change.php:323 #: tbl_printview.php:145 tbl_structure.php:181 tbl_tracking.php:276 #: tbl_tracking.php:327 @@ -142,7 +142,7 @@ msgstr "Null" #: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 -#: libraries/export/texytext.php:236 libraries/messages.inc.php:238 +#: libraries/export/texytext.php:236 libraries/messages.inc.php:234 #: libraries/tbl_properties.inc.php:106 pdf_schema.php:1266 #: pdf_schema.php:1287 tbl_printview.php:146 tbl_structure.php:182 #: tbl_tracking.php:277 @@ -151,14 +151,14 @@ msgstr "Default" #: db_datadict.php:182 libraries/export/htmlword.php:249 #: libraries/export/latex.php:362 libraries/export/odt.php:307 -#: libraries/export/texytext.php:238 libraries/messages.inc.php:483 +#: libraries/export/texytext.php:238 libraries/messages.inc.php:479 #: pdf_schema.php:1268 pdf_schema.php:1289 tbl_printview.php:150 msgid "Links to" msgstr "Links to" #: db_datadict.php:184 db_printview.php:112 libraries/export/htmlword.php:252 #: libraries/export/latex.php:365 libraries/export/odt.php:312 -#: libraries/export/texytext.php:241 libraries/messages.inc.php:163 +#: libraries/export/texytext.php:241 libraries/messages.inc.php:159 #: libraries/tbl_properties.inc.php:130 pdf_schema.php:1279 #: pdf_schema.php:1290 tbl_printview.php:152 msgid "Comments" @@ -167,7 +167,7 @@ msgstr "Comments" #: db_datadict.php:267 libraries/Index.class.php:359 #: 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/messages.inc.php:559 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:555 #: libraries/mult_submits.inc.php:263 pdf_schema.php:1344 #: server_privileges.php:1529 server_privileges.php:1540 #: server_privileges.php:1850 server_privileges.php:1855 @@ -179,7 +179,7 @@ msgstr "No" #: db_datadict.php:267 libraries/Index.class.php:360 #: libraries/Index.class.php:385 libraries/export/htmlword.php:322 #: libraries/export/latex.php:430 libraries/export/odt.php:368 -#: libraries/export/texytext.php:311 libraries/messages.inc.php:1257 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:1253 #: libraries/mult_submits.inc.php:45 libraries/mult_submits.inc.php:50 #: libraries/mult_submits.inc.php:55 libraries/mult_submits.inc.php:60 #: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:101 @@ -193,108 +193,108 @@ msgstr "No" msgid "Yes" msgstr "Yes" -#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:670 +#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:666 #: tbl_printview.php:498 msgid "Print" msgstr "Print" -#: db_export.php:29 libraries/messages.inc.php:1226 +#: db_export.php:29 libraries/messages.inc.php:1222 msgid "View dump (schema) of database" msgstr "View dump (schema) of database" #: db_export.php:33 db_printview.php:96 db_qbe.php:102 db_structure.php:51 -#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:568 +#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:564 #: navigation.php:346 msgid "No tables found in database." msgstr "No tables found in database." -#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:845 +#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:841 #: server_export.php:27 msgid "Select All" msgstr "Select All" -#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1188 +#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1184 #: server_export.php:29 msgid "Unselect All" msgstr "Unselect All" -#: db_operations.php:38 libraries/messages.inc.php:213 tbl_create.php:54 +#: db_operations.php:38 libraries/messages.inc.php:209 tbl_create.php:54 msgid "The database name is empty!" msgstr "The database name is empty!" -#: db_operations.php:236 libraries/messages.inc.php:753 +#: db_operations.php:236 libraries/messages.inc.php:749 #, php-format msgid "Database %s has been renamed to %s" msgstr "Database %s has been renamed to %s" -#: db_operations.php:240 libraries/messages.inc.php:178 +#: db_operations.php:240 libraries/messages.inc.php:174 #, php-format msgid "Database %s has been copied to %s" msgstr "Database %s has been copied to %s" -#: db_operations.php:410 libraries/messages.inc.php:236 +#: db_operations.php:410 libraries/messages.inc.php:232 msgid "Rename database to" msgstr "Rename database to" -#: db_operations.php:415 libraries/messages.inc.php:161 +#: db_operations.php:415 libraries/messages.inc.php:157 #: server_processlist.php:57 msgid "Command" msgstr "Command" -#: db_operations.php:425 libraries/messages.inc.php:58 tbl_change.php:1143 +#: db_operations.php:425 libraries/messages.inc.php:54 tbl_change.php:1143 msgid "and then" msgstr "and then" -#: db_operations.php:451 libraries/messages.inc.php:233 +#: db_operations.php:451 libraries/messages.inc.php:229 msgid "Copy database to" msgstr "Copy database to" -#: db_operations.php:458 libraries/messages.inc.php:1043 +#: db_operations.php:458 libraries/messages.inc.php:1039 #: tbl_operations.php:526 tbl_tracking.php:388 msgid "Structure only" msgstr "Structure only" -#: db_operations.php:459 libraries/messages.inc.php:1041 +#: db_operations.php:459 libraries/messages.inc.php:1037 #: tbl_operations.php:527 tbl_tracking.php:390 msgid "Structure and data" msgstr "Structure and data" -#: db_operations.php:460 libraries/messages.inc.php:229 tbl_operations.php:528 +#: db_operations.php:460 libraries/messages.inc.php:225 tbl_operations.php:528 #: tbl_tracking.php:389 msgid "Data only" msgstr "Data only" -#: db_operations.php:468 libraries/messages.inc.php:186 +#: db_operations.php:468 libraries/messages.inc.php:182 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE before copying" #: db_operations.php:471 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 -#: libraries/export/sql.php:82 libraries/messages.inc.php:30 +#: libraries/export/sql.php:82 libraries/messages.inc.php:26 #: tbl_operations.php:534 #, php-format msgid "Add %s" msgstr "Add %s" -#: db_operations.php:475 libraries/messages.inc.php:29 tbl_operations.php:297 +#: db_operations.php:475 libraries/messages.inc.php:25 tbl_operations.php:297 #: tbl_operations.php:536 msgid "Add AUTO_INCREMENT value" msgstr "Add AUTO_INCREMENT value" -#: db_operations.php:479 libraries/messages.inc.php:31 tbl_operations.php:543 +#: db_operations.php:479 libraries/messages.inc.php:27 tbl_operations.php:543 msgid "Add constraints" msgstr "Add constraints" -#: db_operations.php:492 libraries/messages.inc.php:1059 +#: db_operations.php:492 libraries/messages.inc.php:1055 msgid "Switch to copied database" msgstr "Switch to copied database" -#: db_operations.php:533 libraries/messages.inc.php:89 +#: db_operations.php:533 libraries/messages.inc.php:85 msgid "BLOB Repository" msgstr "BLOB Repository" #: db_operations.php:536 db_tracking.php:76 libraries/common.lib.php:1350 -#: libraries/messages.inc.php:1037 libraries/server_links.inc.php:49 +#: libraries/messages.inc.php:1033 libraries/server_links.inc.php:49 #: server_processlist.php:59 tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "Status" @@ -304,11 +304,11 @@ msgctxt "BLOB repository" msgid "Enabled" msgstr "Enabled" -#: db_operations.php:548 libraries/messages.inc.php:93 +#: db_operations.php:548 libraries/messages.inc.php:89 msgid "Disable" msgstr "Disable" -#: db_operations.php:558 libraries/messages.inc.php:90 +#: db_operations.php:558 libraries/messages.inc.php:86 msgid "Damaged" msgstr "Damaged" @@ -322,12 +322,12 @@ msgctxt "BLOB repository" msgid "Disabled" msgstr "Disabled" -#: db_operations.php:574 libraries/messages.inc.php:96 +#: db_operations.php:574 libraries/messages.inc.php:92 msgid "Enable" msgstr "Enable" #: db_operations.php:598 libraries/Index.class.php:448 -#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:158 +#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:154 #: 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:361 @@ -336,7 +336,7 @@ msgstr "Enable" msgid "Collation" msgstr "Collation" -#: db_operations.php:609 libraries/messages.inc.php:742 main.php:316 +#: db_operations.php:609 libraries/messages.inc.php:738 main.php:316 #: pdf_schema.php:34 #, php-format msgid "" @@ -346,58 +346,58 @@ msgstr "" "The additional features for working with linked tables have been " "deactivated. To find out why click %shere%s." -#: db_operations.php:645 libraries/messages.inc.php:264 pdf_pages.php:528 +#: db_operations.php:645 libraries/messages.inc.php:260 pdf_pages.php:528 msgid "Display PDF schema" msgstr "Display PDF schema" -#: db_operations.php:661 libraries/messages.inc.php:877 pdf_pages.php:529 +#: db_operations.php:661 libraries/messages.inc.php:873 pdf_pages.php:529 msgid "Show grid" msgstr "Show grid" -#: db_operations.php:664 libraries/messages.inc.php:874 pdf_pages.php:530 +#: db_operations.php:664 libraries/messages.inc.php:870 pdf_pages.php:530 msgid "Show color" msgstr "Show colour" -#: db_operations.php:666 libraries/messages.inc.php:998 pdf_pages.php:531 +#: db_operations.php:666 libraries/messages.inc.php:994 pdf_pages.php:531 msgid "Show dimension of tables" msgstr "Show dimension of tables" -#: db_operations.php:669 libraries/messages.inc.php:52 pdf_pages.php:532 +#: db_operations.php:669 libraries/messages.inc.php:48 pdf_pages.php:532 msgid "Display all tables with the same width" msgstr "Display all tables with the same width" -#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:227 +#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:223 #: pdf_pages.php:533 msgid "Data Dictionary" msgstr "Data Dictionary" -#: db_operations.php:674 libraries/messages.inc.php:884 pdf_pages.php:534 +#: db_operations.php:674 libraries/messages.inc.php:880 pdf_pages.php:534 msgid "Only show keys" msgstr "Only show keys" -#: db_operations.php:676 libraries/messages.inc.php:875 pdf_pages.php:535 +#: db_operations.php:676 libraries/messages.inc.php:871 pdf_pages.php:535 msgid "Data Dictionary Format" msgstr "Data Dictionary Format" -#: db_operations.php:678 libraries/messages.inc.php:464 pdf_pages.php:537 +#: db_operations.php:678 libraries/messages.inc.php:460 pdf_pages.php:537 msgid "Landscape" msgstr "Landscape" -#: db_operations.php:679 libraries/messages.inc.php:663 pdf_pages.php:538 +#: db_operations.php:679 libraries/messages.inc.php:659 pdf_pages.php:538 msgid "Portrait" msgstr "Portrait" -#: db_operations.php:682 libraries/messages.inc.php:599 pdf_pages.php:541 +#: db_operations.php:682 libraries/messages.inc.php:595 pdf_pages.php:541 msgid "Paper size" msgstr "Paper size" -#: db_operations.php:706 libraries/messages.inc.php:281 +#: db_operations.php:706 libraries/messages.inc.php:277 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 libraries/messages.inc.php:1087 +#: libraries/header.inc.php:126 libraries/messages.inc.php:1083 #: pdf_pages.php:405 server_privileges.php:1626 server_privileges.php:1682 #: server_privileges.php:1946 server_synchronize.php:423 #: server_synchronize.php:866 tbl_tracking.php:592 test/theme.php:75 @@ -405,176 +405,176 @@ msgid "Table" msgstr "Table" #: db_printview.php:105 libraries/db_structure.lib.php:56 -#: libraries/messages.inc.php:735 +#: libraries/messages.inc.php:731 msgid "Records" msgstr "Records" #: db_printview.php:109 libraries/db_structure.lib.php:67 -#: libraries/messages.inc.php:1003 tbl_indexes.php:190 +#: libraries/messages.inc.php:999 tbl_indexes.php:190 msgid "Size" msgstr "Size" #: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 -#: libraries/export/sql.php:899 libraries/messages.inc.php:436 +#: libraries/export/sql.php:899 libraries/messages.inc.php:432 msgid "in use" msgstr "in use" #: db_printview.php:187 libraries/db_info.inc.php:88 -#: libraries/export/sql.php:514 libraries/messages.inc.php:1032 +#: libraries/export/sql.php:514 libraries/messages.inc.php:1028 #: pdf_schema.php:1241 tbl_printview.php:434 tbl_structure.php:810 msgid "Creation" msgstr "Creation" #: db_printview.php:196 libraries/db_info.inc.php:93 -#: libraries/export/sql.php:519 libraries/messages.inc.php:1036 +#: libraries/export/sql.php:519 libraries/messages.inc.php:1032 #: pdf_schema.php:1246 tbl_printview.php:444 tbl_structure.php:818 msgid "Last update" msgstr "Last update" #: db_printview.php:205 libraries/db_info.inc.php:98 -#: libraries/export/sql.php:524 libraries/messages.inc.php:1031 +#: libraries/export/sql.php:524 libraries/messages.inc.php:1027 #: pdf_schema.php:1251 tbl_printview.php:454 tbl_structure.php:826 msgid "Last check" msgstr "Last check" -#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1085 +#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1081 #, php-format msgid "%s table(s)" msgstr "%s table(s)" #: db_qbe.php:29 libraries/display_tbl.lib.php:1981 -#: libraries/messages.inc.php:1051 libraries/sql_query_form.lib.php:140 +#: libraries/messages.inc.php:1047 libraries/sql_query_form.lib.php:140 #: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131 #: view_operations.php:62 msgid "Your SQL query has been executed successfully" msgstr "Your SQL query has been executed successfully" -#: db_qbe.php:42 libraries/messages.inc.php:371 +#: db_qbe.php:42 libraries/messages.inc.php:367 msgid "You have to choose at least one column to display" msgstr "You have to choose at least one column to display" #: db_qbe.php:200 libraries/db_structure.lib.php:104 -#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1014 +#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1010 msgid "Sort" msgstr "Sort" #: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111 #: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828 -#: libraries/messages.inc.php:69 server_databases.php:170 +#: libraries/messages.inc.php:65 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314 msgid "Ascending" msgstr "Ascending" #: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119 #: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825 -#: libraries/messages.inc.php:251 server_databases.php:170 +#: libraries/messages.inc.php:247 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315 msgid "Descending" msgstr "Descending" #: db_qbe.php:264 db_tracking.php:78 libraries/display_tbl.lib.php:308 -#: libraries/messages.inc.php:888 tbl_change.php:277 tbl_tracking.php:597 +#: libraries/messages.inc.php:884 tbl_change.php:277 tbl_tracking.php:597 msgid "Show" msgstr "Show" -#: db_qbe.php:300 libraries/messages.inc.php:202 +#: db_qbe.php:300 libraries/messages.inc.php:198 msgid "Criteria" msgstr "Criteria" #: db_qbe.php:353 db_qbe.php:435 db_qbe.php:527 db_qbe.php:558 -#: libraries/messages.inc.php:718 +#: libraries/messages.inc.php:714 msgid "Ins" msgstr "Ins" #: db_qbe.php:357 db_qbe.php:439 db_qbe.php:524 db_qbe.php:555 -#: libraries/messages.inc.php:56 +#: libraries/messages.inc.php:52 msgid "And" msgstr "And" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:529 db_qbe.php:560 -#: libraries/messages.inc.php:717 +#: libraries/messages.inc.php:713 msgid "Del" 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/messages.inc.php:592 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:588 #: libraries/tbl_properties.inc.php:779 server_privileges.php:258 #: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288 msgid "Or" msgstr "Or" -#: db_qbe.php:507 libraries/messages.inc.php:516 +#: db_qbe.php:507 libraries/messages.inc.php:512 msgid "Modify" msgstr "Modify" -#: db_qbe.php:584 libraries/messages.inc.php:33 +#: db_qbe.php:584 libraries/messages.inc.php:29 msgid "Add/Delete Criteria Row" msgstr "Add/Delete Criteria Row" -#: db_qbe.php:596 libraries/messages.inc.php:32 +#: db_qbe.php:596 libraries/messages.inc.php:28 msgid "Add/Delete Field Columns" msgstr "Add/Delete Field Columns" -#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1192 +#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1188 msgid "Update Query" msgstr "Update Query" -#: db_qbe.php:617 libraries/messages.inc.php:1216 +#: db_qbe.php:617 libraries/messages.inc.php:1212 msgid "Use Tables" msgstr "Use Tables" -#: db_qbe.php:640 libraries/messages.inc.php:723 +#: db_qbe.php:640 libraries/messages.inc.php:719 #, php-format msgid "SQL query on database %s:" msgstr "SQL query on database %s:" -#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:823 +#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:819 msgid "Submit Query" msgstr "Submit Query" #: db_search.php:68 libraries/auth/config.auth.lib.php:84 #: libraries/auth/config.auth.lib.php:103 #: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52 -#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:26 +#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:22 msgid "Access denied" msgstr "Access denied" -#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:836 +#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:832 msgid "at least one of the words" msgstr "at least one of the words" -#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:837 +#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:833 msgid "all words" msgstr "all words" -#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:838 +#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:834 msgid "the exact phrase" msgstr "the exact phrase" -#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:839 +#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:835 msgid "as regular expression" msgstr "as regular expression" -#: db_search.php:242 libraries/messages.inc.php:840 +#: db_search.php:242 libraries/messages.inc.php:836 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Search results for \"%s\" %s:" -#: db_search.php:260 libraries/messages.inc.php:579 +#: db_search.php:260 libraries/messages.inc.php:575 #, php-format msgid "%s match(es) inside table %s" 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/messages.inc.php:108 +#: db_structure.php:105 libraries/messages.inc.php:104 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468 msgid "Browse" msgstr "Browse" #: db_search.php:272 libraries/display_tbl.lib.php:1165 -#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:243 +#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:239 #: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406 #: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377 #: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216 @@ -582,45 +582,45 @@ msgstr "Browse" msgid "Delete" msgstr "Delete" -#: db_search.php:285 libraries/messages.inc.php:580 +#: db_search.php:285 libraries/messages.inc.php:576 #, php-format msgid "Total: %s match(es)" msgstr "Total: %s match(es)" -#: db_search.php:299 libraries/messages.inc.php:832 +#: db_search.php:299 libraries/messages.inc.php:828 msgid "Search in database" msgstr "Search in database" -#: db_search.php:302 libraries/messages.inc.php:835 +#: db_search.php:302 libraries/messages.inc.php:831 msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgstr "Word(s) or value(s) to search for (wildcard: \"%\"):" -#: db_search.php:307 libraries/messages.inc.php:842 +#: db_search.php:307 libraries/messages.inc.php:838 msgid "Find:" msgstr "Find:" -#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1017 +#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1013 msgid "Words are separated by a space character (\" \")." msgstr "Words are separated by a space character (\" \")." -#: db_search.php:325 libraries/messages.inc.php:834 +#: db_search.php:325 libraries/messages.inc.php:830 msgid "Inside table(s):" msgstr "Inside table(s):" -#: db_search.php:355 libraries/messages.inc.php:833 +#: db_search.php:355 libraries/messages.inc.php:829 msgid "Inside field:" msgstr "Inside field:" #: 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/messages.inc.php:431 libraries/sql_query_form.lib.php:334 +#: libraries/messages.inc.php:427 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/db_links.inc.php:63 libraries/export/latex.php:337 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:1048 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:1044 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 #: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269 msgid "Structure" @@ -629,8 +629,8 @@ 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:1642 -#: libraries/db_links.inc.php:100 libraries/messages.inc.php:272 +#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/db_links.inc.php:100 libraries/messages.inc.php:268 #: 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 @@ -640,40 +640,40 @@ 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:1641 -#: libraries/messages.inc.php:284 libraries/mult_submits.inc.php:39 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: libraries/messages.inc.php:280 libraries/mult_submits.inc.php:39 #: libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Empty" -#: db_structure.php:316 libraries/messages.inc.php:1075 +#: db_structure.php:316 libraries/messages.inc.php:1071 #: libraries/tbl_links.inc.php:100 #, php-format msgid "Table %s has been emptied" msgstr "Table %s has been emptied" -#: db_structure.php:326 libraries/messages.inc.php:1229 +#: db_structure.php:326 libraries/messages.inc.php:1225 #: 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/messages.inc.php:1074 +#: db_structure.php:326 libraries/messages.inc.php:1070 #: libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "Table %s has been dropped" -#: db_structure.php:333 libraries/messages.inc.php:1128 +#: db_structure.php:333 libraries/messages.inc.php:1124 msgid "Tracking is active." msgstr "Tracking is active." -#: db_structure.php:335 libraries/messages.inc.php:1129 +#: db_structure.php:335 libraries/messages.inc.php:1125 msgid "Tracking is not active." msgstr "Tracking is not active." #: db_structure.php:420 libraries/display_tbl.lib.php:1944 -#: libraries/messages.inc.php:1228 +#: libraries/messages.inc.php:1224 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -683,83 +683,83 @@ msgstr "" "s." #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 -#: libraries/messages.inc.php:1233 libraries/tbl_info.inc.php:66 +#: libraries/messages.inc.php:1229 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/messages.inc.php:773 libraries/server_links.inc.php:70 +#: libraries/messages.inc.php:769 libraries/server_links.inc.php:70 #: server_replication.php:33 server_replication.php:164 server_status.php:258 msgid "Replication" msgstr "Replication" -#: db_structure.php:489 libraries/messages.inc.php:1053 +#: db_structure.php:489 libraries/messages.inc.php:1049 msgid "Sum" msgstr "Sum" #: db_structure.php:496 libraries/StorageEngine.class.php:356 -#: libraries/messages.inc.php:239 +#: libraries/messages.inc.php:235 #, 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 #: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086 -#: libraries/messages.inc.php:1243 libraries/mult_submits.inc.php:16 +#: libraries/messages.inc.php:1239 libraries/mult_submits.inc.php:16 #: server_databases.php:346 server_databases.php:351 #: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465 msgid "With selected:" msgstr "With selected:" #: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: libraries/messages.inc.php:148 server_databases.php:348 +#: libraries/messages.inc.php:144 server_databases.php:348 #: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459 msgid "Check All" msgstr "Check All" #: db_structure.php:531 libraries/display_tbl.lib.php:2077 -#: libraries/messages.inc.php:1184 libraries/replication_gui.lib.php:33 +#: libraries/messages.inc.php:1180 libraries/replication_gui.lib.php:33 #: server_databases.php:350 server_privileges.php:533 #: server_privileges.php:1564 tbl_structure.php:463 msgid "Uncheck All" msgstr "Uncheck All" -#: db_structure.php:536 libraries/messages.inc.php:150 +#: db_structure.php:536 libraries/messages.inc.php:146 msgid "Check tables having overhead" msgstr "Check tables having overhead" #: db_structure.php:547 db_structure.php:548 db_structure.php:599 -#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:672 +#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:668 #: libraries/mult_submits.inc.php:28 tbl_structure.php:493 #: tbl_structure.php:495 msgid "Print view" msgstr "Print view" -#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:153 +#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:149 #: libraries/mult_submits.inc.php:42 tbl_operations.php:579 msgid "Check table" msgstr "Check table" -#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:590 +#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:586 #: libraries/mult_submits.inc.php:47 tbl_operations.php:619 #: tbl_structure.php:710 tbl_structure.php:712 msgid "Optimize table" msgstr "Optimise table" -#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:758 +#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:754 #: libraries/mult_submits.inc.php:52 tbl_operations.php:609 msgid "Repair table" msgstr "Repair table" -#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:55 +#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:51 #: libraries/mult_submits.inc.php:57 tbl_operations.php:599 msgid "Analyze table" msgstr "Analyse table" #: db_structure.php:557 db_structure.php:558 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/messages.inc.php:310 +#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:306 #: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84 #: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109 #: server_privileges.php:1341 setup/frames/menu.inc.php:22 @@ -767,7 +767,7 @@ msgstr "Analyse table" msgid "Export" msgstr "Export" -#: db_tracking.php:66 libraries/messages.inc.php:1151 +#: db_tracking.php:66 libraries/messages.inc.php:1147 msgid "Tracked tables" msgstr "Tracked tables" @@ -775,7 +775,7 @@ msgstr "Tracked tables" #: 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/header_printview.inc.php:58 libraries/messages.inc.php:212 +#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:208 #: navigation.php:233 server_databases.php:169 server_privileges.php:1621 #: server_privileges.php:1682 server_privileges.php:1940 #: server_processlist.php:56 server_synchronize.php:1179 @@ -783,93 +783,93 @@ msgstr "Tracked tables" msgid "Database" msgstr "Database" -#: db_tracking.php:73 libraries/messages.inc.php:1146 +#: db_tracking.php:73 libraries/messages.inc.php:1142 msgid "Last version" msgstr "Last version" -#: db_tracking.php:74 libraries/messages.inc.php:1145 tbl_tracking.php:594 +#: db_tracking.php:74 libraries/messages.inc.php:1141 tbl_tracking.php:594 msgid "Created" msgstr "Created" -#: db_tracking.php:75 libraries/messages.inc.php:1147 tbl_tracking.php:595 +#: db_tracking.php:75 libraries/messages.inc.php:1143 tbl_tracking.php:595 msgid "Updated" msgstr "Updated" #: db_tracking.php:77 libraries/Index.class.php:440 -#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:27 +#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:23 #: server_databases.php:203 server_privileges.php:1503 #: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187 msgid "Action" msgstr "Action" -#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:247 +#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:243 msgid "Delete tracking data for this table" msgstr "Delete tracking data for this table" -#: db_tracking.php:106 libraries/messages.inc.php:1142 tbl_tracking.php:548 +#: db_tracking.php:106 libraries/messages.inc.php:1138 tbl_tracking.php:548 #: tbl_tracking.php:606 tbl_tracking.php:613 msgid "active" msgstr "active" -#: db_tracking.php:108 libraries/messages.inc.php:1143 tbl_tracking.php:550 +#: db_tracking.php:108 libraries/messages.inc.php:1139 tbl_tracking.php:550 #: tbl_tracking.php:608 tbl_tracking.php:610 msgid "not active" msgstr "not active" -#: db_tracking.php:121 libraries/messages.inc.php:1160 +#: db_tracking.php:121 libraries/messages.inc.php:1156 msgid "Versions" msgstr "Versions" -#: db_tracking.php:122 libraries/messages.inc.php:1132 tbl_tracking.php:379 +#: db_tracking.php:122 libraries/messages.inc.php:1128 tbl_tracking.php:379 #: tbl_tracking.php:624 msgid "Tracking report" msgstr "Tracking report" -#: db_tracking.php:123 libraries/messages.inc.php:1144 tbl_tracking.php:251 +#: db_tracking.php:123 libraries/messages.inc.php:1140 tbl_tracking.php:251 #: tbl_tracking.php:624 msgid "Structure snapshot" msgstr "Structure snapshot" -#: db_tracking.php:152 libraries/messages.inc.php:1154 +#: db_tracking.php:152 libraries/messages.inc.php:1150 msgid "Untracked tables" msgstr "Untracked tables" -#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1153 +#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1149 #: tbl_structure.php:529 tbl_structure.php:531 msgid "Track table" msgstr "Track table" -#: db_tracking.php:200 libraries/messages.inc.php:1121 +#: db_tracking.php:200 libraries/messages.inc.php:1117 msgid "Database Log" msgstr "Database Log" -#: export.php:62 libraries/messages.inc.php:312 +#: export.php:62 libraries/messages.inc.php:308 msgid "Selected export type has to be saved in file!" msgstr "Selected export type has to be saved in file!" -#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:567 +#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:563 #, php-format msgid "Insufficient space to save the file %s." msgstr "Insufficient space to save the file %s." -#: export.php:294 libraries/messages.inc.php:324 +#: export.php:294 libraries/messages.inc.php:320 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "" "File %s already exists on server, change filename or check overwrite option." -#: export.php:298 export.php:302 libraries/messages.inc.php:562 +#: export.php:298 export.php:302 libraries/messages.inc.php:558 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "The web server does not have permission to save the file %s." -#: export.php:629 libraries/messages.inc.php:276 +#: export.php:629 libraries/messages.inc.php:272 #, php-format msgid "Dump has been saved to file %s." msgstr "Dump has been saved to file %s." -#: import.php:60 libraries/messages.inc.php:1202 +#: import.php:60 libraries/messages.inc.php:1198 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation%" @@ -879,14 +879,14 @@ msgstr "" "s for ways to workaround this limit." #: import.php:279 import.php:332 libraries/File.class.php:849 -#: libraries/File.class.php:961 libraries/messages.inc.php:325 +#: libraries/File.class.php:961 libraries/messages.inc.php:321 msgid "File could not be read" msgstr "File could not be read" #: import.php:287 import.php:296 import.php:315 import.php:324 #: libraries/File.class.php:1031 libraries/File.class.php:1039 #: libraries/File.class.php:1055 libraries/File.class.php:1063 -#: libraries/messages.inc.php:1189 +#: libraries/messages.inc.php:1185 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -895,7 +895,7 @@ msgstr "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." -#: import.php:337 libraries/messages.inc.php:547 +#: import.php:337 libraries/messages.inc.php:543 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -906,29 +906,29 @@ msgstr "" "[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." #: import.php:372 libraries/display_import.lib.php:24 -#: libraries/messages.inc.php:125 +#: libraries/messages.inc.php:121 msgid "Could not load import plugins, please check your installation!" msgstr "Could not load import plug-ins, please check your installation!" -#: import.php:397 libraries/messages.inc.php:102 +#: import.php:397 libraries/messages.inc.php:98 msgid "The bookmark has been deleted." msgstr "The bookmark has been deleted." -#: import.php:401 libraries/messages.inc.php:879 +#: import.php:401 libraries/messages.inc.php:875 msgid "Showing bookmark" msgstr "Showing bookmark" -#: import.php:403 libraries/messages.inc.php:101 +#: import.php:403 libraries/messages.inc.php:97 #, php-format msgid "Bookmark %s created" msgstr "Bookmark %s created" -#: import.php:409 import.php:415 libraries/messages.inc.php:407 +#: import.php:409 import.php:415 libraries/messages.inc.php:403 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Import has been successfully finished, %d queries executed." -#: import.php:424 libraries/messages.inc.php:1107 +#: import.php:424 libraries/messages.inc.php:1103 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -936,11 +936,11 @@ msgstr "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." -#: index.php:190 libraries/messages.inc.php:553 +#: index.php:190 libraries/messages.inc.php:549 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin is more friendly with a frames-capable browser." -#: js/messages.php:25 libraries/messages.inc.php:155 +#: js/messages.php:25 libraries/messages.inc.php:151 #: server_synchronize.php:345 server_synchronize.php:357 #: server_synchronize.php:373 server_synchronize.php:380 #: server_synchronize.php:739 server_synchronize.php:767 @@ -948,116 +948,116 @@ msgstr "phpMyAdmin is more friendly with a frames-capable browser." msgid "Click to select" msgstr "Click to select" -#: js/messages.php:26 libraries/messages.inc.php:156 +#: js/messages.php:26 libraries/messages.inc.php:152 msgid "Click to unselect" msgstr "Click to unselect" #: js/messages.php:27 libraries/import.lib.php:103 -#: libraries/messages.inc.php:550 sql.php:89 +#: libraries/messages.inc.php:546 sql.php:89 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" statements are disabled." -#: js/messages.php:30 libraries/messages.inc.php:270 +#: js/messages.php:30 libraries/messages.inc.php:266 #: libraries/mult_submits.inc.php:258 sql.php:188 msgid "Do you really want to " msgstr "Do you really want to " -#: js/messages.php:31 libraries/messages.inc.php:271 +#: js/messages.php:31 libraries/messages.inc.php:267 #: libraries/mult_submits.inc.php:258 sql.php:172 msgid "You are about to DESTROY a complete database!" msgstr "You are about to DESTROY a complete database!" -#: js/messages.php:34 libraries/messages.inc.php:94 +#: js/messages.php:34 libraries/messages.inc.php:90 msgid "You are about to DISABLE a BLOB Repository!" msgstr "You are about to DISABLE a BLOB Repository!" -#: js/messages.php:35 libraries/messages.inc.php:91 +#: js/messages.php:35 libraries/messages.inc.php:87 #, php-format msgid "Are you sure you want to disable all BLOB references for database %s?" msgstr "Are you sure you want to disable all BLOB references for database %s?" -#: js/messages.php:38 libraries/messages.inc.php:342 +#: js/messages.php:38 libraries/messages.inc.php:338 msgid "Missing value in the form!" msgstr "Missing value in the form!" -#: js/messages.php:39 libraries/messages.inc.php:570 +#: js/messages.php:39 libraries/messages.inc.php:566 msgid "This is not a number!" msgstr "This is not a number!" -#: js/messages.php:42 libraries/messages.inc.php:380 +#: js/messages.php:42 libraries/messages.inc.php:376 msgid "The host name is empty!" msgstr "The host name is empty!" -#: js/messages.php:43 libraries/messages.inc.php:1208 +#: js/messages.php:43 libraries/messages.inc.php:1204 msgid "The user name is empty!" msgstr "The user name is empty!" -#: js/messages.php:44 libraries/messages.inc.php:607 +#: js/messages.php:44 libraries/messages.inc.php:603 #: server_privileges.php:1197 user_password.php:70 msgid "The password is empty!" msgstr "The password is empty!" -#: js/messages.php:45 libraries/messages.inc.php:609 +#: js/messages.php:45 libraries/messages.inc.php:605 #: server_privileges.php:1195 user_password.php:73 msgid "The passwords aren't the same!" msgstr "The passwords aren't the same!" -#: js/messages.php:49 libraries/messages.inc.php:123 pmd_general.php:342 +#: js/messages.php:49 libraries/messages.inc.php:119 pmd_general.php:342 #: pmd_general.php:379 msgid "Cancel" msgstr "Cancel" -#: js/messages.php:52 libraries/messages.inc.php:514 +#: js/messages.php:52 libraries/messages.inc.php:510 msgid "Modifications have been saved" msgstr "Modifications have been saved" -#: js/messages.php:53 libraries/messages.inc.php:741 +#: js/messages.php:53 libraries/messages.inc.php:737 msgid "Relation deleted" msgstr "Relation deleted" -#: js/messages.php:54 libraries/messages.inc.php:340 +#: js/messages.php:54 libraries/messages.inc.php:336 msgid "FOREIGN KEY relation added" msgstr "FOREIGN KEY relation added" -#: js/messages.php:55 libraries/messages.inc.php:434 +#: js/messages.php:55 libraries/messages.inc.php:430 msgid "Internal relation added" msgstr "Internal relation added" -#: js/messages.php:56 libraries/messages.inc.php:299 +#: js/messages.php:56 libraries/messages.inc.php:295 msgid "Error: Relation not added." msgstr "Error: Relation not added." -#: js/messages.php:57 libraries/messages.inc.php:300 +#: js/messages.php:57 libraries/messages.inc.php:296 msgid "Error: relation already exists." msgstr "Error: relation already exists." -#: js/messages.php:58 libraries/messages.inc.php:302 +#: js/messages.php:58 libraries/messages.inc.php:298 msgid "Error saving coordinates for Designer." msgstr "Error saving coordinates for Designer." -#: js/messages.php:59 libraries/messages.inc.php:351 +#: js/messages.php:59 libraries/messages.inc.php:347 #: libraries/relation.lib.php:107 msgid "General relation features" msgstr "General relation features" -#: js/messages.php:59 libraries/messages.inc.php:260 +#: js/messages.php:59 libraries/messages.inc.php:256 #: libraries/relation.lib.php:101 libraries/relation.lib.php:108 msgid "Disabled" msgstr "Disabled" -#: js/messages.php:60 libraries/messages.inc.php:850 +#: js/messages.php:60 libraries/messages.inc.php:846 msgid "Select referenced key" msgstr "Select referenced key" -#: js/messages.php:61 libraries/messages.inc.php:848 +#: js/messages.php:61 libraries/messages.inc.php:844 msgid "Select Foreign Key" msgstr "Select Foreign Key" -#: js/messages.php:62 libraries/messages.inc.php:653 +#: js/messages.php:62 libraries/messages.inc.php:649 msgid "Please select the primary key or a unique key" msgstr "Please select the primary key or a unique key" -#: js/messages.php:63 libraries/messages.inc.php:142 pmd_general.php:77 +#: js/messages.php:63 libraries/messages.inc.php:138 pmd_general.php:77 #: tbl_relation.php:548 msgid "Choose field to display" msgstr "Choose field to display" @@ -1073,9 +1073,9 @@ msgid "Prev" msgstr "Prev" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2332 -#: libraries/common.lib.php:2335 libraries/display_tbl.lib.php:338 -#: libraries/messages.inc.php:543 server_binlog.php:205 server_binlog.php:207 +#: js/messages.php:77 libraries/common.lib.php:2344 +#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: libraries/messages.inc.php:539 server_binlog.php:205 server_binlog.php:207 #: tbl_printview.php:424 tbl_structure.php:802 msgid "Next" msgstr "Next" @@ -1134,63 +1134,63 @@ msgid "December" msgstr "December" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1543 +#: js/messages.php:97 libraries/common.lib.php:1555 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1545 +#: js/messages.php:99 libraries/common.lib.php:1557 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1547 +#: js/messages.php:101 libraries/common.lib.php:1559 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1549 +#: js/messages.php:103 libraries/common.lib.php:1561 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1551 +#: js/messages.php:105 libraries/common.lib.php:1563 msgctxt "Short month name" msgid "May" msgstr "May" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1553 +#: js/messages.php:107 libraries/common.lib.php:1565 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1555 +#: js/messages.php:109 libraries/common.lib.php:1567 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1557 +#: js/messages.php:111 libraries/common.lib.php:1569 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1559 +#: js/messages.php:113 libraries/common.lib.php:1571 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1561 +#: js/messages.php:115 libraries/common.lib.php:1573 msgid "Oct" msgstr "Oct" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1563 +#: js/messages.php:117 libraries/common.lib.php:1575 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1565 +#: js/messages.php:119 libraries/common.lib.php:1577 msgid "Dec" msgstr "Dec" @@ -1223,37 +1223,37 @@ msgid "Saturday" msgstr "Saturday" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1568 +#: js/messages.php:132 libraries/common.lib.php:1580 msgid "Sun" msgstr "Sun" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1570 +#: js/messages.php:134 libraries/common.lib.php:1582 msgid "Mon" msgstr "Mon" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1572 +#: js/messages.php:136 libraries/common.lib.php:1584 msgid "Tue" msgstr "Tue" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1574 +#: js/messages.php:138 libraries/common.lib.php:1586 msgid "Wed" msgstr "Wed" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1576 +#: js/messages.php:140 libraries/common.lib.php:1588 msgid "Thu" msgstr "Thu" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1578 +#: js/messages.php:142 libraries/common.lib.php:1590 msgid "Fri" msgstr "Fri" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1580 +#: js/messages.php:144 libraries/common.lib.php:1592 msgid "Sat" msgstr "Sat" @@ -1309,22 +1309,22 @@ msgstr "Minute" msgid "Second" msgstr "Second" -#: libraries/Config.class.php:1015 libraries/messages.inc.php:338 +#: libraries/Config.class.php:1015 libraries/messages.inc.php:334 msgid "Font size" msgstr "Font size" #: libraries/File.class.php:344 libraries/File.class.php:432 #: libraries/File.class.php:569 libraries/File.class.php:708 -#: libraries/messages.inc.php:1201 +#: libraries/messages.inc.php:1197 msgid "Unknown error in file upload." msgstr "Unknown error in file upload." -#: libraries/File.class.php:414 libraries/messages.inc.php:1198 +#: libraries/File.class.php:414 libraries/messages.inc.php:1194 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "The uploaded file exceeds the upload_max_filesize directive in php.ini." -#: libraries/File.class.php:417 libraries/messages.inc.php:1197 +#: libraries/File.class.php:417 libraries/messages.inc.php:1193 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -1332,23 +1332,23 @@ msgstr "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." -#: libraries/File.class.php:420 libraries/messages.inc.php:1200 +#: libraries/File.class.php:420 libraries/messages.inc.php:1196 msgid "The uploaded file was only partially uploaded." msgstr "The uploaded file was only partially uploaded." -#: libraries/File.class.php:423 libraries/messages.inc.php:1199 +#: libraries/File.class.php:423 libraries/messages.inc.php:1195 msgid "Missing a temporary folder." msgstr "Missing a temporary folder." -#: libraries/File.class.php:426 libraries/messages.inc.php:1195 +#: libraries/File.class.php:426 libraries/messages.inc.php:1191 msgid "Failed to write file to disk." msgstr "Failed to write file to disk." -#: libraries/File.class.php:429 libraries/messages.inc.php:1196 +#: libraries/File.class.php:429 libraries/messages.inc.php:1192 msgid "File upload stopped by extension." msgstr "File upload stopped by extension." -#: libraries/File.class.php:908 libraries/messages.inc.php:319 +#: libraries/File.class.php:908 libraries/messages.inc.php:315 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -1356,34 +1356,34 @@ msgstr "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" -#: libraries/Index.class.php:428 libraries/messages.inc.php:554 +#: libraries/Index.class.php:428 libraries/messages.inc.php:550 #: tbl_relation.php:529 msgid "No index defined!" msgstr "No index defined!" -#: libraries/Index.class.php:433 libraries/messages.inc.php:411 +#: libraries/Index.class.php:433 libraries/messages.inc.php:407 #: server_databases.php:132 tbl_tracking.php:316 msgid "Indexes" msgstr "Indexes" -#: libraries/Index.class.php:444 libraries/messages.inc.php:1186 +#: libraries/Index.class.php:444 libraries/messages.inc.php:1182 #: 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:475 tbl_tracking.php:322 msgid "Unique" msgstr "Unique" -#: libraries/Index.class.php:445 libraries/messages.inc.php:596 +#: libraries/Index.class.php:445 libraries/messages.inc.php:592 #: tbl_tracking.php:323 msgid "Packed" msgstr "Packed" -#: libraries/Index.class.php:447 libraries/messages.inc.php:131 +#: libraries/Index.class.php:447 libraries/messages.inc.php:127 #: tbl_tracking.php:325 msgid "Cardinality" msgstr "Cardinality" -#: libraries/Index.class.php:450 libraries/messages.inc.php:162 +#: libraries/Index.class.php:450 libraries/messages.inc.php:158 #: tbl_tracking.php:279 tbl_tracking.php:328 msgid "Comment" msgstr "Comment" @@ -1391,22 +1391,22 @@ msgstr "Comment" #: libraries/Index.class.php:466 libraries/common.lib.php:616 #: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:280 pdf_pages.php:280 +#: libraries/messages.inc.php:276 pdf_pages.php:280 #: setup/frames/index.inc.php:124 setup/lib/messages.inc.php:352 #: tbl_row_action.php:69 msgid "Edit" msgstr "Edit" -#: libraries/Index.class.php:472 libraries/messages.inc.php:666 +#: libraries/Index.class.php:472 libraries/messages.inc.php:662 msgid "The primary key has been dropped" msgstr "The primary key has been dropped" -#: libraries/Index.class.php:476 libraries/messages.inc.php:413 +#: libraries/Index.class.php:476 libraries/messages.inc.php:409 #, php-format msgid "Index %s has been dropped" msgstr "Index %s has been dropped" -#: libraries/Index.class.php:576 libraries/messages.inc.php:412 +#: libraries/Index.class.php:576 libraries/messages.inc.php:408 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -1415,7 +1415,7 @@ 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/messages.inc.php:218 +#: libraries/List_Database.class.php:431 libraries/messages.inc.php:214 #: libraries/server_links.inc.php:41 server_databases.php:88 #: server_privileges.php:1621 setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" @@ -1442,86 +1442,86 @@ msgid_plural "%1$d rows inserted." msgstr[0] "%1$d row inserted." msgstr[1] "%1$d rows inserted." -#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:549 +#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:545 msgid "" "There is no detailed status information available for this storage engine." msgstr "" "There is no detailed status information available for this storage engine." -#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:291 +#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:287 #, php-format msgid "%s is available on this MySQL server." msgstr "%s is available on this MySQL server." -#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:292 +#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:288 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s has been disabled for this MySQL server." -#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:294 +#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:290 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "This MySQL server does not support the %s storage engine." -#: libraries/Table.class.php:1019 libraries/messages.inc.php:443 +#: libraries/Table.class.php:1019 libraries/messages.inc.php:439 msgid "Invalid database" msgstr "Invalid database" -#: libraries/Table.class.php:1033 libraries/messages.inc.php:450 +#: libraries/Table.class.php:1033 libraries/messages.inc.php:446 #: tbl_get_field.php:26 msgid "Invalid table name" msgstr "Invalid table name" -#: libraries/Table.class.php:1048 libraries/messages.inc.php:301 +#: libraries/Table.class.php:1048 libraries/messages.inc.php:297 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "Error renaming table %1$s to %2$s" -#: libraries/Table.class.php:1132 libraries/messages.inc.php:754 +#: libraries/Table.class.php:1132 libraries/messages.inc.php:750 #, php-format msgid "Table %s has been renamed to %s" msgstr "Table %s has been renamed to %s" -#: libraries/Theme.class.php:162 libraries/messages.inc.php:1099 +#: libraries/Theme.class.php:162 libraries/messages.inc.php:1095 #, php-format msgid "No valid image path for theme %s found!" msgstr "No valid image path for theme %s found!" -#: libraries/Theme.class.php:384 libraries/messages.inc.php:1097 +#: libraries/Theme.class.php:384 libraries/messages.inc.php:1093 msgid "No preview available." msgstr "No preview available." -#: libraries/Theme.class.php:387 libraries/messages.inc.php:1089 +#: libraries/Theme.class.php:387 libraries/messages.inc.php:1085 msgid "take it" msgstr "take it" -#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1096 +#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1092 #, php-format msgid "Default theme %s not found!" msgstr "Default theme %s not found!" -#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1098 +#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1094 #, php-format msgid "Theme %s not found!" msgstr "Theme %s not found!" -#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1100 +#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1096 #, php-format msgid "Theme path not found for theme %s!" msgstr "Theme path not found for theme %s!" -#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1101 +#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1097 #: test/theme.php:161 themes.php:21 themes.php:41 msgid "Theme / Style" msgstr "Theme / Style" -#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:172 +#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:168 msgid "Cannot connect: invalid settings." msgstr "Cannot connect: invalid settings." #: libraries/auth/config.auth.lib.php:92 #: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65 -#: libraries/messages.inc.php:1238 test/theme.php:152 +#: libraries/messages.inc.php:1234 test/theme.php:152 #, php-format msgid "Welcome to %s" msgstr "Welcome to %s" @@ -1547,105 +1547,105 @@ msgstr "" "configuration and make sure that they correspond to the information given by " "the administrator of the MySQL server." -#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:488 +#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:484 msgid "Log in" msgstr "Log in" #: libraries/auth/cookie.auth.lib.php:246 -#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:659 +#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:655 #: libraries/navigation_header.inc.php:93 #: libraries/navigation_header.inc.php:95 msgid "phpMyAdmin documentation" msgstr "phpMyAdmin documentation" #: libraries/auth/cookie.auth.lib.php:258 -#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:492 +#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:488 msgid "You can enter hostname/IP address and port separated by space." msgstr "You can enter hostname/IP address and port separated by space." -#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:493 +#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:489 msgid "Server:" msgstr "Server:" -#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:494 +#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:490 msgid "Username:" msgstr "Username:" -#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:491 +#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:487 msgid "Password:" msgstr "Password:" -#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:854 +#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:850 msgid "Server Choice" msgstr "Server Choice" #: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 -#: libraries/messages.inc.php:177 +#: libraries/messages.inc.php:173 msgid "Cookies must be enabled past this point." msgstr "Cookies must be enabled past this point." #: libraries/auth/cookie.auth.lib.php:671 -#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:489 +#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:485 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" "Login without a password is forbidden by configuration (see AllowNoPassword)" #: libraries/auth/cookie.auth.lib.php:675 -#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:544 +#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:540 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "No activity within %s seconds; please log in again" #: libraries/auth/cookie.auth.lib.php:685 #: libraries/auth/cookie.auth.lib.php:687 -#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:126 +#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:122 msgid "Cannot log in to the MySQL server" msgstr "Cannot log in to the MySQL server" -#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1245 +#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1241 msgid "Wrong username/password. Access denied." msgstr "Wrong username/password. Access denied." #: libraries/auth/swekey/swekey.auth.lib.php:118 -#: libraries/messages.inc.php:1057 +#: libraries/messages.inc.php:1053 #, php-format msgid "File %s does not contain any key id" msgstr "File %s does not contain any key id" #: libraries/auth/swekey/swekey.auth.lib.php:157 #: libraries/auth/swekey/swekey.auth.lib.php:180 -#: libraries/messages.inc.php:1056 +#: libraries/messages.inc.php:1052 msgid "Hardware authentication failed" msgstr "Hardware authentication failed" #: libraries/auth/swekey/swekey.auth.lib.php:166 -#: libraries/messages.inc.php:1058 +#: libraries/messages.inc.php:1054 msgid "No valid authentication key plugged" msgstr "No valid authentication key plugged" #: libraries/auth/swekey/swekey.auth.lib.php:202 -#: libraries/messages.inc.php:1055 +#: libraries/messages.inc.php:1051 msgid "Authenticating..." msgstr "Authenticating..." -#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1230 +#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1226 msgid "View image" msgstr "View image" -#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:652 +#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:648 msgid "Play audio" msgstr "Play audio" -#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1232 +#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1228 msgid "View video" msgstr "View video" -#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:269 +#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:265 msgid "Download file" msgstr "Download file" -#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:128 +#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:124 msgid "" "Couldn't load the iconv or recode extension needed for charset conversion. " "Either configure PHP to enable these extensions or disable charset " @@ -1657,7 +1657,7 @@ msgstr "" #: libraries/charset_conversion.lib.php:79 #: libraries/charset_conversion.lib.php:90 -#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:130 +#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:126 msgid "" "Couldn't use the iconv, libiconv, or recode_string functions, although the " "necessary extensions appear to be loaded. Check your PHP configuration." @@ -1665,7 +1665,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/messages.inc.php:170 +#: libraries/common.inc.php:583 libraries/messages.inc.php:166 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!" @@ -1699,22 +1699,22 @@ msgstr "" msgid "Invalid server index: %s" msgstr "Invalid server index: %s" -#: libraries/common.inc.php:636 libraries/messages.inc.php:448 +#: libraries/common.inc.php:636 libraries/messages.inc.php:444 #, 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/messages.inc.php:856 libraries/select_server.lib.php:41 +#: libraries/messages.inc.php:852 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/messages.inc.php:437 +#: libraries/common.inc.php:823 libraries/messages.inc.php:433 msgid "Invalid authentication method set in configuration:" msgstr "Invalid authentication method set in configuration:" -#: libraries/common.lib.php:147 libraries/messages.inc.php:499 +#: libraries/common.lib.php:147 libraries/messages.inc.php:495 #, php-format msgid "Max: %s%s" msgstr "Max: %s%s" @@ -1734,7 +1734,7 @@ msgstr "en" #: libraries/common.lib.php:428 libraries/common.lib.php:430 #: libraries/common.lib.php:432 libraries/common.lib.php:448 #: libraries/common.lib.php:450 libraries/dbg/setup.php:25 -#: libraries/display_export.lib.php:164 libraries/messages.inc.php:267 +#: libraries/display_export.lib.php:164 libraries/messages.inc.php:263 #: libraries/relation.lib.php:97 libraries/sql_query_form.lib.php:451 #: libraries/sql_query_form.lib.php:454 main.php:229 pdf_pages.php:37 #: pdf_pages.php:43 pdf_pages.php:49 pdf_pages.php:54 @@ -1744,55 +1744,55 @@ msgstr "Documentation" #: libraries/common.lib.php:581 libraries/core.lib.php:234 #: libraries/core.lib.php:263 libraries/import.lib.php:134 -#: libraries/messages.inc.php:297 pdf_schema.php:32 pdf_schema.php:232 +#: libraries/messages.inc.php:293 pdf_schema.php:32 pdf_schema.php:232 #: tbl_change.php:1027 tbl_operations.php:213 tbl_relation.php:290 #: view_operations.php:62 msgid "Error" msgstr "Error" #: libraries/common.lib.php:595 libraries/header_printview.inc.php:61 -#: libraries/messages.inc.php:1023 server_processlist.php:60 +#: libraries/messages.inc.php:1019 server_processlist.php:60 #: server_status.php:247 msgid "SQL query" msgstr "SQL query" -#: libraries/common.lib.php:634 libraries/messages.inc.php:538 +#: libraries/common.lib.php:634 libraries/messages.inc.php:534 msgid "MySQL said: " msgstr "MySQL said: " -#: libraries/common.lib.php:667 libraries/messages.inc.php:76 +#: libraries/common.lib.php:667 libraries/messages.inc.php:72 #: pdf_schema.php:241 user_password.php:115 msgid "Back" msgstr "Back" -#: libraries/common.lib.php:1177 libraries/messages.inc.php:309 +#: libraries/common.lib.php:1177 libraries/messages.inc.php:305 #: setup/lib/messages.inc.php:353 msgid "Explain SQL" msgstr "Explain SQL" -#: libraries/common.lib.php:1180 libraries/messages.inc.php:551 +#: libraries/common.lib.php:1180 libraries/messages.inc.php:547 msgid "Skip Explain SQL" msgstr "Skip Explain SQL" -#: libraries/common.lib.php:1212 libraries/messages.inc.php:563 +#: libraries/common.lib.php:1212 libraries/messages.inc.php:559 msgid "Without PHP Code" msgstr "Without PHP Code" -#: libraries/common.lib.php:1215 libraries/messages.inc.php:649 +#: libraries/common.lib.php:1215 libraries/messages.inc.php:645 #: setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "Create PHP Code" -#: libraries/common.lib.php:1233 libraries/messages.inc.php:737 +#: libraries/common.lib.php:1233 libraries/messages.inc.php:733 #: server_status.php:341 setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "Refresh" -#: libraries/common.lib.php:1242 libraries/messages.inc.php:575 +#: libraries/common.lib.php:1242 libraries/messages.inc.php:571 msgid "Skip Validate SQL" msgstr "Skip Validate SQL" -#: libraries/common.lib.php:1245 libraries/messages.inc.php:1220 +#: libraries/common.lib.php:1245 libraries/messages.inc.php:1216 #: setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "Validate SQL" @@ -1806,11 +1806,11 @@ msgid "Inline" msgstr "Inline" #: libraries/common.lib.php:1332 libraries/common.lib.php:1347 -#: libraries/messages.inc.php:713 +#: libraries/messages.inc.php:709 msgid "Profiling" msgstr "Profiling" -#: libraries/common.lib.php:1351 libraries/messages.inc.php:1108 +#: libraries/common.lib.php:1351 libraries/messages.inc.php:1104 #: libraries/tbl_triggers.lib.php:28 server_processlist.php:58 msgid "Time" msgstr "Time" @@ -1844,46 +1844,56 @@ msgstr "PiB" msgid "EiB" msgstr "EiB" +#. l10n: Thousands separator +#: libraries/common.lib.php:1417 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: libraries/common.lib.php:1419 +msgid "." +msgstr "." + #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1584 +#: libraries/common.lib.php:1596 #: libraries/transformations/text_plain__dateformat.inc.php:28 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y at %I:%M %p" -#: libraries/common.lib.php:1886 +#: libraries/common.lib.php:1898 #, 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:2301 libraries/common.lib.php:2304 -#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:664 +#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:660 #: server_status.php:608 msgid "Begin" msgstr "Begin" -#: libraries/common.lib.php:2302 libraries/common.lib.php:2305 -#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:665 +#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:661 #: server_binlog.php:168 server_binlog.php:170 msgid "Previous" msgstr "Previous" -#: libraries/common.lib.php:2333 libraries/common.lib.php:2336 -#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:289 +#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:285 msgid "End" msgstr "End" -#: libraries/common.lib.php:2409 libraries/messages.inc.php:455 +#: libraries/common.lib.php:2421 libraries/messages.inc.php:451 #, php-format msgid "Jump to database "%s"." msgstr "Jump to database "%s"." -#: libraries/common.lib.php:2429 libraries/messages.inc.php:461 +#: libraries/common.lib.php:2441 libraries/messages.inc.php:457 #, 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/core.lib.php:286 libraries/dbg/setup.php:22 -#: libraries/messages.inc.php:127 +#: libraries/messages.inc.php:123 #, php-format msgid "" "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " @@ -1893,74 +1903,74 @@ msgstr "" "extension. Please check your PHP configuration." #: libraries/db_events.inc.php:20 libraries/db_events.inc.php:22 -#: libraries/export/sql.php:415 libraries/messages.inc.php:306 +#: libraries/export/sql.php:415 libraries/messages.inc.php:302 msgid "Events" msgstr "Events" #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 -#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:541 +#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:537 #: libraries/tbl_triggers.lib.php:27 setup/frames/index.inc.php:112 msgid "Name" msgstr "Name" -#: libraries/db_links.inc.php:45 libraries/messages.inc.php:216 +#: libraries/db_links.inc.php:45 libraries/messages.inc.php:212 #, php-format msgid "Database %s has been dropped." msgstr "Database %s has been dropped." #: libraries/db_links.inc.php:57 libraries/db_links.inc.php:58 -#: libraries/db_links.inc.php:59 libraries/messages.inc.php:234 +#: libraries/db_links.inc.php:59 libraries/messages.inc.php:230 msgid "Database seems to be empty!" msgstr "Database seems to be empty!" -#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1025 +#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1021 #: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60 #: querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1152 +#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1148 #: libraries/tbl_links.inc.php:69 msgid "Tracking" msgstr "Tracking" -#: libraries/db_links.inc.php:86 libraries/messages.inc.php:719 +#: libraries/db_links.inc.php:86 libraries/messages.inc.php:715 msgid "Query" msgstr "Query" -#: libraries/db_links.inc.php:91 libraries/messages.inc.php:253 +#: libraries/db_links.inc.php:91 libraries/messages.inc.php:249 msgid "Designer" msgstr "Designer" -#: libraries/db_links.inc.php:98 libraries/messages.inc.php:397 +#: libraries/db_links.inc.php:98 libraries/messages.inc.php:393 #: libraries/server_links.inc.php:88 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:104 libraries/messages.inc.php:587 +#: libraries/db_links.inc.php:104 libraries/messages.inc.php:583 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" msgstr "Operations" -#: libraries/db_links.inc.php:111 libraries/messages.inc.php:709 +#: libraries/db_links.inc.php:111 libraries/messages.inc.php:705 #: libraries/server_links.inc.php:66 server_privileges.php:72 #: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117 msgid "Privileges" msgstr "Privileges" #: libraries/db_routines.inc.php:30 libraries/db_routines.inc.php:32 -#: libraries/messages.inc.php:812 +#: libraries/messages.inc.php:808 msgid "Routines" msgstr "Routines" -#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:811 +#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:807 msgid "Return type" msgstr "Return type" #: libraries/db_structure.lib.php:57 libraries/display_tbl.lib.php:1848 -#: libraries/messages.inc.php:65 +#: libraries/messages.inc.php:61 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -1968,42 +1978,42 @@ msgstr "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" -#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:593 +#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:589 #: server_databases.php:142 tbl_printview.php:336 tbl_structure.php:683 msgid "Overhead" msgstr "Overhead" #: libraries/dbi/mysql.dbi.lib.php:112 libraries/dbi/mysqli.dbi.lib.php:124 -#: libraries/messages.inc.php:176 +#: libraries/messages.inc.php:172 msgid "Connection for controluser as defined in your configuration failed." msgstr "Connection for controluser as defined in your configuration failed." #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 -#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:855 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:851 msgid "The server is not responding" msgstr "The server is not responding" #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:1010 +#: libraries/messages.inc.php:1006 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 libraries/messages.inc.php:255 +#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:251 #: tbl_structure.php:609 msgid "Details..." msgstr "Details..." -#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:143 +#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:139 #: main.php:91 user_password.php:111 user_password.php:129 msgid "Change password" msgstr "Change password" -#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:561 +#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:557 #: libraries/replication_gui.lib.php:341 server_privileges.php:768 msgid "No Password" msgstr "No Password" -#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:610 +#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:606 #: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60 #: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335 #: libraries/replication_gui.lib.php:345 server_privileges.php:757 @@ -2012,13 +2022,13 @@ msgstr "No Password" msgid "Password" msgstr "Password" -#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:806 +#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:802 #: libraries/replication_gui.lib.php:349 libraries/replication_gui.lib.php:352 #: server_privileges.php:776 server_privileges.php:779 msgid "Re-type" msgstr "Re-type" -#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:608 +#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:604 msgid "Password Hashing" msgstr "Password Hashing" @@ -2026,89 +2036,89 @@ msgstr "Password Hashing" msgid "MySQL 4.0 compatible" msgstr "MySQL 4.0 compatible" -#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:353 +#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:349 #: libraries/replication_gui.lib.php:356 server_privileges.php:783 msgid "Generate Password" msgstr "Generate Password" -#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:352 +#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:348 #: libraries/replication_gui.lib.php:359 server_privileges.php:786 msgid "Generate" msgstr "Generate" #: libraries/display_create_database.lib.php:22 -#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:189 +#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:185 msgid "Create new database" msgstr "Create new database" -#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:185 +#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:181 msgid "Create" msgstr "Create" -#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:564 +#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:560 #: server_privileges.php:74 server_privileges.php:1388 #: server_replication.php:35 msgid "No Privileges" msgstr "No Privileges" -#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:445 +#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:441 msgid "Table must have at least one field." msgstr "Table must have at least one field." -#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:190 +#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:186 #, php-format msgid "Create table on database %s" msgstr "Create table on database %s" -#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:577 +#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:573 msgid "Number of fields" msgstr "Number of fields" -#: libraries/display_export.lib.php:42 libraries/messages.inc.php:124 +#: libraries/display_export.lib.php:42 libraries/messages.inc.php:120 msgid "Could not load export plugins, please check your installation!" msgstr "Could not load export plug-ins, please check your installation!" -#: libraries/display_export.lib.php:107 libraries/messages.inc.php:277 +#: libraries/display_export.lib.php:107 libraries/messages.inc.php:273 #, php-format msgid "Dump %s row(s) starting at record # %s" msgstr "Dump %s row(s) starting at record # %s" -#: libraries/display_export.lib.php:115 libraries/messages.inc.php:274 +#: libraries/display_export.lib.php:115 libraries/messages.inc.php:270 msgid "Dump all rows" msgstr "Dump all rows" -#: libraries/display_export.lib.php:125 libraries/messages.inc.php:852 +#: libraries/display_export.lib.php:125 libraries/messages.inc.php:848 #: setup/lib/messages.inc.php:82 msgid "Save as file" msgstr "Save as file" -#: libraries/display_export.lib.php:134 libraries/messages.inc.php:828 +#: libraries/display_export.lib.php:134 libraries/messages.inc.php:824 #, php-format msgid "Save on server in %s directory" msgstr "Save on server in %s directory" -#: libraries/display_export.lib.php:142 libraries/messages.inc.php:594 +#: libraries/display_export.lib.php:142 libraries/messages.inc.php:590 #: setup/lib/messages.inc.php:90 msgid "Overwrite existing file(s)" msgstr "Overwrite existing file(s)" -#: libraries/display_export.lib.php:148 libraries/messages.inc.php:330 +#: libraries/display_export.lib.php:148 libraries/messages.inc.php:326 msgid "File name template" msgstr "File name template" -#: libraries/display_export.lib.php:152 libraries/messages.inc.php:327 +#: libraries/display_export.lib.php:152 libraries/messages.inc.php:323 msgid "server name" msgstr "server name" -#: libraries/display_export.lib.php:155 libraries/messages.inc.php:326 +#: libraries/display_export.lib.php:155 libraries/messages.inc.php:322 msgid "database name" msgstr "database name" -#: libraries/display_export.lib.php:158 libraries/messages.inc.php:328 +#: libraries/display_export.lib.php:158 libraries/messages.inc.php:324 msgid "table name" msgstr "table name" -#: libraries/display_export.lib.php:162 libraries/messages.inc.php:329 +#: libraries/display_export.lib.php:162 libraries/messages.inc.php:325 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2119,24 +2129,24 @@ msgstr "" "formatting strings. Additionally the following transformations will happen: %" "3$s. Other text will be kept as is." -#: libraries/display_export.lib.php:202 libraries/messages.inc.php:331 +#: libraries/display_export.lib.php:202 libraries/messages.inc.php:327 msgid "remember template" msgstr "remember template" #: libraries/display_export.lib.php:210 libraries/display_import.lib.php:178 -#: libraries/display_import.lib.php:191 libraries/messages.inc.php:145 +#: libraries/display_import.lib.php:191 libraries/messages.inc.php:141 #: libraries/sql_query_form.lib.php:549 msgid "Character set of the file:" msgstr "Character set of the file:" -#: libraries/display_export.lib.php:235 libraries/messages.inc.php:166 +#: libraries/display_export.lib.php:235 libraries/messages.inc.php:162 #: setup/lib/messages.inc.php:84 msgid "Compression" 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/messages.inc.php:558 +#: libraries/export/sql.php:868 libraries/messages.inc.php:554 #: libraries/tbl_properties.inc.php:575 server_privileges.php:1836 #: server_processlist.php:75 msgid "None" @@ -2154,11 +2164,11 @@ msgstr "gzipped" msgid "bzipped" msgstr "bzipped" -#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1018 +#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1014 msgid "SQL compatibility mode" msgstr "SQL compatibility mode" -#: libraries/display_import.lib.php:67 libraries/messages.inc.php:398 +#: libraries/display_import.lib.php:67 libraries/messages.inc.php:394 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " @@ -2168,11 +2178,11 @@ msgstr "" "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " "browsers." -#: libraries/display_import.lib.php:77 libraries/messages.inc.php:406 +#: libraries/display_import.lib.php:77 libraries/messages.inc.php:402 msgid "The file is being processed, please be patient." msgstr "The file is being processed, please be patient." -#: libraries/display_import.lib.php:99 libraries/messages.inc.php:408 +#: libraries/display_import.lib.php:99 libraries/messages.inc.php:404 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." @@ -2180,46 +2190,46 @@ msgstr "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." -#: libraries/display_import.lib.php:126 libraries/messages.inc.php:333 +#: libraries/display_import.lib.php:126 libraries/messages.inc.php:329 msgid "File to import" msgstr "File to import" -#: libraries/display_import.lib.php:137 libraries/messages.inc.php:486 +#: libraries/display_import.lib.php:137 libraries/messages.inc.php:482 #: libraries/sql_query_form.lib.php:524 msgid "Location of the text file" msgstr "Location of the text file" -#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1203 +#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1199 msgid "File uploads are not allowed on this server." msgstr "File uploads are not allowed on this server." -#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1235 +#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1231 #: libraries/sql_query_form.lib.php:533 tbl_change.php:1028 msgid "The directory you set for upload work cannot be reached" msgstr "The directory you set for upload work cannot be reached" -#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1236 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1232 #: libraries/sql_query_form.lib.php:536 tbl_change.php:1031 msgid "web server upload directory" msgstr "web server upload directory" -#: libraries/display_import.lib.php:212 libraries/messages.inc.php:167 +#: libraries/display_import.lib.php:212 libraries/messages.inc.php:163 #, php-format msgid "Imported file compression will be automatically detected from: %s" msgstr "Imported file compression will be automatically detected from: %s" -#: libraries/display_import.lib.php:219 libraries/messages.inc.php:600 +#: libraries/display_import.lib.php:219 libraries/messages.inc.php:596 msgid "Partial import" msgstr "Partial import" -#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1105 +#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1101 #, php-format msgid "" "Previous import timed out, after resubmitting will continue from position %d." msgstr "" "Previous import timed out, after resubmitting will continue from position %d." -#: libraries/display_import.lib.php:232 libraries/messages.inc.php:51 +#: libraries/display_import.lib.php:232 libraries/messages.inc.php:47 msgid "" "Allow the interruption of an import in case the script detects it is close " "to the PHP timeout limit. This might be good way to import large files, " @@ -2229,177 +2239,177 @@ msgstr "" "to the PHP timeout limit. This might be good way to import large files, " "however it can break transactions." -#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1004 +#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1000 #: setup/lib/messages.inc.php:161 msgid "Number of records (queries) to skip from start" msgstr "Number of records (queries) to skip from start" -#: libraries/display_import.lib.php:255 libraries/messages.inc.php:396 +#: libraries/display_import.lib.php:255 libraries/messages.inc.php:392 #: setup/lib/messages.inc.php:160 msgid "Format of imported file" msgstr "Format of imported file" #: libraries/display_select_lang.lib.php:45 -#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:465 +#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:461 #: setup/frames/index.inc.php:70 msgid "Language" msgstr "Language" -#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:447 +#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:443 #, php-format msgid "%d is not valid row number." msgstr "%d is not valid row number." -#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:814 +#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:810 msgid "row(s) starting from record #" msgstr "row(s) starting from record #" -#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:817 +#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:813 msgid "horizontal" msgstr "horizontal" -#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:816 +#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:812 msgid "horizontal (rotated headers)" msgstr "horizontal (rotated headers)" -#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:819 +#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:815 msgid "vertical" msgstr "vertical" -#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:818 +#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:814 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "in %s mode and repeat headers after %s cells" -#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:495 +#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:491 msgid "This operation could take a long time. Proceed anyway?" msgstr "This operation could take a long time. Proceed anyway?" -#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1012 +#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1008 msgid "Sort by key" msgstr "Sort by key" #: libraries/display_tbl.lib.php:555 libraries/import.lib.php:1082 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:591 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:587 #: tbl_select.php:267 tbl_structure.php:754 msgid "Options" msgstr "Options" #: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:570 -#: libraries/messages.inc.php:601 +#: libraries/messages.inc.php:597 msgid "Partial Texts" msgstr "Partial Texts" #: libraries/display_tbl.lib.php:561 libraries/display_tbl.lib.php:574 -#: libraries/messages.inc.php:346 +#: libraries/messages.inc.php:342 msgid "Full Texts" msgstr "Full Texts" -#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:739 +#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:735 msgid "Relational key" msgstr "Relational key" -#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:738 +#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:734 msgid "Relational display field" msgstr "Relational display field" -#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:872 +#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:868 msgid "Show binary contents" msgstr "Show binary contents" -#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:873 +#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:869 msgid "Show BLOB contents" msgstr "Show BLOB contents" -#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:871 +#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:867 msgid "Show binary contents as HEX" msgstr "Show binary contents as HEX" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:375 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:371 #: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320 msgid "Hide" msgstr "Hide" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:508 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:504 #: libraries/tbl_properties.inc.php:144 transformation_overview.php:47 msgid "Browser transformation" msgstr "Browser transformation" #: libraries/display_tbl.lib.php:1126 libraries/display_tbl.lib.php:1130 -#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:308 +#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:304 msgid "Execute bookmarked query" msgstr "Execute bookmarked query" #: libraries/display_tbl.lib.php:1145 libraries/display_tbl.lib.php:1157 -#: libraries/messages.inc.php:244 +#: libraries/messages.inc.php:240 msgid "The row has been deleted" msgstr "The row has been deleted" #: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056 -#: libraries/messages.inc.php:460 server_processlist.php:71 +#: libraries/messages.inc.php:456 server_processlist.php:71 #: tbl_row_action.php:64 msgid "Kill" msgstr "Kill" -#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:849 +#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:845 msgid "in query" msgstr "in query" -#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:881 +#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:877 msgid "Showing rows" msgstr "Showing rows" -#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1113 +#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1109 msgid "total" msgstr "total" -#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:727 +#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:723 #: sql.php:524 #, php-format msgid "Query took %01.4f sec" msgstr "Query took %01.4f sec" -#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:135 +#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:131 #: 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:471 msgid "Change" msgstr "Change" -#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:724 +#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:720 msgid "Query results operations" msgstr "Query results operations" -#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:671 +#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:667 msgid "Print view (with full texts)" msgstr "Print view (with full texts)" -#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:482 +#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:478 msgid "Link not found" msgstr "Link not found" -#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1224 +#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1220 #: main.php:228 msgid "Version information" msgstr "Version information" -#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:423 +#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:419 msgid "Data home directory" msgstr "Data home directory" -#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:424 +#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:420 msgid "The common part of the directory path for all InnoDB data files." msgstr "The common part of the directory path for all InnoDB data files." -#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:422 +#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:418 msgid "Data files" msgstr "Data files" -#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:418 +#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:414 msgid "Autoextend increment" msgstr "Autoextend increment" -#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:419 +#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:415 msgid "" " The increment size for extending the size of an autoextending tablespace " "when it becomes full." @@ -2407,11 +2417,11 @@ msgstr "" " The increment size for extending the size of an autoextending tablespace " "when it becomes full." -#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:420 +#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:416 msgid "Buffer pool size" msgstr "Buffer pool size" -#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:421 +#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:417 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." @@ -2419,87 +2429,87 @@ msgstr "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." -#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:112 +#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:108 msgid "Buffer Pool" msgstr "Buffer Pool" -#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:426 +#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:422 #: server_status.php:306 msgid "InnoDB Status" msgstr "InnoDB Status" -#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:113 +#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:109 msgid "Buffer Pool Usage" msgstr "Buffer Pool Usage" -#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1114 +#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1110 #: server_databases.php:137 server_databases.php:305 server_status.php:414 #: server_status.php:475 server_status.php:496 tbl_printview.php:351 #: tbl_structure.php:697 msgid "Total" msgstr "Total" -#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:425 +#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:421 msgid "pages" msgstr "pages" -#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:343 +#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:339 msgid "Free pages" msgstr "Free pages" -#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:259 +#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:255 msgid "Dirty pages" msgstr "Dirty pages" -#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:230 +#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:226 msgid "Pages containing data" msgstr "Pages containing data" -#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:598 +#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:594 msgid "Pages to be flushed" msgstr "Pages to be flushed" -#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:119 +#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:115 msgid "Busy pages" msgstr "Busy pages" -#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:467 +#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:463 msgid "Latched pages" msgstr "Latched pages" -#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:111 +#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:107 msgid "Buffer Pool Activity" msgstr "Buffer Pool Activity" -#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:731 +#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:727 msgid "Read requests" msgstr "Read requests" -#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1244 +#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1240 msgid "Write requests" msgstr "Write requests" -#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:115 +#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:111 msgid "Read misses" msgstr "Read misses" -#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:117 +#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:113 msgid "Write waits" msgstr "Write waits" -#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:114 +#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:110 msgid "Read misses in %" msgstr "Read misses in %" -#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:116 +#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:112 msgid "Write waits in %" msgstr "Write waits in %" -#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:522 +#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:518 msgid "Data pointer size" msgstr "Data pointer size" -#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:523 +#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:519 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." @@ -2507,11 +2517,11 @@ msgstr "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." -#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:528 +#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:524 msgid "Automatic recovery mode" msgstr "Automatic recovery mode" -#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:529 +#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:525 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." @@ -2519,11 +2529,11 @@ msgstr "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." -#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:527 +#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:523 msgid "Maximum size for temporary sort files" msgstr "Maximum size for temporary sort files" -#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:526 +#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:522 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " @@ -2533,11 +2543,11 @@ msgstr "" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " "INFILE)." -#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:525 +#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:521 msgid "Maximum size for temporary files on index creation" msgstr "Maximum size for temporary files on index creation" -#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:524 +#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:520 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " @@ -2547,11 +2557,11 @@ msgstr "" "than using the key cache by the amount specified here, prefer the key cache " "method." -#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:531 +#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:527 msgid "Repair threads" msgstr "Repair threads" -#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:530 +#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:526 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." @@ -2559,11 +2569,11 @@ msgstr "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." -#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:533 +#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:529 msgid "Sort buffer size" msgstr "Sort buffer size" -#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:532 +#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:528 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." @@ -2571,11 +2581,11 @@ msgstr "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." -#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:620 +#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:616 msgid "Index cache size" msgstr "Index cache size" -#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:619 +#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:615 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." @@ -2583,11 +2593,11 @@ msgstr "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." -#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:630 +#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:626 msgid "Record cache size" msgstr "Record cache size" -#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:629 +#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:625 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " @@ -2597,11 +2607,11 @@ msgstr "" "table data. The default value is 32MB. This memory is used to cache changes " "to the handle data (.xtd) and row pointer (.xtr) files." -#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:624 +#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:620 msgid "Log cache size" msgstr "Log cache size" -#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:623 +#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:619 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." @@ -2609,11 +2619,11 @@ msgstr "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." -#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:628 +#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:624 msgid "Log file threshold" msgstr "Log file threshold" -#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:627 +#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:623 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." @@ -2621,11 +2631,11 @@ msgstr "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." -#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:634 +#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:630 msgid "Transaction buffer size" msgstr "Transaction buffer size" -#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:633 +#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:629 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." @@ -2633,11 +2643,11 @@ msgstr "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." -#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:611 +#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:607 msgid "Checkpoint frequency" msgstr "Checkpoint frequency" -#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:612 +#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:608 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." @@ -2645,11 +2655,11 @@ msgstr "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." -#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:615 +#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:611 msgid "Data log threshold" msgstr "Data log threshold" -#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:616 +#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:612 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -2661,11 +2671,11 @@ msgstr "" "value of this variable can be increased to increase the total amount of data " "that can be stored in the database." -#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:618 +#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:614 msgid "Garbage threshold" msgstr "Garbage threshold" -#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:617 +#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:613 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." @@ -2673,11 +2683,11 @@ msgstr "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." -#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:622 +#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:618 msgid "Log buffer size" msgstr "Log buffer size" -#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:621 +#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:617 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " @@ -2687,27 +2697,27 @@ msgstr "" "The engine allocates one buffer per thread, but only if the thread is " "required to write a data log." -#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:613 +#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:609 msgid "Data file grow size" msgstr "Data file grow size" -#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:614 +#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:610 msgid "The grow size of the handle data (.xtd) files." msgstr "The grow size of the handle data (.xtd) files." -#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:632 +#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:628 msgid "Row file grow size" msgstr "Row file grow size" -#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:631 +#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:627 msgid "The grow size of the row pointer (.xtr) files." msgstr "The grow size of the row pointer (.xtr) files." -#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:626 +#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:622 msgid "Log file count" msgstr "Log file count" -#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:625 +#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:621 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -2721,19 +2731,19 @@ msgstr "" #: libraries/export/htmlword.php:132 libraries/export/odt.php:168 #: libraries/export/sql.php:881 libraries/export/texytext.php:130 -#: libraries/messages.inc.php:275 +#: libraries/messages.inc.php:271 msgid "Dumping data for table" msgstr "Dumping data for table" #: libraries/export/htmlword.php:185 libraries/export/odt.php:238 #: libraries/export/sql.php:785 libraries/export/texytext.php:177 -#: libraries/messages.inc.php:1086 +#: libraries/messages.inc.php:1082 msgid "Table structure for table" msgstr "Table structure for table" #: libraries/export/latex.php:125 libraries/export/sql.php:232 #: libraries/export/xml.php:102 libraries/header_printview.inc.php:57 -#: libraries/messages.inc.php:381 libraries/replication_gui.lib.php:63 +#: libraries/messages.inc.php:377 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:170 libraries/replication_gui.lib.php:265 #: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325 #: server_privileges.php:692 server_privileges.php:695 @@ -2745,185 +2755,185 @@ msgstr "Host" #: libraries/export/latex.php:130 libraries/export/sql.php:233 #: libraries/export/xml.php:107 libraries/header_printview.inc.php:59 -#: libraries/messages.inc.php:354 +#: libraries/messages.inc.php:350 msgid "Generation Time" msgstr "Generation Time" #: libraries/export/latex.php:131 libraries/export/sql.php:235 -#: libraries/export/xml.php:108 libraries/messages.inc.php:864 main.php:186 +#: libraries/export/xml.php:108 libraries/messages.inc.php:860 main.php:186 msgid "Server version" msgstr "Server version" #: libraries/export/latex.php:132 libraries/export/sql.php:236 -#: libraries/export/xml.php:109 libraries/messages.inc.php:651 +#: libraries/export/xml.php:109 libraries/messages.inc.php:647 msgid "PHP Version" msgstr "PHP Version" #: libraries/export/latex.php:201 libraries/export/sql.php:868 -#: libraries/messages.inc.php:226 server_databases.php:127 +#: libraries/messages.inc.php:222 server_databases.php:127 #: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317 #: tbl_structure.php:666 msgid "Data" msgstr "Data" -#: libraries/export/odt.php:318 libraries/messages.inc.php:506 +#: libraries/export/odt.php:318 libraries/messages.inc.php:502 #: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "MIME type" -#: libraries/export/sql.php:387 libraries/messages.inc.php:711 +#: libraries/export/sql.php:387 libraries/messages.inc.php:707 msgid "Procedures" msgstr "Procedures" -#: libraries/export/sql.php:401 libraries/messages.inc.php:348 +#: libraries/export/sql.php:401 libraries/messages.inc.php:344 msgid "Functions" msgstr "Functions" -#: libraries/export/sql.php:618 libraries/messages.inc.php:174 +#: libraries/export/sql.php:618 libraries/messages.inc.php:170 msgid "Constraints for dumped tables" msgstr "Constraints for dumped tables" -#: libraries/export/sql.php:627 libraries/messages.inc.php:175 +#: libraries/export/sql.php:627 libraries/messages.inc.php:171 msgid "Constraints for table" msgstr "Constraints for table" -#: libraries/export/sql.php:727 libraries/messages.inc.php:512 +#: libraries/export/sql.php:727 libraries/messages.inc.php:508 msgid "MIME TYPES FOR TABLE" msgstr "MIME TYPES FOR TABLE" -#: libraries/export/sql.php:739 libraries/messages.inc.php:743 +#: libraries/export/sql.php:739 libraries/messages.inc.php:739 msgid "RELATIONS FOR TABLE" msgstr "RELATIONS FOR TABLE" -#: libraries/export/sql.php:796 libraries/messages.inc.php:1178 +#: libraries/export/sql.php:796 libraries/messages.inc.php:1174 #: libraries/tbl_triggers.lib.php:19 msgid "Triggers" msgstr "Triggers" -#: libraries/export/sql.php:808 libraries/messages.inc.php:1046 +#: libraries/export/sql.php:808 libraries/messages.inc.php:1042 msgid "Structure for view" msgstr "Structure for view" -#: libraries/export/sql.php:817 libraries/messages.inc.php:1029 +#: libraries/export/sql.php:817 libraries/messages.inc.php:1025 msgid "Stand-in structure for view" msgstr "Stand-in structure for view" #: libraries/footer.inc.php:184 libraries/footer.inc.php:195 -#: libraries/footer.inc.php:198 libraries/messages.inc.php:586 +#: libraries/footer.inc.php:198 libraries/messages.inc.php:582 msgid "Open new phpMyAdmin window" msgstr "Open new phpMyAdmin window" -#: libraries/header.inc.php:115 libraries/messages.inc.php:542 +#: libraries/header.inc.php:115 libraries/messages.inc.php:538 msgid "New table" msgstr "New table" #: libraries/header_printview.inc.php:50 libraries/header_printview.inc.php:55 -#: libraries/messages.inc.php:1024 +#: libraries/messages.inc.php:1020 msgid "SQL result" msgstr "SQL result" -#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:350 +#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:346 msgid "Generated by" msgstr "Generated by" #: libraries/header_printview.inc.php:63 libraries/import.lib.php:145 -#: libraries/messages.inc.php:820 navigation.php:652 navigation.php:674 +#: libraries/messages.inc.php:816 navigation.php:652 navigation.php:674 #: server_databases.php:122 tbl_printview.php:394 tbl_structure.php:366 #: tbl_structure.php:778 msgid "Rows" msgstr "Rows" -#: libraries/import.lib.php:150 libraries/messages.inc.php:285 sql.php:520 +#: libraries/import.lib.php:150 libraries/messages.inc.php:281 sql.php:520 #: tbl_change.php:181 tbl_get_field.php:35 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL returned an empty result set (i.e. zero rows)." -#: libraries/import.lib.php:1078 libraries/messages.inc.php:399 +#: libraries/import.lib.php:1078 libraries/messages.inc.php:395 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" "The following structures have either been created or altered. Here you can:" -#: libraries/import.lib.php:1079 libraries/messages.inc.php:400 +#: libraries/import.lib.php:1079 libraries/messages.inc.php:396 msgid "View a structure`s contents by clicking on its name" msgstr "View a structure`s contents by clicking on its name" -#: libraries/import.lib.php:1080 libraries/messages.inc.php:401 +#: libraries/import.lib.php:1080 libraries/messages.inc.php:397 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" "Change any of its settings by clicking the corresponding \"Options\" link" -#: libraries/import.lib.php:1081 libraries/messages.inc.php:402 +#: libraries/import.lib.php:1081 libraries/messages.inc.php:398 msgid "Edit its structure by following the \"Structure\" link" msgstr "Edit its structure by following the \"Structure\" link" -#: libraries/import.lib.php:1084 libraries/messages.inc.php:362 +#: libraries/import.lib.php:1084 libraries/messages.inc.php:358 msgid "Go to database" msgstr "Go to database" #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:869 +#: libraries/messages.inc.php:865 msgid "settings" msgstr "settings" -#: libraries/import.lib.php:1106 libraries/messages.inc.php:363 +#: libraries/import.lib.php:1106 libraries/messages.inc.php:359 msgid "Go to table" msgstr "Go to table" -#: libraries/import.lib.php:1109 libraries/messages.inc.php:1047 +#: libraries/import.lib.php:1109 libraries/messages.inc.php:1043 msgid "structure" msgstr "structure" -#: libraries/import.lib.php:1115 libraries/messages.inc.php:364 +#: libraries/import.lib.php:1115 libraries/messages.inc.php:360 msgid "Go to view" msgstr "Go to view" #: libraries/import/csv.php:58 libraries/import/csv.php:70 #: libraries/import/csv.php:74 libraries/import/csv.php:78 -#: libraries/messages.inc.php:442 +#: libraries/messages.inc.php:438 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "Invalid parameter for CSV import: %s" -#: libraries/import/csv.php:59 libraries/messages.inc.php:323 +#: libraries/import/csv.php:59 libraries/messages.inc.php:319 msgid "Fields terminated by" msgstr "Fields terminated by" -#: libraries/import/csv.php:71 libraries/messages.inc.php:320 +#: libraries/import/csv.php:71 libraries/messages.inc.php:316 msgid "Fields enclosed by" msgstr "Fields enclosed by" -#: libraries/import/csv.php:75 libraries/messages.inc.php:321 +#: libraries/import/csv.php:75 libraries/messages.inc.php:317 msgid "Fields escaped by" msgstr "Fields escaped by" -#: libraries/import/csv.php:79 libraries/messages.inc.php:481 +#: libraries/import/csv.php:79 libraries/messages.inc.php:477 msgid "Lines terminated by" msgstr "Lines terminated by" -#: libraries/import/csv.php:119 libraries/messages.inc.php:439 +#: libraries/import/csv.php:119 libraries/messages.inc.php:435 #, php-format msgid "Invalid column (%s) specified!" msgstr "Invalid column (%s) specified!" #: libraries/import/csv.php:177 libraries/import/csv.php:424 -#: libraries/messages.inc.php:441 +#: libraries/messages.inc.php:437 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "Invalid format of CSV input on line %d." -#: libraries/import/csv.php:312 libraries/messages.inc.php:440 +#: libraries/import/csv.php:312 libraries/messages.inc.php:436 #, php-format msgid "Invalid field count in CSV input on line %d." msgstr "Invalid field count in CSV input on line %d." -#: libraries/import/ldi.php:55 libraries/messages.inc.php:446 +#: libraries/import/ldi.php:55 libraries/messages.inc.php:442 msgid "This plugin does not support compressed imports!" msgstr "This plug-in does not support compressed imports!" #: libraries/import/xml.php:74 libraries/import/xml.php:130 -#: libraries/messages.inc.php:1247 +#: libraries/messages.inc.php:1243 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -2952,323 +2962,313 @@ msgstr "Convert to Kana" msgid "ltr" msgstr "ltr" -#. l10n: Thousands separator -#: libraries/messages.inc.php:21 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: libraries/messages.inc.php:23 -msgid "." -msgstr "." - -#: libraries/messages.inc.php:25 server_status.php:461 +#: libraries/messages.inc.php:21 server_status.php:461 msgid "Aborted" msgstr "Aborted" -#: libraries/messages.inc.php:28 main.php:68 +#: libraries/messages.inc.php:24 main.php:68 msgid "Actions" msgstr "Actions" -#: libraries/messages.inc.php:34 libraries/tbl_properties.inc.php:780 +#: libraries/messages.inc.php:30 libraries/tbl_properties.inc.php:780 #: tbl_structure.php:543 #, php-format msgid "Add %s field(s)" msgstr "Add %s field(s)" -#: libraries/messages.inc.php:35 +#: libraries/messages.inc.php:31 msgid "Add custom comment into header (\\n splits lines)" msgstr "Add custom comment into header (\\n splits lines)" -#: libraries/messages.inc.php:36 +#: libraries/messages.inc.php:32 msgid "Add into comments" msgstr "Add into comments" -#: libraries/messages.inc.php:37 tbl_structure.php:541 +#: libraries/messages.inc.php:33 tbl_structure.php:541 msgid "Add new field" msgstr "Add new field" -#: libraries/messages.inc.php:38 server_privileges.php:1886 +#: libraries/messages.inc.php:34 server_privileges.php:1886 msgid "Add privileges on the following database" msgstr "Add privileges on the following database" -#: libraries/messages.inc.php:39 server_privileges.php:1907 +#: libraries/messages.inc.php:35 server_privileges.php:1907 msgid "Add privileges on the following table" msgstr "Add privileges on the following table" -#: libraries/messages.inc.php:40 tbl_select.php:288 +#: libraries/messages.inc.php:36 tbl_select.php:288 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Add search conditions (body of the \"where\" clause):" -#: libraries/messages.inc.php:41 tbl_indexes.php:251 +#: libraries/messages.inc.php:37 tbl_indexes.php:251 #, php-format msgid "Add to index  %s column(s)" msgstr "Add to index  %s column(s)" -#: libraries/messages.inc.php:42 server_privileges.php:1570 +#: libraries/messages.inc.php:38 server_privileges.php:1570 #: server_privileges.php:1594 server_privileges.php:1988 #: server_privileges.php:2177 msgid "Add a new User" msgstr "Add a new User" -#: libraries/messages.inc.php:43 server_privileges.php:931 +#: libraries/messages.inc.php:39 server_privileges.php:931 msgid "You have added a new user." msgstr "You have added a new user." -#: libraries/messages.inc.php:44 server_privileges.php:571 +#: libraries/messages.inc.php:40 server_privileges.php:571 msgid "Administration" msgstr "Administration" -#: libraries/messages.inc.php:45 tbl_structure.php:557 +#: libraries/messages.inc.php:41 tbl_structure.php:557 #, php-format msgid "After %s" msgstr "After %s" -#: libraries/messages.inc.php:46 tbl_change.php:1147 +#: libraries/messages.inc.php:42 tbl_change.php:1147 msgid "Go back to previous page" msgstr "Go back to previous page" -#: libraries/messages.inc.php:47 tbl_change.php:1148 +#: libraries/messages.inc.php:43 tbl_change.php:1148 msgid "Insert another new row" msgstr "Insert another new row" -#: libraries/messages.inc.php:48 tbl_change.php:1160 +#: libraries/messages.inc.php:44 tbl_change.php:1160 msgid "Edit next row" msgstr "Edit next row" -#: libraries/messages.inc.php:49 tbl_change.php:1152 +#: libraries/messages.inc.php:45 tbl_change.php:1152 msgid "Go back to this page" msgstr "Go back to this page" -#: libraries/messages.inc.php:50 querywindow.php:115 +#: libraries/messages.inc.php:46 querywindow.php:115 msgid "All" msgstr "All" -#: libraries/messages.inc.php:53 tbl_operations.php:249 +#: libraries/messages.inc.php:49 tbl_operations.php:249 msgid "Alter table order by" msgstr "Alter table order by" -#: libraries/messages.inc.php:54 tbl_operations.php:660 +#: libraries/messages.inc.php:50 tbl_operations.php:660 msgid "Analyze" msgstr "Analyse" -#: libraries/messages.inc.php:57 +#: libraries/messages.inc.php:53 msgid "and" msgstr "and" -#: libraries/messages.inc.php:59 pmd_general.php:87 +#: libraries/messages.inc.php:55 pmd_general.php:87 msgid "Angular links" msgstr "Angular links" -#: libraries/messages.inc.php:60 tbl_structure.php:401 tbl_structure.php:415 +#: libraries/messages.inc.php:56 tbl_structure.php:401 tbl_structure.php:415 #: tbl_structure.php:429 #, php-format msgid "An index has been added on %s" msgstr "An index has been added on %s" -#: libraries/messages.inc.php:61 server_privileges.php:1521 +#: libraries/messages.inc.php:57 server_privileges.php:1521 #: server_privileges.php:2123 msgid "Any" msgstr "Any" -#: libraries/messages.inc.php:62 libraries/replication_gui.lib.php:298 +#: libraries/messages.inc.php:58 libraries/replication_gui.lib.php:298 #: server_privileges.php:725 msgid "Any host" msgstr "Any host" -#: libraries/messages.inc.php:63 libraries/replication_gui.lib.php:250 +#: libraries/messages.inc.php:59 libraries/replication_gui.lib.php:250 #: server_privileges.php:677 msgid "Any user" msgstr "Any user" -#: libraries/messages.inc.php:64 server_synchronize.php:449 +#: libraries/messages.inc.php:60 server_synchronize.php:449 #: server_synchronize.php:894 msgid "Apply Selected Changes" msgstr "Apply Selected Changes" -#: libraries/messages.inc.php:66 tbl_structure.php:386 +#: libraries/messages.inc.php:62 tbl_structure.php:386 #, php-format msgid "A primary key has been added on %s" msgstr "A primary key has been added on %s" -#: libraries/messages.inc.php:67 libraries/mysql_charsets.lib.php:368 +#: libraries/messages.inc.php:63 libraries/mysql_charsets.lib.php:368 msgid "Arabic" msgstr "Arabic" -#: libraries/messages.inc.php:68 libraries/mysql_charsets.lib.php:359 +#: libraries/messages.inc.php:64 libraries/mysql_charsets.lib.php:359 msgid "Armenian" msgstr "Armenian" -#: libraries/messages.inc.php:70 libraries/tbl_properties.inc.php:394 +#: libraries/messages.inc.php:66 libraries/tbl_properties.inc.php:394 msgid "As defined:" msgstr "As defined:" -#: libraries/messages.inc.php:71 tbl_structure.php:556 +#: libraries/messages.inc.php:67 tbl_structure.php:556 msgid "At Beginning of Table" msgstr "At Beginning of Table" -#: libraries/messages.inc.php:72 tbl_structure.php:555 +#: libraries/messages.inc.php:68 tbl_structure.php:555 msgid "At End of Table" msgstr "At End of Table" -#: libraries/messages.inc.php:73 libraries/tbl_properties.inc.php:108 +#: libraries/messages.inc.php:69 libraries/tbl_properties.inc.php:108 #: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:144 #: tbl_structure.php:180 msgid "Attributes" msgstr "Attributes" -#: libraries/messages.inc.php:74 pdf_pages.php:303 pdf_pages.php:306 +#: libraries/messages.inc.php:70 pdf_pages.php:303 pdf_pages.php:306 msgid "Automatic layout" msgstr "Automatic layout" -#: libraries/messages.inc.php:77 libraries/mysql_charsets.lib.php:354 +#: libraries/messages.inc.php:73 libraries/mysql_charsets.lib.php:354 msgid "Baltic" msgstr "Baltic" -#: libraries/messages.inc.php:78 libraries/sqlparser.lib.php:175 +#: libraries/messages.inc.php:74 libraries/sqlparser.lib.php:175 msgid "BEGIN CUT" msgstr "BEGIN CUT" -#: libraries/messages.inc.php:79 libraries/sqlparser.lib.php:179 +#: libraries/messages.inc.php:75 libraries/sqlparser.lib.php:179 msgid "BEGIN RAW" msgstr "BEGIN RAW" -#: libraries/messages.inc.php:80 libraries/mysql_charsets.lib.php:201 +#: libraries/messages.inc.php:76 libraries/mysql_charsets.lib.php:201 #: libraries/mysql_charsets.lib.php:402 tbl_change.php:518 msgid "Binary" msgstr "Binary" -#: libraries/messages.inc.php:81 tbl_change.php:894 +#: libraries/messages.inc.php:77 tbl_change.php:894 msgid "Binary - do not edit" msgstr "Binary - do not edit" -#: libraries/messages.inc.php:82 libraries/server_links.inc.php:76 +#: libraries/messages.inc.php:78 libraries/server_links.inc.php:76 #: server_binlog.php:110 server_status.php:253 test/theme.php:121 msgid "Binary log" msgstr "Binary log" -#: libraries/messages.inc.php:83 server_binlog.php:217 +#: libraries/messages.inc.php:79 server_binlog.php:217 msgid "Event type" msgstr "Event type" -#: libraries/messages.inc.php:84 server_binlog.php:220 +#: libraries/messages.inc.php:80 server_binlog.php:220 msgid "Information" msgstr "Information" -#: libraries/messages.inc.php:85 server_binlog.php:215 +#: libraries/messages.inc.php:81 server_binlog.php:215 msgid "Log name" msgstr "Log name" -#: libraries/messages.inc.php:86 server_binlog.php:219 +#: libraries/messages.inc.php:82 server_binlog.php:219 msgid "Original position" msgstr "Original position" -#: libraries/messages.inc.php:87 server_binlog.php:216 +#: libraries/messages.inc.php:83 server_binlog.php:216 msgid "Position" msgstr "Position" -#: libraries/messages.inc.php:88 libraries/replication_gui.lib.php:169 +#: libraries/messages.inc.php:84 libraries/replication_gui.lib.php:169 #: server_binlog.php:218 msgid "Server ID" msgstr "Server ID" -#: libraries/messages.inc.php:92 +#: libraries/messages.inc.php:88 msgctxt "$strBLOBRepositoryDisabled" msgid "Disabled" msgstr "Disabled" -#: libraries/messages.inc.php:95 +#: libraries/messages.inc.php:91 msgctxt "$strBLOBRepositoryEnabled" msgid "Enabled" msgstr "Enabled" -#: libraries/messages.inc.php:97 tbl_change.php:888 +#: libraries/messages.inc.php:93 tbl_change.php:888 msgid "Remove BLOB Repository Reference" msgstr "Remove BLOB Repository Reference" -#: libraries/messages.inc.php:98 +#: libraries/messages.inc.php:94 msgctxt "$strBLOBRepositoryRepair" msgid "Repair" msgstr "Repair" -#: libraries/messages.inc.php:99 tbl_change.php:987 +#: libraries/messages.inc.php:95 tbl_change.php:987 msgid "Upload to BLOB repository" msgstr "Upload to BLOB repository" -#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:359 +#: libraries/messages.inc.php:96 libraries/sql_query_form.lib.php:359 #: sql.php:677 msgid "Let every user access this bookmark" msgstr "Let every user access this bookmark" -#: libraries/messages.inc.php:103 sql.php:671 +#: libraries/messages.inc.php:99 sql.php:671 msgid "Label" msgstr "Label" -#: libraries/messages.inc.php:104 libraries/sql_query_form.lib.php:433 +#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:433 msgid "Bookmarked SQL query" msgstr "Bookmarked SQL query" -#: libraries/messages.inc.php:105 libraries/sql_query_form.lib.php:365 +#: libraries/messages.inc.php:101 libraries/sql_query_form.lib.php:365 msgid "Replace existing bookmark of same name" msgstr "Replace existing bookmark of same name" -#: libraries/messages.inc.php:106 libraries/sql_query_form.lib.php:352 +#: libraries/messages.inc.php:102 libraries/sql_query_form.lib.php:352 #: sql.php:665 sql.php:666 sql.php:683 msgid "Bookmark this SQL query" msgstr "Bookmark this SQL query" -#: libraries/messages.inc.php:107 libraries/sql_query_form.lib.php:466 +#: libraries/messages.inc.php:103 libraries/sql_query_form.lib.php:466 msgid "View only" msgstr "View only" -#: libraries/messages.inc.php:109 tbl_structure.php:161 +#: libraries/messages.inc.php:105 tbl_structure.php:161 msgid "Browse distinct values" msgstr "Browse distinct values" -#: libraries/messages.inc.php:110 tbl_change.php:252 tbl_select.php:27 +#: libraries/messages.inc.php:106 tbl_change.php:252 tbl_select.php:27 #: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34 msgid "Browse foreign values" msgstr "Browse foreign values" -#: libraries/messages.inc.php:118 libraries/mysql_charsets.lib.php:213 +#: libraries/messages.inc.php:114 libraries/mysql_charsets.lib.php:213 msgid "Bulgarian" msgstr "Bulgarian" -#: libraries/messages.inc.php:120 +#: libraries/messages.inc.php:116 msgid "\"bzipped\"" msgstr "\"bzipped\"" -#: libraries/messages.inc.php:122 +#: libraries/messages.inc.php:118 msgid "Calendar" msgstr "Calendar" -#: libraries/messages.inc.php:129 tbl_indexes.php:75 +#: libraries/messages.inc.php:125 tbl_indexes.php:75 msgid "Can't rename index to PRIMARY!" msgstr "Can't rename index to PRIMARY!" -#: libraries/messages.inc.php:132 libraries/mysql_charsets.lib.php:223 +#: libraries/messages.inc.php:128 libraries/mysql_charsets.lib.php:223 #: libraries/mysql_charsets.lib.php:409 msgid "case-insensitive" msgstr "case-insensitive" -#: libraries/messages.inc.php:133 libraries/mysql_charsets.lib.php:226 +#: libraries/messages.inc.php:129 libraries/mysql_charsets.lib.php:226 #: libraries/mysql_charsets.lib.php:411 msgid "case-sensitive" msgstr "case-sensitive" -#: libraries/messages.inc.php:134 libraries/mysql_charsets.lib.php:332 +#: libraries/messages.inc.php:130 libraries/mysql_charsets.lib.php:332 msgid "Central European" msgstr "Central European" -#: libraries/messages.inc.php:136 server_privileges.php:1969 +#: libraries/messages.inc.php:132 server_privileges.php:1969 msgid "... keep the old one." msgstr "... keep the old one." -#: libraries/messages.inc.php:137 server_privileges.php:1967 +#: libraries/messages.inc.php:133 server_privileges.php:1967 msgid "Create a new user with the same privileges and ..." msgstr "Create a new user with the same privileges and ..." -#: libraries/messages.inc.php:138 server_privileges.php:1972 +#: libraries/messages.inc.php:134 server_privileges.php:1972 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -3276,77 +3276,77 @@ msgstr "" " ... delete the old one from the user tables and reload the privileges " "afterwards." -#: libraries/messages.inc.php:139 server_privileges.php:1970 +#: libraries/messages.inc.php:135 server_privileges.php:1970 msgid " ... delete the old one from the user tables." msgstr " ... delete the old one from the user tables." -#: libraries/messages.inc.php:140 server_privileges.php:1971 +#: libraries/messages.inc.php:136 server_privileges.php:1971 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "" " ... revoke all active privileges from the old one and delete it afterwards." -#: libraries/messages.inc.php:141 server_privileges.php:1964 +#: libraries/messages.inc.php:137 server_privileges.php:1964 msgid "Change Login Information / Copy User" msgstr "Change Login Information / Copy User" -#: libraries/messages.inc.php:144 libraries/mysql_charsets.lib.php:107 +#: libraries/messages.inc.php:140 libraries/mysql_charsets.lib.php:107 msgid "Charset" msgstr "Charset" -#: libraries/messages.inc.php:146 server_collations.php:40 +#: libraries/messages.inc.php:142 server_collations.php:40 msgid "Character Sets and Collations" msgstr "Character Sets and Collations" -#: libraries/messages.inc.php:147 libraries/server_links.inc.php:57 +#: libraries/messages.inc.php:143 libraries/server_links.inc.php:57 #: test/theme.php:109 msgid "Charsets" msgstr "Charsets" -#: libraries/messages.inc.php:149 tbl_operations.php:661 +#: libraries/messages.inc.php:145 tbl_operations.php:661 msgid "Check" msgstr "Check" -#: libraries/messages.inc.php:151 server_databases.php:293 +#: libraries/messages.inc.php:147 server_databases.php:293 #: server_databases.php:294 msgid "Check Privileges" msgstr "Check Privileges" -#: libraries/messages.inc.php:152 server_databases.php:289 +#: libraries/messages.inc.php:148 server_databases.php:289 #, php-format msgid "Check privileges for database "%s"." msgstr "Check privileges for database "%s"." -#: libraries/messages.inc.php:154 pdf_pages.php:261 +#: libraries/messages.inc.php:150 pdf_pages.php:261 msgid "Please choose a page to edit" msgstr "Please choose a page to edit" -#: libraries/messages.inc.php:157 +#: libraries/messages.inc.php:153 msgid "Displaying Column Comments" msgstr "Displaying Column Comments" -#: libraries/messages.inc.php:159 pdf_pages.php:483 view_create.php:148 +#: libraries/messages.inc.php:155 pdf_pages.php:483 view_create.php:148 msgid "Column names" msgstr "Column names" -#: libraries/messages.inc.php:160 server_privileges.php:1685 +#: libraries/messages.inc.php:156 server_privileges.php:1685 msgid "Column-specific privileges" msgstr "Column-specific privileges" -#: libraries/messages.inc.php:164 +#: libraries/messages.inc.php:160 msgid "MySQL 4.0 compatible" msgstr "MySQL 4.0 compatible" -#: libraries/messages.inc.php:165 +#: libraries/messages.inc.php:161 msgid "Complete inserts" msgstr "Complete inserts" -#: libraries/messages.inc.php:168 +#: libraries/messages.inc.php:164 #, php-format msgid "Could not load default configuration from: \"%1$s\"" msgstr "Could not load default configuration from: \"%1$s\"" -#: libraries/messages.inc.php:169 main.php:306 +#: libraries/messages.inc.php:165 main.php:306 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " @@ -3356,168 +3356,168 @@ msgstr "" "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." -#: libraries/messages.inc.php:171 pdf_schema.php:672 +#: libraries/messages.inc.php:167 pdf_schema.php:672 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Please configure the coordinates for table %s" -#: libraries/messages.inc.php:173 server_status.php:433 +#: libraries/messages.inc.php:169 server_status.php:433 msgid "Connections" msgstr "Connections" -#: libraries/messages.inc.php:179 tbl_operations.php:509 +#: libraries/messages.inc.php:175 tbl_operations.php:509 msgid "Copy table to (database.table):" msgstr "Copy table to (database.table):" -#: libraries/messages.inc.php:180 tbl_move_copy.php:58 +#: libraries/messages.inc.php:176 tbl_move_copy.php:58 #, php-format msgid "Table %s has been copied to %s." msgstr "Table %s has been copied to %s." -#: libraries/messages.inc.php:181 tbl_move_copy.php:48 +#: libraries/messages.inc.php:177 tbl_move_copy.php:48 msgid "Can't copy table to same one!" msgstr "Can't copy table to same one!" -#: libraries/messages.inc.php:182 server_synchronize.php:94 +#: libraries/messages.inc.php:178 server_synchronize.php:94 msgid "Could not connect to the source" msgstr "Could not connect to the source" -#: libraries/messages.inc.php:183 server_synchronize.php:97 +#: libraries/messages.inc.php:179 server_synchronize.php:97 msgid "Could not connect to the target" msgstr "Could not connect to the target" -#: libraries/messages.inc.php:184 server_processlist.php:24 +#: libraries/messages.inc.php:180 server_processlist.php:24 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." -#: libraries/messages.inc.php:187 +#: libraries/messages.inc.php:183 #, php-format msgid "Create an index on %s columns" msgstr "Create an index on %s columns" -#: libraries/messages.inc.php:188 tbl_indexes.php:160 +#: libraries/messages.inc.php:184 tbl_indexes.php:160 msgid "Create a new index" msgstr "Create a new index" -#: libraries/messages.inc.php:191 pdf_pages.php:297 pmd_pdf.php:114 +#: libraries/messages.inc.php:187 pdf_pages.php:297 pmd_pdf.php:114 msgid "Create a page" msgstr "Create a page" -#: libraries/messages.inc.php:192 +#: libraries/messages.inc.php:188 msgid "Creation of PDFs" msgstr "Creation of PDFs" -#: libraries/messages.inc.php:193 pmd_general.php:74 pmd_general.php:306 +#: libraries/messages.inc.php:189 pmd_general.php:74 pmd_general.php:306 msgid "Create relation" msgstr "Create relation" -#: libraries/messages.inc.php:194 pmd_general.php:71 +#: libraries/messages.inc.php:190 pmd_general.php:71 #: server_synchronize.php:429 server_synchronize.php:872 msgid "Create table" msgstr "Create table" -#: libraries/messages.inc.php:195 +#: libraries/messages.inc.php:191 msgctxt "$strCreateTableShort" msgid "Create table" msgstr "Create table" -#: libraries/messages.inc.php:196 server_privileges.php:1994 +#: libraries/messages.inc.php:192 server_privileges.php:1994 msgid "Database for user" msgstr "Database for user" -#: libraries/messages.inc.php:197 server_privileges.php:1999 +#: libraries/messages.inc.php:193 server_privileges.php:1999 msgid "Create database with same name and grant all privileges" msgstr "Create database with same name and grant all privileges" -#: libraries/messages.inc.php:198 +#: libraries/messages.inc.php:194 msgctxt "$strCreateUserDatabaseNone" msgid "None" msgstr "None" -#: libraries/messages.inc.php:199 server_privileges.php:2003 +#: libraries/messages.inc.php:195 server_privileges.php:2003 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Grant all privileges on database "%s"" -#: libraries/messages.inc.php:200 server_privileges.php:2000 +#: libraries/messages.inc.php:196 server_privileges.php:2000 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Grant all privileges on wildcard name (username\\_%)" -#: libraries/messages.inc.php:201 +#: libraries/messages.inc.php:197 msgid "Creation/Update/Check dates" msgstr "Creation/Update/Check dates" -#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:229 +#: libraries/messages.inc.php:199 libraries/mysql_charsets.lib.php:229 msgid "Croatian" msgstr "Croatian" -#: libraries/messages.inc.php:204 +#: libraries/messages.inc.php:200 msgid "CSV" msgstr "CSV" -#: libraries/messages.inc.php:205 libraries/server_synchronize.lib.php:1343 +#: libraries/messages.inc.php:201 libraries/server_synchronize.lib.php:1343 #: libraries/server_synchronize.lib.php:1369 msgid "Current server" msgstr "Current server" -#: libraries/messages.inc.php:206 main.php:159 +#: libraries/messages.inc.php:202 main.php:159 msgid "Custom color" msgstr "Custom colour" -#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:365 +#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:365 msgid "Cyrillic" msgstr "Cyrillic" -#: libraries/messages.inc.php:208 libraries/mysql_charsets.lib.php:232 +#: libraries/messages.inc.php:204 libraries/mysql_charsets.lib.php:232 msgid "Czech" msgstr "Czech" -#: libraries/messages.inc.php:209 libraries/mysql_charsets.lib.php:383 +#: libraries/messages.inc.php:205 libraries/mysql_charsets.lib.php:383 msgid "Czech-Slovak" msgstr "Czech-Slovak" -#: libraries/messages.inc.php:211 libraries/mysql_charsets.lib.php:235 +#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:235 msgid "Danish" msgstr "Danish" -#: libraries/messages.inc.php:214 +#: libraries/messages.inc.php:210 msgid "Database export options" msgstr "Database export options" -#: libraries/messages.inc.php:217 server_synchronize.php:122 +#: libraries/messages.inc.php:213 server_synchronize.php:122 #: server_synchronize.php:125 tbl_create.php:82 tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "'%s' database does not exist." -#: libraries/messages.inc.php:219 server_databases.php:63 +#: libraries/messages.inc.php:215 server_databases.php:63 #, php-format msgid "%s databases have been dropped successfully." msgstr "%s databases have been dropped successfully." -#: libraries/messages.inc.php:220 libraries/server_synchronize.lib.php:1341 +#: libraries/messages.inc.php:216 libraries/server_synchronize.lib.php:1341 #: server_synchronize.php:1110 msgid "Source database" msgstr "Source database" -#: libraries/messages.inc.php:221 server_databases.php:88 +#: libraries/messages.inc.php:217 server_databases.php:88 msgid "Databases statistics" msgstr "Databases statistics" -#: libraries/messages.inc.php:222 server_databases.php:362 +#: libraries/messages.inc.php:218 server_databases.php:362 #: server_databases.php:363 msgid "Disable Statistics" msgstr "Disable Statistics" -#: libraries/messages.inc.php:223 server_databases.php:358 +#: libraries/messages.inc.php:219 server_databases.php:358 #: server_databases.php:359 msgid "Enable Statistics" msgstr "Enable Statistics" -#: libraries/messages.inc.php:224 server_databases.php:366 +#: libraries/messages.inc.php:220 server_databases.php:366 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -3525,30 +3525,30 @@ msgstr "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." -#: libraries/messages.inc.php:225 libraries/server_synchronize.lib.php:1367 +#: libraries/messages.inc.php:221 libraries/server_synchronize.lib.php:1367 #: server_synchronize.php:1112 msgid "Target database" msgstr "Target database" -#: libraries/messages.inc.php:228 server_synchronize.php:425 +#: libraries/messages.inc.php:224 server_synchronize.php:425 #: server_synchronize.php:868 msgid "Data Difference" msgstr "Data Difference" -#: libraries/messages.inc.php:231 server_synchronize.php:272 +#: libraries/messages.inc.php:227 server_synchronize.php:272 msgid "Data Synchronization" msgstr "Data Synchronisation" -#: libraries/messages.inc.php:235 server_privileges.php:526 +#: libraries/messages.inc.php:231 server_privileges.php:526 #: server_privileges.php:1679 msgid "Database-specific privileges" msgstr "Database-specific privileges" -#: libraries/messages.inc.php:237 server_privileges.php:2136 +#: libraries/messages.inc.php:233 server_privileges.php:2136 msgid "database-specific" msgstr "database-specific" -#: libraries/messages.inc.php:240 libraries/tbl_properties.inc.php:106 +#: libraries/messages.inc.php:236 libraries/tbl_properties.inc.php:106 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" @@ -3556,32 +3556,32 @@ msgstr "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" -#: libraries/messages.inc.php:241 tbl_operations.php:589 +#: libraries/messages.inc.php:237 tbl_operations.php:589 msgid "Defragment table" msgstr "Defragment table" -#: libraries/messages.inc.php:242 +#: libraries/messages.inc.php:238 msgid "Use delayed inserts" msgstr "Use delayed inserts" -#: libraries/messages.inc.php:245 server_privileges.php:1243 +#: libraries/messages.inc.php:241 server_privileges.php:1243 msgid "No users selected for deleting!" msgstr "No users selected for deleting!" -#: libraries/messages.inc.php:246 pmd_general.php:372 +#: libraries/messages.inc.php:242 pmd_general.php:372 msgid "Delete relation" msgstr "Delete relation" -#: libraries/messages.inc.php:248 server_privileges.php:1232 +#: libraries/messages.inc.php:244 server_privileges.php:1232 #, php-format msgid "Deleting %s" msgstr "Deleting %s" -#: libraries/messages.inc.php:249 libraries/sql_query_form.lib.php:388 +#: libraries/messages.inc.php:245 libraries/sql_query_form.lib.php:388 msgid "Delimiter" msgstr "Delimiter" -#: libraries/messages.inc.php:250 pdf_pages.php:506 +#: libraries/messages.inc.php:246 pdf_pages.php:506 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -3589,7 +3589,7 @@ msgstr "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" -#: libraries/messages.inc.php:254 pmd_help.php:29 +#: libraries/messages.inc.php:250 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 " @@ -3599,142 +3599,142 @@ msgstr "" "field, click the \"Choose field to display\" icon, then click on the " "appropriate field name." -#: libraries/messages.inc.php:256 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:252 libraries/mysql_charsets.lib.php:247 msgid "dictionary" msgstr "dictionary" -#: libraries/messages.inc.php:257 libraries/server_synchronize.lib.php:1348 +#: libraries/messages.inc.php:253 libraries/server_synchronize.lib.php:1348 msgid "Difference" msgstr "Difference" -#: libraries/messages.inc.php:258 pmd_general.php:87 +#: libraries/messages.inc.php:254 pmd_general.php:87 msgid "Direct links" msgstr "Direct links" -#: libraries/messages.inc.php:261 +#: libraries/messages.inc.php:257 msgid "Disable foreign key checks" msgstr "Disable foreign key checks" -#: libraries/messages.inc.php:262 +#: libraries/messages.inc.php:258 msgid "Display Features" msgstr "Display Features" -#: libraries/messages.inc.php:263 tbl_select.php:301 +#: libraries/messages.inc.php:259 tbl_select.php:301 msgid "Display order:" msgstr "Display order:" -#: libraries/messages.inc.php:265 tbl_select.php:132 +#: libraries/messages.inc.php:261 tbl_select.php:132 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Do a \"query by example\" (wildcard: \"%\")" -#: libraries/messages.inc.php:266 +#: libraries/messages.inc.php:262 msgid "DocSQL" msgstr "DocSQL" -#: libraries/messages.inc.php:268 +#: libraries/messages.inc.php:264 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Do not use AUTO_INCREMENT for zero values" -#: libraries/messages.inc.php:273 server_privileges.php:1579 +#: libraries/messages.inc.php:269 server_privileges.php:1579 #: server_privileges.php:1580 server_privileges.php:1581 msgid "Drop the databases that have the same names as the users." msgstr "Drop the databases that have the same names as the users." -#: libraries/messages.inc.php:278 tbl_printview.php:382 tbl_structure.php:743 +#: libraries/messages.inc.php:274 tbl_printview.php:382 tbl_structure.php:743 msgid "dynamic" msgstr "dynamic" -#: libraries/messages.inc.php:282 server_privileges.php:1324 +#: libraries/messages.inc.php:278 server_privileges.php:1324 #: server_privileges.php:1610 msgid "Edit Privileges" msgstr "Edit Privileges" -#: libraries/messages.inc.php:283 tbl_printview.php:341 tbl_structure.php:688 +#: libraries/messages.inc.php:279 tbl_printview.php:341 tbl_structure.php:688 msgid "Effective" msgstr "Effective" -#: libraries/messages.inc.php:286 libraries/relation.lib.php:100 +#: libraries/messages.inc.php:282 libraries/relation.lib.php:100 msgid "Enabled" msgstr "Enabled" -#: libraries/messages.inc.php:287 +#: libraries/messages.inc.php:283 msgid "Enclose export in a transaction" msgstr "Enclose export in a transaction" -#: libraries/messages.inc.php:288 libraries/sqlparser.lib.php:177 +#: libraries/messages.inc.php:284 libraries/sqlparser.lib.php:177 msgid "END CUT" msgstr "END CUT" -#: libraries/messages.inc.php:290 libraries/sqlparser.lib.php:183 +#: libraries/messages.inc.php:286 libraries/sqlparser.lib.php:183 msgid "END RAW" msgstr "END RAW" -#: libraries/messages.inc.php:293 libraries/server_links.inc.php:61 +#: libraries/messages.inc.php:289 libraries/server_links.inc.php:61 #: test/theme.php:113 msgid "Engines" msgstr "Engines" -#: libraries/messages.inc.php:295 libraries/mysql_charsets.lib.php:238 +#: libraries/messages.inc.php:291 libraries/mysql_charsets.lib.php:238 msgid "English" msgstr "English" -#: libraries/messages.inc.php:296 server_privileges.php:393 +#: libraries/messages.inc.php:292 server_privileges.php:393 #: server_privileges.php:535 server_privileges.php:1501 msgid " Note: MySQL privilege names are expressed in English " msgstr " Note: MySQL privilege names are expressed in English " -#: libraries/messages.inc.php:298 libraries/zip_extension.lib.php:49 +#: libraries/messages.inc.php:294 libraries/zip_extension.lib.php:49 #: libraries/zip_extension.lib.php:51 libraries/zip_extension.lib.php:66 msgid "Error in ZIP archive:" msgstr "Error in ZIP archive:" -#: libraries/messages.inc.php:303 libraries/mysql_charsets.lib.php:241 +#: libraries/messages.inc.php:299 libraries/mysql_charsets.lib.php:241 msgid "Esperanto" msgstr "Esperanto" -#: libraries/messages.inc.php:304 libraries/mysql_charsets.lib.php:244 +#: libraries/messages.inc.php:300 libraries/mysql_charsets.lib.php:244 msgid "Estonian" msgstr "Estonian" -#: libraries/messages.inc.php:305 libraries/tbl_triggers.lib.php:29 +#: libraries/messages.inc.php:301 libraries/tbl_triggers.lib.php:29 msgid "Event" msgstr "Event" -#: libraries/messages.inc.php:307 +#: libraries/messages.inc.php:303 msgid "Excel edition" msgstr "Excel edition" -#: libraries/messages.inc.php:311 pmd_pdf.php:85 +#: libraries/messages.inc.php:307 pmd_pdf.php:85 msgid "Export/Import to scale" msgstr "Export/Import to scale" -#: libraries/messages.inc.php:313 +#: libraries/messages.inc.php:309 msgid "Extended inserts" msgstr "Extended inserts" -#: libraries/messages.inc.php:314 pdf_schema.php:1267 pdf_schema.php:1288 +#: libraries/messages.inc.php:310 pdf_schema.php:1267 pdf_schema.php:1288 #: tbl_printview.php:147 tbl_structure.php:183 tbl_tracking.php:278 msgid "Extra" msgstr "Extra" -#: libraries/messages.inc.php:316 server_status.php:447 +#: libraries/messages.inc.php:312 server_status.php:447 msgid "Failed attempts" msgstr "Failed attempts" -#: libraries/messages.inc.php:318 tbl_structure.php:375 +#: libraries/messages.inc.php:314 tbl_structure.php:375 #, php-format msgid "Field %s has been dropped" msgstr "Field %s has been dropped" -#: libraries/messages.inc.php:322 libraries/sql_query_form.lib.php:317 +#: libraries/messages.inc.php:318 libraries/sql_query_form.lib.php:317 msgid "Fields" msgstr "Fields" -#: libraries/messages.inc.php:332 server_binlog.php:136 +#: libraries/messages.inc.php:328 server_binlog.php:136 msgid "Files" msgstr "Files" -#: libraries/messages.inc.php:334 server_privileges.php:1597 +#: libraries/messages.inc.php:330 server_privileges.php:1597 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -3747,119 +3747,119 @@ msgstr "" "server uses, if they have been changed manually. In this case, you should %" "sreload the privileges%s before you continue." -#: libraries/messages.inc.php:335 server_status.php:289 +#: libraries/messages.inc.php:331 server_status.php:289 msgid "Flush query cache" msgstr "Flush query cache" -#: libraries/messages.inc.php:336 +#: libraries/messages.inc.php:332 msgid "Flush the table (\"FLUSH\")" msgstr "Flush the table (\"FLUSH\")" -#: libraries/messages.inc.php:337 server_status.php:271 +#: libraries/messages.inc.php:333 server_status.php:271 msgid "Flush (close) all tables" msgstr "Flush (close) all tables" -#: libraries/messages.inc.php:339 tbl_relation.php:279 +#: libraries/messages.inc.php:335 tbl_relation.php:279 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "Error creating foreign key on %1$s (check data types)" -#: libraries/messages.inc.php:341 setup/lib/messages.inc.php:88 +#: libraries/messages.inc.php:337 setup/lib/messages.inc.php:88 #: tbl_printview.php:376 tbl_structure.php:738 msgid "Format" msgstr "Format" -#: libraries/messages.inc.php:344 server_replication.php:325 +#: libraries/messages.inc.php:340 server_replication.php:325 msgid "Full start" msgstr "Full start" -#: libraries/messages.inc.php:345 server_replication.php:325 +#: libraries/messages.inc.php:341 server_replication.php:325 msgid "Full stop" msgstr "Full stop" -#: libraries/messages.inc.php:347 tbl_change.php:282 tbl_change.php:320 +#: libraries/messages.inc.php:343 tbl_change.php:282 tbl_change.php:320 msgid "Function" msgstr "Function" -#: libraries/messages.inc.php:355 libraries/mysql_charsets.lib.php:377 +#: libraries/messages.inc.php:351 libraries/mysql_charsets.lib.php:377 msgid "Georgian" msgstr "Georgian" -#: libraries/messages.inc.php:356 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:352 libraries/mysql_charsets.lib.php:247 #: libraries/mysql_charsets.lib.php:250 msgid "German" msgstr "German" -#: libraries/messages.inc.php:357 themes.php:42 +#: libraries/messages.inc.php:353 themes.php:42 msgid "Get more themes!" msgstr "Get more themes!" -#: libraries/messages.inc.php:358 server_privileges.php:2134 +#: libraries/messages.inc.php:354 server_privileges.php:2134 msgid "global" msgstr "global" -#: libraries/messages.inc.php:359 server_privileges.php:524 +#: libraries/messages.inc.php:355 server_privileges.php:524 #: server_privileges.php:1500 msgid "Global privileges" msgstr "Global privileges" -#: libraries/messages.inc.php:360 server_variables.php:55 +#: libraries/messages.inc.php:356 server_variables.php:55 #: server_variables.php:89 msgid "Global value" msgstr "Global value" -#: libraries/messages.inc.php:365 server_privileges.php:1502 +#: libraries/messages.inc.php:361 server_privileges.php:1502 #: server_privileges.php:1684 server_privileges.php:2033 msgid "Grant" msgstr "Grant" -#: libraries/messages.inc.php:366 libraries/mysql_charsets.lib.php:380 +#: libraries/messages.inc.php:362 libraries/mysql_charsets.lib.php:380 msgid "Greek" msgstr "Greek" -#: libraries/messages.inc.php:367 +#: libraries/messages.inc.php:363 msgid "\"gzipped\"" msgstr "\"gzipped\"" -#: libraries/messages.inc.php:369 server_status.php:250 +#: libraries/messages.inc.php:365 server_status.php:250 msgid "Handler" msgstr "Handler" -#: libraries/messages.inc.php:370 server_synchronize.php:464 +#: libraries/messages.inc.php:366 server_synchronize.php:464 msgid "Selected target tables have been synchronized with source tables." msgstr "Selected target tables have been synchronised with source tables." -#: libraries/messages.inc.php:372 libraries/mysql_charsets.lib.php:374 +#: libraries/messages.inc.php:368 libraries/mysql_charsets.lib.php:374 msgid "Hebrew" msgstr "Hebrew" -#: libraries/messages.inc.php:373 pmd_general.php:83 +#: libraries/messages.inc.php:369 pmd_general.php:83 msgid "Help" msgstr "Help" -#: libraries/messages.inc.php:374 +#: libraries/messages.inc.php:370 msgid "Use hexadecimal for BLOB" msgstr "Use hexadecimal for BLOB" -#: libraries/messages.inc.php:376 pmd_general.php:120 +#: libraries/messages.inc.php:372 pmd_general.php:120 msgid "Hide/Show all" msgstr "Hide/Show all" -#: libraries/messages.inc.php:377 pmd_general.php:124 +#: libraries/messages.inc.php:373 pmd_general.php:124 msgid "Hide/Show Tables with no relation" msgstr "Hide/Show Tables with no relation" -#: libraries/messages.inc.php:378 libraries/navigation_header.inc.php:54 +#: libraries/messages.inc.php:374 libraries/navigation_header.inc.php:54 #: libraries/navigation_header.inc.php:57 #: libraries/navigation_header.inc.php:58 msgid "Home" msgstr "Home" -#: libraries/messages.inc.php:379 main.php:233 +#: libraries/messages.inc.php:375 main.php:233 msgid "Official Homepage" msgstr "Official Homepage" -#: libraries/messages.inc.php:382 libraries/replication_gui.lib.php:327 +#: libraries/messages.inc.php:378 libraries/replication_gui.lib.php:327 #: server_privileges.php:753 msgid "" "When Host table is used, this field is ignored and values stored in Host " @@ -3868,98 +3868,98 @@ msgstr "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." -#: libraries/messages.inc.php:383 +#: libraries/messages.inc.php:379 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/messages.inc.php:384 libraries/mysql_charsets.lib.php:253 +#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:253 msgid "Hungarian" msgstr "Hungarian" -#: libraries/messages.inc.php:386 libraries/mysql_charsets.lib.php:256 +#: libraries/messages.inc.php:382 libraries/mysql_charsets.lib.php:256 msgid "Icelandic" msgstr "Icelandic" -#: libraries/messages.inc.php:387 server_processlist.php:53 +#: libraries/messages.inc.php:383 server_processlist.php:53 msgid "ID" msgstr "ID" -#: libraries/messages.inc.php:388 libraries/mult_submits.inc.php:108 +#: libraries/messages.inc.php:384 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:479 msgid "Fulltext" msgstr "Fulltext" -#: libraries/messages.inc.php:389 +#: libraries/messages.inc.php:385 msgid "Ignore duplicate rows" msgstr "Ignore duplicate rows" -#: libraries/messages.inc.php:390 tbl_change.php:302 tbl_indexes.php:200 +#: libraries/messages.inc.php:386 tbl_change.php:302 tbl_indexes.php:200 #: tbl_indexes.php:225 msgid "Ignore" msgstr "Ignore" -#: libraries/messages.inc.php:391 +#: libraries/messages.inc.php:387 msgid "Use ignore inserts" msgstr "Use ignore inserts" -#: libraries/messages.inc.php:392 +#: libraries/messages.inc.php:388 msgid "Column names in first row" msgstr "Column names in first row" -#: libraries/messages.inc.php:393 +#: libraries/messages.inc.php:389 msgid "Do not import empty rows" msgstr "Do not import empty rows" -#: libraries/messages.inc.php:394 pmd_general.php:104 +#: libraries/messages.inc.php:390 pmd_general.php:104 msgid "Import/Export coordinates for PDF schema" msgstr "Import/Export coordinates for PDF schema" -#: libraries/messages.inc.php:395 querywindow.php:104 +#: libraries/messages.inc.php:391 querywindow.php:104 msgid "Import files" msgstr "Import files" -#: libraries/messages.inc.php:403 +#: libraries/messages.inc.php:399 msgid "Import currencies ($5.00 to 5.00)" msgstr "Import currencies ($5.00 to 5.00)" -#: libraries/messages.inc.php:404 libraries/messages.inc.php:584 +#: libraries/messages.inc.php:400 libraries/messages.inc.php:580 msgid "Open Document Spreadsheet" msgstr "Open Document Spreadsheet" -#: libraries/messages.inc.php:405 +#: libraries/messages.inc.php:401 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "Import percentages as proper decimals (12.00% to .12)" -#: libraries/messages.inc.php:409 +#: libraries/messages.inc.php:405 msgid "Excel 97-2003 XLS Workbook" msgstr "Excel 97-2003 XLS Workbook" -#: libraries/messages.inc.php:410 +#: libraries/messages.inc.php:406 msgid "Excel 2007 XLSX Workbook" msgstr "Excel 2007 XLSX Workbook" -#: libraries/messages.inc.php:414 libraries/mult_submits.inc.php:98 +#: libraries/messages.inc.php:410 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:476 tbl_structure.php:674 msgid "Index" msgstr "Index" -#: libraries/messages.inc.php:415 tbl_indexes.php:168 +#: libraries/messages.inc.php:411 tbl_indexes.php:168 msgid "Index name:" msgstr "Index name:" -#: libraries/messages.inc.php:416 tbl_indexes.php:174 +#: libraries/messages.inc.php:412 tbl_indexes.php:174 msgid "Index type:" msgstr "Index type:" -#: libraries/messages.inc.php:417 sql.php:639 +#: libraries/messages.inc.php:413 sql.php:639 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problems with indexes of table `%s`" -#: libraries/messages.inc.php:427 main.php:266 +#: libraries/messages.inc.php:423 main.php:266 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -3971,24 +3971,24 @@ msgstr "" "running with this default, is open to intrusion, and you really should fix " "this security hole by setting a password for user 'root'." -#: libraries/messages.inc.php:428 tbl_change.php:1130 +#: libraries/messages.inc.php:424 tbl_change.php:1130 msgid "Insert as new row" msgstr "Insert as new row" -#: libraries/messages.inc.php:429 sql.php:496 tbl_replace.php:386 +#: libraries/messages.inc.php:425 sql.php:496 tbl_replace.php:386 #, php-format msgid "Inserted row id: %1$d" msgstr "Inserted row id: %1$d" -#: libraries/messages.inc.php:430 tbl_change.php:1131 +#: libraries/messages.inc.php:426 tbl_change.php:1131 msgid "Insert as new row and ignore errors" msgstr "Insert as new row and ignore errors" -#: libraries/messages.inc.php:432 main.php:139 +#: libraries/messages.inc.php:428 main.php:139 msgid "Interface" msgstr "Interface" -#: libraries/messages.inc.php:433 tbl_relation.php:407 +#: libraries/messages.inc.php:429 tbl_relation.php:407 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -3996,31 +3996,31 @@ msgstr "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." -#: libraries/messages.inc.php:435 pdf_pages.php:303 +#: libraries/messages.inc.php:431 pdf_pages.php:303 msgid "Internal relations" msgstr "Internal relations" -#: libraries/messages.inc.php:438 tbl_indexes.php:256 tbl_structure.php:590 +#: libraries/messages.inc.php:434 tbl_indexes.php:256 tbl_structure.php:590 #: tbl_structure.php:601 msgid "Column count has to be larger than zero." msgstr "Column count has to be larger than zero." -#: libraries/messages.inc.php:444 libraries/tbl_properties.inc.php:784 +#: libraries/messages.inc.php:440 libraries/tbl_properties.inc.php:784 #: tbl_structure.php:537 msgid "You have to add at least one field." msgstr "You have to add at least one field." -#: libraries/messages.inc.php:449 +#: libraries/messages.inc.php:445 #, php-format msgid "Invalid server index: \"%s\"" msgstr "Invalid server index: \"%s\"" -#: libraries/messages.inc.php:452 libraries/mysql_charsets.lib.php:259 +#: libraries/messages.inc.php:448 libraries/mysql_charsets.lib.php:259 #: libraries/mysql_charsets.lib.php:349 msgid "Japanese" msgstr "Japanese" -#: libraries/messages.inc.php:453 main.php:331 +#: libraries/messages.inc.php:449 main.php:331 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " @@ -4030,109 +4030,109 @@ msgstr "" "functionality will be missing. For example navigation frame will not refresh " "automatically." -#: libraries/messages.inc.php:454 server_status.php:257 +#: libraries/messages.inc.php:450 server_status.php:257 msgid "Joins" msgstr "Joins" -#: libraries/messages.inc.php:457 server_privileges.php:763 +#: libraries/messages.inc.php:453 server_privileges.php:763 msgid "Do not change the password" msgstr "Do not change the password" -#: libraries/messages.inc.php:458 server_status.php:256 +#: libraries/messages.inc.php:454 server_status.php:256 msgid "Key cache" msgstr "Key cache" -#: libraries/messages.inc.php:462 libraries/mysql_charsets.lib.php:268 +#: libraries/messages.inc.php:458 libraries/mysql_charsets.lib.php:268 #: libraries/mysql_charsets.lib.php:371 msgid "Korean" msgstr "Korean" -#: libraries/messages.inc.php:466 libraries/select_lang.lib.php:480 +#: libraries/messages.inc.php:462 libraries/select_lang.lib.php:480 #: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492 #, php-format msgid "Unknown language: %1$s." msgstr "Unknown language: %1$s." -#: libraries/messages.inc.php:468 +#: libraries/messages.inc.php:464 msgid "Table caption" msgstr "Table caption" -#: libraries/messages.inc.php:469 +#: libraries/messages.inc.php:465 msgid "Content of table __TABLE__" msgstr "Content of table __TABLE__" -#: libraries/messages.inc.php:470 +#: libraries/messages.inc.php:466 msgid "Continued table caption" msgstr "Continued table caption" -#: libraries/messages.inc.php:471 +#: libraries/messages.inc.php:467 msgid "(continued)" msgstr "(continued)" -#: libraries/messages.inc.php:472 +#: libraries/messages.inc.php:468 msgid "Include table caption" msgstr "Include table caption" -#: libraries/messages.inc.php:473 +#: libraries/messages.inc.php:469 msgid "Label key" msgstr "Label key" -#: libraries/messages.inc.php:474 +#: libraries/messages.inc.php:470 msgid "LaTeX" msgstr "LaTeX" -#: libraries/messages.inc.php:475 +#: libraries/messages.inc.php:471 msgid "Structure of table __TABLE__" msgstr "Structure of table __TABLE__" -#: libraries/messages.inc.php:476 libraries/mysql_charsets.lib.php:262 +#: libraries/messages.inc.php:472 libraries/mysql_charsets.lib.php:262 msgid "Latvian" msgstr "Latvian" -#: libraries/messages.inc.php:477 +#: libraries/messages.inc.php:473 msgid "CSV using LOAD DATA" msgstr "CSV using LOAD DATA" -#: libraries/messages.inc.php:478 +#: libraries/messages.inc.php:474 msgid "Use LOCAL keyword" msgstr "Use LOCAL keyword" -#: libraries/messages.inc.php:479 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:475 libraries/tbl_properties.inc.php:105 msgid "Length/Values" msgstr "Length/Values" -#: libraries/messages.inc.php:480 tbl_select.php:295 +#: libraries/messages.inc.php:476 tbl_select.php:295 msgid "Number of rows per page" msgstr "Number of rows per page" -#: libraries/messages.inc.php:484 libraries/mysql_charsets.lib.php:265 +#: libraries/messages.inc.php:480 libraries/mysql_charsets.lib.php:265 msgid "Lithuanian" msgstr "Lithuanian" -#: libraries/messages.inc.php:485 libraries/replication_gui.lib.php:302 +#: libraries/messages.inc.php:481 libraries/replication_gui.lib.php:302 #: server_privileges.php:729 msgid "Local" msgstr "Local" -#: libraries/messages.inc.php:487 server_privileges.php:669 +#: libraries/messages.inc.php:483 server_privileges.php:669 msgid "Login Information" msgstr "Login Information" -#: libraries/messages.inc.php:490 libraries/navigation_header.inc.php:67 +#: libraries/messages.inc.php:486 libraries/navigation_header.inc.php:67 #: libraries/navigation_header.inc.php:70 #: libraries/navigation_header.inc.php:71 main.php:99 msgid "Log out" msgstr "Log out" -#: libraries/messages.inc.php:497 server_status.php:440 +#: libraries/messages.inc.php:493 server_status.php:440 msgid "max. concurrent connections" msgstr "max. concurrent connections" -#: libraries/messages.inc.php:498 +#: libraries/messages.inc.php:494 msgid "Maximal length of created query" msgstr "Maximal length of created query" -#: libraries/messages.inc.php:500 main.php:282 +#: libraries/messages.inc.php:496 main.php:282 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -4142,7 +4142,7 @@ msgstr "" "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " "split strings correctly and it may result in unexpected results." -#: libraries/messages.inc.php:501 main.php:274 +#: libraries/messages.inc.php:497 main.php:274 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -4152,24 +4152,24 @@ msgstr "" "option is incompatible with phpMyAdmin and might cause some data to be " "corrupted!" -#: libraries/messages.inc.php:502 +#: libraries/messages.inc.php:498 msgid "MediaWiki Table" msgstr "MediaWiki Table" -#: libraries/messages.inc.php:503 transformation_overview.php:25 +#: libraries/messages.inc.php:499 transformation_overview.php:25 msgid "Available MIME types" msgstr "Available MIME types" -#: libraries/messages.inc.php:504 transformation_overview.php:43 +#: libraries/messages.inc.php:500 transformation_overview.php:43 msgid "Available transformations" msgstr "Available transformations" -#: libraries/messages.inc.php:505 +#: libraries/messages.inc.php:501 msgctxt "$strMIME_description" msgid "Description" msgstr "Description" -#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:580 +#: libraries/messages.inc.php:503 libraries/tbl_properties.inc.php:580 #: transformation_overview.php:60 #, php-format msgid "" @@ -4179,7 +4179,7 @@ msgstr "" "No description is available for this transformation.
Please ask the " "author what %s does." -#: libraries/messages.inc.php:509 libraries/tbl_properties.inc.php:137 +#: libraries/messages.inc.php:505 libraries/tbl_properties.inc.php:137 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -4188,7 +4188,7 @@ msgstr "" "For a list of available transformation options and their MIME type " "transformations, click on %stransformation descriptions%s" -#: libraries/messages.inc.php:510 libraries/tbl_properties.inc.php:146 +#: libraries/messages.inc.php:506 libraries/tbl_properties.inc.php:146 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -4200,57 +4200,57 @@ msgstr "" "quote (\"'\") amongst those values, precede it with a backslash (for example " "'\\\\xyz' or 'a\\'b')." -#: libraries/messages.inc.php:511 libraries/tbl_properties.inc.php:145 +#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:145 msgid "Transformation options" msgstr "Transformation options" -#: libraries/messages.inc.php:513 transformation_overview.php:38 +#: libraries/messages.inc.php:509 transformation_overview.php:38 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "" "MIME types printed in italics do not have a separate transformation function" -#: libraries/messages.inc.php:515 tbl_indexes.php:162 +#: libraries/messages.inc.php:511 tbl_indexes.php:162 msgid "Modify an index" msgstr "Modify an index" -#: libraries/messages.inc.php:517 pmd_general.php:108 +#: libraries/messages.inc.php:513 pmd_general.php:108 msgid "Move Menu" msgstr "Move Menu" -#: libraries/messages.inc.php:518 tbl_operations.php:276 +#: libraries/messages.inc.php:514 tbl_operations.php:276 msgid "Move table to (database.table):" msgstr "Move table to (database.table):" -#: libraries/messages.inc.php:519 tbl_move_copy.php:56 +#: libraries/messages.inc.php:515 tbl_move_copy.php:56 #, php-format msgid "Table %s has been moved to %s." msgstr "Table %s has been moved to %s." -#: libraries/messages.inc.php:520 tbl_move_copy.php:46 +#: libraries/messages.inc.php:516 tbl_move_copy.php:46 msgid "Can't move table to same one!" msgstr "Can't move table to same one!" -#: libraries/messages.inc.php:521 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:517 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 #: libraries/mysql_charsets.lib.php:332 libraries/mysql_charsets.lib.php:354 #: libraries/mysql_charsets.lib.php:365 msgid "multilingual" msgstr "multilingual" -#: libraries/messages.inc.php:534 main.php:193 +#: libraries/messages.inc.php:530 main.php:193 msgid "MySQL charset" msgstr "MySQL charset" -#: libraries/messages.inc.php:535 main.php:211 +#: libraries/messages.inc.php:531 main.php:211 msgid "MySQL client version" msgstr "MySQL client version" -#: libraries/messages.inc.php:536 main.php:125 +#: libraries/messages.inc.php:532 main.php:125 msgid "MySQL connection collation" msgstr "MySQL connection collation" -#: libraries/messages.inc.php:537 main.php:346 +#: libraries/messages.inc.php:533 main.php:346 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -4259,54 +4259,54 @@ msgstr "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." -#: libraries/messages.inc.php:539 server_status.php:294 +#: libraries/messages.inc.php:535 server_status.php:294 msgid "Show processes" msgstr "Show processes" -#: libraries/messages.inc.php:545 navigation.php:210 server_databases.php:371 +#: libraries/messages.inc.php:541 navigation.php:210 server_databases.php:371 #: server_synchronize.php:1191 msgid "No databases" msgstr "No databases" -#: libraries/messages.inc.php:546 server_databases.php:52 +#: libraries/messages.inc.php:542 server_databases.php:52 msgid "No databases selected." msgstr "No databases selected." -#: libraries/messages.inc.php:548 libraries/relation.lib.php:1173 +#: libraries/messages.inc.php:544 libraries/relation.lib.php:1173 msgid "no description" msgstr "no description" -#: libraries/messages.inc.php:552 libraries/zip_extension.lib.php:26 +#: libraries/messages.inc.php:548 libraries/zip_extension.lib.php:26 msgid "No files found inside ZIP archive!" msgstr "No files found inside ZIP archive!" -#: libraries/messages.inc.php:555 tbl_indexes.php:91 +#: libraries/messages.inc.php:551 tbl_indexes.php:91 msgid "No index parts defined!" msgstr "No index parts defined!" -#: libraries/messages.inc.php:556 libraries/mult_submits.inc.php:435 +#: libraries/messages.inc.php:552 libraries/mult_submits.inc.php:435 #: tbl_replace.php:331 msgid "No change" msgstr "No change" -#: libraries/messages.inc.php:557 +#: libraries/messages.inc.php:553 msgctxt "$strNoneDefault" msgid "None" msgstr "None" -#: libraries/messages.inc.php:560 libraries/plugin_interface.lib.php:312 +#: libraries/messages.inc.php:556 libraries/plugin_interface.lib.php:312 msgid "This format has no options" msgstr "This format has no options" -#: libraries/messages.inc.php:565 user_password.php:54 +#: libraries/messages.inc.php:561 user_password.php:54 msgid "You don't have sufficient privileges to be here right now!" msgstr "You don't have sufficient privileges to be here right now!" -#: libraries/messages.inc.php:566 tbl_row_action.php:29 +#: libraries/messages.inc.php:562 tbl_row_action.php:29 msgid "No rows selected" msgstr "No rows selected" -#: libraries/messages.inc.php:569 themes.php:32 +#: libraries/messages.inc.php:565 themes.php:32 #, php-format msgid "" "No themes support; please check your configuration and/or your themes in " @@ -4315,138 +4315,138 @@ msgstr "" "No themes support; please check your configuration and/or your themes in " "directory %s." -#: libraries/messages.inc.php:571 libraries/relation.lib.php:95 +#: libraries/messages.inc.php:567 libraries/relation.lib.php:95 msgid "not OK" msgstr "not OK" -#: libraries/messages.inc.php:572 server_synchronize.php:400 +#: libraries/messages.inc.php:568 server_synchronize.php:400 #: server_synchronize.php:839 msgid "not present" msgstr "not present" -#: libraries/messages.inc.php:573 pdf_pages.php:36 pdf_pages.php:42 +#: libraries/messages.inc.php:569 pdf_pages.php:36 pdf_pages.php:42 #: pdf_pages.php:48 pdf_pages.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "%s table not found or not set in %s" -#: libraries/messages.inc.php:574 server_privileges.php:804 +#: libraries/messages.inc.php:570 server_privileges.php:804 #: server_privileges.php:2166 msgid "No user(s) found." msgstr "No user(s) found." -#: libraries/messages.inc.php:578 pmd_general.php:164 +#: libraries/messages.inc.php:574 pmd_general.php:164 msgid "Number of tables" msgstr "Number of tables" -#: libraries/messages.inc.php:581 server_databases.php:117 +#: libraries/messages.inc.php:577 server_databases.php:117 #: server_status.php:260 setup/lib/messages.inc.php:117 msgid "Tables" msgstr "Tables" -#: libraries/messages.inc.php:583 libraries/relation.lib.php:99 +#: libraries/messages.inc.php:579 libraries/relation.lib.php:99 #: pmd_general.php:340 msgid "OK" msgstr "OK" -#: libraries/messages.inc.php:585 +#: libraries/messages.inc.php:581 msgid "Open Document Text" msgstr "Open Document Text" -#: libraries/messages.inc.php:588 tbl_select.php:138 +#: libraries/messages.inc.php:584 tbl_select.php:138 msgid "Operator" msgstr "Operator" -#: libraries/messages.inc.php:589 tbl_operations.php:662 +#: libraries/messages.inc.php:585 tbl_operations.php:662 msgid "Optimize" msgstr "Optimise" -#: libraries/messages.inc.php:602 libraries/tbl_properties.inc.php:755 +#: libraries/messages.inc.php:598 libraries/tbl_properties.inc.php:755 msgid "PARTITION definition" msgstr "PARTITION definition" -#: libraries/messages.inc.php:603 tbl_structure.php:757 +#: libraries/messages.inc.php:599 tbl_structure.php:757 msgid "partitioned" msgstr "partitioned" -#: libraries/messages.inc.php:604 tbl_operations.php:649 +#: libraries/messages.inc.php:600 tbl_operations.php:649 msgid "Partition maintenance" msgstr "Partition maintenance" -#: libraries/messages.inc.php:605 tbl_operations.php:657 +#: libraries/messages.inc.php:601 tbl_operations.php:657 #, php-format msgid "Partition %s" msgstr "Partition %s" -#: libraries/messages.inc.php:606 server_privileges.php:1212 +#: libraries/messages.inc.php:602 server_privileges.php:1212 #, php-format msgid "The password for %s was changed successfully." msgstr "The password for %s was changed successfully." -#: libraries/messages.inc.php:635 +#: libraries/messages.inc.php:631 #, php-format msgid "Schema of the \"%s\" database - Page %s" msgstr "Schema of the \"%s\" database - Page %s" -#: libraries/messages.inc.php:636 +#: libraries/messages.inc.php:632 #, php-format msgid "The \"%s\" table doesn't exist!" msgstr "The \"%s\" table doesn't exist!" -#: libraries/messages.inc.php:637 pdf_schema.php:1013 +#: libraries/messages.inc.php:633 pdf_schema.php:1013 msgid "No tables" msgstr "No tables" -#: libraries/messages.inc.php:638 pmd_pdf.php:63 +#: libraries/messages.inc.php:634 pmd_pdf.php:63 msgid "Page has been created" msgstr "Page has been created" -#: libraries/messages.inc.php:639 pmd_pdf.php:65 +#: libraries/messages.inc.php:635 pmd_pdf.php:65 msgid "Page creation failed" msgstr "Page creation failed" -#: libraries/messages.inc.php:640 +#: libraries/messages.inc.php:636 msgid "PDF" msgstr "PDF" -#: libraries/messages.inc.php:641 +#: libraries/messages.inc.php:637 msgid "(Generates a report containing the data of a single table)" msgstr "(Generates a report containing the data of a single table)" -#: libraries/messages.inc.php:642 +#: libraries/messages.inc.php:638 msgid "Report title" msgstr "Report title" -#: libraries/messages.inc.php:643 server_status.php:389 server_status.php:434 +#: libraries/messages.inc.php:639 server_status.php:389 server_status.php:434 #: server_status.php:497 server_status.php:555 msgid "per hour" msgstr "per hour" -#: libraries/messages.inc.php:644 server_status.php:498 +#: libraries/messages.inc.php:640 server_status.php:498 msgid "per minute" msgstr "per minute" -#: libraries/messages.inc.php:645 server_status.php:499 +#: libraries/messages.inc.php:641 server_status.php:499 msgid "per second" msgstr "per second" -#: libraries/messages.inc.php:646 libraries/mysql_charsets.lib.php:271 +#: libraries/messages.inc.php:642 libraries/mysql_charsets.lib.php:271 msgid "Persian" msgstr "Persian" -#: libraries/messages.inc.php:647 libraries/mysql_charsets.lib.php:250 +#: libraries/messages.inc.php:643 libraries/mysql_charsets.lib.php:250 msgid "phone book" msgstr "phone book" -#: libraries/messages.inc.php:648 +#: libraries/messages.inc.php:644 msgid "PHP array" msgstr "PHP array" -#: libraries/messages.inc.php:650 main.php:213 +#: libraries/messages.inc.php:646 main.php:213 msgid "PHP extension" msgstr "PHP extension" -#: libraries/messages.inc.php:654 libraries/relation.lib.php:163 +#: libraries/messages.inc.php:650 libraries/relation.lib.php:163 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." @@ -4454,154 +4454,154 @@ msgstr "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." -#: libraries/messages.inc.php:655 libraries/relation.lib.php:159 +#: libraries/messages.inc.php:651 libraries/relation.lib.php:159 msgid "Quick steps to setup advanced features:" msgstr "Quick steps to setup advanced features:" -#: libraries/messages.inc.php:656 libraries/relation.lib.php:161 +#: libraries/messages.inc.php:652 libraries/relation.lib.php:161 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" "Create the needed tables with the script/create_tables.sql." -#: libraries/messages.inc.php:657 libraries/relation.lib.php:162 +#: libraries/messages.inc.php:653 libraries/relation.lib.php:162 msgid "Create a pma user and give access to these tables." msgstr "Create a pma user and give access to these tables." -#: libraries/messages.inc.php:658 libraries/relation.lib.php:164 +#: libraries/messages.inc.php:654 libraries/relation.lib.php:164 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "Re-login to phpMyAdmin to load the updated configuration file." -#: libraries/messages.inc.php:661 libraries/mysql_charsets.lib.php:274 +#: libraries/messages.inc.php:657 libraries/mysql_charsets.lib.php:274 msgid "Polish" msgstr "Polish" -#: libraries/messages.inc.php:662 libraries/replication_gui.lib.php:67 +#: libraries/messages.inc.php:658 libraries/replication_gui.lib.php:67 #: server_synchronize.php:1163 msgid "Port" msgstr "Port" -#: libraries/messages.inc.php:667 tbl_indexes.php:67 +#: libraries/messages.inc.php:663 tbl_indexes.php:67 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "The name of the primary key must be \"PRIMARY\"!" -#: libraries/messages.inc.php:668 tbl_indexes.php:184 +#: libraries/messages.inc.php:664 tbl_indexes.php:184 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" "(\"PRIMARY\" must be the name of and only of a primary key!)" -#: libraries/messages.inc.php:669 libraries/mult_submits.inc.php:76 +#: libraries/messages.inc.php:665 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:474 msgid "Primary" msgstr "Primary" -#: libraries/messages.inc.php:673 server_privileges.php:227 +#: libraries/messages.inc.php:669 server_privileges.php:227 msgid "Includes all privileges except GRANT." msgstr "Includes all privileges except GRANT." -#: libraries/messages.inc.php:674 server_privileges.php:153 +#: libraries/messages.inc.php:670 server_privileges.php:153 #: server_privileges.php:476 msgid "Allows altering the structure of existing tables." msgstr "Allows altering the structure of existing tables." -#: libraries/messages.inc.php:675 server_privileges.php:169 +#: libraries/messages.inc.php:671 server_privileges.php:169 #: server_privileges.php:482 msgid "Allows altering and dropping stored routines." msgstr "Allows altering and dropping stored routines." -#: libraries/messages.inc.php:676 server_privileges.php:145 +#: libraries/messages.inc.php:672 server_privileges.php:145 #: server_privileges.php:475 msgid "Allows creating new databases and tables." msgstr "Allows creating new databases and tables." -#: libraries/messages.inc.php:677 server_privileges.php:168 +#: libraries/messages.inc.php:673 server_privileges.php:168 #: server_privileges.php:481 msgid "Allows creating stored routines." msgstr "Allows creating stored routines." -#: libraries/messages.inc.php:678 server_privileges.php:475 +#: libraries/messages.inc.php:674 server_privileges.php:475 msgid "Allows creating new tables." msgstr "Allows creating new tables." -#: libraries/messages.inc.php:679 server_privileges.php:156 +#: libraries/messages.inc.php:675 server_privileges.php:156 #: server_privileges.php:479 msgid "Allows creating temporary tables." msgstr "Allows creating temporary tables." -#: libraries/messages.inc.php:680 server_privileges.php:170 +#: libraries/messages.inc.php:676 server_privileges.php:170 #: server_privileges.php:515 msgid "Allows creating, dropping and renaming user accounts." msgstr "Allows creating, dropping and renaming user accounts." -#: libraries/messages.inc.php:681 server_privileges.php:160 +#: libraries/messages.inc.php:677 server_privileges.php:160 #: server_privileges.php:164 server_privileges.php:487 #: server_privileges.php:491 msgid "Allows creating new views." msgstr "Allows creating new views." -#: libraries/messages.inc.php:682 server_privileges.php:144 +#: libraries/messages.inc.php:678 server_privileges.php:144 #: server_privileges.php:467 msgid "Allows deleting data." msgstr "Allows deleting data." -#: libraries/messages.inc.php:683 server_privileges.php:146 +#: libraries/messages.inc.php:679 server_privileges.php:146 #: server_privileges.php:478 msgid "Allows dropping databases and tables." msgstr "Allows dropping databases and tables." -#: libraries/messages.inc.php:684 server_privileges.php:478 +#: libraries/messages.inc.php:680 server_privileges.php:478 msgid "Allows dropping tables." msgstr "Allows dropping tables." -#: libraries/messages.inc.php:685 server_privileges.php:161 +#: libraries/messages.inc.php:681 server_privileges.php:161 #: server_privileges.php:495 msgid "Allows to set up events for the event scheduler" msgstr "Allows to set up events for the event scheduler" -#: libraries/messages.inc.php:686 server_privileges.php:171 +#: libraries/messages.inc.php:682 server_privileges.php:171 #: server_privileges.php:483 msgid "Allows executing stored routines." msgstr "Allows executing stored routines." -#: libraries/messages.inc.php:687 server_privileges.php:150 +#: libraries/messages.inc.php:683 server_privileges.php:150 #: server_privileges.php:470 msgid "Allows importing data from and exporting data into files." msgstr "Allows importing data from and exporting data into files." -#: libraries/messages.inc.php:688 server_privileges.php:501 +#: libraries/messages.inc.php:684 server_privileges.php:501 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Allows adding users and privileges without reloading the privilege tables." -#: libraries/messages.inc.php:689 server_privileges.php:152 +#: libraries/messages.inc.php:685 server_privileges.php:152 #: server_privileges.php:477 msgid "Allows creating and dropping indexes." msgstr "Allows creating and dropping indexes." -#: libraries/messages.inc.php:690 server_privileges.php:142 +#: libraries/messages.inc.php:686 server_privileges.php:142 #: server_privileges.php:403 server_privileges.php:465 msgid "Allows inserting and replacing data." msgstr "Allows inserting and replacing data." -#: libraries/messages.inc.php:691 server_privileges.php:157 +#: libraries/messages.inc.php:687 server_privileges.php:157 #: server_privileges.php:510 msgid "Allows locking tables for the current thread." msgstr "Allows locking tables for the current thread." -#: libraries/messages.inc.php:692 server_privileges.php:607 +#: libraries/messages.inc.php:688 server_privileges.php:607 #: server_privileges.php:609 msgid "Limits the number of new connections the user may open per hour." msgstr "Limits the number of new connections the user may open per hour." -#: libraries/messages.inc.php:693 server_privileges.php:595 +#: libraries/messages.inc.php:689 server_privileges.php:595 #: server_privileges.php:597 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Limits the number of queries the user may send to the server per hour." -#: libraries/messages.inc.php:694 server_privileges.php:601 +#: libraries/messages.inc.php:690 server_privileges.php:601 #: server_privileges.php:603 msgid "" "Limits the number of commands that change any table or database the user may " @@ -4610,57 +4610,57 @@ msgstr "" "Limits the number of commands that change any table or database the user may " "execute per hour." -#: libraries/messages.inc.php:695 server_privileges.php:613 +#: libraries/messages.inc.php:691 server_privileges.php:613 #: server_privileges.php:615 msgid "Limits the number of simultaneous connections the user may have." msgstr "Limits the number of simultaneous connections the user may have." -#: libraries/messages.inc.php:696 server_privileges.php:149 +#: libraries/messages.inc.php:692 server_privileges.php:149 #: server_privileges.php:505 msgid "Allows viewing processes of all users" msgstr "Allows viewing processes of all users" -#: libraries/messages.inc.php:697 server_privileges.php:151 +#: libraries/messages.inc.php:693 server_privileges.php:151 #: server_privileges.php:409 server_privileges.php:511 msgid "Has no effect in this MySQL version." msgstr "Has no effect in this MySQL version." -#: libraries/messages.inc.php:698 server_privileges.php:147 +#: libraries/messages.inc.php:694 server_privileges.php:147 #: server_privileges.php:506 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Allows reloading server settings and flushing the server's caches." -#: libraries/messages.inc.php:699 server_privileges.php:159 +#: libraries/messages.inc.php:695 server_privileges.php:159 #: server_privileges.php:513 msgid "Allows the user to ask where the slaves / masters are." msgstr "Allows the user to ask where the slaves / masters are." -#: libraries/messages.inc.php:700 server_privileges.php:158 +#: libraries/messages.inc.php:696 server_privileges.php:158 #: server_privileges.php:514 msgid "Needed for the replication slaves." msgstr "Needed for the replication slaves." -#: libraries/messages.inc.php:701 server_privileges.php:141 +#: libraries/messages.inc.php:697 server_privileges.php:141 #: server_privileges.php:400 server_privileges.php:464 msgid "Allows reading data." msgstr "Allows reading data." -#: libraries/messages.inc.php:702 server_privileges.php:154 +#: libraries/messages.inc.php:698 server_privileges.php:154 #: server_privileges.php:508 msgid "Gives access to the complete list of databases." msgstr "Gives access to the complete list of databases." -#: libraries/messages.inc.php:703 server_privileges.php:165 +#: libraries/messages.inc.php:699 server_privileges.php:165 #: server_privileges.php:167 server_privileges.php:480 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Allows performing SHOW CREATE VIEW queries." -#: libraries/messages.inc.php:704 server_privileges.php:148 +#: libraries/messages.inc.php:700 server_privileges.php:148 #: server_privileges.php:507 msgid "Allows shutting down the server." msgstr "Allows shutting down the server." -#: libraries/messages.inc.php:705 server_privileges.php:155 +#: libraries/messages.inc.php:701 server_privileges.php:155 #: server_privileges.php:504 msgid "" "Allows connecting, even if maximum number of connections is reached; " @@ -4671,55 +4671,55 @@ msgstr "" "required for most administrative operations like setting global variables or " "killing threads of other users." -#: libraries/messages.inc.php:706 server_privileges.php:162 +#: libraries/messages.inc.php:702 server_privileges.php:162 #: server_privileges.php:496 msgid "Allows creating and dropping triggers" msgstr "Allows creating and dropping triggers" -#: libraries/messages.inc.php:707 server_privileges.php:143 +#: libraries/messages.inc.php:703 server_privileges.php:143 #: server_privileges.php:406 server_privileges.php:466 msgid "Allows changing data." msgstr "Allows changing data." -#: libraries/messages.inc.php:708 server_privileges.php:221 +#: libraries/messages.inc.php:704 server_privileges.php:221 msgid "No privileges." msgstr "No privileges." -#: libraries/messages.inc.php:710 server_privileges.php:1296 +#: libraries/messages.inc.php:706 server_privileges.php:1296 msgid "The privileges were reloaded successfully." msgstr "The privileges were reloaded successfully." -#: libraries/messages.inc.php:712 libraries/server_links.inc.php:80 +#: libraries/messages.inc.php:708 libraries/server_links.inc.php:80 msgid "Processes" msgstr "Processes" -#: libraries/messages.inc.php:714 main.php:187 +#: libraries/messages.inc.php:710 main.php:187 msgid "Protocol version" msgstr "Protocol version" -#: libraries/messages.inc.php:715 +#: libraries/messages.inc.php:711 msgid "Put fields names in the first row" msgstr "Put fields names in the first row" -#: libraries/messages.inc.php:720 server_synchronize.php:1003 +#: libraries/messages.inc.php:716 server_synchronize.php:1003 msgid "The following queries have been executed:" msgstr "The following queries have been executed:" -#: libraries/messages.inc.php:721 server_status.php:251 +#: libraries/messages.inc.php:717 server_status.php:251 msgid "Query cache" msgstr "Query cache" -#: libraries/messages.inc.php:722 libraries/navigation_header.inc.php:80 +#: libraries/messages.inc.php:718 libraries/navigation_header.inc.php:80 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 setup/lib/messages.inc.php:122 msgid "Query window" msgstr "Query window" -#: libraries/messages.inc.php:725 querywindow.php:109 querywindow.php:217 +#: libraries/messages.inc.php:721 querywindow.php:109 querywindow.php:217 msgid "SQL history" msgstr "SQL history" -#: libraries/messages.inc.php:726 server_status.php:490 +#: libraries/messages.inc.php:722 server_status.php:490 #, php-format msgid "" "Query statistics: Since its startup, %s queries have been sent to the " @@ -4728,93 +4728,93 @@ msgstr "" "Query statistics: Since its startup, %s queries have been sent to the " "server." -#: libraries/messages.inc.php:728 server_status.php:554 +#: libraries/messages.inc.php:724 server_status.php:554 msgid "Query type" msgstr "Query type" -#: libraries/messages.inc.php:729 libraries/sql_query_form.lib.php:381 +#: libraries/messages.inc.php:725 libraries/sql_query_form.lib.php:381 msgid "Do not overwrite this query from outside the window" msgstr "Do not overwrite this query from outside the window" -#: libraries/messages.inc.php:732 tbl_operations.php:663 +#: libraries/messages.inc.php:728 tbl_operations.php:663 msgid "Rebuild" msgstr "Rebuild" -#: libraries/messages.inc.php:733 server_status.php:394 +#: libraries/messages.inc.php:729 server_status.php:394 msgid "Received" msgstr "Received" -#: libraries/messages.inc.php:734 pmd_pdf.php:89 +#: libraries/messages.inc.php:730 pmd_pdf.php:89 msgid "recommended" msgstr "recommended" -#: libraries/messages.inc.php:736 tbl_operations.php:702 +#: libraries/messages.inc.php:732 tbl_operations.php:702 msgid "Check referential integrity:" msgstr "Check referential integrity:" -#: libraries/messages.inc.php:740 pdf_schema.php:1032 pdf_schema.php:1141 +#: libraries/messages.inc.php:736 pdf_schema.php:1032 pdf_schema.php:1141 msgid "Relational schema" msgstr "Relational schema" -#: libraries/messages.inc.php:744 tbl_relation.php:399 +#: libraries/messages.inc.php:740 tbl_relation.php:399 msgid "Relations" msgstr "Relations" -#: libraries/messages.inc.php:745 tbl_structure.php:507 tbl_structure.php:509 +#: libraries/messages.inc.php:741 tbl_structure.php:507 tbl_structure.php:509 msgid "Relation view" msgstr "Relation view" -#: libraries/messages.inc.php:746 server_privileges.php:1246 +#: libraries/messages.inc.php:742 server_privileges.php:1246 msgid "Reloading the privileges" msgstr "Reloading the privileges" -#: libraries/messages.inc.php:747 navigation.php:66 navigation.php:67 +#: libraries/messages.inc.php:743 navigation.php:66 navigation.php:67 #: navigation.php:70 msgid "Reload navigation frame" msgstr "Reload navigation frame" -#: libraries/messages.inc.php:748 pmd_general.php:80 +#: libraries/messages.inc.php:744 pmd_general.php:80 msgid "Reload" msgstr "Reload" -#: libraries/messages.inc.php:749 libraries/server_synchronize.lib.php:1345 +#: libraries/messages.inc.php:745 libraries/server_synchronize.lib.php:1345 #: libraries/server_synchronize.lib.php:1371 msgid "Remote server" msgstr "Remote server" -#: libraries/messages.inc.php:750 +#: libraries/messages.inc.php:746 msgid "Remove CRLF characters within fields" msgstr "Remove CRLF characters within fields" -#: libraries/messages.inc.php:751 tbl_operations.php:676 +#: libraries/messages.inc.php:747 tbl_operations.php:676 msgid "Remove partitioning" msgstr "Remove partitioning" -#: libraries/messages.inc.php:752 server_privileges.php:1575 +#: libraries/messages.inc.php:748 server_privileges.php:1575 msgid "Remove selected users" msgstr "Remove selected users" -#: libraries/messages.inc.php:755 tbl_operations.php:338 +#: libraries/messages.inc.php:751 tbl_operations.php:338 msgid "Rename table to" msgstr "Rename table to" -#: libraries/messages.inc.php:756 view_operations.php:93 +#: libraries/messages.inc.php:752 view_operations.php:93 msgid "Rename view to" msgstr "Rename view to" -#: libraries/messages.inc.php:757 tbl_operations.php:664 +#: libraries/messages.inc.php:753 tbl_operations.php:664 msgid "Repair" msgstr "Repair" -#: libraries/messages.inc.php:759 +#: libraries/messages.inc.php:755 msgid "Replace NULL by" msgstr "Replace NULL by" -#: libraries/messages.inc.php:760 +#: libraries/messages.inc.php:756 msgid "Replace table data with file" msgstr "Replace table data with file" -#: libraries/messages.inc.php:761 server_replication.php:228 +#: libraries/messages.inc.php:757 server_replication.php:228 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -4822,44 +4822,44 @@ msgstr "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." -#: libraries/messages.inc.php:762 libraries/replication_gui.lib.php:236 +#: libraries/messages.inc.php:758 libraries/replication_gui.lib.php:236 #: server_replication.php:194 msgid "Add slave replication user" msgstr "Add slave replication user" -#: libraries/messages.inc.php:763 server_replication.php:74 +#: libraries/messages.inc.php:759 server_replication.php:74 #, php-format msgid "Master server changed succesfully to %s" msgstr "Master server changed succesfully to %s" -#: libraries/messages.inc.php:764 server_replication.php:182 +#: libraries/messages.inc.php:760 server_replication.php:182 msgid "This server is configured as master in a replication process." msgstr "This server is configured as master in a replication process." -#: libraries/messages.inc.php:765 server_replication.php:322 +#: libraries/messages.inc.php:761 server_replication.php:322 msgid "Control slave:" msgstr "Control slave:" -#: libraries/messages.inc.php:766 server_replication.php:65 +#: libraries/messages.inc.php:762 server_replication.php:65 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" "Unable to read master log position. Possible privilege problem on master." -#: libraries/messages.inc.php:767 server_replication.php:58 +#: libraries/messages.inc.php:763 server_replication.php:58 #, php-format msgid "Unable to connect to master %s." msgstr "Unable to connect to master %s." -#: libraries/messages.inc.php:768 server_replication.php:221 +#: libraries/messages.inc.php:764 server_replication.php:221 msgid "Replicate all databases; Ignore:" msgstr "Replicate all databases; Ignore:" -#: libraries/messages.inc.php:769 server_replication.php:222 +#: libraries/messages.inc.php:765 server_replication.php:222 msgid "Ignore all databases; Replicate:" msgstr "Ignore all databases; Replicate:" -#: libraries/messages.inc.php:770 server_replication.php:218 +#: libraries/messages.inc.php:766 server_replication.php:218 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -4873,16 +4873,16 @@ msgstr "" "ignore all databases by default and allow only certain databases to be " "replicated. Please select the mode:" -#: libraries/messages.inc.php:771 server_replication.php:217 +#: libraries/messages.inc.php:767 server_replication.php:217 msgid "Master configuration" msgstr "Master configuration" -#: libraries/messages.inc.php:772 server_replication.php:181 +#: libraries/messages.inc.php:768 server_replication.php:181 #: server_replication.php:209 msgid "Master replication" msgstr "Master replication" -#: libraries/messages.inc.php:774 server_replication.php:230 +#: libraries/messages.inc.php:770 server_replication.php:230 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " @@ -4892,11 +4892,11 @@ msgstr "" "should see a message informing you, that this server is configured as " "master" -#: libraries/messages.inc.php:775 server_replication.php:225 +#: libraries/messages.inc.php:771 server_replication.php:225 msgid "Please select databases:" msgstr "Please select databases:" -#: libraries/messages.inc.php:776 server_replication.php:210 +#: libraries/messages.inc.php:772 server_replication.php:210 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -4905,7 +4905,7 @@ msgstr "" "This server is not configured as master in a replication process. Would you " "like to configure it?" -#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:188 +#: libraries/messages.inc.php:773 libraries/replication_gui.lib.php:188 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." @@ -4913,48 +4913,48 @@ msgstr "" "Only slaves started with the --report-host=host_name option are visible in " "this list." -#: libraries/messages.inc.php:778 server_replication.php:187 +#: libraries/messages.inc.php:774 server_replication.php:187 msgid "Show connected slaves" msgstr "Show connected slaves" -#: libraries/messages.inc.php:779 libraries/messages.inc.php:885 +#: libraries/messages.inc.php:775 libraries/messages.inc.php:881 #: server_replication.php:184 server_status.php:281 msgid "Show master status" msgstr "Show master status" -#: libraries/messages.inc.php:780 server_replication.php:334 +#: libraries/messages.inc.php:776 server_replication.php:334 msgid "Skipping error(s) might lead into unsynchronized master and slave!" msgstr "Skipping error(s) might lead into unsynchronised master and slave!" -#: libraries/messages.inc.php:781 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:51 #: server_replication.php:347 msgid "Change or reconfigure master server" msgstr "Change or reconfigure master server" -#: libraries/messages.inc.php:782 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:778 libraries/replication_gui.lib.php:51 msgid "Slave configuration" msgstr "Slave configuration" -#: libraries/messages.inc.php:783 server_replication.php:305 +#: libraries/messages.inc.php:779 server_replication.php:305 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" "Server is configured as slave in a replication process. Would you like to:" -#: libraries/messages.inc.php:784 server_replication.php:332 +#: libraries/messages.inc.php:780 server_replication.php:332 msgid "Error management:" msgstr "Error management:" -#: libraries/messages.inc.php:785 server_replication.php:328 +#: libraries/messages.inc.php:781 server_replication.php:328 #, php-format msgid "IO Thread %s only" msgstr "IO Thread %s only" -#: libraries/messages.inc.php:786 server_replication.php:296 +#: libraries/messages.inc.php:782 server_replication.php:296 msgid "Slave IO Thread not running!" msgstr "Slave IO Thread not running!" -#: libraries/messages.inc.php:787 server_replication.php:355 +#: libraries/messages.inc.php:783 server_replication.php:355 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -4963,40 +4963,40 @@ msgstr "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" -#: libraries/messages.inc.php:788 server_replication.php:326 +#: libraries/messages.inc.php:784 server_replication.php:326 msgid "Reset slave" msgstr "Reset slave" -#: libraries/messages.inc.php:789 server_replication.php:308 +#: libraries/messages.inc.php:785 server_replication.php:308 msgid "See slave status table" msgstr "See slave status table" -#: libraries/messages.inc.php:790 server_replication.php:336 +#: libraries/messages.inc.php:786 server_replication.php:336 msgid "Skip current error" msgstr "Skip current error" -#: libraries/messages.inc.php:791 server_replication.php:340 +#: libraries/messages.inc.php:787 server_replication.php:340 msgid "errors." msgstr "errors." -#: libraries/messages.inc.php:792 server_replication.php:337 +#: libraries/messages.inc.php:788 server_replication.php:337 msgid "Skip next" msgstr "Skip next" -#: libraries/messages.inc.php:793 server_replication.php:248 +#: libraries/messages.inc.php:789 server_replication.php:248 msgid "Slave replication" msgstr "Slave replication" -#: libraries/messages.inc.php:794 server_replication.php:293 +#: libraries/messages.inc.php:790 server_replication.php:293 msgid "Slave SQL Thread not running!" msgstr "Slave SQL Thread not running!" -#: libraries/messages.inc.php:795 server_replication.php:327 +#: libraries/messages.inc.php:791 server_replication.php:327 #, php-format msgid "SQL Thread %s only" msgstr "SQL Thread %s only" -#: libraries/messages.inc.php:796 +#: libraries/messages.inc.php:792 #, php-format msgid "" "This MySQL server works as %s in replication process. For further " @@ -5007,159 +5007,159 @@ msgstr "" "information about replication status on the server, please visit the replication section." -#: libraries/messages.inc.php:797 +#: libraries/messages.inc.php:793 msgid "Master status" msgstr "Master status" -#: libraries/messages.inc.php:798 server_status.php:721 +#: libraries/messages.inc.php:794 server_status.php:721 msgid "Replication status" msgstr "Replication status" -#: libraries/messages.inc.php:799 +#: libraries/messages.inc.php:795 msgid "Slave status" msgstr "Slave status" -#: libraries/messages.inc.php:800 server_replication.php:311 +#: libraries/messages.inc.php:796 server_replication.php:311 msgid "Synchronize databases with master" msgstr "Synchronise databases with master" -#: libraries/messages.inc.php:801 server_replication.php:71 +#: libraries/messages.inc.php:797 server_replication.php:71 msgid "Unable to change master" msgstr "Unable to change master" -#: libraries/messages.inc.php:802 server_replication.php:51 +#: libraries/messages.inc.php:798 server_replication.php:51 msgid "Unknown error" msgstr "Unknown error" -#: libraries/messages.inc.php:803 main.php:163 pdf_pages.php:344 +#: libraries/messages.inc.php:799 main.php:163 pdf_pages.php:344 #: setup/lib/FormDisplay.tpl.php:216 tbl_change.php:1175 msgid "Reset" msgstr "Reset" -#: libraries/messages.inc.php:804 server_privileges.php:591 +#: libraries/messages.inc.php:800 server_privileges.php:591 msgid "Resource limits" msgstr "Resource limits" -#: libraries/messages.inc.php:805 tbl_change.php:1209 +#: libraries/messages.inc.php:801 tbl_change.php:1209 #, php-format msgid "Restart insertion with %s rows" msgstr "Restart insertion with %s rows" -#: libraries/messages.inc.php:807 server_privileges.php:1578 +#: libraries/messages.inc.php:803 server_privileges.php:1578 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Revoke all active privileges from the users and delete them afterwards." -#: libraries/messages.inc.php:808 server_privileges.php:1176 +#: libraries/messages.inc.php:804 server_privileges.php:1176 #, php-format msgid "You have revoked the privileges for %s" msgstr "You have revoked the privileges for %s" -#: libraries/messages.inc.php:809 server_privileges.php:1333 +#: libraries/messages.inc.php:805 server_privileges.php:1333 msgid "Revoke" msgstr "Revoke" -#: libraries/messages.inc.php:810 libraries/mysql_charsets.lib.php:280 +#: libraries/messages.inc.php:806 libraries/mysql_charsets.lib.php:280 msgid "Romanian" msgstr "Romanian" -#: libraries/messages.inc.php:813 tbl_printview.php:404 tbl_structure.php:786 +#: libraries/messages.inc.php:809 tbl_printview.php:404 tbl_structure.php:786 msgid "Row length" msgstr "Row length" -#: libraries/messages.inc.php:815 tbl_printview.php:414 tbl_structure.php:794 +#: libraries/messages.inc.php:811 tbl_printview.php:414 tbl_structure.php:794 msgid " Row size " msgstr " Row size " -#: libraries/messages.inc.php:821 tbl_printview.php:366 tbl_structure.php:726 +#: libraries/messages.inc.php:817 tbl_printview.php:366 tbl_structure.php:726 msgid "Row Statistics" msgstr "Row Statistics" -#: libraries/messages.inc.php:822 +#: libraries/messages.inc.php:818 #, php-format msgid "running on %s" msgstr "running on %s" -#: libraries/messages.inc.php:824 libraries/sql_query_form.lib.php:223 +#: libraries/messages.inc.php:820 libraries/sql_query_form.lib.php:223 #, php-format msgid "Run SQL query/queries on server %s" msgstr "Run SQL query/queries on server %s" -#: libraries/messages.inc.php:825 libraries/sql_query_form.lib.php:240 +#: libraries/messages.inc.php:821 libraries/sql_query_form.lib.php:240 #: libraries/sql_query_form.lib.php:265 #, php-format msgid "Run SQL query/queries on database %s" msgstr "Run SQL query/queries on database %s" -#: libraries/messages.inc.php:826 libraries/mysql_charsets.lib.php:337 +#: libraries/messages.inc.php:822 libraries/mysql_charsets.lib.php:337 msgid "Russian" msgstr "Russian" -#: libraries/messages.inc.php:829 pmd_general.php:68 +#: libraries/messages.inc.php:825 pmd_general.php:68 msgid "Save position" msgstr "Save position" -#: libraries/messages.inc.php:830 libraries/tbl_properties.inc.php:776 +#: libraries/messages.inc.php:826 libraries/tbl_properties.inc.php:776 #: pdf_pages.php:484 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:214 setup/lib/FormDisplay.tpl.php:215 #: tbl_change.php:1126 tbl_indexes.php:248 tbl_relation.php:566 msgid "Save" msgstr "Save" -#: libraries/messages.inc.php:831 +#: libraries/messages.inc.php:827 msgid "The scale factor is too small to fit the schema on one page" msgstr "The scale factor is too small to fit the schema on one page" -#: libraries/messages.inc.php:843 main.php:298 +#: libraries/messages.inc.php:839 main.php:298 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "The configuration file now needs a secret passphrase (blowfish_secret)." -#: libraries/messages.inc.php:844 navigation.php:353 navigation.php:516 +#: libraries/messages.inc.php:840 navigation.php:353 navigation.php:516 msgid "Please select a database" msgstr "Please select a database" -#: libraries/messages.inc.php:846 server_binlog.php:120 +#: libraries/messages.inc.php:842 server_binlog.php:120 msgid "Select binary log to view" msgstr "Select binary log to view" -#: libraries/messages.inc.php:847 tbl_select.php:270 +#: libraries/messages.inc.php:843 tbl_select.php:270 msgid "Select fields (at least one):" msgstr "Select fields (at least one):" -#: libraries/messages.inc.php:851 pdf_pages.php:320 +#: libraries/messages.inc.php:847 pdf_pages.php:320 msgid "Select Tables" msgstr "Select Tables" -#: libraries/messages.inc.php:853 server_status.php:404 +#: libraries/messages.inc.php:849 server_status.php:404 msgid "Sent" msgstr "Sent" -#: libraries/messages.inc.php:857 libraries/select_server.lib.php:45 +#: libraries/messages.inc.php:853 libraries/select_server.lib.php:45 #: setup/frames/index.inc.php:97 setup/lib/messages.inc.php:115 msgid "Servers" msgstr "Servers" -#: libraries/messages.inc.php:858 server_status.php:255 +#: libraries/messages.inc.php:854 server_status.php:255 msgid "Delayed inserts" msgstr "Delayed inserts" -#: libraries/messages.inc.php:859 server_status.php:46 +#: libraries/messages.inc.php:855 server_status.php:46 msgid "Runtime Information" msgstr "Runtime Information" -#: libraries/messages.inc.php:860 server_status.php:350 +#: libraries/messages.inc.php:856 server_status.php:350 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "This MySQL server has been running for %s. It started up on %s." -#: libraries/messages.inc.php:861 libraries/server_links.inc.php:53 +#: libraries/messages.inc.php:857 libraries/server_links.inc.php:53 #: server_engines.php:112 server_engines.php:116 server_status.php:304 #: test/theme.php:105 msgid "Variables" msgstr "Variables" -#: libraries/messages.inc.php:862 server_status.php:383 +#: libraries/messages.inc.php:858 server_status.php:383 msgid "" "Server traffic: These tables show the network traffic statistics of " "this MySQL server since its startup." @@ -5167,11 +5167,11 @@ msgstr "" "Server traffic: These tables show the network traffic statistics of " "this MySQL server since its startup." -#: libraries/messages.inc.php:863 server_variables.php:35 +#: libraries/messages.inc.php:859 server_variables.php:35 msgid "Server variables and settings" msgstr "Server variables and settings" -#: libraries/messages.inc.php:865 main.php:290 +#: libraries/messages.inc.php:861 main.php:290 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -5183,7 +5183,7 @@ msgstr "" "validity configured in phpMyAdmin, because of this, your login will expire " "sooner than configured in phpMyAdmin." -#: libraries/messages.inc.php:866 +#: libraries/messages.inc.php:862 msgid "" "Cannot start session without errors, please check errors given in your PHP " "and/or webserver log file and configure your PHP installation properly." @@ -5191,11 +5191,11 @@ msgstr "" "Cannot start session without errors, please check errors given in your PHP " "and/or webserver log file and configure your PHP installation properly." -#: libraries/messages.inc.php:867 server_variables.php:55 +#: libraries/messages.inc.php:863 server_variables.php:55 msgid "Session value" msgstr "Session value" -#: libraries/messages.inc.php:868 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:864 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 " @@ -5207,44 +5207,44 @@ msgstr "" "a single quote (\"'\") amongst those values, precede it with a backslash " "(for example '\\\\xyz' or 'a\\'b')." -#: libraries/messages.inc.php:876 server_binlog.php:192 server_binlog.php:195 +#: libraries/messages.inc.php:872 server_binlog.php:192 server_binlog.php:195 #: server_processlist.php:49 server_processlist.php:51 msgid "Show Full Queries" msgstr "Show Full Queries" -#: libraries/messages.inc.php:878 pmd_general.php:64 +#: libraries/messages.inc.php:874 pmd_general.php:64 msgid "Show/Hide left menu" msgstr "Show/Hide left menu" -#: libraries/messages.inc.php:880 sql.php:513 +#: libraries/messages.inc.php:876 sql.php:513 msgid "Showing as PHP code" msgstr "Showing as PHP code" -#: libraries/messages.inc.php:882 sql.php:516 tbl_replace.php:360 +#: libraries/messages.inc.php:878 sql.php:516 tbl_replace.php:360 msgid "Showing SQL query" msgstr "Showing SQL query" -#: libraries/messages.inc.php:883 tbl_change.php:1132 +#: libraries/messages.inc.php:879 tbl_change.php:1132 msgid "Show insert query" msgstr "Show insert query" -#: libraries/messages.inc.php:886 server_status.php:273 +#: libraries/messages.inc.php:882 server_status.php:273 msgid "Show open tables" msgstr "Show open tables" -#: libraries/messages.inc.php:887 main.php:219 +#: libraries/messages.inc.php:883 main.php:219 msgid "Show PHP information" msgstr "Show PHP information" -#: libraries/messages.inc.php:889 server_status.php:278 +#: libraries/messages.inc.php:885 server_status.php:278 msgid "Show slave hosts" msgstr "Show slave hosts" -#: libraries/messages.inc.php:890 server_status.php:284 +#: libraries/messages.inc.php:886 server_status.php:284 msgid "Show slave status" msgstr "Show slave status" -#: libraries/messages.inc.php:891 +#: libraries/messages.inc.php:887 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -5254,11 +5254,11 @@ msgstr "" "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." -#: libraries/messages.inc.php:892 +#: libraries/messages.inc.php:888 msgid "The number of transactions that used the temporary binary log cache." msgstr "The number of transactions that used the temporary binary log cache." -#: libraries/messages.inc.php:893 +#: libraries/messages.inc.php:889 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -5270,11 +5270,11 @@ msgstr "" "to increase the tmp_table_size value to cause temporary tables to be memory-" "based instead of disk-based." -#: libraries/messages.inc.php:894 +#: libraries/messages.inc.php:890 msgid "How many temporary files mysqld has created." msgstr "How many temporary files mysqld has created." -#: libraries/messages.inc.php:895 +#: libraries/messages.inc.php:891 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -5282,7 +5282,7 @@ msgstr "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." -#: libraries/messages.inc.php:896 +#: libraries/messages.inc.php:892 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -5290,7 +5290,7 @@ msgstr "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." -#: libraries/messages.inc.php:897 +#: libraries/messages.inc.php:893 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -5298,69 +5298,69 @@ msgstr "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." -#: libraries/messages.inc.php:898 +#: libraries/messages.inc.php:894 msgid "The number of INSERT DELAYED rows written." msgstr "The number of INSERT DELAYED rows written." -#: libraries/messages.inc.php:899 +#: libraries/messages.inc.php:895 msgid "The number of executed FLUSH statements." msgstr "The number of executed FLUSH statements." -#: libraries/messages.inc.php:900 +#: libraries/messages.inc.php:896 msgid "The number of internal COMMIT statements." msgstr "The number of internal COMMIT statements." -#: libraries/messages.inc.php:901 +#: libraries/messages.inc.php:897 msgid "The number of times a row was deleted from a table." msgstr "The number of times a row was deleted from a table." +#: libraries/messages.inc.php:898 +msgid "" +"The MySQL server can ask the NDB Cluster storage engine if it knows about a " +"table with a given name. This is called discovery. Handler_discover " +"indicates the number of time tables have been discovered." +msgstr "" +"The MySQL server can ask the NDB Cluster storage engine if it knows about a " +"table with a given name. This is called discovery. Handler_discover " +"indicates the number of time tables have been discovered." + +#: libraries/messages.inc.php:899 +msgid "" +"The number of times the first entry was read from an index. If this is high, " +"it suggests that the server is doing a lot of full index scans; for example, " +"SELECT col1 FROM foo, assuming that col1 is indexed." +msgstr "" +"The number of times the first entry was read from an index. If this is high, " +"it suggests that the server is doing a lot of full index scans; for example, " +"SELECT col1 FROM foo, assuming that col1 is indexed." + +#: libraries/messages.inc.php:900 +msgid "" +"The number of requests to read a row based on a key. If this is high, it is " +"a good indication that your queries and tables are properly indexed." +msgstr "" +"The number of requests to read a row based on a key. If this is high, it is " +"a good indication that your queries and tables are properly indexed." + +#: libraries/messages.inc.php:901 +msgid "" +"The number of requests to read the next row in key order. This is " +"incremented if you are querying an index column with a range constraint or " +"if you are doing an index scan." +msgstr "" +"The number of requests to read the next row in key order. This is " +"incremented if you are querying an index column with a range constraint or " +"if you are doing an index scan." + #: libraries/messages.inc.php:902 msgid "" -"The MySQL server can ask the NDB Cluster storage engine if it knows about a " -"table with a given name. This is called discovery. Handler_discover " -"indicates the number of time tables have been discovered." -msgstr "" -"The MySQL server can ask the NDB Cluster storage engine if it knows about a " -"table with a given name. This is called discovery. Handler_discover " -"indicates the number of time tables have been discovered." - -#: libraries/messages.inc.php:903 -msgid "" -"The number of times the first entry was read from an index. If this is high, " -"it suggests that the server is doing a lot of full index scans; for example, " -"SELECT col1 FROM foo, assuming that col1 is indexed." -msgstr "" -"The number of times the first entry was read from an index. If this is high, " -"it suggests that the server is doing a lot of full index scans; for example, " -"SELECT col1 FROM foo, assuming that col1 is indexed." - -#: libraries/messages.inc.php:904 -msgid "" -"The number of requests to read a row based on a key. If this is high, it is " -"a good indication that your queries and tables are properly indexed." -msgstr "" -"The number of requests to read a row based on a key. If this is high, it is " -"a good indication that your queries and tables are properly indexed." - -#: libraries/messages.inc.php:905 -msgid "" -"The number of requests to read the next row in key order. This is " -"incremented if you are querying an index column with a range constraint or " -"if you are doing an index scan." -msgstr "" -"The number of requests to read the next row in key order. This is " -"incremented if you are querying an index column with a range constraint or " -"if you are doing an index scan." - -#: libraries/messages.inc.php:906 -msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimise ORDER BY ... DESC." -#: libraries/messages.inc.php:907 +#: libraries/messages.inc.php:903 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -5372,7 +5372,7 @@ msgstr "" "probably have a lot of queries that require MySQL to scan whole tables or " "you have joins that don't use keys properly." -#: libraries/messages.inc.php:908 +#: libraries/messages.inc.php:904 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -5384,36 +5384,36 @@ msgstr "" "tables are not properly indexed or that your queries are not written to take " "advantage of the indexes you have." -#: libraries/messages.inc.php:909 +#: libraries/messages.inc.php:905 msgid "The number of internal ROLLBACK statements." msgstr "The number of internal ROLLBACK statements." -#: libraries/messages.inc.php:910 +#: libraries/messages.inc.php:906 msgid "The number of requests to update a row in a table." msgstr "The number of requests to update a row in a table." -#: libraries/messages.inc.php:911 +#: libraries/messages.inc.php:907 msgid "The number of requests to insert a row in a table." msgstr "The number of requests to insert a row in a table." -#: libraries/messages.inc.php:912 +#: libraries/messages.inc.php:908 msgid "The number of pages containing data (dirty or clean)." msgstr "The number of pages containing data (dirty or clean)." -#: libraries/messages.inc.php:913 +#: libraries/messages.inc.php:909 msgid "The number of pages currently dirty." msgstr "The number of pages currently dirty." -#: libraries/messages.inc.php:914 +#: libraries/messages.inc.php:910 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" "The number of buffer pool pages that have been requested to be flushed." -#: libraries/messages.inc.php:915 +#: libraries/messages.inc.php:911 msgid "The number of free pages." msgstr "The number of free pages." -#: libraries/messages.inc.php:916 +#: libraries/messages.inc.php:912 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -5423,7 +5423,7 @@ msgstr "" "being read or written or that can't be flushed or removed for some other " "reason." -#: libraries/messages.inc.php:917 +#: libraries/messages.inc.php:913 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -5435,11 +5435,11 @@ msgstr "" "be calculated as Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: libraries/messages.inc.php:918 +#: libraries/messages.inc.php:914 msgid "Total size of buffer pool, in pages." msgstr "Total size of buffer pool, in pages." -#: libraries/messages.inc.php:919 +#: libraries/messages.inc.php:915 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -5447,7 +5447,7 @@ msgstr "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." -#: libraries/messages.inc.php:920 +#: libraries/messages.inc.php:916 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -5455,11 +5455,11 @@ msgstr "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." -#: libraries/messages.inc.php:921 +#: libraries/messages.inc.php:917 msgid "The number of logical read requests InnoDB has done." msgstr "The number of logical read requests InnoDB has done." -#: libraries/messages.inc.php:922 +#: libraries/messages.inc.php:918 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -5467,7 +5467,7 @@ msgstr "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." -#: libraries/messages.inc.php:923 +#: libraries/messages.inc.php:919 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -5481,51 +5481,51 @@ msgstr "" "counter counts instances of these waits. If the buffer pool size was set " "properly, this value should be small." -#: libraries/messages.inc.php:924 +#: libraries/messages.inc.php:920 msgid "The number writes done to the InnoDB buffer pool." msgstr "The number writes done to the InnoDB buffer pool." -#: libraries/messages.inc.php:925 +#: libraries/messages.inc.php:921 msgid "The number of fsync() operations so far." msgstr "The number of fsync() operations so far." -#: libraries/messages.inc.php:926 +#: libraries/messages.inc.php:922 msgid "The current number of pending fsync() operations." msgstr "The current number of pending fsync() operations." -#: libraries/messages.inc.php:927 +#: libraries/messages.inc.php:923 msgid "The current number of pending reads." msgstr "The current number of pending reads." -#: libraries/messages.inc.php:928 +#: libraries/messages.inc.php:924 msgid "The current number of pending writes." msgstr "The current number of pending writes." -#: libraries/messages.inc.php:929 +#: libraries/messages.inc.php:925 msgid "The amount of data read so far, in bytes." msgstr "The amount of data read so far, in bytes." -#: libraries/messages.inc.php:930 +#: libraries/messages.inc.php:926 msgid "The total number of data reads." msgstr "The total number of data reads." -#: libraries/messages.inc.php:931 +#: libraries/messages.inc.php:927 msgid "The total number of data writes." msgstr "The total number of data writes." -#: libraries/messages.inc.php:932 +#: libraries/messages.inc.php:928 msgid "The amount of data written so far, in bytes." msgstr "The amount of data written so far, in bytes." -#: libraries/messages.inc.php:933 +#: libraries/messages.inc.php:929 msgid "The number of pages that have been written for doublewrite operations." msgstr "The number of pages that have been written for doublewrite operations." -#: libraries/messages.inc.php:934 +#: libraries/messages.inc.php:930 msgid "The number of doublewrite operations that have been performed." msgstr "The number of doublewrite operations that have been performed." -#: libraries/messages.inc.php:935 +#: libraries/messages.inc.php:931 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -5533,35 +5533,35 @@ msgstr "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." -#: libraries/messages.inc.php:936 +#: libraries/messages.inc.php:932 msgid "The number of log write requests." msgstr "The number of log write requests." -#: libraries/messages.inc.php:937 +#: libraries/messages.inc.php:933 msgid "The number of physical writes to the log file." msgstr "The number of physical writes to the log file." -#: libraries/messages.inc.php:938 +#: libraries/messages.inc.php:934 msgid "The number of fsync() writes done to the log file." msgstr "The number of fsync() writes done to the log file." -#: libraries/messages.inc.php:939 +#: libraries/messages.inc.php:935 msgid "The number of pending log file fsyncs." msgstr "The number of pending log file fsyncs." -#: libraries/messages.inc.php:940 +#: libraries/messages.inc.php:936 msgid "Pending log file writes." msgstr "Pending log file writes." -#: libraries/messages.inc.php:941 +#: libraries/messages.inc.php:937 msgid "The number of bytes written to the log file." msgstr "The number of bytes written to the log file." -#: libraries/messages.inc.php:942 +#: libraries/messages.inc.php:938 msgid "The number of pages created." msgstr "The number of pages created." -#: libraries/messages.inc.php:943 +#: libraries/messages.inc.php:939 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -5569,51 +5569,51 @@ msgstr "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." -#: libraries/messages.inc.php:944 +#: libraries/messages.inc.php:940 msgid "The number of pages read." msgstr "The number of pages read." -#: libraries/messages.inc.php:945 +#: libraries/messages.inc.php:941 msgid "The number of pages written." msgstr "The number of pages written." -#: libraries/messages.inc.php:946 +#: libraries/messages.inc.php:942 msgid "The number of row locks currently being waited for." msgstr "The number of row locks currently being waited for." -#: libraries/messages.inc.php:947 +#: libraries/messages.inc.php:943 msgid "The average time to acquire a row lock, in milliseconds." msgstr "The average time to acquire a row lock, in milliseconds." -#: libraries/messages.inc.php:948 +#: libraries/messages.inc.php:944 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "The total time spent in acquiring row locks, in milliseconds." -#: libraries/messages.inc.php:949 +#: libraries/messages.inc.php:945 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "The maximum time to acquire a row lock, in milliseconds." -#: libraries/messages.inc.php:950 +#: libraries/messages.inc.php:946 msgid "The number of times a row lock had to be waited for." msgstr "The number of times a row lock had to be waited for." -#: libraries/messages.inc.php:951 +#: libraries/messages.inc.php:947 msgid "The number of rows deleted from InnoDB tables." msgstr "The number of rows deleted from InnoDB tables." -#: libraries/messages.inc.php:952 +#: libraries/messages.inc.php:948 msgid "The number of rows inserted in InnoDB tables." msgstr "The number of rows inserted in InnoDB tables." -#: libraries/messages.inc.php:953 +#: libraries/messages.inc.php:949 msgid "The number of rows read from InnoDB tables." msgstr "The number of rows read from InnoDB tables." -#: libraries/messages.inc.php:954 +#: libraries/messages.inc.php:950 msgid "The number of rows updated in InnoDB tables." msgstr "The number of rows updated in InnoDB tables." -#: libraries/messages.inc.php:955 +#: libraries/messages.inc.php:951 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -5621,7 +5621,7 @@ msgstr "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." -#: libraries/messages.inc.php:956 +#: libraries/messages.inc.php:952 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -5629,7 +5629,7 @@ msgstr "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." -#: libraries/messages.inc.php:957 +#: libraries/messages.inc.php:953 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -5639,11 +5639,11 @@ msgstr "" "that indicates the maximum number of blocks that have ever been in use at " "one time." -#: libraries/messages.inc.php:958 +#: libraries/messages.inc.php:954 msgid "The number of requests to read a key block from the cache." msgstr "The number of requests to read a key block from the cache." -#: libraries/messages.inc.php:959 +#: libraries/messages.inc.php:955 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -5653,15 +5653,15 @@ msgstr "" "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." -#: libraries/messages.inc.php:960 +#: libraries/messages.inc.php:956 msgid "The number of requests to write a key block to the cache." msgstr "The number of requests to write a key block to the cache." -#: libraries/messages.inc.php:961 +#: libraries/messages.inc.php:957 msgid "The number of physical writes of a key block to disk." msgstr "The number of physical writes of a key block to disk." -#: libraries/messages.inc.php:962 +#: libraries/messages.inc.php:958 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -5671,11 +5671,11 @@ msgstr "" "optimiser. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." -#: libraries/messages.inc.php:963 +#: libraries/messages.inc.php:959 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "The number of rows waiting to be written in INSERT DELAYED queues." -#: libraries/messages.inc.php:964 +#: libraries/messages.inc.php:960 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -5683,35 +5683,35 @@ msgstr "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." -#: libraries/messages.inc.php:965 +#: libraries/messages.inc.php:961 msgid "The number of files that are open." msgstr "The number of files that are open." -#: libraries/messages.inc.php:966 +#: libraries/messages.inc.php:962 msgid "The number of streams that are open (used mainly for logging)." msgstr "The number of streams that are open (used mainly for logging)." -#: libraries/messages.inc.php:967 +#: libraries/messages.inc.php:963 msgid "The number of tables that are open." msgstr "The number of tables that are open." -#: libraries/messages.inc.php:968 +#: libraries/messages.inc.php:964 msgid "The number of free memory blocks in query cache." msgstr "The number of free memory blocks in query cache." -#: libraries/messages.inc.php:969 +#: libraries/messages.inc.php:965 msgid "The amount of free memory for query cache." msgstr "The amount of free memory for query cache." -#: libraries/messages.inc.php:970 +#: libraries/messages.inc.php:966 msgid "The number of cache hits." msgstr "The number of cache hits." -#: libraries/messages.inc.php:971 +#: libraries/messages.inc.php:967 msgid "The number of queries added to the cache." msgstr "The number of queries added to the cache." -#: libraries/messages.inc.php:972 +#: libraries/messages.inc.php:968 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -5723,7 +5723,7 @@ msgstr "" "cache size. The query cache uses a least recently used (LRU) strategy to " "decide which queries to remove from the cache." -#: libraries/messages.inc.php:973 +#: libraries/messages.inc.php:969 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -5731,24 +5731,24 @@ msgstr "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." -#: libraries/messages.inc.php:974 +#: libraries/messages.inc.php:970 msgid "The number of queries registered in the cache." msgstr "The number of queries registered in the cache." -#: libraries/messages.inc.php:975 +#: libraries/messages.inc.php:971 msgid "The total number of blocks in the query cache." msgstr "The total number of blocks in the query cache." -#: libraries/messages.inc.php:976 +#: libraries/messages.inc.php:972 msgctxt "$strShowStatusReset" msgid "Reset" msgstr "Reset" -#: libraries/messages.inc.php:977 +#: libraries/messages.inc.php:973 msgid "The status of failsafe replication (not yet implemented)." msgstr "The status of failsafe replication (not yet implemented)." -#: libraries/messages.inc.php:978 +#: libraries/messages.inc.php:974 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -5756,11 +5756,11 @@ msgstr "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." -#: libraries/messages.inc.php:979 +#: libraries/messages.inc.php:975 msgid "The number of joins that used a range search on a reference table." msgstr "The number of joins that used a range search on a reference table." -#: libraries/messages.inc.php:980 +#: libraries/messages.inc.php:976 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -5768,7 +5768,7 @@ msgstr "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" -#: libraries/messages.inc.php:981 +#: libraries/messages.inc.php:977 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -5776,15 +5776,15 @@ msgstr "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" -#: libraries/messages.inc.php:982 +#: libraries/messages.inc.php:978 msgid "The number of joins that did a full scan of the first table." msgstr "The number of joins that did a full scan of the first table." -#: libraries/messages.inc.php:983 +#: libraries/messages.inc.php:979 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "The number of temporary tables currently open by the slave SQL thread." -#: libraries/messages.inc.php:984 +#: libraries/messages.inc.php:980 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -5792,11 +5792,11 @@ msgstr "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." -#: libraries/messages.inc.php:985 +#: libraries/messages.inc.php:981 msgid "This is ON if this server is a slave that is connected to a master." msgstr "This is ON if this server is a slave that is connected to a master." -#: libraries/messages.inc.php:986 +#: libraries/messages.inc.php:982 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -5804,13 +5804,13 @@ msgstr "" "The number of threads that have taken more than slow_launch_time seconds to " "create." -#: libraries/messages.inc.php:987 +#: libraries/messages.inc.php:983 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "The number of queries that have taken more than long_query_time seconds." -#: libraries/messages.inc.php:988 +#: libraries/messages.inc.php:984 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -5820,23 +5820,23 @@ msgstr "" "is large, you should consider increasing the value of the sort_buffer_size " "system variable." -#: libraries/messages.inc.php:989 +#: libraries/messages.inc.php:985 msgid "The number of sorts that were done with ranges." msgstr "The number of sorts that were done with ranges." -#: libraries/messages.inc.php:990 +#: libraries/messages.inc.php:986 msgid "The number of sorted rows." msgstr "The number of sorted rows." -#: libraries/messages.inc.php:991 +#: libraries/messages.inc.php:987 msgid "The number of sorts that were done by scanning the table." msgstr "The number of sorts that were done by scanning the table." -#: libraries/messages.inc.php:992 +#: libraries/messages.inc.php:988 msgid "The number of times that a table lock was acquired immediately." msgstr "The number of times that a table lock was acquired immediately." -#: libraries/messages.inc.php:993 +#: libraries/messages.inc.php:989 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -5848,7 +5848,7 @@ msgstr "" "should first optimise your queries, and then either split your table or " "tables or use replication." -#: libraries/messages.inc.php:994 +#: libraries/messages.inc.php:990 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -5858,11 +5858,11 @@ msgstr "" "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." -#: libraries/messages.inc.php:995 +#: libraries/messages.inc.php:991 msgid "The number of currently open connections." msgstr "The number of currently open connections." -#: libraries/messages.inc.php:996 +#: libraries/messages.inc.php:992 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -5874,28 +5874,28 @@ msgstr "" "doesn't give a notable performance improvement if you have a good thread " "implementation.)" -#: libraries/messages.inc.php:997 +#: libraries/messages.inc.php:993 msgid "The number of threads that are not sleeping." msgstr "The number of threads that are not sleeping." -#: libraries/messages.inc.php:999 tbl_printview.php:75 +#: libraries/messages.inc.php:995 tbl_printview.php:75 msgid "Show tables" msgstr "Show tables" -#: libraries/messages.inc.php:1000 libraries/sql_query_form.lib.php:396 +#: libraries/messages.inc.php:996 libraries/sql_query_form.lib.php:396 msgid " Show this query here again " msgstr " Show this query here again " -#: libraries/messages.inc.php:1001 libraries/mysql_charsets.lib.php:217 +#: libraries/messages.inc.php:997 libraries/mysql_charsets.lib.php:217 #: libraries/mysql_charsets.lib.php:342 msgid "Simplified Chinese" msgstr "Simplified Chinese" -#: libraries/messages.inc.php:1002 tbl_operations.php:258 +#: libraries/messages.inc.php:998 tbl_operations.php:258 msgid "(singly)" msgstr "(singly)" -#: libraries/messages.inc.php:1005 libraries/replication_gui.lib.php:52 +#: libraries/messages.inc.php:1001 libraries/replication_gui.lib.php:52 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" @@ -5903,47 +5903,47 @@ msgstr "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" -#: libraries/messages.inc.php:1006 libraries/mysql_charsets.lib.php:283 +#: libraries/messages.inc.php:1002 libraries/mysql_charsets.lib.php:283 msgid "Slovak" msgstr "Slovak" -#: libraries/messages.inc.php:1007 libraries/mysql_charsets.lib.php:286 +#: libraries/messages.inc.php:1003 libraries/mysql_charsets.lib.php:286 msgid "Slovenian" msgstr "Slovenian" -#: libraries/messages.inc.php:1008 pmd_general.php:95 +#: libraries/messages.inc.php:1004 pmd_general.php:95 msgid "Small/Big All" msgstr "Small/Big All" -#: libraries/messages.inc.php:1009 pmd_general.php:91 +#: libraries/messages.inc.php:1005 pmd_general.php:91 msgid "Snap to grid" msgstr "Snap to grid" -#: libraries/messages.inc.php:1011 server_synchronize.php:1167 +#: libraries/messages.inc.php:1007 server_synchronize.php:1167 msgid "Socket" msgstr "Socket" -#: libraries/messages.inc.php:1013 server_status.php:259 +#: libraries/messages.inc.php:1009 server_status.php:259 msgid "Sorting" msgstr "Sorting" -#: libraries/messages.inc.php:1015 tbl_printview.php:310 tbl_structure.php:657 +#: libraries/messages.inc.php:1011 tbl_printview.php:310 tbl_structure.php:657 msgid "Space usage" msgstr "Space usage" -#: libraries/messages.inc.php:1016 libraries/mysql_charsets.lib.php:289 +#: libraries/messages.inc.php:1012 libraries/mysql_charsets.lib.php:289 msgid "Spanish" msgstr "Spanish" -#: libraries/messages.inc.php:1019 +#: libraries/messages.inc.php:1015 msgid "Export type" msgstr "Export type" -#: libraries/messages.inc.php:1020 +#: libraries/messages.inc.php:1016 msgid "Export time in UTC" msgstr "Export time in UTC" -#: libraries/messages.inc.php:1021 libraries/sqlparser.lib.php:173 +#: libraries/messages.inc.php:1017 libraries/sqlparser.lib.php:173 msgid "" "There is a chance that you may have found a bug in the SQL parser. Please " "examine your query closely, and check that the quotes are correct and not " @@ -5965,7 +5965,7 @@ msgstr "" "please reduce your SQL query input to the single query that causes problems, " "and submit a bug report with the data chunk in the CUT section below:" -#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:137 +#: libraries/messages.inc.php:1018 libraries/sqlparser.lib.php:137 msgid "" "There seems to be an error in your SQL query. The MySQL server error output " "below, if there is any, may also help you in diagnosing the problem" @@ -5973,32 +5973,32 @@ msgstr "" "There seems to be an error in your SQL query. The MySQL server error output " "below, if there is any, may also help you in diagnosing the problem" -#: libraries/messages.inc.php:1026 libraries/sqlparser.lib.php:495 +#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:495 msgid "Invalid Identifer" msgstr "Invalid Identifer" -#: libraries/messages.inc.php:1027 libraries/sqlparser.lib.php:344 +#: libraries/messages.inc.php:1023 libraries/sqlparser.lib.php:344 msgid "Unclosed quote" msgstr "Unclosed quote" -#: libraries/messages.inc.php:1028 libraries/sqlparser.lib.php:612 +#: libraries/messages.inc.php:1024 libraries/sqlparser.lib.php:612 msgid "Unknown Punctuation String" msgstr "Unknown Punctuation String" -#: libraries/messages.inc.php:1030 server_replication.php:327 +#: libraries/messages.inc.php:1026 server_replication.php:327 #: server_replication.php:328 msgid "Start" msgstr "Start" -#: libraries/messages.inc.php:1033 tbl_printview.php:369 tbl_structure.php:729 +#: libraries/messages.inc.php:1029 tbl_printview.php:369 tbl_structure.php:729 msgid "Statements" msgstr "Statements" -#: libraries/messages.inc.php:1034 tbl_printview.php:380 tbl_structure.php:741 +#: libraries/messages.inc.php:1030 tbl_printview.php:380 tbl_structure.php:741 msgid "static" msgstr "static" -#: libraries/messages.inc.php:1035 server_status.php:388 +#: libraries/messages.inc.php:1031 server_status.php:388 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -6006,42 +6006,42 @@ msgstr "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." -#: libraries/messages.inc.php:1038 server_replication.php:327 +#: libraries/messages.inc.php:1034 server_replication.php:327 #: server_replication.php:328 msgid "Stop" msgstr "Stop" -#: libraries/messages.inc.php:1039 server_engines.php:49 +#: libraries/messages.inc.php:1035 server_engines.php:49 msgid "Storage Engines" msgstr "Storage Engines" -#: libraries/messages.inc.php:1040 libraries/tbl_properties.inc.php:726 +#: libraries/messages.inc.php:1036 libraries/tbl_properties.inc.php:726 #: server_engines.php:58 tbl_operations.php:353 msgid "Storage Engine" msgstr "Storage Engine" -#: libraries/messages.inc.php:1042 +#: libraries/messages.inc.php:1038 msgid "CSV for MS Excel" msgstr "CSV for MS Excel" -#: libraries/messages.inc.php:1044 tbl_structure.php:516 tbl_structure.php:518 +#: libraries/messages.inc.php:1040 tbl_structure.php:516 tbl_structure.php:518 msgid "Propose table structure" msgstr "Propose table structure" -#: libraries/messages.inc.php:1045 server_synchronize.php:424 +#: libraries/messages.inc.php:1041 server_synchronize.php:424 #: server_synchronize.php:867 msgid "Structure Difference" msgstr "Structure Difference" -#: libraries/messages.inc.php:1049 server_synchronize.php:265 +#: libraries/messages.inc.php:1045 server_synchronize.php:265 msgid "Structure Synchronization" msgstr "Structure Synchronisation" -#: libraries/messages.inc.php:1050 libraries/sql_query_form.lib.php:462 +#: libraries/messages.inc.php:1046 libraries/sql_query_form.lib.php:462 msgid "Submit" msgstr "Submit" -#: libraries/messages.inc.php:1052 main.php:358 +#: libraries/messages.inc.php:1048 main.php:358 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -6050,16 +6050,16 @@ msgstr "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " "issues." -#: libraries/messages.inc.php:1054 libraries/mysql_charsets.lib.php:295 +#: libraries/messages.inc.php:1050 libraries/mysql_charsets.lib.php:295 #: libraries/mysql_charsets.lib.php:392 msgid "Swedish" msgstr "Swedish" -#: libraries/messages.inc.php:1060 tbl_operations.php:556 +#: libraries/messages.inc.php:1056 tbl_operations.php:556 msgid "Switch to copied table" msgstr "Switch to copied table" -#: libraries/messages.inc.php:1061 server_synchronize.php:1213 +#: libraries/messages.inc.php:1057 server_synchronize.php:1213 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -6067,145 +6067,145 @@ msgstr "" "Target database will be completely synchronised with source database. Source " "database will remain unchanged." -#: libraries/messages.inc.php:1062 server_synchronize.php:451 +#: libraries/messages.inc.php:1058 server_synchronize.php:451 #: server_synchronize.php:896 msgid "Synchronize Databases" msgstr "Synchronise Databases" -#: libraries/messages.inc.php:1063 libraries/server_links.inc.php:92 +#: libraries/messages.inc.php:1059 libraries/server_links.inc.php:92 #: server_synchronize.php:1092 server_synchronize.php:1100 msgid "Synchronize" msgstr "Synchronise" -#: libraries/messages.inc.php:1065 server_synchronize.php:430 +#: libraries/messages.inc.php:1061 server_synchronize.php:430 #: server_synchronize.php:873 msgid "Add column(s)" msgstr "Add column(s)" -#: libraries/messages.inc.php:1066 tbl_create.php:62 +#: libraries/messages.inc.php:1062 tbl_create.php:62 #, php-format msgid "Table %s already exists!" msgstr "Table %s already exists!" -#: libraries/messages.inc.php:1067 server_synchronize.php:432 +#: libraries/messages.inc.php:1063 server_synchronize.php:432 #: server_synchronize.php:875 msgid "Alter column(s)" msgstr "Alter column(s)" -#: libraries/messages.inc.php:1068 tbl_addfield.php:189 tbl_alter.php:103 +#: libraries/messages.inc.php:1064 tbl_addfield.php:189 tbl_alter.php:103 #: tbl_indexes.php:98 #, php-format msgid "Table %1$s has been altered successfully" msgstr "Table %1$s has been altered successfully" -#: libraries/messages.inc.php:1069 server_synchronize.php:434 +#: libraries/messages.inc.php:1065 server_synchronize.php:434 #: server_synchronize.php:877 msgid "Apply index(s)" msgstr "Apply index(s)" -#: libraries/messages.inc.php:1071 server_synchronize.php:446 +#: libraries/messages.inc.php:1067 server_synchronize.php:446 #: server_synchronize.php:890 msgid "Would you like to delete all the previous rows from target tables?" msgstr "Would you like to delete all the previous rows from target tables?" -#: libraries/messages.inc.php:1072 tbl_move_copy.php:82 +#: libraries/messages.inc.php:1068 tbl_move_copy.php:82 msgid "The table name is empty!" msgstr "The table name is empty!" -#: libraries/messages.inc.php:1073 tbl_create.php:249 +#: libraries/messages.inc.php:1069 tbl_create.php:249 #, php-format msgid "Table %1$s has been created." msgstr "Table %1$s has been created." -#: libraries/messages.inc.php:1076 tbl_operations.php:628 +#: libraries/messages.inc.php:1072 tbl_operations.php:628 #, php-format msgid "Table %s has been flushed" msgstr "Table %s has been flushed" -#: libraries/messages.inc.php:1077 server_synchronize.php:436 +#: libraries/messages.inc.php:1073 server_synchronize.php:436 #: server_synchronize.php:879 msgid "Insert row(s)" msgstr "Insert row(s)" -#: libraries/messages.inc.php:1078 libraries/tbl_links.inc.php:107 +#: libraries/messages.inc.php:1074 libraries/tbl_links.inc.php:107 #: libraries/tbl_links.inc.php:140 libraries/tbl_links.inc.php:141 msgid "Table seems to be empty!" msgstr "Table seems to be empty!" -#: libraries/messages.inc.php:1079 tbl_operations.php:568 +#: libraries/messages.inc.php:1075 tbl_operations.php:568 msgid "Table maintenance" msgstr "Table maintenance" -#: libraries/messages.inc.php:1080 libraries/tbl_properties.inc.php:618 +#: libraries/messages.inc.php:1076 libraries/tbl_properties.inc.php:618 #: server_synchronize.php:428 server_synchronize.php:871 msgid "Table name" msgstr "Table name" -#: libraries/messages.inc.php:1081 pdf_schema.php:1116 +#: libraries/messages.inc.php:1077 pdf_schema.php:1116 msgid "Table of contents" msgstr "Table of contents" -#: libraries/messages.inc.php:1082 tbl_operations.php:334 +#: libraries/messages.inc.php:1078 tbl_operations.php:334 msgid "Table options" msgstr "Table options" -#: libraries/messages.inc.php:1083 server_synchronize.php:431 +#: libraries/messages.inc.php:1079 server_synchronize.php:431 #: server_synchronize.php:874 msgid "Remove column(s)" msgstr "Remove column(s)" -#: libraries/messages.inc.php:1084 server_synchronize.php:433 +#: libraries/messages.inc.php:1080 server_synchronize.php:433 #: server_synchronize.php:876 msgid "Remove index(s)" msgstr "Remove index(s)" -#: libraries/messages.inc.php:1088 server_synchronize.php:435 +#: libraries/messages.inc.php:1084 server_synchronize.php:435 #: server_synchronize.php:878 msgid "Update row(s)" msgstr "Update row(s)" -#: libraries/messages.inc.php:1090 server_synchronize.php:942 +#: libraries/messages.inc.php:1086 server_synchronize.php:942 msgid "Target database has been synchronized with source database" msgstr "Target database has been synchronised with source database" -#: libraries/messages.inc.php:1091 server_privileges.php:392 +#: libraries/messages.inc.php:1087 server_privileges.php:392 #: server_privileges.php:527 server_privileges.php:1679 #: server_privileges.php:1685 msgid "Table-specific privileges" msgstr "Table-specific privileges" -#: libraries/messages.inc.php:1092 server_status.php:254 +#: libraries/messages.inc.php:1088 server_status.php:254 msgid "Temporary data" msgstr "Temporary data" -#: libraries/messages.inc.php:1093 tbl_change.php:728 +#: libraries/messages.inc.php:1089 tbl_change.php:728 msgid " Because of its length,
this field might not be editable " msgstr " Because of its length,
this field might not be editable " -#: libraries/messages.inc.php:1094 +#: libraries/messages.inc.php:1090 msgid "Texy! text" msgstr "Texy! text" -#: libraries/messages.inc.php:1095 libraries/mysql_charsets.lib.php:298 +#: libraries/messages.inc.php:1091 libraries/mysql_charsets.lib.php:298 #: libraries/mysql_charsets.lib.php:395 msgid "Thai" msgstr "Thai" -#: libraries/messages.inc.php:1102 libraries/replication_gui.lib.php:308 +#: libraries/messages.inc.php:1098 libraries/replication_gui.lib.php:308 #: server_privileges.php:734 msgid "This Host" msgstr "This Host" -#: libraries/messages.inc.php:1103 server_status.php:252 +#: libraries/messages.inc.php:1099 server_status.php:252 msgid "Threads" msgstr "Threads" -#: libraries/messages.inc.php:1104 server_processlist.php:22 +#: libraries/messages.inc.php:1100 server_processlist.php:22 #, php-format msgid "Thread %s was successfully killed." msgstr "Thread %s was successfully killed." -#: libraries/messages.inc.php:1106 +#: libraries/messages.inc.php:1102 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -6213,158 +6213,158 @@ msgstr "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." -#: libraries/messages.inc.php:1109 pmd_pdf.php:94 +#: libraries/messages.inc.php:1105 pmd_pdf.php:94 msgid "to/from page" msgstr "to/from page" -#: libraries/messages.inc.php:1110 pdf_pages.php:343 +#: libraries/messages.inc.php:1106 pdf_pages.php:343 msgid "Toggle scratchboard" msgstr "Toggle scratchboard" -#: libraries/messages.inc.php:1111 pmd_general.php:99 +#: libraries/messages.inc.php:1107 pmd_general.php:99 msgid "Toggle small/big" msgstr "Toggle small/big" -#: libraries/messages.inc.php:1112 pmd_help.php:27 +#: libraries/messages.inc.php:1108 pmd_help.php:27 msgid "To select relation, click :" msgstr "To select relation, click :" -#: libraries/messages.inc.php:1115 libraries/tbl_links.inc.php:149 +#: libraries/messages.inc.php:1111 libraries/tbl_links.inc.php:149 #, php-format msgid "Tracking of %s.%s is activated." msgstr "Tracking of %s.%s is activated." -#: libraries/messages.inc.php:1116 tbl_tracking.php:655 +#: libraries/messages.inc.php:1112 tbl_tracking.php:655 msgid "Activate now" msgstr "Activate now" -#: libraries/messages.inc.php:1117 tbl_tracking.php:653 +#: libraries/messages.inc.php:1113 tbl_tracking.php:653 #, php-format msgid "Activate tracking for %s.%s" msgstr "Activate tracking for %s.%s" -#: libraries/messages.inc.php:1118 tbl_tracking.php:221 +#: libraries/messages.inc.php:1114 tbl_tracking.php:221 msgid "Comment out these two lines if you do not need them." msgstr "Comment out these two lines if you do not need them." -#: libraries/messages.inc.php:1119 tbl_tracking.php:688 +#: libraries/messages.inc.php:1115 tbl_tracking.php:688 msgid "Create version" msgstr "Create version" -#: libraries/messages.inc.php:1120 tbl_tracking.php:668 +#: libraries/messages.inc.php:1116 tbl_tracking.php:668 #, php-format msgid "Create version %s of %s.%s" msgstr "Create version %s of %s.%s" -#: libraries/messages.inc.php:1122 tbl_tracking.php:412 +#: libraries/messages.inc.php:1118 tbl_tracking.php:412 msgid "Data definition statement" msgstr "Data definition statement" -#: libraries/messages.inc.php:1123 tbl_tracking.php:463 +#: libraries/messages.inc.php:1119 tbl_tracking.php:463 msgid "Data manipulation statement" msgstr "Data manipulation statement" -#: libraries/messages.inc.php:1124 tbl_tracking.php:410 tbl_tracking.php:461 +#: libraries/messages.inc.php:1120 tbl_tracking.php:410 tbl_tracking.php:461 msgid "Date" msgstr "Date" -#: libraries/messages.inc.php:1125 tbl_tracking.php:642 +#: libraries/messages.inc.php:1121 tbl_tracking.php:642 msgid "Deactivate now" msgstr "Deactivate now" -#: libraries/messages.inc.php:1126 tbl_tracking.php:640 +#: libraries/messages.inc.php:1122 tbl_tracking.php:640 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "Deactivate tracking for %s.%s" -#: libraries/messages.inc.php:1127 tbl_tracking.php:521 +#: libraries/messages.inc.php:1123 tbl_tracking.php:521 #, php-format msgid "Export as %s" msgstr "Export as %s" -#: libraries/messages.inc.php:1130 tbl_tracking.php:251 tbl_tracking.php:379 +#: libraries/messages.inc.php:1126 tbl_tracking.php:251 tbl_tracking.php:379 msgid "Close" msgstr "Close" -#: libraries/messages.inc.php:1131 tbl_tracking.php:114 +#: libraries/messages.inc.php:1127 tbl_tracking.php:114 #, php-format msgid "Tracking report for table `%s`" msgstr "Tracking report for table `%s`" -#: libraries/messages.inc.php:1133 tbl_tracking.php:397 tbl_tracking.php:504 +#: libraries/messages.inc.php:1129 tbl_tracking.php:397 tbl_tracking.php:504 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "Show %s with dates from %s to %s by user %s %s" -#: libraries/messages.inc.php:1134 tbl_tracking.php:561 +#: libraries/messages.inc.php:1130 tbl_tracking.php:561 msgid "Show versions" msgstr "Show versions" -#: libraries/messages.inc.php:1135 tbl_tracking.php:507 +#: libraries/messages.inc.php:1131 tbl_tracking.php:507 msgid "SQL dump (file download)" msgstr "SQL dump (file download)" -#: libraries/messages.inc.php:1136 tbl_tracking.php:508 +#: libraries/messages.inc.php:1132 tbl_tracking.php:508 msgid "SQL dump" msgstr "SQL dump" -#: libraries/messages.inc.php:1137 tbl_tracking.php:213 +#: libraries/messages.inc.php:1133 tbl_tracking.php:213 msgid "SQL statements executed." msgstr "SQL statements executed." -#: libraries/messages.inc.php:1138 +#: libraries/messages.inc.php:1134 msgid "This option will replace your table and contained data." msgstr "This option will replace your table and contained data." -#: libraries/messages.inc.php:1139 tbl_tracking.php:509 +#: libraries/messages.inc.php:1135 tbl_tracking.php:509 msgid "SQL execution" msgstr "SQL execution" -#: libraries/messages.inc.php:1140 tbl_tracking.php:230 +#: libraries/messages.inc.php:1136 tbl_tracking.php:230 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "SQL statements exported. Please copy the dump or execute it." -#: libraries/messages.inc.php:1141 tbl_tracking.php:381 +#: libraries/messages.inc.php:1137 tbl_tracking.php:381 msgid "Tracking statements" msgstr "Tracking statements" -#: libraries/messages.inc.php:1148 tbl_tracking.php:593 +#: libraries/messages.inc.php:1144 tbl_tracking.php:593 msgid "Version" msgstr "Version" -#: libraries/messages.inc.php:1149 tbl_tracking.php:672 +#: libraries/messages.inc.php:1145 tbl_tracking.php:672 msgid "Track these data definition statements:" msgstr "Track these data definition statements:" -#: libraries/messages.inc.php:1150 tbl_tracking.php:680 +#: libraries/messages.inc.php:1146 tbl_tracking.php:680 msgid "Track these data manipulation statements:" msgstr "Track these data manipulation statements:" -#: libraries/messages.inc.php:1155 tbl_tracking.php:411 tbl_tracking.php:462 +#: libraries/messages.inc.php:1151 tbl_tracking.php:411 tbl_tracking.php:462 msgid "Username" msgstr "Username" -#: libraries/messages.inc.php:1156 tbl_tracking.php:203 +#: libraries/messages.inc.php:1152 tbl_tracking.php:203 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "Tracking for %s.%s , version %s is activated." -#: libraries/messages.inc.php:1157 tbl_tracking.php:187 +#: libraries/messages.inc.php:1153 tbl_tracking.php:187 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "Version %s is created, tracking for %s.%s is activated." -#: libraries/messages.inc.php:1158 tbl_tracking.php:195 +#: libraries/messages.inc.php:1154 tbl_tracking.php:195 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "Tracking for %s.%s , version %s is deactivated." -#: libraries/messages.inc.php:1159 tbl_tracking.php:262 +#: libraries/messages.inc.php:1155 tbl_tracking.php:262 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Version %s snapshot (SQL code)" -#: libraries/messages.inc.php:1161 tbl_tracking.php:220 +#: libraries/messages.inc.php:1157 tbl_tracking.php:220 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -6372,24 +6372,24 @@ msgstr "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." -#: libraries/messages.inc.php:1162 libraries/mysql_charsets.lib.php:219 +#: libraries/messages.inc.php:1158 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:362 msgid "Traditional Chinese" msgstr "Traditional Chinese" -#: libraries/messages.inc.php:1163 libraries/mysql_charsets.lib.php:292 +#: libraries/messages.inc.php:1159 libraries/mysql_charsets.lib.php:292 msgid "Traditional Spanish" msgstr "Traditional Spanish" -#: libraries/messages.inc.php:1164 server_status.php:388 +#: libraries/messages.inc.php:1160 server_status.php:388 msgid "Traffic" msgstr "Traffic" -#: libraries/messages.inc.php:1165 server_status.php:261 +#: libraries/messages.inc.php:1161 server_status.php:261 msgid "Transaction coordinator" msgstr "Transaction coordinator" -#: libraries/messages.inc.php:1166 +#: libraries/messages.inc.php:1162 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 " @@ -6401,7 +6401,7 @@ msgstr "" "of a field which contains the filename. If you use the second option, you " "need to set the first option to the empty string." -#: libraries/messages.inc.php:1167 +#: libraries/messages.inc.php:1163 msgid "" "Displays hexadecimal representation of data. Optional first parameter " "specifies how often space will be added (defaults to 2 nibbles)." @@ -6409,7 +6409,7 @@ msgstr "" "Displays hexadecimal representation of data. Optional first parameter " "specifies how often space will be added (defaults to 2 nibbles)." -#: libraries/messages.inc.php:1168 +#: libraries/messages.inc.php:1164 msgid "" "Displays a clickable thumbnail. The options are the maximum width and height " "in pixels. The original aspect ratio is preserved." @@ -6417,91 +6417,91 @@ msgstr "" "Displays a clickable thumbnail. The options are the maximum width and height " "in pixels. The original aspect ratio is preserved." -#: libraries/messages.inc.php:1169 +#: libraries/messages.inc.php:1165 msgid "Displays a link to download this image." msgstr "Displays a link to download this image." -#: libraries/messages.inc.php:1170 +#: libraries/messages.inc.php:1166 msgid "See image/jpeg: inline" msgstr "See image/jpeg: inline" +#: libraries/messages.inc.php:1167 +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." +msgstr "" +"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." + +#: libraries/messages.inc.php:1168 +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)." +msgstr "" +"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)." + +#: libraries/messages.inc.php:1169 +msgid "" +"Displays the contents of the field as-is, without running it through " +"htmlspecialchars(). That is, the field is assumed to contain valid HTML." +msgstr "" +"Displays the contents of the field as-is, without running it through " +"htmlspecialchars(). That is, the field is assumed to contain valid HTML." + +#: libraries/messages.inc.php:1170 +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." +msgstr "" +"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." + #: libraries/messages.inc.php:1171 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." +"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." msgstr "" -"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." +"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." #: libraries/messages.inc.php:1172 -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)." -msgstr "" -"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)." - -#: libraries/messages.inc.php:1173 -msgid "" -"Displays the contents of the field as-is, without running it through " -"htmlspecialchars(). That is, the field is assumed to contain valid HTML." -msgstr "" -"Displays the contents of the field as-is, without running it through " -"htmlspecialchars(). That is, the field is assumed to contain valid HTML." - -#: libraries/messages.inc.php:1174 -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." -msgstr "" -"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." - -#: libraries/messages.inc.php:1175 -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." -msgstr "" -"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." - -#: libraries/messages.inc.php:1176 msgid "Formats text as SQL query with syntax highlighting." msgstr "Formats text as SQL query with syntax highlighting." -#: libraries/messages.inc.php:1177 +#: libraries/messages.inc.php:1173 msgid "" "Displays a part of a string. The first option is the number of characters to " "skip from the beginning of the string (Default 0). The second option is the " @@ -6515,70 +6515,70 @@ msgstr "" "option is the string to append and/or prepend when truncation occurs " "(Default: \"...\")." -#: libraries/messages.inc.php:1179 server_binlog.php:183 server_binlog.php:186 +#: libraries/messages.inc.php:1175 server_binlog.php:183 server_binlog.php:186 #: server_processlist.php:49 server_processlist.php:51 msgid "Truncate Shown Queries" msgstr "Truncate Shown Queries" -#: libraries/messages.inc.php:1180 libraries/mysql_charsets.lib.php:301 +#: libraries/messages.inc.php:1176 libraries/mysql_charsets.lib.php:301 #: libraries/mysql_charsets.lib.php:389 msgid "Turkish" msgstr "Turkish" -#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:304 +#: libraries/messages.inc.php:1179 libraries/mysql_charsets.lib.php:304 #: libraries/mysql_charsets.lib.php:386 msgid "Ukrainian" msgstr "Ukrainian" -#: libraries/messages.inc.php:1185 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:1181 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 msgid "Unicode" msgstr "Unicode" -#: libraries/messages.inc.php:1187 libraries/mysql_charsets.lib.php:398 +#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:398 #: libraries/mysql_charsets.lib.php:405 msgid "unknown" msgstr "unknown" -#: libraries/messages.inc.php:1190 server_privileges.php:1152 +#: libraries/messages.inc.php:1186 server_privileges.php:1152 #, php-format msgid "You have updated the privileges for %s." msgstr "You have updated the privileges for %s." -#: libraries/messages.inc.php:1191 user_password.php:112 +#: libraries/messages.inc.php:1187 user_password.php:112 msgid "The profile has been updated." msgstr "The profile has been updated." -#: libraries/messages.inc.php:1193 libraries/relation.lib.php:138 +#: libraries/messages.inc.php:1189 libraries/relation.lib.php:138 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "Please see the documentation on how to update your column_comments table" -#: libraries/messages.inc.php:1194 +#: libraries/messages.inc.php:1190 #, php-format msgid "You should upgrade to %s %s or later." msgstr "You should upgrade to %s %s or later." -#: libraries/messages.inc.php:1204 tbl_printview.php:314 tbl_structure.php:661 +#: libraries/messages.inc.php:1200 tbl_printview.php:314 tbl_structure.php:661 msgid "Usage" msgstr "Usage" -#: libraries/messages.inc.php:1205 +#: libraries/messages.inc.php:1201 msgid "Enclose table and field names with backquotes" msgstr "Enclose table and field names with backquotes" -#: libraries/messages.inc.php:1206 libraries/replication_gui.lib.php:314 +#: libraries/messages.inc.php:1202 libraries/replication_gui.lib.php:314 #: server_privileges.php:740 msgid "Use Host Table" msgstr "Use Host Table" -#: libraries/messages.inc.php:1207 server_privileges.php:848 +#: libraries/messages.inc.php:1203 server_privileges.php:848 #, php-format msgid "The user %s already exists!" msgstr "The user %s already exists!" -#: libraries/messages.inc.php:1209 libraries/replication_gui.lib.php:55 +#: libraries/messages.inc.php:1205 libraries/replication_gui.lib.php:55 #: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245 #: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255 #: server_privileges.php:672 server_privileges.php:675 @@ -6586,36 +6586,36 @@ msgstr "The user %s already exists!" msgid "User name" msgstr "User name" -#: libraries/messages.inc.php:1210 server_privileges.php:1645 +#: libraries/messages.inc.php:1206 server_privileges.php:1645 msgid "The selected user was not found in the privilege table." msgstr "The selected user was not found in the privilege table." -#: libraries/messages.inc.php:1211 server_privileges.php:1365 +#: libraries/messages.inc.php:1207 server_privileges.php:1365 msgid "User overview" msgstr "User overview" -#: libraries/messages.inc.php:1212 server_privileges.php:1261 +#: libraries/messages.inc.php:1208 server_privileges.php:1261 msgid "The selected users have been deleted successfully." msgstr "The selected users have been deleted successfully." -#: libraries/messages.inc.php:1213 server_privileges.php:2026 +#: libraries/messages.inc.php:1209 server_privileges.php:2026 #, php-format msgid "Users having access to "%s"" msgstr "Users having access to "%s"" -#: libraries/messages.inc.php:1214 main.php:189 server_privileges.php:1350 +#: libraries/messages.inc.php:1210 main.php:189 server_privileges.php:1350 #: server_privileges.php:1497 server_privileges.php:1611 #: server_privileges.php:2029 server_processlist.php:54 msgid "User" msgstr "User" -#: libraries/messages.inc.php:1215 tbl_change.php:1171 +#: libraries/messages.inc.php:1211 tbl_change.php:1171 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" -#: libraries/messages.inc.php:1217 libraries/replication_gui.lib.php:251 +#: libraries/messages.inc.php:1213 libraries/replication_gui.lib.php:251 #: libraries/replication_gui.lib.php:319 libraries/replication_gui.lib.php:342 #: server_privileges.php:678 server_privileges.php:745 #: server_privileges.php:769 server_privileges.php:1889 @@ -6623,7 +6623,7 @@ msgstr "" msgid "Use text field" msgstr "Use text field" -#: libraries/messages.inc.php:1221 libraries/sqlvalidator.lib.php:68 +#: libraries/messages.inc.php:1217 libraries/sqlvalidator.lib.php:68 #, php-format msgid "" "The SQL validator could not be initialized. Please check if you have " @@ -6632,84 +6632,84 @@ msgstr "" "The SQL validator could not be initialised. Please check if you have " "installed the necessary PHP extensions as described in the %sdocumentation%s." -#: libraries/messages.inc.php:1222 libraries/replication_gui.lib.php:111 +#: libraries/messages.inc.php:1218 libraries/replication_gui.lib.php:111 #: server_status.php:627 tbl_change.php:324 tbl_printview.php:370 #: tbl_select.php:139 tbl_structure.php:730 msgid "Value" msgstr "Value" -#: libraries/messages.inc.php:1223 libraries/replication_gui.lib.php:110 +#: libraries/messages.inc.php:1219 libraries/replication_gui.lib.php:110 #: libraries/sql_query_form.lib.php:445 server_status.php:626 #: server_variables.php:52 msgid "Variable" msgstr "Variable" -#: libraries/messages.inc.php:1225 server_export.php:21 +#: libraries/messages.inc.php:1221 server_export.php:21 msgid "View dump (schema) of databases" msgstr "View dump (schema) of databases" -#: libraries/messages.inc.php:1227 tbl_export.php:23 +#: libraries/messages.inc.php:1223 tbl_export.php:23 msgid "View dump (schema) of table" msgstr "View dump (schema) of table" -#: libraries/messages.inc.php:1231 view_create.php:142 +#: libraries/messages.inc.php:1227 view_create.php:142 msgid "VIEW name" msgstr "VIEW name" -#: libraries/messages.inc.php:1237 main.php:205 +#: libraries/messages.inc.php:1233 main.php:205 msgid "Web server" msgstr "Web server" -#: libraries/messages.inc.php:1239 libraries/mysql_charsets.lib.php:277 +#: libraries/messages.inc.php:1235 libraries/mysql_charsets.lib.php:277 #: libraries/mysql_charsets.lib.php:325 msgid "West European" msgstr "West European" -#: libraries/messages.inc.php:1240 main.php:230 +#: libraries/messages.inc.php:1236 main.php:230 msgid "Wiki" msgstr "Wiki" -#: libraries/messages.inc.php:1241 server_privileges.php:2138 +#: libraries/messages.inc.php:1237 server_privileges.php:2138 msgid "wildcard" msgstr "wildcard" -#: libraries/messages.inc.php:1248 +#: libraries/messages.inc.php:1244 msgid "Export contents" msgstr "Export contents" -#: libraries/messages.inc.php:1249 +#: libraries/messages.inc.php:1245 msgid "Export functions" msgstr "Export functions" -#: libraries/messages.inc.php:1250 +#: libraries/messages.inc.php:1246 msgid "Export procedures" msgstr "Export procedures" -#: libraries/messages.inc.php:1251 +#: libraries/messages.inc.php:1247 msgid "Export Structure Schemas (recommended)" msgstr "Export Structure Schemas (recommended)" -#: libraries/messages.inc.php:1252 +#: libraries/messages.inc.php:1248 msgid "Export tables" msgstr "Export tables" -#: libraries/messages.inc.php:1253 +#: libraries/messages.inc.php:1249 msgid "Export triggers" msgstr "Export triggers" -#: libraries/messages.inc.php:1254 +#: libraries/messages.inc.php:1250 msgid "Export views" msgstr "Export views" -#: libraries/messages.inc.php:1255 +#: libraries/messages.inc.php:1251 msgid "XML" msgstr "XML" -#: libraries/messages.inc.php:1259 server_privileges.php:592 +#: libraries/messages.inc.php:1255 server_privileges.php:592 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Note: Setting these options to 0 (zero) removes the limit." -#: libraries/messages.inc.php:1260 +#: libraries/messages.inc.php:1256 msgid "\"zipped\"" msgstr "\"zipped\"" diff --git a/po/es.po b/po/es.po index 6b187ea1d..a710902c7 100644 --- 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-05-13 11:25+0200\n" +"POT-Creation-Date: 2010-05-13 11:30+0200\n" "PO-Revision-Date: 2010-03-12 11:23+0200\n" "Last-Translator: Michal \n" "Language-Team: spanish \n" @@ -15,19 +15,19 @@ msgstr "" "X-Generator: Pootle 2.0.1\n" #: browse_foreigners.php:38 browse_foreigners.php:59 -#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:870 +#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:866 #: server_privileges.php:1475 msgid "Show all" msgstr "Mostrar todo" #: browse_foreigners.php:82 db_operations.php:648 -#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:394 -#: libraries/export/pdf.php:147 libraries/messages.inc.php:597 +#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394 +#: libraries/export/pdf.php:147 libraries/messages.inc.php:593 #: pdf_schema.php:283 pdf_schema.php:1123 pdf_schema.php:1139 msgid "Page number:" msgstr "Número de página:" -#: browse_foreigners.php:132 libraries/messages.inc.php:1242 +#: browse_foreigners.php:132 libraries/messages.inc.php:1238 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -40,7 +40,7 @@ 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/db_links.inc.php:75 -#: libraries/messages.inc.php:841 libraries/tbl_links.inc.php:63 +#: libraries/messages.inc.php:837 libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Buscar" @@ -49,12 +49,12 @@ msgstr "Buscar" #: db_search.php:362 db_structure.php:567 js/messages.php:48 #: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2267 +#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 #: 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 #: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614 -#: libraries/messages.inc.php:361 libraries/replication_gui.lib.php:73 +#: libraries/messages.inc.php:357 libraries/replication_gui.lib.php:73 #: libraries/replication_gui.lib.php:365 libraries/select_server.lib.php:104 #: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477 #: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782 @@ -74,33 +74,33 @@ msgid "Go" msgstr "Continuar" #: browse_foreigners.php:168 browse_foreigners.php:172 -#: libraries/Index.class.php:442 libraries/messages.inc.php:459 +#: libraries/Index.class.php:442 libraries/messages.inc.php:455 #: tbl_tracking.php:320 msgid "Keyname" msgstr "Nombre de la clave" #: browse_foreigners.php:169 browse_foreigners.php:171 -#: libraries/messages.inc.php:252 server_collations.php:55 +#: libraries/messages.inc.php:248 server_collations.php:55 #: server_collations.php:67 server_engines.php:59 server_status.php:628 msgid "Description" msgstr "Descripción" #: browse_foreigners.php:247 browse_foreigners.php:256 #: browse_foreigners.php:268 browse_foreigners.php:276 -#: libraries/messages.inc.php:1218 +#: libraries/messages.inc.php:1214 msgid "Use this value" msgstr "Use este valor" -#: db_create.php:46 libraries/messages.inc.php:215 +#: db_create.php:46 libraries/messages.inc.php:211 #, php-format msgid "Database %1$s has been created." msgstr "La base de datos %1$s se creó." -#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:232 +#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:228 msgid "Database comment: " msgstr "Comentario de la base de datos: " -#: db_datadict.php:165 libraries/messages.inc.php:1070 +#: db_datadict.php:165 libraries/messages.inc.php:1066 #: libraries/tbl_properties.inc.php:724 pdf_schema.php:1236 #: tbl_operations.php:345 tbl_printview.php:130 msgid "Table comments" @@ -109,7 +109,7 @@ msgstr "Comentarios de la tabla" #: db_datadict.php:174 db_qbe.php:174 libraries/Index.class.php:446 #: libraries/export/htmlword.php:244 libraries/export/latex.php:360 #: libraries/export/odt.php:294 libraries/export/texytext.php:233 -#: libraries/messages.inc.php:317 libraries/tbl_properties.inc.php:99 +#: libraries/messages.inc.php:313 libraries/tbl_properties.inc.php:99 #: libraries/tbl_properties.inc.php:275 pdf_schema.php:1262 #: pdf_schema.php:1283 tbl_change.php:308 tbl_indexes.php:189 #: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135 @@ -121,7 +121,7 @@ msgstr "Campo" #: libraries/db_events.inc.php:31 libraries/db_routines.inc.php:42 #: 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/messages.inc.php:1181 +#: libraries/export/texytext.php:234 libraries/messages.inc.php:1177 #: libraries/tbl_properties.inc.php:100 pdf_schema.php:1263 #: pdf_schema.php:1284 server_privileges.php:2031 tbl_change.php:287 #: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313 @@ -133,7 +133,7 @@ msgstr "Tipo" #: db_datadict.php:177 libraries/Index.class.php:449 #: libraries/export/htmlword.php:246 libraries/export/latex.php:360 #: libraries/export/odt.php:300 libraries/export/texytext.php:235 -#: libraries/messages.inc.php:576 libraries/tbl_properties.inc.php:109 +#: libraries/messages.inc.php:572 libraries/tbl_properties.inc.php:109 #: pdf_schema.php:1265 pdf_schema.php:1286 tbl_change.php:323 #: tbl_printview.php:145 tbl_structure.php:181 tbl_tracking.php:276 #: tbl_tracking.php:327 @@ -142,7 +142,7 @@ msgstr "Nulo" #: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 -#: libraries/export/texytext.php:236 libraries/messages.inc.php:238 +#: libraries/export/texytext.php:236 libraries/messages.inc.php:234 #: libraries/tbl_properties.inc.php:106 pdf_schema.php:1266 #: pdf_schema.php:1287 tbl_printview.php:146 tbl_structure.php:182 #: tbl_tracking.php:277 @@ -151,14 +151,14 @@ msgstr "Predeterminado" #: db_datadict.php:182 libraries/export/htmlword.php:249 #: libraries/export/latex.php:362 libraries/export/odt.php:307 -#: libraries/export/texytext.php:238 libraries/messages.inc.php:483 +#: libraries/export/texytext.php:238 libraries/messages.inc.php:479 #: pdf_schema.php:1268 pdf_schema.php:1289 tbl_printview.php:150 msgid "Links to" msgstr "Enlaces a" #: db_datadict.php:184 db_printview.php:112 libraries/export/htmlword.php:252 #: libraries/export/latex.php:365 libraries/export/odt.php:312 -#: libraries/export/texytext.php:241 libraries/messages.inc.php:163 +#: libraries/export/texytext.php:241 libraries/messages.inc.php:159 #: libraries/tbl_properties.inc.php:130 pdf_schema.php:1279 #: pdf_schema.php:1290 tbl_printview.php:152 msgid "Comments" @@ -167,7 +167,7 @@ msgstr "Comentarios" #: db_datadict.php:267 libraries/Index.class.php:359 #: 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/messages.inc.php:559 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:555 #: libraries/mult_submits.inc.php:263 pdf_schema.php:1344 #: server_privileges.php:1529 server_privileges.php:1540 #: server_privileges.php:1850 server_privileges.php:1855 @@ -179,7 +179,7 @@ msgstr "No" #: db_datadict.php:267 libraries/Index.class.php:360 #: libraries/Index.class.php:385 libraries/export/htmlword.php:322 #: libraries/export/latex.php:430 libraries/export/odt.php:368 -#: libraries/export/texytext.php:311 libraries/messages.inc.php:1257 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:1253 #: libraries/mult_submits.inc.php:45 libraries/mult_submits.inc.php:50 #: libraries/mult_submits.inc.php:55 libraries/mult_submits.inc.php:60 #: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:101 @@ -193,108 +193,108 @@ msgstr "No" msgid "Yes" msgstr "Sí" -#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:670 +#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:666 #: tbl_printview.php:498 msgid "Print" msgstr "Imprimir" -#: db_export.php:29 libraries/messages.inc.php:1226 +#: db_export.php:29 libraries/messages.inc.php:1222 msgid "View dump (schema) of database" msgstr "Ver el volcado esquema de la base de datos" #: db_export.php:33 db_printview.php:96 db_qbe.php:102 db_structure.php:51 -#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:568 +#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:564 #: navigation.php:346 msgid "No tables found in database." msgstr "No se han encontrado tablas en la base de datos." -#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:845 +#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:841 #: server_export.php:27 msgid "Select All" msgstr "Seleccionar todo" -#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1188 +#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1184 #: server_export.php:29 msgid "Unselect All" msgstr "Deseleccionar todo" -#: db_operations.php:38 libraries/messages.inc.php:213 tbl_create.php:54 +#: db_operations.php:38 libraries/messages.inc.php:209 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 libraries/messages.inc.php:753 +#: db_operations.php:236 libraries/messages.inc.php:749 #, 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 libraries/messages.inc.php:178 +#: db_operations.php:240 libraries/messages.inc.php:174 #, php-format msgid "Database %s has been copied to %s" msgstr "La base de datos %s ha sido copiada a %s" -#: db_operations.php:410 libraries/messages.inc.php:236 +#: db_operations.php:410 libraries/messages.inc.php:232 msgid "Rename database to" msgstr "Cambiar el nombre de la base de datos a" -#: db_operations.php:415 libraries/messages.inc.php:161 +#: db_operations.php:415 libraries/messages.inc.php:157 #: server_processlist.php:57 msgid "Command" msgstr "Comando" -#: db_operations.php:425 libraries/messages.inc.php:58 tbl_change.php:1143 +#: db_operations.php:425 libraries/messages.inc.php:54 tbl_change.php:1143 msgid "and then" msgstr "y luego" -#: db_operations.php:451 libraries/messages.inc.php:233 +#: db_operations.php:451 libraries/messages.inc.php:229 msgid "Copy database to" msgstr "Copiar la base de datos a" -#: db_operations.php:458 libraries/messages.inc.php:1043 +#: db_operations.php:458 libraries/messages.inc.php:1039 #: tbl_operations.php:526 tbl_tracking.php:388 msgid "Structure only" msgstr "Únicamente la estructura " -#: db_operations.php:459 libraries/messages.inc.php:1041 +#: db_operations.php:459 libraries/messages.inc.php:1037 #: tbl_operations.php:527 tbl_tracking.php:390 msgid "Structure and data" msgstr "Estructura y datos" -#: db_operations.php:460 libraries/messages.inc.php:229 tbl_operations.php:528 +#: db_operations.php:460 libraries/messages.inc.php:225 tbl_operations.php:528 #: tbl_tracking.php:389 msgid "Data only" msgstr "Solamente datos" -#: db_operations.php:468 libraries/messages.inc.php:186 +#: db_operations.php:468 libraries/messages.inc.php:182 msgid "CREATE DATABASE before copying" msgstr "CREAR BASE DE DATOS antes de copiar" #: db_operations.php:471 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 -#: libraries/export/sql.php:82 libraries/messages.inc.php:30 +#: libraries/export/sql.php:82 libraries/messages.inc.php:26 #: tbl_operations.php:534 #, php-format msgid "Add %s" msgstr "Añada %s" -#: db_operations.php:475 libraries/messages.inc.php:29 tbl_operations.php:297 +#: db_operations.php:475 libraries/messages.inc.php:25 tbl_operations.php:297 #: tbl_operations.php:536 msgid "Add AUTO_INCREMENT value" msgstr "Añadir el valor AUTO_INCREMENT" -#: db_operations.php:479 libraries/messages.inc.php:31 tbl_operations.php:543 +#: db_operations.php:479 libraries/messages.inc.php:27 tbl_operations.php:543 msgid "Add constraints" msgstr "Añadir restricciones" -#: db_operations.php:492 libraries/messages.inc.php:1059 +#: db_operations.php:492 libraries/messages.inc.php:1055 msgid "Switch to copied database" msgstr "Seleccionar la base de datos copiada" -#: db_operations.php:533 libraries/messages.inc.php:89 +#: db_operations.php:533 libraries/messages.inc.php:85 msgid "BLOB Repository" msgstr "Repositorio BLOB" #: db_operations.php:536 db_tracking.php:76 libraries/common.lib.php:1350 -#: libraries/messages.inc.php:1037 libraries/server_links.inc.php:49 +#: libraries/messages.inc.php:1033 libraries/server_links.inc.php:49 #: server_processlist.php:59 tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "Estado actual" @@ -306,11 +306,11 @@ msgctxt "BLOB repository" msgid "Enabled" msgstr "Habilitado" -#: db_operations.php:548 libraries/messages.inc.php:93 +#: db_operations.php:548 libraries/messages.inc.php:89 msgid "Disable" msgstr "Deshabilite" -#: db_operations.php:558 libraries/messages.inc.php:90 +#: db_operations.php:558 libraries/messages.inc.php:86 msgid "Damaged" msgstr "Dañado" @@ -328,12 +328,12 @@ msgctxt "BLOB repository" msgid "Disabled" msgstr "Deshabilitado" -#: db_operations.php:574 libraries/messages.inc.php:96 +#: db_operations.php:574 libraries/messages.inc.php:92 msgid "Enable" msgstr "Habilite" #: db_operations.php:598 libraries/Index.class.php:448 -#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:158 +#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:154 #: 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:361 @@ -342,7 +342,7 @@ msgstr "Habilite" msgid "Collation" msgstr "Cotejamiento" -#: db_operations.php:609 libraries/messages.inc.php:742 main.php:316 +#: db_operations.php:609 libraries/messages.inc.php:738 main.php:316 #: pdf_schema.php:34 #, php-format msgid "" @@ -352,58 +352,58 @@ msgstr "" "Las opciones adicionales para trabajar con tablas vinculadas fueron " "desactivadas. Para saber porqué, dé clic %saquí%s." -#: db_operations.php:645 libraries/messages.inc.php:264 pdf_pages.php:528 +#: db_operations.php:645 libraries/messages.inc.php:260 pdf_pages.php:528 msgid "Display PDF schema" msgstr "Mostrar esquema PDF" -#: db_operations.php:661 libraries/messages.inc.php:877 pdf_pages.php:529 +#: db_operations.php:661 libraries/messages.inc.php:873 pdf_pages.php:529 msgid "Show grid" msgstr "Mostrar la cuadrícula" -#: db_operations.php:664 libraries/messages.inc.php:874 pdf_pages.php:530 +#: db_operations.php:664 libraries/messages.inc.php:870 pdf_pages.php:530 msgid "Show color" msgstr "Mostrar color" -#: db_operations.php:666 libraries/messages.inc.php:998 pdf_pages.php:531 +#: db_operations.php:666 libraries/messages.inc.php:994 pdf_pages.php:531 msgid "Show dimension of tables" msgstr "Mostrar la dimensión de las tablas" -#: db_operations.php:669 libraries/messages.inc.php:52 pdf_pages.php:532 +#: db_operations.php:669 libraries/messages.inc.php:48 pdf_pages.php:532 msgid "Display all tables with the same width" msgstr "¿Mostrar todas las tablas que tienen el mismo ancho?" -#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:227 +#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:223 #: pdf_pages.php:533 msgid "Data Dictionary" msgstr "Diccionario de datos" -#: db_operations.php:674 libraries/messages.inc.php:884 pdf_pages.php:534 +#: db_operations.php:674 libraries/messages.inc.php:880 pdf_pages.php:534 msgid "Only show keys" msgstr "Mostrar las llaves solamente" -#: db_operations.php:676 libraries/messages.inc.php:875 pdf_pages.php:535 +#: db_operations.php:676 libraries/messages.inc.php:871 pdf_pages.php:535 msgid "Data Dictionary Format" msgstr "Formato del Diccionario de Datos" -#: db_operations.php:678 libraries/messages.inc.php:464 pdf_pages.php:537 +#: db_operations.php:678 libraries/messages.inc.php:460 pdf_pages.php:537 msgid "Landscape" msgstr "Orientación horizontal" -#: db_operations.php:679 libraries/messages.inc.php:663 pdf_pages.php:538 +#: db_operations.php:679 libraries/messages.inc.php:659 pdf_pages.php:538 msgid "Portrait" msgstr "Orientación vertical" -#: db_operations.php:682 libraries/messages.inc.php:599 pdf_pages.php:541 +#: db_operations.php:682 libraries/messages.inc.php:595 pdf_pages.php:541 msgid "Paper size" msgstr "Tamaño del papel" -#: db_operations.php:706 libraries/messages.inc.php:281 +#: db_operations.php:706 libraries/messages.inc.php:277 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 libraries/messages.inc.php:1087 +#: libraries/header.inc.php:126 libraries/messages.inc.php:1083 #: pdf_pages.php:405 server_privileges.php:1626 server_privileges.php:1682 #: server_privileges.php:1946 server_synchronize.php:423 #: server_synchronize.php:866 tbl_tracking.php:592 test/theme.php:75 @@ -411,176 +411,176 @@ msgid "Table" msgstr "Tabla" #: db_printview.php:105 libraries/db_structure.lib.php:56 -#: libraries/messages.inc.php:735 +#: libraries/messages.inc.php:731 msgid "Records" msgstr "Registros" #: db_printview.php:109 libraries/db_structure.lib.php:67 -#: libraries/messages.inc.php:1003 tbl_indexes.php:190 +#: libraries/messages.inc.php:999 tbl_indexes.php:190 msgid "Size" msgstr "Tamaño" #: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 -#: libraries/export/sql.php:899 libraries/messages.inc.php:436 +#: libraries/export/sql.php:899 libraries/messages.inc.php:432 msgid "in use" msgstr "en uso" #: db_printview.php:187 libraries/db_info.inc.php:88 -#: libraries/export/sql.php:514 libraries/messages.inc.php:1032 +#: libraries/export/sql.php:514 libraries/messages.inc.php:1028 #: pdf_schema.php:1241 tbl_printview.php:434 tbl_structure.php:810 msgid "Creation" msgstr "Creación" #: db_printview.php:196 libraries/db_info.inc.php:93 -#: libraries/export/sql.php:519 libraries/messages.inc.php:1036 +#: libraries/export/sql.php:519 libraries/messages.inc.php:1032 #: pdf_schema.php:1246 tbl_printview.php:444 tbl_structure.php:818 msgid "Last update" msgstr "Última actualización" #: db_printview.php:205 libraries/db_info.inc.php:98 -#: libraries/export/sql.php:524 libraries/messages.inc.php:1031 +#: libraries/export/sql.php:524 libraries/messages.inc.php:1027 #: pdf_schema.php:1251 tbl_printview.php:454 tbl_structure.php:826 msgid "Last check" msgstr "Última revisión" -#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1085 +#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1081 #, php-format msgid "%s table(s)" msgstr "%s tabla(s)" #: db_qbe.php:29 libraries/display_tbl.lib.php:1981 -#: libraries/messages.inc.php:1051 libraries/sql_query_form.lib.php:140 +#: libraries/messages.inc.php:1047 libraries/sql_query_form.lib.php:140 #: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131 #: view_operations.php:62 msgid "Your SQL query has been executed successfully" msgstr "Su consulta se ejecutó con éxito" -#: db_qbe.php:42 libraries/messages.inc.php:371 +#: db_qbe.php:42 libraries/messages.inc.php:367 msgid "You have to choose at least one column to display" msgstr "Debe elegir al menos una columna para mostrar" #: db_qbe.php:200 libraries/db_structure.lib.php:104 -#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1014 +#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1010 msgid "Sort" msgstr "Ordenar" #: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111 #: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828 -#: libraries/messages.inc.php:69 server_databases.php:170 +#: libraries/messages.inc.php:65 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314 msgid "Ascending" msgstr "Ascendente" #: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119 #: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825 -#: libraries/messages.inc.php:251 server_databases.php:170 +#: libraries/messages.inc.php:247 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315 msgid "Descending" msgstr "Descendente" #: db_qbe.php:264 db_tracking.php:78 libraries/display_tbl.lib.php:308 -#: libraries/messages.inc.php:888 tbl_change.php:277 tbl_tracking.php:597 +#: libraries/messages.inc.php:884 tbl_change.php:277 tbl_tracking.php:597 msgid "Show" msgstr "Mostrar" -#: db_qbe.php:300 libraries/messages.inc.php:202 +#: db_qbe.php:300 libraries/messages.inc.php:198 msgid "Criteria" msgstr "Criterio" #: db_qbe.php:353 db_qbe.php:435 db_qbe.php:527 db_qbe.php:558 -#: libraries/messages.inc.php:718 +#: libraries/messages.inc.php:714 msgid "Ins" msgstr "Insertar" #: db_qbe.php:357 db_qbe.php:439 db_qbe.php:524 db_qbe.php:555 -#: libraries/messages.inc.php:56 +#: libraries/messages.inc.php:52 msgid "And" msgstr "y luego" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:529 db_qbe.php:560 -#: libraries/messages.inc.php:717 +#: libraries/messages.inc.php:713 msgid "Del" 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/messages.inc.php:592 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:588 #: libraries/tbl_properties.inc.php:779 server_privileges.php:258 #: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288 msgid "Or" msgstr "O" -#: db_qbe.php:507 libraries/messages.inc.php:516 +#: db_qbe.php:507 libraries/messages.inc.php:512 msgid "Modify" msgstr "Modificar" -#: db_qbe.php:584 libraries/messages.inc.php:33 +#: db_qbe.php:584 libraries/messages.inc.php:29 msgid "Add/Delete Criteria Row" msgstr "Añadir/borrar fila de criterio" -#: db_qbe.php:596 libraries/messages.inc.php:32 +#: db_qbe.php:596 libraries/messages.inc.php:28 msgid "Add/Delete Field Columns" msgstr "Añadir/borrar columna de criterio" -#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1192 +#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1188 msgid "Update Query" msgstr "Modificar la consulta" -#: db_qbe.php:617 libraries/messages.inc.php:1216 +#: db_qbe.php:617 libraries/messages.inc.php:1212 msgid "Use Tables" msgstr "Usar tablas" -#: db_qbe.php:640 libraries/messages.inc.php:723 +#: db_qbe.php:640 libraries/messages.inc.php:719 #, php-format msgid "SQL query on database %s:" msgstr "Consulta a la base de datos %s:" -#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:823 +#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:819 msgid "Submit Query" msgstr "Ejecutar la consulta" #: db_search.php:68 libraries/auth/config.auth.lib.php:84 #: libraries/auth/config.auth.lib.php:103 #: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52 -#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:26 +#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:22 msgid "Access denied" msgstr "Acceso denegado " -#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:836 +#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:832 msgid "at least one of the words" msgstr "al menos una de estas palabras" -#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:837 +#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:833 msgid "all words" msgstr "Todas las palabras" -#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:838 +#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:834 msgid "the exact phrase" msgstr "La frase exacta" -#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:839 +#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:835 msgid "as regular expression" msgstr "como expresión regular" -#: db_search.php:242 libraries/messages.inc.php:840 +#: db_search.php:242 libraries/messages.inc.php:836 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Resultados de la búsqueda por \"%s\" %s:" -#: db_search.php:260 libraries/messages.inc.php:579 +#: db_search.php:260 libraries/messages.inc.php:575 #, php-format msgid "%s match(es) inside table %s" 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/messages.inc.php:108 +#: db_structure.php:105 libraries/messages.inc.php:104 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468 msgid "Browse" msgstr "Examinar" #: db_search.php:272 libraries/display_tbl.lib.php:1165 -#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:243 +#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:239 #: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406 #: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377 #: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216 @@ -588,45 +588,45 @@ msgstr "Examinar" msgid "Delete" msgstr "Borrar" -#: db_search.php:285 libraries/messages.inc.php:580 +#: db_search.php:285 libraries/messages.inc.php:576 #, php-format msgid "Total: %s match(es)" msgstr "Total: %s resultado(s)" -#: db_search.php:299 libraries/messages.inc.php:832 +#: db_search.php:299 libraries/messages.inc.php:828 msgid "Search in database" msgstr "Buscar en la base de datos" -#: db_search.php:302 libraries/messages.inc.php:835 +#: db_search.php:302 libraries/messages.inc.php:831 msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgstr "Palabra(s) o valor(es) a buscar (comodín: \"%\"):" -#: db_search.php:307 libraries/messages.inc.php:842 +#: db_search.php:307 libraries/messages.inc.php:838 msgid "Find:" msgstr "Encontrado:" -#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1017 +#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1013 msgid "Words are separated by a space character (\" \")." msgstr "Palabras separadas por un espacio (\" \")." -#: db_search.php:325 libraries/messages.inc.php:834 +#: db_search.php:325 libraries/messages.inc.php:830 msgid "Inside table(s):" msgstr "En la(s) tabla(s):" -#: db_search.php:355 libraries/messages.inc.php:833 +#: db_search.php:355 libraries/messages.inc.php:829 msgid "Inside field:" 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/messages.inc.php:431 libraries/sql_query_form.lib.php:334 +#: libraries/messages.inc.php:427 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/db_links.inc.php:63 libraries/export/latex.php:337 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:1048 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:1044 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 #: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269 msgid "Structure" @@ -635,8 +635,8 @@ 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:1642 -#: libraries/db_links.inc.php:100 libraries/messages.inc.php:272 +#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/db_links.inc.php:100 libraries/messages.inc.php:268 #: 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 @@ -646,40 +646,40 @@ 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:1641 -#: libraries/messages.inc.php:284 libraries/mult_submits.inc.php:39 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: libraries/messages.inc.php:280 libraries/mult_submits.inc.php:39 #: libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Vaciar" -#: db_structure.php:316 libraries/messages.inc.php:1075 +#: db_structure.php:316 libraries/messages.inc.php:1071 #: libraries/tbl_links.inc.php:100 #, php-format msgid "Table %s has been emptied" msgstr "Se ha vaciado la tabla %s" -#: db_structure.php:326 libraries/messages.inc.php:1229 +#: db_structure.php:326 libraries/messages.inc.php:1225 #: 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/messages.inc.php:1074 +#: db_structure.php:326 libraries/messages.inc.php:1070 #: 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 libraries/messages.inc.php:1128 +#: db_structure.php:333 libraries/messages.inc.php:1124 msgid "Tracking is active." msgstr "" -#: db_structure.php:335 libraries/messages.inc.php:1129 +#: db_structure.php:335 libraries/messages.inc.php:1125 msgid "Tracking is not active." msgstr "" #: db_structure.php:420 libraries/display_tbl.lib.php:1944 -#: libraries/messages.inc.php:1228 +#: libraries/messages.inc.php:1224 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -689,23 +689,23 @@ msgstr "" "sdocumentation%s." #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 -#: libraries/messages.inc.php:1233 libraries/tbl_info.inc.php:66 +#: libraries/messages.inc.php:1229 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/messages.inc.php:773 libraries/server_links.inc.php:70 +#: libraries/messages.inc.php:769 libraries/server_links.inc.php:70 #: server_replication.php:33 server_replication.php:164 server_status.php:258 msgid "Replication" msgstr "Replicación" -#: db_structure.php:489 libraries/messages.inc.php:1053 +#: db_structure.php:489 libraries/messages.inc.php:1049 msgid "Sum" msgstr "Número de filas" #: db_structure.php:496 libraries/StorageEngine.class.php:356 -#: libraries/messages.inc.php:239 +#: libraries/messages.inc.php:235 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" @@ -713,60 +713,60 @@ msgstr "" #: db_structure.php:524 db_structure.php:541 db_structure.php:542 #: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086 -#: libraries/messages.inc.php:1243 libraries/mult_submits.inc.php:16 +#: libraries/messages.inc.php:1239 libraries/mult_submits.inc.php:16 #: server_databases.php:346 server_databases.php:351 #: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465 msgid "With selected:" msgstr "Para los elementos que están marcados:" #: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: libraries/messages.inc.php:148 server_databases.php:348 +#: libraries/messages.inc.php:144 server_databases.php:348 #: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459 msgid "Check All" msgstr "Marcar todos/as" #: db_structure.php:531 libraries/display_tbl.lib.php:2077 -#: libraries/messages.inc.php:1184 libraries/replication_gui.lib.php:33 +#: libraries/messages.inc.php:1180 libraries/replication_gui.lib.php:33 #: server_databases.php:350 server_privileges.php:533 #: server_privileges.php:1564 tbl_structure.php:463 msgid "Uncheck All" msgstr "Desmarcar todos" -#: db_structure.php:536 libraries/messages.inc.php:150 +#: db_structure.php:536 libraries/messages.inc.php:146 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 -#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:672 +#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:668 #: libraries/mult_submits.inc.php:28 tbl_structure.php:493 #: tbl_structure.php:495 msgid "Print view" msgstr "Vista de impresión" -#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:153 +#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:149 #: libraries/mult_submits.inc.php:42 tbl_operations.php:579 msgid "Check table" msgstr "Revisar la tabla" -#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:590 +#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:586 #: libraries/mult_submits.inc.php:47 tbl_operations.php:619 #: tbl_structure.php:710 tbl_structure.php:712 msgid "Optimize table" msgstr "Optimizar la tabla" -#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:758 +#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:754 #: libraries/mult_submits.inc.php:52 tbl_operations.php:609 msgid "Repair table" msgstr "Reparar la tabla" -#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:55 +#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:51 #: libraries/mult_submits.inc.php:57 tbl_operations.php:599 msgid "Analyze table" msgstr "Analizar la tabla" #: db_structure.php:557 db_structure.php:558 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/messages.inc.php:310 +#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:306 #: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84 #: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109 #: server_privileges.php:1341 setup/frames/menu.inc.php:22 @@ -774,7 +774,7 @@ msgstr "Analizar la tabla" msgid "Export" msgstr "Exportar" -#: db_tracking.php:66 libraries/messages.inc.php:1151 +#: db_tracking.php:66 libraries/messages.inc.php:1147 #, fuzzy msgid "Tracked tables" msgstr "Saltarse las tablas bloqueadas" @@ -783,7 +783,7 @@ msgstr "Saltarse las tablas bloqueadas" #: 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/header_printview.inc.php:58 libraries/messages.inc.php:212 +#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:208 #: navigation.php:233 server_databases.php:169 server_privileges.php:1621 #: server_privileges.php:1682 server_privileges.php:1940 #: server_processlist.php:56 server_synchronize.php:1179 @@ -791,83 +791,83 @@ msgstr "Saltarse las tablas bloqueadas" msgid "Database" msgstr "Base de datos" -#: db_tracking.php:73 libraries/messages.inc.php:1146 +#: db_tracking.php:73 libraries/messages.inc.php:1142 #, fuzzy msgid "Last version" msgstr "Crear relación" -#: db_tracking.php:74 libraries/messages.inc.php:1145 tbl_tracking.php:594 +#: db_tracking.php:74 libraries/messages.inc.php:1141 tbl_tracking.php:594 #, fuzzy msgid "Created" msgstr "Crear" -#: db_tracking.php:75 libraries/messages.inc.php:1147 tbl_tracking.php:595 +#: db_tracking.php:75 libraries/messages.inc.php:1143 tbl_tracking.php:595 msgid "Updated" msgstr "" #: db_tracking.php:77 libraries/Index.class.php:440 -#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:27 +#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:23 #: server_databases.php:203 server_privileges.php:1503 #: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187 msgid "Action" msgstr "Acción" -#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:247 +#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:243 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:106 libraries/messages.inc.php:1142 tbl_tracking.php:548 +#: db_tracking.php:106 libraries/messages.inc.php:1138 tbl_tracking.php:548 #: tbl_tracking.php:606 tbl_tracking.php:613 msgid "active" msgstr "" -#: db_tracking.php:108 libraries/messages.inc.php:1143 tbl_tracking.php:550 +#: db_tracking.php:108 libraries/messages.inc.php:1139 tbl_tracking.php:550 #: tbl_tracking.php:608 tbl_tracking.php:610 msgid "not active" msgstr "" -#: db_tracking.php:121 libraries/messages.inc.php:1160 +#: db_tracking.php:121 libraries/messages.inc.php:1156 #, fuzzy msgid "Versions" msgstr "Persa" -#: db_tracking.php:122 libraries/messages.inc.php:1132 tbl_tracking.php:379 +#: db_tracking.php:122 libraries/messages.inc.php:1128 tbl_tracking.php:379 #: tbl_tracking.php:624 msgid "Tracking report" msgstr "" -#: db_tracking.php:123 libraries/messages.inc.php:1144 tbl_tracking.php:251 +#: db_tracking.php:123 libraries/messages.inc.php:1140 tbl_tracking.php:251 #: tbl_tracking.php:624 #, fuzzy msgid "Structure snapshot" msgstr "Únicamente la estructura " -#: db_tracking.php:152 libraries/messages.inc.php:1154 +#: db_tracking.php:152 libraries/messages.inc.php:1150 #, fuzzy msgid "Untracked tables" msgstr "Saltarse las tablas bloqueadas" -#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1153 +#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1149 #: tbl_structure.php:529 tbl_structure.php:531 #, fuzzy msgid "Track table" msgstr "Revisar la tabla" -#: db_tracking.php:200 libraries/messages.inc.php:1121 +#: db_tracking.php:200 libraries/messages.inc.php:1117 #, fuzzy msgid "Database Log" msgstr "Base de datos" -#: export.php:62 libraries/messages.inc.php:312 +#: export.php:62 libraries/messages.inc.php:308 msgid "Selected export type has to be saved in file!" msgstr "El formato de exportación seleccionado ¡debe grabarse en el archivo!" -#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:567 +#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:563 #, php-format msgid "Insufficient space to save the file %s." msgstr "No hay suficiente espacio para guardar el archivo %s." -#: export.php:294 libraries/messages.inc.php:324 +#: export.php:294 libraries/messages.inc.php:320 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -875,17 +875,17 @@ msgstr "" "El archivo %s ya existe en el servidor, cambie el nombre del archivo o " "revise la opción de sobreescritura." -#: export.php:298 export.php:302 libraries/messages.inc.php:562 +#: export.php:298 export.php:302 libraries/messages.inc.php:558 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "El servidor web no tiene permiso para guardar el archivo %s." -#: export.php:629 libraries/messages.inc.php:276 +#: export.php:629 libraries/messages.inc.php:272 #, php-format msgid "Dump has been saved to file %s." msgstr "Su archivo (MySQL dump) ha sido guardado con el nombre %s." -#: import.php:60 libraries/messages.inc.php:1202 +#: import.php:60 libraries/messages.inc.php:1198 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation%" @@ -895,14 +895,14 @@ msgstr "" "refiérase a %sdocumentation%s para hallar modos de superar esta limitante." #: import.php:279 import.php:332 libraries/File.class.php:849 -#: libraries/File.class.php:961 libraries/messages.inc.php:325 +#: libraries/File.class.php:961 libraries/messages.inc.php:321 msgid "File could not be read" msgstr "No fue posible leer el archivo" #: import.php:287 import.php:296 import.php:315 import.php:324 #: libraries/File.class.php:1031 libraries/File.class.php:1039 #: libraries/File.class.php:1055 libraries/File.class.php:1063 -#: libraries/messages.inc.php:1189 +#: libraries/messages.inc.php:1185 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -912,7 +912,7 @@ msgstr "" "Este tipo de compresión puede no estar implementado o quizá no ha sido " "habilitado en su archivo de configuración." -#: import.php:337 libraries/messages.inc.php:547 +#: import.php:337 libraries/messages.inc.php:543 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -923,31 +923,31 @@ msgstr "" "Por favor, lea el FAQ 1.16." #: import.php:372 libraries/display_import.lib.php:24 -#: libraries/messages.inc.php:125 +#: libraries/messages.inc.php:121 msgid "Could not load import plugins, please check your installation!" msgstr "" "No se pudieron cargar los plugins de importación, por favor revise su " "instalación" -#: import.php:397 libraries/messages.inc.php:102 +#: import.php:397 libraries/messages.inc.php:98 msgid "The bookmark has been deleted." msgstr "El favorito ha sido borrado." -#: import.php:401 libraries/messages.inc.php:879 +#: import.php:401 libraries/messages.inc.php:875 msgid "Showing bookmark" msgstr "Mostrando el favorito" -#: import.php:403 libraries/messages.inc.php:101 +#: import.php:403 libraries/messages.inc.php:97 #, php-format msgid "Bookmark %s created" msgstr "El favorito %s fue creado" -#: import.php:409 import.php:415 libraries/messages.inc.php:407 +#: import.php:409 import.php:415 libraries/messages.inc.php:403 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "La importación se ejecutó exitosamente, se ejecutaron %d consultas." -#: import.php:424 libraries/messages.inc.php:1107 +#: import.php:424 libraries/messages.inc.php:1103 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -955,11 +955,11 @@ msgstr "" "Se ha agotado el tiempo de ejecución del script; si desea completar la " "importación, por favor, reenvíe el mismo archivo y la importación continuará." -#: index.php:190 libraries/messages.inc.php:553 +#: index.php:190 libraries/messages.inc.php:549 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin funciona mejor con un navegador que reconoce frames." -#: js/messages.php:25 libraries/messages.inc.php:155 +#: js/messages.php:25 libraries/messages.inc.php:151 #: server_synchronize.php:345 server_synchronize.php:357 #: server_synchronize.php:373 server_synchronize.php:380 #: server_synchronize.php:739 server_synchronize.php:767 @@ -967,118 +967,118 @@ msgstr "phpMyAdmin funciona mejor con un navegador que reconoce frames." msgid "Click to select" msgstr "" -#: js/messages.php:26 libraries/messages.inc.php:156 +#: js/messages.php:26 libraries/messages.inc.php:152 msgid "Click to unselect" msgstr "" #: js/messages.php:27 libraries/import.lib.php:103 -#: libraries/messages.inc.php:550 sql.php:89 +#: libraries/messages.inc.php:546 sql.php:89 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Los enunciados \\\"DROP DATABASE\\\" están deshabilitados." -#: js/messages.php:30 libraries/messages.inc.php:270 +#: js/messages.php:30 libraries/messages.inc.php:266 #: libraries/mult_submits.inc.php:258 sql.php:188 msgid "Do you really want to " msgstr "Realmente desea " -#: js/messages.php:31 libraries/messages.inc.php:271 +#: js/messages.php:31 libraries/messages.inc.php:267 #: libraries/mult_submits.inc.php:258 sql.php:172 msgid "You are about to DESTROY a complete database!" msgstr "¡Está a punto de DESTRUIR una base de datos completa!" -#: js/messages.php:34 libraries/messages.inc.php:94 +#: js/messages.php:34 libraries/messages.inc.php:90 msgid "You are about to DISABLE a BLOB Repository!" msgstr "¡Está a punto de DESHABILITAR un repositorio BLOB!" -#: js/messages.php:35 libraries/messages.inc.php:91 +#: js/messages.php:35 libraries/messages.inc.php:87 #, php-format msgid "Are you sure you want to disable all BLOB references for database %s?" msgstr "" "Está seguro que quiere deshabilitar todas las referencias BLOB para la base " "de datos %s?" -#: js/messages.php:38 libraries/messages.inc.php:342 +#: js/messages.php:38 libraries/messages.inc.php:338 msgid "Missing value in the form!" msgstr "¡Falta un valor en el formulario!" -#: js/messages.php:39 libraries/messages.inc.php:570 +#: js/messages.php:39 libraries/messages.inc.php:566 msgid "This is not a number!" msgstr "¡Ésto no es un número!" -#: js/messages.php:42 libraries/messages.inc.php:380 +#: js/messages.php:42 libraries/messages.inc.php:376 msgid "The host name is empty!" msgstr "¡¡El nombre del servidor está vacío!!" -#: js/messages.php:43 libraries/messages.inc.php:1208 +#: js/messages.php:43 libraries/messages.inc.php:1204 msgid "The user name is empty!" msgstr "¡El nombre de usuario está vacío!" -#: js/messages.php:44 libraries/messages.inc.php:607 +#: js/messages.php:44 libraries/messages.inc.php:603 #: server_privileges.php:1197 user_password.php:70 msgid "The password is empty!" msgstr "¡La contraseña está vacía!" -#: js/messages.php:45 libraries/messages.inc.php:609 +#: js/messages.php:45 libraries/messages.inc.php:605 #: server_privileges.php:1195 user_password.php:73 msgid "The passwords aren't the same!" msgstr "¡Las contraseñas no coinciden!" -#: js/messages.php:49 libraries/messages.inc.php:123 pmd_general.php:342 +#: js/messages.php:49 libraries/messages.inc.php:119 pmd_general.php:342 #: pmd_general.php:379 msgid "Cancel" msgstr "Cancelar" -#: js/messages.php:52 libraries/messages.inc.php:514 +#: js/messages.php:52 libraries/messages.inc.php:510 msgid "Modifications have been saved" msgstr "Se han guardado las modificaciones" -#: js/messages.php:53 libraries/messages.inc.php:741 +#: js/messages.php:53 libraries/messages.inc.php:737 msgid "Relation deleted" msgstr "La relación fue eliminada" -#: js/messages.php:54 libraries/messages.inc.php:340 +#: js/messages.php:54 libraries/messages.inc.php:336 msgid "FOREIGN KEY relation added" msgstr "Se añadió una relación FOREIGN KEY" -#: js/messages.php:55 libraries/messages.inc.php:434 +#: js/messages.php:55 libraries/messages.inc.php:430 msgid "Internal relation added" msgstr "Se añadió la relación interna" -#: js/messages.php:56 libraries/messages.inc.php:299 +#: js/messages.php:56 libraries/messages.inc.php:295 msgid "Error: Relation not added." msgstr "Error: no se añadió la relación." -#: js/messages.php:57 libraries/messages.inc.php:300 +#: js/messages.php:57 libraries/messages.inc.php:296 msgid "Error: relation already exists." msgstr "Error: la relación ya existe." -#: js/messages.php:58 libraries/messages.inc.php:302 +#: js/messages.php:58 libraries/messages.inc.php:298 msgid "Error saving coordinates for Designer." msgstr "Error guardando las coordenadas para el Diseñador." -#: js/messages.php:59 libraries/messages.inc.php:351 +#: js/messages.php:59 libraries/messages.inc.php:347 #: libraries/relation.lib.php:107 msgid "General relation features" msgstr "Opciones de relación general" -#: js/messages.php:59 libraries/messages.inc.php:260 +#: js/messages.php:59 libraries/messages.inc.php:256 #: libraries/relation.lib.php:101 libraries/relation.lib.php:108 msgid "Disabled" msgstr "Deshabilitado" -#: js/messages.php:60 libraries/messages.inc.php:850 +#: js/messages.php:60 libraries/messages.inc.php:846 msgid "Select referenced key" msgstr "Seleccione la llave de referencia" -#: js/messages.php:61 libraries/messages.inc.php:848 +#: js/messages.php:61 libraries/messages.inc.php:844 msgid "Select Foreign Key" msgstr "Seleccione la llave extranjera (foreign key)" -#: js/messages.php:62 libraries/messages.inc.php:653 +#: js/messages.php:62 libraries/messages.inc.php:649 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 libraries/messages.inc.php:142 pmd_general.php:77 +#: js/messages.php:63 libraries/messages.inc.php:138 pmd_general.php:77 #: tbl_relation.php:548 msgid "Choose field to display" msgstr "Elegir el campo a mostrar" @@ -1098,9 +1098,9 @@ msgid "Prev" msgstr "Previo" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2332 -#: libraries/common.lib.php:2335 libraries/display_tbl.lib.php:338 -#: libraries/messages.inc.php:543 server_binlog.php:205 server_binlog.php:207 +#: js/messages.php:77 libraries/common.lib.php:2344 +#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: libraries/messages.inc.php:539 server_binlog.php:205 server_binlog.php:207 #: tbl_printview.php:424 tbl_structure.php:802 msgid "Next" msgstr "Próxima" @@ -1175,27 +1175,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1543 +#: js/messages.php:97 libraries/common.lib.php:1555 msgid "Jan" msgstr "Ene" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1545 +#: js/messages.php:99 libraries/common.lib.php:1557 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1547 +#: js/messages.php:101 libraries/common.lib.php:1559 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1549 +#: js/messages.php:103 libraries/common.lib.php:1561 msgid "Apr" msgstr "Abr" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1551 +#: js/messages.php:105 libraries/common.lib.php:1563 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1203,37 +1203,37 @@ msgid "May" msgstr "May" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1553 +#: js/messages.php:107 libraries/common.lib.php:1565 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1555 +#: js/messages.php:109 libraries/common.lib.php:1567 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1557 +#: js/messages.php:111 libraries/common.lib.php:1569 msgid "Aug" msgstr "Ago" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1559 +#: js/messages.php:113 libraries/common.lib.php:1571 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1561 +#: js/messages.php:115 libraries/common.lib.php:1573 msgid "Oct" msgstr "Oct" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1563 +#: js/messages.php:117 libraries/common.lib.php:1575 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1565 +#: js/messages.php:119 libraries/common.lib.php:1577 msgid "Dec" msgstr "Dic" @@ -1274,37 +1274,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1568 +#: js/messages.php:132 libraries/common.lib.php:1580 msgid "Sun" msgstr "Dom" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1570 +#: js/messages.php:134 libraries/common.lib.php:1582 msgid "Mon" msgstr "Lun" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1572 +#: js/messages.php:136 libraries/common.lib.php:1584 msgid "Tue" msgstr "Mar" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1574 +#: js/messages.php:138 libraries/common.lib.php:1586 msgid "Wed" msgstr "Mie" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1576 +#: js/messages.php:140 libraries/common.lib.php:1588 msgid "Thu" msgstr "Jue" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1578 +#: js/messages.php:142 libraries/common.lib.php:1590 msgid "Fri" msgstr "Vie" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1580 +#: js/messages.php:144 libraries/common.lib.php:1592 msgid "Sat" msgstr "Sab" @@ -1380,23 +1380,23 @@ msgstr "en uso" msgid "Second" msgstr "por segundo" -#: libraries/Config.class.php:1015 libraries/messages.inc.php:338 +#: libraries/Config.class.php:1015 libraries/messages.inc.php:334 msgid "Font size" msgstr "Tamaño del font" #: libraries/File.class.php:344 libraries/File.class.php:432 #: libraries/File.class.php:569 libraries/File.class.php:708 -#: libraries/messages.inc.php:1201 +#: libraries/messages.inc.php:1197 msgid "Unknown error in file upload." msgstr "Error desconocido durante la carga del archivo." -#: libraries/File.class.php:414 libraries/messages.inc.php:1198 +#: libraries/File.class.php:414 libraries/messages.inc.php:1194 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "El archivo que intentó cargar excede la directiva upload_max_filesize en php." "ini." -#: libraries/File.class.php:417 libraries/messages.inc.php:1197 +#: libraries/File.class.php:417 libraries/messages.inc.php:1193 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -1404,56 +1404,56 @@ msgstr "" "El archivo que intentó cargar excede la directiva MAX_FILE_SIZE especificada " "en el formulario HTML." -#: libraries/File.class.php:420 libraries/messages.inc.php:1200 +#: libraries/File.class.php:420 libraries/messages.inc.php:1196 msgid "The uploaded file was only partially uploaded." msgstr "El archivo que intentó cargar no alcanzó el 100%." -#: libraries/File.class.php:423 libraries/messages.inc.php:1199 +#: libraries/File.class.php:423 libraries/messages.inc.php:1195 msgid "Missing a temporary folder." msgstr "No existe una carpeta temporal." -#: libraries/File.class.php:426 libraries/messages.inc.php:1195 +#: libraries/File.class.php:426 libraries/messages.inc.php:1191 msgid "Failed to write file to disk." msgstr "No fue posible grabar el archivo al disco." -#: libraries/File.class.php:429 libraries/messages.inc.php:1196 +#: libraries/File.class.php:429 libraries/messages.inc.php:1192 msgid "File upload stopped by extension." msgstr "La carga del archivo fue detenida por extensión." -#: libraries/File.class.php:908 libraries/messages.inc.php:319 +#: libraries/File.class.php:908 libraries/messages.inc.php:315 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "Se detectó un error al trasladar el archivo cargado, ver FAQ 1.11" -#: libraries/Index.class.php:428 libraries/messages.inc.php:554 +#: libraries/Index.class.php:428 libraries/messages.inc.php:550 #: tbl_relation.php:529 msgid "No index defined!" msgstr "¡No se ha definido el índice!" -#: libraries/Index.class.php:433 libraries/messages.inc.php:411 +#: libraries/Index.class.php:433 libraries/messages.inc.php:407 #: server_databases.php:132 tbl_tracking.php:316 msgid "Indexes" msgstr "Índices" -#: libraries/Index.class.php:444 libraries/messages.inc.php:1186 +#: libraries/Index.class.php:444 libraries/messages.inc.php:1182 #: 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:475 tbl_tracking.php:322 msgid "Unique" msgstr "Único" -#: libraries/Index.class.php:445 libraries/messages.inc.php:596 +#: libraries/Index.class.php:445 libraries/messages.inc.php:592 #: tbl_tracking.php:323 msgid "Packed" msgstr "Empacado" -#: libraries/Index.class.php:447 libraries/messages.inc.php:131 +#: libraries/Index.class.php:447 libraries/messages.inc.php:127 #: tbl_tracking.php:325 msgid "Cardinality" msgstr "Cardinalidad" -#: libraries/Index.class.php:450 libraries/messages.inc.php:162 +#: libraries/Index.class.php:450 libraries/messages.inc.php:158 #: tbl_tracking.php:279 tbl_tracking.php:328 msgid "Comment" msgstr "Comentario" @@ -1461,22 +1461,22 @@ msgstr "Comentario" #: libraries/Index.class.php:466 libraries/common.lib.php:616 #: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:280 pdf_pages.php:280 +#: libraries/messages.inc.php:276 pdf_pages.php:280 #: setup/frames/index.inc.php:124 setup/lib/messages.inc.php:352 #: tbl_row_action.php:69 msgid "Edit" msgstr "Editar" -#: libraries/Index.class.php:472 libraries/messages.inc.php:666 +#: libraries/Index.class.php:472 libraries/messages.inc.php:662 msgid "The primary key has been dropped" msgstr "La clave primaria ha sido eliminada" -#: libraries/Index.class.php:476 libraries/messages.inc.php:413 +#: libraries/Index.class.php:476 libraries/messages.inc.php:409 #, php-format msgid "Index %s has been dropped" msgstr "El índice %s ha sido eliminado" -#: libraries/Index.class.php:576 libraries/messages.inc.php:412 +#: libraries/Index.class.php:576 libraries/messages.inc.php:408 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -1485,7 +1485,7 @@ msgstr "" "Los índices %1$s y %2$s parecen ser iguales y posiblemente se puede remover " "uno." -#: libraries/List_Database.class.php:431 libraries/messages.inc.php:218 +#: libraries/List_Database.class.php:431 libraries/messages.inc.php:214 #: libraries/server_links.inc.php:41 server_databases.php:88 #: server_privileges.php:1621 setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" @@ -1515,91 +1515,91 @@ msgid_plural "%1$d rows inserted." msgstr[0] "%1$d filas(s) fueron insertadas." msgstr[1] "%1$d filas(s) fueron insertadas." -#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:549 +#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:545 msgid "" "There is no detailed status information available for this storage engine." msgstr "" "No existe información detallada acerca de las condiciones en que se " "encuentra este motor de almacenamiento." -#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:291 +#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:287 #, php-format msgid "%s is available on this MySQL server." msgstr "%s está disponible en este servidor MySQL." -#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:292 +#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:288 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s ha sido deshabilitado para este motor de almacenamiento." -#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:294 +#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:290 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "" "Este servidor MySQL no es compatible con el motor de almacenamiento %s." -#: libraries/Table.class.php:1019 libraries/messages.inc.php:443 +#: libraries/Table.class.php:1019 libraries/messages.inc.php:439 msgid "Invalid database" msgstr "La base de datos no es válida" -#: libraries/Table.class.php:1033 libraries/messages.inc.php:450 +#: libraries/Table.class.php:1033 libraries/messages.inc.php:446 #: tbl_get_field.php:26 msgid "Invalid table name" msgstr "El nombre de la tabla no es válido" -#: libraries/Table.class.php:1048 libraries/messages.inc.php:301 +#: libraries/Table.class.php:1048 libraries/messages.inc.php:297 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "Error al cambiar el nombre de la tabla %1$s a %2$s" -#: libraries/Table.class.php:1132 libraries/messages.inc.php:754 +#: libraries/Table.class.php:1132 libraries/messages.inc.php:750 #, php-format msgid "Table %s has been renamed to %s" msgstr "Tabla %s ahora se llama %s" -#: libraries/Theme.class.php:162 libraries/messages.inc.php:1099 +#: libraries/Theme.class.php:162 libraries/messages.inc.php:1095 #, php-format msgid "No valid image path for theme %s found!" msgstr "" "¡No se halló la ruta de imágenes para la plantilla de interfaz (theme) %s!" -#: libraries/Theme.class.php:384 libraries/messages.inc.php:1097 +#: libraries/Theme.class.php:384 libraries/messages.inc.php:1093 msgid "No preview available." msgstr "No existe una previsualización disponible." -#: libraries/Theme.class.php:387 libraries/messages.inc.php:1089 +#: libraries/Theme.class.php:387 libraries/messages.inc.php:1085 msgid "take it" msgstr "tómelo" -#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1096 +#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1092 #, php-format msgid "Default theme %s not found!" msgstr "¡No se halló la plantilla de interfaz (theme) predeterminada %s!" -#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1098 +#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1094 #, php-format msgid "Theme %s not found!" msgstr "¡No se halló la plantilla de interfaz (theme) %s!" -#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1100 +#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1096 #, php-format msgid "Theme path not found for theme %s!" msgstr "" "¡No se halló la ruta de la plantilla de interfaz (theme) para la plantilla %" "s!" -#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1101 +#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1097 #: test/theme.php:161 themes.php:21 themes.php:41 msgid "Theme / Style" msgstr "Tema / Estilo" -#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:172 +#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:168 msgid "Cannot connect: invalid settings." msgstr "No se estableció la conexión: los parámetros están incorrectos." #: libraries/auth/config.auth.lib.php:92 #: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65 -#: libraries/messages.inc.php:1238 test/theme.php:152 +#: libraries/messages.inc.php:1234 test/theme.php:152 #, php-format msgid "Welcome to %s" msgstr "Bienvenido a %s" @@ -1625,53 +1625,53 @@ msgstr "" "config.inc.php y asegurarse que corresponden con la información provista por " "el administrador del servidor MySQL." -#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:488 +#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:484 msgid "Log in" msgstr "Iniciar sesión" #: libraries/auth/cookie.auth.lib.php:246 -#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:659 +#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:655 #: libraries/navigation_header.inc.php:93 #: libraries/navigation_header.inc.php:95 msgid "phpMyAdmin documentation" msgstr "Documentación de phpMyAdmin" #: libraries/auth/cookie.auth.lib.php:258 -#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:492 +#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:488 msgid "You can enter hostname/IP address and port separated by space." msgstr "" "Puede escribir el nombre del proveedor de servicios/dirección IP y el " "puerto, separado por un espacio." -#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:493 +#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:489 msgid "Server:" msgstr "Servidor" -#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:494 +#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:490 msgid "Username:" msgstr "Usuario:" -#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:491 +#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:487 msgid "Password:" msgstr "Contraseña:" -#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:854 +#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:850 msgid "Server Choice" msgstr "Elección del servidor" #: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 -#: libraries/messages.inc.php:177 +#: libraries/messages.inc.php:173 msgid "Cookies must be enabled past this point." msgstr "Las \"cookies\" deben estar habilitadas." #: libraries/auth/cookie.auth.lib.php:671 -#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:489 +#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:485 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" #: libraries/auth/cookie.auth.lib.php:675 -#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:544 +#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:540 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" @@ -1680,54 +1680,54 @@ msgstr "" #: libraries/auth/cookie.auth.lib.php:685 #: libraries/auth/cookie.auth.lib.php:687 -#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:126 +#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:122 msgid "Cannot log in to the MySQL server" msgstr "El servidor MySQL no autorizó su ingreso" -#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1245 +#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1241 msgid "Wrong username/password. Access denied." msgstr "" "El nombre de usuario o la contraseña es incorrecto. El acceso fue denegado." #: libraries/auth/swekey/swekey.auth.lib.php:118 -#: libraries/messages.inc.php:1057 +#: libraries/messages.inc.php:1053 #, php-format msgid "File %s does not contain any key id" msgstr "El archivo %s no contiene ninguna Id de llave" #: libraries/auth/swekey/swekey.auth.lib.php:157 #: libraries/auth/swekey/swekey.auth.lib.php:180 -#: libraries/messages.inc.php:1056 +#: libraries/messages.inc.php:1052 msgid "Hardware authentication failed" msgstr "La autenticación de hardware fracasó" #: libraries/auth/swekey/swekey.auth.lib.php:166 -#: libraries/messages.inc.php:1058 +#: libraries/messages.inc.php:1054 msgid "No valid authentication key plugged" msgstr "No se ha conectado una llave de autenticación válida" #: libraries/auth/swekey/swekey.auth.lib.php:202 -#: libraries/messages.inc.php:1055 +#: libraries/messages.inc.php:1051 msgid "Authenticating..." msgstr "Autenticando..." -#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1230 +#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1226 msgid "View image" msgstr "Ver imagen" -#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:652 +#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:648 msgid "Play audio" msgstr "Tocar audio" -#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1232 +#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1228 msgid "View video" msgstr "Ver vídeo" -#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:269 +#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:265 msgid "Download file" msgstr "Descargar archivo" -#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:128 +#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:124 msgid "" "Couldn't load the iconv or recode extension needed for charset conversion. " "Either configure PHP to enable these extensions or disable charset " @@ -1740,7 +1740,7 @@ msgstr "" #: libraries/charset_conversion.lib.php:79 #: libraries/charset_conversion.lib.php:90 -#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:130 +#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:126 msgid "" "Couldn't use the iconv, libiconv, or recode_string functions, although the " "necessary extensions appear to be loaded. Check your PHP configuration." @@ -1748,7 +1748,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/messages.inc.php:170 +#: libraries/common.inc.php:583 libraries/messages.inc.php:166 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!" @@ -1784,7 +1784,7 @@ msgstr "" msgid "Invalid server index: %s" msgstr "No es válido el índice del servidor: \"%s\"" -#: libraries/common.inc.php:636 libraries/messages.inc.php:448 +#: libraries/common.inc.php:636 libraries/messages.inc.php:444 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" @@ -1792,16 +1792,16 @@ msgstr "" "configuración." #: libraries/common.inc.php:645 libraries/header.inc.php:96 -#: libraries/messages.inc.php:856 libraries/select_server.lib.php:41 +#: libraries/messages.inc.php:852 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/messages.inc.php:437 +#: libraries/common.inc.php:823 libraries/messages.inc.php:433 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.lib.php:147 libraries/messages.inc.php:499 +#: libraries/common.lib.php:147 libraries/messages.inc.php:495 #, php-format msgid "Max: %s%s" msgstr "Tamaño máximo: %s%s" @@ -1821,7 +1821,7 @@ msgstr "es" #: libraries/common.lib.php:428 libraries/common.lib.php:430 #: libraries/common.lib.php:432 libraries/common.lib.php:448 #: libraries/common.lib.php:450 libraries/dbg/setup.php:25 -#: libraries/display_export.lib.php:164 libraries/messages.inc.php:267 +#: libraries/display_export.lib.php:164 libraries/messages.inc.php:263 #: libraries/relation.lib.php:97 libraries/sql_query_form.lib.php:451 #: libraries/sql_query_form.lib.php:454 main.php:229 pdf_pages.php:37 #: pdf_pages.php:43 pdf_pages.php:49 pdf_pages.php:54 @@ -1831,55 +1831,55 @@ msgstr "Documentación" #: libraries/common.lib.php:581 libraries/core.lib.php:234 #: libraries/core.lib.php:263 libraries/import.lib.php:134 -#: libraries/messages.inc.php:297 pdf_schema.php:32 pdf_schema.php:232 +#: libraries/messages.inc.php:293 pdf_schema.php:32 pdf_schema.php:232 #: tbl_change.php:1027 tbl_operations.php:213 tbl_relation.php:290 #: view_operations.php:62 msgid "Error" msgstr "Error" #: libraries/common.lib.php:595 libraries/header_printview.inc.php:61 -#: libraries/messages.inc.php:1023 server_processlist.php:60 +#: libraries/messages.inc.php:1019 server_processlist.php:60 #: server_status.php:247 msgid "SQL query" msgstr "consulta SQL" -#: libraries/common.lib.php:634 libraries/messages.inc.php:538 +#: libraries/common.lib.php:634 libraries/messages.inc.php:534 msgid "MySQL said: " msgstr "MySQL ha dicho: " -#: libraries/common.lib.php:667 libraries/messages.inc.php:76 +#: libraries/common.lib.php:667 libraries/messages.inc.php:72 #: pdf_schema.php:241 user_password.php:115 msgid "Back" msgstr "Volver" -#: libraries/common.lib.php:1177 libraries/messages.inc.php:309 +#: libraries/common.lib.php:1177 libraries/messages.inc.php:305 #: setup/lib/messages.inc.php:353 msgid "Explain SQL" msgstr "Explicar el SQL" -#: libraries/common.lib.php:1180 libraries/messages.inc.php:551 +#: libraries/common.lib.php:1180 libraries/messages.inc.php:547 msgid "Skip Explain SQL" msgstr "Salir de la explicación del SQL" -#: libraries/common.lib.php:1212 libraries/messages.inc.php:563 +#: libraries/common.lib.php:1212 libraries/messages.inc.php:559 msgid "Without PHP Code" msgstr "Sin código PHP" -#: libraries/common.lib.php:1215 libraries/messages.inc.php:649 +#: libraries/common.lib.php:1215 libraries/messages.inc.php:645 #: setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "Crear código PHP" -#: libraries/common.lib.php:1233 libraries/messages.inc.php:737 +#: libraries/common.lib.php:1233 libraries/messages.inc.php:733 #: server_status.php:341 setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "Actualizar" -#: libraries/common.lib.php:1242 libraries/messages.inc.php:575 +#: libraries/common.lib.php:1242 libraries/messages.inc.php:571 msgid "Skip Validate SQL" msgstr "Salir de la validación del SQL" -#: libraries/common.lib.php:1245 libraries/messages.inc.php:1220 +#: libraries/common.lib.php:1245 libraries/messages.inc.php:1216 #: setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "Validar el SQL" @@ -1895,11 +1895,11 @@ msgid "Inline" msgstr "Motores" #: libraries/common.lib.php:1332 libraries/common.lib.php:1347 -#: libraries/messages.inc.php:713 +#: libraries/messages.inc.php:709 msgid "Profiling" msgstr "Perfil/Perfilamiento" -#: libraries/common.lib.php:1351 libraries/messages.inc.php:1108 +#: libraries/common.lib.php:1351 libraries/messages.inc.php:1104 #: libraries/tbl_triggers.lib.php:28 server_processlist.php:58 msgid "Time" msgstr "Tiempo" @@ -1933,46 +1933,56 @@ msgstr "PB" msgid "EiB" msgstr "EB" +#. l10n: Thousands separator +#: libraries/common.lib.php:1417 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: libraries/common.lib.php:1419 +msgid "." +msgstr "." + #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1584 +#: libraries/common.lib.php:1596 #: libraries/transformations/text_plain__dateformat.inc.php:28 msgid "%B %d, %Y at %I:%M %p" msgstr "%d-%m-%Y a las %H:%M:%S" -#: libraries/common.lib.php:1886 +#: libraries/common.lib.php:1898 #, 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:2301 libraries/common.lib.php:2304 -#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:664 +#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:660 #: server_status.php:608 msgid "Begin" msgstr "Empezar" -#: libraries/common.lib.php:2302 libraries/common.lib.php:2305 -#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:665 +#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:661 #: server_binlog.php:168 server_binlog.php:170 msgid "Previous" msgstr "Previo" -#: libraries/common.lib.php:2333 libraries/common.lib.php:2336 -#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:289 +#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:285 msgid "End" msgstr "Fin" -#: libraries/common.lib.php:2409 libraries/messages.inc.php:455 +#: libraries/common.lib.php:2421 libraries/messages.inc.php:451 #, php-format msgid "Jump to database "%s"." msgstr "Saltar a la base de datos "%s"." -#: libraries/common.lib.php:2429 libraries/messages.inc.php:461 +#: libraries/common.lib.php:2441 libraries/messages.inc.php:457 #, 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/core.lib.php:286 libraries/dbg/setup.php:22 -#: libraries/messages.inc.php:127 +#: libraries/messages.inc.php:123 #, php-format msgid "" "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " @@ -1982,118 +1992,118 @@ msgstr "" "PHP." #: libraries/db_events.inc.php:20 libraries/db_events.inc.php:22 -#: libraries/export/sql.php:415 libraries/messages.inc.php:306 +#: libraries/export/sql.php:415 libraries/messages.inc.php:302 msgid "Events" msgstr "Eventos" #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 -#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:541 +#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:537 #: libraries/tbl_triggers.lib.php:27 setup/frames/index.inc.php:112 msgid "Name" msgstr "Nombre" -#: libraries/db_links.inc.php:45 libraries/messages.inc.php:216 +#: libraries/db_links.inc.php:45 libraries/messages.inc.php:212 #, php-format msgid "Database %s has been dropped." msgstr "La base de datos %s ha sido eliminada." #: libraries/db_links.inc.php:57 libraries/db_links.inc.php:58 -#: libraries/db_links.inc.php:59 libraries/messages.inc.php:234 +#: libraries/db_links.inc.php:59 libraries/messages.inc.php:230 msgid "Database seems to be empty!" msgstr "La base de datos, ¡parece estar vacía!" -#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1025 +#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1021 #: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60 #: querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1152 +#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1148 #: libraries/tbl_links.inc.php:69 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:86 libraries/messages.inc.php:719 +#: libraries/db_links.inc.php:86 libraries/messages.inc.php:715 msgid "Query" msgstr "Generar una consulta" -#: libraries/db_links.inc.php:91 libraries/messages.inc.php:253 +#: libraries/db_links.inc.php:91 libraries/messages.inc.php:249 msgid "Designer" msgstr "Diseñador" -#: libraries/db_links.inc.php:98 libraries/messages.inc.php:397 +#: libraries/db_links.inc.php:98 libraries/messages.inc.php:393 #: libraries/server_links.inc.php:88 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:104 libraries/messages.inc.php:587 +#: libraries/db_links.inc.php:104 libraries/messages.inc.php:583 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" msgstr "Operaciones" -#: libraries/db_links.inc.php:111 libraries/messages.inc.php:709 +#: libraries/db_links.inc.php:111 libraries/messages.inc.php:705 #: libraries/server_links.inc.php:66 server_privileges.php:72 #: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117 msgid "Privileges" msgstr "Privilegios" #: libraries/db_routines.inc.php:30 libraries/db_routines.inc.php:32 -#: libraries/messages.inc.php:812 +#: libraries/messages.inc.php:808 msgid "Routines" msgstr "Rutinas" -#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:811 +#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:807 msgid "Return type" msgstr "Muestre el tipo" #: libraries/db_structure.lib.php:57 libraries/display_tbl.lib.php:1848 -#: libraries/messages.inc.php:65 +#: libraries/messages.inc.php:61 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "Podría ser aproximado. Léase la FAQ 3.11" -#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:593 +#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:589 #: server_databases.php:142 tbl_printview.php:336 tbl_structure.php:683 msgid "Overhead" msgstr "Residuo a depurar" #: libraries/dbi/mysql.dbi.lib.php:112 libraries/dbi/mysqli.dbi.lib.php:124 -#: libraries/messages.inc.php:176 +#: libraries/messages.inc.php:172 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "La conexión para controluser, como está definida en su configuración, " "fracasó." #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 -#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:855 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:851 msgid "The server is not responding" msgstr "El servidor no está respondiendo" #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:1010 +#: libraries/messages.inc.php:1006 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 libraries/messages.inc.php:255 +#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:251 #: tbl_structure.php:609 msgid "Details..." msgstr "Detalles..." -#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:143 +#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:139 #: main.php:91 user_password.php:111 user_password.php:129 msgid "Change password" msgstr "Cambio de contraseña" -#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:561 +#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:557 #: libraries/replication_gui.lib.php:341 server_privileges.php:768 msgid "No Password" msgstr "Sin contraseña" -#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:610 +#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:606 #: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60 #: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335 #: libraries/replication_gui.lib.php:345 server_privileges.php:757 @@ -2102,13 +2112,13 @@ msgstr "Sin contraseña" msgid "Password" msgstr "Contraseña" -#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:806 +#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:802 #: libraries/replication_gui.lib.php:349 libraries/replication_gui.lib.php:352 #: server_privileges.php:776 server_privileges.php:779 msgid "Re-type" msgstr "Debe volver a escribir" -#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:608 +#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:604 msgid "Password Hashing" msgstr "Hashing de la contraseña" @@ -2118,91 +2128,91 @@ msgstr "Hashing de la contraseña" msgid "MySQL 4.0 compatible" msgstr "Compatible con MySQL 4.0" -#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:353 +#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:349 #: libraries/replication_gui.lib.php:356 server_privileges.php:783 msgid "Generate Password" msgstr "Generar la contraseña" -#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:352 +#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:348 #: libraries/replication_gui.lib.php:359 server_privileges.php:786 msgid "Generate" msgstr "Generar" #: libraries/display_create_database.lib.php:22 -#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:189 +#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:185 msgid "Create new database" msgstr "Crear nueva base de datos" -#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:185 +#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:181 msgid "Create" msgstr "Crear" -#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:564 +#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:560 #: server_privileges.php:74 server_privileges.php:1388 #: server_replication.php:35 msgid "No Privileges" msgstr "Sin privilegios" -#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:445 +#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:441 msgid "Table must have at least one field." msgstr "La tabla debe tener al menos un campo." -#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:190 +#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:186 #, php-format msgid "Create table on database %s" msgstr "Crear nueva tabla en la base de datos %s" -#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:577 +#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:573 msgid "Number of fields" msgstr "Número de campos" -#: libraries/display_export.lib.php:42 libraries/messages.inc.php:124 +#: libraries/display_export.lib.php:42 libraries/messages.inc.php:120 msgid "Could not load export plugins, please check your installation!" msgstr "" "No se cargaron los plugins de exportación. Por favor, ¡revise su " "instalación!" -#: libraries/display_export.lib.php:107 libraries/messages.inc.php:277 +#: libraries/display_export.lib.php:107 libraries/messages.inc.php:273 #, php-format msgid "Dump %s row(s) starting at record # %s" msgstr "Volcar %s filas empezando por la fila %s." -#: libraries/display_export.lib.php:115 libraries/messages.inc.php:274 +#: libraries/display_export.lib.php:115 libraries/messages.inc.php:270 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:125 libraries/messages.inc.php:852 +#: libraries/display_export.lib.php:125 libraries/messages.inc.php:848 #: setup/lib/messages.inc.php:82 msgid "Save as file" msgstr "Enviar (genera un archivo descargable)" -#: libraries/display_export.lib.php:134 libraries/messages.inc.php:828 +#: libraries/display_export.lib.php:134 libraries/messages.inc.php:824 #, php-format msgid "Save on server in %s directory" msgstr "Guardar en el servidor, en el directorio %s " -#: libraries/display_export.lib.php:142 libraries/messages.inc.php:594 +#: libraries/display_export.lib.php:142 libraries/messages.inc.php:590 #: setup/lib/messages.inc.php:90 msgid "Overwrite existing file(s)" msgstr "Sobreescribir el(los) archivo(s) existente(s)" -#: libraries/display_export.lib.php:148 libraries/messages.inc.php:330 +#: libraries/display_export.lib.php:148 libraries/messages.inc.php:326 msgid "File name template" msgstr "Plantilla del nombre del archivo" -#: libraries/display_export.lib.php:152 libraries/messages.inc.php:327 +#: libraries/display_export.lib.php:152 libraries/messages.inc.php:323 msgid "server name" msgstr "nombre del servidor" -#: libraries/display_export.lib.php:155 libraries/messages.inc.php:326 +#: libraries/display_export.lib.php:155 libraries/messages.inc.php:322 msgid "database name" msgstr "nombre de la base de datos" -#: libraries/display_export.lib.php:158 libraries/messages.inc.php:328 +#: libraries/display_export.lib.php:158 libraries/messages.inc.php:324 msgid "table name" msgstr "nombre de la tabla" -#: libraries/display_export.lib.php:162 libraries/messages.inc.php:329 +#: libraries/display_export.lib.php:162 libraries/messages.inc.php:325 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2214,24 +2224,24 @@ msgstr "" "sucederán las siguientes transformaciones: %3$s. El texto restante se " "mantendrá como está." -#: libraries/display_export.lib.php:202 libraries/messages.inc.php:331 +#: libraries/display_export.lib.php:202 libraries/messages.inc.php:327 msgid "remember template" msgstr "recordar la plantilla" #: libraries/display_export.lib.php:210 libraries/display_import.lib.php:178 -#: libraries/display_import.lib.php:191 libraries/messages.inc.php:145 +#: libraries/display_import.lib.php:191 libraries/messages.inc.php:141 #: libraries/sql_query_form.lib.php:549 msgid "Character set of the file:" msgstr "Juego de caracteres del archivo:" -#: libraries/display_export.lib.php:235 libraries/messages.inc.php:166 +#: libraries/display_export.lib.php:235 libraries/messages.inc.php:162 #: setup/lib/messages.inc.php:84 msgid "Compression" 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/messages.inc.php:558 +#: libraries/export/sql.php:868 libraries/messages.inc.php:554 #: libraries/tbl_properties.inc.php:575 server_privileges.php:1836 #: server_processlist.php:75 msgid "None" @@ -2255,63 +2265,63 @@ msgstr "\"Comprimido con gzip\"" msgid "bzipped" msgstr "\"Comprimido con bzip\"" -#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1018 +#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1014 msgid "SQL compatibility mode" msgstr "Modalidad compatible con SQL" -#: libraries/display_import.lib.php:67 libraries/messages.inc.php:398 +#: libraries/display_import.lib.php:67 libraries/messages.inc.php:394 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " "browsers." msgstr "" -#: libraries/display_import.lib.php:77 libraries/messages.inc.php:406 +#: libraries/display_import.lib.php:77 libraries/messages.inc.php:402 msgid "The file is being processed, please be patient." msgstr "" -#: libraries/display_import.lib.php:99 libraries/messages.inc.php:408 +#: libraries/display_import.lib.php:99 libraries/messages.inc.php:404 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." msgstr "" -#: libraries/display_import.lib.php:126 libraries/messages.inc.php:333 +#: libraries/display_import.lib.php:126 libraries/messages.inc.php:329 msgid "File to import" msgstr "Archivo a importar" -#: libraries/display_import.lib.php:137 libraries/messages.inc.php:486 +#: libraries/display_import.lib.php:137 libraries/messages.inc.php:482 #: libraries/sql_query_form.lib.php:524 msgid "Location of the text file" msgstr "Localización del archivo de texto" -#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1203 +#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1199 msgid "File uploads are not allowed on this server." msgstr "No está permitido subir archivos a este servidor." -#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1235 +#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1231 #: libraries/sql_query_form.lib.php:533 tbl_change.php:1028 msgid "The directory you set for upload work cannot be reached" msgstr "" "No está disponible el directorio que usted habilitó para subir las tareas" -#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1236 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1232 #: libraries/sql_query_form.lib.php:536 tbl_change.php:1031 msgid "web server upload directory" msgstr "directorio en el servidor web para subir los archivos" -#: libraries/display_import.lib.php:212 libraries/messages.inc.php:167 +#: libraries/display_import.lib.php:212 libraries/messages.inc.php:163 #, php-format msgid "Imported file compression will be automatically detected from: %s" msgstr "" "La compresión escogida para el archivo a importar se detectará " "automáticamente de: %s" -#: libraries/display_import.lib.php:219 libraries/messages.inc.php:600 +#: libraries/display_import.lib.php:219 libraries/messages.inc.php:596 msgid "Partial import" msgstr "Importación parcial" -#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1105 +#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1101 #, php-format msgid "" "Previous import timed out, after resubmitting will continue from position %d." @@ -2319,7 +2329,7 @@ msgstr "" "Se agotó el tiempo de ejecución en la importación previa; si lo reenvía " "continuará desde la posición %d." -#: libraries/display_import.lib.php:232 libraries/messages.inc.php:51 +#: libraries/display_import.lib.php:232 libraries/messages.inc.php:47 msgid "" "Allow the interruption of an import in case the script detects it is close " "to the PHP timeout limit. This might be good way to import large files, " @@ -2330,179 +2340,179 @@ msgstr "" "método para importar archivos grandes; sin embargo, puede dañar las " "transacciones." -#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1004 +#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1000 #: setup/lib/messages.inc.php:161 msgid "Number of records (queries) to skip from start" msgstr "Número de registros (consultas) a saltarse desde el inicio" -#: libraries/display_import.lib.php:255 libraries/messages.inc.php:396 +#: libraries/display_import.lib.php:255 libraries/messages.inc.php:392 #: setup/lib/messages.inc.php:160 msgid "Format of imported file" msgstr "Formato del archivo importado" #: libraries/display_select_lang.lib.php:45 -#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:465 +#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:461 #: setup/frames/index.inc.php:70 msgid "Language" msgstr "Idioma" -#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:447 +#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:443 #, php-format msgid "%d is not valid row number." msgstr "%d no es un número de fila válido." -#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:814 +#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:810 msgid "row(s) starting from record #" msgstr "filas empezando de" -#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:817 +#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:813 msgid "horizontal" msgstr "horizontal" -#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:816 +#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:812 msgid "horizontal (rotated headers)" msgstr "horizontal (encabezados rotados)" -#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:819 +#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:815 msgid "vertical" msgstr "vertical" -#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:818 +#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:814 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "en modo %s y repetir los encabezados cada %s celdas" -#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:495 +#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:491 msgid "This operation could take a long time. Proceed anyway?" msgstr "Esta operación podría tomar algún tiempo. ¿Proceder de todas formas?" -#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1012 +#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1008 msgid "Sort by key" msgstr "Organizar según la clave" #: libraries/display_tbl.lib.php:555 libraries/import.lib.php:1082 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:591 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:587 #: tbl_select.php:267 tbl_structure.php:754 msgid "Options" msgstr "Opciones" #: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:570 -#: libraries/messages.inc.php:601 +#: libraries/messages.inc.php:597 msgid "Partial Texts" msgstr "Textos parciales" #: libraries/display_tbl.lib.php:561 libraries/display_tbl.lib.php:574 -#: libraries/messages.inc.php:346 +#: libraries/messages.inc.php:342 msgid "Full Texts" msgstr "Textos completos" -#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:739 +#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:735 msgid "Relational key" msgstr "Llave relacional" -#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:738 +#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:734 msgid "Relational display field" msgstr "Campo que muestra las relaciones" -#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:872 +#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:868 msgid "Show binary contents" msgstr "" -#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:873 +#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:869 msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:871 +#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:867 msgid "Show binary contents as HEX" msgstr "" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:375 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:371 #: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320 msgid "Hide" msgstr "Ocultar" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:508 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:504 #: libraries/tbl_properties.inc.php:144 transformation_overview.php:47 msgid "Browser transformation" msgstr "Transformación del navegador" #: libraries/display_tbl.lib.php:1126 libraries/display_tbl.lib.php:1130 -#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:308 +#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:304 msgid "Execute bookmarked query" msgstr "Ejecute la consulta marcada previamente" #: libraries/display_tbl.lib.php:1145 libraries/display_tbl.lib.php:1157 -#: libraries/messages.inc.php:244 +#: libraries/messages.inc.php:240 msgid "The row has been deleted" msgstr "La fila se ha borrado" #: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056 -#: libraries/messages.inc.php:460 server_processlist.php:71 +#: libraries/messages.inc.php:456 server_processlist.php:71 #: tbl_row_action.php:64 msgid "Kill" msgstr "Matar el proceso" -#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:849 +#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:845 msgid "in query" msgstr "en la consulta" -#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:881 +#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:877 msgid "Showing rows" msgstr "Mostrando registros " -#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1113 +#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1109 msgid "total" msgstr "total" -#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:727 +#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:723 #: sql.php:524 #, php-format msgid "Query took %01.4f sec" msgstr "La consulta tardó %01.4f seg" -#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:135 +#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:131 #: 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:471 msgid "Change" msgstr "Cambiar" -#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:724 +#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:720 msgid "Query results operations" msgstr "Operaciones sobre los resultados de la consulta" -#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:671 +#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:667 msgid "Print view (with full texts)" msgstr "Previsualización para imprimir (documento completo)" -#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:482 +#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:478 msgid "Link not found" msgstr "No se encontró el enlace" -#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1224 +#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1220 #: main.php:228 msgid "Version information" msgstr "Acerca de esta versión" -#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:423 +#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:419 msgid "Data home directory" msgstr "Directorio raíz de los datos" -#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:424 +#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:420 msgid "The common part of the directory path for all InnoDB data files." msgstr "" "La parte constante de la ruta del directorio para todos los archivos de " "datos InnoDB." -#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:422 +#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:418 msgid "Data files" msgstr "Archivos de datos" -#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:418 +#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:414 msgid "Autoextend increment" msgstr "Incremente el valor AUTOEXTEND" -#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:419 +#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:415 msgid "" " The increment size for extending the size of an autoextending tablespace " "when it becomes full." @@ -2510,11 +2520,11 @@ msgstr "" "El tamaño a incrementar para que se extienda el ancho de una tabla capaz de " "autoextenderse cuando se llena." -#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:420 +#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:416 msgid "Buffer pool size" msgstr "Tamaño de la memoria (búfer) de tránsito común" -#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:421 +#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:417 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." @@ -2522,87 +2532,87 @@ msgstr "" "El tamaño de la memoria intermedia (búfer) usado por InnoDB para almacenar, " "en el cache, los datos e índices de sus tablas." -#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:112 +#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:108 msgid "Buffer Pool" msgstr "Total de memoria del búfer" -#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:426 +#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:422 #: server_status.php:306 msgid "InnoDB Status" msgstr "Estado del InnoDB" -#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:113 +#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:109 msgid "Buffer Pool Usage" msgstr "Total de memoria del búfer consumido" -#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1114 +#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1110 #: server_databases.php:137 server_databases.php:305 server_status.php:414 #: server_status.php:475 server_status.php:496 tbl_printview.php:351 #: tbl_structure.php:697 msgid "Total" msgstr "Total" -#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:425 +#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:421 msgid "pages" msgstr "páginas" -#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:343 +#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:339 msgid "Free pages" msgstr "Páginas libres" -#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:259 +#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:255 msgid "Dirty pages" msgstr "Páginas que requieren ser depuradas" -#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:230 +#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:226 msgid "Pages containing data" msgstr "Páginas que contienen datos" -#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:598 +#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:594 msgid "Pages to be flushed" msgstr "Páginas que serán eliminadas" -#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:119 +#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:115 msgid "Busy pages" msgstr "Páginas activas" -#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:467 +#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:463 msgid "Latched pages" msgstr "Páginas vinculadas" -#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:111 +#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:107 msgid "Buffer Pool Activity" msgstr "Actividad de la memoria (búfer) de tránsito común" -#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:731 +#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:727 msgid "Read requests" msgstr "Lea las solicitudes" -#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1244 +#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1240 msgid "Write requests" msgstr "Escribir las solicitudes" -#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:115 +#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:111 msgid "Read misses" msgstr "Leer los fallos" -#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:117 +#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:113 msgid "Write waits" msgstr "Escribir las esperas" -#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:114 +#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:110 msgid "Read misses in %" msgstr "Leer los fallos en %" -#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:116 +#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:112 msgid "Write waits in %" msgstr "Escribir las esperas en %" -#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:522 +#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:518 msgid "Data pointer size" msgstr "Tamaño del puntero de datos" -#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:523 +#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:519 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." @@ -2611,11 +2621,11 @@ msgstr "" "CREATE TABLE para las tablas MyISAM cuando no se ha especificado la opción " "MAX_ROWS." -#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:528 +#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:524 msgid "Automatic recovery mode" msgstr "Modalidad de recuperación automática" -#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:529 +#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:525 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." @@ -2624,12 +2634,12 @@ msgstr "" "catastróficamente, como fuera determinado mediante la opción al arranque del " "servidor --myisam-recover." -#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:527 +#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:523 msgid "Maximum size for temporary sort files" msgstr "" "Tamaño máximo para los archivos temporales generados durante la organización" -#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:526 +#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:522 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " @@ -2639,12 +2649,12 @@ msgstr "" "genera un nuevo índice MyISAM del archivo temporal (durante REPAIR TABLE, " "ALTER TABLE, o LOAD DATA INFILE)." -#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:525 +#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:521 msgid "Maximum size for temporary files on index creation" msgstr "" "Tamaño máximo de los archivos temporales durante la generación del índice" -#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:524 +#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:520 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " @@ -2654,11 +2664,11 @@ msgstr "" "fuese mayor que el uso del key cache por la cantidad especificada aquí, " "preferir el método key cache." -#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:531 +#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:527 msgid "Repair threads" msgstr "Reparar los procesos" -#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:530 +#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:526 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." @@ -2667,11 +2677,11 @@ msgstr "" "tablas MyISAM (cada índice con su propio proceso) durante el proceso \\" "\"Reparar mediante organización\\\"." -#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:533 +#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:529 msgid "Sort buffer size" msgstr "Organizar el tamaño del búfer de memoria" -#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:532 +#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:528 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." @@ -2680,11 +2690,11 @@ msgstr "" "durante la operación REPAIR TABLE o cuando se generan índices con CREATE " "INDEX o ALTER TABLE." -#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:620 +#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:616 msgid "Index cache size" msgstr "Tamaño del caché del índice" -#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:619 +#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:615 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." @@ -2693,11 +2703,11 @@ msgstr "" "predeterminado es 32MB. La memoria asignada aquí se usa solamente para el " "caché de las páginas índice." -#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:630 +#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:626 msgid "Record cache size" msgstr "Tamaño del caché del registro" -#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:629 +#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:625 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " @@ -2708,11 +2718,11 @@ msgstr "" "memoria se utiliza para el caché de cambios a los archivos de datos handle (." "xtd) y apuntador de la fila (.xtr)." -#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:624 +#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:620 msgid "Log cache size" msgstr "Tamaño del caché de la bitácora" -#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:623 +#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:619 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." @@ -2721,11 +2731,11 @@ msgstr "" "utilizado para hacer el caché de los datos de la bitácora de transacciones. " "El valor predeterminado es 16MB." -#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:628 +#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:624 msgid "Log file threshold" msgstr "Umbral del archivo bitácora" -#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:627 +#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:623 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." @@ -2733,11 +2743,11 @@ msgstr "" "El tamaño de la bitácora de transacciones antes del rollover, y se crea una " "nueva bitácora. El valor predeterminado es 16MB." -#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:634 +#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:630 msgid "Transaction buffer size" msgstr "Tamaño de la memoria (búfer) de la transacción" -#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:633 +#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:629 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." @@ -2745,11 +2755,11 @@ msgstr "" "El tamaño de global transaction log buffer (el motor asigna 2 memorias búfer " "de este tamaño). El valor predeterminado es 1MB." -#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:611 +#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:607 msgid "Checkpoint frequency" msgstr "Frecuencia del punto de revisión" -#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:612 +#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:608 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." @@ -2757,11 +2767,11 @@ msgstr "" "La cantidad de datos escritos a la bitácora de transacciones antes de hacer " "un punto de revisión. El valor predeterminado es 24MB." -#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:615 +#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:611 msgid "Data log threshold" msgstr "Umbral de la bitácora de datos" -#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:616 +#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:612 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -2774,11 +2784,11 @@ msgstr "" "incrementar para incrementar la cantidad total de datos que se pueden " "almacenar en la base de datos." -#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:618 +#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:614 msgid "Garbage threshold" msgstr "Umbral de chatarra" -#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:617 +#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:613 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." @@ -2786,11 +2796,11 @@ msgstr "" "El porcentaje de chatarra en un archivo bitácora de datos antes de ser " "compactado. Este es un valor entre 1 y 99. El valor predeterminado es 50." -#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:622 +#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:618 msgid "Log buffer size" msgstr "Tamaño de la bitácora del búfer" -#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:621 +#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:617 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " @@ -2801,27 +2811,27 @@ msgstr "" "pero solamente si el proceso es requerido para escribir una bitácora de " "datos." -#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:613 +#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:609 msgid "Data file grow size" msgstr "Tamaño que puede crecer el archivo de datos" -#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:614 +#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:610 msgid "The grow size of the handle data (.xtd) files." msgstr "Tamaño que puede crecer el archivo de gestión de datos (.xtd)." -#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:632 +#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:628 msgid "Row file grow size" msgstr "Tamaño que puede crecer el archivo de filas" -#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:631 +#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:627 msgid "The grow size of the row pointer (.xtr) files." msgstr "Tamaño que puede crecer el archivo del apuntador de filas (.xtr)." -#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:626 +#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:622 msgid "Log file count" msgstr "Contaje de archivos bitácora" -#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:625 +#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:621 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -2835,19 +2845,19 @@ msgstr "" #: libraries/export/htmlword.php:132 libraries/export/odt.php:168 #: libraries/export/sql.php:881 libraries/export/texytext.php:130 -#: libraries/messages.inc.php:275 +#: libraries/messages.inc.php:271 msgid "Dumping data for table" msgstr "Volcar la base de datos para la tabla" #: libraries/export/htmlword.php:185 libraries/export/odt.php:238 #: libraries/export/sql.php:785 libraries/export/texytext.php:177 -#: libraries/messages.inc.php:1086 +#: libraries/messages.inc.php:1082 msgid "Table structure for table" msgstr "Estructura de tabla para la tabla" #: libraries/export/latex.php:125 libraries/export/sql.php:232 #: libraries/export/xml.php:102 libraries/header_printview.inc.php:57 -#: libraries/messages.inc.php:381 libraries/replication_gui.lib.php:63 +#: libraries/messages.inc.php:377 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:170 libraries/replication_gui.lib.php:265 #: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325 #: server_privileges.php:692 server_privileges.php:695 @@ -2859,187 +2869,187 @@ msgstr "Servidor" #: libraries/export/latex.php:130 libraries/export/sql.php:233 #: libraries/export/xml.php:107 libraries/header_printview.inc.php:59 -#: libraries/messages.inc.php:354 +#: libraries/messages.inc.php:350 msgid "Generation Time" msgstr "Tiempo de generación" #: libraries/export/latex.php:131 libraries/export/sql.php:235 -#: libraries/export/xml.php:108 libraries/messages.inc.php:864 main.php:186 +#: libraries/export/xml.php:108 libraries/messages.inc.php:860 main.php:186 msgid "Server version" msgstr "Versión del servidor" #: libraries/export/latex.php:132 libraries/export/sql.php:236 -#: libraries/export/xml.php:109 libraries/messages.inc.php:651 +#: libraries/export/xml.php:109 libraries/messages.inc.php:647 msgid "PHP Version" msgstr "Versión de PHP" #: libraries/export/latex.php:201 libraries/export/sql.php:868 -#: libraries/messages.inc.php:226 server_databases.php:127 +#: libraries/messages.inc.php:222 server_databases.php:127 #: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317 #: tbl_structure.php:666 msgid "Data" msgstr "Datos" -#: libraries/export/odt.php:318 libraries/messages.inc.php:506 +#: libraries/export/odt.php:318 libraries/messages.inc.php:502 #: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "MIME-type" -#: libraries/export/sql.php:387 libraries/messages.inc.php:711 +#: libraries/export/sql.php:387 libraries/messages.inc.php:707 msgid "Procedures" msgstr "Procedimientos" -#: libraries/export/sql.php:401 libraries/messages.inc.php:348 +#: libraries/export/sql.php:401 libraries/messages.inc.php:344 msgid "Functions" msgstr "Funciones" -#: libraries/export/sql.php:618 libraries/messages.inc.php:174 +#: libraries/export/sql.php:618 libraries/messages.inc.php:170 msgid "Constraints for dumped tables" msgstr "Filtros para las tablas descargadas (dump)" -#: libraries/export/sql.php:627 libraries/messages.inc.php:175 +#: libraries/export/sql.php:627 libraries/messages.inc.php:171 msgid "Constraints for table" msgstr "Filtros para la tabla" -#: libraries/export/sql.php:727 libraries/messages.inc.php:512 +#: libraries/export/sql.php:727 libraries/messages.inc.php:508 msgid "MIME TYPES FOR TABLE" msgstr "TIPOS MIME PARA LA TABLA" -#: libraries/export/sql.php:739 libraries/messages.inc.php:743 +#: libraries/export/sql.php:739 libraries/messages.inc.php:739 msgid "RELATIONS FOR TABLE" msgstr "RELACIONES PARA LA TABLA" -#: libraries/export/sql.php:796 libraries/messages.inc.php:1178 +#: libraries/export/sql.php:796 libraries/messages.inc.php:1174 #: libraries/tbl_triggers.lib.php:19 msgid "Triggers" msgstr "(Evento) desencadenante" -#: libraries/export/sql.php:808 libraries/messages.inc.php:1046 +#: libraries/export/sql.php:808 libraries/messages.inc.php:1042 msgid "Structure for view" msgstr "Estructura para la vista" -#: libraries/export/sql.php:817 libraries/messages.inc.php:1029 +#: libraries/export/sql.php:817 libraries/messages.inc.php:1025 msgid "Stand-in structure for view" msgstr "Estructura Stand-in para la vista" #: libraries/footer.inc.php:184 libraries/footer.inc.php:195 -#: libraries/footer.inc.php:198 libraries/messages.inc.php:586 +#: libraries/footer.inc.php:198 libraries/messages.inc.php:582 msgid "Open new phpMyAdmin window" msgstr "Abrir nueva ventana de phpMyAdmin" -#: libraries/header.inc.php:115 libraries/messages.inc.php:542 +#: libraries/header.inc.php:115 libraries/messages.inc.php:538 #, fuzzy msgid "New table" msgstr "No existen tablas" #: libraries/header_printview.inc.php:50 libraries/header_printview.inc.php:55 -#: libraries/messages.inc.php:1024 +#: libraries/messages.inc.php:1020 msgid "SQL result" msgstr "Resultado SQL" -#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:350 +#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:346 msgid "Generated by" msgstr "Generado por" #: libraries/header_printview.inc.php:63 libraries/import.lib.php:145 -#: libraries/messages.inc.php:820 navigation.php:652 navigation.php:674 +#: libraries/messages.inc.php:816 navigation.php:652 navigation.php:674 #: server_databases.php:122 tbl_printview.php:394 tbl_structure.php:366 #: tbl_structure.php:778 msgid "Rows" msgstr "Filas" -#: libraries/import.lib.php:150 libraries/messages.inc.php:285 sql.php:520 +#: libraries/import.lib.php:150 libraries/messages.inc.php:281 sql.php:520 #: tbl_change.php:181 tbl_get_field.php:35 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL ha devuelto un valor vacío (i.e., cero columnas)." -#: libraries/import.lib.php:1078 libraries/messages.inc.php:399 +#: libraries/import.lib.php:1078 libraries/messages.inc.php:395 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1079 libraries/messages.inc.php:400 +#: libraries/import.lib.php:1079 libraries/messages.inc.php:396 msgid "View a structure`s contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1080 libraries/messages.inc.php:401 +#: libraries/import.lib.php:1080 libraries/messages.inc.php:397 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1081 libraries/messages.inc.php:402 +#: libraries/import.lib.php:1081 libraries/messages.inc.php:398 msgid "Edit its structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1084 libraries/messages.inc.php:362 +#: libraries/import.lib.php:1084 libraries/messages.inc.php:358 #, fuzzy msgid "Go to database" msgstr "No hay bases de datos" #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:869 +#: libraries/messages.inc.php:865 msgid "settings" msgstr "" -#: libraries/import.lib.php:1106 libraries/messages.inc.php:363 +#: libraries/import.lib.php:1106 libraries/messages.inc.php:359 #, fuzzy msgid "Go to table" msgstr "No hay bases de datos" -#: libraries/import.lib.php:1109 libraries/messages.inc.php:1047 +#: libraries/import.lib.php:1109 libraries/messages.inc.php:1043 #, fuzzy msgid "structure" msgstr "Estructura" -#: libraries/import.lib.php:1115 libraries/messages.inc.php:364 +#: libraries/import.lib.php:1115 libraries/messages.inc.php:360 msgid "Go to view" msgstr "" #: libraries/import/csv.php:58 libraries/import/csv.php:70 #: libraries/import/csv.php:74 libraries/import/csv.php:78 -#: libraries/messages.inc.php:442 +#: libraries/messages.inc.php:438 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "Parámetro no válido para importar CSV: %s" -#: libraries/import/csv.php:59 libraries/messages.inc.php:323 +#: libraries/import/csv.php:59 libraries/messages.inc.php:319 msgid "Fields terminated by" msgstr "Campos terminados en" -#: libraries/import/csv.php:71 libraries/messages.inc.php:320 +#: libraries/import/csv.php:71 libraries/messages.inc.php:316 msgid "Fields enclosed by" msgstr "Campos encerrados por" -#: libraries/import/csv.php:75 libraries/messages.inc.php:321 +#: libraries/import/csv.php:75 libraries/messages.inc.php:317 msgid "Fields escaped by" msgstr "Caracter de escape" -#: libraries/import/csv.php:79 libraries/messages.inc.php:481 +#: libraries/import/csv.php:79 libraries/messages.inc.php:477 msgid "Lines terminated by" msgstr "Líneas terminadas en" -#: libraries/import/csv.php:119 libraries/messages.inc.php:439 +#: libraries/import/csv.php:119 libraries/messages.inc.php:435 #, php-format msgid "Invalid column (%s) specified!" msgstr "¡Las columnas especificadas (%s) no son válidas!" #: libraries/import/csv.php:177 libraries/import/csv.php:424 -#: libraries/messages.inc.php:441 +#: libraries/messages.inc.php:437 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "El formato de los datos CSV en la línea %d no es válido." -#: libraries/import/csv.php:312 libraries/messages.inc.php:440 +#: libraries/import/csv.php:312 libraries/messages.inc.php:436 #, php-format msgid "Invalid field count in CSV input on line %d." msgstr "El número de campos de los datos CSV en la línea %d no es válido." -#: libraries/import/ldi.php:55 libraries/messages.inc.php:446 +#: libraries/import/ldi.php:55 libraries/messages.inc.php:442 msgid "This plugin does not support compressed imports!" msgstr "¡Este plugin no tiene soporte para importaciones comprimidas!" #: libraries/import/xml.php:74 libraries/import/xml.php:130 -#: libraries/messages.inc.php:1247 +#: libraries/messages.inc.php:1243 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -3070,329 +3080,319 @@ msgstr "" msgid "ltr" msgstr "ltr" -#. l10n: Thousands separator -#: libraries/messages.inc.php:21 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: libraries/messages.inc.php:23 -msgid "." -msgstr "." - -#: libraries/messages.inc.php:25 server_status.php:461 +#: libraries/messages.inc.php:21 server_status.php:461 msgid "Aborted" msgstr "Abortado" -#: libraries/messages.inc.php:28 main.php:68 +#: libraries/messages.inc.php:24 main.php:68 msgid "Actions" msgstr "Accciones" -#: libraries/messages.inc.php:34 libraries/tbl_properties.inc.php:780 +#: libraries/messages.inc.php:30 libraries/tbl_properties.inc.php:780 #: tbl_structure.php:543 #, php-format msgid "Add %s field(s)" msgstr "Añadir %s campo(s)" -#: libraries/messages.inc.php:35 +#: libraries/messages.inc.php:31 msgid "Add custom comment into header (\\n splits lines)" msgstr "" "Añadir su propio comentario en el encabezado (\\n segmenta las oraciones)" -#: libraries/messages.inc.php:36 +#: libraries/messages.inc.php:32 msgid "Add into comments" msgstr "Añadir en los comentarios" -#: libraries/messages.inc.php:37 tbl_structure.php:541 +#: libraries/messages.inc.php:33 tbl_structure.php:541 msgid "Add new field" msgstr "Insertar nuevo campo" -#: libraries/messages.inc.php:38 server_privileges.php:1886 +#: libraries/messages.inc.php:34 server_privileges.php:1886 msgid "Add privileges on the following database" msgstr "Añadir privilegios a esta base de datos" -#: libraries/messages.inc.php:39 server_privileges.php:1907 +#: libraries/messages.inc.php:35 server_privileges.php:1907 msgid "Add privileges on the following table" msgstr "Añadir privilegios a esta tabla" -#: libraries/messages.inc.php:40 tbl_select.php:288 +#: libraries/messages.inc.php:36 tbl_select.php:288 msgid "Add search conditions (body of the \"where\" clause):" msgstr "" "Insertar las condiciones de búsqueda (cuerpo de la cláusula \"where\"):" -#: libraries/messages.inc.php:41 tbl_indexes.php:251 +#: libraries/messages.inc.php:37 tbl_indexes.php:251 #, php-format msgid "Add to index  %s column(s)" msgstr "Añadir al índice  %s columna(s)" -#: libraries/messages.inc.php:42 server_privileges.php:1570 +#: libraries/messages.inc.php:38 server_privileges.php:1570 #: server_privileges.php:1594 server_privileges.php:1988 #: server_privileges.php:2177 msgid "Add a new User" msgstr "Agregar un nuevo usuario" -#: libraries/messages.inc.php:43 server_privileges.php:931 +#: libraries/messages.inc.php:39 server_privileges.php:931 msgid "You have added a new user." msgstr "Ha agregado un nuevo usuario." -#: libraries/messages.inc.php:44 server_privileges.php:571 +#: libraries/messages.inc.php:40 server_privileges.php:571 msgid "Administration" msgstr "Administración" -#: libraries/messages.inc.php:45 tbl_structure.php:557 +#: libraries/messages.inc.php:41 tbl_structure.php:557 #, php-format msgid "After %s" msgstr "Después de %s" -#: libraries/messages.inc.php:46 tbl_change.php:1147 +#: libraries/messages.inc.php:42 tbl_change.php:1147 msgid "Go back to previous page" msgstr "Volver" -#: libraries/messages.inc.php:47 tbl_change.php:1148 +#: libraries/messages.inc.php:43 tbl_change.php:1148 msgid "Insert another new row" msgstr "Insertar un nuevo registro" -#: libraries/messages.inc.php:48 tbl_change.php:1160 +#: libraries/messages.inc.php:44 tbl_change.php:1160 msgid "Edit next row" msgstr "Editar la siguiente fila" -#: libraries/messages.inc.php:49 tbl_change.php:1152 +#: libraries/messages.inc.php:45 tbl_change.php:1152 msgid "Go back to this page" msgstr "Volver a esta página" -#: libraries/messages.inc.php:50 querywindow.php:115 +#: libraries/messages.inc.php:46 querywindow.php:115 msgid "All" msgstr "Todos/as" -#: libraries/messages.inc.php:53 tbl_operations.php:249 +#: libraries/messages.inc.php:49 tbl_operations.php:249 msgid "Alter table order by" msgstr "Modificar el ORDER BY de la tabla" -#: libraries/messages.inc.php:54 tbl_operations.php:660 +#: libraries/messages.inc.php:50 tbl_operations.php:660 msgid "Analyze" msgstr "Analice" -#: libraries/messages.inc.php:57 +#: libraries/messages.inc.php:53 #, fuzzy msgid "and" msgstr "y luego" -#: libraries/messages.inc.php:59 pmd_general.php:87 +#: libraries/messages.inc.php:55 pmd_general.php:87 msgid "Angular links" msgstr "Enlaces angulares" -#: libraries/messages.inc.php:60 tbl_structure.php:401 tbl_structure.php:415 +#: libraries/messages.inc.php:56 tbl_structure.php:401 tbl_structure.php:415 #: tbl_structure.php:429 #, php-format msgid "An index has been added on %s" msgstr "Se añadió un índice en %s" -#: libraries/messages.inc.php:61 server_privileges.php:1521 +#: libraries/messages.inc.php:57 server_privileges.php:1521 #: server_privileges.php:2123 msgid "Any" msgstr "cualquiera" -#: libraries/messages.inc.php:62 libraries/replication_gui.lib.php:298 +#: libraries/messages.inc.php:58 libraries/replication_gui.lib.php:298 #: server_privileges.php:725 msgid "Any host" msgstr "Cualquier servidor" -#: libraries/messages.inc.php:63 libraries/replication_gui.lib.php:250 +#: libraries/messages.inc.php:59 libraries/replication_gui.lib.php:250 #: server_privileges.php:677 msgid "Any user" msgstr "Cualquier usuario" -#: libraries/messages.inc.php:64 server_synchronize.php:449 +#: libraries/messages.inc.php:60 server_synchronize.php:449 #: server_synchronize.php:894 msgid "Apply Selected Changes" msgstr "" -#: libraries/messages.inc.php:66 tbl_structure.php:386 +#: libraries/messages.inc.php:62 tbl_structure.php:386 #, php-format msgid "A primary key has been added on %s" msgstr "Se añadió una clave primaria en %s" -#: libraries/messages.inc.php:67 libraries/mysql_charsets.lib.php:368 +#: libraries/messages.inc.php:63 libraries/mysql_charsets.lib.php:368 msgid "Arabic" msgstr "Árabe" -#: libraries/messages.inc.php:68 libraries/mysql_charsets.lib.php:359 +#: libraries/messages.inc.php:64 libraries/mysql_charsets.lib.php:359 msgid "Armenian" msgstr "Armenio" -#: libraries/messages.inc.php:70 libraries/tbl_properties.inc.php:394 +#: libraries/messages.inc.php:66 libraries/tbl_properties.inc.php:394 msgid "As defined:" msgstr "Como fuera definido:" -#: libraries/messages.inc.php:71 tbl_structure.php:556 +#: libraries/messages.inc.php:67 tbl_structure.php:556 msgid "At Beginning of Table" msgstr "Al comienzo de la tabla" -#: libraries/messages.inc.php:72 tbl_structure.php:555 +#: libraries/messages.inc.php:68 tbl_structure.php:555 msgid "At End of Table" msgstr "Al final de la tabla" -#: libraries/messages.inc.php:73 libraries/tbl_properties.inc.php:108 +#: libraries/messages.inc.php:69 libraries/tbl_properties.inc.php:108 #: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:144 #: tbl_structure.php:180 msgid "Attributes" msgstr "Atributos" -#: libraries/messages.inc.php:74 pdf_pages.php:303 pdf_pages.php:306 +#: libraries/messages.inc.php:70 pdf_pages.php:303 pdf_pages.php:306 msgid "Automatic layout" msgstr "Diseño automático" -#: libraries/messages.inc.php:77 libraries/mysql_charsets.lib.php:354 +#: libraries/messages.inc.php:73 libraries/mysql_charsets.lib.php:354 msgid "Baltic" msgstr "Báltico" -#: libraries/messages.inc.php:78 libraries/sqlparser.lib.php:175 +#: libraries/messages.inc.php:74 libraries/sqlparser.lib.php:175 msgid "BEGIN CUT" msgstr "INICIO DEL CORTE" -#: libraries/messages.inc.php:79 libraries/sqlparser.lib.php:179 +#: libraries/messages.inc.php:75 libraries/sqlparser.lib.php:179 msgid "BEGIN RAW" msgstr "INICIO DEL VOLCADO" -#: libraries/messages.inc.php:80 libraries/mysql_charsets.lib.php:201 +#: libraries/messages.inc.php:76 libraries/mysql_charsets.lib.php:201 #: libraries/mysql_charsets.lib.php:402 tbl_change.php:518 msgid "Binary" msgstr " Binario " -#: libraries/messages.inc.php:81 tbl_change.php:894 +#: libraries/messages.inc.php:77 tbl_change.php:894 msgid "Binary - do not edit" msgstr " Binario - ¡no editar! " -#: libraries/messages.inc.php:82 libraries/server_links.inc.php:76 +#: libraries/messages.inc.php:78 libraries/server_links.inc.php:76 #: server_binlog.php:110 server_status.php:253 test/theme.php:121 msgid "Binary log" msgstr "Log binario" -#: libraries/messages.inc.php:83 server_binlog.php:217 +#: libraries/messages.inc.php:79 server_binlog.php:217 msgid "Event type" msgstr "Tipo de evento" -#: libraries/messages.inc.php:84 server_binlog.php:220 +#: libraries/messages.inc.php:80 server_binlog.php:220 msgid "Information" msgstr "Información" -#: libraries/messages.inc.php:85 server_binlog.php:215 +#: libraries/messages.inc.php:81 server_binlog.php:215 msgid "Log name" msgstr "Nombre con el cual se registró" -#: libraries/messages.inc.php:86 server_binlog.php:219 +#: libraries/messages.inc.php:82 server_binlog.php:219 msgid "Original position" msgstr "Posición original" -#: libraries/messages.inc.php:87 server_binlog.php:216 +#: libraries/messages.inc.php:83 server_binlog.php:216 msgid "Position" msgstr "Posición" -#: libraries/messages.inc.php:88 libraries/replication_gui.lib.php:169 +#: libraries/messages.inc.php:84 libraries/replication_gui.lib.php:169 #: server_binlog.php:218 msgid "Server ID" msgstr "ID del servidor" -#: libraries/messages.inc.php:92 +#: libraries/messages.inc.php:88 #, fuzzy msgctxt "$strBLOBRepositoryDisabled" msgid "Disabled" msgstr "Deshabilitado" -#: libraries/messages.inc.php:95 +#: libraries/messages.inc.php:91 #, fuzzy msgctxt "$strBLOBRepositoryEnabled" msgid "Enabled" msgstr "Habilitado" -#: libraries/messages.inc.php:97 tbl_change.php:888 +#: libraries/messages.inc.php:93 tbl_change.php:888 msgid "Remove BLOB Repository Reference" msgstr "Remueva la referencia al repositorio BLOB" -#: libraries/messages.inc.php:98 +#: libraries/messages.inc.php:94 #, fuzzy msgctxt "$strBLOBRepositoryRepair" msgid "Repair" msgstr "Repare" -#: libraries/messages.inc.php:99 tbl_change.php:987 +#: libraries/messages.inc.php:95 tbl_change.php:987 msgid "Upload to BLOB repository" msgstr "Cargar al repositorio BLOB" -#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:359 +#: libraries/messages.inc.php:96 libraries/sql_query_form.lib.php:359 #: sql.php:677 msgid "Let every user access this bookmark" msgstr "Permitir que todo usuario pueda acceder a este favorito" -#: libraries/messages.inc.php:103 sql.php:671 +#: libraries/messages.inc.php:99 sql.php:671 msgid "Label" msgstr "Etiqueta" -#: libraries/messages.inc.php:104 libraries/sql_query_form.lib.php:433 +#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:433 msgid "Bookmarked SQL query" msgstr "Consulta guardada en favoritos" -#: libraries/messages.inc.php:105 libraries/sql_query_form.lib.php:365 +#: libraries/messages.inc.php:101 libraries/sql_query_form.lib.php:365 msgid "Replace existing bookmark of same name" msgstr "Reemplazar el favorito existente que tenga el mismo nombre" -#: libraries/messages.inc.php:106 libraries/sql_query_form.lib.php:352 +#: libraries/messages.inc.php:102 libraries/sql_query_form.lib.php:352 #: sql.php:665 sql.php:666 sql.php:683 msgid "Bookmark this SQL query" msgstr "Guardar esta consulta en favoritos" -#: libraries/messages.inc.php:107 libraries/sql_query_form.lib.php:466 +#: libraries/messages.inc.php:103 libraries/sql_query_form.lib.php:466 msgid "View only" msgstr "Solamente ver" -#: libraries/messages.inc.php:109 tbl_structure.php:161 +#: libraries/messages.inc.php:105 tbl_structure.php:161 msgid "Browse distinct values" msgstr "Navegar los valores distintivos" -#: libraries/messages.inc.php:110 tbl_change.php:252 tbl_select.php:27 +#: libraries/messages.inc.php:106 tbl_change.php:252 tbl_select.php:27 #: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34 msgid "Browse foreign values" msgstr "Mostrar los valores extranjeros" -#: libraries/messages.inc.php:118 libraries/mysql_charsets.lib.php:213 +#: libraries/messages.inc.php:114 libraries/mysql_charsets.lib.php:213 msgid "Bulgarian" msgstr "Búlgaro" -#: libraries/messages.inc.php:120 +#: libraries/messages.inc.php:116 msgid "\"bzipped\"" msgstr "\"Comprimido con bzip\"" -#: libraries/messages.inc.php:122 +#: libraries/messages.inc.php:118 msgid "Calendar" msgstr "Calendario" -#: libraries/messages.inc.php:129 tbl_indexes.php:75 +#: libraries/messages.inc.php:125 tbl_indexes.php:75 msgid "Can't rename index to PRIMARY!" msgstr "No puede cambiar el nombre del índice a ¡PRIMARY!" -#: libraries/messages.inc.php:132 libraries/mysql_charsets.lib.php:223 +#: libraries/messages.inc.php:128 libraries/mysql_charsets.lib.php:223 #: libraries/mysql_charsets.lib.php:409 msgid "case-insensitive" msgstr "independiente de mayúsculas y minúsculas" -#: libraries/messages.inc.php:133 libraries/mysql_charsets.lib.php:226 +#: libraries/messages.inc.php:129 libraries/mysql_charsets.lib.php:226 #: libraries/mysql_charsets.lib.php:411 msgid "case-sensitive" msgstr "dependiente de mayúsculas y minúsculas" -#: libraries/messages.inc.php:134 libraries/mysql_charsets.lib.php:332 +#: libraries/messages.inc.php:130 libraries/mysql_charsets.lib.php:332 msgid "Central European" msgstr "Europeo central" -#: libraries/messages.inc.php:136 server_privileges.php:1969 +#: libraries/messages.inc.php:132 server_privileges.php:1969 msgid "... keep the old one." msgstr "...mantener el anterior." -#: libraries/messages.inc.php:137 server_privileges.php:1967 +#: libraries/messages.inc.php:133 server_privileges.php:1967 msgid "Create a new user with the same privileges and ..." msgstr "Crear un nuevo usuario con los mismos privilegios y..." -#: libraries/messages.inc.php:138 server_privileges.php:1972 +#: libraries/messages.inc.php:134 server_privileges.php:1972 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -3400,116 +3400,116 @@ msgstr "" " ...borrar el viejo de las tablas de usuario y luego volver a cargar los " "privilegios." -#: libraries/messages.inc.php:139 server_privileges.php:1970 +#: libraries/messages.inc.php:135 server_privileges.php:1970 msgid " ... delete the old one from the user tables." msgstr " ...borrar el viejo de las tablas de usuario." -#: libraries/messages.inc.php:140 server_privileges.php:1971 +#: libraries/messages.inc.php:136 server_privileges.php:1971 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "" " ...revocar todos los privilegios activos del viejo y eliminarlo después." -#: libraries/messages.inc.php:141 server_privileges.php:1964 +#: libraries/messages.inc.php:137 server_privileges.php:1964 msgid "Change Login Information / Copy User" msgstr "Cambiar la información de la cuenta / Copiar el usuario" -#: libraries/messages.inc.php:144 libraries/mysql_charsets.lib.php:107 +#: libraries/messages.inc.php:140 libraries/mysql_charsets.lib.php:107 msgid "Charset" msgstr "Juego de caracteres" -#: libraries/messages.inc.php:146 server_collations.php:40 +#: libraries/messages.inc.php:142 server_collations.php:40 msgid "Character Sets and Collations" msgstr "Juego de caracteres y sus cotejamientos" -#: libraries/messages.inc.php:147 libraries/server_links.inc.php:57 +#: libraries/messages.inc.php:143 libraries/server_links.inc.php:57 #: test/theme.php:109 msgid "Charsets" msgstr "Juegos de caracteres" -#: libraries/messages.inc.php:149 tbl_operations.php:661 +#: libraries/messages.inc.php:145 tbl_operations.php:661 msgid "Check" msgstr "Revise" -#: libraries/messages.inc.php:151 server_databases.php:293 +#: libraries/messages.inc.php:147 server_databases.php:293 #: server_databases.php:294 msgid "Check Privileges" msgstr "Revisar los privilegios" -#: libraries/messages.inc.php:152 server_databases.php:289 +#: libraries/messages.inc.php:148 server_databases.php:289 #, php-format msgid "Check privileges for database "%s"." msgstr "Revisar los privilegios para la base de datos "%s"." -#: libraries/messages.inc.php:154 pdf_pages.php:261 +#: libraries/messages.inc.php:150 pdf_pages.php:261 msgid "Please choose a page to edit" msgstr "Elegir la página a editar" -#: libraries/messages.inc.php:157 +#: libraries/messages.inc.php:153 msgid "Displaying Column Comments" msgstr "Mostrando los comentarios de la columna" -#: libraries/messages.inc.php:159 pdf_pages.php:483 view_create.php:148 +#: libraries/messages.inc.php:155 pdf_pages.php:483 view_create.php:148 msgid "Column names" msgstr "Nombre de las columnas" -#: libraries/messages.inc.php:160 server_privileges.php:1685 +#: libraries/messages.inc.php:156 server_privileges.php:1685 msgid "Column-specific privileges" msgstr "Privilegios específicos para la columna" -#: libraries/messages.inc.php:164 +#: libraries/messages.inc.php:160 msgid "MySQL 4.0 compatible" msgstr "Compatible con MySQL 4.0" -#: libraries/messages.inc.php:165 +#: libraries/messages.inc.php:161 msgid "Complete inserts" msgstr "Completar los INSERTS" -#: libraries/messages.inc.php:168 +#: libraries/messages.inc.php:164 #, php-format msgid "Could not load default configuration from: \"%1$s\"" msgstr "No fue posible cargar la configuración predeterminada desde: \"%1$s\"" -#: libraries/messages.inc.php:169 main.php:306 +#: libraries/messages.inc.php:165 main.php:306 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: libraries/messages.inc.php:171 pdf_schema.php:672 +#: libraries/messages.inc.php:167 pdf_schema.php:672 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Configure las coordenadas para la tabla %s" -#: libraries/messages.inc.php:173 server_status.php:433 +#: libraries/messages.inc.php:169 server_status.php:433 msgid "Connections" msgstr "Conexiones" -#: libraries/messages.inc.php:179 tbl_operations.php:509 +#: libraries/messages.inc.php:175 tbl_operations.php:509 msgid "Copy table to (database.table):" msgstr "Copiar la tabla a (base de datos.tabla):" -#: libraries/messages.inc.php:180 tbl_move_copy.php:58 +#: libraries/messages.inc.php:176 tbl_move_copy.php:58 #, php-format msgid "Table %s has been copied to %s." msgstr "La tabla %s se copió a %s." -#: libraries/messages.inc.php:181 tbl_move_copy.php:48 +#: libraries/messages.inc.php:177 tbl_move_copy.php:48 msgid "Can't copy table to same one!" msgstr "¡No es posible copiar la tabla a la misma!" -#: libraries/messages.inc.php:182 server_synchronize.php:94 +#: libraries/messages.inc.php:178 server_synchronize.php:94 #, fuzzy msgid "Could not connect to the source" msgstr "No pudo conectarse con un servidor MySQL" -#: libraries/messages.inc.php:183 server_synchronize.php:97 +#: libraries/messages.inc.php:179 server_synchronize.php:97 #, fuzzy msgid "Could not connect to the target" msgstr "No pudo conectarse con un servidor MySQL" -#: libraries/messages.inc.php:184 server_processlist.php:24 +#: libraries/messages.inc.php:180 server_processlist.php:24 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -3517,136 +3517,136 @@ msgstr "" "phpMyAdmin no fue capaz de destruir el proceso %s. Probablemente ya ha sido " "cerrado." -#: libraries/messages.inc.php:187 +#: libraries/messages.inc.php:183 #, php-format msgid "Create an index on %s columns" msgstr "Crear un índice en %s columna(s)" -#: libraries/messages.inc.php:188 tbl_indexes.php:160 +#: libraries/messages.inc.php:184 tbl_indexes.php:160 msgid "Create a new index" msgstr "Crear un nuevo índice" -#: libraries/messages.inc.php:191 pdf_pages.php:297 pmd_pdf.php:114 +#: libraries/messages.inc.php:187 pdf_pages.php:297 pmd_pdf.php:114 msgid "Create a page" msgstr "Crear una nueva página" -#: libraries/messages.inc.php:192 +#: libraries/messages.inc.php:188 msgid "Creation of PDFs" msgstr "Creación de los PDF" -#: libraries/messages.inc.php:193 pmd_general.php:74 pmd_general.php:306 +#: libraries/messages.inc.php:189 pmd_general.php:74 pmd_general.php:306 msgid "Create relation" msgstr "Crear relación" -#: libraries/messages.inc.php:194 pmd_general.php:71 +#: libraries/messages.inc.php:190 pmd_general.php:71 #: server_synchronize.php:429 server_synchronize.php:872 msgid "Create table" msgstr "Crear tabla" -#: libraries/messages.inc.php:195 +#: libraries/messages.inc.php:191 #, fuzzy msgctxt "$strCreateTableShort" msgid "Create table" msgstr "Crear tabla" -#: libraries/messages.inc.php:196 server_privileges.php:1994 +#: libraries/messages.inc.php:192 server_privileges.php:1994 msgid "Database for user" msgstr "Base de datos para el usuario" -#: libraries/messages.inc.php:197 server_privileges.php:1999 +#: libraries/messages.inc.php:193 server_privileges.php:1999 msgid "Create database with same name and grant all privileges" msgstr "" "Crear base de datos con el mismo nombre y otorgue todos los privilegios" -#: libraries/messages.inc.php:198 +#: libraries/messages.inc.php:194 #, fuzzy msgctxt "$strCreateUserDatabaseNone" msgid "None" msgstr "Ninguna" -#: libraries/messages.inc.php:199 server_privileges.php:2003 +#: libraries/messages.inc.php:195 server_privileges.php:2003 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "Revisar los privilegios para la base de datos "%s"." -#: libraries/messages.inc.php:200 server_privileges.php:2000 +#: libraries/messages.inc.php:196 server_privileges.php:2000 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" "Otorgue todos los privilegios al nombre que contiene comodín (username\\_%)" -#: libraries/messages.inc.php:201 +#: libraries/messages.inc.php:197 msgid "Creation/Update/Check dates" msgstr "Fechas de creación/actualización/revisión" -#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:229 +#: libraries/messages.inc.php:199 libraries/mysql_charsets.lib.php:229 msgid "Croatian" msgstr "Croata" -#: libraries/messages.inc.php:204 +#: libraries/messages.inc.php:200 msgid "CSV" msgstr "CSV" -#: libraries/messages.inc.php:205 libraries/server_synchronize.lib.php:1343 +#: libraries/messages.inc.php:201 libraries/server_synchronize.lib.php:1343 #: libraries/server_synchronize.lib.php:1369 msgid "Current server" msgstr "" -#: libraries/messages.inc.php:206 main.php:159 +#: libraries/messages.inc.php:202 main.php:159 msgid "Custom color" msgstr "Cambiar el color" -#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:365 +#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:365 msgid "Cyrillic" msgstr "Cirílico" -#: libraries/messages.inc.php:208 libraries/mysql_charsets.lib.php:232 +#: libraries/messages.inc.php:204 libraries/mysql_charsets.lib.php:232 msgid "Czech" msgstr "Checo" -#: libraries/messages.inc.php:209 libraries/mysql_charsets.lib.php:383 +#: libraries/messages.inc.php:205 libraries/mysql_charsets.lib.php:383 msgid "Czech-Slovak" msgstr "Checo-Eslovaco" -#: libraries/messages.inc.php:211 libraries/mysql_charsets.lib.php:235 +#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:235 msgid "Danish" msgstr "Danés" -#: libraries/messages.inc.php:214 +#: libraries/messages.inc.php:210 msgid "Database export options" msgstr "Opciones de exportación de la base de datos" -#: libraries/messages.inc.php:217 server_synchronize.php:122 +#: libraries/messages.inc.php:213 server_synchronize.php:122 #: server_synchronize.php:125 tbl_create.php:82 tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "" -#: libraries/messages.inc.php:219 server_databases.php:63 +#: libraries/messages.inc.php:215 server_databases.php:63 #, php-format msgid "%s databases have been dropped successfully." msgstr "%s bases de datos han sido eliminadas exitosamente." -#: libraries/messages.inc.php:220 libraries/server_synchronize.lib.php:1341 +#: libraries/messages.inc.php:216 libraries/server_synchronize.lib.php:1341 #: server_synchronize.php:1110 #, fuzzy msgid "Source database" msgstr "Buscar en la base de datos" -#: libraries/messages.inc.php:221 server_databases.php:88 +#: libraries/messages.inc.php:217 server_databases.php:88 msgid "Databases statistics" msgstr "Estadísticas de la base" -#: libraries/messages.inc.php:222 server_databases.php:362 +#: libraries/messages.inc.php:218 server_databases.php:362 #: server_databases.php:363 msgid "Disable Statistics" msgstr "Desactivar las estadísticas" -#: libraries/messages.inc.php:223 server_databases.php:358 +#: libraries/messages.inc.php:219 server_databases.php:358 #: server_databases.php:359 msgid "Enable Statistics" msgstr "Activar las estadísticas" -#: libraries/messages.inc.php:224 server_databases.php:366 +#: libraries/messages.inc.php:220 server_databases.php:366 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -3654,32 +3654,32 @@ msgstr "" "Nota: Activar aquí las estadísticas de la base de datos podría causar " "tráfico pesado entre el servidor web y el servidor MySQL." -#: libraries/messages.inc.php:225 libraries/server_synchronize.lib.php:1367 +#: libraries/messages.inc.php:221 libraries/server_synchronize.lib.php:1367 #: server_synchronize.php:1112 #, fuzzy msgid "Target database" msgstr "Buscar en la base de datos" -#: libraries/messages.inc.php:228 server_synchronize.php:425 +#: libraries/messages.inc.php:224 server_synchronize.php:425 #: server_synchronize.php:868 #, fuzzy msgid "Data Difference" msgstr "Estructura para la vista" -#: libraries/messages.inc.php:231 server_synchronize.php:272 +#: libraries/messages.inc.php:227 server_synchronize.php:272 msgid "Data Synchronization" msgstr "" -#: libraries/messages.inc.php:235 server_privileges.php:526 +#: libraries/messages.inc.php:231 server_privileges.php:526 #: server_privileges.php:1679 msgid "Database-specific privileges" msgstr "Privilegios específicos para la base de datos" -#: libraries/messages.inc.php:237 server_privileges.php:2136 +#: libraries/messages.inc.php:233 server_privileges.php:2136 msgid "database-specific" msgstr "específico para la base de datos" -#: libraries/messages.inc.php:240 libraries/tbl_properties.inc.php:106 +#: libraries/messages.inc.php:236 libraries/tbl_properties.inc.php:106 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" @@ -3687,32 +3687,32 @@ msgstr "" "Para valores predeterminados, por favor ingrese solamente un valor, sin " "caracteres de escape \\\"\\\\\" ni comillas, usando este formato: a" -#: libraries/messages.inc.php:241 tbl_operations.php:589 +#: libraries/messages.inc.php:237 tbl_operations.php:589 msgid "Defragment table" msgstr "Defragmentar la tabla" -#: libraries/messages.inc.php:242 +#: libraries/messages.inc.php:238 msgid "Use delayed inserts" msgstr "Usar \"inserts\" con retraso" -#: libraries/messages.inc.php:245 server_privileges.php:1243 +#: libraries/messages.inc.php:241 server_privileges.php:1243 msgid "No users selected for deleting!" msgstr "¡No se han seleccionado usuarios para eliminar!" -#: libraries/messages.inc.php:246 pmd_general.php:372 +#: libraries/messages.inc.php:242 pmd_general.php:372 msgid "Delete relation" msgstr "Eliminar la relación" -#: libraries/messages.inc.php:248 server_privileges.php:1232 +#: libraries/messages.inc.php:244 server_privileges.php:1232 #, php-format msgid "Deleting %s" msgstr "Borrando %s" -#: libraries/messages.inc.php:249 libraries/sql_query_form.lib.php:388 +#: libraries/messages.inc.php:245 libraries/sql_query_form.lib.php:388 msgid "Delimiter" msgstr "Delimitador" -#: libraries/messages.inc.php:250 pdf_pages.php:506 +#: libraries/messages.inc.php:246 pdf_pages.php:506 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -3720,7 +3720,7 @@ msgstr "" "La página actual tiene referencias a tablas que ya no existen. ¿Desea " "eliminar esas referencias?" -#: libraries/messages.inc.php:254 pmd_help.php:29 +#: libraries/messages.inc.php:250 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 " @@ -3730,144 +3730,144 @@ msgstr "" "campo como un campo Display, dé clic en el ícono \"Seleccione el campo a " "mostrar\", luego dé clic en el nombre apropiado del campo." -#: libraries/messages.inc.php:256 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:252 libraries/mysql_charsets.lib.php:247 msgid "dictionary" msgstr "diccionario" -#: libraries/messages.inc.php:257 libraries/server_synchronize.lib.php:1348 +#: libraries/messages.inc.php:253 libraries/server_synchronize.lib.php:1348 msgid "Difference" msgstr "" -#: libraries/messages.inc.php:258 pmd_general.php:87 +#: libraries/messages.inc.php:254 pmd_general.php:87 msgid "Direct links" msgstr "Enlaces directos" -#: libraries/messages.inc.php:261 +#: libraries/messages.inc.php:257 msgid "Disable foreign key checks" msgstr "Deshabilitar la revisión de las llaves extranjeras (foreign keys)" -#: libraries/messages.inc.php:262 +#: libraries/messages.inc.php:258 msgid "Display Features" msgstr "Mostrar las opciones" -#: libraries/messages.inc.php:263 tbl_select.php:301 +#: libraries/messages.inc.php:259 tbl_select.php:301 msgid "Display order:" msgstr "Mostrar en este orden:" -#: libraries/messages.inc.php:265 tbl_select.php:132 +#: libraries/messages.inc.php:261 tbl_select.php:132 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Hacer una consulta (comodín: \"%\")" -#: libraries/messages.inc.php:266 +#: libraries/messages.inc.php:262 msgid "DocSQL" msgstr "DocSQL" -#: libraries/messages.inc.php:268 +#: libraries/messages.inc.php:264 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/messages.inc.php:273 server_privileges.php:1579 +#: libraries/messages.inc.php:269 server_privileges.php:1579 #: server_privileges.php:1580 server_privileges.php:1581 msgid "Drop the databases that have the same names as the users." msgstr "" "Eliminar las bases de datos que tienen los mismos nombres que los usuarios." -#: libraries/messages.inc.php:278 tbl_printview.php:382 tbl_structure.php:743 +#: libraries/messages.inc.php:274 tbl_printview.php:382 tbl_structure.php:743 msgid "dynamic" msgstr "dinámico/a" -#: libraries/messages.inc.php:282 server_privileges.php:1324 +#: libraries/messages.inc.php:278 server_privileges.php:1324 #: server_privileges.php:1610 msgid "Edit Privileges" msgstr "Editar los privilegios" -#: libraries/messages.inc.php:283 tbl_printview.php:341 tbl_structure.php:688 +#: libraries/messages.inc.php:279 tbl_printview.php:341 tbl_structure.php:688 msgid "Effective" msgstr "Efectivo/a" -#: libraries/messages.inc.php:286 libraries/relation.lib.php:100 +#: libraries/messages.inc.php:282 libraries/relation.lib.php:100 msgid "Enabled" msgstr "Habilitado" -#: libraries/messages.inc.php:287 +#: libraries/messages.inc.php:283 msgid "Enclose export in a transaction" msgstr "Incluir lo exportado en una transacción" -#: libraries/messages.inc.php:288 libraries/sqlparser.lib.php:177 +#: libraries/messages.inc.php:284 libraries/sqlparser.lib.php:177 msgid "END CUT" msgstr "FIN DEL CORTE" -#: libraries/messages.inc.php:290 libraries/sqlparser.lib.php:183 +#: libraries/messages.inc.php:286 libraries/sqlparser.lib.php:183 msgid "END RAW" msgstr "FIN DEL VOLCADO" -#: libraries/messages.inc.php:293 libraries/server_links.inc.php:61 +#: libraries/messages.inc.php:289 libraries/server_links.inc.php:61 #: test/theme.php:113 msgid "Engines" msgstr "Motores" -#: libraries/messages.inc.php:295 libraries/mysql_charsets.lib.php:238 +#: libraries/messages.inc.php:291 libraries/mysql_charsets.lib.php:238 msgid "English" msgstr "Inglés" -#: libraries/messages.inc.php:296 server_privileges.php:393 +#: libraries/messages.inc.php:292 server_privileges.php:393 #: server_privileges.php:535 server_privileges.php:1501 msgid " Note: MySQL privilege names are expressed in English " msgstr "" " Nota: Los nombres de los privilegios de MySQL están expresados en inglés " -#: libraries/messages.inc.php:298 libraries/zip_extension.lib.php:49 +#: libraries/messages.inc.php:294 libraries/zip_extension.lib.php:49 #: libraries/zip_extension.lib.php:51 libraries/zip_extension.lib.php:66 msgid "Error in ZIP archive:" msgstr "Error en el archivo ZIP:" -#: libraries/messages.inc.php:303 libraries/mysql_charsets.lib.php:241 +#: libraries/messages.inc.php:299 libraries/mysql_charsets.lib.php:241 msgid "Esperanto" msgstr "Esperanto" -#: libraries/messages.inc.php:304 libraries/mysql_charsets.lib.php:244 +#: libraries/messages.inc.php:300 libraries/mysql_charsets.lib.php:244 msgid "Estonian" msgstr "Estonio" -#: libraries/messages.inc.php:305 libraries/tbl_triggers.lib.php:29 +#: libraries/messages.inc.php:301 libraries/tbl_triggers.lib.php:29 msgid "Event" msgstr "Evento" -#: libraries/messages.inc.php:307 +#: libraries/messages.inc.php:303 msgid "Excel edition" msgstr "Edición Excel" -#: libraries/messages.inc.php:311 pmd_pdf.php:85 +#: libraries/messages.inc.php:307 pmd_pdf.php:85 msgid "Export/Import to scale" msgstr "Exporte/Importe a escala" -#: libraries/messages.inc.php:313 +#: libraries/messages.inc.php:309 msgid "Extended inserts" msgstr "INSERTs extendidos" -#: libraries/messages.inc.php:314 pdf_schema.php:1267 pdf_schema.php:1288 +#: libraries/messages.inc.php:310 pdf_schema.php:1267 pdf_schema.php:1288 #: tbl_printview.php:147 tbl_structure.php:183 tbl_tracking.php:278 msgid "Extra" msgstr "Extra" -#: libraries/messages.inc.php:316 server_status.php:447 +#: libraries/messages.inc.php:312 server_status.php:447 msgid "Failed attempts" msgstr "Intentos fallidos" -#: libraries/messages.inc.php:318 tbl_structure.php:375 +#: libraries/messages.inc.php:314 tbl_structure.php:375 #, php-format msgid "Field %s has been dropped" msgstr "Se eliminó el campo %s" -#: libraries/messages.inc.php:322 libraries/sql_query_form.lib.php:317 +#: libraries/messages.inc.php:318 libraries/sql_query_form.lib.php:317 msgid "Fields" msgstr "Campos" -#: libraries/messages.inc.php:332 server_binlog.php:136 +#: libraries/messages.inc.php:328 server_binlog.php:136 msgid "Files" msgstr "Archivos" -#: libraries/messages.inc.php:334 server_privileges.php:1597 +#: libraries/messages.inc.php:330 server_privileges.php:1597 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -3881,220 +3881,220 @@ msgstr "" "manuales en él. En este caso, nuevamente deberá %scargar la página de " "privilegios%s antes de continuar." -#: libraries/messages.inc.php:335 server_status.php:289 +#: libraries/messages.inc.php:331 server_status.php:289 msgid "Flush query cache" msgstr "Vaciar el cache de consultas" -#: libraries/messages.inc.php:336 +#: libraries/messages.inc.php:332 msgid "Flush the table (\"FLUSH\")" msgstr "Vaciar el caché de la tabla (\"FLUSH\")" -#: libraries/messages.inc.php:337 server_status.php:271 +#: libraries/messages.inc.php:333 server_status.php:271 msgid "Flush (close) all tables" msgstr "Vaciar el cache de todas las tablas" -#: libraries/messages.inc.php:339 tbl_relation.php:279 +#: libraries/messages.inc.php:335 tbl_relation.php:279 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" "Ocurrió un error al crear la llave extranjera en %1$s (revise los data types)" -#: libraries/messages.inc.php:341 setup/lib/messages.inc.php:88 +#: libraries/messages.inc.php:337 setup/lib/messages.inc.php:88 #: tbl_printview.php:376 tbl_structure.php:738 msgid "Format" msgstr "Formato" -#: libraries/messages.inc.php:344 server_replication.php:325 +#: libraries/messages.inc.php:340 server_replication.php:325 #, fuzzy msgid "Full start" msgstr "Texto completo" -#: libraries/messages.inc.php:345 server_replication.php:325 +#: libraries/messages.inc.php:341 server_replication.php:325 #, fuzzy msgid "Full stop" msgstr "Texto completo" -#: libraries/messages.inc.php:347 tbl_change.php:282 tbl_change.php:320 +#: libraries/messages.inc.php:343 tbl_change.php:282 tbl_change.php:320 msgid "Function" msgstr "Función" -#: libraries/messages.inc.php:355 libraries/mysql_charsets.lib.php:377 +#: libraries/messages.inc.php:351 libraries/mysql_charsets.lib.php:377 msgid "Georgian" msgstr "Georgiano" -#: libraries/messages.inc.php:356 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:352 libraries/mysql_charsets.lib.php:247 #: libraries/mysql_charsets.lib.php:250 msgid "German" msgstr "Alemán" -#: libraries/messages.inc.php:357 themes.php:42 +#: libraries/messages.inc.php:353 themes.php:42 msgid "Get more themes!" msgstr "" -#: libraries/messages.inc.php:358 server_privileges.php:2134 +#: libraries/messages.inc.php:354 server_privileges.php:2134 msgid "global" msgstr "global" -#: libraries/messages.inc.php:359 server_privileges.php:524 +#: libraries/messages.inc.php:355 server_privileges.php:524 #: server_privileges.php:1500 msgid "Global privileges" msgstr "Privilegios globales" -#: libraries/messages.inc.php:360 server_variables.php:55 +#: libraries/messages.inc.php:356 server_variables.php:55 #: server_variables.php:89 msgid "Global value" msgstr "Valor global" -#: libraries/messages.inc.php:365 server_privileges.php:1502 +#: libraries/messages.inc.php:361 server_privileges.php:1502 #: server_privileges.php:1684 server_privileges.php:2033 msgid "Grant" msgstr "Conceder" -#: libraries/messages.inc.php:366 libraries/mysql_charsets.lib.php:380 +#: libraries/messages.inc.php:362 libraries/mysql_charsets.lib.php:380 msgid "Greek" msgstr "Griego" -#: libraries/messages.inc.php:367 +#: libraries/messages.inc.php:363 msgid "\"gzipped\"" msgstr "\"Comprimido con gzip\"" -#: libraries/messages.inc.php:369 server_status.php:250 +#: libraries/messages.inc.php:365 server_status.php:250 msgid "Handler" msgstr "Gestor" -#: libraries/messages.inc.php:370 server_synchronize.php:464 +#: libraries/messages.inc.php:366 server_synchronize.php:464 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: libraries/messages.inc.php:372 libraries/mysql_charsets.lib.php:374 +#: libraries/messages.inc.php:368 libraries/mysql_charsets.lib.php:374 msgid "Hebrew" msgstr "Hebreo" -#: libraries/messages.inc.php:373 pmd_general.php:83 +#: libraries/messages.inc.php:369 pmd_general.php:83 msgid "Help" msgstr "Ayuda" -#: libraries/messages.inc.php:374 +#: libraries/messages.inc.php:370 msgid "Use hexadecimal for BLOB" msgstr "Use hexadecimal para BLOB" -#: libraries/messages.inc.php:376 pmd_general.php:120 +#: libraries/messages.inc.php:372 pmd_general.php:120 msgid "Hide/Show all" msgstr "Ocultar/mostrar todo" -#: libraries/messages.inc.php:377 pmd_general.php:124 +#: libraries/messages.inc.php:373 pmd_general.php:124 msgid "Hide/Show Tables with no relation" msgstr "Ocultar/mostrar Tablas que no tengan relación" -#: libraries/messages.inc.php:378 libraries/navigation_header.inc.php:54 +#: libraries/messages.inc.php:374 libraries/navigation_header.inc.php:54 #: libraries/navigation_header.inc.php:57 #: libraries/navigation_header.inc.php:58 msgid "Home" msgstr "Página de inicio" -#: libraries/messages.inc.php:379 main.php:233 +#: libraries/messages.inc.php:375 main.php:233 msgid "Official Homepage" msgstr "Página oficial de phpMyAdmin" -#: libraries/messages.inc.php:382 libraries/replication_gui.lib.php:327 +#: libraries/messages.inc.php:378 libraries/replication_gui.lib.php:327 #: server_privileges.php:753 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/messages.inc.php:383 +#: libraries/messages.inc.php:379 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/messages.inc.php:384 libraries/mysql_charsets.lib.php:253 +#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:253 msgid "Hungarian" msgstr "Húngaro" -#: libraries/messages.inc.php:386 libraries/mysql_charsets.lib.php:256 +#: libraries/messages.inc.php:382 libraries/mysql_charsets.lib.php:256 msgid "Icelandic" msgstr "Islandés" -#: libraries/messages.inc.php:387 server_processlist.php:53 +#: libraries/messages.inc.php:383 server_processlist.php:53 msgid "ID" msgstr "Identificación" -#: libraries/messages.inc.php:388 libraries/mult_submits.inc.php:108 +#: libraries/messages.inc.php:384 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:479 msgid "Fulltext" msgstr "Texto completo" -#: libraries/messages.inc.php:389 +#: libraries/messages.inc.php:385 msgid "Ignore duplicate rows" msgstr "Ignore las filas duplicadas" -#: libraries/messages.inc.php:390 tbl_change.php:302 tbl_indexes.php:200 +#: libraries/messages.inc.php:386 tbl_change.php:302 tbl_indexes.php:200 #: tbl_indexes.php:225 msgid "Ignore" msgstr "Ignorar" -#: libraries/messages.inc.php:391 +#: libraries/messages.inc.php:387 msgid "Use ignore inserts" msgstr "Usar la opción ignore inserts" -#: libraries/messages.inc.php:392 +#: libraries/messages.inc.php:388 msgid "Column names in first row" msgstr "" -#: libraries/messages.inc.php:393 +#: libraries/messages.inc.php:389 msgid "Do not import empty rows" msgstr "" -#: libraries/messages.inc.php:394 pmd_general.php:104 +#: libraries/messages.inc.php:390 pmd_general.php:104 msgid "Import/Export coordinates for PDF schema" msgstr "Importar/Exportar coordenadas para el esquema PDF" -#: libraries/messages.inc.php:395 querywindow.php:104 +#: libraries/messages.inc.php:391 querywindow.php:104 msgid "Import files" msgstr "Importar archivos" -#: libraries/messages.inc.php:403 +#: libraries/messages.inc.php:399 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/messages.inc.php:404 libraries/messages.inc.php:584 +#: libraries/messages.inc.php:400 libraries/messages.inc.php:580 msgid "Open Document Spreadsheet" msgstr "Hoja de cálculo Open Document" -#: libraries/messages.inc.php:405 +#: libraries/messages.inc.php:401 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/messages.inc.php:409 +#: libraries/messages.inc.php:405 msgid "Excel 97-2003 XLS Workbook" msgstr "" -#: libraries/messages.inc.php:410 +#: libraries/messages.inc.php:406 msgid "Excel 2007 XLSX Workbook" msgstr "" -#: libraries/messages.inc.php:414 libraries/mult_submits.inc.php:98 +#: libraries/messages.inc.php:410 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:476 tbl_structure.php:674 msgid "Index" msgstr "Índice" -#: libraries/messages.inc.php:415 tbl_indexes.php:168 +#: libraries/messages.inc.php:411 tbl_indexes.php:168 msgid "Index name:" msgstr "Nombre del índice :" -#: libraries/messages.inc.php:416 tbl_indexes.php:174 +#: libraries/messages.inc.php:412 tbl_indexes.php:174 msgid "Index type:" msgstr "Tipo de índice :" -#: libraries/messages.inc.php:417 sql.php:639 +#: libraries/messages.inc.php:413 sql.php:639 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemas con los índices de la tabla `%s`" -#: libraries/messages.inc.php:427 main.php:266 +#: libraries/messages.inc.php:423 main.php:266 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -4109,24 +4109,24 @@ msgstr "" "contraseña a root@localhost. Deberá escribir la misma contraseña en config." "inc.php de phpMyAdmin" -#: libraries/messages.inc.php:428 tbl_change.php:1130 +#: libraries/messages.inc.php:424 tbl_change.php:1130 msgid "Insert as new row" msgstr "Insertar como una nueva fila" -#: libraries/messages.inc.php:429 sql.php:496 tbl_replace.php:386 +#: libraries/messages.inc.php:425 sql.php:496 tbl_replace.php:386 #, php-format msgid "Inserted row id: %1$d" msgstr "La Id de la fila insertada es: %1$d" -#: libraries/messages.inc.php:430 tbl_change.php:1131 +#: libraries/messages.inc.php:426 tbl_change.php:1131 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/messages.inc.php:432 main.php:139 +#: libraries/messages.inc.php:428 main.php:139 msgid "Interface" msgstr "Interfaz" -#: libraries/messages.inc.php:433 tbl_relation.php:407 +#: libraries/messages.inc.php:429 tbl_relation.php:407 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -4134,140 +4134,140 @@ msgstr "" "No es necesaria una relación interna cuando existe una relación LLAVE " "EXTRANJERA correspondiente." -#: libraries/messages.inc.php:435 pdf_pages.php:303 +#: libraries/messages.inc.php:431 pdf_pages.php:303 msgid "Internal relations" msgstr "Relaciones internas" -#: libraries/messages.inc.php:438 tbl_indexes.php:256 tbl_structure.php:590 +#: libraries/messages.inc.php:434 tbl_indexes.php:256 tbl_structure.php:590 #: tbl_structure.php:601 msgid "Column count has to be larger than zero." msgstr "El número de columnas debe ser superior a cero." -#: libraries/messages.inc.php:444 libraries/tbl_properties.inc.php:784 +#: libraries/messages.inc.php:440 libraries/tbl_properties.inc.php:784 #: tbl_structure.php:537 msgid "You have to add at least one field." msgstr "Debe añadir al menos un campo." -#: libraries/messages.inc.php:449 +#: libraries/messages.inc.php:445 #, php-format msgid "Invalid server index: \"%s\"" msgstr "No es válido el índice del servidor: \"%s\"" -#: libraries/messages.inc.php:452 libraries/mysql_charsets.lib.php:259 +#: libraries/messages.inc.php:448 libraries/mysql_charsets.lib.php:259 #: libraries/mysql_charsets.lib.php:349 msgid "Japanese" msgstr "Japonés" -#: libraries/messages.inc.php:453 main.php:331 +#: libraries/messages.inc.php:449 main.php:331 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: libraries/messages.inc.php:454 server_status.php:257 +#: libraries/messages.inc.php:450 server_status.php:257 msgid "Joins" msgstr "Vínculos (Joins)" -#: libraries/messages.inc.php:457 server_privileges.php:763 +#: libraries/messages.inc.php:453 server_privileges.php:763 msgid "Do not change the password" msgstr "No cambiar la contraseña" -#: libraries/messages.inc.php:458 server_status.php:256 +#: libraries/messages.inc.php:454 server_status.php:256 msgid "Key cache" msgstr "Cache principal" -#: libraries/messages.inc.php:462 libraries/mysql_charsets.lib.php:268 +#: libraries/messages.inc.php:458 libraries/mysql_charsets.lib.php:268 #: libraries/mysql_charsets.lib.php:371 msgid "Korean" msgstr "Coreano" -#: libraries/messages.inc.php:466 libraries/select_lang.lib.php:480 +#: libraries/messages.inc.php:462 libraries/select_lang.lib.php:480 #: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492 #, php-format msgid "Unknown language: %1$s." msgstr "Idioma desconocido: %1$s." -#: libraries/messages.inc.php:468 +#: libraries/messages.inc.php:464 msgid "Table caption" msgstr "Subtitulado de la tabla" -#: libraries/messages.inc.php:469 +#: libraries/messages.inc.php:465 msgid "Content of table __TABLE__" msgstr "Contenido de la tabla __TABLE__" -#: libraries/messages.inc.php:470 +#: libraries/messages.inc.php:466 msgid "Continued table caption" msgstr "Continuación del subtitulado de la tabla" -#: libraries/messages.inc.php:471 +#: libraries/messages.inc.php:467 msgid "(continued)" msgstr "(continúa)" -#: libraries/messages.inc.php:472 +#: libraries/messages.inc.php:468 msgid "Include table caption" msgstr "Incluir el subtitulado de la tabla" -#: libraries/messages.inc.php:473 +#: libraries/messages.inc.php:469 msgid "Label key" msgstr "Clave de la etiqueta" -#: libraries/messages.inc.php:474 +#: libraries/messages.inc.php:470 msgid "LaTeX" msgstr "LaTeX" -#: libraries/messages.inc.php:475 +#: libraries/messages.inc.php:471 msgid "Structure of table __TABLE__" msgstr "Estructura de la tabla __TABLE__" -#: libraries/messages.inc.php:476 libraries/mysql_charsets.lib.php:262 +#: libraries/messages.inc.php:472 libraries/mysql_charsets.lib.php:262 msgid "Latvian" msgstr "Letón" -#: libraries/messages.inc.php:477 +#: libraries/messages.inc.php:473 msgid "CSV using LOAD DATA" msgstr "CSV usando LOAD DATA" -#: libraries/messages.inc.php:478 +#: libraries/messages.inc.php:474 msgid "Use LOCAL keyword" msgstr "Use la palabra clave LOCAL" -#: libraries/messages.inc.php:479 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:475 libraries/tbl_properties.inc.php:105 msgid "Length/Values" msgstr "Longitud/Valores*" -#: libraries/messages.inc.php:480 tbl_select.php:295 +#: libraries/messages.inc.php:476 tbl_select.php:295 msgid "Number of rows per page" msgstr "registros por página" -#: libraries/messages.inc.php:484 libraries/mysql_charsets.lib.php:265 +#: libraries/messages.inc.php:480 libraries/mysql_charsets.lib.php:265 msgid "Lithuanian" msgstr "Lituano" -#: libraries/messages.inc.php:485 libraries/replication_gui.lib.php:302 +#: libraries/messages.inc.php:481 libraries/replication_gui.lib.php:302 #: server_privileges.php:729 msgid "Local" msgstr "Local" -#: libraries/messages.inc.php:487 server_privileges.php:669 +#: libraries/messages.inc.php:483 server_privileges.php:669 msgid "Login Information" msgstr "Información de la cuenta" -#: libraries/messages.inc.php:490 libraries/navigation_header.inc.php:67 +#: libraries/messages.inc.php:486 libraries/navigation_header.inc.php:67 #: libraries/navigation_header.inc.php:70 #: libraries/navigation_header.inc.php:71 main.php:99 msgid "Log out" msgstr "Salir" -#: libraries/messages.inc.php:497 server_status.php:440 +#: libraries/messages.inc.php:493 server_status.php:440 msgid "max. concurrent connections" msgstr "Número máx. de conexiones concurrentes" -#: libraries/messages.inc.php:498 +#: libraries/messages.inc.php:494 msgid "Maximal length of created query" msgstr "Longitud máxima de la consulta creada" -#: libraries/messages.inc.php:500 main.php:282 +#: libraries/messages.inc.php:496 main.php:282 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -4277,7 +4277,7 @@ msgstr "" "tipografía multibyte. phpMyAdmin no puede cortar correctamente las cadenas " "de caracteres sin la extensión mbstring y podría dar resultados inesperados." -#: libraries/messages.inc.php:501 main.php:274 +#: libraries/messages.inc.php:497 main.php:274 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -4287,24 +4287,24 @@ msgstr "" "opción es incompatible con phpMyAdmin y podría causar la pérdida de algunos " "datos!" -#: libraries/messages.inc.php:502 +#: libraries/messages.inc.php:498 msgid "MediaWiki Table" msgstr "" -#: libraries/messages.inc.php:503 transformation_overview.php:25 +#: libraries/messages.inc.php:499 transformation_overview.php:25 msgid "Available MIME types" msgstr "MIME-types disponibles" -#: libraries/messages.inc.php:504 transformation_overview.php:43 +#: libraries/messages.inc.php:500 transformation_overview.php:43 msgid "Available transformations" msgstr "Transformaciones disponibles" -#: libraries/messages.inc.php:505 +#: libraries/messages.inc.php:501 msgctxt "$strMIME_description" msgid "Description" msgstr "Descripción" -#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:580 +#: libraries/messages.inc.php:503 libraries/tbl_properties.inc.php:580 #: transformation_overview.php:60 #, php-format msgid "" @@ -4314,7 +4314,7 @@ msgstr "" "No hay una descripción disponible para esta transformación.
Por favor " "pregunte al autor lo que %s hace." -#: libraries/messages.inc.php:509 libraries/tbl_properties.inc.php:137 +#: libraries/messages.inc.php:505 libraries/tbl_properties.inc.php:137 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -4324,7 +4324,7 @@ msgstr "" "transformaciones MIME-type transformations, dé clic en %stransformation " "descriptions%s" -#: libraries/messages.inc.php:510 libraries/tbl_properties.inc.php:146 +#: libraries/messages.inc.php:506 libraries/tbl_properties.inc.php:146 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -4336,58 +4336,58 @@ msgstr "" "Backslash (\"\\\") o comilla sencilla (\"'\") entre esos valores, use " "backslash (por ejemplo '\\\\xyz' o 'a\\'b')." -#: libraries/messages.inc.php:511 libraries/tbl_properties.inc.php:145 +#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:145 msgid "Transformation options" msgstr "Opciones de transformación" -#: libraries/messages.inc.php:513 transformation_overview.php:38 +#: libraries/messages.inc.php:509 transformation_overview.php:38 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "" "MIME-types impresos en itálicas no tienen una función de transformación " "adicional" -#: libraries/messages.inc.php:515 tbl_indexes.php:162 +#: libraries/messages.inc.php:511 tbl_indexes.php:162 msgid "Modify an index" msgstr "Modificar un índice" -#: libraries/messages.inc.php:517 pmd_general.php:108 +#: libraries/messages.inc.php:513 pmd_general.php:108 msgid "Move Menu" msgstr "Mover el Menú" -#: libraries/messages.inc.php:518 tbl_operations.php:276 +#: libraries/messages.inc.php:514 tbl_operations.php:276 msgid "Move table to (database.table):" msgstr "Mover tabla a (Base de datos.tabla):" -#: libraries/messages.inc.php:519 tbl_move_copy.php:56 +#: libraries/messages.inc.php:515 tbl_move_copy.php:56 #, php-format msgid "Table %s has been moved to %s." msgstr "La tabla %s ha sido movida a %s." -#: libraries/messages.inc.php:520 tbl_move_copy.php:46 +#: libraries/messages.inc.php:516 tbl_move_copy.php:46 msgid "Can't move table to same one!" msgstr "¡No es posible mover la tabla a la misma!" -#: libraries/messages.inc.php:521 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:517 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 #: libraries/mysql_charsets.lib.php:332 libraries/mysql_charsets.lib.php:354 #: libraries/mysql_charsets.lib.php:365 msgid "multilingual" msgstr "multilingüe" -#: libraries/messages.inc.php:534 main.php:193 +#: libraries/messages.inc.php:530 main.php:193 msgid "MySQL charset" msgstr "Juegos de caracteres de MySQL" -#: libraries/messages.inc.php:535 main.php:211 +#: libraries/messages.inc.php:531 main.php:211 msgid "MySQL client version" msgstr "Versión del cliente" -#: libraries/messages.inc.php:536 main.php:125 +#: libraries/messages.inc.php:532 main.php:125 msgid "MySQL connection collation" msgstr "Cotejamiento de las conexiones MySQL" -#: libraries/messages.inc.php:537 main.php:346 +#: libraries/messages.inc.php:533 main.php:346 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -4396,55 +4396,55 @@ msgstr "" "Su versión de librería PHP MySQL %s es distinta de aquella de su versión de " "servidor MySQL %s. Esto puede ocasionar un comportamiento impredecible." -#: libraries/messages.inc.php:539 server_status.php:294 +#: libraries/messages.inc.php:535 server_status.php:294 msgid "Show processes" msgstr "Mostrar procesos" -#: libraries/messages.inc.php:545 navigation.php:210 server_databases.php:371 +#: libraries/messages.inc.php:541 navigation.php:210 server_databases.php:371 #: server_synchronize.php:1191 msgid "No databases" msgstr "No hay bases de datos" -#: libraries/messages.inc.php:546 server_databases.php:52 +#: libraries/messages.inc.php:542 server_databases.php:52 msgid "No databases selected." msgstr "No se seleccionaron bases de datos." -#: libraries/messages.inc.php:548 libraries/relation.lib.php:1173 +#: libraries/messages.inc.php:544 libraries/relation.lib.php:1173 msgid "no description" msgstr "Sin descripción" -#: libraries/messages.inc.php:552 libraries/zip_extension.lib.php:26 +#: libraries/messages.inc.php:548 libraries/zip_extension.lib.php:26 msgid "No files found inside ZIP archive!" msgstr "¡No se hallaron archivos dentro del archivo ZIP!" -#: libraries/messages.inc.php:555 tbl_indexes.php:91 +#: libraries/messages.inc.php:551 tbl_indexes.php:91 msgid "No index parts defined!" msgstr "¡No se han definido las partes del índice!" -#: libraries/messages.inc.php:556 libraries/mult_submits.inc.php:435 +#: libraries/messages.inc.php:552 libraries/mult_submits.inc.php:435 #: tbl_replace.php:331 msgid "No change" msgstr "Sin cambios" -#: libraries/messages.inc.php:557 +#: libraries/messages.inc.php:553 #, fuzzy msgctxt "$strNoneDefault" msgid "None" msgstr "Ninguna" -#: libraries/messages.inc.php:560 libraries/plugin_interface.lib.php:312 +#: libraries/messages.inc.php:556 libraries/plugin_interface.lib.php:312 msgid "This format has no options" msgstr "Este formato no tiene opciones" -#: libraries/messages.inc.php:565 user_password.php:54 +#: libraries/messages.inc.php:561 user_password.php:54 msgid "You don't have sufficient privileges to be here right now!" msgstr "¡Usted no tiene suficientes privilegios para estar aquí ahora!" -#: libraries/messages.inc.php:566 tbl_row_action.php:29 +#: libraries/messages.inc.php:562 tbl_row_action.php:29 msgid "No rows selected" msgstr "No se seleccionaron filas" -#: libraries/messages.inc.php:569 themes.php:32 +#: libraries/messages.inc.php:565 themes.php:32 #, php-format msgid "" "No themes support; please check your configuration and/or your themes in " @@ -4453,297 +4453,297 @@ msgstr "" "No existe soporte para Diseños personalizados (Themes), por favor, revise su " "configuración y/o sus temas en el directorio %s." -#: libraries/messages.inc.php:571 libraries/relation.lib.php:95 +#: libraries/messages.inc.php:567 libraries/relation.lib.php:95 msgid "not OK" msgstr "no recibió el OK" -#: libraries/messages.inc.php:572 server_synchronize.php:400 +#: libraries/messages.inc.php:568 server_synchronize.php:400 #: server_synchronize.php:839 msgid "not present" msgstr "" -#: libraries/messages.inc.php:573 pdf_pages.php:36 pdf_pages.php:42 +#: libraries/messages.inc.php:569 pdf_pages.php:36 pdf_pages.php:42 #: pdf_pages.php:48 pdf_pages.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "La tabla %s no fue hallada o no fue definida en %s" -#: libraries/messages.inc.php:574 server_privileges.php:804 +#: libraries/messages.inc.php:570 server_privileges.php:804 #: server_privileges.php:2166 msgid "No user(s) found." msgstr "Usuario(s) no encontrado(s)." -#: libraries/messages.inc.php:578 pmd_general.php:164 +#: libraries/messages.inc.php:574 pmd_general.php:164 msgid "Number of tables" msgstr "Número de tablas" -#: libraries/messages.inc.php:581 server_databases.php:117 +#: libraries/messages.inc.php:577 server_databases.php:117 #: server_status.php:260 setup/lib/messages.inc.php:117 msgid "Tables" msgstr "Tablas" -#: libraries/messages.inc.php:583 libraries/relation.lib.php:99 +#: libraries/messages.inc.php:579 libraries/relation.lib.php:99 #: pmd_general.php:340 msgid "OK" msgstr "OK" -#: libraries/messages.inc.php:585 +#: libraries/messages.inc.php:581 msgid "Open Document Text" msgstr "Texto Open Document" -#: libraries/messages.inc.php:588 tbl_select.php:138 +#: libraries/messages.inc.php:584 tbl_select.php:138 msgid "Operator" msgstr "Operador" -#: libraries/messages.inc.php:589 tbl_operations.php:662 +#: libraries/messages.inc.php:585 tbl_operations.php:662 msgid "Optimize" msgstr "Optimice" -#: libraries/messages.inc.php:602 libraries/tbl_properties.inc.php:755 +#: libraries/messages.inc.php:598 libraries/tbl_properties.inc.php:755 msgid "PARTITION definition" msgstr "definición de la PARTICIÓN" -#: libraries/messages.inc.php:603 tbl_structure.php:757 +#: libraries/messages.inc.php:599 tbl_structure.php:757 msgid "partitioned" msgstr "particionado" -#: libraries/messages.inc.php:604 tbl_operations.php:649 +#: libraries/messages.inc.php:600 tbl_operations.php:649 msgid "Partition maintenance" msgstr "Mantenimiento de la partición" -#: libraries/messages.inc.php:605 tbl_operations.php:657 +#: libraries/messages.inc.php:601 tbl_operations.php:657 #, php-format msgid "Partition %s" msgstr "Partición %s" -#: libraries/messages.inc.php:606 server_privileges.php:1212 +#: libraries/messages.inc.php:602 server_privileges.php:1212 #, php-format msgid "The password for %s was changed successfully." msgstr "La contraseña para %s se cambió exitosamente." -#: libraries/messages.inc.php:635 +#: libraries/messages.inc.php:631 #, php-format msgid "Schema of the \"%s\" database - Page %s" msgstr "Esquema de la base de datos \"%s\" - Página %s" -#: libraries/messages.inc.php:636 +#: libraries/messages.inc.php:632 #, php-format msgid "The \"%s\" table doesn't exist!" msgstr "¡La tabla \"%s\" no existe!" -#: libraries/messages.inc.php:637 pdf_schema.php:1013 +#: libraries/messages.inc.php:633 pdf_schema.php:1013 msgid "No tables" msgstr "No existen tablas" -#: libraries/messages.inc.php:638 pmd_pdf.php:63 +#: libraries/messages.inc.php:634 pmd_pdf.php:63 #, fuzzy msgid "Page has been created" msgstr "La Tabla %1$s se creó." -#: libraries/messages.inc.php:639 pmd_pdf.php:65 +#: libraries/messages.inc.php:635 pmd_pdf.php:65 msgid "Page creation failed" msgstr "" -#: libraries/messages.inc.php:640 +#: libraries/messages.inc.php:636 msgid "PDF" msgstr "PDF" -#: libraries/messages.inc.php:641 +#: libraries/messages.inc.php:637 msgid "(Generates a report containing the data of a single table)" msgstr "(Genera un reporte conteniendo los datos de una sola tabla)" -#: libraries/messages.inc.php:642 +#: libraries/messages.inc.php:638 msgid "Report title" msgstr "Título del reporte" -#: libraries/messages.inc.php:643 server_status.php:389 server_status.php:434 +#: libraries/messages.inc.php:639 server_status.php:389 server_status.php:434 #: server_status.php:497 server_status.php:555 msgid "per hour" msgstr "por hora" -#: libraries/messages.inc.php:644 server_status.php:498 +#: libraries/messages.inc.php:640 server_status.php:498 msgid "per minute" msgstr "por minuto" -#: libraries/messages.inc.php:645 server_status.php:499 +#: libraries/messages.inc.php:641 server_status.php:499 msgid "per second" msgstr "por segundo" -#: libraries/messages.inc.php:646 libraries/mysql_charsets.lib.php:271 +#: libraries/messages.inc.php:642 libraries/mysql_charsets.lib.php:271 msgid "Persian" msgstr "Persa" -#: libraries/messages.inc.php:647 libraries/mysql_charsets.lib.php:250 +#: libraries/messages.inc.php:643 libraries/mysql_charsets.lib.php:250 msgid "phone book" msgstr "directorio telefónico" -#: libraries/messages.inc.php:648 +#: libraries/messages.inc.php:644 msgid "PHP array" msgstr "" -#: libraries/messages.inc.php:650 main.php:213 +#: libraries/messages.inc.php:646 main.php:213 msgid "PHP extension" msgstr "extensión PHP" -#: libraries/messages.inc.php:654 libraries/relation.lib.php:163 +#: libraries/messages.inc.php:650 libraries/relation.lib.php:163 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/messages.inc.php:655 libraries/relation.lib.php:159 +#: libraries/messages.inc.php:651 libraries/relation.lib.php:159 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/messages.inc.php:656 libraries/relation.lib.php:161 +#: libraries/messages.inc.php:652 libraries/relation.lib.php:161 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" -#: libraries/messages.inc.php:657 libraries/relation.lib.php:162 +#: libraries/messages.inc.php:653 libraries/relation.lib.php:162 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/messages.inc.php:658 libraries/relation.lib.php:164 +#: libraries/messages.inc.php:654 libraries/relation.lib.php:164 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/messages.inc.php:661 libraries/mysql_charsets.lib.php:274 +#: libraries/messages.inc.php:657 libraries/mysql_charsets.lib.php:274 msgid "Polish" msgstr "Polaco" -#: libraries/messages.inc.php:662 libraries/replication_gui.lib.php:67 +#: libraries/messages.inc.php:658 libraries/replication_gui.lib.php:67 #: server_synchronize.php:1163 #, fuzzy msgid "Port" msgstr "Ordenar" -#: libraries/messages.inc.php:667 tbl_indexes.php:67 +#: libraries/messages.inc.php:663 tbl_indexes.php:67 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "El nombre de la clave primaria debe ser \\\"PRIMARY\\\"" -#: libraries/messages.inc.php:668 tbl_indexes.php:184 +#: libraries/messages.inc.php:664 tbl_indexes.php:184 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" "(\"PRIMARY\" exclusivamente debe ser el nombre de ¡una clave " "primaria!)" -#: libraries/messages.inc.php:669 libraries/mult_submits.inc.php:76 +#: libraries/messages.inc.php:665 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:474 msgid "Primary" msgstr "Primaria" -#: libraries/messages.inc.php:673 server_privileges.php:227 +#: libraries/messages.inc.php:669 server_privileges.php:227 msgid "Includes all privileges except GRANT." msgstr "Incluye todos los privilegios excepto GRANT (CONCEDER)." -#: libraries/messages.inc.php:674 server_privileges.php:153 +#: libraries/messages.inc.php:670 server_privileges.php:153 #: server_privileges.php:476 msgid "Allows altering the structure of existing tables." msgstr "Permite alterar la estructura de las tablas existentes." -#: libraries/messages.inc.php:675 server_privileges.php:169 +#: libraries/messages.inc.php:671 server_privileges.php:169 #: server_privileges.php:482 msgid "Allows altering and dropping stored routines." msgstr "Permite alterar y eliminar las rutinas almacenadas." -#: libraries/messages.inc.php:676 server_privileges.php:145 +#: libraries/messages.inc.php:672 server_privileges.php:145 #: server_privileges.php:475 msgid "Allows creating new databases and tables." msgstr "Permite crear nuevas bases de datos y tablas." -#: libraries/messages.inc.php:677 server_privileges.php:168 +#: libraries/messages.inc.php:673 server_privileges.php:168 #: server_privileges.php:481 msgid "Allows creating stored routines." msgstr "Permite crear el almacenamiento de rutinas." -#: libraries/messages.inc.php:678 server_privileges.php:475 +#: libraries/messages.inc.php:674 server_privileges.php:475 msgid "Allows creating new tables." msgstr "Permite la creación de tablas nuevas." -#: libraries/messages.inc.php:679 server_privileges.php:156 +#: libraries/messages.inc.php:675 server_privileges.php:156 #: server_privileges.php:479 msgid "Allows creating temporary tables." msgstr "Permite la creación de tablas temporales." -#: libraries/messages.inc.php:680 server_privileges.php:170 +#: libraries/messages.inc.php:676 server_privileges.php:170 #: server_privileges.php:515 msgid "Allows creating, dropping and renaming user accounts." msgstr "Permite crear, eliminar y cambiar el nombre de las cuentas de usuario." -#: libraries/messages.inc.php:681 server_privileges.php:160 +#: libraries/messages.inc.php:677 server_privileges.php:160 #: server_privileges.php:164 server_privileges.php:487 #: server_privileges.php:491 msgid "Allows creating new views." msgstr "Permite crear nuevas vistas." -#: libraries/messages.inc.php:682 server_privileges.php:144 +#: libraries/messages.inc.php:678 server_privileges.php:144 #: server_privileges.php:467 msgid "Allows deleting data." msgstr "Permite borrar datos." -#: libraries/messages.inc.php:683 server_privileges.php:146 +#: libraries/messages.inc.php:679 server_privileges.php:146 #: server_privileges.php:478 msgid "Allows dropping databases and tables." msgstr "Permite eliminar bases de datos y tablas." -#: libraries/messages.inc.php:684 server_privileges.php:478 +#: libraries/messages.inc.php:680 server_privileges.php:478 msgid "Allows dropping tables." msgstr "Permite eliminar tablas." -#: libraries/messages.inc.php:685 server_privileges.php:161 +#: libraries/messages.inc.php:681 server_privileges.php:161 #: server_privileges.php:495 msgid "Allows to set up events for the event scheduler" msgstr "Permite organizar los eventos para el gestor de eventos" -#: libraries/messages.inc.php:686 server_privileges.php:171 +#: libraries/messages.inc.php:682 server_privileges.php:171 #: server_privileges.php:483 msgid "Allows executing stored routines." msgstr "Permite ejecutar las rutinas almacenadas." -#: libraries/messages.inc.php:687 server_privileges.php:150 +#: libraries/messages.inc.php:683 server_privileges.php:150 #: server_privileges.php:470 msgid "Allows importing data from and exporting data into files." msgstr "Permite importar y exportar datos de y hacia archivos." -#: libraries/messages.inc.php:688 server_privileges.php:501 +#: libraries/messages.inc.php:684 server_privileges.php:501 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Permite añadir usuarios y privilegios sin conectarse nuevamente a la tabla " "de privilegios." -#: libraries/messages.inc.php:689 server_privileges.php:152 +#: libraries/messages.inc.php:685 server_privileges.php:152 #: server_privileges.php:477 msgid "Allows creating and dropping indexes." msgstr "Permite crear y eliminar índices." -#: libraries/messages.inc.php:690 server_privileges.php:142 +#: libraries/messages.inc.php:686 server_privileges.php:142 #: server_privileges.php:403 server_privileges.php:465 msgid "Allows inserting and replacing data." msgstr "Permite insertar y reemplazar datos." -#: libraries/messages.inc.php:691 server_privileges.php:157 +#: libraries/messages.inc.php:687 server_privileges.php:157 #: server_privileges.php:510 msgid "Allows locking tables for the current thread." msgstr "Permite poner candados a las tablas para el proceso actual." -#: libraries/messages.inc.php:692 server_privileges.php:607 +#: libraries/messages.inc.php:688 server_privileges.php:607 #: server_privileges.php:609 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Limita el número de conexiones nuevas que el usuario puede abrir por hora." -#: libraries/messages.inc.php:693 server_privileges.php:595 +#: libraries/messages.inc.php:689 server_privileges.php:595 #: server_privileges.php:597 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Limita el número de consultas que el usuario puede enviar al servidor por " "hora." -#: libraries/messages.inc.php:694 server_privileges.php:601 +#: libraries/messages.inc.php:690 server_privileges.php:601 #: server_privileges.php:603 msgid "" "Limits the number of commands that change any table or database the user may " @@ -4752,62 +4752,62 @@ msgstr "" "Limita el número de comandos que cambian cualquier tabla o base de datos que " "el usuario puede ejecutar por hora." -#: libraries/messages.inc.php:695 server_privileges.php:613 +#: libraries/messages.inc.php:691 server_privileges.php:613 #: server_privileges.php:615 msgid "Limits the number of simultaneous connections the user may have." msgstr "Limita el número de conexiones simultáneas que el usuario pueda tener." -#: libraries/messages.inc.php:696 server_privileges.php:149 +#: libraries/messages.inc.php:692 server_privileges.php:149 #: server_privileges.php:505 msgid "Allows viewing processes of all users" msgstr "Permite ver los procesos de todos los usuarios" -#: libraries/messages.inc.php:697 server_privileges.php:151 +#: libraries/messages.inc.php:693 server_privileges.php:151 #: server_privileges.php:409 server_privileges.php:511 msgid "Has no effect in this MySQL version." msgstr "No tiene efecto en esta versión de MySQL." -#: libraries/messages.inc.php:698 server_privileges.php:147 +#: libraries/messages.inc.php:694 server_privileges.php:147 #: server_privileges.php:506 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Permite volver a cargar los parámetros del servidor y depurar los cachés del " "servidor." -#: libraries/messages.inc.php:699 server_privileges.php:159 +#: libraries/messages.inc.php:695 server_privileges.php:159 #: server_privileges.php:513 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Da el derecho al usuario para preguntar dónde están los \"esclavos / masters" "\"." -#: libraries/messages.inc.php:700 server_privileges.php:158 +#: libraries/messages.inc.php:696 server_privileges.php:158 #: server_privileges.php:514 msgid "Needed for the replication slaves." msgstr "Necesario para los \"esclavos\" de replicación." -#: libraries/messages.inc.php:701 server_privileges.php:141 +#: libraries/messages.inc.php:697 server_privileges.php:141 #: server_privileges.php:400 server_privileges.php:464 msgid "Allows reading data." msgstr "Permite leer los datos." -#: libraries/messages.inc.php:702 server_privileges.php:154 +#: libraries/messages.inc.php:698 server_privileges.php:154 #: server_privileges.php:508 msgid "Gives access to the complete list of databases." msgstr "Concede acceso a la lista completa de bases de datos." -#: libraries/messages.inc.php:703 server_privileges.php:165 +#: libraries/messages.inc.php:699 server_privileges.php:165 #: server_privileges.php:167 server_privileges.php:480 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" "Permite llevar a cabo las consultas SHOW CREATE VIEW (MOSTRAR CREAR VER)." -#: libraries/messages.inc.php:704 server_privileges.php:148 +#: libraries/messages.inc.php:700 server_privileges.php:148 #: server_privileges.php:507 msgid "Allows shutting down the server." msgstr "Permite desconectar el servidor." -#: libraries/messages.inc.php:705 server_privileges.php:155 +#: libraries/messages.inc.php:701 server_privileges.php:155 #: server_privileges.php:504 msgid "" "Allows connecting, even if maximum number of connections is reached; " @@ -4819,55 +4819,55 @@ msgstr "" "tales como montar parámetros de variables globales o matar procesos de otros " "usuarios." -#: libraries/messages.inc.php:706 server_privileges.php:162 +#: libraries/messages.inc.php:702 server_privileges.php:162 #: server_privileges.php:496 msgid "Allows creating and dropping triggers" msgstr "Permite crear y eliminar un evento desencadenante" -#: libraries/messages.inc.php:707 server_privileges.php:143 +#: libraries/messages.inc.php:703 server_privileges.php:143 #: server_privileges.php:406 server_privileges.php:466 msgid "Allows changing data." msgstr "Permite cambiar los datos." -#: libraries/messages.inc.php:708 server_privileges.php:221 +#: libraries/messages.inc.php:704 server_privileges.php:221 msgid "No privileges." msgstr "Sin privilegios." -#: libraries/messages.inc.php:710 server_privileges.php:1296 +#: libraries/messages.inc.php:706 server_privileges.php:1296 msgid "The privileges were reloaded successfully." msgstr "Los privilegios fueron cargados nuevamente de manera exitosa." -#: libraries/messages.inc.php:712 libraries/server_links.inc.php:80 +#: libraries/messages.inc.php:708 libraries/server_links.inc.php:80 msgid "Processes" msgstr "Procesos" -#: libraries/messages.inc.php:714 main.php:187 +#: libraries/messages.inc.php:710 main.php:187 msgid "Protocol version" msgstr "Versión del protocolo" -#: libraries/messages.inc.php:715 +#: libraries/messages.inc.php:711 msgid "Put fields names in the first row" msgstr "Poner los nombres de campo en la primera hilera" -#: libraries/messages.inc.php:720 server_synchronize.php:1003 +#: libraries/messages.inc.php:716 server_synchronize.php:1003 msgid "The following queries have been executed:" msgstr "" -#: libraries/messages.inc.php:721 server_status.php:251 +#: libraries/messages.inc.php:717 server_status.php:251 msgid "Query cache" msgstr "Cache de consultas" -#: libraries/messages.inc.php:722 libraries/navigation_header.inc.php:80 +#: libraries/messages.inc.php:718 libraries/navigation_header.inc.php:80 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 setup/lib/messages.inc.php:122 msgid "Query window" msgstr "Ventana de consulta" -#: libraries/messages.inc.php:725 querywindow.php:109 querywindow.php:217 +#: libraries/messages.inc.php:721 querywindow.php:109 querywindow.php:217 msgid "SQL history" msgstr "Historial-SQL" -#: libraries/messages.inc.php:726 server_status.php:490 +#: libraries/messages.inc.php:722 server_status.php:490 #, php-format msgid "" "Query statistics: Since its startup, %s queries have been sent to the " @@ -4876,139 +4876,139 @@ msgstr "" "Estadísticas de consulta: Desde su inicio, %s consultas han sido " "enviadas al servidor." -#: libraries/messages.inc.php:728 server_status.php:554 +#: libraries/messages.inc.php:724 server_status.php:554 msgid "Query type" msgstr "Tipo de consulta" -#: libraries/messages.inc.php:729 libraries/sql_query_form.lib.php:381 +#: libraries/messages.inc.php:725 libraries/sql_query_form.lib.php:381 msgid "Do not overwrite this query from outside the window" msgstr "No sobreescribir esta consulta desde fuera de la ventana" -#: libraries/messages.inc.php:732 tbl_operations.php:663 +#: libraries/messages.inc.php:728 tbl_operations.php:663 msgid "Rebuild" msgstr "Reconstruya" -#: libraries/messages.inc.php:733 server_status.php:394 +#: libraries/messages.inc.php:729 server_status.php:394 msgid "Received" msgstr "Recibido" -#: libraries/messages.inc.php:734 pmd_pdf.php:89 +#: libraries/messages.inc.php:730 pmd_pdf.php:89 msgid "recommended" msgstr "recomendado" -#: libraries/messages.inc.php:736 tbl_operations.php:702 +#: libraries/messages.inc.php:732 tbl_operations.php:702 msgid "Check referential integrity:" msgstr "Comprobar la integridad referencial:" -#: libraries/messages.inc.php:740 pdf_schema.php:1032 pdf_schema.php:1141 +#: libraries/messages.inc.php:736 pdf_schema.php:1032 pdf_schema.php:1141 msgid "Relational schema" msgstr "Esquema relacionado" -#: libraries/messages.inc.php:744 tbl_relation.php:399 +#: libraries/messages.inc.php:740 tbl_relation.php:399 msgid "Relations" msgstr "Relaciones" -#: libraries/messages.inc.php:745 tbl_structure.php:507 tbl_structure.php:509 +#: libraries/messages.inc.php:741 tbl_structure.php:507 tbl_structure.php:509 msgid "Relation view" msgstr "Vista de relaciones" -#: libraries/messages.inc.php:746 server_privileges.php:1246 +#: libraries/messages.inc.php:742 server_privileges.php:1246 msgid "Reloading the privileges" msgstr "Cargando los privilegios nuevamente" -#: libraries/messages.inc.php:747 navigation.php:66 navigation.php:67 +#: libraries/messages.inc.php:743 navigation.php:66 navigation.php:67 #: navigation.php:70 #, fuzzy msgid "Reload navigation frame" msgstr "Personalizar el marco de navegación" -#: libraries/messages.inc.php:748 pmd_general.php:80 +#: libraries/messages.inc.php:744 pmd_general.php:80 msgid "Reload" msgstr "Cargar nuevamente" -#: libraries/messages.inc.php:749 libraries/server_synchronize.lib.php:1345 +#: libraries/messages.inc.php:745 libraries/server_synchronize.lib.php:1345 #: libraries/server_synchronize.lib.php:1371 #, fuzzy msgid "Remote server" msgstr "Nuevo servidor" -#: libraries/messages.inc.php:750 +#: libraries/messages.inc.php:746 msgid "Remove CRLF characters within fields" msgstr "" -#: libraries/messages.inc.php:751 tbl_operations.php:676 +#: libraries/messages.inc.php:747 tbl_operations.php:676 msgid "Remove partitioning" msgstr "Remueva la partición" -#: libraries/messages.inc.php:752 server_privileges.php:1575 +#: libraries/messages.inc.php:748 server_privileges.php:1575 msgid "Remove selected users" msgstr "Eliminar a los usuarios seleccionados" -#: libraries/messages.inc.php:755 tbl_operations.php:338 +#: libraries/messages.inc.php:751 tbl_operations.php:338 msgid "Rename table to" msgstr "Cambiar el nombre de la tabla a" -#: libraries/messages.inc.php:756 view_operations.php:93 +#: libraries/messages.inc.php:752 view_operations.php:93 #, fuzzy msgid "Rename view to" msgstr "Cambiar el nombre de la tabla a" -#: libraries/messages.inc.php:757 tbl_operations.php:664 +#: libraries/messages.inc.php:753 tbl_operations.php:664 msgid "Repair" msgstr "Repare" -#: libraries/messages.inc.php:759 +#: libraries/messages.inc.php:755 msgid "Replace NULL by" msgstr "Reemplazar NULL con" -#: libraries/messages.inc.php:760 +#: libraries/messages.inc.php:756 msgid "Replace table data with file" msgstr "Reemplazar los datos de la tabla con los del archivo" -#: libraries/messages.inc.php:761 server_replication.php:228 +#: libraries/messages.inc.php:757 server_replication.php:228 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: libraries/messages.inc.php:762 libraries/replication_gui.lib.php:236 +#: libraries/messages.inc.php:758 libraries/replication_gui.lib.php:236 #: server_replication.php:194 msgid "Add slave replication user" msgstr "" -#: libraries/messages.inc.php:763 server_replication.php:74 +#: libraries/messages.inc.php:759 server_replication.php:74 #, php-format msgid "Master server changed succesfully to %s" msgstr "" -#: libraries/messages.inc.php:764 server_replication.php:182 +#: libraries/messages.inc.php:760 server_replication.php:182 msgid "This server is configured as master in a replication process." msgstr "" -#: libraries/messages.inc.php:765 server_replication.php:322 +#: libraries/messages.inc.php:761 server_replication.php:322 #, fuzzy msgid "Control slave:" msgstr "Controlar al usuario" -#: libraries/messages.inc.php:766 server_replication.php:65 +#: libraries/messages.inc.php:762 server_replication.php:65 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: libraries/messages.inc.php:767 server_replication.php:58 +#: libraries/messages.inc.php:763 server_replication.php:58 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: libraries/messages.inc.php:768 server_replication.php:221 +#: libraries/messages.inc.php:764 server_replication.php:221 msgid "Replicate all databases; Ignore:" msgstr "" -#: libraries/messages.inc.php:769 server_replication.php:222 +#: libraries/messages.inc.php:765 server_replication.php:222 msgid "Ignore all databases; Replicate:" msgstr "" -#: libraries/messages.inc.php:770 server_replication.php:218 +#: libraries/messages.inc.php:766 server_replication.php:218 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -5017,126 +5017,126 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: libraries/messages.inc.php:771 server_replication.php:217 +#: libraries/messages.inc.php:767 server_replication.php:217 #, fuzzy msgid "Master configuration" msgstr "Configuración del servidor" -#: libraries/messages.inc.php:772 server_replication.php:181 +#: libraries/messages.inc.php:768 server_replication.php:181 #: server_replication.php:209 #, fuzzy msgid "Master replication" msgstr "Configuración del servidor" -#: libraries/messages.inc.php:774 server_replication.php:230 +#: libraries/messages.inc.php:770 server_replication.php:230 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: libraries/messages.inc.php:775 server_replication.php:225 +#: libraries/messages.inc.php:771 server_replication.php:225 #, fuzzy msgid "Please select databases:" msgstr "Seleccionar una base de datos" -#: libraries/messages.inc.php:776 server_replication.php:210 +#: libraries/messages.inc.php:772 server_replication.php:210 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:188 +#: libraries/messages.inc.php:773 libraries/replication_gui.lib.php:188 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/messages.inc.php:778 server_replication.php:187 +#: libraries/messages.inc.php:774 server_replication.php:187 msgid "Show connected slaves" msgstr "" -#: libraries/messages.inc.php:779 libraries/messages.inc.php:885 +#: libraries/messages.inc.php:775 libraries/messages.inc.php:881 #: server_replication.php:184 server_status.php:281 #, fuzzy msgid "Show master status" msgstr "Mostrar el estado del esclavo" -#: libraries/messages.inc.php:780 server_replication.php:334 +#: libraries/messages.inc.php:776 server_replication.php:334 msgid "Skipping error(s) might lead into unsynchronized master and slave!" msgstr "" -#: libraries/messages.inc.php:781 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:51 #: server_replication.php:347 msgid "Change or reconfigure master server" msgstr "" -#: libraries/messages.inc.php:782 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:778 libraries/replication_gui.lib.php:51 #, fuzzy msgid "Slave configuration" msgstr "Configuración del servidor" -#: libraries/messages.inc.php:783 server_replication.php:305 +#: libraries/messages.inc.php:779 server_replication.php:305 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: libraries/messages.inc.php:784 server_replication.php:332 +#: libraries/messages.inc.php:780 server_replication.php:332 msgid "Error management:" msgstr "" -#: libraries/messages.inc.php:785 server_replication.php:328 +#: libraries/messages.inc.php:781 server_replication.php:328 #, php-format msgid "IO Thread %s only" msgstr "" -#: libraries/messages.inc.php:786 server_replication.php:296 +#: libraries/messages.inc.php:782 server_replication.php:296 msgid "Slave IO Thread not running!" msgstr "" -#: libraries/messages.inc.php:787 server_replication.php:355 +#: libraries/messages.inc.php:783 server_replication.php:355 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/messages.inc.php:788 server_replication.php:326 +#: libraries/messages.inc.php:784 server_replication.php:326 msgid "Reset slave" msgstr "" -#: libraries/messages.inc.php:789 server_replication.php:308 +#: libraries/messages.inc.php:785 server_replication.php:308 msgid "See slave status table" msgstr "" -#: libraries/messages.inc.php:790 server_replication.php:336 +#: libraries/messages.inc.php:786 server_replication.php:336 msgid "Skip current error" msgstr "" -#: libraries/messages.inc.php:791 server_replication.php:340 +#: libraries/messages.inc.php:787 server_replication.php:340 msgid "errors." msgstr "" -#: libraries/messages.inc.php:792 server_replication.php:337 +#: libraries/messages.inc.php:788 server_replication.php:337 msgid "Skip next" msgstr "" -#: libraries/messages.inc.php:793 server_replication.php:248 +#: libraries/messages.inc.php:789 server_replication.php:248 #, fuzzy msgid "Slave replication" msgstr "Configuración del servidor" -#: libraries/messages.inc.php:794 server_replication.php:293 +#: libraries/messages.inc.php:790 server_replication.php:293 msgid "Slave SQL Thread not running!" msgstr "" -#: libraries/messages.inc.php:795 server_replication.php:327 +#: libraries/messages.inc.php:791 server_replication.php:327 #, php-format msgid "SQL Thread %s only" msgstr "" -#: libraries/messages.inc.php:796 +#: libraries/messages.inc.php:792 #, php-format msgid "" "This MySQL server works as %s in replication process. For further " @@ -5144,165 +5144,165 @@ msgid "" "\"#replication\">replication section." msgstr "" -#: libraries/messages.inc.php:797 +#: libraries/messages.inc.php:793 #, fuzzy msgid "Master status" msgstr "Mostrar el estado del esclavo" -#: libraries/messages.inc.php:798 server_status.php:721 +#: libraries/messages.inc.php:794 server_status.php:721 #, fuzzy msgid "Replication status" msgstr "Replicación" -#: libraries/messages.inc.php:799 +#: libraries/messages.inc.php:795 #, fuzzy msgid "Slave status" msgstr "Mostrar el estado del esclavo" -#: libraries/messages.inc.php:800 server_replication.php:311 +#: libraries/messages.inc.php:796 server_replication.php:311 msgid "Synchronize databases with master" msgstr "" -#: libraries/messages.inc.php:801 server_replication.php:71 +#: libraries/messages.inc.php:797 server_replication.php:71 msgid "Unable to change master" msgstr "" -#: libraries/messages.inc.php:802 server_replication.php:51 +#: libraries/messages.inc.php:798 server_replication.php:51 msgid "Unknown error" msgstr "" -#: libraries/messages.inc.php:803 main.php:163 pdf_pages.php:344 +#: libraries/messages.inc.php:799 main.php:163 pdf_pages.php:344 #: setup/lib/FormDisplay.tpl.php:216 tbl_change.php:1175 msgid "Reset" msgstr "Reiniciar" -#: libraries/messages.inc.php:804 server_privileges.php:591 +#: libraries/messages.inc.php:800 server_privileges.php:591 msgid "Resource limits" msgstr "Límites de recursos" -#: libraries/messages.inc.php:805 tbl_change.php:1209 +#: libraries/messages.inc.php:801 tbl_change.php:1209 #, php-format msgid "Restart insertion with %s rows" msgstr "Reinicie la inserción con %s filas" -#: libraries/messages.inc.php:807 server_privileges.php:1578 +#: libraries/messages.inc.php:803 server_privileges.php:1578 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Revocar todos los privilegios activos de los usuarios y borrarlos después." -#: libraries/messages.inc.php:808 server_privileges.php:1176 +#: libraries/messages.inc.php:804 server_privileges.php:1176 #, php-format msgid "You have revoked the privileges for %s" msgstr "Ha revocado los privilegios para %s" -#: libraries/messages.inc.php:809 server_privileges.php:1333 +#: libraries/messages.inc.php:805 server_privileges.php:1333 msgid "Revoke" msgstr "Revocar" -#: libraries/messages.inc.php:810 libraries/mysql_charsets.lib.php:280 +#: libraries/messages.inc.php:806 libraries/mysql_charsets.lib.php:280 msgid "Romanian" msgstr "Rumano" -#: libraries/messages.inc.php:813 tbl_printview.php:404 tbl_structure.php:786 +#: libraries/messages.inc.php:809 tbl_printview.php:404 tbl_structure.php:786 msgid "Row length" msgstr "Longitud de la fila" -#: libraries/messages.inc.php:815 tbl_printview.php:414 tbl_structure.php:794 +#: libraries/messages.inc.php:811 tbl_printview.php:414 tbl_structure.php:794 msgid " Row size " msgstr " Tamaño de la fila " -#: libraries/messages.inc.php:821 tbl_printview.php:366 tbl_structure.php:726 +#: libraries/messages.inc.php:817 tbl_printview.php:366 tbl_structure.php:726 msgid "Row Statistics" msgstr "Estadísticas de la fila" -#: libraries/messages.inc.php:822 +#: libraries/messages.inc.php:818 #, php-format msgid "running on %s" msgstr "ejecutándose en %s" -#: libraries/messages.inc.php:824 libraries/sql_query_form.lib.php:223 +#: libraries/messages.inc.php:820 libraries/sql_query_form.lib.php:223 #, php-format msgid "Run SQL query/queries on server %s" msgstr "Ejecute la o las consultas SQL en el servidor %s" -#: libraries/messages.inc.php:825 libraries/sql_query_form.lib.php:240 +#: libraries/messages.inc.php:821 libraries/sql_query_form.lib.php:240 #: libraries/sql_query_form.lib.php:265 #, php-format msgid "Run SQL query/queries on database %s" msgstr "Ejecutar la(s) consulta(s) SQL en la base de datos %s" -#: libraries/messages.inc.php:826 libraries/mysql_charsets.lib.php:337 +#: libraries/messages.inc.php:822 libraries/mysql_charsets.lib.php:337 msgid "Russian" msgstr "Ruso" -#: libraries/messages.inc.php:829 pmd_general.php:68 +#: libraries/messages.inc.php:825 pmd_general.php:68 msgid "Save position" msgstr "Guardar posición" -#: libraries/messages.inc.php:830 libraries/tbl_properties.inc.php:776 +#: libraries/messages.inc.php:826 libraries/tbl_properties.inc.php:776 #: pdf_pages.php:484 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:214 setup/lib/FormDisplay.tpl.php:215 #: tbl_change.php:1126 tbl_indexes.php:248 tbl_relation.php:566 msgid "Save" msgstr "Grabar" -#: libraries/messages.inc.php:831 +#: libraries/messages.inc.php:827 msgid "The scale factor is too small to fit the schema on one page" msgstr "" "El factor de la escala es demasiado pequeño para poner el esquema en una " "página" -#: libraries/messages.inc.php:843 main.php:298 +#: libraries/messages.inc.php:839 main.php:298 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "El archivo de configuración ahora necesita salvoconducto (una frase secreta) " "(blowfish_secret)." -#: libraries/messages.inc.php:844 navigation.php:353 navigation.php:516 +#: libraries/messages.inc.php:840 navigation.php:353 navigation.php:516 msgid "Please select a database" msgstr "Seleccionar una base de datos" -#: libraries/messages.inc.php:846 server_binlog.php:120 +#: libraries/messages.inc.php:842 server_binlog.php:120 msgid "Select binary log to view" msgstr "Seleccionar el log binario que desea examinar" -#: libraries/messages.inc.php:847 tbl_select.php:270 +#: libraries/messages.inc.php:843 tbl_select.php:270 msgid "Select fields (at least one):" msgstr "Seleccionar campos (al menos uno):" -#: libraries/messages.inc.php:851 pdf_pages.php:320 +#: libraries/messages.inc.php:847 pdf_pages.php:320 msgid "Select Tables" msgstr "Seleccionar tablas" -#: libraries/messages.inc.php:853 server_status.php:404 +#: libraries/messages.inc.php:849 server_status.php:404 msgid "Sent" msgstr "Enviado" -#: libraries/messages.inc.php:857 libraries/select_server.lib.php:45 +#: libraries/messages.inc.php:853 libraries/select_server.lib.php:45 #: setup/frames/index.inc.php:97 setup/lib/messages.inc.php:115 msgid "Servers" msgstr "Servidores" -#: libraries/messages.inc.php:858 server_status.php:255 +#: libraries/messages.inc.php:854 server_status.php:255 msgid "Delayed inserts" msgstr "Delayed inserts" -#: libraries/messages.inc.php:859 server_status.php:46 +#: libraries/messages.inc.php:855 server_status.php:46 msgid "Runtime Information" msgstr "Información acerca del tiempo de ejecución del proceso principal" -#: libraries/messages.inc.php:860 server_status.php:350 +#: libraries/messages.inc.php:856 server_status.php:350 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Este servidor MySQL ha estado activo durante %s. Se inició en %s." -#: libraries/messages.inc.php:861 libraries/server_links.inc.php:53 +#: libraries/messages.inc.php:857 libraries/server_links.inc.php:53 #: server_engines.php:112 server_engines.php:116 server_status.php:304 #: test/theme.php:105 msgid "Variables" msgstr "Variables" -#: libraries/messages.inc.php:862 server_status.php:383 +#: libraries/messages.inc.php:858 server_status.php:383 msgid "" "Server traffic: These tables show the network traffic statistics of " "this MySQL server since its startup." @@ -5310,11 +5310,11 @@ msgstr "" "Tráfico del servidor: Estas tablas muestran las estadísticas de " "tráfico en la red de este servidor MySQL desde su inicio." -#: libraries/messages.inc.php:863 server_variables.php:35 +#: libraries/messages.inc.php:859 server_variables.php:35 msgid "Server variables and settings" msgstr "Variables y parámetros del servidor" -#: libraries/messages.inc.php:865 main.php:290 +#: libraries/messages.inc.php:861 main.php:290 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -5322,7 +5322,7 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: libraries/messages.inc.php:866 +#: libraries/messages.inc.php:862 msgid "" "Cannot start session without errors, please check errors given in your PHP " "and/or webserver log file and configure your PHP installation properly." @@ -5331,11 +5331,11 @@ msgstr "" "bitácora de su PHP y/o servidor web y configure correctamente su instalación " "PHP." -#: libraries/messages.inc.php:867 server_variables.php:55 +#: libraries/messages.inc.php:863 server_variables.php:55 msgid "Session value" msgstr "Valor de la sesión" -#: libraries/messages.inc.php:868 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:864 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 " @@ -5347,45 +5347,45 @@ msgstr "" "barra invertida(\"\\\") o una comilla simple (\"'\") entre esos valores, " "siempre ponga una barra invertida. (Por ejemplo '\\\\xyz' o 'a\\'b')." -#: libraries/messages.inc.php:876 server_binlog.php:192 server_binlog.php:195 +#: libraries/messages.inc.php:872 server_binlog.php:192 server_binlog.php:195 #: server_processlist.php:49 server_processlist.php:51 msgid "Show Full Queries" msgstr "Mostrar las consultas enteras" -#: libraries/messages.inc.php:878 pmd_general.php:64 +#: libraries/messages.inc.php:874 pmd_general.php:64 msgid "Show/Hide left menu" msgstr "Ocultar/mostrar menú izquierdo" -#: libraries/messages.inc.php:880 sql.php:513 +#: libraries/messages.inc.php:876 sql.php:513 msgid "Showing as PHP code" msgstr "Mostrar como código PHP" -#: libraries/messages.inc.php:882 sql.php:516 tbl_replace.php:360 +#: libraries/messages.inc.php:878 sql.php:516 tbl_replace.php:360 msgid "Showing SQL query" msgstr "Mostrando la consulta SQL" -#: libraries/messages.inc.php:883 tbl_change.php:1132 +#: libraries/messages.inc.php:879 tbl_change.php:1132 #, fuzzy msgid "Show insert query" msgstr "Mostrando la consulta SQL" -#: libraries/messages.inc.php:886 server_status.php:273 +#: libraries/messages.inc.php:882 server_status.php:273 msgid "Show open tables" msgstr "Mostrar las tablas que están abiertas" -#: libraries/messages.inc.php:887 main.php:219 +#: libraries/messages.inc.php:883 main.php:219 msgid "Show PHP information" msgstr "Mostrar la información de PHP" -#: libraries/messages.inc.php:889 server_status.php:278 +#: libraries/messages.inc.php:885 server_status.php:278 msgid "Show slave hosts" msgstr "Mostrar los hosts esclavos" -#: libraries/messages.inc.php:890 server_status.php:284 +#: libraries/messages.inc.php:886 server_status.php:284 msgid "Show slave status" msgstr "Mostrar el estado del esclavo" -#: libraries/messages.inc.php:891 +#: libraries/messages.inc.php:887 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -5395,12 +5395,12 @@ msgstr "" "que excedieron el valor del binlog_cache_size y usaron un archivo temporal " "para almacenar los enunciados de la transacción." -#: libraries/messages.inc.php:892 +#: libraries/messages.inc.php:888 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "El número de transacciones que usaron el cache de log binario temporal." -#: libraries/messages.inc.php:893 +#: libraries/messages.inc.php:889 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -5413,11 +5413,11 @@ msgstr "" "tmp_table_size para hacer que las tablas temporales se basen en memoria en " "lugar de basarse en disco." -#: libraries/messages.inc.php:894 +#: libraries/messages.inc.php:890 msgid "How many temporary files mysqld has created." msgstr "El número de archivos temporales que fueron creados por mysqld." -#: libraries/messages.inc.php:895 +#: libraries/messages.inc.php:891 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -5425,7 +5425,7 @@ msgstr "" "El número de tablas temporales in-memory creadas automáticamente por el " "servidor mientras se ejecutaban los enunciados." -#: libraries/messages.inc.php:896 +#: libraries/messages.inc.php:892 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -5433,7 +5433,7 @@ msgstr "" "El número de filas escritas con INSERT DELAYED en los cuales ocurrió algún " "error (probablemente una llave duplicada)." -#: libraries/messages.inc.php:897 +#: libraries/messages.inc.php:893 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -5441,23 +5441,23 @@ msgstr "" "El número de procesos gestores INSERT DELAYED en uso. Cada tabla diferente " "en la cual uno usa INSERT DELAYED recibe su propio proceso." -#: libraries/messages.inc.php:898 +#: libraries/messages.inc.php:894 msgid "The number of INSERT DELAYED rows written." msgstr "El número de filas INSERT DELAYED escritas." -#: libraries/messages.inc.php:899 +#: libraries/messages.inc.php:895 msgid "The number of executed FLUSH statements." msgstr "El número de enunciados FLUSH ejecutados." -#: libraries/messages.inc.php:900 +#: libraries/messages.inc.php:896 msgid "The number of internal COMMIT statements." msgstr "El número de enunciados COMMIT internos." -#: libraries/messages.inc.php:901 +#: libraries/messages.inc.php:897 msgid "The number of times a row was deleted from a table." msgstr "El número de veces que una fila fue eliminada de una tabla." -#: libraries/messages.inc.php:902 +#: libraries/messages.inc.php:898 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -5468,7 +5468,7 @@ msgstr "" "Handler_discover indica el número ocasiones que las tablas han sido " "descubiertas." -#: libraries/messages.inc.php:903 +#: libraries/messages.inc.php:899 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -5479,7 +5479,7 @@ msgstr "" "de escaneos completos del índice; por ejemplo, SELECT col1 FROM foo, " "asumiendo que col1 está indizado." -#: libraries/messages.inc.php:904 +#: libraries/messages.inc.php:900 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -5488,7 +5488,7 @@ msgstr "" "este valor es alto, es una buena indicación de que sus consultas y tablas " "están indizadas apropiadamente." -#: libraries/messages.inc.php:905 +#: libraries/messages.inc.php:901 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -5498,7 +5498,7 @@ msgstr "" "clave. Este se incrementa si usted está consultando una columna índice con " "un limitante de rango o si usted está haciendo un escaneo del índice." -#: libraries/messages.inc.php:906 +#: libraries/messages.inc.php:902 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -5507,7 +5507,7 @@ msgstr "" "Este método de lectura se usa principalmente para optimizar a ORDER BY ... " "DESC." -#: libraries/messages.inc.php:907 +#: libraries/messages.inc.php:903 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -5520,7 +5520,7 @@ msgstr "" "requieren que MySQL escanee tablas enteras o usted debe tener vínculos " "(joins) que no usan las llaves de manera apropiada." -#: libraries/messages.inc.php:908 +#: libraries/messages.inc.php:904 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -5533,37 +5533,37 @@ msgstr "" "o que sus consultas no están escritas para tomar ventaja de los índices que " "tiene." -#: libraries/messages.inc.php:909 +#: libraries/messages.inc.php:905 msgid "The number of internal ROLLBACK statements." msgstr "El número de enunciados ROLLBACK internos." -#: libraries/messages.inc.php:910 +#: libraries/messages.inc.php:906 msgid "The number of requests to update a row in a table." msgstr "El número de solicitudes hechas para actualizar una fila en una tabla." -#: libraries/messages.inc.php:911 +#: libraries/messages.inc.php:907 msgid "The number of requests to insert a row in a table." msgstr "El número de solicitudes hechas para insertar una fila en una tabla." -#: libraries/messages.inc.php:912 +#: libraries/messages.inc.php:908 msgid "The number of pages containing data (dirty or clean)." msgstr "El número de páginas conteniendo datos (sucias o limpias)." -#: libraries/messages.inc.php:913 +#: libraries/messages.inc.php:909 msgid "The number of pages currently dirty." msgstr "El número de páginas actualmente sucias." -#: libraries/messages.inc.php:914 +#: libraries/messages.inc.php:910 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" "El número de páginas en la memoria (búfer) de tránsito común que se ha " "solicitado sean vaciadas." -#: libraries/messages.inc.php:915 +#: libraries/messages.inc.php:911 msgid "The number of free pages." msgstr "El número de páginas libres." -#: libraries/messages.inc.php:916 +#: libraries/messages.inc.php:912 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -5573,7 +5573,7 @@ msgstr "" "InnoDB. Estas son páginas en fase de lectura o escritura o que no pueden ser " "vaciadas o removidas por alguna otra razón." -#: libraries/messages.inc.php:917 +#: libraries/messages.inc.php:913 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -5585,11 +5585,11 @@ msgstr "" "también puede ser calculado como Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: libraries/messages.inc.php:918 +#: libraries/messages.inc.php:914 msgid "Total size of buffer pool, in pages." msgstr "Tamaño total de la memoria (búfer) de tránsito común, en páginas." -#: libraries/messages.inc.php:919 +#: libraries/messages.inc.php:915 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -5598,7 +5598,7 @@ msgstr "" "una consulta va a escanear una gran porción de una tabla pero en orden " "aleatorio." -#: libraries/messages.inc.php:920 +#: libraries/messages.inc.php:916 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -5606,11 +5606,11 @@ msgstr "" "El número de read-aheads InnoDB secuenciales iniciadas. Esto sucede cuando " "InnoDB hace un escaneo secuencial de la tabla completa." -#: libraries/messages.inc.php:921 +#: libraries/messages.inc.php:917 msgid "The number of logical read requests InnoDB has done." msgstr "El número de solicitudes de lectura lógica hechas por InnoDB." -#: libraries/messages.inc.php:922 +#: libraries/messages.inc.php:918 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -5619,7 +5619,7 @@ msgstr "" "(búfer) de tránsito común y donde fue necesario hacer lectura de página " "sencilla." -#: libraries/messages.inc.php:923 +#: libraries/messages.inc.php:919 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -5634,55 +5634,55 @@ msgstr "" "esperas. Si los parámetros del tamaño de la memoria de tránsito común se " "fijaron apropiadamente, este valor será pequeño." -#: libraries/messages.inc.php:924 +#: libraries/messages.inc.php:920 msgid "The number writes done to the InnoDB buffer pool." msgstr "El número de escrituras hechas a la memoria de tránsito común InnoDB." -#: libraries/messages.inc.php:925 +#: libraries/messages.inc.php:921 msgid "The number of fsync() operations so far." msgstr "El número de operaciones fsync() hechas hasta el momento." -#: libraries/messages.inc.php:926 +#: libraries/messages.inc.php:922 msgid "The current number of pending fsync() operations." msgstr "El número actual de operaciones fsync() pendientes." -#: libraries/messages.inc.php:927 +#: libraries/messages.inc.php:923 msgid "The current number of pending reads." msgstr "El número actual de lecturas pendientes." -#: libraries/messages.inc.php:928 +#: libraries/messages.inc.php:924 msgid "The current number of pending writes." msgstr "El número actual de escrituras pendientess." -#: libraries/messages.inc.php:929 +#: libraries/messages.inc.php:925 msgid "The amount of data read so far, in bytes." msgstr "El número de datos leídos hasta el momento, en bytes." -#: libraries/messages.inc.php:930 +#: libraries/messages.inc.php:926 msgid "The total number of data reads." msgstr "El número total de lectura de datos." -#: libraries/messages.inc.php:931 +#: libraries/messages.inc.php:927 msgid "The total number of data writes." msgstr "El número total de escritura de datos." -#: libraries/messages.inc.php:932 +#: libraries/messages.inc.php:928 msgid "The amount of data written so far, in bytes." msgstr "La cantidad de datos escritas hasta el momento, en bytes." -#: libraries/messages.inc.php:933 +#: libraries/messages.inc.php:929 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "El número de escrituras doublewrite que se han ejecutado y el número de " "páginas escritas con este propósito." -#: libraries/messages.inc.php:934 +#: libraries/messages.inc.php:930 msgid "The number of doublewrite operations that have been performed." msgstr "" "El número de escrituras doublewrite que se han ejecutado y el número de " "páginas escritas con este propósito." -#: libraries/messages.inc.php:935 +#: libraries/messages.inc.php:931 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -5690,35 +5690,35 @@ msgstr "" "El número de esperas generadas porque la memoria (búfer) log fue demasiado " "pequeña y hubo que esperar a que fuera vaciada antes de continuar." -#: libraries/messages.inc.php:936 +#: libraries/messages.inc.php:932 msgid "The number of log write requests." msgstr "El número de solicitudes de escritura al log." -#: libraries/messages.inc.php:937 +#: libraries/messages.inc.php:933 msgid "The number of physical writes to the log file." msgstr "El número de escrituras físicas al archivo log." -#: libraries/messages.inc.php:938 +#: libraries/messages.inc.php:934 msgid "The number of fsync() writes done to the log file." msgstr "El número de escrituras fsyncs hechas al archivo log." -#: libraries/messages.inc.php:939 +#: libraries/messages.inc.php:935 msgid "The number of pending log file fsyncs." msgstr "El número de fsyncs pendientes al archivo log." -#: libraries/messages.inc.php:940 +#: libraries/messages.inc.php:936 msgid "Pending log file writes." msgstr "Escrituras pendientes al archivo log." -#: libraries/messages.inc.php:941 +#: libraries/messages.inc.php:937 msgid "The number of bytes written to the log file." msgstr "El número de bytes escritos al archivo log." -#: libraries/messages.inc.php:942 +#: libraries/messages.inc.php:938 msgid "The number of pages created." msgstr "El número de páginas creadas." -#: libraries/messages.inc.php:943 +#: libraries/messages.inc.php:939 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -5727,52 +5727,52 @@ msgstr "" "son contados por páginas; el tamaño de la página permite que pueda " "convertirse fácilmente a bytes." -#: libraries/messages.inc.php:944 +#: libraries/messages.inc.php:940 msgid "The number of pages read." msgstr "El número de páginas leídas." -#: libraries/messages.inc.php:945 +#: libraries/messages.inc.php:941 msgid "The number of pages written." msgstr "El número de páginas escritas." -#: libraries/messages.inc.php:946 +#: libraries/messages.inc.php:942 msgid "The number of row locks currently being waited for." msgstr "El número de row locks que actualmente están en espera." -#: libraries/messages.inc.php:947 +#: libraries/messages.inc.php:943 msgid "The average time to acquire a row lock, in milliseconds." msgstr "El tiempo promedio para adquirir un row lock, en milisegundos." -#: libraries/messages.inc.php:948 +#: libraries/messages.inc.php:944 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" "El total de tiempo invertido para adquirir los row locks, en milisegundos." -#: libraries/messages.inc.php:949 +#: libraries/messages.inc.php:945 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "El tiempo máximo para adquirir un row lock, en milisegundos." -#: libraries/messages.inc.php:950 +#: libraries/messages.inc.php:946 msgid "The number of times a row lock had to be waited for." msgstr "El número de veces que un row lock tuvo que esperarse." -#: libraries/messages.inc.php:951 +#: libraries/messages.inc.php:947 msgid "The number of rows deleted from InnoDB tables." msgstr "El número de filas eliminadas de tablas InnoDB." -#: libraries/messages.inc.php:952 +#: libraries/messages.inc.php:948 msgid "The number of rows inserted in InnoDB tables." msgstr "El número de filas insertadas en tablas InnoDB." -#: libraries/messages.inc.php:953 +#: libraries/messages.inc.php:949 msgid "The number of rows read from InnoDB tables." msgstr "El número de filas leídas de las tablas InnoDB." -#: libraries/messages.inc.php:954 +#: libraries/messages.inc.php:950 msgid "The number of rows updated in InnoDB tables." msgstr "El número de filas actualizadas en tablas InnoDB." -#: libraries/messages.inc.php:955 +#: libraries/messages.inc.php:951 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -5780,7 +5780,7 @@ msgstr "" "El número de key blocks en el key cache que han cambiado pero que aún no han " "sido vaciados al disco. Antes se conocía como Not_flushed_key_blocks." -#: libraries/messages.inc.php:956 +#: libraries/messages.inc.php:952 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -5788,7 +5788,7 @@ msgstr "" "El número de bloques sin usar en el key cache. Puede usar este valor para " "determinar cuánto del key cache está en uso." -#: libraries/messages.inc.php:957 +#: libraries/messages.inc.php:953 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -5798,11 +5798,11 @@ msgstr "" "desbordamiento que indica el número máximo de bloques que algún momento se " "llegaron a usar." -#: libraries/messages.inc.php:958 +#: libraries/messages.inc.php:954 msgid "The number of requests to read a key block from the cache." msgstr "El número de solicitudes para leer un key block desde el cache." -#: libraries/messages.inc.php:959 +#: libraries/messages.inc.php:955 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -5813,15 +5813,15 @@ msgstr "" "pequeño. La tasa de fallos en el cache puede calcularse como Key_reads/" "Key_read_requests." -#: libraries/messages.inc.php:960 +#: libraries/messages.inc.php:956 msgid "The number of requests to write a key block to the cache." msgstr "El número de solicitudes para escribir un key block al cache." -#: libraries/messages.inc.php:961 +#: libraries/messages.inc.php:957 msgid "The number of physical writes of a key block to disk." msgstr "El número de escrituras físicas a un key block al disco." -#: libraries/messages.inc.php:962 +#: libraries/messages.inc.php:958 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -5832,11 +5832,11 @@ msgstr "" "planes de consulta para una misma consulta. El valor por omisión de 0 " "significa que ninguna consulta ha sido compilada todavía." -#: libraries/messages.inc.php:963 +#: libraries/messages.inc.php:959 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "El número de filas esperando ser escritas en las colas INSERT DELAYED." -#: libraries/messages.inc.php:964 +#: libraries/messages.inc.php:960 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -5844,37 +5844,37 @@ msgstr "" "El número de tablas que han sido abiertas. Si el número de tablas abiertas " "es grande, su valor del cache de tabla probablemente es muy pequeño." -#: libraries/messages.inc.php:965 +#: libraries/messages.inc.php:961 msgid "The number of files that are open." msgstr "El número de archivos que están abiertos." -#: libraries/messages.inc.php:966 +#: libraries/messages.inc.php:962 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "El número de flujos de datos que están abiertos (usado principalmente para " "alimentar a los logs)." -#: libraries/messages.inc.php:967 +#: libraries/messages.inc.php:963 msgid "The number of tables that are open." msgstr "El número de tablas que están abiertas." -#: libraries/messages.inc.php:968 +#: libraries/messages.inc.php:964 msgid "The number of free memory blocks in query cache." msgstr "El número de bloques de memoria libre en el cache de consultas." -#: libraries/messages.inc.php:969 +#: libraries/messages.inc.php:965 msgid "The amount of free memory for query cache." msgstr "La cantidad de memoria libre para el cache de consultas." -#: libraries/messages.inc.php:970 +#: libraries/messages.inc.php:966 msgid "The number of cache hits." msgstr "El número de hits al cache." -#: libraries/messages.inc.php:971 +#: libraries/messages.inc.php:967 msgid "The number of queries added to the cache." msgstr "El número de consultas añadidos al cache." -#: libraries/messages.inc.php:972 +#: libraries/messages.inc.php:968 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -5887,7 +5887,7 @@ msgstr "" "la estrategia Least Recently Used (LRU) para decidir cuáles consultas deben " "ser removidas del cache." -#: libraries/messages.inc.php:973 +#: libraries/messages.inc.php:969 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -5895,25 +5895,25 @@ msgstr "" "El número de consultas que no ingresaron al cache (porque no es posible o " "porque el parámetro no está activado en query_cache_type)." -#: libraries/messages.inc.php:974 +#: libraries/messages.inc.php:970 msgid "The number of queries registered in the cache." msgstr "El número de consultas registradas en el cache." -#: libraries/messages.inc.php:975 +#: libraries/messages.inc.php:971 msgid "The total number of blocks in the query cache." msgstr "El número total de bloques en el cache de consultas." -#: libraries/messages.inc.php:976 +#: libraries/messages.inc.php:972 msgctxt "$strShowStatusReset" msgid "Reset" msgstr "Resetear" -#: libraries/messages.inc.php:977 +#: libraries/messages.inc.php:973 msgid "The status of failsafe replication (not yet implemented)." msgstr "" "El estado de la replicación a prueba de fallos (aún no ha sido implementada)." -#: libraries/messages.inc.php:978 +#: libraries/messages.inc.php:974 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -5921,13 +5921,13 @@ msgstr "" "El número de vínculos (joins) que no usan índices. Si este valor no es 0, " "deberá revisar los índices de sus tablas cuidadosamente." -#: libraries/messages.inc.php:979 +#: libraries/messages.inc.php:975 msgid "The number of joins that used a range search on a reference table." msgstr "" "El número de vínculos (joins) que usaron búsqueda por rangos en una tabla de " "referencias." -#: libraries/messages.inc.php:980 +#: libraries/messages.inc.php:976 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -5936,7 +5936,7 @@ msgstr "" "cada fila. (Si no es 0, deberá revisar los índices de sus tablas " "cuidadosamente.)" -#: libraries/messages.inc.php:981 +#: libraries/messages.inc.php:977 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -5944,19 +5944,19 @@ msgstr "" "El número de vínculos (joins) que usaron rangos en la primera tabla. " "(Normalmente no es crítico aun cuando sea grande.)" -#: libraries/messages.inc.php:982 +#: libraries/messages.inc.php:978 msgid "The number of joins that did a full scan of the first table." msgstr "" "El número de vínculos (joins) que hicieron un escaneo completo de la primera " "tabla." -#: libraries/messages.inc.php:983 +#: libraries/messages.inc.php:979 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "El número de tablas temporales actualmente abiertas por el proceso SQL " "esclavo." -#: libraries/messages.inc.php:984 +#: libraries/messages.inc.php:980 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -5964,12 +5964,12 @@ msgstr "" "Número total de veces (desde el arranque) que el proceso SQL esclavo de " "replicación ha reintentado hacer transacciones." -#: libraries/messages.inc.php:985 +#: libraries/messages.inc.php:981 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Está ENCENDIDO si este servidor es un esclavo que está conectado a un master." -#: libraries/messages.inc.php:986 +#: libraries/messages.inc.php:982 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -5977,14 +5977,14 @@ msgstr "" "El número de procesos que han tomado más de los segundos registrados en " "slow_launch_time para crear." -#: libraries/messages.inc.php:987 +#: libraries/messages.inc.php:983 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "El número de consultas que han tomado más segundos que los registrados en " "long_query_time." -#: libraries/messages.inc.php:988 +#: libraries/messages.inc.php:984 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -5994,23 +5994,23 @@ msgstr "" "hacer. Si este valor es grande, debe considerar incrementar el valor de la " "varible de sistema sort_buffer_size." -#: libraries/messages.inc.php:989 +#: libraries/messages.inc.php:985 msgid "The number of sorts that were done with ranges." msgstr "El número de consultas organizar que se ejecutaron con rangos." -#: libraries/messages.inc.php:990 +#: libraries/messages.inc.php:986 msgid "The number of sorted rows." msgstr "El número de filas sorted." -#: libraries/messages.inc.php:991 +#: libraries/messages.inc.php:987 msgid "The number of sorts that were done by scanning the table." msgstr "El número de consultas organizar que se hicieron escaneando la tabla." -#: libraries/messages.inc.php:992 +#: libraries/messages.inc.php:988 msgid "The number of times that a table lock was acquired immediately." msgstr "El número de veces que un table lock fue adquirido inmediatamente." -#: libraries/messages.inc.php:993 +#: libraries/messages.inc.php:989 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -6022,7 +6022,7 @@ msgstr "" "primero deberá optimizar sus consultas, y luego, ya sea partir sus tablas o " "usar replicación." -#: libraries/messages.inc.php:994 +#: libraries/messages.inc.php:990 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -6032,11 +6032,11 @@ msgstr "" "puede calcularse como Threads_created/Connections. Si este valor es rojo, " "debe incrementar su thread_cache_size." -#: libraries/messages.inc.php:995 +#: libraries/messages.inc.php:991 msgid "The number of currently open connections." msgstr "El número de conexiones abiertas actualmente." -#: libraries/messages.inc.php:996 +#: libraries/messages.inc.php:992 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -6048,74 +6048,74 @@ msgstr "" "(Normalmente esto no aporta una mejoría notable en el rendimiento si usted " "tiene una buena implementación de procesos.)" -#: libraries/messages.inc.php:997 +#: libraries/messages.inc.php:993 msgid "The number of threads that are not sleeping." msgstr "El número de procesos que no están en reposo." -#: libraries/messages.inc.php:999 tbl_printview.php:75 +#: libraries/messages.inc.php:995 tbl_printview.php:75 msgid "Show tables" msgstr "Mostrar las tablas" -#: libraries/messages.inc.php:1000 libraries/sql_query_form.lib.php:396 +#: libraries/messages.inc.php:996 libraries/sql_query_form.lib.php:396 msgid " Show this query here again " msgstr " Mostrar esta consulta otra vez " -#: libraries/messages.inc.php:1001 libraries/mysql_charsets.lib.php:217 +#: libraries/messages.inc.php:997 libraries/mysql_charsets.lib.php:217 #: libraries/mysql_charsets.lib.php:342 msgid "Simplified Chinese" msgstr "Chino simplificado" -#: libraries/messages.inc.php:1002 tbl_operations.php:258 +#: libraries/messages.inc.php:998 tbl_operations.php:258 msgid "(singly)" msgstr "(solamente)" -#: libraries/messages.inc.php:1005 libraries/replication_gui.lib.php:52 +#: libraries/messages.inc.php:1001 libraries/replication_gui.lib.php:52 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" msgstr "" -#: libraries/messages.inc.php:1006 libraries/mysql_charsets.lib.php:283 +#: libraries/messages.inc.php:1002 libraries/mysql_charsets.lib.php:283 msgid "Slovak" msgstr "Eslovaco" -#: libraries/messages.inc.php:1007 libraries/mysql_charsets.lib.php:286 +#: libraries/messages.inc.php:1003 libraries/mysql_charsets.lib.php:286 msgid "Slovenian" msgstr "Esloveno" -#: libraries/messages.inc.php:1008 pmd_general.php:95 +#: libraries/messages.inc.php:1004 pmd_general.php:95 msgid "Small/Big All" msgstr "Pequeño/grande todos" -#: libraries/messages.inc.php:1009 pmd_general.php:91 +#: libraries/messages.inc.php:1005 pmd_general.php:91 msgid "Snap to grid" msgstr "Cuadrícula magnética" -#: libraries/messages.inc.php:1011 server_synchronize.php:1167 +#: libraries/messages.inc.php:1007 server_synchronize.php:1167 msgid "Socket" msgstr "" -#: libraries/messages.inc.php:1013 server_status.php:259 +#: libraries/messages.inc.php:1009 server_status.php:259 msgid "Sorting" msgstr "Organizando (sorting)" -#: libraries/messages.inc.php:1015 tbl_printview.php:310 tbl_structure.php:657 +#: libraries/messages.inc.php:1011 tbl_printview.php:310 tbl_structure.php:657 msgid "Space usage" msgstr "Espacio utilizado" -#: libraries/messages.inc.php:1016 libraries/mysql_charsets.lib.php:289 +#: libraries/messages.inc.php:1012 libraries/mysql_charsets.lib.php:289 msgid "Spanish" msgstr "Español" -#: libraries/messages.inc.php:1019 +#: libraries/messages.inc.php:1015 msgid "Export type" msgstr "Tipo de exportación" -#: libraries/messages.inc.php:1020 +#: libraries/messages.inc.php:1016 msgid "Export time in UTC" msgstr "" -#: libraries/messages.inc.php:1021 libraries/sqlparser.lib.php:173 +#: libraries/messages.inc.php:1017 libraries/sqlparser.lib.php:173 msgid "" "There is a chance that you may have found a bug in the SQL parser. Please " "examine your query closely, and check that the quotes are correct and not " @@ -6139,7 +6139,7 @@ msgstr "" "que genera el problema, y envíe un reporte de error con la cadena de datos " "en la sección de CORTE indicada abajo:" -#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:137 +#: libraries/messages.inc.php:1018 libraries/sqlparser.lib.php:137 msgid "" "There seems to be an error in your SQL query. The MySQL server error output " "below, if there is any, may also help you in diagnosing the problem" @@ -6148,33 +6148,33 @@ msgstr "" "servidor de MySQL, de existir, aparece abajo, en cuyo caso puede ayudar a " "diagnosticar el problema." -#: libraries/messages.inc.php:1026 libraries/sqlparser.lib.php:495 +#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:495 msgid "Invalid Identifer" msgstr "El identificador no es válido" -#: libraries/messages.inc.php:1027 libraries/sqlparser.lib.php:344 +#: libraries/messages.inc.php:1023 libraries/sqlparser.lib.php:344 msgid "Unclosed quote" msgstr "Comillas sin cerrar" -#: libraries/messages.inc.php:1028 libraries/sqlparser.lib.php:612 +#: libraries/messages.inc.php:1024 libraries/sqlparser.lib.php:612 msgid "Unknown Punctuation String" msgstr "Signo de puntuación desconocido" -#: libraries/messages.inc.php:1030 server_replication.php:327 +#: libraries/messages.inc.php:1026 server_replication.php:327 #: server_replication.php:328 #, fuzzy msgid "Start" msgstr "Inicio" -#: libraries/messages.inc.php:1033 tbl_printview.php:369 tbl_structure.php:729 +#: libraries/messages.inc.php:1029 tbl_printview.php:369 tbl_structure.php:729 msgid "Statements" msgstr "Enunciado" -#: libraries/messages.inc.php:1034 tbl_printview.php:380 tbl_structure.php:741 +#: libraries/messages.inc.php:1030 tbl_printview.php:380 tbl_structure.php:741 msgid "static" msgstr "" -#: libraries/messages.inc.php:1035 server_status.php:388 +#: libraries/messages.inc.php:1031 server_status.php:388 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -6183,43 +6183,43 @@ msgstr "" "pueden excederse. Por tanto, las estadísticas reportadas por el servidor " "MySQL pueden estar incorrectas." -#: libraries/messages.inc.php:1038 server_replication.php:327 +#: libraries/messages.inc.php:1034 server_replication.php:327 #: server_replication.php:328 msgid "Stop" msgstr "" -#: libraries/messages.inc.php:1039 server_engines.php:49 +#: libraries/messages.inc.php:1035 server_engines.php:49 msgid "Storage Engines" msgstr "Motores de almacenamiento" -#: libraries/messages.inc.php:1040 libraries/tbl_properties.inc.php:726 +#: libraries/messages.inc.php:1036 libraries/tbl_properties.inc.php:726 #: server_engines.php:58 tbl_operations.php:353 msgid "Storage Engine" msgstr "Motor de almacenamiento" -#: libraries/messages.inc.php:1042 +#: libraries/messages.inc.php:1038 msgid "CSV for MS Excel" msgstr "CSV para datos de MS Excel" -#: libraries/messages.inc.php:1044 tbl_structure.php:516 tbl_structure.php:518 +#: libraries/messages.inc.php:1040 tbl_structure.php:516 tbl_structure.php:518 msgid "Propose table structure" msgstr "Planteamiento de la estructura de tabla" -#: libraries/messages.inc.php:1045 server_synchronize.php:424 +#: libraries/messages.inc.php:1041 server_synchronize.php:424 #: server_synchronize.php:867 #, fuzzy msgid "Structure Difference" msgstr "Estructura para la vista" -#: libraries/messages.inc.php:1049 server_synchronize.php:265 +#: libraries/messages.inc.php:1045 server_synchronize.php:265 msgid "Structure Synchronization" msgstr "" -#: libraries/messages.inc.php:1050 libraries/sql_query_form.lib.php:462 +#: libraries/messages.inc.php:1046 libraries/sql_query_form.lib.php:462 msgid "Submit" msgstr "Enviar" -#: libraries/messages.inc.php:1052 main.php:358 +#: libraries/messages.inc.php:1048 main.php:358 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -6228,160 +6228,160 @@ msgstr "" "El servidor está utilizando Suhosin. Por favor, refiérase a %sdocumentation%" "s para posibles ajustes." -#: libraries/messages.inc.php:1054 libraries/mysql_charsets.lib.php:295 +#: libraries/messages.inc.php:1050 libraries/mysql_charsets.lib.php:295 #: libraries/mysql_charsets.lib.php:392 msgid "Swedish" msgstr "Sueco" -#: libraries/messages.inc.php:1060 tbl_operations.php:556 +#: libraries/messages.inc.php:1056 tbl_operations.php:556 msgid "Switch to copied table" msgstr "Cambiar (switch) a la tabla copiada" -#: libraries/messages.inc.php:1061 server_synchronize.php:1213 +#: libraries/messages.inc.php:1057 server_synchronize.php:1213 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." msgstr "" -#: libraries/messages.inc.php:1062 server_synchronize.php:451 +#: libraries/messages.inc.php:1058 server_synchronize.php:451 #: server_synchronize.php:896 msgid "Synchronize Databases" msgstr "" -#: libraries/messages.inc.php:1063 libraries/server_links.inc.php:92 +#: libraries/messages.inc.php:1059 libraries/server_links.inc.php:92 #: server_synchronize.php:1092 server_synchronize.php:1100 msgid "Synchronize" msgstr "" -#: libraries/messages.inc.php:1065 server_synchronize.php:430 +#: libraries/messages.inc.php:1061 server_synchronize.php:430 #: server_synchronize.php:873 msgid "Add column(s)" msgstr "" -#: libraries/messages.inc.php:1066 tbl_create.php:62 +#: libraries/messages.inc.php:1062 tbl_create.php:62 #, php-format msgid "Table %s already exists!" msgstr "¡La tabla %s ya existe!" -#: libraries/messages.inc.php:1067 server_synchronize.php:432 +#: libraries/messages.inc.php:1063 server_synchronize.php:432 #: server_synchronize.php:875 msgid "Alter column(s)" msgstr "" -#: libraries/messages.inc.php:1068 tbl_addfield.php:189 tbl_alter.php:103 +#: libraries/messages.inc.php:1064 tbl_addfield.php:189 tbl_alter.php:103 #: tbl_indexes.php:98 #, php-format msgid "Table %1$s has been altered successfully" msgstr "Los cambios en la Tabla %1$s se hicieron exitosamente" -#: libraries/messages.inc.php:1069 server_synchronize.php:434 +#: libraries/messages.inc.php:1065 server_synchronize.php:434 #: server_synchronize.php:877 msgid "Apply index(s)" msgstr "" -#: libraries/messages.inc.php:1071 server_synchronize.php:446 +#: libraries/messages.inc.php:1067 server_synchronize.php:446 #: server_synchronize.php:890 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: libraries/messages.inc.php:1072 tbl_move_copy.php:82 +#: libraries/messages.inc.php:1068 tbl_move_copy.php:82 msgid "The table name is empty!" msgstr "¡El nombre de la tabla está vacío!" -#: libraries/messages.inc.php:1073 tbl_create.php:249 +#: libraries/messages.inc.php:1069 tbl_create.php:249 #, php-format msgid "Table %1$s has been created." msgstr "La Tabla %1$s se creó." -#: libraries/messages.inc.php:1076 tbl_operations.php:628 +#: libraries/messages.inc.php:1072 tbl_operations.php:628 #, php-format msgid "Table %s has been flushed" msgstr "Se ha vaciado el caché de la tabla %s" -#: libraries/messages.inc.php:1077 server_synchronize.php:436 +#: libraries/messages.inc.php:1073 server_synchronize.php:436 #: server_synchronize.php:879 msgid "Insert row(s)" msgstr "" -#: libraries/messages.inc.php:1078 libraries/tbl_links.inc.php:107 +#: libraries/messages.inc.php:1074 libraries/tbl_links.inc.php:107 #: libraries/tbl_links.inc.php:140 libraries/tbl_links.inc.php:141 msgid "Table seems to be empty!" msgstr "La tabla, ¡parece estar vacía!" -#: libraries/messages.inc.php:1079 tbl_operations.php:568 +#: libraries/messages.inc.php:1075 tbl_operations.php:568 msgid "Table maintenance" msgstr "Mantenimiento de la tabla" -#: libraries/messages.inc.php:1080 libraries/tbl_properties.inc.php:618 +#: libraries/messages.inc.php:1076 libraries/tbl_properties.inc.php:618 #: server_synchronize.php:428 server_synchronize.php:871 msgid "Table name" msgstr "Nombre de la tabla" -#: libraries/messages.inc.php:1081 pdf_schema.php:1116 +#: libraries/messages.inc.php:1077 pdf_schema.php:1116 msgid "Table of contents" msgstr "Tabla de contenidos" -#: libraries/messages.inc.php:1082 tbl_operations.php:334 +#: libraries/messages.inc.php:1078 tbl_operations.php:334 msgid "Table options" msgstr "Opciones de la tabla" -#: libraries/messages.inc.php:1083 server_synchronize.php:431 +#: libraries/messages.inc.php:1079 server_synchronize.php:431 #: server_synchronize.php:874 msgid "Remove column(s)" msgstr "" -#: libraries/messages.inc.php:1084 server_synchronize.php:433 +#: libraries/messages.inc.php:1080 server_synchronize.php:433 #: server_synchronize.php:876 msgid "Remove index(s)" msgstr "" -#: libraries/messages.inc.php:1088 server_synchronize.php:435 +#: libraries/messages.inc.php:1084 server_synchronize.php:435 #: server_synchronize.php:878 msgid "Update row(s)" msgstr "" -#: libraries/messages.inc.php:1090 server_synchronize.php:942 +#: libraries/messages.inc.php:1086 server_synchronize.php:942 msgid "Target database has been synchronized with source database" msgstr "" -#: libraries/messages.inc.php:1091 server_privileges.php:392 +#: libraries/messages.inc.php:1087 server_privileges.php:392 #: server_privileges.php:527 server_privileges.php:1679 #: server_privileges.php:1685 msgid "Table-specific privileges" msgstr "Privilegios específicos para la tabla" -#: libraries/messages.inc.php:1092 server_status.php:254 +#: libraries/messages.inc.php:1088 server_status.php:254 msgid "Temporary data" msgstr "Datos temporales" -#: libraries/messages.inc.php:1093 tbl_change.php:728 +#: libraries/messages.inc.php:1089 tbl_change.php:728 msgid " Because of its length,
this field might not be editable " msgstr " Debido a su longitud,
este campo podría no ser editable " -#: libraries/messages.inc.php:1094 +#: libraries/messages.inc.php:1090 msgid "Texy! text" msgstr "Texto Texy!" -#: libraries/messages.inc.php:1095 libraries/mysql_charsets.lib.php:298 +#: libraries/messages.inc.php:1091 libraries/mysql_charsets.lib.php:298 #: libraries/mysql_charsets.lib.php:395 msgid "Thai" msgstr "Tailandés" -#: libraries/messages.inc.php:1102 libraries/replication_gui.lib.php:308 +#: libraries/messages.inc.php:1098 libraries/replication_gui.lib.php:308 #: server_privileges.php:734 msgid "This Host" msgstr "Este Host" -#: libraries/messages.inc.php:1103 server_status.php:252 +#: libraries/messages.inc.php:1099 server_status.php:252 msgid "Threads" msgstr "Procesos" -#: libraries/messages.inc.php:1104 server_processlist.php:22 +#: libraries/messages.inc.php:1100 server_processlist.php:22 #, php-format msgid "Thread %s was successfully killed." msgstr "El proceso %s fue destruido exitosamente." -#: libraries/messages.inc.php:1106 +#: libraries/messages.inc.php:1102 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -6390,185 +6390,185 @@ msgstr "" "usualmente significa que phpMyAdmin no será capaz de completar esta " "importación a menos que usted incremente el tiempo de ejecución de php." -#: libraries/messages.inc.php:1109 pmd_pdf.php:94 +#: libraries/messages.inc.php:1105 pmd_pdf.php:94 msgid "to/from page" msgstr "página de/a la" -#: libraries/messages.inc.php:1110 pdf_pages.php:343 +#: libraries/messages.inc.php:1106 pdf_pages.php:343 msgid "Toggle scratchboard" msgstr "cambiar el estado del scratchboard" -#: libraries/messages.inc.php:1111 pmd_general.php:99 +#: libraries/messages.inc.php:1107 pmd_general.php:99 msgid "Toggle small/big" msgstr "Alterne entre pequeño y grande" -#: libraries/messages.inc.php:1112 pmd_help.php:27 +#: libraries/messages.inc.php:1108 pmd_help.php:27 msgid "To select relation, click :" msgstr "Para seleccionar la relación, dé clic en:" -#: libraries/messages.inc.php:1115 libraries/tbl_links.inc.php:149 +#: libraries/messages.inc.php:1111 libraries/tbl_links.inc.php:149 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" -#: libraries/messages.inc.php:1116 tbl_tracking.php:655 +#: libraries/messages.inc.php:1112 tbl_tracking.php:655 msgid "Activate now" msgstr "" -#: libraries/messages.inc.php:1117 tbl_tracking.php:653 +#: libraries/messages.inc.php:1113 tbl_tracking.php:653 #, php-format msgid "Activate tracking for %s.%s" msgstr "" -#: libraries/messages.inc.php:1118 tbl_tracking.php:221 +#: libraries/messages.inc.php:1114 tbl_tracking.php:221 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/messages.inc.php:1119 tbl_tracking.php:688 +#: libraries/messages.inc.php:1115 tbl_tracking.php:688 #, fuzzy msgid "Create version" msgstr "Crear relación" -#: libraries/messages.inc.php:1120 tbl_tracking.php:668 +#: libraries/messages.inc.php:1116 tbl_tracking.php:668 #, php-format msgid "Create version %s of %s.%s" msgstr "" -#: libraries/messages.inc.php:1122 tbl_tracking.php:412 +#: libraries/messages.inc.php:1118 tbl_tracking.php:412 msgid "Data definition statement" msgstr "" -#: libraries/messages.inc.php:1123 tbl_tracking.php:463 +#: libraries/messages.inc.php:1119 tbl_tracking.php:463 msgid "Data manipulation statement" msgstr "" -#: libraries/messages.inc.php:1124 tbl_tracking.php:410 tbl_tracking.php:461 +#: libraries/messages.inc.php:1120 tbl_tracking.php:410 tbl_tracking.php:461 #, fuzzy msgid "Date" msgstr "Datos" -#: libraries/messages.inc.php:1125 tbl_tracking.php:642 +#: libraries/messages.inc.php:1121 tbl_tracking.php:642 msgid "Deactivate now" msgstr "" -#: libraries/messages.inc.php:1126 tbl_tracking.php:640 +#: libraries/messages.inc.php:1122 tbl_tracking.php:640 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "" -#: libraries/messages.inc.php:1127 tbl_tracking.php:521 +#: libraries/messages.inc.php:1123 tbl_tracking.php:521 #, fuzzy, php-format msgid "Export as %s" msgstr "Exportar las opciones predeterminadas" -#: libraries/messages.inc.php:1130 tbl_tracking.php:251 tbl_tracking.php:379 +#: libraries/messages.inc.php:1126 tbl_tracking.php:251 tbl_tracking.php:379 msgid "Close" msgstr "" -#: libraries/messages.inc.php:1131 tbl_tracking.php:114 +#: libraries/messages.inc.php:1127 tbl_tracking.php:114 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/messages.inc.php:1133 tbl_tracking.php:397 tbl_tracking.php:504 +#: libraries/messages.inc.php:1129 tbl_tracking.php:397 tbl_tracking.php:504 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "" -#: libraries/messages.inc.php:1134 tbl_tracking.php:561 +#: libraries/messages.inc.php:1130 tbl_tracking.php:561 msgid "Show versions" msgstr "" -#: libraries/messages.inc.php:1135 tbl_tracking.php:507 +#: libraries/messages.inc.php:1131 tbl_tracking.php:507 msgid "SQL dump (file download)" msgstr "" -#: libraries/messages.inc.php:1136 tbl_tracking.php:508 +#: libraries/messages.inc.php:1132 tbl_tracking.php:508 msgid "SQL dump" msgstr "" -#: libraries/messages.inc.php:1137 tbl_tracking.php:213 +#: libraries/messages.inc.php:1133 tbl_tracking.php:213 msgid "SQL statements executed." msgstr "" -#: libraries/messages.inc.php:1138 +#: libraries/messages.inc.php:1134 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/messages.inc.php:1139 tbl_tracking.php:509 +#: libraries/messages.inc.php:1135 tbl_tracking.php:509 msgid "SQL execution" msgstr "" -#: libraries/messages.inc.php:1140 tbl_tracking.php:230 +#: libraries/messages.inc.php:1136 tbl_tracking.php:230 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/messages.inc.php:1141 tbl_tracking.php:381 +#: libraries/messages.inc.php:1137 tbl_tracking.php:381 msgid "Tracking statements" msgstr "" -#: libraries/messages.inc.php:1148 tbl_tracking.php:593 +#: libraries/messages.inc.php:1144 tbl_tracking.php:593 #, fuzzy msgid "Version" msgstr "Persa" -#: libraries/messages.inc.php:1149 tbl_tracking.php:672 +#: libraries/messages.inc.php:1145 tbl_tracking.php:672 msgid "Track these data definition statements:" msgstr "" -#: libraries/messages.inc.php:1150 tbl_tracking.php:680 +#: libraries/messages.inc.php:1146 tbl_tracking.php:680 msgid "Track these data manipulation statements:" msgstr "" -#: libraries/messages.inc.php:1155 tbl_tracking.php:411 tbl_tracking.php:462 +#: libraries/messages.inc.php:1151 tbl_tracking.php:411 tbl_tracking.php:462 #, fuzzy msgid "Username" msgstr "Usuario:" -#: libraries/messages.inc.php:1156 tbl_tracking.php:203 +#: libraries/messages.inc.php:1152 tbl_tracking.php:203 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "" -#: libraries/messages.inc.php:1157 tbl_tracking.php:187 +#: libraries/messages.inc.php:1153 tbl_tracking.php:187 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "" -#: libraries/messages.inc.php:1158 tbl_tracking.php:195 +#: libraries/messages.inc.php:1154 tbl_tracking.php:195 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "" -#: libraries/messages.inc.php:1159 tbl_tracking.php:262 +#: libraries/messages.inc.php:1155 tbl_tracking.php:262 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/messages.inc.php:1161 tbl_tracking.php:220 +#: libraries/messages.inc.php:1157 tbl_tracking.php:220 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/messages.inc.php:1162 libraries/mysql_charsets.lib.php:219 +#: libraries/messages.inc.php:1158 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:362 msgid "Traditional Chinese" msgstr "Chino tradicional" -#: libraries/messages.inc.php:1163 libraries/mysql_charsets.lib.php:292 +#: libraries/messages.inc.php:1159 libraries/mysql_charsets.lib.php:292 msgid "Traditional Spanish" msgstr "Español tradicional" -#: libraries/messages.inc.php:1164 server_status.php:388 +#: libraries/messages.inc.php:1160 server_status.php:388 msgid "Traffic" msgstr "Tráfico" -#: libraries/messages.inc.php:1165 server_status.php:261 +#: libraries/messages.inc.php:1161 server_status.php:261 msgid "Transaction coordinator" msgstr "Coordinador de transacción" -#: libraries/messages.inc.php:1166 +#: libraries/messages.inc.php:1162 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 " @@ -6581,7 +6581,7 @@ msgstr "" "usted aporta una segunda opción, necesariamente deberá consignar la primera " "opción a una cadena de caracteres vacía" -#: libraries/messages.inc.php:1167 +#: libraries/messages.inc.php:1163 msgid "" "Displays hexadecimal representation of data. Optional first parameter " "specifies how often space will be added (defaults to 2 nibbles)." @@ -6590,7 +6590,7 @@ msgstr "" "opcional y especifica cuán a menudo se añadirá espacio (2 nibbles, es decir, " "1 byte de manera predeterminada)." -#: libraries/messages.inc.php:1168 +#: libraries/messages.inc.php:1164 msgid "" "Displays a clickable thumbnail. The options are the maximum width and height " "in pixels. The original aspect ratio is preserved." @@ -6598,15 +6598,15 @@ msgstr "" "Muestra un thumbnail que puede abrirse mediante un clic; opciones: width, " "height en píxeles (mantiene la proporción original)" -#: libraries/messages.inc.php:1169 +#: libraries/messages.inc.php:1165 msgid "Displays a link to download this image." msgstr "Muestra un enlace a esta imagen (i.e., blob descarga directa)." -#: libraries/messages.inc.php:1170 +#: libraries/messages.inc.php:1166 msgid "See image/jpeg: inline" msgstr "Ver imagen/jpeg: inline" -#: libraries/messages.inc.php:1171 +#: libraries/messages.inc.php:1167 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 " @@ -6626,7 +6626,7 @@ msgstr "" "tendrá un valor diferente - para \"local\" mire la documentación para la " "función strftime() del PHP y para \"utc\" se hace usando la función gmdate()." -#: libraries/messages.inc.php:1172 +#: libraries/messages.inc.php:1168 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 " @@ -6651,13 +6651,13 @@ msgstr "" "pondrá un NOWRAP a la celda de contenido para que todo el output se muestre " "sin reformatear (Predeterminado 1)" -#: libraries/messages.inc.php:1173 +#: libraries/messages.inc.php:1169 msgid "" "Displays the contents of the field as-is, without running it through " "htmlspecialchars(). That is, the field is assumed to contain valid HTML." msgstr "Mantiene el formato original del campo. No se puede hacer Escape." -#: libraries/messages.inc.php:1174 +#: libraries/messages.inc.php:1170 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 " @@ -6667,7 +6667,7 @@ msgstr "" "primera opción es un prefijo como \"http://dominio.com/\", la segunda opción " "es el ancho en píxeles, el tercero es el alto." -#: libraries/messages.inc.php:1175 +#: libraries/messages.inc.php:1171 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 " @@ -6677,11 +6677,11 @@ msgstr "" "opción es un prefijo como \"http://dominio.com/\", la segunda opción es un " "título para el enlace." -#: libraries/messages.inc.php:1176 +#: libraries/messages.inc.php:1172 msgid "Formats text as SQL query with syntax highlighting." msgstr "Formatea el texto como una consulta SQL y resalta la sintaxis." -#: libraries/messages.inc.php:1177 +#: libraries/messages.inc.php:1173 msgid "" "Displays a part of a string. The first option is the number of characters to " "skip from the beginning of the string (Default 0). The second option is the " @@ -6696,71 +6696,71 @@ msgstr "" "tercera opción es la cadena de caracteres a adjuntar y/o anteponer cuando " "haya truncamiento (Predeterminado: \"...\")." -#: libraries/messages.inc.php:1179 server_binlog.php:183 server_binlog.php:186 +#: libraries/messages.inc.php:1175 server_binlog.php:183 server_binlog.php:186 #: server_processlist.php:49 server_processlist.php:51 msgid "Truncate Shown Queries" msgstr "Truncar las consultas que ya se han mostrado" -#: libraries/messages.inc.php:1180 libraries/mysql_charsets.lib.php:301 +#: libraries/messages.inc.php:1176 libraries/mysql_charsets.lib.php:301 #: libraries/mysql_charsets.lib.php:389 msgid "Turkish" msgstr "Turco" -#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:304 +#: libraries/messages.inc.php:1179 libraries/mysql_charsets.lib.php:304 #: libraries/mysql_charsets.lib.php:386 msgid "Ukrainian" msgstr "Ucraniano" -#: libraries/messages.inc.php:1185 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:1181 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 msgid "Unicode" msgstr "Unicode" -#: libraries/messages.inc.php:1187 libraries/mysql_charsets.lib.php:398 +#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:398 #: libraries/mysql_charsets.lib.php:405 msgid "unknown" msgstr "desconocido" -#: libraries/messages.inc.php:1190 server_privileges.php:1152 +#: libraries/messages.inc.php:1186 server_privileges.php:1152 #, php-format msgid "You have updated the privileges for %s." msgstr "Ha actualizado los privilegios para %s." -#: libraries/messages.inc.php:1191 user_password.php:112 +#: libraries/messages.inc.php:1187 user_password.php:112 msgid "The profile has been updated." msgstr "Se actualizó el perfil." -#: libraries/messages.inc.php:1193 libraries/relation.lib.php:138 +#: libraries/messages.inc.php:1189 libraries/relation.lib.php:138 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "Para actualizar su tabla Columna_comentarios (Column_comments), por favor " "revise la documentación" -#: libraries/messages.inc.php:1194 +#: libraries/messages.inc.php:1190 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Usted debería actualizar su %s a la versión %s o más reciente." -#: libraries/messages.inc.php:1204 tbl_printview.php:314 tbl_structure.php:661 +#: libraries/messages.inc.php:1200 tbl_printview.php:314 tbl_structure.php:661 msgid "Usage" msgstr "Uso" -#: libraries/messages.inc.php:1205 +#: libraries/messages.inc.php:1201 msgid "Enclose table and field names with backquotes" msgstr "Usar \"backquotes\" con tablas y nombres de campo" -#: libraries/messages.inc.php:1206 libraries/replication_gui.lib.php:314 +#: libraries/messages.inc.php:1202 libraries/replication_gui.lib.php:314 #: server_privileges.php:740 msgid "Use Host Table" msgstr "Usar la tabla Anfitrión (Host)" -#: libraries/messages.inc.php:1207 server_privileges.php:848 +#: libraries/messages.inc.php:1203 server_privileges.php:848 #, php-format msgid "The user %s already exists!" msgstr "¡El usuario %s ya existe!" -#: libraries/messages.inc.php:1209 libraries/replication_gui.lib.php:55 +#: libraries/messages.inc.php:1205 libraries/replication_gui.lib.php:55 #: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245 #: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255 #: server_privileges.php:672 server_privileges.php:675 @@ -6768,37 +6768,37 @@ msgstr "¡El usuario %s ya existe!" msgid "User name" msgstr "Nombre de usuario" -#: libraries/messages.inc.php:1210 server_privileges.php:1645 +#: libraries/messages.inc.php:1206 server_privileges.php:1645 msgid "The selected user was not found in the privilege table." msgstr "El usuario que seleccionó no se halló en la tabla de privilegios." -#: libraries/messages.inc.php:1211 server_privileges.php:1365 +#: libraries/messages.inc.php:1207 server_privileges.php:1365 msgid "User overview" msgstr "Vista global de usuarios" -#: libraries/messages.inc.php:1212 server_privileges.php:1261 +#: libraries/messages.inc.php:1208 server_privileges.php:1261 msgid "The selected users have been deleted successfully." msgstr "Los usuarios seleccionados fueron borrados exitosamente." -#: libraries/messages.inc.php:1213 server_privileges.php:2026 +#: libraries/messages.inc.php:1209 server_privileges.php:2026 #, php-format msgid "Users having access to "%s"" msgstr "Usuarios con acceso a "%s"" -#: libraries/messages.inc.php:1214 main.php:189 server_privileges.php:1350 +#: libraries/messages.inc.php:1210 main.php:189 server_privileges.php:1350 #: server_privileges.php:1497 server_privileges.php:1611 #: server_privileges.php:2029 server_processlist.php:54 msgid "User" msgstr "Usuario" -#: libraries/messages.inc.php:1215 tbl_change.php:1171 +#: libraries/messages.inc.php:1211 tbl_change.php:1171 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Use la tecla TAB para saltar de un valor a otro, o CTRL+flechas para moverse " "a cualquier parte" -#: libraries/messages.inc.php:1217 libraries/replication_gui.lib.php:251 +#: libraries/messages.inc.php:1213 libraries/replication_gui.lib.php:251 #: libraries/replication_gui.lib.php:319 libraries/replication_gui.lib.php:342 #: server_privileges.php:678 server_privileges.php:745 #: server_privileges.php:769 server_privileges.php:1889 @@ -6806,7 +6806,7 @@ msgstr "" msgid "Use text field" msgstr "Use el campo de texto" -#: libraries/messages.inc.php:1221 libraries/sqlvalidator.lib.php:68 +#: libraries/messages.inc.php:1217 libraries/sqlvalidator.lib.php:68 #, php-format msgid "" "The SQL validator could not be initialized. Please check if you have " @@ -6815,91 +6815,91 @@ msgstr "" "El validador de SQL no pudo inicializarse. Por favor revise si ha instalado " "las extensiones php necesarias, como están descritas en la %sdocumentación%s." -#: libraries/messages.inc.php:1222 libraries/replication_gui.lib.php:111 +#: libraries/messages.inc.php:1218 libraries/replication_gui.lib.php:111 #: server_status.php:627 tbl_change.php:324 tbl_printview.php:370 #: tbl_select.php:139 tbl_structure.php:730 msgid "Value" msgstr "Valor" -#: libraries/messages.inc.php:1223 libraries/replication_gui.lib.php:110 +#: libraries/messages.inc.php:1219 libraries/replication_gui.lib.php:110 #: libraries/sql_query_form.lib.php:445 server_status.php:626 #: server_variables.php:52 msgid "Variable" msgstr "Variable" -#: libraries/messages.inc.php:1225 server_export.php:21 +#: libraries/messages.inc.php:1221 server_export.php:21 msgid "View dump (schema) of databases" msgstr "Ver el volcado (schema) de la base de datos" -#: libraries/messages.inc.php:1227 tbl_export.php:23 +#: libraries/messages.inc.php:1223 tbl_export.php:23 msgid "View dump (schema) of table" msgstr "Mostrar el volcado esquema de la tabla" -#: libraries/messages.inc.php:1231 view_create.php:142 +#: libraries/messages.inc.php:1227 view_create.php:142 msgid "VIEW name" msgstr "(VIEW) VER nombre" -#: libraries/messages.inc.php:1237 main.php:205 +#: libraries/messages.inc.php:1233 main.php:205 msgid "Web server" msgstr "Servidor web" -#: libraries/messages.inc.php:1239 libraries/mysql_charsets.lib.php:277 +#: libraries/messages.inc.php:1235 libraries/mysql_charsets.lib.php:277 #: libraries/mysql_charsets.lib.php:325 msgid "West European" msgstr "Europea occidental" -#: libraries/messages.inc.php:1240 main.php:230 +#: libraries/messages.inc.php:1236 main.php:230 msgid "Wiki" msgstr "Wiki" -#: libraries/messages.inc.php:1241 server_privileges.php:2138 +#: libraries/messages.inc.php:1237 server_privileges.php:2138 msgid "wildcard" msgstr "comodín" -#: libraries/messages.inc.php:1248 +#: libraries/messages.inc.php:1244 #, fuzzy msgid "Export contents" msgstr "Exportar las opciones predeterminadas" -#: libraries/messages.inc.php:1249 +#: libraries/messages.inc.php:1245 #, fuzzy msgid "Export functions" msgstr "Exportar las opciones predeterminadas" -#: libraries/messages.inc.php:1250 +#: libraries/messages.inc.php:1246 msgid "Export procedures" msgstr "" -#: libraries/messages.inc.php:1251 +#: libraries/messages.inc.php:1247 msgid "Export Structure Schemas (recommended)" msgstr "" -#: libraries/messages.inc.php:1252 +#: libraries/messages.inc.php:1248 #, fuzzy msgid "Export tables" msgstr "Tipo de exportación" -#: libraries/messages.inc.php:1253 +#: libraries/messages.inc.php:1249 #, fuzzy msgid "Export triggers" msgstr "Tipo de exportación" -#: libraries/messages.inc.php:1254 +#: libraries/messages.inc.php:1250 #, fuzzy msgid "Export views" msgstr "Exportar las opciones predeterminadas" -#: libraries/messages.inc.php:1255 +#: libraries/messages.inc.php:1251 msgid "XML" msgstr "XML" -#: libraries/messages.inc.php:1259 server_privileges.php:592 +#: libraries/messages.inc.php:1255 server_privileges.php:592 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" "Nota: si cambia los parámetros de estas opciones a 0 (cero), remueve el " "límite." -#: libraries/messages.inc.php:1260 +#: libraries/messages.inc.php:1256 msgid "\"zipped\"" msgstr "\"comprimido con zip\"" diff --git a/po/et.po b/po/et.po index 0bf4db196..4d9fa0168 100644 --- 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-05-13 11:25+0200\n" +"POT-Creation-Date: 2010-05-13 11:30+0200\n" "PO-Revision-Date: 2010-03-12 09:14+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: estonian \n" @@ -13,19 +13,19 @@ msgstr "" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:38 browse_foreigners.php:59 -#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:870 +#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:866 #: server_privileges.php:1475 msgid "Show all" msgstr "Näita kõiki" #: browse_foreigners.php:82 db_operations.php:648 -#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:394 -#: libraries/export/pdf.php:147 libraries/messages.inc.php:597 +#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394 +#: libraries/export/pdf.php:147 libraries/messages.inc.php:593 #: pdf_schema.php:283 pdf_schema.php:1123 pdf_schema.php:1139 msgid "Page number:" msgstr "Lehenumber:" -#: browse_foreigners.php:132 libraries/messages.inc.php:1242 +#: browse_foreigners.php:132 libraries/messages.inc.php:1238 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -38,7 +38,7 @@ 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/db_links.inc.php:75 -#: libraries/messages.inc.php:841 libraries/tbl_links.inc.php:63 +#: libraries/messages.inc.php:837 libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Otsi" @@ -47,12 +47,12 @@ msgstr "Otsi" #: db_search.php:362 db_structure.php:567 js/messages.php:48 #: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2267 +#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 #: 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 #: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614 -#: libraries/messages.inc.php:361 libraries/replication_gui.lib.php:73 +#: libraries/messages.inc.php:357 libraries/replication_gui.lib.php:73 #: libraries/replication_gui.lib.php:365 libraries/select_server.lib.php:104 #: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477 #: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782 @@ -72,33 +72,33 @@ msgid "Go" msgstr "Mine" #: browse_foreigners.php:168 browse_foreigners.php:172 -#: libraries/Index.class.php:442 libraries/messages.inc.php:459 +#: libraries/Index.class.php:442 libraries/messages.inc.php:455 #: tbl_tracking.php:320 msgid "Keyname" msgstr "Võtme nimi" #: browse_foreigners.php:169 browse_foreigners.php:171 -#: libraries/messages.inc.php:252 server_collations.php:55 +#: libraries/messages.inc.php:248 server_collations.php:55 #: server_collations.php:67 server_engines.php:59 server_status.php:628 msgid "Description" msgstr "Kirjeldus" #: browse_foreigners.php:247 browse_foreigners.php:256 #: browse_foreigners.php:268 browse_foreigners.php:276 -#: libraries/messages.inc.php:1218 +#: libraries/messages.inc.php:1214 msgid "Use this value" msgstr "Kasuta seda väärtust" -#: db_create.php:46 libraries/messages.inc.php:215 +#: db_create.php:46 libraries/messages.inc.php:211 #, fuzzy, php-format msgid "Database %1$s has been created." msgstr "Andmebaas %s kustutatud." -#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:232 +#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:228 msgid "Database comment: " msgstr "Andmebaasi kommentaar: " -#: db_datadict.php:165 libraries/messages.inc.php:1070 +#: db_datadict.php:165 libraries/messages.inc.php:1066 #: libraries/tbl_properties.inc.php:724 pdf_schema.php:1236 #: tbl_operations.php:345 tbl_printview.php:130 msgid "Table comments" @@ -107,7 +107,7 @@ msgstr "Tabeli kommentaarid" #: db_datadict.php:174 db_qbe.php:174 libraries/Index.class.php:446 #: libraries/export/htmlword.php:244 libraries/export/latex.php:360 #: libraries/export/odt.php:294 libraries/export/texytext.php:233 -#: libraries/messages.inc.php:317 libraries/tbl_properties.inc.php:99 +#: libraries/messages.inc.php:313 libraries/tbl_properties.inc.php:99 #: libraries/tbl_properties.inc.php:275 pdf_schema.php:1262 #: pdf_schema.php:1283 tbl_change.php:308 tbl_indexes.php:189 #: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135 @@ -119,7 +119,7 @@ msgstr "Väli" #: libraries/db_events.inc.php:31 libraries/db_routines.inc.php:42 #: 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/messages.inc.php:1181 +#: libraries/export/texytext.php:234 libraries/messages.inc.php:1177 #: libraries/tbl_properties.inc.php:100 pdf_schema.php:1263 #: pdf_schema.php:1284 server_privileges.php:2031 tbl_change.php:287 #: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313 @@ -131,7 +131,7 @@ msgstr "Tüüp" #: db_datadict.php:177 libraries/Index.class.php:449 #: libraries/export/htmlword.php:246 libraries/export/latex.php:360 #: libraries/export/odt.php:300 libraries/export/texytext.php:235 -#: libraries/messages.inc.php:576 libraries/tbl_properties.inc.php:109 +#: libraries/messages.inc.php:572 libraries/tbl_properties.inc.php:109 #: pdf_schema.php:1265 pdf_schema.php:1286 tbl_change.php:323 #: tbl_printview.php:145 tbl_structure.php:181 tbl_tracking.php:276 #: tbl_tracking.php:327 @@ -140,7 +140,7 @@ msgstr "Null" #: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 -#: libraries/export/texytext.php:236 libraries/messages.inc.php:238 +#: libraries/export/texytext.php:236 libraries/messages.inc.php:234 #: libraries/tbl_properties.inc.php:106 pdf_schema.php:1266 #: pdf_schema.php:1287 tbl_printview.php:146 tbl_structure.php:182 #: tbl_tracking.php:277 @@ -149,14 +149,14 @@ msgstr "Vaikimisi" #: db_datadict.php:182 libraries/export/htmlword.php:249 #: libraries/export/latex.php:362 libraries/export/odt.php:307 -#: libraries/export/texytext.php:238 libraries/messages.inc.php:483 +#: libraries/export/texytext.php:238 libraries/messages.inc.php:479 #: pdf_schema.php:1268 pdf_schema.php:1289 tbl_printview.php:150 msgid "Links to" msgstr "Lingib " #: db_datadict.php:184 db_printview.php:112 libraries/export/htmlword.php:252 #: libraries/export/latex.php:365 libraries/export/odt.php:312 -#: libraries/export/texytext.php:241 libraries/messages.inc.php:163 +#: libraries/export/texytext.php:241 libraries/messages.inc.php:159 #: libraries/tbl_properties.inc.php:130 pdf_schema.php:1279 #: pdf_schema.php:1290 tbl_printview.php:152 msgid "Comments" @@ -165,7 +165,7 @@ msgstr "Kommentaarid" #: db_datadict.php:267 libraries/Index.class.php:359 #: 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/messages.inc.php:559 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:555 #: libraries/mult_submits.inc.php:263 pdf_schema.php:1344 #: server_privileges.php:1529 server_privileges.php:1540 #: server_privileges.php:1850 server_privileges.php:1855 @@ -177,7 +177,7 @@ msgstr "Ei" #: db_datadict.php:267 libraries/Index.class.php:360 #: libraries/Index.class.php:385 libraries/export/htmlword.php:322 #: libraries/export/latex.php:430 libraries/export/odt.php:368 -#: libraries/export/texytext.php:311 libraries/messages.inc.php:1257 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:1253 #: libraries/mult_submits.inc.php:45 libraries/mult_submits.inc.php:50 #: libraries/mult_submits.inc.php:55 libraries/mult_submits.inc.php:60 #: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:101 @@ -191,108 +191,108 @@ msgstr "Ei" msgid "Yes" msgstr "Jah" -#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:670 +#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:666 #: tbl_printview.php:498 msgid "Print" msgstr "Prindi" -#: db_export.php:29 libraries/messages.inc.php:1226 +#: db_export.php:29 libraries/messages.inc.php:1222 msgid "View dump (schema) of database" msgstr "Vaata andmebaasi väljundit (skeemi)" #: db_export.php:33 db_printview.php:96 db_qbe.php:102 db_structure.php:51 -#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:568 +#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:564 #: navigation.php:346 msgid "No tables found in database." msgstr "Andmebaasist ei leitud tabeleid." -#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:845 +#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:841 #: server_export.php:27 msgid "Select All" msgstr "Märgista kõik" -#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1188 +#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1184 #: server_export.php:29 msgid "Unselect All" msgstr "Puhasta kõik" -#: db_operations.php:38 libraries/messages.inc.php:213 tbl_create.php:54 +#: db_operations.php:38 libraries/messages.inc.php:209 tbl_create.php:54 msgid "The database name is empty!" msgstr "Andmebaasi nimi on tühi!" -#: db_operations.php:236 libraries/messages.inc.php:753 +#: db_operations.php:236 libraries/messages.inc.php:749 #, php-format msgid "Database %s has been renamed to %s" msgstr "Andmebaas %s on ümber nimetatud %s" -#: db_operations.php:240 libraries/messages.inc.php:178 +#: db_operations.php:240 libraries/messages.inc.php:174 #, php-format msgid "Database %s has been copied to %s" msgstr "Andmebaas %s on kopeeritud %s" -#: db_operations.php:410 libraries/messages.inc.php:236 +#: db_operations.php:410 libraries/messages.inc.php:232 msgid "Rename database to" msgstr "Nimeta andmebaas ümber" -#: db_operations.php:415 libraries/messages.inc.php:161 +#: db_operations.php:415 libraries/messages.inc.php:157 #: server_processlist.php:57 msgid "Command" msgstr "Käsk" -#: db_operations.php:425 libraries/messages.inc.php:58 tbl_change.php:1143 +#: db_operations.php:425 libraries/messages.inc.php:54 tbl_change.php:1143 msgid "and then" msgstr "ja siis" -#: db_operations.php:451 libraries/messages.inc.php:233 +#: db_operations.php:451 libraries/messages.inc.php:229 msgid "Copy database to" msgstr "Kopeeri andmebaas" -#: db_operations.php:458 libraries/messages.inc.php:1043 +#: db_operations.php:458 libraries/messages.inc.php:1039 #: tbl_operations.php:526 tbl_tracking.php:388 msgid "Structure only" msgstr "Ainult struktuur" -#: db_operations.php:459 libraries/messages.inc.php:1041 +#: db_operations.php:459 libraries/messages.inc.php:1037 #: tbl_operations.php:527 tbl_tracking.php:390 msgid "Structure and data" msgstr "Struktuur ja andmed" -#: db_operations.php:460 libraries/messages.inc.php:229 tbl_operations.php:528 +#: db_operations.php:460 libraries/messages.inc.php:225 tbl_operations.php:528 #: tbl_tracking.php:389 msgid "Data only" msgstr "Ainult andmed" -#: db_operations.php:468 libraries/messages.inc.php:186 +#: db_operations.php:468 libraries/messages.inc.php:182 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE enne kopeerimist" #: db_operations.php:471 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 -#: libraries/export/sql.php:82 libraries/messages.inc.php:30 +#: libraries/export/sql.php:82 libraries/messages.inc.php:26 #: tbl_operations.php:534 #, php-format msgid "Add %s" msgstr "Lisa %s" -#: db_operations.php:475 libraries/messages.inc.php:29 tbl_operations.php:297 +#: db_operations.php:475 libraries/messages.inc.php:25 tbl_operations.php:297 #: tbl_operations.php:536 msgid "Add AUTO_INCREMENT value" msgstr "Lisa AUTO_INCREMENT väärtus" -#: db_operations.php:479 libraries/messages.inc.php:31 tbl_operations.php:543 +#: db_operations.php:479 libraries/messages.inc.php:27 tbl_operations.php:543 msgid "Add constraints" msgstr "Lisa piirangud" -#: db_operations.php:492 libraries/messages.inc.php:1059 +#: db_operations.php:492 libraries/messages.inc.php:1055 msgid "Switch to copied database" msgstr "Mine kopeeritud andmebaasile" -#: db_operations.php:533 libraries/messages.inc.php:89 +#: db_operations.php:533 libraries/messages.inc.php:85 msgid "BLOB Repository" msgstr "" #: db_operations.php:536 db_tracking.php:76 libraries/common.lib.php:1350 -#: libraries/messages.inc.php:1037 libraries/server_links.inc.php:49 +#: libraries/messages.inc.php:1033 libraries/server_links.inc.php:49 #: server_processlist.php:59 tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "Staatus" @@ -304,12 +304,12 @@ msgctxt "BLOB repository" msgid "Enabled" msgstr "Lubatud" -#: db_operations.php:548 libraries/messages.inc.php:93 +#: db_operations.php:548 libraries/messages.inc.php:89 #, fuzzy msgid "Disable" msgstr "Keelatud" -#: db_operations.php:558 libraries/messages.inc.php:90 +#: db_operations.php:558 libraries/messages.inc.php:86 msgid "Damaged" msgstr "" @@ -326,13 +326,13 @@ msgctxt "BLOB repository" msgid "Disabled" msgstr "Keelatud" -#: db_operations.php:574 libraries/messages.inc.php:96 +#: db_operations.php:574 libraries/messages.inc.php:92 #, fuzzy msgid "Enable" msgstr "Lubatud" #: db_operations.php:598 libraries/Index.class.php:448 -#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:158 +#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:154 #: 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:361 @@ -341,7 +341,7 @@ msgstr "Lubatud" msgid "Collation" msgstr "Määrang" -#: db_operations.php:609 libraries/messages.inc.php:742 main.php:316 +#: db_operations.php:609 libraries/messages.inc.php:738 main.php:316 #: pdf_schema.php:34 #, php-format msgid "" @@ -351,58 +351,58 @@ msgstr "" "Lisavõimalused töötamiseks lingitud tabelitega on deaktiveeritud. Et lugeda " "miks see nii on, vajutage %ssiia%s." -#: db_operations.php:645 libraries/messages.inc.php:264 pdf_pages.php:528 +#: db_operations.php:645 libraries/messages.inc.php:260 pdf_pages.php:528 msgid "Display PDF schema" msgstr "Näita PDF skeemi" -#: db_operations.php:661 libraries/messages.inc.php:877 pdf_pages.php:529 +#: db_operations.php:661 libraries/messages.inc.php:873 pdf_pages.php:529 msgid "Show grid" msgstr "Näita võrgustiku" -#: db_operations.php:664 libraries/messages.inc.php:874 pdf_pages.php:530 +#: db_operations.php:664 libraries/messages.inc.php:870 pdf_pages.php:530 msgid "Show color" msgstr "Näita värvi" -#: db_operations.php:666 libraries/messages.inc.php:998 pdf_pages.php:531 +#: db_operations.php:666 libraries/messages.inc.php:994 pdf_pages.php:531 msgid "Show dimension of tables" msgstr "Näita tabelite dimensiooni" -#: db_operations.php:669 libraries/messages.inc.php:52 pdf_pages.php:532 +#: db_operations.php:669 libraries/messages.inc.php:48 pdf_pages.php:532 msgid "Display all tables with the same width" msgstr "kuva kõik tabelid sama laiusega?" -#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:227 +#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:223 #: pdf_pages.php:533 msgid "Data Dictionary" msgstr "Andmesõnastik" -#: db_operations.php:674 libraries/messages.inc.php:884 pdf_pages.php:534 +#: db_operations.php:674 libraries/messages.inc.php:880 pdf_pages.php:534 msgid "Only show keys" msgstr "" -#: db_operations.php:676 libraries/messages.inc.php:875 pdf_pages.php:535 +#: db_operations.php:676 libraries/messages.inc.php:871 pdf_pages.php:535 msgid "Data Dictionary Format" msgstr "Andmesõnastiku formaat" -#: db_operations.php:678 libraries/messages.inc.php:464 pdf_pages.php:537 +#: db_operations.php:678 libraries/messages.inc.php:460 pdf_pages.php:537 msgid "Landscape" msgstr "Laipilt" -#: db_operations.php:679 libraries/messages.inc.php:663 pdf_pages.php:538 +#: db_operations.php:679 libraries/messages.inc.php:659 pdf_pages.php:538 msgid "Portrait" msgstr "Portreepilt" -#: db_operations.php:682 libraries/messages.inc.php:599 pdf_pages.php:541 +#: db_operations.php:682 libraries/messages.inc.php:595 pdf_pages.php:541 msgid "Paper size" msgstr "Paberi suurus" -#: db_operations.php:706 libraries/messages.inc.php:281 +#: db_operations.php:706 libraries/messages.inc.php:277 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 libraries/messages.inc.php:1087 +#: libraries/header.inc.php:126 libraries/messages.inc.php:1083 #: pdf_pages.php:405 server_privileges.php:1626 server_privileges.php:1682 #: server_privileges.php:1946 server_synchronize.php:423 #: server_synchronize.php:866 tbl_tracking.php:592 test/theme.php:75 @@ -410,176 +410,176 @@ msgid "Table" msgstr "Tabel" #: db_printview.php:105 libraries/db_structure.lib.php:56 -#: libraries/messages.inc.php:735 +#: libraries/messages.inc.php:731 msgid "Records" msgstr "Kirjeid" #: db_printview.php:109 libraries/db_structure.lib.php:67 -#: libraries/messages.inc.php:1003 tbl_indexes.php:190 +#: libraries/messages.inc.php:999 tbl_indexes.php:190 msgid "Size" msgstr "Suurus" #: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 -#: libraries/export/sql.php:899 libraries/messages.inc.php:436 +#: libraries/export/sql.php:899 libraries/messages.inc.php:432 msgid "in use" msgstr "kasutusel" #: db_printview.php:187 libraries/db_info.inc.php:88 -#: libraries/export/sql.php:514 libraries/messages.inc.php:1032 +#: libraries/export/sql.php:514 libraries/messages.inc.php:1028 #: pdf_schema.php:1241 tbl_printview.php:434 tbl_structure.php:810 msgid "Creation" msgstr "Loodud" #: db_printview.php:196 libraries/db_info.inc.php:93 -#: libraries/export/sql.php:519 libraries/messages.inc.php:1036 +#: libraries/export/sql.php:519 libraries/messages.inc.php:1032 #: pdf_schema.php:1246 tbl_printview.php:444 tbl_structure.php:818 msgid "Last update" msgstr "Viimane muudatus" #: db_printview.php:205 libraries/db_info.inc.php:98 -#: libraries/export/sql.php:524 libraries/messages.inc.php:1031 +#: libraries/export/sql.php:524 libraries/messages.inc.php:1027 #: pdf_schema.php:1251 tbl_printview.php:454 tbl_structure.php:826 msgid "Last check" msgstr "Viimane vaatamine" -#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1085 +#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1081 #, php-format msgid "%s table(s)" msgstr "%s tabel(it)" #: db_qbe.php:29 libraries/display_tbl.lib.php:1981 -#: libraries/messages.inc.php:1051 libraries/sql_query_form.lib.php:140 +#: libraries/messages.inc.php:1047 libraries/sql_query_form.lib.php:140 #: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131 #: view_operations.php:62 msgid "Your SQL query has been executed successfully" msgstr "Teie SQL päring täideti edukalt" -#: db_qbe.php:42 libraries/messages.inc.php:371 +#: db_qbe.php:42 libraries/messages.inc.php:367 msgid "You have to choose at least one column to display" msgstr "Te peate valima vähemalt ühe veeru kuvamiseks" #: db_qbe.php:200 libraries/db_structure.lib.php:104 -#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1014 +#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1010 msgid "Sort" msgstr "Sorteeri" #: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111 #: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828 -#: libraries/messages.inc.php:69 server_databases.php:170 +#: libraries/messages.inc.php:65 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314 msgid "Ascending" msgstr "Kasvav" #: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119 #: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825 -#: libraries/messages.inc.php:251 server_databases.php:170 +#: libraries/messages.inc.php:247 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315 msgid "Descending" msgstr "Kahanev" #: db_qbe.php:264 db_tracking.php:78 libraries/display_tbl.lib.php:308 -#: libraries/messages.inc.php:888 tbl_change.php:277 tbl_tracking.php:597 +#: libraries/messages.inc.php:884 tbl_change.php:277 tbl_tracking.php:597 msgid "Show" msgstr "Näita" -#: db_qbe.php:300 libraries/messages.inc.php:202 +#: db_qbe.php:300 libraries/messages.inc.php:198 msgid "Criteria" msgstr "Kriteerium" #: db_qbe.php:353 db_qbe.php:435 db_qbe.php:527 db_qbe.php:558 -#: libraries/messages.inc.php:718 +#: libraries/messages.inc.php:714 msgid "Ins" msgstr "Ins" #: db_qbe.php:357 db_qbe.php:439 db_qbe.php:524 db_qbe.php:555 -#: libraries/messages.inc.php:56 +#: libraries/messages.inc.php:52 msgid "And" msgstr "ja" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:529 db_qbe.php:560 -#: libraries/messages.inc.php:717 +#: libraries/messages.inc.php:713 msgid "Del" 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/messages.inc.php:592 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:588 #: libraries/tbl_properties.inc.php:779 server_privileges.php:258 #: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288 msgid "Or" msgstr "või" -#: db_qbe.php:507 libraries/messages.inc.php:516 +#: db_qbe.php:507 libraries/messages.inc.php:512 msgid "Modify" msgstr "Muuda" -#: db_qbe.php:584 libraries/messages.inc.php:33 +#: db_qbe.php:584 libraries/messages.inc.php:29 msgid "Add/Delete Criteria Row" msgstr "Lisa/Kustuta kriteeriumirida" -#: db_qbe.php:596 libraries/messages.inc.php:32 +#: db_qbe.php:596 libraries/messages.inc.php:28 msgid "Add/Delete Field Columns" msgstr "Lisa/Kustuta välja veerud" -#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1192 +#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1188 msgid "Update Query" msgstr "Uuenda päringut" -#: db_qbe.php:617 libraries/messages.inc.php:1216 +#: db_qbe.php:617 libraries/messages.inc.php:1212 msgid "Use Tables" msgstr "Kasuta tabeleid" -#: db_qbe.php:640 libraries/messages.inc.php:723 +#: db_qbe.php:640 libraries/messages.inc.php:719 #, php-format msgid "SQL query on database %s:" msgstr "SQL-päring andmebaasist %s:" -#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:823 +#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:819 msgid "Submit Query" msgstr "Lae päring" #: db_search.php:68 libraries/auth/config.auth.lib.php:84 #: libraries/auth/config.auth.lib.php:103 #: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52 -#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:26 +#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:22 msgid "Access denied" msgstr "Ligipääs keelatud" -#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:836 +#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:832 msgid "at least one of the words" msgstr "vähemalt üks sõnadest" -#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:837 +#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:833 msgid "all words" msgstr "kõik sõnadest" -#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:838 +#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:834 msgid "the exact phrase" msgstr "täpne fraas" -#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:839 +#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:835 msgid "as regular expression" msgstr "regulaaravaldisena" -#: db_search.php:242 libraries/messages.inc.php:840 +#: db_search.php:242 libraries/messages.inc.php:836 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Otsingu tulemused \"%s\" %s:" -#: db_search.php:260 libraries/messages.inc.php:579 +#: db_search.php:260 libraries/messages.inc.php:575 #, php-format msgid "%s match(es) inside table %s" 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/messages.inc.php:108 +#: db_structure.php:105 libraries/messages.inc.php:104 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468 msgid "Browse" msgstr "Vaata" #: db_search.php:272 libraries/display_tbl.lib.php:1165 -#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:243 +#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:239 #: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406 #: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377 #: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216 @@ -587,45 +587,45 @@ msgstr "Vaata" msgid "Delete" msgstr "Kustuta" -#: db_search.php:285 libraries/messages.inc.php:580 +#: db_search.php:285 libraries/messages.inc.php:576 #, php-format msgid "Total: %s match(es)" msgstr "Kokku: %s vaste(t)" -#: db_search.php:299 libraries/messages.inc.php:832 +#: db_search.php:299 libraries/messages.inc.php:828 msgid "Search in database" msgstr "Otsi andmebaasist" -#: db_search.php:302 libraries/messages.inc.php:835 +#: db_search.php:302 libraries/messages.inc.php:831 msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgstr "Sõna(d) või väärtus(ed) otsinguks (lühend: \"%\"):" -#: db_search.php:307 libraries/messages.inc.php:842 +#: db_search.php:307 libraries/messages.inc.php:838 msgid "Find:" msgstr "Leia:" -#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1017 +#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1013 msgid "Words are separated by a space character (\" \")." msgstr "Sõnad on eraldatud tühikuga (\" \")." -#: db_search.php:325 libraries/messages.inc.php:834 +#: db_search.php:325 libraries/messages.inc.php:830 msgid "Inside table(s):" msgstr "Otsi tabeli(te)st:" -#: db_search.php:355 libraries/messages.inc.php:833 +#: db_search.php:355 libraries/messages.inc.php:829 msgid "Inside field:" 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/messages.inc.php:431 libraries/sql_query_form.lib.php:334 +#: libraries/messages.inc.php:427 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/db_links.inc.php:63 libraries/export/latex.php:337 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:1048 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:1044 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 #: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269 msgid "Structure" @@ -634,8 +634,8 @@ 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:1642 -#: libraries/db_links.inc.php:100 libraries/messages.inc.php:272 +#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/db_links.inc.php:100 libraries/messages.inc.php:268 #: 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 @@ -645,40 +645,40 @@ 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:1641 -#: libraries/messages.inc.php:284 libraries/mult_submits.inc.php:39 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: libraries/messages.inc.php:280 libraries/mult_submits.inc.php:39 #: libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Tühjenda" -#: db_structure.php:316 libraries/messages.inc.php:1075 +#: db_structure.php:316 libraries/messages.inc.php:1071 #: libraries/tbl_links.inc.php:100 #, php-format msgid "Table %s has been emptied" msgstr "Tabel %s tühjendatud" -#: db_structure.php:326 libraries/messages.inc.php:1229 +#: db_structure.php:326 libraries/messages.inc.php:1225 #: libraries/tbl_links.inc.php:133 #, php-format msgid "View %s has been dropped" msgstr "Vaade %s on kustutatud" -#: db_structure.php:326 libraries/messages.inc.php:1074 +#: db_structure.php:326 libraries/messages.inc.php:1070 #: libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "Tabel %s kustutatud" -#: db_structure.php:333 libraries/messages.inc.php:1128 +#: db_structure.php:333 libraries/messages.inc.php:1124 msgid "Tracking is active." msgstr "" -#: db_structure.php:335 libraries/messages.inc.php:1129 +#: db_structure.php:335 libraries/messages.inc.php:1125 msgid "Tracking is not active." msgstr "" #: db_structure.php:420 libraries/display_tbl.lib.php:1944 -#: libraries/messages.inc.php:1228 +#: libraries/messages.inc.php:1224 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -686,83 +686,83 @@ msgid "" msgstr "" #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 -#: libraries/messages.inc.php:1233 libraries/tbl_info.inc.php:66 +#: libraries/messages.inc.php:1229 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/messages.inc.php:773 libraries/server_links.inc.php:70 +#: libraries/messages.inc.php:769 libraries/server_links.inc.php:70 #: server_replication.php:33 server_replication.php:164 server_status.php:258 msgid "Replication" msgstr "Tiražeerimine" -#: db_structure.php:489 libraries/messages.inc.php:1053 +#: db_structure.php:489 libraries/messages.inc.php:1049 msgid "Sum" msgstr "Summa" #: db_structure.php:496 libraries/StorageEngine.class.php:356 -#: libraries/messages.inc.php:239 +#: libraries/messages.inc.php:235 #, 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 #: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086 -#: libraries/messages.inc.php:1243 libraries/mult_submits.inc.php:16 +#: libraries/messages.inc.php:1239 libraries/mult_submits.inc.php:16 #: server_databases.php:346 server_databases.php:351 #: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465 msgid "With selected:" msgstr "Valitud:" #: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: libraries/messages.inc.php:148 server_databases.php:348 +#: libraries/messages.inc.php:144 server_databases.php:348 #: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459 msgid "Check All" msgstr "Märgista kõik" #: db_structure.php:531 libraries/display_tbl.lib.php:2077 -#: libraries/messages.inc.php:1184 libraries/replication_gui.lib.php:33 +#: libraries/messages.inc.php:1180 libraries/replication_gui.lib.php:33 #: server_databases.php:350 server_privileges.php:533 #: server_privileges.php:1564 tbl_structure.php:463 msgid "Uncheck All" msgstr "Puhasta kõik" -#: db_structure.php:536 libraries/messages.inc.php:150 +#: db_structure.php:536 libraries/messages.inc.php:146 msgid "Check tables having overhead" msgstr "Kontrolli ülekulusid" #: db_structure.php:547 db_structure.php:548 db_structure.php:599 -#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:672 +#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:668 #: libraries/mult_submits.inc.php:28 tbl_structure.php:493 #: tbl_structure.php:495 msgid "Print view" msgstr "Trükivaade" -#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:153 +#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:149 #: libraries/mult_submits.inc.php:42 tbl_operations.php:579 msgid "Check table" msgstr "Kontrolli tabelit" -#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:590 +#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:586 #: libraries/mult_submits.inc.php:47 tbl_operations.php:619 #: tbl_structure.php:710 tbl_structure.php:712 msgid "Optimize table" msgstr "Optimiseeri tabelit" -#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:758 +#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:754 #: libraries/mult_submits.inc.php:52 tbl_operations.php:609 msgid "Repair table" msgstr "Paranda tabelit" -#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:55 +#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:51 #: libraries/mult_submits.inc.php:57 tbl_operations.php:599 msgid "Analyze table" msgstr "Analüüsi tabelit" #: db_structure.php:557 db_structure.php:558 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/messages.inc.php:310 +#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:306 #: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84 #: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109 #: server_privileges.php:1341 setup/frames/menu.inc.php:22 @@ -770,7 +770,7 @@ msgstr "Analüüsi tabelit" msgid "Export" msgstr "Ekspordi" -#: db_tracking.php:66 libraries/messages.inc.php:1151 +#: db_tracking.php:66 libraries/messages.inc.php:1147 #, fuzzy msgid "Tracked tables" msgstr "Kontrolli tabelit" @@ -779,7 +779,7 @@ msgstr "Kontrolli tabelit" #: 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/header_printview.inc.php:58 libraries/messages.inc.php:212 +#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:208 #: navigation.php:233 server_databases.php:169 server_privileges.php:1621 #: server_privileges.php:1682 server_privileges.php:1940 #: server_processlist.php:56 server_synchronize.php:1179 @@ -787,83 +787,83 @@ msgstr "Kontrolli tabelit" msgid "Database" msgstr "Andmebaas" -#: db_tracking.php:73 libraries/messages.inc.php:1146 +#: db_tracking.php:73 libraries/messages.inc.php:1142 #, fuzzy msgid "Last version" msgstr "Suhte loomine (relation)" -#: db_tracking.php:74 libraries/messages.inc.php:1145 tbl_tracking.php:594 +#: db_tracking.php:74 libraries/messages.inc.php:1141 tbl_tracking.php:594 #, fuzzy msgid "Created" msgstr "Loo" -#: db_tracking.php:75 libraries/messages.inc.php:1147 tbl_tracking.php:595 +#: db_tracking.php:75 libraries/messages.inc.php:1143 tbl_tracking.php:595 msgid "Updated" msgstr "" #: db_tracking.php:77 libraries/Index.class.php:440 -#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:27 +#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:23 #: server_databases.php:203 server_privileges.php:1503 #: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187 msgid "Action" msgstr "Tegevus" -#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:247 +#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:243 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:106 libraries/messages.inc.php:1142 tbl_tracking.php:548 +#: db_tracking.php:106 libraries/messages.inc.php:1138 tbl_tracking.php:548 #: tbl_tracking.php:606 tbl_tracking.php:613 msgid "active" msgstr "" -#: db_tracking.php:108 libraries/messages.inc.php:1143 tbl_tracking.php:550 +#: db_tracking.php:108 libraries/messages.inc.php:1139 tbl_tracking.php:550 #: tbl_tracking.php:608 tbl_tracking.php:610 msgid "not active" msgstr "" -#: db_tracking.php:121 libraries/messages.inc.php:1160 +#: db_tracking.php:121 libraries/messages.inc.php:1156 #, fuzzy msgid "Versions" msgstr "Pärsia" -#: db_tracking.php:122 libraries/messages.inc.php:1132 tbl_tracking.php:379 +#: db_tracking.php:122 libraries/messages.inc.php:1128 tbl_tracking.php:379 #: tbl_tracking.php:624 msgid "Tracking report" msgstr "" -#: db_tracking.php:123 libraries/messages.inc.php:1144 tbl_tracking.php:251 +#: db_tracking.php:123 libraries/messages.inc.php:1140 tbl_tracking.php:251 #: tbl_tracking.php:624 #, fuzzy msgid "Structure snapshot" msgstr "Ainult struktuur" -#: db_tracking.php:152 libraries/messages.inc.php:1154 +#: db_tracking.php:152 libraries/messages.inc.php:1150 #, fuzzy msgid "Untracked tables" msgstr "Kontrolli tabelit" -#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1153 +#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1149 #: tbl_structure.php:529 tbl_structure.php:531 #, fuzzy msgid "Track table" msgstr "Kontrolli tabelit" -#: db_tracking.php:200 libraries/messages.inc.php:1121 +#: db_tracking.php:200 libraries/messages.inc.php:1117 #, fuzzy msgid "Database Log" msgstr "Andmebaas" -#: export.php:62 libraries/messages.inc.php:312 +#: export.php:62 libraries/messages.inc.php:308 msgid "Selected export type has to be saved in file!" msgstr "Valitud eksportimise tüüp tuleb salvestada faili!" -#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:567 +#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:563 #, php-format msgid "Insufficient space to save the file %s." msgstr "Liiga vähe kettaruumi, et salvestada fail %s." -#: export.php:294 libraries/messages.inc.php:324 +#: export.php:294 libraries/messages.inc.php:320 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -871,17 +871,17 @@ msgstr "" "Fail %s on juba serveris olemas, muutke faili nime või kontrollige " "ülekirjutamise seadeid." -#: export.php:298 export.php:302 libraries/messages.inc.php:562 +#: export.php:298 export.php:302 libraries/messages.inc.php:558 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Webiserver ei oma õigusi , et salvestada fail %s." -#: export.php:629 libraries/messages.inc.php:276 +#: export.php:629 libraries/messages.inc.php:272 #, php-format msgid "Dump has been saved to file %s." msgstr "Väljavõte salvestati faili %s." -#: import.php:60 libraries/messages.inc.php:1202 +#: import.php:60 libraries/messages.inc.php:1198 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation%" @@ -891,14 +891,14 @@ msgstr "" "dokumentatsiooni %sdocumentation%s selle limiidi seadmiseks." #: import.php:279 import.php:332 libraries/File.class.php:849 -#: libraries/File.class.php:961 libraries/messages.inc.php:325 +#: libraries/File.class.php:961 libraries/messages.inc.php:321 msgid "File could not be read" msgstr "Faili ei suudetud lugeda" #: import.php:287 import.php:296 import.php:315 import.php:324 #: libraries/File.class.php:1031 libraries/File.class.php:1039 #: libraries/File.class.php:1055 libraries/File.class.php:1063 -#: libraries/messages.inc.php:1189 +#: libraries/messages.inc.php:1185 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -907,7 +907,7 @@ msgstr "" "Proovisid laadida faili tundmatu pakkimisega (%s). Võimalik et toetus ei ole " "veel lisatud või on sinu seadetes keelatud." -#: import.php:337 libraries/messages.inc.php:547 +#: import.php:337 libraries/messages.inc.php:543 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -918,29 +918,29 @@ msgstr "" "1.16." #: import.php:372 libraries/display_import.lib.php:24 -#: libraries/messages.inc.php:125 +#: libraries/messages.inc.php:121 msgid "Could not load import plugins, please check your installation!" msgstr "Pole võimalik Importida mooduleid (plugins), palun kontrolli seadeid!" -#: import.php:397 libraries/messages.inc.php:102 +#: import.php:397 libraries/messages.inc.php:98 msgid "The bookmark has been deleted." msgstr "Järjehodja kustutati." -#: import.php:401 libraries/messages.inc.php:879 +#: import.php:401 libraries/messages.inc.php:875 msgid "Showing bookmark" msgstr "Näitan järjehoidjat" -#: import.php:403 libraries/messages.inc.php:101 +#: import.php:403 libraries/messages.inc.php:97 #, php-format msgid "Bookmark %s created" msgstr "Järjehoidja %s loodud" -#: import.php:409 import.php:415 libraries/messages.inc.php:407 +#: import.php:409 import.php:415 libraries/messages.inc.php:403 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Import lõppetati edukalt, %d päringut käivitatud." -#: import.php:424 libraries/messages.inc.php:1107 +#: import.php:424 libraries/messages.inc.php:1103 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -948,11 +948,11 @@ msgstr "" "Skripti ajalimiit on ületatud, kui soovid importimist jätkata, palun lae " "sama fail uuesti ja import jätkub." -#: index.php:190 libraries/messages.inc.php:553 +#: index.php:190 libraries/messages.inc.php:549 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin on sõbralikum frame toetava browseriga." -#: js/messages.php:25 libraries/messages.inc.php:155 +#: js/messages.php:25 libraries/messages.inc.php:151 #: server_synchronize.php:345 server_synchronize.php:357 #: server_synchronize.php:373 server_synchronize.php:380 #: server_synchronize.php:739 server_synchronize.php:767 @@ -960,116 +960,116 @@ msgstr "phpMyAdmin on sõbralikum frame toetava browseriga." msgid "Click to select" msgstr "" -#: js/messages.php:26 libraries/messages.inc.php:156 +#: js/messages.php:26 libraries/messages.inc.php:152 msgid "Click to unselect" msgstr "" #: js/messages.php:27 libraries/import.lib.php:103 -#: libraries/messages.inc.php:550 sql.php:89 +#: libraries/messages.inc.php:546 sql.php:89 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" käsud keelatud." -#: js/messages.php:30 libraries/messages.inc.php:270 +#: js/messages.php:30 libraries/messages.inc.php:266 #: libraries/mult_submits.inc.php:258 sql.php:188 msgid "Do you really want to " msgstr "Kas te tõesti tahate " -#: js/messages.php:31 libraries/messages.inc.php:271 +#: js/messages.php:31 libraries/messages.inc.php:267 #: libraries/mult_submits.inc.php:258 sql.php:172 msgid "You are about to DESTROY a complete database!" msgstr "Tähelepanu! Te HÄVITATE kogu andmebaasi!" -#: js/messages.php:34 libraries/messages.inc.php:94 +#: js/messages.php:34 libraries/messages.inc.php:90 msgid "You are about to DISABLE a BLOB Repository!" msgstr "" -#: js/messages.php:35 libraries/messages.inc.php:91 +#: js/messages.php:35 libraries/messages.inc.php:87 #, php-format msgid "Are you sure you want to disable all BLOB references for database %s?" msgstr "" -#: js/messages.php:38 libraries/messages.inc.php:342 +#: js/messages.php:38 libraries/messages.inc.php:338 msgid "Missing value in the form!" msgstr "Puuduv väärtus vormis !" -#: js/messages.php:39 libraries/messages.inc.php:570 +#: js/messages.php:39 libraries/messages.inc.php:566 msgid "This is not a number!" msgstr "See pole number!" -#: js/messages.php:42 libraries/messages.inc.php:380 +#: js/messages.php:42 libraries/messages.inc.php:376 msgid "The host name is empty!" msgstr "Masin on tühi!" -#: js/messages.php:43 libraries/messages.inc.php:1208 +#: js/messages.php:43 libraries/messages.inc.php:1204 msgid "The user name is empty!" msgstr "Kasutajanimi on tühi!" -#: js/messages.php:44 libraries/messages.inc.php:607 +#: js/messages.php:44 libraries/messages.inc.php:603 #: server_privileges.php:1197 user_password.php:70 msgid "The password is empty!" msgstr "Parool on tühi!" -#: js/messages.php:45 libraries/messages.inc.php:609 +#: js/messages.php:45 libraries/messages.inc.php:605 #: server_privileges.php:1195 user_password.php:73 msgid "The passwords aren't the same!" msgstr "Paroolid ei ühti!" -#: js/messages.php:49 libraries/messages.inc.php:123 pmd_general.php:342 +#: js/messages.php:49 libraries/messages.inc.php:119 pmd_general.php:342 #: pmd_general.php:379 msgid "Cancel" msgstr "Katkesta" -#: js/messages.php:52 libraries/messages.inc.php:514 +#: js/messages.php:52 libraries/messages.inc.php:510 msgid "Modifications have been saved" msgstr "Muutused salvestatud" -#: js/messages.php:53 libraries/messages.inc.php:741 +#: js/messages.php:53 libraries/messages.inc.php:737 msgid "Relation deleted" msgstr "Suhe kustutatud" -#: js/messages.php:54 libraries/messages.inc.php:340 +#: js/messages.php:54 libraries/messages.inc.php:336 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:55 libraries/messages.inc.php:434 +#: js/messages.php:55 libraries/messages.inc.php:430 msgid "Internal relation added" msgstr "Sisemine suhe loodud" -#: js/messages.php:56 libraries/messages.inc.php:299 +#: js/messages.php:56 libraries/messages.inc.php:295 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:57 libraries/messages.inc.php:300 +#: js/messages.php:57 libraries/messages.inc.php:296 msgid "Error: relation already exists." msgstr "" -#: js/messages.php:58 libraries/messages.inc.php:302 +#: js/messages.php:58 libraries/messages.inc.php:298 msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:59 libraries/messages.inc.php:351 +#: js/messages.php:59 libraries/messages.inc.php:347 #: libraries/relation.lib.php:107 msgid "General relation features" msgstr "Peamised seoste võimalused" -#: js/messages.php:59 libraries/messages.inc.php:260 +#: js/messages.php:59 libraries/messages.inc.php:256 #: libraries/relation.lib.php:101 libraries/relation.lib.php:108 msgid "Disabled" msgstr "Keelatud" -#: js/messages.php:60 libraries/messages.inc.php:850 +#: js/messages.php:60 libraries/messages.inc.php:846 msgid "Select referenced key" msgstr "Vali eelistus võti (referenced key)" -#: js/messages.php:61 libraries/messages.inc.php:848 +#: js/messages.php:61 libraries/messages.inc.php:844 msgid "Select Foreign Key" msgstr "Vali võõrvõti(Foreign Key)" -#: js/messages.php:62 libraries/messages.inc.php:653 +#: js/messages.php:62 libraries/messages.inc.php:649 msgid "Please select the primary key or a unique key" msgstr "Palun vali primaarne või unkaalne võti" -#: js/messages.php:63 libraries/messages.inc.php:142 pmd_general.php:77 +#: js/messages.php:63 libraries/messages.inc.php:138 pmd_general.php:77 #: tbl_relation.php:548 msgid "Choose field to display" msgstr "Vali väli mida kuvada" @@ -1088,9 +1088,9 @@ msgid "Prev" msgstr "Eelmine" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2332 -#: libraries/common.lib.php:2335 libraries/display_tbl.lib.php:338 -#: libraries/messages.inc.php:543 server_binlog.php:205 server_binlog.php:207 +#: js/messages.php:77 libraries/common.lib.php:2344 +#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: libraries/messages.inc.php:539 server_binlog.php:205 server_binlog.php:207 #: tbl_printview.php:424 tbl_structure.php:802 msgid "Next" msgstr "Järgmine" @@ -1165,27 +1165,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1543 +#: js/messages.php:97 libraries/common.lib.php:1555 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1545 +#: js/messages.php:99 libraries/common.lib.php:1557 msgid "Feb" msgstr "Veb" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1547 +#: js/messages.php:101 libraries/common.lib.php:1559 msgid "Mar" msgstr "Mär" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1549 +#: js/messages.php:103 libraries/common.lib.php:1561 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1551 +#: js/messages.php:105 libraries/common.lib.php:1563 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1193,37 +1193,37 @@ msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1553 +#: js/messages.php:107 libraries/common.lib.php:1565 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1555 +#: js/messages.php:109 libraries/common.lib.php:1567 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1557 +#: js/messages.php:111 libraries/common.lib.php:1569 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1559 +#: js/messages.php:113 libraries/common.lib.php:1571 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1561 +#: js/messages.php:115 libraries/common.lib.php:1573 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1563 +#: js/messages.php:117 libraries/common.lib.php:1575 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1565 +#: js/messages.php:119 libraries/common.lib.php:1577 msgid "Dec" msgstr "Det" @@ -1264,37 +1264,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1568 +#: js/messages.php:132 libraries/common.lib.php:1580 msgid "Sun" msgstr "Püh" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1570 +#: js/messages.php:134 libraries/common.lib.php:1582 msgid "Mon" msgstr "Esm" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1572 +#: js/messages.php:136 libraries/common.lib.php:1584 msgid "Tue" msgstr "Tei" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1574 +#: js/messages.php:138 libraries/common.lib.php:1586 msgid "Wed" msgstr "Kol" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1576 +#: js/messages.php:140 libraries/common.lib.php:1588 msgid "Thu" msgstr "Nel" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1578 +#: js/messages.php:142 libraries/common.lib.php:1590 msgid "Fri" msgstr "Ree" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1580 +#: js/messages.php:144 libraries/common.lib.php:1592 msgid "Sat" msgstr "Lau" @@ -1368,77 +1368,77 @@ msgstr "kasutusel" msgid "Second" msgstr "sekundis" -#: libraries/Config.class.php:1015 libraries/messages.inc.php:338 +#: libraries/Config.class.php:1015 libraries/messages.inc.php:334 msgid "Font size" msgstr "Fondi suurus" #: libraries/File.class.php:344 libraries/File.class.php:432 #: libraries/File.class.php:569 libraries/File.class.php:708 -#: libraries/messages.inc.php:1201 +#: libraries/messages.inc.php:1197 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.class.php:414 libraries/messages.inc.php:1198 +#: libraries/File.class.php:414 libraries/messages.inc.php:1194 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:417 libraries/messages.inc.php:1197 +#: libraries/File.class.php:417 libraries/messages.inc.php:1193 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:420 libraries/messages.inc.php:1200 +#: libraries/File.class.php:420 libraries/messages.inc.php:1196 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:423 libraries/messages.inc.php:1199 +#: libraries/File.class.php:423 libraries/messages.inc.php:1195 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:426 libraries/messages.inc.php:1195 +#: libraries/File.class.php:426 libraries/messages.inc.php:1191 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:429 libraries/messages.inc.php:1196 +#: libraries/File.class.php:429 libraries/messages.inc.php:1192 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:908 libraries/messages.inc.php:319 +#: libraries/File.class.php:908 libraries/messages.inc.php:315 #, fuzzy msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "Võib olla umbkaudne. Vaadake FAQ 3.11" -#: libraries/Index.class.php:428 libraries/messages.inc.php:554 +#: libraries/Index.class.php:428 libraries/messages.inc.php:550 #: tbl_relation.php:529 msgid "No index defined!" msgstr "Indeksit pole defineeritud!" -#: libraries/Index.class.php:433 libraries/messages.inc.php:411 +#: libraries/Index.class.php:433 libraries/messages.inc.php:407 #: server_databases.php:132 tbl_tracking.php:316 msgid "Indexes" msgstr "Indeksid" -#: libraries/Index.class.php:444 libraries/messages.inc.php:1186 +#: libraries/Index.class.php:444 libraries/messages.inc.php:1182 #: 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:475 tbl_tracking.php:322 msgid "Unique" msgstr "Unikaalne" -#: libraries/Index.class.php:445 libraries/messages.inc.php:596 +#: libraries/Index.class.php:445 libraries/messages.inc.php:592 #: tbl_tracking.php:323 msgid "Packed" msgstr "" -#: libraries/Index.class.php:447 libraries/messages.inc.php:131 +#: libraries/Index.class.php:447 libraries/messages.inc.php:127 #: tbl_tracking.php:325 msgid "Cardinality" msgstr "Kasulikkus" -#: libraries/Index.class.php:450 libraries/messages.inc.php:162 +#: libraries/Index.class.php:450 libraries/messages.inc.php:158 #: tbl_tracking.php:279 tbl_tracking.php:328 #, fuzzy msgid "Comment" @@ -1447,29 +1447,29 @@ msgstr "Kommentaarid" #: libraries/Index.class.php:466 libraries/common.lib.php:616 #: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:280 pdf_pages.php:280 +#: libraries/messages.inc.php:276 pdf_pages.php:280 #: setup/frames/index.inc.php:124 setup/lib/messages.inc.php:352 #: tbl_row_action.php:69 msgid "Edit" msgstr "Muuda" -#: libraries/Index.class.php:472 libraries/messages.inc.php:666 +#: libraries/Index.class.php:472 libraries/messages.inc.php:662 msgid "The primary key has been dropped" msgstr "Primaarne võti kustutatud" -#: libraries/Index.class.php:476 libraries/messages.inc.php:413 +#: libraries/Index.class.php:476 libraries/messages.inc.php:409 #, php-format msgid "Index %s has been dropped" msgstr "Indeks %s kustutatud" -#: libraries/Index.class.php:576 libraries/messages.inc.php:412 +#: libraries/Index.class.php:576 libraries/messages.inc.php:408 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "" -#: libraries/List_Database.class.php:431 libraries/messages.inc.php:218 +#: libraries/List_Database.class.php:431 libraries/messages.inc.php:214 #: libraries/server_links.inc.php:41 server_databases.php:88 #: server_privileges.php:1621 setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" @@ -1498,85 +1498,85 @@ msgid_plural "%1$d rows inserted." msgstr[0] "Ridu pole valitud" msgstr[1] "Ridu pole valitud" -#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:549 +#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:545 msgid "" "There is no detailed status information available for this storage engine." msgstr "Detailne seisuinformatsioon antud varundusmootori kohta puudub." -#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:291 +#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:287 #, php-format msgid "%s is available on this MySQL server." msgstr "%s on saadaval selles MySQL serveris." -#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:292 +#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:288 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s on keelatud selles MySQL serveris." -#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:294 +#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:290 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "See MySQL server ei toeta %s varundusmootorit." -#: libraries/Table.class.php:1019 libraries/messages.inc.php:443 +#: libraries/Table.class.php:1019 libraries/messages.inc.php:439 msgid "Invalid database" msgstr "Vigane andmebaas" -#: libraries/Table.class.php:1033 libraries/messages.inc.php:450 +#: libraries/Table.class.php:1033 libraries/messages.inc.php:446 #: tbl_get_field.php:26 msgid "Invalid table name" msgstr "Vigane tabeli nimi" -#: libraries/Table.class.php:1048 libraries/messages.inc.php:301 +#: libraries/Table.class.php:1048 libraries/messages.inc.php:297 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "Viga tabeli nime %1$s muutimsel %2$s" -#: libraries/Table.class.php:1132 libraries/messages.inc.php:754 +#: libraries/Table.class.php:1132 libraries/messages.inc.php:750 #, php-format msgid "Table %s has been renamed to %s" msgstr "Tabel %s on ümber nimetatud %s" -#: libraries/Theme.class.php:162 libraries/messages.inc.php:1099 +#: libraries/Theme.class.php:162 libraries/messages.inc.php:1095 #, php-format msgid "No valid image path for theme %s found!" msgstr "Ei leia pildi kataloogi teemale %s!" -#: libraries/Theme.class.php:384 libraries/messages.inc.php:1097 +#: libraries/Theme.class.php:384 libraries/messages.inc.php:1093 msgid "No preview available." msgstr "Eelvaade pole saadaval." -#: libraries/Theme.class.php:387 libraries/messages.inc.php:1089 +#: libraries/Theme.class.php:387 libraries/messages.inc.php:1085 msgid "take it" msgstr "võta see" -#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1096 +#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1092 #, php-format msgid "Default theme %s not found!" msgstr "Ei leia vaikimisi teemat %s!" -#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1098 +#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1094 #, php-format msgid "Theme %s not found!" msgstr "Ei leia teemat %s!" -#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1100 +#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1096 #, php-format msgid "Theme path not found for theme %s!" msgstr "Ei leia kataloogi teemale %s!" -#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1101 +#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1097 #: test/theme.php:161 themes.php:21 themes.php:41 msgid "Theme / Style" msgstr "Teema / Stiil" -#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:172 +#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:168 msgid "Cannot connect: invalid settings." msgstr "Ei saa ühendust: vigased seaded." #: libraries/auth/config.auth.lib.php:92 #: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65 -#: libraries/messages.inc.php:1238 test/theme.php:152 +#: libraries/messages.inc.php:1234 test/theme.php:152 #, php-format msgid "Welcome to %s" msgstr "Tere tulemast %s" @@ -1602,104 +1602,104 @@ msgstr "" "php failis ning kontrollima, et need vastaks infole mis te saite oma MySQL " "serveri administraatori käest." -#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:488 +#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:484 msgid "Log in" msgstr "Sisselogimine" #: libraries/auth/cookie.auth.lib.php:246 -#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:659 +#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:655 #: libraries/navigation_header.inc.php:93 #: libraries/navigation_header.inc.php:95 msgid "phpMyAdmin documentation" msgstr "phpMyAdmini dokumentatsioon" #: libraries/auth/cookie.auth.lib.php:258 -#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:492 +#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:488 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:493 +#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:489 msgid "Server:" msgstr "Server" -#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:494 +#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:490 msgid "Username:" msgstr "Kasutajanimi:" -#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:491 +#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:487 msgid "Password:" msgstr "Parool:" -#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:854 +#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:850 msgid "Server Choice" msgstr "Serveri valik" #: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 -#: libraries/messages.inc.php:177 +#: libraries/messages.inc.php:173 msgid "Cookies must be enabled past this point." msgstr "Küpsised(cookies) peavad alates sellest momendist lubatud olema." #: libraries/auth/cookie.auth.lib.php:671 -#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:489 +#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:485 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" #: libraries/auth/cookie.auth.lib.php:675 -#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:544 +#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:540 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "Ebaaktiivne %s sekundit või rohkem, palun sisenege uuesti" #: libraries/auth/cookie.auth.lib.php:685 #: libraries/auth/cookie.auth.lib.php:687 -#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:126 +#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:122 msgid "Cannot log in to the MySQL server" msgstr "Ei suuda MySQL serverisse logida" -#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1245 +#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1241 msgid "Wrong username/password. Access denied." msgstr "Vale kasutajanimi/parool. Ligipääs keelatud." #: libraries/auth/swekey/swekey.auth.lib.php:118 -#: libraries/messages.inc.php:1057 +#: libraries/messages.inc.php:1053 #, php-format msgid "File %s does not contain any key id" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:157 #: libraries/auth/swekey/swekey.auth.lib.php:180 -#: libraries/messages.inc.php:1056 +#: libraries/messages.inc.php:1052 msgid "Hardware authentication failed" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:166 -#: libraries/messages.inc.php:1058 +#: libraries/messages.inc.php:1054 msgid "No valid authentication key plugged" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:202 -#: libraries/messages.inc.php:1055 +#: libraries/messages.inc.php:1051 msgid "Authenticating..." msgstr "" -#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1230 +#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1226 msgid "View image" msgstr "" -#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:652 +#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:648 msgid "Play audio" msgstr "" -#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1232 +#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1228 msgid "View video" msgstr "" -#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:269 +#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:265 msgid "Download file" msgstr "" -#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:128 +#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:124 msgid "" "Couldn't load the iconv or recode extension needed for charset conversion. " "Either configure PHP to enable these extensions or disable charset " @@ -1711,7 +1711,7 @@ msgstr "" #: libraries/charset_conversion.lib.php:79 #: libraries/charset_conversion.lib.php:90 -#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:130 +#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:126 msgid "" "Couldn't use the iconv, libiconv, or recode_string functions, although the " "necessary extensions appear to be loaded. Check your PHP configuration." @@ -1719,7 +1719,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/messages.inc.php:170 +#: libraries/common.inc.php:583 libraries/messages.inc.php:166 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!" @@ -1755,22 +1755,22 @@ msgstr "" msgid "Invalid server index: %s" msgstr "Vigane serveri indeks: \"%s\"" -#: libraries/common.inc.php:636 libraries/messages.inc.php:448 +#: libraries/common.inc.php:636 libraries/messages.inc.php:444 #, 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/messages.inc.php:856 libraries/select_server.lib.php:41 +#: libraries/messages.inc.php:852 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/messages.inc.php:437 +#: libraries/common.inc.php:823 libraries/messages.inc.php:433 msgid "Invalid authentication method set in configuration:" msgstr "Vigane autoriseerimise meetod konfiguratsioonifailis:" -#: libraries/common.lib.php:147 libraries/messages.inc.php:499 +#: libraries/common.lib.php:147 libraries/messages.inc.php:495 #, php-format msgid "Max: %s%s" msgstr "Maksimaalne suurus: %s%s" @@ -1792,7 +1792,7 @@ msgstr "Saadetud" #: libraries/common.lib.php:428 libraries/common.lib.php:430 #: libraries/common.lib.php:432 libraries/common.lib.php:448 #: libraries/common.lib.php:450 libraries/dbg/setup.php:25 -#: libraries/display_export.lib.php:164 libraries/messages.inc.php:267 +#: libraries/display_export.lib.php:164 libraries/messages.inc.php:263 #: libraries/relation.lib.php:97 libraries/sql_query_form.lib.php:451 #: libraries/sql_query_form.lib.php:454 main.php:229 pdf_pages.php:37 #: pdf_pages.php:43 pdf_pages.php:49 pdf_pages.php:54 @@ -1802,55 +1802,55 @@ msgstr "Dokumentatsioon" #: libraries/common.lib.php:581 libraries/core.lib.php:234 #: libraries/core.lib.php:263 libraries/import.lib.php:134 -#: libraries/messages.inc.php:297 pdf_schema.php:32 pdf_schema.php:232 +#: libraries/messages.inc.php:293 pdf_schema.php:32 pdf_schema.php:232 #: tbl_change.php:1027 tbl_operations.php:213 tbl_relation.php:290 #: view_operations.php:62 msgid "Error" msgstr "Viga" #: libraries/common.lib.php:595 libraries/header_printview.inc.php:61 -#: libraries/messages.inc.php:1023 server_processlist.php:60 +#: libraries/messages.inc.php:1019 server_processlist.php:60 #: server_status.php:247 msgid "SQL query" msgstr "SQL-päring" -#: libraries/common.lib.php:634 libraries/messages.inc.php:538 +#: libraries/common.lib.php:634 libraries/messages.inc.php:534 msgid "MySQL said: " msgstr "MySQL ütles: " -#: libraries/common.lib.php:667 libraries/messages.inc.php:76 +#: libraries/common.lib.php:667 libraries/messages.inc.php:72 #: pdf_schema.php:241 user_password.php:115 msgid "Back" msgstr "Tagasi" -#: libraries/common.lib.php:1177 libraries/messages.inc.php:309 +#: libraries/common.lib.php:1177 libraries/messages.inc.php:305 #: setup/lib/messages.inc.php:353 msgid "Explain SQL" msgstr "Seleta SQL-i" -#: libraries/common.lib.php:1180 libraries/messages.inc.php:551 +#: libraries/common.lib.php:1180 libraries/messages.inc.php:547 msgid "Skip Explain SQL" msgstr "Jäta SQL-i seletamine vahele" -#: libraries/common.lib.php:1212 libraries/messages.inc.php:563 +#: libraries/common.lib.php:1212 libraries/messages.inc.php:559 msgid "Without PHP Code" msgstr "ilma PHP koodita" -#: libraries/common.lib.php:1215 libraries/messages.inc.php:649 +#: libraries/common.lib.php:1215 libraries/messages.inc.php:645 #: setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "Loo PHP kood" -#: libraries/common.lib.php:1233 libraries/messages.inc.php:737 +#: libraries/common.lib.php:1233 libraries/messages.inc.php:733 #: server_status.php:341 setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "Uuenda" -#: libraries/common.lib.php:1242 libraries/messages.inc.php:575 +#: libraries/common.lib.php:1242 libraries/messages.inc.php:571 msgid "Skip Validate SQL" msgstr "Jäta SQL-i kontroll vahele" -#: libraries/common.lib.php:1245 libraries/messages.inc.php:1220 +#: libraries/common.lib.php:1245 libraries/messages.inc.php:1216 #: setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "Kontrolli SQL-i" @@ -1866,11 +1866,11 @@ msgid "Inline" msgstr "Mootor" #: libraries/common.lib.php:1332 libraries/common.lib.php:1347 -#: libraries/messages.inc.php:713 +#: libraries/messages.inc.php:709 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1351 libraries/messages.inc.php:1108 +#: libraries/common.lib.php:1351 libraries/messages.inc.php:1104 #: libraries/tbl_triggers.lib.php:28 server_processlist.php:58 msgid "Time" msgstr "Aeg" @@ -1904,46 +1904,56 @@ msgstr "PB" msgid "EiB" msgstr "EB" +#. l10n: Thousands separator +#: libraries/common.lib.php:1417 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: libraries/common.lib.php:1419 +msgid "." +msgstr "." + #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1584 +#: libraries/common.lib.php:1596 #: libraries/transformations/text_plain__dateformat.inc.php:28 msgid "%B %d, %Y at %I:%M %p" msgstr "%d.%m.%Y kell %H:%M:%S" -#: libraries/common.lib.php:1886 +#: libraries/common.lib.php:1898 #, 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:2301 libraries/common.lib.php:2304 -#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:664 +#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:660 #: server_status.php:608 msgid "Begin" msgstr "Algus" -#: libraries/common.lib.php:2302 libraries/common.lib.php:2305 -#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:665 +#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:661 #: server_binlog.php:168 server_binlog.php:170 msgid "Previous" msgstr "Eelmine" -#: libraries/common.lib.php:2333 libraries/common.lib.php:2336 -#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:289 +#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:285 msgid "End" msgstr "Lõpp" -#: libraries/common.lib.php:2409 libraries/messages.inc.php:455 +#: libraries/common.lib.php:2421 libraries/messages.inc.php:451 #, php-format msgid "Jump to database "%s"." msgstr "Hüppa andmebaasile "%s"." -#: libraries/common.lib.php:2429 libraries/messages.inc.php:461 +#: libraries/common.lib.php:2441 libraries/messages.inc.php:457 #, 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/core.lib.php:286 libraries/dbg/setup.php:22 -#: libraries/messages.inc.php:127 +#: libraries/messages.inc.php:123 #, php-format msgid "" "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " @@ -1952,116 +1962,116 @@ msgstr "" "ei suutnud lugeda moodulit %s,
palun kontrollige PHP konfiguratsiooni" #: libraries/db_events.inc.php:20 libraries/db_events.inc.php:22 -#: libraries/export/sql.php:415 libraries/messages.inc.php:306 +#: libraries/export/sql.php:415 libraries/messages.inc.php:302 #, fuzzy msgid "Events" msgstr "Saadetud" #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 -#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:541 +#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:537 #: libraries/tbl_triggers.lib.php:27 setup/frames/index.inc.php:112 msgid "Name" msgstr "Nimi" -#: libraries/db_links.inc.php:45 libraries/messages.inc.php:216 +#: libraries/db_links.inc.php:45 libraries/messages.inc.php:212 #, php-format msgid "Database %s has been dropped." msgstr "Andmebaas %s kustutatud." #: libraries/db_links.inc.php:57 libraries/db_links.inc.php:58 -#: libraries/db_links.inc.php:59 libraries/messages.inc.php:234 +#: libraries/db_links.inc.php:59 libraries/messages.inc.php:230 msgid "Database seems to be empty!" msgstr "Andmebaas tundub olevat tühi!" -#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1025 +#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1021 #: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60 #: querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1152 +#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1148 #: libraries/tbl_links.inc.php:69 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:86 libraries/messages.inc.php:719 +#: libraries/db_links.inc.php:86 libraries/messages.inc.php:715 msgid "Query" msgstr "Päring näite järgi" -#: libraries/db_links.inc.php:91 libraries/messages.inc.php:253 +#: libraries/db_links.inc.php:91 libraries/messages.inc.php:249 msgid "Designer" msgstr "Kujundaja" -#: libraries/db_links.inc.php:98 libraries/messages.inc.php:397 +#: libraries/db_links.inc.php:98 libraries/messages.inc.php:393 #: libraries/server_links.inc.php:88 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:104 libraries/messages.inc.php:587 +#: libraries/db_links.inc.php:104 libraries/messages.inc.php:583 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" msgstr "Tegevused" -#: libraries/db_links.inc.php:111 libraries/messages.inc.php:709 +#: libraries/db_links.inc.php:111 libraries/messages.inc.php:705 #: libraries/server_links.inc.php:66 server_privileges.php:72 #: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117 msgid "Privileges" msgstr "Privileegid" #: libraries/db_routines.inc.php:30 libraries/db_routines.inc.php:32 -#: libraries/messages.inc.php:812 +#: libraries/messages.inc.php:808 msgid "Routines" msgstr "" -#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:811 +#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:807 msgid "Return type" msgstr "" #: libraries/db_structure.lib.php:57 libraries/display_tbl.lib.php:1848 -#: libraries/messages.inc.php:65 +#: libraries/messages.inc.php:61 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "Võib olla umbkaudne. Vaadake FAQ 3.11" -#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:593 +#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:589 #: server_databases.php:142 tbl_printview.php:336 tbl_structure.php:683 msgid "Overhead" msgstr "Ülejääv" #: libraries/dbi/mysql.dbi.lib.php:112 libraries/dbi/mysqli.dbi.lib.php:124 -#: libraries/messages.inc.php:176 +#: libraries/messages.inc.php:172 msgid "Connection for controluser as defined in your configuration failed." msgstr "" #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 -#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:855 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:851 msgid "The server is not responding" msgstr "Server ei vasta" #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:1010 +#: libraries/messages.inc.php:1006 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 libraries/messages.inc.php:255 +#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:251 #: tbl_structure.php:609 msgid "Details..." msgstr "" -#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:143 +#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:139 #: main.php:91 user_password.php:111 user_password.php:129 msgid "Change password" msgstr "Muuda parooli" -#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:561 +#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:557 #: libraries/replication_gui.lib.php:341 server_privileges.php:768 msgid "No Password" msgstr "Ilma paroolita" -#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:610 +#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:606 #: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60 #: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335 #: libraries/replication_gui.lib.php:345 server_privileges.php:757 @@ -2070,13 +2080,13 @@ msgstr "Ilma paroolita" msgid "Password" msgstr "Parool" -#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:806 +#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:802 #: libraries/replication_gui.lib.php:349 libraries/replication_gui.lib.php:352 #: server_privileges.php:776 server_privileges.php:779 msgid "Re-type" msgstr "Sisesta uuesti" -#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:608 +#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:604 msgid "Password Hashing" msgstr "Parooli tärkimine" @@ -2086,89 +2096,89 @@ msgstr "Parooli tärkimine" msgid "MySQL 4.0 compatible" msgstr "MySQL 4.0-iga ühilduv" -#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:353 +#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:349 #: libraries/replication_gui.lib.php:356 server_privileges.php:783 msgid "Generate Password" msgstr "Genereeri parool" -#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:352 +#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:348 #: libraries/replication_gui.lib.php:359 server_privileges.php:786 msgid "Generate" msgstr "Genereeri" #: libraries/display_create_database.lib.php:22 -#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:189 +#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:185 msgid "Create new database" msgstr "Loo uus andmebaas" -#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:185 +#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:181 msgid "Create" msgstr "Loo" -#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:564 +#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:560 #: server_privileges.php:74 server_privileges.php:1388 #: server_replication.php:35 msgid "No Privileges" msgstr "Ei oma ühtegi privileegi" -#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:445 +#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:441 msgid "Table must have at least one field." msgstr "Tabelil peab olema vähemalt üks väli." -#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:190 +#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:186 #, php-format msgid "Create table on database %s" msgstr "Loo uus tabel andmebaasi %s" -#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:577 +#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:573 msgid "Number of fields" msgstr "Väljade arv" -#: libraries/display_export.lib.php:42 libraries/messages.inc.php:124 +#: libraries/display_export.lib.php:42 libraries/messages.inc.php:120 msgid "Could not load export plugins, please check your installation!" msgstr "Viga eksportimis moodulite laadimisel, palun kontrolli seadeid!" -#: libraries/display_export.lib.php:107 libraries/messages.inc.php:277 +#: libraries/display_export.lib.php:107 libraries/messages.inc.php:273 #, php-format msgid "Dump %s row(s) starting at record # %s" msgstr "Päri %s rida alustades reast %s." -#: libraries/display_export.lib.php:115 libraries/messages.inc.php:274 +#: libraries/display_export.lib.php:115 libraries/messages.inc.php:270 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:125 libraries/messages.inc.php:852 +#: libraries/display_export.lib.php:125 libraries/messages.inc.php:848 #: setup/lib/messages.inc.php:82 msgid "Save as file" msgstr "Salvesta failina" -#: libraries/display_export.lib.php:134 libraries/messages.inc.php:828 +#: libraries/display_export.lib.php:134 libraries/messages.inc.php:824 #, php-format msgid "Save on server in %s directory" msgstr "Salvestage serverisse kataloogi %s" -#: libraries/display_export.lib.php:142 libraries/messages.inc.php:594 +#: libraries/display_export.lib.php:142 libraries/messages.inc.php:590 #: setup/lib/messages.inc.php:90 msgid "Overwrite existing file(s)" msgstr "Kirjuta olemasolev(ad) fail(id) üle" -#: libraries/display_export.lib.php:148 libraries/messages.inc.php:330 +#: libraries/display_export.lib.php:148 libraries/messages.inc.php:326 msgid "File name template" msgstr "Faili nime template" -#: libraries/display_export.lib.php:152 libraries/messages.inc.php:327 +#: libraries/display_export.lib.php:152 libraries/messages.inc.php:323 msgid "server name" msgstr "serveri nimi" -#: libraries/display_export.lib.php:155 libraries/messages.inc.php:326 +#: libraries/display_export.lib.php:155 libraries/messages.inc.php:322 msgid "database name" msgstr "andmebaasi nimi" -#: libraries/display_export.lib.php:158 libraries/messages.inc.php:328 +#: libraries/display_export.lib.php:158 libraries/messages.inc.php:324 msgid "table name" msgstr "tabeli nimi" -#: libraries/display_export.lib.php:162 libraries/messages.inc.php:329 +#: libraries/display_export.lib.php:162 libraries/messages.inc.php:325 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2179,24 +2189,24 @@ msgstr "" "sama aja(time) formaati. Lisaks tulevad ka järgnevad muudatused: %3$s. " "Ülejäänud teks jääb nii nagu ta on." -#: libraries/display_export.lib.php:202 libraries/messages.inc.php:331 +#: libraries/display_export.lib.php:202 libraries/messages.inc.php:327 msgid "remember template" msgstr "jäta template meelde" #: libraries/display_export.lib.php:210 libraries/display_import.lib.php:178 -#: libraries/display_import.lib.php:191 libraries/messages.inc.php:145 +#: libraries/display_import.lib.php:191 libraries/messages.inc.php:141 #: libraries/sql_query_form.lib.php:549 msgid "Character set of the file:" msgstr "Faili tähetabel:" -#: libraries/display_export.lib.php:235 libraries/messages.inc.php:166 +#: libraries/display_export.lib.php:235 libraries/messages.inc.php:162 #: setup/lib/messages.inc.php:84 msgid "Compression" 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/messages.inc.php:558 +#: libraries/export/sql.php:868 libraries/messages.inc.php:554 #: libraries/tbl_properties.inc.php:575 server_privileges.php:1836 #: server_processlist.php:75 msgid "None" @@ -2220,66 +2230,66 @@ msgstr "\"gzipitud\"" msgid "bzipped" msgstr "\"bzipitud\"" -#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1018 +#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1014 msgid "SQL compatibility mode" msgstr "SQL ühilduvus viis" -#: libraries/display_import.lib.php:67 libraries/messages.inc.php:398 +#: libraries/display_import.lib.php:67 libraries/messages.inc.php:394 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " "browsers." msgstr "" -#: libraries/display_import.lib.php:77 libraries/messages.inc.php:406 +#: libraries/display_import.lib.php:77 libraries/messages.inc.php:402 msgid "The file is being processed, please be patient." msgstr "" -#: libraries/display_import.lib.php:99 libraries/messages.inc.php:408 +#: libraries/display_import.lib.php:99 libraries/messages.inc.php:404 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." msgstr "" -#: libraries/display_import.lib.php:126 libraries/messages.inc.php:333 +#: libraries/display_import.lib.php:126 libraries/messages.inc.php:329 msgid "File to import" msgstr "Imporditav Fail" -#: libraries/display_import.lib.php:137 libraries/messages.inc.php:486 +#: libraries/display_import.lib.php:137 libraries/messages.inc.php:482 #: libraries/sql_query_form.lib.php:524 msgid "Location of the text file" msgstr "tekstifaili asukoht" -#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1203 +#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1199 msgid "File uploads are not allowed on this server." msgstr "Faile pole lubatud laadida sellesse serverisse." -#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1235 +#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1231 #: libraries/sql_query_form.lib.php:533 tbl_change.php:1028 msgid "The directory you set for upload work cannot be reached" msgstr "Kataloog mille Te üleslaadimiseks sättisite ei ole ligipääsetav" -#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1236 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1232 #: libraries/sql_query_form.lib.php:536 tbl_change.php:1031 msgid "web server upload directory" msgstr "webiserveri üleslaadimiskataloogi" -#: libraries/display_import.lib.php:212 libraries/messages.inc.php:167 +#: libraries/display_import.lib.php:212 libraries/messages.inc.php:163 #, php-format msgid "Imported file compression will be automatically detected from: %s" msgstr "Imporditava faili pakkimise meetod leitakse automaatselt: %s" -#: libraries/display_import.lib.php:219 libraries/messages.inc.php:600 +#: libraries/display_import.lib.php:219 libraries/messages.inc.php:596 msgid "Partial import" msgstr "Osaline import" -#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1105 +#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1101 #, php-format msgid "" "Previous import timed out, after resubmitting will continue from position %d." msgstr "Eelmine Import aegus, peale uuesti postitamist jätkub asukohast %d." -#: libraries/display_import.lib.php:232 libraries/messages.inc.php:51 +#: libraries/display_import.lib.php:232 libraries/messages.inc.php:47 msgid "" "Allow the interruption of an import in case the script detects it is close " "to the PHP timeout limit. This might be good way to import large files, " @@ -2289,179 +2299,179 @@ msgstr "" "See võib olla hea viis suurte failide importimisel, kuigi võib katkestada " "ülekanded." -#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1004 +#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1000 #: setup/lib/messages.inc.php:161 msgid "Number of records (queries) to skip from start" msgstr "Käske (päringuid) mida algusest vahele jätta" -#: libraries/display_import.lib.php:255 libraries/messages.inc.php:396 +#: libraries/display_import.lib.php:255 libraries/messages.inc.php:392 #: setup/lib/messages.inc.php:160 msgid "Format of imported file" msgstr "Imporditud faili formaat" #: libraries/display_select_lang.lib.php:45 -#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:465 +#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:461 #: setup/frames/index.inc.php:70 msgid "Language" msgstr "Keel" -#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:447 +#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:443 #, php-format msgid "%d is not valid row number." msgstr "%d ei ole õige reanumber." -#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:814 +#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:810 msgid "row(s) starting from record #" msgstr "read alates" -#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:817 +#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:813 msgid "horizontal" msgstr "horisontaalselt" -#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:816 +#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:812 msgid "horizontal (rotated headers)" msgstr "horisontaalne (pööratud päis)" -#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:819 +#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:815 msgid "vertical" msgstr "vertikaalselt" -#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:818 +#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:814 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "näita %s and korda pealkirju iga %s järel" -#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:495 +#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:491 msgid "This operation could take a long time. Proceed anyway?" msgstr "See tegevus võib võtta kaua aega. Jätkan?" -#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1012 +#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1008 msgid "Sort by key" msgstr "Sorteeri võtme järgi" #: libraries/display_tbl.lib.php:555 libraries/import.lib.php:1082 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:591 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:587 #: tbl_select.php:267 tbl_structure.php:754 #, fuzzy msgid "Options" msgstr "Tegevused" #: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:570 -#: libraries/messages.inc.php:601 +#: libraries/messages.inc.php:597 msgid "Partial Texts" msgstr "Lühendatud tekstid" #: libraries/display_tbl.lib.php:561 libraries/display_tbl.lib.php:574 -#: libraries/messages.inc.php:346 +#: libraries/messages.inc.php:342 msgid "Full Texts" msgstr "Täistekstid" -#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:739 +#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:735 #, fuzzy msgid "Relational key" msgstr "Seoseskeem" -#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:738 +#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:734 msgid "Relational display field" msgstr "" -#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:872 +#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:868 msgid "Show binary contents" msgstr "" -#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:873 +#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:869 msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:871 +#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:867 msgid "Show binary contents as HEX" msgstr "" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:375 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:371 #: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320 msgid "Hide" msgstr "Peida" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:508 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:504 #: libraries/tbl_properties.inc.php:144 transformation_overview.php:47 msgid "Browser transformation" msgstr "Browseri transformatsioon" #: libraries/display_tbl.lib.php:1126 libraries/display_tbl.lib.php:1130 -#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:308 +#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:304 msgid "Execute bookmarked query" msgstr "Käivita salvestatud päring" #: libraries/display_tbl.lib.php:1145 libraries/display_tbl.lib.php:1157 -#: libraries/messages.inc.php:244 +#: libraries/messages.inc.php:240 msgid "The row has been deleted" msgstr "Rida kustutatud" #: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056 -#: libraries/messages.inc.php:460 server_processlist.php:71 +#: libraries/messages.inc.php:456 server_processlist.php:71 #: tbl_row_action.php:64 msgid "Kill" msgstr "Tapa" -#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:849 +#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:845 msgid "in query" msgstr "päringus" -#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:881 +#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:877 msgid "Showing rows" msgstr "Näita ridu" -#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1113 +#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1109 msgid "total" msgstr "kokku" -#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:727 +#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:723 #: sql.php:524 #, php-format msgid "Query took %01.4f sec" msgstr "Päring kestis %01.4f sek" -#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:135 +#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:131 #: 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:471 msgid "Change" msgstr "Muuda" -#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:724 +#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:720 msgid "Query results operations" msgstr "Päringu tulemuste tegevused" -#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:671 +#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:667 msgid "Print view (with full texts)" msgstr "Trükivaade (täispikkade tekstidega)" -#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:482 +#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:478 msgid "Link not found" msgstr "Linki ei leitud" -#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1224 +#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1220 #: main.php:228 msgid "Version information" msgstr "Versiooni info" -#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:423 +#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:419 msgid "Data home directory" msgstr "Andmete kodukataloog" -#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:424 +#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:420 msgid "The common part of the directory path for all InnoDB data files." msgstr "Ühine kataloogi nimeosa kõigi InnoDB andmefailide jaoks." -#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:422 +#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:418 msgid "Data files" msgstr "Andmefailid" -#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:418 +#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:414 msgid "Autoextend increment" msgstr "Automaatne suurenduse laiendus" -#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:419 +#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:415 msgid "" " The increment size for extending the size of an autoextending tablespace " "when it becomes full." @@ -2469,11 +2479,11 @@ msgstr "" " Automaatselt suurenev suurus mis lisatakse automaatselt suurenevale " "tabeliruumile kui see täitub." -#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:420 +#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:416 msgid "Buffer pool size" msgstr "Puhverdusala suurus" -#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:421 +#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:417 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." @@ -2481,87 +2491,87 @@ msgstr "" "Mälupuhvri suurus mida InnoDB kasutab oma andmete ja indeksite " "puhverdamiseks." -#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:112 +#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:108 msgid "Buffer Pool" msgstr "Puhverdusala" -#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:426 +#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:422 #: server_status.php:306 msgid "InnoDB Status" msgstr "InnoDB staatus" -#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:113 +#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:109 msgid "Buffer Pool Usage" msgstr "Puhverdusala kasutamine" -#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1114 +#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1110 #: server_databases.php:137 server_databases.php:305 server_status.php:414 #: server_status.php:475 server_status.php:496 tbl_printview.php:351 #: tbl_structure.php:697 msgid "Total" msgstr "Kokku" -#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:425 +#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:421 msgid "pages" msgstr "lehti" -#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:343 +#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:339 msgid "Free pages" msgstr "Vabad lehed" -#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:259 +#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:255 msgid "Dirty pages" msgstr "Mustad lehed" -#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:230 +#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:226 msgid "Pages containing data" msgstr "Lehed andmetega" -#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:598 +#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:594 msgid "Pages to be flushed" msgstr "Lehed ühtlustamiseks" -#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:119 +#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:115 msgid "Busy pages" msgstr "Hõivatud lehed" -#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:467 +#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:463 msgid "Latched pages" msgstr "Lukustatud lehed" -#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:111 +#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:107 msgid "Buffer Pool Activity" msgstr "Puhverdusala aktiivsus" -#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:731 +#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:727 msgid "Read requests" msgstr "Pöördumised lugemiseks" -#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1244 +#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1240 msgid "Write requests" msgstr "Pöördumised kirjutamiseks" -#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:115 +#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:111 msgid "Read misses" msgstr "Lugemis vigasid" -#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:117 +#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:113 msgid "Write waits" msgstr "Kirjutamine ootab" -#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:114 +#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:110 msgid "Read misses in %" msgstr "Lugemis vigasid %" -#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:116 +#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:112 msgid "Write waits in %" msgstr "Kirjutamine ootab %" -#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:522 +#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:518 msgid "Data pointer size" msgstr "Andmeviida suurus" -#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:523 +#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:519 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." @@ -2569,11 +2579,11 @@ msgstr "" "Vaikimisi viida suurus baitides, mida kasutatakse CREATE TABLE käsuga MyISAM " "tabelite jaoks kui MAX_ROWS seade on määramata." -#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:528 +#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:524 msgid "Automatic recovery mode" msgstr "Automaatne taastamine" -#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:529 +#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:525 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." @@ -2581,11 +2591,11 @@ msgstr "" "Automaatne taastamine purunenud MyISAM tabelitele, aktiveeritakse võtmega --" "myisam-recover serveri käivitamisel." -#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:527 +#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:523 msgid "Maximum size for temporary sort files" msgstr "Maksimaalne suurus ajutiste sorteeringufailide jaoks" -#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:526 +#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:522 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " @@ -2595,11 +2605,11 @@ msgstr "" "indeksi uuesti genereerimiseks (REPAIR TABLE, ALTER TABLE või LOAD DATA " "INFILE)." -#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:525 +#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:521 msgid "Maximum size for temporary files on index creation" msgstr "Maksimaalne failisuurus ajutiste failide jaoks indeksi genereerimisel" -#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:524 +#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:520 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " @@ -2609,11 +2619,11 @@ msgstr "" "kui kasutada siin määratud võtmecache suurust, siis eelistage võtmecache " "meetodit." -#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:531 +#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:527 msgid "Repair threads" msgstr "Paranda lõimud" -#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:530 +#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:526 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." @@ -2621,11 +2631,11 @@ msgstr "" "Kui see väärtus on suurem kui 1 siis MyISAM tabeli indeksid luuakse " "paralleelselt (iga indeks oma lõimus) sorteerimise teel parandamise ajal." -#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:533 +#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:529 msgid "Sort buffer size" msgstr "Sordi puhvri suurus" -#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:532 +#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:528 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." @@ -2633,73 +2643,73 @@ msgstr "" "Puhver mis hõivatakse kui sorteeritakse MyISAM indekseid REPAIR TABLE ajal " "või kui luuakse indekseid CREATE INDEX või ALTER TABLE käskudega." -#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:620 +#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:616 msgid "Index cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:619 +#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:615 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." msgstr "" -#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:630 +#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:626 msgid "Record cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:629 +#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:625 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " "to the handle data (.xtd) and row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:624 +#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:620 #, fuzzy msgid "Log cache size" msgstr "Sordi puhvri suurus" -#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:623 +#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:619 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:628 +#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:624 msgid "Log file threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:627 +#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:623 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:634 +#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:630 msgid "Transaction buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:633 +#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:629 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." msgstr "" -#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:611 +#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:607 msgid "Checkpoint frequency" msgstr "" -#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:612 +#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:608 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." msgstr "" -#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:615 +#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:611 msgid "Data log threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:616 +#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:612 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -2707,49 +2717,49 @@ msgid "" "that can be stored in the database." msgstr "" -#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:618 +#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:614 msgid "Garbage threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:617 +#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:613 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." msgstr "" -#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:622 +#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:618 #, fuzzy msgid "Log buffer size" msgstr "Sordi puhvri suurus" -#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:621 +#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:617 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " "required to write a data log." msgstr "" -#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:613 +#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:609 msgid "Data file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:614 +#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:610 msgid "The grow size of the handle data (.xtd) files." msgstr "" -#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:632 +#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:628 msgid "Row file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:631 +#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:627 msgid "The grow size of the row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:626 +#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:622 msgid "Log file count" msgstr "" -#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:625 +#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:621 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -2759,19 +2769,19 @@ msgstr "" #: libraries/export/htmlword.php:132 libraries/export/odt.php:168 #: libraries/export/sql.php:881 libraries/export/texytext.php:130 -#: libraries/messages.inc.php:275 +#: libraries/messages.inc.php:271 msgid "Dumping data for table" msgstr "Tabeli andmete salvestamine" #: libraries/export/htmlword.php:185 libraries/export/odt.php:238 #: libraries/export/sql.php:785 libraries/export/texytext.php:177 -#: libraries/messages.inc.php:1086 +#: libraries/messages.inc.php:1082 msgid "Table structure for table" msgstr "Struktuur tabelile" #: libraries/export/latex.php:125 libraries/export/sql.php:232 #: libraries/export/xml.php:102 libraries/header_printview.inc.php:57 -#: libraries/messages.inc.php:381 libraries/replication_gui.lib.php:63 +#: libraries/messages.inc.php:377 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:170 libraries/replication_gui.lib.php:265 #: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325 #: server_privileges.php:692 server_privileges.php:695 @@ -2783,187 +2793,187 @@ msgstr "Masin" #: libraries/export/latex.php:130 libraries/export/sql.php:233 #: libraries/export/xml.php:107 libraries/header_printview.inc.php:59 -#: libraries/messages.inc.php:354 +#: libraries/messages.inc.php:350 msgid "Generation Time" msgstr "Tegemisaeg" #: libraries/export/latex.php:131 libraries/export/sql.php:235 -#: libraries/export/xml.php:108 libraries/messages.inc.php:864 main.php:186 +#: libraries/export/xml.php:108 libraries/messages.inc.php:860 main.php:186 msgid "Server version" msgstr "Serveri versioon" #: libraries/export/latex.php:132 libraries/export/sql.php:236 -#: libraries/export/xml.php:109 libraries/messages.inc.php:651 +#: libraries/export/xml.php:109 libraries/messages.inc.php:647 msgid "PHP Version" msgstr "PHP versioon" #: libraries/export/latex.php:201 libraries/export/sql.php:868 -#: libraries/messages.inc.php:226 server_databases.php:127 +#: libraries/messages.inc.php:222 server_databases.php:127 #: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317 #: tbl_structure.php:666 msgid "Data" msgstr "Andmed" -#: libraries/export/odt.php:318 libraries/messages.inc.php:506 +#: libraries/export/odt.php:318 libraries/messages.inc.php:502 #: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "MIME-tüüp" -#: libraries/export/sql.php:387 libraries/messages.inc.php:711 +#: libraries/export/sql.php:387 libraries/messages.inc.php:707 msgid "Procedures" msgstr "Toimingud" -#: libraries/export/sql.php:401 libraries/messages.inc.php:348 +#: libraries/export/sql.php:401 libraries/messages.inc.php:344 msgid "Functions" msgstr "Funktsioonid" -#: libraries/export/sql.php:618 libraries/messages.inc.php:174 +#: libraries/export/sql.php:618 libraries/messages.inc.php:170 msgid "Constraints for dumped tables" msgstr "Piirangud salvestatud tabelitele" -#: libraries/export/sql.php:627 libraries/messages.inc.php:175 +#: libraries/export/sql.php:627 libraries/messages.inc.php:171 msgid "Constraints for table" msgstr "Piirangud tabelile" -#: libraries/export/sql.php:727 libraries/messages.inc.php:512 +#: libraries/export/sql.php:727 libraries/messages.inc.php:508 msgid "MIME TYPES FOR TABLE" msgstr "MIME TÜÜBID TABELILE" -#: libraries/export/sql.php:739 libraries/messages.inc.php:743 +#: libraries/export/sql.php:739 libraries/messages.inc.php:739 msgid "RELATIONS FOR TABLE" msgstr "SEOSED TABELILE" -#: libraries/export/sql.php:796 libraries/messages.inc.php:1178 +#: libraries/export/sql.php:796 libraries/messages.inc.php:1174 #: libraries/tbl_triggers.lib.php:19 msgid "Triggers" msgstr "" -#: libraries/export/sql.php:808 libraries/messages.inc.php:1046 +#: libraries/export/sql.php:808 libraries/messages.inc.php:1042 msgid "Structure for view" msgstr "Vaate (view) struktuur" -#: libraries/export/sql.php:817 libraries/messages.inc.php:1029 +#: libraries/export/sql.php:817 libraries/messages.inc.php:1025 msgid "Stand-in structure for view" msgstr "Sise-vaate struktuur" #: libraries/footer.inc.php:184 libraries/footer.inc.php:195 -#: libraries/footer.inc.php:198 libraries/messages.inc.php:586 +#: libraries/footer.inc.php:198 libraries/messages.inc.php:582 msgid "Open new phpMyAdmin window" msgstr "Ava uus phpMyAdmin aken" -#: libraries/header.inc.php:115 libraries/messages.inc.php:542 +#: libraries/header.inc.php:115 libraries/messages.inc.php:538 #, fuzzy msgid "New table" msgstr "Pole tabeleid" #: libraries/header_printview.inc.php:50 libraries/header_printview.inc.php:55 -#: libraries/messages.inc.php:1024 +#: libraries/messages.inc.php:1020 msgid "SQL result" msgstr "SQL tulemus" -#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:350 +#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:346 msgid "Generated by" msgstr "Genereerija " #: libraries/header_printview.inc.php:63 libraries/import.lib.php:145 -#: libraries/messages.inc.php:820 navigation.php:652 navigation.php:674 +#: libraries/messages.inc.php:816 navigation.php:652 navigation.php:674 #: server_databases.php:122 tbl_printview.php:394 tbl_structure.php:366 #: tbl_structure.php:778 msgid "Rows" msgstr "Ridu" -#: libraries/import.lib.php:150 libraries/messages.inc.php:285 sql.php:520 +#: libraries/import.lib.php:150 libraries/messages.inc.php:281 sql.php:520 #: tbl_change.php:181 tbl_get_field.php:35 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL tagastas tühja tulemuse (s.t. null rida)." -#: libraries/import.lib.php:1078 libraries/messages.inc.php:399 +#: libraries/import.lib.php:1078 libraries/messages.inc.php:395 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1079 libraries/messages.inc.php:400 +#: libraries/import.lib.php:1079 libraries/messages.inc.php:396 msgid "View a structure`s contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1080 libraries/messages.inc.php:401 +#: libraries/import.lib.php:1080 libraries/messages.inc.php:397 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1081 libraries/messages.inc.php:402 +#: libraries/import.lib.php:1081 libraries/messages.inc.php:398 msgid "Edit its structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1084 libraries/messages.inc.php:362 +#: libraries/import.lib.php:1084 libraries/messages.inc.php:358 #, fuzzy msgid "Go to database" msgstr "Pole andmebaase" #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:869 +#: libraries/messages.inc.php:865 msgid "settings" msgstr "" -#: libraries/import.lib.php:1106 libraries/messages.inc.php:363 +#: libraries/import.lib.php:1106 libraries/messages.inc.php:359 #, fuzzy msgid "Go to table" msgstr "Pole andmebaase" -#: libraries/import.lib.php:1109 libraries/messages.inc.php:1047 +#: libraries/import.lib.php:1109 libraries/messages.inc.php:1043 #, fuzzy msgid "structure" msgstr "Struktuur" -#: libraries/import.lib.php:1115 libraries/messages.inc.php:364 +#: libraries/import.lib.php:1115 libraries/messages.inc.php:360 msgid "Go to view" msgstr "" #: libraries/import/csv.php:58 libraries/import/csv.php:70 #: libraries/import/csv.php:74 libraries/import/csv.php:78 -#: libraries/messages.inc.php:442 +#: libraries/messages.inc.php:438 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "Vigane parameeter CSV importimisel: %s" -#: libraries/import/csv.php:59 libraries/messages.inc.php:323 +#: libraries/import/csv.php:59 libraries/messages.inc.php:319 msgid "Fields terminated by" msgstr "Väljad eraldatud" -#: libraries/import/csv.php:71 libraries/messages.inc.php:320 +#: libraries/import/csv.php:71 libraries/messages.inc.php:316 msgid "Fields enclosed by" msgstr "Väljad ümbritsetud" -#: libraries/import/csv.php:75 libraries/messages.inc.php:321 +#: libraries/import/csv.php:75 libraries/messages.inc.php:317 msgid "Fields escaped by" msgstr "Väljad varjatud" -#: libraries/import/csv.php:79 libraries/messages.inc.php:481 +#: libraries/import/csv.php:79 libraries/messages.inc.php:477 msgid "Lines terminated by" msgstr "Read lõpetatud" -#: libraries/import/csv.php:119 libraries/messages.inc.php:439 +#: libraries/import/csv.php:119 libraries/messages.inc.php:435 #, php-format msgid "Invalid column (%s) specified!" msgstr "Vigased välja veerud (%s) valitud!" #: libraries/import/csv.php:177 libraries/import/csv.php:424 -#: libraries/messages.inc.php:441 +#: libraries/messages.inc.php:437 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "Vigane formaat CSV sisendis real %d." -#: libraries/import/csv.php:312 libraries/messages.inc.php:440 +#: libraries/import/csv.php:312 libraries/messages.inc.php:436 #, php-format msgid "Invalid field count in CSV input on line %d." msgstr "Vigane väljade arv CSV sisendis real %d." -#: libraries/import/ldi.php:55 libraries/messages.inc.php:446 +#: libraries/import/ldi.php:55 libraries/messages.inc.php:442 msgid "This plugin does not support compressed imports!" msgstr "See plugin ei toeta pakitud importe!" #: libraries/import/xml.php:74 libraries/import/xml.php:130 -#: libraries/messages.inc.php:1247 +#: libraries/messages.inc.php:1243 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -2993,443 +3003,433 @@ msgstr "" msgid "ltr" msgstr "ltr" -#. l10n: Thousands separator -#: libraries/messages.inc.php:21 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: libraries/messages.inc.php:23 -msgid "." -msgstr "." - -#: libraries/messages.inc.php:25 server_status.php:461 +#: libraries/messages.inc.php:21 server_status.php:461 msgid "Aborted" msgstr "Katkestatud" -#: libraries/messages.inc.php:28 main.php:68 +#: libraries/messages.inc.php:24 main.php:68 #, fuzzy msgid "Actions" msgstr "Tegevus" -#: libraries/messages.inc.php:34 libraries/tbl_properties.inc.php:780 +#: libraries/messages.inc.php:30 libraries/tbl_properties.inc.php:780 #: tbl_structure.php:543 #, php-format msgid "Add %s field(s)" msgstr "Lisa %s väli(jad)" -#: libraries/messages.inc.php:35 +#: libraries/messages.inc.php:31 msgid "Add custom comment into header (\\n splits lines)" msgstr "Lisa vaba kommentaar päisesse (\\n eraldab read)" -#: libraries/messages.inc.php:36 +#: libraries/messages.inc.php:32 msgid "Add into comments" msgstr "Lisa kommentaaridesse" -#: libraries/messages.inc.php:37 tbl_structure.php:541 +#: libraries/messages.inc.php:33 tbl_structure.php:541 msgid "Add new field" msgstr "Lisa uus väli" -#: libraries/messages.inc.php:38 server_privileges.php:1886 +#: libraries/messages.inc.php:34 server_privileges.php:1886 msgid "Add privileges on the following database" msgstr "Lisa privileegid antud andmebaasile" -#: libraries/messages.inc.php:39 server_privileges.php:1907 +#: libraries/messages.inc.php:35 server_privileges.php:1907 msgid "Add privileges on the following table" msgstr "Lisa privileegid antud tabelile" -#: libraries/messages.inc.php:40 tbl_select.php:288 +#: libraries/messages.inc.php:36 tbl_select.php:288 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Lisa otsinguparameetrid (\"WHERE\" lause sisu):" -#: libraries/messages.inc.php:41 tbl_indexes.php:251 +#: libraries/messages.inc.php:37 tbl_indexes.php:251 #, php-format msgid "Add to index  %s column(s)" msgstr "Lisa indeksisse  %s rida/read" -#: libraries/messages.inc.php:42 server_privileges.php:1570 +#: libraries/messages.inc.php:38 server_privileges.php:1570 #: server_privileges.php:1594 server_privileges.php:1988 #: server_privileges.php:2177 msgid "Add a new User" msgstr "Lisa uus kasutaja" -#: libraries/messages.inc.php:43 server_privileges.php:931 +#: libraries/messages.inc.php:39 server_privileges.php:931 msgid "You have added a new user." msgstr "Te lisasite uue kasutaja." -#: libraries/messages.inc.php:44 server_privileges.php:571 +#: libraries/messages.inc.php:40 server_privileges.php:571 msgid "Administration" msgstr "Administreerimine" -#: libraries/messages.inc.php:45 tbl_structure.php:557 +#: libraries/messages.inc.php:41 tbl_structure.php:557 #, php-format msgid "After %s" msgstr "Peale %s" -#: libraries/messages.inc.php:46 tbl_change.php:1147 +#: libraries/messages.inc.php:42 tbl_change.php:1147 msgid "Go back to previous page" msgstr "Mine eelmisele lehele tagasi" -#: libraries/messages.inc.php:47 tbl_change.php:1148 +#: libraries/messages.inc.php:43 tbl_change.php:1148 msgid "Insert another new row" msgstr "Lisa järgmine uus rida" -#: libraries/messages.inc.php:48 tbl_change.php:1160 +#: libraries/messages.inc.php:44 tbl_change.php:1160 msgid "Edit next row" msgstr "Muuda järgmist rida" -#: libraries/messages.inc.php:49 tbl_change.php:1152 +#: libraries/messages.inc.php:45 tbl_change.php:1152 msgid "Go back to this page" msgstr "Mine tagasi sellele lehele" -#: libraries/messages.inc.php:50 querywindow.php:115 +#: libraries/messages.inc.php:46 querywindow.php:115 msgid "All" msgstr "Kõik" -#: libraries/messages.inc.php:53 tbl_operations.php:249 +#: libraries/messages.inc.php:49 tbl_operations.php:249 msgid "Alter table order by" msgstr "Muuda tabeli sorteeringut" -#: libraries/messages.inc.php:54 tbl_operations.php:660 +#: libraries/messages.inc.php:50 tbl_operations.php:660 msgid "Analyze" msgstr "" -#: libraries/messages.inc.php:57 +#: libraries/messages.inc.php:53 #, fuzzy msgid "and" msgstr "ja" -#: libraries/messages.inc.php:59 pmd_general.php:87 +#: libraries/messages.inc.php:55 pmd_general.php:87 msgid "Angular links" msgstr "Nurgelised lingid" -#: libraries/messages.inc.php:60 tbl_structure.php:401 tbl_structure.php:415 +#: libraries/messages.inc.php:56 tbl_structure.php:401 tbl_structure.php:415 #: tbl_structure.php:429 #, php-format msgid "An index has been added on %s" msgstr "Indeks lisati %s" -#: libraries/messages.inc.php:61 server_privileges.php:1521 +#: libraries/messages.inc.php:57 server_privileges.php:1521 #: server_privileges.php:2123 msgid "Any" msgstr "kõik" -#: libraries/messages.inc.php:62 libraries/replication_gui.lib.php:298 +#: libraries/messages.inc.php:58 libraries/replication_gui.lib.php:298 #: server_privileges.php:725 msgid "Any host" msgstr "Kõik masinad" -#: libraries/messages.inc.php:63 libraries/replication_gui.lib.php:250 +#: libraries/messages.inc.php:59 libraries/replication_gui.lib.php:250 #: server_privileges.php:677 msgid "Any user" msgstr "Kõik kasutajad" -#: libraries/messages.inc.php:64 server_synchronize.php:449 +#: libraries/messages.inc.php:60 server_synchronize.php:449 #: server_synchronize.php:894 msgid "Apply Selected Changes" msgstr "" -#: libraries/messages.inc.php:66 tbl_structure.php:386 +#: libraries/messages.inc.php:62 tbl_structure.php:386 #, php-format msgid "A primary key has been added on %s" msgstr "Primaarne võti lisati %s" -#: libraries/messages.inc.php:67 libraries/mysql_charsets.lib.php:368 +#: libraries/messages.inc.php:63 libraries/mysql_charsets.lib.php:368 msgid "Arabic" msgstr "Araabia" -#: libraries/messages.inc.php:68 libraries/mysql_charsets.lib.php:359 +#: libraries/messages.inc.php:64 libraries/mysql_charsets.lib.php:359 msgid "Armenian" msgstr "Armeenia" -#: libraries/messages.inc.php:70 libraries/tbl_properties.inc.php:394 +#: libraries/messages.inc.php:66 libraries/tbl_properties.inc.php:394 msgid "As defined:" msgstr "" -#: libraries/messages.inc.php:71 tbl_structure.php:556 +#: libraries/messages.inc.php:67 tbl_structure.php:556 msgid "At Beginning of Table" msgstr "Tabeli algusesse" -#: libraries/messages.inc.php:72 tbl_structure.php:555 +#: libraries/messages.inc.php:68 tbl_structure.php:555 msgid "At End of Table" msgstr "Tabeli lõppu" -#: libraries/messages.inc.php:73 libraries/tbl_properties.inc.php:108 +#: libraries/messages.inc.php:69 libraries/tbl_properties.inc.php:108 #: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:144 #: tbl_structure.php:180 msgid "Attributes" msgstr "Parameetrid" -#: libraries/messages.inc.php:74 pdf_pages.php:303 pdf_pages.php:306 +#: libraries/messages.inc.php:70 pdf_pages.php:303 pdf_pages.php:306 msgid "Automatic layout" msgstr "Automaatne väljund" -#: libraries/messages.inc.php:77 libraries/mysql_charsets.lib.php:354 +#: libraries/messages.inc.php:73 libraries/mysql_charsets.lib.php:354 msgid "Baltic" msgstr "Balti" -#: libraries/messages.inc.php:78 libraries/sqlparser.lib.php:175 +#: libraries/messages.inc.php:74 libraries/sqlparser.lib.php:175 msgid "BEGIN CUT" msgstr "ALUSTA LÕIGET" -#: libraries/messages.inc.php:79 libraries/sqlparser.lib.php:179 +#: libraries/messages.inc.php:75 libraries/sqlparser.lib.php:179 msgid "BEGIN RAW" msgstr "ALUSTA PUHAST" -#: libraries/messages.inc.php:80 libraries/mysql_charsets.lib.php:201 +#: libraries/messages.inc.php:76 libraries/mysql_charsets.lib.php:201 #: libraries/mysql_charsets.lib.php:402 tbl_change.php:518 msgid "Binary" msgstr "Binaarne" -#: libraries/messages.inc.php:81 tbl_change.php:894 +#: libraries/messages.inc.php:77 tbl_change.php:894 msgid "Binary - do not edit" msgstr "Binaarne - ärge muutke" -#: libraries/messages.inc.php:82 libraries/server_links.inc.php:76 +#: libraries/messages.inc.php:78 libraries/server_links.inc.php:76 #: server_binlog.php:110 server_status.php:253 test/theme.php:121 msgid "Binary log" msgstr "Binaarne logi" -#: libraries/messages.inc.php:83 server_binlog.php:217 +#: libraries/messages.inc.php:79 server_binlog.php:217 msgid "Event type" msgstr "Sündmuse tüüp" -#: libraries/messages.inc.php:84 server_binlog.php:220 +#: libraries/messages.inc.php:80 server_binlog.php:220 msgid "Information" msgstr "Informatsioon" -#: libraries/messages.inc.php:85 server_binlog.php:215 +#: libraries/messages.inc.php:81 server_binlog.php:215 msgid "Log name" msgstr "Logi nimi" -#: libraries/messages.inc.php:86 server_binlog.php:219 +#: libraries/messages.inc.php:82 server_binlog.php:219 msgid "Original position" msgstr "Originaal positioon" -#: libraries/messages.inc.php:87 server_binlog.php:216 +#: libraries/messages.inc.php:83 server_binlog.php:216 msgid "Position" msgstr "Positsioon" -#: libraries/messages.inc.php:88 libraries/replication_gui.lib.php:169 +#: libraries/messages.inc.php:84 libraries/replication_gui.lib.php:169 #: server_binlog.php:218 msgid "Server ID" msgstr "Serveri ID" -#: libraries/messages.inc.php:92 +#: libraries/messages.inc.php:88 #, fuzzy msgctxt "$strBLOBRepositoryDisabled" msgid "Disabled" msgstr "Keelatud" -#: libraries/messages.inc.php:95 +#: libraries/messages.inc.php:91 #, fuzzy msgctxt "$strBLOBRepositoryEnabled" msgid "Enabled" msgstr "Lubatud" -#: libraries/messages.inc.php:97 tbl_change.php:888 +#: libraries/messages.inc.php:93 tbl_change.php:888 msgid "Remove BLOB Repository Reference" msgstr "" -#: libraries/messages.inc.php:98 +#: libraries/messages.inc.php:94 #, fuzzy msgctxt "$strBLOBRepositoryRepair" msgid "Repair" msgstr "Paranda tabelit" -#: libraries/messages.inc.php:99 tbl_change.php:987 +#: libraries/messages.inc.php:95 tbl_change.php:987 msgid "Upload to BLOB repository" msgstr "" -#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:359 +#: libraries/messages.inc.php:96 libraries/sql_query_form.lib.php:359 #: sql.php:677 msgid "Let every user access this bookmark" msgstr "Anna kõikidele kasutajatele juurdepääs sellele järjehodjale" -#: libraries/messages.inc.php:103 sql.php:671 +#: libraries/messages.inc.php:99 sql.php:671 msgid "Label" msgstr "Nimetus" -#: libraries/messages.inc.php:104 libraries/sql_query_form.lib.php:433 +#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:433 msgid "Bookmarked SQL query" msgstr "Järjehodjaga SQL päring" -#: libraries/messages.inc.php:105 libraries/sql_query_form.lib.php:365 +#: libraries/messages.inc.php:101 libraries/sql_query_form.lib.php:365 msgid "Replace existing bookmark of same name" msgstr "Kirjuta samanimeline järjehoidja üle" -#: libraries/messages.inc.php:106 libraries/sql_query_form.lib.php:352 +#: libraries/messages.inc.php:102 libraries/sql_query_form.lib.php:352 #: sql.php:665 sql.php:666 sql.php:683 msgid "Bookmark this SQL query" msgstr "Lisa see SQL päring järjehoidjasse" -#: libraries/messages.inc.php:107 libraries/sql_query_form.lib.php:466 +#: libraries/messages.inc.php:103 libraries/sql_query_form.lib.php:466 msgid "View only" msgstr "Vaata ainult" -#: libraries/messages.inc.php:109 tbl_structure.php:161 +#: libraries/messages.inc.php:105 tbl_structure.php:161 msgid "Browse distinct values" msgstr "Sirvi erinevaid väärtusi" -#: libraries/messages.inc.php:110 tbl_change.php:252 tbl_select.php:27 +#: libraries/messages.inc.php:106 tbl_change.php:252 tbl_select.php:27 #: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34 msgid "Browse foreign values" msgstr "Vaata väliseid väärtuseid" -#: libraries/messages.inc.php:118 libraries/mysql_charsets.lib.php:213 +#: libraries/messages.inc.php:114 libraries/mysql_charsets.lib.php:213 msgid "Bulgarian" msgstr "Bulgaaria" -#: libraries/messages.inc.php:120 +#: libraries/messages.inc.php:116 msgid "\"bzipped\"" msgstr "\"bzipitud\"" -#: libraries/messages.inc.php:122 +#: libraries/messages.inc.php:118 msgid "Calendar" msgstr "Kalender" -#: libraries/messages.inc.php:129 tbl_indexes.php:75 +#: libraries/messages.inc.php:125 tbl_indexes.php:75 msgid "Can't rename index to PRIMARY!" msgstr "Ei suuda muuta indeksit PRIMAARSEKS!" -#: libraries/messages.inc.php:132 libraries/mysql_charsets.lib.php:223 +#: libraries/messages.inc.php:128 libraries/mysql_charsets.lib.php:223 #: libraries/mysql_charsets.lib.php:409 msgid "case-insensitive" msgstr "tõstutundetu" -#: libraries/messages.inc.php:133 libraries/mysql_charsets.lib.php:226 +#: libraries/messages.inc.php:129 libraries/mysql_charsets.lib.php:226 #: libraries/mysql_charsets.lib.php:411 msgid "case-sensitive" msgstr "tõstutundlik" -#: libraries/messages.inc.php:134 libraries/mysql_charsets.lib.php:332 +#: libraries/messages.inc.php:130 libraries/mysql_charsets.lib.php:332 msgid "Central European" msgstr "Kesk-Euroopa" -#: libraries/messages.inc.php:136 server_privileges.php:1969 +#: libraries/messages.inc.php:132 server_privileges.php:1969 msgid "... keep the old one." msgstr "... hoia vana alles." -#: libraries/messages.inc.php:137 server_privileges.php:1967 +#: libraries/messages.inc.php:133 server_privileges.php:1967 msgid "Create a new user with the same privileges and ..." msgstr "Loo uus kasutaja samade privileegidega ja ..." -#: libraries/messages.inc.php:138 server_privileges.php:1972 +#: libraries/messages.inc.php:134 server_privileges.php:1972 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." -#: libraries/messages.inc.php:139 server_privileges.php:1970 +#: libraries/messages.inc.php:135 server_privileges.php:1970 msgid " ... delete the old one from the user tables." msgstr " ... kustuta vana kasutajate tabelist." -#: libraries/messages.inc.php:140 server_privileges.php:1971 +#: libraries/messages.inc.php:136 server_privileges.php:1971 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." -#: libraries/messages.inc.php:141 server_privileges.php:1964 +#: libraries/messages.inc.php:137 server_privileges.php:1964 msgid "Change Login Information / Copy User" msgstr "Vaheta logimisinformatsiooni / Kopeeri kasutaja" -#: libraries/messages.inc.php:144 libraries/mysql_charsets.lib.php:107 +#: libraries/messages.inc.php:140 libraries/mysql_charsets.lib.php:107 msgid "Charset" msgstr "Tähetabel" -#: libraries/messages.inc.php:146 server_collations.php:40 +#: libraries/messages.inc.php:142 server_collations.php:40 msgid "Character Sets and Collations" msgstr "Tähetabelid ja määrangud" -#: libraries/messages.inc.php:147 libraries/server_links.inc.php:57 +#: libraries/messages.inc.php:143 libraries/server_links.inc.php:57 #: test/theme.php:109 msgid "Charsets" msgstr "Tähetabelid" -#: libraries/messages.inc.php:149 tbl_operations.php:661 +#: libraries/messages.inc.php:145 tbl_operations.php:661 #, fuzzy msgid "Check" msgstr "Tsehhi" -#: libraries/messages.inc.php:151 server_databases.php:293 +#: libraries/messages.inc.php:147 server_databases.php:293 #: server_databases.php:294 msgid "Check Privileges" msgstr "Kontrollige privileege" -#: libraries/messages.inc.php:152 server_databases.php:289 +#: libraries/messages.inc.php:148 server_databases.php:289 #, php-format msgid "Check privileges for database "%s"." msgstr "Kontrolli privileege andmebaasile "%s"." -#: libraries/messages.inc.php:154 pdf_pages.php:261 +#: libraries/messages.inc.php:150 pdf_pages.php:261 msgid "Please choose a page to edit" msgstr "Palun valige leht muutmiseks" -#: libraries/messages.inc.php:157 +#: libraries/messages.inc.php:153 msgid "Displaying Column Comments" msgstr "Näitan veeru kommentaare" -#: libraries/messages.inc.php:159 pdf_pages.php:483 view_create.php:148 +#: libraries/messages.inc.php:155 pdf_pages.php:483 view_create.php:148 msgid "Column names" msgstr "Väljade nimed" -#: libraries/messages.inc.php:160 server_privileges.php:1685 +#: libraries/messages.inc.php:156 server_privileges.php:1685 msgid "Column-specific privileges" msgstr "Väli-spetsiifilised privileegid" -#: libraries/messages.inc.php:164 +#: libraries/messages.inc.php:160 msgid "MySQL 4.0 compatible" msgstr "MySQL 4.0-iga ühilduv" -#: libraries/messages.inc.php:165 +#: libraries/messages.inc.php:161 msgid "Complete inserts" msgstr "Täispikk INSERT" -#: libraries/messages.inc.php:168 +#: libraries/messages.inc.php:164 #, php-format msgid "Could not load default configuration from: \"%1$s\"" msgstr "Pole võimalik laadida vaikimisi seadete faili: \"%1$s\"" -#: libraries/messages.inc.php:169 main.php:306 +#: libraries/messages.inc.php:165 main.php:306 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: libraries/messages.inc.php:171 pdf_schema.php:672 +#: libraries/messages.inc.php:167 pdf_schema.php:672 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Palun seadke koordinaadid tabelile %s" -#: libraries/messages.inc.php:173 server_status.php:433 +#: libraries/messages.inc.php:169 server_status.php:433 msgid "Connections" msgstr "Ühendused" -#: libraries/messages.inc.php:179 tbl_operations.php:509 +#: libraries/messages.inc.php:175 tbl_operations.php:509 msgid "Copy table to (database.table):" msgstr "Kopeeri tabel (andmebaas.tabel):" -#: libraries/messages.inc.php:180 tbl_move_copy.php:58 +#: libraries/messages.inc.php:176 tbl_move_copy.php:58 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabel %s on kopeeritud andmebaasi %s." -#: libraries/messages.inc.php:181 tbl_move_copy.php:48 +#: libraries/messages.inc.php:177 tbl_move_copy.php:48 msgid "Can't copy table to same one!" msgstr "Ei saa tabelit iseendasse kopeerida!" -#: libraries/messages.inc.php:182 server_synchronize.php:94 +#: libraries/messages.inc.php:178 server_synchronize.php:94 msgid "Could not connect to the source" msgstr "" -#: libraries/messages.inc.php:183 server_synchronize.php:97 +#: libraries/messages.inc.php:179 server_synchronize.php:97 msgid "Could not connect to the target" msgstr "" -#: libraries/messages.inc.php:184 server_processlist.php:24 +#: libraries/messages.inc.php:180 server_processlist.php:24 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -3437,134 +3437,134 @@ msgstr "" "phpMyAdmin ei suutnud katkestada protsessi %s. Tõenäoliselt on see juba " "suletud." -#: libraries/messages.inc.php:187 +#: libraries/messages.inc.php:183 #, php-format msgid "Create an index on %s columns" msgstr "Loo indeks  %s väljadest" -#: libraries/messages.inc.php:188 tbl_indexes.php:160 +#: libraries/messages.inc.php:184 tbl_indexes.php:160 msgid "Create a new index" msgstr "Loo uus indeks" -#: libraries/messages.inc.php:191 pdf_pages.php:297 pmd_pdf.php:114 +#: libraries/messages.inc.php:187 pdf_pages.php:297 pmd_pdf.php:114 msgid "Create a page" msgstr "Loo uus leht" -#: libraries/messages.inc.php:192 +#: libraries/messages.inc.php:188 msgid "Creation of PDFs" msgstr "PDF-ide tegemine" -#: libraries/messages.inc.php:193 pmd_general.php:74 pmd_general.php:306 +#: libraries/messages.inc.php:189 pmd_general.php:74 pmd_general.php:306 msgid "Create relation" msgstr "Suhte loomine (relation)" -#: libraries/messages.inc.php:194 pmd_general.php:71 +#: libraries/messages.inc.php:190 pmd_general.php:71 #: server_synchronize.php:429 server_synchronize.php:872 msgid "Create table" msgstr "Loo tabel" -#: libraries/messages.inc.php:195 +#: libraries/messages.inc.php:191 #, fuzzy msgctxt "$strCreateTableShort" msgid "Create table" msgstr "Loo tabel" -#: libraries/messages.inc.php:196 server_privileges.php:1994 +#: libraries/messages.inc.php:192 server_privileges.php:1994 msgid "Database for user" msgstr "Andmebaas kasutajale" -#: libraries/messages.inc.php:197 server_privileges.php:1999 +#: libraries/messages.inc.php:193 server_privileges.php:1999 msgid "Create database with same name and grant all privileges" msgstr "Loo sama nimega andmebaas ja anna kõik õigused" -#: libraries/messages.inc.php:198 +#: libraries/messages.inc.php:194 #, fuzzy msgctxt "$strCreateUserDatabaseNone" msgid "None" msgstr "Pole" -#: libraries/messages.inc.php:199 server_privileges.php:2003 +#: libraries/messages.inc.php:195 server_privileges.php:2003 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "Kontrolli privileege andmebaasile "%s"." -#: libraries/messages.inc.php:200 server_privileges.php:2000 +#: libraries/messages.inc.php:196 server_privileges.php:2000 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Anna kõik õigused Metanimele (username\\_%)" -#: libraries/messages.inc.php:201 +#: libraries/messages.inc.php:197 msgid "Creation/Update/Check dates" msgstr "Loo/muuda/kontrolli kuupäevi" -#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:229 +#: libraries/messages.inc.php:199 libraries/mysql_charsets.lib.php:229 msgid "Croatian" msgstr "Horvaatia" -#: libraries/messages.inc.php:204 +#: libraries/messages.inc.php:200 msgid "CSV" msgstr "CSV" -#: libraries/messages.inc.php:205 libraries/server_synchronize.lib.php:1343 +#: libraries/messages.inc.php:201 libraries/server_synchronize.lib.php:1343 #: libraries/server_synchronize.lib.php:1369 msgid "Current server" msgstr "" -#: libraries/messages.inc.php:206 main.php:159 +#: libraries/messages.inc.php:202 main.php:159 msgid "Custom color" msgstr "" -#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:365 +#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:365 msgid "Cyrillic" msgstr "Kirillitsa" -#: libraries/messages.inc.php:208 libraries/mysql_charsets.lib.php:232 +#: libraries/messages.inc.php:204 libraries/mysql_charsets.lib.php:232 msgid "Czech" msgstr "Tsehhi" -#: libraries/messages.inc.php:209 libraries/mysql_charsets.lib.php:383 +#: libraries/messages.inc.php:205 libraries/mysql_charsets.lib.php:383 msgid "Czech-Slovak" msgstr "Tsehhi-Slovaki" -#: libraries/messages.inc.php:211 libraries/mysql_charsets.lib.php:235 +#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:235 msgid "Danish" msgstr "Taani" -#: libraries/messages.inc.php:214 +#: libraries/messages.inc.php:210 msgid "Database export options" msgstr "Andmebaasi eksportimise seaded" -#: libraries/messages.inc.php:217 server_synchronize.php:122 +#: libraries/messages.inc.php:213 server_synchronize.php:122 #: server_synchronize.php:125 tbl_create.php:82 tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "" -#: libraries/messages.inc.php:219 server_databases.php:63 +#: libraries/messages.inc.php:215 server_databases.php:63 #, php-format msgid "%s databases have been dropped successfully." msgstr "andmebaasid %s kustutati õnnestunult." -#: libraries/messages.inc.php:220 libraries/server_synchronize.lib.php:1341 +#: libraries/messages.inc.php:216 libraries/server_synchronize.lib.php:1341 #: server_synchronize.php:1110 #, fuzzy msgid "Source database" msgstr "Otsi andmebaasist" -#: libraries/messages.inc.php:221 server_databases.php:88 +#: libraries/messages.inc.php:217 server_databases.php:88 msgid "Databases statistics" msgstr "Andmebaaside statistika" -#: libraries/messages.inc.php:222 server_databases.php:362 +#: libraries/messages.inc.php:218 server_databases.php:362 #: server_databases.php:363 msgid "Disable Statistics" msgstr "Keelake statistika" -#: libraries/messages.inc.php:223 server_databases.php:358 +#: libraries/messages.inc.php:219 server_databases.php:358 #: server_databases.php:359 msgid "Enable Statistics" msgstr "Lubage statistika" -#: libraries/messages.inc.php:224 server_databases.php:366 +#: libraries/messages.inc.php:220 server_databases.php:366 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -3572,32 +3572,32 @@ msgstr "" "Märkus: Lubades siin andmebaasi statistika võite tekitada väga koormava " "liikuse webiserveri ja MySQL-i vahel." -#: libraries/messages.inc.php:225 libraries/server_synchronize.lib.php:1367 +#: libraries/messages.inc.php:221 libraries/server_synchronize.lib.php:1367 #: server_synchronize.php:1112 #, fuzzy msgid "Target database" msgstr "Otsi andmebaasist" -#: libraries/messages.inc.php:228 server_synchronize.php:425 +#: libraries/messages.inc.php:224 server_synchronize.php:425 #: server_synchronize.php:868 #, fuzzy msgid "Data Difference" msgstr "Vaate (view) struktuur" -#: libraries/messages.inc.php:231 server_synchronize.php:272 +#: libraries/messages.inc.php:227 server_synchronize.php:272 msgid "Data Synchronization" msgstr "" -#: libraries/messages.inc.php:235 server_privileges.php:526 +#: libraries/messages.inc.php:231 server_privileges.php:526 #: server_privileges.php:1679 msgid "Database-specific privileges" msgstr "Andmebaas-spetsiifilised privileegid" -#: libraries/messages.inc.php:237 server_privileges.php:2136 +#: libraries/messages.inc.php:233 server_privileges.php:2136 msgid "database-specific" msgstr "andmebaasipõhine" -#: libraries/messages.inc.php:240 libraries/tbl_properties.inc.php:106 +#: libraries/messages.inc.php:236 libraries/tbl_properties.inc.php:106 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" @@ -3606,32 +3606,32 @@ msgstr "" "kaldkriipsudega varjestamata ning jutumärkideta, kasutades järgmist " "kirjakuju: a" -#: libraries/messages.inc.php:241 tbl_operations.php:589 +#: libraries/messages.inc.php:237 tbl_operations.php:589 msgid "Defragment table" msgstr "Defrgamenteeri tabel" -#: libraries/messages.inc.php:242 +#: libraries/messages.inc.php:238 msgid "Use delayed inserts" msgstr "Kasuta ajastatud lisamisi" -#: libraries/messages.inc.php:245 server_privileges.php:1243 +#: libraries/messages.inc.php:241 server_privileges.php:1243 msgid "No users selected for deleting!" msgstr "Ühtegi kasutajat pole valitud kustutamiseks!" -#: libraries/messages.inc.php:246 pmd_general.php:372 +#: libraries/messages.inc.php:242 pmd_general.php:372 msgid "Delete relation" msgstr "Kustuta suhe" -#: libraries/messages.inc.php:248 server_privileges.php:1232 +#: libraries/messages.inc.php:244 server_privileges.php:1232 #, php-format msgid "Deleting %s" msgstr "Kustutan %s" -#: libraries/messages.inc.php:249 libraries/sql_query_form.lib.php:388 +#: libraries/messages.inc.php:245 libraries/sql_query_form.lib.php:388 msgid "Delimiter" msgstr "Eraldaja" -#: libraries/messages.inc.php:250 pdf_pages.php:506 +#: libraries/messages.inc.php:246 pdf_pages.php:506 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -3639,151 +3639,151 @@ msgstr "" "Antud lehel on viiteid tabelitele mida enam ei ole. Kas te soovite kustutada " "need viited?" -#: libraries/messages.inc.php:254 pmd_help.php:29 +#: libraries/messages.inc.php:250 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." msgstr "" -#: libraries/messages.inc.php:256 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:252 libraries/mysql_charsets.lib.php:247 msgid "dictionary" msgstr "sõnaraamat" -#: libraries/messages.inc.php:257 libraries/server_synchronize.lib.php:1348 +#: libraries/messages.inc.php:253 libraries/server_synchronize.lib.php:1348 msgid "Difference" msgstr "" -#: libraries/messages.inc.php:258 pmd_general.php:87 +#: libraries/messages.inc.php:254 pmd_general.php:87 msgid "Direct links" msgstr "Otselingid" -#: libraries/messages.inc.php:261 +#: libraries/messages.inc.php:257 msgid "Disable foreign key checks" msgstr "Keela võõrvõtmete (foreign key) kontroll" -#: libraries/messages.inc.php:262 +#: libraries/messages.inc.php:258 msgid "Display Features" msgstr "Kuva võimalused" -#: libraries/messages.inc.php:263 tbl_select.php:301 +#: libraries/messages.inc.php:259 tbl_select.php:301 msgid "Display order:" msgstr "Näitamise järjekord:" -#: libraries/messages.inc.php:265 tbl_select.php:132 +#: libraries/messages.inc.php:261 tbl_select.php:132 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Tee \"päring näite järgi\" (lühend: \"%\")" -#: libraries/messages.inc.php:266 +#: libraries/messages.inc.php:262 msgid "DocSQL" msgstr "DocSQL" -#: libraries/messages.inc.php:268 +#: libraries/messages.inc.php:264 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/messages.inc.php:273 server_privileges.php:1579 +#: libraries/messages.inc.php:269 server_privileges.php:1579 #: server_privileges.php:1580 server_privileges.php:1581 msgid "Drop the databases that have the same names as the users." msgstr "Kustuta andmebaasid millel on samad nimed nagu kasutajatel." -#: libraries/messages.inc.php:278 tbl_printview.php:382 tbl_structure.php:743 +#: libraries/messages.inc.php:274 tbl_printview.php:382 tbl_structure.php:743 msgid "dynamic" msgstr "dünaamiline" -#: libraries/messages.inc.php:282 server_privileges.php:1324 +#: libraries/messages.inc.php:278 server_privileges.php:1324 #: server_privileges.php:1610 msgid "Edit Privileges" msgstr "Muuda privileege" -#: libraries/messages.inc.php:283 tbl_printview.php:341 tbl_structure.php:688 +#: libraries/messages.inc.php:279 tbl_printview.php:341 tbl_structure.php:688 msgid "Effective" msgstr "Efektiivne" -#: libraries/messages.inc.php:286 libraries/relation.lib.php:100 +#: libraries/messages.inc.php:282 libraries/relation.lib.php:100 msgid "Enabled" msgstr "Lubatud" -#: libraries/messages.inc.php:287 +#: libraries/messages.inc.php:283 msgid "Enclose export in a transaction" msgstr "Lisa eksport ülekandesse" -#: libraries/messages.inc.php:288 libraries/sqlparser.lib.php:177 +#: libraries/messages.inc.php:284 libraries/sqlparser.lib.php:177 msgid "END CUT" msgstr "LÕPETA LÕIGE" -#: libraries/messages.inc.php:290 libraries/sqlparser.lib.php:183 +#: libraries/messages.inc.php:286 libraries/sqlparser.lib.php:183 msgid "END RAW" msgstr "LÕPETA PUHAS" -#: libraries/messages.inc.php:293 libraries/server_links.inc.php:61 +#: libraries/messages.inc.php:289 libraries/server_links.inc.php:61 #: test/theme.php:113 msgid "Engines" msgstr "Mootor" -#: libraries/messages.inc.php:295 libraries/mysql_charsets.lib.php:238 +#: libraries/messages.inc.php:291 libraries/mysql_charsets.lib.php:238 msgid "English" msgstr "Inglise" -#: libraries/messages.inc.php:296 server_privileges.php:393 +#: libraries/messages.inc.php:292 server_privileges.php:393 #: server_privileges.php:535 server_privileges.php:1501 msgid " Note: MySQL privilege names are expressed in English " msgstr " Märkus: MySQL privileegide nimed on ingliskeelsed " -#: libraries/messages.inc.php:298 libraries/zip_extension.lib.php:49 +#: libraries/messages.inc.php:294 libraries/zip_extension.lib.php:49 #: libraries/zip_extension.lib.php:51 libraries/zip_extension.lib.php:66 msgid "Error in ZIP archive:" msgstr "Viga ZIP arhiivis:" -#: libraries/messages.inc.php:303 libraries/mysql_charsets.lib.php:241 +#: libraries/messages.inc.php:299 libraries/mysql_charsets.lib.php:241 msgid "Esperanto" msgstr "Esperanto" -#: libraries/messages.inc.php:304 libraries/mysql_charsets.lib.php:244 +#: libraries/messages.inc.php:300 libraries/mysql_charsets.lib.php:244 msgid "Estonian" msgstr "Eesti" -#: libraries/messages.inc.php:305 libraries/tbl_triggers.lib.php:29 +#: libraries/messages.inc.php:301 libraries/tbl_triggers.lib.php:29 #, fuzzy msgid "Event" msgstr "Saadetud" -#: libraries/messages.inc.php:307 +#: libraries/messages.inc.php:303 msgid "Excel edition" msgstr "Exceli versioon" -#: libraries/messages.inc.php:311 pmd_pdf.php:85 +#: libraries/messages.inc.php:307 pmd_pdf.php:85 msgid "Export/Import to scale" msgstr "Ekspordi/Impordi skaala" -#: libraries/messages.inc.php:313 +#: libraries/messages.inc.php:309 msgid "Extended inserts" msgstr "Laiendatud lisamised" -#: libraries/messages.inc.php:314 pdf_schema.php:1267 pdf_schema.php:1288 +#: libraries/messages.inc.php:310 pdf_schema.php:1267 pdf_schema.php:1288 #: tbl_printview.php:147 tbl_structure.php:183 tbl_tracking.php:278 msgid "Extra" msgstr "Ekstra" -#: libraries/messages.inc.php:316 server_status.php:447 +#: libraries/messages.inc.php:312 server_status.php:447 msgid "Failed attempts" msgstr "Ebaõnnestunud üritused" -#: libraries/messages.inc.php:318 tbl_structure.php:375 +#: libraries/messages.inc.php:314 tbl_structure.php:375 #, php-format msgid "Field %s has been dropped" msgstr "Väli %s kustutatud" -#: libraries/messages.inc.php:322 libraries/sql_query_form.lib.php:317 +#: libraries/messages.inc.php:318 libraries/sql_query_form.lib.php:317 msgid "Fields" msgstr "Väljade arv" -#: libraries/messages.inc.php:332 server_binlog.php:136 +#: libraries/messages.inc.php:328 server_binlog.php:136 #, fuzzy msgid "Files" msgstr "Väljade arv" -#: libraries/messages.inc.php:334 server_privileges.php:1597 +#: libraries/messages.inc.php:330 server_privileges.php:1597 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -3796,219 +3796,219 @@ msgstr "" "juhul kui olete käsitsi muudatusi teinud. Sellisel juhul peaksite te " "privileegid %staaslaadima%s enne jätkamist." -#: libraries/messages.inc.php:335 server_status.php:289 +#: libraries/messages.inc.php:331 server_status.php:289 msgid "Flush query cache" msgstr "Tühjenda päringute vahemälu" -#: libraries/messages.inc.php:336 +#: libraries/messages.inc.php:332 msgid "Flush the table (\"FLUSH\")" msgstr "Ühtlusta tabelid (\"FLUSH\")" -#: libraries/messages.inc.php:337 server_status.php:271 +#: libraries/messages.inc.php:333 server_status.php:271 msgid "Flush (close) all tables" msgstr "Tühjenda (sulge) kõik tabelid" -#: libraries/messages.inc.php:339 tbl_relation.php:279 +#: libraries/messages.inc.php:335 tbl_relation.php:279 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" -#: libraries/messages.inc.php:341 setup/lib/messages.inc.php:88 +#: libraries/messages.inc.php:337 setup/lib/messages.inc.php:88 #: tbl_printview.php:376 tbl_structure.php:738 msgid "Format" msgstr "Formaat" -#: libraries/messages.inc.php:344 server_replication.php:325 +#: libraries/messages.inc.php:340 server_replication.php:325 #, fuzzy msgid "Full start" msgstr "Täistekst" -#: libraries/messages.inc.php:345 server_replication.php:325 +#: libraries/messages.inc.php:341 server_replication.php:325 #, fuzzy msgid "Full stop" msgstr "Täistekst" -#: libraries/messages.inc.php:347 tbl_change.php:282 tbl_change.php:320 +#: libraries/messages.inc.php:343 tbl_change.php:282 tbl_change.php:320 msgid "Function" msgstr "Funktsioon" -#: libraries/messages.inc.php:355 libraries/mysql_charsets.lib.php:377 +#: libraries/messages.inc.php:351 libraries/mysql_charsets.lib.php:377 msgid "Georgian" msgstr "Gruusia" -#: libraries/messages.inc.php:356 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:352 libraries/mysql_charsets.lib.php:247 #: libraries/mysql_charsets.lib.php:250 msgid "German" msgstr "Saksa" -#: libraries/messages.inc.php:357 themes.php:42 +#: libraries/messages.inc.php:353 themes.php:42 msgid "Get more themes!" msgstr "" -#: libraries/messages.inc.php:358 server_privileges.php:2134 +#: libraries/messages.inc.php:354 server_privileges.php:2134 msgid "global" msgstr "globaalne" -#: libraries/messages.inc.php:359 server_privileges.php:524 +#: libraries/messages.inc.php:355 server_privileges.php:524 #: server_privileges.php:1500 msgid "Global privileges" msgstr "Globaalsed privileegid" -#: libraries/messages.inc.php:360 server_variables.php:55 +#: libraries/messages.inc.php:356 server_variables.php:55 #: server_variables.php:89 msgid "Global value" msgstr "Üldine väärtus" -#: libraries/messages.inc.php:365 server_privileges.php:1502 +#: libraries/messages.inc.php:361 server_privileges.php:1502 #: server_privileges.php:1684 server_privileges.php:2033 msgid "Grant" msgstr "Õigused" -#: libraries/messages.inc.php:366 libraries/mysql_charsets.lib.php:380 +#: libraries/messages.inc.php:362 libraries/mysql_charsets.lib.php:380 msgid "Greek" msgstr "Kreeka" -#: libraries/messages.inc.php:367 +#: libraries/messages.inc.php:363 msgid "\"gzipped\"" msgstr "\"gzipitud\"" -#: libraries/messages.inc.php:369 server_status.php:250 +#: libraries/messages.inc.php:365 server_status.php:250 msgid "Handler" msgstr "Töötleja" -#: libraries/messages.inc.php:370 server_synchronize.php:464 +#: libraries/messages.inc.php:366 server_synchronize.php:464 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: libraries/messages.inc.php:372 libraries/mysql_charsets.lib.php:374 +#: libraries/messages.inc.php:368 libraries/mysql_charsets.lib.php:374 msgid "Hebrew" msgstr "Heebrea" -#: libraries/messages.inc.php:373 pmd_general.php:83 +#: libraries/messages.inc.php:369 pmd_general.php:83 msgid "Help" msgstr "Abi" -#: libraries/messages.inc.php:374 +#: libraries/messages.inc.php:370 msgid "Use hexadecimal for BLOB" msgstr "" -#: libraries/messages.inc.php:376 pmd_general.php:120 +#: libraries/messages.inc.php:372 pmd_general.php:120 msgid "Hide/Show all" msgstr "Peida/Näita kõik" -#: libraries/messages.inc.php:377 pmd_general.php:124 +#: libraries/messages.inc.php:373 pmd_general.php:124 msgid "Hide/Show Tables with no relation" msgstr "Peida/Näita tabelid millel puudub suhe" -#: libraries/messages.inc.php:378 libraries/navigation_header.inc.php:54 +#: libraries/messages.inc.php:374 libraries/navigation_header.inc.php:54 #: libraries/navigation_header.inc.php:57 #: libraries/navigation_header.inc.php:58 msgid "Home" msgstr "Esileht" -#: libraries/messages.inc.php:379 main.php:233 +#: libraries/messages.inc.php:375 main.php:233 msgid "Official Homepage" msgstr "Ametlik phpMyAdmini koduleht" -#: libraries/messages.inc.php:382 libraries/replication_gui.lib.php:327 +#: libraries/messages.inc.php:378 libraries/replication_gui.lib.php:327 #: server_privileges.php:753 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/messages.inc.php:383 +#: libraries/messages.inc.php:379 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/messages.inc.php:384 libraries/mysql_charsets.lib.php:253 +#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:253 msgid "Hungarian" msgstr "Ungari" -#: libraries/messages.inc.php:386 libraries/mysql_charsets.lib.php:256 +#: libraries/messages.inc.php:382 libraries/mysql_charsets.lib.php:256 msgid "Icelandic" msgstr "Islandi" -#: libraries/messages.inc.php:387 server_processlist.php:53 +#: libraries/messages.inc.php:383 server_processlist.php:53 msgid "ID" msgstr "ID" -#: libraries/messages.inc.php:388 libraries/mult_submits.inc.php:108 +#: libraries/messages.inc.php:384 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:479 msgid "Fulltext" msgstr "Täistekst" -#: libraries/messages.inc.php:389 +#: libraries/messages.inc.php:385 msgid "Ignore duplicate rows" msgstr "Ignoreeri korduvaid ridasid" -#: libraries/messages.inc.php:390 tbl_change.php:302 tbl_indexes.php:200 +#: libraries/messages.inc.php:386 tbl_change.php:302 tbl_indexes.php:200 #: tbl_indexes.php:225 msgid "Ignore" msgstr "Ignoreeri" -#: libraries/messages.inc.php:391 +#: libraries/messages.inc.php:387 msgid "Use ignore inserts" msgstr "Kasutaja ignoreeritavaid lisamisi" -#: libraries/messages.inc.php:392 +#: libraries/messages.inc.php:388 msgid "Column names in first row" msgstr "" -#: libraries/messages.inc.php:393 +#: libraries/messages.inc.php:389 msgid "Do not import empty rows" msgstr "" -#: libraries/messages.inc.php:394 pmd_general.php:104 +#: libraries/messages.inc.php:390 pmd_general.php:104 msgid "Import/Export coordinates for PDF schema" msgstr "Impordi/Ekspordi kordinaadid PDF skeemile" -#: libraries/messages.inc.php:395 querywindow.php:104 +#: libraries/messages.inc.php:391 querywindow.php:104 msgid "Import files" msgstr "Importige failid" -#: libraries/messages.inc.php:403 +#: libraries/messages.inc.php:399 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/messages.inc.php:404 libraries/messages.inc.php:584 +#: libraries/messages.inc.php:400 libraries/messages.inc.php:580 msgid "Open Document Spreadsheet" msgstr "Ava dokumendi arvutustabel" -#: libraries/messages.inc.php:405 +#: libraries/messages.inc.php:401 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/messages.inc.php:409 +#: libraries/messages.inc.php:405 msgid "Excel 97-2003 XLS Workbook" msgstr "" -#: libraries/messages.inc.php:410 +#: libraries/messages.inc.php:406 msgid "Excel 2007 XLSX Workbook" msgstr "" -#: libraries/messages.inc.php:414 libraries/mult_submits.inc.php:98 +#: libraries/messages.inc.php:410 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:476 tbl_structure.php:674 msgid "Index" msgstr "Indeks" -#: libraries/messages.inc.php:415 tbl_indexes.php:168 +#: libraries/messages.inc.php:411 tbl_indexes.php:168 msgid "Index name:" msgstr "Indeksi nimi :" -#: libraries/messages.inc.php:416 tbl_indexes.php:174 +#: libraries/messages.inc.php:412 tbl_indexes.php:174 msgid "Index type:" msgstr "Indeksi tüüp :" -#: libraries/messages.inc.php:417 sql.php:639 +#: libraries/messages.inc.php:413 sql.php:639 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Probleemid tabeli `%s` indeksitega" -#: libraries/messages.inc.php:427 main.php:266 +#: libraries/messages.inc.php:423 main.php:266 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -4020,163 +4020,163 @@ msgstr "" "server jookseb sellise seadega on ta avatud rünnakutele, soovitav on see " "turvaauk kiiresti parandada." -#: libraries/messages.inc.php:428 tbl_change.php:1130 +#: libraries/messages.inc.php:424 tbl_change.php:1130 msgid "Insert as new row" msgstr "Lisa uue reana" -#: libraries/messages.inc.php:429 sql.php:496 tbl_replace.php:386 +#: libraries/messages.inc.php:425 sql.php:496 tbl_replace.php:386 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: libraries/messages.inc.php:430 tbl_change.php:1131 +#: libraries/messages.inc.php:426 tbl_change.php:1131 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/messages.inc.php:432 main.php:139 +#: libraries/messages.inc.php:428 main.php:139 msgid "Interface" msgstr "" -#: libraries/messages.inc.php:433 tbl_relation.php:407 +#: libraries/messages.inc.php:429 tbl_relation.php:407 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: libraries/messages.inc.php:435 pdf_pages.php:303 +#: libraries/messages.inc.php:431 pdf_pages.php:303 msgid "Internal relations" msgstr "Sisesed seosed" -#: libraries/messages.inc.php:438 tbl_indexes.php:256 tbl_structure.php:590 +#: libraries/messages.inc.php:434 tbl_indexes.php:256 tbl_structure.php:590 #: tbl_structure.php:601 msgid "Column count has to be larger than zero." msgstr "Veergude arv peab olema nullist suurem." -#: libraries/messages.inc.php:444 libraries/tbl_properties.inc.php:784 +#: libraries/messages.inc.php:440 libraries/tbl_properties.inc.php:784 #: tbl_structure.php:537 msgid "You have to add at least one field." msgstr "Peate lisama vähemalt ühe välja." -#: libraries/messages.inc.php:449 +#: libraries/messages.inc.php:445 #, php-format msgid "Invalid server index: \"%s\"" msgstr "Vigane serveri indeks: \"%s\"" -#: libraries/messages.inc.php:452 libraries/mysql_charsets.lib.php:259 +#: libraries/messages.inc.php:448 libraries/mysql_charsets.lib.php:259 #: libraries/mysql_charsets.lib.php:349 msgid "Japanese" msgstr "Jaapani" -#: libraries/messages.inc.php:453 main.php:331 +#: libraries/messages.inc.php:449 main.php:331 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: libraries/messages.inc.php:454 server_status.php:257 +#: libraries/messages.inc.php:450 server_status.php:257 msgid "Joins" msgstr "Liited" -#: libraries/messages.inc.php:457 server_privileges.php:763 +#: libraries/messages.inc.php:453 server_privileges.php:763 msgid "Do not change the password" msgstr "Ärge muutke parooli" -#: libraries/messages.inc.php:458 server_status.php:256 +#: libraries/messages.inc.php:454 server_status.php:256 msgid "Key cache" msgstr "Võtme vahemälu" -#: libraries/messages.inc.php:462 libraries/mysql_charsets.lib.php:268 +#: libraries/messages.inc.php:458 libraries/mysql_charsets.lib.php:268 #: libraries/mysql_charsets.lib.php:371 msgid "Korean" msgstr "Korea" -#: libraries/messages.inc.php:466 libraries/select_lang.lib.php:480 +#: libraries/messages.inc.php:462 libraries/select_lang.lib.php:480 #: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492 #, php-format msgid "Unknown language: %1$s." msgstr "Tundmatu keel: %1$s." -#: libraries/messages.inc.php:468 +#: libraries/messages.inc.php:464 msgid "Table caption" msgstr "Tabeli seletus" -#: libraries/messages.inc.php:469 +#: libraries/messages.inc.php:465 msgid "Content of table __TABLE__" msgstr "Tabeli __TABLE__ sisu" -#: libraries/messages.inc.php:470 +#: libraries/messages.inc.php:466 msgid "Continued table caption" msgstr "Jätkuva tabeli seletus" -#: libraries/messages.inc.php:471 +#: libraries/messages.inc.php:467 msgid "(continued)" msgstr "(jätkub)" -#: libraries/messages.inc.php:472 +#: libraries/messages.inc.php:468 msgid "Include table caption" msgstr "Lisa tabeli seletus" -#: libraries/messages.inc.php:473 +#: libraries/messages.inc.php:469 msgid "Label key" msgstr "Nimetuse võti" -#: libraries/messages.inc.php:474 +#: libraries/messages.inc.php:470 msgid "LaTeX" msgstr "LaTeX" -#: libraries/messages.inc.php:475 +#: libraries/messages.inc.php:471 msgid "Structure of table __TABLE__" msgstr "Tabeli __TABLE__ struktuur" -#: libraries/messages.inc.php:476 libraries/mysql_charsets.lib.php:262 +#: libraries/messages.inc.php:472 libraries/mysql_charsets.lib.php:262 msgid "Latvian" msgstr "Läti" -#: libraries/messages.inc.php:477 +#: libraries/messages.inc.php:473 msgid "CSV using LOAD DATA" msgstr "CSV kasutades LOAD DATA" -#: libraries/messages.inc.php:478 +#: libraries/messages.inc.php:474 msgid "Use LOCAL keyword" msgstr "kasuta LOCAL võtmesõna" -#: libraries/messages.inc.php:479 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:475 libraries/tbl_properties.inc.php:105 msgid "Length/Values" msgstr "Pikkus/Väärtused*" -#: libraries/messages.inc.php:480 tbl_select.php:295 +#: libraries/messages.inc.php:476 tbl_select.php:295 msgid "Number of rows per page" msgstr "Ridade arv lehel" -#: libraries/messages.inc.php:484 libraries/mysql_charsets.lib.php:265 +#: libraries/messages.inc.php:480 libraries/mysql_charsets.lib.php:265 msgid "Lithuanian" msgstr "Leedu" -#: libraries/messages.inc.php:485 libraries/replication_gui.lib.php:302 +#: libraries/messages.inc.php:481 libraries/replication_gui.lib.php:302 #: server_privileges.php:729 msgid "Local" msgstr "Lokaalne" -#: libraries/messages.inc.php:487 server_privileges.php:669 +#: libraries/messages.inc.php:483 server_privileges.php:669 msgid "Login Information" msgstr "Logimise informatsioon" -#: libraries/messages.inc.php:490 libraries/navigation_header.inc.php:67 +#: libraries/messages.inc.php:486 libraries/navigation_header.inc.php:67 #: libraries/navigation_header.inc.php:70 #: libraries/navigation_header.inc.php:71 main.php:99 msgid "Log out" msgstr "Logi välja" -#: libraries/messages.inc.php:497 server_status.php:440 +#: libraries/messages.inc.php:493 server_status.php:440 msgid "max. concurrent connections" msgstr "maks. parallel ühendusi" -#: libraries/messages.inc.php:498 +#: libraries/messages.inc.php:494 msgid "Maximal length of created query" msgstr "Loodud päringu maksimaalne pikkus" -#: libraries/messages.inc.php:500 main.php:282 +#: libraries/messages.inc.php:496 main.php:282 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -4186,7 +4186,7 @@ msgstr "" "tähetabelit. Ilma mbstring lisata ei suuda phpMyAdmin poolitada teksti " "korrektselt ja tulemus võib olla ootustele mittevastav." -#: libraries/messages.inc.php:501 main.php:274 +#: libraries/messages.inc.php:497 main.php:274 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -4195,24 +4195,24 @@ msgstr "" "Te olete lubanud mbstring.func_overload oma PHP konfiguratsioonis. See seade " "ei ühildu phpMyAdminiga ja võib osade andmete kadumist põhjustada!" -#: libraries/messages.inc.php:502 +#: libraries/messages.inc.php:498 msgid "MediaWiki Table" msgstr "" -#: libraries/messages.inc.php:503 transformation_overview.php:25 +#: libraries/messages.inc.php:499 transformation_overview.php:25 msgid "Available MIME types" msgstr "Olemasolevad MIME-tüübid" -#: libraries/messages.inc.php:504 transformation_overview.php:43 +#: libraries/messages.inc.php:500 transformation_overview.php:43 msgid "Available transformations" msgstr "Available transformations" -#: libraries/messages.inc.php:505 +#: libraries/messages.inc.php:501 msgctxt "$strMIME_description" msgid "Description" msgstr "Kirjeldus" -#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:580 +#: libraries/messages.inc.php:503 libraries/tbl_properties.inc.php:580 #: transformation_overview.php:60 #, php-format msgid "" @@ -4222,7 +4222,7 @@ msgstr "" "Selle transformatsiooni jaoks ei ole kirjeldust.
Palun küsige autorilt, " "mida %s teeb." -#: libraries/messages.inc.php:509 libraries/tbl_properties.inc.php:137 +#: libraries/messages.inc.php:505 libraries/tbl_properties.inc.php:137 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -4231,7 +4231,7 @@ msgstr "" "Transformatsiooni võimaluste ja tema MIME-tüübi transformatsiooni " "nimekirjaks vajutage %stransformatsiooni kirjeldusele%s" -#: libraries/messages.inc.php:510 libraries/tbl_properties.inc.php:146 +#: libraries/messages.inc.php:506 libraries/tbl_properties.inc.php:146 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -4243,111 +4243,111 @@ msgstr "" "\") või ülakoma (\"'\") nende väärtuste seas, varjestage see tagurpidi " "kaldkriipsuga (näiteks '\\\\xyz' või 'a\\'b')." -#: libraries/messages.inc.php:511 libraries/tbl_properties.inc.php:145 +#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:145 msgid "Transformation options" msgstr "Transformeerimise seaded" -#: libraries/messages.inc.php:513 transformation_overview.php:38 +#: libraries/messages.inc.php:509 transformation_overview.php:38 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "MIME-tüübid kursiivis ei oma eraldi transofrmatsiooni funktsiooni" -#: libraries/messages.inc.php:515 tbl_indexes.php:162 +#: libraries/messages.inc.php:511 tbl_indexes.php:162 msgid "Modify an index" msgstr "Muuda indeksit" -#: libraries/messages.inc.php:517 pmd_general.php:108 +#: libraries/messages.inc.php:513 pmd_general.php:108 msgid "Move Menu" msgstr "Liiguta menüü" -#: libraries/messages.inc.php:518 tbl_operations.php:276 +#: libraries/messages.inc.php:514 tbl_operations.php:276 msgid "Move table to (database.table):" msgstr "Vii tabel üle (andmebaas.tabel):" -#: libraries/messages.inc.php:519 tbl_move_copy.php:56 +#: libraries/messages.inc.php:515 tbl_move_copy.php:56 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabel %s viidu üle andmebaasi %s." -#: libraries/messages.inc.php:520 tbl_move_copy.php:46 +#: libraries/messages.inc.php:516 tbl_move_copy.php:46 msgid "Can't move table to same one!" msgstr "Ei saa tabelit iseendasse liigutada!" -#: libraries/messages.inc.php:521 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:517 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 #: libraries/mysql_charsets.lib.php:332 libraries/mysql_charsets.lib.php:354 #: libraries/mysql_charsets.lib.php:365 msgid "multilingual" msgstr "mitmekeelne" -#: libraries/messages.inc.php:534 main.php:193 +#: libraries/messages.inc.php:530 main.php:193 msgid "MySQL charset" msgstr "MySQLi tähetabel" -#: libraries/messages.inc.php:535 main.php:211 +#: libraries/messages.inc.php:531 main.php:211 msgid "MySQL client version" msgstr "MySQL kliendi versioon" -#: libraries/messages.inc.php:536 main.php:125 +#: libraries/messages.inc.php:532 main.php:125 msgid "MySQL connection collation" msgstr "MySQL ühenduse kollatsioon" -#: libraries/messages.inc.php:537 main.php:346 +#: libraries/messages.inc.php:533 main.php:346 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: libraries/messages.inc.php:539 server_status.php:294 +#: libraries/messages.inc.php:535 server_status.php:294 msgid "Show processes" msgstr "Näita protsesse" -#: libraries/messages.inc.php:545 navigation.php:210 server_databases.php:371 +#: libraries/messages.inc.php:541 navigation.php:210 server_databases.php:371 #: server_synchronize.php:1191 msgid "No databases" msgstr "Pole andmebaase" -#: libraries/messages.inc.php:546 server_databases.php:52 +#: libraries/messages.inc.php:542 server_databases.php:52 msgid "No databases selected." msgstr "Ühtegi andmebaasi ei ole valitud." -#: libraries/messages.inc.php:548 libraries/relation.lib.php:1173 +#: libraries/messages.inc.php:544 libraries/relation.lib.php:1173 msgid "no description" msgstr "pole kirjeldust" -#: libraries/messages.inc.php:552 libraries/zip_extension.lib.php:26 +#: libraries/messages.inc.php:548 libraries/zip_extension.lib.php:26 msgid "No files found inside ZIP archive!" msgstr "Ei leidnud ühtegi faili ZIP arhiivist!" -#: libraries/messages.inc.php:555 tbl_indexes.php:91 +#: libraries/messages.inc.php:551 tbl_indexes.php:91 msgid "No index parts defined!" msgstr "Indeksi osad pole defineeritud!" -#: libraries/messages.inc.php:556 libraries/mult_submits.inc.php:435 +#: libraries/messages.inc.php:552 libraries/mult_submits.inc.php:435 #: tbl_replace.php:331 msgid "No change" msgstr "Ei muudetud" -#: libraries/messages.inc.php:557 +#: libraries/messages.inc.php:553 #, fuzzy msgctxt "$strNoneDefault" msgid "None" msgstr "Pole" -#: libraries/messages.inc.php:560 libraries/plugin_interface.lib.php:312 +#: libraries/messages.inc.php:556 libraries/plugin_interface.lib.php:312 msgid "This format has no options" msgstr "Sellel formaadil pole seadeid" -#: libraries/messages.inc.php:565 user_password.php:54 +#: libraries/messages.inc.php:561 user_password.php:54 msgid "You don't have sufficient privileges to be here right now!" msgstr "Teil pole piisavalt õigusi, et hetkel siin olla!" -#: libraries/messages.inc.php:566 tbl_row_action.php:29 +#: libraries/messages.inc.php:562 tbl_row_action.php:29 msgid "No rows selected" msgstr "Ridu pole valitud" -#: libraries/messages.inc.php:569 themes.php:32 +#: libraries/messages.inc.php:565 themes.php:32 #, php-format msgid "" "No themes support; please check your configuration and/or your themes in " @@ -4356,295 +4356,295 @@ msgstr "" "Teemade tugi puudub, palun kontrollige oma seadeid ja/või oma teemade " "kataloogi %s." -#: libraries/messages.inc.php:571 libraries/relation.lib.php:95 +#: libraries/messages.inc.php:567 libraries/relation.lib.php:95 msgid "not OK" msgstr "Ei ole korras" -#: libraries/messages.inc.php:572 server_synchronize.php:400 +#: libraries/messages.inc.php:568 server_synchronize.php:400 #: server_synchronize.php:839 msgid "not present" msgstr "" -#: libraries/messages.inc.php:573 pdf_pages.php:36 pdf_pages.php:42 +#: libraries/messages.inc.php:569 pdf_pages.php:36 pdf_pages.php:42 #: pdf_pages.php:48 pdf_pages.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "%s tabelit ei leitud või ei eksisteeri %s" -#: libraries/messages.inc.php:574 server_privileges.php:804 +#: libraries/messages.inc.php:570 server_privileges.php:804 #: server_privileges.php:2166 msgid "No user(s) found." msgstr "Ei leitud ühtegi kasutajat." -#: libraries/messages.inc.php:578 pmd_general.php:164 +#: libraries/messages.inc.php:574 pmd_general.php:164 msgid "Number of tables" msgstr "Tabelite arv" -#: libraries/messages.inc.php:581 server_databases.php:117 +#: libraries/messages.inc.php:577 server_databases.php:117 #: server_status.php:260 setup/lib/messages.inc.php:117 msgid "Tables" msgstr "Tabelid" -#: libraries/messages.inc.php:583 libraries/relation.lib.php:99 +#: libraries/messages.inc.php:579 libraries/relation.lib.php:99 #: pmd_general.php:340 msgid "OK" msgstr "Korras" -#: libraries/messages.inc.php:585 +#: libraries/messages.inc.php:581 msgid "Open Document Text" msgstr "Ava dokumendi tekst" -#: libraries/messages.inc.php:588 tbl_select.php:138 +#: libraries/messages.inc.php:584 tbl_select.php:138 msgid "Operator" msgstr "Operaator" -#: libraries/messages.inc.php:589 tbl_operations.php:662 +#: libraries/messages.inc.php:585 tbl_operations.php:662 msgid "Optimize" msgstr "" -#: libraries/messages.inc.php:602 libraries/tbl_properties.inc.php:755 +#: libraries/messages.inc.php:598 libraries/tbl_properties.inc.php:755 msgid "PARTITION definition" msgstr "" -#: libraries/messages.inc.php:603 tbl_structure.php:757 +#: libraries/messages.inc.php:599 tbl_structure.php:757 msgid "partitioned" msgstr "" -#: libraries/messages.inc.php:604 tbl_operations.php:649 +#: libraries/messages.inc.php:600 tbl_operations.php:649 #, fuzzy msgid "Partition maintenance" msgstr "Tabeli hooldus" -#: libraries/messages.inc.php:605 tbl_operations.php:657 +#: libraries/messages.inc.php:601 tbl_operations.php:657 #, php-format msgid "Partition %s" msgstr "" -#: libraries/messages.inc.php:606 server_privileges.php:1212 +#: libraries/messages.inc.php:602 server_privileges.php:1212 #, php-format msgid "The password for %s was changed successfully." msgstr "Kasutaja %s parool vahetati õnnestunult." -#: libraries/messages.inc.php:635 +#: libraries/messages.inc.php:631 #, php-format msgid "Schema of the \"%s\" database - Page %s" msgstr "Andmebaasi \"%s\" skeem - lehekülg %s" -#: libraries/messages.inc.php:636 +#: libraries/messages.inc.php:632 #, php-format msgid "The \"%s\" table doesn't exist!" msgstr "\"%s\" tabel ei eksisteeri!" -#: libraries/messages.inc.php:637 pdf_schema.php:1013 +#: libraries/messages.inc.php:633 pdf_schema.php:1013 msgid "No tables" msgstr "Pole tabeleid" -#: libraries/messages.inc.php:638 pmd_pdf.php:63 +#: libraries/messages.inc.php:634 pmd_pdf.php:63 #, fuzzy msgid "Page has been created" msgstr "Tabel %s kustutatud" -#: libraries/messages.inc.php:639 pmd_pdf.php:65 +#: libraries/messages.inc.php:635 pmd_pdf.php:65 msgid "Page creation failed" msgstr "" -#: libraries/messages.inc.php:640 +#: libraries/messages.inc.php:636 msgid "PDF" msgstr "PDF" -#: libraries/messages.inc.php:641 +#: libraries/messages.inc.php:637 msgid "(Generates a report containing the data of a single table)" msgstr "(Genereerib aruande sisaldades andmeid üksikust tabelist)" -#: libraries/messages.inc.php:642 +#: libraries/messages.inc.php:638 msgid "Report title" msgstr "Raporti pealkiri" -#: libraries/messages.inc.php:643 server_status.php:389 server_status.php:434 +#: libraries/messages.inc.php:639 server_status.php:389 server_status.php:434 #: server_status.php:497 server_status.php:555 msgid "per hour" msgstr "tunni kohta" -#: libraries/messages.inc.php:644 server_status.php:498 +#: libraries/messages.inc.php:640 server_status.php:498 msgid "per minute" msgstr "minutis" -#: libraries/messages.inc.php:645 server_status.php:499 +#: libraries/messages.inc.php:641 server_status.php:499 msgid "per second" msgstr "sekundis" -#: libraries/messages.inc.php:646 libraries/mysql_charsets.lib.php:271 +#: libraries/messages.inc.php:642 libraries/mysql_charsets.lib.php:271 msgid "Persian" msgstr "Pärsia" -#: libraries/messages.inc.php:647 libraries/mysql_charsets.lib.php:250 +#: libraries/messages.inc.php:643 libraries/mysql_charsets.lib.php:250 msgid "phone book" msgstr "telefoniraamat" -#: libraries/messages.inc.php:648 +#: libraries/messages.inc.php:644 msgid "PHP array" msgstr "" -#: libraries/messages.inc.php:650 main.php:213 +#: libraries/messages.inc.php:646 main.php:213 #, fuzzy msgid "PHP extension" msgstr "PHP versioon" -#: libraries/messages.inc.php:654 libraries/relation.lib.php:163 +#: libraries/messages.inc.php:650 libraries/relation.lib.php:163 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/messages.inc.php:655 libraries/relation.lib.php:159 +#: libraries/messages.inc.php:651 libraries/relation.lib.php:159 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/messages.inc.php:656 libraries/relation.lib.php:161 +#: libraries/messages.inc.php:652 libraries/relation.lib.php:161 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" -#: libraries/messages.inc.php:657 libraries/relation.lib.php:162 +#: libraries/messages.inc.php:653 libraries/relation.lib.php:162 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/messages.inc.php:658 libraries/relation.lib.php:164 +#: libraries/messages.inc.php:654 libraries/relation.lib.php:164 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/messages.inc.php:661 libraries/mysql_charsets.lib.php:274 +#: libraries/messages.inc.php:657 libraries/mysql_charsets.lib.php:274 msgid "Polish" msgstr "Poola" -#: libraries/messages.inc.php:662 libraries/replication_gui.lib.php:67 +#: libraries/messages.inc.php:658 libraries/replication_gui.lib.php:67 #: server_synchronize.php:1163 #, fuzzy msgid "Port" msgstr "Sorteeri" -#: libraries/messages.inc.php:667 tbl_indexes.php:67 +#: libraries/messages.inc.php:663 tbl_indexes.php:67 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Primaarse võtme nimi peab olema... PRIMARY!" -#: libraries/messages.inc.php:668 tbl_indexes.php:184 +#: libraries/messages.inc.php:664 tbl_indexes.php:184 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" "(\"PRIMARY\" peab olema ja ainult olema primaarse võtme nimi!)" -#: libraries/messages.inc.php:669 libraries/mult_submits.inc.php:76 +#: libraries/messages.inc.php:665 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:474 msgid "Primary" msgstr "Primaarne" -#: libraries/messages.inc.php:673 server_privileges.php:227 +#: libraries/messages.inc.php:669 server_privileges.php:227 msgid "Includes all privileges except GRANT." msgstr "Sisaldab kõiki privileege peale GRANT." -#: libraries/messages.inc.php:674 server_privileges.php:153 +#: libraries/messages.inc.php:670 server_privileges.php:153 #: server_privileges.php:476 msgid "Allows altering the structure of existing tables." msgstr "Lubab muuta olemasolevate tabelite struktuure." -#: libraries/messages.inc.php:675 server_privileges.php:169 +#: libraries/messages.inc.php:671 server_privileges.php:169 #: server_privileges.php:482 msgid "Allows altering and dropping stored routines." msgstr "Lubabu salvestatud rutiinide muutmise ja kustutamise." -#: libraries/messages.inc.php:676 server_privileges.php:145 +#: libraries/messages.inc.php:672 server_privileges.php:145 #: server_privileges.php:475 msgid "Allows creating new databases and tables." msgstr "Lubab luua uusi andmebaase ja tabeleid." -#: libraries/messages.inc.php:677 server_privileges.php:168 +#: libraries/messages.inc.php:673 server_privileges.php:168 #: server_privileges.php:481 msgid "Allows creating stored routines." msgstr "Lubab salvestatud rutiinide loomise." -#: libraries/messages.inc.php:678 server_privileges.php:475 +#: libraries/messages.inc.php:674 server_privileges.php:475 msgid "Allows creating new tables." msgstr "Lubab luua uusi tabeleid." -#: libraries/messages.inc.php:679 server_privileges.php:156 +#: libraries/messages.inc.php:675 server_privileges.php:156 #: server_privileges.php:479 msgid "Allows creating temporary tables." msgstr "Lubab luua ajutisi tabeleid." -#: libraries/messages.inc.php:680 server_privileges.php:170 +#: libraries/messages.inc.php:676 server_privileges.php:170 #: server_privileges.php:515 msgid "Allows creating, dropping and renaming user accounts." msgstr "Lubab kasutajakontode loomise, kustutamise ja muutmise." -#: libraries/messages.inc.php:681 server_privileges.php:160 +#: libraries/messages.inc.php:677 server_privileges.php:160 #: server_privileges.php:164 server_privileges.php:487 #: server_privileges.php:491 msgid "Allows creating new views." msgstr "Lubab uute vaadete loomist." -#: libraries/messages.inc.php:682 server_privileges.php:144 +#: libraries/messages.inc.php:678 server_privileges.php:144 #: server_privileges.php:467 msgid "Allows deleting data." msgstr "Lubab kustutada infot." -#: libraries/messages.inc.php:683 server_privileges.php:146 +#: libraries/messages.inc.php:679 server_privileges.php:146 #: server_privileges.php:478 msgid "Allows dropping databases and tables." msgstr "Lubab kustuada andmebaase ja tabeleid." -#: libraries/messages.inc.php:684 server_privileges.php:478 +#: libraries/messages.inc.php:680 server_privileges.php:478 msgid "Allows dropping tables." msgstr "Lubab kustutada tabeleid.." -#: libraries/messages.inc.php:685 server_privileges.php:161 +#: libraries/messages.inc.php:681 server_privileges.php:161 #: server_privileges.php:495 msgid "Allows to set up events for the event scheduler" msgstr "" -#: libraries/messages.inc.php:686 server_privileges.php:171 +#: libraries/messages.inc.php:682 server_privileges.php:171 #: server_privileges.php:483 msgid "Allows executing stored routines." msgstr "Lubab salvestatud rutiinide käivituse." -#: libraries/messages.inc.php:687 server_privileges.php:150 +#: libraries/messages.inc.php:683 server_privileges.php:150 #: server_privileges.php:470 msgid "Allows importing data from and exporting data into files." msgstr "Lubab andmete eksportimist faili ja andmete importimist failidest." -#: libraries/messages.inc.php:688 server_privileges.php:501 +#: libraries/messages.inc.php:684 server_privileges.php:501 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Lubab lisada kasutajaid ja privileege ilma privileges tabelit " "taaskäivitamata." -#: libraries/messages.inc.php:689 server_privileges.php:152 +#: libraries/messages.inc.php:685 server_privileges.php:152 #: server_privileges.php:477 msgid "Allows creating and dropping indexes." msgstr "Lubab luua ja kustutada indekseid." -#: libraries/messages.inc.php:690 server_privileges.php:142 +#: libraries/messages.inc.php:686 server_privileges.php:142 #: server_privileges.php:403 server_privileges.php:465 msgid "Allows inserting and replacing data." msgstr "Lubab lisada ja muuta infot." -#: libraries/messages.inc.php:691 server_privileges.php:157 +#: libraries/messages.inc.php:687 server_privileges.php:157 #: server_privileges.php:510 msgid "Allows locking tables for the current thread." msgstr "Lubab lukustada tabeleid aktiivse päringu tarbeks." -#: libraries/messages.inc.php:692 server_privileges.php:607 +#: libraries/messages.inc.php:688 server_privileges.php:607 #: server_privileges.php:609 msgid "Limits the number of new connections the user may open per hour." msgstr "Limiteerib ühenduste arvu tunnis kasutaja jaoks." -#: libraries/messages.inc.php:693 server_privileges.php:595 +#: libraries/messages.inc.php:689 server_privileges.php:595 #: server_privileges.php:597 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Limiteerib päringute arvu tunnis kasutaja jaoks." -#: libraries/messages.inc.php:694 server_privileges.php:601 +#: libraries/messages.inc.php:690 server_privileges.php:601 #: server_privileges.php:603 msgid "" "Limits the number of commands that change any table or database the user may " @@ -4653,57 +4653,57 @@ msgstr "" "Limiteerib käskude, mis muudavad suvalist tabelit või andmebaasi, arvu " "tunnis kasutaja jaoks" -#: libraries/messages.inc.php:695 server_privileges.php:613 +#: libraries/messages.inc.php:691 server_privileges.php:613 #: server_privileges.php:615 msgid "Limits the number of simultaneous connections the user may have." msgstr "Piirab ühenduste arvu mida kasutajal võib korraga olla." -#: libraries/messages.inc.php:696 server_privileges.php:149 +#: libraries/messages.inc.php:692 server_privileges.php:149 #: server_privileges.php:505 msgid "Allows viewing processes of all users" msgstr "" -#: libraries/messages.inc.php:697 server_privileges.php:151 +#: libraries/messages.inc.php:693 server_privileges.php:151 #: server_privileges.php:409 server_privileges.php:511 msgid "Has no effect in this MySQL version." msgstr "Ei oma antud MySQL versioonis mingit effekti." -#: libraries/messages.inc.php:698 server_privileges.php:147 +#: libraries/messages.inc.php:694 server_privileges.php:147 #: server_privileges.php:506 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Lubab taaslaadida serveri seadmeid ja puhastada serveri cachet." -#: libraries/messages.inc.php:699 server_privileges.php:159 +#: libraries/messages.inc.php:695 server_privileges.php:159 #: server_privileges.php:513 msgid "Allows the user to ask where the slaves / masters are." msgstr "Lubab kasutajal küsida kus on slaved/masterid." -#: libraries/messages.inc.php:700 server_privileges.php:158 +#: libraries/messages.inc.php:696 server_privileges.php:158 #: server_privileges.php:514 msgid "Needed for the replication slaves." msgstr "Vajalik slavede paljundamiseks." -#: libraries/messages.inc.php:701 server_privileges.php:141 +#: libraries/messages.inc.php:697 server_privileges.php:141 #: server_privileges.php:400 server_privileges.php:464 msgid "Allows reading data." msgstr "Lubab lugeda infot." -#: libraries/messages.inc.php:702 server_privileges.php:154 +#: libraries/messages.inc.php:698 server_privileges.php:154 #: server_privileges.php:508 msgid "Gives access to the complete list of databases." msgstr "Annab ligipääsu kogu andmebaasilistingule." -#: libraries/messages.inc.php:703 server_privileges.php:165 +#: libraries/messages.inc.php:699 server_privileges.php:165 #: server_privileges.php:167 server_privileges.php:480 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Lubab SHOW CREATE VIEW päringute käivitamise." -#: libraries/messages.inc.php:704 server_privileges.php:148 +#: libraries/messages.inc.php:700 server_privileges.php:148 #: server_privileges.php:507 msgid "Allows shutting down the server." msgstr "Lubab serverit maha lasta." -#: libraries/messages.inc.php:705 server_privileges.php:155 +#: libraries/messages.inc.php:701 server_privileges.php:155 #: server_privileges.php:504 msgid "" "Allows connecting, even if maximum number of connections is reached; " @@ -4714,56 +4714,56 @@ msgstr "" "enamike administratiivsete operatsioonide jaoks, nagu globaalsete muutujate " "seadmine või teiste kasutajate ühenduste tapmine." -#: libraries/messages.inc.php:706 server_privileges.php:162 +#: libraries/messages.inc.php:702 server_privileges.php:162 #: server_privileges.php:496 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "Lubab luua ja kustutada indekseid." -#: libraries/messages.inc.php:707 server_privileges.php:143 +#: libraries/messages.inc.php:703 server_privileges.php:143 #: server_privileges.php:406 server_privileges.php:466 msgid "Allows changing data." msgstr "Lubab muuta infot." -#: libraries/messages.inc.php:708 server_privileges.php:221 +#: libraries/messages.inc.php:704 server_privileges.php:221 msgid "No privileges." msgstr "Mitte ühtegi privileegi." -#: libraries/messages.inc.php:710 server_privileges.php:1296 +#: libraries/messages.inc.php:706 server_privileges.php:1296 msgid "The privileges were reloaded successfully." msgstr "Privileegid taaslaeti edukalt." -#: libraries/messages.inc.php:712 libraries/server_links.inc.php:80 +#: libraries/messages.inc.php:708 libraries/server_links.inc.php:80 msgid "Processes" msgstr "Protsessid" -#: libraries/messages.inc.php:714 main.php:187 +#: libraries/messages.inc.php:710 main.php:187 msgid "Protocol version" msgstr "Protokolli versioon" -#: libraries/messages.inc.php:715 +#: libraries/messages.inc.php:711 msgid "Put fields names in the first row" msgstr "Pange väljade nimed esimesse ritta" -#: libraries/messages.inc.php:720 server_synchronize.php:1003 +#: libraries/messages.inc.php:716 server_synchronize.php:1003 msgid "The following queries have been executed:" msgstr "" -#: libraries/messages.inc.php:721 server_status.php:251 +#: libraries/messages.inc.php:717 server_status.php:251 msgid "Query cache" msgstr "Päringute vahemälu" -#: libraries/messages.inc.php:722 libraries/navigation_header.inc.php:80 +#: libraries/messages.inc.php:718 libraries/navigation_header.inc.php:80 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 setup/lib/messages.inc.php:122 msgid "Query window" msgstr "Päringuaken" -#: libraries/messages.inc.php:725 querywindow.php:109 querywindow.php:217 +#: libraries/messages.inc.php:721 querywindow.php:109 querywindow.php:217 msgid "SQL history" msgstr "SQL-ajalugu" -#: libraries/messages.inc.php:726 server_status.php:490 +#: libraries/messages.inc.php:722 server_status.php:490 #, php-format msgid "" "Query statistics: Since its startup, %s queries have been sent to the " @@ -4772,137 +4772,137 @@ msgstr "" "Päringu statistika: Alates stardist, %s päringut on saadetud " "serverile." -#: libraries/messages.inc.php:728 server_status.php:554 +#: libraries/messages.inc.php:724 server_status.php:554 msgid "Query type" msgstr "Päringu tüüp" -#: libraries/messages.inc.php:729 libraries/sql_query_form.lib.php:381 +#: libraries/messages.inc.php:725 libraries/sql_query_form.lib.php:381 msgid "Do not overwrite this query from outside the window" msgstr "Antud päringut mitte muuta väljaspool akent." -#: libraries/messages.inc.php:732 tbl_operations.php:663 +#: libraries/messages.inc.php:728 tbl_operations.php:663 msgid "Rebuild" msgstr "" -#: libraries/messages.inc.php:733 server_status.php:394 +#: libraries/messages.inc.php:729 server_status.php:394 msgid "Received" msgstr "Saadud" -#: libraries/messages.inc.php:734 pmd_pdf.php:89 +#: libraries/messages.inc.php:730 pmd_pdf.php:89 msgid "recommended" msgstr "soovituslik" -#: libraries/messages.inc.php:736 tbl_operations.php:702 +#: libraries/messages.inc.php:732 tbl_operations.php:702 msgid "Check referential integrity:" msgstr "Kontrolli pärinevust:" -#: libraries/messages.inc.php:740 pdf_schema.php:1032 pdf_schema.php:1141 +#: libraries/messages.inc.php:736 pdf_schema.php:1032 pdf_schema.php:1141 msgid "Relational schema" msgstr "Seoseskeem" -#: libraries/messages.inc.php:744 tbl_relation.php:399 +#: libraries/messages.inc.php:740 tbl_relation.php:399 msgid "Relations" msgstr "Suhted" -#: libraries/messages.inc.php:745 tbl_structure.php:507 tbl_structure.php:509 +#: libraries/messages.inc.php:741 tbl_structure.php:507 tbl_structure.php:509 msgid "Relation view" msgstr "Pärinevuse vaade" -#: libraries/messages.inc.php:746 server_privileges.php:1246 +#: libraries/messages.inc.php:742 server_privileges.php:1246 msgid "Reloading the privileges" msgstr "Taaslaen privileege" -#: libraries/messages.inc.php:747 navigation.php:66 navigation.php:67 +#: libraries/messages.inc.php:743 navigation.php:66 navigation.php:67 #: navigation.php:70 msgid "Reload navigation frame" msgstr "" -#: libraries/messages.inc.php:748 pmd_general.php:80 +#: libraries/messages.inc.php:744 pmd_general.php:80 msgid "Reload" msgstr "Lae uuesti" -#: libraries/messages.inc.php:749 libraries/server_synchronize.lib.php:1345 +#: libraries/messages.inc.php:745 libraries/server_synchronize.lib.php:1345 #: libraries/server_synchronize.lib.php:1371 msgid "Remote server" msgstr "" -#: libraries/messages.inc.php:750 +#: libraries/messages.inc.php:746 msgid "Remove CRLF characters within fields" msgstr "" -#: libraries/messages.inc.php:751 tbl_operations.php:676 +#: libraries/messages.inc.php:747 tbl_operations.php:676 msgid "Remove partitioning" msgstr "" -#: libraries/messages.inc.php:752 server_privileges.php:1575 +#: libraries/messages.inc.php:748 server_privileges.php:1575 msgid "Remove selected users" msgstr "Eemalda valitud kasutajad" -#: libraries/messages.inc.php:755 tbl_operations.php:338 +#: libraries/messages.inc.php:751 tbl_operations.php:338 msgid "Rename table to" msgstr "Nimeta tabel ümber" -#: libraries/messages.inc.php:756 view_operations.php:93 +#: libraries/messages.inc.php:752 view_operations.php:93 #, fuzzy msgid "Rename view to" msgstr "Nimeta tabel ümber" -#: libraries/messages.inc.php:757 tbl_operations.php:664 +#: libraries/messages.inc.php:753 tbl_operations.php:664 #, fuzzy msgid "Repair" msgstr "Paranda tabelit" -#: libraries/messages.inc.php:759 +#: libraries/messages.inc.php:755 msgid "Replace NULL by" msgstr "Asenda NULL " -#: libraries/messages.inc.php:760 +#: libraries/messages.inc.php:756 msgid "Replace table data with file" msgstr "Asenda tabeli andmed failiga" -#: libraries/messages.inc.php:761 server_replication.php:228 +#: libraries/messages.inc.php:757 server_replication.php:228 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: libraries/messages.inc.php:762 libraries/replication_gui.lib.php:236 +#: libraries/messages.inc.php:758 libraries/replication_gui.lib.php:236 #: server_replication.php:194 msgid "Add slave replication user" msgstr "" -#: libraries/messages.inc.php:763 server_replication.php:74 +#: libraries/messages.inc.php:759 server_replication.php:74 #, php-format msgid "Master server changed succesfully to %s" msgstr "" -#: libraries/messages.inc.php:764 server_replication.php:182 +#: libraries/messages.inc.php:760 server_replication.php:182 msgid "This server is configured as master in a replication process." msgstr "" -#: libraries/messages.inc.php:765 server_replication.php:322 +#: libraries/messages.inc.php:761 server_replication.php:322 msgid "Control slave:" msgstr "" -#: libraries/messages.inc.php:766 server_replication.php:65 +#: libraries/messages.inc.php:762 server_replication.php:65 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: libraries/messages.inc.php:767 server_replication.php:58 +#: libraries/messages.inc.php:763 server_replication.php:58 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: libraries/messages.inc.php:768 server_replication.php:221 +#: libraries/messages.inc.php:764 server_replication.php:221 msgid "Replicate all databases; Ignore:" msgstr "" -#: libraries/messages.inc.php:769 server_replication.php:222 +#: libraries/messages.inc.php:765 server_replication.php:222 msgid "Ignore all databases; Replicate:" msgstr "" -#: libraries/messages.inc.php:770 server_replication.php:218 +#: libraries/messages.inc.php:766 server_replication.php:218 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -4911,122 +4911,122 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: libraries/messages.inc.php:771 server_replication.php:217 +#: libraries/messages.inc.php:767 server_replication.php:217 msgid "Master configuration" msgstr "" -#: libraries/messages.inc.php:772 server_replication.php:181 +#: libraries/messages.inc.php:768 server_replication.php:181 #: server_replication.php:209 msgid "Master replication" msgstr "" -#: libraries/messages.inc.php:774 server_replication.php:230 +#: libraries/messages.inc.php:770 server_replication.php:230 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: libraries/messages.inc.php:775 server_replication.php:225 +#: libraries/messages.inc.php:771 server_replication.php:225 #, fuzzy msgid "Please select databases:" msgstr "Valige andmebaas" -#: libraries/messages.inc.php:776 server_replication.php:210 +#: libraries/messages.inc.php:772 server_replication.php:210 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:188 +#: libraries/messages.inc.php:773 libraries/replication_gui.lib.php:188 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/messages.inc.php:778 server_replication.php:187 +#: libraries/messages.inc.php:774 server_replication.php:187 msgid "Show connected slaves" msgstr "" -#: libraries/messages.inc.php:779 libraries/messages.inc.php:885 +#: libraries/messages.inc.php:775 libraries/messages.inc.php:881 #: server_replication.php:184 server_status.php:281 #, fuzzy msgid "Show master status" msgstr "Näita alluvate(slave) staatust" -#: libraries/messages.inc.php:780 server_replication.php:334 +#: libraries/messages.inc.php:776 server_replication.php:334 msgid "Skipping error(s) might lead into unsynchronized master and slave!" msgstr "" -#: libraries/messages.inc.php:781 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:51 #: server_replication.php:347 msgid "Change or reconfigure master server" msgstr "" -#: libraries/messages.inc.php:782 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:778 libraries/replication_gui.lib.php:51 msgid "Slave configuration" msgstr "" -#: libraries/messages.inc.php:783 server_replication.php:305 +#: libraries/messages.inc.php:779 server_replication.php:305 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: libraries/messages.inc.php:784 server_replication.php:332 +#: libraries/messages.inc.php:780 server_replication.php:332 msgid "Error management:" msgstr "" -#: libraries/messages.inc.php:785 server_replication.php:328 +#: libraries/messages.inc.php:781 server_replication.php:328 #, php-format msgid "IO Thread %s only" msgstr "" -#: libraries/messages.inc.php:786 server_replication.php:296 +#: libraries/messages.inc.php:782 server_replication.php:296 msgid "Slave IO Thread not running!" msgstr "" -#: libraries/messages.inc.php:787 server_replication.php:355 +#: libraries/messages.inc.php:783 server_replication.php:355 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/messages.inc.php:788 server_replication.php:326 +#: libraries/messages.inc.php:784 server_replication.php:326 msgid "Reset slave" msgstr "" -#: libraries/messages.inc.php:789 server_replication.php:308 +#: libraries/messages.inc.php:785 server_replication.php:308 msgid "See slave status table" msgstr "" -#: libraries/messages.inc.php:790 server_replication.php:336 +#: libraries/messages.inc.php:786 server_replication.php:336 msgid "Skip current error" msgstr "" -#: libraries/messages.inc.php:791 server_replication.php:340 +#: libraries/messages.inc.php:787 server_replication.php:340 msgid "errors." msgstr "" -#: libraries/messages.inc.php:792 server_replication.php:337 +#: libraries/messages.inc.php:788 server_replication.php:337 msgid "Skip next" msgstr "" -#: libraries/messages.inc.php:793 server_replication.php:248 +#: libraries/messages.inc.php:789 server_replication.php:248 msgid "Slave replication" msgstr "" -#: libraries/messages.inc.php:794 server_replication.php:293 +#: libraries/messages.inc.php:790 server_replication.php:293 msgid "Slave SQL Thread not running!" msgstr "" -#: libraries/messages.inc.php:795 server_replication.php:327 +#: libraries/messages.inc.php:791 server_replication.php:327 #, php-format msgid "SQL Thread %s only" msgstr "" -#: libraries/messages.inc.php:796 +#: libraries/messages.inc.php:792 #, php-format msgid "" "This MySQL server works as %s in replication process. For further " @@ -5034,161 +5034,161 @@ msgid "" "\"#replication\">replication section." msgstr "" -#: libraries/messages.inc.php:797 +#: libraries/messages.inc.php:793 #, fuzzy msgid "Master status" msgstr "Näita alluvate(slave) staatust" -#: libraries/messages.inc.php:798 server_status.php:721 +#: libraries/messages.inc.php:794 server_status.php:721 #, fuzzy msgid "Replication status" msgstr "Tiražeerimine" -#: libraries/messages.inc.php:799 +#: libraries/messages.inc.php:795 #, fuzzy msgid "Slave status" msgstr "Näita alluvate(slave) staatust" -#: libraries/messages.inc.php:800 server_replication.php:311 +#: libraries/messages.inc.php:796 server_replication.php:311 msgid "Synchronize databases with master" msgstr "" -#: libraries/messages.inc.php:801 server_replication.php:71 +#: libraries/messages.inc.php:797 server_replication.php:71 msgid "Unable to change master" msgstr "" -#: libraries/messages.inc.php:802 server_replication.php:51 +#: libraries/messages.inc.php:798 server_replication.php:51 msgid "Unknown error" msgstr "" -#: libraries/messages.inc.php:803 main.php:163 pdf_pages.php:344 +#: libraries/messages.inc.php:799 main.php:163 pdf_pages.php:344 #: setup/lib/FormDisplay.tpl.php:216 tbl_change.php:1175 msgid "Reset" msgstr "Tühista" -#: libraries/messages.inc.php:804 server_privileges.php:591 +#: libraries/messages.inc.php:800 server_privileges.php:591 msgid "Resource limits" msgstr "Ressursilimiidid" -#: libraries/messages.inc.php:805 tbl_change.php:1209 +#: libraries/messages.inc.php:801 tbl_change.php:1209 #, php-format msgid "Restart insertion with %s rows" msgstr "" -#: libraries/messages.inc.php:807 server_privileges.php:1578 +#: libraries/messages.inc.php:803 server_privileges.php:1578 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." -#: libraries/messages.inc.php:808 server_privileges.php:1176 +#: libraries/messages.inc.php:804 server_privileges.php:1176 #, php-format msgid "You have revoked the privileges for %s" msgstr "Te võtsite tagasi privileegid %s-lt" -#: libraries/messages.inc.php:809 server_privileges.php:1333 +#: libraries/messages.inc.php:805 server_privileges.php:1333 msgid "Revoke" msgstr "Võta tagasi" -#: libraries/messages.inc.php:810 libraries/mysql_charsets.lib.php:280 +#: libraries/messages.inc.php:806 libraries/mysql_charsets.lib.php:280 msgid "Romanian" msgstr "Rumeenia" -#: libraries/messages.inc.php:813 tbl_printview.php:404 tbl_structure.php:786 +#: libraries/messages.inc.php:809 tbl_printview.php:404 tbl_structure.php:786 msgid "Row length" msgstr "Rea pikkus" -#: libraries/messages.inc.php:815 tbl_printview.php:414 tbl_structure.php:794 +#: libraries/messages.inc.php:811 tbl_printview.php:414 tbl_structure.php:794 msgid " Row size " msgstr " rea suurus " -#: libraries/messages.inc.php:821 tbl_printview.php:366 tbl_structure.php:726 +#: libraries/messages.inc.php:817 tbl_printview.php:366 tbl_structure.php:726 msgid "Row Statistics" msgstr "Rea statistika" -#: libraries/messages.inc.php:822 +#: libraries/messages.inc.php:818 #, php-format msgid "running on %s" msgstr "jookseb masinas %s" -#: libraries/messages.inc.php:824 libraries/sql_query_form.lib.php:223 +#: libraries/messages.inc.php:820 libraries/sql_query_form.lib.php:223 #, php-format msgid "Run SQL query/queries on server %s" msgstr "Käivita SQL käsk/käsud Masinas %s" -#: libraries/messages.inc.php:825 libraries/sql_query_form.lib.php:240 +#: libraries/messages.inc.php:821 libraries/sql_query_form.lib.php:240 #: libraries/sql_query_form.lib.php:265 #, php-format msgid "Run SQL query/queries on database %s" msgstr "Päri SQL päring(uid) andmebaasist %s" -#: libraries/messages.inc.php:826 libraries/mysql_charsets.lib.php:337 +#: libraries/messages.inc.php:822 libraries/mysql_charsets.lib.php:337 msgid "Russian" msgstr "Vene" -#: libraries/messages.inc.php:829 pmd_general.php:68 +#: libraries/messages.inc.php:825 pmd_general.php:68 msgid "Save position" msgstr "Salvesta positsioon" -#: libraries/messages.inc.php:830 libraries/tbl_properties.inc.php:776 +#: libraries/messages.inc.php:826 libraries/tbl_properties.inc.php:776 #: pdf_pages.php:484 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:214 setup/lib/FormDisplay.tpl.php:215 #: tbl_change.php:1126 tbl_indexes.php:248 tbl_relation.php:566 msgid "Save" msgstr "Salvesta" -#: libraries/messages.inc.php:831 +#: libraries/messages.inc.php:827 msgid "The scale factor is too small to fit the schema on one page" msgstr "Skalaarfaktor on liiga väike, et skeem mahuks ühele lehele." -#: libraries/messages.inc.php:843 main.php:298 +#: libraries/messages.inc.php:839 main.php:298 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "Konfiguratsioonifail nõuab nüüd salajast võtmesõna (blowfish_secret)." -#: libraries/messages.inc.php:844 navigation.php:353 navigation.php:516 +#: libraries/messages.inc.php:840 navigation.php:353 navigation.php:516 msgid "Please select a database" msgstr "Valige andmebaas" -#: libraries/messages.inc.php:846 server_binlog.php:120 +#: libraries/messages.inc.php:842 server_binlog.php:120 msgid "Select binary log to view" msgstr "Valige binaarne logi vaatamiseks" -#: libraries/messages.inc.php:847 tbl_select.php:270 +#: libraries/messages.inc.php:843 tbl_select.php:270 msgid "Select fields (at least one):" msgstr "Vali väljad (vähemalt üks):" -#: libraries/messages.inc.php:851 pdf_pages.php:320 +#: libraries/messages.inc.php:847 pdf_pages.php:320 msgid "Select Tables" msgstr "Vali tabelid" -#: libraries/messages.inc.php:853 server_status.php:404 +#: libraries/messages.inc.php:849 server_status.php:404 msgid "Sent" msgstr "Saadetud" -#: libraries/messages.inc.php:857 libraries/select_server.lib.php:45 +#: libraries/messages.inc.php:853 libraries/select_server.lib.php:45 #: setup/frames/index.inc.php:97 setup/lib/messages.inc.php:115 msgid "Servers" msgstr "Serverid" -#: libraries/messages.inc.php:858 server_status.php:255 +#: libraries/messages.inc.php:854 server_status.php:255 msgid "Delayed inserts" msgstr "Ajastatud lisamised" -#: libraries/messages.inc.php:859 server_status.php:46 +#: libraries/messages.inc.php:855 server_status.php:46 msgid "Runtime Information" msgstr "Jooksev informatsioon" -#: libraries/messages.inc.php:860 server_status.php:350 +#: libraries/messages.inc.php:856 server_status.php:350 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "See MySQL server on käinud %s. Käivitusaeg %s." -#: libraries/messages.inc.php:861 libraries/server_links.inc.php:53 +#: libraries/messages.inc.php:857 libraries/server_links.inc.php:53 #: server_engines.php:112 server_engines.php:116 server_status.php:304 #: test/theme.php:105 msgid "Variables" msgstr "Muutujad" -#: libraries/messages.inc.php:862 server_status.php:383 +#: libraries/messages.inc.php:858 server_status.php:383 msgid "" "Server traffic: These tables show the network traffic statistics of " "this MySQL server since its startup." @@ -5196,11 +5196,11 @@ msgstr "" "Serveri liiklus: Need tabelid näitavad võrguliikluse statistikat " "selle MySQL serveri jaoks alates tema käivitamisest." -#: libraries/messages.inc.php:863 server_variables.php:35 +#: libraries/messages.inc.php:859 server_variables.php:35 msgid "Server variables and settings" msgstr "Serveri muutujad ja seaded." -#: libraries/messages.inc.php:865 main.php:290 +#: libraries/messages.inc.php:861 main.php:290 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -5208,17 +5208,17 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: libraries/messages.inc.php:866 +#: libraries/messages.inc.php:862 msgid "" "Cannot start session without errors, please check errors given in your PHP " "and/or webserver log file and configure your PHP installation properly." msgstr "" -#: libraries/messages.inc.php:867 server_variables.php:55 +#: libraries/messages.inc.php:863 server_variables.php:55 msgid "Session value" msgstr "Sessiooni väärtus" -#: libraries/messages.inc.php:868 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:864 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 " @@ -5230,45 +5230,45 @@ msgstr "" "\") või ülakoma (\"'\") sinna paigutusse, varjestage see tagurpidi " "kaldkriipsuga (näiteks '\\\\xyz' või 'a\\'b')." -#: libraries/messages.inc.php:876 server_binlog.php:192 server_binlog.php:195 +#: libraries/messages.inc.php:872 server_binlog.php:192 server_binlog.php:195 #: server_processlist.php:49 server_processlist.php:51 msgid "Show Full Queries" msgstr "Näita täispikkasid päringuid" -#: libraries/messages.inc.php:878 pmd_general.php:64 +#: libraries/messages.inc.php:874 pmd_general.php:64 msgid "Show/Hide left menu" msgstr "Näita/Peida vasak menüü" -#: libraries/messages.inc.php:880 sql.php:513 +#: libraries/messages.inc.php:876 sql.php:513 msgid "Showing as PHP code" msgstr "Näitan PHP koodina" -#: libraries/messages.inc.php:882 sql.php:516 tbl_replace.php:360 +#: libraries/messages.inc.php:878 sql.php:516 tbl_replace.php:360 msgid "Showing SQL query" msgstr "Näitan SQL päringut" -#: libraries/messages.inc.php:883 tbl_change.php:1132 +#: libraries/messages.inc.php:879 tbl_change.php:1132 #, fuzzy msgid "Show insert query" msgstr "Näitan SQL päringut" -#: libraries/messages.inc.php:886 server_status.php:273 +#: libraries/messages.inc.php:882 server_status.php:273 msgid "Show open tables" msgstr "Näita avatud tabeleid" -#: libraries/messages.inc.php:887 main.php:219 +#: libraries/messages.inc.php:883 main.php:219 msgid "Show PHP information" msgstr "Näita PHP informatsiooni" -#: libraries/messages.inc.php:889 server_status.php:278 +#: libraries/messages.inc.php:885 server_status.php:278 msgid "Show slave hosts" msgstr "Näita alluvaid(slave)" -#: libraries/messages.inc.php:890 server_status.php:284 +#: libraries/messages.inc.php:886 server_status.php:284 msgid "Show slave status" msgstr "Näita alluvate(slave) staatust" -#: libraries/messages.inc.php:891 +#: libraries/messages.inc.php:887 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -5278,11 +5278,11 @@ msgstr "" "binlog_cache_size suurust ja kasutatakse ajutist faili et salvestada " "ülekande Käske (päringuid)." -#: libraries/messages.inc.php:892 +#: libraries/messages.inc.php:888 msgid "The number of transactions that used the temporary binary log cache." msgstr "Ülekannete number mis kasutasid ajutist binaar logi vahemälu." -#: libraries/messages.inc.php:893 +#: libraries/messages.inc.php:889 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -5293,11 +5293,11 @@ msgstr "" "käivitades. Kui Created_tmp_disk_tables on suur, sa võid tahta suurendada " "tmp_table_size väärtust et olla mälul baseeruv mitte kettal." -#: libraries/messages.inc.php:894 +#: libraries/messages.inc.php:890 msgid "How many temporary files mysqld has created." msgstr "Mitu ajutist faili mysqld on loonud." -#: libraries/messages.inc.php:895 +#: libraries/messages.inc.php:891 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -5305,7 +5305,7 @@ msgstr "" "Ajutiste mälul baseeruvate tabelite arv, loodud automaatselt serveri poolt, " "päringuid käivitades." -#: libraries/messages.inc.php:896 +#: libraries/messages.inc.php:892 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -5313,7 +5313,7 @@ msgstr "" "Mitu rida on loodud käsuga INSERT DELAYED milles toimus viga (arvatavasti " "korduv võti)." -#: libraries/messages.inc.php:897 +#: libraries/messages.inc.php:893 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -5321,23 +5321,23 @@ msgstr "" "Mitu INSERT DELAYED töötleja (handler) lõimu on kasutuses. Iga erinev tabel " "mis kasutab INSERT DELAYED saab oma lõimu." -#: libraries/messages.inc.php:898 +#: libraries/messages.inc.php:894 msgid "The number of INSERT DELAYED rows written." msgstr "INSERT DELAYED ridasid loodud." -#: libraries/messages.inc.php:899 +#: libraries/messages.inc.php:895 msgid "The number of executed FLUSH statements." msgstr "FLUSH käskude arv." -#: libraries/messages.inc.php:900 +#: libraries/messages.inc.php:896 msgid "The number of internal COMMIT statements." msgstr "Sisemiste COMMIT käskude arv." -#: libraries/messages.inc.php:901 +#: libraries/messages.inc.php:897 msgid "The number of times a row was deleted from a table." msgstr "Mitu korda rida kustutati tabelist." -#: libraries/messages.inc.php:902 +#: libraries/messages.inc.php:898 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -5347,7 +5347,7 @@ msgstr "" "mootor) kas ta teab tabelit etteantud nimega. Seda kutsutakse avastus" "(discovery). Handler_discover annab mitu korda on tabel leitud." -#: libraries/messages.inc.php:903 +#: libraries/messages.inc.php:899 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -5357,7 +5357,7 @@ msgstr "" "server teeb palju täis indeksi skaneerimist; näitkes, SELECT col1 FROM foo, " "arvates et col1 indekseeritud." -#: libraries/messages.inc.php:904 +#: libraries/messages.inc.php:900 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -5365,7 +5365,7 @@ msgstr "" "Mitu korda loeti rida võtme järgi. Kui see on suur, see on hea näitaja et " "sinu päringud ja tabelid on korralikult indekseeritud." -#: libraries/messages.inc.php:905 +#: libraries/messages.inc.php:901 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -5374,7 +5374,7 @@ msgstr "" "Mitu korda saadi käsk lugeda võtme järgi järgmine rida. See on suurenev kui " "sa pärid indekseeritud piiratud välja või sa teed indeksi skaneerimist." -#: libraries/messages.inc.php:906 +#: libraries/messages.inc.php:902 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -5382,7 +5382,7 @@ msgstr "" "Mitu korda saadi käsk lugeda võtme järgi eelnev rida. See lugemise meetod on " "peamiselt kasutatud optimiseerimiseks ORDER BY ... DESC." -#: libraries/messages.inc.php:907 +#: libraries/messages.inc.php:903 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -5394,7 +5394,7 @@ msgstr "" "mis vajavad MySQLi et skaneerida kogu tabelit või liited(joins) mis ei " "kasuta võtmeid korralikult." -#: libraries/messages.inc.php:908 +#: libraries/messages.inc.php:904 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -5406,35 +5406,35 @@ msgstr "" "korralikult indekseeritud või sinu päringud pole kirjutatud nii et võtta " "eeliseid sinu loodud indeksitest." -#: libraries/messages.inc.php:909 +#: libraries/messages.inc.php:905 msgid "The number of internal ROLLBACK statements." msgstr "Mitu korda käivitati sisemine ROLLBACK lausung." -#: libraries/messages.inc.php:910 +#: libraries/messages.inc.php:906 msgid "The number of requests to update a row in a table." msgstr "Mitu korda uuendati tabeli rida." -#: libraries/messages.inc.php:911 +#: libraries/messages.inc.php:907 msgid "The number of requests to insert a row in a table." msgstr "Mitu korda lisati uus rida tabelisse." -#: libraries/messages.inc.php:912 +#: libraries/messages.inc.php:908 msgid "The number of pages containing data (dirty or clean)." msgstr "Mitu lehekülge sisaldab andmeid (puhast või musta)." -#: libraries/messages.inc.php:913 +#: libraries/messages.inc.php:909 msgid "The number of pages currently dirty." msgstr "Mitu lehekülge on mustad." -#: libraries/messages.inc.php:914 +#: libraries/messages.inc.php:910 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Mitu puhvri lehekülge on määratud puhastamisele." -#: libraries/messages.inc.php:915 +#: libraries/messages.inc.php:911 msgid "The number of free pages." msgstr "Mitu puu lehekülge." -#: libraries/messages.inc.php:916 +#: libraries/messages.inc.php:912 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -5443,7 +5443,7 @@ msgstr "" "Mitu lukus lehte on InnoDB puhvris. Need lehed on hetkel lugemisel või " "kirjutamisel ja pole võimalik puhastada või kustutada mingil põhjusel." -#: libraries/messages.inc.php:917 +#: libraries/messages.inc.php:913 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -5455,11 +5455,11 @@ msgstr "" "Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data." -#: libraries/messages.inc.php:918 +#: libraries/messages.inc.php:914 msgid "Total size of buffer pool, in pages." msgstr "Kogu puhvris suurus, lehtedes." -#: libraries/messages.inc.php:919 +#: libraries/messages.inc.php:915 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -5467,7 +5467,7 @@ msgstr "" "Mitu InnoDB juhuslikku(random) ette-lugemisi on töös. See juhtub kui päring " "on skaneerida suur osa tabelist kuid juhuslikus järjekorras." -#: libraries/messages.inc.php:920 +#: libraries/messages.inc.php:916 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -5475,11 +5475,11 @@ msgstr "" "Mitu InnoDB järjestikku ette-lugemisi on töös. See juhtub kui InnoDB teeb " "järjestikulist kogu tabeli skaneerimist." -#: libraries/messages.inc.php:921 +#: libraries/messages.inc.php:917 msgid "The number of logical read requests InnoDB has done." msgstr "Mitu loogilist lugemist InnoDB on teinud." -#: libraries/messages.inc.php:922 +#: libraries/messages.inc.php:918 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -5487,7 +5487,7 @@ msgstr "" "Mitu loogilist lugemist InnoDB polnud võimalik puhvris poolt rahuldada ja " "tegi üksiku lehe lugemise." -#: libraries/messages.inc.php:923 +#: libraries/messages.inc.php:919 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -5500,55 +5500,55 @@ msgstr "" "enne ühtlustatud. See This loendur loeb kõiki neid ootamisi. Kui puhvri " "suurus on seatud korralikult, se number peaks olema väike." -#: libraries/messages.inc.php:924 +#: libraries/messages.inc.php:920 msgid "The number writes done to the InnoDB buffer pool." msgstr "Mitu korda kirjutas InnoDB puhvrisse." -#: libraries/messages.inc.php:925 +#: libraries/messages.inc.php:921 msgid "The number of fsync() operations so far." msgstr "Mitu fsync() operatsiooni siiani." -#: libraries/messages.inc.php:926 +#: libraries/messages.inc.php:922 msgid "The current number of pending fsync() operations." msgstr "Mitu hetkel ootel fsync() operatsiooni." -#: libraries/messages.inc.php:927 +#: libraries/messages.inc.php:923 msgid "The current number of pending reads." msgstr "Mitu ootel lugemist." -#: libraries/messages.inc.php:928 +#: libraries/messages.inc.php:924 msgid "The current number of pending writes." msgstr "Mitu ootel kirjutamist." -#: libraries/messages.inc.php:929 +#: libraries/messages.inc.php:925 msgid "The amount of data read so far, in bytes." msgstr "Suurus kui palju andmeid on loetud siiani, baitides." -#: libraries/messages.inc.php:930 +#: libraries/messages.inc.php:926 msgid "The total number of data reads." msgstr "Mitu korda loetud." -#: libraries/messages.inc.php:931 +#: libraries/messages.inc.php:927 msgid "The total number of data writes." msgstr "Mitu korda andmeid kirjutati." -#: libraries/messages.inc.php:932 +#: libraries/messages.inc.php:928 msgid "The amount of data written so far, in bytes." msgstr "Suurus palju andmeid on kirjutatud, baitides." -#: libraries/messages.inc.php:933 +#: libraries/messages.inc.php:929 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Mitu korda tehti topeltkirjutamist ja mitu lehte on kirjutatud just sellel " "põhjusel." -#: libraries/messages.inc.php:934 +#: libraries/messages.inc.php:930 msgid "The number of doublewrite operations that have been performed." msgstr "" "Mitu korda tehti topeltkirjutamise kirjutamist ja mitu lehte on kirjutatud " "just sellel põhjusel." -#: libraries/messages.inc.php:935 +#: libraries/messages.inc.php:931 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -5556,35 +5556,35 @@ msgstr "" "Mitu ootamist on olnud sellepärast et logi puhver oli liiga väike ja pidi " "ootama enne ühtlustamist et jätkata." -#: libraries/messages.inc.php:936 +#: libraries/messages.inc.php:932 msgid "The number of log write requests." msgstr "Mitu logi kirjutamise soovi." -#: libraries/messages.inc.php:937 +#: libraries/messages.inc.php:933 msgid "The number of physical writes to the log file." msgstr "Mitu füüsilist kirjutamist logi faili." -#: libraries/messages.inc.php:938 +#: libraries/messages.inc.php:934 msgid "The number of fsync() writes done to the log file." msgstr "Mitu fsyncs kirjutamist tehtud logi faili." -#: libraries/messages.inc.php:939 +#: libraries/messages.inc.php:935 msgid "The number of pending log file fsyncs." msgstr "Mitu ootel logi faili fsyncs." -#: libraries/messages.inc.php:940 +#: libraries/messages.inc.php:936 msgid "Pending log file writes." msgstr "ootel logifaili kirjutamisi." -#: libraries/messages.inc.php:941 +#: libraries/messages.inc.php:937 msgid "The number of bytes written to the log file." msgstr "Mitu baiti on kirjutatud logi faili." -#: libraries/messages.inc.php:942 +#: libraries/messages.inc.php:938 msgid "The number of pages created." msgstr "Lehti loodud." -#: libraries/messages.inc.php:943 +#: libraries/messages.inc.php:939 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -5592,51 +5592,51 @@ msgstr "" "Sisse-kompileeritud InnoDB lehe suurus (vaikimisi 16KB). Paljud väärtused on " "loetud lehtedes; lehe suurus lubab neid lihtsalt arvutada baitidesse." -#: libraries/messages.inc.php:944 +#: libraries/messages.inc.php:940 msgid "The number of pages read." msgstr "Lehti loetud." -#: libraries/messages.inc.php:945 +#: libraries/messages.inc.php:941 msgid "The number of pages written." msgstr "Lehti kirjutatud." -#: libraries/messages.inc.php:946 +#: libraries/messages.inc.php:942 msgid "The number of row locks currently being waited for." msgstr "Mitu rea lukustamist on hetkel ootel." -#: libraries/messages.inc.php:947 +#: libraries/messages.inc.php:943 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Keskimne aeg pärides rea lukustust, millisekundites." -#: libraries/messages.inc.php:948 +#: libraries/messages.inc.php:944 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Aeg mis on raisatud pärides rea lukustust, millisekundites." -#: libraries/messages.inc.php:949 +#: libraries/messages.inc.php:945 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Maksimaalne aeg pärides rea lukustust, millisekundites." -#: libraries/messages.inc.php:950 +#: libraries/messages.inc.php:946 msgid "The number of times a row lock had to be waited for." msgstr "Mitu korda pidi rea lukustus ootama." -#: libraries/messages.inc.php:951 +#: libraries/messages.inc.php:947 msgid "The number of rows deleted from InnoDB tables." msgstr "Mitu rida kustutatud InnoDB tabelitest." -#: libraries/messages.inc.php:952 +#: libraries/messages.inc.php:948 msgid "The number of rows inserted in InnoDB tables." msgstr "Mitu rida lisati InnoDB tabelitesse." -#: libraries/messages.inc.php:953 +#: libraries/messages.inc.php:949 msgid "The number of rows read from InnoDB tables." msgstr "Mitu rida loetud InnoDB tabelitest." -#: libraries/messages.inc.php:954 +#: libraries/messages.inc.php:950 msgid "The number of rows updated in InnoDB tables." msgstr "Mitu rida uuendati InnoDB tabelites." -#: libraries/messages.inc.php:955 +#: libraries/messages.inc.php:951 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -5644,7 +5644,7 @@ msgstr "" "Mitu võtme plokki on võtme vahemälus muutunud kui pole veel kettale " "kirjutatud. Tuntud nagu Not_flushed_key_blocks." -#: libraries/messages.inc.php:956 +#: libraries/messages.inc.php:952 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -5652,7 +5652,7 @@ msgstr "" "Mitu kasutamatta võtme plokki on võtme vahemälus. Sa saad kasutatda seda " "väärtust et teada saada kui palju võtme vahemälust on kasutuses." -#: libraries/messages.inc.php:957 +#: libraries/messages.inc.php:953 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -5661,11 +5661,11 @@ msgstr "" "Mitu kasutatud plokki on võtme vahemälus. See väärtus näitab maksimaalse " "plokkide arvu mis on kunagi olnud kasutuses." -#: libraries/messages.inc.php:958 +#: libraries/messages.inc.php:954 msgid "The number of requests to read a key block from the cache." msgstr "Mitu päringut et lugeda võtme plokk vahemälust." -#: libraries/messages.inc.php:959 +#: libraries/messages.inc.php:955 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -5675,15 +5675,15 @@ msgstr "" "siis sinu key_buffer_size näitaja on kindlasti väike. Vahemälus möödaminek " "on võimalik arvutada nii Key_reads/Key_read_requests." -#: libraries/messages.inc.php:960 +#: libraries/messages.inc.php:956 msgid "The number of requests to write a key block to the cache." msgstr "Mitu päringut et kirjutada võtme plokk vahemällu." -#: libraries/messages.inc.php:961 +#: libraries/messages.inc.php:957 msgid "The number of physical writes of a key block to disk." msgstr "Mitu füüsilist kirjutamist kirjutada võtme plokk kettale." -#: libraries/messages.inc.php:962 +#: libraries/messages.inc.php:958 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -5693,11 +5693,11 @@ msgstr "" "Kasulik võrdlemaks erinevaid päringu plaane ühelt ja samalt päringult. " "Vaikimisi väärtus 0 tähendab et päring pole veel töödeldud." -#: libraries/messages.inc.php:963 +#: libraries/messages.inc.php:959 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Mitu rida on ootel INSERT DELAYED päringutes." -#: libraries/messages.inc.php:964 +#: libraries/messages.inc.php:960 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -5705,35 +5705,35 @@ msgstr "" "Mitu tabelit on avatud. Avatud tabeleid on palju siis sinu tabeli vahemälus " "kindlasti liiga väike." -#: libraries/messages.inc.php:965 +#: libraries/messages.inc.php:961 msgid "The number of files that are open." msgstr "Mitu faili on avatud." -#: libraries/messages.inc.php:966 +#: libraries/messages.inc.php:962 msgid "The number of streams that are open (used mainly for logging)." msgstr "Mitu voogu on hetkel avatud (enamasti logimiseks)." -#: libraries/messages.inc.php:967 +#: libraries/messages.inc.php:963 msgid "The number of tables that are open." msgstr "Mitu tabelit on hetkel avatud." -#: libraries/messages.inc.php:968 +#: libraries/messages.inc.php:964 msgid "The number of free memory blocks in query cache." msgstr "Vabad mälu plokid päringute vahemälus." -#: libraries/messages.inc.php:969 +#: libraries/messages.inc.php:965 msgid "The amount of free memory for query cache." msgstr "Vaba mälu päringute vahemälus." -#: libraries/messages.inc.php:970 +#: libraries/messages.inc.php:966 msgid "The number of cache hits." msgstr "Leitud Puhvrist." -#: libraries/messages.inc.php:971 +#: libraries/messages.inc.php:967 msgid "The number of queries added to the cache." msgstr "Mitu päringut on lisatud vahemällu." -#: libraries/messages.inc.php:972 +#: libraries/messages.inc.php:968 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -5745,7 +5745,7 @@ msgstr "" "vahemälu kasutab viimati kasutatud strateegiat(LRU) et otsustada millised " "päringud eemaldada puhvrist." -#: libraries/messages.inc.php:973 +#: libraries/messages.inc.php:969 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -5753,26 +5753,26 @@ msgstr "" "Mitu mitte-puhverdatud päringut (pole salvestatud vahemällu, või sõltuvalt " "query_cache_type sätetest mitte puhverdatud)." -#: libraries/messages.inc.php:974 +#: libraries/messages.inc.php:970 msgid "The number of queries registered in the cache." msgstr "Mitu päringut on registreeritud vahemälus." -#: libraries/messages.inc.php:975 +#: libraries/messages.inc.php:971 msgid "The total number of blocks in the query cache." msgstr "Plokkide koguarv päringute vahemälus." -#: libraries/messages.inc.php:976 +#: libraries/messages.inc.php:972 msgctxt "$strShowStatusReset" msgid "Reset" msgstr "Nulli" -#: libraries/messages.inc.php:977 +#: libraries/messages.inc.php:973 msgid "The status of failsafe replication (not yet implemented)." msgstr "" "See staatus on tõrkekindel tiraþeerimine (failsafe replication) (pole veel " "kasutuses)." -#: libraries/messages.inc.php:978 +#: libraries/messages.inc.php:974 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -5780,11 +5780,11 @@ msgstr "" "Liited(joins) mis ei kasuta indekseid. Kui see näitaja on 0, peaksid " "ettevaatlikult kontrollima oma tabelites indekseid." -#: libraries/messages.inc.php:979 +#: libraries/messages.inc.php:975 msgid "The number of joins that used a range search on a reference table." msgstr "Liidete arv mida kasutati piirkonna otsimisel eelistatud tabelist." -#: libraries/messages.inc.php:980 +#: libraries/messages.inc.php:976 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -5793,7 +5793,7 @@ msgstr "" "kasutamist. (Kui see pole 0 siis peaksid ettevaatlikult kontrollima oma " "tabelite indekseid.)" -#: libraries/messages.inc.php:981 +#: libraries/messages.inc.php:977 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -5801,17 +5801,17 @@ msgstr "" "Liidete arv mida kasutati esimese tabeli piirides. (Pole eriti kriitiline " "kui see on väga suur.)" -#: libraries/messages.inc.php:982 +#: libraries/messages.inc.php:978 msgid "The number of joins that did a full scan of the first table." msgstr "Liidete arv mis tegid täielikku skaneerimist esimesest tabelist." -#: libraries/messages.inc.php:983 +#: libraries/messages.inc.php:979 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "Ajutiste tabelite arv mis on hetkel avatud alam-lõimu(replication slave) " "poolt." -#: libraries/messages.inc.php:984 +#: libraries/messages.inc.php:980 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -5819,23 +5819,23 @@ msgstr "" "Kogusumma (alates käivitamisest) mitu korda tiraþeerimise(replication) SQL " "alam-lõim(replication slave) proovis ülekandeid." -#: libraries/messages.inc.php:985 +#: libraries/messages.inc.php:981 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Kui see on ON kui serveril on alam server(masin) mis on ühenduses masteriga." -#: libraries/messages.inc.php:986 +#: libraries/messages.inc.php:982 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "Lõimude arv mis võtsid rohkem aega käivitamiseks kui slow_launch_time." -#: libraries/messages.inc.php:987 +#: libraries/messages.inc.php:983 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "Päringute arv mis võtsid rohkem aega kui long_query_time sekundites." -#: libraries/messages.inc.php:988 +#: libraries/messages.inc.php:984 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -5844,23 +5844,23 @@ msgstr "" "Edukate ühinemiste(merge) arv millega lühike algoritm on tegelenud. Kui see " "väärtuse on suur, sa peaksid mõtlema sort_buffer_size väärtuse suurendamist." -#: libraries/messages.inc.php:989 +#: libraries/messages.inc.php:985 msgid "The number of sorts that were done with ranges." msgstr "Sorteerimiste arv mis on tehtud piirkonna ulatuses." -#: libraries/messages.inc.php:990 +#: libraries/messages.inc.php:986 msgid "The number of sorted rows." msgstr "Sorteritud ridade arv." -#: libraries/messages.inc.php:991 +#: libraries/messages.inc.php:987 msgid "The number of sorts that were done by scanning the table." msgstr "Sorteerimiste arv mis on tehtud tabeli skaneerimist kasutades." -#: libraries/messages.inc.php:992 +#: libraries/messages.inc.php:988 msgid "The number of times that a table lock was acquired immediately." msgstr "Mitu korda tabeli lukustus jõustus koheselt." -#: libraries/messages.inc.php:993 +#: libraries/messages.inc.php:989 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -5871,7 +5871,7 @@ msgstr "" "suur ja jõudlusega on probleeme, sa peaksid optimiseerima oma päringuid või " "poolitama oma tabelid või kasutama tiraþeerimist(replication)." -#: libraries/messages.inc.php:994 +#: libraries/messages.inc.php:990 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -5881,11 +5881,11 @@ msgstr "" "nii Threads_created/Connections. Kui see on punane paksid suurendama " "thread_cache_size suurust." -#: libraries/messages.inc.php:995 +#: libraries/messages.inc.php:991 msgid "The number of currently open connections." msgstr "Hetkel avatud ühendusi." -#: libraries/messages.inc.php:996 +#: libraries/messages.inc.php:992 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -5896,74 +5896,74 @@ msgstr "" "siis suurenda thread_cache_size väärtust. (Tavaliselt see ei anna märgatavat " "kiiruse tõusu kui Lõimude teostus on korralik.)" -#: libraries/messages.inc.php:997 +#: libraries/messages.inc.php:993 msgid "The number of threads that are not sleeping." msgstr "Lõimude arv mis mis hetkel ei maga." -#: libraries/messages.inc.php:999 tbl_printview.php:75 +#: libraries/messages.inc.php:995 tbl_printview.php:75 msgid "Show tables" msgstr "Näita tabeleid" -#: libraries/messages.inc.php:1000 libraries/sql_query_form.lib.php:396 +#: libraries/messages.inc.php:996 libraries/sql_query_form.lib.php:396 msgid " Show this query here again " msgstr " Näita päringut siin uuesti " -#: libraries/messages.inc.php:1001 libraries/mysql_charsets.lib.php:217 +#: libraries/messages.inc.php:997 libraries/mysql_charsets.lib.php:217 #: libraries/mysql_charsets.lib.php:342 msgid "Simplified Chinese" msgstr "Lihtsustatud Hiina" -#: libraries/messages.inc.php:1002 tbl_operations.php:258 +#: libraries/messages.inc.php:998 tbl_operations.php:258 msgid "(singly)" msgstr "(üksikult)" -#: libraries/messages.inc.php:1005 libraries/replication_gui.lib.php:52 +#: libraries/messages.inc.php:1001 libraries/replication_gui.lib.php:52 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" msgstr "" -#: libraries/messages.inc.php:1006 libraries/mysql_charsets.lib.php:283 +#: libraries/messages.inc.php:1002 libraries/mysql_charsets.lib.php:283 msgid "Slovak" msgstr "Slovaki" -#: libraries/messages.inc.php:1007 libraries/mysql_charsets.lib.php:286 +#: libraries/messages.inc.php:1003 libraries/mysql_charsets.lib.php:286 msgid "Slovenian" msgstr "Sloveenia" -#: libraries/messages.inc.php:1008 pmd_general.php:95 +#: libraries/messages.inc.php:1004 pmd_general.php:95 msgid "Small/Big All" msgstr "Kõik Väikeseks/Suureks" -#: libraries/messages.inc.php:1009 pmd_general.php:91 +#: libraries/messages.inc.php:1005 pmd_general.php:91 msgid "Snap to grid" msgstr "" -#: libraries/messages.inc.php:1011 server_synchronize.php:1167 +#: libraries/messages.inc.php:1007 server_synchronize.php:1167 msgid "Socket" msgstr "" -#: libraries/messages.inc.php:1013 server_status.php:259 +#: libraries/messages.inc.php:1009 server_status.php:259 msgid "Sorting" msgstr "Järjestamine" -#: libraries/messages.inc.php:1015 tbl_printview.php:310 tbl_structure.php:657 +#: libraries/messages.inc.php:1011 tbl_printview.php:310 tbl_structure.php:657 msgid "Space usage" msgstr "Ruumivõtt" -#: libraries/messages.inc.php:1016 libraries/mysql_charsets.lib.php:289 +#: libraries/messages.inc.php:1012 libraries/mysql_charsets.lib.php:289 msgid "Spanish" msgstr "Hispaania" -#: libraries/messages.inc.php:1019 +#: libraries/messages.inc.php:1015 msgid "Export type" msgstr "Ekspordi tüüp" -#: libraries/messages.inc.php:1020 +#: libraries/messages.inc.php:1016 msgid "Export time in UTC" msgstr "" -#: libraries/messages.inc.php:1021 libraries/sqlparser.lib.php:173 +#: libraries/messages.inc.php:1017 libraries/sqlparser.lib.php:173 msgid "" "There is a chance that you may have found a bug in the SQL parser. Please " "examine your query closely, and check that the quotes are correct and not " @@ -5986,7 +5986,7 @@ msgstr "" "mis põhjustab probleeme ja sisestage vea raport koos viga põhjustanud " "päringuga LÕIGET sektsioonis allpool:" -#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:137 +#: libraries/messages.inc.php:1018 libraries/sqlparser.lib.php:137 msgid "" "There seems to be an error in your SQL query. The MySQL server error output " "below, if there is any, may also help you in diagnosing the problem" @@ -5994,33 +5994,33 @@ msgstr "" "Tundub, et teie SQL päringus on viga. MySQLi serveri error peaks ilmuma " "allpool, kui seal on midagi, siis peaks see teil aitama leia vea põhjust." -#: libraries/messages.inc.php:1026 libraries/sqlparser.lib.php:495 +#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:495 msgid "Invalid Identifer" msgstr "Vigane identifikaator" -#: libraries/messages.inc.php:1027 libraries/sqlparser.lib.php:344 +#: libraries/messages.inc.php:1023 libraries/sqlparser.lib.php:344 msgid "Unclosed quote" msgstr "Sulgemata jutumärk/ülakoma" -#: libraries/messages.inc.php:1028 libraries/sqlparser.lib.php:612 +#: libraries/messages.inc.php:1024 libraries/sqlparser.lib.php:612 msgid "Unknown Punctuation String" msgstr "Tundmatu suunav tekst" -#: libraries/messages.inc.php:1030 server_replication.php:327 +#: libraries/messages.inc.php:1026 server_replication.php:327 #: server_replication.php:328 #, fuzzy msgid "Start" msgstr "Lau" -#: libraries/messages.inc.php:1033 tbl_printview.php:369 tbl_structure.php:729 +#: libraries/messages.inc.php:1029 tbl_printview.php:369 tbl_structure.php:729 msgid "Statements" msgstr "Parameerid" -#: libraries/messages.inc.php:1034 tbl_printview.php:380 tbl_structure.php:741 +#: libraries/messages.inc.php:1030 tbl_printview.php:380 tbl_structure.php:741 msgid "static" msgstr "" -#: libraries/messages.inc.php:1035 server_status.php:388 +#: libraries/messages.inc.php:1031 server_status.php:388 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -6028,203 +6028,203 @@ msgstr "" "Koormusega serveris, baitide lugeja võib lugeda vigadega (overrun), st. see " "statistika mida näitab MySQL server ei pruugi olla täpne." -#: libraries/messages.inc.php:1038 server_replication.php:327 +#: libraries/messages.inc.php:1034 server_replication.php:327 #: server_replication.php:328 msgid "Stop" msgstr "" -#: libraries/messages.inc.php:1039 server_engines.php:49 +#: libraries/messages.inc.php:1035 server_engines.php:49 msgid "Storage Engines" msgstr "Varundusmootorid" -#: libraries/messages.inc.php:1040 libraries/tbl_properties.inc.php:726 +#: libraries/messages.inc.php:1036 libraries/tbl_properties.inc.php:726 #: server_engines.php:58 tbl_operations.php:353 msgid "Storage Engine" msgstr "Varundusmootor" -#: libraries/messages.inc.php:1042 +#: libraries/messages.inc.php:1038 msgid "CSV for MS Excel" msgstr "CSV MS Exceli jaoks" -#: libraries/messages.inc.php:1044 tbl_structure.php:516 tbl_structure.php:518 +#: libraries/messages.inc.php:1040 tbl_structure.php:516 tbl_structure.php:518 msgid "Propose table structure" msgstr "Soovita tabeli struktuuri" -#: libraries/messages.inc.php:1045 server_synchronize.php:424 +#: libraries/messages.inc.php:1041 server_synchronize.php:424 #: server_synchronize.php:867 #, fuzzy msgid "Structure Difference" msgstr "Vaate (view) struktuur" -#: libraries/messages.inc.php:1049 server_synchronize.php:265 +#: libraries/messages.inc.php:1045 server_synchronize.php:265 msgid "Structure Synchronization" msgstr "" -#: libraries/messages.inc.php:1050 libraries/sql_query_form.lib.php:462 +#: libraries/messages.inc.php:1046 libraries/sql_query_form.lib.php:462 msgid "Submit" msgstr "Vali" -#: libraries/messages.inc.php:1052 main.php:358 +#: libraries/messages.inc.php:1048 main.php:358 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " "issues." msgstr "" -#: libraries/messages.inc.php:1054 libraries/mysql_charsets.lib.php:295 +#: libraries/messages.inc.php:1050 libraries/mysql_charsets.lib.php:295 #: libraries/mysql_charsets.lib.php:392 msgid "Swedish" msgstr "Rootsi" -#: libraries/messages.inc.php:1060 tbl_operations.php:556 +#: libraries/messages.inc.php:1056 tbl_operations.php:556 msgid "Switch to copied table" msgstr "Mine üle kopeeritud tabelile" -#: libraries/messages.inc.php:1061 server_synchronize.php:1213 +#: libraries/messages.inc.php:1057 server_synchronize.php:1213 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." msgstr "" -#: libraries/messages.inc.php:1062 server_synchronize.php:451 +#: libraries/messages.inc.php:1058 server_synchronize.php:451 #: server_synchronize.php:896 msgid "Synchronize Databases" msgstr "" -#: libraries/messages.inc.php:1063 libraries/server_links.inc.php:92 +#: libraries/messages.inc.php:1059 libraries/server_links.inc.php:92 #: server_synchronize.php:1092 server_synchronize.php:1100 msgid "Synchronize" msgstr "" -#: libraries/messages.inc.php:1065 server_synchronize.php:430 +#: libraries/messages.inc.php:1061 server_synchronize.php:430 #: server_synchronize.php:873 msgid "Add column(s)" msgstr "" -#: libraries/messages.inc.php:1066 tbl_create.php:62 +#: libraries/messages.inc.php:1062 tbl_create.php:62 #, php-format msgid "Table %s already exists!" msgstr "tabel %s on juba olemas!" -#: libraries/messages.inc.php:1067 server_synchronize.php:432 +#: libraries/messages.inc.php:1063 server_synchronize.php:432 #: server_synchronize.php:875 msgid "Alter column(s)" msgstr "" -#: libraries/messages.inc.php:1068 tbl_addfield.php:189 tbl_alter.php:103 +#: libraries/messages.inc.php:1064 tbl_addfield.php:189 tbl_alter.php:103 #: tbl_indexes.php:98 #, fuzzy, php-format msgid "Table %1$s has been altered successfully" msgstr "Valitud kasutajad on õnnestunult kustutatud." -#: libraries/messages.inc.php:1069 server_synchronize.php:434 +#: libraries/messages.inc.php:1065 server_synchronize.php:434 #: server_synchronize.php:877 msgid "Apply index(s)" msgstr "" -#: libraries/messages.inc.php:1071 server_synchronize.php:446 +#: libraries/messages.inc.php:1067 server_synchronize.php:446 #: server_synchronize.php:890 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: libraries/messages.inc.php:1072 tbl_move_copy.php:82 +#: libraries/messages.inc.php:1068 tbl_move_copy.php:82 msgid "The table name is empty!" msgstr "Tabeli nimi on tühi!" -#: libraries/messages.inc.php:1073 tbl_create.php:249 +#: libraries/messages.inc.php:1069 tbl_create.php:249 #, fuzzy, php-format msgid "Table %1$s has been created." msgstr "Tabel %s kustutatud" -#: libraries/messages.inc.php:1076 tbl_operations.php:628 +#: libraries/messages.inc.php:1072 tbl_operations.php:628 #, php-format msgid "Table %s has been flushed" msgstr "Tabel %s ühtlustatud" -#: libraries/messages.inc.php:1077 server_synchronize.php:436 +#: libraries/messages.inc.php:1073 server_synchronize.php:436 #: server_synchronize.php:879 msgid "Insert row(s)" msgstr "" -#: libraries/messages.inc.php:1078 libraries/tbl_links.inc.php:107 +#: libraries/messages.inc.php:1074 libraries/tbl_links.inc.php:107 #: libraries/tbl_links.inc.php:140 libraries/tbl_links.inc.php:141 msgid "Table seems to be empty!" msgstr "Tabel tundub olevat tühi!" -#: libraries/messages.inc.php:1079 tbl_operations.php:568 +#: libraries/messages.inc.php:1075 tbl_operations.php:568 msgid "Table maintenance" msgstr "Tabeli hooldus" -#: libraries/messages.inc.php:1080 libraries/tbl_properties.inc.php:618 +#: libraries/messages.inc.php:1076 libraries/tbl_properties.inc.php:618 #: server_synchronize.php:428 server_synchronize.php:871 msgid "Table name" msgstr "Tabeli nimi" -#: libraries/messages.inc.php:1081 pdf_schema.php:1116 +#: libraries/messages.inc.php:1077 pdf_schema.php:1116 msgid "Table of contents" msgstr "Sisukord" -#: libraries/messages.inc.php:1082 tbl_operations.php:334 +#: libraries/messages.inc.php:1078 tbl_operations.php:334 msgid "Table options" msgstr "Tabeli seaded" -#: libraries/messages.inc.php:1083 server_synchronize.php:431 +#: libraries/messages.inc.php:1079 server_synchronize.php:431 #: server_synchronize.php:874 msgid "Remove column(s)" msgstr "" -#: libraries/messages.inc.php:1084 server_synchronize.php:433 +#: libraries/messages.inc.php:1080 server_synchronize.php:433 #: server_synchronize.php:876 msgid "Remove index(s)" msgstr "" -#: libraries/messages.inc.php:1088 server_synchronize.php:435 +#: libraries/messages.inc.php:1084 server_synchronize.php:435 #: server_synchronize.php:878 msgid "Update row(s)" msgstr "" -#: libraries/messages.inc.php:1090 server_synchronize.php:942 +#: libraries/messages.inc.php:1086 server_synchronize.php:942 msgid "Target database has been synchronized with source database" msgstr "" -#: libraries/messages.inc.php:1091 server_privileges.php:392 +#: libraries/messages.inc.php:1087 server_privileges.php:392 #: server_privileges.php:527 server_privileges.php:1679 #: server_privileges.php:1685 msgid "Table-specific privileges" msgstr "Tabel-spetsiifilised privileegid" -#: libraries/messages.inc.php:1092 server_status.php:254 +#: libraries/messages.inc.php:1088 server_status.php:254 msgid "Temporary data" msgstr "Ajutised andmed " -#: libraries/messages.inc.php:1093 tbl_change.php:728 +#: libraries/messages.inc.php:1089 tbl_change.php:728 msgid " Because of its length,
this field might not be editable " msgstr " Oma suuruse tõttu
võib see väli olla mittemuudetav " -#: libraries/messages.inc.php:1094 +#: libraries/messages.inc.php:1090 msgid "Texy! text" msgstr "" -#: libraries/messages.inc.php:1095 libraries/mysql_charsets.lib.php:298 +#: libraries/messages.inc.php:1091 libraries/mysql_charsets.lib.php:298 #: libraries/mysql_charsets.lib.php:395 msgid "Thai" msgstr "Tai" -#: libraries/messages.inc.php:1102 libraries/replication_gui.lib.php:308 +#: libraries/messages.inc.php:1098 libraries/replication_gui.lib.php:308 #: server_privileges.php:734 msgid "This Host" msgstr "Antud host" -#: libraries/messages.inc.php:1103 server_status.php:252 +#: libraries/messages.inc.php:1099 server_status.php:252 msgid "Threads" msgstr "Lõimud" -#: libraries/messages.inc.php:1104 server_processlist.php:22 +#: libraries/messages.inc.php:1100 server_processlist.php:22 #, php-format msgid "Thread %s was successfully killed." msgstr "Protsess %s katkestati edukalt." -#: libraries/messages.inc.php:1106 +#: libraries/messages.inc.php:1102 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -6233,185 +6233,185 @@ msgstr "" "phpMyAdmin pole võimeline Importi lõpetama, kui sa php skripti aega ei " "pikenda." -#: libraries/messages.inc.php:1109 pmd_pdf.php:94 +#: libraries/messages.inc.php:1105 pmd_pdf.php:94 msgid "to/from page" msgstr "Kuhu/Kust leht" -#: libraries/messages.inc.php:1110 pdf_pages.php:343 +#: libraries/messages.inc.php:1106 pdf_pages.php:343 msgid "Toggle scratchboard" msgstr "vaheta märkmetahvlit" -#: libraries/messages.inc.php:1111 pmd_general.php:99 +#: libraries/messages.inc.php:1107 pmd_general.php:99 msgid "Toggle small/big" msgstr "" -#: libraries/messages.inc.php:1112 pmd_help.php:27 +#: libraries/messages.inc.php:1108 pmd_help.php:27 msgid "To select relation, click :" msgstr "Et valida suhe, kliki :" -#: libraries/messages.inc.php:1115 libraries/tbl_links.inc.php:149 +#: libraries/messages.inc.php:1111 libraries/tbl_links.inc.php:149 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" -#: libraries/messages.inc.php:1116 tbl_tracking.php:655 +#: libraries/messages.inc.php:1112 tbl_tracking.php:655 msgid "Activate now" msgstr "" -#: libraries/messages.inc.php:1117 tbl_tracking.php:653 +#: libraries/messages.inc.php:1113 tbl_tracking.php:653 #, php-format msgid "Activate tracking for %s.%s" msgstr "" -#: libraries/messages.inc.php:1118 tbl_tracking.php:221 +#: libraries/messages.inc.php:1114 tbl_tracking.php:221 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/messages.inc.php:1119 tbl_tracking.php:688 +#: libraries/messages.inc.php:1115 tbl_tracking.php:688 #, fuzzy msgid "Create version" msgstr "Suhte loomine (relation)" -#: libraries/messages.inc.php:1120 tbl_tracking.php:668 +#: libraries/messages.inc.php:1116 tbl_tracking.php:668 #, php-format msgid "Create version %s of %s.%s" msgstr "" -#: libraries/messages.inc.php:1122 tbl_tracking.php:412 +#: libraries/messages.inc.php:1118 tbl_tracking.php:412 msgid "Data definition statement" msgstr "" -#: libraries/messages.inc.php:1123 tbl_tracking.php:463 +#: libraries/messages.inc.php:1119 tbl_tracking.php:463 msgid "Data manipulation statement" msgstr "" -#: libraries/messages.inc.php:1124 tbl_tracking.php:410 tbl_tracking.php:461 +#: libraries/messages.inc.php:1120 tbl_tracking.php:410 tbl_tracking.php:461 #, fuzzy msgid "Date" msgstr "Andmed" -#: libraries/messages.inc.php:1125 tbl_tracking.php:642 +#: libraries/messages.inc.php:1121 tbl_tracking.php:642 msgid "Deactivate now" msgstr "" -#: libraries/messages.inc.php:1126 tbl_tracking.php:640 +#: libraries/messages.inc.php:1122 tbl_tracking.php:640 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "" -#: libraries/messages.inc.php:1127 tbl_tracking.php:521 +#: libraries/messages.inc.php:1123 tbl_tracking.php:521 #, fuzzy, php-format msgid "Export as %s" msgstr "Ekspordi tüüp" -#: libraries/messages.inc.php:1130 tbl_tracking.php:251 tbl_tracking.php:379 +#: libraries/messages.inc.php:1126 tbl_tracking.php:251 tbl_tracking.php:379 msgid "Close" msgstr "" -#: libraries/messages.inc.php:1131 tbl_tracking.php:114 +#: libraries/messages.inc.php:1127 tbl_tracking.php:114 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/messages.inc.php:1133 tbl_tracking.php:397 tbl_tracking.php:504 +#: libraries/messages.inc.php:1129 tbl_tracking.php:397 tbl_tracking.php:504 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "" -#: libraries/messages.inc.php:1134 tbl_tracking.php:561 +#: libraries/messages.inc.php:1130 tbl_tracking.php:561 msgid "Show versions" msgstr "" -#: libraries/messages.inc.php:1135 tbl_tracking.php:507 +#: libraries/messages.inc.php:1131 tbl_tracking.php:507 msgid "SQL dump (file download)" msgstr "" -#: libraries/messages.inc.php:1136 tbl_tracking.php:508 +#: libraries/messages.inc.php:1132 tbl_tracking.php:508 msgid "SQL dump" msgstr "" -#: libraries/messages.inc.php:1137 tbl_tracking.php:213 +#: libraries/messages.inc.php:1133 tbl_tracking.php:213 msgid "SQL statements executed." msgstr "" -#: libraries/messages.inc.php:1138 +#: libraries/messages.inc.php:1134 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/messages.inc.php:1139 tbl_tracking.php:509 +#: libraries/messages.inc.php:1135 tbl_tracking.php:509 msgid "SQL execution" msgstr "" -#: libraries/messages.inc.php:1140 tbl_tracking.php:230 +#: libraries/messages.inc.php:1136 tbl_tracking.php:230 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/messages.inc.php:1141 tbl_tracking.php:381 +#: libraries/messages.inc.php:1137 tbl_tracking.php:381 msgid "Tracking statements" msgstr "" -#: libraries/messages.inc.php:1148 tbl_tracking.php:593 +#: libraries/messages.inc.php:1144 tbl_tracking.php:593 #, fuzzy msgid "Version" msgstr "Pärsia" -#: libraries/messages.inc.php:1149 tbl_tracking.php:672 +#: libraries/messages.inc.php:1145 tbl_tracking.php:672 msgid "Track these data definition statements:" msgstr "" -#: libraries/messages.inc.php:1150 tbl_tracking.php:680 +#: libraries/messages.inc.php:1146 tbl_tracking.php:680 msgid "Track these data manipulation statements:" msgstr "" -#: libraries/messages.inc.php:1155 tbl_tracking.php:411 tbl_tracking.php:462 +#: libraries/messages.inc.php:1151 tbl_tracking.php:411 tbl_tracking.php:462 #, fuzzy msgid "Username" msgstr "Kasutajanimi:" -#: libraries/messages.inc.php:1156 tbl_tracking.php:203 +#: libraries/messages.inc.php:1152 tbl_tracking.php:203 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "" -#: libraries/messages.inc.php:1157 tbl_tracking.php:187 +#: libraries/messages.inc.php:1153 tbl_tracking.php:187 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "" -#: libraries/messages.inc.php:1158 tbl_tracking.php:195 +#: libraries/messages.inc.php:1154 tbl_tracking.php:195 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "" -#: libraries/messages.inc.php:1159 tbl_tracking.php:262 +#: libraries/messages.inc.php:1155 tbl_tracking.php:262 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/messages.inc.php:1161 tbl_tracking.php:220 +#: libraries/messages.inc.php:1157 tbl_tracking.php:220 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/messages.inc.php:1162 libraries/mysql_charsets.lib.php:219 +#: libraries/messages.inc.php:1158 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:362 msgid "Traditional Chinese" msgstr "Traditsionaalne Hiina" -#: libraries/messages.inc.php:1163 libraries/mysql_charsets.lib.php:292 +#: libraries/messages.inc.php:1159 libraries/mysql_charsets.lib.php:292 msgid "Traditional Spanish" msgstr "Traditsionaalne Hispaania" -#: libraries/messages.inc.php:1164 server_status.php:388 +#: libraries/messages.inc.php:1160 server_status.php:388 msgid "Traffic" msgstr "Liiklus" -#: libraries/messages.inc.php:1165 server_status.php:261 +#: libraries/messages.inc.php:1161 server_status.php:261 msgid "Transaction coordinator" msgstr "Ülekande kordinaator" -#: libraries/messages.inc.php:1166 +#: libraries/messages.inc.php:1162 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 " @@ -6423,7 +6423,7 @@ msgstr "" "failinime. Kui te määrate teise seade siis peab esimene seade olema tühi " "tekst" -#: libraries/messages.inc.php:1167 +#: libraries/messages.inc.php:1163 msgid "" "Displays hexadecimal representation of data. Optional first parameter " "specifies how often space will be added (defaults to 2 nibbles)." @@ -6431,7 +6431,7 @@ msgstr "" "Kuvab andmed kuueteistkümnend süsteemis. Valikuline Esimene parameeter seab " "kui tihti ruumi tehakse (vaikimisi 2 näkkamist)." -#: libraries/messages.inc.php:1168 +#: libraries/messages.inc.php:1164 msgid "" "Displays a clickable thumbnail. The options are the maximum width and height " "in pixels. The original aspect ratio is preserved." @@ -6439,15 +6439,15 @@ msgstr "" "Kuvab lingitud väikepildi; seaded: laius,kõrgus pikslites (hoiab alles " "originaalpildi laiuse-kõrguse suhte)" -#: libraries/messages.inc.php:1169 +#: libraries/messages.inc.php:1165 msgid "Displays a link to download this image." msgstr "Kuvab lingi sellele pildile (otsene binaarne allalaadimine, jne.)." -#: libraries/messages.inc.php:1170 +#: libraries/messages.inc.php:1166 msgid "See image/jpeg: inline" msgstr "Vaata image/jpeg: inline" -#: libraries/messages.inc.php:1171 +#: libraries/messages.inc.php:1167 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 " @@ -6467,7 +6467,7 @@ msgstr "" "täpsustamiseks vaata dokumentatsiooni PHP strftime() funktsiooni kasutamise " "kohta ja kasutades \"utc\" vaata gmdate() funtsiooni kasutamist." -#: libraries/messages.inc.php:1172 +#: libraries/messages.inc.php:1168 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 " @@ -6491,13 +6491,13 @@ msgstr "" "1 pannakse NOWRAP sisu lahtrile nii, et kogu väljund kuvatakse ilma formaati " "muutmata(vaikimisi 1)" -#: libraries/messages.inc.php:1173 +#: libraries/messages.inc.php:1169 msgid "" "Displays the contents of the field as-is, without running it through " "htmlspecialchars(). That is, the field is assumed to contain valid HTML." msgstr "Hoiab alles originaalset välja formaati. Ei varjestata." -#: libraries/messages.inc.php:1174 +#: libraries/messages.inc.php:1170 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 " @@ -6507,7 +6507,7 @@ msgstr "" "nagu \"http://domain.com/\", teine seade on laius pikslites, kolmas on " "kõrgus." -#: libraries/messages.inc.php:1175 +#: libraries/messages.inc.php:1171 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 " @@ -6516,11 +6516,11 @@ msgstr "" "Kuvab lingi, väli sisaldab failinime; esimene seade on eelnev tekst näiteks " "\"http://domain.com/\", teine seade on nimi lingile." -#: libraries/messages.inc.php:1176 +#: libraries/messages.inc.php:1172 msgid "Formats text as SQL query with syntax highlighting." msgstr "Vormib SQL päringu tekstiks esile tõstetuna." -#: libraries/messages.inc.php:1177 +#: libraries/messages.inc.php:1173 msgid "" "Displays a part of a string. The first option is the number of characters to " "skip from the beginning of the string (Default 0). The second option is the " @@ -6534,69 +6534,69 @@ msgstr "" "Kolmas seade defineerib mis tekst lisatakse väljundi lõppu kui saadud tekst " "tagastatakse. (vaikimisi: ...) ." -#: libraries/messages.inc.php:1179 server_binlog.php:183 server_binlog.php:186 +#: libraries/messages.inc.php:1175 server_binlog.php:183 server_binlog.php:186 #: server_processlist.php:49 server_processlist.php:51 msgid "Truncate Shown Queries" msgstr "Lühenda näidatavad päringud" -#: libraries/messages.inc.php:1180 libraries/mysql_charsets.lib.php:301 +#: libraries/messages.inc.php:1176 libraries/mysql_charsets.lib.php:301 #: libraries/mysql_charsets.lib.php:389 msgid "Turkish" msgstr "Türgi" -#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:304 +#: libraries/messages.inc.php:1179 libraries/mysql_charsets.lib.php:304 #: libraries/mysql_charsets.lib.php:386 msgid "Ukrainian" msgstr "Ukraina" -#: libraries/messages.inc.php:1185 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:1181 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 msgid "Unicode" msgstr "Unikaalne" -#: libraries/messages.inc.php:1187 libraries/mysql_charsets.lib.php:398 +#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:398 #: libraries/mysql_charsets.lib.php:405 msgid "unknown" msgstr "tundmatu" -#: libraries/messages.inc.php:1190 server_privileges.php:1152 +#: libraries/messages.inc.php:1186 server_privileges.php:1152 #, php-format msgid "You have updated the privileges for %s." msgstr "Te uuendasite privileege %s-l." -#: libraries/messages.inc.php:1191 user_password.php:112 +#: libraries/messages.inc.php:1187 user_password.php:112 msgid "The profile has been updated." msgstr "Profiil uuendatud." -#: libraries/messages.inc.php:1193 libraries/relation.lib.php:138 +#: libraries/messages.inc.php:1189 libraries/relation.lib.php:138 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "Please see Documentation on how to update your Column_comments Table" -#: libraries/messages.inc.php:1194 +#: libraries/messages.inc.php:1190 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Te peaksite uuendama %s -i versioonini %s või uuemaks." -#: libraries/messages.inc.php:1204 tbl_printview.php:314 tbl_structure.php:661 +#: libraries/messages.inc.php:1200 tbl_printview.php:314 tbl_structure.php:661 msgid "Usage" msgstr "Kasutus" -#: libraries/messages.inc.php:1205 +#: libraries/messages.inc.php:1201 msgid "Enclose table and field names with backquotes" msgstr "Kasutage tagurpidi kaldkriipse tabelites või tabelinimedes" -#: libraries/messages.inc.php:1206 libraries/replication_gui.lib.php:314 +#: libraries/messages.inc.php:1202 libraries/replication_gui.lib.php:314 #: server_privileges.php:740 msgid "Use Host Table" msgstr "Kasuta host tabelit" -#: libraries/messages.inc.php:1207 server_privileges.php:848 +#: libraries/messages.inc.php:1203 server_privileges.php:848 #, php-format msgid "The user %s already exists!" msgstr "Kasutaja %s on juba olemas!" -#: libraries/messages.inc.php:1209 libraries/replication_gui.lib.php:55 +#: libraries/messages.inc.php:1205 libraries/replication_gui.lib.php:55 #: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245 #: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255 #: server_privileges.php:672 server_privileges.php:675 @@ -6604,37 +6604,37 @@ msgstr "Kasutaja %s on juba olemas!" msgid "User name" msgstr "Kasutajanimi" -#: libraries/messages.inc.php:1210 server_privileges.php:1645 +#: libraries/messages.inc.php:1206 server_privileges.php:1645 msgid "The selected user was not found in the privilege table." msgstr "Valitud kasutajat ei leitud privileegide tabelist." -#: libraries/messages.inc.php:1211 server_privileges.php:1365 +#: libraries/messages.inc.php:1207 server_privileges.php:1365 msgid "User overview" msgstr "Kasutaja ülevaade" -#: libraries/messages.inc.php:1212 server_privileges.php:1261 +#: libraries/messages.inc.php:1208 server_privileges.php:1261 msgid "The selected users have been deleted successfully." msgstr "Valitud kasutajad on õnnestunult kustutatud." -#: libraries/messages.inc.php:1213 server_privileges.php:2026 +#: libraries/messages.inc.php:1209 server_privileges.php:2026 #, php-format msgid "Users having access to "%s"" msgstr "Kasutajad kellel on ligipääs "%s"" -#: libraries/messages.inc.php:1214 main.php:189 server_privileges.php:1350 +#: libraries/messages.inc.php:1210 main.php:189 server_privileges.php:1350 #: server_privileges.php:1497 server_privileges.php:1611 #: server_privileges.php:2029 server_processlist.php:54 msgid "User" msgstr "Kasutaja" -#: libraries/messages.inc.php:1215 tbl_change.php:1171 +#: libraries/messages.inc.php:1211 tbl_change.php:1171 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Kasutage TAB klahvi, et liikuda ühelt väärtuselt teisele või CTRL+nool, et " "liikuda noole suunas" -#: libraries/messages.inc.php:1217 libraries/replication_gui.lib.php:251 +#: libraries/messages.inc.php:1213 libraries/replication_gui.lib.php:251 #: libraries/replication_gui.lib.php:319 libraries/replication_gui.lib.php:342 #: server_privileges.php:678 server_privileges.php:745 #: server_privileges.php:769 server_privileges.php:1889 @@ -6642,7 +6642,7 @@ msgstr "" msgid "Use text field" msgstr "Kasutage tekstivälja" -#: libraries/messages.inc.php:1221 libraries/sqlvalidator.lib.php:68 +#: libraries/messages.inc.php:1217 libraries/sqlvalidator.lib.php:68 #, php-format msgid "" "The SQL validator could not be initialized. Please check if you have " @@ -6651,88 +6651,88 @@ msgstr "" "SQL-i valideerijat ei suudetud avada. Palun kontrollige, et te olete " "installinud vastavad php moodulid nagu on kirjeldatud %sdokumentatsioonis%s." -#: libraries/messages.inc.php:1222 libraries/replication_gui.lib.php:111 +#: libraries/messages.inc.php:1218 libraries/replication_gui.lib.php:111 #: server_status.php:627 tbl_change.php:324 tbl_printview.php:370 #: tbl_select.php:139 tbl_structure.php:730 msgid "Value" msgstr "Väärtus" -#: libraries/messages.inc.php:1223 libraries/replication_gui.lib.php:110 +#: libraries/messages.inc.php:1219 libraries/replication_gui.lib.php:110 #: libraries/sql_query_form.lib.php:445 server_status.php:626 #: server_variables.php:52 msgid "Variable" msgstr "Muutuja" -#: libraries/messages.inc.php:1225 server_export.php:21 +#: libraries/messages.inc.php:1221 server_export.php:21 msgid "View dump (schema) of databases" msgstr "Näita andmebaaside sisu (skeemi)" -#: libraries/messages.inc.php:1227 tbl_export.php:23 +#: libraries/messages.inc.php:1223 tbl_export.php:23 msgid "View dump (schema) of table" msgstr "Vaata tabeli väljundit (skeemi)" -#: libraries/messages.inc.php:1231 view_create.php:142 +#: libraries/messages.inc.php:1227 view_create.php:142 msgid "VIEW name" msgstr "" -#: libraries/messages.inc.php:1237 main.php:205 +#: libraries/messages.inc.php:1233 main.php:205 msgid "Web server" msgstr "" -#: libraries/messages.inc.php:1239 libraries/mysql_charsets.lib.php:277 +#: libraries/messages.inc.php:1235 libraries/mysql_charsets.lib.php:277 #: libraries/mysql_charsets.lib.php:325 msgid "West European" msgstr "Lääne-Euroopa" -#: libraries/messages.inc.php:1240 main.php:230 +#: libraries/messages.inc.php:1236 main.php:230 msgid "Wiki" msgstr "" -#: libraries/messages.inc.php:1241 server_privileges.php:2138 +#: libraries/messages.inc.php:1237 server_privileges.php:2138 msgid "wildcard" msgstr "metamärk" -#: libraries/messages.inc.php:1248 +#: libraries/messages.inc.php:1244 #, fuzzy msgid "Export contents" msgstr "Ekspordi tüüp" -#: libraries/messages.inc.php:1249 +#: libraries/messages.inc.php:1245 msgid "Export functions" msgstr "" -#: libraries/messages.inc.php:1250 +#: libraries/messages.inc.php:1246 msgid "Export procedures" msgstr "" -#: libraries/messages.inc.php:1251 +#: libraries/messages.inc.php:1247 msgid "Export Structure Schemas (recommended)" msgstr "" -#: libraries/messages.inc.php:1252 +#: libraries/messages.inc.php:1248 #, fuzzy msgid "Export tables" msgstr "Ekspordi tüüp" -#: libraries/messages.inc.php:1253 +#: libraries/messages.inc.php:1249 #, fuzzy msgid "Export triggers" msgstr "Ekspordi tüüp" -#: libraries/messages.inc.php:1254 +#: libraries/messages.inc.php:1250 #, fuzzy msgid "Export views" msgstr "Ekspordi tüüp" -#: libraries/messages.inc.php:1255 +#: libraries/messages.inc.php:1251 msgid "XML" msgstr "XML" -#: libraries/messages.inc.php:1259 server_privileges.php:592 +#: libraries/messages.inc.php:1255 server_privileges.php:592 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Märkus: Märkides antud seaded 0 (null), eemaldate limiidi." -#: libraries/messages.inc.php:1260 +#: libraries/messages.inc.php:1256 msgid "\"zipped\"" msgstr "\"zipitud\"" diff --git a/po/eu.po b/po/eu.po index 7a0163e79..48fba7cfc 100644 --- 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-05-13 11:25+0200\n" +"POT-Creation-Date: 2010-05-13 11:30+0200\n" "PO-Revision-Date: 2010-03-31 10:40+0200\n" "Last-Translator: \n" "Language-Team: basque \n" @@ -15,19 +15,19 @@ msgstr "" "X-Generator: Pootle 2.0.1\n" #: browse_foreigners.php:38 browse_foreigners.php:59 -#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:870 +#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:866 #: server_privileges.php:1475 msgid "Show all" msgstr "Dena erakutsi" #: browse_foreigners.php:82 db_operations.php:648 -#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:394 -#: libraries/export/pdf.php:147 libraries/messages.inc.php:597 +#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394 +#: libraries/export/pdf.php:147 libraries/messages.inc.php:593 #: pdf_schema.php:283 pdf_schema.php:1123 pdf_schema.php:1139 msgid "Page number:" msgstr "Orri zenbakia:" -#: browse_foreigners.php:132 libraries/messages.inc.php:1242 +#: browse_foreigners.php:132 libraries/messages.inc.php:1238 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -40,7 +40,7 @@ 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/db_links.inc.php:75 -#: libraries/messages.inc.php:841 libraries/tbl_links.inc.php:63 +#: libraries/messages.inc.php:837 libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Bilatu" @@ -49,12 +49,12 @@ msgstr "Bilatu" #: db_search.php:362 db_structure.php:567 js/messages.php:48 #: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2267 +#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 #: 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 #: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614 -#: libraries/messages.inc.php:361 libraries/replication_gui.lib.php:73 +#: libraries/messages.inc.php:357 libraries/replication_gui.lib.php:73 #: libraries/replication_gui.lib.php:365 libraries/select_server.lib.php:104 #: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477 #: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782 @@ -74,33 +74,33 @@ msgid "Go" msgstr "Joan" #: browse_foreigners.php:168 browse_foreigners.php:172 -#: libraries/Index.class.php:442 libraries/messages.inc.php:459 +#: libraries/Index.class.php:442 libraries/messages.inc.php:455 #: tbl_tracking.php:320 msgid "Keyname" msgstr "Klabearen hitza" #: browse_foreigners.php:169 browse_foreigners.php:171 -#: libraries/messages.inc.php:252 server_collations.php:55 +#: libraries/messages.inc.php:248 server_collations.php:55 #: server_collations.php:67 server_engines.php:59 server_status.php:628 msgid "Description" msgstr "Deskribapena" #: browse_foreigners.php:247 browse_foreigners.php:256 #: browse_foreigners.php:268 browse_foreigners.php:276 -#: libraries/messages.inc.php:1218 +#: libraries/messages.inc.php:1214 msgid "Use this value" msgstr "Erabili balio hau" -#: db_create.php:46 libraries/messages.inc.php:215 +#: db_create.php:46 libraries/messages.inc.php:211 #, fuzzy, php-format msgid "Database %1$s has been created." msgstr "%s datu-basea ezabatua izan da." -#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:232 +#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:228 msgid "Database comment: " msgstr "Datu-basearen iruzkina: " -#: db_datadict.php:165 libraries/messages.inc.php:1070 +#: db_datadict.php:165 libraries/messages.inc.php:1066 #: libraries/tbl_properties.inc.php:724 pdf_schema.php:1236 #: tbl_operations.php:345 tbl_printview.php:130 msgid "Table comments" @@ -109,7 +109,7 @@ msgstr "Taularen iruzkinak" #: db_datadict.php:174 db_qbe.php:174 libraries/Index.class.php:446 #: libraries/export/htmlword.php:244 libraries/export/latex.php:360 #: libraries/export/odt.php:294 libraries/export/texytext.php:233 -#: libraries/messages.inc.php:317 libraries/tbl_properties.inc.php:99 +#: libraries/messages.inc.php:313 libraries/tbl_properties.inc.php:99 #: libraries/tbl_properties.inc.php:275 pdf_schema.php:1262 #: pdf_schema.php:1283 tbl_change.php:308 tbl_indexes.php:189 #: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135 @@ -121,7 +121,7 @@ msgstr "Eremua" #: libraries/db_events.inc.php:31 libraries/db_routines.inc.php:42 #: 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/messages.inc.php:1181 +#: libraries/export/texytext.php:234 libraries/messages.inc.php:1177 #: libraries/tbl_properties.inc.php:100 pdf_schema.php:1263 #: pdf_schema.php:1284 server_privileges.php:2031 tbl_change.php:287 #: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313 @@ -133,7 +133,7 @@ msgstr "Mota" #: db_datadict.php:177 libraries/Index.class.php:449 #: libraries/export/htmlword.php:246 libraries/export/latex.php:360 #: libraries/export/odt.php:300 libraries/export/texytext.php:235 -#: libraries/messages.inc.php:576 libraries/tbl_properties.inc.php:109 +#: libraries/messages.inc.php:572 libraries/tbl_properties.inc.php:109 #: pdf_schema.php:1265 pdf_schema.php:1286 tbl_change.php:323 #: tbl_printview.php:145 tbl_structure.php:181 tbl_tracking.php:276 #: tbl_tracking.php:327 @@ -142,7 +142,7 @@ msgstr "Nulua" #: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 -#: libraries/export/texytext.php:236 libraries/messages.inc.php:238 +#: libraries/export/texytext.php:236 libraries/messages.inc.php:234 #: libraries/tbl_properties.inc.php:106 pdf_schema.php:1266 #: pdf_schema.php:1287 tbl_printview.php:146 tbl_structure.php:182 #: tbl_tracking.php:277 @@ -151,14 +151,14 @@ msgstr "Lehenetsia" #: db_datadict.php:182 libraries/export/htmlword.php:249 #: libraries/export/latex.php:362 libraries/export/odt.php:307 -#: libraries/export/texytext.php:238 libraries/messages.inc.php:483 +#: libraries/export/texytext.php:238 libraries/messages.inc.php:479 #: pdf_schema.php:1268 pdf_schema.php:1289 tbl_printview.php:150 msgid "Links to" msgstr "Estekak honi:" #: db_datadict.php:184 db_printview.php:112 libraries/export/htmlword.php:252 #: libraries/export/latex.php:365 libraries/export/odt.php:312 -#: libraries/export/texytext.php:241 libraries/messages.inc.php:163 +#: libraries/export/texytext.php:241 libraries/messages.inc.php:159 #: libraries/tbl_properties.inc.php:130 pdf_schema.php:1279 #: pdf_schema.php:1290 tbl_printview.php:152 msgid "Comments" @@ -167,7 +167,7 @@ msgstr "Iruzkinak" #: db_datadict.php:267 libraries/Index.class.php:359 #: 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/messages.inc.php:559 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:555 #: libraries/mult_submits.inc.php:263 pdf_schema.php:1344 #: server_privileges.php:1529 server_privileges.php:1540 #: server_privileges.php:1850 server_privileges.php:1855 @@ -179,7 +179,7 @@ msgstr "Ez" #: db_datadict.php:267 libraries/Index.class.php:360 #: libraries/Index.class.php:385 libraries/export/htmlword.php:322 #: libraries/export/latex.php:430 libraries/export/odt.php:368 -#: libraries/export/texytext.php:311 libraries/messages.inc.php:1257 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:1253 #: libraries/mult_submits.inc.php:45 libraries/mult_submits.inc.php:50 #: libraries/mult_submits.inc.php:55 libraries/mult_submits.inc.php:60 #: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:101 @@ -193,112 +193,112 @@ msgstr "Ez" msgid "Yes" msgstr "Bai" -#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:670 +#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:666 #: tbl_printview.php:498 msgid "Print" msgstr "Inprimatu" -#: db_export.php:29 libraries/messages.inc.php:1226 +#: db_export.php:29 libraries/messages.inc.php:1222 msgid "View dump (schema) of database" msgstr "Ikusi datu-basearen iraulketa (eskema)" #: db_export.php:33 db_printview.php:96 db_qbe.php:102 db_structure.php:51 -#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:568 +#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:564 #: navigation.php:346 msgid "No tables found in database." msgstr "Ez da taularik aurkitu datu-basean." -#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:845 +#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:841 #: server_export.php:27 msgid "Select All" msgstr "Dena hautatu" -#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1188 +#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1184 #: server_export.php:29 msgid "Unselect All" msgstr "Desautatu dena" -#: db_operations.php:38 libraries/messages.inc.php:213 tbl_create.php:54 +#: db_operations.php:38 libraries/messages.inc.php:209 tbl_create.php:54 #, fuzzy msgid "The database name is empty!" msgstr "Taularen izena hutsik dago!" -#: db_operations.php:236 libraries/messages.inc.php:753 +#: db_operations.php:236 libraries/messages.inc.php:749 #, fuzzy, php-format msgid "Database %s has been renamed to %s" msgstr "%s taula %s-(e)ra berrizendatua izan da" -#: db_operations.php:240 libraries/messages.inc.php:178 +#: db_operations.php:240 libraries/messages.inc.php:174 #, fuzzy, php-format msgid "Database %s has been copied to %s" msgstr "%s taula hona kopiatua izan da: %s." -#: db_operations.php:410 libraries/messages.inc.php:236 +#: db_operations.php:410 libraries/messages.inc.php:232 #, fuzzy msgid "Rename database to" msgstr "Taula berrizendatu izen honetara: " -#: db_operations.php:415 libraries/messages.inc.php:161 +#: db_operations.php:415 libraries/messages.inc.php:157 #: server_processlist.php:57 msgid "Command" msgstr "Komandoa" -#: db_operations.php:425 libraries/messages.inc.php:58 tbl_change.php:1143 +#: db_operations.php:425 libraries/messages.inc.php:54 tbl_change.php:1143 msgid "and then" msgstr "eta orduan" -#: db_operations.php:451 libraries/messages.inc.php:233 +#: db_operations.php:451 libraries/messages.inc.php:229 #, fuzzy msgid "Copy database to" msgstr "Datu-baserik ez" -#: db_operations.php:458 libraries/messages.inc.php:1043 +#: db_operations.php:458 libraries/messages.inc.php:1039 #: tbl_operations.php:526 tbl_tracking.php:388 msgid "Structure only" msgstr "Egitura soilik" -#: db_operations.php:459 libraries/messages.inc.php:1041 +#: db_operations.php:459 libraries/messages.inc.php:1037 #: tbl_operations.php:527 tbl_tracking.php:390 msgid "Structure and data" msgstr "Egitura eta datuak" -#: db_operations.php:460 libraries/messages.inc.php:229 tbl_operations.php:528 +#: db_operations.php:460 libraries/messages.inc.php:225 tbl_operations.php:528 #: tbl_tracking.php:389 msgid "Data only" msgstr "Datuak soilik" -#: db_operations.php:468 libraries/messages.inc.php:186 +#: db_operations.php:468 libraries/messages.inc.php:182 msgid "CREATE DATABASE before copying" msgstr "" #: db_operations.php:471 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 -#: libraries/export/sql.php:82 libraries/messages.inc.php:30 +#: libraries/export/sql.php:82 libraries/messages.inc.php:26 #: tbl_operations.php:534 #, php-format msgid "Add %s" msgstr "%s gehitu" -#: db_operations.php:475 libraries/messages.inc.php:29 tbl_operations.php:297 +#: db_operations.php:475 libraries/messages.inc.php:25 tbl_operations.php:297 #: tbl_operations.php:536 msgid "Add AUTO_INCREMENT value" msgstr "Gehitu AUTO_INCREMENT balioa" -#: db_operations.php:479 libraries/messages.inc.php:31 tbl_operations.php:543 +#: db_operations.php:479 libraries/messages.inc.php:27 tbl_operations.php:543 msgid "Add constraints" msgstr "Murrizketak gehitu" -#: db_operations.php:492 libraries/messages.inc.php:1059 +#: db_operations.php:492 libraries/messages.inc.php:1055 #, fuzzy msgid "Switch to copied database" msgstr "Kopiatutako taulara aldatu" -#: db_operations.php:533 libraries/messages.inc.php:89 +#: db_operations.php:533 libraries/messages.inc.php:85 msgid "BLOB Repository" msgstr "" #: db_operations.php:536 db_tracking.php:76 libraries/common.lib.php:1350 -#: libraries/messages.inc.php:1037 libraries/server_links.inc.php:49 +#: libraries/messages.inc.php:1033 libraries/server_links.inc.php:49 #: server_processlist.php:59 tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "Egoera" @@ -310,12 +310,12 @@ msgctxt "BLOB repository" msgid "Enabled" msgstr "Gaituta" -#: db_operations.php:548 libraries/messages.inc.php:93 +#: db_operations.php:548 libraries/messages.inc.php:89 #, fuzzy msgid "Disable" msgstr "Ezgaituta" -#: db_operations.php:558 libraries/messages.inc.php:90 +#: db_operations.php:558 libraries/messages.inc.php:86 msgid "Damaged" msgstr "" @@ -332,13 +332,13 @@ msgctxt "BLOB repository" msgid "Disabled" msgstr "Ezgaituta" -#: db_operations.php:574 libraries/messages.inc.php:96 +#: db_operations.php:574 libraries/messages.inc.php:92 #, fuzzy msgid "Enable" msgstr "Gaituta" #: db_operations.php:598 libraries/Index.class.php:448 -#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:158 +#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:154 #: 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:361 @@ -347,7 +347,7 @@ msgstr "Gaituta" msgid "Collation" msgstr "Ordenamendua" -#: db_operations.php:609 libraries/messages.inc.php:742 main.php:316 +#: db_operations.php:609 libraries/messages.inc.php:738 main.php:316 #: pdf_schema.php:34 #, php-format msgid "" @@ -357,58 +357,58 @@ msgstr "" "Estekatutako taulekin lan egiteko hobespen gehigarriak ezgaitu dira . " "Zergatia jakiteko egizu klik %shemen%s." -#: db_operations.php:645 libraries/messages.inc.php:264 pdf_pages.php:528 +#: db_operations.php:645 libraries/messages.inc.php:260 pdf_pages.php:528 msgid "Display PDF schema" msgstr "PDF eskema erakutsi" -#: db_operations.php:661 libraries/messages.inc.php:877 pdf_pages.php:529 +#: db_operations.php:661 libraries/messages.inc.php:873 pdf_pages.php:529 msgid "Show grid" msgstr "Sareta erakutsi" -#: db_operations.php:664 libraries/messages.inc.php:874 pdf_pages.php:530 +#: db_operations.php:664 libraries/messages.inc.php:870 pdf_pages.php:530 msgid "Show color" msgstr "Kolorea erakutsi" -#: db_operations.php:666 libraries/messages.inc.php:998 pdf_pages.php:531 +#: db_operations.php:666 libraries/messages.inc.php:994 pdf_pages.php:531 msgid "Show dimension of tables" msgstr "Taulen dimentsioak erakutsi" -#: db_operations.php:669 libraries/messages.inc.php:52 pdf_pages.php:532 +#: db_operations.php:669 libraries/messages.inc.php:48 pdf_pages.php:532 msgid "Display all tables with the same width" msgstr "Zabalera berdina duten taula guztiak erakutsi?" -#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:227 +#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:223 #: pdf_pages.php:533 msgid "Data Dictionary" msgstr "Datu-hiztegia" -#: db_operations.php:674 libraries/messages.inc.php:884 pdf_pages.php:534 +#: db_operations.php:674 libraries/messages.inc.php:880 pdf_pages.php:534 msgid "Only show keys" msgstr "" -#: db_operations.php:676 libraries/messages.inc.php:875 pdf_pages.php:535 +#: db_operations.php:676 libraries/messages.inc.php:871 pdf_pages.php:535 msgid "Data Dictionary Format" msgstr "Datuen hiztegiaren formateoa" -#: db_operations.php:678 libraries/messages.inc.php:464 pdf_pages.php:537 +#: db_operations.php:678 libraries/messages.inc.php:460 pdf_pages.php:537 msgid "Landscape" msgstr "" -#: db_operations.php:679 libraries/messages.inc.php:663 pdf_pages.php:538 +#: db_operations.php:679 libraries/messages.inc.php:659 pdf_pages.php:538 msgid "Portrait" msgstr "Bertikal" -#: db_operations.php:682 libraries/messages.inc.php:599 pdf_pages.php:541 +#: db_operations.php:682 libraries/messages.inc.php:595 pdf_pages.php:541 msgid "Paper size" msgstr "Paperaren tamaina" -#: db_operations.php:706 libraries/messages.inc.php:281 +#: db_operations.php:706 libraries/messages.inc.php:277 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 libraries/messages.inc.php:1087 +#: libraries/header.inc.php:126 libraries/messages.inc.php:1083 #: pdf_pages.php:405 server_privileges.php:1626 server_privileges.php:1682 #: server_privileges.php:1946 server_synchronize.php:423 #: server_synchronize.php:866 tbl_tracking.php:592 test/theme.php:75 @@ -416,176 +416,176 @@ msgid "Table" msgstr "Taula" #: db_printview.php:105 libraries/db_structure.lib.php:56 -#: libraries/messages.inc.php:735 +#: libraries/messages.inc.php:731 msgid "Records" msgstr "Erregistroak" #: db_printview.php:109 libraries/db_structure.lib.php:67 -#: libraries/messages.inc.php:1003 tbl_indexes.php:190 +#: libraries/messages.inc.php:999 tbl_indexes.php:190 msgid "Size" msgstr "Tamaina" #: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 -#: libraries/export/sql.php:899 libraries/messages.inc.php:436 +#: libraries/export/sql.php:899 libraries/messages.inc.php:432 msgid "in use" msgstr "lanean" #: db_printview.php:187 libraries/db_info.inc.php:88 -#: libraries/export/sql.php:514 libraries/messages.inc.php:1032 +#: libraries/export/sql.php:514 libraries/messages.inc.php:1028 #: pdf_schema.php:1241 tbl_printview.php:434 tbl_structure.php:810 msgid "Creation" msgstr "Sortzea" #: db_printview.php:196 libraries/db_info.inc.php:93 -#: libraries/export/sql.php:519 libraries/messages.inc.php:1036 +#: libraries/export/sql.php:519 libraries/messages.inc.php:1032 #: pdf_schema.php:1246 tbl_printview.php:444 tbl_structure.php:818 msgid "Last update" msgstr "Azken eguneraketa" #: db_printview.php:205 libraries/db_info.inc.php:98 -#: libraries/export/sql.php:524 libraries/messages.inc.php:1031 +#: libraries/export/sql.php:524 libraries/messages.inc.php:1027 #: pdf_schema.php:1251 tbl_printview.php:454 tbl_structure.php:826 msgid "Last check" msgstr "Azken egiaztapena" -#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1085 +#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1081 #, php-format msgid "%s table(s)" msgstr "%s taula(k)" #: db_qbe.php:29 libraries/display_tbl.lib.php:1981 -#: libraries/messages.inc.php:1051 libraries/sql_query_form.lib.php:140 +#: libraries/messages.inc.php:1047 libraries/sql_query_form.lib.php:140 #: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131 #: view_operations.php:62 msgid "Your SQL query has been executed successfully" msgstr "Zure SQL-kontsula arrakastaz burutu da" -#: db_qbe.php:42 libraries/messages.inc.php:371 +#: db_qbe.php:42 libraries/messages.inc.php:367 msgid "You have to choose at least one column to display" msgstr "Gutxienez bistaratzeko Zutabe bat hautatu duzu." #: db_qbe.php:200 libraries/db_structure.lib.php:104 -#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1014 +#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1010 msgid "Sort" msgstr "Ordenatu" #: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111 #: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828 -#: libraries/messages.inc.php:69 server_databases.php:170 +#: libraries/messages.inc.php:65 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314 msgid "Ascending" msgstr "Goranzko" #: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119 #: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825 -#: libraries/messages.inc.php:251 server_databases.php:170 +#: libraries/messages.inc.php:247 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315 msgid "Descending" msgstr "Beherantz" #: db_qbe.php:264 db_tracking.php:78 libraries/display_tbl.lib.php:308 -#: libraries/messages.inc.php:888 tbl_change.php:277 tbl_tracking.php:597 +#: libraries/messages.inc.php:884 tbl_change.php:277 tbl_tracking.php:597 msgid "Show" msgstr "Erakutsi" -#: db_qbe.php:300 libraries/messages.inc.php:202 +#: db_qbe.php:300 libraries/messages.inc.php:198 msgid "Criteria" msgstr "Irizpidea" #: db_qbe.php:353 db_qbe.php:435 db_qbe.php:527 db_qbe.php:558 -#: libraries/messages.inc.php:718 +#: libraries/messages.inc.php:714 msgid "Ins" msgstr "Txertatu" #: db_qbe.php:357 db_qbe.php:439 db_qbe.php:524 db_qbe.php:555 -#: libraries/messages.inc.php:56 +#: libraries/messages.inc.php:52 msgid "And" msgstr "Eta" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:529 db_qbe.php:560 -#: libraries/messages.inc.php:717 +#: libraries/messages.inc.php:713 msgid "Del" 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/messages.inc.php:592 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:588 #: libraries/tbl_properties.inc.php:779 server_privileges.php:258 #: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288 msgid "Or" msgstr "Edo" -#: db_qbe.php:507 libraries/messages.inc.php:516 +#: db_qbe.php:507 libraries/messages.inc.php:512 msgid "Modify" msgstr "Aldatu" -#: db_qbe.php:584 libraries/messages.inc.php:33 +#: db_qbe.php:584 libraries/messages.inc.php:29 msgid "Add/Delete Criteria Row" msgstr "Gehitu/ezabatu irizpide-errenkada" -#: db_qbe.php:596 libraries/messages.inc.php:32 +#: db_qbe.php:596 libraries/messages.inc.php:28 msgid "Add/Delete Field Columns" msgstr "Gehitu/ezabatu irizpide-zutabea" -#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1192 +#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1188 msgid "Update Query" msgstr "Kontsulta eguneratu" -#: db_qbe.php:617 libraries/messages.inc.php:1216 +#: db_qbe.php:617 libraries/messages.inc.php:1212 msgid "Use Tables" msgstr "Taulak erabili" -#: db_qbe.php:640 libraries/messages.inc.php:723 +#: db_qbe.php:640 libraries/messages.inc.php:719 #, php-format msgid "SQL query on database %s:" msgstr "SQL-kontsulta %s datu-basean:" -#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:823 +#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:819 msgid "Submit Query" msgstr "Kontsulta bidali" #: db_search.php:68 libraries/auth/config.auth.lib.php:84 #: libraries/auth/config.auth.lib.php:103 #: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52 -#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:26 +#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:22 msgid "Access denied" msgstr "Sarbidea ukatua" -#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:836 +#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:832 msgid "at least one of the words" msgstr "hitz hauetariko bat gutxienez" -#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:837 +#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:833 msgid "all words" msgstr "hitz guztiak" -#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:838 +#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:834 msgid "the exact phrase" msgstr "esaldi zehatza" -#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:839 +#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:835 msgid "as regular expression" msgstr "adierazpen erregular moduan" -#: db_search.php:242 libraries/messages.inc.php:840 +#: db_search.php:242 libraries/messages.inc.php:836 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Bilaketaren emaitzak: \"%s\" %s:" -#: db_search.php:260 libraries/messages.inc.php:579 +#: db_search.php:260 libraries/messages.inc.php:575 #, php-format msgid "%s match(es) inside table %s" 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/messages.inc.php:108 +#: db_structure.php:105 libraries/messages.inc.php:104 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468 msgid "Browse" msgstr "Arakatu" #: db_search.php:272 libraries/display_tbl.lib.php:1165 -#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:243 +#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:239 #: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406 #: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377 #: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216 @@ -593,45 +593,45 @@ msgstr "Arakatu" msgid "Delete" msgstr "Ezabatu" -#: db_search.php:285 libraries/messages.inc.php:580 +#: db_search.php:285 libraries/messages.inc.php:576 #, php-format msgid "Total: %s match(es)" msgstr "Guztira: %s emaitza(k)" -#: db_search.php:299 libraries/messages.inc.php:832 +#: db_search.php:299 libraries/messages.inc.php:828 msgid "Search in database" msgstr "Datu-basean bilatu" -#: db_search.php:302 libraries/messages.inc.php:835 +#: db_search.php:302 libraries/messages.inc.php:831 msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgstr "Bilaketa egiteko hitza(k) edo balioa(k) (komodina: \"%\"):" -#: db_search.php:307 libraries/messages.inc.php:842 +#: db_search.php:307 libraries/messages.inc.php:838 msgid "Find:" msgstr "Aurkitu:" -#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1017 +#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1013 msgid "Words are separated by a space character (\" \")." msgstr "Hitzak \"zuriune\" karakterrarekin bereiztuta daude (\" \")." -#: db_search.php:325 libraries/messages.inc.php:834 +#: db_search.php:325 libraries/messages.inc.php:830 msgid "Inside table(s):" msgstr "Taul(ar)en barnean:" -#: db_search.php:355 libraries/messages.inc.php:833 +#: db_search.php:355 libraries/messages.inc.php:829 msgid "Inside field:" 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/messages.inc.php:431 libraries/sql_query_form.lib.php:334 +#: libraries/messages.inc.php:427 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/db_links.inc.php:63 libraries/export/latex.php:337 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:1048 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:1044 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 #: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269 msgid "Structure" @@ -640,8 +640,8 @@ 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:1642 -#: libraries/db_links.inc.php:100 libraries/messages.inc.php:272 +#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/db_links.inc.php:100 libraries/messages.inc.php:268 #: 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 @@ -651,40 +651,40 @@ 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:1641 -#: libraries/messages.inc.php:284 libraries/mult_submits.inc.php:39 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: libraries/messages.inc.php:280 libraries/mult_submits.inc.php:39 #: libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Hutsik" -#: db_structure.php:316 libraries/messages.inc.php:1075 +#: db_structure.php:316 libraries/messages.inc.php:1071 #: libraries/tbl_links.inc.php:100 #, php-format msgid "Table %s has been emptied" msgstr "%s taula hustu egin da" -#: db_structure.php:326 libraries/messages.inc.php:1229 +#: db_structure.php:326 libraries/messages.inc.php:1225 #: 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/messages.inc.php:1074 +#: db_structure.php:326 libraries/messages.inc.php:1070 #: libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "%s taula ezabatu egin da" -#: db_structure.php:333 libraries/messages.inc.php:1128 +#: db_structure.php:333 libraries/messages.inc.php:1124 msgid "Tracking is active." msgstr "" -#: db_structure.php:335 libraries/messages.inc.php:1129 +#: db_structure.php:335 libraries/messages.inc.php:1125 msgid "Tracking is not active." msgstr "" #: db_structure.php:420 libraries/display_tbl.lib.php:1944 -#: libraries/messages.inc.php:1228 +#: libraries/messages.inc.php:1224 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -692,84 +692,84 @@ msgid "" msgstr "" #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 -#: libraries/messages.inc.php:1233 libraries/tbl_info.inc.php:66 +#: libraries/messages.inc.php:1229 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/messages.inc.php:773 libraries/server_links.inc.php:70 +#: libraries/messages.inc.php:769 libraries/server_links.inc.php:70 #: server_replication.php:33 server_replication.php:164 server_status.php:258 #, fuzzy msgid "Replication" msgstr "Erlazioak" -#: db_structure.php:489 libraries/messages.inc.php:1053 +#: db_structure.php:489 libraries/messages.inc.php:1049 msgid "Sum" msgstr "Gehiketa" #: db_structure.php:496 libraries/StorageEngine.class.php:356 -#: libraries/messages.inc.php:239 +#: libraries/messages.inc.php:235 #, 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 #: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086 -#: libraries/messages.inc.php:1243 libraries/mult_submits.inc.php:16 +#: libraries/messages.inc.php:1239 libraries/mult_submits.inc.php:16 #: server_databases.php:346 server_databases.php:351 #: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465 msgid "With selected:" msgstr "Ikurdunak:" #: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: libraries/messages.inc.php:148 server_databases.php:348 +#: libraries/messages.inc.php:144 server_databases.php:348 #: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459 msgid "Check All" msgstr "Guztiak egiaztatu" #: db_structure.php:531 libraries/display_tbl.lib.php:2077 -#: libraries/messages.inc.php:1184 libraries/replication_gui.lib.php:33 +#: libraries/messages.inc.php:1180 libraries/replication_gui.lib.php:33 #: server_databases.php:350 server_privileges.php:533 #: server_privileges.php:1564 tbl_structure.php:463 msgid "Uncheck All" msgstr "Desautatu dena" -#: db_structure.php:536 libraries/messages.inc.php:150 +#: db_structure.php:536 libraries/messages.inc.php:146 msgid "Check tables having overhead" msgstr "Arazteko hondakinak egiaztatu" #: db_structure.php:547 db_structure.php:548 db_structure.php:599 -#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:672 +#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:668 #: libraries/mult_submits.inc.php:28 tbl_structure.php:493 #: tbl_structure.php:495 msgid "Print view" msgstr "Inprimatzeko ikuspegia" -#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:153 +#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:149 #: libraries/mult_submits.inc.php:42 tbl_operations.php:579 msgid "Check table" msgstr "Taula egiaztatu" -#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:590 +#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:586 #: libraries/mult_submits.inc.php:47 tbl_operations.php:619 #: tbl_structure.php:710 tbl_structure.php:712 msgid "Optimize table" msgstr "Taula optimizatu" -#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:758 +#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:754 #: libraries/mult_submits.inc.php:52 tbl_operations.php:609 msgid "Repair table" msgstr "Taula konpondu" -#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:55 +#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:51 #: libraries/mult_submits.inc.php:57 tbl_operations.php:599 msgid "Analyze table" msgstr "Taula aztertu" #: db_structure.php:557 db_structure.php:558 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/messages.inc.php:310 +#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:306 #: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84 #: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109 #: server_privileges.php:1341 setup/frames/menu.inc.php:22 @@ -777,7 +777,7 @@ msgstr "Taula aztertu" msgid "Export" msgstr "Esportatu" -#: db_tracking.php:66 libraries/messages.inc.php:1151 +#: db_tracking.php:66 libraries/messages.inc.php:1147 msgid "Tracked tables" msgstr "" @@ -785,7 +785,7 @@ msgstr "" #: 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/header_printview.inc.php:58 libraries/messages.inc.php:212 +#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:208 #: navigation.php:233 server_databases.php:169 server_privileges.php:1621 #: server_privileges.php:1682 server_privileges.php:1940 #: server_processlist.php:56 server_synchronize.php:1179 @@ -793,81 +793,81 @@ msgstr "" msgid "Database" msgstr "Datu-basea" -#: db_tracking.php:73 libraries/messages.inc.php:1146 +#: db_tracking.php:73 libraries/messages.inc.php:1142 msgid "Last version" msgstr "" -#: db_tracking.php:74 libraries/messages.inc.php:1145 tbl_tracking.php:594 +#: db_tracking.php:74 libraries/messages.inc.php:1141 tbl_tracking.php:594 #, fuzzy msgid "Created" msgstr "Sortu" -#: db_tracking.php:75 libraries/messages.inc.php:1147 tbl_tracking.php:595 +#: db_tracking.php:75 libraries/messages.inc.php:1143 tbl_tracking.php:595 msgid "Updated" msgstr "" #: db_tracking.php:77 libraries/Index.class.php:440 -#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:27 +#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:23 #: server_databases.php:203 server_privileges.php:1503 #: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187 msgid "Action" msgstr "Ekintza" -#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:247 +#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:243 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:106 libraries/messages.inc.php:1142 tbl_tracking.php:548 +#: db_tracking.php:106 libraries/messages.inc.php:1138 tbl_tracking.php:548 #: tbl_tracking.php:606 tbl_tracking.php:613 msgid "active" msgstr "" -#: db_tracking.php:108 libraries/messages.inc.php:1143 tbl_tracking.php:550 +#: db_tracking.php:108 libraries/messages.inc.php:1139 tbl_tracking.php:550 #: tbl_tracking.php:608 tbl_tracking.php:610 msgid "not active" msgstr "" -#: db_tracking.php:121 libraries/messages.inc.php:1160 +#: db_tracking.php:121 libraries/messages.inc.php:1156 #, fuzzy msgid "Versions" msgstr "Eragiketak" -#: db_tracking.php:122 libraries/messages.inc.php:1132 tbl_tracking.php:379 +#: db_tracking.php:122 libraries/messages.inc.php:1128 tbl_tracking.php:379 #: tbl_tracking.php:624 msgid "Tracking report" msgstr "" -#: db_tracking.php:123 libraries/messages.inc.php:1144 tbl_tracking.php:251 +#: db_tracking.php:123 libraries/messages.inc.php:1140 tbl_tracking.php:251 #: tbl_tracking.php:624 #, fuzzy msgid "Structure snapshot" msgstr "Egitura soilik" -#: db_tracking.php:152 libraries/messages.inc.php:1154 +#: db_tracking.php:152 libraries/messages.inc.php:1150 msgid "Untracked tables" msgstr "" -#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1153 +#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1149 #: tbl_structure.php:529 tbl_structure.php:531 #, fuzzy msgid "Track table" msgstr "Taula egiaztatu" -#: db_tracking.php:200 libraries/messages.inc.php:1121 +#: db_tracking.php:200 libraries/messages.inc.php:1117 #, fuzzy msgid "Database Log" msgstr "Datu-basea" -#: export.php:62 libraries/messages.inc.php:312 +#: export.php:62 libraries/messages.inc.php:308 msgid "Selected export type has to be saved in file!" msgstr "" -#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:567 +#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:563 #, php-format msgid "Insufficient space to save the file %s." msgstr "Ez dago leku-disko nahikoa %s fitxategia gordetzeko." -#: export.php:294 libraries/messages.inc.php:324 +#: export.php:294 libraries/messages.inc.php:320 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -875,17 +875,17 @@ msgstr "" "%s fitxategia aurretik bazegoen zerbitzarian, izena aldatu edo aukeratu " "gainean idazteko hobespena." -#: export.php:298 export.php:302 libraries/messages.inc.php:562 +#: export.php:298 export.php:302 libraries/messages.inc.php:558 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Web-zerbitzariak dio %s fitxategia gordetzeko baimenik ez duzula." -#: export.php:629 libraries/messages.inc.php:276 +#: export.php:629 libraries/messages.inc.php:272 #, php-format msgid "Dump has been saved to file %s." msgstr "Iraulketa %s fitxategian gorde da." -#: import.php:60 libraries/messages.inc.php:1202 +#: import.php:60 libraries/messages.inc.php:1198 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation%" @@ -893,21 +893,21 @@ msgid "" msgstr "" #: import.php:279 import.php:332 libraries/File.class.php:849 -#: libraries/File.class.php:961 libraries/messages.inc.php:325 +#: libraries/File.class.php:961 libraries/messages.inc.php:321 msgid "File could not be read" msgstr "Ezinezkoa fitxategia irakurtzea" #: import.php:287 import.php:296 import.php:315 import.php:324 #: libraries/File.class.php:1031 libraries/File.class.php:1039 #: libraries/File.class.php:1055 libraries/File.class.php:1063 -#: libraries/messages.inc.php:1189 +#: libraries/messages.inc.php:1185 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." msgstr "" -#: import.php:337 libraries/messages.inc.php:547 +#: import.php:337 libraries/messages.inc.php:543 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -915,41 +915,41 @@ msgid "" msgstr "" #: import.php:372 libraries/display_import.lib.php:24 -#: libraries/messages.inc.php:125 +#: libraries/messages.inc.php:121 msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:397 libraries/messages.inc.php:102 +#: import.php:397 libraries/messages.inc.php:98 msgid "The bookmark has been deleted." msgstr "Gordetako kontsulta ezabatu da." -#: import.php:401 libraries/messages.inc.php:879 +#: import.php:401 libraries/messages.inc.php:875 msgid "Showing bookmark" msgstr "" -#: import.php:403 libraries/messages.inc.php:101 +#: import.php:403 libraries/messages.inc.php:97 #, php-format msgid "Bookmark %s created" msgstr "" -#: import.php:409 import.php:415 libraries/messages.inc.php:407 +#: import.php:409 import.php:415 libraries/messages.inc.php:403 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" -#: import.php:424 libraries/messages.inc.php:1107 +#: import.php:424 libraries/messages.inc.php:1103 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: index.php:190 libraries/messages.inc.php:553 +#: index.php:190 libraries/messages.inc.php:549 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" "phpMyAdmin askoz erabilerraza da frame-ak onartzen duen nabigatzaile " "batekin." -#: js/messages.php:25 libraries/messages.inc.php:155 +#: js/messages.php:25 libraries/messages.inc.php:151 #: server_synchronize.php:345 server_synchronize.php:357 #: server_synchronize.php:373 server_synchronize.php:380 #: server_synchronize.php:739 server_synchronize.php:767 @@ -957,118 +957,118 @@ msgstr "" msgid "Click to select" msgstr "" -#: js/messages.php:26 libraries/messages.inc.php:156 +#: js/messages.php:26 libraries/messages.inc.php:152 msgid "Click to unselect" msgstr "" #: js/messages.php:27 libraries/import.lib.php:103 -#: libraries/messages.inc.php:550 sql.php:89 +#: libraries/messages.inc.php:546 sql.php:89 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" sententziak ezgaituta daude." -#: js/messages.php:30 libraries/messages.inc.php:270 +#: js/messages.php:30 libraries/messages.inc.php:266 #: libraries/mult_submits.inc.php:258 sql.php:188 msgid "Do you really want to " msgstr "Benetan nahi al duzu " -#: js/messages.php:31 libraries/messages.inc.php:271 +#: js/messages.php:31 libraries/messages.inc.php:267 #: libraries/mult_submits.inc.php:258 sql.php:172 msgid "You are about to DESTROY a complete database!" msgstr "" -#: js/messages.php:34 libraries/messages.inc.php:94 +#: js/messages.php:34 libraries/messages.inc.php:90 msgid "You are about to DISABLE a BLOB Repository!" msgstr "" -#: js/messages.php:35 libraries/messages.inc.php:91 +#: js/messages.php:35 libraries/messages.inc.php:87 #, php-format msgid "Are you sure you want to disable all BLOB references for database %s?" msgstr "" -#: js/messages.php:38 libraries/messages.inc.php:342 +#: js/messages.php:38 libraries/messages.inc.php:338 msgid "Missing value in the form!" msgstr "Balioa bat falta da formularioan!" -#: js/messages.php:39 libraries/messages.inc.php:570 +#: js/messages.php:39 libraries/messages.inc.php:566 msgid "This is not a number!" msgstr "Hau ez da zenbaki bat!" -#: js/messages.php:42 libraries/messages.inc.php:380 +#: js/messages.php:42 libraries/messages.inc.php:376 msgid "The host name is empty!" msgstr "Zerbitzariaren izena hutsik dago!" -#: js/messages.php:43 libraries/messages.inc.php:1208 +#: js/messages.php:43 libraries/messages.inc.php:1204 msgid "The user name is empty!" msgstr "Erabiltzailearen izena hutsik dago!" -#: js/messages.php:44 libraries/messages.inc.php:607 +#: js/messages.php:44 libraries/messages.inc.php:603 #: server_privileges.php:1197 user_password.php:70 msgid "The password is empty!" msgstr "Pasahitza hutsik dago!" -#: js/messages.php:45 libraries/messages.inc.php:609 +#: js/messages.php:45 libraries/messages.inc.php:605 #: server_privileges.php:1195 user_password.php:73 msgid "The passwords aren't the same!" msgstr "Pasahitzek ez dute bat egiten!" -#: js/messages.php:49 libraries/messages.inc.php:123 pmd_general.php:342 +#: js/messages.php:49 libraries/messages.inc.php:119 pmd_general.php:342 #: pmd_general.php:379 msgid "Cancel" msgstr "" -#: js/messages.php:52 libraries/messages.inc.php:514 +#: js/messages.php:52 libraries/messages.inc.php:510 msgid "Modifications have been saved" msgstr "Aldaketak gorde dira" -#: js/messages.php:53 libraries/messages.inc.php:741 +#: js/messages.php:53 libraries/messages.inc.php:737 #, fuzzy msgid "Relation deleted" msgstr "Erlazioen ikuspegia" -#: js/messages.php:54 libraries/messages.inc.php:340 +#: js/messages.php:54 libraries/messages.inc.php:336 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:55 libraries/messages.inc.php:434 +#: js/messages.php:55 libraries/messages.inc.php:430 #, fuzzy msgid "Internal relation added" msgstr "Barne-erlazioak" -#: js/messages.php:56 libraries/messages.inc.php:299 +#: js/messages.php:56 libraries/messages.inc.php:295 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:57 libraries/messages.inc.php:300 +#: js/messages.php:57 libraries/messages.inc.php:296 msgid "Error: relation already exists." msgstr "" -#: js/messages.php:58 libraries/messages.inc.php:302 +#: js/messages.php:58 libraries/messages.inc.php:298 msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:59 libraries/messages.inc.php:351 +#: js/messages.php:59 libraries/messages.inc.php:347 #: libraries/relation.lib.php:107 msgid "General relation features" msgstr "Erlazioen ezaaugarri orokorrak" -#: js/messages.php:59 libraries/messages.inc.php:260 +#: js/messages.php:59 libraries/messages.inc.php:256 #: libraries/relation.lib.php:101 libraries/relation.lib.php:108 msgid "Disabled" msgstr "Ezgaituta" -#: js/messages.php:60 libraries/messages.inc.php:850 +#: js/messages.php:60 libraries/messages.inc.php:846 msgid "Select referenced key" msgstr "" -#: js/messages.php:61 libraries/messages.inc.php:848 +#: js/messages.php:61 libraries/messages.inc.php:844 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:62 libraries/messages.inc.php:653 +#: js/messages.php:62 libraries/messages.inc.php:649 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:63 libraries/messages.inc.php:142 pmd_general.php:77 +#: js/messages.php:63 libraries/messages.inc.php:138 pmd_general.php:77 #: tbl_relation.php:548 msgid "Choose field to display" msgstr "Aukeratu erakutsi beharreko eremua" @@ -1088,9 +1088,9 @@ msgid "Prev" msgstr "Aurrekoa" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2332 -#: libraries/common.lib.php:2335 libraries/display_tbl.lib.php:338 -#: libraries/messages.inc.php:543 server_binlog.php:205 server_binlog.php:207 +#: js/messages.php:77 libraries/common.lib.php:2344 +#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: libraries/messages.inc.php:539 server_binlog.php:205 server_binlog.php:207 #: tbl_printview.php:424 tbl_structure.php:802 msgid "Next" msgstr "Hurrengoa" @@ -1165,27 +1165,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1543 +#: js/messages.php:97 libraries/common.lib.php:1555 msgid "Jan" msgstr "Urt" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1545 +#: js/messages.php:99 libraries/common.lib.php:1557 msgid "Feb" msgstr "Ots" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1547 +#: js/messages.php:101 libraries/common.lib.php:1559 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1549 +#: js/messages.php:103 libraries/common.lib.php:1561 msgid "Apr" msgstr "Api" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1551 +#: js/messages.php:105 libraries/common.lib.php:1563 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1193,37 +1193,37 @@ msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1553 +#: js/messages.php:107 libraries/common.lib.php:1565 msgid "Jun" msgstr "Eka" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1555 +#: js/messages.php:109 libraries/common.lib.php:1567 msgid "Jul" msgstr "Uzt" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1557 +#: js/messages.php:111 libraries/common.lib.php:1569 msgid "Aug" msgstr "Abu" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1559 +#: js/messages.php:113 libraries/common.lib.php:1571 msgid "Sep" msgstr "Ira" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1561 +#: js/messages.php:115 libraries/common.lib.php:1573 msgid "Oct" msgstr "Urr" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1563 +#: js/messages.php:117 libraries/common.lib.php:1575 msgid "Nov" msgstr "Aza" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1565 +#: js/messages.php:119 libraries/common.lib.php:1577 msgid "Dec" msgstr "Abe" @@ -1264,37 +1264,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1568 +#: js/messages.php:132 libraries/common.lib.php:1580 msgid "Sun" msgstr "Iga" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1570 +#: js/messages.php:134 libraries/common.lib.php:1582 msgid "Mon" msgstr "Astel" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1572 +#: js/messages.php:136 libraries/common.lib.php:1584 msgid "Tue" msgstr "Astea" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1574 +#: js/messages.php:138 libraries/common.lib.php:1586 msgid "Wed" msgstr "Astez" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1576 +#: js/messages.php:140 libraries/common.lib.php:1588 msgid "Thu" msgstr "Oste" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1578 +#: js/messages.php:142 libraries/common.lib.php:1590 msgid "Fri" msgstr "Osti" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1580 +#: js/messages.php:144 libraries/common.lib.php:1592 msgid "Sat" msgstr "Lar" @@ -1368,76 +1368,76 @@ msgstr "lanean" msgid "Second" msgstr "segunduko" -#: libraries/Config.class.php:1015 libraries/messages.inc.php:338 +#: libraries/Config.class.php:1015 libraries/messages.inc.php:334 msgid "Font size" msgstr "" #: libraries/File.class.php:344 libraries/File.class.php:432 #: libraries/File.class.php:569 libraries/File.class.php:708 -#: libraries/messages.inc.php:1201 +#: libraries/messages.inc.php:1197 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.class.php:414 libraries/messages.inc.php:1198 +#: libraries/File.class.php:414 libraries/messages.inc.php:1194 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:417 libraries/messages.inc.php:1197 +#: libraries/File.class.php:417 libraries/messages.inc.php:1193 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:420 libraries/messages.inc.php:1200 +#: libraries/File.class.php:420 libraries/messages.inc.php:1196 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:423 libraries/messages.inc.php:1199 +#: libraries/File.class.php:423 libraries/messages.inc.php:1195 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:426 libraries/messages.inc.php:1195 +#: libraries/File.class.php:426 libraries/messages.inc.php:1191 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:429 libraries/messages.inc.php:1196 +#: libraries/File.class.php:429 libraries/messages.inc.php:1192 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:908 libraries/messages.inc.php:319 +#: libraries/File.class.php:908 libraries/messages.inc.php:315 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "" -#: libraries/Index.class.php:428 libraries/messages.inc.php:554 +#: libraries/Index.class.php:428 libraries/messages.inc.php:550 #: tbl_relation.php:529 msgid "No index defined!" msgstr "Ez dago indizerik definituta!" -#: libraries/Index.class.php:433 libraries/messages.inc.php:411 +#: libraries/Index.class.php:433 libraries/messages.inc.php:407 #: server_databases.php:132 tbl_tracking.php:316 msgid "Indexes" msgstr "Indizeak" -#: libraries/Index.class.php:444 libraries/messages.inc.php:1186 +#: libraries/Index.class.php:444 libraries/messages.inc.php:1182 #: 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:475 tbl_tracking.php:322 msgid "Unique" msgstr "Bakarra" -#: libraries/Index.class.php:445 libraries/messages.inc.php:596 +#: libraries/Index.class.php:445 libraries/messages.inc.php:592 #: tbl_tracking.php:323 msgid "Packed" msgstr "" -#: libraries/Index.class.php:447 libraries/messages.inc.php:131 +#: libraries/Index.class.php:447 libraries/messages.inc.php:127 #: tbl_tracking.php:325 msgid "Cardinality" msgstr "Kardinalitatea" -#: libraries/Index.class.php:450 libraries/messages.inc.php:162 +#: libraries/Index.class.php:450 libraries/messages.inc.php:158 #: tbl_tracking.php:279 tbl_tracking.php:328 #, fuzzy msgid "Comment" @@ -1446,29 +1446,29 @@ msgstr "Iruzkinak" #: libraries/Index.class.php:466 libraries/common.lib.php:616 #: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:280 pdf_pages.php:280 +#: libraries/messages.inc.php:276 pdf_pages.php:280 #: setup/frames/index.inc.php:124 setup/lib/messages.inc.php:352 #: tbl_row_action.php:69 msgid "Edit" msgstr "Editatu" -#: libraries/Index.class.php:472 libraries/messages.inc.php:666 +#: libraries/Index.class.php:472 libraries/messages.inc.php:662 msgid "The primary key has been dropped" msgstr "Lehen mailako gakoa ezabatu da" -#: libraries/Index.class.php:476 libraries/messages.inc.php:413 +#: libraries/Index.class.php:476 libraries/messages.inc.php:409 #, php-format msgid "Index %s has been dropped" msgstr "%s indizea ezabatu da" -#: libraries/Index.class.php:576 libraries/messages.inc.php:412 +#: libraries/Index.class.php:576 libraries/messages.inc.php:408 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "" -#: libraries/List_Database.class.php:431 libraries/messages.inc.php:218 +#: libraries/List_Database.class.php:431 libraries/messages.inc.php:214 #: libraries/server_links.inc.php:41 server_databases.php:88 #: server_privileges.php:1621 setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" @@ -1495,85 +1495,85 @@ msgid_plural "%1$d rows inserted." msgstr[0] "" msgstr[1] "" -#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:549 +#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:545 msgid "" "There is no detailed status information available for this storage engine." msgstr "" -#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:291 +#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:287 #, php-format msgid "%s is available on this MySQL server." msgstr "" -#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:292 +#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:288 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "" -#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:294 +#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:290 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "" -#: libraries/Table.class.php:1019 libraries/messages.inc.php:443 +#: libraries/Table.class.php:1019 libraries/messages.inc.php:439 msgid "Invalid database" msgstr "" -#: libraries/Table.class.php:1033 libraries/messages.inc.php:450 +#: libraries/Table.class.php:1033 libraries/messages.inc.php:446 #: tbl_get_field.php:26 msgid "Invalid table name" msgstr "" -#: libraries/Table.class.php:1048 libraries/messages.inc.php:301 +#: libraries/Table.class.php:1048 libraries/messages.inc.php:297 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "" -#: libraries/Table.class.php:1132 libraries/messages.inc.php:754 +#: libraries/Table.class.php:1132 libraries/messages.inc.php:750 #, php-format msgid "Table %s has been renamed to %s" msgstr "%s taula %s-(e)ra berrizendatua izan da" -#: libraries/Theme.class.php:162 libraries/messages.inc.php:1099 +#: libraries/Theme.class.php:162 libraries/messages.inc.php:1095 #, php-format msgid "No valid image path for theme %s found!" msgstr "" -#: libraries/Theme.class.php:384 libraries/messages.inc.php:1097 +#: libraries/Theme.class.php:384 libraries/messages.inc.php:1093 msgid "No preview available." msgstr "" -#: libraries/Theme.class.php:387 libraries/messages.inc.php:1089 +#: libraries/Theme.class.php:387 libraries/messages.inc.php:1085 msgid "take it" msgstr "" -#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1096 +#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1092 #, php-format msgid "Default theme %s not found!" msgstr "" -#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1098 +#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1094 #, php-format msgid "Theme %s not found!" msgstr "" -#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1100 +#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1096 #, php-format msgid "Theme path not found for theme %s!" msgstr "" -#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1101 +#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1097 #: test/theme.php:161 themes.php:21 themes.php:41 msgid "Theme / Style" msgstr "" -#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:172 +#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:168 msgid "Cannot connect: invalid settings." msgstr "" #: libraries/auth/config.auth.lib.php:92 #: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65 -#: libraries/messages.inc.php:1238 test/theme.php:152 +#: libraries/messages.inc.php:1234 test/theme.php:152 #, php-format msgid "Welcome to %s" msgstr "Ongietorriak %s(e)ra" @@ -1597,104 +1597,104 @@ msgstr "" "eta pasahitza berpasatu beharko dituzu eta MySQL zerbitzariaren " "administratzaileak emaniko informazioarekin bat egiten dutela ziurtatu." -#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:488 +#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:484 msgid "Log in" msgstr "Hasi saioa" #: libraries/auth/cookie.auth.lib.php:246 -#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:659 +#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:655 #: libraries/navigation_header.inc.php:93 #: libraries/navigation_header.inc.php:95 msgid "phpMyAdmin documentation" msgstr "phpMyAdmin dokumentazioa" #: libraries/auth/cookie.auth.lib.php:258 -#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:492 +#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:488 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:493 +#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:489 msgid "Server:" msgstr "Zerbitzaria" -#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:494 +#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:490 msgid "Username:" msgstr "Erabiltzaile-izena:" -#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:491 +#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:487 msgid "Password:" msgstr "Pasahitza:" -#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:854 +#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:850 msgid "Server Choice" msgstr "Zerbitzariaren hautaketa" #: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 -#: libraries/messages.inc.php:177 +#: libraries/messages.inc.php:173 msgid "Cookies must be enabled past this point." msgstr "Puntu honetarako cookie-ek gaituta egon behar dute." #: libraries/auth/cookie.auth.lib.php:671 -#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:489 +#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:485 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" #: libraries/auth/cookie.auth.lib.php:675 -#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:544 +#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:540 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" #: libraries/auth/cookie.auth.lib.php:685 #: libraries/auth/cookie.auth.lib.php:687 -#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:126 +#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:122 msgid "Cannot log in to the MySQL server" msgstr "Ezinezkoa MySql zerbitzarian saioa hastea" -#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1245 +#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1241 msgid "Wrong username/password. Access denied." msgstr "Erabiltzaile-izena/pasahitza okerra. Atzipena ukatuta." #: libraries/auth/swekey/swekey.auth.lib.php:118 -#: libraries/messages.inc.php:1057 +#: libraries/messages.inc.php:1053 #, php-format msgid "File %s does not contain any key id" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:157 #: libraries/auth/swekey/swekey.auth.lib.php:180 -#: libraries/messages.inc.php:1056 +#: libraries/messages.inc.php:1052 msgid "Hardware authentication failed" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:166 -#: libraries/messages.inc.php:1058 +#: libraries/messages.inc.php:1054 msgid "No valid authentication key plugged" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:202 -#: libraries/messages.inc.php:1055 +#: libraries/messages.inc.php:1051 msgid "Authenticating..." msgstr "" -#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1230 +#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1226 msgid "View image" msgstr "" -#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:652 +#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:648 msgid "Play audio" msgstr "" -#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1232 +#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1228 msgid "View video" msgstr "" -#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:269 +#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:265 msgid "Download file" msgstr "" -#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:128 +#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:124 msgid "" "Couldn't load the iconv or recode extension needed for charset conversion. " "Either configure PHP to enable these extensions or disable charset " @@ -1706,7 +1706,7 @@ msgstr "" #: libraries/charset_conversion.lib.php:79 #: libraries/charset_conversion.lib.php:90 -#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:130 +#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:126 msgid "" "Couldn't use the iconv, libiconv, or recode_string functions, although the " "necessary extensions appear to be loaded. Check your PHP configuration." @@ -1714,7 +1714,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/messages.inc.php:170 +#: libraries/common.inc.php:583 libraries/messages.inc.php:166 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!" @@ -1749,22 +1749,22 @@ msgstr "" msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:636 libraries/messages.inc.php:448 +#: libraries/common.inc.php:636 libraries/messages.inc.php:444 #, 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/messages.inc.php:856 libraries/select_server.lib.php:41 +#: libraries/messages.inc.php:852 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/messages.inc.php:437 +#: libraries/common.inc.php:823 libraries/messages.inc.php:433 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.lib.php:147 libraries/messages.inc.php:499 +#: libraries/common.lib.php:147 libraries/messages.inc.php:495 #, php-format msgid "Max: %s%s" msgstr "" @@ -1784,7 +1784,7 @@ msgstr "en" #: libraries/common.lib.php:428 libraries/common.lib.php:430 #: libraries/common.lib.php:432 libraries/common.lib.php:448 #: libraries/common.lib.php:450 libraries/dbg/setup.php:25 -#: libraries/display_export.lib.php:164 libraries/messages.inc.php:267 +#: libraries/display_export.lib.php:164 libraries/messages.inc.php:263 #: libraries/relation.lib.php:97 libraries/sql_query_form.lib.php:451 #: libraries/sql_query_form.lib.php:454 main.php:229 pdf_pages.php:37 #: pdf_pages.php:43 pdf_pages.php:49 pdf_pages.php:54 @@ -1794,55 +1794,55 @@ msgstr "Dokumentazioa" #: libraries/common.lib.php:581 libraries/core.lib.php:234 #: libraries/core.lib.php:263 libraries/import.lib.php:134 -#: libraries/messages.inc.php:297 pdf_schema.php:32 pdf_schema.php:232 +#: libraries/messages.inc.php:293 pdf_schema.php:32 pdf_schema.php:232 #: tbl_change.php:1027 tbl_operations.php:213 tbl_relation.php:290 #: view_operations.php:62 msgid "Error" msgstr "Errorea" #: libraries/common.lib.php:595 libraries/header_printview.inc.php:61 -#: libraries/messages.inc.php:1023 server_processlist.php:60 +#: libraries/messages.inc.php:1019 server_processlist.php:60 #: server_status.php:247 msgid "SQL query" msgstr "SQL kontsulta" -#: libraries/common.lib.php:634 libraries/messages.inc.php:538 +#: libraries/common.lib.php:634 libraries/messages.inc.php:534 msgid "MySQL said: " msgstr "MySQL-ek zera dio: " -#: libraries/common.lib.php:667 libraries/messages.inc.php:76 +#: libraries/common.lib.php:667 libraries/messages.inc.php:72 #: pdf_schema.php:241 user_password.php:115 msgid "Back" msgstr "Itzuli" -#: libraries/common.lib.php:1177 libraries/messages.inc.php:309 +#: libraries/common.lib.php:1177 libraries/messages.inc.php:305 #: setup/lib/messages.inc.php:353 msgid "Explain SQL" msgstr "SQL-a azaldu" -#: libraries/common.lib.php:1180 libraries/messages.inc.php:551 +#: libraries/common.lib.php:1180 libraries/messages.inc.php:547 msgid "Skip Explain SQL" msgstr "SQL-ren azalpena saltatu" -#: libraries/common.lib.php:1212 libraries/messages.inc.php:563 +#: libraries/common.lib.php:1212 libraries/messages.inc.php:559 msgid "Without PHP Code" msgstr "PHP Koderik gabe" -#: libraries/common.lib.php:1215 libraries/messages.inc.php:649 +#: libraries/common.lib.php:1215 libraries/messages.inc.php:645 #: setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "PHP kodea sortu" -#: libraries/common.lib.php:1233 libraries/messages.inc.php:737 +#: libraries/common.lib.php:1233 libraries/messages.inc.php:733 #: server_status.php:341 setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "" -#: libraries/common.lib.php:1242 libraries/messages.inc.php:575 +#: libraries/common.lib.php:1242 libraries/messages.inc.php:571 msgid "Skip Validate SQL" msgstr "SQL-ren balidapena saltatu" -#: libraries/common.lib.php:1245 libraries/messages.inc.php:1220 +#: libraries/common.lib.php:1245 libraries/messages.inc.php:1216 #: setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "SQL balidatu" @@ -1856,11 +1856,11 @@ msgid "Inline" msgstr "" #: libraries/common.lib.php:1332 libraries/common.lib.php:1347 -#: libraries/messages.inc.php:713 +#: libraries/messages.inc.php:709 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1351 libraries/messages.inc.php:1108 +#: libraries/common.lib.php:1351 libraries/messages.inc.php:1104 #: libraries/tbl_triggers.lib.php:28 server_processlist.php:58 msgid "Time" msgstr "Denbora" @@ -1894,46 +1894,56 @@ msgstr "PB" msgid "EiB" msgstr "EB" +#. l10n: Thousands separator +#: libraries/common.lib.php:1417 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: libraries/common.lib.php:1419 +msgid "." +msgstr "." + #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1584 +#: libraries/common.lib.php:1596 #: libraries/transformations/text_plain__dateformat.inc.php:28 msgid "%B %d, %Y at %I:%M %p" msgstr "%Y-%m-%d, %H:%M:%S" -#: libraries/common.lib.php:1886 +#: libraries/common.lib.php:1898 #, 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:2301 libraries/common.lib.php:2304 -#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:664 +#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:660 #: server_status.php:608 msgid "Begin" msgstr "Hasi" -#: libraries/common.lib.php:2302 libraries/common.lib.php:2305 -#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:665 +#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:661 #: server_binlog.php:168 server_binlog.php:170 msgid "Previous" msgstr "Aurrekoa" -#: libraries/common.lib.php:2333 libraries/common.lib.php:2336 -#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:289 +#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:285 msgid "End" msgstr "Amaiera" -#: libraries/common.lib.php:2409 libraries/messages.inc.php:455 +#: libraries/common.lib.php:2421 libraries/messages.inc.php:451 #, php-format msgid "Jump to database "%s"." msgstr ""%s" datu-basera joan." -#: libraries/common.lib.php:2429 libraries/messages.inc.php:461 +#: libraries/common.lib.php:2441 libraries/messages.inc.php:457 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/core.lib.php:286 libraries/dbg/setup.php:22 -#: libraries/messages.inc.php:127 +#: libraries/messages.inc.php:123 #, php-format msgid "" "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " @@ -1943,116 +1953,116 @@ msgstr "" "konfigurazioa." #: libraries/db_events.inc.php:20 libraries/db_events.inc.php:22 -#: libraries/export/sql.php:415 libraries/messages.inc.php:306 +#: libraries/export/sql.php:415 libraries/messages.inc.php:302 msgid "Events" msgstr "" #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 -#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:541 +#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:537 #: libraries/tbl_triggers.lib.php:27 setup/frames/index.inc.php:112 msgid "Name" msgstr "Izena" -#: libraries/db_links.inc.php:45 libraries/messages.inc.php:216 +#: libraries/db_links.inc.php:45 libraries/messages.inc.php:212 #, php-format msgid "Database %s has been dropped." msgstr "%s datu-basea ezabatua izan da." #: libraries/db_links.inc.php:57 libraries/db_links.inc.php:58 -#: libraries/db_links.inc.php:59 libraries/messages.inc.php:234 +#: libraries/db_links.inc.php:59 libraries/messages.inc.php:230 msgid "Database seems to be empty!" msgstr "" -#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1025 +#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1021 #: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60 #: querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1152 +#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1148 #: libraries/tbl_links.inc.php:69 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:86 libraries/messages.inc.php:719 +#: libraries/db_links.inc.php:86 libraries/messages.inc.php:715 msgid "Query" msgstr "Kontsulta" -#: libraries/db_links.inc.php:91 libraries/messages.inc.php:253 +#: libraries/db_links.inc.php:91 libraries/messages.inc.php:249 msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:98 libraries/messages.inc.php:397 +#: libraries/db_links.inc.php:98 libraries/messages.inc.php:393 #: libraries/server_links.inc.php:88 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:104 libraries/messages.inc.php:587 +#: libraries/db_links.inc.php:104 libraries/messages.inc.php:583 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" msgstr "Eragiketak" -#: libraries/db_links.inc.php:111 libraries/messages.inc.php:709 +#: libraries/db_links.inc.php:111 libraries/messages.inc.php:705 #: libraries/server_links.inc.php:66 server_privileges.php:72 #: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117 msgid "Privileges" msgstr "Pribilegioak" #: libraries/db_routines.inc.php:30 libraries/db_routines.inc.php:32 -#: libraries/messages.inc.php:812 +#: libraries/messages.inc.php:808 msgid "Routines" msgstr "" -#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:811 +#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:807 msgid "Return type" msgstr "" #: libraries/db_structure.lib.php:57 libraries/display_tbl.lib.php:1848 -#: libraries/messages.inc.php:65 +#: libraries/messages.inc.php:61 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "" -#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:593 +#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:589 #: server_databases.php:142 tbl_printview.php:336 tbl_structure.php:683 msgid "Overhead" msgstr "Arazteko hondakina" #: libraries/dbi/mysql.dbi.lib.php:112 libraries/dbi/mysqli.dbi.lib.php:124 -#: libraries/messages.inc.php:176 +#: libraries/messages.inc.php:172 msgid "Connection for controluser as defined in your configuration failed." msgstr "" #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 -#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:855 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:851 msgid "The server is not responding" msgstr "" #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:1010 +#: libraries/messages.inc.php:1006 msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "" -#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:255 +#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:251 #: tbl_structure.php:609 msgid "Details..." msgstr "" -#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:143 +#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:139 #: main.php:91 user_password.php:111 user_password.php:129 msgid "Change password" msgstr "Pasahitza aldatu" -#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:561 +#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:557 #: libraries/replication_gui.lib.php:341 server_privileges.php:768 msgid "No Password" msgstr "Pasahitzik ez" -#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:610 +#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:606 #: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60 #: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335 #: libraries/replication_gui.lib.php:345 server_privileges.php:757 @@ -2061,13 +2071,13 @@ msgstr "Pasahitzik ez" msgid "Password" msgstr "Pasahitza" -#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:806 +#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:802 #: libraries/replication_gui.lib.php:349 libraries/replication_gui.lib.php:352 #: server_privileges.php:776 server_privileges.php:779 msgid "Re-type" msgstr "Berridatzi" -#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:608 +#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:604 msgid "Password Hashing" msgstr "" @@ -2075,91 +2085,91 @@ msgstr "" msgid "MySQL 4.0 compatible" msgstr "" -#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:353 +#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:349 #: libraries/replication_gui.lib.php:356 server_privileges.php:783 msgid "Generate Password" msgstr "" -#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:352 +#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:348 #: libraries/replication_gui.lib.php:359 server_privileges.php:786 #, fuzzy msgid "Generate" msgstr "Egilea:" #: libraries/display_create_database.lib.php:22 -#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:189 +#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:185 msgid "Create new database" msgstr "Datu-base berri bat sortu" -#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:185 +#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:181 msgid "Create" msgstr "Sortu" -#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:564 +#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:560 #: server_privileges.php:74 server_privileges.php:1388 #: server_replication.php:35 msgid "No Privileges" msgstr "Pribilegiorik gabe" -#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:445 +#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:441 msgid "Table must have at least one field." msgstr "" -#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:190 +#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:186 #, php-format msgid "Create table on database %s" msgstr "Taula berri bat sortu %s datu-basean" -#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:577 +#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:573 msgid "Number of fields" msgstr "" -#: libraries/display_export.lib.php:42 libraries/messages.inc.php:124 +#: libraries/display_export.lib.php:42 libraries/messages.inc.php:120 msgid "Could not load export plugins, please check your installation!" msgstr "" -#: libraries/display_export.lib.php:107 libraries/messages.inc.php:277 +#: libraries/display_export.lib.php:107 libraries/messages.inc.php:273 #, php-format msgid "Dump %s row(s) starting at record # %s" msgstr "%s errenkada irauli, erregistro honetatik hasita: # %s." -#: libraries/display_export.lib.php:115 libraries/messages.inc.php:274 +#: libraries/display_export.lib.php:115 libraries/messages.inc.php:270 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:125 libraries/messages.inc.php:852 +#: libraries/display_export.lib.php:125 libraries/messages.inc.php:848 #: setup/lib/messages.inc.php:82 msgid "Save as file" msgstr "Bidali" -#: libraries/display_export.lib.php:134 libraries/messages.inc.php:828 +#: libraries/display_export.lib.php:134 libraries/messages.inc.php:824 #, php-format msgid "Save on server in %s directory" msgstr "Zerbitzariren %s direktorioan gorde" -#: libraries/display_export.lib.php:142 libraries/messages.inc.php:594 +#: libraries/display_export.lib.php:142 libraries/messages.inc.php:590 #: setup/lib/messages.inc.php:90 msgid "Overwrite existing file(s)" msgstr "Gainean idatzi aurretik badiren fitxategiak" -#: libraries/display_export.lib.php:148 libraries/messages.inc.php:330 +#: libraries/display_export.lib.php:148 libraries/messages.inc.php:326 msgid "File name template" msgstr "Txantiloi-fitxategiaren izena" -#: libraries/display_export.lib.php:152 libraries/messages.inc.php:327 +#: libraries/display_export.lib.php:152 libraries/messages.inc.php:323 #, fuzzy msgid "server name" msgstr "Erabiltzaile-izena" -#: libraries/display_export.lib.php:155 libraries/messages.inc.php:326 +#: libraries/display_export.lib.php:155 libraries/messages.inc.php:322 msgid "database name" msgstr "" -#: libraries/display_export.lib.php:158 libraries/messages.inc.php:328 +#: libraries/display_export.lib.php:158 libraries/messages.inc.php:324 msgid "table name" msgstr "" -#: libraries/display_export.lib.php:162 libraries/messages.inc.php:329 +#: libraries/display_export.lib.php:162 libraries/messages.inc.php:325 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2167,24 +2177,24 @@ msgid "" "3$s. Other text will be kept as is." msgstr "" -#: libraries/display_export.lib.php:202 libraries/messages.inc.php:331 +#: libraries/display_export.lib.php:202 libraries/messages.inc.php:327 msgid "remember template" msgstr "txantiloia gogoratu" #: libraries/display_export.lib.php:210 libraries/display_import.lib.php:178 -#: libraries/display_import.lib.php:191 libraries/messages.inc.php:145 +#: libraries/display_import.lib.php:191 libraries/messages.inc.php:141 #: libraries/sql_query_form.lib.php:549 msgid "Character set of the file:" msgstr "Fitxategiaren karaktereen kodeketa:" -#: libraries/display_export.lib.php:235 libraries/messages.inc.php:166 +#: libraries/display_export.lib.php:235 libraries/messages.inc.php:162 #: setup/lib/messages.inc.php:84 msgid "Compression" 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/messages.inc.php:558 +#: libraries/export/sql.php:868 libraries/messages.inc.php:554 #: libraries/tbl_properties.inc.php:575 server_privileges.php:1836 #: server_processlist.php:75 msgid "None" @@ -2208,467 +2218,467 @@ msgstr "\"gzip-ez trinkotuta\"" msgid "bzipped" msgstr "\"Bzip-ez trinkotua\"" -#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1018 +#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1014 msgid "SQL compatibility mode" msgstr "" -#: libraries/display_import.lib.php:67 libraries/messages.inc.php:398 +#: libraries/display_import.lib.php:67 libraries/messages.inc.php:394 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " "browsers." msgstr "" -#: libraries/display_import.lib.php:77 libraries/messages.inc.php:406 +#: libraries/display_import.lib.php:77 libraries/messages.inc.php:402 msgid "The file is being processed, please be patient." msgstr "" -#: libraries/display_import.lib.php:99 libraries/messages.inc.php:408 +#: libraries/display_import.lib.php:99 libraries/messages.inc.php:404 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." msgstr "" -#: libraries/display_import.lib.php:126 libraries/messages.inc.php:333 +#: libraries/display_import.lib.php:126 libraries/messages.inc.php:329 msgid "File to import" msgstr "" -#: libraries/display_import.lib.php:137 libraries/messages.inc.php:486 +#: libraries/display_import.lib.php:137 libraries/messages.inc.php:482 #: libraries/sql_query_form.lib.php:524 msgid "Location of the text file" msgstr "Testu-fitxategiaren kokapena" -#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1203 +#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1199 msgid "File uploads are not allowed on this server." msgstr "" -#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1235 +#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1231 #: libraries/sql_query_form.lib.php:533 tbl_change.php:1028 msgid "The directory you set for upload work cannot be reached" msgstr "Igoerentzat ezarri duzun direktorioa ez dago eskuragarri" -#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1236 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1232 #: libraries/sql_query_form.lib.php:536 tbl_change.php:1031 msgid "web server upload directory" msgstr "Fitxategiak igotzeko web-zerbitzariaren direktorioa" -#: libraries/display_import.lib.php:212 libraries/messages.inc.php:167 +#: libraries/display_import.lib.php:212 libraries/messages.inc.php:163 #, php-format msgid "Imported file compression will be automatically detected from: %s" msgstr "" -#: libraries/display_import.lib.php:219 libraries/messages.inc.php:600 +#: libraries/display_import.lib.php:219 libraries/messages.inc.php:596 msgid "Partial import" msgstr "" -#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1105 +#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1101 #, php-format msgid "" "Previous import timed out, after resubmitting will continue from position %d." msgstr "" -#: libraries/display_import.lib.php:232 libraries/messages.inc.php:51 +#: libraries/display_import.lib.php:232 libraries/messages.inc.php:47 msgid "" "Allow the interruption of an import in case the script detects it is close " "to the PHP timeout limit. This might be good way to import large files, " "however it can break transactions." msgstr "" -#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1004 +#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1000 #: setup/lib/messages.inc.php:161 msgid "Number of records (queries) to skip from start" msgstr "" -#: libraries/display_import.lib.php:255 libraries/messages.inc.php:396 +#: libraries/display_import.lib.php:255 libraries/messages.inc.php:392 #: setup/lib/messages.inc.php:160 msgid "Format of imported file" msgstr "" #: libraries/display_select_lang.lib.php:45 -#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:465 +#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:461 #: setup/frames/index.inc.php:70 msgid "Language" msgstr "" -#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:447 +#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:443 #, php-format msgid "%d is not valid row number." msgstr "" -#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:814 +#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:810 msgid "row(s) starting from record #" msgstr "errenkada(k) # erregistrotik hasita" -#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:817 +#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:813 msgid "horizontal" msgstr "horizontal" -#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:816 +#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:812 msgid "horizontal (rotated headers)" msgstr "horizontal (goiburukoak biratuta)" -#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:819 +#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:815 msgid "vertical" msgstr "bertikal" -#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:818 +#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:814 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "%s moduan eta goiburukoak errepikatu %s zeldaka" -#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:495 +#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:491 msgid "This operation could take a long time. Proceed anyway?" msgstr "" -#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1012 +#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1008 msgid "Sort by key" msgstr "Gakoaren arabera ordenatu" #: libraries/display_tbl.lib.php:555 libraries/import.lib.php:1082 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:591 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:587 #: tbl_select.php:267 tbl_structure.php:754 #, fuzzy msgid "Options" msgstr "Eragiketak" #: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:570 -#: libraries/messages.inc.php:601 +#: libraries/messages.inc.php:597 msgid "Partial Texts" msgstr "Testu partzialak" #: libraries/display_tbl.lib.php:561 libraries/display_tbl.lib.php:574 -#: libraries/messages.inc.php:346 +#: libraries/messages.inc.php:342 msgid "Full Texts" msgstr "Testu osoak" -#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:739 +#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:735 #, fuzzy msgid "Relational key" msgstr "Erlazio-eskema" -#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:738 +#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:734 msgid "Relational display field" msgstr "" -#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:872 +#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:868 msgid "Show binary contents" msgstr "" -#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:873 +#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:869 msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:871 +#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:867 msgid "Show binary contents as HEX" msgstr "" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:375 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:371 #: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320 msgid "Hide" msgstr "" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:508 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:504 #: libraries/tbl_properties.inc.php:144 transformation_overview.php:47 msgid "Browser transformation" msgstr "Nabigatzailearen eraldaketa" #: libraries/display_tbl.lib.php:1126 libraries/display_tbl.lib.php:1130 -#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:308 +#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:304 msgid "Execute bookmarked query" msgstr "Exekutatu aurretik aukeratutako kontsulta" #: libraries/display_tbl.lib.php:1145 libraries/display_tbl.lib.php:1157 -#: libraries/messages.inc.php:244 +#: libraries/messages.inc.php:240 msgid "The row has been deleted" msgstr "Errenkada ezabatua izan da" #: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056 -#: libraries/messages.inc.php:460 server_processlist.php:71 +#: libraries/messages.inc.php:456 server_processlist.php:71 #: tbl_row_action.php:64 msgid "Kill" msgstr "Hil" -#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:849 +#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:845 msgid "in query" msgstr "kontsultan" -#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:881 +#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:877 msgid "Showing rows" msgstr "Errenkadak erakusten" -#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1113 +#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1109 msgid "total" msgstr "guztira" -#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:727 +#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:723 #: sql.php:524 #, php-format msgid "Query took %01.4f sec" msgstr "Kontsulta exekutatzeko denbora %01.4f seg" -#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:135 +#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:131 #: 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:471 msgid "Change" msgstr "Aldatu" -#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:724 +#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:720 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:671 +#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:667 msgid "Print view (with full texts)" msgstr "Inprimatzeko ikuspena (testu osoak)" -#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:482 +#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:478 msgid "Link not found" msgstr "Esteka aurkitugabea" -#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1224 +#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1220 #: main.php:228 #, fuzzy msgid "Version information" msgstr "Saioa hasteko informazioa" -#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:423 +#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:419 msgid "Data home directory" msgstr "" -#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:424 +#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:420 msgid "The common part of the directory path for all InnoDB data files." msgstr "" -#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:422 +#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:418 #, fuzzy msgid "Data files" msgstr "Datuak soilik" -#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:418 +#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:414 msgid "Autoextend increment" msgstr "" -#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:419 +#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:415 msgid "" " The increment size for extending the size of an autoextending tablespace " "when it becomes full." msgstr "" -#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:420 +#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:416 msgid "Buffer pool size" msgstr "" -#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:421 +#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:417 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." msgstr "" -#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:112 +#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:108 msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:426 +#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:422 #: server_status.php:306 msgid "InnoDB Status" msgstr "InnoDB Egoera" -#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:113 +#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:109 msgid "Buffer Pool Usage" msgstr "" -#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1114 +#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1110 #: server_databases.php:137 server_databases.php:305 server_status.php:414 #: server_status.php:475 server_status.php:496 tbl_printview.php:351 #: tbl_structure.php:697 msgid "Total" msgstr "Gutira" -#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:425 +#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:421 msgid "pages" msgstr "" -#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:343 +#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:339 msgid "Free pages" msgstr "" -#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:259 +#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:255 msgid "Dirty pages" msgstr "" -#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:230 +#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:226 msgid "Pages containing data" msgstr "" -#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:598 +#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:594 #, fuzzy msgid "Pages to be flushed" msgstr "%s taularen cachea hustu egin da" -#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:119 +#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:115 msgid "Busy pages" msgstr "" -#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:467 +#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:463 msgid "Latched pages" msgstr "" -#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:111 +#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:107 msgid "Buffer Pool Activity" msgstr "" -#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:731 +#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:727 msgid "Read requests" msgstr "" -#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1244 +#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1240 msgid "Write requests" msgstr "" -#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:115 +#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:111 msgid "Read misses" msgstr "" -#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:117 +#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:113 msgid "Write waits" msgstr "" -#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:114 +#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:110 msgid "Read misses in %" msgstr "" -#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:116 +#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:112 msgid "Write waits in %" msgstr "" -#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:522 +#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:518 msgid "Data pointer size" msgstr "" -#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:523 +#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:519 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." msgstr "" -#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:528 +#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:524 msgid "Automatic recovery mode" msgstr "" -#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:529 +#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:525 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." msgstr "" -#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:527 +#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:523 msgid "Maximum size for temporary sort files" msgstr "" -#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:526 +#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:522 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " "INFILE)." msgstr "" -#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:525 +#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:521 msgid "Maximum size for temporary files on index creation" msgstr "" -#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:524 +#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:520 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " "method." msgstr "" -#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:531 +#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:527 msgid "Repair threads" msgstr "" -#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:530 +#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:526 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." msgstr "" -#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:533 +#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:529 msgid "Sort buffer size" msgstr "" -#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:532 +#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:528 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." msgstr "" -#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:620 +#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:616 msgid "Index cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:619 +#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:615 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." msgstr "" -#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:630 +#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:626 msgid "Record cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:629 +#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:625 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " "to the handle data (.xtd) and row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:624 +#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:620 msgid "Log cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:623 +#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:619 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:628 +#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:624 msgid "Log file threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:627 +#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:623 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:634 +#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:630 msgid "Transaction buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:633 +#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:629 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." msgstr "" -#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:611 +#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:607 msgid "Checkpoint frequency" msgstr "" -#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:612 +#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:608 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." msgstr "" -#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:615 +#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:611 msgid "Data log threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:616 +#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:612 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -2676,48 +2686,48 @@ msgid "" "that can be stored in the database." msgstr "" -#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:618 +#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:614 msgid "Garbage threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:617 +#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:613 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." msgstr "" -#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:622 +#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:618 msgid "Log buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:621 +#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:617 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " "required to write a data log." msgstr "" -#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:613 +#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:609 msgid "Data file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:614 +#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:610 msgid "The grow size of the handle data (.xtd) files." msgstr "" -#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:632 +#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:628 msgid "Row file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:631 +#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:627 msgid "The grow size of the row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:626 +#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:622 msgid "Log file count" msgstr "" -#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:625 +#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:621 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -2727,19 +2737,19 @@ msgstr "" #: libraries/export/htmlword.php:132 libraries/export/odt.php:168 #: libraries/export/sql.php:881 libraries/export/texytext.php:130 -#: libraries/messages.inc.php:275 +#: libraries/messages.inc.php:271 msgid "Dumping data for table" msgstr "Taula honen datuak irauli" #: libraries/export/htmlword.php:185 libraries/export/odt.php:238 #: libraries/export/sql.php:785 libraries/export/texytext.php:177 -#: libraries/messages.inc.php:1086 +#: libraries/messages.inc.php:1082 msgid "Table structure for table" msgstr "Taularen egitura taula honentzat: " #: libraries/export/latex.php:125 libraries/export/sql.php:232 #: libraries/export/xml.php:102 libraries/header_printview.inc.php:57 -#: libraries/messages.inc.php:381 libraries/replication_gui.lib.php:63 +#: libraries/messages.inc.php:377 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:170 libraries/replication_gui.lib.php:265 #: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325 #: server_privileges.php:692 server_privileges.php:695 @@ -2751,189 +2761,189 @@ msgstr "Zerbitzaria" #: libraries/export/latex.php:130 libraries/export/sql.php:233 #: libraries/export/xml.php:107 libraries/header_printview.inc.php:59 -#: libraries/messages.inc.php:354 +#: libraries/messages.inc.php:350 msgid "Generation Time" msgstr "Sortzeko denbora" #: libraries/export/latex.php:131 libraries/export/sql.php:235 -#: libraries/export/xml.php:108 libraries/messages.inc.php:864 main.php:186 +#: libraries/export/xml.php:108 libraries/messages.inc.php:860 main.php:186 msgid "Server version" msgstr "Zerbitzariaren bertsioa" #: libraries/export/latex.php:132 libraries/export/sql.php:236 -#: libraries/export/xml.php:109 libraries/messages.inc.php:651 +#: libraries/export/xml.php:109 libraries/messages.inc.php:647 msgid "PHP Version" msgstr "PHP Bertsioa" #: libraries/export/latex.php:201 libraries/export/sql.php:868 -#: libraries/messages.inc.php:226 server_databases.php:127 +#: libraries/messages.inc.php:222 server_databases.php:127 #: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317 #: tbl_structure.php:666 msgid "Data" msgstr "Datuak" -#: libraries/export/odt.php:318 libraries/messages.inc.php:506 +#: libraries/export/odt.php:318 libraries/messages.inc.php:502 #: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "MIME-mota" -#: libraries/export/sql.php:387 libraries/messages.inc.php:711 +#: libraries/export/sql.php:387 libraries/messages.inc.php:707 #, fuzzy msgid "Procedures" msgstr "Prozesuak" -#: libraries/export/sql.php:401 libraries/messages.inc.php:348 +#: libraries/export/sql.php:401 libraries/messages.inc.php:344 #, fuzzy msgid "Functions" msgstr "Funtzioak" -#: libraries/export/sql.php:618 libraries/messages.inc.php:174 +#: libraries/export/sql.php:618 libraries/messages.inc.php:170 msgid "Constraints for dumped tables" msgstr "Iraulitako taulentzako murrizketak" -#: libraries/export/sql.php:627 libraries/messages.inc.php:175 +#: libraries/export/sql.php:627 libraries/messages.inc.php:171 msgid "Constraints for table" msgstr "Taularentzako murrizketak" -#: libraries/export/sql.php:727 libraries/messages.inc.php:512 +#: libraries/export/sql.php:727 libraries/messages.inc.php:508 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/export/sql.php:739 libraries/messages.inc.php:743 +#: libraries/export/sql.php:739 libraries/messages.inc.php:739 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/export/sql.php:796 libraries/messages.inc.php:1178 +#: libraries/export/sql.php:796 libraries/messages.inc.php:1174 #: libraries/tbl_triggers.lib.php:19 msgid "Triggers" msgstr "" -#: libraries/export/sql.php:808 libraries/messages.inc.php:1046 +#: libraries/export/sql.php:808 libraries/messages.inc.php:1042 #, fuzzy msgid "Structure for view" msgstr "Egitura soilik" -#: libraries/export/sql.php:817 libraries/messages.inc.php:1029 +#: libraries/export/sql.php:817 libraries/messages.inc.php:1025 msgid "Stand-in structure for view" msgstr "" #: libraries/footer.inc.php:184 libraries/footer.inc.php:195 -#: libraries/footer.inc.php:198 libraries/messages.inc.php:586 +#: libraries/footer.inc.php:198 libraries/messages.inc.php:582 msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/header.inc.php:115 libraries/messages.inc.php:542 +#: libraries/header.inc.php:115 libraries/messages.inc.php:538 #, fuzzy msgid "New table" msgstr "Taularik ez" #: libraries/header_printview.inc.php:50 libraries/header_printview.inc.php:55 -#: libraries/messages.inc.php:1024 +#: libraries/messages.inc.php:1020 msgid "SQL result" msgstr "SQL emaitza" -#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:350 +#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:346 msgid "Generated by" msgstr "Egilea:" #: libraries/header_printview.inc.php:63 libraries/import.lib.php:145 -#: libraries/messages.inc.php:820 navigation.php:652 navigation.php:674 +#: libraries/messages.inc.php:816 navigation.php:652 navigation.php:674 #: server_databases.php:122 tbl_printview.php:394 tbl_structure.php:366 #: tbl_structure.php:778 msgid "Rows" msgstr "Errenkadak" -#: libraries/import.lib.php:150 libraries/messages.inc.php:285 sql.php:520 +#: libraries/import.lib.php:150 libraries/messages.inc.php:281 sql.php:520 #: tbl_change.php:181 tbl_get_field.php:35 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL-k emaitza hutsa itzuli du. (i.e. zero errenkada)." -#: libraries/import.lib.php:1078 libraries/messages.inc.php:399 +#: libraries/import.lib.php:1078 libraries/messages.inc.php:395 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1079 libraries/messages.inc.php:400 +#: libraries/import.lib.php:1079 libraries/messages.inc.php:396 msgid "View a structure`s contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1080 libraries/messages.inc.php:401 +#: libraries/import.lib.php:1080 libraries/messages.inc.php:397 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1081 libraries/messages.inc.php:402 +#: libraries/import.lib.php:1081 libraries/messages.inc.php:398 msgid "Edit its structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1084 libraries/messages.inc.php:362 +#: libraries/import.lib.php:1084 libraries/messages.inc.php:358 #, fuzzy msgid "Go to database" msgstr "Datu-baserik ez" #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:869 +#: libraries/messages.inc.php:865 msgid "settings" msgstr "" -#: libraries/import.lib.php:1106 libraries/messages.inc.php:363 +#: libraries/import.lib.php:1106 libraries/messages.inc.php:359 msgid "Go to table" msgstr "" -#: libraries/import.lib.php:1109 libraries/messages.inc.php:1047 +#: libraries/import.lib.php:1109 libraries/messages.inc.php:1043 #, fuzzy msgid "structure" msgstr "Egitura" -#: libraries/import.lib.php:1115 libraries/messages.inc.php:364 +#: libraries/import.lib.php:1115 libraries/messages.inc.php:360 msgid "Go to view" msgstr "" #: libraries/import/csv.php:58 libraries/import/csv.php:70 #: libraries/import/csv.php:74 libraries/import/csv.php:78 -#: libraries/messages.inc.php:442 +#: libraries/messages.inc.php:438 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "" -#: libraries/import/csv.php:59 libraries/messages.inc.php:323 +#: libraries/import/csv.php:59 libraries/messages.inc.php:319 msgid "Fields terminated by" msgstr "Eremuak honekin bukatuak:" -#: libraries/import/csv.php:71 libraries/messages.inc.php:320 +#: libraries/import/csv.php:71 libraries/messages.inc.php:316 msgid "Fields enclosed by" msgstr "Eremuak honekin mugatuta:" -#: libraries/import/csv.php:75 libraries/messages.inc.php:321 +#: libraries/import/csv.php:75 libraries/messages.inc.php:317 msgid "Fields escaped by" msgstr "Eremuak escaped by:" -#: libraries/import/csv.php:79 libraries/messages.inc.php:481 +#: libraries/import/csv.php:79 libraries/messages.inc.php:477 msgid "Lines terminated by" msgstr "Honetan bukatutako lerroak: " -#: libraries/import/csv.php:119 libraries/messages.inc.php:439 +#: libraries/import/csv.php:119 libraries/messages.inc.php:435 #, php-format msgid "Invalid column (%s) specified!" msgstr "" #: libraries/import/csv.php:177 libraries/import/csv.php:424 -#: libraries/messages.inc.php:441 +#: libraries/messages.inc.php:437 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/import/csv.php:312 libraries/messages.inc.php:440 +#: libraries/import/csv.php:312 libraries/messages.inc.php:436 #, php-format msgid "Invalid field count in CSV input on line %d." msgstr "" -#: libraries/import/ldi.php:55 libraries/messages.inc.php:446 +#: libraries/import/ldi.php:55 libraries/messages.inc.php:442 msgid "This plugin does not support compressed imports!" msgstr "" #: libraries/import/xml.php:74 libraries/import/xml.php:130 -#: libraries/messages.inc.php:1247 +#: libraries/messages.inc.php:1243 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -2962,330 +2972,320 @@ msgstr "" msgid "ltr" msgstr "ltr" -#. l10n: Thousands separator -#: libraries/messages.inc.php:21 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: libraries/messages.inc.php:23 -msgid "." -msgstr "." - -#: libraries/messages.inc.php:25 server_status.php:461 +#: libraries/messages.inc.php:21 server_status.php:461 msgid "Aborted" msgstr "Deuseztatua" -#: libraries/messages.inc.php:28 main.php:68 +#: libraries/messages.inc.php:24 main.php:68 msgid "Actions" msgstr "Ekintzak" -#: libraries/messages.inc.php:34 libraries/tbl_properties.inc.php:780 +#: libraries/messages.inc.php:30 libraries/tbl_properties.inc.php:780 #: tbl_structure.php:543 #, php-format msgid "Add %s field(s)" msgstr "Gehitu %s zutabe" -#: libraries/messages.inc.php:35 +#: libraries/messages.inc.php:31 msgid "Add custom comment into header (\\n splits lines)" msgstr "" -#: libraries/messages.inc.php:36 +#: libraries/messages.inc.php:32 msgid "Add into comments" msgstr "Iruzkinetan gehitu" -#: libraries/messages.inc.php:37 tbl_structure.php:541 +#: libraries/messages.inc.php:33 tbl_structure.php:541 msgid "Add new field" msgstr "Eremu berria gehitu" -#: libraries/messages.inc.php:38 server_privileges.php:1886 +#: libraries/messages.inc.php:34 server_privileges.php:1886 msgid "Add privileges on the following database" msgstr "Pribilegioak gehitu datu-base honetan" -#: libraries/messages.inc.php:39 server_privileges.php:1907 +#: libraries/messages.inc.php:35 server_privileges.php:1907 msgid "Add privileges on the following table" msgstr "Pribilegioak gehitu taula honetan " -#: libraries/messages.inc.php:40 tbl_select.php:288 +#: libraries/messages.inc.php:36 tbl_select.php:288 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Bilatzeko baldintzak txertatu (\"where\" klausularen gorputza):" -#: libraries/messages.inc.php:41 tbl_indexes.php:251 +#: libraries/messages.inc.php:37 tbl_indexes.php:251 #, php-format msgid "Add to index  %s column(s)" msgstr " %s  zutabe indizean gehituta" -#: libraries/messages.inc.php:42 server_privileges.php:1570 +#: libraries/messages.inc.php:38 server_privileges.php:1570 #: server_privileges.php:1594 server_privileges.php:1988 #: server_privileges.php:2177 msgid "Add a new User" msgstr "Erabiltzaile berria gehitu" -#: libraries/messages.inc.php:43 server_privileges.php:931 +#: libraries/messages.inc.php:39 server_privileges.php:931 msgid "You have added a new user." msgstr "Erabiltzaile berria gehitu duzu." -#: libraries/messages.inc.php:44 server_privileges.php:571 +#: libraries/messages.inc.php:40 server_privileges.php:571 msgid "Administration" msgstr "Kudeaketa" -#: libraries/messages.inc.php:45 tbl_structure.php:557 +#: libraries/messages.inc.php:41 tbl_structure.php:557 #, php-format msgid "After %s" msgstr "%s(a)ren ondoren" -#: libraries/messages.inc.php:46 tbl_change.php:1147 +#: libraries/messages.inc.php:42 tbl_change.php:1147 msgid "Go back to previous page" msgstr "Itzuli" -#: libraries/messages.inc.php:47 tbl_change.php:1148 +#: libraries/messages.inc.php:43 tbl_change.php:1148 msgid "Insert another new row" msgstr "Erregistro berria gehitu" -#: libraries/messages.inc.php:48 tbl_change.php:1160 +#: libraries/messages.inc.php:44 tbl_change.php:1160 msgid "Edit next row" msgstr "Editatu hurrengo lerroa" -#: libraries/messages.inc.php:49 tbl_change.php:1152 +#: libraries/messages.inc.php:45 tbl_change.php:1152 msgid "Go back to this page" msgstr "Egin atzera orri honetara" -#: libraries/messages.inc.php:50 querywindow.php:115 +#: libraries/messages.inc.php:46 querywindow.php:115 msgid "All" msgstr "Guztiak" -#: libraries/messages.inc.php:53 tbl_operations.php:249 +#: libraries/messages.inc.php:49 tbl_operations.php:249 msgid "Alter table order by" msgstr "Taularen \"Order By\" aldatu" -#: libraries/messages.inc.php:54 tbl_operations.php:660 +#: libraries/messages.inc.php:50 tbl_operations.php:660 msgid "Analyze" msgstr "Aztertu" -#: libraries/messages.inc.php:57 +#: libraries/messages.inc.php:53 msgid "and" msgstr "eta" -#: libraries/messages.inc.php:59 pmd_general.php:87 +#: libraries/messages.inc.php:55 pmd_general.php:87 msgid "Angular links" msgstr "Esteka angularrak" -#: libraries/messages.inc.php:60 tbl_structure.php:401 tbl_structure.php:415 +#: libraries/messages.inc.php:56 tbl_structure.php:401 tbl_structure.php:415 #: tbl_structure.php:429 #, php-format msgid "An index has been added on %s" msgstr "Indize bat gehitu gehitu zaio %s-(r)i" -#: libraries/messages.inc.php:61 server_privileges.php:1521 +#: libraries/messages.inc.php:57 server_privileges.php:1521 #: server_privileges.php:2123 msgid "Any" msgstr "Edozein" -#: libraries/messages.inc.php:62 libraries/replication_gui.lib.php:298 +#: libraries/messages.inc.php:58 libraries/replication_gui.lib.php:298 #: server_privileges.php:725 msgid "Any host" msgstr "Edozein ostalari" -#: libraries/messages.inc.php:63 libraries/replication_gui.lib.php:250 +#: libraries/messages.inc.php:59 libraries/replication_gui.lib.php:250 #: server_privileges.php:677 msgid "Any user" msgstr "Edozein erabiltzaile" -#: libraries/messages.inc.php:64 server_synchronize.php:449 +#: libraries/messages.inc.php:60 server_synchronize.php:449 #: server_synchronize.php:894 msgid "Apply Selected Changes" msgstr "Aplikatu aukeratutako aldaketak" -#: libraries/messages.inc.php:66 tbl_structure.php:386 +#: libraries/messages.inc.php:62 tbl_structure.php:386 #, php-format msgid "A primary key has been added on %s" msgstr "Lehen mailako gakoa gehitu zaio %s-(r)i" -#: libraries/messages.inc.php:67 libraries/mysql_charsets.lib.php:368 +#: libraries/messages.inc.php:63 libraries/mysql_charsets.lib.php:368 msgid "Arabic" msgstr "Arabiera" -#: libraries/messages.inc.php:68 libraries/mysql_charsets.lib.php:359 +#: libraries/messages.inc.php:64 libraries/mysql_charsets.lib.php:359 msgid "Armenian" msgstr "Armeniera" -#: libraries/messages.inc.php:70 libraries/tbl_properties.inc.php:394 +#: libraries/messages.inc.php:66 libraries/tbl_properties.inc.php:394 msgid "As defined:" msgstr "Honela definitua:" -#: libraries/messages.inc.php:71 tbl_structure.php:556 +#: libraries/messages.inc.php:67 tbl_structure.php:556 msgid "At Beginning of Table" msgstr "Taularen hasieran" -#: libraries/messages.inc.php:72 tbl_structure.php:555 +#: libraries/messages.inc.php:68 tbl_structure.php:555 msgid "At End of Table" msgstr "Taularen amaieran" -#: libraries/messages.inc.php:73 libraries/tbl_properties.inc.php:108 +#: libraries/messages.inc.php:69 libraries/tbl_properties.inc.php:108 #: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:144 #: tbl_structure.php:180 msgid "Attributes" msgstr "Atributuak" -#: libraries/messages.inc.php:74 pdf_pages.php:303 pdf_pages.php:306 +#: libraries/messages.inc.php:70 pdf_pages.php:303 pdf_pages.php:306 msgid "Automatic layout" msgstr "Diseinu automatikoa" -#: libraries/messages.inc.php:77 libraries/mysql_charsets.lib.php:354 +#: libraries/messages.inc.php:73 libraries/mysql_charsets.lib.php:354 msgid "Baltic" msgstr "Baltikera" -#: libraries/messages.inc.php:78 libraries/sqlparser.lib.php:175 +#: libraries/messages.inc.php:74 libraries/sqlparser.lib.php:175 msgid "BEGIN CUT" msgstr "EBAKINAREN HASIERA" -#: libraries/messages.inc.php:79 libraries/sqlparser.lib.php:179 +#: libraries/messages.inc.php:75 libraries/sqlparser.lib.php:179 msgid "BEGIN RAW" msgstr "IRAULKETAREN HASIERA" -#: libraries/messages.inc.php:80 libraries/mysql_charsets.lib.php:201 +#: libraries/messages.inc.php:76 libraries/mysql_charsets.lib.php:201 #: libraries/mysql_charsets.lib.php:402 tbl_change.php:518 msgid "Binary" msgstr " Binarioa " -#: libraries/messages.inc.php:81 tbl_change.php:894 +#: libraries/messages.inc.php:77 tbl_change.php:894 msgid "Binary - do not edit" msgstr " Binarioa - ez editatu! " -#: libraries/messages.inc.php:82 libraries/server_links.inc.php:76 +#: libraries/messages.inc.php:78 libraries/server_links.inc.php:76 #: server_binlog.php:110 server_status.php:253 test/theme.php:121 #, fuzzy msgid "Binary log" msgstr " Binarioa " -#: libraries/messages.inc.php:83 server_binlog.php:217 +#: libraries/messages.inc.php:79 server_binlog.php:217 #, fuzzy msgid "Event type" msgstr "Esportazio mota" -#: libraries/messages.inc.php:84 server_binlog.php:220 +#: libraries/messages.inc.php:80 server_binlog.php:220 #, fuzzy msgid "Information" msgstr "Saioa hasteko informazioa" -#: libraries/messages.inc.php:85 server_binlog.php:215 +#: libraries/messages.inc.php:81 server_binlog.php:215 msgid "Log name" msgstr "" -#: libraries/messages.inc.php:86 server_binlog.php:219 +#: libraries/messages.inc.php:82 server_binlog.php:219 msgid "Original position" msgstr "" -#: libraries/messages.inc.php:87 server_binlog.php:216 +#: libraries/messages.inc.php:83 server_binlog.php:216 msgid "Position" msgstr "" -#: libraries/messages.inc.php:88 libraries/replication_gui.lib.php:169 +#: libraries/messages.inc.php:84 libraries/replication_gui.lib.php:169 #: server_binlog.php:218 #, fuzzy msgid "Server ID" msgstr "Zerbitzaria" -#: libraries/messages.inc.php:92 +#: libraries/messages.inc.php:88 #, fuzzy msgctxt "$strBLOBRepositoryDisabled" msgid "Disabled" msgstr "Ezgaituta" -#: libraries/messages.inc.php:95 +#: libraries/messages.inc.php:91 #, fuzzy msgctxt "$strBLOBRepositoryEnabled" msgid "Enabled" msgstr "Gaituta" -#: libraries/messages.inc.php:97 tbl_change.php:888 +#: libraries/messages.inc.php:93 tbl_change.php:888 msgid "Remove BLOB Repository Reference" msgstr "" -#: libraries/messages.inc.php:98 +#: libraries/messages.inc.php:94 #, fuzzy msgctxt "$strBLOBRepositoryRepair" msgid "Repair" msgstr "Taula konpondu" -#: libraries/messages.inc.php:99 tbl_change.php:987 +#: libraries/messages.inc.php:95 tbl_change.php:987 msgid "Upload to BLOB repository" msgstr "" -#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:359 +#: libraries/messages.inc.php:96 libraries/sql_query_form.lib.php:359 #: sql.php:677 msgid "Let every user access this bookmark" msgstr "Gogokoen erregistro hau edozein erabiltzailearentzat erabilgarri " -#: libraries/messages.inc.php:103 sql.php:671 +#: libraries/messages.inc.php:99 sql.php:671 msgid "Label" msgstr "Etiketa" -#: libraries/messages.inc.php:104 libraries/sql_query_form.lib.php:433 +#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:433 msgid "Bookmarked SQL query" msgstr "Kontsulta gogokoetan gordea" -#: libraries/messages.inc.php:105 libraries/sql_query_form.lib.php:365 +#: libraries/messages.inc.php:101 libraries/sql_query_form.lib.php:365 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/messages.inc.php:106 libraries/sql_query_form.lib.php:352 +#: libraries/messages.inc.php:102 libraries/sql_query_form.lib.php:352 #: sql.php:665 sql.php:666 sql.php:683 msgid "Bookmark this SQL query" msgstr "Kontsulta hau gogokoetan gorde" -#: libraries/messages.inc.php:107 libraries/sql_query_form.lib.php:466 +#: libraries/messages.inc.php:103 libraries/sql_query_form.lib.php:466 msgid "View only" msgstr "Soilik ikusi" -#: libraries/messages.inc.php:109 tbl_structure.php:161 +#: libraries/messages.inc.php:105 tbl_structure.php:161 msgid "Browse distinct values" msgstr "" -#: libraries/messages.inc.php:110 tbl_change.php:252 tbl_select.php:27 +#: libraries/messages.inc.php:106 tbl_change.php:252 tbl_select.php:27 #: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34 msgid "Browse foreign values" msgstr "" -#: libraries/messages.inc.php:118 libraries/mysql_charsets.lib.php:213 +#: libraries/messages.inc.php:114 libraries/mysql_charsets.lib.php:213 msgid "Bulgarian" msgstr "Bulgariera" -#: libraries/messages.inc.php:120 +#: libraries/messages.inc.php:116 msgid "\"bzipped\"" msgstr "\"Bzip-ez trinkotua\"" -#: libraries/messages.inc.php:122 +#: libraries/messages.inc.php:118 msgid "Calendar" msgstr "" -#: libraries/messages.inc.php:129 tbl_indexes.php:75 +#: libraries/messages.inc.php:125 tbl_indexes.php:75 msgid "Can't rename index to PRIMARY!" msgstr "Ezinezkoa indizearen izena ¡PRIMARY! berrizendatzea" -#: libraries/messages.inc.php:132 libraries/mysql_charsets.lib.php:223 +#: libraries/messages.inc.php:128 libraries/mysql_charsets.lib.php:223 #: libraries/mysql_charsets.lib.php:409 msgid "case-insensitive" msgstr "Maiuskulak ez ditu bereizten" -#: libraries/messages.inc.php:133 libraries/mysql_charsets.lib.php:226 +#: libraries/messages.inc.php:129 libraries/mysql_charsets.lib.php:226 #: libraries/mysql_charsets.lib.php:411 msgid "case-sensitive" msgstr "Maiuskulak bereizten ditu" -#: libraries/messages.inc.php:134 libraries/mysql_charsets.lib.php:332 +#: libraries/messages.inc.php:130 libraries/mysql_charsets.lib.php:332 msgid "Central European" msgstr "Erdialdeko europearra" -#: libraries/messages.inc.php:136 server_privileges.php:1969 +#: libraries/messages.inc.php:132 server_privileges.php:1969 msgid "... keep the old one." msgstr "... mantendu aurrekoa." -#: libraries/messages.inc.php:137 server_privileges.php:1967 +#: libraries/messages.inc.php:133 server_privileges.php:1967 msgid "Create a new user with the same privileges and ..." msgstr "Erabiltzaile berri bat sortu pribilegio berdinekin eta ..." -#: libraries/messages.inc.php:138 server_privileges.php:1972 +#: libraries/messages.inc.php:134 server_privileges.php:1972 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -3293,115 +3293,115 @@ msgstr "" " ... zaharra ezabatu erabiltzaileen tauletatik eta ondoren berkargatu " "pribilegioak." -#: libraries/messages.inc.php:139 server_privileges.php:1970 +#: libraries/messages.inc.php:135 server_privileges.php:1970 msgid " ... delete the old one from the user tables." msgstr " ... zaharra ezabatu erabiltzaileen tauletatik." -#: libraries/messages.inc.php:140 server_privileges.php:1971 +#: libraries/messages.inc.php:136 server_privileges.php:1971 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "" " ... zaharraren pribilegio aktibo guztiak errebokatu eta ondoren ezabatu." -#: libraries/messages.inc.php:141 server_privileges.php:1964 +#: libraries/messages.inc.php:137 server_privileges.php:1964 msgid "Change Login Information / Copy User" msgstr "Aldatu saioa hasteko informazioa / Erabiltzailea kopiatu" -#: libraries/messages.inc.php:144 libraries/mysql_charsets.lib.php:107 +#: libraries/messages.inc.php:140 libraries/mysql_charsets.lib.php:107 msgid "Charset" msgstr "Karaktere-jokoa" -#: libraries/messages.inc.php:146 server_collations.php:40 +#: libraries/messages.inc.php:142 server_collations.php:40 msgid "Character Sets and Collations" msgstr "Karaktere-multzoak eta ordenamenduak" -#: libraries/messages.inc.php:147 libraries/server_links.inc.php:57 +#: libraries/messages.inc.php:143 libraries/server_links.inc.php:57 #: test/theme.php:109 msgid "Charsets" msgstr "Karaktere-multzoa" -#: libraries/messages.inc.php:149 tbl_operations.php:661 +#: libraries/messages.inc.php:145 tbl_operations.php:661 #, fuzzy msgid "Check" msgstr "Txekiera" -#: libraries/messages.inc.php:151 server_databases.php:293 +#: libraries/messages.inc.php:147 server_databases.php:293 #: server_databases.php:294 msgid "Check Privileges" msgstr "Pribilegioak egiaztatu" -#: libraries/messages.inc.php:152 server_databases.php:289 +#: libraries/messages.inc.php:148 server_databases.php:289 #, php-format msgid "Check privileges for database "%s"." msgstr ""%s" datu-basearen pribilegioak egiaztatu." -#: libraries/messages.inc.php:154 pdf_pages.php:261 +#: libraries/messages.inc.php:150 pdf_pages.php:261 msgid "Please choose a page to edit" msgstr "Aukeratu editatzeko orria mesedez" -#: libraries/messages.inc.php:157 +#: libraries/messages.inc.php:153 msgid "Displaying Column Comments" msgstr "Zutabearen iruzkinak erakusten" -#: libraries/messages.inc.php:159 pdf_pages.php:483 view_create.php:148 +#: libraries/messages.inc.php:155 pdf_pages.php:483 view_create.php:148 msgid "Column names" msgstr "Zutabe izenak" -#: libraries/messages.inc.php:160 server_privileges.php:1685 +#: libraries/messages.inc.php:156 server_privileges.php:1685 msgid "Column-specific privileges" msgstr "Zutabearen pribilegio espezifikoak" -#: libraries/messages.inc.php:164 +#: libraries/messages.inc.php:160 msgid "MySQL 4.0 compatible" msgstr "" -#: libraries/messages.inc.php:165 +#: libraries/messages.inc.php:161 msgid "Complete inserts" msgstr "\"Insert\"ak osatu" -#: libraries/messages.inc.php:168 +#: libraries/messages.inc.php:164 #, php-format msgid "Could not load default configuration from: \"%1$s\"" msgstr "" -#: libraries/messages.inc.php:169 main.php:306 +#: libraries/messages.inc.php:165 main.php:306 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: libraries/messages.inc.php:171 pdf_schema.php:672 +#: libraries/messages.inc.php:167 pdf_schema.php:672 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Mesedez, %s taularentzako koordinatuak konfiguratu" -#: libraries/messages.inc.php:173 server_status.php:433 +#: libraries/messages.inc.php:169 server_status.php:433 msgid "Connections" msgstr "Konexioak" -#: libraries/messages.inc.php:179 tbl_operations.php:509 +#: libraries/messages.inc.php:175 tbl_operations.php:509 msgid "Copy table to (database.table):" msgstr "Taula hona kopiatu: (datu-base.taula):" -#: libraries/messages.inc.php:180 tbl_move_copy.php:58 +#: libraries/messages.inc.php:176 tbl_move_copy.php:58 #, php-format msgid "Table %s has been copied to %s." msgstr "%s taula hona kopiatua izan da: %s." -#: libraries/messages.inc.php:181 tbl_move_copy.php:48 +#: libraries/messages.inc.php:177 tbl_move_copy.php:48 msgid "Can't copy table to same one!" msgstr "Ezinezkoa da taula berberera kopiatzea!" -#: libraries/messages.inc.php:182 server_synchronize.php:94 +#: libraries/messages.inc.php:178 server_synchronize.php:94 msgid "Could not connect to the source" msgstr "" -#: libraries/messages.inc.php:183 server_synchronize.php:97 +#: libraries/messages.inc.php:179 server_synchronize.php:97 msgid "Could not connect to the target" msgstr "" -#: libraries/messages.inc.php:184 server_processlist.php:24 +#: libraries/messages.inc.php:180 server_processlist.php:24 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -3409,135 +3409,135 @@ msgstr "" "phpMyAdmin-ek ezin izan du %s haria deuseztatu. Seguruena aurretik itxia " "izatea." -#: libraries/messages.inc.php:187 +#: libraries/messages.inc.php:183 #, php-format msgid "Create an index on %s columns" msgstr "Indize bat sortu  %s  zutabetan" -#: libraries/messages.inc.php:188 tbl_indexes.php:160 +#: libraries/messages.inc.php:184 tbl_indexes.php:160 msgid "Create a new index" msgstr "Indize berri bat sortu" -#: libraries/messages.inc.php:191 pdf_pages.php:297 pmd_pdf.php:114 +#: libraries/messages.inc.php:187 pdf_pages.php:297 pmd_pdf.php:114 msgid "Create a page" msgstr "Orri berri bat sortu" -#: libraries/messages.inc.php:192 +#: libraries/messages.inc.php:188 msgid "Creation of PDFs" msgstr "PDF-en sorrera" -#: libraries/messages.inc.php:193 pmd_general.php:74 pmd_general.php:306 +#: libraries/messages.inc.php:189 pmd_general.php:74 pmd_general.php:306 msgid "Create relation" msgstr "" -#: libraries/messages.inc.php:194 pmd_general.php:71 +#: libraries/messages.inc.php:190 pmd_general.php:71 #: server_synchronize.php:429 server_synchronize.php:872 #, fuzzy msgid "Create table" msgstr "Orri berri bat sortu" -#: libraries/messages.inc.php:195 +#: libraries/messages.inc.php:191 #, fuzzy msgctxt "$strCreateTableShort" msgid "Create table" msgstr "Orri berri bat sortu" -#: libraries/messages.inc.php:196 server_privileges.php:1994 +#: libraries/messages.inc.php:192 server_privileges.php:1994 msgid "Database for user" msgstr "" -#: libraries/messages.inc.php:197 server_privileges.php:1999 +#: libraries/messages.inc.php:193 server_privileges.php:1999 msgid "Create database with same name and grant all privileges" msgstr "" -#: libraries/messages.inc.php:198 +#: libraries/messages.inc.php:194 #, fuzzy msgctxt "$strCreateUserDatabaseNone" msgid "None" msgstr "Batez" -#: libraries/messages.inc.php:199 server_privileges.php:2003 +#: libraries/messages.inc.php:195 server_privileges.php:2003 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr ""%s" datu-basearen pribilegioak egiaztatu." -#: libraries/messages.inc.php:200 server_privileges.php:2000 +#: libraries/messages.inc.php:196 server_privileges.php:2000 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: libraries/messages.inc.php:201 +#: libraries/messages.inc.php:197 msgid "Creation/Update/Check dates" msgstr "Sortu/Eguneratu/Egiaztatu datak" -#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:229 +#: libraries/messages.inc.php:199 libraries/mysql_charsets.lib.php:229 msgid "Croatian" msgstr "Croaziera" -#: libraries/messages.inc.php:204 +#: libraries/messages.inc.php:200 msgid "CSV" msgstr "CSV datuak" -#: libraries/messages.inc.php:205 libraries/server_synchronize.lib.php:1343 +#: libraries/messages.inc.php:201 libraries/server_synchronize.lib.php:1343 #: libraries/server_synchronize.lib.php:1369 msgid "Current server" msgstr "" -#: libraries/messages.inc.php:206 main.php:159 +#: libraries/messages.inc.php:202 main.php:159 msgid "Custom color" msgstr "" -#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:365 +#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:365 msgid "Cyrillic" msgstr "Zirilikoa" -#: libraries/messages.inc.php:208 libraries/mysql_charsets.lib.php:232 +#: libraries/messages.inc.php:204 libraries/mysql_charsets.lib.php:232 msgid "Czech" msgstr "Txekiera" -#: libraries/messages.inc.php:209 libraries/mysql_charsets.lib.php:383 +#: libraries/messages.inc.php:205 libraries/mysql_charsets.lib.php:383 msgid "Czech-Slovak" msgstr "" -#: libraries/messages.inc.php:211 libraries/mysql_charsets.lib.php:235 +#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:235 msgid "Danish" msgstr "Danesa" -#: libraries/messages.inc.php:214 +#: libraries/messages.inc.php:210 msgid "Database export options" msgstr "Datu-basea esportatzeko aukerak" -#: libraries/messages.inc.php:217 server_synchronize.php:122 +#: libraries/messages.inc.php:213 server_synchronize.php:122 #: server_synchronize.php:125 tbl_create.php:82 tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "" -#: libraries/messages.inc.php:219 server_databases.php:63 +#: libraries/messages.inc.php:215 server_databases.php:63 #, php-format msgid "%s databases have been dropped successfully." msgstr "%s datu-base arrakastaz ezabatu dira." -#: libraries/messages.inc.php:220 libraries/server_synchronize.lib.php:1341 +#: libraries/messages.inc.php:216 libraries/server_synchronize.lib.php:1341 #: server_synchronize.php:1110 #, fuzzy msgid "Source database" msgstr "Datu-basean bilatu" -#: libraries/messages.inc.php:221 server_databases.php:88 +#: libraries/messages.inc.php:217 server_databases.php:88 msgid "Databases statistics" msgstr "Datu-baseen estatistikak" -#: libraries/messages.inc.php:222 server_databases.php:362 +#: libraries/messages.inc.php:218 server_databases.php:362 #: server_databases.php:363 msgid "Disable Statistics" msgstr "Estatistikak ezgaitu" -#: libraries/messages.inc.php:223 server_databases.php:358 +#: libraries/messages.inc.php:219 server_databases.php:358 #: server_databases.php:359 msgid "Enable Statistics" msgstr "Estatistikak gaitu" -#: libraries/messages.inc.php:224 server_databases.php:366 +#: libraries/messages.inc.php:220 server_databases.php:366 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -3545,31 +3545,31 @@ msgstr "" "Oharra: Datu-basearen estatistikak hemen gaituz gero web-zerbitzaria eta " "MySQL-arenaren arteko trafiko handia sor liteke." -#: libraries/messages.inc.php:225 libraries/server_synchronize.lib.php:1367 +#: libraries/messages.inc.php:221 libraries/server_synchronize.lib.php:1367 #: server_synchronize.php:1112 #, fuzzy msgid "Target database" msgstr "Datu-basean bilatu" -#: libraries/messages.inc.php:228 server_synchronize.php:425 +#: libraries/messages.inc.php:224 server_synchronize.php:425 #: server_synchronize.php:868 msgid "Data Difference" msgstr "" -#: libraries/messages.inc.php:231 server_synchronize.php:272 +#: libraries/messages.inc.php:227 server_synchronize.php:272 msgid "Data Synchronization" msgstr "" -#: libraries/messages.inc.php:235 server_privileges.php:526 +#: libraries/messages.inc.php:231 server_privileges.php:526 #: server_privileges.php:1679 msgid "Database-specific privileges" msgstr "Datu-basearen pribilegio espezifikoak" -#: libraries/messages.inc.php:237 server_privileges.php:2136 +#: libraries/messages.inc.php:233 server_privileges.php:2136 msgid "database-specific" msgstr "Datubasearentzat espezifikoa" -#: libraries/messages.inc.php:240 libraries/tbl_properties.inc.php:106 +#: libraries/messages.inc.php:236 libraries/tbl_properties.inc.php:106 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" @@ -3577,32 +3577,32 @@ msgstr "" "Lehenetsitako balioak erabiltzeko, mesedez sartu balio bakar bat, komatxo " "edota alderantzikaturiko barrarik gabe, formato hau erabiliz: a" -#: libraries/messages.inc.php:241 tbl_operations.php:589 +#: libraries/messages.inc.php:237 tbl_operations.php:589 msgid "Defragment table" msgstr "" -#: libraries/messages.inc.php:242 +#: libraries/messages.inc.php:238 msgid "Use delayed inserts" msgstr "Use delayed inserts" -#: libraries/messages.inc.php:245 server_privileges.php:1243 +#: libraries/messages.inc.php:241 server_privileges.php:1243 msgid "No users selected for deleting!" msgstr "" -#: libraries/messages.inc.php:246 pmd_general.php:372 +#: libraries/messages.inc.php:242 pmd_general.php:372 msgid "Delete relation" msgstr "" -#: libraries/messages.inc.php:248 server_privileges.php:1232 +#: libraries/messages.inc.php:244 server_privileges.php:1232 #, php-format msgid "Deleting %s" msgstr "%s ezabatzen" -#: libraries/messages.inc.php:249 libraries/sql_query_form.lib.php:388 +#: libraries/messages.inc.php:245 libraries/sql_query_form.lib.php:388 msgid "Delimiter" msgstr "" -#: libraries/messages.inc.php:250 pdf_pages.php:506 +#: libraries/messages.inc.php:246 pdf_pages.php:506 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -3610,151 +3610,151 @@ msgstr "" "Orri honek existitzen ez diren taulekiko erreferentziak dauzka. " "Erreferentziok ezabatu nahi al dituzu?" -#: libraries/messages.inc.php:254 pmd_help.php:29 +#: libraries/messages.inc.php:250 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." msgstr "" -#: libraries/messages.inc.php:256 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:252 libraries/mysql_charsets.lib.php:247 msgid "dictionary" msgstr "hiztegia" -#: libraries/messages.inc.php:257 libraries/server_synchronize.lib.php:1348 +#: libraries/messages.inc.php:253 libraries/server_synchronize.lib.php:1348 msgid "Difference" msgstr "" -#: libraries/messages.inc.php:258 pmd_general.php:87 +#: libraries/messages.inc.php:254 pmd_general.php:87 msgid "Direct links" msgstr "" -#: libraries/messages.inc.php:261 +#: libraries/messages.inc.php:257 msgid "Disable foreign key checks" msgstr "" -#: libraries/messages.inc.php:262 +#: libraries/messages.inc.php:258 msgid "Display Features" msgstr "Eginbideak erakutsi" -#: libraries/messages.inc.php:263 tbl_select.php:301 +#: libraries/messages.inc.php:259 tbl_select.php:301 msgid "Display order:" msgstr "Ordena erakutsi:" -#: libraries/messages.inc.php:265 tbl_select.php:132 +#: libraries/messages.inc.php:261 tbl_select.php:132 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "\"Adibide moduan\" kontsulta bat egin (komodina: \"%\")" -#: libraries/messages.inc.php:266 +#: libraries/messages.inc.php:262 msgid "DocSQL" msgstr "" -#: libraries/messages.inc.php:268 +#: libraries/messages.inc.php:264 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/messages.inc.php:273 server_privileges.php:1579 +#: libraries/messages.inc.php:269 server_privileges.php:1579 #: server_privileges.php:1580 server_privileges.php:1581 msgid "Drop the databases that have the same names as the users." msgstr "Erabiltzaileen izen berdina duten datu-baseak ezabatu." -#: libraries/messages.inc.php:278 tbl_printview.php:382 tbl_structure.php:743 +#: libraries/messages.inc.php:274 tbl_printview.php:382 tbl_structure.php:743 msgid "dynamic" msgstr "dinamikoa" -#: libraries/messages.inc.php:282 server_privileges.php:1324 +#: libraries/messages.inc.php:278 server_privileges.php:1324 #: server_privileges.php:1610 msgid "Edit Privileges" msgstr "Editatu Pribilegioak" -#: libraries/messages.inc.php:283 tbl_printview.php:341 tbl_structure.php:688 +#: libraries/messages.inc.php:279 tbl_printview.php:341 tbl_structure.php:688 msgid "Effective" msgstr "Eraginkorra" -#: libraries/messages.inc.php:286 libraries/relation.lib.php:100 +#: libraries/messages.inc.php:282 libraries/relation.lib.php:100 msgid "Enabled" msgstr "Gaituta" -#: libraries/messages.inc.php:287 +#: libraries/messages.inc.php:283 msgid "Enclose export in a transaction" msgstr "" -#: libraries/messages.inc.php:288 libraries/sqlparser.lib.php:177 +#: libraries/messages.inc.php:284 libraries/sqlparser.lib.php:177 msgid "END CUT" msgstr "EBAKINAREN AMAIERA" -#: libraries/messages.inc.php:290 libraries/sqlparser.lib.php:183 +#: libraries/messages.inc.php:286 libraries/sqlparser.lib.php:183 msgid "END RAW" msgstr "IRAULKETAREN AMAIERA" -#: libraries/messages.inc.php:293 libraries/server_links.inc.php:61 +#: libraries/messages.inc.php:289 libraries/server_links.inc.php:61 #: test/theme.php:113 msgid "Engines" msgstr "" -#: libraries/messages.inc.php:295 libraries/mysql_charsets.lib.php:238 +#: libraries/messages.inc.php:291 libraries/mysql_charsets.lib.php:238 msgid "English" msgstr "Ingelesa" -#: libraries/messages.inc.php:296 server_privileges.php:393 +#: libraries/messages.inc.php:292 server_privileges.php:393 #: server_privileges.php:535 server_privileges.php:1501 msgid " Note: MySQL privilege names are expressed in English " msgstr " Oharra: MySQL-ren pribilegioen izenak ingelesez adierazita daude" -#: libraries/messages.inc.php:298 libraries/zip_extension.lib.php:49 +#: libraries/messages.inc.php:294 libraries/zip_extension.lib.php:49 #: libraries/zip_extension.lib.php:51 libraries/zip_extension.lib.php:66 msgid "Error in ZIP archive:" msgstr "" -#: libraries/messages.inc.php:303 libraries/mysql_charsets.lib.php:241 +#: libraries/messages.inc.php:299 libraries/mysql_charsets.lib.php:241 msgid "Esperanto" msgstr "" -#: libraries/messages.inc.php:304 libraries/mysql_charsets.lib.php:244 +#: libraries/messages.inc.php:300 libraries/mysql_charsets.lib.php:244 msgid "Estonian" msgstr "Estoniera" -#: libraries/messages.inc.php:305 libraries/tbl_triggers.lib.php:29 +#: libraries/messages.inc.php:301 libraries/tbl_triggers.lib.php:29 #, fuzzy msgid "Event" msgstr "Bidalita" -#: libraries/messages.inc.php:307 +#: libraries/messages.inc.php:303 msgid "Excel edition" msgstr "Excel edizioa" -#: libraries/messages.inc.php:311 pmd_pdf.php:85 +#: libraries/messages.inc.php:307 pmd_pdf.php:85 msgid "Export/Import to scale" msgstr "" -#: libraries/messages.inc.php:313 +#: libraries/messages.inc.php:309 msgid "Extended inserts" msgstr "\"insert\" hedatuak" -#: libraries/messages.inc.php:314 pdf_schema.php:1267 pdf_schema.php:1288 +#: libraries/messages.inc.php:310 pdf_schema.php:1267 pdf_schema.php:1288 #: tbl_printview.php:147 tbl_structure.php:183 tbl_tracking.php:278 msgid "Extra" msgstr "Extra" -#: libraries/messages.inc.php:316 server_status.php:447 +#: libraries/messages.inc.php:312 server_status.php:447 msgid "Failed attempts" msgstr "Erratutako saiakerak" -#: libraries/messages.inc.php:318 tbl_structure.php:375 +#: libraries/messages.inc.php:314 tbl_structure.php:375 #, php-format msgid "Field %s has been dropped" msgstr "%s eremua ezabatu da" -#: libraries/messages.inc.php:322 libraries/sql_query_form.lib.php:317 +#: libraries/messages.inc.php:318 libraries/sql_query_form.lib.php:317 msgid "Fields" msgstr "Eremuak" -#: libraries/messages.inc.php:332 server_binlog.php:136 +#: libraries/messages.inc.php:328 server_binlog.php:136 #, fuzzy msgid "Files" msgstr "Eremuak" -#: libraries/messages.inc.php:334 server_privileges.php:1597 +#: libraries/messages.inc.php:330 server_privileges.php:1597 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -3768,221 +3768,221 @@ msgstr "" "daitezke. Kasu honetan, jarraitu aurretik %spribilegioak berkargatu%s " "beharko zenituzke." -#: libraries/messages.inc.php:335 server_status.php:289 +#: libraries/messages.inc.php:331 server_status.php:289 msgid "Flush query cache" msgstr "" -#: libraries/messages.inc.php:336 +#: libraries/messages.inc.php:332 msgid "Flush the table (\"FLUSH\")" msgstr "Taularen cachea hustu (\"FLUSH\")" -#: libraries/messages.inc.php:337 server_status.php:271 +#: libraries/messages.inc.php:333 server_status.php:271 msgid "Flush (close) all tables" msgstr "" -#: libraries/messages.inc.php:339 tbl_relation.php:279 +#: libraries/messages.inc.php:335 tbl_relation.php:279 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" -#: libraries/messages.inc.php:341 setup/lib/messages.inc.php:88 +#: libraries/messages.inc.php:337 setup/lib/messages.inc.php:88 #: tbl_printview.php:376 tbl_structure.php:738 msgid "Format" msgstr "Formatoa" -#: libraries/messages.inc.php:344 server_replication.php:325 +#: libraries/messages.inc.php:340 server_replication.php:325 #, fuzzy msgid "Full start" msgstr "Testu osoa" -#: libraries/messages.inc.php:345 server_replication.php:325 +#: libraries/messages.inc.php:341 server_replication.php:325 msgid "Full stop" msgstr "" -#: libraries/messages.inc.php:347 tbl_change.php:282 tbl_change.php:320 +#: libraries/messages.inc.php:343 tbl_change.php:282 tbl_change.php:320 msgid "Function" msgstr "Funtzioak" -#: libraries/messages.inc.php:355 libraries/mysql_charsets.lib.php:377 +#: libraries/messages.inc.php:351 libraries/mysql_charsets.lib.php:377 #, fuzzy msgid "Georgian" msgstr "Alemaniera" -#: libraries/messages.inc.php:356 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:352 libraries/mysql_charsets.lib.php:247 #: libraries/mysql_charsets.lib.php:250 msgid "German" msgstr "Alemaniera" -#: libraries/messages.inc.php:357 themes.php:42 +#: libraries/messages.inc.php:353 themes.php:42 msgid "Get more themes!" msgstr "" -#: libraries/messages.inc.php:358 server_privileges.php:2134 +#: libraries/messages.inc.php:354 server_privileges.php:2134 msgid "global" msgstr "orokorra" -#: libraries/messages.inc.php:359 server_privileges.php:524 +#: libraries/messages.inc.php:355 server_privileges.php:524 #: server_privileges.php:1500 msgid "Global privileges" msgstr "Pribilegio orokorrak" -#: libraries/messages.inc.php:360 server_variables.php:55 +#: libraries/messages.inc.php:356 server_variables.php:55 #: server_variables.php:89 msgid "Global value" msgstr "Balio orokorra" -#: libraries/messages.inc.php:365 server_privileges.php:1502 +#: libraries/messages.inc.php:361 server_privileges.php:1502 #: server_privileges.php:1684 server_privileges.php:2033 msgid "Grant" msgstr "Baimendu" -#: libraries/messages.inc.php:366 libraries/mysql_charsets.lib.php:380 +#: libraries/messages.inc.php:362 libraries/mysql_charsets.lib.php:380 msgid "Greek" msgstr "Grekiera" -#: libraries/messages.inc.php:367 +#: libraries/messages.inc.php:363 msgid "\"gzipped\"" msgstr "\"gzip-ez trinkotuta\"" -#: libraries/messages.inc.php:369 server_status.php:250 +#: libraries/messages.inc.php:365 server_status.php:250 msgid "Handler" msgstr "" -#: libraries/messages.inc.php:370 server_synchronize.php:464 +#: libraries/messages.inc.php:366 server_synchronize.php:464 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: libraries/messages.inc.php:372 libraries/mysql_charsets.lib.php:374 +#: libraries/messages.inc.php:368 libraries/mysql_charsets.lib.php:374 msgid "Hebrew" msgstr "Hebreera" -#: libraries/messages.inc.php:373 pmd_general.php:83 +#: libraries/messages.inc.php:369 pmd_general.php:83 msgid "Help" msgstr "" -#: libraries/messages.inc.php:374 +#: libraries/messages.inc.php:370 msgid "Use hexadecimal for BLOB" msgstr "" -#: libraries/messages.inc.php:376 pmd_general.php:120 +#: libraries/messages.inc.php:372 pmd_general.php:120 #, fuzzy msgid "Hide/Show all" msgstr "Dena erakutsi" -#: libraries/messages.inc.php:377 pmd_general.php:124 +#: libraries/messages.inc.php:373 pmd_general.php:124 msgid "Hide/Show Tables with no relation" msgstr "" -#: libraries/messages.inc.php:378 libraries/navigation_header.inc.php:54 +#: libraries/messages.inc.php:374 libraries/navigation_header.inc.php:54 #: libraries/navigation_header.inc.php:57 #: libraries/navigation_header.inc.php:58 msgid "Home" msgstr "Hasiera-orria" -#: libraries/messages.inc.php:379 main.php:233 +#: libraries/messages.inc.php:375 main.php:233 msgid "Official Homepage" msgstr "phpMyAdmin-en webgune ofiziala" -#: libraries/messages.inc.php:382 libraries/replication_gui.lib.php:327 +#: libraries/messages.inc.php:378 libraries/replication_gui.lib.php:327 #: server_privileges.php:753 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/messages.inc.php:383 +#: libraries/messages.inc.php:379 msgid "Microsoft Word 2000" msgstr "" -#: libraries/messages.inc.php:384 libraries/mysql_charsets.lib.php:253 +#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:253 msgid "Hungarian" msgstr "Hungariera" -#: libraries/messages.inc.php:386 libraries/mysql_charsets.lib.php:256 +#: libraries/messages.inc.php:382 libraries/mysql_charsets.lib.php:256 msgid "Icelandic" msgstr "" -#: libraries/messages.inc.php:387 server_processlist.php:53 +#: libraries/messages.inc.php:383 server_processlist.php:53 msgid "ID" msgstr "ID" -#: libraries/messages.inc.php:388 libraries/mult_submits.inc.php:108 +#: libraries/messages.inc.php:384 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:479 msgid "Fulltext" msgstr "Testu osoa" -#: libraries/messages.inc.php:389 +#: libraries/messages.inc.php:385 msgid "Ignore duplicate rows" msgstr "" -#: libraries/messages.inc.php:390 tbl_change.php:302 tbl_indexes.php:200 +#: libraries/messages.inc.php:386 tbl_change.php:302 tbl_indexes.php:200 #: tbl_indexes.php:225 msgid "Ignore" msgstr "Ezikusi" -#: libraries/messages.inc.php:391 +#: libraries/messages.inc.php:387 #, fuzzy msgid "Use ignore inserts" msgstr "Use delayed inserts" -#: libraries/messages.inc.php:392 +#: libraries/messages.inc.php:388 msgid "Column names in first row" msgstr "" -#: libraries/messages.inc.php:393 +#: libraries/messages.inc.php:389 msgid "Do not import empty rows" msgstr "" -#: libraries/messages.inc.php:394 pmd_general.php:104 +#: libraries/messages.inc.php:390 pmd_general.php:104 msgid "Import/Export coordinates for PDF schema" msgstr "" -#: libraries/messages.inc.php:395 querywindow.php:104 +#: libraries/messages.inc.php:391 querywindow.php:104 msgid "Import files" msgstr "Fitxategiak inportatu" -#: libraries/messages.inc.php:403 +#: libraries/messages.inc.php:399 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/messages.inc.php:404 libraries/messages.inc.php:584 +#: libraries/messages.inc.php:400 libraries/messages.inc.php:580 msgid "Open Document Spreadsheet" msgstr "" -#: libraries/messages.inc.php:405 +#: libraries/messages.inc.php:401 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/messages.inc.php:409 +#: libraries/messages.inc.php:405 msgid "Excel 97-2003 XLS Workbook" msgstr "" -#: libraries/messages.inc.php:410 +#: libraries/messages.inc.php:406 msgid "Excel 2007 XLSX Workbook" msgstr "" -#: libraries/messages.inc.php:414 libraries/mult_submits.inc.php:98 +#: libraries/messages.inc.php:410 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:476 tbl_structure.php:674 msgid "Index" msgstr "Indizea" -#: libraries/messages.inc.php:415 tbl_indexes.php:168 +#: libraries/messages.inc.php:411 tbl_indexes.php:168 msgid "Index name:" msgstr "Indizearen izena :" -#: libraries/messages.inc.php:416 tbl_indexes.php:174 +#: libraries/messages.inc.php:412 tbl_indexes.php:174 msgid "Index type:" msgstr "Indize mota :" -#: libraries/messages.inc.php:417 sql.php:639 +#: libraries/messages.inc.php:413 sql.php:639 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: libraries/messages.inc.php:427 main.php:266 +#: libraries/messages.inc.php:423 main.php:266 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -3994,195 +3994,195 @@ msgstr "" "lehenetsitako balio hauekin ari da lanean; atzipen-saiakera arrotzei irekita " "beraz. Segurtasun-zulo hau konpondu beharko zenuke." -#: libraries/messages.inc.php:428 tbl_change.php:1130 +#: libraries/messages.inc.php:424 tbl_change.php:1130 msgid "Insert as new row" msgstr "Txertatu errenkada berri batean" -#: libraries/messages.inc.php:429 sql.php:496 tbl_replace.php:386 +#: libraries/messages.inc.php:425 sql.php:496 tbl_replace.php:386 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: libraries/messages.inc.php:430 tbl_change.php:1131 +#: libraries/messages.inc.php:426 tbl_change.php:1131 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/messages.inc.php:432 main.php:139 +#: libraries/messages.inc.php:428 main.php:139 msgid "Interface" msgstr "" -#: libraries/messages.inc.php:433 tbl_relation.php:407 +#: libraries/messages.inc.php:429 tbl_relation.php:407 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: libraries/messages.inc.php:435 pdf_pages.php:303 +#: libraries/messages.inc.php:431 pdf_pages.php:303 msgid "Internal relations" msgstr "Barne-erlazioak" -#: libraries/messages.inc.php:438 tbl_indexes.php:256 tbl_structure.php:590 +#: libraries/messages.inc.php:434 tbl_indexes.php:256 tbl_structure.php:590 #: tbl_structure.php:601 msgid "Column count has to be larger than zero." msgstr "" -#: libraries/messages.inc.php:444 libraries/tbl_properties.inc.php:784 +#: libraries/messages.inc.php:440 libraries/tbl_properties.inc.php:784 #: tbl_structure.php:537 msgid "You have to add at least one field." msgstr "" -#: libraries/messages.inc.php:449 +#: libraries/messages.inc.php:445 #, php-format msgid "Invalid server index: \"%s\"" msgstr "" -#: libraries/messages.inc.php:452 libraries/mysql_charsets.lib.php:259 +#: libraries/messages.inc.php:448 libraries/mysql_charsets.lib.php:259 #: libraries/mysql_charsets.lib.php:349 msgid "Japanese" msgstr "Japoniera" -#: libraries/messages.inc.php:453 main.php:331 +#: libraries/messages.inc.php:449 main.php:331 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: libraries/messages.inc.php:454 server_status.php:257 +#: libraries/messages.inc.php:450 server_status.php:257 msgid "Joins" msgstr "" -#: libraries/messages.inc.php:457 server_privileges.php:763 +#: libraries/messages.inc.php:453 server_privileges.php:763 msgid "Do not change the password" msgstr "Pasahitza ez aldatu" -#: libraries/messages.inc.php:458 server_status.php:256 +#: libraries/messages.inc.php:454 server_status.php:256 msgid "Key cache" msgstr "" -#: libraries/messages.inc.php:462 libraries/mysql_charsets.lib.php:268 +#: libraries/messages.inc.php:458 libraries/mysql_charsets.lib.php:268 #: libraries/mysql_charsets.lib.php:371 msgid "Korean" msgstr "Koreera" -#: libraries/messages.inc.php:466 libraries/select_lang.lib.php:480 +#: libraries/messages.inc.php:462 libraries/select_lang.lib.php:480 #: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492 #, php-format msgid "Unknown language: %1$s." msgstr "" -#: libraries/messages.inc.php:468 +#: libraries/messages.inc.php:464 msgid "Table caption" msgstr "Taularen epigrafea" -#: libraries/messages.inc.php:469 +#: libraries/messages.inc.php:465 msgid "Content of table __TABLE__" msgstr "__TABLE__ taularen edukina" -#: libraries/messages.inc.php:470 +#: libraries/messages.inc.php:466 #, fuzzy msgid "Continued table caption" msgstr "Taularen epigrafea gehitu" -#: libraries/messages.inc.php:471 +#: libraries/messages.inc.php:467 msgid "(continued)" msgstr "" -#: libraries/messages.inc.php:472 +#: libraries/messages.inc.php:468 msgid "Include table caption" msgstr "Taularen epigrafea gehitu" -#: libraries/messages.inc.php:473 +#: libraries/messages.inc.php:469 msgid "Label key" msgstr "" -#: libraries/messages.inc.php:474 +#: libraries/messages.inc.php:470 msgid "LaTeX" msgstr "LaTeX" -#: libraries/messages.inc.php:475 +#: libraries/messages.inc.php:471 msgid "Structure of table __TABLE__" msgstr "__TABLE__ taularen egitura" -#: libraries/messages.inc.php:476 libraries/mysql_charsets.lib.php:262 +#: libraries/messages.inc.php:472 libraries/mysql_charsets.lib.php:262 msgid "Latvian" msgstr "" -#: libraries/messages.inc.php:477 +#: libraries/messages.inc.php:473 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/messages.inc.php:478 +#: libraries/messages.inc.php:474 msgid "Use LOCAL keyword" msgstr "" -#: libraries/messages.inc.php:479 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:475 libraries/tbl_properties.inc.php:105 msgid "Length/Values" msgstr "Luzera/Balioak*" -#: libraries/messages.inc.php:480 tbl_select.php:295 +#: libraries/messages.inc.php:476 tbl_select.php:295 msgid "Number of rows per page" msgstr "Errenkada kopurua orriko" -#: libraries/messages.inc.php:484 libraries/mysql_charsets.lib.php:265 +#: libraries/messages.inc.php:480 libraries/mysql_charsets.lib.php:265 msgid "Lithuanian" msgstr "Lithuaniera" -#: libraries/messages.inc.php:485 libraries/replication_gui.lib.php:302 +#: libraries/messages.inc.php:481 libraries/replication_gui.lib.php:302 #: server_privileges.php:729 msgid "Local" msgstr "Lokal" -#: libraries/messages.inc.php:487 server_privileges.php:669 +#: libraries/messages.inc.php:483 server_privileges.php:669 msgid "Login Information" msgstr "Saioa hasteko informazioa" -#: libraries/messages.inc.php:490 libraries/navigation_header.inc.php:67 +#: libraries/messages.inc.php:486 libraries/navigation_header.inc.php:67 #: libraries/navigation_header.inc.php:70 #: libraries/navigation_header.inc.php:71 main.php:99 msgid "Log out" msgstr "Saioa bukatu" -#: libraries/messages.inc.php:497 server_status.php:440 +#: libraries/messages.inc.php:493 server_status.php:440 msgid "max. concurrent connections" msgstr "" -#: libraries/messages.inc.php:498 +#: libraries/messages.inc.php:494 msgid "Maximal length of created query" msgstr "" -#: libraries/messages.inc.php:500 main.php:282 +#: libraries/messages.inc.php:496 main.php:282 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " "split strings correctly and it may result in unexpected results." msgstr "" -#: libraries/messages.inc.php:501 main.php:274 +#: libraries/messages.inc.php:497 main.php:274 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " "corrupted!" msgstr "" -#: libraries/messages.inc.php:502 +#: libraries/messages.inc.php:498 msgid "MediaWiki Table" msgstr "" -#: libraries/messages.inc.php:503 transformation_overview.php:25 +#: libraries/messages.inc.php:499 transformation_overview.php:25 msgid "Available MIME types" msgstr "MIME-mota erabilgarriak" -#: libraries/messages.inc.php:504 transformation_overview.php:43 +#: libraries/messages.inc.php:500 transformation_overview.php:43 msgid "Available transformations" msgstr "Eraldaketa erabilgarriak" -#: libraries/messages.inc.php:505 +#: libraries/messages.inc.php:501 msgctxt "$strMIME_description" msgid "Description" msgstr "Deskribapena" -#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:580 +#: libraries/messages.inc.php:503 libraries/tbl_properties.inc.php:580 #: transformation_overview.php:60 #, php-format msgid "" @@ -4192,7 +4192,7 @@ msgstr "" "Eraldaketa honentzako deskribapenik ez dago erabilgarri.
Mesedez " "egileari galdetu, %s-(e)k zer egiten duen." -#: libraries/messages.inc.php:509 libraries/tbl_properties.inc.php:137 +#: libraries/messages.inc.php:505 libraries/tbl_properties.inc.php:137 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -4201,7 +4201,7 @@ msgstr "" "Eraldaketen hobespen eta haien MIME-mota eraldaketen zerrendarako, egizu " "klik hemen %stransformation descriptions%s" -#: libraries/messages.inc.php:510 libraries/tbl_properties.inc.php:146 +#: libraries/messages.inc.php:506 libraries/tbl_properties.inc.php:146 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -4213,416 +4213,416 @@ msgstr "" "edo barra arrunta (\"'\") erabili beharko bazenu, beti erabili " "alderantzikaturiko barra (adibidez '\\\\xyz' or 'a\\'b')." -#: libraries/messages.inc.php:511 libraries/tbl_properties.inc.php:145 +#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:145 msgid "Transformation options" msgstr "Eraldaketen hobespenak" -#: libraries/messages.inc.php:513 transformation_overview.php:38 +#: libraries/messages.inc.php:509 transformation_overview.php:38 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "Etzanez inprimaturiko MIME-motek ez dute eraldaketa-funtzio berezirik" -#: libraries/messages.inc.php:515 tbl_indexes.php:162 +#: libraries/messages.inc.php:511 tbl_indexes.php:162 msgid "Modify an index" msgstr "Indize bat aldatu" -#: libraries/messages.inc.php:517 pmd_general.php:108 +#: libraries/messages.inc.php:513 pmd_general.php:108 msgid "Move Menu" msgstr "" -#: libraries/messages.inc.php:518 tbl_operations.php:276 +#: libraries/messages.inc.php:514 tbl_operations.php:276 msgid "Move table to (database.table):" msgstr "Taula hona mugitu (datu-basea.taula):" -#: libraries/messages.inc.php:519 tbl_move_copy.php:56 +#: libraries/messages.inc.php:515 tbl_move_copy.php:56 #, php-format msgid "Table %s has been moved to %s." msgstr "%s taula hona mugitu da: %s." -#: libraries/messages.inc.php:520 tbl_move_copy.php:46 +#: libraries/messages.inc.php:516 tbl_move_copy.php:46 msgid "Can't move table to same one!" msgstr "Ezin taula berberara mugitu!" -#: libraries/messages.inc.php:521 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:517 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 #: libraries/mysql_charsets.lib.php:332 libraries/mysql_charsets.lib.php:354 #: libraries/mysql_charsets.lib.php:365 msgid "multilingual" msgstr "eleanitza" -#: libraries/messages.inc.php:534 main.php:193 +#: libraries/messages.inc.php:530 main.php:193 msgid "MySQL charset" msgstr "MySQL karaktere-multzoa" -#: libraries/messages.inc.php:535 main.php:211 +#: libraries/messages.inc.php:531 main.php:211 msgid "MySQL client version" msgstr "" -#: libraries/messages.inc.php:536 main.php:125 +#: libraries/messages.inc.php:532 main.php:125 msgid "MySQL connection collation" msgstr "" -#: libraries/messages.inc.php:537 main.php:346 +#: libraries/messages.inc.php:533 main.php:346 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: libraries/messages.inc.php:539 server_status.php:294 +#: libraries/messages.inc.php:535 server_status.php:294 msgid "Show processes" msgstr "Erakutsi prozesuak" -#: libraries/messages.inc.php:545 navigation.php:210 server_databases.php:371 +#: libraries/messages.inc.php:541 navigation.php:210 server_databases.php:371 #: server_synchronize.php:1191 msgid "No databases" msgstr "Datu-baserik ez" -#: libraries/messages.inc.php:546 server_databases.php:52 +#: libraries/messages.inc.php:542 server_databases.php:52 msgid "No databases selected." msgstr "Ez dago datu-baserik aukeratuta." -#: libraries/messages.inc.php:548 libraries/relation.lib.php:1173 +#: libraries/messages.inc.php:544 libraries/relation.lib.php:1173 msgid "no description" msgstr "Deskribapenik ez" -#: libraries/messages.inc.php:552 libraries/zip_extension.lib.php:26 +#: libraries/messages.inc.php:548 libraries/zip_extension.lib.php:26 msgid "No files found inside ZIP archive!" msgstr "" -#: libraries/messages.inc.php:555 tbl_indexes.php:91 +#: libraries/messages.inc.php:551 tbl_indexes.php:91 msgid "No index parts defined!" msgstr "Ez da indiziaren zatiak definitu!" -#: libraries/messages.inc.php:556 libraries/mult_submits.inc.php:435 +#: libraries/messages.inc.php:552 libraries/mult_submits.inc.php:435 #: tbl_replace.php:331 msgid "No change" msgstr "Aldaketarik ez" -#: libraries/messages.inc.php:557 +#: libraries/messages.inc.php:553 #, fuzzy msgctxt "$strNoneDefault" msgid "None" msgstr "Batez" -#: libraries/messages.inc.php:560 libraries/plugin_interface.lib.php:312 +#: libraries/messages.inc.php:556 libraries/plugin_interface.lib.php:312 msgid "This format has no options" msgstr "Formato honek ez du aukerarik" -#: libraries/messages.inc.php:565 user_password.php:54 +#: libraries/messages.inc.php:561 user_password.php:54 msgid "You don't have sufficient privileges to be here right now!" msgstr "Ez daukazu baimen nahikorik hemen orain egoteko!" -#: libraries/messages.inc.php:566 tbl_row_action.php:29 +#: libraries/messages.inc.php:562 tbl_row_action.php:29 msgid "No rows selected" msgstr "" -#: libraries/messages.inc.php:569 themes.php:32 +#: libraries/messages.inc.php:565 themes.php:32 #, php-format msgid "" "No themes support; please check your configuration and/or your themes in " "directory %s." msgstr "" -#: libraries/messages.inc.php:571 libraries/relation.lib.php:95 +#: libraries/messages.inc.php:567 libraries/relation.lib.php:95 msgid "not OK" msgstr "Okerra" -#: libraries/messages.inc.php:572 server_synchronize.php:400 +#: libraries/messages.inc.php:568 server_synchronize.php:400 #: server_synchronize.php:839 msgid "not present" msgstr "" -#: libraries/messages.inc.php:573 pdf_pages.php:36 pdf_pages.php:42 +#: libraries/messages.inc.php:569 pdf_pages.php:36 pdf_pages.php:42 #: pdf_pages.php:48 pdf_pages.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "%s taula ez da aurkitu edo ez da definitu hemen: %s" -#: libraries/messages.inc.php:574 server_privileges.php:804 +#: libraries/messages.inc.php:570 server_privileges.php:804 #: server_privileges.php:2166 msgid "No user(s) found." msgstr "Ez da erabiltzailerik aurkitu." -#: libraries/messages.inc.php:578 pmd_general.php:164 +#: libraries/messages.inc.php:574 pmd_general.php:164 msgid "Number of tables" msgstr "" -#: libraries/messages.inc.php:581 server_databases.php:117 +#: libraries/messages.inc.php:577 server_databases.php:117 #: server_status.php:260 setup/lib/messages.inc.php:117 msgid "Tables" msgstr "Taulak" -#: libraries/messages.inc.php:583 libraries/relation.lib.php:99 +#: libraries/messages.inc.php:579 libraries/relation.lib.php:99 #: pmd_general.php:340 msgid "OK" msgstr "Zuzena" -#: libraries/messages.inc.php:585 +#: libraries/messages.inc.php:581 msgid "Open Document Text" msgstr "" -#: libraries/messages.inc.php:588 tbl_select.php:138 +#: libraries/messages.inc.php:584 tbl_select.php:138 #, fuzzy msgid "Operator" msgstr "Eragiketak" -#: libraries/messages.inc.php:589 tbl_operations.php:662 +#: libraries/messages.inc.php:585 tbl_operations.php:662 msgid "Optimize" msgstr "" -#: libraries/messages.inc.php:602 libraries/tbl_properties.inc.php:755 +#: libraries/messages.inc.php:598 libraries/tbl_properties.inc.php:755 msgid "PARTITION definition" msgstr "" -#: libraries/messages.inc.php:603 tbl_structure.php:757 +#: libraries/messages.inc.php:599 tbl_structure.php:757 msgid "partitioned" msgstr "" -#: libraries/messages.inc.php:604 tbl_operations.php:649 +#: libraries/messages.inc.php:600 tbl_operations.php:649 #, fuzzy msgid "Partition maintenance" msgstr "Taularen mantenua" -#: libraries/messages.inc.php:605 tbl_operations.php:657 +#: libraries/messages.inc.php:601 tbl_operations.php:657 #, php-format msgid "Partition %s" msgstr "" -#: libraries/messages.inc.php:606 server_privileges.php:1212 +#: libraries/messages.inc.php:602 server_privileges.php:1212 #, php-format msgid "The password for %s was changed successfully." msgstr "%s-arentzako pasahitza arrakastaz aldatua izan da." -#: libraries/messages.inc.php:635 +#: libraries/messages.inc.php:631 #, php-format msgid "Schema of the \"%s\" database - Page %s" msgstr "\"%s\" datu-basearen eskema- Orria %s" -#: libraries/messages.inc.php:636 +#: libraries/messages.inc.php:632 #, php-format msgid "The \"%s\" table doesn't exist!" msgstr "\"%s\" taula ez da existitzen!" -#: libraries/messages.inc.php:637 pdf_schema.php:1013 +#: libraries/messages.inc.php:633 pdf_schema.php:1013 msgid "No tables" msgstr "Taularik ez" -#: libraries/messages.inc.php:638 pmd_pdf.php:63 +#: libraries/messages.inc.php:634 pmd_pdf.php:63 #, fuzzy msgid "Page has been created" msgstr "%s taula ezabatu egin da" -#: libraries/messages.inc.php:639 pmd_pdf.php:65 +#: libraries/messages.inc.php:635 pmd_pdf.php:65 msgid "Page creation failed" msgstr "" -#: libraries/messages.inc.php:640 +#: libraries/messages.inc.php:636 msgid "PDF" msgstr "" -#: libraries/messages.inc.php:641 +#: libraries/messages.inc.php:637 msgid "(Generates a report containing the data of a single table)" msgstr "" -#: libraries/messages.inc.php:642 +#: libraries/messages.inc.php:638 msgid "Report title" msgstr "" -#: libraries/messages.inc.php:643 server_status.php:389 server_status.php:434 +#: libraries/messages.inc.php:639 server_status.php:389 server_status.php:434 #: server_status.php:497 server_status.php:555 msgid "per hour" msgstr "orduko" -#: libraries/messages.inc.php:644 server_status.php:498 +#: libraries/messages.inc.php:640 server_status.php:498 msgid "per minute" msgstr "minutuko" -#: libraries/messages.inc.php:645 server_status.php:499 +#: libraries/messages.inc.php:641 server_status.php:499 msgid "per second" msgstr "segunduko" -#: libraries/messages.inc.php:646 libraries/mysql_charsets.lib.php:271 +#: libraries/messages.inc.php:642 libraries/mysql_charsets.lib.php:271 msgid "Persian" msgstr "" -#: libraries/messages.inc.php:647 libraries/mysql_charsets.lib.php:250 +#: libraries/messages.inc.php:643 libraries/mysql_charsets.lib.php:250 msgid "phone book" msgstr "Telefono-agenda" -#: libraries/messages.inc.php:648 +#: libraries/messages.inc.php:644 msgid "PHP array" msgstr "" -#: libraries/messages.inc.php:650 main.php:213 +#: libraries/messages.inc.php:646 main.php:213 #, fuzzy msgid "PHP extension" msgstr "PHP Bertsioa" -#: libraries/messages.inc.php:654 libraries/relation.lib.php:163 +#: libraries/messages.inc.php:650 libraries/relation.lib.php:163 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/messages.inc.php:655 libraries/relation.lib.php:159 +#: libraries/messages.inc.php:651 libraries/relation.lib.php:159 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/messages.inc.php:656 libraries/relation.lib.php:161 +#: libraries/messages.inc.php:652 libraries/relation.lib.php:161 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" -#: libraries/messages.inc.php:657 libraries/relation.lib.php:162 +#: libraries/messages.inc.php:653 libraries/relation.lib.php:162 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/messages.inc.php:658 libraries/relation.lib.php:164 +#: libraries/messages.inc.php:654 libraries/relation.lib.php:164 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/messages.inc.php:661 libraries/mysql_charsets.lib.php:274 +#: libraries/messages.inc.php:657 libraries/mysql_charsets.lib.php:274 msgid "Polish" msgstr "" -#: libraries/messages.inc.php:662 libraries/replication_gui.lib.php:67 +#: libraries/messages.inc.php:658 libraries/replication_gui.lib.php:67 #: server_synchronize.php:1163 #, fuzzy msgid "Port" msgstr "Ordenatu" -#: libraries/messages.inc.php:667 tbl_indexes.php:67 +#: libraries/messages.inc.php:663 tbl_indexes.php:67 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Lehen mailako gakoaren izenak behar du izan... PRIMARY!" -#: libraries/messages.inc.php:668 tbl_indexes.php:184 +#: libraries/messages.inc.php:664 tbl_indexes.php:184 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" "(\"PRIMARY\"-k, soilik, lehen mailako gako baten izena izan behar du!)" -#: libraries/messages.inc.php:669 libraries/mult_submits.inc.php:76 +#: libraries/messages.inc.php:665 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:474 msgid "Primary" msgstr "Lehen mailakoa" -#: libraries/messages.inc.php:673 server_privileges.php:227 +#: libraries/messages.inc.php:669 server_privileges.php:227 msgid "Includes all privileges except GRANT." msgstr "Pribilegio guztiak, GRANT(baimendu) izanezik, dauzka." -#: libraries/messages.inc.php:674 server_privileges.php:153 +#: libraries/messages.inc.php:670 server_privileges.php:153 #: server_privileges.php:476 msgid "Allows altering the structure of existing tables." msgstr "Uneko taulen egiturak aldatzea baimentzen du." -#: libraries/messages.inc.php:675 server_privileges.php:169 +#: libraries/messages.inc.php:671 server_privileges.php:169 #: server_privileges.php:482 #, fuzzy msgid "Allows altering and dropping stored routines." msgstr "Indizeak sortu eta ezabatzea baimentzen du." -#: libraries/messages.inc.php:676 server_privileges.php:145 +#: libraries/messages.inc.php:672 server_privileges.php:145 #: server_privileges.php:475 msgid "Allows creating new databases and tables." msgstr "Datu-base eta taula berriak sortzea baimentzen du." -#: libraries/messages.inc.php:677 server_privileges.php:168 +#: libraries/messages.inc.php:673 server_privileges.php:168 #: server_privileges.php:481 #, fuzzy msgid "Allows creating stored routines." msgstr "Taula berriak sortzea baimentzen du." -#: libraries/messages.inc.php:678 server_privileges.php:475 +#: libraries/messages.inc.php:674 server_privileges.php:475 msgid "Allows creating new tables." msgstr "Taula berriak sortzea baimentzen du." -#: libraries/messages.inc.php:679 server_privileges.php:156 +#: libraries/messages.inc.php:675 server_privileges.php:156 #: server_privileges.php:479 msgid "Allows creating temporary tables." msgstr "Aldi baterako taulak sortzea baimentzen du." -#: libraries/messages.inc.php:680 server_privileges.php:170 +#: libraries/messages.inc.php:676 server_privileges.php:170 #: server_privileges.php:515 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: libraries/messages.inc.php:681 server_privileges.php:160 +#: libraries/messages.inc.php:677 server_privileges.php:160 #: server_privileges.php:164 server_privileges.php:487 #: server_privileges.php:491 #, fuzzy msgid "Allows creating new views." msgstr "Taula berriak sortzea baimentzen du." -#: libraries/messages.inc.php:682 server_privileges.php:144 +#: libraries/messages.inc.php:678 server_privileges.php:144 #: server_privileges.php:467 msgid "Allows deleting data." msgstr "Datuak ezabatzea baimentzen du." -#: libraries/messages.inc.php:683 server_privileges.php:146 +#: libraries/messages.inc.php:679 server_privileges.php:146 #: server_privileges.php:478 msgid "Allows dropping databases and tables." msgstr "Datu-base eta taulak ezabatzea baimentzen du." -#: libraries/messages.inc.php:684 server_privileges.php:478 +#: libraries/messages.inc.php:680 server_privileges.php:478 msgid "Allows dropping tables." msgstr "Taulak ezabatzea baimentzen du." -#: libraries/messages.inc.php:685 server_privileges.php:161 +#: libraries/messages.inc.php:681 server_privileges.php:161 #: server_privileges.php:495 msgid "Allows to set up events for the event scheduler" msgstr "" -#: libraries/messages.inc.php:686 server_privileges.php:171 +#: libraries/messages.inc.php:682 server_privileges.php:171 #: server_privileges.php:483 msgid "Allows executing stored routines." msgstr "" -#: libraries/messages.inc.php:687 server_privileges.php:150 +#: libraries/messages.inc.php:683 server_privileges.php:150 #: server_privileges.php:470 msgid "Allows importing data from and exporting data into files." msgstr "" "Datuak fitxategietatik inportatzea eta fitxategietara esportatzea baimentzen " "du." -#: libraries/messages.inc.php:688 server_privileges.php:501 +#: libraries/messages.inc.php:684 server_privileges.php:501 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Erabiltzaileak eta pribilegioak gehitzea baimentzen du pribilegioen taula " "berkargatu gabe." -#: libraries/messages.inc.php:689 server_privileges.php:152 +#: libraries/messages.inc.php:685 server_privileges.php:152 #: server_privileges.php:477 msgid "Allows creating and dropping indexes." msgstr "Indizeak sortu eta ezabatzea baimentzen du." -#: libraries/messages.inc.php:690 server_privileges.php:142 +#: libraries/messages.inc.php:686 server_privileges.php:142 #: server_privileges.php:403 server_privileges.php:465 msgid "Allows inserting and replacing data." msgstr "Datuak txertatu eta ordezkatzea baimentzen du." -#: libraries/messages.inc.php:691 server_privileges.php:157 +#: libraries/messages.inc.php:687 server_privileges.php:157 #: server_privileges.php:510 msgid "Allows locking tables for the current thread." msgstr "Momentuko harian taulak blokeatzea baimentzen du." -#: libraries/messages.inc.php:692 server_privileges.php:607 +#: libraries/messages.inc.php:688 server_privileges.php:607 #: server_privileges.php:609 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Erabiltzaileak orduko ireki dezakeen konexio berrien kopurua mugatzen du." -#: libraries/messages.inc.php:693 server_privileges.php:595 +#: libraries/messages.inc.php:689 server_privileges.php:595 #: server_privileges.php:597 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Erabiltzaileak orduko zerbitzarira bidali dezakeen kontsulta kopurua " "mugatzen du." -#: libraries/messages.inc.php:694 server_privileges.php:601 +#: libraries/messages.inc.php:690 server_privileges.php:601 #: server_privileges.php:603 msgid "" "Limits the number of commands that change any table or database the user may " @@ -4631,61 +4631,61 @@ msgstr "" "Erabiltzaileak orduko exekuta dezakeen taula edo datu-baserik alda dezaketen " "komando kopurua mugatzen du." -#: libraries/messages.inc.php:695 server_privileges.php:613 +#: libraries/messages.inc.php:691 server_privileges.php:613 #: server_privileges.php:615 #, fuzzy msgid "Limits the number of simultaneous connections the user may have." msgstr "" "Erabiltzaileak orduko ireki dezakeen konexio berrien kopurua mugatzen du." -#: libraries/messages.inc.php:696 server_privileges.php:149 +#: libraries/messages.inc.php:692 server_privileges.php:149 #: server_privileges.php:505 msgid "Allows viewing processes of all users" msgstr "" -#: libraries/messages.inc.php:697 server_privileges.php:151 +#: libraries/messages.inc.php:693 server_privileges.php:151 #: server_privileges.php:409 server_privileges.php:511 msgid "Has no effect in this MySQL version." msgstr "Ez du eraginik MySQL bertsio honetan." -#: libraries/messages.inc.php:698 server_privileges.php:147 +#: libraries/messages.inc.php:694 server_privileges.php:147 #: server_privileges.php:506 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Zerbitzariaren hobespenak berkargatu eta beraren cacheak hustea baimentzen " "du." -#: libraries/messages.inc.php:699 server_privileges.php:159 +#: libraries/messages.inc.php:695 server_privileges.php:159 #: server_privileges.php:513 msgid "Allows the user to ask where the slaves / masters are." msgstr "Erabiltzailea baimentzen du morroiak / nagusiak non dauden galdetzeko." -#: libraries/messages.inc.php:700 server_privileges.php:158 +#: libraries/messages.inc.php:696 server_privileges.php:158 #: server_privileges.php:514 msgid "Needed for the replication slaves." msgstr "Erreplikazio morroientzat beharrezkoa." -#: libraries/messages.inc.php:701 server_privileges.php:141 +#: libraries/messages.inc.php:697 server_privileges.php:141 #: server_privileges.php:400 server_privileges.php:464 msgid "Allows reading data." msgstr "Datuak irakurtzea baimentzen du." -#: libraries/messages.inc.php:702 server_privileges.php:154 +#: libraries/messages.inc.php:698 server_privileges.php:154 #: server_privileges.php:508 msgid "Gives access to the complete list of databases." msgstr "Datu-base zenrrenda osorako sarrera ahalbidetzen du." -#: libraries/messages.inc.php:703 server_privileges.php:165 +#: libraries/messages.inc.php:699 server_privileges.php:165 #: server_privileges.php:167 server_privileges.php:480 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: libraries/messages.inc.php:704 server_privileges.php:148 +#: libraries/messages.inc.php:700 server_privileges.php:148 #: server_privileges.php:507 msgid "Allows shutting down the server." msgstr "Zerbitzaria amatatzea baimentzen du." -#: libraries/messages.inc.php:705 server_privileges.php:155 +#: libraries/messages.inc.php:701 server_privileges.php:155 #: server_privileges.php:504 msgid "" "Allows connecting, even if maximum number of connections is reached; " @@ -4696,57 +4696,57 @@ msgstr "" "Aldagai orokorrak zehaztu edota beste erabiltzaileen hariak hiltzeko " "bezalako kudeaketa-eragiketa gehienentzat beharrezkoa da." -#: libraries/messages.inc.php:706 server_privileges.php:162 +#: libraries/messages.inc.php:702 server_privileges.php:162 #: server_privileges.php:496 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "Indizeak sortu eta ezabatzea baimentzen du." -#: libraries/messages.inc.php:707 server_privileges.php:143 +#: libraries/messages.inc.php:703 server_privileges.php:143 #: server_privileges.php:406 server_privileges.php:466 msgid "Allows changing data." msgstr "Datuak aldatzea baimentzen du." -#: libraries/messages.inc.php:708 server_privileges.php:221 +#: libraries/messages.inc.php:704 server_privileges.php:221 msgid "No privileges." msgstr "Pribilegiorik ez." -#: libraries/messages.inc.php:710 server_privileges.php:1296 +#: libraries/messages.inc.php:706 server_privileges.php:1296 msgid "The privileges were reloaded successfully." msgstr "Pribilegioak arrakastaz berkargatu dira." -#: libraries/messages.inc.php:712 libraries/server_links.inc.php:80 +#: libraries/messages.inc.php:708 libraries/server_links.inc.php:80 msgid "Processes" msgstr "Prozesuak" -#: libraries/messages.inc.php:714 main.php:187 +#: libraries/messages.inc.php:710 main.php:187 msgid "Protocol version" msgstr "" -#: libraries/messages.inc.php:715 +#: libraries/messages.inc.php:711 msgid "Put fields names in the first row" msgstr "Eremuen izenak lehenengo errenkadan jarri" -#: libraries/messages.inc.php:720 server_synchronize.php:1003 +#: libraries/messages.inc.php:716 server_synchronize.php:1003 msgid "The following queries have been executed:" msgstr "" -#: libraries/messages.inc.php:721 server_status.php:251 +#: libraries/messages.inc.php:717 server_status.php:251 #, fuzzy msgid "Query cache" msgstr "Kontsulta mota" -#: libraries/messages.inc.php:722 libraries/navigation_header.inc.php:80 +#: libraries/messages.inc.php:718 libraries/navigation_header.inc.php:80 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 setup/lib/messages.inc.php:122 msgid "Query window" msgstr "Kontsulta-leihoa" -#: libraries/messages.inc.php:725 querywindow.php:109 querywindow.php:217 +#: libraries/messages.inc.php:721 querywindow.php:109 querywindow.php:217 msgid "SQL history" msgstr "SQL-historia" -#: libraries/messages.inc.php:726 server_status.php:490 +#: libraries/messages.inc.php:722 server_status.php:490 #, php-format msgid "" "Query statistics: Since its startup, %s queries have been sent to the " @@ -4755,137 +4755,137 @@ msgstr "" "Kontsultaren estatistikak: Bere hasieratik, %s kontsulta zerbitzarira " "bidali dira." -#: libraries/messages.inc.php:728 server_status.php:554 +#: libraries/messages.inc.php:724 server_status.php:554 msgid "Query type" msgstr "Kontsulta mota" -#: libraries/messages.inc.php:729 libraries/sql_query_form.lib.php:381 +#: libraries/messages.inc.php:725 libraries/sql_query_form.lib.php:381 msgid "Do not overwrite this query from outside the window" msgstr "Kontsulta hau ez idatzi gainean leihotik kanpo" -#: libraries/messages.inc.php:732 tbl_operations.php:663 +#: libraries/messages.inc.php:728 tbl_operations.php:663 msgid "Rebuild" msgstr "" -#: libraries/messages.inc.php:733 server_status.php:394 +#: libraries/messages.inc.php:729 server_status.php:394 msgid "Received" msgstr "Jasota" -#: libraries/messages.inc.php:734 pmd_pdf.php:89 +#: libraries/messages.inc.php:730 pmd_pdf.php:89 msgid "recommended" msgstr "" -#: libraries/messages.inc.php:736 tbl_operations.php:702 +#: libraries/messages.inc.php:732 tbl_operations.php:702 msgid "Check referential integrity:" msgstr "Erreferentzien integritatea egiaztatu:" -#: libraries/messages.inc.php:740 pdf_schema.php:1032 pdf_schema.php:1141 +#: libraries/messages.inc.php:736 pdf_schema.php:1032 pdf_schema.php:1141 msgid "Relational schema" msgstr "Erlazio-eskema" -#: libraries/messages.inc.php:744 tbl_relation.php:399 +#: libraries/messages.inc.php:740 tbl_relation.php:399 msgid "Relations" msgstr "Erlazioak" -#: libraries/messages.inc.php:745 tbl_structure.php:507 tbl_structure.php:509 +#: libraries/messages.inc.php:741 tbl_structure.php:507 tbl_structure.php:509 msgid "Relation view" msgstr "Erlazioen ikuspegia" -#: libraries/messages.inc.php:746 server_privileges.php:1246 +#: libraries/messages.inc.php:742 server_privileges.php:1246 msgid "Reloading the privileges" msgstr "Pribilegioak berkargatzen" -#: libraries/messages.inc.php:747 navigation.php:66 navigation.php:67 +#: libraries/messages.inc.php:743 navigation.php:66 navigation.php:67 #: navigation.php:70 msgid "Reload navigation frame" msgstr "" -#: libraries/messages.inc.php:748 pmd_general.php:80 +#: libraries/messages.inc.php:744 pmd_general.php:80 msgid "Reload" msgstr "" -#: libraries/messages.inc.php:749 libraries/server_synchronize.lib.php:1345 +#: libraries/messages.inc.php:745 libraries/server_synchronize.lib.php:1345 #: libraries/server_synchronize.lib.php:1371 msgid "Remote server" msgstr "" -#: libraries/messages.inc.php:750 +#: libraries/messages.inc.php:746 msgid "Remove CRLF characters within fields" msgstr "" -#: libraries/messages.inc.php:751 tbl_operations.php:676 +#: libraries/messages.inc.php:747 tbl_operations.php:676 msgid "Remove partitioning" msgstr "" -#: libraries/messages.inc.php:752 server_privileges.php:1575 +#: libraries/messages.inc.php:748 server_privileges.php:1575 msgid "Remove selected users" msgstr "Hautatutako erabiltzaileak baztertu" -#: libraries/messages.inc.php:755 tbl_operations.php:338 +#: libraries/messages.inc.php:751 tbl_operations.php:338 msgid "Rename table to" msgstr "Taula berrizendatu izen honetara: " -#: libraries/messages.inc.php:756 view_operations.php:93 +#: libraries/messages.inc.php:752 view_operations.php:93 #, fuzzy msgid "Rename view to" msgstr "Taula berrizendatu izen honetara: " -#: libraries/messages.inc.php:757 tbl_operations.php:664 +#: libraries/messages.inc.php:753 tbl_operations.php:664 #, fuzzy msgid "Repair" msgstr "Taula konpondu" -#: libraries/messages.inc.php:759 +#: libraries/messages.inc.php:755 msgid "Replace NULL by" msgstr "NULL ordezkatu honen ordez:" -#: libraries/messages.inc.php:760 +#: libraries/messages.inc.php:756 msgid "Replace table data with file" msgstr "Taularen datuak fitxategiarekin ordezkatu " -#: libraries/messages.inc.php:761 server_replication.php:228 +#: libraries/messages.inc.php:757 server_replication.php:228 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: libraries/messages.inc.php:762 libraries/replication_gui.lib.php:236 +#: libraries/messages.inc.php:758 libraries/replication_gui.lib.php:236 #: server_replication.php:194 msgid "Add slave replication user" msgstr "" -#: libraries/messages.inc.php:763 server_replication.php:74 +#: libraries/messages.inc.php:759 server_replication.php:74 #, php-format msgid "Master server changed succesfully to %s" msgstr "" -#: libraries/messages.inc.php:764 server_replication.php:182 +#: libraries/messages.inc.php:760 server_replication.php:182 msgid "This server is configured as master in a replication process." msgstr "" -#: libraries/messages.inc.php:765 server_replication.php:322 +#: libraries/messages.inc.php:761 server_replication.php:322 msgid "Control slave:" msgstr "" -#: libraries/messages.inc.php:766 server_replication.php:65 +#: libraries/messages.inc.php:762 server_replication.php:65 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: libraries/messages.inc.php:767 server_replication.php:58 +#: libraries/messages.inc.php:763 server_replication.php:58 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: libraries/messages.inc.php:768 server_replication.php:221 +#: libraries/messages.inc.php:764 server_replication.php:221 msgid "Replicate all databases; Ignore:" msgstr "" -#: libraries/messages.inc.php:769 server_replication.php:222 +#: libraries/messages.inc.php:765 server_replication.php:222 msgid "Ignore all databases; Replicate:" msgstr "" -#: libraries/messages.inc.php:770 server_replication.php:218 +#: libraries/messages.inc.php:766 server_replication.php:218 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -4894,121 +4894,121 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: libraries/messages.inc.php:771 server_replication.php:217 +#: libraries/messages.inc.php:767 server_replication.php:217 msgid "Master configuration" msgstr "" -#: libraries/messages.inc.php:772 server_replication.php:181 +#: libraries/messages.inc.php:768 server_replication.php:181 #: server_replication.php:209 msgid "Master replication" msgstr "" -#: libraries/messages.inc.php:774 server_replication.php:230 +#: libraries/messages.inc.php:770 server_replication.php:230 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: libraries/messages.inc.php:775 server_replication.php:225 +#: libraries/messages.inc.php:771 server_replication.php:225 #, fuzzy msgid "Please select databases:" msgstr "Datu-base bat hautatu mesedez" -#: libraries/messages.inc.php:776 server_replication.php:210 +#: libraries/messages.inc.php:772 server_replication.php:210 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:188 +#: libraries/messages.inc.php:773 libraries/replication_gui.lib.php:188 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/messages.inc.php:778 server_replication.php:187 +#: libraries/messages.inc.php:774 server_replication.php:187 msgid "Show connected slaves" msgstr "" -#: libraries/messages.inc.php:779 libraries/messages.inc.php:885 +#: libraries/messages.inc.php:775 libraries/messages.inc.php:881 #: server_replication.php:184 server_status.php:281 msgid "Show master status" msgstr "" -#: libraries/messages.inc.php:780 server_replication.php:334 +#: libraries/messages.inc.php:776 server_replication.php:334 msgid "Skipping error(s) might lead into unsynchronized master and slave!" msgstr "" -#: libraries/messages.inc.php:781 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:51 #: server_replication.php:347 msgid "Change or reconfigure master server" msgstr "" -#: libraries/messages.inc.php:782 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:778 libraries/replication_gui.lib.php:51 msgid "Slave configuration" msgstr "" -#: libraries/messages.inc.php:783 server_replication.php:305 +#: libraries/messages.inc.php:779 server_replication.php:305 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: libraries/messages.inc.php:784 server_replication.php:332 +#: libraries/messages.inc.php:780 server_replication.php:332 msgid "Error management:" msgstr "" -#: libraries/messages.inc.php:785 server_replication.php:328 +#: libraries/messages.inc.php:781 server_replication.php:328 #, php-format msgid "IO Thread %s only" msgstr "" -#: libraries/messages.inc.php:786 server_replication.php:296 +#: libraries/messages.inc.php:782 server_replication.php:296 msgid "Slave IO Thread not running!" msgstr "" -#: libraries/messages.inc.php:787 server_replication.php:355 +#: libraries/messages.inc.php:783 server_replication.php:355 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/messages.inc.php:788 server_replication.php:326 +#: libraries/messages.inc.php:784 server_replication.php:326 msgid "Reset slave" msgstr "" -#: libraries/messages.inc.php:789 server_replication.php:308 +#: libraries/messages.inc.php:785 server_replication.php:308 msgid "See slave status table" msgstr "" -#: libraries/messages.inc.php:790 server_replication.php:336 +#: libraries/messages.inc.php:786 server_replication.php:336 msgid "Skip current error" msgstr "" -#: libraries/messages.inc.php:791 server_replication.php:340 +#: libraries/messages.inc.php:787 server_replication.php:340 msgid "errors." msgstr "" -#: libraries/messages.inc.php:792 server_replication.php:337 +#: libraries/messages.inc.php:788 server_replication.php:337 msgid "Skip next" msgstr "" -#: libraries/messages.inc.php:793 server_replication.php:248 +#: libraries/messages.inc.php:789 server_replication.php:248 msgid "Slave replication" msgstr "" -#: libraries/messages.inc.php:794 server_replication.php:293 +#: libraries/messages.inc.php:790 server_replication.php:293 msgid "Slave SQL Thread not running!" msgstr "" -#: libraries/messages.inc.php:795 server_replication.php:327 +#: libraries/messages.inc.php:791 server_replication.php:327 #, php-format msgid "SQL Thread %s only" msgstr "" -#: libraries/messages.inc.php:796 +#: libraries/messages.inc.php:792 #, php-format msgid "" "This MySQL server works as %s in replication process. For further " @@ -5016,164 +5016,164 @@ msgid "" "\"#replication\">replication section." msgstr "" -#: libraries/messages.inc.php:797 +#: libraries/messages.inc.php:793 msgid "Master status" msgstr "" -#: libraries/messages.inc.php:798 server_status.php:721 +#: libraries/messages.inc.php:794 server_status.php:721 msgid "Replication status" msgstr "" -#: libraries/messages.inc.php:799 +#: libraries/messages.inc.php:795 msgid "Slave status" msgstr "" -#: libraries/messages.inc.php:800 server_replication.php:311 +#: libraries/messages.inc.php:796 server_replication.php:311 msgid "Synchronize databases with master" msgstr "" -#: libraries/messages.inc.php:801 server_replication.php:71 +#: libraries/messages.inc.php:797 server_replication.php:71 msgid "Unable to change master" msgstr "" -#: libraries/messages.inc.php:802 server_replication.php:51 +#: libraries/messages.inc.php:798 server_replication.php:51 msgid "Unknown error" msgstr "" -#: libraries/messages.inc.php:803 main.php:163 pdf_pages.php:344 +#: libraries/messages.inc.php:799 main.php:163 pdf_pages.php:344 #: setup/lib/FormDisplay.tpl.php:216 tbl_change.php:1175 msgid "Reset" msgstr "Reset egin" -#: libraries/messages.inc.php:804 server_privileges.php:591 +#: libraries/messages.inc.php:800 server_privileges.php:591 msgid "Resource limits" msgstr "Baliabideen mugak" -#: libraries/messages.inc.php:805 tbl_change.php:1209 +#: libraries/messages.inc.php:801 tbl_change.php:1209 #, php-format msgid "Restart insertion with %s rows" msgstr "" -#: libraries/messages.inc.php:807 server_privileges.php:1578 +#: libraries/messages.inc.php:803 server_privileges.php:1578 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Erabiltzaileen pribilegio aktibo guztiak ezeztatu eta ondoren denak ezabatu." -#: libraries/messages.inc.php:808 server_privileges.php:1176 +#: libraries/messages.inc.php:804 server_privileges.php:1176 #, php-format msgid "You have revoked the privileges for %s" msgstr "Zuk %s-(r)en pribilegioak ezeztatu dituzu" -#: libraries/messages.inc.php:809 server_privileges.php:1333 +#: libraries/messages.inc.php:805 server_privileges.php:1333 msgid "Revoke" msgstr "Ezeztatu" -#: libraries/messages.inc.php:810 libraries/mysql_charsets.lib.php:280 +#: libraries/messages.inc.php:806 libraries/mysql_charsets.lib.php:280 #, fuzzy msgid "Romanian" msgstr "Armeniera" -#: libraries/messages.inc.php:813 tbl_printview.php:404 tbl_structure.php:786 +#: libraries/messages.inc.php:809 tbl_printview.php:404 tbl_structure.php:786 msgid "Row length" msgstr "Errenkadaren luzera" -#: libraries/messages.inc.php:815 tbl_printview.php:414 tbl_structure.php:794 +#: libraries/messages.inc.php:811 tbl_printview.php:414 tbl_structure.php:794 msgid " Row size " msgstr " Errenkadaren tamaina " -#: libraries/messages.inc.php:821 tbl_printview.php:366 tbl_structure.php:726 +#: libraries/messages.inc.php:817 tbl_printview.php:366 tbl_structure.php:726 msgid "Row Statistics" msgstr "Errenkadaren estatistikak" -#: libraries/messages.inc.php:822 +#: libraries/messages.inc.php:818 #, php-format msgid "running on %s" msgstr "hemen ibiltzen: %s" -#: libraries/messages.inc.php:824 libraries/sql_query_form.lib.php:223 +#: libraries/messages.inc.php:820 libraries/sql_query_form.lib.php:223 #, fuzzy, php-format msgid "Run SQL query/queries on server %s" msgstr "SQL kontsulta(k) exekutatu %s datu-basean" -#: libraries/messages.inc.php:825 libraries/sql_query_form.lib.php:240 +#: libraries/messages.inc.php:821 libraries/sql_query_form.lib.php:240 #: libraries/sql_query_form.lib.php:265 #, php-format msgid "Run SQL query/queries on database %s" msgstr "SQL kontsulta(k) exekutatu %s datu-basean" -#: libraries/messages.inc.php:826 libraries/mysql_charsets.lib.php:337 +#: libraries/messages.inc.php:822 libraries/mysql_charsets.lib.php:337 msgid "Russian" msgstr "Errusiera" -#: libraries/messages.inc.php:829 pmd_general.php:68 +#: libraries/messages.inc.php:825 pmd_general.php:68 msgid "Save position" msgstr "" -#: libraries/messages.inc.php:830 libraries/tbl_properties.inc.php:776 +#: libraries/messages.inc.php:826 libraries/tbl_properties.inc.php:776 #: pdf_pages.php:484 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:214 setup/lib/FormDisplay.tpl.php:215 #: tbl_change.php:1126 tbl_indexes.php:248 tbl_relation.php:566 msgid "Save" msgstr "Gorde" -#: libraries/messages.inc.php:831 +#: libraries/messages.inc.php:827 msgid "The scale factor is too small to fit the schema on one page" msgstr "Eskalaren faktorea txikiegia da eskema orri bakar batean azaltzeko" -#: libraries/messages.inc.php:843 main.php:298 +#: libraries/messages.inc.php:839 main.php:298 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "Konfigurazio-fitxategiak orain ezkutuko pasahitz bat behar du " "(blowfish_secret)." -#: libraries/messages.inc.php:844 navigation.php:353 navigation.php:516 +#: libraries/messages.inc.php:840 navigation.php:353 navigation.php:516 msgid "Please select a database" msgstr "Datu-base bat hautatu mesedez" -#: libraries/messages.inc.php:846 server_binlog.php:120 +#: libraries/messages.inc.php:842 server_binlog.php:120 msgid "Select binary log to view" msgstr "" -#: libraries/messages.inc.php:847 tbl_select.php:270 +#: libraries/messages.inc.php:843 tbl_select.php:270 msgid "Select fields (at least one):" msgstr "Eremuak hautatu (bat gutxienez):" -#: libraries/messages.inc.php:851 pdf_pages.php:320 +#: libraries/messages.inc.php:847 pdf_pages.php:320 msgid "Select Tables" msgstr "Taulak hautatu" -#: libraries/messages.inc.php:853 server_status.php:404 +#: libraries/messages.inc.php:849 server_status.php:404 msgid "Sent" msgstr "Bidalita" -#: libraries/messages.inc.php:857 libraries/select_server.lib.php:45 +#: libraries/messages.inc.php:853 libraries/select_server.lib.php:45 #: setup/frames/index.inc.php:97 setup/lib/messages.inc.php:115 #, fuzzy msgid "Servers" msgstr "Zerbitzaria" -#: libraries/messages.inc.php:858 server_status.php:255 +#: libraries/messages.inc.php:854 server_status.php:255 #, fuzzy msgid "Delayed inserts" msgstr "Use delayed inserts" -#: libraries/messages.inc.php:859 server_status.php:46 +#: libraries/messages.inc.php:855 server_status.php:46 #, fuzzy msgid "Runtime Information" msgstr "Saioa hasteko informazioa" -#: libraries/messages.inc.php:860 server_status.php:350 +#: libraries/messages.inc.php:856 server_status.php:350 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "MySQL zerbitzari hau martxan egon da %s. %s abiaratu zelarik." -#: libraries/messages.inc.php:861 libraries/server_links.inc.php:53 +#: libraries/messages.inc.php:857 libraries/server_links.inc.php:53 #: server_engines.php:112 server_engines.php:116 server_status.php:304 #: test/theme.php:105 msgid "Variables" msgstr "Aldagaiak" -#: libraries/messages.inc.php:862 server_status.php:383 +#: libraries/messages.inc.php:858 server_status.php:383 msgid "" "Server traffic: These tables show the network traffic statistics of " "this MySQL server since its startup." @@ -5181,11 +5181,11 @@ msgstr "" "Zerbitzariaren trafikoa: Taula hauek erakusten dituzte MySQL " "zerbitzari honen sare-trafikoaren estatistikak bere hasieratzetik." -#: libraries/messages.inc.php:863 server_variables.php:35 +#: libraries/messages.inc.php:859 server_variables.php:35 msgid "Server variables and settings" msgstr "Zerbitzariaren aldagai eta ezarpenak" -#: libraries/messages.inc.php:865 main.php:290 +#: libraries/messages.inc.php:861 main.php:290 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -5193,17 +5193,17 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: libraries/messages.inc.php:866 +#: libraries/messages.inc.php:862 msgid "" "Cannot start session without errors, please check errors given in your PHP " "and/or webserver log file and configure your PHP installation properly." msgstr "" -#: libraries/messages.inc.php:867 server_variables.php:55 +#: libraries/messages.inc.php:863 server_variables.php:55 msgid "Session value" msgstr "Saioaren balioa" -#: libraries/messages.inc.php:868 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:864 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 " @@ -5216,56 +5216,56 @@ msgstr "" "bazenu, beti erabili alderantzikaturiko barra (adibidez '\\\\xyz' or 'a" "\\'b')." -#: libraries/messages.inc.php:876 server_binlog.php:192 server_binlog.php:195 +#: libraries/messages.inc.php:872 server_binlog.php:192 server_binlog.php:195 #: server_processlist.php:49 server_processlist.php:51 msgid "Show Full Queries" msgstr "Kontsulta osoak erakutsi" -#: libraries/messages.inc.php:878 pmd_general.php:64 +#: libraries/messages.inc.php:874 pmd_general.php:64 msgid "Show/Hide left menu" msgstr "" -#: libraries/messages.inc.php:880 sql.php:513 +#: libraries/messages.inc.php:876 sql.php:513 msgid "Showing as PHP code" msgstr "" -#: libraries/messages.inc.php:882 sql.php:516 tbl_replace.php:360 +#: libraries/messages.inc.php:878 sql.php:516 tbl_replace.php:360 msgid "Showing SQL query" msgstr "" -#: libraries/messages.inc.php:883 tbl_change.php:1132 +#: libraries/messages.inc.php:879 tbl_change.php:1132 msgid "Show insert query" msgstr "" -#: libraries/messages.inc.php:886 server_status.php:273 +#: libraries/messages.inc.php:882 server_status.php:273 #, fuzzy msgid "Show open tables" msgstr "Taulak erakutsi" -#: libraries/messages.inc.php:887 main.php:219 +#: libraries/messages.inc.php:883 main.php:219 msgid "Show PHP information" msgstr "PHP informazioa erakutsi" -#: libraries/messages.inc.php:889 server_status.php:278 +#: libraries/messages.inc.php:885 server_status.php:278 msgid "Show slave hosts" msgstr "" -#: libraries/messages.inc.php:890 server_status.php:284 +#: libraries/messages.inc.php:886 server_status.php:284 msgid "Show slave status" msgstr "" -#: libraries/messages.inc.php:891 +#: libraries/messages.inc.php:887 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/messages.inc.php:892 +#: libraries/messages.inc.php:888 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/messages.inc.php:893 +#: libraries/messages.inc.php:889 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -5273,78 +5273,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/messages.inc.php:894 +#: libraries/messages.inc.php:890 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/messages.inc.php:895 +#: libraries/messages.inc.php:891 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/messages.inc.php:896 +#: libraries/messages.inc.php:892 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/messages.inc.php:897 +#: libraries/messages.inc.php:893 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/messages.inc.php:898 +#: libraries/messages.inc.php:894 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/messages.inc.php:899 +#: libraries/messages.inc.php:895 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/messages.inc.php:900 +#: libraries/messages.inc.php:896 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/messages.inc.php:901 +#: libraries/messages.inc.php:897 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/messages.inc.php:902 +#: libraries/messages.inc.php:898 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/messages.inc.php:903 +#: libraries/messages.inc.php:899 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/messages.inc.php:904 +#: libraries/messages.inc.php:900 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: libraries/messages.inc.php:905 +#: libraries/messages.inc.php:901 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/messages.inc.php:906 +#: libraries/messages.inc.php:902 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: libraries/messages.inc.php:907 +#: libraries/messages.inc.php:903 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -5352,7 +5352,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/messages.inc.php:908 +#: libraries/messages.inc.php:904 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -5360,42 +5360,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/messages.inc.php:909 +#: libraries/messages.inc.php:905 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/messages.inc.php:910 +#: libraries/messages.inc.php:906 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/messages.inc.php:911 +#: libraries/messages.inc.php:907 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/messages.inc.php:912 +#: libraries/messages.inc.php:908 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/messages.inc.php:913 +#: libraries/messages.inc.php:909 msgid "The number of pages currently dirty." msgstr "" -#: libraries/messages.inc.php:914 +#: libraries/messages.inc.php:910 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/messages.inc.php:915 +#: libraries/messages.inc.php:911 msgid "The number of free pages." msgstr "" -#: libraries/messages.inc.php:916 +#: libraries/messages.inc.php:912 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/messages.inc.php:917 +#: libraries/messages.inc.php:913 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -5403,33 +5403,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/messages.inc.php:918 +#: libraries/messages.inc.php:914 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/messages.inc.php:919 +#: libraries/messages.inc.php:915 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/messages.inc.php:920 +#: libraries/messages.inc.php:916 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/messages.inc.php:921 +#: libraries/messages.inc.php:917 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/messages.inc.php:922 +#: libraries/messages.inc.php:918 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/messages.inc.php:923 +#: libraries/messages.inc.php:919 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -5438,218 +5438,218 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/messages.inc.php:924 +#: libraries/messages.inc.php:920 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/messages.inc.php:925 +#: libraries/messages.inc.php:921 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/messages.inc.php:926 +#: libraries/messages.inc.php:922 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/messages.inc.php:927 +#: libraries/messages.inc.php:923 msgid "The current number of pending reads." msgstr "" -#: libraries/messages.inc.php:928 +#: libraries/messages.inc.php:924 msgid "The current number of pending writes." msgstr "" -#: libraries/messages.inc.php:929 +#: libraries/messages.inc.php:925 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/messages.inc.php:930 +#: libraries/messages.inc.php:926 msgid "The total number of data reads." msgstr "" -#: libraries/messages.inc.php:931 +#: libraries/messages.inc.php:927 msgid "The total number of data writes." msgstr "" -#: libraries/messages.inc.php:932 +#: libraries/messages.inc.php:928 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/messages.inc.php:933 +#: libraries/messages.inc.php:929 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/messages.inc.php:934 +#: libraries/messages.inc.php:930 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/messages.inc.php:935 +#: libraries/messages.inc.php:931 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/messages.inc.php:936 +#: libraries/messages.inc.php:932 msgid "The number of log write requests." msgstr "" -#: libraries/messages.inc.php:937 +#: libraries/messages.inc.php:933 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/messages.inc.php:938 +#: libraries/messages.inc.php:934 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/messages.inc.php:939 +#: libraries/messages.inc.php:935 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/messages.inc.php:940 +#: libraries/messages.inc.php:936 msgid "Pending log file writes." msgstr "" -#: libraries/messages.inc.php:941 +#: libraries/messages.inc.php:937 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/messages.inc.php:942 +#: libraries/messages.inc.php:938 msgid "The number of pages created." msgstr "" -#: libraries/messages.inc.php:943 +#: libraries/messages.inc.php:939 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: libraries/messages.inc.php:944 +#: libraries/messages.inc.php:940 msgid "The number of pages read." msgstr "" -#: libraries/messages.inc.php:945 +#: libraries/messages.inc.php:941 msgid "The number of pages written." msgstr "" -#: libraries/messages.inc.php:946 +#: libraries/messages.inc.php:942 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/messages.inc.php:947 +#: libraries/messages.inc.php:943 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/messages.inc.php:948 +#: libraries/messages.inc.php:944 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/messages.inc.php:949 +#: libraries/messages.inc.php:945 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/messages.inc.php:950 +#: libraries/messages.inc.php:946 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/messages.inc.php:951 +#: libraries/messages.inc.php:947 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/messages.inc.php:952 +#: libraries/messages.inc.php:948 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/messages.inc.php:953 +#: libraries/messages.inc.php:949 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/messages.inc.php:954 +#: libraries/messages.inc.php:950 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/messages.inc.php:955 +#: libraries/messages.inc.php:951 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/messages.inc.php:956 +#: libraries/messages.inc.php:952 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: libraries/messages.inc.php:957 +#: libraries/messages.inc.php:953 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/messages.inc.php:958 +#: libraries/messages.inc.php:954 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/messages.inc.php:959 +#: libraries/messages.inc.php:955 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/messages.inc.php:960 +#: libraries/messages.inc.php:956 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/messages.inc.php:961 +#: libraries/messages.inc.php:957 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/messages.inc.php:962 +#: libraries/messages.inc.php:958 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/messages.inc.php:963 +#: libraries/messages.inc.php:959 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/messages.inc.php:964 +#: libraries/messages.inc.php:960 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/messages.inc.php:965 +#: libraries/messages.inc.php:961 msgid "The number of files that are open." msgstr "" -#: libraries/messages.inc.php:966 +#: libraries/messages.inc.php:962 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/messages.inc.php:967 +#: libraries/messages.inc.php:963 msgid "The number of tables that are open." msgstr "" -#: libraries/messages.inc.php:968 +#: libraries/messages.inc.php:964 msgid "The number of free memory blocks in query cache." msgstr "" -#: libraries/messages.inc.php:969 +#: libraries/messages.inc.php:965 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/messages.inc.php:970 +#: libraries/messages.inc.php:966 msgid "The number of cache hits." msgstr "" -#: libraries/messages.inc.php:971 +#: libraries/messages.inc.php:967 msgid "The number of queries added to the cache." msgstr "" -#: libraries/messages.inc.php:972 +#: libraries/messages.inc.php:968 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -5657,105 +5657,105 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/messages.inc.php:973 +#: libraries/messages.inc.php:969 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/messages.inc.php:974 +#: libraries/messages.inc.php:970 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/messages.inc.php:975 +#: libraries/messages.inc.php:971 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/messages.inc.php:976 +#: libraries/messages.inc.php:972 #, fuzzy msgctxt "$strShowStatusReset" msgid "Reset" msgstr "Reset egin" -#: libraries/messages.inc.php:977 +#: libraries/messages.inc.php:973 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/messages.inc.php:978 +#: libraries/messages.inc.php:974 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: libraries/messages.inc.php:979 +#: libraries/messages.inc.php:975 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/messages.inc.php:980 +#: libraries/messages.inc.php:976 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: libraries/messages.inc.php:981 +#: libraries/messages.inc.php:977 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/messages.inc.php:982 +#: libraries/messages.inc.php:978 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/messages.inc.php:983 +#: libraries/messages.inc.php:979 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/messages.inc.php:984 +#: libraries/messages.inc.php:980 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/messages.inc.php:985 +#: libraries/messages.inc.php:981 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/messages.inc.php:986 +#: libraries/messages.inc.php:982 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/messages.inc.php:987 +#: libraries/messages.inc.php:983 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/messages.inc.php:988 +#: libraries/messages.inc.php:984 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/messages.inc.php:989 +#: libraries/messages.inc.php:985 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/messages.inc.php:990 +#: libraries/messages.inc.php:986 msgid "The number of sorted rows." msgstr "" -#: libraries/messages.inc.php:991 +#: libraries/messages.inc.php:987 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/messages.inc.php:992 +#: libraries/messages.inc.php:988 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/messages.inc.php:993 +#: libraries/messages.inc.php:989 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -5763,18 +5763,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/messages.inc.php:994 +#: libraries/messages.inc.php:990 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/messages.inc.php:995 +#: libraries/messages.inc.php:991 msgid "The number of currently open connections." msgstr "" -#: libraries/messages.inc.php:996 +#: libraries/messages.inc.php:992 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -5782,75 +5782,75 @@ msgid "" "implementation.)" msgstr "" -#: libraries/messages.inc.php:997 +#: libraries/messages.inc.php:993 msgid "The number of threads that are not sleeping." msgstr "" -#: libraries/messages.inc.php:999 tbl_printview.php:75 +#: libraries/messages.inc.php:995 tbl_printview.php:75 msgid "Show tables" msgstr "Taulak erakutsi" -#: libraries/messages.inc.php:1000 libraries/sql_query_form.lib.php:396 +#: libraries/messages.inc.php:996 libraries/sql_query_form.lib.php:396 msgid " Show this query here again " msgstr " Kontsulta hau hemen berriz erakutsi" -#: libraries/messages.inc.php:1001 libraries/mysql_charsets.lib.php:217 +#: libraries/messages.inc.php:997 libraries/mysql_charsets.lib.php:217 #: libraries/mysql_charsets.lib.php:342 msgid "Simplified Chinese" msgstr "Txinera erraztua" -#: libraries/messages.inc.php:1002 tbl_operations.php:258 +#: libraries/messages.inc.php:998 tbl_operations.php:258 msgid "(singly)" msgstr "(soilik)" -#: libraries/messages.inc.php:1005 libraries/replication_gui.lib.php:52 +#: libraries/messages.inc.php:1001 libraries/replication_gui.lib.php:52 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" msgstr "" -#: libraries/messages.inc.php:1006 libraries/mysql_charsets.lib.php:283 +#: libraries/messages.inc.php:1002 libraries/mysql_charsets.lib.php:283 msgid "Slovak" msgstr "" -#: libraries/messages.inc.php:1007 libraries/mysql_charsets.lib.php:286 +#: libraries/messages.inc.php:1003 libraries/mysql_charsets.lib.php:286 msgid "Slovenian" msgstr "" -#: libraries/messages.inc.php:1008 pmd_general.php:95 +#: libraries/messages.inc.php:1004 pmd_general.php:95 msgid "Small/Big All" msgstr "" -#: libraries/messages.inc.php:1009 pmd_general.php:91 +#: libraries/messages.inc.php:1005 pmd_general.php:91 msgid "Snap to grid" msgstr "" -#: libraries/messages.inc.php:1011 server_synchronize.php:1167 +#: libraries/messages.inc.php:1007 server_synchronize.php:1167 msgid "Socket" msgstr "" -#: libraries/messages.inc.php:1013 server_status.php:259 +#: libraries/messages.inc.php:1009 server_status.php:259 msgid "Sorting" msgstr "" -#: libraries/messages.inc.php:1015 tbl_printview.php:310 tbl_structure.php:657 +#: libraries/messages.inc.php:1011 tbl_printview.php:310 tbl_structure.php:657 msgid "Space usage" msgstr "Erabilitako lekua" -#: libraries/messages.inc.php:1016 libraries/mysql_charsets.lib.php:289 +#: libraries/messages.inc.php:1012 libraries/mysql_charsets.lib.php:289 #, fuzzy msgid "Spanish" msgstr "Danesa" -#: libraries/messages.inc.php:1019 +#: libraries/messages.inc.php:1015 msgid "Export type" msgstr "Esportazio mota" -#: libraries/messages.inc.php:1020 +#: libraries/messages.inc.php:1016 msgid "Export time in UTC" msgstr "" -#: libraries/messages.inc.php:1021 libraries/sqlparser.lib.php:173 +#: libraries/messages.inc.php:1017 libraries/sqlparser.lib.php:173 msgid "" "There is a chance that you may have found a bug in the SQL parser. Please " "examine your query closely, and check that the quotes are correct and not " @@ -5873,7 +5873,7 @@ msgstr "" "ezazu zure SQL kontsulta arazoa sortzen duen zatira, eta bidal ezazu errore-" "txosten bat behean seinalaturiko MOZKETA atalean datu-katea paratuz:" -#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:137 +#: libraries/messages.inc.php:1018 libraries/sqlparser.lib.php:137 msgid "" "There seems to be an error in your SQL query. The MySQL server error output " "below, if there is any, may also help you in diagnosing the problem" @@ -5881,419 +5881,419 @@ msgstr "" "Ematen du zure SQL kontsultan errore bat dagoela. MySQL zerbitzariak " "itzulitako erroreak, baldin badago, arazoa diagnostikatzen lagundu zaitzake" -#: libraries/messages.inc.php:1026 libraries/sqlparser.lib.php:495 +#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:495 msgid "Invalid Identifer" msgstr "Indentifikatzaile okerra" -#: libraries/messages.inc.php:1027 libraries/sqlparser.lib.php:344 +#: libraries/messages.inc.php:1023 libraries/sqlparser.lib.php:344 msgid "Unclosed quote" msgstr "Itxi gabeko komatxoak" -#: libraries/messages.inc.php:1028 libraries/sqlparser.lib.php:612 +#: libraries/messages.inc.php:1024 libraries/sqlparser.lib.php:612 msgid "Unknown Punctuation String" msgstr "Puntuazio ikurra ezezaguna" -#: libraries/messages.inc.php:1030 server_replication.php:327 +#: libraries/messages.inc.php:1026 server_replication.php:327 #: server_replication.php:328 #, fuzzy msgid "Start" msgstr "Lar" -#: libraries/messages.inc.php:1033 tbl_printview.php:369 tbl_structure.php:729 +#: libraries/messages.inc.php:1029 tbl_printview.php:369 tbl_structure.php:729 msgid "Statements" msgstr "Sententziak" -#: libraries/messages.inc.php:1034 tbl_printview.php:380 tbl_structure.php:741 +#: libraries/messages.inc.php:1030 tbl_printview.php:380 tbl_structure.php:741 msgid "static" msgstr "" -#: libraries/messages.inc.php:1035 server_status.php:388 +#: libraries/messages.inc.php:1031 server_status.php:388 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: libraries/messages.inc.php:1038 server_replication.php:327 +#: libraries/messages.inc.php:1034 server_replication.php:327 #: server_replication.php:328 msgid "Stop" msgstr "" -#: libraries/messages.inc.php:1039 server_engines.php:49 +#: libraries/messages.inc.php:1035 server_engines.php:49 msgid "Storage Engines" msgstr "" -#: libraries/messages.inc.php:1040 libraries/tbl_properties.inc.php:726 +#: libraries/messages.inc.php:1036 libraries/tbl_properties.inc.php:726 #: server_engines.php:58 tbl_operations.php:353 msgid "Storage Engine" msgstr "" -#: libraries/messages.inc.php:1042 +#: libraries/messages.inc.php:1038 msgid "CSV for MS Excel" msgstr "MS Excel datuentzako CSV" -#: libraries/messages.inc.php:1044 tbl_structure.php:516 tbl_structure.php:518 +#: libraries/messages.inc.php:1040 tbl_structure.php:516 tbl_structure.php:518 msgid "Propose table structure" msgstr "Taularen egituraren proposamena " -#: libraries/messages.inc.php:1045 server_synchronize.php:424 +#: libraries/messages.inc.php:1041 server_synchronize.php:424 #: server_synchronize.php:867 msgid "Structure Difference" msgstr "" -#: libraries/messages.inc.php:1049 server_synchronize.php:265 +#: libraries/messages.inc.php:1045 server_synchronize.php:265 msgid "Structure Synchronization" msgstr "" -#: libraries/messages.inc.php:1050 libraries/sql_query_form.lib.php:462 +#: libraries/messages.inc.php:1046 libraries/sql_query_form.lib.php:462 msgid "Submit" msgstr "Bidali" -#: libraries/messages.inc.php:1052 main.php:358 +#: libraries/messages.inc.php:1048 main.php:358 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " "issues." msgstr "" -#: libraries/messages.inc.php:1054 libraries/mysql_charsets.lib.php:295 +#: libraries/messages.inc.php:1050 libraries/mysql_charsets.lib.php:295 #: libraries/mysql_charsets.lib.php:392 msgid "Swedish" msgstr "Suediera" -#: libraries/messages.inc.php:1060 tbl_operations.php:556 +#: libraries/messages.inc.php:1056 tbl_operations.php:556 msgid "Switch to copied table" msgstr "Kopiatutako taulara aldatu" -#: libraries/messages.inc.php:1061 server_synchronize.php:1213 +#: libraries/messages.inc.php:1057 server_synchronize.php:1213 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." msgstr "" -#: libraries/messages.inc.php:1062 server_synchronize.php:451 +#: libraries/messages.inc.php:1058 server_synchronize.php:451 #: server_synchronize.php:896 msgid "Synchronize Databases" msgstr "" -#: libraries/messages.inc.php:1063 libraries/server_links.inc.php:92 +#: libraries/messages.inc.php:1059 libraries/server_links.inc.php:92 #: server_synchronize.php:1092 server_synchronize.php:1100 msgid "Synchronize" msgstr "" -#: libraries/messages.inc.php:1065 server_synchronize.php:430 +#: libraries/messages.inc.php:1061 server_synchronize.php:430 #: server_synchronize.php:873 msgid "Add column(s)" msgstr "" -#: libraries/messages.inc.php:1066 tbl_create.php:62 +#: libraries/messages.inc.php:1062 tbl_create.php:62 #, fuzzy, php-format msgid "Table %s already exists!" msgstr "%s erabiltzailea badago lehendik ere!" -#: libraries/messages.inc.php:1067 server_synchronize.php:432 +#: libraries/messages.inc.php:1063 server_synchronize.php:432 #: server_synchronize.php:875 msgid "Alter column(s)" msgstr "" -#: libraries/messages.inc.php:1068 tbl_addfield.php:189 tbl_alter.php:103 +#: libraries/messages.inc.php:1064 tbl_addfield.php:189 tbl_alter.php:103 #: tbl_indexes.php:98 #, fuzzy, php-format msgid "Table %1$s has been altered successfully" msgstr "Hautatutako erabiltzaileak arrakastaz ezabatu dira." -#: libraries/messages.inc.php:1069 server_synchronize.php:434 +#: libraries/messages.inc.php:1065 server_synchronize.php:434 #: server_synchronize.php:877 msgid "Apply index(s)" msgstr "" -#: libraries/messages.inc.php:1071 server_synchronize.php:446 +#: libraries/messages.inc.php:1067 server_synchronize.php:446 #: server_synchronize.php:890 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: libraries/messages.inc.php:1072 tbl_move_copy.php:82 +#: libraries/messages.inc.php:1068 tbl_move_copy.php:82 msgid "The table name is empty!" msgstr "Taularen izena hutsik dago!" -#: libraries/messages.inc.php:1073 tbl_create.php:249 +#: libraries/messages.inc.php:1069 tbl_create.php:249 #, fuzzy, php-format msgid "Table %1$s has been created." msgstr "%s taula ezabatu egin da" -#: libraries/messages.inc.php:1076 tbl_operations.php:628 +#: libraries/messages.inc.php:1072 tbl_operations.php:628 #, php-format msgid "Table %s has been flushed" msgstr "%s taularen cachea hustu egin da" -#: libraries/messages.inc.php:1077 server_synchronize.php:436 +#: libraries/messages.inc.php:1073 server_synchronize.php:436 #: server_synchronize.php:879 msgid "Insert row(s)" msgstr "" -#: libraries/messages.inc.php:1078 libraries/tbl_links.inc.php:107 +#: libraries/messages.inc.php:1074 libraries/tbl_links.inc.php:107 #: libraries/tbl_links.inc.php:140 libraries/tbl_links.inc.php:141 msgid "Table seems to be empty!" msgstr "" -#: libraries/messages.inc.php:1079 tbl_operations.php:568 +#: libraries/messages.inc.php:1075 tbl_operations.php:568 msgid "Table maintenance" msgstr "Taularen mantenua" -#: libraries/messages.inc.php:1080 libraries/tbl_properties.inc.php:618 +#: libraries/messages.inc.php:1076 libraries/tbl_properties.inc.php:618 #: server_synchronize.php:428 server_synchronize.php:871 msgid "Table name" msgstr "" -#: libraries/messages.inc.php:1081 pdf_schema.php:1116 +#: libraries/messages.inc.php:1077 pdf_schema.php:1116 msgid "Table of contents" msgstr "Edukinen taula" -#: libraries/messages.inc.php:1082 tbl_operations.php:334 +#: libraries/messages.inc.php:1078 tbl_operations.php:334 msgid "Table options" msgstr "Taularen hobespenak" -#: libraries/messages.inc.php:1083 server_synchronize.php:431 +#: libraries/messages.inc.php:1079 server_synchronize.php:431 #: server_synchronize.php:874 msgid "Remove column(s)" msgstr "" -#: libraries/messages.inc.php:1084 server_synchronize.php:433 +#: libraries/messages.inc.php:1080 server_synchronize.php:433 #: server_synchronize.php:876 msgid "Remove index(s)" msgstr "" -#: libraries/messages.inc.php:1088 server_synchronize.php:435 +#: libraries/messages.inc.php:1084 server_synchronize.php:435 #: server_synchronize.php:878 msgid "Update row(s)" msgstr "" -#: libraries/messages.inc.php:1090 server_synchronize.php:942 +#: libraries/messages.inc.php:1086 server_synchronize.php:942 msgid "Target database has been synchronized with source database" msgstr "" -#: libraries/messages.inc.php:1091 server_privileges.php:392 +#: libraries/messages.inc.php:1087 server_privileges.php:392 #: server_privileges.php:527 server_privileges.php:1679 #: server_privileges.php:1685 msgid "Table-specific privileges" msgstr "Taularen pribilegio espezifikoak" -#: libraries/messages.inc.php:1092 server_status.php:254 +#: libraries/messages.inc.php:1088 server_status.php:254 msgid "Temporary data" msgstr "" -#: libraries/messages.inc.php:1093 tbl_change.php:728 +#: libraries/messages.inc.php:1089 tbl_change.php:728 msgid " Because of its length,
this field might not be editable " msgstr " Bere luzeragatik,
eremu hau ez da editagarria " -#: libraries/messages.inc.php:1094 +#: libraries/messages.inc.php:1090 msgid "Texy! text" msgstr "" -#: libraries/messages.inc.php:1095 libraries/mysql_charsets.lib.php:298 +#: libraries/messages.inc.php:1091 libraries/mysql_charsets.lib.php:298 #: libraries/mysql_charsets.lib.php:395 msgid "Thai" msgstr "Thailandiarra" -#: libraries/messages.inc.php:1102 libraries/replication_gui.lib.php:308 +#: libraries/messages.inc.php:1098 libraries/replication_gui.lib.php:308 #: server_privileges.php:734 msgid "This Host" msgstr "Host hau" -#: libraries/messages.inc.php:1103 server_status.php:252 +#: libraries/messages.inc.php:1099 server_status.php:252 msgid "Threads" msgstr "" -#: libraries/messages.inc.php:1104 server_processlist.php:22 +#: libraries/messages.inc.php:1100 server_processlist.php:22 #, php-format msgid "Thread %s was successfully killed." msgstr "%s haria arrakastaz ezabatu da." -#: libraries/messages.inc.php:1106 +#: libraries/messages.inc.php:1102 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." msgstr "" -#: libraries/messages.inc.php:1109 pmd_pdf.php:94 +#: libraries/messages.inc.php:1105 pmd_pdf.php:94 msgid "to/from page" msgstr "" -#: libraries/messages.inc.php:1110 pdf_pages.php:343 +#: libraries/messages.inc.php:1106 pdf_pages.php:343 msgid "Toggle scratchboard" msgstr "Aldatu \"scratchboard\"-a" -#: libraries/messages.inc.php:1111 pmd_general.php:99 +#: libraries/messages.inc.php:1107 pmd_general.php:99 msgid "Toggle small/big" msgstr "" -#: libraries/messages.inc.php:1112 pmd_help.php:27 +#: libraries/messages.inc.php:1108 pmd_help.php:27 msgid "To select relation, click :" msgstr "" -#: libraries/messages.inc.php:1115 libraries/tbl_links.inc.php:149 +#: libraries/messages.inc.php:1111 libraries/tbl_links.inc.php:149 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" -#: libraries/messages.inc.php:1116 tbl_tracking.php:655 +#: libraries/messages.inc.php:1112 tbl_tracking.php:655 msgid "Activate now" msgstr "" -#: libraries/messages.inc.php:1117 tbl_tracking.php:653 +#: libraries/messages.inc.php:1113 tbl_tracking.php:653 #, php-format msgid "Activate tracking for %s.%s" msgstr "" -#: libraries/messages.inc.php:1118 tbl_tracking.php:221 +#: libraries/messages.inc.php:1114 tbl_tracking.php:221 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/messages.inc.php:1119 tbl_tracking.php:688 +#: libraries/messages.inc.php:1115 tbl_tracking.php:688 #, fuzzy msgid "Create version" msgstr "Zerbitzariaren bertsioa" -#: libraries/messages.inc.php:1120 tbl_tracking.php:668 +#: libraries/messages.inc.php:1116 tbl_tracking.php:668 #, php-format msgid "Create version %s of %s.%s" msgstr "" -#: libraries/messages.inc.php:1122 tbl_tracking.php:412 +#: libraries/messages.inc.php:1118 tbl_tracking.php:412 msgid "Data definition statement" msgstr "" -#: libraries/messages.inc.php:1123 tbl_tracking.php:463 +#: libraries/messages.inc.php:1119 tbl_tracking.php:463 msgid "Data manipulation statement" msgstr "" -#: libraries/messages.inc.php:1124 tbl_tracking.php:410 tbl_tracking.php:461 +#: libraries/messages.inc.php:1120 tbl_tracking.php:410 tbl_tracking.php:461 #, fuzzy msgid "Date" msgstr "Datuak" -#: libraries/messages.inc.php:1125 tbl_tracking.php:642 +#: libraries/messages.inc.php:1121 tbl_tracking.php:642 msgid "Deactivate now" msgstr "" -#: libraries/messages.inc.php:1126 tbl_tracking.php:640 +#: libraries/messages.inc.php:1122 tbl_tracking.php:640 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "" -#: libraries/messages.inc.php:1127 tbl_tracking.php:521 +#: libraries/messages.inc.php:1123 tbl_tracking.php:521 #, php-format msgid "Export as %s" msgstr "" -#: libraries/messages.inc.php:1130 tbl_tracking.php:251 tbl_tracking.php:379 +#: libraries/messages.inc.php:1126 tbl_tracking.php:251 tbl_tracking.php:379 msgid "Close" msgstr "" -#: libraries/messages.inc.php:1131 tbl_tracking.php:114 +#: libraries/messages.inc.php:1127 tbl_tracking.php:114 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/messages.inc.php:1133 tbl_tracking.php:397 tbl_tracking.php:504 +#: libraries/messages.inc.php:1129 tbl_tracking.php:397 tbl_tracking.php:504 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "" -#: libraries/messages.inc.php:1134 tbl_tracking.php:561 +#: libraries/messages.inc.php:1130 tbl_tracking.php:561 msgid "Show versions" msgstr "" -#: libraries/messages.inc.php:1135 tbl_tracking.php:507 +#: libraries/messages.inc.php:1131 tbl_tracking.php:507 msgid "SQL dump (file download)" msgstr "" -#: libraries/messages.inc.php:1136 tbl_tracking.php:508 +#: libraries/messages.inc.php:1132 tbl_tracking.php:508 msgid "SQL dump" msgstr "" -#: libraries/messages.inc.php:1137 tbl_tracking.php:213 +#: libraries/messages.inc.php:1133 tbl_tracking.php:213 msgid "SQL statements executed." msgstr "" -#: libraries/messages.inc.php:1138 +#: libraries/messages.inc.php:1134 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/messages.inc.php:1139 tbl_tracking.php:509 +#: libraries/messages.inc.php:1135 tbl_tracking.php:509 msgid "SQL execution" msgstr "" -#: libraries/messages.inc.php:1140 tbl_tracking.php:230 +#: libraries/messages.inc.php:1136 tbl_tracking.php:230 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/messages.inc.php:1141 tbl_tracking.php:381 +#: libraries/messages.inc.php:1137 tbl_tracking.php:381 msgid "Tracking statements" msgstr "" -#: libraries/messages.inc.php:1148 tbl_tracking.php:593 +#: libraries/messages.inc.php:1144 tbl_tracking.php:593 #, fuzzy msgid "Version" msgstr "PHP Bertsioa" -#: libraries/messages.inc.php:1149 tbl_tracking.php:672 +#: libraries/messages.inc.php:1145 tbl_tracking.php:672 msgid "Track these data definition statements:" msgstr "" -#: libraries/messages.inc.php:1150 tbl_tracking.php:680 +#: libraries/messages.inc.php:1146 tbl_tracking.php:680 msgid "Track these data manipulation statements:" msgstr "" -#: libraries/messages.inc.php:1155 tbl_tracking.php:411 tbl_tracking.php:462 +#: libraries/messages.inc.php:1151 tbl_tracking.php:411 tbl_tracking.php:462 #, fuzzy msgid "Username" msgstr "Erabiltzaile-izena:" -#: libraries/messages.inc.php:1156 tbl_tracking.php:203 +#: libraries/messages.inc.php:1152 tbl_tracking.php:203 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "" -#: libraries/messages.inc.php:1157 tbl_tracking.php:187 +#: libraries/messages.inc.php:1153 tbl_tracking.php:187 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "" -#: libraries/messages.inc.php:1158 tbl_tracking.php:195 +#: libraries/messages.inc.php:1154 tbl_tracking.php:195 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "" -#: libraries/messages.inc.php:1159 tbl_tracking.php:262 +#: libraries/messages.inc.php:1155 tbl_tracking.php:262 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/messages.inc.php:1161 tbl_tracking.php:220 +#: libraries/messages.inc.php:1157 tbl_tracking.php:220 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/messages.inc.php:1162 libraries/mysql_charsets.lib.php:219 +#: libraries/messages.inc.php:1158 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:362 msgid "Traditional Chinese" msgstr "Txinera tradizionala" -#: libraries/messages.inc.php:1163 libraries/mysql_charsets.lib.php:292 +#: libraries/messages.inc.php:1159 libraries/mysql_charsets.lib.php:292 #, fuzzy msgid "Traditional Spanish" msgstr "Txinera tradizionala" -#: libraries/messages.inc.php:1164 server_status.php:388 +#: libraries/messages.inc.php:1160 server_status.php:388 msgid "Traffic" msgstr "Trafikoa" -#: libraries/messages.inc.php:1165 server_status.php:261 +#: libraries/messages.inc.php:1161 server_status.php:261 msgid "Transaction coordinator" msgstr "" -#: libraries/messages.inc.php:1166 +#: libraries/messages.inc.php:1162 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 " @@ -6301,13 +6301,13 @@ msgid "" "need to set the first option to the empty string." msgstr "" -#: libraries/messages.inc.php:1167 +#: libraries/messages.inc.php:1163 msgid "" "Displays hexadecimal representation of data. Optional first parameter " "specifies how often space will be added (defaults to 2 nibbles)." msgstr "" -#: libraries/messages.inc.php:1168 +#: libraries/messages.inc.php:1164 msgid "" "Displays a clickable thumbnail. The options are the maximum width and height " "in pixels. The original aspect ratio is preserved." @@ -6315,16 +6315,16 @@ msgstr "" "Miniatura klikagarri bat erakusten du; aukerak: luzera,altuera pixeletan " "(jatorrizko erlazioa mantentzen du)" -#: libraries/messages.inc.php:1169 +#: libraries/messages.inc.php:1165 msgid "Displays a link to download this image." msgstr "" "Irudi honi zuzendutako esketa bat erakusten du(blob deskarga zuzena, i.e.)." -#: libraries/messages.inc.php:1170 +#: libraries/messages.inc.php:1166 msgid "See image/jpeg: inline" msgstr "Ikusi image/jpeg: inline" -#: libraries/messages.inc.php:1171 +#: libraries/messages.inc.php:1167 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 " @@ -6336,7 +6336,7 @@ msgid "" "gmdate() function." msgstr "" -#: libraries/messages.inc.php:1172 +#: libraries/messages.inc.php:1168 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 " @@ -6361,13 +6361,13 @@ msgstr "" "1 izanez gero NOWRAP bat ezarriko dio edukin-gelaxkari, beraz irteera osoa " "berformateatu barik erakutsiko da(Lehenetsi 1)" -#: libraries/messages.inc.php:1173 +#: libraries/messages.inc.php:1169 msgid "" "Displays the contents of the field as-is, without running it through " "htmlspecialchars(). That is, the field is assumed to contain valid HTML." msgstr "Eremuaren jatorrizko formateoa mantentzen du. Aldaketarik egin gabe." -#: libraries/messages.inc.php:1174 +#: libraries/messages.inc.php:1170 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 " @@ -6377,7 +6377,7 @@ msgstr "" "lehenengo aukera \"http://domain.com/\" moduko aurrizki bat da, bigarren " "aukera pixeletan neurtutako zabalera da, hirugarrena altuera da." -#: libraries/messages.inc.php:1175 +#: libraries/messages.inc.php:1171 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 " @@ -6387,11 +6387,11 @@ msgstr "" "\"http://domain.com/\" moduko aurrizki bat da , bigarren aukera estekaren " "izenburua da." -#: libraries/messages.inc.php:1176 +#: libraries/messages.inc.php:1172 msgid "Formats text as SQL query with syntax highlighting." msgstr "" -#: libraries/messages.inc.php:1177 +#: libraries/messages.inc.php:1173 msgid "" "Displays a part of a string. The first option is the number of characters to " "skip from the beginning of the string (Default 0). The second option is the " @@ -6405,71 +6405,71 @@ msgstr "" "bueltatuko du. Hirugarren aukerak zehazten du zeintzuk karaktere txertatuko " "diren irteerara azpikate bat itzultzen denean (Lehenetsia: ...) ." -#: libraries/messages.inc.php:1179 server_binlog.php:183 server_binlog.php:186 +#: libraries/messages.inc.php:1175 server_binlog.php:183 server_binlog.php:186 #: server_processlist.php:49 server_processlist.php:51 msgid "Truncate Shown Queries" msgstr "Erakutsitako kontultak moztu" -#: libraries/messages.inc.php:1180 libraries/mysql_charsets.lib.php:301 +#: libraries/messages.inc.php:1176 libraries/mysql_charsets.lib.php:301 #: libraries/mysql_charsets.lib.php:389 msgid "Turkish" msgstr "Turkiera" -#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:304 +#: libraries/messages.inc.php:1179 libraries/mysql_charsets.lib.php:304 #: libraries/mysql_charsets.lib.php:386 msgid "Ukrainian" msgstr "Ukraniera" -#: libraries/messages.inc.php:1185 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:1181 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 msgid "Unicode" msgstr "Unicode" -#: libraries/messages.inc.php:1187 libraries/mysql_charsets.lib.php:398 +#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:398 #: libraries/mysql_charsets.lib.php:405 msgid "unknown" msgstr "ezezaguna" -#: libraries/messages.inc.php:1190 server_privileges.php:1152 +#: libraries/messages.inc.php:1186 server_privileges.php:1152 #, php-format msgid "You have updated the privileges for %s." msgstr "%s-aren pribilegioak eguneratu dituzu." -#: libraries/messages.inc.php:1191 user_password.php:112 +#: libraries/messages.inc.php:1187 user_password.php:112 msgid "The profile has been updated." msgstr "Profila eguneratua izan da." -#: libraries/messages.inc.php:1193 libraries/relation.lib.php:138 +#: libraries/messages.inc.php:1189 libraries/relation.lib.php:138 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "Mesedez, Dokumentazioa begiratu zure zutabeen iruzkinen Taula nola " "eguneratzeko" -#: libraries/messages.inc.php:1194 +#: libraries/messages.inc.php:1190 #, php-format msgid "You should upgrade to %s %s or later." msgstr "%s %s bertsiora edo handiago batera eguneratu beharko zenuke." -#: libraries/messages.inc.php:1204 tbl_printview.php:314 tbl_structure.php:661 +#: libraries/messages.inc.php:1200 tbl_printview.php:314 tbl_structure.php:661 msgid "Usage" msgstr "Erabilpena" -#: libraries/messages.inc.php:1205 +#: libraries/messages.inc.php:1201 msgid "Enclose table and field names with backquotes" msgstr "\"Backquotes\" erabili taula eta eremuen izenekin " -#: libraries/messages.inc.php:1206 libraries/replication_gui.lib.php:314 +#: libraries/messages.inc.php:1202 libraries/replication_gui.lib.php:314 #: server_privileges.php:740 msgid "Use Host Table" msgstr "Host taula erabili" -#: libraries/messages.inc.php:1207 server_privileges.php:848 +#: libraries/messages.inc.php:1203 server_privileges.php:848 #, php-format msgid "The user %s already exists!" msgstr "%s erabiltzailea badago lehendik ere!" -#: libraries/messages.inc.php:1209 libraries/replication_gui.lib.php:55 +#: libraries/messages.inc.php:1205 libraries/replication_gui.lib.php:55 #: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245 #: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255 #: server_privileges.php:672 server_privileges.php:675 @@ -6477,35 +6477,35 @@ msgstr "%s erabiltzailea badago lehendik ere!" msgid "User name" msgstr "Erabiltzaile-izena" -#: libraries/messages.inc.php:1210 server_privileges.php:1645 +#: libraries/messages.inc.php:1206 server_privileges.php:1645 msgid "The selected user was not found in the privilege table." msgstr "Hautatutako erabiltzailea ez da pribilegioen taulan aurkitu." -#: libraries/messages.inc.php:1211 server_privileges.php:1365 +#: libraries/messages.inc.php:1207 server_privileges.php:1365 msgid "User overview" msgstr "Erabiltzailearen info orokorra" -#: libraries/messages.inc.php:1212 server_privileges.php:1261 +#: libraries/messages.inc.php:1208 server_privileges.php:1261 msgid "The selected users have been deleted successfully." msgstr "Hautatutako erabiltzaileak arrakastaz ezabatu dira." -#: libraries/messages.inc.php:1213 server_privileges.php:2026 +#: libraries/messages.inc.php:1209 server_privileges.php:2026 #, php-format msgid "Users having access to "%s"" msgstr ""%s"-(e)ra sarbidea duten erabiltzaileak" -#: libraries/messages.inc.php:1214 main.php:189 server_privileges.php:1350 +#: libraries/messages.inc.php:1210 main.php:189 server_privileges.php:1350 #: server_privileges.php:1497 server_privileges.php:1611 #: server_privileges.php:2029 server_processlist.php:54 msgid "User" msgstr "Erabiltzailea" -#: libraries/messages.inc.php:1215 tbl_change.php:1171 +#: libraries/messages.inc.php:1211 tbl_change.php:1171 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/messages.inc.php:1217 libraries/replication_gui.lib.php:251 +#: libraries/messages.inc.php:1213 libraries/replication_gui.lib.php:251 #: libraries/replication_gui.lib.php:319 libraries/replication_gui.lib.php:342 #: server_privileges.php:678 server_privileges.php:745 #: server_privileges.php:769 server_privileges.php:1889 @@ -6513,7 +6513,7 @@ msgstr "" msgid "Use text field" msgstr "Testu-eremua erabili" -#: libraries/messages.inc.php:1221 libraries/sqlvalidator.lib.php:68 +#: libraries/messages.inc.php:1217 libraries/sqlvalidator.lib.php:68 #, php-format msgid "" "The SQL validator could not be initialized. Please check if you have " @@ -6523,86 +6523,86 @@ msgstr "" "beharrezkoak diren php luzapenak instalatu dituzun %sdokumentazioan%s " "azaltzen den moduan." -#: libraries/messages.inc.php:1222 libraries/replication_gui.lib.php:111 +#: libraries/messages.inc.php:1218 libraries/replication_gui.lib.php:111 #: server_status.php:627 tbl_change.php:324 tbl_printview.php:370 #: tbl_select.php:139 tbl_structure.php:730 msgid "Value" msgstr "balioa" -#: libraries/messages.inc.php:1223 libraries/replication_gui.lib.php:110 +#: libraries/messages.inc.php:1219 libraries/replication_gui.lib.php:110 #: libraries/sql_query_form.lib.php:445 server_status.php:626 #: server_variables.php:52 msgid "Variable" msgstr "Aldagaia" -#: libraries/messages.inc.php:1225 server_export.php:21 +#: libraries/messages.inc.php:1221 server_export.php:21 msgid "View dump (schema) of databases" msgstr "Ikusi datu-baseen iraulketa (eskema)" -#: libraries/messages.inc.php:1227 tbl_export.php:23 +#: libraries/messages.inc.php:1223 tbl_export.php:23 msgid "View dump (schema) of table" msgstr "Ikusi taularen iraulketa (eskema)" -#: libraries/messages.inc.php:1231 view_create.php:142 +#: libraries/messages.inc.php:1227 view_create.php:142 msgid "VIEW name" msgstr "" -#: libraries/messages.inc.php:1237 main.php:205 +#: libraries/messages.inc.php:1233 main.php:205 msgid "Web server" msgstr "" -#: libraries/messages.inc.php:1239 libraries/mysql_charsets.lib.php:277 +#: libraries/messages.inc.php:1235 libraries/mysql_charsets.lib.php:277 #: libraries/mysql_charsets.lib.php:325 msgid "West European" msgstr "Mendebaldeko europearra" -#: libraries/messages.inc.php:1240 main.php:230 +#: libraries/messages.inc.php:1236 main.php:230 msgid "Wiki" msgstr "" -#: libraries/messages.inc.php:1241 server_privileges.php:2138 +#: libraries/messages.inc.php:1237 server_privileges.php:2138 msgid "wildcard" msgstr "komodina" -#: libraries/messages.inc.php:1248 +#: libraries/messages.inc.php:1244 msgid "Export contents" msgstr "" -#: libraries/messages.inc.php:1249 +#: libraries/messages.inc.php:1245 msgid "Export functions" msgstr "" -#: libraries/messages.inc.php:1250 +#: libraries/messages.inc.php:1246 msgid "Export procedures" msgstr "" -#: libraries/messages.inc.php:1251 +#: libraries/messages.inc.php:1247 msgid "Export Structure Schemas (recommended)" msgstr "" -#: libraries/messages.inc.php:1252 +#: libraries/messages.inc.php:1248 #, fuzzy msgid "Export tables" msgstr "Esportazio mota" -#: libraries/messages.inc.php:1253 +#: libraries/messages.inc.php:1249 #, fuzzy msgid "Export triggers" msgstr "Esportazio mota" -#: libraries/messages.inc.php:1254 +#: libraries/messages.inc.php:1250 msgid "Export views" msgstr "" -#: libraries/messages.inc.php:1255 +#: libraries/messages.inc.php:1251 msgid "XML" msgstr "XML" -#: libraries/messages.inc.php:1259 server_privileges.php:592 +#: libraries/messages.inc.php:1255 server_privileges.php:592 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Oharra: Aukera hauek zerora ezarriz gero muga kentzen da." -#: libraries/messages.inc.php:1260 +#: libraries/messages.inc.php:1256 msgid "\"zipped\"" msgstr "\"zipatuta\"" diff --git a/po/fa.po b/po/fa.po index c9bcbf027..08f15177e 100644 --- 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-05-13 11:25+0200\n" +"POT-Creation-Date: 2010-05-13 11:30+0200\n" "PO-Revision-Date: 2010-03-12 09:17+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: persian \n" @@ -13,19 +13,19 @@ msgstr "" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:38 browse_foreigners.php:59 -#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:870 +#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:866 #: server_privileges.php:1475 msgid "Show all" msgstr "نمايش همه" #: browse_foreigners.php:82 db_operations.php:648 -#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:394 -#: libraries/export/pdf.php:147 libraries/messages.inc.php:597 +#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394 +#: libraries/export/pdf.php:147 libraries/messages.inc.php:593 #: pdf_schema.php:283 pdf_schema.php:1123 pdf_schema.php:1139 msgid "Page number:" msgstr "شماره صفحه:" -#: browse_foreigners.php:132 libraries/messages.inc.php:1242 +#: browse_foreigners.php:132 libraries/messages.inc.php:1238 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -35,7 +35,7 @@ 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/db_links.inc.php:75 -#: libraries/messages.inc.php:841 libraries/tbl_links.inc.php:63 +#: libraries/messages.inc.php:837 libraries/tbl_links.inc.php:63 msgid "Search" msgstr "جستجو" @@ -44,12 +44,12 @@ msgstr "جستجو" #: db_search.php:362 db_structure.php:567 js/messages.php:48 #: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2267 +#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 #: 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 #: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614 -#: libraries/messages.inc.php:361 libraries/replication_gui.lib.php:73 +#: libraries/messages.inc.php:357 libraries/replication_gui.lib.php:73 #: libraries/replication_gui.lib.php:365 libraries/select_server.lib.php:104 #: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477 #: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782 @@ -69,34 +69,34 @@ msgid "Go" msgstr "تاييد" #: browse_foreigners.php:168 browse_foreigners.php:172 -#: libraries/Index.class.php:442 libraries/messages.inc.php:459 +#: libraries/Index.class.php:442 libraries/messages.inc.php:455 #: tbl_tracking.php:320 msgid "Keyname" msgstr "Keyname" #: browse_foreigners.php:169 browse_foreigners.php:171 -#: libraries/messages.inc.php:252 server_collations.php:55 +#: libraries/messages.inc.php:248 server_collations.php:55 #: server_collations.php:67 server_engines.php:59 server_status.php:628 msgid "Description" msgstr "توضیحات" #: browse_foreigners.php:247 browse_foreigners.php:256 #: browse_foreigners.php:268 browse_foreigners.php:276 -#: libraries/messages.inc.php:1218 +#: libraries/messages.inc.php:1214 msgid "Use this value" msgstr "" -#: db_create.php:46 libraries/messages.inc.php:215 +#: db_create.php:46 libraries/messages.inc.php:211 #, fuzzy, php-format msgid "Database %1$s has been created." msgstr "پايگاه داده %s حذف گرديد." -#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:232 +#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:228 #, fuzzy msgid "Database comment: " msgstr "توضيحات جدول" -#: db_datadict.php:165 libraries/messages.inc.php:1070 +#: db_datadict.php:165 libraries/messages.inc.php:1066 #: libraries/tbl_properties.inc.php:724 pdf_schema.php:1236 #: tbl_operations.php:345 tbl_printview.php:130 msgid "Table comments" @@ -105,7 +105,7 @@ msgstr "توضيحات جدول" #: db_datadict.php:174 db_qbe.php:174 libraries/Index.class.php:446 #: libraries/export/htmlword.php:244 libraries/export/latex.php:360 #: libraries/export/odt.php:294 libraries/export/texytext.php:233 -#: libraries/messages.inc.php:317 libraries/tbl_properties.inc.php:99 +#: libraries/messages.inc.php:313 libraries/tbl_properties.inc.php:99 #: libraries/tbl_properties.inc.php:275 pdf_schema.php:1262 #: pdf_schema.php:1283 tbl_change.php:308 tbl_indexes.php:189 #: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135 @@ -117,7 +117,7 @@ msgstr "ستون" #: libraries/db_events.inc.php:31 libraries/db_routines.inc.php:42 #: 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/messages.inc.php:1181 +#: libraries/export/texytext.php:234 libraries/messages.inc.php:1177 #: libraries/tbl_properties.inc.php:100 pdf_schema.php:1263 #: pdf_schema.php:1284 server_privileges.php:2031 tbl_change.php:287 #: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313 @@ -129,7 +129,7 @@ msgstr "نوع" #: db_datadict.php:177 libraries/Index.class.php:449 #: libraries/export/htmlword.php:246 libraries/export/latex.php:360 #: libraries/export/odt.php:300 libraries/export/texytext.php:235 -#: libraries/messages.inc.php:576 libraries/tbl_properties.inc.php:109 +#: libraries/messages.inc.php:572 libraries/tbl_properties.inc.php:109 #: pdf_schema.php:1265 pdf_schema.php:1286 tbl_change.php:323 #: tbl_printview.php:145 tbl_structure.php:181 tbl_tracking.php:276 #: tbl_tracking.php:327 @@ -138,7 +138,7 @@ msgstr "خالي" #: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 -#: libraries/export/texytext.php:236 libraries/messages.inc.php:238 +#: libraries/export/texytext.php:236 libraries/messages.inc.php:234 #: libraries/tbl_properties.inc.php:106 pdf_schema.php:1266 #: pdf_schema.php:1287 tbl_printview.php:146 tbl_structure.php:182 #: tbl_tracking.php:277 @@ -147,14 +147,14 @@ msgstr "پيش‌فرض" #: db_datadict.php:182 libraries/export/htmlword.php:249 #: libraries/export/latex.php:362 libraries/export/odt.php:307 -#: libraries/export/texytext.php:238 libraries/messages.inc.php:483 +#: libraries/export/texytext.php:238 libraries/messages.inc.php:479 #: pdf_schema.php:1268 pdf_schema.php:1289 tbl_printview.php:150 msgid "Links to" msgstr "پيوند به" #: db_datadict.php:184 db_printview.php:112 libraries/export/htmlword.php:252 #: libraries/export/latex.php:365 libraries/export/odt.php:312 -#: libraries/export/texytext.php:241 libraries/messages.inc.php:163 +#: libraries/export/texytext.php:241 libraries/messages.inc.php:159 #: libraries/tbl_properties.inc.php:130 pdf_schema.php:1279 #: pdf_schema.php:1290 tbl_printview.php:152 msgid "Comments" @@ -163,7 +163,7 @@ msgstr "توضيحات" #: db_datadict.php:267 libraries/Index.class.php:359 #: 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/messages.inc.php:559 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:555 #: libraries/mult_submits.inc.php:263 pdf_schema.php:1344 #: server_privileges.php:1529 server_privileges.php:1540 #: server_privileges.php:1850 server_privileges.php:1855 @@ -175,7 +175,7 @@ msgstr "خير" #: db_datadict.php:267 libraries/Index.class.php:360 #: libraries/Index.class.php:385 libraries/export/htmlword.php:322 #: libraries/export/latex.php:430 libraries/export/odt.php:368 -#: libraries/export/texytext.php:311 libraries/messages.inc.php:1257 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:1253 #: libraries/mult_submits.inc.php:45 libraries/mult_submits.inc.php:50 #: libraries/mult_submits.inc.php:55 libraries/mult_submits.inc.php:60 #: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:101 @@ -189,111 +189,111 @@ msgstr "خير" msgid "Yes" msgstr "بلي" -#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:670 +#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:666 #: tbl_printview.php:498 msgid "Print" msgstr "چاپ" -#: db_export.php:29 libraries/messages.inc.php:1226 +#: db_export.php:29 libraries/messages.inc.php:1222 msgid "View dump (schema) of database" msgstr "نمايش الگوي پايگاه داده" #: db_export.php:33 db_printview.php:96 db_qbe.php:102 db_structure.php:51 -#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:568 +#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:564 #: navigation.php:346 msgid "No tables found in database." msgstr "در اين پايگاه داده هيچ جدولي وجود ندارد ." -#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:845 +#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:841 #: server_export.php:27 msgid "Select All" msgstr "انتخاب همه" -#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1188 +#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1184 #: server_export.php:29 msgid "Unselect All" msgstr "عدم انتخاب همه" -#: db_operations.php:38 libraries/messages.inc.php:213 tbl_create.php:54 +#: db_operations.php:38 libraries/messages.inc.php:209 tbl_create.php:54 #, fuzzy msgid "The database name is empty!" msgstr "نام جدول وارد نشده‌است !" -#: db_operations.php:236 libraries/messages.inc.php:753 +#: db_operations.php:236 libraries/messages.inc.php:749 #, fuzzy, php-format msgid "Database %s has been renamed to %s" msgstr "جدول %s به %s تغيير نام داده‌شد" -#: db_operations.php:240 libraries/messages.inc.php:178 +#: db_operations.php:240 libraries/messages.inc.php:174 #, fuzzy, php-format msgid "Database %s has been copied to %s" msgstr "جدول %s به %s كپي شد." -#: db_operations.php:410 libraries/messages.inc.php:236 +#: db_operations.php:410 libraries/messages.inc.php:232 #, fuzzy msgid "Rename database to" msgstr "بازناميدن جدول به" -#: db_operations.php:415 libraries/messages.inc.php:161 +#: db_operations.php:415 libraries/messages.inc.php:157 #: server_processlist.php:57 msgid "Command" msgstr "دستور" -#: db_operations.php:425 libraries/messages.inc.php:58 tbl_change.php:1143 +#: db_operations.php:425 libraries/messages.inc.php:54 tbl_change.php:1143 msgid "and then" msgstr "و سپس" -#: db_operations.php:451 libraries/messages.inc.php:233 +#: db_operations.php:451 libraries/messages.inc.php:229 #, fuzzy msgid "Copy database to" msgstr "No databases" -#: db_operations.php:458 libraries/messages.inc.php:1043 +#: db_operations.php:458 libraries/messages.inc.php:1039 #: tbl_operations.php:526 tbl_tracking.php:388 msgid "Structure only" msgstr "فقط ساختار" -#: db_operations.php:459 libraries/messages.inc.php:1041 +#: db_operations.php:459 libraries/messages.inc.php:1037 #: tbl_operations.php:527 tbl_tracking.php:390 msgid "Structure and data" msgstr "ساختار و داده‌ها" -#: db_operations.php:460 libraries/messages.inc.php:229 tbl_operations.php:528 +#: db_operations.php:460 libraries/messages.inc.php:225 tbl_operations.php:528 #: tbl_tracking.php:389 msgid "Data only" msgstr "فقط داده‌ها" -#: db_operations.php:468 libraries/messages.inc.php:186 +#: db_operations.php:468 libraries/messages.inc.php:182 msgid "CREATE DATABASE before copying" msgstr "" #: db_operations.php:471 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 -#: libraries/export/sql.php:82 libraries/messages.inc.php:30 +#: libraries/export/sql.php:82 libraries/messages.inc.php:26 #: tbl_operations.php:534 #, php-format msgid "Add %s" msgstr "افزودن %s" -#: db_operations.php:475 libraries/messages.inc.php:29 tbl_operations.php:297 +#: db_operations.php:475 libraries/messages.inc.php:25 tbl_operations.php:297 #: tbl_operations.php:536 msgid "Add AUTO_INCREMENT value" msgstr "" -#: db_operations.php:479 libraries/messages.inc.php:31 tbl_operations.php:543 +#: db_operations.php:479 libraries/messages.inc.php:27 tbl_operations.php:543 msgid "Add constraints" msgstr "" -#: db_operations.php:492 libraries/messages.inc.php:1059 +#: db_operations.php:492 libraries/messages.inc.php:1055 msgid "Switch to copied database" msgstr "" -#: db_operations.php:533 libraries/messages.inc.php:89 +#: db_operations.php:533 libraries/messages.inc.php:85 msgid "BLOB Repository" msgstr "" #: db_operations.php:536 db_tracking.php:76 libraries/common.lib.php:1350 -#: libraries/messages.inc.php:1037 libraries/server_links.inc.php:49 +#: libraries/messages.inc.php:1033 libraries/server_links.inc.php:49 #: server_processlist.php:59 tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "" @@ -305,12 +305,12 @@ msgctxt "BLOB repository" msgid "Enabled" msgstr "فعال" -#: db_operations.php:548 libraries/messages.inc.php:93 +#: db_operations.php:548 libraries/messages.inc.php:89 #, fuzzy msgid "Disable" msgstr "غيرفعال" -#: db_operations.php:558 libraries/messages.inc.php:90 +#: db_operations.php:558 libraries/messages.inc.php:86 msgid "Damaged" msgstr "" @@ -327,13 +327,13 @@ msgctxt "BLOB repository" msgid "Disabled" msgstr "غيرفعال" -#: db_operations.php:574 libraries/messages.inc.php:96 +#: db_operations.php:574 libraries/messages.inc.php:92 #, fuzzy msgid "Enable" msgstr "فعال" #: db_operations.php:598 libraries/Index.class.php:448 -#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:158 +#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:154 #: 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:361 @@ -342,7 +342,7 @@ msgstr "فعال" msgid "Collation" msgstr "" -#: db_operations.php:609 libraries/messages.inc.php:742 main.php:316 +#: db_operations.php:609 libraries/messages.inc.php:738 main.php:316 #: pdf_schema.php:34 #, php-format msgid "" @@ -352,59 +352,59 @@ msgstr "" "امكانات اضافي براي كاركردن با جدولهاي پيوندي غيرفعال شده‌است . براي پيداكردن " "دليل آن %sاينجا%s را بزنيد ." -#: db_operations.php:645 libraries/messages.inc.php:264 pdf_pages.php:528 +#: db_operations.php:645 libraries/messages.inc.php:260 pdf_pages.php:528 msgid "Display PDF schema" msgstr "نمايش الگوي PDF" -#: db_operations.php:661 libraries/messages.inc.php:877 pdf_pages.php:529 +#: db_operations.php:661 libraries/messages.inc.php:873 pdf_pages.php:529 msgid "Show grid" msgstr "Show grid" -#: db_operations.php:664 libraries/messages.inc.php:874 pdf_pages.php:530 +#: db_operations.php:664 libraries/messages.inc.php:870 pdf_pages.php:530 msgid "Show color" msgstr "نمايش رنگ" -#: db_operations.php:666 libraries/messages.inc.php:998 pdf_pages.php:531 +#: db_operations.php:666 libraries/messages.inc.php:994 pdf_pages.php:531 msgid "Show dimension of tables" msgstr "نمايش ابعاد جدولها" -#: db_operations.php:669 libraries/messages.inc.php:52 pdf_pages.php:532 +#: db_operations.php:669 libraries/messages.inc.php:48 pdf_pages.php:532 msgid "Display all tables with the same width" msgstr "نمايش همه جدولها با عرض يكسان؟" -#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:227 +#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:223 #: pdf_pages.php:533 msgid "Data Dictionary" msgstr "فرهنگ داده‌ها" -#: db_operations.php:674 libraries/messages.inc.php:884 pdf_pages.php:534 +#: db_operations.php:674 libraries/messages.inc.php:880 pdf_pages.php:534 msgid "Only show keys" msgstr "" -#: db_operations.php:676 libraries/messages.inc.php:875 pdf_pages.php:535 +#: db_operations.php:676 libraries/messages.inc.php:871 pdf_pages.php:535 #, fuzzy msgid "Data Dictionary Format" msgstr "فرهنگ داده‌ها" -#: db_operations.php:678 libraries/messages.inc.php:464 pdf_pages.php:537 +#: db_operations.php:678 libraries/messages.inc.php:460 pdf_pages.php:537 msgid "Landscape" msgstr "" -#: db_operations.php:679 libraries/messages.inc.php:663 pdf_pages.php:538 +#: db_operations.php:679 libraries/messages.inc.php:659 pdf_pages.php:538 msgid "Portrait" msgstr "" -#: db_operations.php:682 libraries/messages.inc.php:599 pdf_pages.php:541 +#: db_operations.php:682 libraries/messages.inc.php:595 pdf_pages.php:541 msgid "Paper size" msgstr "" -#: db_operations.php:706 libraries/messages.inc.php:281 +#: db_operations.php:706 libraries/messages.inc.php:277 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 libraries/messages.inc.php:1087 +#: libraries/header.inc.php:126 libraries/messages.inc.php:1083 #: pdf_pages.php:405 server_privileges.php:1626 server_privileges.php:1682 #: server_privileges.php:1946 server_synchronize.php:423 #: server_synchronize.php:866 tbl_tracking.php:592 test/theme.php:75 @@ -412,177 +412,177 @@ msgid "Table" msgstr "جدول" #: db_printview.php:105 libraries/db_structure.lib.php:56 -#: libraries/messages.inc.php:735 +#: libraries/messages.inc.php:731 msgid "Records" msgstr "سطرها" #: db_printview.php:109 libraries/db_structure.lib.php:67 -#: libraries/messages.inc.php:1003 tbl_indexes.php:190 +#: libraries/messages.inc.php:999 tbl_indexes.php:190 msgid "Size" msgstr "اندازه" #: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 -#: libraries/export/sql.php:899 libraries/messages.inc.php:436 +#: libraries/export/sql.php:899 libraries/messages.inc.php:432 msgid "in use" msgstr "in use" #: db_printview.php:187 libraries/db_info.inc.php:88 -#: libraries/export/sql.php:514 libraries/messages.inc.php:1032 +#: libraries/export/sql.php:514 libraries/messages.inc.php:1028 #: pdf_schema.php:1241 tbl_printview.php:434 tbl_structure.php:810 #, fuzzy msgid "Creation" msgstr "ساختن" #: db_printview.php:196 libraries/db_info.inc.php:93 -#: libraries/export/sql.php:519 libraries/messages.inc.php:1036 +#: libraries/export/sql.php:519 libraries/messages.inc.php:1032 #: pdf_schema.php:1246 tbl_printview.php:444 tbl_structure.php:818 msgid "Last update" msgstr "" #: db_printview.php:205 libraries/db_info.inc.php:98 -#: libraries/export/sql.php:524 libraries/messages.inc.php:1031 +#: libraries/export/sql.php:524 libraries/messages.inc.php:1027 #: pdf_schema.php:1251 tbl_printview.php:454 tbl_structure.php:826 msgid "Last check" msgstr "" -#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1085 +#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1081 #, php-format msgid "%s table(s)" msgstr "%s جدول(ها)" #: db_qbe.php:29 libraries/display_tbl.lib.php:1981 -#: libraries/messages.inc.php:1051 libraries/sql_query_form.lib.php:140 +#: libraries/messages.inc.php:1047 libraries/sql_query_form.lib.php:140 #: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131 #: view_operations.php:62 msgid "Your SQL query has been executed successfully" msgstr "پرس و جوي SQL شما با موفقيت اجرا گرديد" -#: db_qbe.php:42 libraries/messages.inc.php:371 +#: db_qbe.php:42 libraries/messages.inc.php:367 msgid "You have to choose at least one column to display" msgstr "شما حذاقل بايد يك ستون را براي نمايش انتخاب نماييد" #: db_qbe.php:200 libraries/db_structure.lib.php:104 -#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1014 +#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1010 msgid "Sort" msgstr "ترتيب" #: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111 #: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828 -#: libraries/messages.inc.php:69 server_databases.php:170 +#: libraries/messages.inc.php:65 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314 msgid "Ascending" msgstr "صعودي" #: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119 #: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825 -#: libraries/messages.inc.php:251 server_databases.php:170 +#: libraries/messages.inc.php:247 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315 msgid "Descending" msgstr "نزولي" #: db_qbe.php:264 db_tracking.php:78 libraries/display_tbl.lib.php:308 -#: libraries/messages.inc.php:888 tbl_change.php:277 tbl_tracking.php:597 +#: libraries/messages.inc.php:884 tbl_change.php:277 tbl_tracking.php:597 msgid "Show" msgstr "نمايش" -#: db_qbe.php:300 libraries/messages.inc.php:202 +#: db_qbe.php:300 libraries/messages.inc.php:198 msgid "Criteria" msgstr "معيارها" #: db_qbe.php:353 db_qbe.php:435 db_qbe.php:527 db_qbe.php:558 -#: libraries/messages.inc.php:718 +#: libraries/messages.inc.php:714 msgid "Ins" msgstr "Ins" #: db_qbe.php:357 db_qbe.php:439 db_qbe.php:524 db_qbe.php:555 -#: libraries/messages.inc.php:56 +#: libraries/messages.inc.php:52 msgid "And" msgstr "و" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:529 db_qbe.php:560 -#: libraries/messages.inc.php:717 +#: libraries/messages.inc.php:713 msgid "Del" 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/messages.inc.php:592 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:588 #: libraries/tbl_properties.inc.php:779 server_privileges.php:258 #: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288 msgid "Or" msgstr "يا" -#: db_qbe.php:507 libraries/messages.inc.php:516 +#: db_qbe.php:507 libraries/messages.inc.php:512 msgid "Modify" msgstr "اصلاح" -#: db_qbe.php:584 libraries/messages.inc.php:33 +#: db_qbe.php:584 libraries/messages.inc.php:29 msgid "Add/Delete Criteria Row" msgstr "اضافه/حذف معيارها" -#: db_qbe.php:596 libraries/messages.inc.php:32 +#: db_qbe.php:596 libraries/messages.inc.php:28 msgid "Add/Delete Field Columns" msgstr "اضافه يا حذف ستونها" -#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1192 +#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1188 msgid "Update Query" msgstr "به‌هنگام سازي پرس و جو" -#: db_qbe.php:617 libraries/messages.inc.php:1216 +#: db_qbe.php:617 libraries/messages.inc.php:1212 msgid "Use Tables" msgstr "بكارگيري جدولها" -#: db_qbe.php:640 libraries/messages.inc.php:723 +#: db_qbe.php:640 libraries/messages.inc.php:719 #, php-format msgid "SQL query on database %s:" msgstr "پرس و جوي SQL از پايگاه داده %s:" -#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:823 +#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:819 msgid "Submit Query" msgstr "Submit Query" #: db_search.php:68 libraries/auth/config.auth.lib.php:84 #: libraries/auth/config.auth.lib.php:103 #: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52 -#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:26 +#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:22 msgid "Access denied" msgstr "دسترسي مجاز نيست" -#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:836 +#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:832 msgid "at least one of the words" msgstr "حداقل يكي از كلمات" -#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:837 +#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:833 msgid "all words" msgstr "تمامي كلمات" -#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:838 +#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:834 msgid "the exact phrase" msgstr "عبارت كامل" -#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:839 +#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:835 msgid "as regular expression" msgstr "بعنوان مبين منظم(as regular expression)" -#: db_search.php:242 libraries/messages.inc.php:840 +#: db_search.php:242 libraries/messages.inc.php:836 #, php-format msgid "Search results for \"%s\" %s:" msgstr "نتيجه جستجوي \"%s\" %s:" -#: db_search.php:260 libraries/messages.inc.php:579 +#: db_search.php:260 libraries/messages.inc.php:575 #, php-format msgid "%s match(es) inside table %s" 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/messages.inc.php:108 +#: db_structure.php:105 libraries/messages.inc.php:104 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468 msgid "Browse" msgstr "مشاهده" #: db_search.php:272 libraries/display_tbl.lib.php:1165 -#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:243 +#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:239 #: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406 #: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377 #: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216 @@ -590,45 +590,45 @@ msgstr "مشاهده" msgid "Delete" msgstr "حذف" -#: db_search.php:285 libraries/messages.inc.php:580 +#: db_search.php:285 libraries/messages.inc.php:576 #, php-format msgid "Total: %s match(es)" msgstr "" -#: db_search.php:299 libraries/messages.inc.php:832 +#: db_search.php:299 libraries/messages.inc.php:828 msgid "Search in database" msgstr "جستجو در پايگاه‌داده" -#: db_search.php:302 libraries/messages.inc.php:835 +#: db_search.php:302 libraries/messages.inc.php:831 msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgstr "كلمه(ها) يا مقدار(ها) براي جستجو (wildcard: \"%\"):" -#: db_search.php:307 libraries/messages.inc.php:842 +#: db_search.php:307 libraries/messages.inc.php:838 msgid "Find:" msgstr "نوع جستجو :" -#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1017 +#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1013 msgid "Words are separated by a space character (\" \")." msgstr "كلمات با علامت فاصله (\" \") جدا مي‌شوند." -#: db_search.php:325 libraries/messages.inc.php:834 +#: db_search.php:325 libraries/messages.inc.php:830 msgid "Inside table(s):" msgstr "در جدول(هاي) :" -#: db_search.php:355 libraries/messages.inc.php:833 +#: db_search.php:355 libraries/messages.inc.php:829 msgid "Inside field:" 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/messages.inc.php:431 libraries/sql_query_form.lib.php:334 +#: libraries/messages.inc.php:427 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/db_links.inc.php:63 libraries/export/latex.php:337 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:1048 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:1044 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 #: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269 msgid "Structure" @@ -637,8 +637,8 @@ 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:1642 -#: libraries/db_links.inc.php:100 libraries/messages.inc.php:272 +#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/db_links.inc.php:100 libraries/messages.inc.php:268 #: 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 @@ -648,40 +648,40 @@ 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:1641 -#: libraries/messages.inc.php:284 libraries/mult_submits.inc.php:39 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: libraries/messages.inc.php:280 libraries/mult_submits.inc.php:39 #: libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "خالي كردن" -#: db_structure.php:316 libraries/messages.inc.php:1075 +#: db_structure.php:316 libraries/messages.inc.php:1071 #: libraries/tbl_links.inc.php:100 #, php-format msgid "Table %s has been emptied" msgstr "جدول %s خالي شد" -#: db_structure.php:326 libraries/messages.inc.php:1229 +#: db_structure.php:326 libraries/messages.inc.php:1225 #: libraries/tbl_links.inc.php:133 #, fuzzy, php-format msgid "View %s has been dropped" msgstr "ستون %s حذف گرديد" -#: db_structure.php:326 libraries/messages.inc.php:1074 +#: db_structure.php:326 libraries/messages.inc.php:1070 #: libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "جدول %s حذف گرديد" -#: db_structure.php:333 libraries/messages.inc.php:1128 +#: db_structure.php:333 libraries/messages.inc.php:1124 msgid "Tracking is active." msgstr "" -#: db_structure.php:335 libraries/messages.inc.php:1129 +#: db_structure.php:335 libraries/messages.inc.php:1125 msgid "Tracking is not active." msgstr "" #: db_structure.php:420 libraries/display_tbl.lib.php:1944 -#: libraries/messages.inc.php:1228 +#: libraries/messages.inc.php:1224 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -689,83 +689,83 @@ msgid "" msgstr "" #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 -#: libraries/messages.inc.php:1233 libraries/tbl_info.inc.php:66 +#: libraries/messages.inc.php:1229 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/messages.inc.php:773 libraries/server_links.inc.php:70 +#: libraries/messages.inc.php:769 libraries/server_links.inc.php:70 #: server_replication.php:33 server_replication.php:164 server_status.php:258 msgid "Replication" msgstr "" -#: db_structure.php:489 libraries/messages.inc.php:1053 +#: db_structure.php:489 libraries/messages.inc.php:1049 msgid "Sum" msgstr "مجموع" #: db_structure.php:496 libraries/StorageEngine.class.php:356 -#: libraries/messages.inc.php:239 +#: libraries/messages.inc.php:235 #, 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 #: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086 -#: libraries/messages.inc.php:1243 libraries/mult_submits.inc.php:16 +#: libraries/messages.inc.php:1239 libraries/mult_submits.inc.php:16 #: server_databases.php:346 server_databases.php:351 #: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465 msgid "With selected:" msgstr "موارد انتخاب‌شده :" #: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: libraries/messages.inc.php:148 server_databases.php:348 +#: libraries/messages.inc.php:144 server_databases.php:348 #: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459 msgid "Check All" msgstr "انتخاب همه" #: db_structure.php:531 libraries/display_tbl.lib.php:2077 -#: libraries/messages.inc.php:1184 libraries/replication_gui.lib.php:33 +#: libraries/messages.inc.php:1180 libraries/replication_gui.lib.php:33 #: server_databases.php:350 server_privileges.php:533 #: server_privileges.php:1564 tbl_structure.php:463 msgid "Uncheck All" msgstr "عدم انتخاب همه" -#: db_structure.php:536 libraries/messages.inc.php:150 +#: db_structure.php:536 libraries/messages.inc.php:146 msgid "Check tables having overhead" msgstr "" #: db_structure.php:547 db_structure.php:548 db_structure.php:599 -#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:672 +#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:668 #: libraries/mult_submits.inc.php:28 tbl_structure.php:493 #: tbl_structure.php:495 msgid "Print view" msgstr "نماي چاپ" -#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:153 +#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:149 #: libraries/mult_submits.inc.php:42 tbl_operations.php:579 msgid "Check table" msgstr "بررسي جدول" -#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:590 +#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:586 #: libraries/mult_submits.inc.php:47 tbl_operations.php:619 #: tbl_structure.php:710 tbl_structure.php:712 msgid "Optimize table" msgstr "بهينه‌سازي جدول" -#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:758 +#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:754 #: libraries/mult_submits.inc.php:52 tbl_operations.php:609 msgid "Repair table" msgstr "مرمت جدول" -#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:55 +#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:51 #: libraries/mult_submits.inc.php:57 tbl_operations.php:599 msgid "Analyze table" msgstr "تحليل جدول" #: db_structure.php:557 db_structure.php:558 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/messages.inc.php:310 +#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:306 #: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84 #: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109 #: server_privileges.php:1341 setup/frames/menu.inc.php:22 @@ -773,7 +773,7 @@ msgstr "تحليل جدول" msgid "Export" msgstr "صدور" -#: db_tracking.php:66 libraries/messages.inc.php:1151 +#: db_tracking.php:66 libraries/messages.inc.php:1147 msgid "Tracked tables" msgstr "" @@ -781,7 +781,7 @@ msgstr "" #: 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/header_printview.inc.php:58 libraries/messages.inc.php:212 +#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:208 #: navigation.php:233 server_databases.php:169 server_privileges.php:1621 #: server_privileges.php:1682 server_privileges.php:1940 #: server_processlist.php:56 server_synchronize.php:1179 @@ -789,97 +789,97 @@ msgstr "" msgid "Database" msgstr "پايگاه داده" -#: db_tracking.php:73 libraries/messages.inc.php:1146 +#: db_tracking.php:73 libraries/messages.inc.php:1142 msgid "Last version" msgstr "" -#: db_tracking.php:74 libraries/messages.inc.php:1145 tbl_tracking.php:594 +#: db_tracking.php:74 libraries/messages.inc.php:1141 tbl_tracking.php:594 #, fuzzy msgid "Created" msgstr "ساختن" -#: db_tracking.php:75 libraries/messages.inc.php:1147 tbl_tracking.php:595 +#: db_tracking.php:75 libraries/messages.inc.php:1143 tbl_tracking.php:595 msgid "Updated" msgstr "" #: db_tracking.php:77 libraries/Index.class.php:440 -#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:27 +#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:23 #: server_databases.php:203 server_privileges.php:1503 #: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187 msgid "Action" msgstr "عمل" -#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:247 +#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:243 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:106 libraries/messages.inc.php:1142 tbl_tracking.php:548 +#: db_tracking.php:106 libraries/messages.inc.php:1138 tbl_tracking.php:548 #: tbl_tracking.php:606 tbl_tracking.php:613 msgid "active" msgstr "" -#: db_tracking.php:108 libraries/messages.inc.php:1143 tbl_tracking.php:550 +#: db_tracking.php:108 libraries/messages.inc.php:1139 tbl_tracking.php:550 #: tbl_tracking.php:608 tbl_tracking.php:610 msgid "not active" msgstr "" -#: db_tracking.php:121 libraries/messages.inc.php:1160 +#: db_tracking.php:121 libraries/messages.inc.php:1156 #, fuzzy msgid "Versions" msgstr "فارسي" -#: db_tracking.php:122 libraries/messages.inc.php:1132 tbl_tracking.php:379 +#: db_tracking.php:122 libraries/messages.inc.php:1128 tbl_tracking.php:379 #: tbl_tracking.php:624 msgid "Tracking report" msgstr "" -#: db_tracking.php:123 libraries/messages.inc.php:1144 tbl_tracking.php:251 +#: db_tracking.php:123 libraries/messages.inc.php:1140 tbl_tracking.php:251 #: tbl_tracking.php:624 #, fuzzy msgid "Structure snapshot" msgstr "فقط ساختار" -#: db_tracking.php:152 libraries/messages.inc.php:1154 +#: db_tracking.php:152 libraries/messages.inc.php:1150 msgid "Untracked tables" msgstr "" -#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1153 +#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1149 #: tbl_structure.php:529 tbl_structure.php:531 #, fuzzy msgid "Track table" msgstr "بررسي جدول" -#: db_tracking.php:200 libraries/messages.inc.php:1121 +#: db_tracking.php:200 libraries/messages.inc.php:1117 #, fuzzy msgid "Database Log" msgstr "پايگاه داده" -#: export.php:62 libraries/messages.inc.php:312 +#: export.php:62 libraries/messages.inc.php:308 msgid "Selected export type has to be saved in file!" msgstr "" -#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:567 +#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:563 #, php-format msgid "Insufficient space to save the file %s." msgstr "" -#: export.php:294 libraries/messages.inc.php:324 +#: export.php:294 libraries/messages.inc.php:320 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "" -#: export.php:298 export.php:302 libraries/messages.inc.php:562 +#: export.php:298 export.php:302 libraries/messages.inc.php:558 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "" -#: export.php:629 libraries/messages.inc.php:276 +#: export.php:629 libraries/messages.inc.php:272 #, php-format msgid "Dump has been saved to file %s." msgstr "" -#: import.php:60 libraries/messages.inc.php:1202 +#: import.php:60 libraries/messages.inc.php:1198 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation%" @@ -887,21 +887,21 @@ msgid "" msgstr "" #: import.php:279 import.php:332 libraries/File.class.php:849 -#: libraries/File.class.php:961 libraries/messages.inc.php:325 +#: libraries/File.class.php:961 libraries/messages.inc.php:321 msgid "File could not be read" msgstr "" #: import.php:287 import.php:296 import.php:315 import.php:324 #: libraries/File.class.php:1031 libraries/File.class.php:1039 #: libraries/File.class.php:1055 libraries/File.class.php:1063 -#: libraries/messages.inc.php:1189 +#: libraries/messages.inc.php:1185 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." msgstr "" -#: import.php:337 libraries/messages.inc.php:547 +#: import.php:337 libraries/messages.inc.php:543 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -909,40 +909,40 @@ msgid "" msgstr "" #: import.php:372 libraries/display_import.lib.php:24 -#: libraries/messages.inc.php:125 +#: libraries/messages.inc.php:121 msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:397 libraries/messages.inc.php:102 +#: import.php:397 libraries/messages.inc.php:98 #, fuzzy msgid "The bookmark has been deleted." msgstr "سطر حذف گرديد ." -#: import.php:401 libraries/messages.inc.php:879 +#: import.php:401 libraries/messages.inc.php:875 msgid "Showing bookmark" msgstr "" -#: import.php:403 libraries/messages.inc.php:101 +#: import.php:403 libraries/messages.inc.php:97 #, php-format msgid "Bookmark %s created" msgstr "" -#: import.php:409 import.php:415 libraries/messages.inc.php:407 +#: import.php:409 import.php:415 libraries/messages.inc.php:403 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" -#: import.php:424 libraries/messages.inc.php:1107 +#: import.php:424 libraries/messages.inc.php:1103 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: index.php:190 libraries/messages.inc.php:553 +#: index.php:190 libraries/messages.inc.php:549 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" -#: js/messages.php:25 libraries/messages.inc.php:155 +#: js/messages.php:25 libraries/messages.inc.php:151 #: server_synchronize.php:345 server_synchronize.php:357 #: server_synchronize.php:373 server_synchronize.php:380 #: server_synchronize.php:739 server_synchronize.php:767 @@ -950,116 +950,116 @@ msgstr "" msgid "Click to select" msgstr "" -#: js/messages.php:26 libraries/messages.inc.php:156 +#: js/messages.php:26 libraries/messages.inc.php:152 msgid "Click to unselect" msgstr "" #: js/messages.php:27 libraries/import.lib.php:103 -#: libraries/messages.inc.php:550 sql.php:89 +#: libraries/messages.inc.php:546 sql.php:89 msgid "\"DROP DATABASE\" statements are disabled." msgstr "دستور \"DROP DATABASE\" غيرفعال مي‌باشد." -#: js/messages.php:30 libraries/messages.inc.php:270 +#: js/messages.php:30 libraries/messages.inc.php:266 #: libraries/mult_submits.inc.php:258 sql.php:188 msgid "Do you really want to " msgstr "آيا مطمئن هستيد " -#: js/messages.php:31 libraries/messages.inc.php:271 +#: js/messages.php:31 libraries/messages.inc.php:267 #: libraries/mult_submits.inc.php:258 sql.php:172 msgid "You are about to DESTROY a complete database!" msgstr "" -#: js/messages.php:34 libraries/messages.inc.php:94 +#: js/messages.php:34 libraries/messages.inc.php:90 msgid "You are about to DISABLE a BLOB Repository!" msgstr "" -#: js/messages.php:35 libraries/messages.inc.php:91 +#: js/messages.php:35 libraries/messages.inc.php:87 #, php-format msgid "Are you sure you want to disable all BLOB references for database %s?" msgstr "" -#: js/messages.php:38 libraries/messages.inc.php:342 +#: js/messages.php:38 libraries/messages.inc.php:338 msgid "Missing value in the form!" msgstr "مقداري در فرم وارد نشده !" -#: js/messages.php:39 libraries/messages.inc.php:570 +#: js/messages.php:39 libraries/messages.inc.php:566 msgid "This is not a number!" msgstr "اين يك عدد نيست!" -#: js/messages.php:42 libraries/messages.inc.php:380 +#: js/messages.php:42 libraries/messages.inc.php:376 msgid "The host name is empty!" msgstr "نام ميزبان خالي است!" -#: js/messages.php:43 libraries/messages.inc.php:1208 +#: js/messages.php:43 libraries/messages.inc.php:1204 msgid "The user name is empty!" msgstr "نام كاربر خالي است!" -#: js/messages.php:44 libraries/messages.inc.php:607 +#: js/messages.php:44 libraries/messages.inc.php:603 #: server_privileges.php:1197 user_password.php:70 msgid "The password is empty!" msgstr "اسم رمز خالي است!" -#: js/messages.php:45 libraries/messages.inc.php:609 +#: js/messages.php:45 libraries/messages.inc.php:605 #: server_privileges.php:1195 user_password.php:73 msgid "The passwords aren't the same!" msgstr "اسم رمزها مانند هم نمي‌باشد!" -#: js/messages.php:49 libraries/messages.inc.php:123 pmd_general.php:342 +#: js/messages.php:49 libraries/messages.inc.php:119 pmd_general.php:342 #: pmd_general.php:379 msgid "Cancel" msgstr "" -#: js/messages.php:52 libraries/messages.inc.php:514 +#: js/messages.php:52 libraries/messages.inc.php:510 msgid "Modifications have been saved" msgstr "اصلاحات ذخيره گرديد" -#: js/messages.php:53 libraries/messages.inc.php:741 +#: js/messages.php:53 libraries/messages.inc.php:737 msgid "Relation deleted" msgstr "" -#: js/messages.php:54 libraries/messages.inc.php:340 +#: js/messages.php:54 libraries/messages.inc.php:336 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:55 libraries/messages.inc.php:434 +#: js/messages.php:55 libraries/messages.inc.php:430 msgid "Internal relation added" msgstr "" -#: js/messages.php:56 libraries/messages.inc.php:299 +#: js/messages.php:56 libraries/messages.inc.php:295 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:57 libraries/messages.inc.php:300 +#: js/messages.php:57 libraries/messages.inc.php:296 msgid "Error: relation already exists." msgstr "" -#: js/messages.php:58 libraries/messages.inc.php:302 +#: js/messages.php:58 libraries/messages.inc.php:298 msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:59 libraries/messages.inc.php:351 +#: js/messages.php:59 libraries/messages.inc.php:347 #: libraries/relation.lib.php:107 msgid "General relation features" msgstr "" -#: js/messages.php:59 libraries/messages.inc.php:260 +#: js/messages.php:59 libraries/messages.inc.php:256 #: libraries/relation.lib.php:101 libraries/relation.lib.php:108 msgid "Disabled" msgstr "غيرفعال" -#: js/messages.php:60 libraries/messages.inc.php:850 +#: js/messages.php:60 libraries/messages.inc.php:846 msgid "Select referenced key" msgstr "" -#: js/messages.php:61 libraries/messages.inc.php:848 +#: js/messages.php:61 libraries/messages.inc.php:844 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:62 libraries/messages.inc.php:653 +#: js/messages.php:62 libraries/messages.inc.php:649 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:63 libraries/messages.inc.php:142 pmd_general.php:77 +#: js/messages.php:63 libraries/messages.inc.php:138 pmd_general.php:77 #: tbl_relation.php:548 msgid "Choose field to display" msgstr "ستون را براي نمايش انتخاب نماييد" @@ -1079,9 +1079,9 @@ msgid "Prev" msgstr "قبل" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2332 -#: libraries/common.lib.php:2335 libraries/display_tbl.lib.php:338 -#: libraries/messages.inc.php:543 server_binlog.php:205 server_binlog.php:207 +#: js/messages.php:77 libraries/common.lib.php:2344 +#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: libraries/messages.inc.php:539 server_binlog.php:205 server_binlog.php:207 #: tbl_printview.php:424 tbl_structure.php:802 msgid "Next" msgstr "بعد" @@ -1156,27 +1156,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1543 +#: js/messages.php:97 libraries/common.lib.php:1555 msgid "Jan" msgstr "ژانويه" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1545 +#: js/messages.php:99 libraries/common.lib.php:1557 msgid "Feb" msgstr "فوريه" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1547 +#: js/messages.php:101 libraries/common.lib.php:1559 msgid "Mar" msgstr "مارس" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1549 +#: js/messages.php:103 libraries/common.lib.php:1561 msgid "Apr" msgstr "آوريل" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1551 +#: js/messages.php:105 libraries/common.lib.php:1563 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1184,37 +1184,37 @@ msgid "May" msgstr "مي" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1553 +#: js/messages.php:107 libraries/common.lib.php:1565 msgid "Jun" msgstr "ژوئن" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1555 +#: js/messages.php:109 libraries/common.lib.php:1567 msgid "Jul" msgstr "جولاي" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1557 +#: js/messages.php:111 libraries/common.lib.php:1569 msgid "Aug" msgstr "آگوست" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1559 +#: js/messages.php:113 libraries/common.lib.php:1571 msgid "Sep" msgstr "سپتامبر" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1561 +#: js/messages.php:115 libraries/common.lib.php:1573 msgid "Oct" msgstr "اكتبر" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1563 +#: js/messages.php:117 libraries/common.lib.php:1575 msgid "Nov" msgstr "نوامبر" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1565 +#: js/messages.php:119 libraries/common.lib.php:1577 msgid "Dec" msgstr "دسامبر" @@ -1255,37 +1255,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1568 +#: js/messages.php:132 libraries/common.lib.php:1580 msgid "Sun" msgstr "يكشنبه" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1570 +#: js/messages.php:134 libraries/common.lib.php:1582 msgid "Mon" msgstr "دوشنبه" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1572 +#: js/messages.php:136 libraries/common.lib.php:1584 msgid "Tue" msgstr "سه‌شنبه" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1574 +#: js/messages.php:138 libraries/common.lib.php:1586 msgid "Wed" msgstr "چهارشنبه" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1576 +#: js/messages.php:140 libraries/common.lib.php:1588 msgid "Thu" msgstr "پنج‌شنبه" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1578 +#: js/messages.php:142 libraries/common.lib.php:1590 msgid "Fri" msgstr "جمعه" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1580 +#: js/messages.php:144 libraries/common.lib.php:1592 msgid "Sat" msgstr "شنبه" @@ -1359,76 +1359,76 @@ msgstr "in use" msgid "Second" msgstr "در ثانیه" -#: libraries/Config.class.php:1015 libraries/messages.inc.php:338 +#: libraries/Config.class.php:1015 libraries/messages.inc.php:334 msgid "Font size" msgstr "" #: libraries/File.class.php:344 libraries/File.class.php:432 #: libraries/File.class.php:569 libraries/File.class.php:708 -#: libraries/messages.inc.php:1201 +#: libraries/messages.inc.php:1197 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.class.php:414 libraries/messages.inc.php:1198 +#: libraries/File.class.php:414 libraries/messages.inc.php:1194 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:417 libraries/messages.inc.php:1197 +#: libraries/File.class.php:417 libraries/messages.inc.php:1193 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:420 libraries/messages.inc.php:1200 +#: libraries/File.class.php:420 libraries/messages.inc.php:1196 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:423 libraries/messages.inc.php:1199 +#: libraries/File.class.php:423 libraries/messages.inc.php:1195 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:426 libraries/messages.inc.php:1195 +#: libraries/File.class.php:426 libraries/messages.inc.php:1191 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:429 libraries/messages.inc.php:1196 +#: libraries/File.class.php:429 libraries/messages.inc.php:1192 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:908 libraries/messages.inc.php:319 +#: libraries/File.class.php:908 libraries/messages.inc.php:315 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "" -#: libraries/Index.class.php:428 libraries/messages.inc.php:554 +#: libraries/Index.class.php:428 libraries/messages.inc.php:550 #: tbl_relation.php:529 msgid "No index defined!" msgstr "هيچ فهرستي تعريف‌نشده‌است!" -#: libraries/Index.class.php:433 libraries/messages.inc.php:411 +#: libraries/Index.class.php:433 libraries/messages.inc.php:407 #: server_databases.php:132 tbl_tracking.php:316 msgid "Indexes" msgstr "فهرست‌ها" -#: libraries/Index.class.php:444 libraries/messages.inc.php:1186 +#: libraries/Index.class.php:444 libraries/messages.inc.php:1182 #: 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:475 tbl_tracking.php:322 msgid "Unique" msgstr "يكتا" -#: libraries/Index.class.php:445 libraries/messages.inc.php:596 +#: libraries/Index.class.php:445 libraries/messages.inc.php:592 #: tbl_tracking.php:323 msgid "Packed" msgstr "" -#: libraries/Index.class.php:447 libraries/messages.inc.php:131 +#: libraries/Index.class.php:447 libraries/messages.inc.php:127 #: tbl_tracking.php:325 msgid "Cardinality" msgstr "" -#: libraries/Index.class.php:450 libraries/messages.inc.php:162 +#: libraries/Index.class.php:450 libraries/messages.inc.php:158 #: tbl_tracking.php:279 tbl_tracking.php:328 #, fuzzy msgid "Comment" @@ -1437,29 +1437,29 @@ msgstr "توضيحات" #: libraries/Index.class.php:466 libraries/common.lib.php:616 #: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:280 pdf_pages.php:280 +#: libraries/messages.inc.php:276 pdf_pages.php:280 #: setup/frames/index.inc.php:124 setup/lib/messages.inc.php:352 #: tbl_row_action.php:69 msgid "Edit" msgstr "ويرايش" -#: libraries/Index.class.php:472 libraries/messages.inc.php:666 +#: libraries/Index.class.php:472 libraries/messages.inc.php:662 msgid "The primary key has been dropped" msgstr "كليد اصلي حذف گرديد" -#: libraries/Index.class.php:476 libraries/messages.inc.php:413 +#: libraries/Index.class.php:476 libraries/messages.inc.php:409 #, php-format msgid "Index %s has been dropped" msgstr "فهرست %s حذف گرديد" -#: libraries/Index.class.php:576 libraries/messages.inc.php:412 +#: libraries/Index.class.php:576 libraries/messages.inc.php:408 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "" -#: libraries/List_Database.class.php:431 libraries/messages.inc.php:218 +#: libraries/List_Database.class.php:431 libraries/messages.inc.php:214 #: libraries/server_links.inc.php:41 server_databases.php:88 #: server_privileges.php:1621 setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" @@ -1486,85 +1486,85 @@ msgid_plural "%1$d rows inserted." msgstr[0] "" msgstr[1] "" -#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:549 +#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:545 msgid "" "There is no detailed status information available for this storage engine." msgstr "" -#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:291 +#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:287 #, php-format msgid "%s is available on this MySQL server." msgstr "" -#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:292 +#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:288 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "" -#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:294 +#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:290 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "" -#: libraries/Table.class.php:1019 libraries/messages.inc.php:443 +#: libraries/Table.class.php:1019 libraries/messages.inc.php:439 msgid "Invalid database" msgstr "" -#: libraries/Table.class.php:1033 libraries/messages.inc.php:450 +#: libraries/Table.class.php:1033 libraries/messages.inc.php:446 #: tbl_get_field.php:26 msgid "Invalid table name" msgstr "" -#: libraries/Table.class.php:1048 libraries/messages.inc.php:301 +#: libraries/Table.class.php:1048 libraries/messages.inc.php:297 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "" -#: libraries/Table.class.php:1132 libraries/messages.inc.php:754 +#: libraries/Table.class.php:1132 libraries/messages.inc.php:750 #, php-format msgid "Table %s has been renamed to %s" msgstr "جدول %s به %s تغيير نام داده‌شد" -#: libraries/Theme.class.php:162 libraries/messages.inc.php:1099 +#: libraries/Theme.class.php:162 libraries/messages.inc.php:1095 #, php-format msgid "No valid image path for theme %s found!" msgstr "" -#: libraries/Theme.class.php:384 libraries/messages.inc.php:1097 +#: libraries/Theme.class.php:384 libraries/messages.inc.php:1093 msgid "No preview available." msgstr "" -#: libraries/Theme.class.php:387 libraries/messages.inc.php:1089 +#: libraries/Theme.class.php:387 libraries/messages.inc.php:1085 msgid "take it" msgstr "" -#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1096 +#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1092 #, php-format msgid "Default theme %s not found!" msgstr "" -#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1098 +#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1094 #, php-format msgid "Theme %s not found!" msgstr "" -#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1100 +#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1096 #, php-format msgid "Theme path not found for theme %s!" msgstr "" -#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1101 +#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1097 #: test/theme.php:161 themes.php:21 themes.php:41 msgid "Theme / Style" msgstr "" -#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:172 +#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:168 msgid "Cannot connect: invalid settings." msgstr "" #: libraries/auth/config.auth.lib.php:92 #: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65 -#: libraries/messages.inc.php:1238 test/theme.php:152 +#: libraries/messages.inc.php:1234 test/theme.php:152 #, php-format msgid "Welcome to %s" msgstr "به %s خوش‌آمديد" @@ -1584,105 +1584,105 @@ msgid "" "the administrator of the MySQL server." msgstr "" -#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:488 +#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:484 msgid "Log in" msgstr "ورود" #: libraries/auth/cookie.auth.lib.php:246 -#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:659 +#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:655 #: libraries/navigation_header.inc.php:93 #: libraries/navigation_header.inc.php:95 msgid "phpMyAdmin documentation" msgstr "مستندات phpMyAdmin" #: libraries/auth/cookie.auth.lib.php:258 -#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:492 +#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:488 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:493 +#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:489 #, fuzzy msgid "Server:" msgstr "سرور" -#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:494 +#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:490 msgid "Username:" msgstr "نام كاربر:" -#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:491 +#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:487 msgid "Password:" msgstr "اسم رمز:" -#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:854 +#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:850 msgid "Server Choice" msgstr "" #: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 -#: libraries/messages.inc.php:177 +#: libraries/messages.inc.php:173 msgid "Cookies must be enabled past this point." msgstr "" #: libraries/auth/cookie.auth.lib.php:671 -#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:489 +#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:485 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" #: libraries/auth/cookie.auth.lib.php:675 -#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:544 +#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:540 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" #: libraries/auth/cookie.auth.lib.php:685 #: libraries/auth/cookie.auth.lib.php:687 -#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:126 +#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:122 msgid "Cannot log in to the MySQL server" msgstr "" -#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1245 +#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1241 msgid "Wrong username/password. Access denied." msgstr "نام كاربر/اسم رمز اشتباه است. دسترسي مجاز نيست." #: libraries/auth/swekey/swekey.auth.lib.php:118 -#: libraries/messages.inc.php:1057 +#: libraries/messages.inc.php:1053 #, php-format msgid "File %s does not contain any key id" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:157 #: libraries/auth/swekey/swekey.auth.lib.php:180 -#: libraries/messages.inc.php:1056 +#: libraries/messages.inc.php:1052 msgid "Hardware authentication failed" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:166 -#: libraries/messages.inc.php:1058 +#: libraries/messages.inc.php:1054 msgid "No valid authentication key plugged" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:202 -#: libraries/messages.inc.php:1055 +#: libraries/messages.inc.php:1051 msgid "Authenticating..." msgstr "" -#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1230 +#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1226 msgid "View image" msgstr "" -#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:652 +#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:648 msgid "Play audio" msgstr "" -#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1232 +#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1228 msgid "View video" msgstr "" -#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:269 +#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:265 msgid "Download file" msgstr "" -#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:128 +#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:124 msgid "" "Couldn't load the iconv or recode extension needed for charset conversion. " "Either configure PHP to enable these extensions or disable charset " @@ -1694,13 +1694,13 @@ msgstr "" #: libraries/charset_conversion.lib.php:79 #: libraries/charset_conversion.lib.php:90 -#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:130 +#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:126 msgid "" "Couldn't use the iconv, libiconv, or recode_string functions, although the " "necessary extensions appear to be loaded. Check your PHP configuration." msgstr "" -#: libraries/common.inc.php:583 libraries/messages.inc.php:170 +#: libraries/common.inc.php:583 libraries/messages.inc.php:166 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!" @@ -1732,22 +1732,22 @@ msgstr "" msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:636 libraries/messages.inc.php:448 +#: libraries/common.inc.php:636 libraries/messages.inc.php:444 #, 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/messages.inc.php:856 libraries/select_server.lib.php:41 +#: libraries/messages.inc.php:852 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/messages.inc.php:437 +#: libraries/common.inc.php:823 libraries/messages.inc.php:433 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.lib.php:147 libraries/messages.inc.php:499 +#: libraries/common.lib.php:147 libraries/messages.inc.php:495 #, php-format msgid "Max: %s%s" msgstr "" @@ -1767,7 +1767,7 @@ msgstr "" #: libraries/common.lib.php:428 libraries/common.lib.php:430 #: libraries/common.lib.php:432 libraries/common.lib.php:448 #: libraries/common.lib.php:450 libraries/dbg/setup.php:25 -#: libraries/display_export.lib.php:164 libraries/messages.inc.php:267 +#: libraries/display_export.lib.php:164 libraries/messages.inc.php:263 #: libraries/relation.lib.php:97 libraries/sql_query_form.lib.php:451 #: libraries/sql_query_form.lib.php:454 main.php:229 pdf_pages.php:37 #: pdf_pages.php:43 pdf_pages.php:49 pdf_pages.php:54 @@ -1777,57 +1777,57 @@ msgstr "مستندات" #: libraries/common.lib.php:581 libraries/core.lib.php:234 #: libraries/core.lib.php:263 libraries/import.lib.php:134 -#: libraries/messages.inc.php:297 pdf_schema.php:32 pdf_schema.php:232 +#: libraries/messages.inc.php:293 pdf_schema.php:32 pdf_schema.php:232 #: tbl_change.php:1027 tbl_operations.php:213 tbl_relation.php:290 #: view_operations.php:62 msgid "Error" msgstr "خطا" #: libraries/common.lib.php:595 libraries/header_printview.inc.php:61 -#: libraries/messages.inc.php:1023 server_processlist.php:60 +#: libraries/messages.inc.php:1019 server_processlist.php:60 #: server_status.php:247 msgid "SQL query" msgstr "پرس و جوي SQL" -#: libraries/common.lib.php:634 libraries/messages.inc.php:538 +#: libraries/common.lib.php:634 libraries/messages.inc.php:534 msgid "MySQL said: " msgstr "پيغام MySQL :" -#: libraries/common.lib.php:667 libraries/messages.inc.php:76 +#: libraries/common.lib.php:667 libraries/messages.inc.php:72 #: pdf_schema.php:241 user_password.php:115 msgid "Back" msgstr "بازگشت" -#: libraries/common.lib.php:1177 libraries/messages.inc.php:309 +#: libraries/common.lib.php:1177 libraries/messages.inc.php:305 #: setup/lib/messages.inc.php:353 msgid "Explain SQL" msgstr "شرح دادن SQL" -#: libraries/common.lib.php:1180 libraries/messages.inc.php:551 +#: libraries/common.lib.php:1180 libraries/messages.inc.php:547 #, fuzzy msgid "Skip Explain SQL" msgstr "شرح دادن SQL" -#: libraries/common.lib.php:1212 libraries/messages.inc.php:563 +#: libraries/common.lib.php:1212 libraries/messages.inc.php:559 msgid "Without PHP Code" msgstr "بدون كد PHP" -#: libraries/common.lib.php:1215 libraries/messages.inc.php:649 +#: libraries/common.lib.php:1215 libraries/messages.inc.php:645 #: setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "ساخت كد PHP" -#: libraries/common.lib.php:1233 libraries/messages.inc.php:737 +#: libraries/common.lib.php:1233 libraries/messages.inc.php:733 #: server_status.php:341 setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "" -#: libraries/common.lib.php:1242 libraries/messages.inc.php:575 +#: libraries/common.lib.php:1242 libraries/messages.inc.php:571 #, fuzzy msgid "Skip Validate SQL" msgstr "معتبرسازي SQL" -#: libraries/common.lib.php:1245 libraries/messages.inc.php:1220 +#: libraries/common.lib.php:1245 libraries/messages.inc.php:1216 #: setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "معتبرسازي SQL" @@ -1843,11 +1843,11 @@ msgid "Inline" msgstr "موتور" #: libraries/common.lib.php:1332 libraries/common.lib.php:1347 -#: libraries/messages.inc.php:713 +#: libraries/messages.inc.php:709 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1351 libraries/messages.inc.php:1108 +#: libraries/common.lib.php:1351 libraries/messages.inc.php:1104 #: libraries/tbl_triggers.lib.php:28 server_processlist.php:58 msgid "Time" msgstr "" @@ -1881,46 +1881,56 @@ msgstr "پتا بايت" msgid "EiB" msgstr "اگزا بايت" +#. l10n: Thousands separator +#: libraries/common.lib.php:1417 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: libraries/common.lib.php:1419 +msgid "." +msgstr "." + #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1584 +#: libraries/common.lib.php:1596 #: libraries/transformations/text_plain__dateformat.inc.php:28 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y ساعت %I:%M %p" -#: libraries/common.lib.php:1886 +#: libraries/common.lib.php:1898 #, 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:2301 libraries/common.lib.php:2304 -#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:664 +#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:660 #: server_status.php:608 msgid "Begin" msgstr "شروع" -#: libraries/common.lib.php:2302 libraries/common.lib.php:2305 -#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:665 +#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:661 #: server_binlog.php:168 server_binlog.php:170 msgid "Previous" msgstr "قبل" -#: libraries/common.lib.php:2333 libraries/common.lib.php:2336 -#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:289 +#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:285 msgid "End" msgstr "انتها" -#: libraries/common.lib.php:2409 libraries/messages.inc.php:455 +#: libraries/common.lib.php:2421 libraries/messages.inc.php:451 #, php-format msgid "Jump to database "%s"." msgstr "" -#: libraries/common.lib.php:2429 libraries/messages.inc.php:461 +#: libraries/common.lib.php:2441 libraries/messages.inc.php:457 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/core.lib.php:286 libraries/dbg/setup.php:22 -#: libraries/messages.inc.php:127 +#: libraries/messages.inc.php:123 #, php-format msgid "" "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " @@ -1928,116 +1938,116 @@ msgid "" msgstr "" #: libraries/db_events.inc.php:20 libraries/db_events.inc.php:22 -#: libraries/export/sql.php:415 libraries/messages.inc.php:306 +#: libraries/export/sql.php:415 libraries/messages.inc.php:302 msgid "Events" msgstr "" #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 -#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:541 +#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:537 #: libraries/tbl_triggers.lib.php:27 setup/frames/index.inc.php:112 msgid "Name" msgstr "اسم" -#: libraries/db_links.inc.php:45 libraries/messages.inc.php:216 +#: libraries/db_links.inc.php:45 libraries/messages.inc.php:212 #, php-format msgid "Database %s has been dropped." msgstr "پايگاه داده %s حذف گرديد." #: libraries/db_links.inc.php:57 libraries/db_links.inc.php:58 -#: libraries/db_links.inc.php:59 libraries/messages.inc.php:234 +#: libraries/db_links.inc.php:59 libraries/messages.inc.php:230 msgid "Database seems to be empty!" msgstr "" -#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1025 +#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1021 #: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60 #: querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1152 +#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1148 #: libraries/tbl_links.inc.php:69 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:86 libraries/messages.inc.php:719 +#: libraries/db_links.inc.php:86 libraries/messages.inc.php:715 msgid "Query" msgstr "پرس و جو" -#: libraries/db_links.inc.php:91 libraries/messages.inc.php:253 +#: libraries/db_links.inc.php:91 libraries/messages.inc.php:249 msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:98 libraries/messages.inc.php:397 +#: libraries/db_links.inc.php:98 libraries/messages.inc.php:393 #: libraries/server_links.inc.php:88 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:104 libraries/messages.inc.php:587 +#: libraries/db_links.inc.php:104 libraries/messages.inc.php:583 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" msgstr "عمليات" -#: libraries/db_links.inc.php:111 libraries/messages.inc.php:709 +#: libraries/db_links.inc.php:111 libraries/messages.inc.php:705 #: libraries/server_links.inc.php:66 server_privileges.php:72 #: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117 msgid "Privileges" msgstr "امتيازات" #: libraries/db_routines.inc.php:30 libraries/db_routines.inc.php:32 -#: libraries/messages.inc.php:812 +#: libraries/messages.inc.php:808 msgid "Routines" msgstr "" -#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:811 +#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:807 msgid "Return type" msgstr "" #: libraries/db_structure.lib.php:57 libraries/display_tbl.lib.php:1848 -#: libraries/messages.inc.php:65 +#: libraries/messages.inc.php:61 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "" -#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:593 +#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:589 #: server_databases.php:142 tbl_printview.php:336 tbl_structure.php:683 msgid "Overhead" msgstr "" #: libraries/dbi/mysql.dbi.lib.php:112 libraries/dbi/mysqli.dbi.lib.php:124 -#: libraries/messages.inc.php:176 +#: libraries/messages.inc.php:172 msgid "Connection for controluser as defined in your configuration failed." msgstr "" #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 -#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:855 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:851 msgid "The server is not responding" msgstr "" #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:1010 +#: libraries/messages.inc.php:1006 msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "" -#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:255 +#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:251 #: tbl_structure.php:609 msgid "Details..." msgstr "" -#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:143 +#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:139 #: main.php:91 user_password.php:111 user_password.php:129 msgid "Change password" msgstr "تغيير اسم رمز" -#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:561 +#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:557 #: libraries/replication_gui.lib.php:341 server_privileges.php:768 msgid "No Password" msgstr "بدون اسم رمز" -#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:610 +#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:606 #: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60 #: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335 #: libraries/replication_gui.lib.php:345 server_privileges.php:757 @@ -2046,13 +2056,13 @@ msgstr "بدون اسم رمز" msgid "Password" msgstr "اسم رمز" -#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:806 +#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:802 #: libraries/replication_gui.lib.php:349 libraries/replication_gui.lib.php:352 #: server_privileges.php:776 server_privileges.php:779 msgid "Re-type" msgstr "تكرار" -#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:608 +#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:604 msgid "Password Hashing" msgstr "" @@ -2060,92 +2070,92 @@ msgstr "" msgid "MySQL 4.0 compatible" msgstr "" -#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:353 +#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:349 #: libraries/replication_gui.lib.php:356 server_privileges.php:783 msgid "Generate Password" msgstr "" -#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:352 +#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:348 #: libraries/replication_gui.lib.php:359 server_privileges.php:786 #, fuzzy msgid "Generate" msgstr "توليد‌شده توسط" #: libraries/display_create_database.lib.php:22 -#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:189 +#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:185 msgid "Create new database" msgstr "ساخت پايگاه داده جديد" -#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:185 +#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:181 msgid "Create" msgstr "ساختن" -#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:564 +#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:560 #: server_privileges.php:74 server_privileges.php:1388 #: server_replication.php:35 #, fuzzy msgid "No Privileges" msgstr "امتيازات" -#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:445 +#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:441 msgid "Table must have at least one field." msgstr "" -#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:190 +#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:186 #, php-format msgid "Create table on database %s" msgstr "ساخت جدول جديد در پايگاه داده %s" -#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:577 +#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:573 msgid "Number of fields" msgstr "" -#: libraries/display_export.lib.php:42 libraries/messages.inc.php:124 +#: libraries/display_export.lib.php:42 libraries/messages.inc.php:120 msgid "Could not load export plugins, please check your installation!" msgstr "" -#: libraries/display_export.lib.php:107 libraries/messages.inc.php:277 +#: libraries/display_export.lib.php:107 libraries/messages.inc.php:273 #, php-format msgid "Dump %s row(s) starting at record # %s" msgstr "حذف %s سطر(ها) ابتدا از سطر شماره %s." -#: libraries/display_export.lib.php:115 libraries/messages.inc.php:274 +#: libraries/display_export.lib.php:115 libraries/messages.inc.php:270 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:125 libraries/messages.inc.php:852 +#: libraries/display_export.lib.php:125 libraries/messages.inc.php:848 #: setup/lib/messages.inc.php:82 msgid "Save as file" msgstr "ذخيره به صورت پرونده" -#: libraries/display_export.lib.php:134 libraries/messages.inc.php:828 +#: libraries/display_export.lib.php:134 libraries/messages.inc.php:824 #, php-format msgid "Save on server in %s directory" msgstr "" -#: libraries/display_export.lib.php:142 libraries/messages.inc.php:594 +#: libraries/display_export.lib.php:142 libraries/messages.inc.php:590 #: setup/lib/messages.inc.php:90 msgid "Overwrite existing file(s)" msgstr "" -#: libraries/display_export.lib.php:148 libraries/messages.inc.php:330 +#: libraries/display_export.lib.php:148 libraries/messages.inc.php:326 msgid "File name template" msgstr "" -#: libraries/display_export.lib.php:152 libraries/messages.inc.php:327 +#: libraries/display_export.lib.php:152 libraries/messages.inc.php:323 #, fuzzy msgid "server name" msgstr "نام كاربر" -#: libraries/display_export.lib.php:155 libraries/messages.inc.php:326 +#: libraries/display_export.lib.php:155 libraries/messages.inc.php:322 msgid "database name" msgstr "" -#: libraries/display_export.lib.php:158 libraries/messages.inc.php:328 +#: libraries/display_export.lib.php:158 libraries/messages.inc.php:324 msgid "table name" msgstr "" -#: libraries/display_export.lib.php:162 libraries/messages.inc.php:329 +#: libraries/display_export.lib.php:162 libraries/messages.inc.php:325 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2153,24 +2163,24 @@ msgid "" "3$s. Other text will be kept as is." msgstr "" -#: libraries/display_export.lib.php:202 libraries/messages.inc.php:331 +#: libraries/display_export.lib.php:202 libraries/messages.inc.php:327 msgid "remember template" msgstr "" #: libraries/display_export.lib.php:210 libraries/display_import.lib.php:178 -#: libraries/display_import.lib.php:191 libraries/messages.inc.php:145 +#: libraries/display_import.lib.php:191 libraries/messages.inc.php:141 #: libraries/sql_query_form.lib.php:549 msgid "Character set of the file:" msgstr "مجموعه كاراكترهاي پرونده:" -#: libraries/display_export.lib.php:235 libraries/messages.inc.php:166 +#: libraries/display_export.lib.php:235 libraries/messages.inc.php:162 #: setup/lib/messages.inc.php:84 msgid "Compression" 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/messages.inc.php:558 +#: libraries/export/sql.php:868 libraries/messages.inc.php:554 #: libraries/tbl_properties.inc.php:575 server_privileges.php:1836 #: server_processlist.php:75 msgid "None" @@ -2194,465 +2204,465 @@ msgstr "\"gzipped\"" msgid "bzipped" msgstr "\"bzipped\"" -#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1018 +#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1014 msgid "SQL compatibility mode" msgstr "" -#: libraries/display_import.lib.php:67 libraries/messages.inc.php:398 +#: libraries/display_import.lib.php:67 libraries/messages.inc.php:394 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " "browsers." msgstr "" -#: libraries/display_import.lib.php:77 libraries/messages.inc.php:406 +#: libraries/display_import.lib.php:77 libraries/messages.inc.php:402 msgid "The file is being processed, please be patient." msgstr "" -#: libraries/display_import.lib.php:99 libraries/messages.inc.php:408 +#: libraries/display_import.lib.php:99 libraries/messages.inc.php:404 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." msgstr "" -#: libraries/display_import.lib.php:126 libraries/messages.inc.php:333 +#: libraries/display_import.lib.php:126 libraries/messages.inc.php:329 msgid "File to import" msgstr "" -#: libraries/display_import.lib.php:137 libraries/messages.inc.php:486 +#: libraries/display_import.lib.php:137 libraries/messages.inc.php:482 #: libraries/sql_query_form.lib.php:524 msgid "Location of the text file" msgstr "محل پرونده متني" -#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1203 +#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1199 msgid "File uploads are not allowed on this server." msgstr "" -#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1235 +#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1231 #: libraries/sql_query_form.lib.php:533 tbl_change.php:1028 msgid "The directory you set for upload work cannot be reached" msgstr "پوشه‌اي را كه براي انتقال فايل انتخاب كرده‌ايد قابل دسترسي نيست." -#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1236 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1232 #: libraries/sql_query_form.lib.php:536 tbl_change.php:1031 msgid "web server upload directory" msgstr "" -#: libraries/display_import.lib.php:212 libraries/messages.inc.php:167 +#: libraries/display_import.lib.php:212 libraries/messages.inc.php:163 #, php-format msgid "Imported file compression will be automatically detected from: %s" msgstr "" -#: libraries/display_import.lib.php:219 libraries/messages.inc.php:600 +#: libraries/display_import.lib.php:219 libraries/messages.inc.php:596 msgid "Partial import" msgstr "" -#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1105 +#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1101 #, php-format msgid "" "Previous import timed out, after resubmitting will continue from position %d." msgstr "" -#: libraries/display_import.lib.php:232 libraries/messages.inc.php:51 +#: libraries/display_import.lib.php:232 libraries/messages.inc.php:47 msgid "" "Allow the interruption of an import in case the script detects it is close " "to the PHP timeout limit. This might be good way to import large files, " "however it can break transactions." msgstr "" -#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1004 +#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1000 #: setup/lib/messages.inc.php:161 msgid "Number of records (queries) to skip from start" msgstr "" -#: libraries/display_import.lib.php:255 libraries/messages.inc.php:396 +#: libraries/display_import.lib.php:255 libraries/messages.inc.php:392 #: setup/lib/messages.inc.php:160 msgid "Format of imported file" msgstr "" #: libraries/display_select_lang.lib.php:45 -#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:465 +#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:461 #: setup/frames/index.inc.php:70 msgid "Language" msgstr "" -#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:447 +#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:443 #, php-format msgid "%d is not valid row number." msgstr "" -#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:814 +#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:810 msgid "row(s) starting from record #" msgstr "سطر(ها) ابتدا از سطر شماره " -#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:817 +#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:813 msgid "horizontal" msgstr "افقي" -#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:816 +#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:812 msgid "horizontal (rotated headers)" msgstr "" -#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:819 +#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:815 msgid "vertical" msgstr "عمودي" -#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:818 +#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:814 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "" -#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:495 +#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:491 msgid "This operation could take a long time. Proceed anyway?" msgstr "" -#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1012 +#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1008 msgid "Sort by key" msgstr "" #: libraries/display_tbl.lib.php:555 libraries/import.lib.php:1082 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:591 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:587 #: tbl_select.php:267 tbl_structure.php:754 #, fuzzy msgid "Options" msgstr "عمليات" #: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:570 -#: libraries/messages.inc.php:601 +#: libraries/messages.inc.php:597 msgid "Partial Texts" msgstr "" #: libraries/display_tbl.lib.php:561 libraries/display_tbl.lib.php:574 -#: libraries/messages.inc.php:346 +#: libraries/messages.inc.php:342 msgid "Full Texts" msgstr "كاملا متن" -#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:739 +#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:735 msgid "Relational key" msgstr "" -#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:738 +#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:734 msgid "Relational display field" msgstr "" -#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:872 +#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:868 msgid "Show binary contents" msgstr "" -#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:873 +#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:869 msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:871 +#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:867 msgid "Show binary contents as HEX" msgstr "" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:375 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:371 #: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320 msgid "Hide" msgstr "" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:508 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:504 #: libraries/tbl_properties.inc.php:144 transformation_overview.php:47 msgid "Browser transformation" msgstr "" #: libraries/display_tbl.lib.php:1126 libraries/display_tbl.lib.php:1130 -#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:308 +#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:304 msgid "Execute bookmarked query" msgstr "" #: libraries/display_tbl.lib.php:1145 libraries/display_tbl.lib.php:1157 -#: libraries/messages.inc.php:244 +#: libraries/messages.inc.php:240 msgid "The row has been deleted" msgstr "سطر حذف گرديد ." #: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056 -#: libraries/messages.inc.php:460 server_processlist.php:71 +#: libraries/messages.inc.php:456 server_processlist.php:71 #: tbl_row_action.php:64 msgid "Kill" msgstr "Kill" -#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:849 +#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:845 msgid "in query" msgstr "in query" -#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:881 +#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:877 msgid "Showing rows" msgstr "Showing rows" -#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1113 +#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1109 msgid "total" msgstr "جمع كل" -#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:727 +#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:723 #: sql.php:524 #, php-format msgid "Query took %01.4f sec" msgstr "" -#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:135 +#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:131 #: 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:471 msgid "Change" msgstr "تغيير" -#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:724 +#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:720 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:671 +#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:667 msgid "Print view (with full texts)" msgstr "" -#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:482 +#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:478 msgid "Link not found" msgstr "پيوند پيدا نشد" -#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1224 +#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1220 #: main.php:228 #, fuzzy msgid "Version information" msgstr "اطلاعات ورود" -#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:423 +#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:419 msgid "Data home directory" msgstr "" -#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:424 +#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:420 msgid "The common part of the directory path for all InnoDB data files." msgstr "" -#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:422 +#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:418 #, fuzzy msgid "Data files" msgstr "فقط داده‌ها" -#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:418 +#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:414 msgid "Autoextend increment" msgstr "" -#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:419 +#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:415 msgid "" " The increment size for extending the size of an autoextending tablespace " "when it becomes full." msgstr "" -#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:420 +#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:416 msgid "Buffer pool size" msgstr "" -#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:421 +#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:417 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." msgstr "" -#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:112 +#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:108 msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:426 +#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:422 #: server_status.php:306 msgid "InnoDB Status" msgstr "" -#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:113 +#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:109 msgid "Buffer Pool Usage" msgstr "" -#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1114 +#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1110 #: server_databases.php:137 server_databases.php:305 server_status.php:414 #: server_status.php:475 server_status.php:496 tbl_printview.php:351 #: tbl_structure.php:697 msgid "Total" msgstr "جمع كل" -#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:425 +#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:421 msgid "pages" msgstr "" -#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:343 +#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:339 msgid "Free pages" msgstr "" -#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:259 +#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:255 msgid "Dirty pages" msgstr "" -#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:230 +#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:226 msgid "Pages containing data" msgstr "" -#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:598 +#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:594 msgid "Pages to be flushed" msgstr "" -#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:119 +#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:115 msgid "Busy pages" msgstr "" -#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:467 +#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:463 msgid "Latched pages" msgstr "" -#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:111 +#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:107 msgid "Buffer Pool Activity" msgstr "" -#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:731 +#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:727 msgid "Read requests" msgstr "" -#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1244 +#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1240 msgid "Write requests" msgstr "" -#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:115 +#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:111 msgid "Read misses" msgstr "" -#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:117 +#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:113 msgid "Write waits" msgstr "" -#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:114 +#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:110 msgid "Read misses in %" msgstr "" -#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:116 +#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:112 msgid "Write waits in %" msgstr "" -#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:522 +#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:518 msgid "Data pointer size" msgstr "" -#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:523 +#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:519 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." msgstr "" -#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:528 +#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:524 msgid "Automatic recovery mode" msgstr "" -#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:529 +#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:525 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." msgstr "" -#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:527 +#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:523 msgid "Maximum size for temporary sort files" msgstr "" -#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:526 +#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:522 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " "INFILE)." msgstr "" -#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:525 +#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:521 msgid "Maximum size for temporary files on index creation" msgstr "" -#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:524 +#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:520 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " "method." msgstr "" -#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:531 +#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:527 msgid "Repair threads" msgstr "" -#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:530 +#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:526 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." msgstr "" -#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:533 +#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:529 msgid "Sort buffer size" msgstr "" -#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:532 +#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:528 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." msgstr "" -#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:620 +#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:616 msgid "Index cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:619 +#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:615 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." msgstr "" -#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:630 +#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:626 msgid "Record cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:629 +#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:625 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " "to the handle data (.xtd) and row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:624 +#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:620 msgid "Log cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:623 +#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:619 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:628 +#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:624 msgid "Log file threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:627 +#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:623 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:634 +#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:630 msgid "Transaction buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:633 +#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:629 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." msgstr "" -#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:611 +#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:607 msgid "Checkpoint frequency" msgstr "" -#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:612 +#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:608 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." msgstr "" -#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:615 +#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:611 msgid "Data log threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:616 +#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:612 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -2660,48 +2670,48 @@ msgid "" "that can be stored in the database." msgstr "" -#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:618 +#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:614 msgid "Garbage threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:617 +#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:613 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." msgstr "" -#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:622 +#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:618 msgid "Log buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:621 +#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:617 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " "required to write a data log." msgstr "" -#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:613 +#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:609 msgid "Data file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:614 +#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:610 msgid "The grow size of the handle data (.xtd) files." msgstr "" -#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:632 +#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:628 msgid "Row file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:631 +#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:627 msgid "The grow size of the row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:626 +#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:622 msgid "Log file count" msgstr "" -#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:625 +#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:621 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -2711,19 +2721,19 @@ msgstr "" #: libraries/export/htmlword.php:132 libraries/export/odt.php:168 #: libraries/export/sql.php:881 libraries/export/texytext.php:130 -#: libraries/messages.inc.php:275 +#: libraries/messages.inc.php:271 msgid "Dumping data for table" msgstr "حذف داده‌هاي جدول" #: libraries/export/htmlword.php:185 libraries/export/odt.php:238 #: libraries/export/sql.php:785 libraries/export/texytext.php:177 -#: libraries/messages.inc.php:1086 +#: libraries/messages.inc.php:1082 msgid "Table structure for table" msgstr "" #: libraries/export/latex.php:125 libraries/export/sql.php:232 #: libraries/export/xml.php:102 libraries/header_printview.inc.php:57 -#: libraries/messages.inc.php:381 libraries/replication_gui.lib.php:63 +#: libraries/messages.inc.php:377 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:170 libraries/replication_gui.lib.php:265 #: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325 #: server_privileges.php:692 server_privileges.php:695 @@ -2735,188 +2745,188 @@ msgstr "ميزبان" #: libraries/export/latex.php:130 libraries/export/sql.php:233 #: libraries/export/xml.php:107 libraries/header_printview.inc.php:59 -#: libraries/messages.inc.php:354 +#: libraries/messages.inc.php:350 msgid "Generation Time" msgstr "زمان توليد" #: libraries/export/latex.php:131 libraries/export/sql.php:235 -#: libraries/export/xml.php:108 libraries/messages.inc.php:864 main.php:186 +#: libraries/export/xml.php:108 libraries/messages.inc.php:860 main.php:186 msgid "Server version" msgstr "نسخه سرور" #: libraries/export/latex.php:132 libraries/export/sql.php:236 -#: libraries/export/xml.php:109 libraries/messages.inc.php:651 +#: libraries/export/xml.php:109 libraries/messages.inc.php:647 msgid "PHP Version" msgstr "نسخه PHP" #: libraries/export/latex.php:201 libraries/export/sql.php:868 -#: libraries/messages.inc.php:226 server_databases.php:127 +#: libraries/messages.inc.php:222 server_databases.php:127 #: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317 #: tbl_structure.php:666 msgid "Data" msgstr "داده" -#: libraries/export/odt.php:318 libraries/messages.inc.php:506 +#: libraries/export/odt.php:318 libraries/messages.inc.php:502 #: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "" -#: libraries/export/sql.php:387 libraries/messages.inc.php:711 +#: libraries/export/sql.php:387 libraries/messages.inc.php:707 msgid "Procedures" msgstr "" -#: libraries/export/sql.php:401 libraries/messages.inc.php:348 +#: libraries/export/sql.php:401 libraries/messages.inc.php:344 #, fuzzy msgid "Functions" msgstr "تابع" -#: libraries/export/sql.php:618 libraries/messages.inc.php:174 +#: libraries/export/sql.php:618 libraries/messages.inc.php:170 msgid "Constraints for dumped tables" msgstr "" -#: libraries/export/sql.php:627 libraries/messages.inc.php:175 +#: libraries/export/sql.php:627 libraries/messages.inc.php:171 msgid "Constraints for table" msgstr "" -#: libraries/export/sql.php:727 libraries/messages.inc.php:512 +#: libraries/export/sql.php:727 libraries/messages.inc.php:508 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/export/sql.php:739 libraries/messages.inc.php:743 +#: libraries/export/sql.php:739 libraries/messages.inc.php:739 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/export/sql.php:796 libraries/messages.inc.php:1178 +#: libraries/export/sql.php:796 libraries/messages.inc.php:1174 #: libraries/tbl_triggers.lib.php:19 msgid "Triggers" msgstr "" -#: libraries/export/sql.php:808 libraries/messages.inc.php:1046 +#: libraries/export/sql.php:808 libraries/messages.inc.php:1042 #, fuzzy msgid "Structure for view" msgstr "فقط ساختار" -#: libraries/export/sql.php:817 libraries/messages.inc.php:1029 +#: libraries/export/sql.php:817 libraries/messages.inc.php:1025 msgid "Stand-in structure for view" msgstr "" #: libraries/footer.inc.php:184 libraries/footer.inc.php:195 -#: libraries/footer.inc.php:198 libraries/messages.inc.php:586 +#: libraries/footer.inc.php:198 libraries/messages.inc.php:582 msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/header.inc.php:115 libraries/messages.inc.php:542 +#: libraries/header.inc.php:115 libraries/messages.inc.php:538 #, fuzzy msgid "New table" msgstr "No tables" #: libraries/header_printview.inc.php:50 libraries/header_printview.inc.php:55 -#: libraries/messages.inc.php:1024 +#: libraries/messages.inc.php:1020 msgid "SQL result" msgstr "نتيجه SQL" -#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:350 +#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:346 msgid "Generated by" msgstr "توليد‌شده توسط" #: libraries/header_printview.inc.php:63 libraries/import.lib.php:145 -#: libraries/messages.inc.php:820 navigation.php:652 navigation.php:674 +#: libraries/messages.inc.php:816 navigation.php:652 navigation.php:674 #: server_databases.php:122 tbl_printview.php:394 tbl_structure.php:366 #: tbl_structure.php:778 msgid "Rows" msgstr "سطرها" -#: libraries/import.lib.php:150 libraries/messages.inc.php:285 sql.php:520 +#: libraries/import.lib.php:150 libraries/messages.inc.php:281 sql.php:520 #: tbl_change.php:181 tbl_get_field.php:35 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL يك نتيجه خالي داد. (مثلا 0 سطر)." -#: libraries/import.lib.php:1078 libraries/messages.inc.php:399 +#: libraries/import.lib.php:1078 libraries/messages.inc.php:395 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1079 libraries/messages.inc.php:400 +#: libraries/import.lib.php:1079 libraries/messages.inc.php:396 msgid "View a structure`s contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1080 libraries/messages.inc.php:401 +#: libraries/import.lib.php:1080 libraries/messages.inc.php:397 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1081 libraries/messages.inc.php:402 +#: libraries/import.lib.php:1081 libraries/messages.inc.php:398 msgid "Edit its structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1084 libraries/messages.inc.php:362 +#: libraries/import.lib.php:1084 libraries/messages.inc.php:358 #, fuzzy msgid "Go to database" msgstr "No databases" #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:869 +#: libraries/messages.inc.php:865 msgid "settings" msgstr "" -#: libraries/import.lib.php:1106 libraries/messages.inc.php:363 +#: libraries/import.lib.php:1106 libraries/messages.inc.php:359 msgid "Go to table" msgstr "" -#: libraries/import.lib.php:1109 libraries/messages.inc.php:1047 +#: libraries/import.lib.php:1109 libraries/messages.inc.php:1043 #, fuzzy msgid "structure" msgstr "ساختار" -#: libraries/import.lib.php:1115 libraries/messages.inc.php:364 +#: libraries/import.lib.php:1115 libraries/messages.inc.php:360 msgid "Go to view" msgstr "" #: libraries/import/csv.php:58 libraries/import/csv.php:70 #: libraries/import/csv.php:74 libraries/import/csv.php:78 -#: libraries/messages.inc.php:442 +#: libraries/messages.inc.php:438 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "" -#: libraries/import/csv.php:59 libraries/messages.inc.php:323 +#: libraries/import/csv.php:59 libraries/messages.inc.php:319 msgid "Fields terminated by" msgstr "ستونهاي منتهي به" -#: libraries/import/csv.php:71 libraries/messages.inc.php:320 +#: libraries/import/csv.php:71 libraries/messages.inc.php:316 msgid "Fields enclosed by" msgstr "ستونهاي درميان‌گرفته با" -#: libraries/import/csv.php:75 libraries/messages.inc.php:321 +#: libraries/import/csv.php:75 libraries/messages.inc.php:317 msgid "Fields escaped by" msgstr "ستونهاي جداشده با" -#: libraries/import/csv.php:79 libraries/messages.inc.php:481 +#: libraries/import/csv.php:79 libraries/messages.inc.php:477 msgid "Lines terminated by" msgstr "خطوط منتهي به" -#: libraries/import/csv.php:119 libraries/messages.inc.php:439 +#: libraries/import/csv.php:119 libraries/messages.inc.php:435 #, php-format msgid "Invalid column (%s) specified!" msgstr "" #: libraries/import/csv.php:177 libraries/import/csv.php:424 -#: libraries/messages.inc.php:441 +#: libraries/messages.inc.php:437 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/import/csv.php:312 libraries/messages.inc.php:440 +#: libraries/import/csv.php:312 libraries/messages.inc.php:436 #, php-format msgid "Invalid field count in CSV input on line %d." msgstr "" -#: libraries/import/ldi.php:55 libraries/messages.inc.php:446 +#: libraries/import/ldi.php:55 libraries/messages.inc.php:442 msgid "This plugin does not support compressed imports!" msgstr "" #: libraries/import/xml.php:74 libraries/import/xml.php:130 -#: libraries/messages.inc.php:1247 +#: libraries/messages.inc.php:1243 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -2945,790 +2955,780 @@ msgstr "" msgid "ltr" msgstr "rtl" -#. l10n: Thousands separator -#: libraries/messages.inc.php:21 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: libraries/messages.inc.php:23 -msgid "." -msgstr "." - -#: libraries/messages.inc.php:25 server_status.php:461 +#: libraries/messages.inc.php:21 server_status.php:461 msgid "Aborted" msgstr "" -#: libraries/messages.inc.php:28 main.php:68 +#: libraries/messages.inc.php:24 main.php:68 #, fuzzy msgid "Actions" msgstr "عمل" -#: libraries/messages.inc.php:34 libraries/tbl_properties.inc.php:780 +#: libraries/messages.inc.php:30 libraries/tbl_properties.inc.php:780 #: tbl_structure.php:543 #, fuzzy, php-format msgid "Add %s field(s)" msgstr "افزودن ستون جديد" -#: libraries/messages.inc.php:35 +#: libraries/messages.inc.php:31 msgid "Add custom comment into header (\\n splits lines)" msgstr "" -#: libraries/messages.inc.php:36 +#: libraries/messages.inc.php:32 msgid "Add into comments" msgstr "" -#: libraries/messages.inc.php:37 tbl_structure.php:541 +#: libraries/messages.inc.php:33 tbl_structure.php:541 msgid "Add new field" msgstr "افزودن ستون جديد" -#: libraries/messages.inc.php:38 server_privileges.php:1886 +#: libraries/messages.inc.php:34 server_privileges.php:1886 msgid "Add privileges on the following database" msgstr "" -#: libraries/messages.inc.php:39 server_privileges.php:1907 +#: libraries/messages.inc.php:35 server_privileges.php:1907 msgid "Add privileges on the following table" msgstr "" -#: libraries/messages.inc.php:40 tbl_select.php:288 +#: libraries/messages.inc.php:36 tbl_select.php:288 msgid "Add search conditions (body of the \"where\" clause):" msgstr "افزودن شرايط جستجو (بدنه شرط \"where\"):" -#: libraries/messages.inc.php:41 tbl_indexes.php:251 +#: libraries/messages.inc.php:37 tbl_indexes.php:251 #, fuzzy, php-format msgid "Add to index  %s column(s)" msgstr "ساخت يك فهرست در %s ستون" -#: libraries/messages.inc.php:42 server_privileges.php:1570 +#: libraries/messages.inc.php:38 server_privileges.php:1570 #: server_privileges.php:1594 server_privileges.php:1988 #: server_privileges.php:2177 msgid "Add a new User" msgstr "افزودن يك كاربر جديد" -#: libraries/messages.inc.php:43 server_privileges.php:931 +#: libraries/messages.inc.php:39 server_privileges.php:931 msgid "You have added a new user." msgstr "شما يك كاربر جديد اضافه كرديد." -#: libraries/messages.inc.php:44 server_privileges.php:571 +#: libraries/messages.inc.php:40 server_privileges.php:571 msgid "Administration" msgstr "مدیریت" -#: libraries/messages.inc.php:45 tbl_structure.php:557 +#: libraries/messages.inc.php:41 tbl_structure.php:557 #, php-format msgid "After %s" msgstr "بعد از %s" -#: libraries/messages.inc.php:46 tbl_change.php:1147 +#: libraries/messages.inc.php:42 tbl_change.php:1147 msgid "Go back to previous page" msgstr "برو به صفحه قبل" -#: libraries/messages.inc.php:47 tbl_change.php:1148 +#: libraries/messages.inc.php:43 tbl_change.php:1148 msgid "Insert another new row" msgstr "درج يك سطر جديد ديگر" -#: libraries/messages.inc.php:48 tbl_change.php:1160 +#: libraries/messages.inc.php:44 tbl_change.php:1160 msgid "Edit next row" msgstr "ویرایش کردن ردیف بعدی" -#: libraries/messages.inc.php:49 tbl_change.php:1152 +#: libraries/messages.inc.php:45 tbl_change.php:1152 msgid "Go back to this page" msgstr "برگرد به این صفحه" -#: libraries/messages.inc.php:50 querywindow.php:115 +#: libraries/messages.inc.php:46 querywindow.php:115 msgid "All" msgstr "همه" -#: libraries/messages.inc.php:53 tbl_operations.php:249 +#: libraries/messages.inc.php:49 tbl_operations.php:249 msgid "Alter table order by" msgstr "تغيير جدول مرتب شده با" -#: libraries/messages.inc.php:54 tbl_operations.php:660 +#: libraries/messages.inc.php:50 tbl_operations.php:660 msgid "Analyze" msgstr "" -#: libraries/messages.inc.php:57 +#: libraries/messages.inc.php:53 #, fuzzy msgid "and" msgstr "و" -#: libraries/messages.inc.php:59 pmd_general.php:87 +#: libraries/messages.inc.php:55 pmd_general.php:87 msgid "Angular links" msgstr "" -#: libraries/messages.inc.php:60 tbl_structure.php:401 tbl_structure.php:415 +#: libraries/messages.inc.php:56 tbl_structure.php:401 tbl_structure.php:415 #: tbl_structure.php:429 #, php-format msgid "An index has been added on %s" msgstr "يك فهرست در %s اضافه گرديد." -#: libraries/messages.inc.php:61 server_privileges.php:1521 +#: libraries/messages.inc.php:57 server_privileges.php:1521 #: server_privileges.php:2123 msgid "Any" msgstr "همه" -#: libraries/messages.inc.php:62 libraries/replication_gui.lib.php:298 +#: libraries/messages.inc.php:58 libraries/replication_gui.lib.php:298 #: server_privileges.php:725 msgid "Any host" msgstr "همه ميزبانها" -#: libraries/messages.inc.php:63 libraries/replication_gui.lib.php:250 +#: libraries/messages.inc.php:59 libraries/replication_gui.lib.php:250 #: server_privileges.php:677 msgid "Any user" msgstr "همه كاربران" -#: libraries/messages.inc.php:64 server_synchronize.php:449 +#: libraries/messages.inc.php:60 server_synchronize.php:449 #: server_synchronize.php:894 msgid "Apply Selected Changes" msgstr "" -#: libraries/messages.inc.php:66 tbl_structure.php:386 +#: libraries/messages.inc.php:62 tbl_structure.php:386 #, php-format msgid "A primary key has been added on %s" msgstr "يك كليد اصلي در %s اضافه شد" -#: libraries/messages.inc.php:67 libraries/mysql_charsets.lib.php:368 +#: libraries/messages.inc.php:63 libraries/mysql_charsets.lib.php:368 msgid "Arabic" msgstr "عربی" -#: libraries/messages.inc.php:68 libraries/mysql_charsets.lib.php:359 +#: libraries/messages.inc.php:64 libraries/mysql_charsets.lib.php:359 msgid "Armenian" msgstr "ارمنی" -#: libraries/messages.inc.php:70 libraries/tbl_properties.inc.php:394 +#: libraries/messages.inc.php:66 libraries/tbl_properties.inc.php:394 msgid "As defined:" msgstr "" -#: libraries/messages.inc.php:71 tbl_structure.php:556 +#: libraries/messages.inc.php:67 tbl_structure.php:556 msgid "At Beginning of Table" msgstr "در ابتداي جدول" -#: libraries/messages.inc.php:72 tbl_structure.php:555 +#: libraries/messages.inc.php:68 tbl_structure.php:555 msgid "At End of Table" msgstr "در انتهاي جدول" -#: libraries/messages.inc.php:73 libraries/tbl_properties.inc.php:108 +#: libraries/messages.inc.php:69 libraries/tbl_properties.inc.php:108 #: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:144 #: tbl_structure.php:180 msgid "Attributes" msgstr "ويژگيها" -#: libraries/messages.inc.php:74 pdf_pages.php:303 pdf_pages.php:306 +#: libraries/messages.inc.php:70 pdf_pages.php:303 pdf_pages.php:306 msgid "Automatic layout" msgstr "" -#: libraries/messages.inc.php:77 libraries/mysql_charsets.lib.php:354 +#: libraries/messages.inc.php:73 libraries/mysql_charsets.lib.php:354 msgid "Baltic" msgstr "" -#: libraries/messages.inc.php:78 libraries/sqlparser.lib.php:175 +#: libraries/messages.inc.php:74 libraries/sqlparser.lib.php:175 msgid "BEGIN CUT" msgstr "BEGIN CUT" -#: libraries/messages.inc.php:79 libraries/sqlparser.lib.php:179 +#: libraries/messages.inc.php:75 libraries/sqlparser.lib.php:179 msgid "BEGIN RAW" msgstr "BEGIN RAW" -#: libraries/messages.inc.php:80 libraries/mysql_charsets.lib.php:201 +#: libraries/messages.inc.php:76 libraries/mysql_charsets.lib.php:201 #: libraries/mysql_charsets.lib.php:402 tbl_change.php:518 msgid "Binary" msgstr "دودويي" -#: libraries/messages.inc.php:81 tbl_change.php:894 +#: libraries/messages.inc.php:77 tbl_change.php:894 msgid "Binary - do not edit" msgstr "" -#: libraries/messages.inc.php:82 libraries/server_links.inc.php:76 +#: libraries/messages.inc.php:78 libraries/server_links.inc.php:76 #: server_binlog.php:110 server_status.php:253 test/theme.php:121 #, fuzzy msgid "Binary log" msgstr "دودويي" -#: libraries/messages.inc.php:83 server_binlog.php:217 +#: libraries/messages.inc.php:79 server_binlog.php:217 msgid "Event type" msgstr "" -#: libraries/messages.inc.php:84 server_binlog.php:220 +#: libraries/messages.inc.php:80 server_binlog.php:220 msgid "Information" msgstr "اطلاعات" -#: libraries/messages.inc.php:85 server_binlog.php:215 +#: libraries/messages.inc.php:81 server_binlog.php:215 msgid "Log name" msgstr "" -#: libraries/messages.inc.php:86 server_binlog.php:219 +#: libraries/messages.inc.php:82 server_binlog.php:219 msgid "Original position" msgstr "" -#: libraries/messages.inc.php:87 server_binlog.php:216 +#: libraries/messages.inc.php:83 server_binlog.php:216 msgid "Position" msgstr "" -#: libraries/messages.inc.php:88 libraries/replication_gui.lib.php:169 +#: libraries/messages.inc.php:84 libraries/replication_gui.lib.php:169 #: server_binlog.php:218 #, fuzzy msgid "Server ID" msgstr "سرور" -#: libraries/messages.inc.php:92 +#: libraries/messages.inc.php:88 #, fuzzy msgctxt "$strBLOBRepositoryDisabled" msgid "Disabled" msgstr "غيرفعال" -#: libraries/messages.inc.php:95 +#: libraries/messages.inc.php:91 #, fuzzy msgctxt "$strBLOBRepositoryEnabled" msgid "Enabled" msgstr "فعال" -#: libraries/messages.inc.php:97 tbl_change.php:888 +#: libraries/messages.inc.php:93 tbl_change.php:888 msgid "Remove BLOB Repository Reference" msgstr "" -#: libraries/messages.inc.php:98 +#: libraries/messages.inc.php:94 #, fuzzy msgctxt "$strBLOBRepositoryRepair" msgid "Repair" msgstr "مرمت جدول" -#: libraries/messages.inc.php:99 tbl_change.php:987 +#: libraries/messages.inc.php:95 tbl_change.php:987 msgid "Upload to BLOB repository" msgstr "" -#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:359 +#: libraries/messages.inc.php:96 libraries/sql_query_form.lib.php:359 #: sql.php:677 msgid "Let every user access this bookmark" msgstr "" -#: libraries/messages.inc.php:103 sql.php:671 +#: libraries/messages.inc.php:99 sql.php:671 msgid "Label" msgstr "" -#: libraries/messages.inc.php:104 libraries/sql_query_form.lib.php:433 +#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:433 msgid "Bookmarked SQL query" msgstr "" -#: libraries/messages.inc.php:105 libraries/sql_query_form.lib.php:365 +#: libraries/messages.inc.php:101 libraries/sql_query_form.lib.php:365 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/messages.inc.php:106 libraries/sql_query_form.lib.php:352 +#: libraries/messages.inc.php:102 libraries/sql_query_form.lib.php:352 #: sql.php:665 sql.php:666 sql.php:683 msgid "Bookmark this SQL query" msgstr "" -#: libraries/messages.inc.php:107 libraries/sql_query_form.lib.php:466 +#: libraries/messages.inc.php:103 libraries/sql_query_form.lib.php:466 msgid "View only" msgstr "" -#: libraries/messages.inc.php:109 tbl_structure.php:161 +#: libraries/messages.inc.php:105 tbl_structure.php:161 msgid "Browse distinct values" msgstr "" -#: libraries/messages.inc.php:110 tbl_change.php:252 tbl_select.php:27 +#: libraries/messages.inc.php:106 tbl_change.php:252 tbl_select.php:27 #: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34 msgid "Browse foreign values" msgstr "" -#: libraries/messages.inc.php:118 libraries/mysql_charsets.lib.php:213 +#: libraries/messages.inc.php:114 libraries/mysql_charsets.lib.php:213 msgid "Bulgarian" msgstr "بلغاری" -#: libraries/messages.inc.php:120 +#: libraries/messages.inc.php:116 msgid "\"bzipped\"" msgstr "\"bzipped\"" -#: libraries/messages.inc.php:122 +#: libraries/messages.inc.php:118 msgid "Calendar" msgstr "تقویم" -#: libraries/messages.inc.php:129 tbl_indexes.php:75 +#: libraries/messages.inc.php:125 tbl_indexes.php:75 msgid "Can't rename index to PRIMARY!" msgstr "بازناميدن فهرست به PRIMARY مقدور نمي‌باشد!" -#: libraries/messages.inc.php:132 libraries/mysql_charsets.lib.php:223 +#: libraries/messages.inc.php:128 libraries/mysql_charsets.lib.php:223 #: libraries/mysql_charsets.lib.php:409 msgid "case-insensitive" msgstr "" -#: libraries/messages.inc.php:133 libraries/mysql_charsets.lib.php:226 +#: libraries/messages.inc.php:129 libraries/mysql_charsets.lib.php:226 #: libraries/mysql_charsets.lib.php:411 msgid "case-sensitive" msgstr "" -#: libraries/messages.inc.php:134 libraries/mysql_charsets.lib.php:332 +#: libraries/messages.inc.php:130 libraries/mysql_charsets.lib.php:332 #, fuzzy msgid "Central European" msgstr "اروپای غربی" -#: libraries/messages.inc.php:136 server_privileges.php:1969 +#: libraries/messages.inc.php:132 server_privileges.php:1969 msgid "... keep the old one." msgstr "" -#: libraries/messages.inc.php:137 server_privileges.php:1967 +#: libraries/messages.inc.php:133 server_privileges.php:1967 msgid "Create a new user with the same privileges and ..." msgstr "" -#: libraries/messages.inc.php:138 server_privileges.php:1972 +#: libraries/messages.inc.php:134 server_privileges.php:1972 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/messages.inc.php:139 server_privileges.php:1970 +#: libraries/messages.inc.php:135 server_privileges.php:1970 msgid " ... delete the old one from the user tables." msgstr "" -#: libraries/messages.inc.php:140 server_privileges.php:1971 +#: libraries/messages.inc.php:136 server_privileges.php:1971 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/messages.inc.php:141 server_privileges.php:1964 +#: libraries/messages.inc.php:137 server_privileges.php:1964 msgid "Change Login Information / Copy User" msgstr "" -#: libraries/messages.inc.php:144 libraries/mysql_charsets.lib.php:107 +#: libraries/messages.inc.php:140 libraries/mysql_charsets.lib.php:107 msgid "Charset" msgstr "" -#: libraries/messages.inc.php:146 server_collations.php:40 +#: libraries/messages.inc.php:142 server_collations.php:40 msgid "Character Sets and Collations" msgstr "" -#: libraries/messages.inc.php:147 libraries/server_links.inc.php:57 +#: libraries/messages.inc.php:143 libraries/server_links.inc.php:57 #: test/theme.php:109 msgid "Charsets" msgstr "" -#: libraries/messages.inc.php:149 tbl_operations.php:661 +#: libraries/messages.inc.php:145 tbl_operations.php:661 msgid "Check" msgstr "" -#: libraries/messages.inc.php:151 server_databases.php:293 +#: libraries/messages.inc.php:147 server_databases.php:293 #: server_databases.php:294 #, fuzzy msgid "Check Privileges" msgstr "ويرايش امتيازات" -#: libraries/messages.inc.php:152 server_databases.php:289 +#: libraries/messages.inc.php:148 server_databases.php:289 #, php-format msgid "Check privileges for database "%s"." msgstr "" -#: libraries/messages.inc.php:154 pdf_pages.php:261 +#: libraries/messages.inc.php:150 pdf_pages.php:261 msgid "Please choose a page to edit" msgstr "لطفا يك صفحه را براي ويرايش انتخاب نماييد" -#: libraries/messages.inc.php:157 +#: libraries/messages.inc.php:153 msgid "Displaying Column Comments" msgstr "نمايش توضيحات ستون" -#: libraries/messages.inc.php:159 pdf_pages.php:483 view_create.php:148 +#: libraries/messages.inc.php:155 pdf_pages.php:483 view_create.php:148 msgid "Column names" msgstr "نام ستونها" -#: libraries/messages.inc.php:160 server_privileges.php:1685 +#: libraries/messages.inc.php:156 server_privileges.php:1685 msgid "Column-specific privileges" msgstr "" -#: libraries/messages.inc.php:164 +#: libraries/messages.inc.php:160 msgid "MySQL 4.0 compatible" msgstr "" -#: libraries/messages.inc.php:165 +#: libraries/messages.inc.php:161 msgid "Complete inserts" msgstr "تمام وروديها" -#: libraries/messages.inc.php:168 +#: libraries/messages.inc.php:164 #, php-format msgid "Could not load default configuration from: \"%1$s\"" msgstr "" -#: libraries/messages.inc.php:169 main.php:306 +#: libraries/messages.inc.php:165 main.php:306 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: libraries/messages.inc.php:171 pdf_schema.php:672 +#: libraries/messages.inc.php:167 pdf_schema.php:672 #, php-format msgid "Please configure the coordinates for table %s" msgstr "لطفا مختصات جدول %s را تنظيم كنيد" -#: libraries/messages.inc.php:173 server_status.php:433 +#: libraries/messages.inc.php:169 server_status.php:433 msgid "Connections" msgstr "" -#: libraries/messages.inc.php:179 tbl_operations.php:509 +#: libraries/messages.inc.php:175 tbl_operations.php:509 msgid "Copy table to (database.table):" msgstr "كپي كردن جدول به (پايگاه داده.جدول):" -#: libraries/messages.inc.php:180 tbl_move_copy.php:58 +#: libraries/messages.inc.php:176 tbl_move_copy.php:58 #, php-format msgid "Table %s has been copied to %s." msgstr "جدول %s به %s كپي شد." -#: libraries/messages.inc.php:181 tbl_move_copy.php:48 +#: libraries/messages.inc.php:177 tbl_move_copy.php:48 msgid "Can't copy table to same one!" msgstr "" -#: libraries/messages.inc.php:182 server_synchronize.php:94 +#: libraries/messages.inc.php:178 server_synchronize.php:94 msgid "Could not connect to the source" msgstr "" -#: libraries/messages.inc.php:183 server_synchronize.php:97 +#: libraries/messages.inc.php:179 server_synchronize.php:97 msgid "Could not connect to the target" msgstr "" -#: libraries/messages.inc.php:184 server_processlist.php:24 +#: libraries/messages.inc.php:180 server_processlist.php:24 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: libraries/messages.inc.php:187 +#: libraries/messages.inc.php:183 #, php-format msgid "Create an index on %s columns" msgstr "ساخت يك فهرست در %s ستون" -#: libraries/messages.inc.php:188 tbl_indexes.php:160 +#: libraries/messages.inc.php:184 tbl_indexes.php:160 msgid "Create a new index" msgstr "ساخت فهرست جديد" -#: libraries/messages.inc.php:191 pdf_pages.php:297 pmd_pdf.php:114 +#: libraries/messages.inc.php:187 pdf_pages.php:297 pmd_pdf.php:114 msgid "Create a page" msgstr "ساخت يك صفحه جديد" -#: libraries/messages.inc.php:192 +#: libraries/messages.inc.php:188 msgid "Creation of PDFs" msgstr "ساخت PDFs" -#: libraries/messages.inc.php:193 pmd_general.php:74 pmd_general.php:306 +#: libraries/messages.inc.php:189 pmd_general.php:74 pmd_general.php:306 msgid "Create relation" msgstr "" -#: libraries/messages.inc.php:194 pmd_general.php:71 +#: libraries/messages.inc.php:190 pmd_general.php:71 #: server_synchronize.php:429 server_synchronize.php:872 #, fuzzy msgid "Create table" msgstr "ساخت يك صفحه جديد" -#: libraries/messages.inc.php:195 +#: libraries/messages.inc.php:191 #, fuzzy msgctxt "$strCreateTableShort" msgid "Create table" msgstr "ساخت يك صفحه جديد" -#: libraries/messages.inc.php:196 server_privileges.php:1994 +#: libraries/messages.inc.php:192 server_privileges.php:1994 msgid "Database for user" msgstr "" -#: libraries/messages.inc.php:197 server_privileges.php:1999 +#: libraries/messages.inc.php:193 server_privileges.php:1999 msgid "Create database with same name and grant all privileges" msgstr "" -#: libraries/messages.inc.php:198 +#: libraries/messages.inc.php:194 #, fuzzy msgctxt "$strCreateUserDatabaseNone" msgid "None" msgstr "خير" -#: libraries/messages.inc.php:199 server_privileges.php:2003 +#: libraries/messages.inc.php:195 server_privileges.php:2003 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: libraries/messages.inc.php:200 server_privileges.php:2000 +#: libraries/messages.inc.php:196 server_privileges.php:2000 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: libraries/messages.inc.php:201 +#: libraries/messages.inc.php:197 msgid "Creation/Update/Check dates" msgstr "" -#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:229 +#: libraries/messages.inc.php:199 libraries/mysql_charsets.lib.php:229 msgid "Croatian" msgstr "" -#: libraries/messages.inc.php:204 +#: libraries/messages.inc.php:200 msgid "CSV" msgstr "داده‌هاي CSV" -#: libraries/messages.inc.php:205 libraries/server_synchronize.lib.php:1343 +#: libraries/messages.inc.php:201 libraries/server_synchronize.lib.php:1343 #: libraries/server_synchronize.lib.php:1369 msgid "Current server" msgstr "" -#: libraries/messages.inc.php:206 main.php:159 +#: libraries/messages.inc.php:202 main.php:159 msgid "Custom color" msgstr "" -#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:365 +#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:365 msgid "Cyrillic" msgstr "" -#: libraries/messages.inc.php:208 libraries/mysql_charsets.lib.php:232 +#: libraries/messages.inc.php:204 libraries/mysql_charsets.lib.php:232 msgid "Czech" msgstr "" -#: libraries/messages.inc.php:209 libraries/mysql_charsets.lib.php:383 +#: libraries/messages.inc.php:205 libraries/mysql_charsets.lib.php:383 msgid "Czech-Slovak" msgstr "" -#: libraries/messages.inc.php:211 libraries/mysql_charsets.lib.php:235 +#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:235 msgid "Danish" msgstr "دانمارکی" -#: libraries/messages.inc.php:214 +#: libraries/messages.inc.php:210 msgid "Database export options" msgstr "" -#: libraries/messages.inc.php:217 server_synchronize.php:122 +#: libraries/messages.inc.php:213 server_synchronize.php:122 #: server_synchronize.php:125 tbl_create.php:82 tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "" -#: libraries/messages.inc.php:219 server_databases.php:63 +#: libraries/messages.inc.php:215 server_databases.php:63 #, php-format msgid "%s databases have been dropped successfully." msgstr "" -#: libraries/messages.inc.php:220 libraries/server_synchronize.lib.php:1341 +#: libraries/messages.inc.php:216 libraries/server_synchronize.lib.php:1341 #: server_synchronize.php:1110 #, fuzzy msgid "Source database" msgstr "جستجو در پايگاه‌داده" -#: libraries/messages.inc.php:221 server_databases.php:88 +#: libraries/messages.inc.php:217 server_databases.php:88 msgid "Databases statistics" msgstr "آمار پايگاههاي داده" -#: libraries/messages.inc.php:222 server_databases.php:362 +#: libraries/messages.inc.php:218 server_databases.php:362 #: server_databases.php:363 #, fuzzy msgid "Disable Statistics" msgstr "آمار پايگاههاي داده" -#: libraries/messages.inc.php:223 server_databases.php:358 +#: libraries/messages.inc.php:219 server_databases.php:358 #: server_databases.php:359 #, fuzzy msgid "Enable Statistics" msgstr "آمار پايگاههاي داده" -#: libraries/messages.inc.php:224 server_databases.php:366 +#: libraries/messages.inc.php:220 server_databases.php:366 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." msgstr "" -#: libraries/messages.inc.php:225 libraries/server_synchronize.lib.php:1367 +#: libraries/messages.inc.php:221 libraries/server_synchronize.lib.php:1367 #: server_synchronize.php:1112 #, fuzzy msgid "Target database" msgstr "جستجو در پايگاه‌داده" -#: libraries/messages.inc.php:228 server_synchronize.php:425 +#: libraries/messages.inc.php:224 server_synchronize.php:425 #: server_synchronize.php:868 msgid "Data Difference" msgstr "" -#: libraries/messages.inc.php:231 server_synchronize.php:272 +#: libraries/messages.inc.php:227 server_synchronize.php:272 msgid "Data Synchronization" msgstr "" -#: libraries/messages.inc.php:235 server_privileges.php:526 +#: libraries/messages.inc.php:231 server_privileges.php:526 #: server_privileges.php:1679 msgid "Database-specific privileges" msgstr "" -#: libraries/messages.inc.php:237 server_privileges.php:2136 +#: libraries/messages.inc.php:233 server_privileges.php:2136 msgid "database-specific" msgstr "" -#: libraries/messages.inc.php:240 libraries/tbl_properties.inc.php:106 +#: libraries/messages.inc.php:236 libraries/tbl_properties.inc.php:106 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" msgstr "" -#: libraries/messages.inc.php:241 tbl_operations.php:589 +#: libraries/messages.inc.php:237 tbl_operations.php:589 msgid "Defragment table" msgstr "" -#: libraries/messages.inc.php:242 +#: libraries/messages.inc.php:238 msgid "Use delayed inserts" msgstr "" -#: libraries/messages.inc.php:245 server_privileges.php:1243 +#: libraries/messages.inc.php:241 server_privileges.php:1243 msgid "No users selected for deleting!" msgstr "" -#: libraries/messages.inc.php:246 pmd_general.php:372 +#: libraries/messages.inc.php:242 pmd_general.php:372 msgid "Delete relation" msgstr "" -#: libraries/messages.inc.php:248 server_privileges.php:1232 +#: libraries/messages.inc.php:244 server_privileges.php:1232 #, php-format msgid "Deleting %s" msgstr "در حال پاک کردن %s" -#: libraries/messages.inc.php:249 libraries/sql_query_form.lib.php:388 +#: libraries/messages.inc.php:245 libraries/sql_query_form.lib.php:388 msgid "Delimiter" msgstr "" -#: libraries/messages.inc.php:250 pdf_pages.php:506 +#: libraries/messages.inc.php:246 pdf_pages.php:506 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" msgstr "" -#: libraries/messages.inc.php:254 pmd_help.php:29 +#: libraries/messages.inc.php:250 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." msgstr "" -#: libraries/messages.inc.php:256 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:252 libraries/mysql_charsets.lib.php:247 msgid "dictionary" msgstr "لغت نامه" -#: libraries/messages.inc.php:257 libraries/server_synchronize.lib.php:1348 +#: libraries/messages.inc.php:253 libraries/server_synchronize.lib.php:1348 msgid "Difference" msgstr "" -#: libraries/messages.inc.php:258 pmd_general.php:87 +#: libraries/messages.inc.php:254 pmd_general.php:87 msgid "Direct links" msgstr "" -#: libraries/messages.inc.php:261 +#: libraries/messages.inc.php:257 msgid "Disable foreign key checks" msgstr "" -#: libraries/messages.inc.php:262 +#: libraries/messages.inc.php:258 msgid "Display Features" msgstr "نمايش خصوصيات" -#: libraries/messages.inc.php:263 tbl_select.php:301 +#: libraries/messages.inc.php:259 tbl_select.php:301 msgid "Display order:" msgstr "ترتيب نمايش:" -#: libraries/messages.inc.php:265 tbl_select.php:132 +#: libraries/messages.inc.php:261 tbl_select.php:132 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "انجام يك \"پرس و جو با نمونه\" (wildcard: \"%\")" -#: libraries/messages.inc.php:266 +#: libraries/messages.inc.php:262 msgid "DocSQL" msgstr "" -#: libraries/messages.inc.php:268 +#: libraries/messages.inc.php:264 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/messages.inc.php:273 server_privileges.php:1579 +#: libraries/messages.inc.php:269 server_privileges.php:1579 #: server_privileges.php:1580 server_privileges.php:1581 msgid "Drop the databases that have the same names as the users." msgstr "" -#: libraries/messages.inc.php:278 tbl_printview.php:382 tbl_structure.php:743 +#: libraries/messages.inc.php:274 tbl_printview.php:382 tbl_structure.php:743 msgid "dynamic" msgstr "پويا" -#: libraries/messages.inc.php:282 server_privileges.php:1324 +#: libraries/messages.inc.php:278 server_privileges.php:1324 #: server_privileges.php:1610 msgid "Edit Privileges" msgstr "ويرايش امتيازات" -#: libraries/messages.inc.php:283 tbl_printview.php:341 tbl_structure.php:688 +#: libraries/messages.inc.php:279 tbl_printview.php:341 tbl_structure.php:688 msgid "Effective" msgstr "موثر" -#: libraries/messages.inc.php:286 libraries/relation.lib.php:100 +#: libraries/messages.inc.php:282 libraries/relation.lib.php:100 msgid "Enabled" msgstr "فعال" -#: libraries/messages.inc.php:287 +#: libraries/messages.inc.php:283 msgid "Enclose export in a transaction" msgstr "" -#: libraries/messages.inc.php:288 libraries/sqlparser.lib.php:177 +#: libraries/messages.inc.php:284 libraries/sqlparser.lib.php:177 msgid "END CUT" msgstr "END CUT" -#: libraries/messages.inc.php:290 libraries/sqlparser.lib.php:183 +#: libraries/messages.inc.php:286 libraries/sqlparser.lib.php:183 msgid "END RAW" msgstr "END RAW" -#: libraries/messages.inc.php:293 libraries/server_links.inc.php:61 +#: libraries/messages.inc.php:289 libraries/server_links.inc.php:61 #: test/theme.php:113 msgid "Engines" msgstr "موتور" -#: libraries/messages.inc.php:295 libraries/mysql_charsets.lib.php:238 +#: libraries/messages.inc.php:291 libraries/mysql_charsets.lib.php:238 msgid "English" msgstr "انگلیسی" -#: libraries/messages.inc.php:296 server_privileges.php:393 +#: libraries/messages.inc.php:292 server_privileges.php:393 #: server_privileges.php:535 server_privileges.php:1501 msgid " Note: MySQL privilege names are expressed in English " msgstr " نكته : نام امتيازات MySQL به زبان انگليسي بيان مي‌شود ." -#: libraries/messages.inc.php:298 libraries/zip_extension.lib.php:49 +#: libraries/messages.inc.php:294 libraries/zip_extension.lib.php:49 #: libraries/zip_extension.lib.php:51 libraries/zip_extension.lib.php:66 msgid "Error in ZIP archive:" msgstr "" -#: libraries/messages.inc.php:303 libraries/mysql_charsets.lib.php:241 +#: libraries/messages.inc.php:299 libraries/mysql_charsets.lib.php:241 msgid "Esperanto" msgstr "" -#: libraries/messages.inc.php:304 libraries/mysql_charsets.lib.php:244 +#: libraries/messages.inc.php:300 libraries/mysql_charsets.lib.php:244 msgid "Estonian" msgstr "" -#: libraries/messages.inc.php:305 libraries/tbl_triggers.lib.php:29 +#: libraries/messages.inc.php:301 libraries/tbl_triggers.lib.php:29 msgid "Event" msgstr "" -#: libraries/messages.inc.php:307 +#: libraries/messages.inc.php:303 msgid "Excel edition" msgstr "" -#: libraries/messages.inc.php:311 pmd_pdf.php:85 +#: libraries/messages.inc.php:307 pmd_pdf.php:85 msgid "Export/Import to scale" msgstr "" -#: libraries/messages.inc.php:313 +#: libraries/messages.inc.php:309 msgid "Extended inserts" msgstr "وروديهاي تمديدشده" -#: libraries/messages.inc.php:314 pdf_schema.php:1267 pdf_schema.php:1288 +#: libraries/messages.inc.php:310 pdf_schema.php:1267 pdf_schema.php:1288 #: tbl_printview.php:147 tbl_structure.php:183 tbl_tracking.php:278 msgid "Extra" msgstr "اضافي" -#: libraries/messages.inc.php:316 server_status.php:447 +#: libraries/messages.inc.php:312 server_status.php:447 msgid "Failed attempts" msgstr "" -#: libraries/messages.inc.php:318 tbl_structure.php:375 +#: libraries/messages.inc.php:314 tbl_structure.php:375 #, php-format msgid "Field %s has been dropped" msgstr "ستون %s حذف گرديد" -#: libraries/messages.inc.php:322 libraries/sql_query_form.lib.php:317 +#: libraries/messages.inc.php:318 libraries/sql_query_form.lib.php:317 msgid "Fields" msgstr "ستونها" -#: libraries/messages.inc.php:332 server_binlog.php:136 +#: libraries/messages.inc.php:328 server_binlog.php:136 #, fuzzy msgid "Files" msgstr "ستونها" -#: libraries/messages.inc.php:334 server_privileges.php:1597 +#: libraries/messages.inc.php:330 server_privileges.php:1597 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -3737,221 +3737,221 @@ msgid "" "sreload the privileges%s before you continue." msgstr "" -#: libraries/messages.inc.php:335 server_status.php:289 +#: libraries/messages.inc.php:331 server_status.php:289 msgid "Flush query cache" msgstr "" -#: libraries/messages.inc.php:336 +#: libraries/messages.inc.php:332 msgid "Flush the table (\"FLUSH\")" msgstr "Flush the table (\"FLUSH\")" -#: libraries/messages.inc.php:337 server_status.php:271 +#: libraries/messages.inc.php:333 server_status.php:271 msgid "Flush (close) all tables" msgstr "" -#: libraries/messages.inc.php:339 tbl_relation.php:279 +#: libraries/messages.inc.php:335 tbl_relation.php:279 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" -#: libraries/messages.inc.php:341 setup/lib/messages.inc.php:88 +#: libraries/messages.inc.php:337 setup/lib/messages.inc.php:88 #: tbl_printview.php:376 tbl_structure.php:738 msgid "Format" msgstr "قالب" -#: libraries/messages.inc.php:344 server_replication.php:325 +#: libraries/messages.inc.php:340 server_replication.php:325 #, fuzzy msgid "Full start" msgstr "كاملا متن" -#: libraries/messages.inc.php:345 server_replication.php:325 +#: libraries/messages.inc.php:341 server_replication.php:325 msgid "Full stop" msgstr "" -#: libraries/messages.inc.php:347 tbl_change.php:282 tbl_change.php:320 +#: libraries/messages.inc.php:343 tbl_change.php:282 tbl_change.php:320 msgid "Function" msgstr "تابع" -#: libraries/messages.inc.php:355 libraries/mysql_charsets.lib.php:377 +#: libraries/messages.inc.php:351 libraries/mysql_charsets.lib.php:377 msgid "Georgian" msgstr "گرجی" -#: libraries/messages.inc.php:356 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:352 libraries/mysql_charsets.lib.php:247 #: libraries/mysql_charsets.lib.php:250 msgid "German" msgstr "آلمانی" -#: libraries/messages.inc.php:357 themes.php:42 +#: libraries/messages.inc.php:353 themes.php:42 msgid "Get more themes!" msgstr "" -#: libraries/messages.inc.php:358 server_privileges.php:2134 +#: libraries/messages.inc.php:354 server_privileges.php:2134 msgid "global" msgstr "" -#: libraries/messages.inc.php:359 server_privileges.php:524 +#: libraries/messages.inc.php:355 server_privileges.php:524 #: server_privileges.php:1500 msgid "Global privileges" msgstr "" -#: libraries/messages.inc.php:360 server_variables.php:55 +#: libraries/messages.inc.php:356 server_variables.php:55 #: server_variables.php:89 msgid "Global value" msgstr "" -#: libraries/messages.inc.php:365 server_privileges.php:1502 +#: libraries/messages.inc.php:361 server_privileges.php:1502 #: server_privileges.php:1684 server_privileges.php:2033 #, fuzzy msgid "Grant" msgstr "چاپ" -#: libraries/messages.inc.php:366 libraries/mysql_charsets.lib.php:380 +#: libraries/messages.inc.php:362 libraries/mysql_charsets.lib.php:380 msgid "Greek" msgstr "یونانی" -#: libraries/messages.inc.php:367 +#: libraries/messages.inc.php:363 msgid "\"gzipped\"" msgstr "\"gzipped\"" -#: libraries/messages.inc.php:369 server_status.php:250 +#: libraries/messages.inc.php:365 server_status.php:250 msgid "Handler" msgstr "" -#: libraries/messages.inc.php:370 server_synchronize.php:464 +#: libraries/messages.inc.php:366 server_synchronize.php:464 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: libraries/messages.inc.php:372 libraries/mysql_charsets.lib.php:374 +#: libraries/messages.inc.php:368 libraries/mysql_charsets.lib.php:374 msgid "Hebrew" msgstr "" -#: libraries/messages.inc.php:373 pmd_general.php:83 +#: libraries/messages.inc.php:369 pmd_general.php:83 msgid "Help" msgstr "" -#: libraries/messages.inc.php:374 +#: libraries/messages.inc.php:370 msgid "Use hexadecimal for BLOB" msgstr "" -#: libraries/messages.inc.php:376 pmd_general.php:120 +#: libraries/messages.inc.php:372 pmd_general.php:120 #, fuzzy msgid "Hide/Show all" msgstr "نمايش همه" -#: libraries/messages.inc.php:377 pmd_general.php:124 +#: libraries/messages.inc.php:373 pmd_general.php:124 msgid "Hide/Show Tables with no relation" msgstr "" -#: libraries/messages.inc.php:378 libraries/navigation_header.inc.php:54 +#: libraries/messages.inc.php:374 libraries/navigation_header.inc.php:54 #: libraries/navigation_header.inc.php:57 #: libraries/navigation_header.inc.php:58 msgid "Home" msgstr "خانه" -#: libraries/messages.inc.php:379 main.php:233 +#: libraries/messages.inc.php:375 main.php:233 msgid "Official Homepage" msgstr "صفحه خانه رسمي phpMyAdmin" -#: libraries/messages.inc.php:382 libraries/replication_gui.lib.php:327 +#: libraries/messages.inc.php:378 libraries/replication_gui.lib.php:327 #: server_privileges.php:753 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/messages.inc.php:383 +#: libraries/messages.inc.php:379 msgid "Microsoft Word 2000" msgstr "" -#: libraries/messages.inc.php:384 libraries/mysql_charsets.lib.php:253 +#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:253 #, fuzzy msgid "Hungarian" msgstr "بلغاری" -#: libraries/messages.inc.php:386 libraries/mysql_charsets.lib.php:256 +#: libraries/messages.inc.php:382 libraries/mysql_charsets.lib.php:256 msgid "Icelandic" msgstr "" -#: libraries/messages.inc.php:387 server_processlist.php:53 +#: libraries/messages.inc.php:383 server_processlist.php:53 msgid "ID" msgstr "شناسه" -#: libraries/messages.inc.php:388 libraries/mult_submits.inc.php:108 +#: libraries/messages.inc.php:384 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:479 msgid "Fulltext" msgstr "كاملا متن" -#: libraries/messages.inc.php:389 +#: libraries/messages.inc.php:385 msgid "Ignore duplicate rows" msgstr "" -#: libraries/messages.inc.php:390 tbl_change.php:302 tbl_indexes.php:200 +#: libraries/messages.inc.php:386 tbl_change.php:302 tbl_indexes.php:200 #: tbl_indexes.php:225 msgid "Ignore" msgstr "Ignore" -#: libraries/messages.inc.php:391 +#: libraries/messages.inc.php:387 msgid "Use ignore inserts" msgstr "" -#: libraries/messages.inc.php:392 +#: libraries/messages.inc.php:388 msgid "Column names in first row" msgstr "" -#: libraries/messages.inc.php:393 +#: libraries/messages.inc.php:389 msgid "Do not import empty rows" msgstr "" -#: libraries/messages.inc.php:394 pmd_general.php:104 +#: libraries/messages.inc.php:390 pmd_general.php:104 msgid "Import/Export coordinates for PDF schema" msgstr "" -#: libraries/messages.inc.php:395 querywindow.php:104 +#: libraries/messages.inc.php:391 querywindow.php:104 msgid "Import files" msgstr "" -#: libraries/messages.inc.php:403 +#: libraries/messages.inc.php:399 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/messages.inc.php:404 libraries/messages.inc.php:584 +#: libraries/messages.inc.php:400 libraries/messages.inc.php:580 msgid "Open Document Spreadsheet" msgstr "" -#: libraries/messages.inc.php:405 +#: libraries/messages.inc.php:401 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/messages.inc.php:409 +#: libraries/messages.inc.php:405 msgid "Excel 97-2003 XLS Workbook" msgstr "" -#: libraries/messages.inc.php:410 +#: libraries/messages.inc.php:406 msgid "Excel 2007 XLSX Workbook" msgstr "" -#: libraries/messages.inc.php:414 libraries/mult_submits.inc.php:98 +#: libraries/messages.inc.php:410 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:476 tbl_structure.php:674 msgid "Index" msgstr "فهرست" -#: libraries/messages.inc.php:415 tbl_indexes.php:168 +#: libraries/messages.inc.php:411 tbl_indexes.php:168 msgid "Index name:" msgstr "اسم فهرست :" -#: libraries/messages.inc.php:416 tbl_indexes.php:174 +#: libraries/messages.inc.php:412 tbl_indexes.php:174 msgid "Index type:" msgstr "نوع فهرست :" -#: libraries/messages.inc.php:417 sql.php:639 +#: libraries/messages.inc.php:413 sql.php:639 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: libraries/messages.inc.php:427 main.php:266 +#: libraries/messages.inc.php:423 main.php:266 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -3962,195 +3962,195 @@ msgstr "" "حساب پيش‌فرض MySQL مي‌باشد. اجراي MySQL با اين پيش‌فرض باعث ورود غيرمجاز مي‌شود " "، و شما بايد اين حفره امنيتي را ذرست كنيد." -#: libraries/messages.inc.php:428 tbl_change.php:1130 +#: libraries/messages.inc.php:424 tbl_change.php:1130 msgid "Insert as new row" msgstr "درج به عنوان يك سطر جديد" -#: libraries/messages.inc.php:429 sql.php:496 tbl_replace.php:386 +#: libraries/messages.inc.php:425 sql.php:496 tbl_replace.php:386 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: libraries/messages.inc.php:430 tbl_change.php:1131 +#: libraries/messages.inc.php:426 tbl_change.php:1131 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/messages.inc.php:432 main.php:139 +#: libraries/messages.inc.php:428 main.php:139 msgid "Interface" msgstr "" -#: libraries/messages.inc.php:433 tbl_relation.php:407 +#: libraries/messages.inc.php:429 tbl_relation.php:407 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: libraries/messages.inc.php:435 pdf_pages.php:303 +#: libraries/messages.inc.php:431 pdf_pages.php:303 msgid "Internal relations" msgstr "" -#: libraries/messages.inc.php:438 tbl_indexes.php:256 tbl_structure.php:590 +#: libraries/messages.inc.php:434 tbl_indexes.php:256 tbl_structure.php:590 #: tbl_structure.php:601 msgid "Column count has to be larger than zero." msgstr "" -#: libraries/messages.inc.php:444 libraries/tbl_properties.inc.php:784 +#: libraries/messages.inc.php:440 libraries/tbl_properties.inc.php:784 #: tbl_structure.php:537 msgid "You have to add at least one field." msgstr "" -#: libraries/messages.inc.php:449 +#: libraries/messages.inc.php:445 #, php-format msgid "Invalid server index: \"%s\"" msgstr "" -#: libraries/messages.inc.php:452 libraries/mysql_charsets.lib.php:259 +#: libraries/messages.inc.php:448 libraries/mysql_charsets.lib.php:259 #: libraries/mysql_charsets.lib.php:349 msgid "Japanese" msgstr "ژاپنی" -#: libraries/messages.inc.php:453 main.php:331 +#: libraries/messages.inc.php:449 main.php:331 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: libraries/messages.inc.php:454 server_status.php:257 +#: libraries/messages.inc.php:450 server_status.php:257 msgid "Joins" msgstr "" -#: libraries/messages.inc.php:457 server_privileges.php:763 +#: libraries/messages.inc.php:453 server_privileges.php:763 msgid "Do not change the password" msgstr "عدم تغيير اسم رمز" -#: libraries/messages.inc.php:458 server_status.php:256 +#: libraries/messages.inc.php:454 server_status.php:256 msgid "Key cache" msgstr "" -#: libraries/messages.inc.php:462 libraries/mysql_charsets.lib.php:268 +#: libraries/messages.inc.php:458 libraries/mysql_charsets.lib.php:268 #: libraries/mysql_charsets.lib.php:371 msgid "Korean" msgstr "کره‌ای" -#: libraries/messages.inc.php:466 libraries/select_lang.lib.php:480 +#: libraries/messages.inc.php:462 libraries/select_lang.lib.php:480 #: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492 #, php-format msgid "Unknown language: %1$s." msgstr "زبانِ ناشناس : %1$s." -#: libraries/messages.inc.php:468 +#: libraries/messages.inc.php:464 msgid "Table caption" msgstr "" -#: libraries/messages.inc.php:469 +#: libraries/messages.inc.php:465 msgid "Content of table __TABLE__" msgstr "" -#: libraries/messages.inc.php:470 +#: libraries/messages.inc.php:466 msgid "Continued table caption" msgstr "" -#: libraries/messages.inc.php:471 +#: libraries/messages.inc.php:467 msgid "(continued)" msgstr "" -#: libraries/messages.inc.php:472 +#: libraries/messages.inc.php:468 msgid "Include table caption" msgstr "" -#: libraries/messages.inc.php:473 +#: libraries/messages.inc.php:469 msgid "Label key" msgstr "" -#: libraries/messages.inc.php:474 +#: libraries/messages.inc.php:470 msgid "LaTeX" msgstr "" -#: libraries/messages.inc.php:475 +#: libraries/messages.inc.php:471 msgid "Structure of table __TABLE__" msgstr "" -#: libraries/messages.inc.php:476 libraries/mysql_charsets.lib.php:262 +#: libraries/messages.inc.php:472 libraries/mysql_charsets.lib.php:262 msgid "Latvian" msgstr "" -#: libraries/messages.inc.php:477 +#: libraries/messages.inc.php:473 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/messages.inc.php:478 +#: libraries/messages.inc.php:474 msgid "Use LOCAL keyword" msgstr "" -#: libraries/messages.inc.php:479 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:475 libraries/tbl_properties.inc.php:105 msgid "Length/Values" msgstr "طول/مقادير*" -#: libraries/messages.inc.php:480 tbl_select.php:295 +#: libraries/messages.inc.php:476 tbl_select.php:295 msgid "Number of rows per page" msgstr "تعداد سطرها در هر صفحه" -#: libraries/messages.inc.php:484 libraries/mysql_charsets.lib.php:265 +#: libraries/messages.inc.php:480 libraries/mysql_charsets.lib.php:265 msgid "Lithuanian" msgstr "" -#: libraries/messages.inc.php:485 libraries/replication_gui.lib.php:302 +#: libraries/messages.inc.php:481 libraries/replication_gui.lib.php:302 #: server_privileges.php:729 msgid "Local" msgstr "محلی" -#: libraries/messages.inc.php:487 server_privileges.php:669 +#: libraries/messages.inc.php:483 server_privileges.php:669 msgid "Login Information" msgstr "اطلاعات ورود" -#: libraries/messages.inc.php:490 libraries/navigation_header.inc.php:67 +#: libraries/messages.inc.php:486 libraries/navigation_header.inc.php:67 #: libraries/navigation_header.inc.php:70 #: libraries/navigation_header.inc.php:71 main.php:99 msgid "Log out" msgstr "خروج" -#: libraries/messages.inc.php:497 server_status.php:440 +#: libraries/messages.inc.php:493 server_status.php:440 msgid "max. concurrent connections" msgstr "" -#: libraries/messages.inc.php:498 +#: libraries/messages.inc.php:494 msgid "Maximal length of created query" msgstr "" -#: libraries/messages.inc.php:500 main.php:282 +#: libraries/messages.inc.php:496 main.php:282 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " "split strings correctly and it may result in unexpected results." msgstr "" -#: libraries/messages.inc.php:501 main.php:274 +#: libraries/messages.inc.php:497 main.php:274 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " "corrupted!" msgstr "" -#: libraries/messages.inc.php:502 +#: libraries/messages.inc.php:498 msgid "MediaWiki Table" msgstr "" -#: libraries/messages.inc.php:503 transformation_overview.php:25 +#: libraries/messages.inc.php:499 transformation_overview.php:25 msgid "Available MIME types" msgstr "" -#: libraries/messages.inc.php:504 transformation_overview.php:43 +#: libraries/messages.inc.php:500 transformation_overview.php:43 msgid "Available transformations" msgstr "" -#: libraries/messages.inc.php:505 +#: libraries/messages.inc.php:501 #, fuzzy msgctxt "$strMIME_description" msgid "Description" msgstr "توضیحات" -#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:580 +#: libraries/messages.inc.php:503 libraries/tbl_properties.inc.php:580 #: transformation_overview.php:60 #, php-format msgid "" @@ -4158,14 +4158,14 @@ msgid "" "author what %s does." msgstr "" -#: libraries/messages.inc.php:509 libraries/tbl_properties.inc.php:137 +#: libraries/messages.inc.php:505 libraries/tbl_properties.inc.php:137 #, php-format msgid "" "For a list of available transformation options and their MIME type " "transformations, click on %stransformation descriptions%s" msgstr "" -#: libraries/messages.inc.php:510 libraries/tbl_properties.inc.php:146 +#: libraries/messages.inc.php:506 libraries/tbl_properties.inc.php:146 #, fuzzy msgid "" "Please enter the values for transformation options using this format: 'a', " @@ -4179,462 +4179,462 @@ msgstr "" "، قبل از آنها علامت (\" \\ \") را بگذاريد
(براي مثال'\\\\xyz' يا 'a" "\\'b')" -#: libraries/messages.inc.php:511 libraries/tbl_properties.inc.php:145 +#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:145 msgid "Transformation options" msgstr "" -#: libraries/messages.inc.php:513 transformation_overview.php:38 +#: libraries/messages.inc.php:509 transformation_overview.php:38 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "" -#: libraries/messages.inc.php:515 tbl_indexes.php:162 +#: libraries/messages.inc.php:511 tbl_indexes.php:162 msgid "Modify an index" msgstr "اصلاح يك فهرست" -#: libraries/messages.inc.php:517 pmd_general.php:108 +#: libraries/messages.inc.php:513 pmd_general.php:108 msgid "Move Menu" msgstr "" -#: libraries/messages.inc.php:518 tbl_operations.php:276 +#: libraries/messages.inc.php:514 tbl_operations.php:276 msgid "Move table to (database.table):" msgstr "انتقال جدول به (پايگاه داده.جدول):" -#: libraries/messages.inc.php:519 tbl_move_copy.php:56 +#: libraries/messages.inc.php:515 tbl_move_copy.php:56 #, php-format msgid "Table %s has been moved to %s." msgstr "جدول %s به %s انتقال داده‌شد." -#: libraries/messages.inc.php:520 tbl_move_copy.php:46 +#: libraries/messages.inc.php:516 tbl_move_copy.php:46 msgid "Can't move table to same one!" msgstr "" -#: libraries/messages.inc.php:521 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:517 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 #: libraries/mysql_charsets.lib.php:332 libraries/mysql_charsets.lib.php:354 #: libraries/mysql_charsets.lib.php:365 msgid "multilingual" msgstr "" -#: libraries/messages.inc.php:534 main.php:193 +#: libraries/messages.inc.php:530 main.php:193 msgid "MySQL charset" msgstr "مجموع كاراكترهاي MySQL" -#: libraries/messages.inc.php:535 main.php:211 +#: libraries/messages.inc.php:531 main.php:211 msgid "MySQL client version" msgstr "" -#: libraries/messages.inc.php:536 main.php:125 +#: libraries/messages.inc.php:532 main.php:125 msgid "MySQL connection collation" msgstr "" -#: libraries/messages.inc.php:537 main.php:346 +#: libraries/messages.inc.php:533 main.php:346 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: libraries/messages.inc.php:539 server_status.php:294 +#: libraries/messages.inc.php:535 server_status.php:294 msgid "Show processes" msgstr "نمايش فرايندها" -#: libraries/messages.inc.php:545 navigation.php:210 server_databases.php:371 +#: libraries/messages.inc.php:541 navigation.php:210 server_databases.php:371 #: server_synchronize.php:1191 msgid "No databases" msgstr "No databases" -#: libraries/messages.inc.php:546 server_databases.php:52 +#: libraries/messages.inc.php:542 server_databases.php:52 msgid "No databases selected." msgstr "" -#: libraries/messages.inc.php:548 libraries/relation.lib.php:1173 +#: libraries/messages.inc.php:544 libraries/relation.lib.php:1173 msgid "no description" msgstr "no Description" -#: libraries/messages.inc.php:552 libraries/zip_extension.lib.php:26 +#: libraries/messages.inc.php:548 libraries/zip_extension.lib.php:26 msgid "No files found inside ZIP archive!" msgstr "" -#: libraries/messages.inc.php:555 tbl_indexes.php:91 +#: libraries/messages.inc.php:551 tbl_indexes.php:91 #, fuzzy msgid "No index parts defined!" msgstr "هيچ فهرستي تعريف‌نشده‌است!" -#: libraries/messages.inc.php:556 libraries/mult_submits.inc.php:435 +#: libraries/messages.inc.php:552 libraries/mult_submits.inc.php:435 #: tbl_replace.php:331 msgid "No change" msgstr "" -#: libraries/messages.inc.php:557 +#: libraries/messages.inc.php:553 #, fuzzy msgctxt "$strNoneDefault" msgid "None" msgstr "خير" -#: libraries/messages.inc.php:560 libraries/plugin_interface.lib.php:312 +#: libraries/messages.inc.php:556 libraries/plugin_interface.lib.php:312 msgid "This format has no options" msgstr "" -#: libraries/messages.inc.php:565 user_password.php:54 +#: libraries/messages.inc.php:561 user_password.php:54 msgid "You don't have sufficient privileges to be here right now!" msgstr "" -#: libraries/messages.inc.php:566 tbl_row_action.php:29 +#: libraries/messages.inc.php:562 tbl_row_action.php:29 msgid "No rows selected" msgstr "" -#: libraries/messages.inc.php:569 themes.php:32 +#: libraries/messages.inc.php:565 themes.php:32 #, php-format msgid "" "No themes support; please check your configuration and/or your themes in " "directory %s." msgstr "" -#: libraries/messages.inc.php:571 libraries/relation.lib.php:95 +#: libraries/messages.inc.php:567 libraries/relation.lib.php:95 msgid "not OK" msgstr "not OK" -#: libraries/messages.inc.php:572 server_synchronize.php:400 +#: libraries/messages.inc.php:568 server_synchronize.php:400 #: server_synchronize.php:839 msgid "not present" msgstr "" -#: libraries/messages.inc.php:573 pdf_pages.php:36 pdf_pages.php:42 +#: libraries/messages.inc.php:569 pdf_pages.php:36 pdf_pages.php:42 #: pdf_pages.php:48 pdf_pages.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "جدول %s وجود ندارد و يا در %s تنظيم نشده‌است" -#: libraries/messages.inc.php:574 server_privileges.php:804 +#: libraries/messages.inc.php:570 server_privileges.php:804 #: server_privileges.php:2166 msgid "No user(s) found." msgstr "هيچ كاربري وچود ندارد." -#: libraries/messages.inc.php:578 pmd_general.php:164 +#: libraries/messages.inc.php:574 pmd_general.php:164 msgid "Number of tables" msgstr "" -#: libraries/messages.inc.php:581 server_databases.php:117 +#: libraries/messages.inc.php:577 server_databases.php:117 #: server_status.php:260 setup/lib/messages.inc.php:117 msgid "Tables" msgstr "جدولها" -#: libraries/messages.inc.php:583 libraries/relation.lib.php:99 +#: libraries/messages.inc.php:579 libraries/relation.lib.php:99 #: pmd_general.php:340 msgid "OK" msgstr "تاييد" -#: libraries/messages.inc.php:585 +#: libraries/messages.inc.php:581 msgid "Open Document Text" msgstr "" -#: libraries/messages.inc.php:588 tbl_select.php:138 +#: libraries/messages.inc.php:584 tbl_select.php:138 #, fuzzy msgid "Operator" msgstr "عمليات" -#: libraries/messages.inc.php:589 tbl_operations.php:662 +#: libraries/messages.inc.php:585 tbl_operations.php:662 msgid "Optimize" msgstr "" -#: libraries/messages.inc.php:602 libraries/tbl_properties.inc.php:755 +#: libraries/messages.inc.php:598 libraries/tbl_properties.inc.php:755 msgid "PARTITION definition" msgstr "" -#: libraries/messages.inc.php:603 tbl_structure.php:757 +#: libraries/messages.inc.php:599 tbl_structure.php:757 msgid "partitioned" msgstr "" -#: libraries/messages.inc.php:604 tbl_operations.php:649 +#: libraries/messages.inc.php:600 tbl_operations.php:649 #, fuzzy msgid "Partition maintenance" msgstr "نگهداشت جدول" -#: libraries/messages.inc.php:605 tbl_operations.php:657 +#: libraries/messages.inc.php:601 tbl_operations.php:657 #, php-format msgid "Partition %s" msgstr "" -#: libraries/messages.inc.php:606 server_privileges.php:1212 +#: libraries/messages.inc.php:602 server_privileges.php:1212 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/messages.inc.php:635 +#: libraries/messages.inc.php:631 #, php-format msgid "Schema of the \"%s\" database - Page %s" msgstr "" -#: libraries/messages.inc.php:636 +#: libraries/messages.inc.php:632 #, php-format msgid "The \"%s\" table doesn't exist!" msgstr "جدول \"%s\" وجود ندارد!" -#: libraries/messages.inc.php:637 pdf_schema.php:1013 +#: libraries/messages.inc.php:633 pdf_schema.php:1013 msgid "No tables" msgstr "No tables" -#: libraries/messages.inc.php:638 pmd_pdf.php:63 +#: libraries/messages.inc.php:634 pmd_pdf.php:63 #, fuzzy msgid "Page has been created" msgstr "جدول %s حذف گرديد" -#: libraries/messages.inc.php:639 pmd_pdf.php:65 +#: libraries/messages.inc.php:635 pmd_pdf.php:65 msgid "Page creation failed" msgstr "" -#: libraries/messages.inc.php:640 +#: libraries/messages.inc.php:636 msgid "PDF" msgstr "" -#: libraries/messages.inc.php:641 +#: libraries/messages.inc.php:637 msgid "(Generates a report containing the data of a single table)" msgstr "" -#: libraries/messages.inc.php:642 +#: libraries/messages.inc.php:638 msgid "Report title" msgstr "" -#: libraries/messages.inc.php:643 server_status.php:389 server_status.php:434 +#: libraries/messages.inc.php:639 server_status.php:389 server_status.php:434 #: server_status.php:497 server_status.php:555 msgid "per hour" msgstr "در ساعت" -#: libraries/messages.inc.php:644 server_status.php:498 +#: libraries/messages.inc.php:640 server_status.php:498 msgid "per minute" msgstr "در دقیقه" -#: libraries/messages.inc.php:645 server_status.php:499 +#: libraries/messages.inc.php:641 server_status.php:499 msgid "per second" msgstr "در ثانیه" -#: libraries/messages.inc.php:646 libraries/mysql_charsets.lib.php:271 +#: libraries/messages.inc.php:642 libraries/mysql_charsets.lib.php:271 msgid "Persian" msgstr "فارسي" -#: libraries/messages.inc.php:647 libraries/mysql_charsets.lib.php:250 +#: libraries/messages.inc.php:643 libraries/mysql_charsets.lib.php:250 msgid "phone book" msgstr "" -#: libraries/messages.inc.php:648 +#: libraries/messages.inc.php:644 msgid "PHP array" msgstr "" -#: libraries/messages.inc.php:650 main.php:213 +#: libraries/messages.inc.php:646 main.php:213 #, fuzzy msgid "PHP extension" msgstr "نسخه PHP" -#: libraries/messages.inc.php:654 libraries/relation.lib.php:163 +#: libraries/messages.inc.php:650 libraries/relation.lib.php:163 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/messages.inc.php:655 libraries/relation.lib.php:159 +#: libraries/messages.inc.php:651 libraries/relation.lib.php:159 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/messages.inc.php:656 libraries/relation.lib.php:161 +#: libraries/messages.inc.php:652 libraries/relation.lib.php:161 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" -#: libraries/messages.inc.php:657 libraries/relation.lib.php:162 +#: libraries/messages.inc.php:653 libraries/relation.lib.php:162 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/messages.inc.php:658 libraries/relation.lib.php:164 +#: libraries/messages.inc.php:654 libraries/relation.lib.php:164 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/messages.inc.php:661 libraries/mysql_charsets.lib.php:274 +#: libraries/messages.inc.php:657 libraries/mysql_charsets.lib.php:274 msgid "Polish" msgstr "لهستانی" -#: libraries/messages.inc.php:662 libraries/replication_gui.lib.php:67 +#: libraries/messages.inc.php:658 libraries/replication_gui.lib.php:67 #: server_synchronize.php:1163 #, fuzzy msgid "Port" msgstr "ترتيب" -#: libraries/messages.inc.php:667 tbl_indexes.php:67 +#: libraries/messages.inc.php:663 tbl_indexes.php:67 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "نام كليد اصلي بايد PRIMARY باشد !" -#: libraries/messages.inc.php:668 tbl_indexes.php:184 +#: libraries/messages.inc.php:664 tbl_indexes.php:184 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "(فقط و فقط بايد \"PRIMARY\" نام يك كليد اصلي باشد!)" -#: libraries/messages.inc.php:669 libraries/mult_submits.inc.php:76 +#: libraries/messages.inc.php:665 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:474 msgid "Primary" msgstr "اصلي" -#: libraries/messages.inc.php:673 server_privileges.php:227 +#: libraries/messages.inc.php:669 server_privileges.php:227 msgid "Includes all privileges except GRANT." msgstr "" -#: libraries/messages.inc.php:674 server_privileges.php:153 +#: libraries/messages.inc.php:670 server_privileges.php:153 #: server_privileges.php:476 msgid "Allows altering the structure of existing tables." msgstr "" -#: libraries/messages.inc.php:675 server_privileges.php:169 +#: libraries/messages.inc.php:671 server_privileges.php:169 #: server_privileges.php:482 msgid "Allows altering and dropping stored routines." msgstr "" -#: libraries/messages.inc.php:676 server_privileges.php:145 +#: libraries/messages.inc.php:672 server_privileges.php:145 #: server_privileges.php:475 msgid "Allows creating new databases and tables." msgstr "" -#: libraries/messages.inc.php:677 server_privileges.php:168 +#: libraries/messages.inc.php:673 server_privileges.php:168 #: server_privileges.php:481 msgid "Allows creating stored routines." msgstr "" -#: libraries/messages.inc.php:678 server_privileges.php:475 +#: libraries/messages.inc.php:674 server_privileges.php:475 msgid "Allows creating new tables." msgstr "" -#: libraries/messages.inc.php:679 server_privileges.php:156 +#: libraries/messages.inc.php:675 server_privileges.php:156 #: server_privileges.php:479 msgid "Allows creating temporary tables." msgstr "" -#: libraries/messages.inc.php:680 server_privileges.php:170 +#: libraries/messages.inc.php:676 server_privileges.php:170 #: server_privileges.php:515 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: libraries/messages.inc.php:681 server_privileges.php:160 +#: libraries/messages.inc.php:677 server_privileges.php:160 #: server_privileges.php:164 server_privileges.php:487 #: server_privileges.php:491 msgid "Allows creating new views." msgstr "" -#: libraries/messages.inc.php:682 server_privileges.php:144 +#: libraries/messages.inc.php:678 server_privileges.php:144 #: server_privileges.php:467 msgid "Allows deleting data." msgstr "" -#: libraries/messages.inc.php:683 server_privileges.php:146 +#: libraries/messages.inc.php:679 server_privileges.php:146 #: server_privileges.php:478 msgid "Allows dropping databases and tables." msgstr "" -#: libraries/messages.inc.php:684 server_privileges.php:478 +#: libraries/messages.inc.php:680 server_privileges.php:478 msgid "Allows dropping tables." msgstr "" -#: libraries/messages.inc.php:685 server_privileges.php:161 +#: libraries/messages.inc.php:681 server_privileges.php:161 #: server_privileges.php:495 msgid "Allows to set up events for the event scheduler" msgstr "" -#: libraries/messages.inc.php:686 server_privileges.php:171 +#: libraries/messages.inc.php:682 server_privileges.php:171 #: server_privileges.php:483 msgid "Allows executing stored routines." msgstr "" -#: libraries/messages.inc.php:687 server_privileges.php:150 +#: libraries/messages.inc.php:683 server_privileges.php:150 #: server_privileges.php:470 msgid "Allows importing data from and exporting data into files." msgstr "" -#: libraries/messages.inc.php:688 server_privileges.php:501 +#: libraries/messages.inc.php:684 server_privileges.php:501 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: libraries/messages.inc.php:689 server_privileges.php:152 +#: libraries/messages.inc.php:685 server_privileges.php:152 #: server_privileges.php:477 msgid "Allows creating and dropping indexes." msgstr "" -#: libraries/messages.inc.php:690 server_privileges.php:142 +#: libraries/messages.inc.php:686 server_privileges.php:142 #: server_privileges.php:403 server_privileges.php:465 msgid "Allows inserting and replacing data." msgstr "" -#: libraries/messages.inc.php:691 server_privileges.php:157 +#: libraries/messages.inc.php:687 server_privileges.php:157 #: server_privileges.php:510 msgid "Allows locking tables for the current thread." msgstr "" -#: libraries/messages.inc.php:692 server_privileges.php:607 +#: libraries/messages.inc.php:688 server_privileges.php:607 #: server_privileges.php:609 msgid "Limits the number of new connections the user may open per hour." msgstr "" -#: libraries/messages.inc.php:693 server_privileges.php:595 +#: libraries/messages.inc.php:689 server_privileges.php:595 #: server_privileges.php:597 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" -#: libraries/messages.inc.php:694 server_privileges.php:601 +#: libraries/messages.inc.php:690 server_privileges.php:601 #: server_privileges.php:603 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" -#: libraries/messages.inc.php:695 server_privileges.php:613 +#: libraries/messages.inc.php:691 server_privileges.php:613 #: server_privileges.php:615 msgid "Limits the number of simultaneous connections the user may have." msgstr "" -#: libraries/messages.inc.php:696 server_privileges.php:149 +#: libraries/messages.inc.php:692 server_privileges.php:149 #: server_privileges.php:505 msgid "Allows viewing processes of all users" msgstr "" -#: libraries/messages.inc.php:697 server_privileges.php:151 +#: libraries/messages.inc.php:693 server_privileges.php:151 #: server_privileges.php:409 server_privileges.php:511 msgid "Has no effect in this MySQL version." msgstr "" -#: libraries/messages.inc.php:698 server_privileges.php:147 +#: libraries/messages.inc.php:694 server_privileges.php:147 #: server_privileges.php:506 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: libraries/messages.inc.php:699 server_privileges.php:159 +#: libraries/messages.inc.php:695 server_privileges.php:159 #: server_privileges.php:513 msgid "Allows the user to ask where the slaves / masters are." msgstr "" -#: libraries/messages.inc.php:700 server_privileges.php:158 +#: libraries/messages.inc.php:696 server_privileges.php:158 #: server_privileges.php:514 msgid "Needed for the replication slaves." msgstr "" -#: libraries/messages.inc.php:701 server_privileges.php:141 +#: libraries/messages.inc.php:697 server_privileges.php:141 #: server_privileges.php:400 server_privileges.php:464 msgid "Allows reading data." msgstr "" -#: libraries/messages.inc.php:702 server_privileges.php:154 +#: libraries/messages.inc.php:698 server_privileges.php:154 #: server_privileges.php:508 msgid "Gives access to the complete list of databases." msgstr "" -#: libraries/messages.inc.php:703 server_privileges.php:165 +#: libraries/messages.inc.php:699 server_privileges.php:165 #: server_privileges.php:167 server_privileges.php:480 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: libraries/messages.inc.php:704 server_privileges.php:148 +#: libraries/messages.inc.php:700 server_privileges.php:148 #: server_privileges.php:507 msgid "Allows shutting down the server." msgstr "" -#: libraries/messages.inc.php:705 server_privileges.php:155 +#: libraries/messages.inc.php:701 server_privileges.php:155 #: server_privileges.php:504 msgid "" "Allows connecting, even if maximum number of connections is reached; " @@ -4642,194 +4642,194 @@ msgid "" "killing threads of other users." msgstr "" -#: libraries/messages.inc.php:706 server_privileges.php:162 +#: libraries/messages.inc.php:702 server_privileges.php:162 #: server_privileges.php:496 msgid "Allows creating and dropping triggers" msgstr "" -#: libraries/messages.inc.php:707 server_privileges.php:143 +#: libraries/messages.inc.php:703 server_privileges.php:143 #: server_privileges.php:406 server_privileges.php:466 msgid "Allows changing data." msgstr "" -#: libraries/messages.inc.php:708 server_privileges.php:221 +#: libraries/messages.inc.php:704 server_privileges.php:221 #, fuzzy msgid "No privileges." msgstr "امتيازات" -#: libraries/messages.inc.php:710 server_privileges.php:1296 +#: libraries/messages.inc.php:706 server_privileges.php:1296 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/messages.inc.php:712 libraries/server_links.inc.php:80 +#: libraries/messages.inc.php:708 libraries/server_links.inc.php:80 msgid "Processes" msgstr "" -#: libraries/messages.inc.php:714 main.php:187 +#: libraries/messages.inc.php:710 main.php:187 msgid "Protocol version" msgstr "" -#: libraries/messages.inc.php:715 +#: libraries/messages.inc.php:711 msgid "Put fields names in the first row" msgstr "قراردادن نام ستونها در اولين سطر" -#: libraries/messages.inc.php:720 server_synchronize.php:1003 +#: libraries/messages.inc.php:716 server_synchronize.php:1003 msgid "The following queries have been executed:" msgstr "" -#: libraries/messages.inc.php:721 server_status.php:251 +#: libraries/messages.inc.php:717 server_status.php:251 msgid "Query cache" msgstr "" -#: libraries/messages.inc.php:722 libraries/navigation_header.inc.php:80 +#: libraries/messages.inc.php:718 libraries/navigation_header.inc.php:80 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 setup/lib/messages.inc.php:122 msgid "Query window" msgstr "" -#: libraries/messages.inc.php:725 querywindow.php:109 querywindow.php:217 +#: libraries/messages.inc.php:721 querywindow.php:109 querywindow.php:217 msgid "SQL history" msgstr "" -#: libraries/messages.inc.php:726 server_status.php:490 +#: libraries/messages.inc.php:722 server_status.php:490 #, php-format msgid "" "Query statistics: Since its startup, %s queries have been sent to the " "server." msgstr "" -#: libraries/messages.inc.php:728 server_status.php:554 +#: libraries/messages.inc.php:724 server_status.php:554 msgid "Query type" msgstr "" -#: libraries/messages.inc.php:729 libraries/sql_query_form.lib.php:381 +#: libraries/messages.inc.php:725 libraries/sql_query_form.lib.php:381 msgid "Do not overwrite this query from outside the window" msgstr "" -#: libraries/messages.inc.php:732 tbl_operations.php:663 +#: libraries/messages.inc.php:728 tbl_operations.php:663 msgid "Rebuild" msgstr "" -#: libraries/messages.inc.php:733 server_status.php:394 +#: libraries/messages.inc.php:729 server_status.php:394 msgid "Received" msgstr "" -#: libraries/messages.inc.php:734 pmd_pdf.php:89 +#: libraries/messages.inc.php:730 pmd_pdf.php:89 msgid "recommended" msgstr "" -#: libraries/messages.inc.php:736 tbl_operations.php:702 +#: libraries/messages.inc.php:732 tbl_operations.php:702 msgid "Check referential integrity:" msgstr "" -#: libraries/messages.inc.php:740 pdf_schema.php:1032 pdf_schema.php:1141 +#: libraries/messages.inc.php:736 pdf_schema.php:1032 pdf_schema.php:1141 msgid "Relational schema" msgstr "" -#: libraries/messages.inc.php:744 tbl_relation.php:399 +#: libraries/messages.inc.php:740 tbl_relation.php:399 #, fuzzy msgid "Relations" msgstr "عمليات" -#: libraries/messages.inc.php:745 tbl_structure.php:507 tbl_structure.php:509 +#: libraries/messages.inc.php:741 tbl_structure.php:507 tbl_structure.php:509 msgid "Relation view" msgstr "" -#: libraries/messages.inc.php:746 server_privileges.php:1246 +#: libraries/messages.inc.php:742 server_privileges.php:1246 msgid "Reloading the privileges" msgstr "" -#: libraries/messages.inc.php:747 navigation.php:66 navigation.php:67 +#: libraries/messages.inc.php:743 navigation.php:66 navigation.php:67 #: navigation.php:70 msgid "Reload navigation frame" msgstr "" -#: libraries/messages.inc.php:748 pmd_general.php:80 +#: libraries/messages.inc.php:744 pmd_general.php:80 msgid "Reload" msgstr "" -#: libraries/messages.inc.php:749 libraries/server_synchronize.lib.php:1345 +#: libraries/messages.inc.php:745 libraries/server_synchronize.lib.php:1345 #: libraries/server_synchronize.lib.php:1371 msgid "Remote server" msgstr "" -#: libraries/messages.inc.php:750 +#: libraries/messages.inc.php:746 msgid "Remove CRLF characters within fields" msgstr "" -#: libraries/messages.inc.php:751 tbl_operations.php:676 +#: libraries/messages.inc.php:747 tbl_operations.php:676 msgid "Remove partitioning" msgstr "" -#: libraries/messages.inc.php:752 server_privileges.php:1575 +#: libraries/messages.inc.php:748 server_privileges.php:1575 msgid "Remove selected users" msgstr "" -#: libraries/messages.inc.php:755 tbl_operations.php:338 +#: libraries/messages.inc.php:751 tbl_operations.php:338 msgid "Rename table to" msgstr "بازناميدن جدول به" -#: libraries/messages.inc.php:756 view_operations.php:93 +#: libraries/messages.inc.php:752 view_operations.php:93 #, fuzzy msgid "Rename view to" msgstr "بازناميدن جدول به" -#: libraries/messages.inc.php:757 tbl_operations.php:664 +#: libraries/messages.inc.php:753 tbl_operations.php:664 #, fuzzy msgid "Repair" msgstr "مرمت جدول" -#: libraries/messages.inc.php:759 +#: libraries/messages.inc.php:755 msgid "Replace NULL by" msgstr "" -#: libraries/messages.inc.php:760 +#: libraries/messages.inc.php:756 msgid "Replace table data with file" msgstr "جايگزيني داده‌هاي جدول با پرونده" -#: libraries/messages.inc.php:761 server_replication.php:228 +#: libraries/messages.inc.php:757 server_replication.php:228 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: libraries/messages.inc.php:762 libraries/replication_gui.lib.php:236 +#: libraries/messages.inc.php:758 libraries/replication_gui.lib.php:236 #: server_replication.php:194 msgid "Add slave replication user" msgstr "" -#: libraries/messages.inc.php:763 server_replication.php:74 +#: libraries/messages.inc.php:759 server_replication.php:74 #, php-format msgid "Master server changed succesfully to %s" msgstr "" -#: libraries/messages.inc.php:764 server_replication.php:182 +#: libraries/messages.inc.php:760 server_replication.php:182 msgid "This server is configured as master in a replication process." msgstr "" -#: libraries/messages.inc.php:765 server_replication.php:322 +#: libraries/messages.inc.php:761 server_replication.php:322 msgid "Control slave:" msgstr "" -#: libraries/messages.inc.php:766 server_replication.php:65 +#: libraries/messages.inc.php:762 server_replication.php:65 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: libraries/messages.inc.php:767 server_replication.php:58 +#: libraries/messages.inc.php:763 server_replication.php:58 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: libraries/messages.inc.php:768 server_replication.php:221 +#: libraries/messages.inc.php:764 server_replication.php:221 msgid "Replicate all databases; Ignore:" msgstr "" -#: libraries/messages.inc.php:769 server_replication.php:222 +#: libraries/messages.inc.php:765 server_replication.php:222 msgid "Ignore all databases; Replicate:" msgstr "" -#: libraries/messages.inc.php:770 server_replication.php:218 +#: libraries/messages.inc.php:766 server_replication.php:218 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -4838,121 +4838,121 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: libraries/messages.inc.php:771 server_replication.php:217 +#: libraries/messages.inc.php:767 server_replication.php:217 msgid "Master configuration" msgstr "" -#: libraries/messages.inc.php:772 server_replication.php:181 +#: libraries/messages.inc.php:768 server_replication.php:181 #: server_replication.php:209 msgid "Master replication" msgstr "" -#: libraries/messages.inc.php:774 server_replication.php:230 +#: libraries/messages.inc.php:770 server_replication.php:230 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: libraries/messages.inc.php:775 server_replication.php:225 +#: libraries/messages.inc.php:771 server_replication.php:225 #, fuzzy msgid "Please select databases:" msgstr "لطفا يك پايگاه داده را انتخاب نماييد." -#: libraries/messages.inc.php:776 server_replication.php:210 +#: libraries/messages.inc.php:772 server_replication.php:210 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:188 +#: libraries/messages.inc.php:773 libraries/replication_gui.lib.php:188 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/messages.inc.php:778 server_replication.php:187 +#: libraries/messages.inc.php:774 server_replication.php:187 msgid "Show connected slaves" msgstr "" -#: libraries/messages.inc.php:779 libraries/messages.inc.php:885 +#: libraries/messages.inc.php:775 libraries/messages.inc.php:881 #: server_replication.php:184 server_status.php:281 msgid "Show master status" msgstr "" -#: libraries/messages.inc.php:780 server_replication.php:334 +#: libraries/messages.inc.php:776 server_replication.php:334 msgid "Skipping error(s) might lead into unsynchronized master and slave!" msgstr "" -#: libraries/messages.inc.php:781 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:51 #: server_replication.php:347 msgid "Change or reconfigure master server" msgstr "" -#: libraries/messages.inc.php:782 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:778 libraries/replication_gui.lib.php:51 msgid "Slave configuration" msgstr "" -#: libraries/messages.inc.php:783 server_replication.php:305 +#: libraries/messages.inc.php:779 server_replication.php:305 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: libraries/messages.inc.php:784 server_replication.php:332 +#: libraries/messages.inc.php:780 server_replication.php:332 msgid "Error management:" msgstr "" -#: libraries/messages.inc.php:785 server_replication.php:328 +#: libraries/messages.inc.php:781 server_replication.php:328 #, php-format msgid "IO Thread %s only" msgstr "" -#: libraries/messages.inc.php:786 server_replication.php:296 +#: libraries/messages.inc.php:782 server_replication.php:296 msgid "Slave IO Thread not running!" msgstr "" -#: libraries/messages.inc.php:787 server_replication.php:355 +#: libraries/messages.inc.php:783 server_replication.php:355 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/messages.inc.php:788 server_replication.php:326 +#: libraries/messages.inc.php:784 server_replication.php:326 msgid "Reset slave" msgstr "" -#: libraries/messages.inc.php:789 server_replication.php:308 +#: libraries/messages.inc.php:785 server_replication.php:308 msgid "See slave status table" msgstr "" -#: libraries/messages.inc.php:790 server_replication.php:336 +#: libraries/messages.inc.php:786 server_replication.php:336 msgid "Skip current error" msgstr "" -#: libraries/messages.inc.php:791 server_replication.php:340 +#: libraries/messages.inc.php:787 server_replication.php:340 msgid "errors." msgstr "" -#: libraries/messages.inc.php:792 server_replication.php:337 +#: libraries/messages.inc.php:788 server_replication.php:337 msgid "Skip next" msgstr "" -#: libraries/messages.inc.php:793 server_replication.php:248 +#: libraries/messages.inc.php:789 server_replication.php:248 msgid "Slave replication" msgstr "" -#: libraries/messages.inc.php:794 server_replication.php:293 +#: libraries/messages.inc.php:790 server_replication.php:293 msgid "Slave SQL Thread not running!" msgstr "" -#: libraries/messages.inc.php:795 server_replication.php:327 +#: libraries/messages.inc.php:791 server_replication.php:327 #, php-format msgid "SQL Thread %s only" msgstr "" -#: libraries/messages.inc.php:796 +#: libraries/messages.inc.php:792 #, php-format msgid "" "This MySQL server works as %s in replication process. For further " @@ -4960,172 +4960,172 @@ msgid "" "\"#replication\">replication section." msgstr "" -#: libraries/messages.inc.php:797 +#: libraries/messages.inc.php:793 msgid "Master status" msgstr "" -#: libraries/messages.inc.php:798 server_status.php:721 +#: libraries/messages.inc.php:794 server_status.php:721 msgid "Replication status" msgstr "" -#: libraries/messages.inc.php:799 +#: libraries/messages.inc.php:795 msgid "Slave status" msgstr "" -#: libraries/messages.inc.php:800 server_replication.php:311 +#: libraries/messages.inc.php:796 server_replication.php:311 msgid "Synchronize databases with master" msgstr "" -#: libraries/messages.inc.php:801 server_replication.php:71 +#: libraries/messages.inc.php:797 server_replication.php:71 msgid "Unable to change master" msgstr "" -#: libraries/messages.inc.php:802 server_replication.php:51 +#: libraries/messages.inc.php:798 server_replication.php:51 msgid "Unknown error" msgstr "" -#: libraries/messages.inc.php:803 main.php:163 pdf_pages.php:344 +#: libraries/messages.inc.php:799 main.php:163 pdf_pages.php:344 #: setup/lib/FormDisplay.tpl.php:216 tbl_change.php:1175 msgid "Reset" msgstr "Reset" -#: libraries/messages.inc.php:804 server_privileges.php:591 +#: libraries/messages.inc.php:800 server_privileges.php:591 msgid "Resource limits" msgstr "" -#: libraries/messages.inc.php:805 tbl_change.php:1209 +#: libraries/messages.inc.php:801 tbl_change.php:1209 #, php-format msgid "Restart insertion with %s rows" msgstr "" -#: libraries/messages.inc.php:807 server_privileges.php:1578 +#: libraries/messages.inc.php:803 server_privileges.php:1578 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: libraries/messages.inc.php:808 server_privileges.php:1176 +#: libraries/messages.inc.php:804 server_privileges.php:1176 #, php-format msgid "You have revoked the privileges for %s" msgstr "شما امتيازات %s را ابطال كرديد" -#: libraries/messages.inc.php:809 server_privileges.php:1333 +#: libraries/messages.inc.php:805 server_privileges.php:1333 msgid "Revoke" msgstr "ابطال" -#: libraries/messages.inc.php:810 libraries/mysql_charsets.lib.php:280 +#: libraries/messages.inc.php:806 libraries/mysql_charsets.lib.php:280 #, fuzzy msgid "Romanian" msgstr "ارمنی" -#: libraries/messages.inc.php:813 tbl_printview.php:404 tbl_structure.php:786 +#: libraries/messages.inc.php:809 tbl_printview.php:404 tbl_structure.php:786 msgid "Row length" msgstr "طول سطر" -#: libraries/messages.inc.php:815 tbl_printview.php:414 tbl_structure.php:794 +#: libraries/messages.inc.php:811 tbl_printview.php:414 tbl_structure.php:794 msgid " Row size " msgstr " اندازه سطر " -#: libraries/messages.inc.php:821 tbl_printview.php:366 tbl_structure.php:726 +#: libraries/messages.inc.php:817 tbl_printview.php:366 tbl_structure.php:726 msgid "Row Statistics" msgstr "آمار سطرها" -#: libraries/messages.inc.php:822 +#: libraries/messages.inc.php:818 #, php-format msgid "running on %s" msgstr "در ميزبان %s" -#: libraries/messages.inc.php:824 libraries/sql_query_form.lib.php:223 +#: libraries/messages.inc.php:820 libraries/sql_query_form.lib.php:223 #, fuzzy, php-format msgid "Run SQL query/queries on server %s" msgstr "اجراي پرس و جو(ها)ي SQL در پايگاه‌داده %s" -#: libraries/messages.inc.php:825 libraries/sql_query_form.lib.php:240 +#: libraries/messages.inc.php:821 libraries/sql_query_form.lib.php:240 #: libraries/sql_query_form.lib.php:265 #, php-format msgid "Run SQL query/queries on database %s" msgstr "اجراي پرس و جو(ها)ي SQL در پايگاه‌داده %s" -#: libraries/messages.inc.php:826 libraries/mysql_charsets.lib.php:337 +#: libraries/messages.inc.php:822 libraries/mysql_charsets.lib.php:337 msgid "Russian" msgstr "" -#: libraries/messages.inc.php:829 pmd_general.php:68 +#: libraries/messages.inc.php:825 pmd_general.php:68 msgid "Save position" msgstr "" -#: libraries/messages.inc.php:830 libraries/tbl_properties.inc.php:776 +#: libraries/messages.inc.php:826 libraries/tbl_properties.inc.php:776 #: pdf_pages.php:484 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:214 setup/lib/FormDisplay.tpl.php:215 #: tbl_change.php:1126 tbl_indexes.php:248 tbl_relation.php:566 msgid "Save" msgstr "ذخيره" -#: libraries/messages.inc.php:831 +#: libraries/messages.inc.php:827 msgid "The scale factor is too small to fit the schema on one page" msgstr "" -#: libraries/messages.inc.php:843 main.php:298 +#: libraries/messages.inc.php:839 main.php:298 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" -#: libraries/messages.inc.php:844 navigation.php:353 navigation.php:516 +#: libraries/messages.inc.php:840 navigation.php:353 navigation.php:516 msgid "Please select a database" msgstr "لطفا يك پايگاه داده را انتخاب نماييد." -#: libraries/messages.inc.php:846 server_binlog.php:120 +#: libraries/messages.inc.php:842 server_binlog.php:120 msgid "Select binary log to view" msgstr "" -#: libraries/messages.inc.php:847 tbl_select.php:270 +#: libraries/messages.inc.php:843 tbl_select.php:270 msgid "Select fields (at least one):" msgstr "ستونها را انتخاب نماييد (حداقل يكي)" -#: libraries/messages.inc.php:851 pdf_pages.php:320 +#: libraries/messages.inc.php:847 pdf_pages.php:320 msgid "Select Tables" msgstr "Select Tables" -#: libraries/messages.inc.php:853 server_status.php:404 +#: libraries/messages.inc.php:849 server_status.php:404 msgid "Sent" msgstr "" -#: libraries/messages.inc.php:857 libraries/select_server.lib.php:45 +#: libraries/messages.inc.php:853 libraries/select_server.lib.php:45 #: setup/frames/index.inc.php:97 setup/lib/messages.inc.php:115 #, fuzzy msgid "Servers" msgstr "سرور" -#: libraries/messages.inc.php:858 server_status.php:255 +#: libraries/messages.inc.php:854 server_status.php:255 #, fuzzy msgid "Delayed inserts" msgstr "وروديهاي تمديدشده" -#: libraries/messages.inc.php:859 server_status.php:46 +#: libraries/messages.inc.php:855 server_status.php:46 #, fuzzy msgid "Runtime Information" msgstr "اطلاعات ورود" -#: libraries/messages.inc.php:860 server_status.php:350 +#: libraries/messages.inc.php:856 server_status.php:350 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "" -#: libraries/messages.inc.php:861 libraries/server_links.inc.php:53 +#: libraries/messages.inc.php:857 libraries/server_links.inc.php:53 #: server_engines.php:112 server_engines.php:116 server_status.php:304 #: test/theme.php:105 #, fuzzy msgid "Variables" msgstr "متغییر" -#: libraries/messages.inc.php:862 server_status.php:383 +#: libraries/messages.inc.php:858 server_status.php:383 msgid "" "Server traffic: These tables show the network traffic statistics of " "this MySQL server since its startup." msgstr "" -#: libraries/messages.inc.php:863 server_variables.php:35 +#: libraries/messages.inc.php:859 server_variables.php:35 msgid "Server variables and settings" msgstr "" -#: libraries/messages.inc.php:865 main.php:290 +#: libraries/messages.inc.php:861 main.php:290 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -5133,17 +5133,17 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: libraries/messages.inc.php:866 +#: libraries/messages.inc.php:862 msgid "" "Cannot start session without errors, please check errors given in your PHP " "and/or webserver log file and configure your PHP installation properly." msgstr "" -#: libraries/messages.inc.php:867 server_variables.php:55 +#: libraries/messages.inc.php:863 server_variables.php:55 msgid "Session value" msgstr "" -#: libraries/messages.inc.php:868 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:864 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 " @@ -5156,56 +5156,56 @@ msgstr "" "، قبل از آنها علامت (\" \\ \") را بگذاريد
(براي مثال'\\\\xyz' يا 'a" "\\'b')" -#: libraries/messages.inc.php:876 server_binlog.php:192 server_binlog.php:195 +#: libraries/messages.inc.php:872 server_binlog.php:192 server_binlog.php:195 #: server_processlist.php:49 server_processlist.php:51 msgid "Show Full Queries" msgstr "" -#: libraries/messages.inc.php:878 pmd_general.php:64 +#: libraries/messages.inc.php:874 pmd_general.php:64 msgid "Show/Hide left menu" msgstr "" -#: libraries/messages.inc.php:880 sql.php:513 +#: libraries/messages.inc.php:876 sql.php:513 msgid "Showing as PHP code" msgstr "" -#: libraries/messages.inc.php:882 sql.php:516 tbl_replace.php:360 +#: libraries/messages.inc.php:878 sql.php:516 tbl_replace.php:360 msgid "Showing SQL query" msgstr "" -#: libraries/messages.inc.php:883 tbl_change.php:1132 +#: libraries/messages.inc.php:879 tbl_change.php:1132 msgid "Show insert query" msgstr "" -#: libraries/messages.inc.php:886 server_status.php:273 +#: libraries/messages.inc.php:882 server_status.php:273 #, fuzzy msgid "Show open tables" msgstr "نمايش جدولها" -#: libraries/messages.inc.php:887 main.php:219 +#: libraries/messages.inc.php:883 main.php:219 msgid "Show PHP information" msgstr "نمايش اطلاعات PHP" -#: libraries/messages.inc.php:889 server_status.php:278 +#: libraries/messages.inc.php:885 server_status.php:278 msgid "Show slave hosts" msgstr "" -#: libraries/messages.inc.php:890 server_status.php:284 +#: libraries/messages.inc.php:886 server_status.php:284 msgid "Show slave status" msgstr "" -#: libraries/messages.inc.php:891 +#: libraries/messages.inc.php:887 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/messages.inc.php:892 +#: libraries/messages.inc.php:888 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/messages.inc.php:893 +#: libraries/messages.inc.php:889 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -5213,78 +5213,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/messages.inc.php:894 +#: libraries/messages.inc.php:890 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/messages.inc.php:895 +#: libraries/messages.inc.php:891 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/messages.inc.php:896 +#: libraries/messages.inc.php:892 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/messages.inc.php:897 +#: libraries/messages.inc.php:893 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/messages.inc.php:898 +#: libraries/messages.inc.php:894 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/messages.inc.php:899 +#: libraries/messages.inc.php:895 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/messages.inc.php:900 +#: libraries/messages.inc.php:896 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/messages.inc.php:901 +#: libraries/messages.inc.php:897 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/messages.inc.php:902 +#: libraries/messages.inc.php:898 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/messages.inc.php:903 +#: libraries/messages.inc.php:899 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/messages.inc.php:904 +#: libraries/messages.inc.php:900 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: libraries/messages.inc.php:905 +#: libraries/messages.inc.php:901 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/messages.inc.php:906 +#: libraries/messages.inc.php:902 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: libraries/messages.inc.php:907 +#: libraries/messages.inc.php:903 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -5292,7 +5292,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/messages.inc.php:908 +#: libraries/messages.inc.php:904 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -5300,42 +5300,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/messages.inc.php:909 +#: libraries/messages.inc.php:905 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/messages.inc.php:910 +#: libraries/messages.inc.php:906 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/messages.inc.php:911 +#: libraries/messages.inc.php:907 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/messages.inc.php:912 +#: libraries/messages.inc.php:908 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/messages.inc.php:913 +#: libraries/messages.inc.php:909 msgid "The number of pages currently dirty." msgstr "" -#: libraries/messages.inc.php:914 +#: libraries/messages.inc.php:910 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/messages.inc.php:915 +#: libraries/messages.inc.php:911 msgid "The number of free pages." msgstr "" -#: libraries/messages.inc.php:916 +#: libraries/messages.inc.php:912 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/messages.inc.php:917 +#: libraries/messages.inc.php:913 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -5343,33 +5343,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/messages.inc.php:918 +#: libraries/messages.inc.php:914 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/messages.inc.php:919 +#: libraries/messages.inc.php:915 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/messages.inc.php:920 +#: libraries/messages.inc.php:916 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/messages.inc.php:921 +#: libraries/messages.inc.php:917 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/messages.inc.php:922 +#: libraries/messages.inc.php:918 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/messages.inc.php:923 +#: libraries/messages.inc.php:919 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -5378,218 +5378,218 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/messages.inc.php:924 +#: libraries/messages.inc.php:920 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/messages.inc.php:925 +#: libraries/messages.inc.php:921 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/messages.inc.php:926 +#: libraries/messages.inc.php:922 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/messages.inc.php:927 +#: libraries/messages.inc.php:923 msgid "The current number of pending reads." msgstr "" -#: libraries/messages.inc.php:928 +#: libraries/messages.inc.php:924 msgid "The current number of pending writes." msgstr "" -#: libraries/messages.inc.php:929 +#: libraries/messages.inc.php:925 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/messages.inc.php:930 +#: libraries/messages.inc.php:926 msgid "The total number of data reads." msgstr "" -#: libraries/messages.inc.php:931 +#: libraries/messages.inc.php:927 msgid "The total number of data writes." msgstr "" -#: libraries/messages.inc.php:932 +#: libraries/messages.inc.php:928 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/messages.inc.php:933 +#: libraries/messages.inc.php:929 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/messages.inc.php:934 +#: libraries/messages.inc.php:930 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/messages.inc.php:935 +#: libraries/messages.inc.php:931 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/messages.inc.php:936 +#: libraries/messages.inc.php:932 msgid "The number of log write requests." msgstr "" -#: libraries/messages.inc.php:937 +#: libraries/messages.inc.php:933 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/messages.inc.php:938 +#: libraries/messages.inc.php:934 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/messages.inc.php:939 +#: libraries/messages.inc.php:935 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/messages.inc.php:940 +#: libraries/messages.inc.php:936 msgid "Pending log file writes." msgstr "" -#: libraries/messages.inc.php:941 +#: libraries/messages.inc.php:937 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/messages.inc.php:942 +#: libraries/messages.inc.php:938 msgid "The number of pages created." msgstr "" -#: libraries/messages.inc.php:943 +#: libraries/messages.inc.php:939 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: libraries/messages.inc.php:944 +#: libraries/messages.inc.php:940 msgid "The number of pages read." msgstr "" -#: libraries/messages.inc.php:945 +#: libraries/messages.inc.php:941 msgid "The number of pages written." msgstr "" -#: libraries/messages.inc.php:946 +#: libraries/messages.inc.php:942 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/messages.inc.php:947 +#: libraries/messages.inc.php:943 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/messages.inc.php:948 +#: libraries/messages.inc.php:944 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/messages.inc.php:949 +#: libraries/messages.inc.php:945 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/messages.inc.php:950 +#: libraries/messages.inc.php:946 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/messages.inc.php:951 +#: libraries/messages.inc.php:947 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/messages.inc.php:952 +#: libraries/messages.inc.php:948 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/messages.inc.php:953 +#: libraries/messages.inc.php:949 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/messages.inc.php:954 +#: libraries/messages.inc.php:950 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/messages.inc.php:955 +#: libraries/messages.inc.php:951 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/messages.inc.php:956 +#: libraries/messages.inc.php:952 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: libraries/messages.inc.php:957 +#: libraries/messages.inc.php:953 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/messages.inc.php:958 +#: libraries/messages.inc.php:954 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/messages.inc.php:959 +#: libraries/messages.inc.php:955 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/messages.inc.php:960 +#: libraries/messages.inc.php:956 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/messages.inc.php:961 +#: libraries/messages.inc.php:957 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/messages.inc.php:962 +#: libraries/messages.inc.php:958 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/messages.inc.php:963 +#: libraries/messages.inc.php:959 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/messages.inc.php:964 +#: libraries/messages.inc.php:960 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/messages.inc.php:965 +#: libraries/messages.inc.php:961 msgid "The number of files that are open." msgstr "" -#: libraries/messages.inc.php:966 +#: libraries/messages.inc.php:962 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/messages.inc.php:967 +#: libraries/messages.inc.php:963 msgid "The number of tables that are open." msgstr "" -#: libraries/messages.inc.php:968 +#: libraries/messages.inc.php:964 msgid "The number of free memory blocks in query cache." msgstr "" -#: libraries/messages.inc.php:969 +#: libraries/messages.inc.php:965 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/messages.inc.php:970 +#: libraries/messages.inc.php:966 msgid "The number of cache hits." msgstr "" -#: libraries/messages.inc.php:971 +#: libraries/messages.inc.php:967 msgid "The number of queries added to the cache." msgstr "" -#: libraries/messages.inc.php:972 +#: libraries/messages.inc.php:968 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -5597,105 +5597,105 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/messages.inc.php:973 +#: libraries/messages.inc.php:969 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/messages.inc.php:974 +#: libraries/messages.inc.php:970 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/messages.inc.php:975 +#: libraries/messages.inc.php:971 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/messages.inc.php:976 +#: libraries/messages.inc.php:972 #, fuzzy msgctxt "$strShowStatusReset" msgid "Reset" msgstr "Reset" -#: libraries/messages.inc.php:977 +#: libraries/messages.inc.php:973 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/messages.inc.php:978 +#: libraries/messages.inc.php:974 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: libraries/messages.inc.php:979 +#: libraries/messages.inc.php:975 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/messages.inc.php:980 +#: libraries/messages.inc.php:976 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: libraries/messages.inc.php:981 +#: libraries/messages.inc.php:977 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/messages.inc.php:982 +#: libraries/messages.inc.php:978 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/messages.inc.php:983 +#: libraries/messages.inc.php:979 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/messages.inc.php:984 +#: libraries/messages.inc.php:980 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/messages.inc.php:985 +#: libraries/messages.inc.php:981 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/messages.inc.php:986 +#: libraries/messages.inc.php:982 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/messages.inc.php:987 +#: libraries/messages.inc.php:983 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/messages.inc.php:988 +#: libraries/messages.inc.php:984 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/messages.inc.php:989 +#: libraries/messages.inc.php:985 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/messages.inc.php:990 +#: libraries/messages.inc.php:986 msgid "The number of sorted rows." msgstr "" -#: libraries/messages.inc.php:991 +#: libraries/messages.inc.php:987 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/messages.inc.php:992 +#: libraries/messages.inc.php:988 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/messages.inc.php:993 +#: libraries/messages.inc.php:989 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -5703,18 +5703,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/messages.inc.php:994 +#: libraries/messages.inc.php:990 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/messages.inc.php:995 +#: libraries/messages.inc.php:991 msgid "The number of currently open connections." msgstr "" -#: libraries/messages.inc.php:996 +#: libraries/messages.inc.php:992 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -5722,74 +5722,74 @@ msgid "" "implementation.)" msgstr "" -#: libraries/messages.inc.php:997 +#: libraries/messages.inc.php:993 msgid "The number of threads that are not sleeping." msgstr "" -#: libraries/messages.inc.php:999 tbl_printview.php:75 +#: libraries/messages.inc.php:995 tbl_printview.php:75 msgid "Show tables" msgstr "نمايش جدولها" -#: libraries/messages.inc.php:1000 libraries/sql_query_form.lib.php:396 +#: libraries/messages.inc.php:996 libraries/sql_query_form.lib.php:396 msgid " Show this query here again " msgstr " نمايش دوباره اين پرس و جو در اينجا " -#: libraries/messages.inc.php:1001 libraries/mysql_charsets.lib.php:217 +#: libraries/messages.inc.php:997 libraries/mysql_charsets.lib.php:217 #: libraries/mysql_charsets.lib.php:342 msgid "Simplified Chinese" msgstr "" -#: libraries/messages.inc.php:1002 tbl_operations.php:258 +#: libraries/messages.inc.php:998 tbl_operations.php:258 msgid "(singly)" msgstr "(تنها)" -#: libraries/messages.inc.php:1005 libraries/replication_gui.lib.php:52 +#: libraries/messages.inc.php:1001 libraries/replication_gui.lib.php:52 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" msgstr "" -#: libraries/messages.inc.php:1006 libraries/mysql_charsets.lib.php:283 +#: libraries/messages.inc.php:1002 libraries/mysql_charsets.lib.php:283 msgid "Slovak" msgstr "" -#: libraries/messages.inc.php:1007 libraries/mysql_charsets.lib.php:286 +#: libraries/messages.inc.php:1003 libraries/mysql_charsets.lib.php:286 msgid "Slovenian" msgstr "" -#: libraries/messages.inc.php:1008 pmd_general.php:95 +#: libraries/messages.inc.php:1004 pmd_general.php:95 msgid "Small/Big All" msgstr "" -#: libraries/messages.inc.php:1009 pmd_general.php:91 +#: libraries/messages.inc.php:1005 pmd_general.php:91 msgid "Snap to grid" msgstr "" -#: libraries/messages.inc.php:1011 server_synchronize.php:1167 +#: libraries/messages.inc.php:1007 server_synchronize.php:1167 msgid "Socket" msgstr "" -#: libraries/messages.inc.php:1013 server_status.php:259 +#: libraries/messages.inc.php:1009 server_status.php:259 msgid "Sorting" msgstr "" -#: libraries/messages.inc.php:1015 tbl_printview.php:310 tbl_structure.php:657 +#: libraries/messages.inc.php:1011 tbl_printview.php:310 tbl_structure.php:657 msgid "Space usage" msgstr "فضاي استفاده‌شده" -#: libraries/messages.inc.php:1016 libraries/mysql_charsets.lib.php:289 +#: libraries/messages.inc.php:1012 libraries/mysql_charsets.lib.php:289 msgid "Spanish" msgstr "اسپانیایی" -#: libraries/messages.inc.php:1019 +#: libraries/messages.inc.php:1015 msgid "Export type" msgstr "" -#: libraries/messages.inc.php:1020 +#: libraries/messages.inc.php:1016 msgid "Export time in UTC" msgstr "" -#: libraries/messages.inc.php:1021 libraries/sqlparser.lib.php:173 +#: libraries/messages.inc.php:1017 libraries/sqlparser.lib.php:173 msgid "" "There is a chance that you may have found a bug in the SQL parser. Please " "examine your query closely, and check that the quotes are correct and not " @@ -5802,425 +5802,425 @@ msgid "" "and submit a bug report with the data chunk in the CUT section below:" msgstr "" -#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:137 +#: libraries/messages.inc.php:1018 libraries/sqlparser.lib.php:137 msgid "" "There seems to be an error in your SQL query. The MySQL server error output " "below, if there is any, may also help you in diagnosing the problem" msgstr "" -#: libraries/messages.inc.php:1026 libraries/sqlparser.lib.php:495 +#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:495 msgid "Invalid Identifer" msgstr "" -#: libraries/messages.inc.php:1027 libraries/sqlparser.lib.php:344 +#: libraries/messages.inc.php:1023 libraries/sqlparser.lib.php:344 msgid "Unclosed quote" msgstr "" -#: libraries/messages.inc.php:1028 libraries/sqlparser.lib.php:612 +#: libraries/messages.inc.php:1024 libraries/sqlparser.lib.php:612 msgid "Unknown Punctuation String" msgstr "" -#: libraries/messages.inc.php:1030 server_replication.php:327 +#: libraries/messages.inc.php:1026 server_replication.php:327 #: server_replication.php:328 #, fuzzy msgid "Start" msgstr "شنبه" -#: libraries/messages.inc.php:1033 tbl_printview.php:369 tbl_structure.php:729 +#: libraries/messages.inc.php:1029 tbl_printview.php:369 tbl_structure.php:729 msgid "Statements" msgstr "شرج" -#: libraries/messages.inc.php:1034 tbl_printview.php:380 tbl_structure.php:741 +#: libraries/messages.inc.php:1030 tbl_printview.php:380 tbl_structure.php:741 msgid "static" msgstr "" -#: libraries/messages.inc.php:1035 server_status.php:388 +#: libraries/messages.inc.php:1031 server_status.php:388 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: libraries/messages.inc.php:1038 server_replication.php:327 +#: libraries/messages.inc.php:1034 server_replication.php:327 #: server_replication.php:328 msgid "Stop" msgstr "" -#: libraries/messages.inc.php:1039 server_engines.php:49 +#: libraries/messages.inc.php:1035 server_engines.php:49 msgid "Storage Engines" msgstr "" -#: libraries/messages.inc.php:1040 libraries/tbl_properties.inc.php:726 +#: libraries/messages.inc.php:1036 libraries/tbl_properties.inc.php:726 #: server_engines.php:58 tbl_operations.php:353 msgid "Storage Engine" msgstr "" -#: libraries/messages.inc.php:1042 +#: libraries/messages.inc.php:1038 msgid "CSV for MS Excel" msgstr "CSV براي داده‌هاي MS Excel" -#: libraries/messages.inc.php:1044 tbl_structure.php:516 tbl_structure.php:518 +#: libraries/messages.inc.php:1040 tbl_structure.php:516 tbl_structure.php:518 msgid "Propose table structure" msgstr "پيشنهاد ساختار جدول" -#: libraries/messages.inc.php:1045 server_synchronize.php:424 +#: libraries/messages.inc.php:1041 server_synchronize.php:424 #: server_synchronize.php:867 msgid "Structure Difference" msgstr "" -#: libraries/messages.inc.php:1049 server_synchronize.php:265 +#: libraries/messages.inc.php:1045 server_synchronize.php:265 msgid "Structure Synchronization" msgstr "" -#: libraries/messages.inc.php:1050 libraries/sql_query_form.lib.php:462 +#: libraries/messages.inc.php:1046 libraries/sql_query_form.lib.php:462 msgid "Submit" msgstr "ارسال" -#: libraries/messages.inc.php:1052 main.php:358 +#: libraries/messages.inc.php:1048 main.php:358 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " "issues." msgstr "" -#: libraries/messages.inc.php:1054 libraries/mysql_charsets.lib.php:295 +#: libraries/messages.inc.php:1050 libraries/mysql_charsets.lib.php:295 #: libraries/mysql_charsets.lib.php:392 msgid "Swedish" msgstr "" -#: libraries/messages.inc.php:1060 tbl_operations.php:556 +#: libraries/messages.inc.php:1056 tbl_operations.php:556 msgid "Switch to copied table" msgstr "" -#: libraries/messages.inc.php:1061 server_synchronize.php:1213 +#: libraries/messages.inc.php:1057 server_synchronize.php:1213 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." msgstr "" -#: libraries/messages.inc.php:1062 server_synchronize.php:451 +#: libraries/messages.inc.php:1058 server_synchronize.php:451 #: server_synchronize.php:896 msgid "Synchronize Databases" msgstr "" -#: libraries/messages.inc.php:1063 libraries/server_links.inc.php:92 +#: libraries/messages.inc.php:1059 libraries/server_links.inc.php:92 #: server_synchronize.php:1092 server_synchronize.php:1100 msgid "Synchronize" msgstr "" -#: libraries/messages.inc.php:1065 server_synchronize.php:430 +#: libraries/messages.inc.php:1061 server_synchronize.php:430 #: server_synchronize.php:873 msgid "Add column(s)" msgstr "" -#: libraries/messages.inc.php:1066 tbl_create.php:62 +#: libraries/messages.inc.php:1062 tbl_create.php:62 #, php-format msgid "Table %s already exists!" msgstr "" -#: libraries/messages.inc.php:1067 server_synchronize.php:432 +#: libraries/messages.inc.php:1063 server_synchronize.php:432 #: server_synchronize.php:875 msgid "Alter column(s)" msgstr "" -#: libraries/messages.inc.php:1068 tbl_addfield.php:189 tbl_alter.php:103 +#: libraries/messages.inc.php:1064 tbl_addfield.php:189 tbl_alter.php:103 #: tbl_indexes.php:98 #, php-format msgid "Table %1$s has been altered successfully" msgstr "" -#: libraries/messages.inc.php:1069 server_synchronize.php:434 +#: libraries/messages.inc.php:1065 server_synchronize.php:434 #: server_synchronize.php:877 msgid "Apply index(s)" msgstr "" -#: libraries/messages.inc.php:1071 server_synchronize.php:446 +#: libraries/messages.inc.php:1067 server_synchronize.php:446 #: server_synchronize.php:890 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: libraries/messages.inc.php:1072 tbl_move_copy.php:82 +#: libraries/messages.inc.php:1068 tbl_move_copy.php:82 msgid "The table name is empty!" msgstr "نام جدول وارد نشده‌است !" -#: libraries/messages.inc.php:1073 tbl_create.php:249 +#: libraries/messages.inc.php:1069 tbl_create.php:249 #, fuzzy, php-format msgid "Table %1$s has been created." msgstr "جدول %s حذف گرديد" -#: libraries/messages.inc.php:1076 tbl_operations.php:628 +#: libraries/messages.inc.php:1072 tbl_operations.php:628 #, fuzzy, php-format msgid "Table %s has been flushed" msgstr "جدول %s حذف گرديد" -#: libraries/messages.inc.php:1077 server_synchronize.php:436 +#: libraries/messages.inc.php:1073 server_synchronize.php:436 #: server_synchronize.php:879 msgid "Insert row(s)" msgstr "" -#: libraries/messages.inc.php:1078 libraries/tbl_links.inc.php:107 +#: libraries/messages.inc.php:1074 libraries/tbl_links.inc.php:107 #: libraries/tbl_links.inc.php:140 libraries/tbl_links.inc.php:141 msgid "Table seems to be empty!" msgstr "" -#: libraries/messages.inc.php:1079 tbl_operations.php:568 +#: libraries/messages.inc.php:1075 tbl_operations.php:568 msgid "Table maintenance" msgstr "نگهداشت جدول" -#: libraries/messages.inc.php:1080 libraries/tbl_properties.inc.php:618 +#: libraries/messages.inc.php:1076 libraries/tbl_properties.inc.php:618 #: server_synchronize.php:428 server_synchronize.php:871 msgid "Table name" msgstr "" -#: libraries/messages.inc.php:1081 pdf_schema.php:1116 +#: libraries/messages.inc.php:1077 pdf_schema.php:1116 #, fuzzy msgid "Table of contents" msgstr "توضيحات جدول" -#: libraries/messages.inc.php:1082 tbl_operations.php:334 +#: libraries/messages.inc.php:1078 tbl_operations.php:334 msgid "Table options" msgstr "" -#: libraries/messages.inc.php:1083 server_synchronize.php:431 +#: libraries/messages.inc.php:1079 server_synchronize.php:431 #: server_synchronize.php:874 msgid "Remove column(s)" msgstr "" -#: libraries/messages.inc.php:1084 server_synchronize.php:433 +#: libraries/messages.inc.php:1080 server_synchronize.php:433 #: server_synchronize.php:876 msgid "Remove index(s)" msgstr "" -#: libraries/messages.inc.php:1088 server_synchronize.php:435 +#: libraries/messages.inc.php:1084 server_synchronize.php:435 #: server_synchronize.php:878 msgid "Update row(s)" msgstr "" -#: libraries/messages.inc.php:1090 server_synchronize.php:942 +#: libraries/messages.inc.php:1086 server_synchronize.php:942 msgid "Target database has been synchronized with source database" msgstr "" -#: libraries/messages.inc.php:1091 server_privileges.php:392 +#: libraries/messages.inc.php:1087 server_privileges.php:392 #: server_privileges.php:527 server_privileges.php:1679 #: server_privileges.php:1685 msgid "Table-specific privileges" msgstr "" -#: libraries/messages.inc.php:1092 server_status.php:254 +#: libraries/messages.inc.php:1088 server_status.php:254 msgid "Temporary data" msgstr "" -#: libraries/messages.inc.php:1093 tbl_change.php:728 +#: libraries/messages.inc.php:1089 tbl_change.php:728 msgid " Because of its length,
this field might not be editable " msgstr "" -#: libraries/messages.inc.php:1094 +#: libraries/messages.inc.php:1090 msgid "Texy! text" msgstr "" -#: libraries/messages.inc.php:1095 libraries/mysql_charsets.lib.php:298 +#: libraries/messages.inc.php:1091 libraries/mysql_charsets.lib.php:298 #: libraries/mysql_charsets.lib.php:395 msgid "Thai" msgstr "" -#: libraries/messages.inc.php:1102 libraries/replication_gui.lib.php:308 +#: libraries/messages.inc.php:1098 libraries/replication_gui.lib.php:308 #: server_privileges.php:734 msgid "This Host" msgstr "" -#: libraries/messages.inc.php:1103 server_status.php:252 +#: libraries/messages.inc.php:1099 server_status.php:252 msgid "Threads" msgstr "" -#: libraries/messages.inc.php:1104 server_processlist.php:22 +#: libraries/messages.inc.php:1100 server_processlist.php:22 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: libraries/messages.inc.php:1106 +#: libraries/messages.inc.php:1102 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." msgstr "" -#: libraries/messages.inc.php:1109 pmd_pdf.php:94 +#: libraries/messages.inc.php:1105 pmd_pdf.php:94 msgid "to/from page" msgstr "" -#: libraries/messages.inc.php:1110 pdf_pages.php:343 +#: libraries/messages.inc.php:1106 pdf_pages.php:343 msgid "Toggle scratchboard" msgstr "" -#: libraries/messages.inc.php:1111 pmd_general.php:99 +#: libraries/messages.inc.php:1107 pmd_general.php:99 msgid "Toggle small/big" msgstr "" -#: libraries/messages.inc.php:1112 pmd_help.php:27 +#: libraries/messages.inc.php:1108 pmd_help.php:27 msgid "To select relation, click :" msgstr "" -#: libraries/messages.inc.php:1115 libraries/tbl_links.inc.php:149 +#: libraries/messages.inc.php:1111 libraries/tbl_links.inc.php:149 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" -#: libraries/messages.inc.php:1116 tbl_tracking.php:655 +#: libraries/messages.inc.php:1112 tbl_tracking.php:655 msgid "Activate now" msgstr "" -#: libraries/messages.inc.php:1117 tbl_tracking.php:653 +#: libraries/messages.inc.php:1113 tbl_tracking.php:653 #, php-format msgid "Activate tracking for %s.%s" msgstr "" -#: libraries/messages.inc.php:1118 tbl_tracking.php:221 +#: libraries/messages.inc.php:1114 tbl_tracking.php:221 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/messages.inc.php:1119 tbl_tracking.php:688 +#: libraries/messages.inc.php:1115 tbl_tracking.php:688 #, fuzzy msgid "Create version" msgstr "نسخه سرور" -#: libraries/messages.inc.php:1120 tbl_tracking.php:668 +#: libraries/messages.inc.php:1116 tbl_tracking.php:668 #, php-format msgid "Create version %s of %s.%s" msgstr "" -#: libraries/messages.inc.php:1122 tbl_tracking.php:412 +#: libraries/messages.inc.php:1118 tbl_tracking.php:412 msgid "Data definition statement" msgstr "" -#: libraries/messages.inc.php:1123 tbl_tracking.php:463 +#: libraries/messages.inc.php:1119 tbl_tracking.php:463 msgid "Data manipulation statement" msgstr "" -#: libraries/messages.inc.php:1124 tbl_tracking.php:410 tbl_tracking.php:461 +#: libraries/messages.inc.php:1120 tbl_tracking.php:410 tbl_tracking.php:461 #, fuzzy msgid "Date" msgstr "داده" -#: libraries/messages.inc.php:1125 tbl_tracking.php:642 +#: libraries/messages.inc.php:1121 tbl_tracking.php:642 msgid "Deactivate now" msgstr "" -#: libraries/messages.inc.php:1126 tbl_tracking.php:640 +#: libraries/messages.inc.php:1122 tbl_tracking.php:640 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "" -#: libraries/messages.inc.php:1127 tbl_tracking.php:521 +#: libraries/messages.inc.php:1123 tbl_tracking.php:521 #, php-format msgid "Export as %s" msgstr "" -#: libraries/messages.inc.php:1130 tbl_tracking.php:251 tbl_tracking.php:379 +#: libraries/messages.inc.php:1126 tbl_tracking.php:251 tbl_tracking.php:379 msgid "Close" msgstr "" -#: libraries/messages.inc.php:1131 tbl_tracking.php:114 +#: libraries/messages.inc.php:1127 tbl_tracking.php:114 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/messages.inc.php:1133 tbl_tracking.php:397 tbl_tracking.php:504 +#: libraries/messages.inc.php:1129 tbl_tracking.php:397 tbl_tracking.php:504 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "" -#: libraries/messages.inc.php:1134 tbl_tracking.php:561 +#: libraries/messages.inc.php:1130 tbl_tracking.php:561 msgid "Show versions" msgstr "" -#: libraries/messages.inc.php:1135 tbl_tracking.php:507 +#: libraries/messages.inc.php:1131 tbl_tracking.php:507 msgid "SQL dump (file download)" msgstr "" -#: libraries/messages.inc.php:1136 tbl_tracking.php:508 +#: libraries/messages.inc.php:1132 tbl_tracking.php:508 msgid "SQL dump" msgstr "" -#: libraries/messages.inc.php:1137 tbl_tracking.php:213 +#: libraries/messages.inc.php:1133 tbl_tracking.php:213 msgid "SQL statements executed." msgstr "" -#: libraries/messages.inc.php:1138 +#: libraries/messages.inc.php:1134 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/messages.inc.php:1139 tbl_tracking.php:509 +#: libraries/messages.inc.php:1135 tbl_tracking.php:509 msgid "SQL execution" msgstr "" -#: libraries/messages.inc.php:1140 tbl_tracking.php:230 +#: libraries/messages.inc.php:1136 tbl_tracking.php:230 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/messages.inc.php:1141 tbl_tracking.php:381 +#: libraries/messages.inc.php:1137 tbl_tracking.php:381 msgid "Tracking statements" msgstr "" -#: libraries/messages.inc.php:1148 tbl_tracking.php:593 +#: libraries/messages.inc.php:1144 tbl_tracking.php:593 #, fuzzy msgid "Version" msgstr "فارسي" -#: libraries/messages.inc.php:1149 tbl_tracking.php:672 +#: libraries/messages.inc.php:1145 tbl_tracking.php:672 msgid "Track these data definition statements:" msgstr "" -#: libraries/messages.inc.php:1150 tbl_tracking.php:680 +#: libraries/messages.inc.php:1146 tbl_tracking.php:680 msgid "Track these data manipulation statements:" msgstr "" -#: libraries/messages.inc.php:1155 tbl_tracking.php:411 tbl_tracking.php:462 +#: libraries/messages.inc.php:1151 tbl_tracking.php:411 tbl_tracking.php:462 #, fuzzy msgid "Username" msgstr "نام كاربر:" -#: libraries/messages.inc.php:1156 tbl_tracking.php:203 +#: libraries/messages.inc.php:1152 tbl_tracking.php:203 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "" -#: libraries/messages.inc.php:1157 tbl_tracking.php:187 +#: libraries/messages.inc.php:1153 tbl_tracking.php:187 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "" -#: libraries/messages.inc.php:1158 tbl_tracking.php:195 +#: libraries/messages.inc.php:1154 tbl_tracking.php:195 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "" -#: libraries/messages.inc.php:1159 tbl_tracking.php:262 +#: libraries/messages.inc.php:1155 tbl_tracking.php:262 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/messages.inc.php:1161 tbl_tracking.php:220 +#: libraries/messages.inc.php:1157 tbl_tracking.php:220 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/messages.inc.php:1162 libraries/mysql_charsets.lib.php:219 +#: libraries/messages.inc.php:1158 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:362 msgid "Traditional Chinese" msgstr "" -#: libraries/messages.inc.php:1163 libraries/mysql_charsets.lib.php:292 +#: libraries/messages.inc.php:1159 libraries/mysql_charsets.lib.php:292 msgid "Traditional Spanish" msgstr "" -#: libraries/messages.inc.php:1164 server_status.php:388 +#: libraries/messages.inc.php:1160 server_status.php:388 msgid "Traffic" msgstr "" -#: libraries/messages.inc.php:1165 server_status.php:261 +#: libraries/messages.inc.php:1161 server_status.php:261 msgid "Transaction coordinator" msgstr "" -#: libraries/messages.inc.php:1166 +#: libraries/messages.inc.php:1162 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 " @@ -6228,27 +6228,27 @@ msgid "" "need to set the first option to the empty string." msgstr "" -#: libraries/messages.inc.php:1167 +#: libraries/messages.inc.php:1163 msgid "" "Displays hexadecimal representation of data. Optional first parameter " "specifies how often space will be added (defaults to 2 nibbles)." msgstr "" -#: libraries/messages.inc.php:1168 +#: libraries/messages.inc.php:1164 msgid "" "Displays a clickable thumbnail. The options are the maximum width and height " "in pixels. The original aspect ratio is preserved." msgstr "" -#: libraries/messages.inc.php:1169 +#: libraries/messages.inc.php:1165 msgid "Displays a link to download this image." msgstr "" -#: libraries/messages.inc.php:1170 +#: libraries/messages.inc.php:1166 msgid "See image/jpeg: inline" msgstr "" -#: libraries/messages.inc.php:1171 +#: libraries/messages.inc.php:1167 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 " @@ -6260,7 +6260,7 @@ msgid "" "gmdate() function." msgstr "" -#: libraries/messages.inc.php:1172 +#: libraries/messages.inc.php:1168 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 " @@ -6274,31 +6274,31 @@ msgid "" "(Default 1)." msgstr "" -#: libraries/messages.inc.php:1173 +#: libraries/messages.inc.php:1169 msgid "" "Displays the contents of the field as-is, without running it through " "htmlspecialchars(). That is, the field is assumed to contain valid HTML." msgstr "" -#: libraries/messages.inc.php:1174 +#: libraries/messages.inc.php:1170 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." msgstr "" -#: libraries/messages.inc.php:1175 +#: libraries/messages.inc.php:1171 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." msgstr "" -#: libraries/messages.inc.php:1176 +#: libraries/messages.inc.php:1172 msgid "Formats text as SQL query with syntax highlighting." msgstr "" -#: libraries/messages.inc.php:1177 +#: libraries/messages.inc.php:1173 msgid "" "Displays a part of a string. The first option is the number of characters to " "skip from the beginning of the string (Default 0). The second option is the " @@ -6307,69 +6307,69 @@ msgid "" "(Default: \"...\")." msgstr "" -#: libraries/messages.inc.php:1179 server_binlog.php:183 server_binlog.php:186 +#: libraries/messages.inc.php:1175 server_binlog.php:183 server_binlog.php:186 #: server_processlist.php:49 server_processlist.php:51 msgid "Truncate Shown Queries" msgstr "" -#: libraries/messages.inc.php:1180 libraries/mysql_charsets.lib.php:301 +#: libraries/messages.inc.php:1176 libraries/mysql_charsets.lib.php:301 #: libraries/mysql_charsets.lib.php:389 msgid "Turkish" msgstr "ترکی" -#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:304 +#: libraries/messages.inc.php:1179 libraries/mysql_charsets.lib.php:304 #: libraries/mysql_charsets.lib.php:386 msgid "Ukrainian" msgstr "اوکراینی" -#: libraries/messages.inc.php:1185 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:1181 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 msgid "Unicode" msgstr "" -#: libraries/messages.inc.php:1187 libraries/mysql_charsets.lib.php:398 +#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:398 #: libraries/mysql_charsets.lib.php:405 msgid "unknown" msgstr "ناشناس" -#: libraries/messages.inc.php:1190 server_privileges.php:1152 +#: libraries/messages.inc.php:1186 server_privileges.php:1152 #, php-format msgid "You have updated the privileges for %s." msgstr "امتيازات %s به هنگام گرديد." -#: libraries/messages.inc.php:1191 user_password.php:112 +#: libraries/messages.inc.php:1187 user_password.php:112 msgid "The profile has been updated." msgstr "تنظيمات به هنگام گرديد." -#: libraries/messages.inc.php:1193 libraries/relation.lib.php:138 +#: libraries/messages.inc.php:1189 libraries/relation.lib.php:138 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" -#: libraries/messages.inc.php:1194 +#: libraries/messages.inc.php:1190 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/messages.inc.php:1204 tbl_printview.php:314 tbl_structure.php:661 +#: libraries/messages.inc.php:1200 tbl_printview.php:314 tbl_structure.php:661 msgid "Usage" msgstr "استفاده" -#: libraries/messages.inc.php:1205 +#: libraries/messages.inc.php:1201 msgid "Enclose table and field names with backquotes" msgstr "قراردادن نام جدولها و ستونها بين علامت نقل‌قول (\" ' \")" -#: libraries/messages.inc.php:1206 libraries/replication_gui.lib.php:314 +#: libraries/messages.inc.php:1202 libraries/replication_gui.lib.php:314 #: server_privileges.php:740 msgid "Use Host Table" msgstr "" -#: libraries/messages.inc.php:1207 server_privileges.php:848 +#: libraries/messages.inc.php:1203 server_privileges.php:848 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/messages.inc.php:1209 libraries/replication_gui.lib.php:55 +#: libraries/messages.inc.php:1205 libraries/replication_gui.lib.php:55 #: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245 #: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255 #: server_privileges.php:672 server_privileges.php:675 @@ -6377,35 +6377,35 @@ msgstr "" msgid "User name" msgstr "نام كاربر" -#: libraries/messages.inc.php:1210 server_privileges.php:1645 +#: libraries/messages.inc.php:1206 server_privileges.php:1645 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/messages.inc.php:1211 server_privileges.php:1365 +#: libraries/messages.inc.php:1207 server_privileges.php:1365 msgid "User overview" msgstr "" -#: libraries/messages.inc.php:1212 server_privileges.php:1261 +#: libraries/messages.inc.php:1208 server_privileges.php:1261 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/messages.inc.php:1213 server_privileges.php:2026 +#: libraries/messages.inc.php:1209 server_privileges.php:2026 #, php-format msgid "Users having access to "%s"" msgstr "" -#: libraries/messages.inc.php:1214 main.php:189 server_privileges.php:1350 +#: libraries/messages.inc.php:1210 main.php:189 server_privileges.php:1350 #: server_privileges.php:1497 server_privileges.php:1611 #: server_privileges.php:2029 server_processlist.php:54 msgid "User" msgstr "كاربر" -#: libraries/messages.inc.php:1215 tbl_change.php:1171 +#: libraries/messages.inc.php:1211 tbl_change.php:1171 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/messages.inc.php:1217 libraries/replication_gui.lib.php:251 +#: libraries/messages.inc.php:1213 libraries/replication_gui.lib.php:251 #: libraries/replication_gui.lib.php:319 libraries/replication_gui.lib.php:342 #: server_privileges.php:678 server_privileges.php:745 #: server_privileges.php:769 server_privileges.php:1889 @@ -6413,93 +6413,93 @@ msgstr "" msgid "Use text field" msgstr "" -#: libraries/messages.inc.php:1221 libraries/sqlvalidator.lib.php:68 +#: libraries/messages.inc.php:1217 libraries/sqlvalidator.lib.php:68 #, php-format msgid "" "The SQL validator could not be initialized. Please check if you have " "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" -#: libraries/messages.inc.php:1222 libraries/replication_gui.lib.php:111 +#: libraries/messages.inc.php:1218 libraries/replication_gui.lib.php:111 #: server_status.php:627 tbl_change.php:324 tbl_printview.php:370 #: tbl_select.php:139 tbl_structure.php:730 msgid "Value" msgstr "مقدار" -#: libraries/messages.inc.php:1223 libraries/replication_gui.lib.php:110 +#: libraries/messages.inc.php:1219 libraries/replication_gui.lib.php:110 #: libraries/sql_query_form.lib.php:445 server_status.php:626 #: server_variables.php:52 msgid "Variable" msgstr "متغییر" -#: libraries/messages.inc.php:1225 server_export.php:21 +#: libraries/messages.inc.php:1221 server_export.php:21 #, fuzzy msgid "View dump (schema) of databases" msgstr "نمايش الگوي پايگاه داده" -#: libraries/messages.inc.php:1227 tbl_export.php:23 +#: libraries/messages.inc.php:1223 tbl_export.php:23 msgid "View dump (schema) of table" msgstr "نمايش الگوي جدول" -#: libraries/messages.inc.php:1231 view_create.php:142 +#: libraries/messages.inc.php:1227 view_create.php:142 msgid "VIEW name" msgstr "" -#: libraries/messages.inc.php:1237 main.php:205 +#: libraries/messages.inc.php:1233 main.php:205 msgid "Web server" msgstr "" -#: libraries/messages.inc.php:1239 libraries/mysql_charsets.lib.php:277 +#: libraries/messages.inc.php:1235 libraries/mysql_charsets.lib.php:277 #: libraries/mysql_charsets.lib.php:325 msgid "West European" msgstr "اروپای غربی" -#: libraries/messages.inc.php:1240 main.php:230 +#: libraries/messages.inc.php:1236 main.php:230 msgid "Wiki" msgstr "" -#: libraries/messages.inc.php:1241 server_privileges.php:2138 +#: libraries/messages.inc.php:1237 server_privileges.php:2138 msgid "wildcard" msgstr "" -#: libraries/messages.inc.php:1248 +#: libraries/messages.inc.php:1244 msgid "Export contents" msgstr "" -#: libraries/messages.inc.php:1249 +#: libraries/messages.inc.php:1245 msgid "Export functions" msgstr "" -#: libraries/messages.inc.php:1250 +#: libraries/messages.inc.php:1246 msgid "Export procedures" msgstr "" -#: libraries/messages.inc.php:1251 +#: libraries/messages.inc.php:1247 msgid "Export Structure Schemas (recommended)" msgstr "" -#: libraries/messages.inc.php:1252 +#: libraries/messages.inc.php:1248 #, fuzzy msgid "Export tables" msgstr "No tables" -#: libraries/messages.inc.php:1253 +#: libraries/messages.inc.php:1249 msgid "Export triggers" msgstr "" -#: libraries/messages.inc.php:1254 +#: libraries/messages.inc.php:1250 msgid "Export views" msgstr "" -#: libraries/messages.inc.php:1255 +#: libraries/messages.inc.php:1251 msgid "XML" msgstr "XML" -#: libraries/messages.inc.php:1259 server_privileges.php:592 +#: libraries/messages.inc.php:1255 server_privileges.php:592 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" -#: libraries/messages.inc.php:1260 +#: libraries/messages.inc.php:1256 msgid "\"zipped\"" msgstr "\"zipped\"" diff --git a/po/fi.po b/po/fi.po index 932a1fa38..ec646981b 100644 --- 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-05-13 11:25+0200\n" +"POT-Creation-Date: 2010-05-13 11:30+0200\n" "PO-Revision-Date: 2010-04-30 18:08+0200\n" "Last-Translator: \n" "Language-Team: finnish \n" @@ -15,19 +15,19 @@ msgstr "" "X-Generator: Pootle 2.0.1\n" #: browse_foreigners.php:38 browse_foreigners.php:59 -#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:870 +#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:866 #: server_privileges.php:1475 msgid "Show all" msgstr "Näytä kaikki" #: browse_foreigners.php:82 db_operations.php:648 -#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:394 -#: libraries/export/pdf.php:147 libraries/messages.inc.php:597 +#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394 +#: libraries/export/pdf.php:147 libraries/messages.inc.php:593 #: pdf_schema.php:283 pdf_schema.php:1123 pdf_schema.php:1139 msgid "Page number:" msgstr "Sivunumero:" -#: browse_foreigners.php:132 libraries/messages.inc.php:1242 +#: browse_foreigners.php:132 libraries/messages.inc.php:1238 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -40,7 +40,7 @@ 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/db_links.inc.php:75 -#: libraries/messages.inc.php:841 libraries/tbl_links.inc.php:63 +#: libraries/messages.inc.php:837 libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Etsi" @@ -49,12 +49,12 @@ msgstr "Etsi" #: db_search.php:362 db_structure.php:567 js/messages.php:48 #: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2267 +#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 #: 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 #: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614 -#: libraries/messages.inc.php:361 libraries/replication_gui.lib.php:73 +#: libraries/messages.inc.php:357 libraries/replication_gui.lib.php:73 #: libraries/replication_gui.lib.php:365 libraries/select_server.lib.php:104 #: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477 #: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782 @@ -74,33 +74,33 @@ msgid "Go" msgstr "Siirry" #: browse_foreigners.php:168 browse_foreigners.php:172 -#: libraries/Index.class.php:442 libraries/messages.inc.php:459 +#: libraries/Index.class.php:442 libraries/messages.inc.php:455 #: tbl_tracking.php:320 msgid "Keyname" msgstr "Avaimen nimi" #: browse_foreigners.php:169 browse_foreigners.php:171 -#: libraries/messages.inc.php:252 server_collations.php:55 +#: libraries/messages.inc.php:248 server_collations.php:55 #: server_collations.php:67 server_engines.php:59 server_status.php:628 msgid "Description" msgstr "Kuvaus" #: browse_foreigners.php:247 browse_foreigners.php:256 #: browse_foreigners.php:268 browse_foreigners.php:276 -#: libraries/messages.inc.php:1218 +#: libraries/messages.inc.php:1214 msgid "Use this value" msgstr "Käytä tätä arvoa" -#: db_create.php:46 libraries/messages.inc.php:215 +#: db_create.php:46 libraries/messages.inc.php:211 #, php-format msgid "Database %1$s has been created." msgstr "Tietokanta %1$s on luotu." -#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:232 +#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:228 msgid "Database comment: " msgstr "Tietokannan kommentti: " -#: db_datadict.php:165 libraries/messages.inc.php:1070 +#: db_datadict.php:165 libraries/messages.inc.php:1066 #: libraries/tbl_properties.inc.php:724 pdf_schema.php:1236 #: tbl_operations.php:345 tbl_printview.php:130 msgid "Table comments" @@ -109,7 +109,7 @@ msgstr "Taulun kommentit" #: db_datadict.php:174 db_qbe.php:174 libraries/Index.class.php:446 #: libraries/export/htmlword.php:244 libraries/export/latex.php:360 #: libraries/export/odt.php:294 libraries/export/texytext.php:233 -#: libraries/messages.inc.php:317 libraries/tbl_properties.inc.php:99 +#: libraries/messages.inc.php:313 libraries/tbl_properties.inc.php:99 #: libraries/tbl_properties.inc.php:275 pdf_schema.php:1262 #: pdf_schema.php:1283 tbl_change.php:308 tbl_indexes.php:189 #: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135 @@ -121,7 +121,7 @@ msgstr "Sarake" #: libraries/db_events.inc.php:31 libraries/db_routines.inc.php:42 #: 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/messages.inc.php:1181 +#: libraries/export/texytext.php:234 libraries/messages.inc.php:1177 #: libraries/tbl_properties.inc.php:100 pdf_schema.php:1263 #: pdf_schema.php:1284 server_privileges.php:2031 tbl_change.php:287 #: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313 @@ -133,7 +133,7 @@ msgstr "Tyyppi" #: db_datadict.php:177 libraries/Index.class.php:449 #: libraries/export/htmlword.php:246 libraries/export/latex.php:360 #: libraries/export/odt.php:300 libraries/export/texytext.php:235 -#: libraries/messages.inc.php:576 libraries/tbl_properties.inc.php:109 +#: libraries/messages.inc.php:572 libraries/tbl_properties.inc.php:109 #: pdf_schema.php:1265 pdf_schema.php:1286 tbl_change.php:323 #: tbl_printview.php:145 tbl_structure.php:181 tbl_tracking.php:276 #: tbl_tracking.php:327 @@ -142,7 +142,7 @@ msgstr "Tyhjä" #: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 -#: libraries/export/texytext.php:236 libraries/messages.inc.php:238 +#: libraries/export/texytext.php:236 libraries/messages.inc.php:234 #: libraries/tbl_properties.inc.php:106 pdf_schema.php:1266 #: pdf_schema.php:1287 tbl_printview.php:146 tbl_structure.php:182 #: tbl_tracking.php:277 @@ -151,14 +151,14 @@ msgstr "Oletusarvo" #: db_datadict.php:182 libraries/export/htmlword.php:249 #: libraries/export/latex.php:362 libraries/export/odt.php:307 -#: libraries/export/texytext.php:238 libraries/messages.inc.php:483 +#: libraries/export/texytext.php:238 libraries/messages.inc.php:479 #: pdf_schema.php:1268 pdf_schema.php:1289 tbl_printview.php:150 msgid "Links to" msgstr "Linkitys sarakkeeseen:" #: db_datadict.php:184 db_printview.php:112 libraries/export/htmlword.php:252 #: libraries/export/latex.php:365 libraries/export/odt.php:312 -#: libraries/export/texytext.php:241 libraries/messages.inc.php:163 +#: libraries/export/texytext.php:241 libraries/messages.inc.php:159 #: libraries/tbl_properties.inc.php:130 pdf_schema.php:1279 #: pdf_schema.php:1290 tbl_printview.php:152 msgid "Comments" @@ -167,7 +167,7 @@ msgstr "Kommentit" #: db_datadict.php:267 libraries/Index.class.php:359 #: 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/messages.inc.php:559 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:555 #: libraries/mult_submits.inc.php:263 pdf_schema.php:1344 #: server_privileges.php:1529 server_privileges.php:1540 #: server_privileges.php:1850 server_privileges.php:1855 @@ -179,7 +179,7 @@ msgstr "Ei" #: db_datadict.php:267 libraries/Index.class.php:360 #: libraries/Index.class.php:385 libraries/export/htmlword.php:322 #: libraries/export/latex.php:430 libraries/export/odt.php:368 -#: libraries/export/texytext.php:311 libraries/messages.inc.php:1257 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:1253 #: libraries/mult_submits.inc.php:45 libraries/mult_submits.inc.php:50 #: libraries/mult_submits.inc.php:55 libraries/mult_submits.inc.php:60 #: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:101 @@ -193,108 +193,108 @@ msgstr "Ei" msgid "Yes" msgstr "Kyllä" -#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:670 +#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:666 #: tbl_printview.php:498 msgid "Print" msgstr "Tulosta" -#: db_export.php:29 libraries/messages.inc.php:1226 +#: db_export.php:29 libraries/messages.inc.php:1222 msgid "View dump (schema) of database" msgstr "Tee vedos tietokannasta" #: db_export.php:33 db_printview.php:96 db_qbe.php:102 db_structure.php:51 -#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:568 +#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:564 #: navigation.php:346 msgid "No tables found in database." msgstr "Tietokannassa ei ole tauluja." -#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:845 +#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:841 #: server_export.php:27 msgid "Select All" msgstr "Valitse kaikki" -#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1188 +#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1184 #: server_export.php:29 msgid "Unselect All" msgstr "Poista valinta kaikista" -#: db_operations.php:38 libraries/messages.inc.php:213 tbl_create.php:54 +#: db_operations.php:38 libraries/messages.inc.php:209 tbl_create.php:54 msgid "The database name is empty!" msgstr "Tietokannan nimi on tyhjä!" -#: db_operations.php:236 libraries/messages.inc.php:753 +#: db_operations.php:236 libraries/messages.inc.php:749 #, php-format msgid "Database %s has been renamed to %s" msgstr "Tietokannan %s nimi on nyt %s" -#: db_operations.php:240 libraries/messages.inc.php:178 +#: db_operations.php:240 libraries/messages.inc.php:174 #, php-format msgid "Database %s has been copied to %s" msgstr "Tietokanta %s on kopioitu tietokantaan %s" -#: db_operations.php:410 libraries/messages.inc.php:236 +#: db_operations.php:410 libraries/messages.inc.php:232 msgid "Rename database to" msgstr "Muuta tietokannan nimi" -#: db_operations.php:415 libraries/messages.inc.php:161 +#: db_operations.php:415 libraries/messages.inc.php:157 #: server_processlist.php:57 msgid "Command" msgstr "Komento" -#: db_operations.php:425 libraries/messages.inc.php:58 tbl_change.php:1143 +#: db_operations.php:425 libraries/messages.inc.php:54 tbl_change.php:1143 msgid "and then" msgstr "ja sen jälkeen" -#: db_operations.php:451 libraries/messages.inc.php:233 +#: db_operations.php:451 libraries/messages.inc.php:229 msgid "Copy database to" msgstr "Luo tietokannasta toinen tietokanta nimellä" -#: db_operations.php:458 libraries/messages.inc.php:1043 +#: db_operations.php:458 libraries/messages.inc.php:1039 #: tbl_operations.php:526 tbl_tracking.php:388 msgid "Structure only" msgstr "Vain rakenne" -#: db_operations.php:459 libraries/messages.inc.php:1041 +#: db_operations.php:459 libraries/messages.inc.php:1037 #: tbl_operations.php:527 tbl_tracking.php:390 msgid "Structure and data" msgstr "Rakenne ja tiedot" -#: db_operations.php:460 libraries/messages.inc.php:229 tbl_operations.php:528 +#: db_operations.php:460 libraries/messages.inc.php:225 tbl_operations.php:528 #: tbl_tracking.php:389 msgid "Data only" msgstr "Vain tiedot" -#: db_operations.php:468 libraries/messages.inc.php:186 +#: db_operations.php:468 libraries/messages.inc.php:182 msgid "CREATE DATABASE before copying" msgstr "Suorita CREATE DATABASE ennen kopioimista" #: db_operations.php:471 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 -#: libraries/export/sql.php:82 libraries/messages.inc.php:30 +#: libraries/export/sql.php:82 libraries/messages.inc.php:26 #: tbl_operations.php:534 #, php-format msgid "Add %s" msgstr "Lisää %s" -#: db_operations.php:475 libraries/messages.inc.php:29 tbl_operations.php:297 +#: db_operations.php:475 libraries/messages.inc.php:25 tbl_operations.php:297 #: tbl_operations.php:536 msgid "Add AUTO_INCREMENT value" msgstr "Lisää AUTO_INCREMENT-arvo" -#: db_operations.php:479 libraries/messages.inc.php:31 tbl_operations.php:543 +#: db_operations.php:479 libraries/messages.inc.php:27 tbl_operations.php:543 msgid "Add constraints" msgstr "Lisää rajoitteet" -#: db_operations.php:492 libraries/messages.inc.php:1059 +#: db_operations.php:492 libraries/messages.inc.php:1055 msgid "Switch to copied database" msgstr "Siirry kopioituun tietokantaan" -#: db_operations.php:533 libraries/messages.inc.php:89 +#: db_operations.php:533 libraries/messages.inc.php:85 msgid "BLOB Repository" msgstr "BLOB-tietokanta" #: db_operations.php:536 db_tracking.php:76 libraries/common.lib.php:1350 -#: libraries/messages.inc.php:1037 libraries/server_links.inc.php:49 +#: libraries/messages.inc.php:1033 libraries/server_links.inc.php:49 #: server_processlist.php:59 tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "Tila" @@ -306,11 +306,11 @@ msgctxt "BLOB repository" msgid "Enabled" msgstr "Päällä" -#: db_operations.php:548 libraries/messages.inc.php:93 +#: db_operations.php:548 libraries/messages.inc.php:89 msgid "Disable" msgstr "Poista käytöstä" -#: db_operations.php:558 libraries/messages.inc.php:90 +#: db_operations.php:558 libraries/messages.inc.php:86 msgid "Damaged" msgstr "Vioittunut" @@ -328,12 +328,12 @@ msgctxt "BLOB repository" msgid "Disabled" msgstr "Pois päältä" -#: db_operations.php:574 libraries/messages.inc.php:96 +#: db_operations.php:574 libraries/messages.inc.php:92 msgid "Enable" msgstr "Ota käyttöön" #: db_operations.php:598 libraries/Index.class.php:448 -#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:158 +#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:154 #: 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:361 @@ -342,7 +342,7 @@ msgstr "Ota käyttöön" msgid "Collation" msgstr "Aakkosjärjestys" -#: db_operations.php:609 libraries/messages.inc.php:742 main.php:316 +#: db_operations.php:609 libraries/messages.inc.php:738 main.php:316 #: pdf_schema.php:34 #, php-format msgid "" @@ -352,58 +352,58 @@ msgstr "" "Linkitettyihin tauluihin liittyvät lisäominaisuudet eivät ole käytössä. " "Katso %slisätietoja%s." -#: db_operations.php:645 libraries/messages.inc.php:264 pdf_pages.php:528 +#: db_operations.php:645 libraries/messages.inc.php:260 pdf_pages.php:528 msgid "Display PDF schema" msgstr "Näytä PDF-kaavio" -#: db_operations.php:661 libraries/messages.inc.php:877 pdf_pages.php:529 +#: db_operations.php:661 libraries/messages.inc.php:873 pdf_pages.php:529 msgid "Show grid" msgstr "Näytä ruudukko" -#: db_operations.php:664 libraries/messages.inc.php:874 pdf_pages.php:530 +#: db_operations.php:664 libraries/messages.inc.php:870 pdf_pages.php:530 msgid "Show color" msgstr "Näytä värit" -#: db_operations.php:666 libraries/messages.inc.php:998 pdf_pages.php:531 +#: db_operations.php:666 libraries/messages.inc.php:994 pdf_pages.php:531 msgid "Show dimension of tables" msgstr "Näytä taulujen ulottuvuus" -#: db_operations.php:669 libraries/messages.inc.php:52 pdf_pages.php:532 +#: db_operations.php:669 libraries/messages.inc.php:48 pdf_pages.php:532 msgid "Display all tables with the same width" msgstr "Näytä kaikki taulut samanlevyisinä?" -#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:227 +#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:223 #: pdf_pages.php:533 msgid "Data Dictionary" msgstr "Tietosanasto" -#: db_operations.php:674 libraries/messages.inc.php:884 pdf_pages.php:534 +#: db_operations.php:674 libraries/messages.inc.php:880 pdf_pages.php:534 msgid "Only show keys" msgstr "Näytä vain avaimet" -#: db_operations.php:676 libraries/messages.inc.php:875 pdf_pages.php:535 +#: db_operations.php:676 libraries/messages.inc.php:871 pdf_pages.php:535 msgid "Data Dictionary Format" msgstr "Tietosanaston tallennusmuoto" -#: db_operations.php:678 libraries/messages.inc.php:464 pdf_pages.php:537 +#: db_operations.php:678 libraries/messages.inc.php:460 pdf_pages.php:537 msgid "Landscape" msgstr "Vaakatasossa" -#: db_operations.php:679 libraries/messages.inc.php:663 pdf_pages.php:538 +#: db_operations.php:679 libraries/messages.inc.php:659 pdf_pages.php:538 msgid "Portrait" msgstr "Pystytasossa" -#: db_operations.php:682 libraries/messages.inc.php:599 pdf_pages.php:541 +#: db_operations.php:682 libraries/messages.inc.php:595 pdf_pages.php:541 msgid "Paper size" msgstr "Paperin koko" -#: db_operations.php:706 libraries/messages.inc.php:281 +#: db_operations.php:706 libraries/messages.inc.php:277 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 libraries/messages.inc.php:1087 +#: libraries/header.inc.php:126 libraries/messages.inc.php:1083 #: pdf_pages.php:405 server_privileges.php:1626 server_privileges.php:1682 #: server_privileges.php:1946 server_synchronize.php:423 #: server_synchronize.php:866 tbl_tracking.php:592 test/theme.php:75 @@ -411,176 +411,176 @@ msgid "Table" msgstr "Taulu" #: db_printview.php:105 libraries/db_structure.lib.php:56 -#: libraries/messages.inc.php:735 +#: libraries/messages.inc.php:731 msgid "Records" msgstr "Rivit" #: db_printview.php:109 libraries/db_structure.lib.php:67 -#: libraries/messages.inc.php:1003 tbl_indexes.php:190 +#: libraries/messages.inc.php:999 tbl_indexes.php:190 msgid "Size" msgstr "Koko" #: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 -#: libraries/export/sql.php:899 libraries/messages.inc.php:436 +#: libraries/export/sql.php:899 libraries/messages.inc.php:432 msgid "in use" msgstr "käytössä" #: db_printview.php:187 libraries/db_info.inc.php:88 -#: libraries/export/sql.php:514 libraries/messages.inc.php:1032 +#: libraries/export/sql.php:514 libraries/messages.inc.php:1028 #: pdf_schema.php:1241 tbl_printview.php:434 tbl_structure.php:810 msgid "Creation" msgstr "Luotu" #: db_printview.php:196 libraries/db_info.inc.php:93 -#: libraries/export/sql.php:519 libraries/messages.inc.php:1036 +#: libraries/export/sql.php:519 libraries/messages.inc.php:1032 #: pdf_schema.php:1246 tbl_printview.php:444 tbl_structure.php:818 msgid "Last update" msgstr "Viimeksi päivitetty" #: db_printview.php:205 libraries/db_info.inc.php:98 -#: libraries/export/sql.php:524 libraries/messages.inc.php:1031 +#: libraries/export/sql.php:524 libraries/messages.inc.php:1027 #: pdf_schema.php:1251 tbl_printview.php:454 tbl_structure.php:826 msgid "Last check" msgstr "Viimeksi tarkistettu" -#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1085 +#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1081 #, php-format msgid "%s table(s)" msgstr "%s taulu(a)" #: db_qbe.php:29 libraries/display_tbl.lib.php:1981 -#: libraries/messages.inc.php:1051 libraries/sql_query_form.lib.php:140 +#: libraries/messages.inc.php:1047 libraries/sql_query_form.lib.php:140 #: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131 #: view_operations.php:62 msgid "Your SQL query has been executed successfully" msgstr "SQL-kyselyn suoritus onnistui" -#: db_qbe.php:42 libraries/messages.inc.php:371 +#: db_qbe.php:42 libraries/messages.inc.php:367 msgid "You have to choose at least one column to display" msgstr "Valitse vähintään yksi sarake" #: db_qbe.php:200 libraries/db_structure.lib.php:104 -#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1014 +#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1010 msgid "Sort" msgstr "Järjestys" #: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111 #: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828 -#: libraries/messages.inc.php:69 server_databases.php:170 +#: libraries/messages.inc.php:65 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314 msgid "Ascending" msgstr "Nouseva" #: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119 #: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825 -#: libraries/messages.inc.php:251 server_databases.php:170 +#: libraries/messages.inc.php:247 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315 msgid "Descending" msgstr "Laskeva" #: db_qbe.php:264 db_tracking.php:78 libraries/display_tbl.lib.php:308 -#: libraries/messages.inc.php:888 tbl_change.php:277 tbl_tracking.php:597 +#: libraries/messages.inc.php:884 tbl_change.php:277 tbl_tracking.php:597 msgid "Show" msgstr "Näytä" -#: db_qbe.php:300 libraries/messages.inc.php:202 +#: db_qbe.php:300 libraries/messages.inc.php:198 msgid "Criteria" msgstr "Hakuehdot" #: db_qbe.php:353 db_qbe.php:435 db_qbe.php:527 db_qbe.php:558 -#: libraries/messages.inc.php:718 +#: libraries/messages.inc.php:714 msgid "Ins" msgstr "Lisää" #: db_qbe.php:357 db_qbe.php:439 db_qbe.php:524 db_qbe.php:555 -#: libraries/messages.inc.php:56 +#: libraries/messages.inc.php:52 msgid "And" msgstr "Ja" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:529 db_qbe.php:560 -#: libraries/messages.inc.php:717 +#: libraries/messages.inc.php:713 msgid "Del" 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/messages.inc.php:592 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:588 #: libraries/tbl_properties.inc.php:779 server_privileges.php:258 #: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288 msgid "Or" msgstr "Tai" -#: db_qbe.php:507 libraries/messages.inc.php:516 +#: db_qbe.php:507 libraries/messages.inc.php:512 msgid "Modify" msgstr "Muokkaa" -#: db_qbe.php:584 libraries/messages.inc.php:33 +#: db_qbe.php:584 libraries/messages.inc.php:29 msgid "Add/Delete Criteria Row" msgstr "Lisää tai poista hakuehtoja" -#: db_qbe.php:596 libraries/messages.inc.php:32 +#: db_qbe.php:596 libraries/messages.inc.php:28 msgid "Add/Delete Field Columns" msgstr "Lisää tai poista sarakkeita" -#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1192 +#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1188 msgid "Update Query" msgstr "Päivitä kysely" -#: db_qbe.php:617 libraries/messages.inc.php:1216 +#: db_qbe.php:617 libraries/messages.inc.php:1212 msgid "Use Tables" msgstr "Käytä tauluja" -#: db_qbe.php:640 libraries/messages.inc.php:723 +#: db_qbe.php:640 libraries/messages.inc.php:719 #, php-format msgid "SQL query on database %s:" msgstr "Suorita SQL-kysely tietokannassa %s:" -#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:823 +#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:819 msgid "Submit Query" msgstr "Suorita" #: db_search.php:68 libraries/auth/config.auth.lib.php:84 #: libraries/auth/config.auth.lib.php:103 #: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52 -#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:26 +#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:22 msgid "Access denied" msgstr "Käyttö estetty" -#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:836 +#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:832 msgid "at least one of the words" msgstr "vähintään yksi sanoista" -#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:837 +#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:833 msgid "all words" msgstr "kaikki sanat" -#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:838 +#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:834 msgid "the exact phrase" msgstr "koko lause" -#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:839 +#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:835 msgid "as regular expression" msgstr "regexp-haku" -#: db_search.php:242 libraries/messages.inc.php:840 +#: db_search.php:242 libraries/messages.inc.php:836 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Tulokset hakusanalla \"%s\" %s:" -#: db_search.php:260 libraries/messages.inc.php:579 +#: db_search.php:260 libraries/messages.inc.php:575 #, php-format msgid "%s match(es) inside table %s" 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/messages.inc.php:108 +#: db_structure.php:105 libraries/messages.inc.php:104 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468 msgid "Browse" msgstr "Selaa" #: db_search.php:272 libraries/display_tbl.lib.php:1165 -#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:243 +#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:239 #: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406 #: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377 #: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216 @@ -588,45 +588,45 @@ msgstr "Selaa" msgid "Delete" msgstr "Poista" -#: db_search.php:285 libraries/messages.inc.php:580 +#: db_search.php:285 libraries/messages.inc.php:576 #, php-format msgid "Total: %s match(es)" msgstr "Yhteensä: %s hakutulosta" -#: db_search.php:299 libraries/messages.inc.php:832 +#: db_search.php:299 libraries/messages.inc.php:828 msgid "Search in database" msgstr "Hae tietokannasta" -#: db_search.php:302 libraries/messages.inc.php:835 +#: db_search.php:302 libraries/messages.inc.php:831 msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgstr "Haettavat sanat tai arvot (%-merkkiä voi käyttää jokerimerkkinä):" -#: db_search.php:307 libraries/messages.inc.php:842 +#: db_search.php:307 libraries/messages.inc.php:838 msgid "Find:" msgstr "Hae:" -#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1017 +#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1013 msgid "Words are separated by a space character (\" \")." msgstr "Sanat erotetaan välilyönnein." -#: db_search.php:325 libraries/messages.inc.php:834 +#: db_search.php:325 libraries/messages.inc.php:830 msgid "Inside table(s):" msgstr "Tauluista:" -#: db_search.php:355 libraries/messages.inc.php:833 +#: db_search.php:355 libraries/messages.inc.php:829 msgid "Inside field:" 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/messages.inc.php:431 libraries/sql_query_form.lib.php:334 +#: libraries/messages.inc.php:427 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/db_links.inc.php:63 libraries/export/latex.php:337 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:1048 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:1044 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 #: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269 msgid "Structure" @@ -635,8 +635,8 @@ 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:1642 -#: libraries/db_links.inc.php:100 libraries/messages.inc.php:272 +#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/db_links.inc.php:100 libraries/messages.inc.php:268 #: 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 @@ -646,40 +646,40 @@ 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:1641 -#: libraries/messages.inc.php:284 libraries/mult_submits.inc.php:39 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: libraries/messages.inc.php:280 libraries/mult_submits.inc.php:39 #: libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Tyhjennä" -#: db_structure.php:316 libraries/messages.inc.php:1075 +#: db_structure.php:316 libraries/messages.inc.php:1071 #: libraries/tbl_links.inc.php:100 #, php-format msgid "Table %s has been emptied" msgstr "Taulu %s on tyhjennetty" -#: db_structure.php:326 libraries/messages.inc.php:1229 +#: db_structure.php:326 libraries/messages.inc.php:1225 #: 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/messages.inc.php:1074 +#: db_structure.php:326 libraries/messages.inc.php:1070 #: libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "Taulu %s on poistettu" -#: db_structure.php:333 libraries/messages.inc.php:1128 +#: db_structure.php:333 libraries/messages.inc.php:1124 msgid "Tracking is active." msgstr "Seuranta on käytössä." -#: db_structure.php:335 libraries/messages.inc.php:1129 +#: db_structure.php:335 libraries/messages.inc.php:1125 msgid "Tracking is not active." msgstr "Seuranta ei ole käytössä." #: db_structure.php:420 libraries/display_tbl.lib.php:1944 -#: libraries/messages.inc.php:1228 +#: libraries/messages.inc.php:1224 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -689,83 +689,83 @@ msgstr "" "sohjeista%s." #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 -#: libraries/messages.inc.php:1233 libraries/tbl_info.inc.php:66 +#: libraries/messages.inc.php:1229 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/messages.inc.php:773 libraries/server_links.inc.php:70 +#: libraries/messages.inc.php:769 libraries/server_links.inc.php:70 #: server_replication.php:33 server_replication.php:164 server_status.php:258 msgid "Replication" msgstr "Replikaatio" -#: db_structure.php:489 libraries/messages.inc.php:1053 +#: db_structure.php:489 libraries/messages.inc.php:1049 msgid "Sum" msgstr "Summa" #: db_structure.php:496 libraries/StorageEngine.class.php:356 -#: libraries/messages.inc.php:239 +#: libraries/messages.inc.php:235 #, 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 #: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086 -#: libraries/messages.inc.php:1243 libraries/mult_submits.inc.php:16 +#: libraries/messages.inc.php:1239 libraries/mult_submits.inc.php:16 #: server_databases.php:346 server_databases.php:351 #: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465 msgid "With selected:" msgstr "Valitut:" #: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: libraries/messages.inc.php:148 server_databases.php:348 +#: libraries/messages.inc.php:144 server_databases.php:348 #: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459 msgid "Check All" msgstr "Valitse kaikki" #: db_structure.php:531 libraries/display_tbl.lib.php:2077 -#: libraries/messages.inc.php:1184 libraries/replication_gui.lib.php:33 +#: libraries/messages.inc.php:1180 libraries/replication_gui.lib.php:33 #: server_databases.php:350 server_privileges.php:533 #: server_privileges.php:1564 tbl_structure.php:463 msgid "Uncheck All" msgstr "Poista valinta kaikista" -#: db_structure.php:536 libraries/messages.inc.php:150 +#: db_structure.php:536 libraries/messages.inc.php:146 msgid "Check tables having overhead" msgstr "Valitse taulut, joissa on ylijäämää" #: db_structure.php:547 db_structure.php:548 db_structure.php:599 -#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:672 +#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:668 #: libraries/mult_submits.inc.php:28 tbl_structure.php:493 #: tbl_structure.php:495 msgid "Print view" msgstr "Tulostusversio" -#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:153 +#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:149 #: libraries/mult_submits.inc.php:42 tbl_operations.php:579 msgid "Check table" msgstr "Tarkista taulu" -#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:590 +#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:586 #: libraries/mult_submits.inc.php:47 tbl_operations.php:619 #: tbl_structure.php:710 tbl_structure.php:712 msgid "Optimize table" msgstr "Optimoi taulu" -#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:758 +#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:754 #: libraries/mult_submits.inc.php:52 tbl_operations.php:609 msgid "Repair table" msgstr "Korjaa taulu" -#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:55 +#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:51 #: libraries/mult_submits.inc.php:57 tbl_operations.php:599 msgid "Analyze table" msgstr "Analysoi taulu" #: db_structure.php:557 db_structure.php:558 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/messages.inc.php:310 +#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:306 #: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84 #: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109 #: server_privileges.php:1341 setup/frames/menu.inc.php:22 @@ -773,7 +773,7 @@ msgstr "Analysoi taulu" msgid "Export" msgstr "Vienti" -#: db_tracking.php:66 libraries/messages.inc.php:1151 +#: db_tracking.php:66 libraries/messages.inc.php:1147 msgid "Tracked tables" msgstr "Seurattavat taulut" @@ -781,7 +781,7 @@ msgstr "Seurattavat taulut" #: 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/header_printview.inc.php:58 libraries/messages.inc.php:212 +#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:208 #: navigation.php:233 server_databases.php:169 server_privileges.php:1621 #: server_privileges.php:1682 server_privileges.php:1940 #: server_processlist.php:56 server_synchronize.php:1179 @@ -789,76 +789,76 @@ msgstr "Seurattavat taulut" msgid "Database" msgstr "Tietokanta" -#: db_tracking.php:73 libraries/messages.inc.php:1146 +#: db_tracking.php:73 libraries/messages.inc.php:1142 msgid "Last version" msgstr "Viimeinen versio" -#: db_tracking.php:74 libraries/messages.inc.php:1145 tbl_tracking.php:594 +#: db_tracking.php:74 libraries/messages.inc.php:1141 tbl_tracking.php:594 msgid "Created" msgstr "Luotu" -#: db_tracking.php:75 libraries/messages.inc.php:1147 tbl_tracking.php:595 +#: db_tracking.php:75 libraries/messages.inc.php:1143 tbl_tracking.php:595 msgid "Updated" msgstr "Päivitetty" #: db_tracking.php:77 libraries/Index.class.php:440 -#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:27 +#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:23 #: server_databases.php:203 server_privileges.php:1503 #: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187 msgid "Action" msgstr "Toiminnot" -#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:247 +#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:243 msgid "Delete tracking data for this table" msgstr "Poista tämän taulun seurantatiedot" -#: db_tracking.php:106 libraries/messages.inc.php:1142 tbl_tracking.php:548 +#: db_tracking.php:106 libraries/messages.inc.php:1138 tbl_tracking.php:548 #: tbl_tracking.php:606 tbl_tracking.php:613 msgid "active" msgstr "käytössä" -#: db_tracking.php:108 libraries/messages.inc.php:1143 tbl_tracking.php:550 +#: db_tracking.php:108 libraries/messages.inc.php:1139 tbl_tracking.php:550 #: tbl_tracking.php:608 tbl_tracking.php:610 msgid "not active" msgstr "ei käytössä" -#: db_tracking.php:121 libraries/messages.inc.php:1160 +#: db_tracking.php:121 libraries/messages.inc.php:1156 msgid "Versions" msgstr "Versiot" -#: db_tracking.php:122 libraries/messages.inc.php:1132 tbl_tracking.php:379 +#: db_tracking.php:122 libraries/messages.inc.php:1128 tbl_tracking.php:379 #: tbl_tracking.php:624 msgid "Tracking report" msgstr "Seurantaraportti" -#: db_tracking.php:123 libraries/messages.inc.php:1144 tbl_tracking.php:251 +#: db_tracking.php:123 libraries/messages.inc.php:1140 tbl_tracking.php:251 #: tbl_tracking.php:624 msgid "Structure snapshot" msgstr "Rakenteen kuvaus" -#: db_tracking.php:152 libraries/messages.inc.php:1154 +#: db_tracking.php:152 libraries/messages.inc.php:1150 msgid "Untracked tables" msgstr "Seuraamattomat taulut" -#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1153 +#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1149 #: tbl_structure.php:529 tbl_structure.php:531 msgid "Track table" msgstr "Seuraa taulua" -#: db_tracking.php:200 libraries/messages.inc.php:1121 +#: db_tracking.php:200 libraries/messages.inc.php:1117 msgid "Database Log" msgstr "Tietokantaloki" -#: export.php:62 libraries/messages.inc.php:312 +#: export.php:62 libraries/messages.inc.php:308 msgid "Selected export type has to be saved in file!" msgstr "Valittu vientityyppi on tallennettava tiedostoon!" -#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:567 +#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:563 #, php-format msgid "Insufficient space to save the file %s." msgstr "Liian vähän tilaa tiedoston %s tallentamiseen." -#: export.php:294 libraries/messages.inc.php:324 +#: export.php:294 libraries/messages.inc.php:320 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -866,17 +866,17 @@ msgstr "" "Tiedosto %s on jo olemassa palvelimella, vaihda tiedostonimeä tai tarkista " "korvausasetuksen tila." -#: export.php:298 export.php:302 libraries/messages.inc.php:562 +#: export.php:298 export.php:302 libraries/messages.inc.php:558 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Palvelimella ei ole lupaa tallentaa tiedostoa %s." -#: export.php:629 libraries/messages.inc.php:276 +#: export.php:629 libraries/messages.inc.php:272 #, php-format msgid "Dump has been saved to file %s." msgstr "Vedos tallennettiin tiedostoon %s." -#: import.php:60 libraries/messages.inc.php:1202 +#: import.php:60 libraries/messages.inc.php:1198 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation%" @@ -886,14 +886,14 @@ msgstr "" "tämän rajoituksen muuttamisesta lisätietoja %sohjeista%s." #: import.php:279 import.php:332 libraries/File.class.php:849 -#: libraries/File.class.php:961 libraries/messages.inc.php:325 +#: libraries/File.class.php:961 libraries/messages.inc.php:321 msgid "File could not be read" msgstr "Tiedostoa ei voi lukea" #: import.php:287 import.php:296 import.php:315 import.php:324 #: libraries/File.class.php:1031 libraries/File.class.php:1039 #: libraries/File.class.php:1055 libraries/File.class.php:1063 -#: libraries/messages.inc.php:1189 +#: libraries/messages.inc.php:1185 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -903,7 +903,7 @@ msgstr "" "kyseiselle muodolle ei joko ole toteutettu, tai se on asetuksin poistettu " "käytöstä." -#: import.php:337 libraries/messages.inc.php:547 +#: import.php:337 libraries/messages.inc.php:543 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -913,29 +913,29 @@ msgstr "" "ylitti PHP:n asetusten salliman enimmäiskoon. Katso FAQ 1.16." #: import.php:372 libraries/display_import.lib.php:24 -#: libraries/messages.inc.php:125 +#: libraries/messages.inc.php:121 msgid "Could not load import plugins, please check your installation!" msgstr "Tuontiin tarvittavaa lisäosaa ei voida tuoda, tarkista asetukset!" -#: import.php:397 libraries/messages.inc.php:102 +#: import.php:397 libraries/messages.inc.php:98 msgid "The bookmark has been deleted." msgstr "Kirjanmerkki on poistettu." -#: import.php:401 libraries/messages.inc.php:879 +#: import.php:401 libraries/messages.inc.php:875 msgid "Showing bookmark" msgstr "Näytetään kirjanmerkki" -#: import.php:403 libraries/messages.inc.php:101 +#: import.php:403 libraries/messages.inc.php:97 #, php-format msgid "Bookmark %s created" msgstr "Kirjanmerkki %s luotu" -#: import.php:409 import.php:415 libraries/messages.inc.php:407 +#: import.php:409 import.php:415 libraries/messages.inc.php:403 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Tuonti onnistui, %d kyselyä suoritettu." -#: import.php:424 libraries/messages.inc.php:1107 +#: import.php:424 libraries/messages.inc.php:1103 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -943,11 +943,11 @@ msgstr "" "Skriptin suoritus aikakatkaistiin. Jos haluat suorittaa tuonnin loppuun, " "lähetä sama tiedosto uudestaan, ja tuonti jatkuu." -#: index.php:190 libraries/messages.inc.php:553 +#: index.php:190 libraries/messages.inc.php:549 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "PhpMyAdmin toimii parhaiten kehyksiä tukevalla selaimella." -#: js/messages.php:25 libraries/messages.inc.php:155 +#: js/messages.php:25 libraries/messages.inc.php:151 #: server_synchronize.php:345 server_synchronize.php:357 #: server_synchronize.php:373 server_synchronize.php:380 #: server_synchronize.php:739 server_synchronize.php:767 @@ -955,117 +955,117 @@ msgstr "PhpMyAdmin toimii parhaiten kehyksiä tukevalla selaimella." msgid "Click to select" msgstr "Valitse painamalla" -#: js/messages.php:26 libraries/messages.inc.php:156 +#: js/messages.php:26 libraries/messages.inc.php:152 msgid "Click to unselect" msgstr "Poista valinta painamalla" #: js/messages.php:27 libraries/import.lib.php:103 -#: libraries/messages.inc.php:550 sql.php:89 +#: libraries/messages.inc.php:546 sql.php:89 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" -kyselyjen käyttö on estetty." -#: js/messages.php:30 libraries/messages.inc.php:270 +#: js/messages.php:30 libraries/messages.inc.php:266 #: libraries/mult_submits.inc.php:258 sql.php:188 msgid "Do you really want to " msgstr "Haluatko varmasti " -#: js/messages.php:31 libraries/messages.inc.php:271 +#: js/messages.php:31 libraries/messages.inc.php:267 #: libraries/mult_submits.inc.php:258 sql.php:172 msgid "You are about to DESTROY a complete database!" msgstr "Olet aikeissasi HÄVITTÄÄ kokonaisen tietokannan!" -#: js/messages.php:34 libraries/messages.inc.php:94 +#: js/messages.php:34 libraries/messages.inc.php:90 msgid "You are about to DISABLE a BLOB Repository!" msgstr "Olet POISTAMASSA KÄYTÖSTÄ BLOB-tietokannan!" -#: js/messages.php:35 libraries/messages.inc.php:91 +#: js/messages.php:35 libraries/messages.inc.php:87 #, php-format msgid "Are you sure you want to disable all BLOB references for database %s?" msgstr "" "Haluatko varmasti poistaa käytöstä kaikki BLOB-viittaukset tietokannasta %s?" -#: js/messages.php:38 libraries/messages.inc.php:342 +#: js/messages.php:38 libraries/messages.inc.php:338 msgid "Missing value in the form!" msgstr "Tarvittava tieto puuttuu lomakkeesta!" -#: js/messages.php:39 libraries/messages.inc.php:570 +#: js/messages.php:39 libraries/messages.inc.php:566 msgid "This is not a number!" msgstr "Tämä ei ole numero!" -#: js/messages.php:42 libraries/messages.inc.php:380 +#: js/messages.php:42 libraries/messages.inc.php:376 msgid "The host name is empty!" msgstr "Palvelimen nimi puuttuu!" -#: js/messages.php:43 libraries/messages.inc.php:1208 +#: js/messages.php:43 libraries/messages.inc.php:1204 msgid "The user name is empty!" msgstr "Käyttäjän nimi puuttuu!" -#: js/messages.php:44 libraries/messages.inc.php:607 +#: js/messages.php:44 libraries/messages.inc.php:603 #: server_privileges.php:1197 user_password.php:70 msgid "The password is empty!" msgstr "Salasana puuttuu!" -#: js/messages.php:45 libraries/messages.inc.php:609 +#: js/messages.php:45 libraries/messages.inc.php:605 #: server_privileges.php:1195 user_password.php:73 msgid "The passwords aren't the same!" msgstr "Salasanat eivät ole samat!" -#: js/messages.php:49 libraries/messages.inc.php:123 pmd_general.php:342 +#: js/messages.php:49 libraries/messages.inc.php:119 pmd_general.php:342 #: pmd_general.php:379 msgid "Cancel" msgstr "Peruuta" -#: js/messages.php:52 libraries/messages.inc.php:514 +#: js/messages.php:52 libraries/messages.inc.php:510 msgid "Modifications have been saved" msgstr "Muutokset tallennettu" -#: js/messages.php:53 libraries/messages.inc.php:741 +#: js/messages.php:53 libraries/messages.inc.php:737 msgid "Relation deleted" msgstr "Relaatio poistettu" -#: js/messages.php:54 libraries/messages.inc.php:340 +#: js/messages.php:54 libraries/messages.inc.php:336 msgid "FOREIGN KEY relation added" msgstr "FOREIGN KEY -relaatio lisätty" -#: js/messages.php:55 libraries/messages.inc.php:434 +#: js/messages.php:55 libraries/messages.inc.php:430 msgid "Internal relation added" msgstr "Sisäinen relaatio luotu" -#: js/messages.php:56 libraries/messages.inc.php:299 +#: js/messages.php:56 libraries/messages.inc.php:295 msgid "Error: Relation not added." msgstr "Virhe: Relaatiota ei luotu." -#: js/messages.php:57 libraries/messages.inc.php:300 +#: js/messages.php:57 libraries/messages.inc.php:296 msgid "Error: relation already exists." msgstr "Virhe: relaatio on jo olemassa." -#: js/messages.php:58 libraries/messages.inc.php:302 +#: js/messages.php:58 libraries/messages.inc.php:298 msgid "Error saving coordinates for Designer." msgstr "Virhe tallennettaessa koordinaatteja Suunnittelijaan." -#: js/messages.php:59 libraries/messages.inc.php:351 +#: js/messages.php:59 libraries/messages.inc.php:347 #: libraries/relation.lib.php:107 msgid "General relation features" msgstr "Yleiset relaatio-ominaisuudet" -#: js/messages.php:59 libraries/messages.inc.php:260 +#: js/messages.php:59 libraries/messages.inc.php:256 #: libraries/relation.lib.php:101 libraries/relation.lib.php:108 msgid "Disabled" msgstr "Pois päältä" -#: js/messages.php:60 libraries/messages.inc.php:850 +#: js/messages.php:60 libraries/messages.inc.php:846 msgid "Select referenced key" msgstr "Valitse viitattava avain" -#: js/messages.php:61 libraries/messages.inc.php:848 +#: js/messages.php:61 libraries/messages.inc.php:844 msgid "Select Foreign Key" msgstr "Valitse liiteavain" -#: js/messages.php:62 libraries/messages.inc.php:653 +#: js/messages.php:62 libraries/messages.inc.php:649 msgid "Please select the primary key or a unique key" msgstr "Valitse perusavain tai uniikki avain" -#: js/messages.php:63 libraries/messages.inc.php:142 pmd_general.php:77 +#: js/messages.php:63 libraries/messages.inc.php:138 pmd_general.php:77 #: tbl_relation.php:548 msgid "Choose field to display" msgstr "Valitse näytettävä sarake" @@ -1085,9 +1085,9 @@ msgid "Prev" msgstr "Edellinen" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2332 -#: libraries/common.lib.php:2335 libraries/display_tbl.lib.php:338 -#: libraries/messages.inc.php:543 server_binlog.php:205 server_binlog.php:207 +#: js/messages.php:77 libraries/common.lib.php:2344 +#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: libraries/messages.inc.php:539 server_binlog.php:205 server_binlog.php:207 #: tbl_printview.php:424 tbl_structure.php:802 msgid "Next" msgstr "Seuraava" @@ -1162,27 +1162,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1543 +#: js/messages.php:97 libraries/common.lib.php:1555 msgid "Jan" msgstr "Tammi" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1545 +#: js/messages.php:99 libraries/common.lib.php:1557 msgid "Feb" msgstr "Helmi" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1547 +#: js/messages.php:101 libraries/common.lib.php:1559 msgid "Mar" msgstr "Maalis" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1549 +#: js/messages.php:103 libraries/common.lib.php:1561 msgid "Apr" msgstr "Huhti" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1551 +#: js/messages.php:105 libraries/common.lib.php:1563 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1190,37 +1190,37 @@ msgid "May" msgstr "Touko" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1553 +#: js/messages.php:107 libraries/common.lib.php:1565 msgid "Jun" msgstr "Kesä" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1555 +#: js/messages.php:109 libraries/common.lib.php:1567 msgid "Jul" msgstr "Heinä" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1557 +#: js/messages.php:111 libraries/common.lib.php:1569 msgid "Aug" msgstr "Elo" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1559 +#: js/messages.php:113 libraries/common.lib.php:1571 msgid "Sep" msgstr "Syys" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1561 +#: js/messages.php:115 libraries/common.lib.php:1573 msgid "Oct" msgstr "Loka" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1563 +#: js/messages.php:117 libraries/common.lib.php:1575 msgid "Nov" msgstr "Marras" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1565 +#: js/messages.php:119 libraries/common.lib.php:1577 msgid "Dec" msgstr "Joulu" @@ -1261,37 +1261,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1568 +#: js/messages.php:132 libraries/common.lib.php:1580 msgid "Sun" msgstr "Su" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1570 +#: js/messages.php:134 libraries/common.lib.php:1582 msgid "Mon" msgstr "Ma" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1572 +#: js/messages.php:136 libraries/common.lib.php:1584 msgid "Tue" msgstr "Ti" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1574 +#: js/messages.php:138 libraries/common.lib.php:1586 msgid "Wed" msgstr "Ke" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1576 +#: js/messages.php:140 libraries/common.lib.php:1588 msgid "Thu" msgstr "To" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1578 +#: js/messages.php:142 libraries/common.lib.php:1590 msgid "Fri" msgstr "Pe" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1580 +#: js/messages.php:144 libraries/common.lib.php:1592 msgid "Sat" msgstr "La" @@ -1367,23 +1367,23 @@ msgstr "käytössä" msgid "Second" msgstr "sekunnissa" -#: libraries/Config.class.php:1015 libraries/messages.inc.php:338 +#: libraries/Config.class.php:1015 libraries/messages.inc.php:334 msgid "Font size" msgstr "Fonttikoko" #: libraries/File.class.php:344 libraries/File.class.php:432 #: libraries/File.class.php:569 libraries/File.class.php:708 -#: libraries/messages.inc.php:1201 +#: libraries/messages.inc.php:1197 msgid "Unknown error in file upload." msgstr "Tuntematon virhe tiedostoa lähetettäessä." -#: libraries/File.class.php:414 libraries/messages.inc.php:1198 +#: libraries/File.class.php:414 libraries/messages.inc.php:1194 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "Lähetyn tidoston koko ylittää php.ini-tiedoston upload_max_filesize-" "asetuksen arvon." -#: libraries/File.class.php:417 libraries/messages.inc.php:1197 +#: libraries/File.class.php:417 libraries/messages.inc.php:1193 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -1391,56 +1391,56 @@ msgstr "" "Lähetetyn tiedoston koko ylittää HTML-lomakkeessa määritetyn MAX_FILE_SIZE-" "asetuksen arvon." -#: libraries/File.class.php:420 libraries/messages.inc.php:1200 +#: libraries/File.class.php:420 libraries/messages.inc.php:1196 msgid "The uploaded file was only partially uploaded." msgstr "Tiedosto lähetettiin vain osittain." -#: libraries/File.class.php:423 libraries/messages.inc.php:1199 +#: libraries/File.class.php:423 libraries/messages.inc.php:1195 msgid "Missing a temporary folder." msgstr "Tilapäiskansio puuttuu." -#: libraries/File.class.php:426 libraries/messages.inc.php:1195 +#: libraries/File.class.php:426 libraries/messages.inc.php:1191 msgid "Failed to write file to disk." msgstr "Tiedoston kirjoitus levylle epäonnistui." -#: libraries/File.class.php:429 libraries/messages.inc.php:1196 +#: libraries/File.class.php:429 libraries/messages.inc.php:1192 msgid "File upload stopped by extension." msgstr "Laajennus keskeytti tiedoston lähetyksen." -#: libraries/File.class.php:908 libraries/messages.inc.php:319 +#: libraries/File.class.php:908 libraries/messages.inc.php:315 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "Virhe lähetettäessä tiedostoa, katso FAQ 1.11" -#: libraries/Index.class.php:428 libraries/messages.inc.php:554 +#: libraries/Index.class.php:428 libraries/messages.inc.php:550 #: tbl_relation.php:529 msgid "No index defined!" msgstr "Indeksiä ei ole määritelty!" -#: libraries/Index.class.php:433 libraries/messages.inc.php:411 +#: libraries/Index.class.php:433 libraries/messages.inc.php:407 #: server_databases.php:132 tbl_tracking.php:316 msgid "Indexes" msgstr "Indeksit" -#: libraries/Index.class.php:444 libraries/messages.inc.php:1186 +#: libraries/Index.class.php:444 libraries/messages.inc.php:1182 #: 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:475 tbl_tracking.php:322 msgid "Unique" msgstr "Uniikki" -#: libraries/Index.class.php:445 libraries/messages.inc.php:596 +#: libraries/Index.class.php:445 libraries/messages.inc.php:592 #: tbl_tracking.php:323 msgid "Packed" msgstr "Pakattu" -#: libraries/Index.class.php:447 libraries/messages.inc.php:131 +#: libraries/Index.class.php:447 libraries/messages.inc.php:127 #: tbl_tracking.php:325 msgid "Cardinality" msgstr "Kardinaliteetti" -#: libraries/Index.class.php:450 libraries/messages.inc.php:162 +#: libraries/Index.class.php:450 libraries/messages.inc.php:158 #: tbl_tracking.php:279 tbl_tracking.php:328 msgid "Comment" msgstr "Kommentti" @@ -1448,22 +1448,22 @@ msgstr "Kommentti" #: libraries/Index.class.php:466 libraries/common.lib.php:616 #: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:280 pdf_pages.php:280 +#: libraries/messages.inc.php:276 pdf_pages.php:280 #: setup/frames/index.inc.php:124 setup/lib/messages.inc.php:352 #: tbl_row_action.php:69 msgid "Edit" msgstr "Muokkaa" -#: libraries/Index.class.php:472 libraries/messages.inc.php:666 +#: libraries/Index.class.php:472 libraries/messages.inc.php:662 msgid "The primary key has been dropped" msgstr "Perusavain on poistettu" -#: libraries/Index.class.php:476 libraries/messages.inc.php:413 +#: libraries/Index.class.php:476 libraries/messages.inc.php:409 #, php-format msgid "Index %s has been dropped" msgstr "Indeksi %s on poistettu" -#: libraries/Index.class.php:576 libraries/messages.inc.php:412 +#: libraries/Index.class.php:576 libraries/messages.inc.php:408 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -1472,7 +1472,7 @@ msgstr "" "Indeksit %1$s ja %2$s ovat ehkä samoja, ja niistä jompikumpi kannattanee " "poistaa." -#: libraries/List_Database.class.php:431 libraries/messages.inc.php:218 +#: libraries/List_Database.class.php:431 libraries/messages.inc.php:214 #: libraries/server_links.inc.php:41 server_databases.php:88 #: server_privileges.php:1621 setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" @@ -1502,86 +1502,86 @@ msgid_plural "%1$d rows inserted." msgstr[0] "%1$d rivi(ä) lisätty." msgstr[1] "%1$d rivi(ä) lisätty." -#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:549 +#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:545 msgid "" "There is no detailed status information available for this storage engine." msgstr "" "Tämän tallennusmoottorin tilasta ei ole saatavilla yksityiskohtaisia tietoja." -#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:291 +#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:287 #, php-format msgid "%s is available on this MySQL server." msgstr "%s on käytettävissä tällä MySQL-palvelimella." -#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:292 +#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:288 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s ei ole käytettävissä tällä MySQL-palvelimella." -#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:294 +#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:290 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "Tämä MySQL-palvelin ei tue %s-tallennusmoottoria." -#: libraries/Table.class.php:1019 libraries/messages.inc.php:443 +#: libraries/Table.class.php:1019 libraries/messages.inc.php:439 msgid "Invalid database" msgstr "Virheellinen tietokanta" -#: libraries/Table.class.php:1033 libraries/messages.inc.php:450 +#: libraries/Table.class.php:1033 libraries/messages.inc.php:446 #: tbl_get_field.php:26 msgid "Invalid table name" msgstr "Virheellinen taulun nimi" -#: libraries/Table.class.php:1048 libraries/messages.inc.php:301 +#: libraries/Table.class.php:1048 libraries/messages.inc.php:297 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "Virhe annettaessa taululle %1$s nimeä %2$s" -#: libraries/Table.class.php:1132 libraries/messages.inc.php:754 +#: libraries/Table.class.php:1132 libraries/messages.inc.php:750 #, php-format msgid "Table %s has been renamed to %s" msgstr "Taulun %s nimi on nyt %s" -#: libraries/Theme.class.php:162 libraries/messages.inc.php:1099 +#: libraries/Theme.class.php:162 libraries/messages.inc.php:1095 #, php-format msgid "No valid image path for theme %s found!" msgstr "Kelvollista polkua teemalle %s ei löytynyt." -#: libraries/Theme.class.php:384 libraries/messages.inc.php:1097 +#: libraries/Theme.class.php:384 libraries/messages.inc.php:1093 msgid "No preview available." msgstr "Esikatselu ei ole saatavilla." -#: libraries/Theme.class.php:387 libraries/messages.inc.php:1089 +#: libraries/Theme.class.php:387 libraries/messages.inc.php:1085 msgid "take it" msgstr "käytä tätä" -#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1096 +#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1092 #, php-format msgid "Default theme %s not found!" msgstr "Oletusteemaa %s ei löydy!" -#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1098 +#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1094 #, php-format msgid "Theme %s not found!" msgstr "Teemaa %s ei löydy!" -#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1100 +#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1096 #, php-format msgid "Theme path not found for theme %s!" msgstr "Teeman %s polkua ei löydy!" -#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1101 +#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1097 #: test/theme.php:161 themes.php:21 themes.php:41 msgid "Theme / Style" msgstr "Teema/tyyli" -#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:172 +#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:168 msgid "Cannot connect: invalid settings." msgstr "Yhteyttä ei voitu muodostaa: virheelliset asetukset." #: libraries/auth/config.auth.lib.php:92 #: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65 -#: libraries/messages.inc.php:1238 test/theme.php:152 +#: libraries/messages.inc.php:1234 test/theme.php:152 #, php-format msgid "Welcome to %s" msgstr "Tervetuloa, toivottaa %s" @@ -1607,46 +1607,46 @@ msgstr "" "php-tiedostosta ja varmista, että ne vastaavat MySQL-palvelimen " "järjestelmänvalvojan antamia tietoja." -#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:488 +#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:484 msgid "Log in" msgstr "Kirjaudu sisään" #: libraries/auth/cookie.auth.lib.php:246 -#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:659 +#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:655 #: libraries/navigation_header.inc.php:93 #: libraries/navigation_header.inc.php:95 msgid "phpMyAdmin documentation" msgstr "phpMyAdminin ohjeet" #: libraries/auth/cookie.auth.lib.php:258 -#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:492 +#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:488 msgid "You can enter hostname/IP address and port separated by space." msgstr "" "Voit syöttää verkkotunnuksen/IP-osoitteen ja portin välilyönnillä erotettuna." -#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:493 +#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:489 msgid "Server:" msgstr "Palvelin" -#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:494 +#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:490 msgid "Username:" msgstr "Käyttäjätunnus:" -#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:491 +#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:487 msgid "Password:" msgstr "Salasana:" -#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:854 +#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:850 msgid "Server Choice" msgstr "Valitse palvelin" #: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 -#: libraries/messages.inc.php:177 +#: libraries/messages.inc.php:173 msgid "Cookies must be enabled past this point." msgstr "Selaimessa on oltava evästeet päällä tästä lähtien." #: libraries/auth/cookie.auth.lib.php:671 -#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:489 +#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:485 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" @@ -1654,7 +1654,7 @@ msgstr "" "AllowNoPassword)" #: libraries/auth/cookie.auth.lib.php:675 -#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:544 +#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:540 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" @@ -1663,53 +1663,53 @@ msgstr "" #: libraries/auth/cookie.auth.lib.php:685 #: libraries/auth/cookie.auth.lib.php:687 -#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:126 +#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:122 msgid "Cannot log in to the MySQL server" msgstr "MySQL-palvelimelle ei voitu kirjautua" -#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1245 +#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1241 msgid "Wrong username/password. Access denied." msgstr "Väärä käyttäjätunnus tai salasana. Käyttö estetty." #: libraries/auth/swekey/swekey.auth.lib.php:118 -#: libraries/messages.inc.php:1057 +#: libraries/messages.inc.php:1053 #, php-format msgid "File %s does not contain any key id" msgstr "Tiedosto %s ei sisällä avaintunnusta" #: libraries/auth/swekey/swekey.auth.lib.php:157 #: libraries/auth/swekey/swekey.auth.lib.php:180 -#: libraries/messages.inc.php:1056 +#: libraries/messages.inc.php:1052 msgid "Hardware authentication failed" msgstr "Laitetodennus epäonnistui" #: libraries/auth/swekey/swekey.auth.lib.php:166 -#: libraries/messages.inc.php:1058 +#: libraries/messages.inc.php:1054 msgid "No valid authentication key plugged" msgstr "Kelvollista todennusavainta ei ole asetettu" #: libraries/auth/swekey/swekey.auth.lib.php:202 -#: libraries/messages.inc.php:1055 +#: libraries/messages.inc.php:1051 msgid "Authenticating..." msgstr "Todennetaan..." -#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1230 +#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1226 msgid "View image" msgstr "Näytä kuva" -#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:652 +#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:648 msgid "Play audio" msgstr "Toista ääni" -#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1232 +#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1228 msgid "View video" msgstr "Näytä video" -#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:269 +#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:265 msgid "Download file" msgstr "Lataa tiedosto" -#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:128 +#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:124 msgid "" "Couldn't load the iconv or recode extension needed for charset conversion. " "Either configure PHP to enable these extensions or disable charset " @@ -1721,7 +1721,7 @@ msgstr "" #: libraries/charset_conversion.lib.php:79 #: libraries/charset_conversion.lib.php:90 -#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:130 +#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:126 msgid "" "Couldn't use the iconv, libiconv, or recode_string functions, although the " "necessary extensions appear to be loaded. Check your PHP configuration." @@ -1729,7 +1729,7 @@ msgstr "" "Iconv-, libiconv- tai recode_string-funktioita ei voitu käyttää. Tarkista " "PHP:n asetukset." -#: libraries/common.inc.php:583 libraries/messages.inc.php:170 +#: libraries/common.inc.php:583 libraries/messages.inc.php:166 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!" @@ -1762,22 +1762,22 @@ msgstr "$cfg['PmaAbsoluteUri'] täytyy määritellä asetustiedostossa! msgid "Invalid server index: %s" msgstr "Virheellinen palvelimen indeksi: \"%s\"" -#: libraries/common.inc.php:636 libraries/messages.inc.php:448 +#: libraries/common.inc.php:636 libraries/messages.inc.php:444 #, 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/messages.inc.php:856 libraries/select_server.lib.php:41 +#: libraries/messages.inc.php:852 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/messages.inc.php:437 +#: libraries/common.inc.php:823 libraries/messages.inc.php:433 msgid "Invalid authentication method set in configuration:" msgstr "Asetuksissa on virheellinen todennustapa:" -#: libraries/common.lib.php:147 libraries/messages.inc.php:499 +#: libraries/common.lib.php:147 libraries/messages.inc.php:495 #, php-format msgid "Max: %s%s" msgstr "Enimmäiskoko: %s%s" @@ -1799,7 +1799,7 @@ msgstr "Lähetetty" #: libraries/common.lib.php:428 libraries/common.lib.php:430 #: libraries/common.lib.php:432 libraries/common.lib.php:448 #: libraries/common.lib.php:450 libraries/dbg/setup.php:25 -#: libraries/display_export.lib.php:164 libraries/messages.inc.php:267 +#: libraries/display_export.lib.php:164 libraries/messages.inc.php:263 #: libraries/relation.lib.php:97 libraries/sql_query_form.lib.php:451 #: libraries/sql_query_form.lib.php:454 main.php:229 pdf_pages.php:37 #: pdf_pages.php:43 pdf_pages.php:49 pdf_pages.php:54 @@ -1809,55 +1809,55 @@ msgstr "Ohjeet" #: libraries/common.lib.php:581 libraries/core.lib.php:234 #: libraries/core.lib.php:263 libraries/import.lib.php:134 -#: libraries/messages.inc.php:297 pdf_schema.php:32 pdf_schema.php:232 +#: libraries/messages.inc.php:293 pdf_schema.php:32 pdf_schema.php:232 #: tbl_change.php:1027 tbl_operations.php:213 tbl_relation.php:290 #: view_operations.php:62 msgid "Error" msgstr "Virhe" #: libraries/common.lib.php:595 libraries/header_printview.inc.php:61 -#: libraries/messages.inc.php:1023 server_processlist.php:60 +#: libraries/messages.inc.php:1019 server_processlist.php:60 #: server_status.php:247 msgid "SQL query" msgstr "SQL-kysely" -#: libraries/common.lib.php:634 libraries/messages.inc.php:538 +#: libraries/common.lib.php:634 libraries/messages.inc.php:534 msgid "MySQL said: " msgstr "MySQL ilmoittaa: " -#: libraries/common.lib.php:667 libraries/messages.inc.php:76 +#: libraries/common.lib.php:667 libraries/messages.inc.php:72 #: pdf_schema.php:241 user_password.php:115 msgid "Back" msgstr "Takaisin" -#: libraries/common.lib.php:1177 libraries/messages.inc.php:309 +#: libraries/common.lib.php:1177 libraries/messages.inc.php:305 #: setup/lib/messages.inc.php:353 msgid "Explain SQL" msgstr "Selitä SQL-kysely" -#: libraries/common.lib.php:1180 libraries/messages.inc.php:551 +#: libraries/common.lib.php:1180 libraries/messages.inc.php:547 msgid "Skip Explain SQL" msgstr "Älä selitä SQL-kyselyä" -#: libraries/common.lib.php:1212 libraries/messages.inc.php:563 +#: libraries/common.lib.php:1212 libraries/messages.inc.php:559 msgid "Without PHP Code" msgstr "Kätke PHP-koodi" -#: libraries/common.lib.php:1215 libraries/messages.inc.php:649 +#: libraries/common.lib.php:1215 libraries/messages.inc.php:645 #: setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "Näytä PHP-koodi" -#: libraries/common.lib.php:1233 libraries/messages.inc.php:737 +#: libraries/common.lib.php:1233 libraries/messages.inc.php:733 #: server_status.php:341 setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "Päivitä" -#: libraries/common.lib.php:1242 libraries/messages.inc.php:575 +#: libraries/common.lib.php:1242 libraries/messages.inc.php:571 msgid "Skip Validate SQL" msgstr "Älä tarkista SQL-kyselyä" -#: libraries/common.lib.php:1245 libraries/messages.inc.php:1220 +#: libraries/common.lib.php:1245 libraries/messages.inc.php:1216 #: setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "Tarkista SQL-lause" @@ -1873,11 +1873,11 @@ msgid "Inline" msgstr "Moottorit" #: libraries/common.lib.php:1332 libraries/common.lib.php:1347 -#: libraries/messages.inc.php:713 +#: libraries/messages.inc.php:709 msgid "Profiling" msgstr "Profilointi" -#: libraries/common.lib.php:1351 libraries/messages.inc.php:1108 +#: libraries/common.lib.php:1351 libraries/messages.inc.php:1104 #: libraries/tbl_triggers.lib.php:28 server_processlist.php:58 msgid "Time" msgstr "Aika" @@ -1911,46 +1911,56 @@ msgstr "Pt" msgid "EiB" msgstr "Et" +#. l10n: Thousands separator +#: libraries/common.lib.php:1417 +msgid "," +msgstr " " + +#. l10n: Decimal separator +#: libraries/common.lib.php:1419 +msgid "." +msgstr "," + #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1584 +#: libraries/common.lib.php:1596 #: libraries/transformations/text_plain__dateformat.inc.php:28 msgid "%B %d, %Y at %I:%M %p" msgstr "%d.%m.%Y klo %H:%M" -#: libraries/common.lib.php:1886 +#: libraries/common.lib.php:1898 #, 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:2301 libraries/common.lib.php:2304 -#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:664 +#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:660 #: server_status.php:608 msgid "Begin" msgstr "Alkuun" -#: libraries/common.lib.php:2302 libraries/common.lib.php:2305 -#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:665 +#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:661 #: server_binlog.php:168 server_binlog.php:170 msgid "Previous" msgstr "Edellinen" -#: libraries/common.lib.php:2333 libraries/common.lib.php:2336 -#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:289 +#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:285 msgid "End" msgstr "Loppu" -#: libraries/common.lib.php:2409 libraries/messages.inc.php:455 +#: libraries/common.lib.php:2421 libraries/messages.inc.php:451 #, php-format msgid "Jump to database "%s"." msgstr "Siirry tietokantaan "%s"." -#: libraries/common.lib.php:2429 libraries/messages.inc.php:461 +#: libraries/common.lib.php:2441 libraries/messages.inc.php:457 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Toimintoon %s vaikuttaa tunnettu vika, katso %s" #: libraries/core.lib.php:286 libraries/dbg/setup.php:22 -#: libraries/messages.inc.php:127 +#: libraries/messages.inc.php:123 #, php-format msgid "" "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " @@ -1958,118 +1968,118 @@ msgid "" msgstr "Laajennuksen %s lataus ei onnistu; tarkista PHP:n asetukset" #: libraries/db_events.inc.php:20 libraries/db_events.inc.php:22 -#: libraries/export/sql.php:415 libraries/messages.inc.php:306 +#: libraries/export/sql.php:415 libraries/messages.inc.php:302 msgid "Events" msgstr "Tapahtumat" #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 -#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:541 +#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:537 #: libraries/tbl_triggers.lib.php:27 setup/frames/index.inc.php:112 msgid "Name" msgstr "Nimi" -#: libraries/db_links.inc.php:45 libraries/messages.inc.php:216 +#: libraries/db_links.inc.php:45 libraries/messages.inc.php:212 #, php-format msgid "Database %s has been dropped." msgstr "Tietokanta %s on poistettu." #: libraries/db_links.inc.php:57 libraries/db_links.inc.php:58 -#: libraries/db_links.inc.php:59 libraries/messages.inc.php:234 +#: libraries/db_links.inc.php:59 libraries/messages.inc.php:230 msgid "Database seems to be empty!" msgstr "Tietokanta on tyhjä!" -#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1025 +#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1021 #: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60 #: querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1152 +#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1148 #: libraries/tbl_links.inc.php:69 msgid "Tracking" msgstr "Seuranta" -#: libraries/db_links.inc.php:86 libraries/messages.inc.php:719 +#: libraries/db_links.inc.php:86 libraries/messages.inc.php:715 msgid "Query" msgstr "Haku" -#: libraries/db_links.inc.php:91 libraries/messages.inc.php:253 +#: libraries/db_links.inc.php:91 libraries/messages.inc.php:249 msgid "Designer" msgstr "Suunnittelija" -#: libraries/db_links.inc.php:98 libraries/messages.inc.php:397 +#: libraries/db_links.inc.php:98 libraries/messages.inc.php:393 #: libraries/server_links.inc.php:88 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:104 libraries/messages.inc.php:587 +#: libraries/db_links.inc.php:104 libraries/messages.inc.php:583 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" msgstr "Toiminnot" -#: libraries/db_links.inc.php:111 libraries/messages.inc.php:709 +#: libraries/db_links.inc.php:111 libraries/messages.inc.php:705 #: libraries/server_links.inc.php:66 server_privileges.php:72 #: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117 msgid "Privileges" msgstr "Käyttöoikeudet" #: libraries/db_routines.inc.php:30 libraries/db_routines.inc.php:32 -#: libraries/messages.inc.php:812 +#: libraries/messages.inc.php:808 msgid "Routines" msgstr "Rutiinit" -#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:811 +#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:807 msgid "Return type" msgstr "Paluutyyppi" #: libraries/db_structure.lib.php:57 libraries/display_tbl.lib.php:1848 -#: libraries/messages.inc.php:65 +#: libraries/messages.inc.php:61 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "Saattaa olla summittainen. Katso FAQ 3.11" -#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:593 +#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:589 #: server_databases.php:142 tbl_printview.php:336 tbl_structure.php:683 msgid "Overhead" msgstr "Ylijäämä" #: libraries/dbi/mysql.dbi.lib.php:112 libraries/dbi/mysqli.dbi.lib.php:124 -#: libraries/messages.inc.php:176 +#: libraries/messages.inc.php:172 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Yhteyden muodostus asetuksissa määriteltyyn superuser-käyttäjään epäonnistui." #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 -#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:855 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:851 msgid "The server is not responding" msgstr "Palvelin ei vastaa" #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:1010 +#: libraries/messages.inc.php:1006 msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "" "(tai paikallisen MySQL-palvelimen pistokkeen asetuksia ei ole määritelty " "oikein)" -#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:255 +#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:251 #: tbl_structure.php:609 msgid "Details..." msgstr "Lisätiedot..." -#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:143 +#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:139 #: main.php:91 user_password.php:111 user_password.php:129 msgid "Change password" msgstr "Vaihda salasana" -#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:561 +#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:557 #: libraries/replication_gui.lib.php:341 server_privileges.php:768 msgid "No Password" msgstr "Ei salasanaa" -#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:610 +#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:606 #: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60 #: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335 #: libraries/replication_gui.lib.php:345 server_privileges.php:757 @@ -2078,13 +2088,13 @@ msgstr "Ei salasanaa" msgid "Password" msgstr "Salasana" -#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:806 +#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:802 #: libraries/replication_gui.lib.php:349 libraries/replication_gui.lib.php:352 #: server_privileges.php:776 server_privileges.php:779 msgid "Re-type" msgstr "Kirjoita uudelleen" -#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:608 +#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:604 msgid "Password Hashing" msgstr "Salasanan salaus" @@ -2094,89 +2104,89 @@ msgstr "Salasanan salaus" msgid "MySQL 4.0 compatible" msgstr "MySQL 4.0 -yhteensopiva" -#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:353 +#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:349 #: libraries/replication_gui.lib.php:356 server_privileges.php:783 msgid "Generate Password" msgstr "Keksi salasana" -#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:352 +#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:348 #: libraries/replication_gui.lib.php:359 server_privileges.php:786 msgid "Generate" msgstr "Keksi" #: libraries/display_create_database.lib.php:22 -#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:189 +#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:185 msgid "Create new database" msgstr "Luo uusi tietokanta" -#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:185 +#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:181 msgid "Create" msgstr "Luo" -#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:564 +#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:560 #: server_privileges.php:74 server_privileges.php:1388 #: server_replication.php:35 msgid "No Privileges" msgstr "Ei käyttöoikeuksia" -#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:445 +#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:441 msgid "Table must have at least one field." msgstr "Taulussa on oltava vähintään yksi kenttä." -#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:190 +#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:186 #, php-format msgid "Create table on database %s" msgstr "Luo uusi taulu tietokantaan %s" -#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:577 +#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:573 msgid "Number of fields" msgstr "Kenttien määrä" -#: libraries/display_export.lib.php:42 libraries/messages.inc.php:124 +#: libraries/display_export.lib.php:42 libraries/messages.inc.php:120 msgid "Could not load export plugins, please check your installation!" msgstr "Vientiin tarvittavia lisäosia ei voitu ladata; tarkista asetukset!" -#: libraries/display_export.lib.php:107 libraries/messages.inc.php:277 +#: libraries/display_export.lib.php:107 libraries/messages.inc.php:273 #, php-format msgid "Dump %s row(s) starting at record # %s" msgstr "Tee vedos %s rivistä, alkaen riviltä: %s." -#: libraries/display_export.lib.php:115 libraries/messages.inc.php:274 +#: libraries/display_export.lib.php:115 libraries/messages.inc.php:270 msgid "Dump all rows" msgstr "Vedosta kaikki rivit" -#: libraries/display_export.lib.php:125 libraries/messages.inc.php:852 +#: libraries/display_export.lib.php:125 libraries/messages.inc.php:848 #: setup/lib/messages.inc.php:82 msgid "Save as file" msgstr "Tallenna tiedostoon" -#: libraries/display_export.lib.php:134 libraries/messages.inc.php:828 +#: libraries/display_export.lib.php:134 libraries/messages.inc.php:824 #, php-format msgid "Save on server in %s directory" msgstr "Tallenna palvelimelle hakemistoon %s" -#: libraries/display_export.lib.php:142 libraries/messages.inc.php:594 +#: libraries/display_export.lib.php:142 libraries/messages.inc.php:590 #: setup/lib/messages.inc.php:90 msgid "Overwrite existing file(s)" msgstr "Korvaa jo olemassa oleva(t) tiedosto(t)" -#: libraries/display_export.lib.php:148 libraries/messages.inc.php:330 +#: libraries/display_export.lib.php:148 libraries/messages.inc.php:326 msgid "File name template" msgstr "Tiedostonimen pohja" -#: libraries/display_export.lib.php:152 libraries/messages.inc.php:327 +#: libraries/display_export.lib.php:152 libraries/messages.inc.php:323 msgid "server name" msgstr "palvelimen nimi" -#: libraries/display_export.lib.php:155 libraries/messages.inc.php:326 +#: libraries/display_export.lib.php:155 libraries/messages.inc.php:322 msgid "database name" msgstr "tietokannan nimi" -#: libraries/display_export.lib.php:158 libraries/messages.inc.php:328 +#: libraries/display_export.lib.php:158 libraries/messages.inc.php:324 msgid "table name" msgstr "taulun nimi" -#: libraries/display_export.lib.php:162 libraries/messages.inc.php:329 +#: libraries/display_export.lib.php:162 libraries/messages.inc.php:325 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2187,24 +2197,24 @@ msgstr "" "ajanmuodostostusmerkkijonoja voi käyttää. Lisäksi tapahtuu seuraavat " "muutokset: %3$s. Muu teksti pysyy alkuperäisenä." -#: libraries/display_export.lib.php:202 libraries/messages.inc.php:331 +#: libraries/display_export.lib.php:202 libraries/messages.inc.php:327 msgid "remember template" msgstr "muista pohja" #: libraries/display_export.lib.php:210 libraries/display_import.lib.php:178 -#: libraries/display_import.lib.php:191 libraries/messages.inc.php:145 +#: libraries/display_import.lib.php:191 libraries/messages.inc.php:141 #: libraries/sql_query_form.lib.php:549 msgid "Character set of the file:" msgstr "Tiedoston merkistö:" -#: libraries/display_export.lib.php:235 libraries/messages.inc.php:166 +#: libraries/display_export.lib.php:235 libraries/messages.inc.php:162 #: setup/lib/messages.inc.php:84 msgid "Compression" 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/messages.inc.php:558 +#: libraries/export/sql.php:868 libraries/messages.inc.php:554 #: libraries/tbl_properties.inc.php:575 server_privileges.php:1836 #: server_processlist.php:75 msgid "None" @@ -2228,11 +2238,11 @@ msgstr "\"gzip-pakkaus\"" msgid "bzipped" msgstr "\"bzip-pakkaus\"" -#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1018 +#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1014 msgid "SQL compatibility mode" msgstr "SQL-yhteensopiva tila" -#: libraries/display_import.lib.php:67 libraries/messages.inc.php:398 +#: libraries/display_import.lib.php:67 libraries/messages.inc.php:394 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " @@ -2242,11 +2252,11 @@ msgstr "" "tunnettu vika Webkit-pohjaisissa (Safari, Google Chrome, Arora jne) " "selaimissa." -#: libraries/display_import.lib.php:77 libraries/messages.inc.php:406 +#: libraries/display_import.lib.php:77 libraries/messages.inc.php:402 msgid "The file is being processed, please be patient." msgstr "Tiedostoa käsitellään, ole kärsivällinen." -#: libraries/display_import.lib.php:99 libraries/messages.inc.php:408 +#: libraries/display_import.lib.php:99 libraries/messages.inc.php:404 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." @@ -2254,39 +2264,39 @@ msgstr "" "Ole kärsivällinen, tiedostoa lähetetään. Lähetyksen yksityiskohdat eivät ole " "saatavilla." -#: libraries/display_import.lib.php:126 libraries/messages.inc.php:333 +#: libraries/display_import.lib.php:126 libraries/messages.inc.php:329 msgid "File to import" msgstr "Tuotava tiedosto" -#: libraries/display_import.lib.php:137 libraries/messages.inc.php:486 +#: libraries/display_import.lib.php:137 libraries/messages.inc.php:482 #: libraries/sql_query_form.lib.php:524 msgid "Location of the text file" msgstr "Tiedoston sijainti" -#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1203 +#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1199 msgid "File uploads are not allowed on this server." msgstr "Tällä palvelimella ei ole sallittu tiedostojen lähetystä." -#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1235 +#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1231 #: libraries/sql_query_form.lib.php:533 tbl_change.php:1028 msgid "The directory you set for upload work cannot be reached" msgstr "Tiedostojen lähetykseen valittua hakemistoa ei voida käyttää" -#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1236 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1232 #: libraries/sql_query_form.lib.php:536 tbl_change.php:1031 msgid "web server upload directory" msgstr "palvelimen lähetyshakemisto" -#: libraries/display_import.lib.php:212 libraries/messages.inc.php:167 +#: libraries/display_import.lib.php:212 libraries/messages.inc.php:163 #, php-format msgid "Imported file compression will be automatically detected from: %s" msgstr "Seuraavat tiedostonpakkausmuodot havaitaan automaattisesti: %s" -#: libraries/display_import.lib.php:219 libraries/messages.inc.php:600 +#: libraries/display_import.lib.php:219 libraries/messages.inc.php:596 msgid "Partial import" msgstr "Osittainen tuonti" -#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1105 +#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1101 #, php-format msgid "" "Previous import timed out, after resubmitting will continue from position %d." @@ -2294,7 +2304,7 @@ msgstr "" "Edellinen tuonti keskeytyi aikakatkaisun takia. Kun lähetät tiedoston " "uudestaan, jatkamme kohdasta %d." -#: libraries/display_import.lib.php:232 libraries/messages.inc.php:51 +#: libraries/display_import.lib.php:232 libraries/messages.inc.php:47 msgid "" "Allow the interruption of an import in case the script detects it is close " "to the PHP timeout limit. This might be good way to import large files, " @@ -2304,188 +2314,188 @@ msgstr "" "Tätä kannattaa käyttää tuotaessa suuria tiedostoja; se voi kuitenkin " "aiheuttaa häiriöitä transaktioihin." -#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1004 +#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1000 #: setup/lib/messages.inc.php:161 msgid "Number of records (queries) to skip from start" msgstr "Alusta ohitettavien tietueiden (kyselyjen) määrä" -#: libraries/display_import.lib.php:255 libraries/messages.inc.php:396 +#: libraries/display_import.lib.php:255 libraries/messages.inc.php:392 #: setup/lib/messages.inc.php:160 msgid "Format of imported file" msgstr "Tuotavan tiedoston muoto" #: libraries/display_select_lang.lib.php:45 -#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:465 +#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:461 #: setup/frames/index.inc.php:70 msgid "Language" msgstr "Kieli" -#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:447 +#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:443 #, php-format msgid "%d is not valid row number." msgstr "%d on virheellinen rivinumero." -#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:814 +#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:810 msgid "row(s) starting from record #" msgstr "riviä alkaen rivistä" -#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:817 +#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:813 msgid "horizontal" msgstr "vaakatasossa" -#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:816 +#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:812 msgid "horizontal (rotated headers)" msgstr "vaakatasossa (kierretyt otsikot)" -#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:819 +#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:815 msgid "vertical" msgstr "pystysuorassa" -#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:818 +#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:814 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "%s, otsikoita toistetaan %s:n rivin välein" -#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:495 +#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:491 msgid "This operation could take a long time. Proceed anyway?" msgstr "Tämä toiminto voi kestää kauan. Jatketaanko silti?" -#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1012 +#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1008 msgid "Sort by key" msgstr "Lajittele avaimen mukaan" #: libraries/display_tbl.lib.php:555 libraries/import.lib.php:1082 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:591 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:587 #: tbl_select.php:267 tbl_structure.php:754 msgid "Options" msgstr "Valinnat" #: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:570 -#: libraries/messages.inc.php:601 +#: libraries/messages.inc.php:597 msgid "Partial Texts" msgstr "Lyhennetyt tekstit" #: libraries/display_tbl.lib.php:561 libraries/display_tbl.lib.php:574 -#: libraries/messages.inc.php:346 +#: libraries/messages.inc.php:342 msgid "Full Texts" msgstr "Koko tekstit" -#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:739 +#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:735 msgid "Relational key" msgstr "Relaatioavain" -#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:738 +#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:734 msgid "Relational display field" msgstr "Relaationäyttökenttä" -#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:872 +#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:868 msgid "Show binary contents" msgstr "Näytä binäärisisältö" -#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:873 +#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:869 msgid "Show BLOB contents" msgstr "Näytä BLOB-sisältö" -#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:871 +#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:867 msgid "Show binary contents as HEX" msgstr "Näytä binaarisisältö heksamuodossa" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:375 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:371 #: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320 msgid "Hide" msgstr "Kätke" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:508 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:504 #: libraries/tbl_properties.inc.php:144 transformation_overview.php:47 msgid "Browser transformation" msgstr "Selaimen muunnos (transformation)" #: libraries/display_tbl.lib.php:1126 libraries/display_tbl.lib.php:1130 -#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:308 +#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:304 msgid "Execute bookmarked query" msgstr "Suorita kysely kirjanmerkeistä" #: libraries/display_tbl.lib.php:1145 libraries/display_tbl.lib.php:1157 -#: libraries/messages.inc.php:244 +#: libraries/messages.inc.php:240 msgid "The row has been deleted" msgstr "Rivi on poistettu" #: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056 -#: libraries/messages.inc.php:460 server_processlist.php:71 +#: libraries/messages.inc.php:456 server_processlist.php:71 #: tbl_row_action.php:64 msgid "Kill" msgstr "Lopeta" -#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:849 +#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:845 msgid "in query" msgstr "lauseessa" -#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:881 +#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:877 msgid "Showing rows" msgstr "Näkyvillä rivit " -#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1113 +#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1109 msgid "total" msgstr "yhteensä" -#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:727 +#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:723 #: sql.php:524 #, php-format msgid "Query took %01.4f sec" msgstr "kysely kesti %01.4f sek." -#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:135 +#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:131 #: 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:471 msgid "Change" msgstr "Muokkaa" -#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:724 +#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:720 msgid "Query results operations" msgstr "Kyselytulosten toimenpiteet" -#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:671 +#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:667 msgid "Print view (with full texts)" msgstr "Tulostusversio (kokonaisin tekstein)" -#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:482 +#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:478 msgid "Link not found" msgstr "Linkkiä ei löydy" -#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1224 +#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1220 #: main.php:228 msgid "Version information" msgstr "Versiotiedot" -#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:423 +#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:419 msgid "Data home directory" msgstr "Tiedostojen kotihakemisto" -#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:424 +#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:420 msgid "The common part of the directory path for all InnoDB data files." msgstr "Hakemistopolun yhteinen osa kaikille InnoDB-tiedostoille." -#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:422 +#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:418 msgid "Data files" msgstr "Tiedostot" -#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:418 +#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:414 msgid "Autoextend increment" msgstr "Automaattisen laajentamisen koko" -#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:419 +#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:415 msgid "" " The increment size for extending the size of an autoextending tablespace " "when it becomes full." msgstr "" "Kertoo, kuinka paljon taulun kokoa kasvatetaan taulun tilan täyttyessä." -#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:420 +#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:416 msgid "Buffer pool size" msgstr "Puskurivarannon koko" -#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:421 +#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:417 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." @@ -2493,87 +2503,87 @@ msgstr "" "Kertoo muistipuskurin koon, jota InnoDB käyttää taulujen tietojen ja " "indeksien siirtämiseen välimuistiin." -#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:112 +#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:108 msgid "Buffer Pool" msgstr "Puskurivaranto" -#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:426 +#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:422 #: server_status.php:306 msgid "InnoDB Status" msgstr "InnoDB:n tila" -#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:113 +#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:109 msgid "Buffer Pool Usage" msgstr "Puskurivarannon käyttö" -#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1114 +#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1110 #: server_databases.php:137 server_databases.php:305 server_status.php:414 #: server_status.php:475 server_status.php:496 tbl_printview.php:351 #: tbl_structure.php:697 msgid "Total" msgstr "Yhteensä" -#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:425 +#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:421 msgid "pages" msgstr "sivua" -#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:343 +#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:339 msgid "Free pages" msgstr "Vapaat sivut" -#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:259 +#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:255 msgid "Dirty pages" msgstr "Epäsiistit sivut" -#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:230 +#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:226 msgid "Pages containing data" msgstr "Tietoja sisältävät sivut" -#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:598 +#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:594 msgid "Pages to be flushed" msgstr "Siistimistä vaativat sivut" -#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:119 +#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:115 msgid "Busy pages" msgstr "Käytössä olevat sivut" -#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:467 +#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:463 msgid "Latched pages" msgstr "Lukitut sivut" -#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:111 +#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:107 msgid "Buffer Pool Activity" msgstr "Puskurivarannon aktiivisuus" -#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:731 +#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:727 msgid "Read requests" msgstr "Hakupyynnöt" -#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1244 +#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1240 msgid "Write requests" msgstr "Kirjoituspyynnöt" -#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:115 +#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:111 msgid "Read misses" msgstr "Epäonnistuneet lukuyritykset" -#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:117 +#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:113 msgid "Write waits" msgstr "Viive ennen kirjoitusta" -#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:114 +#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:110 msgid "Read misses in %" msgstr "Epäonnistuneet lukuyritykset: %" -#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:116 +#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:112 msgid "Write waits in %" msgstr "Kirjoitusviipeet: %" -#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:522 +#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:518 msgid "Data pointer size" msgstr "Tieto-osoittimen koko" -#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:523 +#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:519 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." @@ -2581,11 +2591,11 @@ msgstr "" "MyISAM-kannan CREATE TABLE -kyselyissä käytettävä osoittimen oletuskoko " "tavuina, kun MAX_ROWS-valintaa ei ole määritelty." -#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:528 +#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:524 msgid "Automatic recovery mode" msgstr "Automaattinen palautuminen" -#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:529 +#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:525 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." @@ -2594,11 +2604,11 @@ msgstr "" "se on asetettu \"--myisam-recover\"-nimisessä " "palvelimenkäynnistysasetuksessa." -#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:527 +#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:523 msgid "Maximum size for temporary sort files" msgstr "Enimmäiskoko tilapäisille lajittelutiedostoille" -#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:526 +#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:522 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " @@ -2607,11 +2617,11 @@ msgstr "" "MyISAM-indeksien uudelleenluonnin tilapäistiedostojen suurin koko (toiminnot " "REPAIR TABLE, ALTER TABLE tai LOAD DATA INFILE)." -#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:525 +#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:521 msgid "Maximum size for temporary files on index creation" msgstr "Tilapäistiedostojen enimmäiskoko indeksin luontia varten" -#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:524 +#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:520 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " @@ -2621,11 +2631,11 @@ msgstr "" "kuin tässä määritetty avainvälimuistin koko, mieluummin suositellaan " "käytettävän avainvälimuistia." -#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:531 +#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:527 msgid "Repair threads" msgstr "Korjaa säikeet" -#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:530 +#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:526 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." @@ -2633,11 +2643,11 @@ msgstr "" "Jos tämä arvo on suurempi kuin 1, MyISAM-taulujen indeksit luodaan samaan " "aikaan lajittelukorjausprosessissa, kukin indeksi omalla säikeellään." -#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:533 +#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:529 msgid "Sort buffer size" msgstr "Lajittelupuskurin koko" -#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:532 +#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:528 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." @@ -2645,11 +2655,11 @@ msgstr "" "Puskuri, joka varataan käyttöön lajiteltaessa MyISAM-indeksejä REPAIR TABLE -" "kyselyllä tai luotaessa indeksejä CREATE INDEX- tai ALTER TABLE -kyselyillä." -#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:620 +#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:616 msgid "Index cache size" msgstr "Indeksivälimuistin koko" -#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:619 +#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:615 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." @@ -2657,11 +2667,11 @@ msgstr "" "Tämä on indeksivälimuistille varatun muistin määrä. Oletusarvo on 32Mt. " "Tässä varattua muistia käytetään vain indeksisivujen välimuistitallenukseen." -#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:630 +#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:626 msgid "Record cache size" msgstr "Tallennusvälimuistin koko" -#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:629 +#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:625 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " @@ -2671,11 +2681,11 @@ msgstr "" "muistia. Oletusarvo on 32Mt. Tätä muistia käytetään kahvatietojen (.xtd) ja " "riviosoitintiedostojen (.xtr) välimuistitallennukseen." -#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:624 +#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:620 msgid "Log cache size" msgstr "Lokivälimuistin koko" -#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:623 +#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:619 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." @@ -2683,11 +2693,11 @@ msgstr "" "Kertoo kuinka paljon muistia varataan transaktiolokin välimuistille. " "Oletusarvo on 16Mt." -#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:628 +#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:624 msgid "Log file threshold" msgstr "Lokitiedoston kynnysarvo" -#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:627 +#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:623 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." @@ -2695,11 +2705,11 @@ msgstr "" "Transaktiolokin rajakoko, jonka ylityttyä luodaan uusi loki. Oletusarvo on " "16Mt." -#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:634 +#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:630 msgid "Transaction buffer size" msgstr "Transaktiopuskurin koko" -#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:633 +#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:629 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." @@ -2707,11 +2717,11 @@ msgstr "" "Globaalin transaktiolokipuskurin koko (moottori varaa kaksi tämän kokoista " "puskuria). Oletusarvo on 1Mt." -#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:611 +#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:607 msgid "Checkpoint frequency" msgstr "Checkpoint-pisteiden taajuus" -#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:612 +#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:608 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." @@ -2719,11 +2729,11 @@ msgstr "" "Transaktiolokiin kirjoitettavien tietojen määrä ennen kuin checkpoint-piste " "suoritetaan. Oletusarvo on 24Mt." -#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:615 +#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:611 msgid "Data log threshold" msgstr "Checkpoint-pisteiden kynnysarvo" -#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:616 +#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:612 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -2735,11 +2745,11 @@ msgstr "" "muuttujan arvoa voi nostaa, jos haluaa kasvattaa kaiken tietokantaan " "tallennettavan tiedon kokonaismäärää." -#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:618 +#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:614 msgid "Garbage threshold" msgstr "Roskankeruun kynnysarvo" -#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:617 +#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:613 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." @@ -2747,11 +2757,11 @@ msgstr "" "Tietolokitiedoston roskatietojen prosentuaalinen määrä ennen kuin tiedostoa " "tiivistetään. Tämän arvon on oltava väliltä 1 - 99. Oletusarvo on 50." -#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:622 +#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:618 msgid "Log buffer size" msgstr "Lokipuskurin koko" -#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:621 +#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:617 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " @@ -2761,27 +2771,27 @@ msgstr "" "Moottori varaa kullekin säikeelle yhden puskurin, mikäli säiettä tarvitaan " "tietolokin kirjoittamiseen." -#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:613 +#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:609 msgid "Data file grow size" msgstr "Tiedoston koonkasvatusmäärä" -#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:614 +#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:610 msgid "The grow size of the handle data (.xtd) files." msgstr "Kahvatiedostojen (.xtd) koonkasvatusmäärä." -#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:632 +#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:628 msgid "Row file grow size" msgstr "Rivitiedoston koonkasvatusmäärä" -#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:631 +#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:627 msgid "The grow size of the row pointer (.xtr) files." msgstr "Riviosoitintiedostojen (.xtr) koonkasvatusmäärä." -#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:626 +#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:622 msgid "Log file count" msgstr "Lokitiedostojen määrä" -#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:625 +#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:621 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -2795,19 +2805,19 @@ msgstr "" #: libraries/export/htmlword.php:132 libraries/export/odt.php:168 #: libraries/export/sql.php:881 libraries/export/texytext.php:130 -#: libraries/messages.inc.php:275 +#: libraries/messages.inc.php:271 msgid "Dumping data for table" msgstr "Vedos taulusta" #: libraries/export/htmlword.php:185 libraries/export/odt.php:238 #: libraries/export/sql.php:785 libraries/export/texytext.php:177 -#: libraries/messages.inc.php:1086 +#: libraries/messages.inc.php:1082 msgid "Table structure for table" msgstr "Rakenne taululle" #: libraries/export/latex.php:125 libraries/export/sql.php:232 #: libraries/export/xml.php:102 libraries/header_printview.inc.php:57 -#: libraries/messages.inc.php:381 libraries/replication_gui.lib.php:63 +#: libraries/messages.inc.php:377 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:170 libraries/replication_gui.lib.php:265 #: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325 #: server_privileges.php:692 server_privileges.php:695 @@ -2819,185 +2829,185 @@ msgstr "Palvelin" #: libraries/export/latex.php:130 libraries/export/sql.php:233 #: libraries/export/xml.php:107 libraries/header_printview.inc.php:59 -#: libraries/messages.inc.php:354 +#: libraries/messages.inc.php:350 msgid "Generation Time" msgstr "Luontiaika" #: libraries/export/latex.php:131 libraries/export/sql.php:235 -#: libraries/export/xml.php:108 libraries/messages.inc.php:864 main.php:186 +#: libraries/export/xml.php:108 libraries/messages.inc.php:860 main.php:186 msgid "Server version" msgstr "Palvelimen versio" #: libraries/export/latex.php:132 libraries/export/sql.php:236 -#: libraries/export/xml.php:109 libraries/messages.inc.php:651 +#: libraries/export/xml.php:109 libraries/messages.inc.php:647 msgid "PHP Version" msgstr "PHP:n versio" #: libraries/export/latex.php:201 libraries/export/sql.php:868 -#: libraries/messages.inc.php:226 server_databases.php:127 +#: libraries/messages.inc.php:222 server_databases.php:127 #: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317 #: tbl_structure.php:666 msgid "Data" msgstr "Tietoa" -#: libraries/export/odt.php:318 libraries/messages.inc.php:506 +#: libraries/export/odt.php:318 libraries/messages.inc.php:502 #: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "MIME-tyyppi" -#: libraries/export/sql.php:387 libraries/messages.inc.php:711 +#: libraries/export/sql.php:387 libraries/messages.inc.php:707 msgid "Procedures" msgstr "Proseduurit" -#: libraries/export/sql.php:401 libraries/messages.inc.php:348 +#: libraries/export/sql.php:401 libraries/messages.inc.php:344 msgid "Functions" msgstr "Funktiot" -#: libraries/export/sql.php:618 libraries/messages.inc.php:174 +#: libraries/export/sql.php:618 libraries/messages.inc.php:170 msgid "Constraints for dumped tables" msgstr "Rajoitteet vedostauluille" -#: libraries/export/sql.php:627 libraries/messages.inc.php:175 +#: libraries/export/sql.php:627 libraries/messages.inc.php:171 msgid "Constraints for table" msgstr "Rajoitteet taululle" -#: libraries/export/sql.php:727 libraries/messages.inc.php:512 +#: libraries/export/sql.php:727 libraries/messages.inc.php:508 msgid "MIME TYPES FOR TABLE" msgstr "MIME-TYYPIT TAULULLE" -#: libraries/export/sql.php:739 libraries/messages.inc.php:743 +#: libraries/export/sql.php:739 libraries/messages.inc.php:739 msgid "RELATIONS FOR TABLE" msgstr "RELAATIOT TAULULLE" -#: libraries/export/sql.php:796 libraries/messages.inc.php:1178 +#: libraries/export/sql.php:796 libraries/messages.inc.php:1174 #: libraries/tbl_triggers.lib.php:19 msgid "Triggers" msgstr "Herättimet" -#: libraries/export/sql.php:808 libraries/messages.inc.php:1046 +#: libraries/export/sql.php:808 libraries/messages.inc.php:1042 msgid "Structure for view" msgstr "Näkymän rakenne" -#: libraries/export/sql.php:817 libraries/messages.inc.php:1029 +#: libraries/export/sql.php:817 libraries/messages.inc.php:1025 msgid "Stand-in structure for view" msgstr "Näkymän vararakenne" #: libraries/footer.inc.php:184 libraries/footer.inc.php:195 -#: libraries/footer.inc.php:198 libraries/messages.inc.php:586 +#: libraries/footer.inc.php:198 libraries/messages.inc.php:582 msgid "Open new phpMyAdmin window" msgstr "Avaa uusi phpMyAdmin-ikkuna" -#: libraries/header.inc.php:115 libraries/messages.inc.php:542 +#: libraries/header.inc.php:115 libraries/messages.inc.php:538 #, fuzzy msgid "New table" msgstr "Ei tauluja" #: libraries/header_printview.inc.php:50 libraries/header_printview.inc.php:55 -#: libraries/messages.inc.php:1024 +#: libraries/messages.inc.php:1020 msgid "SQL result" msgstr "SQL-kyselyn tulos" -#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:350 +#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:346 msgid "Generated by" msgstr "Luontiympäristö" #: libraries/header_printview.inc.php:63 libraries/import.lib.php:145 -#: libraries/messages.inc.php:820 navigation.php:652 navigation.php:674 +#: libraries/messages.inc.php:816 navigation.php:652 navigation.php:674 #: server_databases.php:122 tbl_printview.php:394 tbl_structure.php:366 #: tbl_structure.php:778 msgid "Rows" msgstr "Kpl rivejä" -#: libraries/import.lib.php:150 libraries/messages.inc.php:285 sql.php:520 +#: libraries/import.lib.php:150 libraries/messages.inc.php:281 sql.php:520 #: tbl_change.php:181 tbl_get_field.php:35 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL palautti tyhjän vastauksen, toisin sanoen nolla riviä." -#: libraries/import.lib.php:1078 libraries/messages.inc.php:399 +#: libraries/import.lib.php:1078 libraries/messages.inc.php:395 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "Seuraavat rakenteet on joko luotu tai niitä on muutettu. Voit:" -#: libraries/import.lib.php:1079 libraries/messages.inc.php:400 +#: libraries/import.lib.php:1079 libraries/messages.inc.php:396 msgid "View a structure`s contents by clicking on its name" msgstr "näyttää rakenteen sisällön painamalla sen nimeä" -#: libraries/import.lib.php:1080 libraries/messages.inc.php:401 +#: libraries/import.lib.php:1080 libraries/messages.inc.php:397 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" "muuttaa mitä tahansa sen asetuksia painamalla vastaavaa \"Valinnat\"-linkkiä" -#: libraries/import.lib.php:1081 libraries/messages.inc.php:402 +#: libraries/import.lib.php:1081 libraries/messages.inc.php:398 msgid "Edit its structure by following the \"Structure\" link" msgstr "Muokkaa sen rakennetta seuraamalla \"Rakenne\"-linkkiä" -#: libraries/import.lib.php:1084 libraries/messages.inc.php:362 +#: libraries/import.lib.php:1084 libraries/messages.inc.php:358 msgid "Go to database" msgstr "Siirry tietokantaan" #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:869 +#: libraries/messages.inc.php:865 msgid "settings" msgstr "asetukset" -#: libraries/import.lib.php:1106 libraries/messages.inc.php:363 +#: libraries/import.lib.php:1106 libraries/messages.inc.php:359 msgid "Go to table" msgstr "Siirry tauluun" -#: libraries/import.lib.php:1109 libraries/messages.inc.php:1047 +#: libraries/import.lib.php:1109 libraries/messages.inc.php:1043 msgid "structure" msgstr "rakenne" -#: libraries/import.lib.php:1115 libraries/messages.inc.php:364 +#: libraries/import.lib.php:1115 libraries/messages.inc.php:360 msgid "Go to view" msgstr "Siirry näkymään" #: libraries/import/csv.php:58 libraries/import/csv.php:70 #: libraries/import/csv.php:74 libraries/import/csv.php:78 -#: libraries/messages.inc.php:442 +#: libraries/messages.inc.php:438 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "Virheellinen CSV-tuonnin parametri: %s" -#: libraries/import/csv.php:59 libraries/messages.inc.php:323 +#: libraries/import/csv.php:59 libraries/messages.inc.php:319 msgid "Fields terminated by" msgstr "Sarakkeiden erotinmerkki" -#: libraries/import/csv.php:71 libraries/messages.inc.php:320 +#: libraries/import/csv.php:71 libraries/messages.inc.php:316 msgid "Fields enclosed by" msgstr "Sarakkeiden rajausmerkki" -#: libraries/import/csv.php:75 libraries/messages.inc.php:321 +#: libraries/import/csv.php:75 libraries/messages.inc.php:317 msgid "Fields escaped by" msgstr "Koodinvaihtomerkki" -#: libraries/import/csv.php:79 libraries/messages.inc.php:481 +#: libraries/import/csv.php:79 libraries/messages.inc.php:477 msgid "Lines terminated by" msgstr "Rivien erotinmerkki" -#: libraries/import/csv.php:119 libraries/messages.inc.php:439 +#: libraries/import/csv.php:119 libraries/messages.inc.php:435 #, php-format msgid "Invalid column (%s) specified!" msgstr "Virheellinen sarake (%s) määritelty!" #: libraries/import/csv.php:177 libraries/import/csv.php:424 -#: libraries/messages.inc.php:441 +#: libraries/messages.inc.php:437 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "Virheellinen muoto CSV-syötteessä rivillä %d." -#: libraries/import/csv.php:312 libraries/messages.inc.php:440 +#: libraries/import/csv.php:312 libraries/messages.inc.php:436 #, php-format msgid "Invalid field count in CSV input on line %d." msgstr "Virheellinen kenttien määrä CSV-syötteessä rivillä %d." -#: libraries/import/ldi.php:55 libraries/messages.inc.php:446 +#: libraries/import/ldi.php:55 libraries/messages.inc.php:442 msgid "This plugin does not support compressed imports!" msgstr "Tämä lisäosa ei tue pakattujen tuontien käyttöä!" #: libraries/import/xml.php:74 libraries/import/xml.php:130 -#: libraries/messages.inc.php:1247 +#: libraries/messages.inc.php:1243 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -3030,326 +3040,316 @@ msgstr "" msgid "ltr" msgstr "ltr" -#. l10n: Thousands separator -#: libraries/messages.inc.php:21 -msgid "," -msgstr " " - -#. l10n: Decimal separator -#: libraries/messages.inc.php:23 -msgid "." -msgstr "," - -#: libraries/messages.inc.php:25 server_status.php:461 +#: libraries/messages.inc.php:21 server_status.php:461 msgid "Aborted" msgstr "Keskeytetty" -#: libraries/messages.inc.php:28 main.php:68 +#: libraries/messages.inc.php:24 main.php:68 msgid "Actions" msgstr "Toiminnot" -#: libraries/messages.inc.php:34 libraries/tbl_properties.inc.php:780 +#: libraries/messages.inc.php:30 libraries/tbl_properties.inc.php:780 #: tbl_structure.php:543 #, php-format msgid "Add %s field(s)" msgstr "Lisää %s kenttä(ä)" -#: libraries/messages.inc.php:35 +#: libraries/messages.inc.php:31 msgid "Add custom comment into header (\\n splits lines)" msgstr "Lisää oma kommentti otsikkoon (\\n on rivinvaihto)" -#: libraries/messages.inc.php:36 +#: libraries/messages.inc.php:32 msgid "Add into comments" msgstr "Lisää kommentteihin" -#: libraries/messages.inc.php:37 tbl_structure.php:541 +#: libraries/messages.inc.php:33 tbl_structure.php:541 msgid "Add new field" msgstr "Lisää sarake" -#: libraries/messages.inc.php:38 server_privileges.php:1886 +#: libraries/messages.inc.php:34 server_privileges.php:1886 msgid "Add privileges on the following database" msgstr "Lisää käyttöoikeudet seuraavaan tietokantaan" -#: libraries/messages.inc.php:39 server_privileges.php:1907 +#: libraries/messages.inc.php:35 server_privileges.php:1907 msgid "Add privileges on the following table" msgstr "Lisää käyttöoikeudet seuraavaan tauluun" -#: libraries/messages.inc.php:40 tbl_select.php:288 +#: libraries/messages.inc.php:36 tbl_select.php:288 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Lisää hakuehtoja (\"WHERE\"-lauseen sisältö):" -#: libraries/messages.inc.php:41 tbl_indexes.php:251 +#: libraries/messages.inc.php:37 tbl_indexes.php:251 #, php-format msgid "Add to index  %s column(s)" msgstr "Lisää indeksiin %s sarake(tta)" -#: libraries/messages.inc.php:42 server_privileges.php:1570 +#: libraries/messages.inc.php:38 server_privileges.php:1570 #: server_privileges.php:1594 server_privileges.php:1988 #: server_privileges.php:2177 msgid "Add a new User" msgstr "Lisää uusi käyttäjä" -#: libraries/messages.inc.php:43 server_privileges.php:931 +#: libraries/messages.inc.php:39 server_privileges.php:931 msgid "You have added a new user." msgstr "Uusi käyttäjä lisätty." -#: libraries/messages.inc.php:44 server_privileges.php:571 +#: libraries/messages.inc.php:40 server_privileges.php:571 msgid "Administration" msgstr "Hallinta" -#: libraries/messages.inc.php:45 tbl_structure.php:557 +#: libraries/messages.inc.php:41 tbl_structure.php:557 #, php-format msgid "After %s" msgstr "Jälkeen sarakkeen: %s" -#: libraries/messages.inc.php:46 tbl_change.php:1147 +#: libraries/messages.inc.php:42 tbl_change.php:1147 msgid "Go back to previous page" msgstr "Takaisin" -#: libraries/messages.inc.php:47 tbl_change.php:1148 +#: libraries/messages.inc.php:43 tbl_change.php:1148 msgid "Insert another new row" msgstr "Lisää uusi rivi" -#: libraries/messages.inc.php:48 tbl_change.php:1160 +#: libraries/messages.inc.php:44 tbl_change.php:1160 msgid "Edit next row" msgstr "Muokkaa seuraavaa riviä" -#: libraries/messages.inc.php:49 tbl_change.php:1152 +#: libraries/messages.inc.php:45 tbl_change.php:1152 msgid "Go back to this page" msgstr "Palaa tälle sivulle" -#: libraries/messages.inc.php:50 querywindow.php:115 +#: libraries/messages.inc.php:46 querywindow.php:115 msgid "All" msgstr "Kaikki" -#: libraries/messages.inc.php:53 tbl_operations.php:249 +#: libraries/messages.inc.php:49 tbl_operations.php:249 msgid "Alter table order by" msgstr "Lajittele taulu" -#: libraries/messages.inc.php:54 tbl_operations.php:660 +#: libraries/messages.inc.php:50 tbl_operations.php:660 msgid "Analyze" msgstr "Analysoi" -#: libraries/messages.inc.php:57 +#: libraries/messages.inc.php:53 msgid "and" msgstr "ja" -#: libraries/messages.inc.php:59 pmd_general.php:87 +#: libraries/messages.inc.php:55 pmd_general.php:87 msgid "Angular links" msgstr "Kulmikkaat linkit" -#: libraries/messages.inc.php:60 tbl_structure.php:401 tbl_structure.php:415 +#: libraries/messages.inc.php:56 tbl_structure.php:401 tbl_structure.php:415 #: tbl_structure.php:429 #, php-format msgid "An index has been added on %s" msgstr "Sarakkeelle %s on lisätty indeksi" -#: libraries/messages.inc.php:61 server_privileges.php:1521 +#: libraries/messages.inc.php:57 server_privileges.php:1521 #: server_privileges.php:2123 msgid "Any" msgstr "Mikä tahansa" -#: libraries/messages.inc.php:62 libraries/replication_gui.lib.php:298 +#: libraries/messages.inc.php:58 libraries/replication_gui.lib.php:298 #: server_privileges.php:725 msgid "Any host" msgstr "Mikä tahansa palvelin" -#: libraries/messages.inc.php:63 libraries/replication_gui.lib.php:250 +#: libraries/messages.inc.php:59 libraries/replication_gui.lib.php:250 #: server_privileges.php:677 msgid "Any user" msgstr "Kuka tahansa käyttäjä" -#: libraries/messages.inc.php:64 server_synchronize.php:449 +#: libraries/messages.inc.php:60 server_synchronize.php:449 #: server_synchronize.php:894 msgid "Apply Selected Changes" msgstr "Tee valitut muutokset" -#: libraries/messages.inc.php:66 tbl_structure.php:386 +#: libraries/messages.inc.php:62 tbl_structure.php:386 #, php-format msgid "A primary key has been added on %s" msgstr "Sarakkeelle %s on luotu perusavain" -#: libraries/messages.inc.php:67 libraries/mysql_charsets.lib.php:368 +#: libraries/messages.inc.php:63 libraries/mysql_charsets.lib.php:368 msgid "Arabic" msgstr "Arabialainen" -#: libraries/messages.inc.php:68 libraries/mysql_charsets.lib.php:359 +#: libraries/messages.inc.php:64 libraries/mysql_charsets.lib.php:359 msgid "Armenian" msgstr "Armenialainen" -#: libraries/messages.inc.php:70 libraries/tbl_properties.inc.php:394 +#: libraries/messages.inc.php:66 libraries/tbl_properties.inc.php:394 msgid "As defined:" msgstr "Määritelty:" -#: libraries/messages.inc.php:71 tbl_structure.php:556 +#: libraries/messages.inc.php:67 tbl_structure.php:556 msgid "At Beginning of Table" msgstr "Taulun alkuun" -#: libraries/messages.inc.php:72 tbl_structure.php:555 +#: libraries/messages.inc.php:68 tbl_structure.php:555 msgid "At End of Table" msgstr "Taulun loppuun" -#: libraries/messages.inc.php:73 libraries/tbl_properties.inc.php:108 +#: libraries/messages.inc.php:69 libraries/tbl_properties.inc.php:108 #: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:144 #: tbl_structure.php:180 msgid "Attributes" msgstr "Attribuutit" -#: libraries/messages.inc.php:74 pdf_pages.php:303 pdf_pages.php:306 +#: libraries/messages.inc.php:70 pdf_pages.php:303 pdf_pages.php:306 msgid "Automatic layout" msgstr "Automaattinen ulkoasu" -#: libraries/messages.inc.php:77 libraries/mysql_charsets.lib.php:354 +#: libraries/messages.inc.php:73 libraries/mysql_charsets.lib.php:354 msgid "Baltic" msgstr "Baltilainen" -#: libraries/messages.inc.php:78 libraries/sqlparser.lib.php:175 +#: libraries/messages.inc.php:74 libraries/sqlparser.lib.php:175 msgid "BEGIN CUT" msgstr "ALOITA CUT" -#: libraries/messages.inc.php:79 libraries/sqlparser.lib.php:179 +#: libraries/messages.inc.php:75 libraries/sqlparser.lib.php:179 msgid "BEGIN RAW" msgstr "ALOITA RAW" -#: libraries/messages.inc.php:80 libraries/mysql_charsets.lib.php:201 +#: libraries/messages.inc.php:76 libraries/mysql_charsets.lib.php:201 #: libraries/mysql_charsets.lib.php:402 tbl_change.php:518 msgid "Binary" msgstr "Binääritietoa" -#: libraries/messages.inc.php:81 tbl_change.php:894 +#: libraries/messages.inc.php:77 tbl_change.php:894 msgid "Binary - do not edit" msgstr "Binääritietoa - älä muokkaa" -#: libraries/messages.inc.php:82 libraries/server_links.inc.php:76 +#: libraries/messages.inc.php:78 libraries/server_links.inc.php:76 #: server_binlog.php:110 server_status.php:253 test/theme.php:121 msgid "Binary log" msgstr "Binääriloki" -#: libraries/messages.inc.php:83 server_binlog.php:217 +#: libraries/messages.inc.php:79 server_binlog.php:217 msgid "Event type" msgstr "Tapahtuman tyyppi" -#: libraries/messages.inc.php:84 server_binlog.php:220 +#: libraries/messages.inc.php:80 server_binlog.php:220 msgid "Information" msgstr "Tiedot" -#: libraries/messages.inc.php:85 server_binlog.php:215 +#: libraries/messages.inc.php:81 server_binlog.php:215 msgid "Log name" msgstr "Lokin nimi" -#: libraries/messages.inc.php:86 server_binlog.php:219 +#: libraries/messages.inc.php:82 server_binlog.php:219 msgid "Original position" msgstr "Alkuperäinen sijainti" -#: libraries/messages.inc.php:87 server_binlog.php:216 +#: libraries/messages.inc.php:83 server_binlog.php:216 msgid "Position" msgstr "Sijainti" -#: libraries/messages.inc.php:88 libraries/replication_gui.lib.php:169 +#: libraries/messages.inc.php:84 libraries/replication_gui.lib.php:169 #: server_binlog.php:218 msgid "Server ID" msgstr "Palvelimen tunnus" -#: libraries/messages.inc.php:92 +#: libraries/messages.inc.php:88 #, fuzzy msgctxt "$strBLOBRepositoryDisabled" msgid "Disabled" msgstr "Ei käytössä" -#: libraries/messages.inc.php:95 +#: libraries/messages.inc.php:91 #, fuzzy msgctxt "$strBLOBRepositoryEnabled" msgid "Enabled" msgstr "Käytössä" -#: libraries/messages.inc.php:97 tbl_change.php:888 +#: libraries/messages.inc.php:93 tbl_change.php:888 msgid "Remove BLOB Repository Reference" msgstr "Poista BLOB-tietokantaviittaus" -#: libraries/messages.inc.php:98 +#: libraries/messages.inc.php:94 #, fuzzy msgctxt "$strBLOBRepositoryRepair" msgid "Repair" msgstr "Korjaa" -#: libraries/messages.inc.php:99 tbl_change.php:987 +#: libraries/messages.inc.php:95 tbl_change.php:987 msgid "Upload to BLOB repository" msgstr "Lähetä BLOB-tietokantaan" -#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:359 +#: libraries/messages.inc.php:96 libraries/sql_query_form.lib.php:359 #: sql.php:677 msgid "Let every user access this bookmark" msgstr "Anna kaikkien käyttäjien käyttää tätä kirjanmerkkiä" -#: libraries/messages.inc.php:103 sql.php:671 +#: libraries/messages.inc.php:99 sql.php:671 msgid "Label" msgstr "Tunniste" -#: libraries/messages.inc.php:104 libraries/sql_query_form.lib.php:433 +#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:433 msgid "Bookmarked SQL query" msgstr "Tallennettu SQL-kysely" -#: libraries/messages.inc.php:105 libraries/sql_query_form.lib.php:365 +#: libraries/messages.inc.php:101 libraries/sql_query_form.lib.php:365 msgid "Replace existing bookmark of same name" msgstr "Korvaa samanniminen, olemassa oleva kirjanmerkki" -#: libraries/messages.inc.php:106 libraries/sql_query_form.lib.php:352 +#: libraries/messages.inc.php:102 libraries/sql_query_form.lib.php:352 #: sql.php:665 sql.php:666 sql.php:683 msgid "Bookmark this SQL query" msgstr "Tallenna SQL-kysely" -#: libraries/messages.inc.php:107 libraries/sql_query_form.lib.php:466 +#: libraries/messages.inc.php:103 libraries/sql_query_form.lib.php:466 msgid "View only" msgstr "Näytä" -#: libraries/messages.inc.php:109 tbl_structure.php:161 +#: libraries/messages.inc.php:105 tbl_structure.php:161 msgid "Browse distinct values" msgstr "Selaa erilaisia arvoja" -#: libraries/messages.inc.php:110 tbl_change.php:252 tbl_select.php:27 +#: libraries/messages.inc.php:106 tbl_change.php:252 tbl_select.php:27 #: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34 msgid "Browse foreign values" msgstr "Selaa viitearvoja" -#: libraries/messages.inc.php:118 libraries/mysql_charsets.lib.php:213 +#: libraries/messages.inc.php:114 libraries/mysql_charsets.lib.php:213 msgid "Bulgarian" msgstr "Bulgarialainen" -#: libraries/messages.inc.php:120 +#: libraries/messages.inc.php:116 msgid "\"bzipped\"" msgstr "\"bzip-pakkaus\"" -#: libraries/messages.inc.php:122 +#: libraries/messages.inc.php:118 msgid "Calendar" msgstr "Kalenteri" -#: libraries/messages.inc.php:129 tbl_indexes.php:75 +#: libraries/messages.inc.php:125 tbl_indexes.php:75 msgid "Can't rename index to PRIMARY!" msgstr "Indeksiä ei voi muuttaa PRIMARY-nimiseksi!" -#: libraries/messages.inc.php:132 libraries/mysql_charsets.lib.php:223 +#: libraries/messages.inc.php:128 libraries/mysql_charsets.lib.php:223 #: libraries/mysql_charsets.lib.php:409 msgid "case-insensitive" msgstr "kirjainkoolla ei väliä" -#: libraries/messages.inc.php:133 libraries/mysql_charsets.lib.php:226 +#: libraries/messages.inc.php:129 libraries/mysql_charsets.lib.php:226 #: libraries/mysql_charsets.lib.php:411 msgid "case-sensitive" msgstr "tarkka kirjainkoko" -#: libraries/messages.inc.php:134 libraries/mysql_charsets.lib.php:332 +#: libraries/messages.inc.php:130 libraries/mysql_charsets.lib.php:332 msgid "Central European" msgstr "Keskieurooppalainen" -#: libraries/messages.inc.php:136 server_privileges.php:1969 +#: libraries/messages.inc.php:132 server_privileges.php:1969 msgid "... keep the old one." msgstr "... säilytä vanha käyttäjä." -#: libraries/messages.inc.php:137 server_privileges.php:1967 +#: libraries/messages.inc.php:133 server_privileges.php:1967 msgid "Create a new user with the same privileges and ..." msgstr "Luo uusi käyttäjä samoilla käyttöoikeuksilla ja ..." -#: libraries/messages.inc.php:138 server_privileges.php:1972 +#: libraries/messages.inc.php:134 server_privileges.php:1972 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -3357,78 +3357,78 @@ msgstr "" " ... poista vanha käyttäjä käyttäjätauluista ja lataa käyttöoikeudet sen " "jälkeen uudelleen." -#: libraries/messages.inc.php:139 server_privileges.php:1970 +#: libraries/messages.inc.php:135 server_privileges.php:1970 msgid " ... delete the old one from the user tables." msgstr " ... poista vanha käyttäjä käyttäjätauluista." -#: libraries/messages.inc.php:140 server_privileges.php:1971 +#: libraries/messages.inc.php:136 server_privileges.php:1971 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "" " ... peruuta kaikki vanhan käyttäjän aktiiviset käyttöoikeudet ja tuhoa " "käyttäjä sen jälkeen." -#: libraries/messages.inc.php:141 server_privileges.php:1964 +#: libraries/messages.inc.php:137 server_privileges.php:1964 msgid "Change Login Information / Copy User" msgstr "Vaihda kirjautumistietoja / Kopioi käyttäjä" -#: libraries/messages.inc.php:144 libraries/mysql_charsets.lib.php:107 +#: libraries/messages.inc.php:140 libraries/mysql_charsets.lib.php:107 msgid "Charset" msgstr "Merkistökoodaus" -#: libraries/messages.inc.php:146 server_collations.php:40 +#: libraries/messages.inc.php:142 server_collations.php:40 msgid "Character Sets and Collations" msgstr "Merkistökoodaukset ja aakkosjärjestykset" -#: libraries/messages.inc.php:147 libraries/server_links.inc.php:57 +#: libraries/messages.inc.php:143 libraries/server_links.inc.php:57 #: test/theme.php:109 msgid "Charsets" msgstr "Merkistöt" -#: libraries/messages.inc.php:149 tbl_operations.php:661 +#: libraries/messages.inc.php:145 tbl_operations.php:661 msgid "Check" msgstr "Tarkasta" -#: libraries/messages.inc.php:151 server_databases.php:293 +#: libraries/messages.inc.php:147 server_databases.php:293 #: server_databases.php:294 msgid "Check Privileges" msgstr "Hallitse käyttöoikeuksia" -#: libraries/messages.inc.php:152 server_databases.php:289 +#: libraries/messages.inc.php:148 server_databases.php:289 #, php-format msgid "Check privileges for database "%s"." msgstr "Hallitse tietokannan "%s" käyttöoikeuksia." -#: libraries/messages.inc.php:154 pdf_pages.php:261 +#: libraries/messages.inc.php:150 pdf_pages.php:261 msgid "Please choose a page to edit" msgstr "Valitse muokattava sivu" -#: libraries/messages.inc.php:157 +#: libraries/messages.inc.php:153 msgid "Displaying Column Comments" msgstr "Sarakkeiden kommentit näkyvissä" -#: libraries/messages.inc.php:159 pdf_pages.php:483 view_create.php:148 +#: libraries/messages.inc.php:155 pdf_pages.php:483 view_create.php:148 msgid "Column names" msgstr "Sarakkeiden nimet" -#: libraries/messages.inc.php:160 server_privileges.php:1685 +#: libraries/messages.inc.php:156 server_privileges.php:1685 msgid "Column-specific privileges" msgstr "Sarakekohtaiset käyttöoikeudet" -#: libraries/messages.inc.php:164 +#: libraries/messages.inc.php:160 msgid "MySQL 4.0 compatible" msgstr "MySQL 4.0 -yhteensopiva" -#: libraries/messages.inc.php:165 +#: libraries/messages.inc.php:161 msgid "Complete inserts" msgstr "Kokonaiset lisäyslauseet" -#: libraries/messages.inc.php:168 +#: libraries/messages.inc.php:164 #, php-format msgid "Could not load default configuration from: \"%1$s\"" msgstr "Oletusasetuksia ei voitu ladata kohteesta: \"%1$s\"" -#: libraries/messages.inc.php:169 main.php:306 +#: libraries/messages.inc.php:165 main.php:306 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " @@ -3438,170 +3438,170 @@ msgstr "" "hakemistossa. Sinun tulee poistaa kansio, kun phpMyAdminin asetukset on " "määritetty." -#: libraries/messages.inc.php:171 pdf_schema.php:672 +#: libraries/messages.inc.php:167 pdf_schema.php:672 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Määrittele koordinaatit taululle %s" -#: libraries/messages.inc.php:173 server_status.php:433 +#: libraries/messages.inc.php:169 server_status.php:433 msgid "Connections" msgstr "Yhteydet" -#: libraries/messages.inc.php:179 tbl_operations.php:509 +#: libraries/messages.inc.php:175 tbl_operations.php:509 msgid "Copy table to (database.table):" msgstr "Kopioi taulu toiseen tauluun nimellä (tietokanta.taulu):" -#: libraries/messages.inc.php:180 tbl_move_copy.php:58 +#: libraries/messages.inc.php:176 tbl_move_copy.php:58 #, php-format msgid "Table %s has been copied to %s." msgstr "Taulu %s on kopioitu uuteen tauluun %s." -#: libraries/messages.inc.php:181 tbl_move_copy.php:48 +#: libraries/messages.inc.php:177 tbl_move_copy.php:48 msgid "Can't copy table to same one!" msgstr "Taulua ei voi kopioida itseensä!" -#: libraries/messages.inc.php:182 server_synchronize.php:94 +#: libraries/messages.inc.php:178 server_synchronize.php:94 msgid "Could not connect to the source" msgstr "Lähteeseen ei voida muodostaa yhteyttä" -#: libraries/messages.inc.php:183 server_synchronize.php:97 +#: libraries/messages.inc.php:179 server_synchronize.php:97 msgid "Could not connect to the target" msgstr "Kohteeseen ei voida muodostaa yhteyttä" -#: libraries/messages.inc.php:184 server_processlist.php:24 +#: libraries/messages.inc.php:180 server_processlist.php:24 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "PhpMyAdmin ei voinut lopettaa säiettä %s. Se on ehkä jo suljettu." -#: libraries/messages.inc.php:187 +#: libraries/messages.inc.php:183 #, php-format msgid "Create an index on %s columns" msgstr "Luo  %s:n sarakkeen indeksi" -#: libraries/messages.inc.php:188 tbl_indexes.php:160 +#: libraries/messages.inc.php:184 tbl_indexes.php:160 msgid "Create a new index" msgstr "Luo uusi indeksi" -#: libraries/messages.inc.php:191 pdf_pages.php:297 pmd_pdf.php:114 +#: libraries/messages.inc.php:187 pdf_pages.php:297 pmd_pdf.php:114 msgid "Create a page" msgstr "Luo uusi sivu" -#: libraries/messages.inc.php:192 +#: libraries/messages.inc.php:188 msgid "Creation of PDFs" msgstr "PDF-tiedostojen luonti" -#: libraries/messages.inc.php:193 pmd_general.php:74 pmd_general.php:306 +#: libraries/messages.inc.php:189 pmd_general.php:74 pmd_general.php:306 msgid "Create relation" msgstr "Luo relaatio" -#: libraries/messages.inc.php:194 pmd_general.php:71 +#: libraries/messages.inc.php:190 pmd_general.php:71 #: server_synchronize.php:429 server_synchronize.php:872 msgid "Create table" msgstr "Luo taulu" -#: libraries/messages.inc.php:195 +#: libraries/messages.inc.php:191 #, fuzzy msgctxt "$strCreateTableShort" msgid "Create table" msgstr "Luo taulu" -#: libraries/messages.inc.php:196 server_privileges.php:1994 +#: libraries/messages.inc.php:192 server_privileges.php:1994 msgid "Database for user" msgstr "Tietokanta käyttäjälle" -#: libraries/messages.inc.php:197 server_privileges.php:1999 +#: libraries/messages.inc.php:193 server_privileges.php:1999 msgid "Create database with same name and grant all privileges" msgstr "Luo samanniminen tietokanta ja anna kaikki oikeudet" -#: libraries/messages.inc.php:198 +#: libraries/messages.inc.php:194 #, fuzzy msgctxt "$strCreateUserDatabaseNone" msgid "None" msgstr "Ei mitään" -#: libraries/messages.inc.php:199 server_privileges.php:2003 +#: libraries/messages.inc.php:195 server_privileges.php:2003 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Anna tietokannalle "%s" kaikki oikeudet" -#: libraries/messages.inc.php:200 server_privileges.php:2000 +#: libraries/messages.inc.php:196 server_privileges.php:2000 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" "Anna kaikki oikeudet tietokannalle käyttäen korvausmerkkiä (username\\_%)" -#: libraries/messages.inc.php:201 +#: libraries/messages.inc.php:197 msgid "Creation/Update/Check dates" msgstr "Luonti-, päivitys- ja tarkistuspäiväykset" -#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:229 +#: libraries/messages.inc.php:199 libraries/mysql_charsets.lib.php:229 msgid "Croatian" msgstr "Kroaatti" -#: libraries/messages.inc.php:204 +#: libraries/messages.inc.php:200 msgid "CSV" msgstr "CSV" -#: libraries/messages.inc.php:205 libraries/server_synchronize.lib.php:1343 +#: libraries/messages.inc.php:201 libraries/server_synchronize.lib.php:1343 #: libraries/server_synchronize.lib.php:1369 msgid "Current server" msgstr "Nykyinen palvelin" -#: libraries/messages.inc.php:206 main.php:159 +#: libraries/messages.inc.php:202 main.php:159 msgid "Custom color" msgstr "Muu väri" -#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:365 +#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:365 msgid "Cyrillic" msgstr "Kyrillinen" -#: libraries/messages.inc.php:208 libraries/mysql_charsets.lib.php:232 +#: libraries/messages.inc.php:204 libraries/mysql_charsets.lib.php:232 msgid "Czech" msgstr "Tsekkiläinen" -#: libraries/messages.inc.php:209 libraries/mysql_charsets.lib.php:383 +#: libraries/messages.inc.php:205 libraries/mysql_charsets.lib.php:383 msgid "Czech-Slovak" msgstr "Tsekkoslovakialainen" -#: libraries/messages.inc.php:211 libraries/mysql_charsets.lib.php:235 +#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:235 msgid "Danish" msgstr "Tanskalainen" -#: libraries/messages.inc.php:214 +#: libraries/messages.inc.php:210 msgid "Database export options" msgstr "Tietokannan tulostusvalinnat" -#: libraries/messages.inc.php:217 server_synchronize.php:122 +#: libraries/messages.inc.php:213 server_synchronize.php:122 #: server_synchronize.php:125 tbl_create.php:82 tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "Tietokantaa '%s' ei ole olemassa." -#: libraries/messages.inc.php:219 server_databases.php:63 +#: libraries/messages.inc.php:215 server_databases.php:63 #, php-format msgid "%s databases have been dropped successfully." msgstr "%s tietokantaa poistettiin onnistuneesti." -#: libraries/messages.inc.php:220 libraries/server_synchronize.lib.php:1341 +#: libraries/messages.inc.php:216 libraries/server_synchronize.lib.php:1341 #: server_synchronize.php:1110 msgid "Source database" msgstr "Lähdetietokanta" -#: libraries/messages.inc.php:221 server_databases.php:88 +#: libraries/messages.inc.php:217 server_databases.php:88 msgid "Databases statistics" msgstr "Tietokantatilastot" -#: libraries/messages.inc.php:222 server_databases.php:362 +#: libraries/messages.inc.php:218 server_databases.php:362 #: server_databases.php:363 msgid "Disable Statistics" msgstr "Kätke tilastot" -#: libraries/messages.inc.php:223 server_databases.php:358 +#: libraries/messages.inc.php:219 server_databases.php:358 #: server_databases.php:359 msgid "Enable Statistics" msgstr "Näytä tilastot" -#: libraries/messages.inc.php:224 server_databases.php:366 +#: libraries/messages.inc.php:220 server_databases.php:366 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -3609,30 +3609,30 @@ msgstr "" "Huom: Tietokantatilastojen näyttäminen täältä käsin saattaa aiheuttaa " "runsaasti liikennettä Internet-palvelimen ja MySQL-palvelimen välille." -#: libraries/messages.inc.php:225 libraries/server_synchronize.lib.php:1367 +#: libraries/messages.inc.php:221 libraries/server_synchronize.lib.php:1367 #: server_synchronize.php:1112 msgid "Target database" msgstr "Kohdetietokanta" -#: libraries/messages.inc.php:228 server_synchronize.php:425 +#: libraries/messages.inc.php:224 server_synchronize.php:425 #: server_synchronize.php:868 msgid "Data Difference" msgstr "Tietojen erot" -#: libraries/messages.inc.php:231 server_synchronize.php:272 +#: libraries/messages.inc.php:227 server_synchronize.php:272 msgid "Data Synchronization" msgstr "Tietojen yhtenäistäminen" -#: libraries/messages.inc.php:235 server_privileges.php:526 +#: libraries/messages.inc.php:231 server_privileges.php:526 #: server_privileges.php:1679 msgid "Database-specific privileges" msgstr "Tietokantakohtaiset käyttöoikeudet" -#: libraries/messages.inc.php:237 server_privileges.php:2136 +#: libraries/messages.inc.php:233 server_privileges.php:2136 msgid "database-specific" msgstr "tietokantakohtainen" -#: libraries/messages.inc.php:240 libraries/tbl_properties.inc.php:106 +#: libraries/messages.inc.php:236 libraries/tbl_properties.inc.php:106 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" @@ -3640,32 +3640,32 @@ msgstr "" "Syötä oletusarvoihin vain yksi arvo (käyttämättä kenoviivamerkkejä tai " "lainausmerkkejä) tässä muodossa: a" -#: libraries/messages.inc.php:241 tbl_operations.php:589 +#: libraries/messages.inc.php:237 tbl_operations.php:589 msgid "Defragment table" msgstr "Eheytä taulu" -#: libraries/messages.inc.php:242 +#: libraries/messages.inc.php:238 msgid "Use delayed inserts" msgstr "Käytä viivästettyjä lisäyslauseita" -#: libraries/messages.inc.php:245 server_privileges.php:1243 +#: libraries/messages.inc.php:241 server_privileges.php:1243 msgid "No users selected for deleting!" msgstr "Yhtään käyttäjää ei valittu poistettavaksi!" -#: libraries/messages.inc.php:246 pmd_general.php:372 +#: libraries/messages.inc.php:242 pmd_general.php:372 msgid "Delete relation" msgstr "Poista relaatio" -#: libraries/messages.inc.php:248 server_privileges.php:1232 +#: libraries/messages.inc.php:244 server_privileges.php:1232 #, php-format msgid "Deleting %s" msgstr "Poistetaan: %s" -#: libraries/messages.inc.php:249 libraries/sql_query_form.lib.php:388 +#: libraries/messages.inc.php:245 libraries/sql_query_form.lib.php:388 msgid "Delimiter" msgstr "Erotinmerkki" -#: libraries/messages.inc.php:250 pdf_pages.php:506 +#: libraries/messages.inc.php:246 pdf_pages.php:506 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -3673,7 +3673,7 @@ msgstr "" "Nykyisellä sivulla on viittauksia tauluihin, joita ei enää ole olemassa. " "Haluatko poistaa nuo viittaukset?" -#: libraries/messages.inc.php:254 pmd_help.php:29 +#: libraries/messages.inc.php:250 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 " @@ -3683,142 +3683,142 @@ msgstr "" "paina \"Valitse näytettävä kenttä\" -kuvaketta ja napsauta sitten sopivaa " "kenttänimeä." -#: libraries/messages.inc.php:256 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:252 libraries/mysql_charsets.lib.php:247 msgid "dictionary" msgstr "sanasto" -#: libraries/messages.inc.php:257 libraries/server_synchronize.lib.php:1348 +#: libraries/messages.inc.php:253 libraries/server_synchronize.lib.php:1348 msgid "Difference" msgstr "Ero" -#: libraries/messages.inc.php:258 pmd_general.php:87 +#: libraries/messages.inc.php:254 pmd_general.php:87 msgid "Direct links" msgstr "Suorat linkit" -#: libraries/messages.inc.php:261 +#: libraries/messages.inc.php:257 msgid "Disable foreign key checks" msgstr "Älä tarkista viiteavaimia" -#: libraries/messages.inc.php:262 +#: libraries/messages.inc.php:258 msgid "Display Features" msgstr "Ulkoasun asetukset" -#: libraries/messages.inc.php:263 tbl_select.php:301 +#: libraries/messages.inc.php:259 tbl_select.php:301 msgid "Display order:" msgstr "Lajittelujärjestys:" -#: libraries/messages.inc.php:265 tbl_select.php:132 +#: libraries/messages.inc.php:261 tbl_select.php:132 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Suorita mallin mukainen kysely (jokerimerkki: \"%\")" -#: libraries/messages.inc.php:266 +#: libraries/messages.inc.php:262 msgid "DocSQL" msgstr "DocSQL" -#: libraries/messages.inc.php:268 +#: libraries/messages.inc.php:264 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Älä käytä nolla-arvoissa AUTO_INCREMENT:iä" -#: libraries/messages.inc.php:273 server_privileges.php:1579 +#: libraries/messages.inc.php:269 server_privileges.php:1579 #: server_privileges.php:1580 server_privileges.php:1581 msgid "Drop the databases that have the same names as the users." msgstr "Poista tietokannat, joilla on sama nimi kuin käyttäjillä." -#: libraries/messages.inc.php:278 tbl_printview.php:382 tbl_structure.php:743 +#: libraries/messages.inc.php:274 tbl_printview.php:382 tbl_structure.php:743 msgid "dynamic" msgstr "dynaaminen" -#: libraries/messages.inc.php:282 server_privileges.php:1324 +#: libraries/messages.inc.php:278 server_privileges.php:1324 #: server_privileges.php:1610 msgid "Edit Privileges" msgstr "Muokkaa käyttöoikeuksia" -#: libraries/messages.inc.php:283 tbl_printview.php:341 tbl_structure.php:688 +#: libraries/messages.inc.php:279 tbl_printview.php:341 tbl_structure.php:688 msgid "Effective" msgstr "Pätevä" -#: libraries/messages.inc.php:286 libraries/relation.lib.php:100 +#: libraries/messages.inc.php:282 libraries/relation.lib.php:100 msgid "Enabled" msgstr "Päällä" -#: libraries/messages.inc.php:287 +#: libraries/messages.inc.php:283 msgid "Enclose export in a transaction" msgstr "Lisää transaktio" -#: libraries/messages.inc.php:288 libraries/sqlparser.lib.php:177 +#: libraries/messages.inc.php:284 libraries/sqlparser.lib.php:177 msgid "END CUT" msgstr "LOPETA CUT" -#: libraries/messages.inc.php:290 libraries/sqlparser.lib.php:183 +#: libraries/messages.inc.php:286 libraries/sqlparser.lib.php:183 msgid "END RAW" msgstr "LOPETA RAW" -#: libraries/messages.inc.php:293 libraries/server_links.inc.php:61 +#: libraries/messages.inc.php:289 libraries/server_links.inc.php:61 #: test/theme.php:113 msgid "Engines" msgstr "Moottorit" -#: libraries/messages.inc.php:295 libraries/mysql_charsets.lib.php:238 +#: libraries/messages.inc.php:291 libraries/mysql_charsets.lib.php:238 msgid "English" msgstr "Englantilainen" -#: libraries/messages.inc.php:296 server_privileges.php:393 +#: libraries/messages.inc.php:292 server_privileges.php:393 #: server_privileges.php:535 server_privileges.php:1501 msgid " Note: MySQL privilege names are expressed in English " msgstr " Huom! MySQL-käyttöoikeuksien nimet ovat englanniksi! " -#: libraries/messages.inc.php:298 libraries/zip_extension.lib.php:49 +#: libraries/messages.inc.php:294 libraries/zip_extension.lib.php:49 #: libraries/zip_extension.lib.php:51 libraries/zip_extension.lib.php:66 msgid "Error in ZIP archive:" msgstr "Virhe ZIP-paketissa:" -#: libraries/messages.inc.php:303 libraries/mysql_charsets.lib.php:241 +#: libraries/messages.inc.php:299 libraries/mysql_charsets.lib.php:241 msgid "Esperanto" msgstr "Esperanto" -#: libraries/messages.inc.php:304 libraries/mysql_charsets.lib.php:244 +#: libraries/messages.inc.php:300 libraries/mysql_charsets.lib.php:244 msgid "Estonian" msgstr "Virolainen" -#: libraries/messages.inc.php:305 libraries/tbl_triggers.lib.php:29 +#: libraries/messages.inc.php:301 libraries/tbl_triggers.lib.php:29 msgid "Event" msgstr "Tapahtuma" -#: libraries/messages.inc.php:307 +#: libraries/messages.inc.php:303 msgid "Excel edition" msgstr "Excel-muokkaus" -#: libraries/messages.inc.php:311 pmd_pdf.php:85 +#: libraries/messages.inc.php:307 pmd_pdf.php:85 msgid "Export/Import to scale" msgstr "Vie/tuo skaalaan" -#: libraries/messages.inc.php:313 +#: libraries/messages.inc.php:309 msgid "Extended inserts" msgstr "Laajennetut lisäyslauseet" -#: libraries/messages.inc.php:314 pdf_schema.php:1267 pdf_schema.php:1288 +#: libraries/messages.inc.php:310 pdf_schema.php:1267 pdf_schema.php:1288 #: tbl_printview.php:147 tbl_structure.php:183 tbl_tracking.php:278 msgid "Extra" msgstr "Lisätiedot" -#: libraries/messages.inc.php:316 server_status.php:447 +#: libraries/messages.inc.php:312 server_status.php:447 msgid "Failed attempts" msgstr "Epäonnistuneet yritykset" -#: libraries/messages.inc.php:318 tbl_structure.php:375 +#: libraries/messages.inc.php:314 tbl_structure.php:375 #, php-format msgid "Field %s has been dropped" msgstr "Sarake %s on poistettu" -#: libraries/messages.inc.php:322 libraries/sql_query_form.lib.php:317 +#: libraries/messages.inc.php:318 libraries/sql_query_form.lib.php:317 msgid "Fields" msgstr "Sarakkeet" -#: libraries/messages.inc.php:332 server_binlog.php:136 +#: libraries/messages.inc.php:328 server_binlog.php:136 msgid "Files" msgstr "Tiedostot" -#: libraries/messages.inc.php:334 server_privileges.php:1597 +#: libraries/messages.inc.php:330 server_privileges.php:1597 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -3831,119 +3831,119 @@ msgstr "" "käyttämistä käyttöoikeuksista, jos tauluihin on tehty muutoksia käsin. " "Tällöin %skäyttöoikeudet on ladattava uudestaan%s ennen jatkamista." -#: libraries/messages.inc.php:335 server_status.php:289 +#: libraries/messages.inc.php:331 server_status.php:289 msgid "Flush query cache" msgstr "Tyhjennä kyselymuisti" -#: libraries/messages.inc.php:336 +#: libraries/messages.inc.php:332 msgid "Flush the table (\"FLUSH\")" msgstr "Tyhjennä taulun välimuisti (\"FLUSH\")" -#: libraries/messages.inc.php:337 server_status.php:271 +#: libraries/messages.inc.php:333 server_status.php:271 msgid "Flush (close) all tables" msgstr "Tyhjennä (sulje) kaikki taulut" -#: libraries/messages.inc.php:339 tbl_relation.php:279 +#: libraries/messages.inc.php:335 tbl_relation.php:279 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "Virhe luotaessa kohteen %1$s viiteavainta (tarkista tietotyypit)" -#: libraries/messages.inc.php:341 setup/lib/messages.inc.php:88 +#: libraries/messages.inc.php:337 setup/lib/messages.inc.php:88 #: tbl_printview.php:376 tbl_structure.php:738 msgid "Format" msgstr "Muoto" -#: libraries/messages.inc.php:344 server_replication.php:325 +#: libraries/messages.inc.php:340 server_replication.php:325 msgid "Full start" msgstr "Kokonäkymän alku" -#: libraries/messages.inc.php:345 server_replication.php:325 +#: libraries/messages.inc.php:341 server_replication.php:325 msgid "Full stop" msgstr "Kokonäkymän loppu" -#: libraries/messages.inc.php:347 tbl_change.php:282 tbl_change.php:320 +#: libraries/messages.inc.php:343 tbl_change.php:282 tbl_change.php:320 msgid "Function" msgstr "Funktio" -#: libraries/messages.inc.php:355 libraries/mysql_charsets.lib.php:377 +#: libraries/messages.inc.php:351 libraries/mysql_charsets.lib.php:377 msgid "Georgian" msgstr "Georgialainen" -#: libraries/messages.inc.php:356 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:352 libraries/mysql_charsets.lib.php:247 #: libraries/mysql_charsets.lib.php:250 msgid "German" msgstr "Saksalainen" -#: libraries/messages.inc.php:357 themes.php:42 +#: libraries/messages.inc.php:353 themes.php:42 msgid "Get more themes!" msgstr "Hae teemoja lisää!" -#: libraries/messages.inc.php:358 server_privileges.php:2134 +#: libraries/messages.inc.php:354 server_privileges.php:2134 msgid "global" msgstr "globaali" -#: libraries/messages.inc.php:359 server_privileges.php:524 +#: libraries/messages.inc.php:355 server_privileges.php:524 #: server_privileges.php:1500 msgid "Global privileges" msgstr "Globaalit käyttöoikeudet" -#: libraries/messages.inc.php:360 server_variables.php:55 +#: libraries/messages.inc.php:356 server_variables.php:55 #: server_variables.php:89 msgid "Global value" msgstr "Globaali arvo" -#: libraries/messages.inc.php:365 server_privileges.php:1502 +#: libraries/messages.inc.php:361 server_privileges.php:1502 #: server_privileges.php:1684 server_privileges.php:2033 msgid "Grant" msgstr "Valtuudet (GRANT)" -#: libraries/messages.inc.php:366 libraries/mysql_charsets.lib.php:380 +#: libraries/messages.inc.php:362 libraries/mysql_charsets.lib.php:380 msgid "Greek" msgstr "Kreikkalainen" -#: libraries/messages.inc.php:367 +#: libraries/messages.inc.php:363 msgid "\"gzipped\"" msgstr "\"gzip-pakkaus\"" -#: libraries/messages.inc.php:369 server_status.php:250 +#: libraries/messages.inc.php:365 server_status.php:250 msgid "Handler" msgstr "Käsittelijä" -#: libraries/messages.inc.php:370 server_synchronize.php:464 +#: libraries/messages.inc.php:366 server_synchronize.php:464 msgid "Selected target tables have been synchronized with source tables." msgstr "Valitut kohdetaulut on yhtenäistetty lähdetaulujen kanssa." -#: libraries/messages.inc.php:372 libraries/mysql_charsets.lib.php:374 +#: libraries/messages.inc.php:368 libraries/mysql_charsets.lib.php:374 msgid "Hebrew" msgstr "Hebrealainen" -#: libraries/messages.inc.php:373 pmd_general.php:83 +#: libraries/messages.inc.php:369 pmd_general.php:83 msgid "Help" msgstr "Ohje" -#: libraries/messages.inc.php:374 +#: libraries/messages.inc.php:370 msgid "Use hexadecimal for BLOB" msgstr "Käytä BLOB-arvoissa heksalukuja" -#: libraries/messages.inc.php:376 pmd_general.php:120 +#: libraries/messages.inc.php:372 pmd_general.php:120 msgid "Hide/Show all" msgstr "Kätke/näytä kaikki" -#: libraries/messages.inc.php:377 pmd_general.php:124 +#: libraries/messages.inc.php:373 pmd_general.php:124 msgid "Hide/Show Tables with no relation" msgstr "Kätke/näytä taulut, joilla ei ole relaatiota" -#: libraries/messages.inc.php:378 libraries/navigation_header.inc.php:54 +#: libraries/messages.inc.php:374 libraries/navigation_header.inc.php:54 #: libraries/navigation_header.inc.php:57 #: libraries/navigation_header.inc.php:58 msgid "Home" msgstr "Etusivu" -#: libraries/messages.inc.php:379 main.php:233 +#: libraries/messages.inc.php:375 main.php:233 msgid "Official Homepage" msgstr "phpMyAdminin kotisivut" -#: libraries/messages.inc.php:382 libraries/replication_gui.lib.php:327 +#: libraries/messages.inc.php:378 libraries/replication_gui.lib.php:327 #: server_privileges.php:753 msgid "" "When Host table is used, this field is ignored and values stored in Host " @@ -3952,98 +3952,98 @@ msgstr "" "Kun Host-taulua käytetään, tätä kenttää ei huomioida, vaan sen sijaan " "käytetään Host-taulussa olevia tietoja." -#: libraries/messages.inc.php:383 +#: libraries/messages.inc.php:379 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/messages.inc.php:384 libraries/mysql_charsets.lib.php:253 +#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:253 msgid "Hungarian" msgstr "Unkarilainen" -#: libraries/messages.inc.php:386 libraries/mysql_charsets.lib.php:256 +#: libraries/messages.inc.php:382 libraries/mysql_charsets.lib.php:256 msgid "Icelandic" msgstr "Islantilainen" -#: libraries/messages.inc.php:387 server_processlist.php:53 +#: libraries/messages.inc.php:383 server_processlist.php:53 msgid "ID" msgstr "Tunnus" -#: libraries/messages.inc.php:388 libraries/mult_submits.inc.php:108 +#: libraries/messages.inc.php:384 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:479 msgid "Fulltext" msgstr "Koko teksti" -#: libraries/messages.inc.php:389 +#: libraries/messages.inc.php:385 msgid "Ignore duplicate rows" msgstr "Älä välitä samanlaisista riveistä" -#: libraries/messages.inc.php:390 tbl_change.php:302 tbl_indexes.php:200 +#: libraries/messages.inc.php:386 tbl_change.php:302 tbl_indexes.php:200 #: tbl_indexes.php:225 msgid "Ignore" msgstr "Älä huomioi" -#: libraries/messages.inc.php:391 +#: libraries/messages.inc.php:387 msgid "Use ignore inserts" msgstr "Käytä IGNORE:a INSERT-komennoissa" -#: libraries/messages.inc.php:392 +#: libraries/messages.inc.php:388 msgid "Column names in first row" msgstr "Sarakenimet ensimmäisessä rivissä" -#: libraries/messages.inc.php:393 +#: libraries/messages.inc.php:389 msgid "Do not import empty rows" msgstr "Älä tuo tyhjiä riviä" -#: libraries/messages.inc.php:394 pmd_general.php:104 +#: libraries/messages.inc.php:390 pmd_general.php:104 msgid "Import/Export coordinates for PDF schema" msgstr "Tuo/vie PDF-skeeman koordinaatit" -#: libraries/messages.inc.php:395 querywindow.php:104 +#: libraries/messages.inc.php:391 querywindow.php:104 msgid "Import files" msgstr "Tuo tiedostoja" -#: libraries/messages.inc.php:403 +#: libraries/messages.inc.php:399 msgid "Import currencies ($5.00 to 5.00)" msgstr "Tuo valuutta-arvot ($5.00 muotoon 5.00)" -#: libraries/messages.inc.php:404 libraries/messages.inc.php:584 +#: libraries/messages.inc.php:400 libraries/messages.inc.php:580 msgid "Open Document Spreadsheet" msgstr "Open Document Spreadsheet" -#: libraries/messages.inc.php:405 +#: libraries/messages.inc.php:401 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "Tuo prosenttiyksiköt sopivin desimaaliluvuin (12.00% muotoon .12)" -#: libraries/messages.inc.php:409 +#: libraries/messages.inc.php:405 msgid "Excel 97-2003 XLS Workbook" msgstr "Excel 97-2003 XLS -työkirja" -#: libraries/messages.inc.php:410 +#: libraries/messages.inc.php:406 msgid "Excel 2007 XLSX Workbook" msgstr "Excel 2007 XLSX -työkirja" -#: libraries/messages.inc.php:414 libraries/mult_submits.inc.php:98 +#: libraries/messages.inc.php:410 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:476 tbl_structure.php:674 msgid "Index" msgstr "Indeksi" -#: libraries/messages.inc.php:415 tbl_indexes.php:168 +#: libraries/messages.inc.php:411 tbl_indexes.php:168 msgid "Index name:" msgstr "Indeksin nimi:" -#: libraries/messages.inc.php:416 tbl_indexes.php:174 +#: libraries/messages.inc.php:412 tbl_indexes.php:174 msgid "Index type:" msgstr "Indeksin tyyppi:" -#: libraries/messages.inc.php:417 sql.php:639 +#: libraries/messages.inc.php:413 sql.php:639 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Taulun \"%s\" indeksien kanssa on ongelmia" -#: libraries/messages.inc.php:427 main.php:266 +#: libraries/messages.inc.php:423 main.php:266 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -4054,24 +4054,24 @@ msgstr "" "(root ilman salasanaa). Tällaisin asetuksin MySQL-palvelin on altis " "hyökkäyksille. Tämä tietoturvariski on syytä korjata pikimmiten!" -#: libraries/messages.inc.php:428 tbl_change.php:1130 +#: libraries/messages.inc.php:424 tbl_change.php:1130 msgid "Insert as new row" msgstr "Lisää uutena rivinä" -#: libraries/messages.inc.php:429 sql.php:496 tbl_replace.php:386 +#: libraries/messages.inc.php:425 sql.php:496 tbl_replace.php:386 #, php-format msgid "Inserted row id: %1$d" msgstr "Lisätyn rivin tunnus: %1$d" -#: libraries/messages.inc.php:430 tbl_change.php:1131 +#: libraries/messages.inc.php:426 tbl_change.php:1131 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/messages.inc.php:432 main.php:139 +#: libraries/messages.inc.php:428 main.php:139 msgid "Interface" msgstr "Käyttöliittymä" -#: libraries/messages.inc.php:433 tbl_relation.php:407 +#: libraries/messages.inc.php:429 tbl_relation.php:407 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -4079,140 +4079,140 @@ msgstr "" "Sisäistä relaatiota ei tarvita, kun vastaava FOREIGN KEY -relaatio on " "olemassa." -#: libraries/messages.inc.php:435 pdf_pages.php:303 +#: libraries/messages.inc.php:431 pdf_pages.php:303 msgid "Internal relations" msgstr "Sisäiset relaatiot" -#: libraries/messages.inc.php:438 tbl_indexes.php:256 tbl_structure.php:590 +#: libraries/messages.inc.php:434 tbl_indexes.php:256 tbl_structure.php:590 #: tbl_structure.php:601 msgid "Column count has to be larger than zero." msgstr "Sarakkeiden määrän on oltava nollaa suurempi." -#: libraries/messages.inc.php:444 libraries/tbl_properties.inc.php:784 +#: libraries/messages.inc.php:440 libraries/tbl_properties.inc.php:784 #: tbl_structure.php:537 msgid "You have to add at least one field." msgstr "Vähintään yksi kenttä on lisättävä." -#: libraries/messages.inc.php:449 +#: libraries/messages.inc.php:445 #, php-format msgid "Invalid server index: \"%s\"" msgstr "Virheellinen palvelimen indeksi: \"%s\"" -#: libraries/messages.inc.php:452 libraries/mysql_charsets.lib.php:259 +#: libraries/messages.inc.php:448 libraries/mysql_charsets.lib.php:259 #: libraries/mysql_charsets.lib.php:349 msgid "Japanese" msgstr "Japanilainen" -#: libraries/messages.inc.php:453 main.php:331 +#: libraries/messages.inc.php:449 main.php:331 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: libraries/messages.inc.php:454 server_status.php:257 +#: libraries/messages.inc.php:450 server_status.php:257 msgid "Joins" msgstr "Liitokset" -#: libraries/messages.inc.php:457 server_privileges.php:763 +#: libraries/messages.inc.php:453 server_privileges.php:763 msgid "Do not change the password" msgstr "Älä vaihda salasanaa" -#: libraries/messages.inc.php:458 server_status.php:256 +#: libraries/messages.inc.php:454 server_status.php:256 msgid "Key cache" msgstr "Avainvälimuisti" -#: libraries/messages.inc.php:462 libraries/mysql_charsets.lib.php:268 +#: libraries/messages.inc.php:458 libraries/mysql_charsets.lib.php:268 #: libraries/mysql_charsets.lib.php:371 msgid "Korean" msgstr "Korealainen" -#: libraries/messages.inc.php:466 libraries/select_lang.lib.php:480 +#: libraries/messages.inc.php:462 libraries/select_lang.lib.php:480 #: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492 #, php-format msgid "Unknown language: %1$s." msgstr "Tuntematon kieli: %1$s." -#: libraries/messages.inc.php:468 +#: libraries/messages.inc.php:464 msgid "Table caption" msgstr "Taulun otsikko" -#: libraries/messages.inc.php:469 +#: libraries/messages.inc.php:465 msgid "Content of table __TABLE__" msgstr "Taulun __TABLE__ sisältö" -#: libraries/messages.inc.php:470 +#: libraries/messages.inc.php:466 msgid "Continued table caption" msgstr "Jatkettu taulun otsikko" -#: libraries/messages.inc.php:471 +#: libraries/messages.inc.php:467 msgid "(continued)" msgstr "(jatkuu)" -#: libraries/messages.inc.php:472 +#: libraries/messages.inc.php:468 msgid "Include table caption" msgstr "Sisällytä taulun otsikko" -#: libraries/messages.inc.php:473 +#: libraries/messages.inc.php:469 msgid "Label key" msgstr "Tunniste" -#: libraries/messages.inc.php:474 +#: libraries/messages.inc.php:470 msgid "LaTeX" msgstr "LaTeX" -#: libraries/messages.inc.php:475 +#: libraries/messages.inc.php:471 msgid "Structure of table __TABLE__" msgstr "Taulun __TABLE__ rakenne" -#: libraries/messages.inc.php:476 libraries/mysql_charsets.lib.php:262 +#: libraries/messages.inc.php:472 libraries/mysql_charsets.lib.php:262 msgid "Latvian" msgstr "Latvialainen" -#: libraries/messages.inc.php:477 +#: libraries/messages.inc.php:473 msgid "CSV using LOAD DATA" msgstr "CSV käyttäen LOAD DATA -kyselyä" -#: libraries/messages.inc.php:478 +#: libraries/messages.inc.php:474 msgid "Use LOCAL keyword" msgstr "Käytä LOCAL-avainsanaa" -#: libraries/messages.inc.php:479 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:475 libraries/tbl_properties.inc.php:105 msgid "Length/Values" msgstr "Pituus/Arvot*" -#: libraries/messages.inc.php:480 tbl_select.php:295 +#: libraries/messages.inc.php:476 tbl_select.php:295 msgid "Number of rows per page" msgstr "Rivejä sivulla" -#: libraries/messages.inc.php:484 libraries/mysql_charsets.lib.php:265 +#: libraries/messages.inc.php:480 libraries/mysql_charsets.lib.php:265 msgid "Lithuanian" msgstr "Liettualainen" -#: libraries/messages.inc.php:485 libraries/replication_gui.lib.php:302 +#: libraries/messages.inc.php:481 libraries/replication_gui.lib.php:302 #: server_privileges.php:729 msgid "Local" msgstr "Paikallinen" -#: libraries/messages.inc.php:487 server_privileges.php:669 +#: libraries/messages.inc.php:483 server_privileges.php:669 msgid "Login Information" msgstr "Kirjautumistiedot" -#: libraries/messages.inc.php:490 libraries/navigation_header.inc.php:67 +#: libraries/messages.inc.php:486 libraries/navigation_header.inc.php:67 #: libraries/navigation_header.inc.php:70 #: libraries/navigation_header.inc.php:71 main.php:99 msgid "Log out" msgstr "Poistu" -#: libraries/messages.inc.php:497 server_status.php:440 +#: libraries/messages.inc.php:493 server_status.php:440 msgid "max. concurrent connections" msgstr "Enim. yhtäaikaisia yhteyksiä" -#: libraries/messages.inc.php:498 +#: libraries/messages.inc.php:494 msgid "Maximal length of created query" msgstr "Luodun kyselyn enimmäispituus" -#: libraries/messages.inc.php:500 main.php:282 +#: libraries/messages.inc.php:496 main.php:282 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -4222,7 +4222,7 @@ msgstr "" "olevan käytössä. Ilman mbstring-laajennusta phpMyAdmin ei osaa jaotella " "merkkijonoja oikein, ja tästä saattaa koitua odottamattomia seurauksia." -#: libraries/messages.inc.php:501 main.php:274 +#: libraries/messages.inc.php:497 main.php:274 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -4232,24 +4232,24 @@ msgstr "" "valinta ei sovi yhteen phpMyAdminin kanssa ja saattaa johtaa tietojen " "katoamiseen!" -#: libraries/messages.inc.php:502 +#: libraries/messages.inc.php:498 msgid "MediaWiki Table" msgstr "MediaWiki-taulu" -#: libraries/messages.inc.php:503 transformation_overview.php:25 +#: libraries/messages.inc.php:499 transformation_overview.php:25 msgid "Available MIME types" msgstr "Mahdolliset MIME-tyypit" -#: libraries/messages.inc.php:504 transformation_overview.php:43 +#: libraries/messages.inc.php:500 transformation_overview.php:43 msgid "Available transformations" msgstr "Mahdolliset muunnokset" -#: libraries/messages.inc.php:505 +#: libraries/messages.inc.php:501 msgctxt "$strMIME_description" msgid "Description" msgstr "Kuvaus" -#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:580 +#: libraries/messages.inc.php:503 libraries/tbl_properties.inc.php:580 #: transformation_overview.php:60 #, php-format msgid "" @@ -4259,7 +4259,7 @@ msgstr "" "Tälle muunnokselle ei ole saatavilla kuvausta.
Kysy tekijältä, mitä %s " "tekee." -#: libraries/messages.inc.php:509 libraries/tbl_properties.inc.php:137 +#: libraries/messages.inc.php:505 libraries/tbl_properties.inc.php:137 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -4268,7 +4268,7 @@ msgstr "" "Tietoja saatavilla olevista muunnosvaihtoehdoista ja niiden MIME-tyyppien " "muunnoksista saa painamalla %smuunnoksen kuvaukset%s -kohtaa" -#: libraries/messages.inc.php:510 libraries/tbl_properties.inc.php:146 +#: libraries/messages.inc.php:506 libraries/tbl_properties.inc.php:146 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -4279,56 +4279,56 @@ msgstr "" ">Jos tarvitset arvoissa kenoviivaa (\"\\\") tai yksittäistä lainausmerkkiä " "(\"'\"), lisää merkin eteen kenoviiva (esim. '\\\\xyz' tai 'a\\'b')." -#: libraries/messages.inc.php:511 libraries/tbl_properties.inc.php:145 +#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:145 msgid "Transformation options" msgstr "Muunnosvaihtoehdot" -#: libraries/messages.inc.php:513 transformation_overview.php:38 +#: libraries/messages.inc.php:509 transformation_overview.php:38 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "Kursivoiduilla MIME-tyypeillä ei ole erillistä muunnostoimintoa" -#: libraries/messages.inc.php:515 tbl_indexes.php:162 +#: libraries/messages.inc.php:511 tbl_indexes.php:162 msgid "Modify an index" msgstr "Muokkaa indeksiä" -#: libraries/messages.inc.php:517 pmd_general.php:108 +#: libraries/messages.inc.php:513 pmd_general.php:108 msgid "Move Menu" msgstr "Siirrä valikko" -#: libraries/messages.inc.php:518 tbl_operations.php:276 +#: libraries/messages.inc.php:514 tbl_operations.php:276 msgid "Move table to (database.table):" msgstr "Siirrä taulu toiseen tauluun (tietokanta.taulu):" -#: libraries/messages.inc.php:519 tbl_move_copy.php:56 +#: libraries/messages.inc.php:515 tbl_move_copy.php:56 #, php-format msgid "Table %s has been moved to %s." msgstr "Taulu %s on siirretty %s." -#: libraries/messages.inc.php:520 tbl_move_copy.php:46 +#: libraries/messages.inc.php:516 tbl_move_copy.php:46 msgid "Can't move table to same one!" msgstr "Taulua ei voi siirtää itseensä!" -#: libraries/messages.inc.php:521 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:517 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 #: libraries/mysql_charsets.lib.php:332 libraries/mysql_charsets.lib.php:354 #: libraries/mysql_charsets.lib.php:365 msgid "multilingual" msgstr "monikielinen" -#: libraries/messages.inc.php:534 main.php:193 +#: libraries/messages.inc.php:530 main.php:193 msgid "MySQL charset" msgstr "MySQL-palvelimen merkistö" -#: libraries/messages.inc.php:535 main.php:211 +#: libraries/messages.inc.php:531 main.php:211 msgid "MySQL client version" msgstr "MySQL-asiakasversio" -#: libraries/messages.inc.php:536 main.php:125 +#: libraries/messages.inc.php:532 main.php:125 msgid "MySQL connection collation" msgstr "MySQL-yhteyden aakkosjärjestys" -#: libraries/messages.inc.php:537 main.php:346 +#: libraries/messages.inc.php:533 main.php:346 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -4337,54 +4337,54 @@ msgstr "" "PHP:n MySQL-kirjaston versio %s poikkeaa MySQL-palvelimen versiosta %s. " "Tästä voi koitua arvaamattomia seurauksia." -#: libraries/messages.inc.php:539 server_status.php:294 +#: libraries/messages.inc.php:535 server_status.php:294 msgid "Show processes" msgstr "Näytä prosessit" -#: libraries/messages.inc.php:545 navigation.php:210 server_databases.php:371 +#: libraries/messages.inc.php:541 navigation.php:210 server_databases.php:371 #: server_synchronize.php:1191 msgid "No databases" msgstr "Ei tietokantoja" -#: libraries/messages.inc.php:546 server_databases.php:52 +#: libraries/messages.inc.php:542 server_databases.php:52 msgid "No databases selected." msgstr "Yhtään tietokantaa ei ole valittu." -#: libraries/messages.inc.php:548 libraries/relation.lib.php:1173 +#: libraries/messages.inc.php:544 libraries/relation.lib.php:1173 msgid "no description" msgstr "ei kuvausta" -#: libraries/messages.inc.php:552 libraries/zip_extension.lib.php:26 +#: libraries/messages.inc.php:548 libraries/zip_extension.lib.php:26 msgid "No files found inside ZIP archive!" msgstr "ZIP-paketista ei löytynyt yhtään tiedostoa!" -#: libraries/messages.inc.php:555 tbl_indexes.php:91 +#: libraries/messages.inc.php:551 tbl_indexes.php:91 msgid "No index parts defined!" msgstr "Indeksin osia ei ole määritelty!" -#: libraries/messages.inc.php:556 libraries/mult_submits.inc.php:435 +#: libraries/messages.inc.php:552 libraries/mult_submits.inc.php:435 #: tbl_replace.php:331 msgid "No change" msgstr "Ei muutoksia" -#: libraries/messages.inc.php:557 +#: libraries/messages.inc.php:553 msgctxt "$strNoneDefault" msgid "None" msgstr "Ei mikään" -#: libraries/messages.inc.php:560 libraries/plugin_interface.lib.php:312 +#: libraries/messages.inc.php:556 libraries/plugin_interface.lib.php:312 msgid "This format has no options" msgstr "Tälle tiedostomuodolle ei ole valinta-asetuksia" -#: libraries/messages.inc.php:565 user_password.php:54 +#: libraries/messages.inc.php:561 user_password.php:54 msgid "You don't have sufficient privileges to be here right now!" msgstr "Sinulla ei ole riittäviä oikeuksia!" -#: libraries/messages.inc.php:566 tbl_row_action.php:29 +#: libraries/messages.inc.php:562 tbl_row_action.php:29 msgid "No rows selected" msgstr "Ei yhtään riviä valittu" -#: libraries/messages.inc.php:569 themes.php:32 +#: libraries/messages.inc.php:565 themes.php:32 #, php-format msgid "" "No themes support; please check your configuration and/or your themes in " @@ -4392,292 +4392,292 @@ msgid "" msgstr "" "Ei tukea teemojen käyttöön. Tarkista asetukset ja/tai hakemiston %s teemat." -#: libraries/messages.inc.php:571 libraries/relation.lib.php:95 +#: libraries/messages.inc.php:567 libraries/relation.lib.php:95 msgid "not OK" msgstr "Ei kunnossa" -#: libraries/messages.inc.php:572 server_synchronize.php:400 +#: libraries/messages.inc.php:568 server_synchronize.php:400 #: server_synchronize.php:839 msgid "not present" msgstr "ei käytössä" -#: libraries/messages.inc.php:573 pdf_pages.php:36 pdf_pages.php:42 +#: libraries/messages.inc.php:569 pdf_pages.php:36 pdf_pages.php:42 #: pdf_pages.php:48 pdf_pages.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "Taulua %s ei löytynyt tai sitä ei ole määritelty tiedostossa %s" -#: libraries/messages.inc.php:574 server_privileges.php:804 +#: libraries/messages.inc.php:570 server_privileges.php:804 #: server_privileges.php:2166 msgid "No user(s) found." msgstr "Käyttäjiä ei ole." -#: libraries/messages.inc.php:578 pmd_general.php:164 +#: libraries/messages.inc.php:574 pmd_general.php:164 msgid "Number of tables" msgstr "Taulujen määrä" -#: libraries/messages.inc.php:581 server_databases.php:117 +#: libraries/messages.inc.php:577 server_databases.php:117 #: server_status.php:260 setup/lib/messages.inc.php:117 msgid "Tables" msgstr "Taulut" -#: libraries/messages.inc.php:583 libraries/relation.lib.php:99 +#: libraries/messages.inc.php:579 libraries/relation.lib.php:99 #: pmd_general.php:340 msgid "OK" msgstr "Kunnossa" -#: libraries/messages.inc.php:585 +#: libraries/messages.inc.php:581 msgid "Open Document Text" msgstr "Open Document Text" -#: libraries/messages.inc.php:588 tbl_select.php:138 +#: libraries/messages.inc.php:584 tbl_select.php:138 msgid "Operator" msgstr "Operaattori" -#: libraries/messages.inc.php:589 tbl_operations.php:662 +#: libraries/messages.inc.php:585 tbl_operations.php:662 msgid "Optimize" msgstr "Optimoi" -#: libraries/messages.inc.php:602 libraries/tbl_properties.inc.php:755 +#: libraries/messages.inc.php:598 libraries/tbl_properties.inc.php:755 msgid "PARTITION definition" msgstr "PARTITION-määritelmä" -#: libraries/messages.inc.php:603 tbl_structure.php:757 +#: libraries/messages.inc.php:599 tbl_structure.php:757 msgid "partitioned" msgstr "ositettu" -#: libraries/messages.inc.php:604 tbl_operations.php:649 +#: libraries/messages.inc.php:600 tbl_operations.php:649 msgid "Partition maintenance" msgstr "Osituksen ylläpito" -#: libraries/messages.inc.php:605 tbl_operations.php:657 +#: libraries/messages.inc.php:601 tbl_operations.php:657 #, php-format msgid "Partition %s" msgstr "Ositus %s" -#: libraries/messages.inc.php:606 server_privileges.php:1212 +#: libraries/messages.inc.php:602 server_privileges.php:1212 #, php-format msgid "The password for %s was changed successfully." msgstr "Käyttäjän %s salasanan vaihto onnistui." -#: libraries/messages.inc.php:635 +#: libraries/messages.inc.php:631 #, php-format msgid "Schema of the \"%s\" database - Page %s" msgstr "Tietokannan \"%s\" kaavio - Sivu %s" -#: libraries/messages.inc.php:636 +#: libraries/messages.inc.php:632 #, php-format msgid "The \"%s\" table doesn't exist!" msgstr "Taulua \"%s\" ei ole!" -#: libraries/messages.inc.php:637 pdf_schema.php:1013 +#: libraries/messages.inc.php:633 pdf_schema.php:1013 msgid "No tables" msgstr "Ei tauluja" -#: libraries/messages.inc.php:638 pmd_pdf.php:63 +#: libraries/messages.inc.php:634 pmd_pdf.php:63 #, fuzzy msgid "Page has been created" msgstr "Taulu %1$s on luotu." -#: libraries/messages.inc.php:639 pmd_pdf.php:65 +#: libraries/messages.inc.php:635 pmd_pdf.php:65 msgid "Page creation failed" msgstr "" -#: libraries/messages.inc.php:640 +#: libraries/messages.inc.php:636 msgid "PDF" msgstr "PDF" -#: libraries/messages.inc.php:641 +#: libraries/messages.inc.php:637 msgid "(Generates a report containing the data of a single table)" msgstr "(Luo raportin, joka sisältää yhden taulun tiedot)" -#: libraries/messages.inc.php:642 +#: libraries/messages.inc.php:638 msgid "Report title" msgstr "Raportin otsikko" -#: libraries/messages.inc.php:643 server_status.php:389 server_status.php:434 +#: libraries/messages.inc.php:639 server_status.php:389 server_status.php:434 #: server_status.php:497 server_status.php:555 msgid "per hour" msgstr "tunnissa" -#: libraries/messages.inc.php:644 server_status.php:498 +#: libraries/messages.inc.php:640 server_status.php:498 msgid "per minute" msgstr "minuutissa" -#: libraries/messages.inc.php:645 server_status.php:499 +#: libraries/messages.inc.php:641 server_status.php:499 msgid "per second" msgstr "sekunnissa" -#: libraries/messages.inc.php:646 libraries/mysql_charsets.lib.php:271 +#: libraries/messages.inc.php:642 libraries/mysql_charsets.lib.php:271 msgid "Persian" msgstr "Persialainen" -#: libraries/messages.inc.php:647 libraries/mysql_charsets.lib.php:250 +#: libraries/messages.inc.php:643 libraries/mysql_charsets.lib.php:250 msgid "phone book" msgstr "puhelinluettelo" -#: libraries/messages.inc.php:648 +#: libraries/messages.inc.php:644 msgid "PHP array" msgstr "PHP-taulukko" -#: libraries/messages.inc.php:650 main.php:213 +#: libraries/messages.inc.php:646 main.php:213 msgid "PHP extension" msgstr "PHP-laajennus" -#: libraries/messages.inc.php:654 libraries/relation.lib.php:163 +#: libraries/messages.inc.php:650 libraries/relation.lib.php:163 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/messages.inc.php:655 libraries/relation.lib.php:159 +#: libraries/messages.inc.php:651 libraries/relation.lib.php:159 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/messages.inc.php:656 libraries/relation.lib.php:161 +#: libraries/messages.inc.php:652 libraries/relation.lib.php:161 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" -#: libraries/messages.inc.php:657 libraries/relation.lib.php:162 +#: libraries/messages.inc.php:653 libraries/relation.lib.php:162 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/messages.inc.php:658 libraries/relation.lib.php:164 +#: libraries/messages.inc.php:654 libraries/relation.lib.php:164 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/messages.inc.php:661 libraries/mysql_charsets.lib.php:274 +#: libraries/messages.inc.php:657 libraries/mysql_charsets.lib.php:274 msgid "Polish" msgstr "Puolalainen" -#: libraries/messages.inc.php:662 libraries/replication_gui.lib.php:67 +#: libraries/messages.inc.php:658 libraries/replication_gui.lib.php:67 #: server_synchronize.php:1163 msgid "Port" msgstr "Port" -#: libraries/messages.inc.php:667 tbl_indexes.php:67 +#: libraries/messages.inc.php:663 tbl_indexes.php:67 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Perusavaimen nimen on oltava PRIMARY!" -#: libraries/messages.inc.php:668 tbl_indexes.php:184 +#: libraries/messages.inc.php:664 tbl_indexes.php:184 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "(\"PRIMARY\" saa olla vain ja ainoastaan perusavaimen nimenä!)" -#: libraries/messages.inc.php:669 libraries/mult_submits.inc.php:76 +#: libraries/messages.inc.php:665 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:474 msgid "Primary" msgstr "Perusavain" -#: libraries/messages.inc.php:673 server_privileges.php:227 +#: libraries/messages.inc.php:669 server_privileges.php:227 msgid "Includes all privileges except GRANT." msgstr "Sisältää kaikki käyttöoikeudet GRANT-oikeutta lukuun ottamatta." -#: libraries/messages.inc.php:674 server_privileges.php:153 +#: libraries/messages.inc.php:670 server_privileges.php:153 #: server_privileges.php:476 msgid "Allows altering the structure of existing tables." msgstr "Sallii muuttaa olemassa olevien taulujen rakennetta." -#: libraries/messages.inc.php:675 server_privileges.php:169 +#: libraries/messages.inc.php:671 server_privileges.php:169 #: server_privileges.php:482 msgid "Allows altering and dropping stored routines." msgstr "Sallii talletettujen rutiinien muuntamisen ja poistamisen." -#: libraries/messages.inc.php:676 server_privileges.php:145 +#: libraries/messages.inc.php:672 server_privileges.php:145 #: server_privileges.php:475 msgid "Allows creating new databases and tables." msgstr "Sallii uusien tietokantojen ja taulujen luomisen." -#: libraries/messages.inc.php:677 server_privileges.php:168 +#: libraries/messages.inc.php:673 server_privileges.php:168 #: server_privileges.php:481 msgid "Allows creating stored routines." msgstr "Sallii talletettujen rutiinien luomisen." -#: libraries/messages.inc.php:678 server_privileges.php:475 +#: libraries/messages.inc.php:674 server_privileges.php:475 msgid "Allows creating new tables." msgstr "Sallii uusien taulujen luomisen." -#: libraries/messages.inc.php:679 server_privileges.php:156 +#: libraries/messages.inc.php:675 server_privileges.php:156 #: server_privileges.php:479 msgid "Allows creating temporary tables." msgstr "Sallii tilapäisten taulujen luomisen." -#: libraries/messages.inc.php:680 server_privileges.php:170 +#: libraries/messages.inc.php:676 server_privileges.php:170 #: server_privileges.php:515 msgid "Allows creating, dropping and renaming user accounts." msgstr "Sallii käyttäjätilien luomisen, poistamisen ja uudelleennimeämisen." -#: libraries/messages.inc.php:681 server_privileges.php:160 +#: libraries/messages.inc.php:677 server_privileges.php:160 #: server_privileges.php:164 server_privileges.php:487 #: server_privileges.php:491 msgid "Allows creating new views." msgstr "Sallii uusien näkymien luomisen." -#: libraries/messages.inc.php:682 server_privileges.php:144 +#: libraries/messages.inc.php:678 server_privileges.php:144 #: server_privileges.php:467 msgid "Allows deleting data." msgstr "Sallii tietojen poistamisen." -#: libraries/messages.inc.php:683 server_privileges.php:146 +#: libraries/messages.inc.php:679 server_privileges.php:146 #: server_privileges.php:478 msgid "Allows dropping databases and tables." msgstr "Sallii tietokantojen ja taulujen poistamisen." -#: libraries/messages.inc.php:684 server_privileges.php:478 +#: libraries/messages.inc.php:680 server_privileges.php:478 msgid "Allows dropping tables." msgstr "Sallii taulujen poistamisen." -#: libraries/messages.inc.php:685 server_privileges.php:161 +#: libraries/messages.inc.php:681 server_privileges.php:161 #: server_privileges.php:495 msgid "Allows to set up events for the event scheduler" msgstr "Sallii luoda tapahtuma-ajastimelle tapahtumia" -#: libraries/messages.inc.php:686 server_privileges.php:171 +#: libraries/messages.inc.php:682 server_privileges.php:171 #: server_privileges.php:483 msgid "Allows executing stored routines." msgstr "Sallii talletettujen rutiinien suorittamisen." -#: libraries/messages.inc.php:687 server_privileges.php:150 +#: libraries/messages.inc.php:683 server_privileges.php:150 #: server_privileges.php:470 msgid "Allows importing data from and exporting data into files." msgstr "Sallii tietojen tuomisen ja viemisen." -#: libraries/messages.inc.php:688 server_privileges.php:501 +#: libraries/messages.inc.php:684 server_privileges.php:501 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Sallii käyttäjien ja käyttöoikeuksien lisäämisen lataamatta " "käyttöoikeustauluja uudestaan." -#: libraries/messages.inc.php:689 server_privileges.php:152 +#: libraries/messages.inc.php:685 server_privileges.php:152 #: server_privileges.php:477 msgid "Allows creating and dropping indexes." msgstr "Sallii indeksien luomisen ja poistamisen." -#: libraries/messages.inc.php:690 server_privileges.php:142 +#: libraries/messages.inc.php:686 server_privileges.php:142 #: server_privileges.php:403 server_privileges.php:465 msgid "Allows inserting and replacing data." msgstr "Sallii tietojen lisäämisen ja korvaamisen." -#: libraries/messages.inc.php:691 server_privileges.php:157 +#: libraries/messages.inc.php:687 server_privileges.php:157 #: server_privileges.php:510 msgid "Allows locking tables for the current thread." msgstr "Sallii taulujen lukitsemisen nykyiselle säikeelle." -#: libraries/messages.inc.php:692 server_privileges.php:607 +#: libraries/messages.inc.php:688 server_privileges.php:607 #: server_privileges.php:609 msgid "Limits the number of new connections the user may open per hour." msgstr "Rajoittaa käyttäjän tunnissa luomien uusien yhteyksien määrän." -#: libraries/messages.inc.php:693 server_privileges.php:595 +#: libraries/messages.inc.php:689 server_privileges.php:595 #: server_privileges.php:597 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Rajoittaa käyttäjän tunnissa palvelimelle lähettämien kyselyjen määrän." -#: libraries/messages.inc.php:694 server_privileges.php:601 +#: libraries/messages.inc.php:690 server_privileges.php:601 #: server_privileges.php:603 msgid "" "Limits the number of commands that change any table or database the user may " @@ -4686,59 +4686,59 @@ msgstr "" "Rajoittaa, kuinka monta monta kertaa käyttäjä saa suorittaa tauluihin tai " "tietokantoihin muutoksia tekeviä komentoja tunnin aikana." -#: libraries/messages.inc.php:695 server_privileges.php:613 +#: libraries/messages.inc.php:691 server_privileges.php:613 #: server_privileges.php:615 msgid "Limits the number of simultaneous connections the user may have." msgstr "Rajoittaa käyttäjän yhtäaikaisten yhteyksien määrän." -#: libraries/messages.inc.php:696 server_privileges.php:149 +#: libraries/messages.inc.php:692 server_privileges.php:149 #: server_privileges.php:505 msgid "Allows viewing processes of all users" msgstr "Sallii kaikkien käyttäjien prosessien näyttämisen" -#: libraries/messages.inc.php:697 server_privileges.php:151 +#: libraries/messages.inc.php:693 server_privileges.php:151 #: server_privileges.php:409 server_privileges.php:511 msgid "Has no effect in this MySQL version." msgstr "Ei vaikutusta tässä MySQL-palvelimen versiossa." -#: libraries/messages.inc.php:698 server_privileges.php:147 +#: libraries/messages.inc.php:694 server_privileges.php:147 #: server_privileges.php:506 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Sallii palvelinasetusten uudelleenlataamisen ja palvelimen välimuistin " "tyhjentämisen." -#: libraries/messages.inc.php:699 server_privileges.php:159 +#: libraries/messages.inc.php:695 server_privileges.php:159 #: server_privileges.php:513 msgid "Allows the user to ask where the slaves / masters are." msgstr "Sallii käyttäjän kysyä, missä ali- ja pääpalvelimet sijaitsevat." -#: libraries/messages.inc.php:700 server_privileges.php:158 +#: libraries/messages.inc.php:696 server_privileges.php:158 #: server_privileges.php:514 msgid "Needed for the replication slaves." msgstr "Tarvitaan replikaatiota käyttävissä alipalvelimissa." -#: libraries/messages.inc.php:701 server_privileges.php:141 +#: libraries/messages.inc.php:697 server_privileges.php:141 #: server_privileges.php:400 server_privileges.php:464 msgid "Allows reading data." msgstr "Sallii tietojen lukemisen." -#: libraries/messages.inc.php:702 server_privileges.php:154 +#: libraries/messages.inc.php:698 server_privileges.php:154 #: server_privileges.php:508 msgid "Gives access to the complete list of databases." msgstr "Sallii koko tietokantaluettelon käytön." -#: libraries/messages.inc.php:703 server_privileges.php:165 +#: libraries/messages.inc.php:699 server_privileges.php:165 #: server_privileges.php:167 server_privileges.php:480 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Sallii SHOW CREATE VIEW -kyselyjen suorittamisen." -#: libraries/messages.inc.php:704 server_privileges.php:148 +#: libraries/messages.inc.php:700 server_privileges.php:148 #: server_privileges.php:507 msgid "Allows shutting down the server." msgstr "Sallii palvelimen sammuttamisen." -#: libraries/messages.inc.php:705 server_privileges.php:155 +#: libraries/messages.inc.php:701 server_privileges.php:155 #: server_privileges.php:504 msgid "" "Allows connecting, even if maximum number of connections is reached; " @@ -4749,55 +4749,55 @@ msgstr "" "saavutettu; Tarvitaan useissa pääkäyttäjän toiminnoissa kuten globaalien " "muuttujien asettamisessa ja muitten käyttäjien säikeiden lopettamisessa." -#: libraries/messages.inc.php:706 server_privileges.php:162 +#: libraries/messages.inc.php:702 server_privileges.php:162 #: server_privileges.php:496 msgid "Allows creating and dropping triggers" msgstr "Sallii herättimien eli laukaisinten luomisen ja poistamisen" -#: libraries/messages.inc.php:707 server_privileges.php:143 +#: libraries/messages.inc.php:703 server_privileges.php:143 #: server_privileges.php:406 server_privileges.php:466 msgid "Allows changing data." msgstr "Sallii tietojen muuttamisen." -#: libraries/messages.inc.php:708 server_privileges.php:221 +#: libraries/messages.inc.php:704 server_privileges.php:221 msgid "No privileges." msgstr "Ei käyttöoikeuksia." -#: libraries/messages.inc.php:710 server_privileges.php:1296 +#: libraries/messages.inc.php:706 server_privileges.php:1296 msgid "The privileges were reloaded successfully." msgstr "Käyttöoikeuksien uudelleenlataus onnistui." -#: libraries/messages.inc.php:712 libraries/server_links.inc.php:80 +#: libraries/messages.inc.php:708 libraries/server_links.inc.php:80 msgid "Processes" msgstr "Prosessit" -#: libraries/messages.inc.php:714 main.php:187 +#: libraries/messages.inc.php:710 main.php:187 msgid "Protocol version" msgstr "Protokollan versio" -#: libraries/messages.inc.php:715 +#: libraries/messages.inc.php:711 msgid "Put fields names in the first row" msgstr "Laita sarakkeiden nimet ensimmäiselle riville" -#: libraries/messages.inc.php:720 server_synchronize.php:1003 +#: libraries/messages.inc.php:716 server_synchronize.php:1003 msgid "The following queries have been executed:" msgstr "Seuraavat kyselyt on suoritettu:" -#: libraries/messages.inc.php:721 server_status.php:251 +#: libraries/messages.inc.php:717 server_status.php:251 msgid "Query cache" msgstr "Kyselyvälimuisti" -#: libraries/messages.inc.php:722 libraries/navigation_header.inc.php:80 +#: libraries/messages.inc.php:718 libraries/navigation_header.inc.php:80 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 setup/lib/messages.inc.php:122 msgid "Query window" msgstr "Kyselyikkuna" -#: libraries/messages.inc.php:725 querywindow.php:109 querywindow.php:217 +#: libraries/messages.inc.php:721 querywindow.php:109 querywindow.php:217 msgid "SQL history" msgstr "SQL-historia" -#: libraries/messages.inc.php:726 server_status.php:490 +#: libraries/messages.inc.php:722 server_status.php:490 #, php-format msgid "" "Query statistics: Since its startup, %s queries have been sent to the " @@ -4806,95 +4806,95 @@ msgstr "" "Kyselytilastot: Tälle palvelimelle on lähetetty viime käynnistyksestä " "lähtien %s kyselyä." -#: libraries/messages.inc.php:728 server_status.php:554 +#: libraries/messages.inc.php:724 server_status.php:554 msgid "Query type" msgstr "Kyselyn tyyppi" -#: libraries/messages.inc.php:729 libraries/sql_query_form.lib.php:381 +#: libraries/messages.inc.php:725 libraries/sql_query_form.lib.php:381 msgid "Do not overwrite this query from outside the window" msgstr "Älä korvaa tätä kyselyä ikkunan ulkopuolelta" -#: libraries/messages.inc.php:732 tbl_operations.php:663 +#: libraries/messages.inc.php:728 tbl_operations.php:663 msgid "Rebuild" msgstr "Rakenna uudestaan" -#: libraries/messages.inc.php:733 server_status.php:394 +#: libraries/messages.inc.php:729 server_status.php:394 msgid "Received" msgstr "Vastaanotettu" -#: libraries/messages.inc.php:734 pmd_pdf.php:89 +#: libraries/messages.inc.php:730 pmd_pdf.php:89 msgid "recommended" msgstr "suositus" -#: libraries/messages.inc.php:736 tbl_operations.php:702 +#: libraries/messages.inc.php:732 tbl_operations.php:702 msgid "Check referential integrity:" msgstr "Tarkista viitteiden eheys:" -#: libraries/messages.inc.php:740 pdf_schema.php:1032 pdf_schema.php:1141 +#: libraries/messages.inc.php:736 pdf_schema.php:1032 pdf_schema.php:1141 msgid "Relational schema" msgstr "Relaatioskeema" -#: libraries/messages.inc.php:744 tbl_relation.php:399 +#: libraries/messages.inc.php:740 tbl_relation.php:399 msgid "Relations" msgstr "Relaatiot" -#: libraries/messages.inc.php:745 tbl_structure.php:507 tbl_structure.php:509 +#: libraries/messages.inc.php:741 tbl_structure.php:507 tbl_structure.php:509 msgid "Relation view" msgstr "Relaationäkymä" -#: libraries/messages.inc.php:746 server_privileges.php:1246 +#: libraries/messages.inc.php:742 server_privileges.php:1246 msgid "Reloading the privileges" msgstr "Ladataan käyttöoikeuksia uudelleen" -#: libraries/messages.inc.php:747 navigation.php:66 navigation.php:67 +#: libraries/messages.inc.php:743 navigation.php:66 navigation.php:67 #: navigation.php:70 #, fuzzy msgid "Reload navigation frame" msgstr "Mukauta navigointikehystä" -#: libraries/messages.inc.php:748 pmd_general.php:80 +#: libraries/messages.inc.php:744 pmd_general.php:80 msgid "Reload" msgstr "Lataa uudelleen" -#: libraries/messages.inc.php:749 libraries/server_synchronize.lib.php:1345 +#: libraries/messages.inc.php:745 libraries/server_synchronize.lib.php:1345 #: libraries/server_synchronize.lib.php:1371 msgid "Remote server" msgstr "Etäpalvelin" -#: libraries/messages.inc.php:750 +#: libraries/messages.inc.php:746 msgid "Remove CRLF characters within fields" msgstr "Poista kentistä CRLF-merkit" -#: libraries/messages.inc.php:751 tbl_operations.php:676 +#: libraries/messages.inc.php:747 tbl_operations.php:676 msgid "Remove partitioning" msgstr "Poista ositus" -#: libraries/messages.inc.php:752 server_privileges.php:1575 +#: libraries/messages.inc.php:748 server_privileges.php:1575 msgid "Remove selected users" msgstr "Poista valitut käyttäjät" -#: libraries/messages.inc.php:755 tbl_operations.php:338 +#: libraries/messages.inc.php:751 tbl_operations.php:338 msgid "Rename table to" msgstr "Nimeä taulu uudelleen" -#: libraries/messages.inc.php:756 view_operations.php:93 +#: libraries/messages.inc.php:752 view_operations.php:93 #, fuzzy msgid "Rename view to" msgstr "Nimeä taulu uudelleen" -#: libraries/messages.inc.php:757 tbl_operations.php:664 +#: libraries/messages.inc.php:753 tbl_operations.php:664 msgid "Repair" msgstr "Korjaa" -#: libraries/messages.inc.php:759 +#: libraries/messages.inc.php:755 msgid "Replace NULL by" msgstr "Korvaa NULL-merkki tällä:" -#: libraries/messages.inc.php:760 +#: libraries/messages.inc.php:756 msgid "Replace table data with file" msgstr "Korvaa taulun nykyiset rivit tiedostolla" -#: libraries/messages.inc.php:761 server_replication.php:228 +#: libraries/messages.inc.php:757 server_replication.php:228 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -4902,45 +4902,45 @@ msgstr "" "Lisää nyt seuraavat rivit my.cnf-tiedostoosi ja käynnistä sitten MySQL-" "palvelin alusta." -#: libraries/messages.inc.php:762 libraries/replication_gui.lib.php:236 +#: libraries/messages.inc.php:758 libraries/replication_gui.lib.php:236 #: server_replication.php:194 msgid "Add slave replication user" msgstr "Lisää alireplikaatiokäyttäjä" -#: libraries/messages.inc.php:763 server_replication.php:74 +#: libraries/messages.inc.php:759 server_replication.php:74 #, php-format msgid "Master server changed succesfully to %s" msgstr "Isäntäpalvelimeksi on onnistuen vaihdettu %s" -#: libraries/messages.inc.php:764 server_replication.php:182 +#: libraries/messages.inc.php:760 server_replication.php:182 msgid "This server is configured as master in a replication process." msgstr "Tämä palvelin on määritelty replikaatioprosessin isäntäpalvelimeksi." -#: libraries/messages.inc.php:765 server_replication.php:322 +#: libraries/messages.inc.php:761 server_replication.php:322 msgid "Control slave:" msgstr "Ohjaa alipalvelinta:" -#: libraries/messages.inc.php:766 server_replication.php:65 +#: libraries/messages.inc.php:762 server_replication.php:65 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" "Isäntäpalvelimen lokin sijaintia ei voida lukea. Isäntäpalvelimen " "käyttöoikeusongelmat mahdollisia." -#: libraries/messages.inc.php:767 server_replication.php:58 +#: libraries/messages.inc.php:763 server_replication.php:58 #, php-format msgid "Unable to connect to master %s." msgstr "Isäntäpalvelimeen %s ei voida muodostaa yhteyttä." -#: libraries/messages.inc.php:768 server_replication.php:221 +#: libraries/messages.inc.php:764 server_replication.php:221 msgid "Replicate all databases; Ignore:" msgstr "Replikoi kaikki tietokannat; Sivuuta:" -#: libraries/messages.inc.php:769 server_replication.php:222 +#: libraries/messages.inc.php:765 server_replication.php:222 msgid "Ignore all databases; Replicate:" msgstr "Sivuuta kaikki tietokannat; Replikoi:" -#: libraries/messages.inc.php:770 server_replication.php:218 +#: libraries/messages.inc.php:766 server_replication.php:218 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -4954,16 +4954,16 @@ msgstr "" "Voit myös oletusarvoisesti sivuuttaa kaikki tietokannat ja sallia vain " "tiettyjen tietokantojen replikoinnin. Valitse tila:" -#: libraries/messages.inc.php:771 server_replication.php:217 +#: libraries/messages.inc.php:767 server_replication.php:217 msgid "Master configuration" msgstr "Isäntäpalvelimen asetukset" -#: libraries/messages.inc.php:772 server_replication.php:181 +#: libraries/messages.inc.php:768 server_replication.php:181 #: server_replication.php:209 msgid "Master replication" msgstr "Isäntäpalvelimen replikointi" -#: libraries/messages.inc.php:774 server_replication.php:230 +#: libraries/messages.inc.php:770 server_replication.php:230 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " @@ -4973,11 +4973,11 @@ msgstr "" "jälkeen esiin pitäisi tulla sanoman, joka kertoo, että palvelin on asetettu isäntäpalvelimeksi" -#: libraries/messages.inc.php:775 server_replication.php:225 +#: libraries/messages.inc.php:771 server_replication.php:225 msgid "Please select databases:" msgstr "Valitse tietokannat:" -#: libraries/messages.inc.php:776 server_replication.php:210 +#: libraries/messages.inc.php:772 server_replication.php:210 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -4986,7 +4986,7 @@ msgstr "" "Tätä palvelinta ei ole määritetty replikaatioprosessin isäntäpalvelimeksi. " "Haluatko määrittää sen?" -#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:188 +#: libraries/messages.inc.php:773 libraries/replication_gui.lib.php:188 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." @@ -4994,51 +4994,51 @@ msgstr "" "Luettelossa on näkyvillä vain ne alipalvelimet, joilla on valinta --report-" "host=host_name." -#: libraries/messages.inc.php:778 server_replication.php:187 +#: libraries/messages.inc.php:774 server_replication.php:187 msgid "Show connected slaves" msgstr "Näytä alipalvelimet, joihin on muodostettu yhteys" -#: libraries/messages.inc.php:779 libraries/messages.inc.php:885 +#: libraries/messages.inc.php:775 libraries/messages.inc.php:881 #: server_replication.php:184 server_status.php:281 msgid "Show master status" msgstr "Näytä isäntäpalvelimen tila" -#: libraries/messages.inc.php:780 server_replication.php:334 +#: libraries/messages.inc.php:776 server_replication.php:334 msgid "Skipping error(s) might lead into unsynchronized master and slave!" msgstr "" "Isäntä- ja alipalvelin saattavat jäädä yhtenäistämättömiksi, mikäli virheet " "ohitetaan!" -#: libraries/messages.inc.php:781 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:51 #: server_replication.php:347 msgid "Change or reconfigure master server" msgstr "Vaihda isäntäpalvelin tai muuta sen asetuksia" -#: libraries/messages.inc.php:782 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:778 libraries/replication_gui.lib.php:51 msgid "Slave configuration" msgstr "Alipalvelimen asetusten määrittely" -#: libraries/messages.inc.php:783 server_replication.php:305 +#: libraries/messages.inc.php:779 server_replication.php:305 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" "Palvelin on määritetty replikaatioprosessin alipalvelimeksi. Mitä haluat " "tehdä?" -#: libraries/messages.inc.php:784 server_replication.php:332 +#: libraries/messages.inc.php:780 server_replication.php:332 msgid "Error management:" msgstr "Virheiden hallinta:" -#: libraries/messages.inc.php:785 server_replication.php:328 +#: libraries/messages.inc.php:781 server_replication.php:328 #, php-format msgid "IO Thread %s only" msgstr "IO-säie %s vain" -#: libraries/messages.inc.php:786 server_replication.php:296 +#: libraries/messages.inc.php:782 server_replication.php:296 msgid "Slave IO Thread not running!" msgstr "" -#: libraries/messages.inc.php:787 server_replication.php:355 +#: libraries/messages.inc.php:783 server_replication.php:355 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -5047,40 +5047,40 @@ msgstr "" "Tätä palvelinta ei ole määritetty replikaatioprosessin alipalvelimeksi. " "Haluatko määrittää sen?" -#: libraries/messages.inc.php:788 server_replication.php:326 +#: libraries/messages.inc.php:784 server_replication.php:326 msgid "Reset slave" msgstr "Nollaa alipalvelin" -#: libraries/messages.inc.php:789 server_replication.php:308 +#: libraries/messages.inc.php:785 server_replication.php:308 msgid "See slave status table" msgstr "Näytä alipalvelimen tilan taulu" -#: libraries/messages.inc.php:790 server_replication.php:336 +#: libraries/messages.inc.php:786 server_replication.php:336 msgid "Skip current error" msgstr "Ohita nykyinen virhe" -#: libraries/messages.inc.php:791 server_replication.php:340 +#: libraries/messages.inc.php:787 server_replication.php:340 msgid "errors." msgstr "virhettä." -#: libraries/messages.inc.php:792 server_replication.php:337 +#: libraries/messages.inc.php:788 server_replication.php:337 msgid "Skip next" msgstr "Ohita seuraava" -#: libraries/messages.inc.php:793 server_replication.php:248 +#: libraries/messages.inc.php:789 server_replication.php:248 msgid "Slave replication" msgstr "Alipalvelimen replikointi" -#: libraries/messages.inc.php:794 server_replication.php:293 +#: libraries/messages.inc.php:790 server_replication.php:293 msgid "Slave SQL Thread not running!" msgstr "" -#: libraries/messages.inc.php:795 server_replication.php:327 +#: libraries/messages.inc.php:791 server_replication.php:327 #, php-format msgid "SQL Thread %s only" msgstr "SQL-säie %s vain" -#: libraries/messages.inc.php:796 +#: libraries/messages.inc.php:792 #, php-format msgid "" "This MySQL server works as %s in replication process. For further " @@ -5091,158 +5091,158 @@ msgstr "" "palvelimen replikaatiotilasta lisää tietoja kohdasta Replikaatio." -#: libraries/messages.inc.php:797 +#: libraries/messages.inc.php:793 msgid "Master status" msgstr "Isännän tila" -#: libraries/messages.inc.php:798 server_status.php:721 +#: libraries/messages.inc.php:794 server_status.php:721 msgid "Replication status" msgstr "Replikaation tila" -#: libraries/messages.inc.php:799 +#: libraries/messages.inc.php:795 msgid "Slave status" msgstr "Alipalvelimen tila" -#: libraries/messages.inc.php:800 server_replication.php:311 +#: libraries/messages.inc.php:796 server_replication.php:311 msgid "Synchronize databases with master" msgstr "Yhtenäistä tietokannat isäntäpalvelimen kanssa" -#: libraries/messages.inc.php:801 server_replication.php:71 +#: libraries/messages.inc.php:797 server_replication.php:71 msgid "Unable to change master" msgstr "Pääpalvelinta ei voitu vaihtaa" -#: libraries/messages.inc.php:802 server_replication.php:51 +#: libraries/messages.inc.php:798 server_replication.php:51 msgid "Unknown error" msgstr "Tuntematon virhe" -#: libraries/messages.inc.php:803 main.php:163 pdf_pages.php:344 +#: libraries/messages.inc.php:799 main.php:163 pdf_pages.php:344 #: setup/lib/FormDisplay.tpl.php:216 tbl_change.php:1175 msgid "Reset" msgstr "Nollaa" -#: libraries/messages.inc.php:804 server_privileges.php:591 +#: libraries/messages.inc.php:800 server_privileges.php:591 msgid "Resource limits" msgstr "Resurssirajoitukset" -#: libraries/messages.inc.php:805 tbl_change.php:1209 +#: libraries/messages.inc.php:801 tbl_change.php:1209 #, php-format msgid "Restart insertion with %s rows" msgstr "Aloita lisäys alusta %s rivillä" -#: libraries/messages.inc.php:807 server_privileges.php:1578 +#: libraries/messages.inc.php:803 server_privileges.php:1578 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." -#: libraries/messages.inc.php:808 server_privileges.php:1176 +#: libraries/messages.inc.php:804 server_privileges.php:1176 #, php-format msgid "You have revoked the privileges for %s" msgstr "Käyttäjän %s käyttöoikeudet on poistettu" -#: libraries/messages.inc.php:809 server_privileges.php:1333 +#: libraries/messages.inc.php:805 server_privileges.php:1333 msgid "Revoke" msgstr "Pura käyttöoikeudet" -#: libraries/messages.inc.php:810 libraries/mysql_charsets.lib.php:280 +#: libraries/messages.inc.php:806 libraries/mysql_charsets.lib.php:280 msgid "Romanian" msgstr "Romanialainen" -#: libraries/messages.inc.php:813 tbl_printview.php:404 tbl_structure.php:786 +#: libraries/messages.inc.php:809 tbl_printview.php:404 tbl_structure.php:786 msgid "Row length" msgstr "Rivin pituus" -#: libraries/messages.inc.php:815 tbl_printview.php:414 tbl_structure.php:794 +#: libraries/messages.inc.php:811 tbl_printview.php:414 tbl_structure.php:794 msgid " Row size " msgstr " Rivin koko " -#: libraries/messages.inc.php:821 tbl_printview.php:366 tbl_structure.php:726 +#: libraries/messages.inc.php:817 tbl_printview.php:366 tbl_structure.php:726 msgid "Row Statistics" msgstr "Rivitilastot" -#: libraries/messages.inc.php:822 +#: libraries/messages.inc.php:818 #, php-format msgid "running on %s" msgstr "palvelimella %s" -#: libraries/messages.inc.php:824 libraries/sql_query_form.lib.php:223 +#: libraries/messages.inc.php:820 libraries/sql_query_form.lib.php:223 #, php-format msgid "Run SQL query/queries on server %s" msgstr "Suorita SQL-kysely(jä) palvelimella %s" -#: libraries/messages.inc.php:825 libraries/sql_query_form.lib.php:240 +#: libraries/messages.inc.php:821 libraries/sql_query_form.lib.php:240 #: libraries/sql_query_form.lib.php:265 #, php-format msgid "Run SQL query/queries on database %s" msgstr "Suorita SQL-kyselyjä tietokannassa %s" -#: libraries/messages.inc.php:826 libraries/mysql_charsets.lib.php:337 +#: libraries/messages.inc.php:822 libraries/mysql_charsets.lib.php:337 msgid "Russian" msgstr "Venäläinen" -#: libraries/messages.inc.php:829 pmd_general.php:68 +#: libraries/messages.inc.php:825 pmd_general.php:68 msgid "Save position" msgstr "Tallenna sijainti" -#: libraries/messages.inc.php:830 libraries/tbl_properties.inc.php:776 +#: libraries/messages.inc.php:826 libraries/tbl_properties.inc.php:776 #: pdf_pages.php:484 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:214 setup/lib/FormDisplay.tpl.php:215 #: tbl_change.php:1126 tbl_indexes.php:248 tbl_relation.php:566 msgid "Save" msgstr "Tallenna" -#: libraries/messages.inc.php:831 +#: libraries/messages.inc.php:827 msgid "The scale factor is too small to fit the schema on one page" msgstr "Kaavio ei mahdu yhdelle sivulle tässä mittakaavassa" -#: libraries/messages.inc.php:843 main.php:298 +#: libraries/messages.inc.php:839 main.php:298 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "Asetustiedosto vaatii nyt salalausetta (blowfish_secret)." -#: libraries/messages.inc.php:844 navigation.php:353 navigation.php:516 +#: libraries/messages.inc.php:840 navigation.php:353 navigation.php:516 msgid "Please select a database" msgstr "Valitse tietokanta" -#: libraries/messages.inc.php:846 server_binlog.php:120 +#: libraries/messages.inc.php:842 server_binlog.php:120 msgid "Select binary log to view" msgstr "Valitse näytettävä binääriloki" -#: libraries/messages.inc.php:847 tbl_select.php:270 +#: libraries/messages.inc.php:843 tbl_select.php:270 msgid "Select fields (at least one):" msgstr "Valitse sarakkeet (vähintään yksi):" -#: libraries/messages.inc.php:851 pdf_pages.php:320 +#: libraries/messages.inc.php:847 pdf_pages.php:320 msgid "Select Tables" msgstr "Valitse taulut" -#: libraries/messages.inc.php:853 server_status.php:404 +#: libraries/messages.inc.php:849 server_status.php:404 msgid "Sent" msgstr "Lähetetty" -#: libraries/messages.inc.php:857 libraries/select_server.lib.php:45 +#: libraries/messages.inc.php:853 libraries/select_server.lib.php:45 #: setup/frames/index.inc.php:97 setup/lib/messages.inc.php:115 msgid "Servers" msgstr "Palvelimet" -#: libraries/messages.inc.php:858 server_status.php:255 +#: libraries/messages.inc.php:854 server_status.php:255 msgid "Delayed inserts" msgstr "Viivästetyt lisäyslauseet" -#: libraries/messages.inc.php:859 server_status.php:46 +#: libraries/messages.inc.php:855 server_status.php:46 msgid "Runtime Information" msgstr "Ajonaikaiset tiedot" -#: libraries/messages.inc.php:860 server_status.php:350 +#: libraries/messages.inc.php:856 server_status.php:350 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Tämä MySQL-palvelin on ollut käynnissä %s. Se käynnistettiin %s." -#: libraries/messages.inc.php:861 libraries/server_links.inc.php:53 +#: libraries/messages.inc.php:857 libraries/server_links.inc.php:53 #: server_engines.php:112 server_engines.php:116 server_status.php:304 #: test/theme.php:105 msgid "Variables" msgstr "Muuttujat" -#: libraries/messages.inc.php:862 server_status.php:383 +#: libraries/messages.inc.php:858 server_status.php:383 msgid "" "Server traffic: These tables show the network traffic statistics of " "this MySQL server since its startup." @@ -5250,11 +5250,11 @@ msgstr "" "Palvelinliikenne: Nämä taulukot näyttävät tämän MySQL-palvelimen " "verkkoliikennetilastot käynnistyksestä lähtien." -#: libraries/messages.inc.php:863 server_variables.php:35 +#: libraries/messages.inc.php:859 server_variables.php:35 msgid "Server variables and settings" msgstr "Palvelimen muuttujat ja asetukset" -#: libraries/messages.inc.php:865 main.php:290 +#: libraries/messages.inc.php:861 main.php:290 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -5266,7 +5266,7 @@ msgstr "" "phpMyAdminissa määritetty evästekelpoisuus. Siksi kirjautumisesi erääntyy " "nopeammin kuin phpMyAdminissa on määritetty." -#: libraries/messages.inc.php:866 +#: libraries/messages.inc.php:862 msgid "" "Cannot start session without errors, please check errors given in your PHP " "and/or webserver log file and configure your PHP installation properly." @@ -5274,11 +5274,11 @@ msgstr "" "Istuntoa ei voi aloittaa virheettömästi. Tarkista PHP:n tai verkkopalvelimen " "lokitiedostojen virheilmoitukset ja määritä PHP-asennuksen asetukset oikein." -#: libraries/messages.inc.php:867 server_variables.php:55 +#: libraries/messages.inc.php:863 server_variables.php:55 msgid "Session value" msgstr "Tämän istunnon arvo" -#: libraries/messages.inc.php:868 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:864 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 " @@ -5290,45 +5290,45 @@ msgstr "" "\") tai heittomerkkiä (\"'\"), laita merkin eteen kenoviiva (esim. '\\\\xyz' " "tai 'a\\'b')." -#: libraries/messages.inc.php:876 server_binlog.php:192 server_binlog.php:195 +#: libraries/messages.inc.php:872 server_binlog.php:192 server_binlog.php:195 #: server_processlist.php:49 server_processlist.php:51 msgid "Show Full Queries" msgstr "Näytä kyselyt kokonaisuudessaan" -#: libraries/messages.inc.php:878 pmd_general.php:64 +#: libraries/messages.inc.php:874 pmd_general.php:64 msgid "Show/Hide left menu" msgstr "Näytä/kätke vasen valikko" -#: libraries/messages.inc.php:880 sql.php:513 +#: libraries/messages.inc.php:876 sql.php:513 msgid "Showing as PHP code" msgstr "Näytetään PHP-koodina" -#: libraries/messages.inc.php:882 sql.php:516 tbl_replace.php:360 +#: libraries/messages.inc.php:878 sql.php:516 tbl_replace.php:360 msgid "Showing SQL query" msgstr "Näytetään SQL-kysely" -#: libraries/messages.inc.php:883 tbl_change.php:1132 +#: libraries/messages.inc.php:879 tbl_change.php:1132 #, fuzzy msgid "Show insert query" msgstr "Näytetään SQL-kysely" -#: libraries/messages.inc.php:886 server_status.php:273 +#: libraries/messages.inc.php:882 server_status.php:273 msgid "Show open tables" msgstr "Näytä avoimet taulut" -#: libraries/messages.inc.php:887 main.php:219 +#: libraries/messages.inc.php:883 main.php:219 msgid "Show PHP information" msgstr "Näytä PHP:n asetustiedot" -#: libraries/messages.inc.php:889 server_status.php:278 +#: libraries/messages.inc.php:885 server_status.php:278 msgid "Show slave hosts" msgstr "Näytä alipalvelimet" -#: libraries/messages.inc.php:890 server_status.php:284 +#: libraries/messages.inc.php:886 server_status.php:284 msgid "Show slave status" msgstr "Näytä alipalvelimen tila" -#: libraries/messages.inc.php:891 +#: libraries/messages.inc.php:887 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -5339,11 +5339,11 @@ msgstr "" "\"binlog_cache_size\"-muuttujan arvon ja käyttäneet tilapäistiedostoa " "transaktiokyselyjen tallentamiseen." -#: libraries/messages.inc.php:892 +#: libraries/messages.inc.php:888 msgid "The number of transactions that used the temporary binary log cache." msgstr "Binäärilokin tilapäistä välimuistia käyttäneiden transaktioiden määrä." -#: libraries/messages.inc.php:893 +#: libraries/messages.inc.php:889 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -5355,11 +5355,11 @@ msgstr "" "nosta tmp_table_size:n arvoa, jotta tilapäisiä tauluja säilytettäisiin " "muistissa eikä levyllä." -#: libraries/messages.inc.php:894 +#: libraries/messages.inc.php:890 msgid "How many temporary files mysqld has created." msgstr "Mysqld-palvelun luomien tilapäistiedostojen määrä." -#: libraries/messages.inc.php:895 +#: libraries/messages.inc.php:891 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -5367,7 +5367,7 @@ msgstr "" "Kertoo, kuinka monta tilapäistaulua palvelin on automaattisesti luonut " "kyselyjä suorittaessaan." -#: libraries/messages.inc.php:896 +#: libraries/messages.inc.php:892 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -5375,7 +5375,7 @@ msgstr "" "Virheen aiheuttaneiden, INSERT DELAYED -kyselyllä kirjoitettujen rivien " "määrä (virheenä todennäköisesti päällekkäinen avain)." -#: libraries/messages.inc.php:897 +#: libraries/messages.inc.php:893 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -5383,23 +5383,23 @@ msgstr "" "Käytössä olevien INSERT DELAYED -käsittelijäsäikeiden määrä. Jokainen INSERT " "DELAYED -kyselyä käyttävä taulu saa käyttöönsä oman säikeensä." -#: libraries/messages.inc.php:898 +#: libraries/messages.inc.php:894 msgid "The number of INSERT DELAYED rows written." msgstr "INSERT DELAYED -rivien kirjoituksia." -#: libraries/messages.inc.php:899 +#: libraries/messages.inc.php:895 msgid "The number of executed FLUSH statements." msgstr "FLUSH-kyselyjä suoritettu." -#: libraries/messages.inc.php:900 +#: libraries/messages.inc.php:896 msgid "The number of internal COMMIT statements." msgstr "Sisäisten COMMIT-kyselyjen määrä." -#: libraries/messages.inc.php:901 +#: libraries/messages.inc.php:897 msgid "The number of times a row was deleted from a table." msgstr "Kertoo, kuinka monta kertaa taulusta on poistettu rivi." -#: libraries/messages.inc.php:902 +#: libraries/messages.inc.php:898 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -5409,7 +5409,7 @@ msgstr "" "tietyn nimisen taulun. Tätä toimintoa kutsutaan selvittämiseksi (engl. " "discovery). Handler_discover ilmaisee selvitettyjen taulujen määrän." -#: libraries/messages.inc.php:903 +#: libraries/messages.inc.php:899 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -5420,7 +5420,7 @@ msgstr "" "läpikäyntejä; näin käy esimerkiksi lauseessa SELECT col1 FROM foo, olettaen " "col1:sen olevan indeksoitu sarake." -#: libraries/messages.inc.php:904 +#: libraries/messages.inc.php:900 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -5428,7 +5428,7 @@ msgstr "" "Kertoo, kuinka monta kertaa rivejä on luettu avaimen perusteella. Jos tämä " "on suuri, kyselyjen ja taulujen indeksointi suoritetaan oikein." -#: libraries/messages.inc.php:905 +#: libraries/messages.inc.php:901 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -5438,7 +5438,7 @@ msgstr "" "avainjärjestyksessä. Tämä arvo kasvaa, jos haetaan indeksisarakkeita " "käyttämällä rajauksia tai jos suoritetaan indeksihaku." -#: libraries/messages.inc.php:906 +#: libraries/messages.inc.php:902 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -5447,7 +5447,7 @@ msgstr "" "avainjärjestyksessä. Tätä lukumenetelmää käytetään lähinnä ORDER BY ... DESC " "-kyselyllä optimoimiseen." -#: libraries/messages.inc.php:907 +#: libraries/messages.inc.php:903 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -5460,7 +5460,7 @@ msgstr "" "pakottavat MySQL-palvelimen käymään läpi kaikki taulut, tai käytät " "liitoksia, jotka käyttävät avaimia virheellisesti." -#: libraries/messages.inc.php:908 +#: libraries/messages.inc.php:904 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -5472,35 +5472,35 @@ msgstr "" "yleensä siitä, että tauluja ei ole indeksoitu hyvin, tai että kyselyjä ei " "ole kirjoitettu siten, että ne hyödyntäisivät luomiasi indeksejä." -#: libraries/messages.inc.php:909 +#: libraries/messages.inc.php:905 msgid "The number of internal ROLLBACK statements." msgstr "Sisäisten ROLLBACK-kyselyjen määrä." -#: libraries/messages.inc.php:910 +#: libraries/messages.inc.php:906 msgid "The number of requests to update a row in a table." msgstr "Taulun rivien päivityspyyntöjen määrä." -#: libraries/messages.inc.php:911 +#: libraries/messages.inc.php:907 msgid "The number of requests to insert a row in a table." msgstr "Kertoo tauluihin lisättyjen rivien määrän." -#: libraries/messages.inc.php:912 +#: libraries/messages.inc.php:908 msgid "The number of pages containing data (dirty or clean)." msgstr "Tietoa (epäsiistiä tai siistiä) sisältävien sivujen määrä" -#: libraries/messages.inc.php:913 +#: libraries/messages.inc.php:909 msgid "The number of pages currently dirty." msgstr "Tällä hetkellä epäsiistinä olevien sivujen määrä." -#: libraries/messages.inc.php:914 +#: libraries/messages.inc.php:910 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Siistittäviksi pyydettyjen, puskurivarannossa olevien sivujen määrä." -#: libraries/messages.inc.php:915 +#: libraries/messages.inc.php:911 msgid "The number of free pages." msgstr "Vapaiden sivujen määrä." -#: libraries/messages.inc.php:916 +#: libraries/messages.inc.php:912 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -5510,7 +5510,7 @@ msgstr "" "parhaillaan luetaan tai kirjoitetaan tai joita ei voida poistaa tai joiden " "välimuistia ei voida tyhjentää syystä tai toisesta." -#: libraries/messages.inc.php:917 +#: libraries/messages.inc.php:913 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -5522,11 +5522,11 @@ msgstr "" "takia. Tämä arvo voidaan laskea näinkin: Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: libraries/messages.inc.php:918 +#: libraries/messages.inc.php:914 msgid "Total size of buffer pool, in pages." msgstr "Puskurivarannon kokonaiskoko sivuina." -#: libraries/messages.inc.php:919 +#: libraries/messages.inc.php:915 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -5534,7 +5534,7 @@ msgstr "" "InnoDB:n käynnistämien umpimähkäisten ennakkolukujen määrä. Näin käy kyselyn " "lukiessa satunnaisessa järjestyksessä läpi laajoja alueita taulusta." -#: libraries/messages.inc.php:920 +#: libraries/messages.inc.php:916 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -5542,11 +5542,11 @@ msgstr "" "InnoDB:n käynnistämien perättäisten ennakkolukujen määrä. Näin käy kun " "InnoDB lukee läpi kokonaisen taulun tavallisessa järjestyksessä." -#: libraries/messages.inc.php:921 +#: libraries/messages.inc.php:917 msgid "The number of logical read requests InnoDB has done." msgstr "InnoDB:n suorittamien loogisten lukupyyntöjen määrä." -#: libraries/messages.inc.php:922 +#: libraries/messages.inc.php:918 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -5554,7 +5554,7 @@ msgstr "" "Sellaisten loogisten lukujen määrä, joita InnoDB ei voinut toteuttaa " "puskurivarannon avulla vaan joutui lukemaan yksittäisen sivun." -#: libraries/messages.inc.php:923 +#: libraries/messages.inc.php:919 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -5568,55 +5568,55 @@ msgstr "" "kertoo tällaisten odotusten määrän. Jos puskurivarannon koko on asetettu " "sopivaksi, tämän arvon pitäisi olla alhainen." -#: libraries/messages.inc.php:924 +#: libraries/messages.inc.php:920 msgid "The number writes done to the InnoDB buffer pool." msgstr "InnoDB:n puskurivarannon kirjoituspyyntöjen määrä." -#: libraries/messages.inc.php:925 +#: libraries/messages.inc.php:921 msgid "The number of fsync() operations so far." msgstr "Fsync()-toimenpiteitä tähän mennessä." -#: libraries/messages.inc.php:926 +#: libraries/messages.inc.php:922 msgid "The current number of pending fsync() operations." msgstr "Tällä hetkellä käynnissä olevien fsync()-toimenpiteiden määrä." -#: libraries/messages.inc.php:927 +#: libraries/messages.inc.php:923 msgid "The current number of pending reads." msgstr "Tällä hetkellä käynnissä olevien lukutoimenpiteiden määrä." -#: libraries/messages.inc.php:928 +#: libraries/messages.inc.php:924 msgid "The current number of pending writes." msgstr "Tällä hetkellä käynnissä olevien kirjoitustoimenpiteiden määrä." -#: libraries/messages.inc.php:929 +#: libraries/messages.inc.php:925 msgid "The amount of data read so far, in bytes." msgstr "Tähän mennessä luetun tiedon määrä tavuina." -#: libraries/messages.inc.php:930 +#: libraries/messages.inc.php:926 msgid "The total number of data reads." msgstr "Kertoo, kuinka monta kertaa tietoja on luettu kaikkiaan." -#: libraries/messages.inc.php:931 +#: libraries/messages.inc.php:927 msgid "The total number of data writes." msgstr "Kertoo, kuinka monta kertaa tietoja on kirjoitettu kaikkiaan." -#: libraries/messages.inc.php:932 +#: libraries/messages.inc.php:928 msgid "The amount of data written so far, in bytes." msgstr "Kertoo, kuinka paljon on tähän mennessä tietoja kirjoitettu (tavuina)." -#: libraries/messages.inc.php:933 +#: libraries/messages.inc.php:929 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Suoritettujen päällekkäisten kirjoitustoimenpiteiden määrä ja tätä varten " "kirjoitettujen sivujen määrä." -#: libraries/messages.inc.php:934 +#: libraries/messages.inc.php:930 msgid "The number of doublewrite operations that have been performed." msgstr "" "Suoritettujen päällekkäisten kirjoitustoimenpiteiden määrä ja tätä varten " "kirjoitettujen sivujen määrä." -#: libraries/messages.inc.php:935 +#: libraries/messages.inc.php:931 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -5624,35 +5624,35 @@ msgstr "" "Liian pienestä lokipuskurista johtuneiden odotusten määrä, jolloin puskurin " "tyhjentymistä jouduttiin odottamaan ennen jatkamista." -#: libraries/messages.inc.php:936 +#: libraries/messages.inc.php:932 msgid "The number of log write requests." msgstr "Kertoo, kuinka monta kertaa lokitiedostoon on pyydetty kirjoittaa." -#: libraries/messages.inc.php:937 +#: libraries/messages.inc.php:933 msgid "The number of physical writes to the log file." msgstr "Kertoo, kuinka monta kertaa lokitiedostoon on fyysisesti kirjoitettu." -#: libraries/messages.inc.php:938 +#: libraries/messages.inc.php:934 msgid "The number of fsync() writes done to the log file." msgstr "Lokitiedostojen fsync()-kirjoitusten määrä." -#: libraries/messages.inc.php:939 +#: libraries/messages.inc.php:935 msgid "The number of pending log file fsyncs." msgstr "Lokitiedoston avointen fsync-synkronointien määrä." -#: libraries/messages.inc.php:940 +#: libraries/messages.inc.php:936 msgid "Pending log file writes." msgstr "Avoimet lokitiedostokirjoitukset." -#: libraries/messages.inc.php:941 +#: libraries/messages.inc.php:937 msgid "The number of bytes written to the log file." msgstr "Lokitiedostoon kirjoitettujen tavujen määrä." -#: libraries/messages.inc.php:942 +#: libraries/messages.inc.php:938 msgid "The number of pages created." msgstr "Luotujen sivujen määrä." -#: libraries/messages.inc.php:943 +#: libraries/messages.inc.php:939 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -5661,52 +5661,52 @@ msgstr "" "arvoja lasketaan sivuina; sivukoon avulla voidaan helposti laskea sivujen " "koko tavuina." -#: libraries/messages.inc.php:944 +#: libraries/messages.inc.php:940 msgid "The number of pages read." msgstr "Luettujen rivien määrä." -#: libraries/messages.inc.php:945 +#: libraries/messages.inc.php:941 msgid "The number of pages written." msgstr "Kirjoitettujen sivujen määrä." -#: libraries/messages.inc.php:946 +#: libraries/messages.inc.php:942 msgid "The number of row locks currently being waited for." msgstr "Tällä hetkellä odotettavien rivilukitusten määrä." -#: libraries/messages.inc.php:947 +#: libraries/messages.inc.php:943 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" "Rivilukituksen valmistumiseen kuluva aika keskimäärin, millisekunteina." -#: libraries/messages.inc.php:948 +#: libraries/messages.inc.php:944 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Rivilukitusten valmistumiseen kuluva aika yhteensä, millisekunteina." -#: libraries/messages.inc.php:949 +#: libraries/messages.inc.php:945 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Rivilukituksen noutamiseen kulunut aika enimmillään, millisekunteina." -#: libraries/messages.inc.php:950 +#: libraries/messages.inc.php:946 msgid "The number of times a row lock had to be waited for." msgstr "Kertoo, kuinka monta kertaa rivilukitusta on jouduttu odottamaan." -#: libraries/messages.inc.php:951 +#: libraries/messages.inc.php:947 msgid "The number of rows deleted from InnoDB tables." msgstr "InnoDB-tauluista poistettujen rivien määrä." -#: libraries/messages.inc.php:952 +#: libraries/messages.inc.php:948 msgid "The number of rows inserted in InnoDB tables." msgstr "InnoDB-tauluihin lisättyjen rivien määrä." -#: libraries/messages.inc.php:953 +#: libraries/messages.inc.php:949 msgid "The number of rows read from InnoDB tables." msgstr "InnoDB-taulusta luettujen rivien määrä." -#: libraries/messages.inc.php:954 +#: libraries/messages.inc.php:950 msgid "The number of rows updated in InnoDB tables." msgstr "InnoDB-taulun päivitettyjen rivien määrä." -#: libraries/messages.inc.php:955 +#: libraries/messages.inc.php:951 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -5715,7 +5715,7 @@ msgstr "" "muutoksia, mutta joita ei vielä ole tallennettu levylle. Tämä toiminto " "tunnetaan yleisesti nimellä Not_flushed_key_blocks." -#: libraries/messages.inc.php:956 +#: libraries/messages.inc.php:952 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -5724,20 +5724,20 @@ msgstr "" "avulla voi määrittää, kuinka paljon avainvälimuistia halutaan olevan " "käytössä." -#: libraries/messages.inc.php:957 +#: libraries/messages.inc.php:953 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "Samaan aikaan avainvälimuistissa olleiden lohkojen määrä enimmillään." -#: libraries/messages.inc.php:958 +#: libraries/messages.inc.php:954 msgid "The number of requests to read a key block from the cache." msgstr "" "Kertoo, kuinka monta pyyntöä on suoritettu avainlohkon hakemiseksi " "välimuistista." -#: libraries/messages.inc.php:959 +#: libraries/messages.inc.php:955 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -5748,16 +5748,16 @@ msgstr "" "asetettu liian alhainen arvo. Välimuistin käyttötahti voidaan laskea " "lausekkeella Key_reads / Key_read_requests." -#: libraries/messages.inc.php:960 +#: libraries/messages.inc.php:956 msgid "The number of requests to write a key block to the cache." msgstr "Kertoo, kuinka monta kertaa välimuistiin on kirjoitettu avainlohko." -#: libraries/messages.inc.php:961 +#: libraries/messages.inc.php:957 msgid "The number of physical writes of a key block to disk." msgstr "" "Kertoo, kuinka monta kertaa levylle on fyysisesti kirjoitettu avainlohko." -#: libraries/messages.inc.php:962 +#: libraries/messages.inc.php:958 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -5768,12 +5768,12 @@ msgstr "" "kyselytapausta varten. Oletusarvo 0 tarkoittaa, että yhtään kyselyä ei ole " "vielä koottu." -#: libraries/messages.inc.php:963 +#: libraries/messages.inc.php:959 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" "Kertoo, kuinka monta riviä INSERT DELAYED -jonoissa odottaa kirjoittamista." -#: libraries/messages.inc.php:964 +#: libraries/messages.inc.php:960 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -5781,36 +5781,36 @@ msgstr "" "Avattujen taulujen määrä. Jos määrä on suuri, tauluvälimuistin arvo saattaa " "olla liian alhainen." -#: libraries/messages.inc.php:965 +#: libraries/messages.inc.php:961 msgid "The number of files that are open." msgstr "Avoinna olevien tiedostojen määrä." -#: libraries/messages.inc.php:966 +#: libraries/messages.inc.php:962 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Avoinna olevien tietovirtojen määrä (käytetään pääasiassa kirjauksessa)." -#: libraries/messages.inc.php:967 +#: libraries/messages.inc.php:963 msgid "The number of tables that are open." msgstr "Avoinna olevien taulujen määrä." -#: libraries/messages.inc.php:968 +#: libraries/messages.inc.php:964 msgid "The number of free memory blocks in query cache." msgstr "Vapaitten muistilohkojen määrä kyselyvälimuistissa." -#: libraries/messages.inc.php:969 +#: libraries/messages.inc.php:965 msgid "The amount of free memory for query cache." msgstr "Kyselyvälimuistin vapaan muistin määrä." -#: libraries/messages.inc.php:970 +#: libraries/messages.inc.php:966 msgid "The number of cache hits." msgstr "Välimuistiosumien määrä." -#: libraries/messages.inc.php:971 +#: libraries/messages.inc.php:967 msgid "The number of queries added to the cache." msgstr "Välimuistiin lisättyjen kyselyjen määrä." -#: libraries/messages.inc.php:972 +#: libraries/messages.inc.php:968 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -5823,7 +5823,7 @@ msgstr "" "Kyselyvälimuisti päättää välimuistista poistettavat kyselyt LRU-käytännön " "avulla (\"least recently used\" eli \"äskettäin vähiten käytetyt kyselyt\")." -#: libraries/messages.inc.php:973 +#: libraries/messages.inc.php:969 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -5832,24 +5832,24 @@ msgstr "" "tallentaa välimuistiin tai ei muuten vain ole tallennettu sinne " "query_cache_type-asetuksen takia)." -#: libraries/messages.inc.php:974 +#: libraries/messages.inc.php:970 msgid "The number of queries registered in the cache." msgstr "Rekisteröityjen kyselyjen määrä välimuistissa." -#: libraries/messages.inc.php:975 +#: libraries/messages.inc.php:971 msgid "The total number of blocks in the query cache." msgstr "Lohkojen kokonaismäärä kyselyvälimuistissa." -#: libraries/messages.inc.php:976 +#: libraries/messages.inc.php:972 msgctxt "$strShowStatusReset" msgid "Reset" msgstr "Nollaa" -#: libraries/messages.inc.php:977 +#: libraries/messages.inc.php:973 msgid "The status of failsafe replication (not yet implemented)." msgstr "Replikaation vikasietotila (ei vielä toteutettu)." -#: libraries/messages.inc.php:978 +#: libraries/messages.inc.php:974 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -5857,11 +5857,11 @@ msgstr "" "Kertoo, kuinka moni liitos ei käytä indeksejä. Jos tämä arvo ei ole 0, " "taulujen indeksit olisi hyvä tarkistaa tarkkaan." -#: libraries/messages.inc.php:979 +#: libraries/messages.inc.php:975 msgid "The number of joins that used a range search on a reference table." msgstr "Niiden liitosten määrä, jotka käyttivät viitetaulussa aluehakua." -#: libraries/messages.inc.php:980 +#: libraries/messages.inc.php:976 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -5870,7 +5870,7 @@ msgstr "" "rivin jälkeen. (Jos tämä ei ole 0, taulujen indeksit tulisi tarkistaa " "huolella.)" -#: libraries/messages.inc.php:981 +#: libraries/messages.inc.php:977 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -5878,17 +5878,17 @@ msgstr "" "Kertoo niiden liitosten määrän, jotka käyttävät rajausta ensimmäisessä " "taulussa. (Yleensä ei ole vakavaa, vaikka tämä arvo olisi suuri.)" -#: libraries/messages.inc.php:982 +#: libraries/messages.inc.php:978 msgid "The number of joins that did a full scan of the first table." msgstr "" "Kertoo niiden liitosten määrän, jotka suorittivat ensimmäisestä taulusta " "täydellisen tarkistuksen." -#: libraries/messages.inc.php:983 +#: libraries/messages.inc.php:979 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "SQL-alisäikeen avointen tilapäistaulujen määrä tällä hetkellä." -#: libraries/messages.inc.php:984 +#: libraries/messages.inc.php:980 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -5896,13 +5896,13 @@ msgstr "" "Kertoo, kuinka usein replikaation SQL-alisäie on käynnistyksestään lähtien " "kaikkiaan uudelleen yrittänyt transkatioita." -#: libraries/messages.inc.php:985 +#: libraries/messages.inc.php:981 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Tämän on päällä (ON), mikäli kyseinen palvelin on pääpalvelimeen kytketty " "alipalvelin." -#: libraries/messages.inc.php:986 +#: libraries/messages.inc.php:982 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -5910,14 +5910,14 @@ msgstr "" "Niiden säikeiden määrä, joiden luomiseen on kulunut aikaa enemmän kuin " "slow_launch_time sekuntia." -#: libraries/messages.inc.php:987 +#: libraries/messages.inc.php:983 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "Niiden kyselyjen määrä, joiden suorittamiseen on kulunut aikaa enemmän kuin " "long_query_time sekuntia." -#: libraries/messages.inc.php:988 +#: libraries/messages.inc.php:984 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -5926,25 +5926,25 @@ msgstr "" "Lajittelualgoritmiin tarvittavien lomitusten määrä. Jos tämä arvo on suuri, " "sort_buffer-muuttujan arvoa voi suurentaa." -#: libraries/messages.inc.php:989 +#: libraries/messages.inc.php:985 msgid "The number of sorts that were done with ranges." msgstr "Arvolillä suoritettujen lajittelutoimenpiteiden määrä." -#: libraries/messages.inc.php:990 +#: libraries/messages.inc.php:986 msgid "The number of sorted rows." msgstr "Lajiteltujen rivien määrä." -#: libraries/messages.inc.php:991 +#: libraries/messages.inc.php:987 msgid "The number of sorts that were done by scanning the table." msgstr "" "Niiden lajittelutoimenpiteiden määrä, jotka on suoritettu lukemalla taulu " "läpi." -#: libraries/messages.inc.php:992 +#: libraries/messages.inc.php:988 msgid "The number of times that a table lock was acquired immediately." msgstr "Kertoo, kuinka usein taulu on saatu lukittua heti." -#: libraries/messages.inc.php:993 +#: libraries/messages.inc.php:989 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -5956,7 +5956,7 @@ msgstr "" "hyvä ensin optimoida kyselyjä ja sitten joko jakaa taulu useampaan osaan tai " "käyttää hyödyksi replikaatiota." -#: libraries/messages.inc.php:994 +#: libraries/messages.inc.php:990 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -5966,11 +5966,11 @@ msgstr "" "voidaan laskea täten kaavalla Threads_created / yhteyksien lkm. Jos tämä " "arvo on punainen, thread_cache_size-muuttujan arvoa tulisi nostaa." -#: libraries/messages.inc.php:995 +#: libraries/messages.inc.php:991 msgid "The number of currently open connections." msgstr "Tällä hetkellä avoinna olevien yhteyksien määrä." -#: libraries/messages.inc.php:996 +#: libraries/messages.inc.php:992 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -5982,28 +5982,28 @@ msgstr "" "säikeet on toteutettu hyvin, tällä ei ole kovin suurta vaikutusta " "suorituskykyyn.)" -#: libraries/messages.inc.php:997 +#: libraries/messages.inc.php:993 msgid "The number of threads that are not sleeping." msgstr "Hereillä olevien säikeiden määrä." -#: libraries/messages.inc.php:999 tbl_printview.php:75 +#: libraries/messages.inc.php:995 tbl_printview.php:75 msgid "Show tables" msgstr "Näytä taulut" -#: libraries/messages.inc.php:1000 libraries/sql_query_form.lib.php:396 +#: libraries/messages.inc.php:996 libraries/sql_query_form.lib.php:396 msgid " Show this query here again " msgstr " Näytä kyselylause uudelleen " -#: libraries/messages.inc.php:1001 libraries/mysql_charsets.lib.php:217 +#: libraries/messages.inc.php:997 libraries/mysql_charsets.lib.php:217 #: libraries/mysql_charsets.lib.php:342 msgid "Simplified Chinese" msgstr "Yksinkertaistettu kiina" -#: libraries/messages.inc.php:1002 tbl_operations.php:258 +#: libraries/messages.inc.php:998 tbl_operations.php:258 msgid "(singly)" msgstr "(yksitellen)" -#: libraries/messages.inc.php:1005 libraries/replication_gui.lib.php:52 +#: libraries/messages.inc.php:1001 libraries/replication_gui.lib.php:52 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" @@ -6011,47 +6011,47 @@ msgstr "" "Varmista, että my.cnf-asetustiedostossa on yksikäsitteinen palvelintunnus. " "Jos ei ole, lisää seuraava rivi [mysqld]-osaan:" -#: libraries/messages.inc.php:1006 libraries/mysql_charsets.lib.php:283 +#: libraries/messages.inc.php:1002 libraries/mysql_charsets.lib.php:283 msgid "Slovak" msgstr "Slovakialainen" -#: libraries/messages.inc.php:1007 libraries/mysql_charsets.lib.php:286 +#: libraries/messages.inc.php:1003 libraries/mysql_charsets.lib.php:286 msgid "Slovenian" msgstr "Slovenialainen" -#: libraries/messages.inc.php:1008 pmd_general.php:95 +#: libraries/messages.inc.php:1004 pmd_general.php:95 msgid "Small/Big All" msgstr "Kaikki pienenä/suurena" -#: libraries/messages.inc.php:1009 pmd_general.php:91 +#: libraries/messages.inc.php:1005 pmd_general.php:91 msgid "Snap to grid" msgstr "Sovita ruudukkoon" -#: libraries/messages.inc.php:1011 server_synchronize.php:1167 +#: libraries/messages.inc.php:1007 server_synchronize.php:1167 msgid "Socket" msgstr "Pistoke" -#: libraries/messages.inc.php:1013 server_status.php:259 +#: libraries/messages.inc.php:1009 server_status.php:259 msgid "Sorting" msgstr "Lajittelu" -#: libraries/messages.inc.php:1015 tbl_printview.php:310 tbl_structure.php:657 +#: libraries/messages.inc.php:1011 tbl_printview.php:310 tbl_structure.php:657 msgid "Space usage" msgstr "Levytilan käyttö" -#: libraries/messages.inc.php:1016 libraries/mysql_charsets.lib.php:289 +#: libraries/messages.inc.php:1012 libraries/mysql_charsets.lib.php:289 msgid "Spanish" msgstr "Espanjalainen" -#: libraries/messages.inc.php:1019 +#: libraries/messages.inc.php:1015 msgid "Export type" msgstr "Vientityyppi" -#: libraries/messages.inc.php:1020 +#: libraries/messages.inc.php:1016 msgid "Export time in UTC" msgstr "" -#: libraries/messages.inc.php:1021 libraries/sqlparser.lib.php:173 +#: libraries/messages.inc.php:1017 libraries/sqlparser.lib.php:173 msgid "" "There is a chance that you may have found a bug in the SQL parser. Please " "examine your query closely, and check that the quotes are correct and not " @@ -6072,7 +6072,7 @@ msgstr "" "phpMyAdminista, etsi rivi jolla virheilmoitus ilmeni ja lähetä meille " "ilmoitus virheestä alla olevan koodin kera:" -#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:137 +#: libraries/messages.inc.php:1018 libraries/sqlparser.lib.php:137 msgid "" "There seems to be an error in your SQL query. The MySQL server error output " "below, if there is any, may also help you in diagnosing the problem" @@ -6080,32 +6080,32 @@ msgstr "" "Käyttämässäsi SQL-lauseessa on virhe. MySQL-palvelimen antama virheilmoitus " "näkyy alla, mikäli palvelin sellaisen antoi." -#: libraries/messages.inc.php:1026 libraries/sqlparser.lib.php:495 +#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:495 msgid "Invalid Identifer" msgstr "Tunniste ei kelpaa" -#: libraries/messages.inc.php:1027 libraries/sqlparser.lib.php:344 +#: libraries/messages.inc.php:1023 libraries/sqlparser.lib.php:344 msgid "Unclosed quote" msgstr "Merkkijonon lopusta puuttuu lainausmerkki" -#: libraries/messages.inc.php:1028 libraries/sqlparser.lib.php:612 +#: libraries/messages.inc.php:1024 libraries/sqlparser.lib.php:612 msgid "Unknown Punctuation String" msgstr "Tuntematon välimerkki" -#: libraries/messages.inc.php:1030 server_replication.php:327 +#: libraries/messages.inc.php:1026 server_replication.php:327 #: server_replication.php:328 msgid "Start" msgstr "Käynnistä" -#: libraries/messages.inc.php:1033 tbl_printview.php:369 tbl_structure.php:729 +#: libraries/messages.inc.php:1029 tbl_printview.php:369 tbl_structure.php:729 msgid "Statements" msgstr "Tieto" -#: libraries/messages.inc.php:1034 tbl_printview.php:380 tbl_structure.php:741 +#: libraries/messages.inc.php:1030 tbl_printview.php:380 tbl_structure.php:741 msgid "static" msgstr "staattinen" -#: libraries/messages.inc.php:1035 server_status.php:388 +#: libraries/messages.inc.php:1031 server_status.php:388 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -6113,42 +6113,42 @@ msgstr "" "Ruuhkaisten palvelinten tavulaskurit saattavat ylivuotaa, joten MySQL-" "palvelimen ilmoittamat tilastotiedot saattavat olla virheellisiä." -#: libraries/messages.inc.php:1038 server_replication.php:327 +#: libraries/messages.inc.php:1034 server_replication.php:327 #: server_replication.php:328 msgid "Stop" msgstr "Lopeta" -#: libraries/messages.inc.php:1039 server_engines.php:49 +#: libraries/messages.inc.php:1035 server_engines.php:49 msgid "Storage Engines" msgstr "Tallennusmoottorit" -#: libraries/messages.inc.php:1040 libraries/tbl_properties.inc.php:726 +#: libraries/messages.inc.php:1036 libraries/tbl_properties.inc.php:726 #: server_engines.php:58 tbl_operations.php:353 msgid "Storage Engine" msgstr "Tallennusmoottori" -#: libraries/messages.inc.php:1042 +#: libraries/messages.inc.php:1038 msgid "CSV for MS Excel" msgstr "MS Excelin CSV-muoto" -#: libraries/messages.inc.php:1044 tbl_structure.php:516 tbl_structure.php:518 +#: libraries/messages.inc.php:1040 tbl_structure.php:516 tbl_structure.php:518 msgid "Propose table structure" msgstr "Esitä taulun rakenne" -#: libraries/messages.inc.php:1045 server_synchronize.php:424 +#: libraries/messages.inc.php:1041 server_synchronize.php:424 #: server_synchronize.php:867 msgid "Structure Difference" msgstr "Rakenne-erot" -#: libraries/messages.inc.php:1049 server_synchronize.php:265 +#: libraries/messages.inc.php:1045 server_synchronize.php:265 msgid "Structure Synchronization" msgstr "Rakenteen yhtenäistäminen" -#: libraries/messages.inc.php:1050 libraries/sql_query_form.lib.php:462 +#: libraries/messages.inc.php:1046 libraries/sql_query_form.lib.php:462 msgid "Submit" msgstr "Lähetä" -#: libraries/messages.inc.php:1052 main.php:358 +#: libraries/messages.inc.php:1048 main.php:358 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -6157,16 +6157,16 @@ msgstr "" "Palvelin käyttää Suhosin-suojausjärjestelmää. Lue %sohjeista%s tietoja " "mahdollisista ongelmista." -#: libraries/messages.inc.php:1054 libraries/mysql_charsets.lib.php:295 +#: libraries/messages.inc.php:1050 libraries/mysql_charsets.lib.php:295 #: libraries/mysql_charsets.lib.php:392 msgid "Swedish" msgstr "Ruotsalainen" -#: libraries/messages.inc.php:1060 tbl_operations.php:556 +#: libraries/messages.inc.php:1056 tbl_operations.php:556 msgid "Switch to copied table" msgstr "Siirry kopioituun tauluun" -#: libraries/messages.inc.php:1061 server_synchronize.php:1213 +#: libraries/messages.inc.php:1057 server_synchronize.php:1213 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -6174,145 +6174,145 @@ msgstr "" "Kohdetietokanta yhtenäistetään täydellisesti lähdetietokantaan. " "Lähdetietokanta pysyy muuttumattomana." -#: libraries/messages.inc.php:1062 server_synchronize.php:451 +#: libraries/messages.inc.php:1058 server_synchronize.php:451 #: server_synchronize.php:896 msgid "Synchronize Databases" msgstr "Yhtenäistä tietokannat" -#: libraries/messages.inc.php:1063 libraries/server_links.inc.php:92 +#: libraries/messages.inc.php:1059 libraries/server_links.inc.php:92 #: server_synchronize.php:1092 server_synchronize.php:1100 msgid "Synchronize" msgstr "Yhtenäistä" -#: libraries/messages.inc.php:1065 server_synchronize.php:430 +#: libraries/messages.inc.php:1061 server_synchronize.php:430 #: server_synchronize.php:873 msgid "Add column(s)" msgstr "Lisää sarake/sarakkeita" -#: libraries/messages.inc.php:1066 tbl_create.php:62 +#: libraries/messages.inc.php:1062 tbl_create.php:62 #, php-format msgid "Table %s already exists!" msgstr "Taulu %s on jo olemassa!" -#: libraries/messages.inc.php:1067 server_synchronize.php:432 +#: libraries/messages.inc.php:1063 server_synchronize.php:432 #: server_synchronize.php:875 msgid "Alter column(s)" msgstr "Muuta saraketta/sarakkeita" -#: libraries/messages.inc.php:1068 tbl_addfield.php:189 tbl_alter.php:103 +#: libraries/messages.inc.php:1064 tbl_addfield.php:189 tbl_alter.php:103 #: tbl_indexes.php:98 #, php-format msgid "Table %1$s has been altered successfully" msgstr "Taulun %1$s muuttaminen onnistui." -#: libraries/messages.inc.php:1069 server_synchronize.php:434 +#: libraries/messages.inc.php:1065 server_synchronize.php:434 #: server_synchronize.php:877 msgid "Apply index(s)" msgstr "Käytä indeksiä/indeksejä" -#: libraries/messages.inc.php:1071 server_synchronize.php:446 +#: libraries/messages.inc.php:1067 server_synchronize.php:446 #: server_synchronize.php:890 msgid "Would you like to delete all the previous rows from target tables?" msgstr "Haluatko poistaa kaikki edelliset rivit kohdetauluista?" -#: libraries/messages.inc.php:1072 tbl_move_copy.php:82 +#: libraries/messages.inc.php:1068 tbl_move_copy.php:82 msgid "The table name is empty!" msgstr "Taulun nimi puuttuu!" -#: libraries/messages.inc.php:1073 tbl_create.php:249 +#: libraries/messages.inc.php:1069 tbl_create.php:249 #, php-format msgid "Table %1$s has been created." msgstr "Taulu %1$s on luotu." -#: libraries/messages.inc.php:1076 tbl_operations.php:628 +#: libraries/messages.inc.php:1072 tbl_operations.php:628 #, php-format msgid "Table %s has been flushed" msgstr "Taulun %s välimuisti on tyhjennetty" -#: libraries/messages.inc.php:1077 server_synchronize.php:436 +#: libraries/messages.inc.php:1073 server_synchronize.php:436 #: server_synchronize.php:879 msgid "Insert row(s)" msgstr "Lisää rivi/rivejä" -#: libraries/messages.inc.php:1078 libraries/tbl_links.inc.php:107 +#: libraries/messages.inc.php:1074 libraries/tbl_links.inc.php:107 #: libraries/tbl_links.inc.php:140 libraries/tbl_links.inc.php:141 msgid "Table seems to be empty!" msgstr "Taulu on tyhjä!" -#: libraries/messages.inc.php:1079 tbl_operations.php:568 +#: libraries/messages.inc.php:1075 tbl_operations.php:568 msgid "Table maintenance" msgstr "Taulun ylläpito" -#: libraries/messages.inc.php:1080 libraries/tbl_properties.inc.php:618 +#: libraries/messages.inc.php:1076 libraries/tbl_properties.inc.php:618 #: server_synchronize.php:428 server_synchronize.php:871 msgid "Table name" msgstr "Taulun nimi" -#: libraries/messages.inc.php:1081 pdf_schema.php:1116 +#: libraries/messages.inc.php:1077 pdf_schema.php:1116 msgid "Table of contents" msgstr "Sisällysluettelo" -#: libraries/messages.inc.php:1082 tbl_operations.php:334 +#: libraries/messages.inc.php:1078 tbl_operations.php:334 msgid "Table options" msgstr "Taulun valinnat" -#: libraries/messages.inc.php:1083 server_synchronize.php:431 +#: libraries/messages.inc.php:1079 server_synchronize.php:431 #: server_synchronize.php:874 msgid "Remove column(s)" msgstr "Poista sarake/sarakkeet" -#: libraries/messages.inc.php:1084 server_synchronize.php:433 +#: libraries/messages.inc.php:1080 server_synchronize.php:433 #: server_synchronize.php:876 msgid "Remove index(s)" msgstr "Poista indeksi(t)" -#: libraries/messages.inc.php:1088 server_synchronize.php:435 +#: libraries/messages.inc.php:1084 server_synchronize.php:435 #: server_synchronize.php:878 msgid "Update row(s)" msgstr "Päivitä rivi(t)" -#: libraries/messages.inc.php:1090 server_synchronize.php:942 +#: libraries/messages.inc.php:1086 server_synchronize.php:942 msgid "Target database has been synchronized with source database" msgstr "Kohdetietokanta on yhtenäistetty lähdetietokannan kanssa" -#: libraries/messages.inc.php:1091 server_privileges.php:392 +#: libraries/messages.inc.php:1087 server_privileges.php:392 #: server_privileges.php:527 server_privileges.php:1679 #: server_privileges.php:1685 msgid "Table-specific privileges" msgstr "Taulukohtaiset käyttöoikeudet" -#: libraries/messages.inc.php:1092 server_status.php:254 +#: libraries/messages.inc.php:1088 server_status.php:254 msgid "Temporary data" msgstr "Väliaikaista tietoa" -#: libraries/messages.inc.php:1093 tbl_change.php:728 +#: libraries/messages.inc.php:1089 tbl_change.php:728 msgid " Because of its length,
this field might not be editable " msgstr " Pituudestaan johtuen
tätä saraketta ei voine muokata " -#: libraries/messages.inc.php:1094 +#: libraries/messages.inc.php:1090 msgid "Texy! text" msgstr "Texy!-teksti" -#: libraries/messages.inc.php:1095 libraries/mysql_charsets.lib.php:298 +#: libraries/messages.inc.php:1091 libraries/mysql_charsets.lib.php:298 #: libraries/mysql_charsets.lib.php:395 msgid "Thai" msgstr "Thai" -#: libraries/messages.inc.php:1102 libraries/replication_gui.lib.php:308 +#: libraries/messages.inc.php:1098 libraries/replication_gui.lib.php:308 #: server_privileges.php:734 msgid "This Host" msgstr "Tämä isäntä" -#: libraries/messages.inc.php:1103 server_status.php:252 +#: libraries/messages.inc.php:1099 server_status.php:252 msgid "Threads" msgstr "Säikeet" -#: libraries/messages.inc.php:1104 server_processlist.php:22 +#: libraries/messages.inc.php:1100 server_processlist.php:22 #, php-format msgid "Thread %s was successfully killed." msgstr "Säikeen %s lopetus onnistui." -#: libraries/messages.inc.php:1106 +#: libraries/messages.inc.php:1102 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -6321,158 +6321,158 @@ msgstr "" "tarkoittaa yleensä sitä, että phpMyAdmin ei voi ajaa tätä tuontia loppuun " "asti ellei PHP:n suoritusaikarajaa nosteta." -#: libraries/messages.inc.php:1109 pmd_pdf.php:94 +#: libraries/messages.inc.php:1105 pmd_pdf.php:94 msgid "to/from page" msgstr "Sivulta/sivulle" -#: libraries/messages.inc.php:1110 pdf_pages.php:343 +#: libraries/messages.inc.php:1106 pdf_pages.php:343 msgid "Toggle scratchboard" msgstr "Näytä/kätke luonnospöytä" -#: libraries/messages.inc.php:1111 pmd_general.php:99 +#: libraries/messages.inc.php:1107 pmd_general.php:99 msgid "Toggle small/big" msgstr "Vaihda pieneksi/suureksi" -#: libraries/messages.inc.php:1112 pmd_help.php:27 +#: libraries/messages.inc.php:1108 pmd_help.php:27 msgid "To select relation, click :" msgstr "Valitaksesi relaation, paina :" -#: libraries/messages.inc.php:1115 libraries/tbl_links.inc.php:149 +#: libraries/messages.inc.php:1111 libraries/tbl_links.inc.php:149 #, php-format msgid "Tracking of %s.%s is activated." msgstr "Kohteen %s.%s seuranta on käytössä." -#: libraries/messages.inc.php:1116 tbl_tracking.php:655 +#: libraries/messages.inc.php:1112 tbl_tracking.php:655 msgid "Activate now" msgstr "Ota käyttöön nyt" -#: libraries/messages.inc.php:1117 tbl_tracking.php:653 +#: libraries/messages.inc.php:1113 tbl_tracking.php:653 #, php-format msgid "Activate tracking for %s.%s" msgstr "Ota käyttöön kohteen %s.%s seuranta" -#: libraries/messages.inc.php:1118 tbl_tracking.php:221 +#: libraries/messages.inc.php:1114 tbl_tracking.php:221 msgid "Comment out these two lines if you do not need them." msgstr "Kommentoi nämä kaksi riviä pois, mikäli et tarvitse niitä." -#: libraries/messages.inc.php:1119 tbl_tracking.php:688 +#: libraries/messages.inc.php:1115 tbl_tracking.php:688 msgid "Create version" msgstr "Luo versio" -#: libraries/messages.inc.php:1120 tbl_tracking.php:668 +#: libraries/messages.inc.php:1116 tbl_tracking.php:668 #, php-format msgid "Create version %s of %s.%s" msgstr "Luo versio %s kohteesta %s.%s" -#: libraries/messages.inc.php:1122 tbl_tracking.php:412 +#: libraries/messages.inc.php:1118 tbl_tracking.php:412 msgid "Data definition statement" msgstr "Tiedon määritelmän lause" -#: libraries/messages.inc.php:1123 tbl_tracking.php:463 +#: libraries/messages.inc.php:1119 tbl_tracking.php:463 msgid "Data manipulation statement" msgstr "Tiedon käsittelyn lause" -#: libraries/messages.inc.php:1124 tbl_tracking.php:410 tbl_tracking.php:461 +#: libraries/messages.inc.php:1120 tbl_tracking.php:410 tbl_tracking.php:461 msgid "Date" msgstr "Päiväys" -#: libraries/messages.inc.php:1125 tbl_tracking.php:642 +#: libraries/messages.inc.php:1121 tbl_tracking.php:642 msgid "Deactivate now" msgstr "Poista käytöstä nyt" -#: libraries/messages.inc.php:1126 tbl_tracking.php:640 +#: libraries/messages.inc.php:1122 tbl_tracking.php:640 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "Poista kohteen %s.%s seuranta" -#: libraries/messages.inc.php:1127 tbl_tracking.php:521 +#: libraries/messages.inc.php:1123 tbl_tracking.php:521 #, php-format msgid "Export as %s" msgstr "Vie kohteena %s" -#: libraries/messages.inc.php:1130 tbl_tracking.php:251 tbl_tracking.php:379 +#: libraries/messages.inc.php:1126 tbl_tracking.php:251 tbl_tracking.php:379 msgid "Close" msgstr "Sulje" -#: libraries/messages.inc.php:1131 tbl_tracking.php:114 +#: libraries/messages.inc.php:1127 tbl_tracking.php:114 #, php-format msgid "Tracking report for table `%s`" msgstr "Taulun `%s` seurantaraportti" -#: libraries/messages.inc.php:1133 tbl_tracking.php:397 tbl_tracking.php:504 +#: libraries/messages.inc.php:1129 tbl_tracking.php:397 tbl_tracking.php:504 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "Näytä %s päiväyksestä %s päiväykseen %s käyttäjän %s %s osalta" -#: libraries/messages.inc.php:1134 tbl_tracking.php:561 +#: libraries/messages.inc.php:1130 tbl_tracking.php:561 msgid "Show versions" msgstr "Näytä versiot" -#: libraries/messages.inc.php:1135 tbl_tracking.php:507 +#: libraries/messages.inc.php:1131 tbl_tracking.php:507 msgid "SQL dump (file download)" msgstr "SQL-vedos (tiedoston lataus)" -#: libraries/messages.inc.php:1136 tbl_tracking.php:508 +#: libraries/messages.inc.php:1132 tbl_tracking.php:508 msgid "SQL dump" msgstr "SQL-vedos" -#: libraries/messages.inc.php:1137 tbl_tracking.php:213 +#: libraries/messages.inc.php:1133 tbl_tracking.php:213 msgid "SQL statements executed." msgstr "SQL-lauseet suoritettu." -#: libraries/messages.inc.php:1138 +#: libraries/messages.inc.php:1134 msgid "This option will replace your table and contained data." msgstr "Tämä valinta korvaa taulun ja sen sisältämät tiedot." -#: libraries/messages.inc.php:1139 tbl_tracking.php:509 +#: libraries/messages.inc.php:1135 tbl_tracking.php:509 msgid "SQL execution" msgstr "SQL-suoritus" -#: libraries/messages.inc.php:1140 tbl_tracking.php:230 +#: libraries/messages.inc.php:1136 tbl_tracking.php:230 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "SQL-lauseet viety. Kopioi vedos tai suorita se." -#: libraries/messages.inc.php:1141 tbl_tracking.php:381 +#: libraries/messages.inc.php:1137 tbl_tracking.php:381 msgid "Tracking statements" msgstr "Seurantalauseet" -#: libraries/messages.inc.php:1148 tbl_tracking.php:593 +#: libraries/messages.inc.php:1144 tbl_tracking.php:593 msgid "Version" msgstr "Versio" -#: libraries/messages.inc.php:1149 tbl_tracking.php:672 +#: libraries/messages.inc.php:1145 tbl_tracking.php:672 msgid "Track these data definition statements:" msgstr "Seuraa näitä tiedon määritelmän lauseita:" -#: libraries/messages.inc.php:1150 tbl_tracking.php:680 +#: libraries/messages.inc.php:1146 tbl_tracking.php:680 msgid "Track these data manipulation statements:" msgstr "Seuraa näitä tiedon käsittelyn lauseita:" -#: libraries/messages.inc.php:1155 tbl_tracking.php:411 tbl_tracking.php:462 +#: libraries/messages.inc.php:1151 tbl_tracking.php:411 tbl_tracking.php:462 msgid "Username" msgstr "Käyttäjänimi" -#: libraries/messages.inc.php:1156 tbl_tracking.php:203 +#: libraries/messages.inc.php:1152 tbl_tracking.php:203 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "Kohteen %s.%s seuranta, käytössä on versio %s." -#: libraries/messages.inc.php:1157 tbl_tracking.php:187 +#: libraries/messages.inc.php:1153 tbl_tracking.php:187 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "Versio %s on luotu, kohteen %s.%s seuranta on käytössä." -#: libraries/messages.inc.php:1158 tbl_tracking.php:195 +#: libraries/messages.inc.php:1154 tbl_tracking.php:195 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "Kohteen %s.%s seuranta, versio %s on pois käytöstä." -#: libraries/messages.inc.php:1159 tbl_tracking.php:262 +#: libraries/messages.inc.php:1155 tbl_tracking.php:262 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Version %s kuvaus (SQL-koodi)" -#: libraries/messages.inc.php:1161 tbl_tracking.php:220 +#: libraries/messages.inc.php:1157 tbl_tracking.php:220 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -6480,24 +6480,24 @@ msgstr "" "Voit tehdä vedoksen luomalla ja käyttämällä tilapäistietokantaa. Varmista, " "että sinulla on oikeudet toiminnon suorittamiseen." -#: libraries/messages.inc.php:1162 libraries/mysql_charsets.lib.php:219 +#: libraries/messages.inc.php:1158 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:362 msgid "Traditional Chinese" msgstr "Perinteinen kiina" -#: libraries/messages.inc.php:1163 libraries/mysql_charsets.lib.php:292 +#: libraries/messages.inc.php:1159 libraries/mysql_charsets.lib.php:292 msgid "Traditional Spanish" msgstr "Perinteinen espanja" -#: libraries/messages.inc.php:1164 server_status.php:388 +#: libraries/messages.inc.php:1160 server_status.php:388 msgid "Traffic" msgstr "Liikenne" -#: libraries/messages.inc.php:1165 server_status.php:261 +#: libraries/messages.inc.php:1161 server_status.php:261 msgid "Transaction coordinator" msgstr "Transaktion koordinaattori" -#: libraries/messages.inc.php:1166 +#: libraries/messages.inc.php:1162 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 " @@ -6509,7 +6509,7 @@ msgstr "" "tiedostonimen sisältävälle kentälle nimen. Jos toista (2) asetusta " "käytetään, ensimmäinen asetus on asetettava tyhjäksi." -#: libraries/messages.inc.php:1167 +#: libraries/messages.inc.php:1163 msgid "" "Displays hexadecimal representation of data. Optional first parameter " "specifies how often space will be added (defaults to 2 nibbles)." @@ -6517,7 +6517,7 @@ msgstr "" "Näyttää tiedon heksalukuina. Valinnainen, ensimmäinen parametri määrittelee, " "kuinka usein välilyönti lisätään (oletusarvo on 2)." -#: libraries/messages.inc.php:1168 +#: libraries/messages.inc.php:1164 msgid "" "Displays a clickable thumbnail. The options are the maximum width and height " "in pixels. The original aspect ratio is preserved." @@ -6525,15 +6525,15 @@ msgstr "" "Näyttää painettavan pikkukuvan. Valinnat ovat enimmäisleveys- ja korkeus " "pikseleinä. Kuvasuhde säilyy ennallaan." -#: libraries/messages.inc.php:1169 +#: libraries/messages.inc.php:1165 msgid "Displays a link to download this image." msgstr "Näyttää kuvan latauslinkin." -#: libraries/messages.inc.php:1170 +#: libraries/messages.inc.php:1166 msgid "See image/jpeg: inline" msgstr "Katso image/jpeg: inline" -#: libraries/messages.inc.php:1171 +#: libraries/messages.inc.php:1167 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 " @@ -6553,7 +6553,7 @@ msgstr "" "ohjeet \"local\"-asetuksen käytöstä PHP:n ohjeiden strftime()-funktiosta, " "\"utc\"-asetus taas käyttää gmdate()-funktiota." -#: libraries/messages.inc.php:1172 +#: libraries/messages.inc.php:1168 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 " @@ -6578,7 +6578,7 @@ msgstr "" "sisältökennoon lisätään NOWRAP, jotta koko tuloste näkyy ilman " "ennakkomuotoiluja (Oletus 1)" -#: libraries/messages.inc.php:1173 +#: libraries/messages.inc.php:1169 msgid "" "Displays the contents of the field as-is, without running it through " "htmlspecialchars(). That is, the field is assumed to contain valid HTML." @@ -6586,7 +6586,7 @@ msgstr "" "Säilyttää kentän alkuperäiset muotoilut. Kenoviivoja ei käytetä " "erikoismerkkien edellä." -#: libraries/messages.inc.php:1174 +#: libraries/messages.inc.php:1170 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 " @@ -6596,7 +6596,7 @@ msgstr "" "on etuliite, eli esimerkiksi \"http://osoite.com/\", toinen valinta on " "leveys pikseleinä, kolmas on korkeus." -#: libraries/messages.inc.php:1175 +#: libraries/messages.inc.php:1171 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 " @@ -6606,11 +6606,11 @@ msgstr "" "etuliite, eli esimerkiksi \"http://osoite.com/\", toinen valinta on linkin " "otsikko." -#: libraries/messages.inc.php:1176 +#: libraries/messages.inc.php:1172 msgid "Formats text as SQL query with syntax highlighting." msgstr "Käyttää SQL-kyselyssä syntaksinväritystä." -#: libraries/messages.inc.php:1177 +#: libraries/messages.inc.php:1173 msgid "" "Displays a part of a string. The first option is the number of characters to " "skip from the beginning of the string (Default 0). The second option is the " @@ -6625,69 +6625,69 @@ msgstr "" "Kolmas valinta määrittelee, mitä merkkejä merkkijonon perään lisätään sitä " "näytettäessä (Oletus: \"...\") ." -#: libraries/messages.inc.php:1179 server_binlog.php:183 server_binlog.php:186 +#: libraries/messages.inc.php:1175 server_binlog.php:183 server_binlog.php:186 #: server_processlist.php:49 server_processlist.php:51 msgid "Truncate Shown Queries" msgstr "Näytä katkaistut kyselyt" -#: libraries/messages.inc.php:1180 libraries/mysql_charsets.lib.php:301 +#: libraries/messages.inc.php:1176 libraries/mysql_charsets.lib.php:301 #: libraries/mysql_charsets.lib.php:389 msgid "Turkish" msgstr "Turkkilainen" -#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:304 +#: libraries/messages.inc.php:1179 libraries/mysql_charsets.lib.php:304 #: libraries/mysql_charsets.lib.php:386 msgid "Ukrainian" msgstr "Ukrainalainen" -#: libraries/messages.inc.php:1185 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:1181 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 msgid "Unicode" msgstr "Unicode" -#: libraries/messages.inc.php:1187 libraries/mysql_charsets.lib.php:398 +#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:398 #: libraries/mysql_charsets.lib.php:405 msgid "unknown" msgstr "tuntematon" -#: libraries/messages.inc.php:1190 server_privileges.php:1152 +#: libraries/messages.inc.php:1186 server_privileges.php:1152 #, php-format msgid "You have updated the privileges for %s." msgstr "Käyttäjän %s käyttöoikeudet on päivitetty." -#: libraries/messages.inc.php:1191 user_password.php:112 +#: libraries/messages.inc.php:1187 user_password.php:112 msgid "The profile has been updated." msgstr "Profiili on päivitetty." -#: libraries/messages.inc.php:1193 libraries/relation.lib.php:138 +#: libraries/messages.inc.php:1189 libraries/relation.lib.php:138 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "Tarkista ohjeista, kuinka Column_comments-tauluja voi päivittää." -#: libraries/messages.inc.php:1194 +#: libraries/messages.inc.php:1190 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Sinun tulisi päivittää versioon %s %s tai sitä uudempaan." -#: libraries/messages.inc.php:1204 tbl_printview.php:314 tbl_structure.php:661 +#: libraries/messages.inc.php:1200 tbl_printview.php:314 tbl_structure.php:661 msgid "Usage" msgstr "Käyttö" -#: libraries/messages.inc.php:1205 +#: libraries/messages.inc.php:1201 msgid "Enclose table and field names with backquotes" msgstr "Pane taulujen ja sarakkeiden nimet lainausmerkkeihin" -#: libraries/messages.inc.php:1206 libraries/replication_gui.lib.php:314 +#: libraries/messages.inc.php:1202 libraries/replication_gui.lib.php:314 #: server_privileges.php:740 msgid "Use Host Table" msgstr "Käytä isäntätaulua" -#: libraries/messages.inc.php:1207 server_privileges.php:848 +#: libraries/messages.inc.php:1203 server_privileges.php:848 #, php-format msgid "The user %s already exists!" msgstr "Käyttäjä %s on jo olemassa!" -#: libraries/messages.inc.php:1209 libraries/replication_gui.lib.php:55 +#: libraries/messages.inc.php:1205 libraries/replication_gui.lib.php:55 #: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245 #: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255 #: server_privileges.php:672 server_privileges.php:675 @@ -6695,37 +6695,37 @@ msgstr "Käyttäjä %s on jo olemassa!" msgid "User name" msgstr "Käyttäjänimi" -#: libraries/messages.inc.php:1210 server_privileges.php:1645 +#: libraries/messages.inc.php:1206 server_privileges.php:1645 msgid "The selected user was not found in the privilege table." msgstr "Valittua käyttäjää ei löytynyt käyttöoikeustaulusta." -#: libraries/messages.inc.php:1211 server_privileges.php:1365 +#: libraries/messages.inc.php:1207 server_privileges.php:1365 msgid "User overview" msgstr "Käyttäjien yleiskatsaus" -#: libraries/messages.inc.php:1212 server_privileges.php:1261 +#: libraries/messages.inc.php:1208 server_privileges.php:1261 msgid "The selected users have been deleted successfully." msgstr "Valitsemiesi käyttäjien poisto onnistui." -#: libraries/messages.inc.php:1213 server_privileges.php:2026 +#: libraries/messages.inc.php:1209 server_privileges.php:2026 #, php-format msgid "Users having access to "%s"" msgstr "Käyttäjät, joilla on oikeus käyttää kohdetta "%s"" -#: libraries/messages.inc.php:1214 main.php:189 server_privileges.php:1350 +#: libraries/messages.inc.php:1210 main.php:189 server_privileges.php:1350 #: server_privileges.php:1497 server_privileges.php:1611 #: server_privileges.php:2029 server_processlist.php:54 msgid "User" msgstr "Käyttäjä" -#: libraries/messages.inc.php:1215 tbl_change.php:1171 +#: libraries/messages.inc.php:1211 tbl_change.php:1171 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Käytä arvojen välillä siirtymiseen sarkainta. Ctrl- ja nuolinäppäimillä voi " "siirtyä mihin tahansa kohtaan." -#: libraries/messages.inc.php:1217 libraries/replication_gui.lib.php:251 +#: libraries/messages.inc.php:1213 libraries/replication_gui.lib.php:251 #: libraries/replication_gui.lib.php:319 libraries/replication_gui.lib.php:342 #: server_privileges.php:678 server_privileges.php:745 #: server_privileges.php:769 server_privileges.php:1889 @@ -6733,7 +6733,7 @@ msgstr "" msgid "Use text field" msgstr "Käytä tekstikenttää" -#: libraries/messages.inc.php:1221 libraries/sqlvalidator.lib.php:68 +#: libraries/messages.inc.php:1217 libraries/sqlvalidator.lib.php:68 #, php-format msgid "" "The SQL validator could not be initialized. Please check if you have " @@ -6742,84 +6742,84 @@ msgstr "" "SQL-tarkistinta ei voitu käynnistää. Tarkista, että tarpeelliset PHP-" "laajennukset on asennettu. Lisätietoa on %sohjeissa%s." -#: libraries/messages.inc.php:1222 libraries/replication_gui.lib.php:111 +#: libraries/messages.inc.php:1218 libraries/replication_gui.lib.php:111 #: server_status.php:627 tbl_change.php:324 tbl_printview.php:370 #: tbl_select.php:139 tbl_structure.php:730 msgid "Value" msgstr "Arvo" -#: libraries/messages.inc.php:1223 libraries/replication_gui.lib.php:110 +#: libraries/messages.inc.php:1219 libraries/replication_gui.lib.php:110 #: libraries/sql_query_form.lib.php:445 server_status.php:626 #: server_variables.php:52 msgid "Variable" msgstr "Muuttuja" -#: libraries/messages.inc.php:1225 server_export.php:21 +#: libraries/messages.inc.php:1221 server_export.php:21 msgid "View dump (schema) of databases" msgstr "Näytä tietokannoista vedos (skeema)" -#: libraries/messages.inc.php:1227 tbl_export.php:23 +#: libraries/messages.inc.php:1223 tbl_export.php:23 msgid "View dump (schema) of table" msgstr "Tee vedos taulusta" -#: libraries/messages.inc.php:1231 view_create.php:142 +#: libraries/messages.inc.php:1227 view_create.php:142 msgid "VIEW name" msgstr "VIEW-arvon nimi" -#: libraries/messages.inc.php:1237 main.php:205 +#: libraries/messages.inc.php:1233 main.php:205 msgid "Web server" msgstr "Verkkopalvelin" -#: libraries/messages.inc.php:1239 libraries/mysql_charsets.lib.php:277 +#: libraries/messages.inc.php:1235 libraries/mysql_charsets.lib.php:277 #: libraries/mysql_charsets.lib.php:325 msgid "West European" msgstr "Länsieurooppalainen" -#: libraries/messages.inc.php:1240 main.php:230 +#: libraries/messages.inc.php:1236 main.php:230 msgid "Wiki" msgstr "Wiki" -#: libraries/messages.inc.php:1241 server_privileges.php:2138 +#: libraries/messages.inc.php:1237 server_privileges.php:2138 msgid "wildcard" msgstr "korvausmerkki" -#: libraries/messages.inc.php:1248 +#: libraries/messages.inc.php:1244 msgid "Export contents" msgstr "Vie sisällöt" -#: libraries/messages.inc.php:1249 +#: libraries/messages.inc.php:1245 msgid "Export functions" msgstr "Vie funktiot" -#: libraries/messages.inc.php:1250 +#: libraries/messages.inc.php:1246 msgid "Export procedures" msgstr "Vie proseduurit" -#: libraries/messages.inc.php:1251 +#: libraries/messages.inc.php:1247 msgid "Export Structure Schemas (recommended)" msgstr "Vie rakennekaaviot (suositeltavaa)" -#: libraries/messages.inc.php:1252 +#: libraries/messages.inc.php:1248 msgid "Export tables" msgstr "Vie taulut" -#: libraries/messages.inc.php:1253 +#: libraries/messages.inc.php:1249 msgid "Export triggers" msgstr "Vie herättimet" -#: libraries/messages.inc.php:1254 +#: libraries/messages.inc.php:1250 msgid "Export views" msgstr "Vie näkymät" -#: libraries/messages.inc.php:1255 +#: libraries/messages.inc.php:1251 msgid "XML" msgstr "XML" -#: libraries/messages.inc.php:1259 server_privileges.php:592 +#: libraries/messages.inc.php:1255 server_privileges.php:592 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Huom: Näiden valintojen asettaminen nollaksi (0) poistaa rajoituksen." -#: libraries/messages.inc.php:1260 +#: libraries/messages.inc.php:1256 msgid "\"zipped\"" msgstr "\"zip-pakattu\"" diff --git a/po/fr.po b/po/fr.po index 867bdbf2d..19b722e32 100644 --- 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-05-13 11:25+0200\n" +"POT-Creation-Date: 2010-05-13 11:30+0200\n" "PO-Revision-Date: 2010-05-12 18:01+0200\n" "Last-Translator: Marc \n" "Language-Team: french \n" @@ -15,19 +15,19 @@ msgstr "" "X-Generator: Pootle 2.0.1\n" #: browse_foreigners.php:38 browse_foreigners.php:59 -#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:870 +#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:866 #: server_privileges.php:1475 msgid "Show all" msgstr "Tout afficher" #: browse_foreigners.php:82 db_operations.php:648 -#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:394 -#: libraries/export/pdf.php:147 libraries/messages.inc.php:597 +#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394 +#: libraries/export/pdf.php:147 libraries/messages.inc.php:593 #: pdf_schema.php:283 pdf_schema.php:1123 pdf_schema.php:1139 msgid "Page number:" msgstr "Page n°:" -#: browse_foreigners.php:132 libraries/messages.inc.php:1242 +#: browse_foreigners.php:132 libraries/messages.inc.php:1238 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -40,7 +40,7 @@ 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/db_links.inc.php:75 -#: libraries/messages.inc.php:841 libraries/tbl_links.inc.php:63 +#: libraries/messages.inc.php:837 libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Rechercher" @@ -49,12 +49,12 @@ msgstr "Rechercher" #: db_search.php:362 db_structure.php:567 js/messages.php:48 #: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2267 +#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 #: 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 #: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614 -#: libraries/messages.inc.php:361 libraries/replication_gui.lib.php:73 +#: libraries/messages.inc.php:357 libraries/replication_gui.lib.php:73 #: libraries/replication_gui.lib.php:365 libraries/select_server.lib.php:104 #: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477 #: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782 @@ -74,33 +74,33 @@ msgid "Go" msgstr "Exécuter" #: browse_foreigners.php:168 browse_foreigners.php:172 -#: libraries/Index.class.php:442 libraries/messages.inc.php:459 +#: libraries/Index.class.php:442 libraries/messages.inc.php:455 #: tbl_tracking.php:320 msgid "Keyname" msgstr "Nom de l'index" #: browse_foreigners.php:169 browse_foreigners.php:171 -#: libraries/messages.inc.php:252 server_collations.php:55 +#: libraries/messages.inc.php:248 server_collations.php:55 #: server_collations.php:67 server_engines.php:59 server_status.php:628 msgid "Description" msgstr "Description" #: browse_foreigners.php:247 browse_foreigners.php:256 #: browse_foreigners.php:268 browse_foreigners.php:276 -#: libraries/messages.inc.php:1218 +#: libraries/messages.inc.php:1214 msgid "Use this value" msgstr "Utiliser cette valeur" -#: db_create.php:46 libraries/messages.inc.php:215 +#: db_create.php:46 libraries/messages.inc.php:211 #, php-format 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 libraries/messages.inc.php:232 +#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:228 msgid "Database comment: " msgstr "Commentaire sur la base de données: " -#: db_datadict.php:165 libraries/messages.inc.php:1070 +#: db_datadict.php:165 libraries/messages.inc.php:1066 #: libraries/tbl_properties.inc.php:724 pdf_schema.php:1236 #: tbl_operations.php:345 tbl_printview.php:130 msgid "Table comments" @@ -109,7 +109,7 @@ msgstr "Commentaires sur la table" #: db_datadict.php:174 db_qbe.php:174 libraries/Index.class.php:446 #: libraries/export/htmlword.php:244 libraries/export/latex.php:360 #: libraries/export/odt.php:294 libraries/export/texytext.php:233 -#: libraries/messages.inc.php:317 libraries/tbl_properties.inc.php:99 +#: libraries/messages.inc.php:313 libraries/tbl_properties.inc.php:99 #: libraries/tbl_properties.inc.php:275 pdf_schema.php:1262 #: pdf_schema.php:1283 tbl_change.php:308 tbl_indexes.php:189 #: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135 @@ -121,7 +121,7 @@ msgstr "Champ" #: libraries/db_events.inc.php:31 libraries/db_routines.inc.php:42 #: 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/messages.inc.php:1181 +#: libraries/export/texytext.php:234 libraries/messages.inc.php:1177 #: libraries/tbl_properties.inc.php:100 pdf_schema.php:1263 #: pdf_schema.php:1284 server_privileges.php:2031 tbl_change.php:287 #: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313 @@ -133,7 +133,7 @@ msgstr "Type" #: db_datadict.php:177 libraries/Index.class.php:449 #: libraries/export/htmlword.php:246 libraries/export/latex.php:360 #: libraries/export/odt.php:300 libraries/export/texytext.php:235 -#: libraries/messages.inc.php:576 libraries/tbl_properties.inc.php:109 +#: libraries/messages.inc.php:572 libraries/tbl_properties.inc.php:109 #: pdf_schema.php:1265 pdf_schema.php:1286 tbl_change.php:323 #: tbl_printview.php:145 tbl_structure.php:181 tbl_tracking.php:276 #: tbl_tracking.php:327 @@ -142,7 +142,7 @@ msgstr "Null" #: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 -#: libraries/export/texytext.php:236 libraries/messages.inc.php:238 +#: libraries/export/texytext.php:236 libraries/messages.inc.php:234 #: libraries/tbl_properties.inc.php:106 pdf_schema.php:1266 #: pdf_schema.php:1287 tbl_printview.php:146 tbl_structure.php:182 #: tbl_tracking.php:277 @@ -151,14 +151,14 @@ msgstr "Défaut" #: db_datadict.php:182 libraries/export/htmlword.php:249 #: libraries/export/latex.php:362 libraries/export/odt.php:307 -#: libraries/export/texytext.php:238 libraries/messages.inc.php:483 +#: libraries/export/texytext.php:238 libraries/messages.inc.php:479 #: pdf_schema.php:1268 pdf_schema.php:1289 tbl_printview.php:150 msgid "Links to" msgstr "Relié à" #: db_datadict.php:184 db_printview.php:112 libraries/export/htmlword.php:252 #: libraries/export/latex.php:365 libraries/export/odt.php:312 -#: libraries/export/texytext.php:241 libraries/messages.inc.php:163 +#: libraries/export/texytext.php:241 libraries/messages.inc.php:159 #: libraries/tbl_properties.inc.php:130 pdf_schema.php:1279 #: pdf_schema.php:1290 tbl_printview.php:152 msgid "Comments" @@ -167,7 +167,7 @@ msgstr "Commentaires" #: db_datadict.php:267 libraries/Index.class.php:359 #: 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/messages.inc.php:559 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:555 #: libraries/mult_submits.inc.php:263 pdf_schema.php:1344 #: server_privileges.php:1529 server_privileges.php:1540 #: server_privileges.php:1850 server_privileges.php:1855 @@ -179,7 +179,7 @@ msgstr "Non" #: db_datadict.php:267 libraries/Index.class.php:360 #: libraries/Index.class.php:385 libraries/export/htmlword.php:322 #: libraries/export/latex.php:430 libraries/export/odt.php:368 -#: libraries/export/texytext.php:311 libraries/messages.inc.php:1257 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:1253 #: libraries/mult_submits.inc.php:45 libraries/mult_submits.inc.php:50 #: libraries/mult_submits.inc.php:55 libraries/mult_submits.inc.php:60 #: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:101 @@ -193,108 +193,108 @@ msgstr "Non" msgid "Yes" msgstr "Oui" -#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:670 +#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:666 #: tbl_printview.php:498 msgid "Print" msgstr "Imprimer" -#: db_export.php:29 libraries/messages.inc.php:1226 +#: db_export.php:29 libraries/messages.inc.php:1222 msgid "View dump (schema) of database" msgstr "Schéma et données de la base" #: db_export.php:33 db_printview.php:96 db_qbe.php:102 db_structure.php:51 -#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:568 +#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:564 #: navigation.php:346 msgid "No tables found in database." msgstr "Aucune table n'a été trouvée dans cette base." -#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:845 +#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:841 #: server_export.php:27 msgid "Select All" msgstr "Tout sélectionner" -#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1188 +#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1184 #: server_export.php:29 msgid "Unselect All" msgstr "Tout désélectionner" -#: db_operations.php:38 libraries/messages.inc.php:213 tbl_create.php:54 +#: db_operations.php:38 libraries/messages.inc.php:209 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 libraries/messages.inc.php:753 +#: db_operations.php:236 libraries/messages.inc.php:749 #, 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 libraries/messages.inc.php:178 +#: db_operations.php:240 libraries/messages.inc.php:174 #, 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:410 libraries/messages.inc.php:236 +#: db_operations.php:410 libraries/messages.inc.php:232 msgid "Rename database to" msgstr "Changer le nom de la base de données pour" -#: db_operations.php:415 libraries/messages.inc.php:161 +#: db_operations.php:415 libraries/messages.inc.php:157 #: server_processlist.php:57 msgid "Command" msgstr "Commande" -#: db_operations.php:425 libraries/messages.inc.php:58 tbl_change.php:1143 +#: db_operations.php:425 libraries/messages.inc.php:54 tbl_change.php:1143 msgid "and then" msgstr "et ensuite" -#: db_operations.php:451 libraries/messages.inc.php:233 +#: db_operations.php:451 libraries/messages.inc.php:229 msgid "Copy database to" msgstr "Copier la base de données vers" -#: db_operations.php:458 libraries/messages.inc.php:1043 +#: db_operations.php:458 libraries/messages.inc.php:1039 #: tbl_operations.php:526 tbl_tracking.php:388 msgid "Structure only" msgstr "Structure seule" -#: db_operations.php:459 libraries/messages.inc.php:1041 +#: db_operations.php:459 libraries/messages.inc.php:1037 #: tbl_operations.php:527 tbl_tracking.php:390 msgid "Structure and data" msgstr "Structure et données" -#: db_operations.php:460 libraries/messages.inc.php:229 tbl_operations.php:528 +#: db_operations.php:460 libraries/messages.inc.php:225 tbl_operations.php:528 #: tbl_tracking.php:389 msgid "Data only" msgstr "Données seulement" -#: db_operations.php:468 libraries/messages.inc.php:186 +#: db_operations.php:468 libraries/messages.inc.php:182 msgid "CREATE DATABASE before copying" msgstr "Faire CREATE DATABASE avant la copie" #: db_operations.php:471 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 -#: libraries/export/sql.php:82 libraries/messages.inc.php:30 +#: libraries/export/sql.php:82 libraries/messages.inc.php:26 #: tbl_operations.php:534 #, php-format msgid "Add %s" msgstr "Ajouter %s" -#: db_operations.php:475 libraries/messages.inc.php:29 tbl_operations.php:297 +#: db_operations.php:475 libraries/messages.inc.php:25 tbl_operations.php:297 #: tbl_operations.php:536 msgid "Add AUTO_INCREMENT value" msgstr "Inclure la valeur courante de l'AUTO_INCREMENT" -#: db_operations.php:479 libraries/messages.inc.php:31 tbl_operations.php:543 +#: db_operations.php:479 libraries/messages.inc.php:27 tbl_operations.php:543 msgid "Add constraints" msgstr "Inclure les contraintes de clés étrangères" -#: db_operations.php:492 libraries/messages.inc.php:1059 +#: db_operations.php:492 libraries/messages.inc.php:1055 msgid "Switch to copied database" msgstr "Aller à la base de données copiée" -#: db_operations.php:533 libraries/messages.inc.php:89 +#: db_operations.php:533 libraries/messages.inc.php:85 msgid "BLOB Repository" msgstr "Dépôt BLOB" #: db_operations.php:536 db_tracking.php:76 libraries/common.lib.php:1350 -#: libraries/messages.inc.php:1037 libraries/server_links.inc.php:49 +#: libraries/messages.inc.php:1033 libraries/server_links.inc.php:49 #: server_processlist.php:59 tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "État" @@ -304,11 +304,11 @@ msgctxt "BLOB repository" msgid "Enabled" msgstr "activé" -#: db_operations.php:548 libraries/messages.inc.php:93 +#: db_operations.php:548 libraries/messages.inc.php:89 msgid "Disable" msgstr "Désactiver" -#: db_operations.php:558 libraries/messages.inc.php:90 +#: db_operations.php:558 libraries/messages.inc.php:86 msgid "Damaged" msgstr "Endommagé" @@ -322,12 +322,12 @@ msgctxt "BLOB repository" msgid "Disabled" msgstr "désactivé" -#: db_operations.php:574 libraries/messages.inc.php:96 +#: db_operations.php:574 libraries/messages.inc.php:92 msgid "Enable" msgstr "Activer" #: db_operations.php:598 libraries/Index.class.php:448 -#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:158 +#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:154 #: 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:361 @@ -336,7 +336,7 @@ msgstr "Activer" msgid "Collation" msgstr "Interclassement" -#: db_operations.php:609 libraries/messages.inc.php:742 main.php:316 +#: db_operations.php:609 libraries/messages.inc.php:738 main.php:316 #: pdf_schema.php:34 #, php-format msgid "" @@ -346,58 +346,58 @@ 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:645 libraries/messages.inc.php:264 pdf_pages.php:528 +#: db_operations.php:645 libraries/messages.inc.php:260 pdf_pages.php:528 msgid "Display PDF schema" msgstr "Afficher le schéma en PDF" -#: db_operations.php:661 libraries/messages.inc.php:877 pdf_pages.php:529 +#: db_operations.php:661 libraries/messages.inc.php:873 pdf_pages.php:529 msgid "Show grid" msgstr "Grille" -#: db_operations.php:664 libraries/messages.inc.php:874 pdf_pages.php:530 +#: db_operations.php:664 libraries/messages.inc.php:870 pdf_pages.php:530 msgid "Show color" msgstr "Couleurs" -#: db_operations.php:666 libraries/messages.inc.php:998 pdf_pages.php:531 +#: db_operations.php:666 libraries/messages.inc.php:994 pdf_pages.php:531 msgid "Show dimension of tables" msgstr "Dimension des tables" -#: db_operations.php:669 libraries/messages.inc.php:52 pdf_pages.php:532 +#: db_operations.php:669 libraries/messages.inc.php:48 pdf_pages.php:532 msgid "Display all tables with the same width" msgstr "Afficher toutes les tables avec une largeur identique" -#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:227 +#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:223 #: pdf_pages.php:533 msgid "Data Dictionary" msgstr "Dictionnaire de données" -#: db_operations.php:674 libraries/messages.inc.php:884 pdf_pages.php:534 +#: db_operations.php:674 libraries/messages.inc.php:880 pdf_pages.php:534 msgid "Only show keys" msgstr "Ne montrer que les clés." -#: db_operations.php:676 libraries/messages.inc.php:875 pdf_pages.php:535 +#: db_operations.php:676 libraries/messages.inc.php:871 pdf_pages.php:535 msgid "Data Dictionary Format" msgstr "Orientation du dictionnaire:" -#: db_operations.php:678 libraries/messages.inc.php:464 pdf_pages.php:537 +#: db_operations.php:678 libraries/messages.inc.php:460 pdf_pages.php:537 msgid "Landscape" msgstr "Paysage" -#: db_operations.php:679 libraries/messages.inc.php:663 pdf_pages.php:538 +#: db_operations.php:679 libraries/messages.inc.php:659 pdf_pages.php:538 msgid "Portrait" msgstr "Portrait" -#: db_operations.php:682 libraries/messages.inc.php:599 pdf_pages.php:541 +#: db_operations.php:682 libraries/messages.inc.php:595 pdf_pages.php:541 msgid "Paper size" msgstr "Taille du papier" -#: db_operations.php:706 libraries/messages.inc.php:281 +#: db_operations.php:706 libraries/messages.inc.php:277 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 libraries/messages.inc.php:1087 +#: libraries/header.inc.php:126 libraries/messages.inc.php:1083 #: pdf_pages.php:405 server_privileges.php:1626 server_privileges.php:1682 #: server_privileges.php:1946 server_synchronize.php:423 #: server_synchronize.php:866 tbl_tracking.php:592 test/theme.php:75 @@ -405,176 +405,176 @@ msgid "Table" msgstr "Table" #: db_printview.php:105 libraries/db_structure.lib.php:56 -#: libraries/messages.inc.php:735 +#: libraries/messages.inc.php:731 msgid "Records" msgstr "Enregistrements" #: db_printview.php:109 libraries/db_structure.lib.php:67 -#: libraries/messages.inc.php:1003 tbl_indexes.php:190 +#: libraries/messages.inc.php:999 tbl_indexes.php:190 msgid "Size" msgstr "Taille" #: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 -#: libraries/export/sql.php:899 libraries/messages.inc.php:436 +#: libraries/export/sql.php:899 libraries/messages.inc.php:432 msgid "in use" msgstr "utilisé" #: db_printview.php:187 libraries/db_info.inc.php:88 -#: libraries/export/sql.php:514 libraries/messages.inc.php:1032 +#: libraries/export/sql.php:514 libraries/messages.inc.php:1028 #: pdf_schema.php:1241 tbl_printview.php:434 tbl_structure.php:810 msgid "Creation" msgstr "Création" #: db_printview.php:196 libraries/db_info.inc.php:93 -#: libraries/export/sql.php:519 libraries/messages.inc.php:1036 +#: libraries/export/sql.php:519 libraries/messages.inc.php:1032 #: pdf_schema.php:1246 tbl_printview.php:444 tbl_structure.php:818 msgid "Last update" msgstr "Dernière modification" #: db_printview.php:205 libraries/db_info.inc.php:98 -#: libraries/export/sql.php:524 libraries/messages.inc.php:1031 +#: libraries/export/sql.php:524 libraries/messages.inc.php:1027 #: pdf_schema.php:1251 tbl_printview.php:454 tbl_structure.php:826 msgid "Last check" msgstr "Dernière vérification" -#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1085 +#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1081 #, php-format msgid "%s table(s)" msgstr "%s table(s)" #: db_qbe.php:29 libraries/display_tbl.lib.php:1981 -#: libraries/messages.inc.php:1051 libraries/sql_query_form.lib.php:140 +#: libraries/messages.inc.php:1047 libraries/sql_query_form.lib.php:140 #: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131 #: view_operations.php:62 msgid "Your SQL query has been executed successfully" msgstr "Votre requête SQL a été exécutée avec succès" -#: db_qbe.php:42 libraries/messages.inc.php:371 +#: db_qbe.php:42 libraries/messages.inc.php:367 msgid "You have to choose at least one column to display" msgstr "Vous devez choisir au moins une colonne à afficher" #: db_qbe.php:200 libraries/db_structure.lib.php:104 -#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1014 +#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1010 msgid "Sort" msgstr "Tri" #: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111 #: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828 -#: libraries/messages.inc.php:69 server_databases.php:170 +#: libraries/messages.inc.php:65 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314 msgid "Ascending" msgstr "Croissant" #: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119 #: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825 -#: libraries/messages.inc.php:251 server_databases.php:170 +#: libraries/messages.inc.php:247 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315 msgid "Descending" msgstr "Décroissant" #: db_qbe.php:264 db_tracking.php:78 libraries/display_tbl.lib.php:308 -#: libraries/messages.inc.php:888 tbl_change.php:277 tbl_tracking.php:597 +#: libraries/messages.inc.php:884 tbl_change.php:277 tbl_tracking.php:597 msgid "Show" msgstr "Afficher" -#: db_qbe.php:300 libraries/messages.inc.php:202 +#: db_qbe.php:300 libraries/messages.inc.php:198 msgid "Criteria" msgstr "Critère" #: db_qbe.php:353 db_qbe.php:435 db_qbe.php:527 db_qbe.php:558 -#: libraries/messages.inc.php:718 +#: libraries/messages.inc.php:714 msgid "Ins" msgstr "Ajouter" #: db_qbe.php:357 db_qbe.php:439 db_qbe.php:524 db_qbe.php:555 -#: libraries/messages.inc.php:56 +#: libraries/messages.inc.php:52 msgid "And" msgstr "et" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:529 db_qbe.php:560 -#: libraries/messages.inc.php:717 +#: libraries/messages.inc.php:713 msgid "Del" 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/messages.inc.php:592 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:588 #: libraries/tbl_properties.inc.php:779 server_privileges.php:258 #: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288 msgid "Or" msgstr "Ou" -#: db_qbe.php:507 libraries/messages.inc.php:516 +#: db_qbe.php:507 libraries/messages.inc.php:512 msgid "Modify" msgstr "Modifier" -#: db_qbe.php:584 libraries/messages.inc.php:33 +#: db_qbe.php:584 libraries/messages.inc.php:29 msgid "Add/Delete Criteria Row" msgstr "Ajouter/effacer x lignes" -#: db_qbe.php:596 libraries/messages.inc.php:32 +#: db_qbe.php:596 libraries/messages.inc.php:28 msgid "Add/Delete Field Columns" msgstr "Ajouter/effacer x colonnes" -#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1192 +#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1188 msgid "Update Query" msgstr "Mise-à-jour de la requête" -#: db_qbe.php:617 libraries/messages.inc.php:1216 +#: db_qbe.php:617 libraries/messages.inc.php:1212 msgid "Use Tables" msgstr "Utiliser les tables" -#: db_qbe.php:640 libraries/messages.inc.php:723 +#: db_qbe.php:640 libraries/messages.inc.php:719 #, php-format msgid "SQL query on database %s:" msgstr "Requête SQL sur la base %s:" -#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:823 +#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:819 msgid "Submit Query" msgstr "Exécuter la requête" #: db_search.php:68 libraries/auth/config.auth.lib.php:84 #: libraries/auth/config.auth.lib.php:103 #: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52 -#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:26 +#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:22 msgid "Access denied" msgstr "Accès refusé" -#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:836 +#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:832 msgid "at least one of the words" msgstr "au moins un mot" -#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:837 +#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:833 msgid "all words" msgstr "tous les mots" -#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:838 +#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:834 msgid "the exact phrase" msgstr "phrase exacte" -#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:839 +#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:835 msgid "as regular expression" msgstr "expression réguliére" -#: db_search.php:242 libraries/messages.inc.php:840 +#: db_search.php:242 libraries/messages.inc.php:836 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Résultats de la recherche de \"%s\" %s :" -#: db_search.php:260 libraries/messages.inc.php:579 +#: db_search.php:260 libraries/messages.inc.php:575 #, php-format msgid "%s match(es) inside table %s" 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/messages.inc.php:108 +#: db_structure.php:105 libraries/messages.inc.php:104 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468 msgid "Browse" msgstr "Afficher" #: db_search.php:272 libraries/display_tbl.lib.php:1165 -#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:243 +#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:239 #: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406 #: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377 #: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216 @@ -582,45 +582,45 @@ msgstr "Afficher" msgid "Delete" msgstr "Effacer" -#: db_search.php:285 libraries/messages.inc.php:580 +#: db_search.php:285 libraries/messages.inc.php:576 #, php-format msgid "Total: %s match(es)" msgstr "Total : %s occurence(s)" -#: db_search.php:299 libraries/messages.inc.php:832 +#: db_search.php:299 libraries/messages.inc.php:828 msgid "Search in database" msgstr "Effectuer une nouvelle recherche dans la base de données" -#: db_search.php:302 libraries/messages.inc.php:835 +#: db_search.php:302 libraries/messages.inc.php:831 msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgstr "Mot ou Valeur à rechercher (passe-partout: «%») :" -#: db_search.php:307 libraries/messages.inc.php:842 +#: db_search.php:307 libraries/messages.inc.php:838 msgid "Find:" msgstr "Type de recherche :" -#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1017 +#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1013 msgid "Words are separated by a space character (\" \")." msgstr "Séparer les mots par un espace (\" \")." -#: db_search.php:325 libraries/messages.inc.php:834 +#: db_search.php:325 libraries/messages.inc.php:830 msgid "Inside table(s):" msgstr "Dans la(les) table(s) :" -#: db_search.php:355 libraries/messages.inc.php:833 +#: db_search.php:355 libraries/messages.inc.php:829 msgid "Inside field:" 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/messages.inc.php:431 libraries/sql_query_form.lib.php:334 +#: libraries/messages.inc.php:427 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/db_links.inc.php:63 libraries/export/latex.php:337 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:1048 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:1044 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 #: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269 msgid "Structure" @@ -629,8 +629,8 @@ 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:1642 -#: libraries/db_links.inc.php:100 libraries/messages.inc.php:272 +#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/db_links.inc.php:100 libraries/messages.inc.php:268 #: 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 @@ -640,40 +640,40 @@ 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:1641 -#: libraries/messages.inc.php:284 libraries/mult_submits.inc.php:39 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: libraries/messages.inc.php:280 libraries/mult_submits.inc.php:39 #: libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Vider" -#: db_structure.php:316 libraries/messages.inc.php:1075 +#: db_structure.php:316 libraries/messages.inc.php:1071 #: libraries/tbl_links.inc.php:100 #, php-format msgid "Table %s has been emptied" msgstr "La table %s a été vidée" -#: db_structure.php:326 libraries/messages.inc.php:1229 +#: db_structure.php:326 libraries/messages.inc.php:1225 #: 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/messages.inc.php:1074 +#: db_structure.php:326 libraries/messages.inc.php:1070 #: 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 libraries/messages.inc.php:1128 +#: db_structure.php:333 libraries/messages.inc.php:1124 msgid "Tracking is active." msgstr "Le suivi est actif." -#: db_structure.php:335 libraries/messages.inc.php:1129 +#: db_structure.php:335 libraries/messages.inc.php:1125 msgid "Tracking is not active." msgstr "Le suivi n'est pas activé." #: db_structure.php:420 libraries/display_tbl.lib.php:1944 -#: libraries/messages.inc.php:1228 +#: libraries/messages.inc.php:1224 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -683,83 +683,83 @@ msgstr "" "sdocumentation%s." #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 -#: libraries/messages.inc.php:1233 libraries/tbl_info.inc.php:66 +#: libraries/messages.inc.php:1229 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/messages.inc.php:773 libraries/server_links.inc.php:70 +#: libraries/messages.inc.php:769 libraries/server_links.inc.php:70 #: server_replication.php:33 server_replication.php:164 server_status.php:258 msgid "Replication" msgstr "Réplication" -#: db_structure.php:489 libraries/messages.inc.php:1053 +#: db_structure.php:489 libraries/messages.inc.php:1049 msgid "Sum" msgstr "Somme" #: db_structure.php:496 libraries/StorageEngine.class.php:356 -#: libraries/messages.inc.php:239 +#: libraries/messages.inc.php:235 #, 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 #: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086 -#: libraries/messages.inc.php:1243 libraries/mult_submits.inc.php:16 +#: libraries/messages.inc.php:1239 libraries/mult_submits.inc.php:16 #: server_databases.php:346 server_databases.php:351 #: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465 msgid "With selected:" msgstr "Pour la sélection :" #: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: libraries/messages.inc.php:148 server_databases.php:348 +#: libraries/messages.inc.php:144 server_databases.php:348 #: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459 msgid "Check All" msgstr "Tout cocher" #: db_structure.php:531 libraries/display_tbl.lib.php:2077 -#: libraries/messages.inc.php:1184 libraries/replication_gui.lib.php:33 +#: libraries/messages.inc.php:1180 libraries/replication_gui.lib.php:33 #: server_databases.php:350 server_privileges.php:533 #: server_privileges.php:1564 tbl_structure.php:463 msgid "Uncheck All" msgstr "Tout décocher" -#: db_structure.php:536 libraries/messages.inc.php:150 +#: db_structure.php:536 libraries/messages.inc.php:146 msgid "Check tables having overhead" msgstr "Cocher tables avec pertes" #: db_structure.php:547 db_structure.php:548 db_structure.php:599 -#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:672 +#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:668 #: libraries/mult_submits.inc.php:28 tbl_structure.php:493 #: tbl_structure.php:495 msgid "Print view" msgstr "Version imprimable" -#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:153 +#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:149 #: libraries/mult_submits.inc.php:42 tbl_operations.php:579 msgid "Check table" msgstr "Vérifier la table" -#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:590 +#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:586 #: libraries/mult_submits.inc.php:47 tbl_operations.php:619 #: tbl_structure.php:710 tbl_structure.php:712 msgid "Optimize table" msgstr "Optimiser la table" -#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:758 +#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:754 #: libraries/mult_submits.inc.php:52 tbl_operations.php:609 msgid "Repair table" msgstr "Réparer la table" -#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:55 +#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:51 #: libraries/mult_submits.inc.php:57 tbl_operations.php:599 msgid "Analyze table" msgstr "Analyser la table" #: db_structure.php:557 db_structure.php:558 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/messages.inc.php:310 +#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:306 #: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84 #: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109 #: server_privileges.php:1341 setup/frames/menu.inc.php:22 @@ -767,7 +767,7 @@ msgstr "Analyser la table" msgid "Export" msgstr "Exporter" -#: db_tracking.php:66 libraries/messages.inc.php:1151 +#: db_tracking.php:66 libraries/messages.inc.php:1147 msgid "Tracked tables" msgstr "Tables faisant l'objet d'un suivi" @@ -775,7 +775,7 @@ msgstr "Tables faisant l'objet d'un suivi" #: 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/header_printview.inc.php:58 libraries/messages.inc.php:212 +#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:208 #: navigation.php:233 server_databases.php:169 server_privileges.php:1621 #: server_privileges.php:1682 server_privileges.php:1940 #: server_processlist.php:56 server_synchronize.php:1179 @@ -783,76 +783,76 @@ msgstr "Tables faisant l'objet d'un suivi" msgid "Database" msgstr "Base de données" -#: db_tracking.php:73 libraries/messages.inc.php:1146 +#: db_tracking.php:73 libraries/messages.inc.php:1142 msgid "Last version" msgstr "Dernière version" -#: db_tracking.php:74 libraries/messages.inc.php:1145 tbl_tracking.php:594 +#: db_tracking.php:74 libraries/messages.inc.php:1141 tbl_tracking.php:594 msgid "Created" msgstr "Créé" -#: db_tracking.php:75 libraries/messages.inc.php:1147 tbl_tracking.php:595 +#: db_tracking.php:75 libraries/messages.inc.php:1143 tbl_tracking.php:595 msgid "Updated" msgstr "Mis à jour" #: db_tracking.php:77 libraries/Index.class.php:440 -#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:27 +#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:23 #: server_databases.php:203 server_privileges.php:1503 #: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187 msgid "Action" msgstr "Action" -#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:247 +#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:243 msgid "Delete tracking data for this table" msgstr "Supprimer les données de suivi de cette table" -#: db_tracking.php:106 libraries/messages.inc.php:1142 tbl_tracking.php:548 +#: db_tracking.php:106 libraries/messages.inc.php:1138 tbl_tracking.php:548 #: tbl_tracking.php:606 tbl_tracking.php:613 msgid "active" msgstr "actif" -#: db_tracking.php:108 libraries/messages.inc.php:1143 tbl_tracking.php:550 +#: db_tracking.php:108 libraries/messages.inc.php:1139 tbl_tracking.php:550 #: tbl_tracking.php:608 tbl_tracking.php:610 msgid "not active" msgstr "non activé" -#: db_tracking.php:121 libraries/messages.inc.php:1160 +#: db_tracking.php:121 libraries/messages.inc.php:1156 msgid "Versions" msgstr "Versions" -#: db_tracking.php:122 libraries/messages.inc.php:1132 tbl_tracking.php:379 +#: db_tracking.php:122 libraries/messages.inc.php:1128 tbl_tracking.php:379 #: tbl_tracking.php:624 msgid "Tracking report" msgstr "Rapport de suivi" -#: db_tracking.php:123 libraries/messages.inc.php:1144 tbl_tracking.php:251 +#: db_tracking.php:123 libraries/messages.inc.php:1140 tbl_tracking.php:251 #: tbl_tracking.php:624 msgid "Structure snapshot" msgstr "Instantané" -#: db_tracking.php:152 libraries/messages.inc.php:1154 +#: db_tracking.php:152 libraries/messages.inc.php:1150 msgid "Untracked tables" msgstr "Tables ne faisant pas l'objet d'un suivi" -#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1153 +#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1149 #: tbl_structure.php:529 tbl_structure.php:531 msgid "Track table" msgstr "Suivre la table" -#: db_tracking.php:200 libraries/messages.inc.php:1121 +#: db_tracking.php:200 libraries/messages.inc.php:1117 msgid "Database Log" msgstr "Journal de la base de données" -#: export.php:62 libraries/messages.inc.php:312 +#: export.php:62 libraries/messages.inc.php:308 msgid "Selected export type has to be saved in file!" msgstr "Ce choix d'exportation doit être sauvegardé dans un fichier!" -#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:567 +#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:563 #, php-format msgid "Insufficient space to save the file %s." msgstr "Espace-disque insuffisant pour enregistrer le fichier %s." -#: export.php:294 libraries/messages.inc.php:324 +#: export.php:294 libraries/messages.inc.php:320 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -860,19 +860,19 @@ msgstr "" "Le fichier %s existe déjà sur le serveur, veuillez changer le nom, ou cocher " "l'option Écraser" -#: export.php:298 export.php:302 libraries/messages.inc.php:562 +#: export.php:298 export.php:302 libraries/messages.inc.php:558 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "" "Le serveur web n'a pas les permissions nécessaires pour enregistrer le " "fichier %s." -#: export.php:629 libraries/messages.inc.php:276 +#: export.php:629 libraries/messages.inc.php:272 #, php-format msgid "Dump has been saved to file %s." msgstr "Le fichier d'exportation a été sauvegardé sous %s." -#: import.php:60 libraries/messages.inc.php:1202 +#: import.php:60 libraries/messages.inc.php:1198 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation%" @@ -883,14 +883,14 @@ msgstr "" "cette limite." #: import.php:279 import.php:332 libraries/File.class.php:849 -#: libraries/File.class.php:961 libraries/messages.inc.php:325 +#: libraries/File.class.php:961 libraries/messages.inc.php:321 msgid "File could not be read" msgstr "Le fichier n'a pu être lu" #: import.php:287 import.php:296 import.php:315 import.php:324 #: libraries/File.class.php:1031 libraries/File.class.php:1039 #: libraries/File.class.php:1055 libraries/File.class.php:1063 -#: libraries/messages.inc.php:1189 +#: libraries/messages.inc.php:1185 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -899,7 +899,7 @@ msgstr "" "Vous avez tenté d'importer un fichier dont le mode de compression (%s) n'est " "pas supporté par votre configuration PHP ou est désactivé dans celle-ci." -#: import.php:337 libraries/messages.inc.php:547 +#: import.php:337 libraries/messages.inc.php:543 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -911,31 +911,31 @@ msgstr "" "html#faq1_16@Documentation]FAQ 1.16[/a]" #: import.php:372 libraries/display_import.lib.php:24 -#: libraries/messages.inc.php:125 +#: libraries/messages.inc.php:121 msgid "Could not load import plugins, please check your installation!" msgstr "" "Chargement impossible des greffons d'importation, veuillez vérifier votre " "installation!" -#: import.php:397 libraries/messages.inc.php:102 +#: import.php:397 libraries/messages.inc.php:98 msgid "The bookmark has been deleted." msgstr "Le signet a été effacé." -#: import.php:401 libraries/messages.inc.php:879 +#: import.php:401 libraries/messages.inc.php:875 msgid "Showing bookmark" msgstr "Affichage du signet" -#: import.php:403 libraries/messages.inc.php:101 +#: import.php:403 libraries/messages.inc.php:97 #, php-format msgid "Bookmark %s created" msgstr "Signet %s créé" -#: import.php:409 import.php:415 libraries/messages.inc.php:407 +#: import.php:409 import.php:415 libraries/messages.inc.php:403 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "L'importation s'est terminée avec succès, %d requêtes exécutées." -#: import.php:424 libraries/messages.inc.php:1107 +#: import.php:424 libraries/messages.inc.php:1103 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -943,13 +943,13 @@ msgstr "" "La limite de temps a été atteinte; si vous voulez terminer l'importation, " "soumettez à nouveau le même fichier et l'importation continuera." -#: index.php:190 libraries/messages.inc.php:553 +#: index.php:190 libraries/messages.inc.php:549 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" "L'utilisation de phpMyAdmin est plus aisée avec un navigateur supportant " "les cadres." -#: js/messages.php:25 libraries/messages.inc.php:155 +#: js/messages.php:25 libraries/messages.inc.php:151 #: server_synchronize.php:345 server_synchronize.php:357 #: server_synchronize.php:373 server_synchronize.php:380 #: server_synchronize.php:739 server_synchronize.php:767 @@ -957,118 +957,118 @@ msgstr "" msgid "Click to select" msgstr "Cliquer pour sélectionner" -#: js/messages.php:26 libraries/messages.inc.php:156 +#: js/messages.php:26 libraries/messages.inc.php:152 msgid "Click to unselect" msgstr "Cliquer pour désélectionner" #: js/messages.php:27 libraries/import.lib.php:103 -#: libraries/messages.inc.php:550 sql.php:89 +#: libraries/messages.inc.php:546 sql.php:89 msgid "\"DROP DATABASE\" statements are disabled." msgstr "La commande «DROP DATABASE» est désactivée." -#: js/messages.php:30 libraries/messages.inc.php:270 +#: js/messages.php:30 libraries/messages.inc.php:266 #: libraries/mult_submits.inc.php:258 sql.php:188 msgid "Do you really want to " msgstr "Voulez-vous vraiment effectuer " -#: js/messages.php:31 libraries/messages.inc.php:271 +#: js/messages.php:31 libraries/messages.inc.php:267 #: libraries/mult_submits.inc.php:258 sql.php:172 msgid "You are about to DESTROY a complete database!" msgstr "Vous êtes sur le point de DÉTRUIRE une base de données!" -#: js/messages.php:34 libraries/messages.inc.php:94 +#: js/messages.php:34 libraries/messages.inc.php:90 msgid "You are about to DISABLE a BLOB Repository!" msgstr "Vous allez DÉSACTIVER un dépôt BLOB!" -#: js/messages.php:35 libraries/messages.inc.php:91 +#: js/messages.php:35 libraries/messages.inc.php:87 #, php-format msgid "Are you sure you want to disable all BLOB references for database %s?" msgstr "" "Êtes-vous certain de vouloir désactiver toutes les références BLOB pour la " "base %s?" -#: js/messages.php:38 libraries/messages.inc.php:342 +#: js/messages.php:38 libraries/messages.inc.php:338 msgid "Missing value in the form!" msgstr "Formulaire incomplet !" -#: js/messages.php:39 libraries/messages.inc.php:570 +#: js/messages.php:39 libraries/messages.inc.php:566 msgid "This is not a number!" msgstr "Ce n'est pas un nombre !" -#: js/messages.php:42 libraries/messages.inc.php:380 +#: js/messages.php:42 libraries/messages.inc.php:376 msgid "The host name is empty!" msgstr "Le nom de serveur est vide" -#: js/messages.php:43 libraries/messages.inc.php:1208 +#: js/messages.php:43 libraries/messages.inc.php:1204 msgid "The user name is empty!" msgstr "Le nom d'utilisateur est vide" -#: js/messages.php:44 libraries/messages.inc.php:607 +#: js/messages.php:44 libraries/messages.inc.php:603 #: server_privileges.php:1197 user_password.php:70 msgid "The password is empty!" msgstr "Le mot de passe est vide" -#: js/messages.php:45 libraries/messages.inc.php:609 +#: js/messages.php:45 libraries/messages.inc.php:605 #: server_privileges.php:1195 user_password.php:73 msgid "The passwords aren't the same!" msgstr "Les mots de passe doivent être identiques" -#: js/messages.php:49 libraries/messages.inc.php:123 pmd_general.php:342 +#: js/messages.php:49 libraries/messages.inc.php:119 pmd_general.php:342 #: pmd_general.php:379 msgid "Cancel" msgstr "Annuler" -#: js/messages.php:52 libraries/messages.inc.php:514 +#: js/messages.php:52 libraries/messages.inc.php:510 msgid "Modifications have been saved" msgstr "Les modifications ont été sauvegardées." -#: js/messages.php:53 libraries/messages.inc.php:741 +#: js/messages.php:53 libraries/messages.inc.php:737 msgid "Relation deleted" msgstr "Relation supprimée" -#: js/messages.php:54 libraries/messages.inc.php:340 +#: js/messages.php:54 libraries/messages.inc.php:336 msgid "FOREIGN KEY relation added" msgstr "Relation de type FOREIGN KEY ajoutée" -#: js/messages.php:55 libraries/messages.inc.php:434 +#: js/messages.php:55 libraries/messages.inc.php:430 msgid "Internal relation added" msgstr "Relation interne ajoutée" -#: js/messages.php:56 libraries/messages.inc.php:299 +#: js/messages.php:56 libraries/messages.inc.php:295 msgid "Error: Relation not added." msgstr "Erreur: relation non ajoutée." -#: js/messages.php:57 libraries/messages.inc.php:300 +#: js/messages.php:57 libraries/messages.inc.php:296 msgid "Error: relation already exists." msgstr "Erreur: relation déjà existante." -#: js/messages.php:58 libraries/messages.inc.php:302 +#: js/messages.php:58 libraries/messages.inc.php:298 msgid "Error saving coordinates for Designer." msgstr "Erreur lors de la sauvegarde des coordonnées Concepteur." -#: js/messages.php:59 libraries/messages.inc.php:351 +#: js/messages.php:59 libraries/messages.inc.php:347 #: libraries/relation.lib.php:107 msgid "General relation features" msgstr "Fonctions relationnelles" -#: js/messages.php:59 libraries/messages.inc.php:260 +#: js/messages.php:59 libraries/messages.inc.php:256 #: libraries/relation.lib.php:101 libraries/relation.lib.php:108 msgid "Disabled" msgstr "désactivé" -#: js/messages.php:60 libraries/messages.inc.php:850 +#: js/messages.php:60 libraries/messages.inc.php:846 msgid "Select referenced key" msgstr "Sélectionnez la clé référencée" -#: js/messages.php:61 libraries/messages.inc.php:848 +#: js/messages.php:61 libraries/messages.inc.php:844 msgid "Select Foreign Key" msgstr "Choisissez la clé étrangère" -#: js/messages.php:62 libraries/messages.inc.php:653 +#: js/messages.php:62 libraries/messages.inc.php:649 msgid "Please select the primary key or a unique key" msgstr "Veuillez choisir la clé primaire ou un index unique" -#: js/messages.php:63 libraries/messages.inc.php:142 pmd_general.php:77 +#: js/messages.php:63 libraries/messages.inc.php:138 pmd_general.php:77 #: tbl_relation.php:548 msgid "Choose field to display" msgstr "Champ descriptif" @@ -1084,9 +1084,9 @@ msgid "Prev" msgstr "Précédent" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2332 -#: libraries/common.lib.php:2335 libraries/display_tbl.lib.php:338 -#: libraries/messages.inc.php:543 server_binlog.php:205 server_binlog.php:207 +#: js/messages.php:77 libraries/common.lib.php:2344 +#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: libraries/messages.inc.php:539 server_binlog.php:205 server_binlog.php:207 #: tbl_printview.php:424 tbl_structure.php:802 msgid "Next" msgstr "Suivant" @@ -1145,63 +1145,63 @@ msgid "December" msgstr "Décembre" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1543 +#: js/messages.php:97 libraries/common.lib.php:1555 msgid "Jan" msgstr "Janvier" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1545 +#: js/messages.php:99 libraries/common.lib.php:1557 msgid "Feb" msgstr "Février" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1547 +#: js/messages.php:101 libraries/common.lib.php:1559 msgid "Mar" msgstr "Mars" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1549 +#: js/messages.php:103 libraries/common.lib.php:1561 msgid "Apr" msgstr "Avril" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1551 +#: js/messages.php:105 libraries/common.lib.php:1563 msgctxt "Short month name" msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1553 +#: js/messages.php:107 libraries/common.lib.php:1565 msgid "Jun" msgstr "Juin" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1555 +#: js/messages.php:109 libraries/common.lib.php:1567 msgid "Jul" msgstr "Juillet" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1557 +#: js/messages.php:111 libraries/common.lib.php:1569 msgid "Aug" msgstr "Août" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1559 +#: js/messages.php:113 libraries/common.lib.php:1571 msgid "Sep" msgstr "Septembre" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1561 +#: js/messages.php:115 libraries/common.lib.php:1573 msgid "Oct" msgstr "Octobre" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1563 +#: js/messages.php:117 libraries/common.lib.php:1575 msgid "Nov" msgstr "Novembre" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1565 +#: js/messages.php:119 libraries/common.lib.php:1577 msgid "Dec" msgstr "Décembre" @@ -1234,37 +1234,37 @@ msgid "Saturday" msgstr "Samedi" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1568 +#: js/messages.php:132 libraries/common.lib.php:1580 msgid "Sun" msgstr "Dim" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1570 +#: js/messages.php:134 libraries/common.lib.php:1582 msgid "Mon" msgstr "Lun" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1572 +#: js/messages.php:136 libraries/common.lib.php:1584 msgid "Tue" msgstr "Mar" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1574 +#: js/messages.php:138 libraries/common.lib.php:1586 msgid "Wed" msgstr "Mer" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1576 +#: js/messages.php:140 libraries/common.lib.php:1588 msgid "Thu" msgstr "Jeu" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1578 +#: js/messages.php:142 libraries/common.lib.php:1590 msgid "Fri" msgstr "Ven" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1580 +#: js/messages.php:144 libraries/common.lib.php:1592 msgid "Sat" msgstr "Sam" @@ -1320,23 +1320,23 @@ msgstr "Minute" msgid "Second" msgstr "Seconde" -#: libraries/Config.class.php:1015 libraries/messages.inc.php:338 +#: libraries/Config.class.php:1015 libraries/messages.inc.php:334 msgid "Font size" msgstr "Taille du texte" #: libraries/File.class.php:344 libraries/File.class.php:432 #: libraries/File.class.php:569 libraries/File.class.php:708 -#: libraries/messages.inc.php:1201 +#: libraries/messages.inc.php:1197 msgid "Unknown error in file upload." msgstr "Erreur inconnue durant le téléchargement." -#: libraries/File.class.php:414 libraries/messages.inc.php:1198 +#: libraries/File.class.php:414 libraries/messages.inc.php:1194 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "La taille du fichier téléchargé dépasse la limite permise par la directive " "upload_max_filesize de php.ini." -#: libraries/File.class.php:417 libraries/messages.inc.php:1197 +#: libraries/File.class.php:417 libraries/messages.inc.php:1193 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -1344,23 +1344,23 @@ msgstr "" "La taille du fichier téléchargé dépasse la limite permise par la directive " "MAX_FILE_SIZE présente dans le formulaire HTML." -#: libraries/File.class.php:420 libraries/messages.inc.php:1200 +#: libraries/File.class.php:420 libraries/messages.inc.php:1196 msgid "The uploaded file was only partially uploaded." msgstr "Le fichier n'a été que partiellement téléchargé." -#: libraries/File.class.php:423 libraries/messages.inc.php:1199 +#: libraries/File.class.php:423 libraries/messages.inc.php:1195 msgid "Missing a temporary folder." msgstr "Répertoire temporaire manquant." -#: libraries/File.class.php:426 libraries/messages.inc.php:1195 +#: libraries/File.class.php:426 libraries/messages.inc.php:1191 msgid "Failed to write file to disk." msgstr "Erreur lors de l'écriture du fichier sur disque." -#: libraries/File.class.php:429 libraries/messages.inc.php:1196 +#: libraries/File.class.php:429 libraries/messages.inc.php:1192 msgid "File upload stopped by extension." msgstr "Téléchargement arrêté par l'extension." -#: libraries/File.class.php:908 libraries/messages.inc.php:319 +#: libraries/File.class.php:908 libraries/messages.inc.php:315 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -1368,34 +1368,34 @@ msgstr "" "Erreur lors du déplacement du fichier téléchargé, voir [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" -#: libraries/Index.class.php:428 libraries/messages.inc.php:554 +#: libraries/Index.class.php:428 libraries/messages.inc.php:550 #: tbl_relation.php:529 msgid "No index defined!" msgstr "Aucun index n'est défini!" -#: libraries/Index.class.php:433 libraries/messages.inc.php:411 +#: libraries/Index.class.php:433 libraries/messages.inc.php:407 #: server_databases.php:132 tbl_tracking.php:316 msgid "Indexes" msgstr "Index" -#: libraries/Index.class.php:444 libraries/messages.inc.php:1186 +#: libraries/Index.class.php:444 libraries/messages.inc.php:1182 #: 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:475 tbl_tracking.php:322 msgid "Unique" msgstr "Unique" -#: libraries/Index.class.php:445 libraries/messages.inc.php:596 +#: libraries/Index.class.php:445 libraries/messages.inc.php:592 #: tbl_tracking.php:323 msgid "Packed" msgstr "Compressé" -#: libraries/Index.class.php:447 libraries/messages.inc.php:131 +#: libraries/Index.class.php:447 libraries/messages.inc.php:127 #: tbl_tracking.php:325 msgid "Cardinality" msgstr "Cardinalité" -#: libraries/Index.class.php:450 libraries/messages.inc.php:162 +#: libraries/Index.class.php:450 libraries/messages.inc.php:158 #: tbl_tracking.php:279 tbl_tracking.php:328 msgid "Comment" msgstr "Commentaire" @@ -1403,22 +1403,22 @@ msgstr "Commentaire" #: libraries/Index.class.php:466 libraries/common.lib.php:616 #: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:280 pdf_pages.php:280 +#: libraries/messages.inc.php:276 pdf_pages.php:280 #: setup/frames/index.inc.php:124 setup/lib/messages.inc.php:352 #: tbl_row_action.php:69 msgid "Edit" msgstr "Modifier" -#: libraries/Index.class.php:472 libraries/messages.inc.php:666 +#: libraries/Index.class.php:472 libraries/messages.inc.php:662 msgid "The primary key has been dropped" msgstr "La clé primaire a été effacée" -#: libraries/Index.class.php:476 libraries/messages.inc.php:413 +#: libraries/Index.class.php:476 libraries/messages.inc.php:409 #, php-format msgid "Index %s has been dropped" msgstr "L'index %s a été effacé" -#: libraries/Index.class.php:576 libraries/messages.inc.php:412 +#: libraries/Index.class.php:576 libraries/messages.inc.php:408 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -1427,7 +1427,7 @@ 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/messages.inc.php:218 +#: libraries/List_Database.class.php:431 libraries/messages.inc.php:214 #: libraries/server_links.inc.php:41 server_databases.php:88 #: server_privileges.php:1621 setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" @@ -1454,87 +1454,87 @@ msgid_plural "%1$d rows inserted." msgstr[0] "%1$d enregistrement inséré." msgstr[1] "%1$d enregistrements insérés." -#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:549 +#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:545 msgid "" "There is no detailed status information available for this storage engine." msgstr "" "Aucune information détaillée sur l'état n'est disponible pour ce moteur de " "stockage." -#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:291 +#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:287 #, php-format msgid "%s is available on this MySQL server." msgstr "%s est disponible sur ce serveur MySQL." -#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:292 +#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:288 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s a été désactivé sur ce serveur MySQL." -#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:294 +#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:290 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "Ce serveur MySQL ne supporte pas le moteur de stockage %s." -#: libraries/Table.class.php:1019 libraries/messages.inc.php:443 +#: libraries/Table.class.php:1019 libraries/messages.inc.php:439 msgid "Invalid database" msgstr "Nom de base de données invalide" -#: libraries/Table.class.php:1033 libraries/messages.inc.php:450 +#: libraries/Table.class.php:1033 libraries/messages.inc.php:446 #: tbl_get_field.php:26 msgid "Invalid table name" msgstr "Nom de table invalide" -#: libraries/Table.class.php:1048 libraries/messages.inc.php:301 +#: libraries/Table.class.php:1048 libraries/messages.inc.php:297 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "Erreur lors du renommage de %1$s en %2$s" -#: libraries/Table.class.php:1132 libraries/messages.inc.php:754 +#: libraries/Table.class.php:1132 libraries/messages.inc.php:750 #, php-format msgid "Table %s has been renamed to %s" msgstr "La table %s se nomme maintenant %s" -#: libraries/Theme.class.php:162 libraries/messages.inc.php:1099 +#: libraries/Theme.class.php:162 libraries/messages.inc.php:1095 #, php-format msgid "No valid image path for theme %s found!" msgstr "Chemin des images inexistant pour le thème %s!" -#: libraries/Theme.class.php:384 libraries/messages.inc.php:1097 +#: libraries/Theme.class.php:384 libraries/messages.inc.php:1093 msgid "No preview available." msgstr "Prévisualisation non disponible." -#: libraries/Theme.class.php:387 libraries/messages.inc.php:1089 +#: libraries/Theme.class.php:387 libraries/messages.inc.php:1085 msgid "take it" msgstr "utiliser celui-ci" -#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1096 +#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1092 #, php-format msgid "Default theme %s not found!" msgstr "Thème par défaut %s inexistant!" -#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1098 +#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1094 #, php-format msgid "Theme %s not found!" msgstr "Thème %s inexistant!" -#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1100 +#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1096 #, php-format msgid "Theme path not found for theme %s!" msgstr "Chemin non trouvé pour le thème %s!" -#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1101 +#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1097 #: test/theme.php:161 themes.php:21 themes.php:41 msgid "Theme / Style" msgstr "Thème / Style" -#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:172 +#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:168 msgid "Cannot connect: invalid settings." msgstr "Connexion impossible: réglages incorrects." #: libraries/auth/config.auth.lib.php:92 #: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65 -#: libraries/messages.inc.php:1238 test/theme.php:152 +#: libraries/messages.inc.php:1234 test/theme.php:152 #, php-format msgid "Welcome to %s" msgstr "Bienvenue sur %s" @@ -1560,47 +1560,47 @@ msgstr "" "dans votre configuration et vous assurer qu'elles correspondent aux " "informations fournies par l'administrateur du serveur MySQL." -#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:488 +#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:484 msgid "Log in" msgstr "Connexion" #: libraries/auth/cookie.auth.lib.php:246 -#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:659 +#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:655 #: libraries/navigation_header.inc.php:93 #: libraries/navigation_header.inc.php:95 msgid "phpMyAdmin documentation" msgstr "Documentation de phpMyAdmin" #: libraries/auth/cookie.auth.lib.php:258 -#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:492 +#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:488 msgid "You can enter hostname/IP address and port separated by space." msgstr "" "Vous pouvez entrer le nom du serveur ou son adresse IP, ainsi que le port " "séparé par un espace." -#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:493 +#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:489 msgid "Server:" msgstr "Serveur" -#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:494 +#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:490 msgid "Username:" msgstr "Utilisateur :" -#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:491 +#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:487 msgid "Password:" msgstr "Mot de passe :" -#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:854 +#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:850 msgid "Server Choice" msgstr "Choix du serveur" #: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 -#: libraries/messages.inc.php:177 +#: libraries/messages.inc.php:173 msgid "Cookies must be enabled past this point." msgstr "Vous devez accepter les cookies pour poursuivre." #: libraries/auth/cookie.auth.lib.php:671 -#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:489 +#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:485 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" @@ -1608,60 +1608,60 @@ msgstr "" "AllowNoPassword)" #: libraries/auth/cookie.auth.lib.php:675 -#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:544 +#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:540 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "Aucune activité depuis %s secondes ou plus, veuillez vous reconnecter" #: libraries/auth/cookie.auth.lib.php:685 #: libraries/auth/cookie.auth.lib.php:687 -#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:126 +#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:122 msgid "Cannot log in to the MySQL server" msgstr "Connexion au serveur MySQL non permise" -#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1245 +#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1241 msgid "Wrong username/password. Access denied." msgstr "Erreur d'utilisateur/mot de passe. Accès refusé" #: libraries/auth/swekey/swekey.auth.lib.php:118 -#: libraries/messages.inc.php:1057 +#: libraries/messages.inc.php:1053 #, php-format msgid "File %s does not contain any key id" msgstr "Le fichier %s ne contient pas d'identifiant de clé" #: libraries/auth/swekey/swekey.auth.lib.php:157 #: libraries/auth/swekey/swekey.auth.lib.php:180 -#: libraries/messages.inc.php:1056 +#: libraries/messages.inc.php:1052 msgid "Hardware authentication failed" msgstr "L'authentification matérielle a échoué" #: libraries/auth/swekey/swekey.auth.lib.php:166 -#: libraries/messages.inc.php:1058 +#: libraries/messages.inc.php:1054 msgid "No valid authentication key plugged" msgstr "La clé d'authentification n'est pas branchée" #: libraries/auth/swekey/swekey.auth.lib.php:202 -#: libraries/messages.inc.php:1055 +#: libraries/messages.inc.php:1051 msgid "Authenticating..." msgstr "Authentification en cours..." -#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1230 +#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1226 msgid "View image" msgstr "Afficher l'image" -#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:652 +#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:648 msgid "Play audio" msgstr "Lecture audio" -#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1232 +#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1228 msgid "View video" msgstr "Lecture vidéo" -#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:269 +#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:265 msgid "Download file" msgstr "Télécharger" -#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:128 +#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:124 msgid "" "Couldn't load the iconv or recode extension needed for charset conversion. " "Either configure PHP to enable these extensions or disable charset " @@ -1673,7 +1673,7 @@ msgstr "" #: libraries/charset_conversion.lib.php:79 #: libraries/charset_conversion.lib.php:90 -#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:130 +#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:126 msgid "" "Couldn't use the iconv, libiconv, or recode_string functions, although the " "necessary extensions appear to be loaded. Check your PHP configuration." @@ -1682,7 +1682,7 @@ msgstr "" "ces extensions semblent chargées. Veuillez vérifier votre configuration de " "PHP." -#: libraries/common.inc.php:583 libraries/messages.inc.php:170 +#: libraries/common.inc.php:583 libraries/messages.inc.php:166 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!" @@ -1716,7 +1716,7 @@ msgstr "" msgid "Invalid server index: %s" msgstr "Indice de serveur invalide: %s" -#: libraries/common.inc.php:636 libraries/messages.inc.php:448 +#: libraries/common.inc.php:636 libraries/messages.inc.php:444 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" @@ -1724,17 +1724,17 @@ msgstr "" "configuration." #: libraries/common.inc.php:645 libraries/header.inc.php:96 -#: libraries/messages.inc.php:856 libraries/select_server.lib.php:41 +#: libraries/messages.inc.php:852 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/messages.inc.php:437 +#: libraries/common.inc.php:823 libraries/messages.inc.php:433 msgid "Invalid authentication method set in configuration:" msgstr "" "Le fichier de configuration contient un type d'authentification invalide :" -#: libraries/common.lib.php:147 libraries/messages.inc.php:499 +#: libraries/common.lib.php:147 libraries/messages.inc.php:495 #, php-format msgid "Max: %s%s" msgstr "Taille maximum: %s%s" @@ -1754,7 +1754,7 @@ msgstr "fr" #: libraries/common.lib.php:428 libraries/common.lib.php:430 #: libraries/common.lib.php:432 libraries/common.lib.php:448 #: libraries/common.lib.php:450 libraries/dbg/setup.php:25 -#: libraries/display_export.lib.php:164 libraries/messages.inc.php:267 +#: libraries/display_export.lib.php:164 libraries/messages.inc.php:263 #: libraries/relation.lib.php:97 libraries/sql_query_form.lib.php:451 #: libraries/sql_query_form.lib.php:454 main.php:229 pdf_pages.php:37 #: pdf_pages.php:43 pdf_pages.php:49 pdf_pages.php:54 @@ -1764,55 +1764,55 @@ msgstr "Documentation" #: libraries/common.lib.php:581 libraries/core.lib.php:234 #: libraries/core.lib.php:263 libraries/import.lib.php:134 -#: libraries/messages.inc.php:297 pdf_schema.php:32 pdf_schema.php:232 +#: libraries/messages.inc.php:293 pdf_schema.php:32 pdf_schema.php:232 #: tbl_change.php:1027 tbl_operations.php:213 tbl_relation.php:290 #: view_operations.php:62 msgid "Error" msgstr "Erreur" #: libraries/common.lib.php:595 libraries/header_printview.inc.php:61 -#: libraries/messages.inc.php:1023 server_processlist.php:60 +#: libraries/messages.inc.php:1019 server_processlist.php:60 #: server_status.php:247 msgid "SQL query" msgstr "requête SQL" -#: libraries/common.lib.php:634 libraries/messages.inc.php:538 +#: libraries/common.lib.php:634 libraries/messages.inc.php:534 msgid "MySQL said: " msgstr "MySQL a répondu: " -#: libraries/common.lib.php:667 libraries/messages.inc.php:76 +#: libraries/common.lib.php:667 libraries/messages.inc.php:72 #: pdf_schema.php:241 user_password.php:115 msgid "Back" msgstr "Retour" -#: libraries/common.lib.php:1177 libraries/messages.inc.php:309 +#: libraries/common.lib.php:1177 libraries/messages.inc.php:305 #: setup/lib/messages.inc.php:353 msgid "Explain SQL" msgstr "Expliquer SQL" -#: libraries/common.lib.php:1180 libraries/messages.inc.php:551 +#: libraries/common.lib.php:1180 libraries/messages.inc.php:547 msgid "Skip Explain SQL" msgstr "Ne pas expliquer SQL" -#: libraries/common.lib.php:1212 libraries/messages.inc.php:563 +#: libraries/common.lib.php:1212 libraries/messages.inc.php:559 msgid "Without PHP Code" msgstr "Sans source PHP" -#: libraries/common.lib.php:1215 libraries/messages.inc.php:649 +#: libraries/common.lib.php:1215 libraries/messages.inc.php:645 #: setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "Créer source PHP" -#: libraries/common.lib.php:1233 libraries/messages.inc.php:737 +#: libraries/common.lib.php:1233 libraries/messages.inc.php:733 #: server_status.php:341 setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "Actualiser" -#: libraries/common.lib.php:1242 libraries/messages.inc.php:575 +#: libraries/common.lib.php:1242 libraries/messages.inc.php:571 msgid "Skip Validate SQL" msgstr "Ne pas valider SQL" -#: libraries/common.lib.php:1245 libraries/messages.inc.php:1220 +#: libraries/common.lib.php:1245 libraries/messages.inc.php:1216 #: setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "Valider SQL" @@ -1826,11 +1826,11 @@ msgid "Inline" msgstr "En ligne" #: libraries/common.lib.php:1332 libraries/common.lib.php:1347 -#: libraries/messages.inc.php:713 +#: libraries/messages.inc.php:709 msgid "Profiling" msgstr "Profilage" -#: libraries/common.lib.php:1351 libraries/messages.inc.php:1108 +#: libraries/common.lib.php:1351 libraries/messages.inc.php:1104 #: libraries/tbl_triggers.lib.php:28 server_processlist.php:58 msgid "Time" msgstr "Durée" @@ -1864,46 +1864,56 @@ msgstr "Pio" msgid "EiB" msgstr "Eio" +#. l10n: Thousands separator +#: libraries/common.lib.php:1417 +msgid "," +msgstr " " + +#. l10n: Decimal separator +#: libraries/common.lib.php:1419 +msgid "." +msgstr "," + #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1584 +#: libraries/common.lib.php:1596 #: libraries/transformations/text_plain__dateformat.inc.php:28 msgid "%B %d, %Y at %I:%M %p" msgstr "%A %d %B %Y à %H:%M" -#: libraries/common.lib.php:1886 +#: libraries/common.lib.php:1898 #, 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:2301 libraries/common.lib.php:2304 -#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:664 +#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:660 #: server_status.php:608 msgid "Begin" msgstr "Début" -#: libraries/common.lib.php:2302 libraries/common.lib.php:2305 -#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:665 +#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:661 #: server_binlog.php:168 server_binlog.php:170 msgid "Previous" msgstr "Précédent" -#: libraries/common.lib.php:2333 libraries/common.lib.php:2336 -#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:289 +#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:285 msgid "End" msgstr "Fin" -#: libraries/common.lib.php:2409 libraries/messages.inc.php:455 +#: libraries/common.lib.php:2421 libraries/messages.inc.php:451 #, php-format msgid "Jump to database "%s"." msgstr "Aller à la base de données "%s"." -#: libraries/common.lib.php:2429 libraries/messages.inc.php:461 +#: libraries/common.lib.php:2441 libraries/messages.inc.php:457 #, 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/core.lib.php:286 libraries/dbg/setup.php:22 -#: libraries/messages.inc.php:127 +#: libraries/messages.inc.php:123 #, php-format msgid "" "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " @@ -1913,74 +1923,74 @@ msgstr "" "[/em][/a]. Veuillez vérifier votre configuration de PHP." #: libraries/db_events.inc.php:20 libraries/db_events.inc.php:22 -#: libraries/export/sql.php:415 libraries/messages.inc.php:306 +#: libraries/export/sql.php:415 libraries/messages.inc.php:302 msgid "Events" msgstr "Événements" #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 -#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:541 +#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:537 #: libraries/tbl_triggers.lib.php:27 setup/frames/index.inc.php:112 msgid "Name" msgstr "Nom" -#: libraries/db_links.inc.php:45 libraries/messages.inc.php:216 +#: libraries/db_links.inc.php:45 libraries/messages.inc.php:212 #, php-format msgid "Database %s has been dropped." msgstr "La base de données %s a été effacée." #: libraries/db_links.inc.php:57 libraries/db_links.inc.php:58 -#: libraries/db_links.inc.php:59 libraries/messages.inc.php:234 +#: libraries/db_links.inc.php:59 libraries/messages.inc.php:230 msgid "Database seems to be empty!" msgstr "La base de données semble vide!" -#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1025 +#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1021 #: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60 #: querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1152 +#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1148 #: libraries/tbl_links.inc.php:69 msgid "Tracking" msgstr "Suivi" -#: libraries/db_links.inc.php:86 libraries/messages.inc.php:719 +#: libraries/db_links.inc.php:86 libraries/messages.inc.php:715 msgid "Query" msgstr "Requête" -#: libraries/db_links.inc.php:91 libraries/messages.inc.php:253 +#: libraries/db_links.inc.php:91 libraries/messages.inc.php:249 msgid "Designer" msgstr "Concepteur" -#: libraries/db_links.inc.php:98 libraries/messages.inc.php:397 +#: libraries/db_links.inc.php:98 libraries/messages.inc.php:393 #: libraries/server_links.inc.php:88 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:104 libraries/messages.inc.php:587 +#: libraries/db_links.inc.php:104 libraries/messages.inc.php:583 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" msgstr "Opérations" -#: libraries/db_links.inc.php:111 libraries/messages.inc.php:709 +#: libraries/db_links.inc.php:111 libraries/messages.inc.php:705 #: libraries/server_links.inc.php:66 server_privileges.php:72 #: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117 msgid "Privileges" msgstr "Privilèges" #: libraries/db_routines.inc.php:30 libraries/db_routines.inc.php:32 -#: libraries/messages.inc.php:812 +#: libraries/messages.inc.php:808 msgid "Routines" msgstr "Procédures stockées" -#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:811 +#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:807 msgid "Return type" msgstr "Type retourné" #: libraries/db_structure.lib.php:57 libraries/display_tbl.lib.php:1848 -#: libraries/messages.inc.php:65 +#: libraries/messages.inc.php:61 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -1988,45 +1998,45 @@ msgstr "" "Peut être approximatif. Voir [a@./Documentation.html#faq3_11@Documentation]" "FAQ 3.11[/a]" -#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:593 +#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:589 #: server_databases.php:142 tbl_printview.php:336 tbl_structure.php:683 msgid "Overhead" msgstr "Perte" #: libraries/dbi/mysql.dbi.lib.php:112 libraries/dbi/mysqli.dbi.lib.php:124 -#: libraries/messages.inc.php:176 +#: libraries/messages.inc.php:172 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "La connexion au controluser tel que défini dans votre configuration a échoué." #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 -#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:855 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:851 msgid "The server is not responding" msgstr "Le serveur ne répond pas." #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:1010 +#: libraries/messages.inc.php:1006 msgid "(or the local MySQL server's socket is not correctly configured)" 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 libraries/messages.inc.php:255 +#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:251 #: tbl_structure.php:609 msgid "Details..." msgstr "Détails..." -#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:143 +#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:139 #: main.php:91 user_password.php:111 user_password.php:129 msgid "Change password" msgstr "Modifier le mot de passe" -#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:561 +#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:557 #: libraries/replication_gui.lib.php:341 server_privileges.php:768 msgid "No Password" msgstr "aucun mot de passe" -#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:610 +#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:606 #: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60 #: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335 #: libraries/replication_gui.lib.php:345 server_privileges.php:757 @@ -2035,13 +2045,13 @@ msgstr "aucun mot de passe" msgid "Password" msgstr "Mot de passe" -#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:806 +#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:802 #: libraries/replication_gui.lib.php:349 libraries/replication_gui.lib.php:352 #: server_privileges.php:776 server_privileges.php:779 msgid "Re-type" msgstr "Entrer à nouveau" -#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:608 +#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:604 msgid "Password Hashing" msgstr "Hachage du mot de passe" @@ -2049,89 +2059,89 @@ msgstr "Hachage du mot de passe" msgid "MySQL 4.0 compatible" msgstr "compatible MySQL 4.0" -#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:353 +#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:349 #: libraries/replication_gui.lib.php:356 server_privileges.php:783 msgid "Generate Password" msgstr "Générer un mot de passe" -#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:352 +#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:348 #: libraries/replication_gui.lib.php:359 server_privileges.php:786 msgid "Generate" msgstr "Générer" #: libraries/display_create_database.lib.php:22 -#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:189 +#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:185 msgid "Create new database" msgstr "Créer une base de données" -#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:185 +#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:181 msgid "Create" msgstr "Créer" -#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:564 +#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:560 #: server_privileges.php:74 server_privileges.php:1388 #: server_replication.php:35 msgid "No Privileges" msgstr "aucun privilège" -#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:445 +#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:441 msgid "Table must have at least one field." msgstr "La table doit comporter au moins un champ" -#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:190 +#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:186 #, php-format msgid "Create table on database %s" msgstr "Créer une nouvelle table sur la base %s" -#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:577 +#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:573 msgid "Number of fields" msgstr "Nombre de champs" -#: libraries/display_export.lib.php:42 libraries/messages.inc.php:124 +#: libraries/display_export.lib.php:42 libraries/messages.inc.php:120 msgid "Could not load export plugins, please check your installation!" msgstr "Erreur lors du chargement des modules d'exportation!" -#: libraries/display_export.lib.php:107 libraries/messages.inc.php:277 +#: libraries/display_export.lib.php:107 libraries/messages.inc.php:273 #, php-format msgid "Dump %s row(s) starting at record # %s" msgstr "Exporter %s enregistrement(s) à partir du rang n° %s" -#: libraries/display_export.lib.php:115 libraries/messages.inc.php:274 +#: libraries/display_export.lib.php:115 libraries/messages.inc.php:270 msgid "Dump all rows" msgstr "Exporter tous les enregistrements" -#: libraries/display_export.lib.php:125 libraries/messages.inc.php:852 +#: libraries/display_export.lib.php:125 libraries/messages.inc.php:848 #: setup/lib/messages.inc.php:82 msgid "Save as file" msgstr "Transmettre" -#: libraries/display_export.lib.php:134 libraries/messages.inc.php:828 +#: libraries/display_export.lib.php:134 libraries/messages.inc.php:824 #, php-format msgid "Save on server in %s directory" msgstr "Sauvegarder sur le serveur dans le répertoire %s" -#: libraries/display_export.lib.php:142 libraries/messages.inc.php:594 +#: libraries/display_export.lib.php:142 libraries/messages.inc.php:590 #: setup/lib/messages.inc.php:90 msgid "Overwrite existing file(s)" msgstr "Écraser les fichiers existants" -#: libraries/display_export.lib.php:148 libraries/messages.inc.php:330 +#: libraries/display_export.lib.php:148 libraries/messages.inc.php:326 msgid "File name template" msgstr "Modèle de nom de fichier" -#: libraries/display_export.lib.php:152 libraries/messages.inc.php:327 +#: libraries/display_export.lib.php:152 libraries/messages.inc.php:323 msgid "server name" msgstr "nom de serveur" -#: libraries/display_export.lib.php:155 libraries/messages.inc.php:326 +#: libraries/display_export.lib.php:155 libraries/messages.inc.php:322 msgid "database name" msgstr "nom de base de données" -#: libraries/display_export.lib.php:158 libraries/messages.inc.php:328 +#: libraries/display_export.lib.php:158 libraries/messages.inc.php:324 msgid "table name" msgstr "nom de table" -#: libraries/display_export.lib.php:162 libraries/messages.inc.php:329 +#: libraries/display_export.lib.php:162 libraries/messages.inc.php:325 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2142,24 +2152,24 @@ msgstr "" "utiliser des chaînes de format d'heure. Ces transformations additionnelles " "vont se produire: %3$s. Tout autre texte sera conservé tel quel." -#: libraries/display_export.lib.php:202 libraries/messages.inc.php:331 +#: libraries/display_export.lib.php:202 libraries/messages.inc.php:327 msgid "remember template" msgstr "se souvenir du modèle" #: libraries/display_export.lib.php:210 libraries/display_import.lib.php:178 -#: libraries/display_import.lib.php:191 libraries/messages.inc.php:145 +#: libraries/display_import.lib.php:191 libraries/messages.inc.php:141 #: libraries/sql_query_form.lib.php:549 msgid "Character set of the file:" msgstr "Jeu de caractères du fichier:" -#: libraries/display_export.lib.php:235 libraries/messages.inc.php:166 +#: libraries/display_export.lib.php:235 libraries/messages.inc.php:162 #: setup/lib/messages.inc.php:84 msgid "Compression" 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/messages.inc.php:558 +#: libraries/export/sql.php:868 libraries/messages.inc.php:554 #: libraries/tbl_properties.inc.php:575 server_privileges.php:1836 #: server_processlist.php:75 msgid "None" @@ -2177,11 +2187,11 @@ msgstr "gzippé" msgid "bzipped" msgstr "bzippé" -#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1018 +#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1014 msgid "SQL compatibility mode" msgstr "Mode de compatibilité SQL" -#: libraries/display_import.lib.php:67 libraries/messages.inc.php:398 +#: libraries/display_import.lib.php:67 libraries/messages.inc.php:394 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " @@ -2191,11 +2201,11 @@ msgstr "" "bien il s'agit d'une anomalie connue dans les navigateurs basés sur webkit " "(Safari, Google Chrome, Arora, etc)" -#: libraries/display_import.lib.php:77 libraries/messages.inc.php:406 +#: libraries/display_import.lib.php:77 libraries/messages.inc.php:402 msgid "The file is being processed, please be patient." msgstr "Le fichier est en traitement, veuillez patienter." -#: libraries/display_import.lib.php:99 libraries/messages.inc.php:408 +#: libraries/display_import.lib.php:99 libraries/messages.inc.php:404 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." @@ -2203,39 +2213,39 @@ msgstr "" "Veuillez patienter, le fichier est téléchargé. Les détails sur le chargement " "ne sont pas disponibles." -#: libraries/display_import.lib.php:126 libraries/messages.inc.php:333 +#: libraries/display_import.lib.php:126 libraries/messages.inc.php:329 msgid "File to import" msgstr "Fichier à importer" -#: libraries/display_import.lib.php:137 libraries/messages.inc.php:486 +#: libraries/display_import.lib.php:137 libraries/messages.inc.php:482 #: libraries/sql_query_form.lib.php:524 msgid "Location of the text file" msgstr "Emplacement du fichier texte" -#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1203 +#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1199 msgid "File uploads are not allowed on this server." msgstr "Les téléchargements vers ce serveur ne sont pas permis." -#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1235 +#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1231 #: libraries/sql_query_form.lib.php:533 tbl_change.php:1028 msgid "The directory you set for upload work cannot be reached" msgstr "Le répertoire de transfert est inaccessible" -#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1236 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1232 #: libraries/sql_query_form.lib.php:536 tbl_change.php:1031 msgid "web server upload directory" msgstr "répertoire de transfert du serveur Web" -#: libraries/display_import.lib.php:212 libraries/messages.inc.php:167 +#: libraries/display_import.lib.php:212 libraries/messages.inc.php:163 #, php-format msgid "Imported file compression will be automatically detected from: %s" msgstr "Ces modes de compression seront détectés automatiquement : %s" -#: libraries/display_import.lib.php:219 libraries/messages.inc.php:600 +#: libraries/display_import.lib.php:219 libraries/messages.inc.php:596 msgid "Partial import" msgstr "Importation partielle" -#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1105 +#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1101 #, php-format msgid "" "Previous import timed out, after resubmitting will continue from position %d." @@ -2243,7 +2253,7 @@ msgstr "" "L'importation précédente a échoué en raison du temps; retransmettez et le " "traitement reprendra à la position %d." -#: libraries/display_import.lib.php:232 libraries/messages.inc.php:51 +#: libraries/display_import.lib.php:232 libraries/messages.inc.php:47 msgid "" "Allow the interruption of an import in case the script detects it is close " "to the PHP timeout limit. This might be good way to import large files, " @@ -2253,177 +2263,177 @@ msgstr "" "point d'être atteinte. Ceci pourrait aider à importer des fichiers " "volumineux, au détriment du respect des transactions." -#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1004 +#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1000 #: setup/lib/messages.inc.php:161 msgid "Number of records (queries) to skip from start" msgstr "... relatif au début du fichier" -#: libraries/display_import.lib.php:255 libraries/messages.inc.php:396 +#: libraries/display_import.lib.php:255 libraries/messages.inc.php:392 #: setup/lib/messages.inc.php:160 msgid "Format of imported file" msgstr "Format du fichier d'importation" #: libraries/display_select_lang.lib.php:45 -#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:465 +#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:461 #: setup/frames/index.inc.php:70 msgid "Language" msgstr "Langue" -#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:447 +#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:443 #, php-format msgid "%d is not valid row number." msgstr "%d n'est pas un numéro d'enregistrement valable." -#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:814 +#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:810 msgid "row(s) starting from record #" msgstr "enregistrement(s) à partir de l'enregistrement n°" -#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:817 +#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:813 msgid "horizontal" msgstr "horizontal" -#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:816 +#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:812 msgid "horizontal (rotated headers)" msgstr "horizontal (en-têtes pivotés)" -#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:819 +#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:815 msgid "vertical" msgstr "vertical" -#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:818 +#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:814 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "en mode %s et répéter les en-têtes à chaque groupe de %s" -#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:495 +#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:491 msgid "This operation could take a long time. Proceed anyway?" msgstr "Cette opération pourrait être longue. Procéder quand même?" -#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1012 +#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1008 msgid "Sort by key" msgstr "Trier sur l'index" #: libraries/display_tbl.lib.php:555 libraries/import.lib.php:1082 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:591 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:587 #: tbl_select.php:267 tbl_structure.php:754 msgid "Options" msgstr "Options" #: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:570 -#: libraries/messages.inc.php:601 +#: libraries/messages.inc.php:597 msgid "Partial Texts" msgstr "Textes réduits" #: libraries/display_tbl.lib.php:561 libraries/display_tbl.lib.php:574 -#: libraries/messages.inc.php:346 +#: libraries/messages.inc.php:342 msgid "Full Texts" msgstr "Textes complets" -#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:739 +#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:735 msgid "Relational key" msgstr "Relations : clés" -#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:738 +#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:734 msgid "Relational display field" msgstr "Relations : champs descriptifs" -#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:872 +#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:868 msgid "Show binary contents" msgstr "Montrer le contenu binaire" -#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:873 +#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:869 msgid "Show BLOB contents" msgstr "Montrer le contenu BLOB" -#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:871 +#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:867 msgid "Show binary contents as HEX" msgstr "Montrer le contenu binaire en hexadécimal" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:375 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:371 #: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320 msgid "Hide" msgstr "Cacher" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:508 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:504 #: libraries/tbl_properties.inc.php:144 transformation_overview.php:47 msgid "Browser transformation" msgstr "Transformation" #: libraries/display_tbl.lib.php:1126 libraries/display_tbl.lib.php:1130 -#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:308 +#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:304 msgid "Execute bookmarked query" msgstr "Exécuter la requête en signets" #: libraries/display_tbl.lib.php:1145 libraries/display_tbl.lib.php:1157 -#: libraries/messages.inc.php:244 +#: libraries/messages.inc.php:240 msgid "The row has been deleted" msgstr "L'enregistrement a été effacé" #: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056 -#: libraries/messages.inc.php:460 server_processlist.php:71 +#: libraries/messages.inc.php:456 server_processlist.php:71 #: tbl_row_action.php:64 msgid "Kill" msgstr "Supprimer" -#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:849 +#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:845 msgid "in query" msgstr "dans la requête" -#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:881 +#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:877 msgid "Showing rows" msgstr "Affichage des enregistrements" -#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1113 +#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1109 msgid "total" msgstr "total" -#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:727 +#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:723 #: sql.php:524 #, php-format msgid "Query took %01.4f sec" msgstr "Traitement en %01.4f sec." -#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:135 +#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:131 #: 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:471 msgid "Change" msgstr "Modifier" -#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:724 +#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:720 msgid "Query results operations" msgstr "Opérations sur les résultats de la requête" -#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:671 +#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:667 msgid "Print view (with full texts)" msgstr "Version imprimable (avec textes complets)" -#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:482 +#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:478 msgid "Link not found" msgstr "Lien absent" -#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1224 +#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1220 #: main.php:228 msgid "Version information" msgstr "Version" -#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:423 +#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:419 msgid "Data home directory" msgstr "Répertoire des données" -#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:424 +#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:420 msgid "The common part of the directory path for all InnoDB data files." msgstr "Le chemin du répertoire pour tous les fichiers de données InnoDB." -#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:422 +#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:418 msgid "Data files" msgstr "Fichiers de données" -#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:418 +#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:414 msgid "Autoextend increment" msgstr "Auto-croissant: Taille de l'incrément" -#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:419 +#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:415 msgid "" " The increment size for extending the size of an autoextending tablespace " "when it becomes full." @@ -2431,11 +2441,11 @@ msgstr "" "La valeur de l'incrément lors de l'agrandissement du fichier auto-croissant " "lorsqu'il devient plein." -#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:420 +#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:416 msgid "Buffer pool size" msgstr "Taille de la mémoire-tampon" -#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:421 +#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:417 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." @@ -2443,87 +2453,87 @@ msgstr "" "La taille de la mémoire-tampon utilisée par InnoDB pour les opérations " "d'antémoire sur les données et les index." -#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:112 +#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:108 msgid "Buffer Pool" msgstr "Mémoire-tampon" -#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:426 +#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:422 #: server_status.php:306 msgid "InnoDB Status" msgstr "État InnoDB" -#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:113 +#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:109 msgid "Buffer Pool Usage" msgstr "Utilisation de la mémoire-tampon" -#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1114 +#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1110 #: server_databases.php:137 server_databases.php:305 server_status.php:414 #: server_status.php:475 server_status.php:496 tbl_printview.php:351 #: tbl_structure.php:697 msgid "Total" msgstr "Total" -#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:425 +#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:421 msgid "pages" msgstr "pages" -#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:343 +#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:339 msgid "Free pages" msgstr "Pages libres" -#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:259 +#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:255 msgid "Dirty pages" msgstr "Pages modifiées" -#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:230 +#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:226 msgid "Pages containing data" msgstr "Pages contenant des données" -#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:598 +#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:594 msgid "Pages to be flushed" msgstr "Pages devant être vidées" -#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:119 +#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:115 msgid "Busy pages" msgstr "Pages occupées" -#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:467 +#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:463 msgid "Latched pages" msgstr "Pages verrouillées" -#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:111 +#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:107 msgid "Buffer Pool Activity" msgstr "Activité de la mémoire-tampon" -#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:731 +#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:727 msgid "Read requests" msgstr "Requêtes de lecture" -#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1244 +#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1240 msgid "Write requests" msgstr "Requêtes d'écriture" -#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:115 +#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:111 msgid "Read misses" msgstr "Lectures non-satisfaites" -#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:117 +#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:113 msgid "Write waits" msgstr "Nombre d'attentes d'écriture" -#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:114 +#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:110 msgid "Read misses in %" msgstr "Lectures non-satisfaites en %" -#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:116 +#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:112 msgid "Write waits in %" msgstr "Nombre d'attentes d'écriture en %" -#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:522 +#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:518 msgid "Data pointer size" msgstr "Taille du pointeur de données" -#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:523 +#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:519 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." @@ -2531,11 +2541,11 @@ msgstr "" "La taille du pointeur (en octets) qui servira lors d'un CREATE TABLE sur une " "table MyISAM si aucune option MAX_ROWS n'est indiquée" -#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:528 +#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:524 msgid "Automatic recovery mode" msgstr "Mode de recouvrement automatique" -#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:529 +#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:525 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." @@ -2543,11 +2553,11 @@ msgstr "" "Le mode de recouvrement automatique en cas de tables MyISAM en mauvais état, " "tel que réglé via l'option --myisam-recover au départ du serveur" -#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:527 +#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:523 msgid "Maximum size for temporary sort files" msgstr "Taille maximum pour les fichiers de tri temporaires" -#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:526 +#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:522 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " @@ -2557,13 +2567,13 @@ msgstr "" "pour recréer un index MyISAM (durant un REPAIR TABLE, ALTER TABLE ou LOAD " "DATA INFILE)" -#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:525 +#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:521 msgid "Maximum size for temporary files on index creation" msgstr "" "La taille maximum pour les fichiers temporaires utilisés lors de la création " "d'index" -#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:524 +#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:520 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " @@ -2573,11 +2583,11 @@ msgstr "" "devrait s'avérer plus volumineux que d'employer la cache des clés (la " "différence étant spécifiée ici), utiliser la méthode de cache des clés" -#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:531 +#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:527 msgid "Repair threads" msgstr "Nombre de fils d'exécution pour la réparation" -#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:530 +#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:526 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." @@ -2586,11 +2596,11 @@ msgstr "" "en parallèle (chaque index dans son propre fil d'exécution) lors d'une " "réparation." -#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:533 +#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:529 msgid "Sort buffer size" msgstr "Taille de la mémoire tampon" -#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:532 +#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:528 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." @@ -2599,11 +2609,11 @@ msgstr "" "opération REPAIR TABLE ou pour créer les index lors d'un CREATE INDEX ou " "ALTER TABLE" -#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:620 +#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:616 msgid "Index cache size" msgstr "Taille du cache d'index" -#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:619 +#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:615 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." @@ -2612,11 +2622,11 @@ msgstr "" "de 32 Mio. La mémoire allouée ici est utilisée pour le cache des pages " "d'index." -#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:630 +#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:626 msgid "Record cache size" msgstr "Taille du cache des enregistrements" -#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:629 +#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:625 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " @@ -2626,11 +2636,11 @@ msgstr "" "défaut est de 32 Mio. Cette mémoire est utilisée pour le cache des " "changements aux fichiers de données (.xtd) et pointeurs (.xtr)." -#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:624 +#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:620 msgid "Log cache size" msgstr "Taille du cache du journal" -#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:623 +#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:619 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." @@ -2638,11 +2648,11 @@ msgstr "" "La quantité de mémoire allouée au cache du journal des transactions. La " "valeur par défaut est de 16 Mio." -#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:628 +#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:624 msgid "Log file threshold" msgstr "Seuil du fichier journal" -#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:627 +#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:623 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." @@ -2650,11 +2660,11 @@ msgstr "" "La taille d'un journal de transactions au-delà de laquelle un nouveau " "journal est créé. La valeur par défaut est de 16 Mio." -#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:634 +#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:630 msgid "Transaction buffer size" msgstr "Taille du tampon des transactions" -#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:633 +#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:629 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." @@ -2662,11 +2672,11 @@ msgstr "" "La taille du tampon du journal global des transactions (deux tampons sont " "alloués). La valeur par défaut est de 1 Mio." -#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:611 +#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:607 msgid "Checkpoint frequency" msgstr "Fréquence des points de contrôle" -#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:612 +#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:608 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." @@ -2674,11 +2684,11 @@ msgstr "" "La quantité de données écrite au journal de transactions avant un point de " "contrôle. La valeur par défaut est de 24 Mio." -#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:615 +#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:611 msgid "Data log threshold" msgstr "Seuil du journal des données" -#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:616 +#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:612 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -2691,11 +2701,11 @@ msgstr "" "pour augmenter la quantité totale de données pouvant être stockée dans la " "base de données." -#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:618 +#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:614 msgid "Garbage threshold" msgstr "Seuil des informations parasites" -#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:617 +#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:613 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." @@ -2704,11 +2714,11 @@ msgstr "" "duquel il est comprimé. Il s'agit d'une valeur entre 1 et 99. La valeur par " "défaut est 50." -#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:622 +#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:618 msgid "Log buffer size" msgstr "Taille du tampon du journal" -#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:621 +#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:617 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " @@ -2718,29 +2728,29 @@ msgstr "" "défaut est de 256 Mio. Le moteur alloue un tampon par fil, seulement si le " "fil doit écrire dans un journal." -#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:613 +#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:609 msgid "Data file grow size" msgstr "Taille de l'augmentation du fichier des données" -#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:614 +#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:610 msgid "The grow size of the handle data (.xtd) files." msgstr "" "La taille de l'augmentation des fichiers pointeurs d'enregistrements (.xtd)." -#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:632 +#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:628 msgid "Row file grow size" msgstr "Taille d'augmentation du fichier des enregistrements" -#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:631 +#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:627 msgid "The grow size of the row pointer (.xtr) files." msgstr "" "La taille de l'augmentation des fichiers pointeurs d'enregistrements (.xtr)." -#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:626 +#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:622 msgid "Log file count" msgstr "Nombre de fichiers journal" -#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:625 +#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:621 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -2753,19 +2763,19 @@ msgstr "" #: libraries/export/htmlword.php:132 libraries/export/odt.php:168 #: libraries/export/sql.php:881 libraries/export/texytext.php:130 -#: libraries/messages.inc.php:275 +#: libraries/messages.inc.php:271 msgid "Dumping data for table" msgstr "Contenu de la table" #: libraries/export/htmlword.php:185 libraries/export/odt.php:238 #: libraries/export/sql.php:785 libraries/export/texytext.php:177 -#: libraries/messages.inc.php:1086 +#: libraries/messages.inc.php:1082 msgid "Table structure for table" msgstr "Structure de la table" #: libraries/export/latex.php:125 libraries/export/sql.php:232 #: libraries/export/xml.php:102 libraries/header_printview.inc.php:57 -#: libraries/messages.inc.php:381 libraries/replication_gui.lib.php:63 +#: libraries/messages.inc.php:377 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:170 libraries/replication_gui.lib.php:265 #: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325 #: server_privileges.php:692 server_privileges.php:695 @@ -2777,185 +2787,185 @@ msgstr "Serveur" #: libraries/export/latex.php:130 libraries/export/sql.php:233 #: libraries/export/xml.php:107 libraries/header_printview.inc.php:59 -#: libraries/messages.inc.php:354 +#: libraries/messages.inc.php:350 msgid "Generation Time" msgstr "Généré le " #: libraries/export/latex.php:131 libraries/export/sql.php:235 -#: libraries/export/xml.php:108 libraries/messages.inc.php:864 main.php:186 +#: libraries/export/xml.php:108 libraries/messages.inc.php:860 main.php:186 msgid "Server version" msgstr "Version du serveur" #: libraries/export/latex.php:132 libraries/export/sql.php:236 -#: libraries/export/xml.php:109 libraries/messages.inc.php:651 +#: libraries/export/xml.php:109 libraries/messages.inc.php:647 msgid "PHP Version" msgstr "Version de PHP" #: libraries/export/latex.php:201 libraries/export/sql.php:868 -#: libraries/messages.inc.php:226 server_databases.php:127 +#: libraries/messages.inc.php:222 server_databases.php:127 #: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317 #: tbl_structure.php:666 msgid "Data" msgstr "Données" -#: libraries/export/odt.php:318 libraries/messages.inc.php:506 +#: libraries/export/odt.php:318 libraries/messages.inc.php:502 #: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "Type MIME" -#: libraries/export/sql.php:387 libraries/messages.inc.php:711 +#: libraries/export/sql.php:387 libraries/messages.inc.php:707 msgid "Procedures" msgstr "Procédures" -#: libraries/export/sql.php:401 libraries/messages.inc.php:348 +#: libraries/export/sql.php:401 libraries/messages.inc.php:344 msgid "Functions" msgstr "Fonctions" -#: libraries/export/sql.php:618 libraries/messages.inc.php:174 +#: libraries/export/sql.php:618 libraries/messages.inc.php:170 msgid "Constraints for dumped tables" msgstr "Contraintes pour les tables exportées" -#: libraries/export/sql.php:627 libraries/messages.inc.php:175 +#: libraries/export/sql.php:627 libraries/messages.inc.php:171 msgid "Constraints for table" msgstr "Contraintes pour la table" -#: libraries/export/sql.php:727 libraries/messages.inc.php:512 +#: libraries/export/sql.php:727 libraries/messages.inc.php:508 msgid "MIME TYPES FOR TABLE" msgstr "TYPES MIME POUR LA TABLE" -#: libraries/export/sql.php:739 libraries/messages.inc.php:743 +#: libraries/export/sql.php:739 libraries/messages.inc.php:739 msgid "RELATIONS FOR TABLE" msgstr "RELATIONS POUR LA TABLE" -#: libraries/export/sql.php:796 libraries/messages.inc.php:1178 +#: libraries/export/sql.php:796 libraries/messages.inc.php:1174 #: libraries/tbl_triggers.lib.php:19 msgid "Triggers" msgstr "Déclencheurs" -#: libraries/export/sql.php:808 libraries/messages.inc.php:1046 +#: libraries/export/sql.php:808 libraries/messages.inc.php:1042 msgid "Structure for view" msgstr "Structure de la vue" -#: libraries/export/sql.php:817 libraries/messages.inc.php:1029 +#: libraries/export/sql.php:817 libraries/messages.inc.php:1025 msgid "Stand-in structure for view" msgstr "Doublure de structure pour la vue" #: libraries/footer.inc.php:184 libraries/footer.inc.php:195 -#: libraries/footer.inc.php:198 libraries/messages.inc.php:586 +#: libraries/footer.inc.php:198 libraries/messages.inc.php:582 msgid "Open new phpMyAdmin window" msgstr "Ouvrir une nouvelle fenêtre phpMyAdmin" -#: libraries/header.inc.php:115 libraries/messages.inc.php:542 +#: libraries/header.inc.php:115 libraries/messages.inc.php:538 msgid "New table" msgstr "Nouvelle table" #: libraries/header_printview.inc.php:50 libraries/header_printview.inc.php:55 -#: libraries/messages.inc.php:1024 +#: libraries/messages.inc.php:1020 msgid "SQL result" msgstr "Résultat de la requête SQL" -#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:350 +#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:346 msgid "Generated by" msgstr "Généré par" #: libraries/header_printview.inc.php:63 libraries/import.lib.php:145 -#: libraries/messages.inc.php:820 navigation.php:652 navigation.php:674 +#: libraries/messages.inc.php:816 navigation.php:652 navigation.php:674 #: server_databases.php:122 tbl_printview.php:394 tbl_structure.php:366 #: tbl_structure.php:778 msgid "Rows" msgstr "Enregistrements" -#: libraries/import.lib.php:150 libraries/messages.inc.php:285 sql.php:520 +#: libraries/import.lib.php:150 libraries/messages.inc.php:281 sql.php:520 #: tbl_change.php:181 tbl_get_field.php:35 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL n'a retourné aucun enregistrement." -#: libraries/import.lib.php:1078 libraries/messages.inc.php:399 +#: libraries/import.lib.php:1078 libraries/messages.inc.php:395 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" "Les structures suivanates ont été créées ou modifiées. Ici vous pouvez :" -#: libraries/import.lib.php:1079 libraries/messages.inc.php:400 +#: libraries/import.lib.php:1079 libraries/messages.inc.php:396 msgid "View a structure`s contents by clicking on its name" msgstr "Consulter le contenu d'une structure en cliquant sur son nom" -#: libraries/import.lib.php:1080 libraries/messages.inc.php:401 +#: libraries/import.lib.php:1080 libraries/messages.inc.php:397 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" "Modifiez l'un des réglages en cliquant le lien «Options » correspondant" -#: libraries/import.lib.php:1081 libraries/messages.inc.php:402 +#: libraries/import.lib.php:1081 libraries/messages.inc.php:398 msgid "Edit its structure by following the \"Structure\" link" msgstr "Modifier sa structure via le lien «Structure »" -#: libraries/import.lib.php:1084 libraries/messages.inc.php:362 +#: libraries/import.lib.php:1084 libraries/messages.inc.php:358 msgid "Go to database" msgstr "Aller à la base de données" #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:869 +#: libraries/messages.inc.php:865 msgid "settings" msgstr "réglages" -#: libraries/import.lib.php:1106 libraries/messages.inc.php:363 +#: libraries/import.lib.php:1106 libraries/messages.inc.php:359 msgid "Go to table" msgstr "Aller à la table" -#: libraries/import.lib.php:1109 libraries/messages.inc.php:1047 +#: libraries/import.lib.php:1109 libraries/messages.inc.php:1043 msgid "structure" msgstr "structure" -#: libraries/import.lib.php:1115 libraries/messages.inc.php:364 +#: libraries/import.lib.php:1115 libraries/messages.inc.php:360 msgid "Go to view" msgstr "Aller à la vue" #: libraries/import/csv.php:58 libraries/import/csv.php:70 #: libraries/import/csv.php:74 libraries/import/csv.php:78 -#: libraries/messages.inc.php:442 +#: libraries/messages.inc.php:438 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "Paramètres invalides pour l'importation CSV: %s" -#: libraries/import/csv.php:59 libraries/messages.inc.php:323 +#: libraries/import/csv.php:59 libraries/messages.inc.php:319 msgid "Fields terminated by" msgstr "Champs terminés par" -#: libraries/import/csv.php:71 libraries/messages.inc.php:320 +#: libraries/import/csv.php:71 libraries/messages.inc.php:316 msgid "Fields enclosed by" msgstr "Champs entourés par" -#: libraries/import/csv.php:75 libraries/messages.inc.php:321 +#: libraries/import/csv.php:75 libraries/messages.inc.php:317 msgid "Fields escaped by" msgstr "Caractère spécial" -#: libraries/import/csv.php:79 libraries/messages.inc.php:481 +#: libraries/import/csv.php:79 libraries/messages.inc.php:477 msgid "Lines terminated by" msgstr "Lignes terminées par" -#: libraries/import/csv.php:119 libraries/messages.inc.php:439 +#: libraries/import/csv.php:119 libraries/messages.inc.php:435 #, php-format msgid "Invalid column (%s) specified!" msgstr "La colonne %s est invalide!" #: libraries/import/csv.php:177 libraries/import/csv.php:424 -#: libraries/messages.inc.php:441 +#: libraries/messages.inc.php:437 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "Format invalide pour les données CSV à la ligne %d." -#: libraries/import/csv.php:312 libraries/messages.inc.php:440 +#: libraries/import/csv.php:312 libraries/messages.inc.php:436 #, php-format msgid "Invalid field count in CSV input on line %d." msgstr "Nombre de champs invalide dans les données CSV à la ligne %d" -#: libraries/import/ldi.php:55 libraries/messages.inc.php:446 +#: libraries/import/ldi.php:55 libraries/messages.inc.php:442 msgid "This plugin does not support compressed imports!" msgstr "Ce greffon ne supporte pas les importations en format comprimé!" #: libraries/import/xml.php:74 libraries/import/xml.php:130 -#: libraries/messages.inc.php:1247 +#: libraries/messages.inc.php:1243 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -2984,323 +2994,313 @@ msgstr "Conversion en kana" msgid "ltr" msgstr "ltr" -#. l10n: Thousands separator -#: libraries/messages.inc.php:21 -msgid "," -msgstr " " - -#. l10n: Decimal separator -#: libraries/messages.inc.php:23 -msgid "." -msgstr "," - -#: libraries/messages.inc.php:25 server_status.php:461 +#: libraries/messages.inc.php:21 server_status.php:461 msgid "Aborted" msgstr "Arrêts prématurés" -#: libraries/messages.inc.php:28 main.php:68 +#: libraries/messages.inc.php:24 main.php:68 msgid "Actions" msgstr "Actions" -#: libraries/messages.inc.php:34 libraries/tbl_properties.inc.php:780 +#: libraries/messages.inc.php:30 libraries/tbl_properties.inc.php:780 #: tbl_structure.php:543 #, php-format msgid "Add %s field(s)" msgstr "Ajouter %s champ(s)" -#: libraries/messages.inc.php:35 +#: libraries/messages.inc.php:31 msgid "Add custom comment into header (\\n splits lines)" msgstr "Commentaires mis en en-tête (\\n sépare les lignes)" -#: libraries/messages.inc.php:36 +#: libraries/messages.inc.php:32 msgid "Add into comments" msgstr "Inclure sous forme de commentaires" -#: libraries/messages.inc.php:37 tbl_structure.php:541 +#: libraries/messages.inc.php:33 tbl_structure.php:541 msgid "Add new field" msgstr "Ajouter un champ" -#: libraries/messages.inc.php:38 server_privileges.php:1886 +#: libraries/messages.inc.php:34 server_privileges.php:1886 msgid "Add privileges on the following database" msgstr "Ajouter des privilèges sur cette base de données" -#: libraries/messages.inc.php:39 server_privileges.php:1907 +#: libraries/messages.inc.php:35 server_privileges.php:1907 msgid "Add privileges on the following table" msgstr "Ajouter des privilèges sur cette table" -#: libraries/messages.inc.php:40 tbl_select.php:288 +#: libraries/messages.inc.php:36 tbl_select.php:288 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Critères de recherche (pour l'énoncé «where») :" -#: libraries/messages.inc.php:41 tbl_indexes.php:251 +#: libraries/messages.inc.php:37 tbl_indexes.php:251 #, php-format msgid "Add to index  %s column(s)" msgstr "Ajouter à l'index %s colonne(s)" -#: libraries/messages.inc.php:42 server_privileges.php:1570 +#: libraries/messages.inc.php:38 server_privileges.php:1570 #: server_privileges.php:1594 server_privileges.php:1988 #: server_privileges.php:2177 msgid "Add a new User" msgstr "Ajouter un utilisateur" -#: libraries/messages.inc.php:43 server_privileges.php:931 +#: libraries/messages.inc.php:39 server_privileges.php:931 msgid "You have added a new user." msgstr "Vous avez ajouté un utilisateur" -#: libraries/messages.inc.php:44 server_privileges.php:571 +#: libraries/messages.inc.php:40 server_privileges.php:571 msgid "Administration" msgstr "Administration" -#: libraries/messages.inc.php:45 tbl_structure.php:557 +#: libraries/messages.inc.php:41 tbl_structure.php:557 #, php-format msgid "After %s" msgstr "Après %s" -#: libraries/messages.inc.php:46 tbl_change.php:1147 +#: libraries/messages.inc.php:42 tbl_change.php:1147 msgid "Go back to previous page" msgstr "Retourner à la page précédente" -#: libraries/messages.inc.php:47 tbl_change.php:1148 +#: libraries/messages.inc.php:43 tbl_change.php:1148 msgid "Insert another new row" msgstr "Insérer un nouvel enregistrement" -#: libraries/messages.inc.php:48 tbl_change.php:1160 +#: libraries/messages.inc.php:44 tbl_change.php:1160 msgid "Edit next row" msgstr "Modifier l'enregistrement suivant" -#: libraries/messages.inc.php:49 tbl_change.php:1152 +#: libraries/messages.inc.php:45 tbl_change.php:1152 msgid "Go back to this page" msgstr "Demeurer sur cette page" -#: libraries/messages.inc.php:50 querywindow.php:115 +#: libraries/messages.inc.php:46 querywindow.php:115 msgid "All" msgstr "Tout" -#: libraries/messages.inc.php:53 tbl_operations.php:249 +#: libraries/messages.inc.php:49 tbl_operations.php:249 msgid "Alter table order by" msgstr "Ordonner la table par" -#: libraries/messages.inc.php:54 tbl_operations.php:660 +#: libraries/messages.inc.php:50 tbl_operations.php:660 msgid "Analyze" msgstr "Analyser" -#: libraries/messages.inc.php:57 +#: libraries/messages.inc.php:53 msgid "and" msgstr "et" -#: libraries/messages.inc.php:59 pmd_general.php:87 +#: libraries/messages.inc.php:55 pmd_general.php:87 msgid "Angular links" msgstr "Liens angulaires" -#: libraries/messages.inc.php:60 tbl_structure.php:401 tbl_structure.php:415 +#: libraries/messages.inc.php:56 tbl_structure.php:401 tbl_structure.php:415 #: tbl_structure.php:429 #, php-format msgid "An index has been added on %s" msgstr "Un index a été ajouté sur %s" -#: libraries/messages.inc.php:61 server_privileges.php:1521 +#: libraries/messages.inc.php:57 server_privileges.php:1521 #: server_privileges.php:2123 msgid "Any" msgstr "N'importe quel" -#: libraries/messages.inc.php:62 libraries/replication_gui.lib.php:298 +#: libraries/messages.inc.php:58 libraries/replication_gui.lib.php:298 #: server_privileges.php:725 msgid "Any host" msgstr "Tout serveur" -#: libraries/messages.inc.php:63 libraries/replication_gui.lib.php:250 +#: libraries/messages.inc.php:59 libraries/replication_gui.lib.php:250 #: server_privileges.php:677 msgid "Any user" msgstr "Tout utilisateur" -#: libraries/messages.inc.php:64 server_synchronize.php:449 +#: libraries/messages.inc.php:60 server_synchronize.php:449 #: server_synchronize.php:894 msgid "Apply Selected Changes" msgstr "Appliquer les changements sélectionnés" -#: libraries/messages.inc.php:66 tbl_structure.php:386 +#: libraries/messages.inc.php:62 tbl_structure.php:386 #, php-format msgid "A primary key has been added on %s" msgstr "Une clé primaire a été ajoutée sur %s" -#: libraries/messages.inc.php:67 libraries/mysql_charsets.lib.php:368 +#: libraries/messages.inc.php:63 libraries/mysql_charsets.lib.php:368 msgid "Arabic" msgstr "arabe" -#: libraries/messages.inc.php:68 libraries/mysql_charsets.lib.php:359 +#: libraries/messages.inc.php:64 libraries/mysql_charsets.lib.php:359 msgid "Armenian" msgstr "arménien" -#: libraries/messages.inc.php:70 libraries/tbl_properties.inc.php:394 +#: libraries/messages.inc.php:66 libraries/tbl_properties.inc.php:394 msgid "As defined:" msgstr "Tel que défini :" -#: libraries/messages.inc.php:71 tbl_structure.php:556 +#: libraries/messages.inc.php:67 tbl_structure.php:556 msgid "At Beginning of Table" msgstr "En début de table" -#: libraries/messages.inc.php:72 tbl_structure.php:555 +#: libraries/messages.inc.php:68 tbl_structure.php:555 msgid "At End of Table" msgstr "En fin de table" -#: libraries/messages.inc.php:73 libraries/tbl_properties.inc.php:108 +#: libraries/messages.inc.php:69 libraries/tbl_properties.inc.php:108 #: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:144 #: tbl_structure.php:180 msgid "Attributes" msgstr "Attributs" -#: libraries/messages.inc.php:74 pdf_pages.php:303 pdf_pages.php:306 +#: libraries/messages.inc.php:70 pdf_pages.php:303 pdf_pages.php:306 msgid "Automatic layout" msgstr "Mise en page automatique" -#: libraries/messages.inc.php:77 libraries/mysql_charsets.lib.php:354 +#: libraries/messages.inc.php:73 libraries/mysql_charsets.lib.php:354 msgid "Baltic" msgstr "baltique" -#: libraries/messages.inc.php:78 libraries/sqlparser.lib.php:175 +#: libraries/messages.inc.php:74 libraries/sqlparser.lib.php:175 msgid "BEGIN CUT" msgstr "Début de la section à couper" -#: libraries/messages.inc.php:79 libraries/sqlparser.lib.php:179 +#: libraries/messages.inc.php:75 libraries/sqlparser.lib.php:179 msgid "BEGIN RAW" msgstr "Début des informations sur l'anomalie" -#: libraries/messages.inc.php:80 libraries/mysql_charsets.lib.php:201 +#: libraries/messages.inc.php:76 libraries/mysql_charsets.lib.php:201 #: libraries/mysql_charsets.lib.php:402 tbl_change.php:518 msgid "Binary" msgstr "Binaire" -#: libraries/messages.inc.php:81 tbl_change.php:894 +#: libraries/messages.inc.php:77 tbl_change.php:894 msgid "Binary - do not edit" msgstr "Binaire - ne pas éditer" -#: libraries/messages.inc.php:82 libraries/server_links.inc.php:76 +#: libraries/messages.inc.php:78 libraries/server_links.inc.php:76 #: server_binlog.php:110 server_status.php:253 test/theme.php:121 msgid "Binary log" msgstr "Log binaire" -#: libraries/messages.inc.php:83 server_binlog.php:217 +#: libraries/messages.inc.php:79 server_binlog.php:217 msgid "Event type" msgstr "Type d'évènement" -#: libraries/messages.inc.php:84 server_binlog.php:220 +#: libraries/messages.inc.php:80 server_binlog.php:220 msgid "Information" msgstr "Information" -#: libraries/messages.inc.php:85 server_binlog.php:215 +#: libraries/messages.inc.php:81 server_binlog.php:215 msgid "Log name" msgstr "Nom du journal binaire" -#: libraries/messages.inc.php:86 server_binlog.php:219 +#: libraries/messages.inc.php:82 server_binlog.php:219 msgid "Original position" msgstr "Position d'origine" -#: libraries/messages.inc.php:87 server_binlog.php:216 +#: libraries/messages.inc.php:83 server_binlog.php:216 msgid "Position" msgstr "Position" -#: libraries/messages.inc.php:88 libraries/replication_gui.lib.php:169 +#: libraries/messages.inc.php:84 libraries/replication_gui.lib.php:169 #: server_binlog.php:218 msgid "Server ID" msgstr "ID du serveur" -#: libraries/messages.inc.php:92 +#: libraries/messages.inc.php:88 msgctxt "$strBLOBRepositoryDisabled" msgid "Disabled" msgstr "Désactivé" -#: libraries/messages.inc.php:95 +#: libraries/messages.inc.php:91 msgctxt "$strBLOBRepositoryEnabled" msgid "Enabled" msgstr "Activé" -#: libraries/messages.inc.php:97 tbl_change.php:888 +#: libraries/messages.inc.php:93 tbl_change.php:888 msgid "Remove BLOB Repository Reference" msgstr "Supprimer les références au dépôt BLOB" -#: libraries/messages.inc.php:98 +#: libraries/messages.inc.php:94 msgctxt "$strBLOBRepositoryRepair" msgid "Repair" msgstr "Réparer" -#: libraries/messages.inc.php:99 tbl_change.php:987 +#: libraries/messages.inc.php:95 tbl_change.php:987 msgid "Upload to BLOB repository" msgstr "Télécharger vers le dépôt BLOB" -#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:359 +#: libraries/messages.inc.php:96 libraries/sql_query_form.lib.php:359 #: sql.php:677 msgid "Let every user access this bookmark" msgstr "Signet visible pour les autres utilisateurs" -#: libraries/messages.inc.php:103 sql.php:671 +#: libraries/messages.inc.php:99 sql.php:671 msgid "Label" msgstr "Intitulé" -#: libraries/messages.inc.php:104 libraries/sql_query_form.lib.php:433 +#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:433 msgid "Bookmarked SQL query" msgstr "Requêtes en signets" -#: libraries/messages.inc.php:105 libraries/sql_query_form.lib.php:365 +#: libraries/messages.inc.php:101 libraries/sql_query_form.lib.php:365 msgid "Replace existing bookmark of same name" msgstr "Remplacer un signet existant du même nom" -#: libraries/messages.inc.php:106 libraries/sql_query_form.lib.php:352 +#: libraries/messages.inc.php:102 libraries/sql_query_form.lib.php:352 #: sql.php:665 sql.php:666 sql.php:683 msgid "Bookmark this SQL query" msgstr "Conserver cette requête dans les signets" -#: libraries/messages.inc.php:107 libraries/sql_query_form.lib.php:466 +#: libraries/messages.inc.php:103 libraries/sql_query_form.lib.php:466 msgid "View only" msgstr "Voir uniquement" -#: libraries/messages.inc.php:109 tbl_structure.php:161 +#: libraries/messages.inc.php:105 tbl_structure.php:161 msgid "Browse distinct values" msgstr "Affiche les valeurs distinctes" -#: libraries/messages.inc.php:110 tbl_change.php:252 tbl_select.php:27 +#: libraries/messages.inc.php:106 tbl_change.php:252 tbl_select.php:27 #: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34 msgid "Browse foreign values" msgstr "Afficher les valeurs de la table liée" -#: libraries/messages.inc.php:118 libraries/mysql_charsets.lib.php:213 +#: libraries/messages.inc.php:114 libraries/mysql_charsets.lib.php:213 msgid "Bulgarian" msgstr "bulgare" -#: libraries/messages.inc.php:120 +#: libraries/messages.inc.php:116 msgid "\"bzipped\"" msgstr " «bzippé »" -#: libraries/messages.inc.php:122 +#: libraries/messages.inc.php:118 msgid "Calendar" msgstr "Calendrier" -#: libraries/messages.inc.php:129 tbl_indexes.php:75 +#: libraries/messages.inc.php:125 tbl_indexes.php:75 msgid "Can't rename index to PRIMARY!" msgstr "La clé ne peut être renommée PRIMARY!" -#: libraries/messages.inc.php:132 libraries/mysql_charsets.lib.php:223 +#: libraries/messages.inc.php:128 libraries/mysql_charsets.lib.php:223 #: libraries/mysql_charsets.lib.php:409 msgid "case-insensitive" msgstr "insensible à la casse" -#: libraries/messages.inc.php:133 libraries/mysql_charsets.lib.php:226 +#: libraries/messages.inc.php:129 libraries/mysql_charsets.lib.php:226 #: libraries/mysql_charsets.lib.php:411 msgid "case-sensitive" msgstr "sensible à la casse" -#: libraries/messages.inc.php:134 libraries/mysql_charsets.lib.php:332 +#: libraries/messages.inc.php:130 libraries/mysql_charsets.lib.php:332 msgid "Central European" msgstr "Europe centrale" -#: libraries/messages.inc.php:136 server_privileges.php:1969 +#: libraries/messages.inc.php:132 server_privileges.php:1969 msgid "... keep the old one." msgstr "... conserver intact l'ancien utilisateur." -#: libraries/messages.inc.php:137 server_privileges.php:1967 +#: libraries/messages.inc.php:133 server_privileges.php:1967 msgid "Create a new user with the same privileges and ..." msgstr "Créer un nouvel utilisateur avec les mêmes privilèges et ..." -#: libraries/messages.inc.php:138 server_privileges.php:1972 +#: libraries/messages.inc.php:134 server_privileges.php:1972 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -3308,77 +3308,77 @@ msgstr "" " ... supprimer l'ancien utilisateur, puis recharger les privilèges au " "serveur." -#: libraries/messages.inc.php:139 server_privileges.php:1970 +#: libraries/messages.inc.php:135 server_privileges.php:1970 msgid " ... delete the old one from the user tables." msgstr " ... supprimer l'ancien utilisateur." -#: libraries/messages.inc.php:140 server_privileges.php:1971 +#: libraries/messages.inc.php:136 server_privileges.php:1971 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "" " ... effacer tous les privilèges de l'ancien utilisateur, puis l'effacer." -#: libraries/messages.inc.php:141 server_privileges.php:1964 +#: libraries/messages.inc.php:137 server_privileges.php:1964 msgid "Change Login Information / Copy User" msgstr "Changement des informations de connexion / Copie d'utilisateur" -#: libraries/messages.inc.php:144 libraries/mysql_charsets.lib.php:107 +#: libraries/messages.inc.php:140 libraries/mysql_charsets.lib.php:107 msgid "Charset" msgstr "Jeu de caractères" -#: libraries/messages.inc.php:146 server_collations.php:40 +#: libraries/messages.inc.php:142 server_collations.php:40 msgid "Character Sets and Collations" msgstr "Jeux de caractères et interclassement" -#: libraries/messages.inc.php:147 libraries/server_links.inc.php:57 +#: libraries/messages.inc.php:143 libraries/server_links.inc.php:57 #: test/theme.php:109 msgid "Charsets" msgstr "Jeux de caractères" -#: libraries/messages.inc.php:149 tbl_operations.php:661 +#: libraries/messages.inc.php:145 tbl_operations.php:661 msgid "Check" msgstr "Vérifier" -#: libraries/messages.inc.php:151 server_databases.php:293 +#: libraries/messages.inc.php:147 server_databases.php:293 #: server_databases.php:294 msgid "Check Privileges" msgstr "Vérifier les privilèges" -#: libraries/messages.inc.php:152 server_databases.php:289 +#: libraries/messages.inc.php:148 server_databases.php:289 #, php-format msgid "Check privileges for database "%s"." msgstr "Vérifier les privilèges pour la base de données "%s"." -#: libraries/messages.inc.php:154 pdf_pages.php:261 +#: libraries/messages.inc.php:150 pdf_pages.php:261 msgid "Please choose a page to edit" msgstr "Page à éditer" -#: libraries/messages.inc.php:157 +#: libraries/messages.inc.php:153 msgid "Displaying Column Comments" msgstr "Commentaires de colonnes" -#: libraries/messages.inc.php:159 pdf_pages.php:483 view_create.php:148 +#: libraries/messages.inc.php:155 pdf_pages.php:483 view_create.php:148 msgid "Column names" msgstr "Nom des colonnes" -#: libraries/messages.inc.php:160 server_privileges.php:1685 +#: libraries/messages.inc.php:156 server_privileges.php:1685 msgid "Column-specific privileges" msgstr "Privilèges de colonnes" -#: libraries/messages.inc.php:164 +#: libraries/messages.inc.php:160 msgid "MySQL 4.0 compatible" msgstr "compatible MySQL 4.0" -#: libraries/messages.inc.php:165 +#: libraries/messages.inc.php:161 msgid "Complete inserts" msgstr "Insertions complètes" -#: libraries/messages.inc.php:168 +#: libraries/messages.inc.php:164 #, php-format msgid "Could not load default configuration from: \"%1$s\"" msgstr "Chargement de la configuration par défaut impossible depuis «%1$s»" -#: libraries/messages.inc.php:169 main.php:306 +#: libraries/messages.inc.php:165 main.php:306 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " @@ -3388,170 +3388,170 @@ msgstr "" "présent dans votre répertoire phpMyAdmin. Vous devriez le supprimer quand " "vous aurez terminé la configuration de phpMyAdmin." -#: libraries/messages.inc.php:171 pdf_schema.php:672 +#: libraries/messages.inc.php:167 pdf_schema.php:672 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Les coordonnées de la table %s n'ont pas été configurées" -#: libraries/messages.inc.php:173 server_status.php:433 +#: libraries/messages.inc.php:169 server_status.php:433 msgid "Connections" msgstr "Connexions" -#: libraries/messages.inc.php:179 tbl_operations.php:509 +#: libraries/messages.inc.php:175 tbl_operations.php:509 msgid "Copy table to (database.table):" msgstr "Copier la table vers (base.table) :" -#: libraries/messages.inc.php:180 tbl_move_copy.php:58 +#: libraries/messages.inc.php:176 tbl_move_copy.php:58 #, php-format msgid "Table %s has been copied to %s." msgstr "La table %s a été copiée vers %s." -#: libraries/messages.inc.php:181 tbl_move_copy.php:48 +#: libraries/messages.inc.php:177 tbl_move_copy.php:48 msgid "Can't copy table to same one!" msgstr "On ne peut copier la table sur elle-même!" -#: libraries/messages.inc.php:182 server_synchronize.php:94 +#: libraries/messages.inc.php:178 server_synchronize.php:94 msgid "Could not connect to the source" msgstr "Connexion à la source impossible" -#: libraries/messages.inc.php:183 server_synchronize.php:97 +#: libraries/messages.inc.php:179 server_synchronize.php:97 msgid "Could not connect to the target" msgstr "Connexion à la cible impossible" -#: libraries/messages.inc.php:184 server_processlist.php:24 +#: libraries/messages.inc.php:180 server_processlist.php:24 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" "phpMyAdmin n'a pu éliminer le processus %s. Il était probablement déjà fermé." -#: libraries/messages.inc.php:187 +#: libraries/messages.inc.php:183 #, php-format msgid "Create an index on %s columns" msgstr "Créer un index sur %s colonnes" -#: libraries/messages.inc.php:188 tbl_indexes.php:160 +#: libraries/messages.inc.php:184 tbl_indexes.php:160 msgid "Create a new index" msgstr "Créer un nouvel index" -#: libraries/messages.inc.php:191 pdf_pages.php:297 pmd_pdf.php:114 +#: libraries/messages.inc.php:187 pdf_pages.php:297 pmd_pdf.php:114 msgid "Create a page" msgstr "Créer une page" -#: libraries/messages.inc.php:192 +#: libraries/messages.inc.php:188 msgid "Creation of PDFs" msgstr "Génération de schémas en PDF" -#: libraries/messages.inc.php:193 pmd_general.php:74 pmd_general.php:306 +#: libraries/messages.inc.php:189 pmd_general.php:74 pmd_general.php:306 msgid "Create relation" msgstr "Nouvelle relation" -#: libraries/messages.inc.php:194 pmd_general.php:71 +#: libraries/messages.inc.php:190 pmd_general.php:71 #: server_synchronize.php:429 server_synchronize.php:872 msgid "Create table" msgstr "Nouvelle table" -#: libraries/messages.inc.php:195 +#: libraries/messages.inc.php:191 msgctxt "$strCreateTableShort" msgid "Create table" msgstr "Créer une table" -#: libraries/messages.inc.php:196 server_privileges.php:1994 +#: libraries/messages.inc.php:192 server_privileges.php:1994 msgid "Database for user" msgstr "Base de données pour cet utilisateur" -#: libraries/messages.inc.php:197 server_privileges.php:1999 +#: libraries/messages.inc.php:193 server_privileges.php:1999 msgid "Create database with same name and grant all privileges" msgstr "" "Créer une base portant son nom et donner à cet utilisateur tous les " "privilèges sur cette base" -#: libraries/messages.inc.php:198 +#: libraries/messages.inc.php:194 msgctxt "$strCreateUserDatabaseNone" msgid "None" msgstr "aucune" -#: libraries/messages.inc.php:199 server_privileges.php:2003 +#: libraries/messages.inc.php:195 server_privileges.php:2003 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Donner tous les privilèges sur la base de données "%s"" -#: libraries/messages.inc.php:200 server_privileges.php:2000 +#: libraries/messages.inc.php:196 server_privileges.php:2000 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Donner les privilèges passepartout (utilisateur\\_%)" -#: libraries/messages.inc.php:201 +#: libraries/messages.inc.php:197 msgid "Creation/Update/Check dates" msgstr "Dates de création/modification/vérification" -#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:229 +#: libraries/messages.inc.php:199 libraries/mysql_charsets.lib.php:229 msgid "Croatian" msgstr "croate" -#: libraries/messages.inc.php:204 +#: libraries/messages.inc.php:200 msgid "CSV" msgstr "CSV" -#: libraries/messages.inc.php:205 libraries/server_synchronize.lib.php:1343 +#: libraries/messages.inc.php:201 libraries/server_synchronize.lib.php:1343 #: libraries/server_synchronize.lib.php:1369 msgid "Current server" msgstr "Serveur actuel" -#: libraries/messages.inc.php:206 main.php:159 +#: libraries/messages.inc.php:202 main.php:159 msgid "Custom color" msgstr "Couleur au choix" -#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:365 +#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:365 msgid "Cyrillic" msgstr "cyrillique" -#: libraries/messages.inc.php:208 libraries/mysql_charsets.lib.php:232 +#: libraries/messages.inc.php:204 libraries/mysql_charsets.lib.php:232 msgid "Czech" msgstr "tchèque" -#: libraries/messages.inc.php:209 libraries/mysql_charsets.lib.php:383 +#: libraries/messages.inc.php:205 libraries/mysql_charsets.lib.php:383 msgid "Czech-Slovak" msgstr "tchèque-slovaque" -#: libraries/messages.inc.php:211 libraries/mysql_charsets.lib.php:235 +#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:235 msgid "Danish" msgstr "danois" -#: libraries/messages.inc.php:214 +#: libraries/messages.inc.php:210 msgid "Database export options" msgstr "Options d'exportation" -#: libraries/messages.inc.php:217 server_synchronize.php:122 +#: libraries/messages.inc.php:213 server_synchronize.php:122 #: server_synchronize.php:125 tbl_create.php:82 tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "La base de données «%s» n'existe pas." -#: libraries/messages.inc.php:219 server_databases.php:63 +#: libraries/messages.inc.php:215 server_databases.php:63 #, php-format msgid "%s databases have been dropped successfully." msgstr "%s bases de données ont été supprimées." -#: libraries/messages.inc.php:220 libraries/server_synchronize.lib.php:1341 +#: libraries/messages.inc.php:216 libraries/server_synchronize.lib.php:1341 #: server_synchronize.php:1110 msgid "Source database" msgstr "Base de données source" -#: libraries/messages.inc.php:221 server_databases.php:88 +#: libraries/messages.inc.php:217 server_databases.php:88 msgid "Databases statistics" msgstr "Statistiques sur les bases de données" -#: libraries/messages.inc.php:222 server_databases.php:362 +#: libraries/messages.inc.php:218 server_databases.php:362 #: server_databases.php:363 msgid "Disable Statistics" msgstr "Désactiver les statistiques" -#: libraries/messages.inc.php:223 server_databases.php:358 +#: libraries/messages.inc.php:219 server_databases.php:358 #: server_databases.php:359 msgid "Enable Statistics" msgstr "Activer les statistiques" -#: libraries/messages.inc.php:224 server_databases.php:366 +#: libraries/messages.inc.php:220 server_databases.php:366 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -3559,30 +3559,30 @@ msgstr "" "Note: L'activation des statistiques peut causer un trafic important entre le " "serveur web et le serveur MySQL." -#: libraries/messages.inc.php:225 libraries/server_synchronize.lib.php:1367 +#: libraries/messages.inc.php:221 libraries/server_synchronize.lib.php:1367 #: server_synchronize.php:1112 msgid "Target database" msgstr "Base de données cible" -#: libraries/messages.inc.php:228 server_synchronize.php:425 +#: libraries/messages.inc.php:224 server_synchronize.php:425 #: server_synchronize.php:868 msgid "Data Difference" msgstr "Différence dans les données" -#: libraries/messages.inc.php:231 server_synchronize.php:272 +#: libraries/messages.inc.php:227 server_synchronize.php:272 msgid "Data Synchronization" msgstr "Synchronisation des données" -#: libraries/messages.inc.php:235 server_privileges.php:526 +#: libraries/messages.inc.php:231 server_privileges.php:526 #: server_privileges.php:1679 msgid "Database-specific privileges" msgstr "Privilèges spécifiques à une base de données" -#: libraries/messages.inc.php:237 server_privileges.php:2136 +#: libraries/messages.inc.php:233 server_privileges.php:2136 msgid "database-specific" msgstr "spécifique à cette base de données" -#: libraries/messages.inc.php:240 libraries/tbl_properties.inc.php:106 +#: libraries/messages.inc.php:236 libraries/tbl_properties.inc.php:106 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" @@ -3590,32 +3590,32 @@ msgstr "" "Pour les valeurs par défaut, veuillez n'entrer qu'une seule valeur, sans " "caractère d'échappement ou apostrophes, sous la forme: a" -#: libraries/messages.inc.php:241 tbl_operations.php:589 +#: libraries/messages.inc.php:237 tbl_operations.php:589 msgid "Defragment table" msgstr "Défragmenter la table" -#: libraries/messages.inc.php:242 +#: libraries/messages.inc.php:238 msgid "Use delayed inserts" msgstr "Insertions avec délais (DELAYED)" -#: libraries/messages.inc.php:245 server_privileges.php:1243 +#: libraries/messages.inc.php:241 server_privileges.php:1243 msgid "No users selected for deleting!" msgstr "Aucun utilisateur n'a été choisi en vue de le détruire!" -#: libraries/messages.inc.php:246 pmd_general.php:372 +#: libraries/messages.inc.php:242 pmd_general.php:372 msgid "Delete relation" msgstr "Effacer la relation" -#: libraries/messages.inc.php:248 server_privileges.php:1232 +#: libraries/messages.inc.php:244 server_privileges.php:1232 #, php-format msgid "Deleting %s" msgstr "Destruction de %s" -#: libraries/messages.inc.php:249 libraries/sql_query_form.lib.php:388 +#: libraries/messages.inc.php:245 libraries/sql_query_form.lib.php:388 msgid "Delimiter" msgstr "Délimiteur" -#: libraries/messages.inc.php:250 pdf_pages.php:506 +#: libraries/messages.inc.php:246 pdf_pages.php:506 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -3623,7 +3623,7 @@ msgstr "" "Cette page fait référence à des tables qui n'existent plus. Voulez-vous " "effacer ces références?" -#: libraries/messages.inc.php:254 pmd_help.php:29 +#: libraries/messages.inc.php:250 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 " @@ -3633,143 +3633,143 @@ msgstr "" "n'est plus le champ à afficher, cliquer l'icône «Champ à afficher», puis " "cliquer sur le nom de champ approprié." -#: libraries/messages.inc.php:256 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:252 libraries/mysql_charsets.lib.php:247 msgid "dictionary" msgstr "dictionnaire" -#: libraries/messages.inc.php:257 libraries/server_synchronize.lib.php:1348 +#: libraries/messages.inc.php:253 libraries/server_synchronize.lib.php:1348 msgid "Difference" msgstr "Différence" -#: libraries/messages.inc.php:258 pmd_general.php:87 +#: libraries/messages.inc.php:254 pmd_general.php:87 msgid "Direct links" msgstr "Liens directs" -#: libraries/messages.inc.php:261 +#: libraries/messages.inc.php:257 msgid "Disable foreign key checks" msgstr "Désactiver la vérification des clés étrangères" -#: libraries/messages.inc.php:262 +#: libraries/messages.inc.php:258 msgid "Display Features" msgstr "Affichage infobulle" -#: libraries/messages.inc.php:263 tbl_select.php:301 +#: libraries/messages.inc.php:259 tbl_select.php:301 msgid "Display order:" msgstr "Ordre d'affichage :" -#: libraries/messages.inc.php:265 tbl_select.php:132 +#: libraries/messages.inc.php:261 tbl_select.php:132 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Recherche «par valeur» (passepartout: «% ») " -#: libraries/messages.inc.php:266 +#: libraries/messages.inc.php:262 msgid "DocSQL" msgstr "DocSQL" -#: libraries/messages.inc.php:268 +#: libraries/messages.inc.php:264 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Ne pas utiliser AUTO_INCREMENT pour la valeur zéro" -#: libraries/messages.inc.php:273 server_privileges.php:1579 +#: libraries/messages.inc.php:269 server_privileges.php:1579 #: server_privileges.php:1580 server_privileges.php:1581 msgid "Drop the databases that have the same names as the users." msgstr "" "Supprimer les bases de données portant le même nom que les utilisateurs" -#: libraries/messages.inc.php:278 tbl_printview.php:382 tbl_structure.php:743 +#: libraries/messages.inc.php:274 tbl_printview.php:382 tbl_structure.php:743 msgid "dynamic" msgstr "dynamique" -#: libraries/messages.inc.php:282 server_privileges.php:1324 +#: libraries/messages.inc.php:278 server_privileges.php:1324 #: server_privileges.php:1610 msgid "Edit Privileges" msgstr "Changer les privilèges" -#: libraries/messages.inc.php:283 tbl_printview.php:341 tbl_structure.php:688 +#: libraries/messages.inc.php:279 tbl_printview.php:341 tbl_structure.php:688 msgid "Effective" msgstr "effectif" -#: libraries/messages.inc.php:286 libraries/relation.lib.php:100 +#: libraries/messages.inc.php:282 libraries/relation.lib.php:100 msgid "Enabled" msgstr "activé" -#: libraries/messages.inc.php:287 +#: libraries/messages.inc.php:283 msgid "Enclose export in a transaction" msgstr "Utiliser le mode transactionnel" -#: libraries/messages.inc.php:288 libraries/sqlparser.lib.php:177 +#: libraries/messages.inc.php:284 libraries/sqlparser.lib.php:177 msgid "END CUT" msgstr "Fin de la section à couper" -#: libraries/messages.inc.php:290 libraries/sqlparser.lib.php:183 +#: libraries/messages.inc.php:286 libraries/sqlparser.lib.php:183 msgid "END RAW" msgstr "Fin des informations sur l'anomalie" -#: libraries/messages.inc.php:293 libraries/server_links.inc.php:61 +#: libraries/messages.inc.php:289 libraries/server_links.inc.php:61 #: test/theme.php:113 msgid "Engines" msgstr "Moteurs" -#: libraries/messages.inc.php:295 libraries/mysql_charsets.lib.php:238 +#: libraries/messages.inc.php:291 libraries/mysql_charsets.lib.php:238 msgid "English" msgstr "anglais" -#: libraries/messages.inc.php:296 server_privileges.php:393 +#: libraries/messages.inc.php:292 server_privileges.php:393 #: server_privileges.php:535 server_privileges.php:1501 msgid " Note: MySQL privilege names are expressed in English " msgstr " Veuillez noter que les noms de privilèges sont exprimés en anglais" -#: libraries/messages.inc.php:298 libraries/zip_extension.lib.php:49 +#: libraries/messages.inc.php:294 libraries/zip_extension.lib.php:49 #: libraries/zip_extension.lib.php:51 libraries/zip_extension.lib.php:66 msgid "Error in ZIP archive:" msgstr "Erreur rencontrée dans l'archive ZIP :" -#: libraries/messages.inc.php:303 libraries/mysql_charsets.lib.php:241 +#: libraries/messages.inc.php:299 libraries/mysql_charsets.lib.php:241 msgid "Esperanto" msgstr "Espéranto" -#: libraries/messages.inc.php:304 libraries/mysql_charsets.lib.php:244 +#: libraries/messages.inc.php:300 libraries/mysql_charsets.lib.php:244 msgid "Estonian" msgstr "estonien" -#: libraries/messages.inc.php:305 libraries/tbl_triggers.lib.php:29 +#: libraries/messages.inc.php:301 libraries/tbl_triggers.lib.php:29 msgid "Event" msgstr "Événement" -#: libraries/messages.inc.php:307 +#: libraries/messages.inc.php:303 msgid "Excel edition" msgstr "Excel en version" -#: libraries/messages.inc.php:311 pmd_pdf.php:85 +#: libraries/messages.inc.php:307 pmd_pdf.php:85 msgid "Export/Import to scale" msgstr "Exporter/Importer à l'échelle" -#: libraries/messages.inc.php:313 +#: libraries/messages.inc.php:309 msgid "Extended inserts" msgstr "Insertions étendues" -#: libraries/messages.inc.php:314 pdf_schema.php:1267 pdf_schema.php:1288 +#: libraries/messages.inc.php:310 pdf_schema.php:1267 pdf_schema.php:1288 #: tbl_printview.php:147 tbl_structure.php:183 tbl_tracking.php:278 msgid "Extra" msgstr "Extra" -#: libraries/messages.inc.php:316 server_status.php:447 +#: libraries/messages.inc.php:312 server_status.php:447 msgid "Failed attempts" msgstr "Tentatives échouées" -#: libraries/messages.inc.php:318 tbl_structure.php:375 +#: libraries/messages.inc.php:314 tbl_structure.php:375 #, php-format msgid "Field %s has been dropped" msgstr "Le champ %s a été effacé" -#: libraries/messages.inc.php:322 libraries/sql_query_form.lib.php:317 +#: libraries/messages.inc.php:318 libraries/sql_query_form.lib.php:317 msgid "Fields" msgstr "Champs" -#: libraries/messages.inc.php:332 server_binlog.php:136 +#: libraries/messages.inc.php:328 server_binlog.php:136 msgid "Files" msgstr "Fichiers" -#: libraries/messages.inc.php:334 server_privileges.php:1597 +#: libraries/messages.inc.php:330 server_privileges.php:1597 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -3782,121 +3782,121 @@ msgstr "" "effectifs, si des changements manuels ont été apportés. Dans ce cas, vous " "devriez %srecharger les privilèges%s avant de continuer." -#: libraries/messages.inc.php:335 server_status.php:289 +#: libraries/messages.inc.php:331 server_status.php:289 msgid "Flush query cache" msgstr "Vider la cache des requêtes" -#: libraries/messages.inc.php:336 +#: libraries/messages.inc.php:332 msgid "Flush the table (\"FLUSH\")" msgstr "Recharger la table ( «FLUSH »)" -#: libraries/messages.inc.php:337 server_status.php:271 +#: libraries/messages.inc.php:333 server_status.php:271 msgid "Flush (close) all tables" msgstr "Fermer toutes les tables" -#: libraries/messages.inc.php:339 tbl_relation.php:279 +#: libraries/messages.inc.php:335 tbl_relation.php:279 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" "Erreur lors de la création de la clé étrangère sur %1$s (vérifiez le type " "des colonnes)" -#: libraries/messages.inc.php:341 setup/lib/messages.inc.php:88 +#: libraries/messages.inc.php:337 setup/lib/messages.inc.php:88 #: tbl_printview.php:376 tbl_structure.php:738 msgid "Format" msgstr "format" -#: libraries/messages.inc.php:344 server_replication.php:325 +#: libraries/messages.inc.php:340 server_replication.php:325 msgid "Full start" msgstr "Démarrer complètement" -#: libraries/messages.inc.php:345 server_replication.php:325 +#: libraries/messages.inc.php:341 server_replication.php:325 msgid "Full stop" msgstr "Arrêter complètement" -#: libraries/messages.inc.php:347 tbl_change.php:282 tbl_change.php:320 +#: libraries/messages.inc.php:343 tbl_change.php:282 tbl_change.php:320 msgid "Function" msgstr "Fonction" -#: libraries/messages.inc.php:355 libraries/mysql_charsets.lib.php:377 +#: libraries/messages.inc.php:351 libraries/mysql_charsets.lib.php:377 msgid "Georgian" msgstr "géorgien" -#: libraries/messages.inc.php:356 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:352 libraries/mysql_charsets.lib.php:247 #: libraries/mysql_charsets.lib.php:250 msgid "German" msgstr "allemand" -#: libraries/messages.inc.php:357 themes.php:42 +#: libraries/messages.inc.php:353 themes.php:42 msgid "Get more themes!" msgstr "Obtenez d'autres thèmes!" -#: libraries/messages.inc.php:358 server_privileges.php:2134 +#: libraries/messages.inc.php:354 server_privileges.php:2134 msgid "global" msgstr "global" -#: libraries/messages.inc.php:359 server_privileges.php:524 +#: libraries/messages.inc.php:355 server_privileges.php:524 #: server_privileges.php:1500 msgid "Global privileges" msgstr "Privilèges globaux" -#: libraries/messages.inc.php:360 server_variables.php:55 +#: libraries/messages.inc.php:356 server_variables.php:55 #: server_variables.php:89 msgid "Global value" msgstr "Valeur globale" -#: libraries/messages.inc.php:365 server_privileges.php:1502 +#: libraries/messages.inc.php:361 server_privileges.php:1502 #: server_privileges.php:1684 server_privileges.php:2033 msgid "Grant" msgstr " «Grant »" -#: libraries/messages.inc.php:366 libraries/mysql_charsets.lib.php:380 +#: libraries/messages.inc.php:362 libraries/mysql_charsets.lib.php:380 msgid "Greek" msgstr "grec" -#: libraries/messages.inc.php:367 +#: libraries/messages.inc.php:363 msgid "\"gzipped\"" msgstr " «gzippé »" -#: libraries/messages.inc.php:369 server_status.php:250 +#: libraries/messages.inc.php:365 server_status.php:250 msgid "Handler" msgstr "Gestionnaire" -#: libraries/messages.inc.php:370 server_synchronize.php:464 +#: libraries/messages.inc.php:366 server_synchronize.php:464 msgid "Selected target tables have been synchronized with source tables." msgstr "Les tables sélectionnées ont été synchronisées." -#: libraries/messages.inc.php:372 libraries/mysql_charsets.lib.php:374 +#: libraries/messages.inc.php:368 libraries/mysql_charsets.lib.php:374 msgid "Hebrew" msgstr "hébreu" -#: libraries/messages.inc.php:373 pmd_general.php:83 +#: libraries/messages.inc.php:369 pmd_general.php:83 msgid "Help" msgstr "Aide" -#: libraries/messages.inc.php:374 +#: libraries/messages.inc.php:370 msgid "Use hexadecimal for BLOB" msgstr "Utiliser l'hexadecimal pour les BLOB" -#: libraries/messages.inc.php:376 pmd_general.php:120 +#: libraries/messages.inc.php:372 pmd_general.php:120 msgid "Hide/Show all" msgstr "Cacher/montrer tout" -#: libraries/messages.inc.php:377 pmd_general.php:124 +#: libraries/messages.inc.php:373 pmd_general.php:124 msgid "Hide/Show Tables with no relation" msgstr "Cacher/montrer les tables sans liens" -#: libraries/messages.inc.php:378 libraries/navigation_header.inc.php:54 +#: libraries/messages.inc.php:374 libraries/navigation_header.inc.php:54 #: libraries/navigation_header.inc.php:57 #: libraries/navigation_header.inc.php:58 msgid "Home" msgstr "Accueil" -#: libraries/messages.inc.php:379 main.php:233 +#: libraries/messages.inc.php:375 main.php:233 msgid "Official Homepage" msgstr "Site officiel" -#: libraries/messages.inc.php:382 libraries/replication_gui.lib.php:327 +#: libraries/messages.inc.php:378 libraries/replication_gui.lib.php:327 #: server_privileges.php:753 msgid "" "When Host table is used, this field is ignored and values stored in Host " @@ -3905,98 +3905,98 @@ msgstr "" "Quand la table Host est utilisée, ce champ est ignoré et les valeurs de la " "table Host sont utilisées à la place." -#: libraries/messages.inc.php:383 +#: libraries/messages.inc.php:379 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/messages.inc.php:384 libraries/mysql_charsets.lib.php:253 +#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:253 msgid "Hungarian" msgstr "hongrois" -#: libraries/messages.inc.php:386 libraries/mysql_charsets.lib.php:256 +#: libraries/messages.inc.php:382 libraries/mysql_charsets.lib.php:256 msgid "Icelandic" msgstr "islandais" -#: libraries/messages.inc.php:387 server_processlist.php:53 +#: libraries/messages.inc.php:383 server_processlist.php:53 msgid "ID" msgstr "ID" -#: libraries/messages.inc.php:388 libraries/mult_submits.inc.php:108 +#: libraries/messages.inc.php:384 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:479 msgid "Fulltext" msgstr "Texte entier" -#: libraries/messages.inc.php:389 +#: libraries/messages.inc.php:385 msgid "Ignore duplicate rows" msgstr "Ignorer les doublons" -#: libraries/messages.inc.php:390 tbl_change.php:302 tbl_indexes.php:200 +#: libraries/messages.inc.php:386 tbl_change.php:302 tbl_indexes.php:200 #: tbl_indexes.php:225 msgid "Ignore" msgstr "Ignorer" -#: libraries/messages.inc.php:391 +#: libraries/messages.inc.php:387 msgid "Use ignore inserts" msgstr "Ignorer les erreurs de doublons (INSERT IGNORE)" -#: libraries/messages.inc.php:392 +#: libraries/messages.inc.php:388 msgid "Column names in first row" msgstr "La première ligne contient le nom des colonnes" -#: libraries/messages.inc.php:393 +#: libraries/messages.inc.php:389 msgid "Do not import empty rows" msgstr "Ne pas importer les lignes vides" -#: libraries/messages.inc.php:394 pmd_general.php:104 +#: libraries/messages.inc.php:390 pmd_general.php:104 msgid "Import/Export coordinates for PDF schema" msgstr "Importer/Exporter les coordonnées pour le schéma PDF" -#: libraries/messages.inc.php:395 querywindow.php:104 +#: libraries/messages.inc.php:391 querywindow.php:104 msgid "Import files" msgstr "Importe les fichiers" -#: libraries/messages.inc.php:403 +#: libraries/messages.inc.php:399 msgid "Import currencies ($5.00 to 5.00)" msgstr "Importer les valeurs de monnaie ($5.00 devient 5.00)" -#: libraries/messages.inc.php:404 libraries/messages.inc.php:584 +#: libraries/messages.inc.php:400 libraries/messages.inc.php:580 msgid "Open Document Spreadsheet" msgstr "Open Document Spreadsheet" -#: libraries/messages.inc.php:405 +#: libraries/messages.inc.php:401 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "Importer les pourcentages en tant que décimales (12.00% devient .12)" -#: libraries/messages.inc.php:409 +#: libraries/messages.inc.php:405 msgid "Excel 97-2003 XLS Workbook" msgstr "Excel 97-2003 XLS Workbook" -#: libraries/messages.inc.php:410 +#: libraries/messages.inc.php:406 msgid "Excel 2007 XLSX Workbook" msgstr "Excel 2007 XLSX Workbook" -#: libraries/messages.inc.php:414 libraries/mult_submits.inc.php:98 +#: libraries/messages.inc.php:410 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:476 tbl_structure.php:674 msgid "Index" msgstr "Index" -#: libraries/messages.inc.php:415 tbl_indexes.php:168 +#: libraries/messages.inc.php:411 tbl_indexes.php:168 msgid "Index name:" msgstr "Nom de l'index :" -#: libraries/messages.inc.php:416 tbl_indexes.php:174 +#: libraries/messages.inc.php:412 tbl_indexes.php:174 msgid "Index type:" msgstr "Type d'index :" -#: libraries/messages.inc.php:417 sql.php:639 +#: libraries/messages.inc.php:413 sql.php:639 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Il y a des problèmes avec les index de la table `%s`" -#: libraries/messages.inc.php:427 main.php:266 +#: libraries/messages.inc.php:423 main.php:266 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -4008,24 +4008,24 @@ msgstr "" "serveur MySQL est donc ouvert aux intrusions, et vous devriez corriger ce " "problème de sécurité." -#: libraries/messages.inc.php:428 tbl_change.php:1130 +#: libraries/messages.inc.php:424 tbl_change.php:1130 msgid "Insert as new row" msgstr "Sauvegarder un nouvel enregistrement" -#: libraries/messages.inc.php:429 sql.php:496 tbl_replace.php:386 +#: libraries/messages.inc.php:425 sql.php:496 tbl_replace.php:386 #, php-format msgid "Inserted row id: %1$d" msgstr "Identifiant de l'enregistrement inséré : %1$d" -#: libraries/messages.inc.php:430 tbl_change.php:1131 +#: libraries/messages.inc.php:426 tbl_change.php:1131 msgid "Insert as new row and ignore errors" msgstr "Sauvegarder un nouvel enregistrement (ignorer les erreurs)" -#: libraries/messages.inc.php:432 main.php:139 +#: libraries/messages.inc.php:428 main.php:139 msgid "Interface" msgstr "Interface" -#: libraries/messages.inc.php:433 tbl_relation.php:407 +#: libraries/messages.inc.php:429 tbl_relation.php:407 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -4033,31 +4033,31 @@ msgstr "" "Une relation interne n'est pas nécessaire lorsqu'une clé correspondante de " "type FOREIGN KEY existe" -#: libraries/messages.inc.php:435 pdf_pages.php:303 +#: libraries/messages.inc.php:431 pdf_pages.php:303 msgid "Internal relations" msgstr "Relations internes" -#: libraries/messages.inc.php:438 tbl_indexes.php:256 tbl_structure.php:590 +#: libraries/messages.inc.php:434 tbl_indexes.php:256 tbl_structure.php:590 #: tbl_structure.php:601 msgid "Column count has to be larger than zero." msgstr "Le nombre de champs doit être plus grand que zéro." -#: libraries/messages.inc.php:444 libraries/tbl_properties.inc.php:784 +#: libraries/messages.inc.php:440 libraries/tbl_properties.inc.php:784 #: tbl_structure.php:537 msgid "You have to add at least one field." msgstr "Vous devez ajouter au moins un champ" -#: libraries/messages.inc.php:449 +#: libraries/messages.inc.php:445 #, php-format msgid "Invalid server index: \"%s\"" msgstr "Indice de serveur invalide: «%s »" -#: libraries/messages.inc.php:452 libraries/mysql_charsets.lib.php:259 +#: libraries/messages.inc.php:448 libraries/mysql_charsets.lib.php:259 #: libraries/mysql_charsets.lib.php:349 msgid "Japanese" msgstr "japonais" -#: libraries/messages.inc.php:453 main.php:331 +#: libraries/messages.inc.php:449 main.php:331 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " @@ -4067,109 +4067,109 @@ msgstr "" "fonctions de phpMyAdmin seront manquantes. Par exemple le cadre de " "navigation ne sera pas mis à jour automatiquement." -#: libraries/messages.inc.php:454 server_status.php:257 +#: libraries/messages.inc.php:450 server_status.php:257 msgid "Joins" msgstr "Jointures" -#: libraries/messages.inc.php:457 server_privileges.php:763 +#: libraries/messages.inc.php:453 server_privileges.php:763 msgid "Do not change the password" msgstr "Conserver le mot de passe" -#: libraries/messages.inc.php:458 server_status.php:256 +#: libraries/messages.inc.php:454 server_status.php:256 msgid "Key cache" msgstr "Cache des clés" -#: libraries/messages.inc.php:462 libraries/mysql_charsets.lib.php:268 +#: libraries/messages.inc.php:458 libraries/mysql_charsets.lib.php:268 #: libraries/mysql_charsets.lib.php:371 msgid "Korean" msgstr "coréen" -#: libraries/messages.inc.php:466 libraries/select_lang.lib.php:480 +#: libraries/messages.inc.php:462 libraries/select_lang.lib.php:480 #: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492 #, php-format msgid "Unknown language: %1$s." msgstr "Langue inconnue: %1$s." -#: libraries/messages.inc.php:468 +#: libraries/messages.inc.php:464 msgid "Table caption" msgstr "Sous-titre de la table" -#: libraries/messages.inc.php:469 +#: libraries/messages.inc.php:465 msgid "Content of table __TABLE__" msgstr "Contenu de la table __TABLE__" -#: libraries/messages.inc.php:470 +#: libraries/messages.inc.php:466 msgid "Continued table caption" msgstr "Sous-titre de la table (suite)" -#: libraries/messages.inc.php:471 +#: libraries/messages.inc.php:467 msgid "(continued)" msgstr "(suite)" -#: libraries/messages.inc.php:472 +#: libraries/messages.inc.php:468 msgid "Include table caption" msgstr "Inclure les sous-titres" -#: libraries/messages.inc.php:473 +#: libraries/messages.inc.php:469 msgid "Label key" msgstr "Clé de l'étiquette" -#: libraries/messages.inc.php:474 +#: libraries/messages.inc.php:470 msgid "LaTeX" msgstr "LaTeX" -#: libraries/messages.inc.php:475 +#: libraries/messages.inc.php:471 msgid "Structure of table __TABLE__" msgstr "Structure de la table __TABLE__" -#: libraries/messages.inc.php:476 libraries/mysql_charsets.lib.php:262 +#: libraries/messages.inc.php:472 libraries/mysql_charsets.lib.php:262 msgid "Latvian" msgstr "letton" -#: libraries/messages.inc.php:477 +#: libraries/messages.inc.php:473 msgid "CSV using LOAD DATA" msgstr "CSV via LOAD DATA" -#: libraries/messages.inc.php:478 +#: libraries/messages.inc.php:474 msgid "Use LOCAL keyword" msgstr "Utiliser l'option LOCAL" -#: libraries/messages.inc.php:479 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:475 libraries/tbl_properties.inc.php:105 msgid "Length/Values" msgstr "Taille/Valeurs*" -#: libraries/messages.inc.php:480 tbl_select.php:295 +#: libraries/messages.inc.php:476 tbl_select.php:295 msgid "Number of rows per page" msgstr "Nombre d'enregistrements par page" -#: libraries/messages.inc.php:484 libraries/mysql_charsets.lib.php:265 +#: libraries/messages.inc.php:480 libraries/mysql_charsets.lib.php:265 msgid "Lithuanian" msgstr "lituanien" -#: libraries/messages.inc.php:485 libraries/replication_gui.lib.php:302 +#: libraries/messages.inc.php:481 libraries/replication_gui.lib.php:302 #: server_privileges.php:729 msgid "Local" msgstr "Local" -#: libraries/messages.inc.php:487 server_privileges.php:669 +#: libraries/messages.inc.php:483 server_privileges.php:669 msgid "Login Information" msgstr "Information pour la connexion" -#: libraries/messages.inc.php:490 libraries/navigation_header.inc.php:67 +#: libraries/messages.inc.php:486 libraries/navigation_header.inc.php:67 #: libraries/navigation_header.inc.php:70 #: libraries/navigation_header.inc.php:71 main.php:99 msgid "Log out" msgstr "Quitter" -#: libraries/messages.inc.php:497 server_status.php:440 +#: libraries/messages.inc.php:493 server_status.php:440 msgid "max. concurrent connections" msgstr "max. de connexions simultanées" -#: libraries/messages.inc.php:498 +#: libraries/messages.inc.php:494 msgid "Maximal length of created query" msgstr "Taille maximum de la requête générée" -#: libraries/messages.inc.php:500 main.php:282 +#: libraries/messages.inc.php:496 main.php:282 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -4180,7 +4180,7 @@ msgstr "" "phpMyAdmin est incapable de gérer correctement les caractères et il peut en " "résulter des problèmes." -#: libraries/messages.inc.php:501 main.php:274 +#: libraries/messages.inc.php:497 main.php:274 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -4190,24 +4190,24 @@ msgstr "" "option est incompatible avec phpMyAdmin et peut nuire au traitement des " "données!" -#: libraries/messages.inc.php:502 +#: libraries/messages.inc.php:498 msgid "MediaWiki Table" msgstr "Tableau MediaWiki" -#: libraries/messages.inc.php:503 transformation_overview.php:25 +#: libraries/messages.inc.php:499 transformation_overview.php:25 msgid "Available MIME types" msgstr "Types MIME disponibles" -#: libraries/messages.inc.php:504 transformation_overview.php:43 +#: libraries/messages.inc.php:500 transformation_overview.php:43 msgid "Available transformations" msgstr "Transformations disponibles" -#: libraries/messages.inc.php:505 +#: libraries/messages.inc.php:501 msgctxt "$strMIME_description" msgid "Description" msgstr "Description" -#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:580 +#: libraries/messages.inc.php:503 libraries/tbl_properties.inc.php:580 #: transformation_overview.php:60 #, php-format msgid "" @@ -4217,7 +4217,7 @@ msgstr "" "Aucune description n'est disponible pour cette transformation.
Veuillez " "demander à son auteur, des détails sur %s." -#: libraries/messages.inc.php:509 libraries/tbl_properties.inc.php:137 +#: libraries/messages.inc.php:505 libraries/tbl_properties.inc.php:137 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -4226,7 +4226,7 @@ msgstr "" "La %sdescription des transformations%s explique les transformations " "possibles en fonction des types MIME." -#: libraries/messages.inc.php:510 libraries/tbl_properties.inc.php:146 +#: libraries/messages.inc.php:506 libraries/tbl_properties.inc.php:146 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -4238,58 +4238,58 @@ msgstr "" "ou une apostrophe (\"'\") parmi ces valeurs, faites-le précéder du caractère " "d'échappement, par exemple '\\\\xyz' or 'a\\'b')." -#: libraries/messages.inc.php:511 libraries/tbl_properties.inc.php:145 +#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:145 msgid "Transformation options" msgstr "Options de transformation" -#: libraries/messages.inc.php:513 transformation_overview.php:38 +#: libraries/messages.inc.php:509 transformation_overview.php:38 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "" "Les types MIME affichées en italiques ne possèdent pas de fonctions de " "transformation." -#: libraries/messages.inc.php:515 tbl_indexes.php:162 +#: libraries/messages.inc.php:511 tbl_indexes.php:162 msgid "Modify an index" msgstr "Modifier un index" -#: libraries/messages.inc.php:517 pmd_general.php:108 +#: libraries/messages.inc.php:513 pmd_general.php:108 msgid "Move Menu" msgstr "Déplacer le menu" -#: libraries/messages.inc.php:518 tbl_operations.php:276 +#: libraries/messages.inc.php:514 tbl_operations.php:276 msgid "Move table to (database.table):" msgstr "Déplacer la table vers (base.table) : " -#: libraries/messages.inc.php:519 tbl_move_copy.php:56 +#: libraries/messages.inc.php:515 tbl_move_copy.php:56 #, php-format msgid "Table %s has been moved to %s." msgstr "La table %s a été déplacée vers %s." -#: libraries/messages.inc.php:520 tbl_move_copy.php:46 +#: libraries/messages.inc.php:516 tbl_move_copy.php:46 msgid "Can't move table to same one!" msgstr "On ne peut déplacer la table sur elle-même!" -#: libraries/messages.inc.php:521 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:517 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 #: libraries/mysql_charsets.lib.php:332 libraries/mysql_charsets.lib.php:354 #: libraries/mysql_charsets.lib.php:365 msgid "multilingual" msgstr "multilingue" -#: libraries/messages.inc.php:534 main.php:193 +#: libraries/messages.inc.php:530 main.php:193 msgid "MySQL charset" msgstr "Jeu de caractères pour MySQL" -#: libraries/messages.inc.php:535 main.php:211 +#: libraries/messages.inc.php:531 main.php:211 msgid "MySQL client version" msgstr "Version du client MySQL" -#: libraries/messages.inc.php:536 main.php:125 +#: libraries/messages.inc.php:532 main.php:125 msgid "MySQL connection collation" msgstr "Interclassement pour la connexion MySQL" -#: libraries/messages.inc.php:537 main.php:346 +#: libraries/messages.inc.php:533 main.php:346 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -4298,54 +4298,54 @@ msgstr "" "La version de votre bibliothèque MySQL (%s) diffère de la version de votre " "serveur MySQL (%s). Ceci peut occasionner un comportement imprévisible." -#: libraries/messages.inc.php:539 server_status.php:294 +#: libraries/messages.inc.php:535 server_status.php:294 msgid "Show processes" msgstr "Afficher les processus" -#: libraries/messages.inc.php:545 navigation.php:210 server_databases.php:371 +#: libraries/messages.inc.php:541 navigation.php:210 server_databases.php:371 #: server_synchronize.php:1191 msgid "No databases" msgstr "Aucune base de données" -#: libraries/messages.inc.php:546 server_databases.php:52 +#: libraries/messages.inc.php:542 server_databases.php:52 msgid "No databases selected." msgstr "Aucune base de données n'a été sélectionnée." -#: libraries/messages.inc.php:548 libraries/relation.lib.php:1173 +#: libraries/messages.inc.php:544 libraries/relation.lib.php:1173 msgid "no description" msgstr "pas de description" -#: libraries/messages.inc.php:552 libraries/zip_extension.lib.php:26 +#: libraries/messages.inc.php:548 libraries/zip_extension.lib.php:26 msgid "No files found inside ZIP archive!" msgstr "Aucun fichier présent dans l'archive ZIP!" -#: libraries/messages.inc.php:555 tbl_indexes.php:91 +#: libraries/messages.inc.php:551 tbl_indexes.php:91 msgid "No index parts defined!" msgstr "Aucune colonne n'a été définie pour cet index!" -#: libraries/messages.inc.php:556 libraries/mult_submits.inc.php:435 +#: libraries/messages.inc.php:552 libraries/mult_submits.inc.php:435 #: tbl_replace.php:331 msgid "No change" msgstr "Pas de modifications" -#: libraries/messages.inc.php:557 +#: libraries/messages.inc.php:553 msgctxt "$strNoneDefault" msgid "None" msgstr "Aucun" -#: libraries/messages.inc.php:560 libraries/plugin_interface.lib.php:312 +#: libraries/messages.inc.php:556 libraries/plugin_interface.lib.php:312 msgid "This format has no options" msgstr "Ce format ne comporte pas d'options" -#: libraries/messages.inc.php:565 user_password.php:54 +#: libraries/messages.inc.php:561 user_password.php:54 msgid "You don't have sufficient privileges to be here right now!" msgstr "Vous n'êtes pas autorisé à accéder à cette page" -#: libraries/messages.inc.php:566 tbl_row_action.php:29 +#: libraries/messages.inc.php:562 tbl_row_action.php:29 msgid "No rows selected" msgstr "Aucun enregistrement n'a été sélectionné" -#: libraries/messages.inc.php:569 themes.php:32 +#: libraries/messages.inc.php:565 themes.php:32 #, php-format msgid "" "No themes support; please check your configuration and/or your themes in " @@ -4354,138 +4354,138 @@ msgstr "" "Les thèmes ne sont pas supportés, veuillez vérifier votre configuration et/" "ou vos thèmes dans le répertoire %s." -#: libraries/messages.inc.php:571 libraries/relation.lib.php:95 +#: libraries/messages.inc.php:567 libraries/relation.lib.php:95 msgid "not OK" msgstr "en erreur" -#: libraries/messages.inc.php:572 server_synchronize.php:400 +#: libraries/messages.inc.php:568 server_synchronize.php:400 #: server_synchronize.php:839 msgid "not present" msgstr "non présent" -#: libraries/messages.inc.php:573 pdf_pages.php:36 pdf_pages.php:42 +#: libraries/messages.inc.php:569 pdf_pages.php:36 pdf_pages.php:42 #: pdf_pages.php:48 pdf_pages.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "La table %s est absente ou non définie dans %s" -#: libraries/messages.inc.php:574 server_privileges.php:804 +#: libraries/messages.inc.php:570 server_privileges.php:804 #: server_privileges.php:2166 msgid "No user(s) found." msgstr "Il n'y a aucun utilisateur" -#: libraries/messages.inc.php:578 pmd_general.php:164 +#: libraries/messages.inc.php:574 pmd_general.php:164 msgid "Number of tables" msgstr "Nombre de tables" -#: libraries/messages.inc.php:581 server_databases.php:117 +#: libraries/messages.inc.php:577 server_databases.php:117 #: server_status.php:260 setup/lib/messages.inc.php:117 msgid "Tables" msgstr "Tables" -#: libraries/messages.inc.php:583 libraries/relation.lib.php:99 +#: libraries/messages.inc.php:579 libraries/relation.lib.php:99 #: pmd_general.php:340 msgid "OK" msgstr "OK" -#: libraries/messages.inc.php:585 +#: libraries/messages.inc.php:581 msgid "Open Document Text" msgstr "Texte Open Document" -#: libraries/messages.inc.php:588 tbl_select.php:138 +#: libraries/messages.inc.php:584 tbl_select.php:138 msgid "Operator" msgstr "Opérateur" -#: libraries/messages.inc.php:589 tbl_operations.php:662 +#: libraries/messages.inc.php:585 tbl_operations.php:662 msgid "Optimize" msgstr "Optimiser" -#: libraries/messages.inc.php:602 libraries/tbl_properties.inc.php:755 +#: libraries/messages.inc.php:598 libraries/tbl_properties.inc.php:755 msgid "PARTITION definition" msgstr "Définition de PARTITION" -#: libraries/messages.inc.php:603 tbl_structure.php:757 +#: libraries/messages.inc.php:599 tbl_structure.php:757 msgid "partitioned" msgstr "partitionné" -#: libraries/messages.inc.php:604 tbl_operations.php:649 +#: libraries/messages.inc.php:600 tbl_operations.php:649 msgid "Partition maintenance" msgstr "Gestion des partitions" -#: libraries/messages.inc.php:605 tbl_operations.php:657 +#: libraries/messages.inc.php:601 tbl_operations.php:657 #, php-format msgid "Partition %s" msgstr "Partition %s" -#: libraries/messages.inc.php:606 server_privileges.php:1212 +#: libraries/messages.inc.php:602 server_privileges.php:1212 #, php-format msgid "The password for %s was changed successfully." msgstr "Le mot de passe de %s a été changé." -#: libraries/messages.inc.php:635 +#: libraries/messages.inc.php:631 #, php-format msgid "Schema of the \"%s\" database - Page %s" msgstr "Schéma de la base «%s» - Page %s" -#: libraries/messages.inc.php:636 +#: libraries/messages.inc.php:632 #, php-format msgid "The \"%s\" table doesn't exist!" msgstr "La table «%s» n'existe pas !" -#: libraries/messages.inc.php:637 pdf_schema.php:1013 +#: libraries/messages.inc.php:633 pdf_schema.php:1013 msgid "No tables" msgstr "Pas de table !" -#: libraries/messages.inc.php:638 pmd_pdf.php:63 +#: libraries/messages.inc.php:634 pmd_pdf.php:63 msgid "Page has been created" msgstr "La page a été créée." -#: libraries/messages.inc.php:639 pmd_pdf.php:65 +#: libraries/messages.inc.php:635 pmd_pdf.php:65 msgid "Page creation failed" msgstr "Échec de création de page" -#: libraries/messages.inc.php:640 +#: libraries/messages.inc.php:636 msgid "PDF" msgstr "PDF" -#: libraries/messages.inc.php:641 +#: libraries/messages.inc.php:637 msgid "(Generates a report containing the data of a single table)" msgstr "(Génère un rapport contenant les données d'une seule table)" -#: libraries/messages.inc.php:642 +#: libraries/messages.inc.php:638 msgid "Report title" msgstr "Titre du rapport" -#: libraries/messages.inc.php:643 server_status.php:389 server_status.php:434 +#: libraries/messages.inc.php:639 server_status.php:389 server_status.php:434 #: server_status.php:497 server_status.php:555 msgid "per hour" msgstr "par heure" -#: libraries/messages.inc.php:644 server_status.php:498 +#: libraries/messages.inc.php:640 server_status.php:498 msgid "per minute" msgstr "par minute" -#: libraries/messages.inc.php:645 server_status.php:499 +#: libraries/messages.inc.php:641 server_status.php:499 msgid "per second" msgstr "par seconde" -#: libraries/messages.inc.php:646 libraries/mysql_charsets.lib.php:271 +#: libraries/messages.inc.php:642 libraries/mysql_charsets.lib.php:271 msgid "Persian" msgstr "perse" -#: libraries/messages.inc.php:647 libraries/mysql_charsets.lib.php:250 +#: libraries/messages.inc.php:643 libraries/mysql_charsets.lib.php:250 msgid "phone book" msgstr "annuaire téléphonique" -#: libraries/messages.inc.php:648 +#: libraries/messages.inc.php:644 msgid "PHP array" msgstr "Tableau PHP" -#: libraries/messages.inc.php:650 main.php:213 +#: libraries/messages.inc.php:646 main.php:213 msgid "PHP extension" msgstr "Extension PHP" -#: libraries/messages.inc.php:654 libraries/relation.lib.php:163 +#: libraries/messages.inc.php:650 libraries/relation.lib.php:163 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." @@ -4494,166 +4494,166 @@ msgstr "" "(config.inc.php), en vous basant par exemple sur config." "sample.inc.php." -#: libraries/messages.inc.php:655 libraries/relation.lib.php:159 +#: libraries/messages.inc.php:651 libraries/relation.lib.php:159 msgid "Quick steps to setup advanced features:" msgstr "Guide rapide de configuration des fonctions avancées :" -#: libraries/messages.inc.php:656 libraries/relation.lib.php:161 +#: libraries/messages.inc.php:652 libraries/relation.lib.php:161 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" "Créez les tables requises au moyen de script/create_tables.sql." -#: libraries/messages.inc.php:657 libraries/relation.lib.php:162 +#: libraries/messages.inc.php:653 libraries/relation.lib.php:162 msgid "Create a pma user and give access to these tables." msgstr "Créez un utilisateur pma et donnez-lui accès à ces tables." -#: libraries/messages.inc.php:658 libraries/relation.lib.php:164 +#: libraries/messages.inc.php:654 libraries/relation.lib.php:164 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" "Reconnectez-vous à phpMyAdmin afin d'utiliser le fichier de configuration " "modifié." -#: libraries/messages.inc.php:661 libraries/mysql_charsets.lib.php:274 +#: libraries/messages.inc.php:657 libraries/mysql_charsets.lib.php:274 msgid "Polish" msgstr "polonais" -#: libraries/messages.inc.php:662 libraries/replication_gui.lib.php:67 +#: libraries/messages.inc.php:658 libraries/replication_gui.lib.php:67 #: server_synchronize.php:1163 msgid "Port" msgstr "Port" -#: libraries/messages.inc.php:667 tbl_indexes.php:67 +#: libraries/messages.inc.php:663 tbl_indexes.php:67 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Le nom d'une clé primaire doit être «PRIMARY»!" -#: libraries/messages.inc.php:668 tbl_indexes.php:184 +#: libraries/messages.inc.php:664 tbl_indexes.php:184 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "(«PRIMARY» doit et ne peut être que le nom d'une clé primaire!)" -#: libraries/messages.inc.php:669 libraries/mult_submits.inc.php:76 +#: libraries/messages.inc.php:665 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:474 msgid "Primary" msgstr "Primaire" -#: libraries/messages.inc.php:673 server_privileges.php:227 +#: libraries/messages.inc.php:669 server_privileges.php:227 msgid "Includes all privileges except GRANT." msgstr "Tous les privilèges sauf GRANT." -#: libraries/messages.inc.php:674 server_privileges.php:153 +#: libraries/messages.inc.php:670 server_privileges.php:153 #: server_privileges.php:476 msgid "Allows altering the structure of existing tables." msgstr "Permission de modifier la structure des tables existantes." -#: libraries/messages.inc.php:675 server_privileges.php:169 +#: libraries/messages.inc.php:671 server_privileges.php:169 #: server_privileges.php:482 msgid "Allows altering and dropping stored routines." msgstr "Permission de modifier et de supprimer des procédures stockées." -#: libraries/messages.inc.php:676 server_privileges.php:145 +#: libraries/messages.inc.php:672 server_privileges.php:145 #: server_privileges.php:475 msgid "Allows creating new databases and tables." msgstr "Permission de créer des bases de données et des tables." -#: libraries/messages.inc.php:677 server_privileges.php:168 +#: libraries/messages.inc.php:673 server_privileges.php:168 #: server_privileges.php:481 msgid "Allows creating stored routines." msgstr "Permission de créer des procédures stockées." -#: libraries/messages.inc.php:678 server_privileges.php:475 +#: libraries/messages.inc.php:674 server_privileges.php:475 msgid "Allows creating new tables." msgstr "Permission de créer des tables." -#: libraries/messages.inc.php:679 server_privileges.php:156 +#: libraries/messages.inc.php:675 server_privileges.php:156 #: server_privileges.php:479 msgid "Allows creating temporary tables." msgstr "Permission de créer des tables temporaires." -#: libraries/messages.inc.php:680 server_privileges.php:170 +#: libraries/messages.inc.php:676 server_privileges.php:170 #: server_privileges.php:515 msgid "Allows creating, dropping and renaming user accounts." msgstr "Permission de créer, supprimer et renommer des comptes utilisateurs" -#: libraries/messages.inc.php:681 server_privileges.php:160 +#: libraries/messages.inc.php:677 server_privileges.php:160 #: server_privileges.php:164 server_privileges.php:487 #: server_privileges.php:491 msgid "Allows creating new views." msgstr "Permission de créer des vues." -#: libraries/messages.inc.php:682 server_privileges.php:144 +#: libraries/messages.inc.php:678 server_privileges.php:144 #: server_privileges.php:467 msgid "Allows deleting data." msgstr "Permission de détruire des données" -#: libraries/messages.inc.php:683 server_privileges.php:146 +#: libraries/messages.inc.php:679 server_privileges.php:146 #: server_privileges.php:478 msgid "Allows dropping databases and tables." msgstr "Permission d'effacer des bases de données et des tables." -#: libraries/messages.inc.php:684 server_privileges.php:478 +#: libraries/messages.inc.php:680 server_privileges.php:478 msgid "Allows dropping tables." msgstr "Permission d'effacer des tables." -#: libraries/messages.inc.php:685 server_privileges.php:161 +#: libraries/messages.inc.php:681 server_privileges.php:161 #: server_privileges.php:495 msgid "Allows to set up events for the event scheduler" msgstr "" "Permission de mettre en place des événements pour le programmateur " "d'événements" -#: libraries/messages.inc.php:686 server_privileges.php:171 +#: libraries/messages.inc.php:682 server_privileges.php:171 #: server_privileges.php:483 msgid "Allows executing stored routines." msgstr "Permission d'exécuter des procédures stockées" -#: libraries/messages.inc.php:687 server_privileges.php:150 +#: libraries/messages.inc.php:683 server_privileges.php:150 #: server_privileges.php:470 msgid "Allows importing data from and exporting data into files." msgstr "" "Permission d'importer et d'exporter des données à partir de / dans des " "fichiers." -#: libraries/messages.inc.php:688 server_privileges.php:501 +#: libraries/messages.inc.php:684 server_privileges.php:501 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Permission d'ajouter des utilisateurs et des privilèges sans avoir besoin de " "recharger les privilèges." -#: libraries/messages.inc.php:689 server_privileges.php:152 +#: libraries/messages.inc.php:685 server_privileges.php:152 #: server_privileges.php:477 msgid "Allows creating and dropping indexes." msgstr "Permission de créer et d'effacer des index." -#: libraries/messages.inc.php:690 server_privileges.php:142 +#: libraries/messages.inc.php:686 server_privileges.php:142 #: server_privileges.php:403 server_privileges.php:465 msgid "Allows inserting and replacing data." msgstr "Permission d'ajouter et de remplacer des données" -#: libraries/messages.inc.php:691 server_privileges.php:157 +#: libraries/messages.inc.php:687 server_privileges.php:157 #: server_privileges.php:510 msgid "Allows locking tables for the current thread." msgstr "" "Permission de verrouiller des enregistrements dans le fil courant (unité " "d'exécution)." -#: libraries/messages.inc.php:692 server_privileges.php:607 +#: libraries/messages.inc.php:688 server_privileges.php:607 #: server_privileges.php:609 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Limite du nombre de nouvelles connexions qu'un utilisateur peut démarrer, " "par heure." -#: libraries/messages.inc.php:693 server_privileges.php:595 +#: libraries/messages.inc.php:689 server_privileges.php:595 #: server_privileges.php:597 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Limite du nombre de requêtes qu'un utilisateur peut envoyer au serveur, par " "heure." -#: libraries/messages.inc.php:694 server_privileges.php:601 +#: libraries/messages.inc.php:690 server_privileges.php:601 #: server_privileges.php:603 msgid "" "Limits the number of commands that change any table or database the user may " @@ -4662,62 +4662,62 @@ msgstr "" "Limite du nombre de commandes changeant une table ou base de données, qu'un " "utilisateur peut exécuter, par heure." -#: libraries/messages.inc.php:695 server_privileges.php:613 +#: libraries/messages.inc.php:691 server_privileges.php:613 #: server_privileges.php:615 msgid "Limits the number of simultaneous connections the user may have." msgstr "" "Limite le nombre de connexions simultanées autorisées pour un utilisateur." -#: libraries/messages.inc.php:696 server_privileges.php:149 +#: libraries/messages.inc.php:692 server_privileges.php:149 #: server_privileges.php:505 msgid "Allows viewing processes of all users" msgstr "Permission de voir les processus de tous les utilisateurs" -#: libraries/messages.inc.php:697 server_privileges.php:151 +#: libraries/messages.inc.php:693 server_privileges.php:151 #: server_privileges.php:409 server_privileges.php:511 msgid "Has no effect in this MySQL version." msgstr "Non effectif dans cette version de MySQL." -#: libraries/messages.inc.php:698 server_privileges.php:147 +#: libraries/messages.inc.php:694 server_privileges.php:147 #: server_privileges.php:506 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Permission de recharger les réglages du serveur, et de vidanger la mémoire " "cache." -#: libraries/messages.inc.php:699 server_privileges.php:159 +#: libraries/messages.inc.php:695 server_privileges.php:159 #: server_privileges.php:513 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Permission de demander où sont les maîtres et les esclaves (système de " "duplication)." -#: libraries/messages.inc.php:700 server_privileges.php:158 +#: libraries/messages.inc.php:696 server_privileges.php:158 #: server_privileges.php:514 msgid "Needed for the replication slaves." msgstr "Nécessaire pour les esclaves (système de duplication)." -#: libraries/messages.inc.php:701 server_privileges.php:141 +#: libraries/messages.inc.php:697 server_privileges.php:141 #: server_privileges.php:400 server_privileges.php:464 msgid "Allows reading data." msgstr "Permission de lire des données." -#: libraries/messages.inc.php:702 server_privileges.php:154 +#: libraries/messages.inc.php:698 server_privileges.php:154 #: server_privileges.php:508 msgid "Gives access to the complete list of databases." msgstr "Permission de voir la liste complète des noms de bases de données." -#: libraries/messages.inc.php:703 server_privileges.php:165 +#: libraries/messages.inc.php:699 server_privileges.php:165 #: server_privileges.php:167 server_privileges.php:480 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Permission d'exécuter SHOW CREATE VIEW." -#: libraries/messages.inc.php:704 server_privileges.php:148 +#: libraries/messages.inc.php:700 server_privileges.php:148 #: server_privileges.php:507 msgid "Allows shutting down the server." msgstr "Permission d'arrêter le serveur MySQL." -#: libraries/messages.inc.php:705 server_privileges.php:155 +#: libraries/messages.inc.php:701 server_privileges.php:155 #: server_privileges.php:504 msgid "" "Allows connecting, even if maximum number of connections is reached; " @@ -4729,55 +4729,55 @@ msgstr "" "administratif, par exemple les changements de variables globales ou la " "destruction de processus." -#: libraries/messages.inc.php:706 server_privileges.php:162 +#: libraries/messages.inc.php:702 server_privileges.php:162 #: server_privileges.php:496 msgid "Allows creating and dropping triggers" msgstr "Permission de créer et de supprimer des déclencheurs" -#: libraries/messages.inc.php:707 server_privileges.php:143 +#: libraries/messages.inc.php:703 server_privileges.php:143 #: server_privileges.php:406 server_privileges.php:466 msgid "Allows changing data." msgstr "Permission de changer des données." -#: libraries/messages.inc.php:708 server_privileges.php:221 +#: libraries/messages.inc.php:704 server_privileges.php:221 msgid "No privileges." msgstr "Pas de privilèges" -#: libraries/messages.inc.php:710 server_privileges.php:1296 +#: libraries/messages.inc.php:706 server_privileges.php:1296 msgid "The privileges were reloaded successfully." msgstr "Les privilèges ont été rechargés." -#: libraries/messages.inc.php:712 libraries/server_links.inc.php:80 +#: libraries/messages.inc.php:708 libraries/server_links.inc.php:80 msgid "Processes" msgstr "Processus" -#: libraries/messages.inc.php:714 main.php:187 +#: libraries/messages.inc.php:710 main.php:187 msgid "Protocol version" msgstr "Version du protocole" -#: libraries/messages.inc.php:715 +#: libraries/messages.inc.php:711 msgid "Put fields names in the first row" msgstr "Afficher les noms de champ en première ligne" -#: libraries/messages.inc.php:720 server_synchronize.php:1003 +#: libraries/messages.inc.php:716 server_synchronize.php:1003 msgid "The following queries have been executed:" msgstr "Ces requêtes ont été exécutées :" -#: libraries/messages.inc.php:721 server_status.php:251 +#: libraries/messages.inc.php:717 server_status.php:251 msgid "Query cache" msgstr "Cache des requêtes" -#: libraries/messages.inc.php:722 libraries/navigation_header.inc.php:80 +#: libraries/messages.inc.php:718 libraries/navigation_header.inc.php:80 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 setup/lib/messages.inc.php:122 msgid "Query window" msgstr "Fenêtre SQL" -#: libraries/messages.inc.php:725 querywindow.php:109 querywindow.php:217 +#: libraries/messages.inc.php:721 querywindow.php:109 querywindow.php:217 msgid "SQL history" msgstr "Historique SQL" -#: libraries/messages.inc.php:726 server_status.php:490 +#: libraries/messages.inc.php:722 server_status.php:490 #, php-format msgid "" "Query statistics: Since its startup, %s queries have been sent to the " @@ -4786,94 +4786,94 @@ msgstr "" "Statistiques sur les requêtes: Depuis son démarrage, %s requêtes ont " "été envoyées au serveur." -#: libraries/messages.inc.php:728 server_status.php:554 +#: libraries/messages.inc.php:724 server_status.php:554 msgid "Query type" msgstr "Type de requête" -#: libraries/messages.inc.php:729 libraries/sql_query_form.lib.php:381 +#: libraries/messages.inc.php:725 libraries/sql_query_form.lib.php:381 msgid "Do not overwrite this query from outside the window" msgstr "Ne pas écraser cette requête depuis une autre fenêtre" -#: libraries/messages.inc.php:732 tbl_operations.php:663 +#: libraries/messages.inc.php:728 tbl_operations.php:663 msgid "Rebuild" msgstr "Reconstruire" -#: libraries/messages.inc.php:733 server_status.php:394 +#: libraries/messages.inc.php:729 server_status.php:394 msgid "Received" msgstr "Reçu" -#: libraries/messages.inc.php:734 pmd_pdf.php:89 +#: libraries/messages.inc.php:730 pmd_pdf.php:89 msgid "recommended" msgstr "recommandé" -#: libraries/messages.inc.php:736 tbl_operations.php:702 +#: libraries/messages.inc.php:732 tbl_operations.php:702 msgid "Check referential integrity:" msgstr "Vérifier l'intégrité référentielle" -#: libraries/messages.inc.php:740 pdf_schema.php:1032 pdf_schema.php:1141 +#: libraries/messages.inc.php:736 pdf_schema.php:1032 pdf_schema.php:1141 msgid "Relational schema" msgstr "Schéma relationnel" -#: libraries/messages.inc.php:744 tbl_relation.php:399 +#: libraries/messages.inc.php:740 tbl_relation.php:399 msgid "Relations" msgstr "Relations" -#: libraries/messages.inc.php:745 tbl_structure.php:507 tbl_structure.php:509 +#: libraries/messages.inc.php:741 tbl_structure.php:507 tbl_structure.php:509 msgid "Relation view" msgstr "Gestion des relations" -#: libraries/messages.inc.php:746 server_privileges.php:1246 +#: libraries/messages.inc.php:742 server_privileges.php:1246 msgid "Reloading the privileges" msgstr "Chargement des privilèges en cours." -#: libraries/messages.inc.php:747 navigation.php:66 navigation.php:67 +#: libraries/messages.inc.php:743 navigation.php:66 navigation.php:67 #: navigation.php:70 msgid "Reload navigation frame" msgstr "Recharger le cadre de navigation" -#: libraries/messages.inc.php:748 pmd_general.php:80 +#: libraries/messages.inc.php:744 pmd_general.php:80 msgid "Reload" msgstr "Recharger" -#: libraries/messages.inc.php:749 libraries/server_synchronize.lib.php:1345 +#: libraries/messages.inc.php:745 libraries/server_synchronize.lib.php:1345 #: libraries/server_synchronize.lib.php:1371 msgid "Remote server" msgstr "Serveur distant" -#: libraries/messages.inc.php:750 +#: libraries/messages.inc.php:746 msgid "Remove CRLF characters within fields" msgstr "" "Enlève les caractères de fin de ligne (CRLF) à l'intérieur des colonnes" -#: libraries/messages.inc.php:751 tbl_operations.php:676 +#: libraries/messages.inc.php:747 tbl_operations.php:676 msgid "Remove partitioning" msgstr "Supprimer le partitionnement" -#: libraries/messages.inc.php:752 server_privileges.php:1575 +#: libraries/messages.inc.php:748 server_privileges.php:1575 msgid "Remove selected users" msgstr "Effacer les utilisateurs sélectionnés." -#: libraries/messages.inc.php:755 tbl_operations.php:338 +#: libraries/messages.inc.php:751 tbl_operations.php:338 msgid "Rename table to" msgstr "Changer le nom de la table pour" -#: libraries/messages.inc.php:756 view_operations.php:93 +#: libraries/messages.inc.php:752 view_operations.php:93 msgid "Rename view to" msgstr "Changer le nom de la vue pour" -#: libraries/messages.inc.php:757 tbl_operations.php:664 +#: libraries/messages.inc.php:753 tbl_operations.php:664 msgid "Repair" msgstr "Réparer" -#: libraries/messages.inc.php:759 +#: libraries/messages.inc.php:755 msgid "Replace NULL by" msgstr "Remplacer NULL par" -#: libraries/messages.inc.php:760 +#: libraries/messages.inc.php:756 msgid "Replace table data with file" msgstr "Remplacer les données de la table avec le fichier" -#: libraries/messages.inc.php:761 server_replication.php:228 +#: libraries/messages.inc.php:757 server_replication.php:228 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -4881,45 +4881,45 @@ msgstr "" "Maintenant, ajoutez les lignes suivantes à la fin de votre fichier my.cnf " "puis redémarrez le serveur MySQL" -#: libraries/messages.inc.php:762 libraries/replication_gui.lib.php:236 +#: libraries/messages.inc.php:758 libraries/replication_gui.lib.php:236 #: server_replication.php:194 msgid "Add slave replication user" msgstr "Ajouter un utilisateur pour la réplication vers l'esclave?" -#: libraries/messages.inc.php:763 server_replication.php:74 +#: libraries/messages.inc.php:759 server_replication.php:74 #, php-format msgid "Master server changed succesfully to %s" msgstr "Le serveur maître est maintenant %s" -#: libraries/messages.inc.php:764 server_replication.php:182 +#: libraries/messages.inc.php:760 server_replication.php:182 msgid "This server is configured as master in a replication process." msgstr "Ce serveur est un serveur maître dans le processus de réplication" -#: libraries/messages.inc.php:765 server_replication.php:322 +#: libraries/messages.inc.php:761 server_replication.php:322 msgid "Control slave:" msgstr "Contrôler le serveur esclave:" -#: libraries/messages.inc.php:766 server_replication.php:65 +#: libraries/messages.inc.php:762 server_replication.php:65 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" "Impossible de lire la position du journal sur le maître. Possible problème " "de privilège sur le maître." -#: libraries/messages.inc.php:767 server_replication.php:58 +#: libraries/messages.inc.php:763 server_replication.php:58 #, php-format msgid "Unable to connect to master %s." msgstr "Connexion impossible sur le maître %s." -#: libraries/messages.inc.php:768 server_replication.php:221 +#: libraries/messages.inc.php:764 server_replication.php:221 msgid "Replicate all databases; Ignore:" msgstr "Répliquer toutes les bases de données; Ignorer :" -#: libraries/messages.inc.php:769 server_replication.php:222 +#: libraries/messages.inc.php:765 server_replication.php:222 msgid "Ignore all databases; Replicate:" msgstr "Ignorer toutes les bases de données; Répliquer :" -#: libraries/messages.inc.php:770 server_replication.php:218 +#: libraries/messages.inc.php:766 server_replication.php:218 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -4933,16 +4933,16 @@ msgstr "" "répliquées) soit ignorer toutes les bases en demandant que certaines d'entre " "elles soient répliquées. Veuillez choisir le mode :" -#: libraries/messages.inc.php:771 server_replication.php:217 +#: libraries/messages.inc.php:767 server_replication.php:217 msgid "Master configuration" msgstr "Configuration du maître" -#: libraries/messages.inc.php:772 server_replication.php:181 +#: libraries/messages.inc.php:768 server_replication.php:181 #: server_replication.php:209 msgid "Master replication" msgstr "Réplication maître" -#: libraries/messages.inc.php:774 server_replication.php:230 +#: libraries/messages.inc.php:770 server_replication.php:230 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " @@ -4952,11 +4952,11 @@ msgstr "" "suite vous devriez voir un message vous informant que ce serveur est " "configuré comme maître." -#: libraries/messages.inc.php:775 server_replication.php:225 +#: libraries/messages.inc.php:771 server_replication.php:225 msgid "Please select databases:" msgstr "Sélectionnez les bases de données" -#: libraries/messages.inc.php:776 server_replication.php:210 +#: libraries/messages.inc.php:772 server_replication.php:210 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -4965,7 +4965,7 @@ msgstr "" "Ce serveur n'est pas configuré comme maître dans un processus de " "réplication. Désirez-vous le configurer?" -#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:188 +#: libraries/messages.inc.php:773 libraries/replication_gui.lib.php:188 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." @@ -4973,51 +4973,51 @@ msgstr "" "Seuls les esclaves démarrés avec l'option --report-host=host_name sont " "visibles sur cette liste." -#: libraries/messages.inc.php:778 server_replication.php:187 +#: libraries/messages.inc.php:774 server_replication.php:187 msgid "Show connected slaves" msgstr "Montrer les esclaves connectés" -#: libraries/messages.inc.php:779 libraries/messages.inc.php:885 +#: libraries/messages.inc.php:775 libraries/messages.inc.php:881 #: server_replication.php:184 server_status.php:281 msgid "Show master status" msgstr "Montrer l'état du maître" -#: libraries/messages.inc.php:780 server_replication.php:334 +#: libraries/messages.inc.php:776 server_replication.php:334 msgid "Skipping error(s) might lead into unsynchronized master and slave!" msgstr "" "Ignorer les erreurs peut mener à des serveurs maître et esclave " "désynchronisés!" -#: libraries/messages.inc.php:781 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:51 #: server_replication.php:347 msgid "Change or reconfigure master server" msgstr "Changer ou reconfigurer le serveur maître" -#: libraries/messages.inc.php:782 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:778 libraries/replication_gui.lib.php:51 msgid "Slave configuration" msgstr "Configuration de l'esclave" -#: libraries/messages.inc.php:783 server_replication.php:305 +#: libraries/messages.inc.php:779 server_replication.php:305 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" "Le serveur est configuré comme esclave dans un processus de réplication. " "Voudriez-vous :" -#: libraries/messages.inc.php:784 server_replication.php:332 +#: libraries/messages.inc.php:780 server_replication.php:332 msgid "Error management:" msgstr "Gestion des erreurs" -#: libraries/messages.inc.php:785 server_replication.php:328 +#: libraries/messages.inc.php:781 server_replication.php:328 #, php-format msgid "IO Thread %s only" msgstr "%s seulement le fil d'exécution des entrées-sorties" -#: libraries/messages.inc.php:786 server_replication.php:296 +#: libraries/messages.inc.php:782 server_replication.php:296 msgid "Slave IO Thread not running!" msgstr "Le fil d'exécution IO ne tourne pas sur le serveur esclave!" -#: libraries/messages.inc.php:787 server_replication.php:355 +#: libraries/messages.inc.php:783 server_replication.php:355 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -5026,40 +5026,40 @@ msgstr "" "Ce serveur n'est pas configuré comme esclave dans un processus de " "réplication. Désirez-vous le configurer?" -#: libraries/messages.inc.php:788 server_replication.php:326 +#: libraries/messages.inc.php:784 server_replication.php:326 msgid "Reset slave" msgstr "Réinitialiser l'esclave" -#: libraries/messages.inc.php:789 server_replication.php:308 +#: libraries/messages.inc.php:785 server_replication.php:308 msgid "See slave status table" msgstr "Montrer l'état de l'esclave" -#: libraries/messages.inc.php:790 server_replication.php:336 +#: libraries/messages.inc.php:786 server_replication.php:336 msgid "Skip current error" msgstr "Ignorer l'erreur courante" -#: libraries/messages.inc.php:791 server_replication.php:340 +#: libraries/messages.inc.php:787 server_replication.php:340 msgid "errors." msgstr "erreurs." -#: libraries/messages.inc.php:792 server_replication.php:337 +#: libraries/messages.inc.php:788 server_replication.php:337 msgid "Skip next" msgstr "Ignorer les prochaines" -#: libraries/messages.inc.php:793 server_replication.php:248 +#: libraries/messages.inc.php:789 server_replication.php:248 msgid "Slave replication" msgstr "Réplication esclave" -#: libraries/messages.inc.php:794 server_replication.php:293 +#: libraries/messages.inc.php:790 server_replication.php:293 msgid "Slave SQL Thread not running!" msgstr "Le fil d'exécution SQL ne tourne pas sur le serveur esclave!" -#: libraries/messages.inc.php:795 server_replication.php:327 +#: libraries/messages.inc.php:791 server_replication.php:327 #, php-format msgid "SQL Thread %s only" msgstr "%s seulement le fil d'exécution SQL" -#: libraries/messages.inc.php:796 +#: libraries/messages.inc.php:792 #, php-format msgid "" "This MySQL server works as %s in replication process. For further " @@ -5070,159 +5070,159 @@ msgstr "" "b>. Pour plus d'information sur l'état de la réplication sur ce serveur, " "consultez la section de réplication." -#: libraries/messages.inc.php:797 +#: libraries/messages.inc.php:793 msgid "Master status" msgstr "État du maître" -#: libraries/messages.inc.php:798 server_status.php:721 +#: libraries/messages.inc.php:794 server_status.php:721 msgid "Replication status" msgstr "État de la réplication" -#: libraries/messages.inc.php:799 +#: libraries/messages.inc.php:795 msgid "Slave status" msgstr "État de l'esclave" -#: libraries/messages.inc.php:800 server_replication.php:311 +#: libraries/messages.inc.php:796 server_replication.php:311 msgid "Synchronize databases with master" msgstr "Synchroniser les bases de données avec le serveur maître" -#: libraries/messages.inc.php:801 server_replication.php:71 +#: libraries/messages.inc.php:797 server_replication.php:71 msgid "Unable to change master" msgstr "Impossible de changer le maître" -#: libraries/messages.inc.php:802 server_replication.php:51 +#: libraries/messages.inc.php:798 server_replication.php:51 msgid "Unknown error" msgstr "Erreur inconnue" -#: libraries/messages.inc.php:803 main.php:163 pdf_pages.php:344 +#: libraries/messages.inc.php:799 main.php:163 pdf_pages.php:344 #: setup/lib/FormDisplay.tpl.php:216 tbl_change.php:1175 msgid "Reset" msgstr "Réinitialiser" -#: libraries/messages.inc.php:804 server_privileges.php:591 +#: libraries/messages.inc.php:800 server_privileges.php:591 msgid "Resource limits" msgstr "Limites de ressources." -#: libraries/messages.inc.php:805 tbl_change.php:1209 +#: libraries/messages.inc.php:801 tbl_change.php:1209 #, php-format msgid "Restart insertion with %s rows" msgstr "Recommencer l'insertion avec %s lignes" -#: libraries/messages.inc.php:807 server_privileges.php:1578 +#: libraries/messages.inc.php:803 server_privileges.php:1578 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Effacer tous les privilèges de ces utilisateurs, puis les effacer." -#: libraries/messages.inc.php:808 server_privileges.php:1176 +#: libraries/messages.inc.php:804 server_privileges.php:1176 #, php-format msgid "You have revoked the privileges for %s" msgstr "Vous avez révoqué les privilèges pour %s" -#: libraries/messages.inc.php:809 server_privileges.php:1333 +#: libraries/messages.inc.php:805 server_privileges.php:1333 msgid "Revoke" msgstr "Révoquer" -#: libraries/messages.inc.php:810 libraries/mysql_charsets.lib.php:280 +#: libraries/messages.inc.php:806 libraries/mysql_charsets.lib.php:280 msgid "Romanian" msgstr "roumain" -#: libraries/messages.inc.php:813 tbl_printview.php:404 tbl_structure.php:786 +#: libraries/messages.inc.php:809 tbl_printview.php:404 tbl_structure.php:786 msgid "Row length" msgstr "Longueur enr." -#: libraries/messages.inc.php:815 tbl_printview.php:414 tbl_structure.php:794 +#: libraries/messages.inc.php:811 tbl_printview.php:414 tbl_structure.php:794 msgid " Row size " msgstr " Taille enr. " -#: libraries/messages.inc.php:821 tbl_printview.php:366 tbl_structure.php:726 +#: libraries/messages.inc.php:817 tbl_printview.php:366 tbl_structure.php:726 msgid "Row Statistics" msgstr "Statistiques" -#: libraries/messages.inc.php:822 +#: libraries/messages.inc.php:818 #, php-format msgid "running on %s" msgstr "sur le serveur %s" -#: libraries/messages.inc.php:824 libraries/sql_query_form.lib.php:223 +#: libraries/messages.inc.php:820 libraries/sql_query_form.lib.php:223 #, php-format msgid "Run SQL query/queries on server %s" msgstr "Exécuter une ou des requêtes SQL sur le serveur %s" -#: libraries/messages.inc.php:825 libraries/sql_query_form.lib.php:240 +#: libraries/messages.inc.php:821 libraries/sql_query_form.lib.php:240 #: libraries/sql_query_form.lib.php:265 #, php-format msgid "Run SQL query/queries on database %s" msgstr "Exécuter une ou des requêtes sur la base %s" -#: libraries/messages.inc.php:826 libraries/mysql_charsets.lib.php:337 +#: libraries/messages.inc.php:822 libraries/mysql_charsets.lib.php:337 msgid "Russian" msgstr "russe" -#: libraries/messages.inc.php:829 pmd_general.php:68 +#: libraries/messages.inc.php:825 pmd_general.php:68 msgid "Save position" msgstr "Sauvegarder la position" -#: libraries/messages.inc.php:830 libraries/tbl_properties.inc.php:776 +#: libraries/messages.inc.php:826 libraries/tbl_properties.inc.php:776 #: pdf_pages.php:484 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:214 setup/lib/FormDisplay.tpl.php:215 #: tbl_change.php:1126 tbl_indexes.php:248 tbl_relation.php:566 msgid "Save" msgstr "Sauvegarder" -#: libraries/messages.inc.php:831 +#: libraries/messages.inc.php:827 msgid "The scale factor is too small to fit the schema on one page" msgstr "Veuillez augmenter l'échelle car le schéma déborde la page" -#: libraries/messages.inc.php:843 main.php:298 +#: libraries/messages.inc.php:839 main.php:298 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "Vous devez ajouter dans le fichier de configuration une phrase de passe " "secrète (blowfish_secret)." -#: libraries/messages.inc.php:844 navigation.php:353 navigation.php:516 +#: libraries/messages.inc.php:840 navigation.php:353 navigation.php:516 msgid "Please select a database" msgstr "Choisissez une base de données" -#: libraries/messages.inc.php:846 server_binlog.php:120 +#: libraries/messages.inc.php:842 server_binlog.php:120 msgid "Select binary log to view" msgstr "Sélectionnez le log binaire à consulter" -#: libraries/messages.inc.php:847 tbl_select.php:270 +#: libraries/messages.inc.php:843 tbl_select.php:270 msgid "Select fields (at least one):" msgstr "Choisir les champs à afficher (au moins un)" -#: libraries/messages.inc.php:851 pdf_pages.php:320 +#: libraries/messages.inc.php:847 pdf_pages.php:320 msgid "Select Tables" msgstr "Choisissez les tables" -#: libraries/messages.inc.php:853 server_status.php:404 +#: libraries/messages.inc.php:849 server_status.php:404 msgid "Sent" msgstr "Envoyé" -#: libraries/messages.inc.php:857 libraries/select_server.lib.php:45 +#: libraries/messages.inc.php:853 libraries/select_server.lib.php:45 #: setup/frames/index.inc.php:97 setup/lib/messages.inc.php:115 msgid "Servers" msgstr "Serveurs" -#: libraries/messages.inc.php:858 server_status.php:255 +#: libraries/messages.inc.php:854 server_status.php:255 msgid "Delayed inserts" msgstr "Insertions avec délais" -#: libraries/messages.inc.php:859 server_status.php:46 +#: libraries/messages.inc.php:855 server_status.php:46 msgid "Runtime Information" msgstr "Informations sur le serveur" -#: libraries/messages.inc.php:860 server_status.php:350 +#: libraries/messages.inc.php:856 server_status.php:350 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Ce serveur MySQL fonctionne depuis %s. Il a démarré le %s." -#: libraries/messages.inc.php:861 libraries/server_links.inc.php:53 +#: libraries/messages.inc.php:857 libraries/server_links.inc.php:53 #: server_engines.php:112 server_engines.php:116 server_status.php:304 #: test/theme.php:105 msgid "Variables" msgstr "Variables" -#: libraries/messages.inc.php:862 server_status.php:383 +#: libraries/messages.inc.php:858 server_status.php:383 msgid "" "Server traffic: These tables show the network traffic statistics of " "this MySQL server since its startup." @@ -5230,11 +5230,11 @@ msgstr "" "Statistiques sur le trafic: Ce tableau indique le trafic réseau " "observé sur ce serveur MySQL depuis son démarrage." -#: libraries/messages.inc.php:863 server_variables.php:35 +#: libraries/messages.inc.php:859 server_variables.php:35 msgid "Server variables and settings" msgstr "Variables et réglages du serveur" -#: libraries/messages.inc.php:865 main.php:290 +#: libraries/messages.inc.php:861 main.php:290 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -5246,7 +5246,7 @@ msgstr "" "que la durée du cookie configurée dans phpMyAdmin; donc, votre session de " "travail expirera plus tôt." -#: libraries/messages.inc.php:866 +#: libraries/messages.inc.php:862 msgid "" "Cannot start session without errors, please check errors given in your PHP " "and/or webserver log file and configure your PHP installation properly." @@ -5255,11 +5255,11 @@ msgstr "" "indiquées par PHP ou dans le fichier témoin du serveur web, et configurer " "PHP correctement." -#: libraries/messages.inc.php:867 server_variables.php:55 +#: libraries/messages.inc.php:863 server_variables.php:55 msgid "Session value" msgstr "Valeur pour la session" -#: libraries/messages.inc.php:868 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:864 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 " @@ -5271,44 +5271,44 @@ msgstr "" "apostrophe (\"'\") dans l'une de ces valeurs, faites-le précéder d'un " "antislash (par exemple '\\\\xyz' ou 'a\\'b')." -#: libraries/messages.inc.php:876 server_binlog.php:192 server_binlog.php:195 +#: libraries/messages.inc.php:872 server_binlog.php:192 server_binlog.php:195 #: server_processlist.php:49 server_processlist.php:51 msgid "Show Full Queries" msgstr "Afficher les requêtes complètes" -#: libraries/messages.inc.php:878 pmd_general.php:64 +#: libraries/messages.inc.php:874 pmd_general.php:64 msgid "Show/Hide left menu" msgstr "Montrer/cacher le menu de gauche" -#: libraries/messages.inc.php:880 sql.php:513 +#: libraries/messages.inc.php:876 sql.php:513 msgid "Showing as PHP code" msgstr "Affichage du code PHP" -#: libraries/messages.inc.php:882 sql.php:516 tbl_replace.php:360 +#: libraries/messages.inc.php:878 sql.php:516 tbl_replace.php:360 msgid "Showing SQL query" msgstr "Affichage de la requête SQL" -#: libraries/messages.inc.php:883 tbl_change.php:1132 +#: libraries/messages.inc.php:879 tbl_change.php:1132 msgid "Show insert query" msgstr "Afficher l'énoncé d'insertion" -#: libraries/messages.inc.php:886 server_status.php:273 +#: libraries/messages.inc.php:882 server_status.php:273 msgid "Show open tables" msgstr "Montrer les tables ouvertes" -#: libraries/messages.inc.php:887 main.php:219 +#: libraries/messages.inc.php:883 main.php:219 msgid "Show PHP information" msgstr "Afficher les informations relatives à PHP" -#: libraries/messages.inc.php:889 server_status.php:278 +#: libraries/messages.inc.php:885 server_status.php:278 msgid "Show slave hosts" msgstr "Montrer les serveurs esclaves" -#: libraries/messages.inc.php:890 server_status.php:284 +#: libraries/messages.inc.php:886 server_status.php:284 msgid "Show slave status" msgstr "Montrer l'état des serveurs esclaves" -#: libraries/messages.inc.php:891 +#: libraries/messages.inc.php:887 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -5318,12 +5318,12 @@ msgstr "" "mais qui ont excédé la valeur de binlog_cache_size et ont utilisé un fichier " "temporaire pour stocker les énoncés de la transaction." -#: libraries/messages.inc.php:892 +#: libraries/messages.inc.php:888 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Le nombre de transactions qui ont utilisé la cache temporaire du log binaire." -#: libraries/messages.inc.php:893 +#: libraries/messages.inc.php:889 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -5336,11 +5336,11 @@ msgstr "" "tmp_table_size afin que les tables temporaires soient maintenues en mémoire " "au lieu d'être sur disque." -#: libraries/messages.inc.php:894 +#: libraries/messages.inc.php:890 msgid "How many temporary files mysqld has created." msgstr "Le nombre de fichiers temporaires créés par mysqld." -#: libraries/messages.inc.php:895 +#: libraries/messages.inc.php:891 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -5348,7 +5348,7 @@ msgstr "" "Le nombre de tables temporaires en mémoire créées automatiquement par le " "serveur lors de l'exécution d'énoncés." -#: libraries/messages.inc.php:896 +#: libraries/messages.inc.php:892 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -5356,7 +5356,7 @@ msgstr "" "Le nombre d'enregistrements écrits avec INSERT DELAYED pour lesquels une " "erreur est survenue (probablement un doublon sur la clé)." -#: libraries/messages.inc.php:897 +#: libraries/messages.inc.php:893 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -5364,23 +5364,23 @@ msgstr "" "Le nombre de fils d'exécution utilisés pour INSERT DELAYED. Un fil est " "utilisé pour chacune des tables sur lesquelles un INSERT DELAYED a lieu." -#: libraries/messages.inc.php:898 +#: libraries/messages.inc.php:894 msgid "The number of INSERT DELAYED rows written." msgstr "Le nombre d'enregistrements écrits via INSERT DELAYED." -#: libraries/messages.inc.php:899 +#: libraries/messages.inc.php:895 msgid "The number of executed FLUSH statements." msgstr "Le nombre de commandes FLUSH exécutées." -#: libraries/messages.inc.php:900 +#: libraries/messages.inc.php:896 msgid "The number of internal COMMIT statements." msgstr "Le nombre de commandes COMMIT internes." -#: libraries/messages.inc.php:901 +#: libraries/messages.inc.php:897 msgid "The number of times a row was deleted from a table." msgstr "Le nombre de fois qu'un enregistrement a été supprimé d'une table." -#: libraries/messages.inc.php:902 +#: libraries/messages.inc.php:898 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -5390,7 +5390,7 @@ msgstr "" "une table portant un certain nom. Ceci est appelé "découverte". Ce " "paramètre indique le nombre de fois que des tables ont été découvertes." -#: libraries/messages.inc.php:903 +#: libraries/messages.inc.php:899 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -5401,7 +5401,7 @@ msgstr "" "d'un index; par exemple, SELECT col1 FROM foo, en assumant que col1 est une " "colonne indexée." -#: libraries/messages.inc.php:904 +#: libraries/messages.inc.php:900 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -5409,7 +5409,7 @@ msgstr "" "Le nombre de requêtes pour lire un enregistrement via une clé. Si élevé, " "c'est une bonne indication que vos tables sont correctement indexées." -#: libraries/messages.inc.php:905 +#: libraries/messages.inc.php:901 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -5419,7 +5419,7 @@ msgstr "" "clé. Ceci est augmenté si vous interrogez une colonne indexée avec un " "critère de fourchette ou si vous parcourez l'index." -#: libraries/messages.inc.php:906 +#: libraries/messages.inc.php:902 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -5427,7 +5427,7 @@ msgstr "" "Le nombre de requêtes de lecture de l'enregistrement précédent, en ordre de " "clé. Utilisé surtout pour optimiser ORDER BY ... DESC" -#: libraries/messages.inc.php:907 +#: libraries/messages.inc.php:903 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -5440,7 +5440,7 @@ msgstr "" "de requêtes qui demandent à MySQL de parcourir des tables en entier, ou vous " "avez des jointures qui n'utilisent pas correctement les clés." -#: libraries/messages.inc.php:908 +#: libraries/messages.inc.php:904 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -5452,35 +5452,35 @@ msgstr "" "vos tables ne sont pas correctement indexées ou que vos requêtes ne sont pas " "écrites de façon à tirer parti des index que vous avez définis." -#: libraries/messages.inc.php:909 +#: libraries/messages.inc.php:905 msgid "The number of internal ROLLBACK statements." msgstr "Le nombre d'énoncés ROLLBACK internes." -#: libraries/messages.inc.php:910 +#: libraries/messages.inc.php:906 msgid "The number of requests to update a row in a table." msgstr "Le nombre de requêtes de mise à jour d'enregistrements." -#: libraries/messages.inc.php:911 +#: libraries/messages.inc.php:907 msgid "The number of requests to insert a row in a table." msgstr "Le nombre de requêtes d'insertion d'enregistrements." -#: libraries/messages.inc.php:912 +#: libraries/messages.inc.php:908 msgid "The number of pages containing data (dirty or clean)." msgstr "Le nombre de pages contenant des données." -#: libraries/messages.inc.php:913 +#: libraries/messages.inc.php:909 msgid "The number of pages currently dirty." msgstr "Le nombre de pages contenant des données «dirty»" -#: libraries/messages.inc.php:914 +#: libraries/messages.inc.php:910 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Le nombre de pages de mémoire-tampon qui ont été effacées." -#: libraries/messages.inc.php:915 +#: libraries/messages.inc.php:911 msgid "The number of free pages." msgstr "Le nombre de pages libres" -#: libraries/messages.inc.php:916 +#: libraries/messages.inc.php:912 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -5490,7 +5490,7 @@ msgstr "" "train d'être lues ou écrites, ou qui ne peuvent être supprimées pour une " "autre raison." -#: libraries/messages.inc.php:917 +#: libraries/messages.inc.php:913 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -5502,11 +5502,11 @@ msgstr "" "comme suit: Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data." -#: libraries/messages.inc.php:918 +#: libraries/messages.inc.php:914 msgid "Total size of buffer pool, in pages." msgstr "Taille totale de la réserve, en pages." -#: libraries/messages.inc.php:919 +#: libraries/messages.inc.php:915 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -5515,7 +5515,7 @@ msgstr "" "lorsqu'une requête doit balayer une large portion de table en ordre " "discontinu." -#: libraries/messages.inc.php:920 +#: libraries/messages.inc.php:916 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -5523,11 +5523,11 @@ msgstr "" "Le nombre de lectures séquentielles effectuées par InnoDB. Ceci survient " "quand InnoDB fait un parcours séquentiel intégral de la table." -#: libraries/messages.inc.php:921 +#: libraries/messages.inc.php:917 msgid "The number of logical read requests InnoDB has done." msgstr "Le nombre de requêtes de lectures logiques effectuées par InnoDB." -#: libraries/messages.inc.php:922 +#: libraries/messages.inc.php:918 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -5535,7 +5535,7 @@ msgstr "" "Le nombre de lectures que InnoDB n'a pu faire à partir de la réserve, menant " "à une lecture directe d'une page." -#: libraries/messages.inc.php:923 +#: libraries/messages.inc.php:919 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -5549,51 +5549,51 @@ msgstr "" "Ceci compte le nombre de fois qu'une telle attente a été nécessaire. Si la " "taille de la réserve est adéquate, cette valeur devrait être petite." -#: libraries/messages.inc.php:924 +#: libraries/messages.inc.php:920 msgid "The number writes done to the InnoDB buffer pool." msgstr "Le nombre d'écritures faites dans la réserve InnoDB." -#: libraries/messages.inc.php:925 +#: libraries/messages.inc.php:921 msgid "The number of fsync() operations so far." msgstr "Le nombre d'opérations fsync() faites jusqu'à présent." -#: libraries/messages.inc.php:926 +#: libraries/messages.inc.php:922 msgid "The current number of pending fsync() operations." msgstr "Le nombre d'opérations fsync() actuellement en attente." -#: libraries/messages.inc.php:927 +#: libraries/messages.inc.php:923 msgid "The current number of pending reads." msgstr "Le nombre actuel de lectures en attente." -#: libraries/messages.inc.php:928 +#: libraries/messages.inc.php:924 msgid "The current number of pending writes." msgstr "Le nombre actuel d'écritures en attente." -#: libraries/messages.inc.php:929 +#: libraries/messages.inc.php:925 msgid "The amount of data read so far, in bytes." msgstr "La quantité d'octets lus jusqu'à présent." -#: libraries/messages.inc.php:930 +#: libraries/messages.inc.php:926 msgid "The total number of data reads." msgstr "Le nombre total de lectures de données." -#: libraries/messages.inc.php:931 +#: libraries/messages.inc.php:927 msgid "The total number of data writes." msgstr "Le nombre total d'écritures de données." -#: libraries/messages.inc.php:932 +#: libraries/messages.inc.php:928 msgid "The amount of data written so far, in bytes." msgstr "La quantité d'octets écrits jusqu'à présent." -#: libraries/messages.inc.php:933 +#: libraries/messages.inc.php:929 msgid "The number of pages that have been written for doublewrite operations." msgstr "Le nombre de pages utilisées pour des opérations «doublewrite»." -#: libraries/messages.inc.php:934 +#: libraries/messages.inc.php:930 msgid "The number of doublewrite operations that have been performed." msgstr "Le nombre d'opérations «doublewrite» effectuées." -#: libraries/messages.inc.php:935 +#: libraries/messages.inc.php:931 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -5601,35 +5601,35 @@ msgstr "" "Le nombre d'attentes en raison d'un tampon du fichier témoin trop petit; il " "fallait attendre qu'il se libère avant de continuer." -#: libraries/messages.inc.php:936 +#: libraries/messages.inc.php:932 msgid "The number of log write requests." msgstr "Le nombre de requêtes d'écritures sur le fichier témoin." -#: libraries/messages.inc.php:937 +#: libraries/messages.inc.php:933 msgid "The number of physical writes to the log file." msgstr "Le nombre d'écritures physiques au fichier témoin." -#: libraries/messages.inc.php:938 +#: libraries/messages.inc.php:934 msgid "The number of fsync() writes done to the log file." msgstr "Le nombre d'écritures fsync() sur le fichier témoin." -#: libraries/messages.inc.php:939 +#: libraries/messages.inc.php:935 msgid "The number of pending log file fsyncs." msgstr "Le nombre de synchronisations (fsync) du fichier témoin en attente." -#: libraries/messages.inc.php:940 +#: libraries/messages.inc.php:936 msgid "Pending log file writes." msgstr "Le nombre d'écritures du fichier témoin en attente." -#: libraries/messages.inc.php:941 +#: libraries/messages.inc.php:937 msgid "The number of bytes written to the log file." msgstr "Le nombre d'octets écrits sur le fichier témoin." -#: libraries/messages.inc.php:942 +#: libraries/messages.inc.php:938 msgid "The number of pages created." msgstr "Le nombre de pages créées." -#: libraries/messages.inc.php:943 +#: libraries/messages.inc.php:939 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -5638,51 +5638,51 @@ msgstr "" "valeurs sont comptées par page; la taille de page leur permet d'être " "facilement converties en octets." -#: libraries/messages.inc.php:944 +#: libraries/messages.inc.php:940 msgid "The number of pages read." msgstr "Le nombre de pages lues." -#: libraries/messages.inc.php:945 +#: libraries/messages.inc.php:941 msgid "The number of pages written." msgstr "Le nombre de pages écrites." -#: libraries/messages.inc.php:946 +#: libraries/messages.inc.php:942 msgid "The number of row locks currently being waited for." msgstr "Le nombre de verrous d'enregistrements actuellement en attente." -#: libraries/messages.inc.php:947 +#: libraries/messages.inc.php:943 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Le temps d'attente moyen pour acquérir un verrou, en millisecondes." -#: libraries/messages.inc.php:948 +#: libraries/messages.inc.php:944 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Le temps total utilisé pour acquérir un verrou, en millisecondes." -#: libraries/messages.inc.php:949 +#: libraries/messages.inc.php:945 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Le temps d'attente maximum pour acquérir un verrou, en millisecondes." -#: libraries/messages.inc.php:950 +#: libraries/messages.inc.php:946 msgid "The number of times a row lock had to be waited for." msgstr "Le nombre de fois qu'on a dû attendre pour un verrou." -#: libraries/messages.inc.php:951 +#: libraries/messages.inc.php:947 msgid "The number of rows deleted from InnoDB tables." msgstr "Le nombre d'enregistrements supprimés des tables InnoDB." -#: libraries/messages.inc.php:952 +#: libraries/messages.inc.php:948 msgid "The number of rows inserted in InnoDB tables." msgstr "Le nombre d'enregistrements insérés dans des tables InnoDB." -#: libraries/messages.inc.php:953 +#: libraries/messages.inc.php:949 msgid "The number of rows read from InnoDB tables." msgstr "Le nombre d'enregistrements lus dans des tables InnoDB." -#: libraries/messages.inc.php:954 +#: libraries/messages.inc.php:950 msgid "The number of rows updated in InnoDB tables." msgstr "Le nombre d'enregistrements mis à jour dans des tables InnoDB." -#: libraries/messages.inc.php:955 +#: libraries/messages.inc.php:951 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -5691,7 +5691,7 @@ msgstr "" "pas encore transférés sur disque. Anciennement connu sous le nom " "Not_flushed_key_blocks." -#: libraries/messages.inc.php:956 +#: libraries/messages.inc.php:952 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -5700,7 +5700,7 @@ msgstr "" "cette valeur pour déterminer la proportion de la cache de clés qui est " "utilisée." -#: libraries/messages.inc.php:957 +#: libraries/messages.inc.php:953 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -5710,11 +5710,11 @@ msgstr "" "maximum du nombre de blocs qui ont été utilisés en même temps dans le cache " "de clés." -#: libraries/messages.inc.php:958 +#: libraries/messages.inc.php:954 msgid "The number of requests to read a key block from the cache." msgstr "Le nombre de requêtes de lecture d'un bloc de clés depuis la cache." -#: libraries/messages.inc.php:959 +#: libraries/messages.inc.php:955 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -5725,15 +5725,15 @@ msgstr "" "petite. Le taux d'échec de la cache peut être calculé par «Key reads/Key read " "requests»." -#: libraries/messages.inc.php:960 +#: libraries/messages.inc.php:956 msgid "The number of requests to write a key block to the cache." msgstr "Le nombre de requêtes en vue d'écrire un bloc de clé dans la cache." -#: libraries/messages.inc.php:961 +#: libraries/messages.inc.php:957 msgid "The number of physical writes of a key block to disk." msgstr "Le nombre d'écritures physiques d'un bloc de clés vers le disque." -#: libraries/messages.inc.php:962 +#: libraries/messages.inc.php:958 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -5744,11 +5744,11 @@ msgstr "" "pour une même requête. La valeur de 0 indique qu'aucune requête n'a encore " "été compilée." -#: libraries/messages.inc.php:963 +#: libraries/messages.inc.php:959 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Le nombre d'enregistrements en attente d'écriture (INSERT DELAYED)." -#: libraries/messages.inc.php:964 +#: libraries/messages.inc.php:960 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -5756,35 +5756,35 @@ msgstr "" "Le nombre tables qui ont été ouvertes. Si trop élevé, votre cache de table " "est probablement trop petite." -#: libraries/messages.inc.php:965 +#: libraries/messages.inc.php:961 msgid "The number of files that are open." msgstr "Le nombre de fichiers qui sont ouverts." -#: libraries/messages.inc.php:966 +#: libraries/messages.inc.php:962 msgid "The number of streams that are open (used mainly for logging)." msgstr "Le nombre de flux de données qui sont ouverts." -#: libraries/messages.inc.php:967 +#: libraries/messages.inc.php:963 msgid "The number of tables that are open." msgstr "Le nombre de tables qui sont ouvertes." -#: libraries/messages.inc.php:968 +#: libraries/messages.inc.php:964 msgid "The number of free memory blocks in query cache." msgstr "Le nombre de blocs de mémoire libre dans la cache de requêtes." -#: libraries/messages.inc.php:969 +#: libraries/messages.inc.php:965 msgid "The amount of free memory for query cache." msgstr "La quantité de mémoire libre dans la cache de requêtes." -#: libraries/messages.inc.php:970 +#: libraries/messages.inc.php:966 msgid "The number of cache hits." msgstr "Le nombre de succès dans la cache." -#: libraries/messages.inc.php:971 +#: libraries/messages.inc.php:967 msgid "The number of queries added to the cache." msgstr "Le nombre de requêtes ajoutées à la cache." -#: libraries/messages.inc.php:972 +#: libraries/messages.inc.php:968 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -5796,7 +5796,7 @@ msgstr "" "afin de peaufiner la taille de la cache. La stratégie utilisée pour " "déterminer quelles requêtes seront retirées est LRU (least recently used)." -#: libraries/messages.inc.php:973 +#: libraries/messages.inc.php:969 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -5804,24 +5804,24 @@ msgstr "" "Le nombre de requêtes non en cache (impossible à placer en cache, ou non " "cachée en raison du paramètre query_cache_type)." -#: libraries/messages.inc.php:974 +#: libraries/messages.inc.php:970 msgid "The number of queries registered in the cache." msgstr "Le nombre de requêtes enregistrées dans la cache." -#: libraries/messages.inc.php:975 +#: libraries/messages.inc.php:971 msgid "The total number of blocks in the query cache." msgstr "Le nombre total de blocs dans la cache de requêtes." -#: libraries/messages.inc.php:976 +#: libraries/messages.inc.php:972 msgctxt "$strShowStatusReset" msgid "Reset" msgstr "Réinitialiser" -#: libraries/messages.inc.php:977 +#: libraries/messages.inc.php:973 msgid "The status of failsafe replication (not yet implemented)." msgstr "L'état de la réplication sans échec (pas encore implantée)." -#: libraries/messages.inc.php:978 +#: libraries/messages.inc.php:974 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -5829,13 +5829,13 @@ msgstr "" "Le nombre de jointures qui n'ont pas utilisé d'index. Si cette valeur est " "supérieure à 0, vérifiez soigneusement les indexes de vos tables." -#: libraries/messages.inc.php:979 +#: libraries/messages.inc.php:975 msgid "The number of joins that used a range search on a reference table." msgstr "" "Le nombre de jointures qui ont utilisé une recherche par plage sur une table " "de référence." -#: libraries/messages.inc.php:980 +#: libraries/messages.inc.php:976 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -5844,7 +5844,7 @@ msgstr "" "enregistrement. (Si ceci est supérieur à 0, vérifiez soigneusement les " "indexes de vos tables.)" -#: libraries/messages.inc.php:981 +#: libraries/messages.inc.php:977 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -5852,19 +5852,19 @@ msgstr "" "Le nombre de jointures qui ont utilisé des plages sur la première table. " "(Normalement non critique même si cette valeur est élevée.)" -#: libraries/messages.inc.php:982 +#: libraries/messages.inc.php:978 msgid "The number of joins that did a full scan of the first table." msgstr "" "Le nombre de jointures qui ont nécessité le parcours complet de la première " "table." -#: libraries/messages.inc.php:983 +#: libraries/messages.inc.php:979 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "Le nombre de tables temporaires actuellement ouvertes par le fil d'exécution " "SQL de l'esclave." -#: libraries/messages.inc.php:984 +#: libraries/messages.inc.php:980 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -5872,11 +5872,11 @@ msgstr "" "Nombre de fois (depuis le démarrage) que le fil d'exécution SQL de l'esclave " "a envoyé à nouveau des transactions." -#: libraries/messages.inc.php:985 +#: libraries/messages.inc.php:981 msgid "This is ON if this server is a slave that is connected to a master." msgstr "Ceci est à ON si ce serveur est un esclave connecté à un maître." -#: libraries/messages.inc.php:986 +#: libraries/messages.inc.php:982 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -5884,14 +5884,14 @@ msgstr "" "Le nombre de fils d'exécution dont le temps de création a excédé " "slow_launch_time secondes." -#: libraries/messages.inc.php:987 +#: libraries/messages.inc.php:983 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "Le nombre de requêtes dont le temps d'exécution a excédé long_query_time " "secondes." -#: libraries/messages.inc.php:988 +#: libraries/messages.inc.php:984 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -5900,23 +5900,23 @@ msgstr "" "Le nombre d'opérations de fusion effectuées par l'algorithme de tri. Si ce " "nombre est élevé, augmentez la valeur du paramètre sort_buffer_size." -#: libraries/messages.inc.php:989 +#: libraries/messages.inc.php:985 msgid "The number of sorts that were done with ranges." msgstr "Le nombre de tri effectués avec des plages." -#: libraries/messages.inc.php:990 +#: libraries/messages.inc.php:986 msgid "The number of sorted rows." msgstr "Le nombre d'enregistrements triés." -#: libraries/messages.inc.php:991 +#: libraries/messages.inc.php:987 msgid "The number of sorts that were done by scanning the table." msgstr "Le nombre de tri effectués via un parcours de la table." -#: libraries/messages.inc.php:992 +#: libraries/messages.inc.php:988 msgid "The number of times that a table lock was acquired immediately." msgstr "Le nombre de fois qu'un verrou de table a été acquis immédiatement." -#: libraries/messages.inc.php:993 +#: libraries/messages.inc.php:989 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -5928,7 +5928,7 @@ msgstr "" "des problèmes de performance, commencez par optimiser vos requêtes, puis " "subdivisez vos tables ou encore utiliser la réplication." -#: libraries/messages.inc.php:994 +#: libraries/messages.inc.php:990 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -5938,11 +5938,11 @@ msgstr "" "calculé via Nombre de fils / connexion. Si cette valeur est en rouge, vous " "devriez augmenter la taille de cette cache." -#: libraries/messages.inc.php:995 +#: libraries/messages.inc.php:991 msgid "The number of currently open connections." msgstr "Le nombre de connexions ouvertes actuellement." -#: libraries/messages.inc.php:996 +#: libraries/messages.inc.php:992 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -5955,28 +5955,28 @@ msgstr "" "perceptible de la performance si votre serveur gère correctement les fils " "d'exécution." -#: libraries/messages.inc.php:997 +#: libraries/messages.inc.php:993 msgid "The number of threads that are not sleeping." msgstr "Le nombre de fils d'exécution non suspendus." -#: libraries/messages.inc.php:999 tbl_printview.php:75 +#: libraries/messages.inc.php:995 tbl_printview.php:75 msgid "Show tables" msgstr "Afficher les tables" -#: libraries/messages.inc.php:1000 libraries/sql_query_form.lib.php:396 +#: libraries/messages.inc.php:996 libraries/sql_query_form.lib.php:396 msgid " Show this query here again " msgstr "Afficher à nouveau la requête après exécution" -#: libraries/messages.inc.php:1001 libraries/mysql_charsets.lib.php:217 +#: libraries/messages.inc.php:997 libraries/mysql_charsets.lib.php:217 #: libraries/mysql_charsets.lib.php:342 msgid "Simplified Chinese" msgstr "chinois simplifié" -#: libraries/messages.inc.php:1002 tbl_operations.php:258 +#: libraries/messages.inc.php:998 tbl_operations.php:258 msgid "(singly)" msgstr "(à refaire après insertions/destructions)" -#: libraries/messages.inc.php:1005 libraries/replication_gui.lib.php:52 +#: libraries/messages.inc.php:1001 libraries/replication_gui.lib.php:52 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" @@ -5985,47 +5985,47 @@ msgstr "" "(my.cnf). Sinon, veuillez ajouter la ligne suivante dans la section " "[mysqld] :" -#: libraries/messages.inc.php:1006 libraries/mysql_charsets.lib.php:283 +#: libraries/messages.inc.php:1002 libraries/mysql_charsets.lib.php:283 msgid "Slovak" msgstr "slovaque" -#: libraries/messages.inc.php:1007 libraries/mysql_charsets.lib.php:286 +#: libraries/messages.inc.php:1003 libraries/mysql_charsets.lib.php:286 msgid "Slovenian" msgstr "slovène" -#: libraries/messages.inc.php:1008 pmd_general.php:95 +#: libraries/messages.inc.php:1004 pmd_general.php:95 msgid "Small/Big All" msgstr "Agrandir/réduire tout" -#: libraries/messages.inc.php:1009 pmd_general.php:91 +#: libraries/messages.inc.php:1005 pmd_general.php:91 msgid "Snap to grid" msgstr "Accrocher à la grille" -#: libraries/messages.inc.php:1011 server_synchronize.php:1167 +#: libraries/messages.inc.php:1007 server_synchronize.php:1167 msgid "Socket" msgstr "Interface de connexion (socket)" -#: libraries/messages.inc.php:1013 server_status.php:259 +#: libraries/messages.inc.php:1009 server_status.php:259 msgid "Sorting" msgstr "Mécanisme de tri" -#: libraries/messages.inc.php:1015 tbl_printview.php:310 tbl_structure.php:657 +#: libraries/messages.inc.php:1011 tbl_printview.php:310 tbl_structure.php:657 msgid "Space usage" msgstr "Espace utilisé" -#: libraries/messages.inc.php:1016 libraries/mysql_charsets.lib.php:289 +#: libraries/messages.inc.php:1012 libraries/mysql_charsets.lib.php:289 msgid "Spanish" msgstr "espagnol" -#: libraries/messages.inc.php:1019 +#: libraries/messages.inc.php:1015 msgid "Export type" msgstr "Type d'exportation" -#: libraries/messages.inc.php:1020 +#: libraries/messages.inc.php:1016 msgid "Export time in UTC" msgstr "Exporter l'heure en UTC" -#: libraries/messages.inc.php:1021 libraries/sqlparser.lib.php:173 +#: libraries/messages.inc.php:1017 libraries/sqlparser.lib.php:173 msgid "" "There is a chance that you may have found a bug in the SQL parser. Please " "examine your query closely, and check that the quotes are correct and not " @@ -6047,7 +6047,7 @@ msgstr "" "courte requête possible qui cause le problème, et soumettre un rapport " "d'anomalie en incluant la section à couper:" -#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:137 +#: libraries/messages.inc.php:1018 libraries/sqlparser.lib.php:137 msgid "" "There seems to be an error in your SQL query. The MySQL server error output " "below, if there is any, may also help you in diagnosing the problem" @@ -6055,32 +6055,32 @@ msgstr "" "Il semble qu'il y ait une erreur dans votre requête SQL. Le message ci-bas " "peut vous aider à en trouver la cause." -#: libraries/messages.inc.php:1026 libraries/sqlparser.lib.php:495 +#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:495 msgid "Invalid Identifer" msgstr "Identificateur invalide" -#: libraries/messages.inc.php:1027 libraries/sqlparser.lib.php:344 +#: libraries/messages.inc.php:1023 libraries/sqlparser.lib.php:344 msgid "Unclosed quote" msgstr "Apostrophe non fermé" -#: libraries/messages.inc.php:1028 libraries/sqlparser.lib.php:612 +#: libraries/messages.inc.php:1024 libraries/sqlparser.lib.php:612 msgid "Unknown Punctuation String" msgstr "Ponctuation invalide" -#: libraries/messages.inc.php:1030 server_replication.php:327 +#: libraries/messages.inc.php:1026 server_replication.php:327 #: server_replication.php:328 msgid "Start" msgstr "Démarrer" -#: libraries/messages.inc.php:1033 tbl_printview.php:369 tbl_structure.php:729 +#: libraries/messages.inc.php:1029 tbl_printview.php:369 tbl_structure.php:729 msgid "Statements" msgstr "Information" -#: libraries/messages.inc.php:1034 tbl_printview.php:380 tbl_structure.php:741 +#: libraries/messages.inc.php:1030 tbl_printview.php:380 tbl_structure.php:741 msgid "static" msgstr "statique" -#: libraries/messages.inc.php:1035 server_status.php:388 +#: libraries/messages.inc.php:1031 server_status.php:388 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -6089,42 +6089,42 @@ msgstr "" "dépassée, auquel cas les statistiques rapportées par MySQL peuvent être " "inexactes." -#: libraries/messages.inc.php:1038 server_replication.php:327 +#: libraries/messages.inc.php:1034 server_replication.php:327 #: server_replication.php:328 msgid "Stop" msgstr "Arrêter" -#: libraries/messages.inc.php:1039 server_engines.php:49 +#: libraries/messages.inc.php:1035 server_engines.php:49 msgid "Storage Engines" msgstr "Moteurs de stockage" -#: libraries/messages.inc.php:1040 libraries/tbl_properties.inc.php:726 +#: libraries/messages.inc.php:1036 libraries/tbl_properties.inc.php:726 #: server_engines.php:58 tbl_operations.php:353 msgid "Storage Engine" msgstr "Moteur de stockage" -#: libraries/messages.inc.php:1042 +#: libraries/messages.inc.php:1038 msgid "CSV for MS Excel" msgstr "CSV pour MS Excel" -#: libraries/messages.inc.php:1044 tbl_structure.php:516 tbl_structure.php:518 +#: libraries/messages.inc.php:1040 tbl_structure.php:516 tbl_structure.php:518 msgid "Propose table structure" msgstr "Suggérer des optimisations quant à la structure de la table" -#: libraries/messages.inc.php:1045 server_synchronize.php:424 +#: libraries/messages.inc.php:1041 server_synchronize.php:424 #: server_synchronize.php:867 msgid "Structure Difference" msgstr "Différence dans la structure" -#: libraries/messages.inc.php:1049 server_synchronize.php:265 +#: libraries/messages.inc.php:1045 server_synchronize.php:265 msgid "Structure Synchronization" msgstr "Synchronisation de structure" -#: libraries/messages.inc.php:1050 libraries/sql_query_form.lib.php:462 +#: libraries/messages.inc.php:1046 libraries/sql_query_form.lib.php:462 msgid "Submit" msgstr "Exécuter" -#: libraries/messages.inc.php:1052 main.php:358 +#: libraries/messages.inc.php:1048 main.php:358 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -6133,16 +6133,16 @@ msgstr "" "Ce serveur utilise Suhosin. Veuillez vous référer à la %sdocumentation%s " "pour en connaître les conséquences possibles." -#: libraries/messages.inc.php:1054 libraries/mysql_charsets.lib.php:295 +#: libraries/messages.inc.php:1050 libraries/mysql_charsets.lib.php:295 #: libraries/mysql_charsets.lib.php:392 msgid "Swedish" msgstr "suédois" -#: libraries/messages.inc.php:1060 tbl_operations.php:556 +#: libraries/messages.inc.php:1056 tbl_operations.php:556 msgid "Switch to copied table" msgstr "Aller à la table copiée" -#: libraries/messages.inc.php:1061 server_synchronize.php:1213 +#: libraries/messages.inc.php:1057 server_synchronize.php:1213 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -6150,147 +6150,147 @@ msgstr "" "La base de données cible sera complètement synchronisée avec la base source. " "La base source ne sera pas modifiée." -#: libraries/messages.inc.php:1062 server_synchronize.php:451 +#: libraries/messages.inc.php:1058 server_synchronize.php:451 #: server_synchronize.php:896 msgid "Synchronize Databases" msgstr "Synchroniser les bases de données" -#: libraries/messages.inc.php:1063 libraries/server_links.inc.php:92 +#: libraries/messages.inc.php:1059 libraries/server_links.inc.php:92 #: server_synchronize.php:1092 server_synchronize.php:1100 msgid "Synchronize" msgstr "Synchroniser" -#: libraries/messages.inc.php:1065 server_synchronize.php:430 +#: libraries/messages.inc.php:1061 server_synchronize.php:430 #: server_synchronize.php:873 msgid "Add column(s)" msgstr "Ajouter des colonnes" -#: libraries/messages.inc.php:1066 tbl_create.php:62 +#: libraries/messages.inc.php:1062 tbl_create.php:62 #, php-format msgid "Table %s already exists!" msgstr "La table %s existe déjà!" -#: libraries/messages.inc.php:1067 server_synchronize.php:432 +#: libraries/messages.inc.php:1063 server_synchronize.php:432 #: server_synchronize.php:875 msgid "Alter column(s)" msgstr "Modifier des colonnes" -#: libraries/messages.inc.php:1068 tbl_addfield.php:189 tbl_alter.php:103 +#: libraries/messages.inc.php:1064 tbl_addfield.php:189 tbl_alter.php:103 #: tbl_indexes.php:98 #, php-format msgid "Table %1$s has been altered successfully" msgstr "La table %1$s a été modifiée avec succès." -#: libraries/messages.inc.php:1069 server_synchronize.php:434 +#: libraries/messages.inc.php:1065 server_synchronize.php:434 #: server_synchronize.php:877 msgid "Apply index(s)" msgstr "Appliquer des index" -#: libraries/messages.inc.php:1071 server_synchronize.php:446 +#: libraries/messages.inc.php:1067 server_synchronize.php:446 #: server_synchronize.php:890 msgid "Would you like to delete all the previous rows from target tables?" msgstr "Voulez-vous supprimer tous les enregistrements des tables cible?" -#: libraries/messages.inc.php:1072 tbl_move_copy.php:82 +#: libraries/messages.inc.php:1068 tbl_move_copy.php:82 msgid "The table name is empty!" msgstr "Le nom de la table est vide" -#: libraries/messages.inc.php:1073 tbl_create.php:249 +#: libraries/messages.inc.php:1069 tbl_create.php:249 #, php-format msgid "Table %1$s has been created." msgstr "La table %1$s a été créée." -#: libraries/messages.inc.php:1076 tbl_operations.php:628 +#: libraries/messages.inc.php:1072 tbl_operations.php:628 #, php-format msgid "Table %s has been flushed" msgstr "La table %s a été rechargée" -#: libraries/messages.inc.php:1077 server_synchronize.php:436 +#: libraries/messages.inc.php:1073 server_synchronize.php:436 #: server_synchronize.php:879 msgid "Insert row(s)" msgstr "Insérer des enregistrements" -#: libraries/messages.inc.php:1078 libraries/tbl_links.inc.php:107 +#: libraries/messages.inc.php:1074 libraries/tbl_links.inc.php:107 #: libraries/tbl_links.inc.php:140 libraries/tbl_links.inc.php:141 msgid "Table seems to be empty!" msgstr "La table semble vide!" -#: libraries/messages.inc.php:1079 tbl_operations.php:568 +#: libraries/messages.inc.php:1075 tbl_operations.php:568 msgid "Table maintenance" msgstr "Maintenance de la table" -#: libraries/messages.inc.php:1080 libraries/tbl_properties.inc.php:618 +#: libraries/messages.inc.php:1076 libraries/tbl_properties.inc.php:618 #: server_synchronize.php:428 server_synchronize.php:871 msgid "Table name" msgstr "Nom de la table" -#: libraries/messages.inc.php:1081 pdf_schema.php:1116 +#: libraries/messages.inc.php:1077 pdf_schema.php:1116 msgid "Table of contents" msgstr "Table des matières" -#: libraries/messages.inc.php:1082 tbl_operations.php:334 +#: libraries/messages.inc.php:1078 tbl_operations.php:334 msgid "Table options" msgstr "Options pour cette table" -#: libraries/messages.inc.php:1083 server_synchronize.php:431 +#: libraries/messages.inc.php:1079 server_synchronize.php:431 #: server_synchronize.php:874 msgid "Remove column(s)" msgstr "Supprimer des colonnes" -#: libraries/messages.inc.php:1084 server_synchronize.php:433 +#: libraries/messages.inc.php:1080 server_synchronize.php:433 #: server_synchronize.php:876 msgid "Remove index(s)" msgstr "Supprimer des index" -#: libraries/messages.inc.php:1088 server_synchronize.php:435 +#: libraries/messages.inc.php:1084 server_synchronize.php:435 #: server_synchronize.php:878 msgid "Update row(s)" msgstr "Modifier des enregistrements" -#: libraries/messages.inc.php:1090 server_synchronize.php:942 +#: libraries/messages.inc.php:1086 server_synchronize.php:942 msgid "Target database has been synchronized with source database" msgstr "La base cible a été synchronizée avec la base source" -#: libraries/messages.inc.php:1091 server_privileges.php:392 +#: libraries/messages.inc.php:1087 server_privileges.php:392 #: server_privileges.php:527 server_privileges.php:1679 #: server_privileges.php:1685 msgid "Table-specific privileges" msgstr "Privilèges spécifiques à une table" -#: libraries/messages.inc.php:1092 server_status.php:254 +#: libraries/messages.inc.php:1088 server_status.php:254 msgid "Temporary data" msgstr "Données temporaires" -#: libraries/messages.inc.php:1093 tbl_change.php:728 +#: libraries/messages.inc.php:1089 tbl_change.php:728 msgid " Because of its length,
this field might not be editable " msgstr "" "Il est possible que ce champ
ne soit pas éditable
en raison de sa " "longueur" -#: libraries/messages.inc.php:1094 +#: libraries/messages.inc.php:1090 msgid "Texy! text" msgstr "Texte Texy!" -#: libraries/messages.inc.php:1095 libraries/mysql_charsets.lib.php:298 +#: libraries/messages.inc.php:1091 libraries/mysql_charsets.lib.php:298 #: libraries/mysql_charsets.lib.php:395 msgid "Thai" msgstr "thaï" -#: libraries/messages.inc.php:1102 libraries/replication_gui.lib.php:308 +#: libraries/messages.inc.php:1098 libraries/replication_gui.lib.php:308 #: server_privileges.php:734 msgid "This Host" msgstr "Ce serveur" -#: libraries/messages.inc.php:1103 server_status.php:252 +#: libraries/messages.inc.php:1099 server_status.php:252 msgid "Threads" msgstr "Fils d'exécution" -#: libraries/messages.inc.php:1104 server_processlist.php:22 +#: libraries/messages.inc.php:1100 server_processlist.php:22 #, php-format msgid "Thread %s was successfully killed." msgstr "Le processus %s a été éliminé." -#: libraries/messages.inc.php:1106 +#: libraries/messages.inc.php:1102 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -6299,158 +6299,158 @@ msgstr "" "signifie que phpMyAdmin ne pourra terminer cette importation, à moins que la " "limite de temps de PHP ne soit augmentée." -#: libraries/messages.inc.php:1109 pmd_pdf.php:94 +#: libraries/messages.inc.php:1105 pmd_pdf.php:94 msgid "to/from page" msgstr "de/vers la page" -#: libraries/messages.inc.php:1110 pdf_pages.php:343 +#: libraries/messages.inc.php:1106 pdf_pages.php:343 msgid "Toggle scratchboard" msgstr "Éditeur visuel" -#: libraries/messages.inc.php:1111 pmd_general.php:99 +#: libraries/messages.inc.php:1107 pmd_general.php:99 msgid "Toggle small/big" msgstr "Bascule agrandir/réduire" -#: libraries/messages.inc.php:1112 pmd_help.php:27 +#: libraries/messages.inc.php:1108 pmd_help.php:27 msgid "To select relation, click :" msgstr "Pour sélectionner un lien, cliquez :" -#: libraries/messages.inc.php:1115 libraries/tbl_links.inc.php:149 +#: libraries/messages.inc.php:1111 libraries/tbl_links.inc.php:149 #, php-format msgid "Tracking of %s.%s is activated." msgstr "Le suivi de %s.%s est activé." -#: libraries/messages.inc.php:1116 tbl_tracking.php:655 +#: libraries/messages.inc.php:1112 tbl_tracking.php:655 msgid "Activate now" msgstr "Activer maintenant" -#: libraries/messages.inc.php:1117 tbl_tracking.php:653 +#: libraries/messages.inc.php:1113 tbl_tracking.php:653 #, php-format msgid "Activate tracking for %s.%s" msgstr "Activer le suivi de %s.%s" -#: libraries/messages.inc.php:1118 tbl_tracking.php:221 +#: libraries/messages.inc.php:1114 tbl_tracking.php:221 msgid "Comment out these two lines if you do not need them." msgstr "Enlevez les deux lignes suivantes si elles sont inutiles." -#: libraries/messages.inc.php:1119 tbl_tracking.php:688 +#: libraries/messages.inc.php:1115 tbl_tracking.php:688 msgid "Create version" msgstr "Créer une version" -#: libraries/messages.inc.php:1120 tbl_tracking.php:668 +#: libraries/messages.inc.php:1116 tbl_tracking.php:668 #, php-format msgid "Create version %s of %s.%s" msgstr "Créer la version %s de %s.%s" -#: libraries/messages.inc.php:1122 tbl_tracking.php:412 +#: libraries/messages.inc.php:1118 tbl_tracking.php:412 msgid "Data definition statement" msgstr "Énoncé de définition de données" -#: libraries/messages.inc.php:1123 tbl_tracking.php:463 +#: libraries/messages.inc.php:1119 tbl_tracking.php:463 msgid "Data manipulation statement" msgstr "Énoncé de manipulation de données" -#: libraries/messages.inc.php:1124 tbl_tracking.php:410 tbl_tracking.php:461 +#: libraries/messages.inc.php:1120 tbl_tracking.php:410 tbl_tracking.php:461 msgid "Date" msgstr "Date" -#: libraries/messages.inc.php:1125 tbl_tracking.php:642 +#: libraries/messages.inc.php:1121 tbl_tracking.php:642 msgid "Deactivate now" msgstr "Désactiver maintenant" -#: libraries/messages.inc.php:1126 tbl_tracking.php:640 +#: libraries/messages.inc.php:1122 tbl_tracking.php:640 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "Désactiver le suivi de %s.%s" -#: libraries/messages.inc.php:1127 tbl_tracking.php:521 +#: libraries/messages.inc.php:1123 tbl_tracking.php:521 #, php-format msgid "Export as %s" msgstr "Exporter en tant que %s" -#: libraries/messages.inc.php:1130 tbl_tracking.php:251 tbl_tracking.php:379 +#: libraries/messages.inc.php:1126 tbl_tracking.php:251 tbl_tracking.php:379 msgid "Close" msgstr "Fermer" -#: libraries/messages.inc.php:1131 tbl_tracking.php:114 +#: libraries/messages.inc.php:1127 tbl_tracking.php:114 #, php-format msgid "Tracking report for table `%s`" msgstr "Rapport de suivi pour la table `%s`" -#: libraries/messages.inc.php:1133 tbl_tracking.php:397 tbl_tracking.php:504 +#: libraries/messages.inc.php:1129 tbl_tracking.php:397 tbl_tracking.php:504 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "Montrer %s depuis le %s jusqu'au %s par l'utilisateur %s %s" -#: libraries/messages.inc.php:1134 tbl_tracking.php:561 +#: libraries/messages.inc.php:1130 tbl_tracking.php:561 msgid "Show versions" msgstr "Montrer les versions" -#: libraries/messages.inc.php:1135 tbl_tracking.php:507 +#: libraries/messages.inc.php:1131 tbl_tracking.php:507 msgid "SQL dump (file download)" msgstr "Exportation SQL (télécharger)" -#: libraries/messages.inc.php:1136 tbl_tracking.php:508 +#: libraries/messages.inc.php:1132 tbl_tracking.php:508 msgid "SQL dump" msgstr "Exportation SQL" -#: libraries/messages.inc.php:1137 tbl_tracking.php:213 +#: libraries/messages.inc.php:1133 tbl_tracking.php:213 msgid "SQL statements executed." msgstr "Énoncés SQL exécutés." -#: libraries/messages.inc.php:1138 +#: libraries/messages.inc.php:1134 msgid "This option will replace your table and contained data." msgstr "Cette option remplacera votre table et son contenu." -#: libraries/messages.inc.php:1139 tbl_tracking.php:509 +#: libraries/messages.inc.php:1135 tbl_tracking.php:509 msgid "SQL execution" msgstr "Exécution SQL" -#: libraries/messages.inc.php:1140 tbl_tracking.php:230 +#: libraries/messages.inc.php:1136 tbl_tracking.php:230 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "Énoncés SQL exportés. Vous pouvez copier le fichier ou l'exécuter." -#: libraries/messages.inc.php:1141 tbl_tracking.php:381 +#: libraries/messages.inc.php:1137 tbl_tracking.php:381 msgid "Tracking statements" msgstr "Suivi des énoncés" -#: libraries/messages.inc.php:1148 tbl_tracking.php:593 +#: libraries/messages.inc.php:1144 tbl_tracking.php:593 msgid "Version" msgstr "Version" -#: libraries/messages.inc.php:1149 tbl_tracking.php:672 +#: libraries/messages.inc.php:1145 tbl_tracking.php:672 msgid "Track these data definition statements:" msgstr "Suivre les énoncés de définition de données suivants :" -#: libraries/messages.inc.php:1150 tbl_tracking.php:680 +#: libraries/messages.inc.php:1146 tbl_tracking.php:680 msgid "Track these data manipulation statements:" msgstr "Suivre les énoncés de manipulation de données suivants :" -#: libraries/messages.inc.php:1155 tbl_tracking.php:411 tbl_tracking.php:462 +#: libraries/messages.inc.php:1151 tbl_tracking.php:411 tbl_tracking.php:462 msgid "Username" msgstr "Utilisateur" -#: libraries/messages.inc.php:1156 tbl_tracking.php:203 +#: libraries/messages.inc.php:1152 tbl_tracking.php:203 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "Le suivi pour %s.%s , version %s est activé." -#: libraries/messages.inc.php:1157 tbl_tracking.php:187 +#: libraries/messages.inc.php:1153 tbl_tracking.php:187 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "Version %s créée, le suivi pour %s.%s est activé." -#: libraries/messages.inc.php:1158 tbl_tracking.php:195 +#: libraries/messages.inc.php:1154 tbl_tracking.php:195 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "Le suivi pour %s.%s , version %s est désactivé." -#: libraries/messages.inc.php:1159 tbl_tracking.php:262 +#: libraries/messages.inc.php:1155 tbl_tracking.php:262 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Instantané de la version %s (code SQL)" -#: libraries/messages.inc.php:1161 tbl_tracking.php:220 +#: libraries/messages.inc.php:1157 tbl_tracking.php:220 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -6459,24 +6459,24 @@ msgstr "" "temporaire. Veuillez vous assurer que vous avez les privilèges appropriés à " "cette opération." -#: libraries/messages.inc.php:1162 libraries/mysql_charsets.lib.php:219 +#: libraries/messages.inc.php:1158 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:362 msgid "Traditional Chinese" msgstr "chinois traditionnel" -#: libraries/messages.inc.php:1163 libraries/mysql_charsets.lib.php:292 +#: libraries/messages.inc.php:1159 libraries/mysql_charsets.lib.php:292 msgid "Traditional Spanish" msgstr "espagnol traditionnel" -#: libraries/messages.inc.php:1164 server_status.php:388 +#: libraries/messages.inc.php:1160 server_status.php:388 msgid "Traffic" msgstr "Trafic" -#: libraries/messages.inc.php:1165 server_status.php:261 +#: libraries/messages.inc.php:1161 server_status.php:261 msgid "Transaction coordinator" msgstr "Coordonnateur des transactions" -#: libraries/messages.inc.php:1166 +#: libraries/messages.inc.php:1162 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 " @@ -6488,7 +6488,7 @@ msgstr "" "de la colonne contenant le nom du fichier. Si vous utilisez la seconde " "option, veuillez laisser la première option vide." -#: libraries/messages.inc.php:1167 +#: libraries/messages.inc.php:1163 msgid "" "Displays hexadecimal representation of data. Optional first parameter " "specifies how often space will be added (defaults to 2 nibbles)." @@ -6497,7 +6497,7 @@ msgstr "" "est optionnel et spécifie à quel intervalle un espace sera ajouté (par " "défaut, à chaque 2 nibbles)." -#: libraries/messages.inc.php:1168 +#: libraries/messages.inc.php:1164 msgid "" "Displays a clickable thumbnail. The options are the maximum width and height " "in pixels. The original aspect ratio is preserved." @@ -6505,15 +6505,15 @@ msgstr "" "Affiche une image timbre-poste cliquable. Les options sont: largeur,hauteur " "en pixels. Le rapport original de l'image est préservé." -#: libraries/messages.inc.php:1169 +#: libraries/messages.inc.php:1165 msgid "Displays a link to download this image." msgstr "Affiche un lien vers cette image" -#: libraries/messages.inc.php:1170 +#: libraries/messages.inc.php:1166 msgid "See image/jpeg: inline" msgstr "Voir image/jpeg: inline" -#: libraries/messages.inc.php:1171 +#: libraries/messages.inc.php:1167 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 " @@ -6532,7 +6532,7 @@ msgstr "" "second paramètre utilise le format de la fonction PHP strftime() et pour le " "format «utc», il utilise la fonction gmdate()." -#: libraries/messages.inc.php:1172 +#: libraries/messages.inc.php:1168 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 " @@ -6556,7 +6556,7 @@ msgstr "" "avec la fonction htmlspecialchars() (par défaut, 1). En option 4, une valeur " "de 1 va ajouter NOWRAP à la cellule affichée (par défaut, 1)." -#: libraries/messages.inc.php:1173 +#: libraries/messages.inc.php:1169 msgid "" "Displays the contents of the field as-is, without running it through " "htmlspecialchars(). That is, the field is assumed to contain valid HTML." @@ -6565,7 +6565,7 @@ msgstr "" "d'échappement avec la fonction htmlspecialchars(). Donc il est assumé que le " "champ contient du HTML valide." -#: libraries/messages.inc.php:1174 +#: libraries/messages.inc.php:1170 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 " @@ -6576,7 +6576,7 @@ msgstr "" "seconde option est la largeur en pixels et la troisième option est la " "hauteur en pixels." -#: libraries/messages.inc.php:1175 +#: libraries/messages.inc.php:1171 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 " @@ -6586,12 +6586,12 @@ msgstr "" "préfixe comme «http://www.example.com/», en seconde option, un titre pour le " "lien." -#: libraries/messages.inc.php:1176 +#: libraries/messages.inc.php:1172 msgid "Formats text as SQL query with syntax highlighting." msgstr "" "Affiche le texte comme une requête SQL avec embellissement de la syntaxe." -#: libraries/messages.inc.php:1177 +#: libraries/messages.inc.php:1173 msgid "" "Displays a part of a string. The first option is the number of characters to " "skip from the beginning of the string (Default 0). The second option is the " @@ -6604,71 +6604,71 @@ msgstr "" "défaut, le reste). En troisième option, des caractères à afficher à la fin " "du texte (par défaut: «...»)." -#: libraries/messages.inc.php:1179 server_binlog.php:183 server_binlog.php:186 +#: libraries/messages.inc.php:1175 server_binlog.php:183 server_binlog.php:186 #: server_processlist.php:49 server_processlist.php:51 msgid "Truncate Shown Queries" msgstr "Afficher les requêtes tronquées" -#: libraries/messages.inc.php:1180 libraries/mysql_charsets.lib.php:301 +#: libraries/messages.inc.php:1176 libraries/mysql_charsets.lib.php:301 #: libraries/mysql_charsets.lib.php:389 msgid "Turkish" msgstr "turc" -#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:304 +#: libraries/messages.inc.php:1179 libraries/mysql_charsets.lib.php:304 #: libraries/mysql_charsets.lib.php:386 msgid "Ukrainian" msgstr "ukrainien" -#: libraries/messages.inc.php:1185 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:1181 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 msgid "Unicode" msgstr "Unicode" -#: libraries/messages.inc.php:1187 libraries/mysql_charsets.lib.php:398 +#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:398 #: libraries/mysql_charsets.lib.php:405 msgid "unknown" msgstr "inconnu" -#: libraries/messages.inc.php:1190 server_privileges.php:1152 +#: libraries/messages.inc.php:1186 server_privileges.php:1152 #, php-format msgid "You have updated the privileges for %s." msgstr "Vous avez modifié les privilèges pour %s." -#: libraries/messages.inc.php:1191 user_password.php:112 +#: libraries/messages.inc.php:1187 user_password.php:112 msgid "The profile has been updated." msgstr "Le profil a été modifié." -#: libraries/messages.inc.php:1193 libraries/relation.lib.php:138 +#: libraries/messages.inc.php:1189 libraries/relation.lib.php:138 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "La documentation indique comment mettre à jour votre table Column_comments" -#: libraries/messages.inc.php:1194 +#: libraries/messages.inc.php:1190 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Vous devriez utiliser %s en version %s ou plus récente." -#: libraries/messages.inc.php:1204 tbl_printview.php:314 tbl_structure.php:661 +#: libraries/messages.inc.php:1200 tbl_printview.php:314 tbl_structure.php:661 msgid "Usage" msgstr "Espace" -#: libraries/messages.inc.php:1205 +#: libraries/messages.inc.php:1201 msgid "Enclose table and field names with backquotes" msgstr "" "Protéger les noms des tables et des champs par des guillemets obliques «`»" -#: libraries/messages.inc.php:1206 libraries/replication_gui.lib.php:314 +#: libraries/messages.inc.php:1202 libraries/replication_gui.lib.php:314 #: server_privileges.php:740 msgid "Use Host Table" msgstr "Utiliser la table Host" -#: libraries/messages.inc.php:1207 server_privileges.php:848 +#: libraries/messages.inc.php:1203 server_privileges.php:848 #, php-format msgid "The user %s already exists!" msgstr "L'utilisateur %s existe déjà!" -#: libraries/messages.inc.php:1209 libraries/replication_gui.lib.php:55 +#: libraries/messages.inc.php:1205 libraries/replication_gui.lib.php:55 #: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245 #: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255 #: server_privileges.php:672 server_privileges.php:675 @@ -6676,37 +6676,37 @@ msgstr "L'utilisateur %s existe déjà!" msgid "User name" msgstr "Nom d'utilisateur" -#: libraries/messages.inc.php:1210 server_privileges.php:1645 +#: libraries/messages.inc.php:1206 server_privileges.php:1645 msgid "The selected user was not found in the privilege table." msgstr "L'utilisateur choisi n'existe pas dans la table des privilèges" -#: libraries/messages.inc.php:1211 server_privileges.php:1365 +#: libraries/messages.inc.php:1207 server_privileges.php:1365 msgid "User overview" msgstr "Vue d'ensemble des utilisateurs" -#: libraries/messages.inc.php:1212 server_privileges.php:1261 +#: libraries/messages.inc.php:1208 server_privileges.php:1261 msgid "The selected users have been deleted successfully." msgstr "Les utilisateurs sélectionnés ont été effacés." -#: libraries/messages.inc.php:1213 server_privileges.php:2026 +#: libraries/messages.inc.php:1209 server_privileges.php:2026 #, php-format msgid "Users having access to "%s"" msgstr "Utilisateurs ayant accès à "%s"" -#: libraries/messages.inc.php:1214 main.php:189 server_privileges.php:1350 +#: libraries/messages.inc.php:1210 main.php:189 server_privileges.php:1350 #: server_privileges.php:1497 server_privileges.php:1611 #: server_privileges.php:2029 server_processlist.php:54 msgid "User" msgstr "Utilisateur" -#: libraries/messages.inc.php:1215 tbl_change.php:1171 +#: libraries/messages.inc.php:1211 tbl_change.php:1171 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Utilisez la tabulation pour aller d'une valeur à l'autre, ou CTRL+flèches " "pour aller n'importe où" -#: libraries/messages.inc.php:1217 libraries/replication_gui.lib.php:251 +#: libraries/messages.inc.php:1213 libraries/replication_gui.lib.php:251 #: libraries/replication_gui.lib.php:319 libraries/replication_gui.lib.php:342 #: server_privileges.php:678 server_privileges.php:745 #: server_privileges.php:769 server_privileges.php:1889 @@ -6714,7 +6714,7 @@ msgstr "" msgid "Use text field" msgstr "Entrez une valeur" -#: libraries/messages.inc.php:1221 libraries/sqlvalidator.lib.php:68 +#: libraries/messages.inc.php:1217 libraries/sqlvalidator.lib.php:68 #, php-format msgid "" "The SQL validator could not be initialized. Please check if you have " @@ -6723,84 +6723,84 @@ msgstr "" "Le validateur SQL n'a pas pu être initialisé. Vérifiez que les extensions " "PHP nécessaires ont bien été installées (voir la %sdocumentation%s)." -#: libraries/messages.inc.php:1222 libraries/replication_gui.lib.php:111 +#: libraries/messages.inc.php:1218 libraries/replication_gui.lib.php:111 #: server_status.php:627 tbl_change.php:324 tbl_printview.php:370 #: tbl_select.php:139 tbl_structure.php:730 msgid "Value" msgstr "Valeur" -#: libraries/messages.inc.php:1223 libraries/replication_gui.lib.php:110 +#: libraries/messages.inc.php:1219 libraries/replication_gui.lib.php:110 #: libraries/sql_query_form.lib.php:445 server_status.php:626 #: server_variables.php:52 msgid "Variable" msgstr "Variable" -#: libraries/messages.inc.php:1225 server_export.php:21 +#: libraries/messages.inc.php:1221 server_export.php:21 msgid "View dump (schema) of databases" msgstr "Schéma et/ou contenu des bases de données" -#: libraries/messages.inc.php:1227 tbl_export.php:23 +#: libraries/messages.inc.php:1223 tbl_export.php:23 msgid "View dump (schema) of table" msgstr "Afficher le schéma de la table" -#: libraries/messages.inc.php:1231 view_create.php:142 +#: libraries/messages.inc.php:1227 view_create.php:142 msgid "VIEW name" msgstr "Nom de la vue" -#: libraries/messages.inc.php:1237 main.php:205 +#: libraries/messages.inc.php:1233 main.php:205 msgid "Web server" msgstr "Serveur web" -#: libraries/messages.inc.php:1239 libraries/mysql_charsets.lib.php:277 +#: libraries/messages.inc.php:1235 libraries/mysql_charsets.lib.php:277 #: libraries/mysql_charsets.lib.php:325 msgid "West European" msgstr "Europe de l'ouest" -#: libraries/messages.inc.php:1240 main.php:230 +#: libraries/messages.inc.php:1236 main.php:230 msgid "Wiki" msgstr "Wiki" -#: libraries/messages.inc.php:1241 server_privileges.php:2138 +#: libraries/messages.inc.php:1237 server_privileges.php:2138 msgid "wildcard" msgstr "passepartout" -#: libraries/messages.inc.php:1248 +#: libraries/messages.inc.php:1244 msgid "Export contents" msgstr "Exporter le contenu" -#: libraries/messages.inc.php:1249 +#: libraries/messages.inc.php:1245 msgid "Export functions" msgstr "Exporter les fonctions" -#: libraries/messages.inc.php:1250 +#: libraries/messages.inc.php:1246 msgid "Export procedures" msgstr "Exporter les procédures" -#: libraries/messages.inc.php:1251 +#: libraries/messages.inc.php:1247 msgid "Export Structure Schemas (recommended)" msgstr "Exporter les schémas de structure (recommandé)" -#: libraries/messages.inc.php:1252 +#: libraries/messages.inc.php:1248 msgid "Export tables" msgstr "Exporter les tables" -#: libraries/messages.inc.php:1253 +#: libraries/messages.inc.php:1249 msgid "Export triggers" msgstr "Exporter les déclencheurs" -#: libraries/messages.inc.php:1254 +#: libraries/messages.inc.php:1250 msgid "Export views" msgstr "Exporter les vues" -#: libraries/messages.inc.php:1255 +#: libraries/messages.inc.php:1251 msgid "XML" msgstr "XML" -#: libraries/messages.inc.php:1259 server_privileges.php:592 +#: libraries/messages.inc.php:1255 server_privileges.php:592 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Note: Une valeur de 0 (zero) enlève la limite." -#: libraries/messages.inc.php:1260 +#: libraries/messages.inc.php:1256 msgid "\"zipped\"" msgstr "«zippé »" diff --git a/po/gl.po b/po/gl.po index f403b8c07..6a0eda6e3 100644 --- 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-05-13 11:25+0200\n" +"POT-Creation-Date: 2010-05-13 11:30+0200\n" "PO-Revision-Date: 2010-03-12 09:14+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: galician \n" @@ -13,19 +13,19 @@ msgstr "" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:38 browse_foreigners.php:59 -#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:870 +#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:866 #: server_privileges.php:1475 msgid "Show all" msgstr "Ver todos os rexistros" #: browse_foreigners.php:82 db_operations.php:648 -#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:394 -#: libraries/export/pdf.php:147 libraries/messages.inc.php:597 +#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394 +#: libraries/export/pdf.php:147 libraries/messages.inc.php:593 #: pdf_schema.php:283 pdf_schema.php:1123 pdf_schema.php:1139 msgid "Page number:" msgstr "Número de páxina:" -#: browse_foreigners.php:132 libraries/messages.inc.php:1242 +#: browse_foreigners.php:132 libraries/messages.inc.php:1238 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -39,7 +39,7 @@ 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/db_links.inc.php:75 -#: libraries/messages.inc.php:841 libraries/tbl_links.inc.php:63 +#: libraries/messages.inc.php:837 libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Procurar" @@ -48,12 +48,12 @@ msgstr "Procurar" #: db_search.php:362 db_structure.php:567 js/messages.php:48 #: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2267 +#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 #: 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 #: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614 -#: libraries/messages.inc.php:361 libraries/replication_gui.lib.php:73 +#: libraries/messages.inc.php:357 libraries/replication_gui.lib.php:73 #: libraries/replication_gui.lib.php:365 libraries/select_server.lib.php:104 #: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477 #: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782 @@ -73,33 +73,33 @@ msgid "Go" msgstr "Executar" #: browse_foreigners.php:168 browse_foreigners.php:172 -#: libraries/Index.class.php:442 libraries/messages.inc.php:459 +#: libraries/Index.class.php:442 libraries/messages.inc.php:455 #: tbl_tracking.php:320 msgid "Keyname" msgstr "Nome chave" #: browse_foreigners.php:169 browse_foreigners.php:171 -#: libraries/messages.inc.php:252 server_collations.php:55 +#: libraries/messages.inc.php:248 server_collations.php:55 #: server_collations.php:67 server_engines.php:59 server_status.php:628 msgid "Description" msgstr "Descrición" #: browse_foreigners.php:247 browse_foreigners.php:256 #: browse_foreigners.php:268 browse_foreigners.php:276 -#: libraries/messages.inc.php:1218 +#: libraries/messages.inc.php:1214 msgid "Use this value" msgstr "Usar este valor" -#: db_create.php:46 libraries/messages.inc.php:215 +#: db_create.php:46 libraries/messages.inc.php:211 #, php-format msgid "Database %1$s has been created." msgstr "Creouse a base de datos %1$s." -#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:232 +#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:228 msgid "Database comment: " msgstr "Comentario da base de datos: " -#: db_datadict.php:165 libraries/messages.inc.php:1070 +#: db_datadict.php:165 libraries/messages.inc.php:1066 #: libraries/tbl_properties.inc.php:724 pdf_schema.php:1236 #: tbl_operations.php:345 tbl_printview.php:130 msgid "Table comments" @@ -108,7 +108,7 @@ msgstr "Comentarios da táboa" #: db_datadict.php:174 db_qbe.php:174 libraries/Index.class.php:446 #: libraries/export/htmlword.php:244 libraries/export/latex.php:360 #: libraries/export/odt.php:294 libraries/export/texytext.php:233 -#: libraries/messages.inc.php:317 libraries/tbl_properties.inc.php:99 +#: libraries/messages.inc.php:313 libraries/tbl_properties.inc.php:99 #: libraries/tbl_properties.inc.php:275 pdf_schema.php:1262 #: pdf_schema.php:1283 tbl_change.php:308 tbl_indexes.php:189 #: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135 @@ -120,7 +120,7 @@ msgstr "Campo" #: libraries/db_events.inc.php:31 libraries/db_routines.inc.php:42 #: 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/messages.inc.php:1181 +#: libraries/export/texytext.php:234 libraries/messages.inc.php:1177 #: libraries/tbl_properties.inc.php:100 pdf_schema.php:1263 #: pdf_schema.php:1284 server_privileges.php:2031 tbl_change.php:287 #: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313 @@ -132,7 +132,7 @@ msgstr "Tipo" #: db_datadict.php:177 libraries/Index.class.php:449 #: libraries/export/htmlword.php:246 libraries/export/latex.php:360 #: libraries/export/odt.php:300 libraries/export/texytext.php:235 -#: libraries/messages.inc.php:576 libraries/tbl_properties.inc.php:109 +#: libraries/messages.inc.php:572 libraries/tbl_properties.inc.php:109 #: pdf_schema.php:1265 pdf_schema.php:1286 tbl_change.php:323 #: tbl_printview.php:145 tbl_structure.php:181 tbl_tracking.php:276 #: tbl_tracking.php:327 @@ -141,7 +141,7 @@ msgstr "Nulo" #: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 -#: libraries/export/texytext.php:236 libraries/messages.inc.php:238 +#: libraries/export/texytext.php:236 libraries/messages.inc.php:234 #: libraries/tbl_properties.inc.php:106 pdf_schema.php:1266 #: pdf_schema.php:1287 tbl_printview.php:146 tbl_structure.php:182 #: tbl_tracking.php:277 @@ -150,14 +150,14 @@ msgstr "Padrón" #: db_datadict.php:182 libraries/export/htmlword.php:249 #: libraries/export/latex.php:362 libraries/export/odt.php:307 -#: libraries/export/texytext.php:238 libraries/messages.inc.php:483 +#: libraries/export/texytext.php:238 libraries/messages.inc.php:479 #: pdf_schema.php:1268 pdf_schema.php:1289 tbl_printview.php:150 msgid "Links to" msgstr "Vincúlase con" #: db_datadict.php:184 db_printview.php:112 libraries/export/htmlword.php:252 #: libraries/export/latex.php:365 libraries/export/odt.php:312 -#: libraries/export/texytext.php:241 libraries/messages.inc.php:163 +#: libraries/export/texytext.php:241 libraries/messages.inc.php:159 #: libraries/tbl_properties.inc.php:130 pdf_schema.php:1279 #: pdf_schema.php:1290 tbl_printview.php:152 msgid "Comments" @@ -166,7 +166,7 @@ msgstr "Comentarios" #: db_datadict.php:267 libraries/Index.class.php:359 #: 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/messages.inc.php:559 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:555 #: libraries/mult_submits.inc.php:263 pdf_schema.php:1344 #: server_privileges.php:1529 server_privileges.php:1540 #: server_privileges.php:1850 server_privileges.php:1855 @@ -178,7 +178,7 @@ msgstr "Non" #: db_datadict.php:267 libraries/Index.class.php:360 #: libraries/Index.class.php:385 libraries/export/htmlword.php:322 #: libraries/export/latex.php:430 libraries/export/odt.php:368 -#: libraries/export/texytext.php:311 libraries/messages.inc.php:1257 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:1253 #: libraries/mult_submits.inc.php:45 libraries/mult_submits.inc.php:50 #: libraries/mult_submits.inc.php:55 libraries/mult_submits.inc.php:60 #: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:101 @@ -192,108 +192,108 @@ msgstr "Non" msgid "Yes" msgstr "Si" -#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:670 +#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:666 #: tbl_printview.php:498 msgid "Print" msgstr "Imprimir" -#: db_export.php:29 libraries/messages.inc.php:1226 +#: db_export.php:29 libraries/messages.inc.php:1222 msgid "View dump (schema) of database" msgstr "Ver o esquema do volcado da base de datos" #: db_export.php:33 db_printview.php:96 db_qbe.php:102 db_structure.php:51 -#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:568 +#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:564 #: navigation.php:346 msgid "No tables found in database." msgstr "Non se achou ningunha táboa na base de datos" -#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:845 +#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:841 #: server_export.php:27 msgid "Select All" msgstr "Seleccionar todo" -#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1188 +#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1184 #: server_export.php:29 msgid "Unselect All" msgstr "Non seleccionar nada" -#: db_operations.php:38 libraries/messages.inc.php:213 tbl_create.php:54 +#: db_operations.php:38 libraries/messages.inc.php:209 tbl_create.php:54 msgid "The database name is empty!" msgstr "Ese nome de base de datos non existe." -#: db_operations.php:236 libraries/messages.inc.php:753 +#: db_operations.php:236 libraries/messages.inc.php:749 #, 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 libraries/messages.inc.php:178 +#: db_operations.php:240 libraries/messages.inc.php:174 #, php-format msgid "Database %s has been copied to %s" msgstr "Copiuse a base de datos %s para %s" -#: db_operations.php:410 libraries/messages.inc.php:236 +#: db_operations.php:410 libraries/messages.inc.php:232 msgid "Rename database to" msgstr "Mudar o nome da base de datos para" -#: db_operations.php:415 libraries/messages.inc.php:161 +#: db_operations.php:415 libraries/messages.inc.php:157 #: server_processlist.php:57 msgid "Command" msgstr "Orde" -#: db_operations.php:425 libraries/messages.inc.php:58 tbl_change.php:1143 +#: db_operations.php:425 libraries/messages.inc.php:54 tbl_change.php:1143 msgid "and then" msgstr "e despois" -#: db_operations.php:451 libraries/messages.inc.php:233 +#: db_operations.php:451 libraries/messages.inc.php:229 msgid "Copy database to" msgstr "Copiar a base de datos para" -#: db_operations.php:458 libraries/messages.inc.php:1043 +#: db_operations.php:458 libraries/messages.inc.php:1039 #: tbl_operations.php:526 tbl_tracking.php:388 msgid "Structure only" msgstr "Só a estrutura" -#: db_operations.php:459 libraries/messages.inc.php:1041 +#: db_operations.php:459 libraries/messages.inc.php:1037 #: tbl_operations.php:527 tbl_tracking.php:390 msgid "Structure and data" msgstr "Estrutura e datos" -#: db_operations.php:460 libraries/messages.inc.php:229 tbl_operations.php:528 +#: db_operations.php:460 libraries/messages.inc.php:225 tbl_operations.php:528 #: tbl_tracking.php:389 msgid "Data only" msgstr "Só os datos" -#: db_operations.php:468 libraries/messages.inc.php:186 +#: db_operations.php:468 libraries/messages.inc.php:182 msgid "CREATE DATABASE before copying" msgstr "CREAR UNHA BASE DE DATOS antes de copiar" #: db_operations.php:471 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 -#: libraries/export/sql.php:82 libraries/messages.inc.php:30 +#: libraries/export/sql.php:82 libraries/messages.inc.php:26 #: tbl_operations.php:534 #, php-format msgid "Add %s" msgstr "Engadir %s" -#: db_operations.php:475 libraries/messages.inc.php:29 tbl_operations.php:297 +#: db_operations.php:475 libraries/messages.inc.php:25 tbl_operations.php:297 #: tbl_operations.php:536 msgid "Add AUTO_INCREMENT value" msgstr "Engadir o valor incremental (AUTO_INCREMENT)" -#: db_operations.php:479 libraries/messages.inc.php:31 tbl_operations.php:543 +#: db_operations.php:479 libraries/messages.inc.php:27 tbl_operations.php:543 msgid "Add constraints" msgstr "Engadir limitacións" -#: db_operations.php:492 libraries/messages.inc.php:1059 +#: db_operations.php:492 libraries/messages.inc.php:1055 msgid "Switch to copied database" msgstr "Pasar á base de datos copiada" -#: db_operations.php:533 libraries/messages.inc.php:89 +#: db_operations.php:533 libraries/messages.inc.php:85 msgid "BLOB Repository" msgstr "Repositorio de BLOB" #: db_operations.php:536 db_tracking.php:76 libraries/common.lib.php:1350 -#: libraries/messages.inc.php:1037 libraries/server_links.inc.php:49 +#: libraries/messages.inc.php:1033 libraries/server_links.inc.php:49 #: server_processlist.php:59 tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "Estado" @@ -305,11 +305,11 @@ msgctxt "BLOB repository" msgid "Enabled" msgstr "Activado" -#: db_operations.php:548 libraries/messages.inc.php:93 +#: db_operations.php:548 libraries/messages.inc.php:89 msgid "Disable" msgstr "Desactivar" -#: db_operations.php:558 libraries/messages.inc.php:90 +#: db_operations.php:558 libraries/messages.inc.php:86 msgid "Damaged" msgstr "Danada" @@ -327,12 +327,12 @@ msgctxt "BLOB repository" msgid "Disabled" msgstr "Desactivado" -#: db_operations.php:574 libraries/messages.inc.php:96 +#: db_operations.php:574 libraries/messages.inc.php:92 msgid "Enable" msgstr "Activar" #: db_operations.php:598 libraries/Index.class.php:448 -#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:158 +#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:154 #: 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:361 @@ -341,7 +341,7 @@ msgstr "Activar" msgid "Collation" msgstr "Orde alfabética" -#: db_operations.php:609 libraries/messages.inc.php:742 main.php:316 +#: db_operations.php:609 libraries/messages.inc.php:738 main.php:316 #: pdf_schema.php:34 #, php-format msgid "" @@ -351,58 +351,58 @@ msgstr "" "Desactivouse a funcionalidade adicional para o traballo con táboas " "vinculadas. Para saber o por que, prema %saquí%s." -#: db_operations.php:645 libraries/messages.inc.php:264 pdf_pages.php:528 +#: db_operations.php:645 libraries/messages.inc.php:260 pdf_pages.php:528 msgid "Display PDF schema" msgstr "Mostrar o esquema PDF" -#: db_operations.php:661 libraries/messages.inc.php:877 pdf_pages.php:529 +#: db_operations.php:661 libraries/messages.inc.php:873 pdf_pages.php:529 msgid "Show grid" msgstr "Mostrar a grella" -#: db_operations.php:664 libraries/messages.inc.php:874 pdf_pages.php:530 +#: db_operations.php:664 libraries/messages.inc.php:870 pdf_pages.php:530 msgid "Show color" msgstr "Mostrar a cor" -#: db_operations.php:666 libraries/messages.inc.php:998 pdf_pages.php:531 +#: db_operations.php:666 libraries/messages.inc.php:994 pdf_pages.php:531 msgid "Show dimension of tables" msgstr "Mostrar a dimensión das táboas" -#: db_operations.php:669 libraries/messages.inc.php:52 pdf_pages.php:532 +#: db_operations.php:669 libraries/messages.inc.php:48 pdf_pages.php:532 msgid "Display all tables with the same width" msgstr "mostrar todas as táboas co mesmo ancho?" -#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:227 +#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:223 #: pdf_pages.php:533 msgid "Data Dictionary" msgstr "Dicionario de datos" -#: db_operations.php:674 libraries/messages.inc.php:884 pdf_pages.php:534 +#: db_operations.php:674 libraries/messages.inc.php:880 pdf_pages.php:534 msgid "Only show keys" msgstr "Só as chaves coñecidas" -#: db_operations.php:676 libraries/messages.inc.php:875 pdf_pages.php:535 +#: db_operations.php:676 libraries/messages.inc.php:871 pdf_pages.php:535 msgid "Data Dictionary Format" msgstr "Formato do dicionario de datos" -#: db_operations.php:678 libraries/messages.inc.php:464 pdf_pages.php:537 +#: db_operations.php:678 libraries/messages.inc.php:460 pdf_pages.php:537 msgid "Landscape" msgstr "Horizontal" -#: db_operations.php:679 libraries/messages.inc.php:663 pdf_pages.php:538 +#: db_operations.php:679 libraries/messages.inc.php:659 pdf_pages.php:538 msgid "Portrait" msgstr "Vertical" -#: db_operations.php:682 libraries/messages.inc.php:599 pdf_pages.php:541 +#: db_operations.php:682 libraries/messages.inc.php:595 pdf_pages.php:541 msgid "Paper size" msgstr "Tamaño do papel" -#: db_operations.php:706 libraries/messages.inc.php:281 +#: db_operations.php:706 libraries/messages.inc.php:277 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 libraries/messages.inc.php:1087 +#: libraries/header.inc.php:126 libraries/messages.inc.php:1083 #: pdf_pages.php:405 server_privileges.php:1626 server_privileges.php:1682 #: server_privileges.php:1946 server_synchronize.php:423 #: server_synchronize.php:866 tbl_tracking.php:592 test/theme.php:75 @@ -410,176 +410,176 @@ msgid "Table" msgstr "Táboa" #: db_printview.php:105 libraries/db_structure.lib.php:56 -#: libraries/messages.inc.php:735 +#: libraries/messages.inc.php:731 msgid "Records" msgstr "Rexistros" #: db_printview.php:109 libraries/db_structure.lib.php:67 -#: libraries/messages.inc.php:1003 tbl_indexes.php:190 +#: libraries/messages.inc.php:999 tbl_indexes.php:190 msgid "Size" msgstr "Tamaño" #: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 -#: libraries/export/sql.php:899 libraries/messages.inc.php:436 +#: libraries/export/sql.php:899 libraries/messages.inc.php:432 msgid "in use" msgstr "en uso" #: db_printview.php:187 libraries/db_info.inc.php:88 -#: libraries/export/sql.php:514 libraries/messages.inc.php:1032 +#: libraries/export/sql.php:514 libraries/messages.inc.php:1028 #: pdf_schema.php:1241 tbl_printview.php:434 tbl_structure.php:810 msgid "Creation" msgstr "Creación" #: db_printview.php:196 libraries/db_info.inc.php:93 -#: libraries/export/sql.php:519 libraries/messages.inc.php:1036 +#: libraries/export/sql.php:519 libraries/messages.inc.php:1032 #: pdf_schema.php:1246 tbl_printview.php:444 tbl_structure.php:818 msgid "Last update" msgstr "Actualización máis recente" #: db_printview.php:205 libraries/db_info.inc.php:98 -#: libraries/export/sql.php:524 libraries/messages.inc.php:1031 +#: libraries/export/sql.php:524 libraries/messages.inc.php:1027 #: pdf_schema.php:1251 tbl_printview.php:454 tbl_structure.php:826 msgid "Last check" msgstr "Comprobación máis recente" -#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1085 +#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1081 #, php-format msgid "%s table(s)" msgstr "%s táboa(s)" #: db_qbe.php:29 libraries/display_tbl.lib.php:1981 -#: libraries/messages.inc.php:1051 libraries/sql_query_form.lib.php:140 +#: libraries/messages.inc.php:1047 libraries/sql_query_form.lib.php:140 #: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131 #: view_operations.php:62 msgid "Your SQL query has been executed successfully" msgstr "A seu orde de SQL executouse sen problemas" -#: db_qbe.php:42 libraries/messages.inc.php:371 +#: db_qbe.php:42 libraries/messages.inc.php:367 msgid "You have to choose at least one column to display" msgstr "Ten que escoller polo menos unha columna para mostrar" #: db_qbe.php:200 libraries/db_structure.lib.php:104 -#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1014 +#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1010 msgid "Sort" msgstr "Ordenar" #: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111 #: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828 -#: libraries/messages.inc.php:69 server_databases.php:170 +#: libraries/messages.inc.php:65 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314 msgid "Ascending" msgstr "Ascendente" #: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119 #: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825 -#: libraries/messages.inc.php:251 server_databases.php:170 +#: libraries/messages.inc.php:247 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315 msgid "Descending" msgstr "Descendente" #: db_qbe.php:264 db_tracking.php:78 libraries/display_tbl.lib.php:308 -#: libraries/messages.inc.php:888 tbl_change.php:277 tbl_tracking.php:597 +#: libraries/messages.inc.php:884 tbl_change.php:277 tbl_tracking.php:597 msgid "Show" msgstr "Mostrar" -#: db_qbe.php:300 libraries/messages.inc.php:202 +#: db_qbe.php:300 libraries/messages.inc.php:198 msgid "Criteria" msgstr "Criterio" #: db_qbe.php:353 db_qbe.php:435 db_qbe.php:527 db_qbe.php:558 -#: libraries/messages.inc.php:718 +#: libraries/messages.inc.php:714 msgid "Ins" msgstr "Inserir" #: db_qbe.php:357 db_qbe.php:439 db_qbe.php:524 db_qbe.php:555 -#: libraries/messages.inc.php:56 +#: libraries/messages.inc.php:52 msgid "And" msgstr "E" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:529 db_qbe.php:560 -#: libraries/messages.inc.php:717 +#: libraries/messages.inc.php:713 msgid "Del" 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/messages.inc.php:592 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:588 #: libraries/tbl_properties.inc.php:779 server_privileges.php:258 #: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288 msgid "Or" msgstr "ou" -#: db_qbe.php:507 libraries/messages.inc.php:516 +#: db_qbe.php:507 libraries/messages.inc.php:512 msgid "Modify" msgstr "Modificar" -#: db_qbe.php:584 libraries/messages.inc.php:33 +#: db_qbe.php:584 libraries/messages.inc.php:29 msgid "Add/Delete Criteria Row" msgstr "Engadir/Eliminar filas de criterios" -#: db_qbe.php:596 libraries/messages.inc.php:32 +#: db_qbe.php:596 libraries/messages.inc.php:28 msgid "Add/Delete Field Columns" msgstr "Engadir/Eliminar columnas de campo" -#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1192 +#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1188 msgid "Update Query" msgstr "Actualizar a procura" -#: db_qbe.php:617 libraries/messages.inc.php:1216 +#: db_qbe.php:617 libraries/messages.inc.php:1212 msgid "Use Tables" msgstr "Usar as táboas" -#: db_qbe.php:640 libraries/messages.inc.php:723 +#: db_qbe.php:640 libraries/messages.inc.php:719 #, php-format msgid "SQL query on database %s:" msgstr "Procura tipo SQL na base de datos %s:" -#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:823 +#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:819 msgid "Submit Query" msgstr "Enviar esta procura" #: db_search.php:68 libraries/auth/config.auth.lib.php:84 #: libraries/auth/config.auth.lib.php:103 #: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52 -#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:26 +#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:22 msgid "Access denied" msgstr "Denegouse o acceso" -#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:836 +#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:832 msgid "at least one of the words" msgstr "polo menos unha das palabras" -#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:837 +#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:833 msgid "all words" msgstr "todas as palabras" -#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:838 +#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:834 msgid "the exact phrase" msgstr "a frase exacta" -#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:839 +#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:835 msgid "as regular expression" msgstr "como expresión regular" -#: db_search.php:242 libraries/messages.inc.php:840 +#: db_search.php:242 libraries/messages.inc.php:836 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Procurar os resultados para \"%s\" %s:" -#: db_search.php:260 libraries/messages.inc.php:579 +#: db_search.php:260 libraries/messages.inc.php:575 #, php-format msgid "%s match(es) inside table %s" 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/messages.inc.php:108 +#: db_structure.php:105 libraries/messages.inc.php:104 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468 msgid "Browse" msgstr "Visualizar" #: db_search.php:272 libraries/display_tbl.lib.php:1165 -#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:243 +#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:239 #: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406 #: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377 #: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216 @@ -587,45 +587,45 @@ msgstr "Visualizar" msgid "Delete" msgstr "Eliminar" -#: db_search.php:285 libraries/messages.inc.php:580 +#: db_search.php:285 libraries/messages.inc.php:576 #, php-format msgid "Total: %s match(es)" msgstr "Total: %s ocorrencia(s)" -#: db_search.php:299 libraries/messages.inc.php:832 +#: db_search.php:299 libraries/messages.inc.php:828 msgid "Search in database" msgstr "Procurar na base de datos" -#: db_search.php:302 libraries/messages.inc.php:835 +#: db_search.php:302 libraries/messages.inc.php:831 msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgstr "Palabras(s) ou valore(s) a procurar (o comodín é: \"%\"):" -#: db_search.php:307 libraries/messages.inc.php:842 +#: db_search.php:307 libraries/messages.inc.php:838 msgid "Find:" msgstr "Atopar:" -#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1017 +#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1013 msgid "Words are separated by a space character (\" \")." msgstr "As palabras divídense cun carácter de espazo (\" \")." -#: db_search.php:325 libraries/messages.inc.php:834 +#: db_search.php:325 libraries/messages.inc.php:830 msgid "Inside table(s):" msgstr "Dentro da(s) táboa(s):" -#: db_search.php:355 libraries/messages.inc.php:833 +#: db_search.php:355 libraries/messages.inc.php:829 msgid "Inside field:" 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/messages.inc.php:431 libraries/sql_query_form.lib.php:334 +#: libraries/messages.inc.php:427 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/db_links.inc.php:63 libraries/export/latex.php:337 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:1048 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:1044 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 #: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269 msgid "Structure" @@ -634,8 +634,8 @@ 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:1642 -#: libraries/db_links.inc.php:100 libraries/messages.inc.php:272 +#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/db_links.inc.php:100 libraries/messages.inc.php:268 #: 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 @@ -645,40 +645,40 @@ 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:1641 -#: libraries/messages.inc.php:284 libraries/mult_submits.inc.php:39 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: libraries/messages.inc.php:280 libraries/mult_submits.inc.php:39 #: libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Borrar" -#: db_structure.php:316 libraries/messages.inc.php:1075 +#: db_structure.php:316 libraries/messages.inc.php:1071 #: libraries/tbl_links.inc.php:100 #, php-format msgid "Table %s has been emptied" msgstr "Vaciouse a táboa %s" -#: db_structure.php:326 libraries/messages.inc.php:1229 +#: db_structure.php:326 libraries/messages.inc.php:1225 #: libraries/tbl_links.inc.php:133 #, php-format msgid "View %s has been dropped" msgstr "Deixouse a vista %s" -#: db_structure.php:326 libraries/messages.inc.php:1074 +#: db_structure.php:326 libraries/messages.inc.php:1070 #: libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "Eliminouse a táboa %s" -#: db_structure.php:333 libraries/messages.inc.php:1128 +#: db_structure.php:333 libraries/messages.inc.php:1124 msgid "Tracking is active." msgstr "O seguemento está activado." -#: db_structure.php:335 libraries/messages.inc.php:1129 +#: db_structure.php:335 libraries/messages.inc.php:1125 msgid "Tracking is not active." msgstr "O seguemento non está activado." #: db_structure.php:420 libraries/display_tbl.lib.php:1944 -#: libraries/messages.inc.php:1228 +#: libraries/messages.inc.php:1224 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -688,83 +688,83 @@ msgstr "" "s." #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 -#: libraries/messages.inc.php:1233 libraries/tbl_info.inc.php:66 +#: libraries/messages.inc.php:1229 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/messages.inc.php:773 libraries/server_links.inc.php:70 +#: libraries/messages.inc.php:769 libraries/server_links.inc.php:70 #: server_replication.php:33 server_replication.php:164 server_status.php:258 msgid "Replication" msgstr "Replicación" -#: db_structure.php:489 libraries/messages.inc.php:1053 +#: db_structure.php:489 libraries/messages.inc.php:1049 msgid "Sum" msgstr "Suma" #: db_structure.php:496 libraries/StorageEngine.class.php:356 -#: libraries/messages.inc.php:239 +#: libraries/messages.inc.php:235 #, 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 #: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086 -#: libraries/messages.inc.php:1243 libraries/mult_submits.inc.php:16 +#: libraries/messages.inc.php:1239 libraries/mult_submits.inc.php:16 #: server_databases.php:346 server_databases.php:351 #: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465 msgid "With selected:" msgstr "Todos os marcados" #: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: libraries/messages.inc.php:148 server_databases.php:348 +#: libraries/messages.inc.php:144 server_databases.php:348 #: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459 msgid "Check All" msgstr "Marcalos todos" #: db_structure.php:531 libraries/display_tbl.lib.php:2077 -#: libraries/messages.inc.php:1184 libraries/replication_gui.lib.php:33 +#: libraries/messages.inc.php:1180 libraries/replication_gui.lib.php:33 #: server_databases.php:350 server_privileges.php:533 #: server_privileges.php:1564 tbl_structure.php:463 msgid "Uncheck All" msgstr "Quitarlles as marcas a todos" -#: db_structure.php:536 libraries/messages.inc.php:150 +#: db_structure.php:536 libraries/messages.inc.php:146 msgid "Check tables having overhead" msgstr "Exceso na comprobación" #: db_structure.php:547 db_structure.php:548 db_structure.php:599 -#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:672 +#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:668 #: libraries/mult_submits.inc.php:28 tbl_structure.php:493 #: tbl_structure.php:495 msgid "Print view" msgstr "Visualización previa da impresión" -#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:153 +#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:149 #: libraries/mult_submits.inc.php:42 tbl_operations.php:579 msgid "Check table" msgstr "Verificar a táboa" -#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:590 +#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:586 #: libraries/mult_submits.inc.php:47 tbl_operations.php:619 #: tbl_structure.php:710 tbl_structure.php:712 msgid "Optimize table" msgstr "Optimizar a táboa" -#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:758 +#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:754 #: libraries/mult_submits.inc.php:52 tbl_operations.php:609 msgid "Repair table" msgstr "Reparar a táboa" -#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:55 +#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:51 #: libraries/mult_submits.inc.php:57 tbl_operations.php:599 msgid "Analyze table" msgstr "Analizar a táboa" #: db_structure.php:557 db_structure.php:558 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/messages.inc.php:310 +#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:306 #: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84 #: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109 #: server_privileges.php:1341 setup/frames/menu.inc.php:22 @@ -772,7 +772,7 @@ msgstr "Analizar a táboa" msgid "Export" msgstr "Exportar" -#: db_tracking.php:66 libraries/messages.inc.php:1151 +#: db_tracking.php:66 libraries/messages.inc.php:1147 msgid "Tracked tables" msgstr "Táboas seguidas" @@ -780,7 +780,7 @@ msgstr "Táboas seguidas" #: 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/header_printview.inc.php:58 libraries/messages.inc.php:212 +#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:208 #: navigation.php:233 server_databases.php:169 server_privileges.php:1621 #: server_privileges.php:1682 server_privileges.php:1940 #: server_processlist.php:56 server_synchronize.php:1179 @@ -788,76 +788,76 @@ msgstr "Táboas seguidas" msgid "Database" msgstr "Base de datos" -#: db_tracking.php:73 libraries/messages.inc.php:1146 +#: db_tracking.php:73 libraries/messages.inc.php:1142 msgid "Last version" msgstr "Última versión" -#: db_tracking.php:74 libraries/messages.inc.php:1145 tbl_tracking.php:594 +#: db_tracking.php:74 libraries/messages.inc.php:1141 tbl_tracking.php:594 msgid "Created" msgstr "Creada" -#: db_tracking.php:75 libraries/messages.inc.php:1147 tbl_tracking.php:595 +#: db_tracking.php:75 libraries/messages.inc.php:1143 tbl_tracking.php:595 msgid "Updated" msgstr "Actualizada" #: db_tracking.php:77 libraries/Index.class.php:440 -#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:27 +#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:23 #: server_databases.php:203 server_privileges.php:1503 #: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187 msgid "Action" msgstr "Acción" -#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:247 +#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:243 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:106 libraries/messages.inc.php:1142 tbl_tracking.php:548 +#: db_tracking.php:106 libraries/messages.inc.php:1138 tbl_tracking.php:548 #: tbl_tracking.php:606 tbl_tracking.php:613 msgid "active" msgstr "activado" -#: db_tracking.php:108 libraries/messages.inc.php:1143 tbl_tracking.php:550 +#: db_tracking.php:108 libraries/messages.inc.php:1139 tbl_tracking.php:550 #: tbl_tracking.php:608 tbl_tracking.php:610 msgid "not active" msgstr "desactivado" -#: db_tracking.php:121 libraries/messages.inc.php:1160 +#: db_tracking.php:121 libraries/messages.inc.php:1156 msgid "Versions" msgstr "Versións" -#: db_tracking.php:122 libraries/messages.inc.php:1132 tbl_tracking.php:379 +#: db_tracking.php:122 libraries/messages.inc.php:1128 tbl_tracking.php:379 #: tbl_tracking.php:624 msgid "Tracking report" msgstr "Informe de seguemento" -#: db_tracking.php:123 libraries/messages.inc.php:1144 tbl_tracking.php:251 +#: db_tracking.php:123 libraries/messages.inc.php:1140 tbl_tracking.php:251 #: tbl_tracking.php:624 msgid "Structure snapshot" msgstr "Instantánea da estrutura" -#: db_tracking.php:152 libraries/messages.inc.php:1154 +#: db_tracking.php:152 libraries/messages.inc.php:1150 msgid "Untracked tables" msgstr "Táboas non seguidas" -#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1153 +#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1149 #: tbl_structure.php:529 tbl_structure.php:531 msgid "Track table" msgstr "Seguir a táboa" -#: db_tracking.php:200 libraries/messages.inc.php:1121 +#: db_tracking.php:200 libraries/messages.inc.php:1117 msgid "Database Log" msgstr "Rexistro de actividade da base de datos" -#: export.php:62 libraries/messages.inc.php:312 +#: export.php:62 libraries/messages.inc.php:308 msgid "Selected export type has to be saved in file!" msgstr "Gardouse nun ficheiro o tipo de exportación seleccionada!" -#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:567 +#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:563 #, php-format msgid "Insufficient space to save the file %s." msgstr "Non hai espazo para gardar o ficheiro %s." -#: export.php:294 libraries/messages.inc.php:324 +#: export.php:294 libraries/messages.inc.php:320 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -865,17 +865,17 @@ msgstr "" "O ficheiro %s xa existe no servidor - escolla outro nome ou seleccione a " "opción de eliminar." -#: export.php:298 export.php:302 libraries/messages.inc.php:562 +#: export.php:298 export.php:302 libraries/messages.inc.php:558 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "O servidor web non ten permiso para gardar o ficheiro %s." -#: export.php:629 libraries/messages.inc.php:276 +#: export.php:629 libraries/messages.inc.php:272 #, php-format msgid "Dump has been saved to file %s." msgstr "Gardouse o volcado no ficheiro %s." -#: import.php:60 libraries/messages.inc.php:1202 +#: import.php:60 libraries/messages.inc.php:1198 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation%" @@ -885,14 +885,14 @@ msgstr "" "sdocumentación%s para averiguar como evitar este límite." #: import.php:279 import.php:332 libraries/File.class.php:849 -#: libraries/File.class.php:961 libraries/messages.inc.php:325 +#: libraries/File.class.php:961 libraries/messages.inc.php:321 msgid "File could not be read" msgstr "Non se puido ler o ficheiro" #: import.php:287 import.php:296 import.php:315 import.php:324 #: libraries/File.class.php:1031 libraries/File.class.php:1039 #: libraries/File.class.php:1055 libraries/File.class.php:1063 -#: libraries/messages.inc.php:1189 +#: libraries/messages.inc.php:1185 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -901,7 +901,7 @@ msgstr "" "Tentou cargar un ficheiro cunha compresión descoñecida (%s). Ora non se sabe " "como descomprimir, ora está desactivada na configuración." -#: import.php:337 libraries/messages.inc.php:547 +#: import.php:337 libraries/messages.inc.php:543 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -912,29 +912,29 @@ msgstr "" "Consulte FAQ 1.16." #: import.php:372 libraries/display_import.lib.php:24 -#: libraries/messages.inc.php:125 +#: libraries/messages.inc.php:121 msgid "Could not load import plugins, please check your installation!" msgstr "Non se puideron importar as extensións - Comprobe a instalación." -#: import.php:397 libraries/messages.inc.php:102 +#: import.php:397 libraries/messages.inc.php:98 msgid "The bookmark has been deleted." msgstr "Eliminouse o marcador." -#: import.php:401 libraries/messages.inc.php:879 +#: import.php:401 libraries/messages.inc.php:875 msgid "Showing bookmark" msgstr "A mostrar o marcador" -#: import.php:403 libraries/messages.inc.php:101 +#: import.php:403 libraries/messages.inc.php:97 #, php-format msgid "Bookmark %s created" msgstr "Creouse o marcador %s" -#: import.php:409 import.php:415 libraries/messages.inc.php:407 +#: import.php:409 import.php:415 libraries/messages.inc.php:403 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "A importación rematou sen problemas. Executáronse %d procuras." -#: import.php:424 libraries/messages.inc.php:1107 +#: import.php:424 libraries/messages.inc.php:1103 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -942,11 +942,11 @@ msgstr "" "Ultrapasouse o tempo de espera do guión. Se quere rematar a importación, " "volva a enviar o mesmo ficheiro e a importación continuará." -#: index.php:190 libraries/messages.inc.php:553 +#: index.php:190 libraries/messages.inc.php:549 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin utilízase mellor cun navegador que acepte molduras." -#: js/messages.php:25 libraries/messages.inc.php:155 +#: js/messages.php:25 libraries/messages.inc.php:151 #: server_synchronize.php:345 server_synchronize.php:357 #: server_synchronize.php:373 server_synchronize.php:380 #: server_synchronize.php:739 server_synchronize.php:767 @@ -954,118 +954,118 @@ msgstr "phpMyAdmin utilízase mellor cun navegador que acepte molduras." msgid "Click to select" msgstr "" -#: js/messages.php:26 libraries/messages.inc.php:156 +#: js/messages.php:26 libraries/messages.inc.php:152 msgid "Click to unselect" msgstr "" #: js/messages.php:27 libraries/import.lib.php:103 -#: libraries/messages.inc.php:550 sql.php:89 +#: libraries/messages.inc.php:546 sql.php:89 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Non se permiten as ordes \"Eliminar a base de datos\"." -#: js/messages.php:30 libraries/messages.inc.php:270 +#: js/messages.php:30 libraries/messages.inc.php:266 #: libraries/mult_submits.inc.php:258 sql.php:188 msgid "Do you really want to " msgstr "Seguro? " -#: js/messages.php:31 libraries/messages.inc.php:271 +#: js/messages.php:31 libraries/messages.inc.php:267 #: libraries/mult_submits.inc.php:258 sql.php:172 msgid "You are about to DESTROY a complete database!" msgstr "Está a piques de DESTRUÍR unha base de datos enteira!" -#: js/messages.php:34 libraries/messages.inc.php:94 +#: js/messages.php:34 libraries/messages.inc.php:90 msgid "You are about to DISABLE a BLOB Repository!" msgstr "Está a piques de DESACTIVAR un repositorio de BLOB!" -#: js/messages.php:35 libraries/messages.inc.php:91 +#: js/messages.php:35 libraries/messages.inc.php:87 #, php-format msgid "Are you sure you want to disable all BLOB references for database %s?" msgstr "" "Ten a certeza de querer desactivar todas as referencias a BLOB da base de " "datos %s?" -#: js/messages.php:38 libraries/messages.inc.php:342 +#: js/messages.php:38 libraries/messages.inc.php:338 msgid "Missing value in the form!" msgstr "Falta un valor no formulario!" -#: js/messages.php:39 libraries/messages.inc.php:570 +#: js/messages.php:39 libraries/messages.inc.php:566 msgid "This is not a number!" msgstr "Non é un número!" -#: js/messages.php:42 libraries/messages.inc.php:380 +#: js/messages.php:42 libraries/messages.inc.php:376 msgid "The host name is empty!" msgstr "O nome do servidor está vacío!" -#: js/messages.php:43 libraries/messages.inc.php:1208 +#: js/messages.php:43 libraries/messages.inc.php:1204 msgid "The user name is empty!" msgstr "O nome do usuario está vacío!" -#: js/messages.php:44 libraries/messages.inc.php:607 +#: js/messages.php:44 libraries/messages.inc.php:603 #: server_privileges.php:1197 user_password.php:70 msgid "The password is empty!" msgstr "O contrasinal está vacío!" -#: js/messages.php:45 libraries/messages.inc.php:609 +#: js/messages.php:45 libraries/messages.inc.php:605 #: server_privileges.php:1195 user_password.php:73 msgid "The passwords aren't the same!" msgstr "Os contrasinais non son os mesmos." -#: js/messages.php:49 libraries/messages.inc.php:123 pmd_general.php:342 +#: js/messages.php:49 libraries/messages.inc.php:119 pmd_general.php:342 #: pmd_general.php:379 msgid "Cancel" msgstr "Cancelar" -#: js/messages.php:52 libraries/messages.inc.php:514 +#: js/messages.php:52 libraries/messages.inc.php:510 msgid "Modifications have been saved" msgstr "Gardáronse as modificacións" -#: js/messages.php:53 libraries/messages.inc.php:741 +#: js/messages.php:53 libraries/messages.inc.php:737 msgid "Relation deleted" msgstr "Eliminouse a relación" -#: js/messages.php:54 libraries/messages.inc.php:340 +#: js/messages.php:54 libraries/messages.inc.php:336 msgid "FOREIGN KEY relation added" msgstr "Engadiuse unha relación cunha CHAVE EXTERNA" -#: js/messages.php:55 libraries/messages.inc.php:434 +#: js/messages.php:55 libraries/messages.inc.php:430 msgid "Internal relation added" msgstr "Engadiuse a relación interna" -#: js/messages.php:56 libraries/messages.inc.php:299 +#: js/messages.php:56 libraries/messages.inc.php:295 msgid "Error: Relation not added." msgstr "Erro: non se engadiu a relación." -#: js/messages.php:57 libraries/messages.inc.php:300 +#: js/messages.php:57 libraries/messages.inc.php:296 msgid "Error: relation already exists." msgstr "Erro: xa existe unha relación." -#: js/messages.php:58 libraries/messages.inc.php:302 +#: js/messages.php:58 libraries/messages.inc.php:298 msgid "Error saving coordinates for Designer." msgstr "Houbo un erro ao gardar as coordenadas para Deseñador." -#: js/messages.php:59 libraries/messages.inc.php:351 +#: js/messages.php:59 libraries/messages.inc.php:347 #: libraries/relation.lib.php:107 msgid "General relation features" msgstr "Características xerais das relacións" -#: js/messages.php:59 libraries/messages.inc.php:260 +#: js/messages.php:59 libraries/messages.inc.php:256 #: libraries/relation.lib.php:101 libraries/relation.lib.php:108 msgid "Disabled" msgstr "Desactivado" -#: js/messages.php:60 libraries/messages.inc.php:850 +#: js/messages.php:60 libraries/messages.inc.php:846 msgid "Select referenced key" msgstr "Seleccionar a chave referida" -#: js/messages.php:61 libraries/messages.inc.php:848 +#: js/messages.php:61 libraries/messages.inc.php:844 msgid "Select Foreign Key" msgstr "Escoller unha chave externa" -#: js/messages.php:62 libraries/messages.inc.php:653 +#: js/messages.php:62 libraries/messages.inc.php:649 msgid "Please select the primary key or a unique key" msgstr "Escolla a chave primaria ou unha chave única" -#: js/messages.php:63 libraries/messages.inc.php:142 pmd_general.php:77 +#: js/messages.php:63 libraries/messages.inc.php:138 pmd_general.php:77 #: tbl_relation.php:548 msgid "Choose field to display" msgstr "Escolla o campo que quere que se mostre" @@ -1085,9 +1085,9 @@ msgid "Prev" msgstr "Anterior" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2332 -#: libraries/common.lib.php:2335 libraries/display_tbl.lib.php:338 -#: libraries/messages.inc.php:543 server_binlog.php:205 server_binlog.php:207 +#: js/messages.php:77 libraries/common.lib.php:2344 +#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: libraries/messages.inc.php:539 server_binlog.php:205 server_binlog.php:207 #: tbl_printview.php:424 tbl_structure.php:802 msgid "Next" msgstr "Seguinte" @@ -1162,27 +1162,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1543 +#: js/messages.php:97 libraries/common.lib.php:1555 msgid "Jan" msgstr "Xan" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1545 +#: js/messages.php:99 libraries/common.lib.php:1557 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1547 +#: js/messages.php:101 libraries/common.lib.php:1559 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1549 +#: js/messages.php:103 libraries/common.lib.php:1561 msgid "Apr" msgstr "Abr" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1551 +#: js/messages.php:105 libraries/common.lib.php:1563 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1190,37 +1190,37 @@ msgid "May" msgstr "Maio" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1553 +#: js/messages.php:107 libraries/common.lib.php:1565 msgid "Jun" msgstr "Xuño" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1555 +#: js/messages.php:109 libraries/common.lib.php:1567 msgid "Jul" msgstr "Xullo" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1557 +#: js/messages.php:111 libraries/common.lib.php:1569 msgid "Aug" msgstr "Ago" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1559 +#: js/messages.php:113 libraries/common.lib.php:1571 msgid "Sep" msgstr "Set" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1561 +#: js/messages.php:115 libraries/common.lib.php:1573 msgid "Oct" msgstr "Out" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1563 +#: js/messages.php:117 libraries/common.lib.php:1575 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1565 +#: js/messages.php:119 libraries/common.lib.php:1577 msgid "Dec" msgstr "Dec" @@ -1261,37 +1261,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1568 +#: js/messages.php:132 libraries/common.lib.php:1580 msgid "Sun" msgstr "Do" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1570 +#: js/messages.php:134 libraries/common.lib.php:1582 msgid "Mon" msgstr "Lu" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1572 +#: js/messages.php:136 libraries/common.lib.php:1584 msgid "Tue" msgstr "Ma" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1574 +#: js/messages.php:138 libraries/common.lib.php:1586 msgid "Wed" msgstr "Mé" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1576 +#: js/messages.php:140 libraries/common.lib.php:1588 msgid "Thu" msgstr "Xo" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1578 +#: js/messages.php:142 libraries/common.lib.php:1590 msgid "Fri" msgstr "Ve" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1580 +#: js/messages.php:144 libraries/common.lib.php:1592 msgid "Sat" msgstr "Sá" @@ -1367,23 +1367,23 @@ msgstr "en uso" msgid "Second" msgstr "por segundo" -#: libraries/Config.class.php:1015 libraries/messages.inc.php:338 +#: libraries/Config.class.php:1015 libraries/messages.inc.php:334 msgid "Font size" msgstr "Tamaño da letra" #: libraries/File.class.php:344 libraries/File.class.php:432 #: libraries/File.class.php:569 libraries/File.class.php:708 -#: libraries/messages.inc.php:1201 +#: libraries/messages.inc.php:1197 msgid "Unknown error in file upload." msgstr "Erro descoñecido ao enviar o ficheiro." -#: libraries/File.class.php:414 libraries/messages.inc.php:1198 +#: libraries/File.class.php:414 libraries/messages.inc.php:1194 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "O tamaño do ficheiro enviado excede a directiva upload_max_filesize de php." "ini." -#: libraries/File.class.php:417 libraries/messages.inc.php:1197 +#: libraries/File.class.php:417 libraries/messages.inc.php:1193 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -1391,56 +1391,56 @@ msgstr "" "O tamaño do ficheiro excede a directiva MAX_FILE_SIZE que se especificou no " "formulario HTML." -#: libraries/File.class.php:420 libraries/messages.inc.php:1200 +#: libraries/File.class.php:420 libraries/messages.inc.php:1196 msgid "The uploaded file was only partially uploaded." msgstr "O ficheiro enviado só se recibiu parcialmente." -#: libraries/File.class.php:423 libraries/messages.inc.php:1199 +#: libraries/File.class.php:423 libraries/messages.inc.php:1195 msgid "Missing a temporary folder." msgstr "Falta un directorio temporal." -#: libraries/File.class.php:426 libraries/messages.inc.php:1195 +#: libraries/File.class.php:426 libraries/messages.inc.php:1191 msgid "Failed to write file to disk." msgstr "Non se puido escribir no disco." -#: libraries/File.class.php:429 libraries/messages.inc.php:1196 +#: libraries/File.class.php:429 libraries/messages.inc.php:1192 msgid "File upload stopped by extension." msgstr "Detívose o envío do ficheiro por causa do engadido." -#: libraries/File.class.php:908 libraries/messages.inc.php:319 +#: libraries/File.class.php:908 libraries/messages.inc.php:315 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "Erro ao mover o ficheiro enviado. Consulte FAQ 1.11" -#: libraries/Index.class.php:428 libraries/messages.inc.php:554 +#: libraries/Index.class.php:428 libraries/messages.inc.php:550 #: tbl_relation.php:529 msgid "No index defined!" msgstr "Non se definiu ningún índice" -#: libraries/Index.class.php:433 libraries/messages.inc.php:411 +#: libraries/Index.class.php:433 libraries/messages.inc.php:407 #: server_databases.php:132 tbl_tracking.php:316 msgid "Indexes" msgstr "Índices" -#: libraries/Index.class.php:444 libraries/messages.inc.php:1186 +#: libraries/Index.class.php:444 libraries/messages.inc.php:1182 #: 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:475 tbl_tracking.php:322 msgid "Unique" msgstr "Único" -#: libraries/Index.class.php:445 libraries/messages.inc.php:596 +#: libraries/Index.class.php:445 libraries/messages.inc.php:592 #: tbl_tracking.php:323 msgid "Packed" msgstr "Empaquetado" -#: libraries/Index.class.php:447 libraries/messages.inc.php:131 +#: libraries/Index.class.php:447 libraries/messages.inc.php:127 #: tbl_tracking.php:325 msgid "Cardinality" msgstr "Cardinalidade" -#: libraries/Index.class.php:450 libraries/messages.inc.php:162 +#: libraries/Index.class.php:450 libraries/messages.inc.php:158 #: tbl_tracking.php:279 tbl_tracking.php:328 msgid "Comment" msgstr "Comentario" @@ -1448,22 +1448,22 @@ msgstr "Comentario" #: libraries/Index.class.php:466 libraries/common.lib.php:616 #: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:280 pdf_pages.php:280 +#: libraries/messages.inc.php:276 pdf_pages.php:280 #: setup/frames/index.inc.php:124 setup/lib/messages.inc.php:352 #: tbl_row_action.php:69 msgid "Edit" msgstr "Modificar" -#: libraries/Index.class.php:472 libraries/messages.inc.php:666 +#: libraries/Index.class.php:472 libraries/messages.inc.php:662 msgid "The primary key has been dropped" msgstr "Eliminouse a chave primaria" -#: libraries/Index.class.php:476 libraries/messages.inc.php:413 +#: libraries/Index.class.php:476 libraries/messages.inc.php:409 #, php-format msgid "Index %s has been dropped" msgstr "Eliminouse o índice %s" -#: libraries/Index.class.php:576 libraries/messages.inc.php:412 +#: libraries/Index.class.php:576 libraries/messages.inc.php:408 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -1472,7 +1472,7 @@ 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/messages.inc.php:218 +#: libraries/List_Database.class.php:431 libraries/messages.inc.php:214 #: libraries/server_links.inc.php:41 server_databases.php:88 #: server_privileges.php:1621 setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" @@ -1502,87 +1502,87 @@ msgid_plural "%1$d rows inserted." msgstr[0] "%1$d fileira(s) inserida(s)." msgstr[1] "%1$d fileira(s) inserida(s)." -#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:549 +#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:545 msgid "" "There is no detailed status information available for this storage engine." msgstr "" "Non se conta con información de estado detallada sobre este motor de " "almacenamento." -#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:291 +#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:287 #, php-format msgid "%s is available on this MySQL server." msgstr "%s está dispoñíbel neste servidor de MySQL." -#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:292 +#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:288 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s foi desactivado neste servidor de MySQL." -#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:294 +#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:290 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "Este servidor de MySQL non acepta o motor de almacenamento %s." -#: libraries/Table.class.php:1019 libraries/messages.inc.php:443 +#: libraries/Table.class.php:1019 libraries/messages.inc.php:439 msgid "Invalid database" msgstr "A base de datos non é válida" -#: libraries/Table.class.php:1033 libraries/messages.inc.php:450 +#: libraries/Table.class.php:1033 libraries/messages.inc.php:446 #: tbl_get_field.php:26 msgid "Invalid table name" msgstr "Non se admite este nome de táboa." -#: libraries/Table.class.php:1048 libraries/messages.inc.php:301 +#: libraries/Table.class.php:1048 libraries/messages.inc.php:297 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "Houbo un erro ao mudarlle o nome á táboa %1$s para %2$s" -#: libraries/Table.class.php:1132 libraries/messages.inc.php:754 +#: libraries/Table.class.php:1132 libraries/messages.inc.php:750 #, php-format msgid "Table %s has been renamed to %s" msgstr "A táboa %s chámase agora %s" -#: libraries/Theme.class.php:162 libraries/messages.inc.php:1099 +#: libraries/Theme.class.php:162 libraries/messages.inc.php:1095 #, php-format msgid "No valid image path for theme %s found!" msgstr "Non hai un camiño válido de imaxe para o tema %s!" -#: libraries/Theme.class.php:384 libraries/messages.inc.php:1097 +#: libraries/Theme.class.php:384 libraries/messages.inc.php:1093 msgid "No preview available." msgstr "Non se dispón de previsualización." -#: libraries/Theme.class.php:387 libraries/messages.inc.php:1089 +#: libraries/Theme.class.php:387 libraries/messages.inc.php:1085 msgid "take it" msgstr "cólleo" -#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1096 +#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1092 #, php-format msgid "Default theme %s not found!" msgstr "Non se atopou o tema por omisión %s!" -#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1098 +#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1094 #, php-format msgid "Theme %s not found!" msgstr "Non se atopou o tema %s!" -#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1100 +#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1096 #, php-format msgid "Theme path not found for theme %s!" msgstr "Non se atopou o camiño do tema para o tema %s!" -#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1101 +#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1097 #: test/theme.php:161 themes.php:21 themes.php:41 msgid "Theme / Style" msgstr "Tema / Estilo" -#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:172 +#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:168 msgid "Cannot connect: invalid settings." msgstr "Non se pode conectar: os axustes non son válidos." #: libraries/auth/config.auth.lib.php:92 #: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65 -#: libraries/messages.inc.php:1238 test/theme.php:152 +#: libraries/messages.inc.php:1234 test/theme.php:152 #, php-format msgid "Welcome to %s" msgstr "Reciba a benvida a %s" @@ -1608,54 +1608,54 @@ msgstr "" "e o contrasinal no ficheiro config.inc.php e asegurarse de que corresponden " "coa información proporcionada polo administrador do servidor do MySQL." -#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:488 +#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:484 msgid "Log in" msgstr "Entrada (login)" #: libraries/auth/cookie.auth.lib.php:246 -#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:659 +#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:655 #: libraries/navigation_header.inc.php:93 #: libraries/navigation_header.inc.php:95 msgid "phpMyAdmin documentation" msgstr "Documentación do phpMyAdmin" #: libraries/auth/cookie.auth.lib.php:258 -#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:492 +#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:488 msgid "You can enter hostname/IP address and port separated by space." msgstr "" "Pode escribir o nome de servidor/enderezo IP e o porto separados por un " "espazo." -#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:493 +#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:489 msgid "Server:" msgstr "Servidor" -#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:494 +#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:490 msgid "Username:" msgstr "Nome de usuario:" -#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:491 +#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:487 msgid "Password:" msgstr "Contrasinal:" -#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:854 +#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:850 msgid "Server Choice" msgstr "Escolla de servidor" #: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 -#: libraries/messages.inc.php:177 +#: libraries/messages.inc.php:173 msgid "Cookies must be enabled past this point." msgstr "A partir de aquí debe permitir cookies." #: libraries/auth/cookie.auth.lib.php:671 -#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:489 +#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:485 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" "A configuración prohibe rexistrarse sen contrasinal (vexa AllowNoPassword)" #: libraries/auth/cookie.auth.lib.php:675 -#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:544 +#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:540 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" @@ -1664,53 +1664,53 @@ msgstr "" #: libraries/auth/cookie.auth.lib.php:685 #: libraries/auth/cookie.auth.lib.php:687 -#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:126 +#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:122 msgid "Cannot log in to the MySQL server" msgstr "Non se dá conectado co servidor de MySQL" -#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1245 +#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1241 msgid "Wrong username/password. Access denied." msgstr "O usuario ou o contrasinal están errados. Denegouse o acceso." #: libraries/auth/swekey/swekey.auth.lib.php:118 -#: libraries/messages.inc.php:1057 +#: libraries/messages.inc.php:1053 #, php-format msgid "File %s does not contain any key id" msgstr "O ficheiro %s non contén ningún identificador de chave" #: libraries/auth/swekey/swekey.auth.lib.php:157 #: libraries/auth/swekey/swekey.auth.lib.php:180 -#: libraries/messages.inc.php:1056 +#: libraries/messages.inc.php:1052 msgid "Hardware authentication failed" msgstr "Fallou a autenticación do hardware" #: libraries/auth/swekey/swekey.auth.lib.php:166 -#: libraries/messages.inc.php:1058 +#: libraries/messages.inc.php:1054 msgid "No valid authentication key plugged" msgstr "Non se meteu ningunha chave de autenticación válida" #: libraries/auth/swekey/swekey.auth.lib.php:202 -#: libraries/messages.inc.php:1055 +#: libraries/messages.inc.php:1051 msgid "Authenticating..." msgstr "A autenticar..." -#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1230 +#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1226 msgid "View image" msgstr "Ver a imaxe" -#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:652 +#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:648 msgid "Play audio" msgstr "Reproducir o son" -#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1232 +#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1228 msgid "View video" msgstr "Ver o vídeo" -#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:269 +#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:265 msgid "Download file" msgstr "Descargar o ficheiro" -#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:128 +#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:124 msgid "" "Couldn't load the iconv or recode extension needed for charset conversion. " "Either configure PHP to enable these extensions or disable charset " @@ -1722,7 +1722,7 @@ msgstr "" #: libraries/charset_conversion.lib.php:79 #: libraries/charset_conversion.lib.php:90 -#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:130 +#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:126 msgid "" "Couldn't use the iconv, libiconv, or recode_string functions, although the " "necessary extensions appear to be loaded. Check your PHP configuration." @@ -1730,7 +1730,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/messages.inc.php:170 +#: libraries/common.inc.php:583 libraries/messages.inc.php:166 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!" @@ -1766,23 +1766,23 @@ msgstr "" msgid "Invalid server index: %s" msgstr "O índice do servidor non é válido: \"%s\"" -#: libraries/common.inc.php:636 libraries/messages.inc.php:448 +#: libraries/common.inc.php:636 libraries/messages.inc.php:444 #, 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/messages.inc.php:856 libraries/select_server.lib.php:41 +#: libraries/messages.inc.php:852 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/messages.inc.php:437 +#: libraries/common.inc.php:823 libraries/messages.inc.php:433 msgid "Invalid authentication method set in configuration:" msgstr "Na configuración indicouse un método de autenticación que non válido::" -#: libraries/common.lib.php:147 libraries/messages.inc.php:499 +#: libraries/common.lib.php:147 libraries/messages.inc.php:495 #, php-format msgid "Max: %s%s" msgstr "Tamaño máximo: %s%s" @@ -1804,7 +1804,7 @@ msgstr "Enviado" #: libraries/common.lib.php:428 libraries/common.lib.php:430 #: libraries/common.lib.php:432 libraries/common.lib.php:448 #: libraries/common.lib.php:450 libraries/dbg/setup.php:25 -#: libraries/display_export.lib.php:164 libraries/messages.inc.php:267 +#: libraries/display_export.lib.php:164 libraries/messages.inc.php:263 #: libraries/relation.lib.php:97 libraries/sql_query_form.lib.php:451 #: libraries/sql_query_form.lib.php:454 main.php:229 pdf_pages.php:37 #: pdf_pages.php:43 pdf_pages.php:49 pdf_pages.php:54 @@ -1814,55 +1814,55 @@ msgstr "Documentación" #: libraries/common.lib.php:581 libraries/core.lib.php:234 #: libraries/core.lib.php:263 libraries/import.lib.php:134 -#: libraries/messages.inc.php:297 pdf_schema.php:32 pdf_schema.php:232 +#: libraries/messages.inc.php:293 pdf_schema.php:32 pdf_schema.php:232 #: tbl_change.php:1027 tbl_operations.php:213 tbl_relation.php:290 #: view_operations.php:62 msgid "Error" msgstr "Houbo un erro" #: libraries/common.lib.php:595 libraries/header_printview.inc.php:61 -#: libraries/messages.inc.php:1023 server_processlist.php:60 +#: libraries/messages.inc.php:1019 server_processlist.php:60 #: server_status.php:247 msgid "SQL query" msgstr "orde SQL" -#: libraries/common.lib.php:634 libraries/messages.inc.php:538 +#: libraries/common.lib.php:634 libraries/messages.inc.php:534 msgid "MySQL said: " msgstr "Mensaxes do MySQL: " -#: libraries/common.lib.php:667 libraries/messages.inc.php:76 +#: libraries/common.lib.php:667 libraries/messages.inc.php:72 #: pdf_schema.php:241 user_password.php:115 msgid "Back" msgstr "Voltar" -#: libraries/common.lib.php:1177 libraries/messages.inc.php:309 +#: libraries/common.lib.php:1177 libraries/messages.inc.php:305 #: setup/lib/messages.inc.php:353 msgid "Explain SQL" msgstr "Explicar SQL" -#: libraries/common.lib.php:1180 libraries/messages.inc.php:551 +#: libraries/common.lib.php:1180 libraries/messages.inc.php:547 msgid "Skip Explain SQL" msgstr "Saltar a explicacion de SQL" -#: libraries/common.lib.php:1212 libraries/messages.inc.php:563 +#: libraries/common.lib.php:1212 libraries/messages.inc.php:559 msgid "Without PHP Code" msgstr "sen código PHP" -#: libraries/common.lib.php:1215 libraries/messages.inc.php:649 +#: libraries/common.lib.php:1215 libraries/messages.inc.php:645 #: setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "Crear código PHP" -#: libraries/common.lib.php:1233 libraries/messages.inc.php:737 +#: libraries/common.lib.php:1233 libraries/messages.inc.php:733 #: server_status.php:341 setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "Refrescar" -#: libraries/common.lib.php:1242 libraries/messages.inc.php:575 +#: libraries/common.lib.php:1242 libraries/messages.inc.php:571 msgid "Skip Validate SQL" msgstr "Omitir a validacion de" -#: libraries/common.lib.php:1245 libraries/messages.inc.php:1220 +#: libraries/common.lib.php:1245 libraries/messages.inc.php:1216 #: setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "Validar o SQL" @@ -1878,11 +1878,11 @@ msgid "Inline" msgstr "Motores" #: libraries/common.lib.php:1332 libraries/common.lib.php:1347 -#: libraries/messages.inc.php:713 +#: libraries/messages.inc.php:709 msgid "Profiling" msgstr "Análise do desempeño" -#: libraries/common.lib.php:1351 libraries/messages.inc.php:1108 +#: libraries/common.lib.php:1351 libraries/messages.inc.php:1104 #: libraries/tbl_triggers.lib.php:28 server_processlist.php:58 msgid "Time" msgstr "Tempo" @@ -1916,46 +1916,56 @@ msgstr "PiB" msgid "EiB" msgstr "EiB" +#. l10n: Thousands separator +#: libraries/common.lib.php:1417 +msgid "," +msgstr "." + +#. l10n: Decimal separator +#: libraries/common.lib.php:1419 +msgid "." +msgstr "," + #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1584 +#: libraries/common.lib.php:1596 #: libraries/transformations/text_plain__dateformat.inc.php:28 msgid "%B %d, %Y at %I:%M %p" msgstr "%d de %B de %Y ás %H:%M" -#: libraries/common.lib.php:1886 +#: libraries/common.lib.php:1898 #, 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:2301 libraries/common.lib.php:2304 -#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:664 +#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:660 #: server_status.php:608 msgid "Begin" msgstr "Inicio" -#: libraries/common.lib.php:2302 libraries/common.lib.php:2305 -#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:665 +#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:661 #: server_binlog.php:168 server_binlog.php:170 msgid "Previous" msgstr "Anterior" -#: libraries/common.lib.php:2333 libraries/common.lib.php:2336 -#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:289 +#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:285 msgid "End" msgstr "Fin" -#: libraries/common.lib.php:2409 libraries/messages.inc.php:455 +#: libraries/common.lib.php:2421 libraries/messages.inc.php:451 #, php-format msgid "Jump to database "%s"." msgstr "Saltar à base de datos "%s"." -#: libraries/common.lib.php:2429 libraries/messages.inc.php:461 +#: libraries/common.lib.php:2441 libraries/messages.inc.php:457 #, 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/core.lib.php:286 libraries/dbg/setup.php:22 -#: libraries/messages.inc.php:127 +#: libraries/messages.inc.php:123 #, php-format msgid "" "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " @@ -1964,117 +1974,117 @@ msgstr "" "Non se pode cargar o engadido %s.
Verifique a configuración do PHP." #: libraries/db_events.inc.php:20 libraries/db_events.inc.php:22 -#: libraries/export/sql.php:415 libraries/messages.inc.php:306 +#: libraries/export/sql.php:415 libraries/messages.inc.php:302 msgid "Events" msgstr "Acontecementos" #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 -#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:541 +#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:537 #: libraries/tbl_triggers.lib.php:27 setup/frames/index.inc.php:112 msgid "Name" msgstr "Nome" -#: libraries/db_links.inc.php:45 libraries/messages.inc.php:216 +#: libraries/db_links.inc.php:45 libraries/messages.inc.php:212 #, php-format msgid "Database %s has been dropped." msgstr "Eliminouse a base de datos %s." #: libraries/db_links.inc.php:57 libraries/db_links.inc.php:58 -#: libraries/db_links.inc.php:59 libraries/messages.inc.php:234 +#: libraries/db_links.inc.php:59 libraries/messages.inc.php:230 msgid "Database seems to be empty!" msgstr "Parece ser que a táboa está baleira!" -#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1025 +#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1021 #: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60 #: querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1152 +#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1148 #: libraries/tbl_links.inc.php:69 msgid "Tracking" msgstr "Seguemento" -#: libraries/db_links.inc.php:86 libraries/messages.inc.php:719 +#: libraries/db_links.inc.php:86 libraries/messages.inc.php:715 msgid "Query" msgstr "Procurar cun exemplo" -#: libraries/db_links.inc.php:91 libraries/messages.inc.php:253 +#: libraries/db_links.inc.php:91 libraries/messages.inc.php:249 msgid "Designer" msgstr "Deseñador" -#: libraries/db_links.inc.php:98 libraries/messages.inc.php:397 +#: libraries/db_links.inc.php:98 libraries/messages.inc.php:393 #: libraries/server_links.inc.php:88 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:104 libraries/messages.inc.php:587 +#: libraries/db_links.inc.php:104 libraries/messages.inc.php:583 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" msgstr "Operacións" -#: libraries/db_links.inc.php:111 libraries/messages.inc.php:709 +#: libraries/db_links.inc.php:111 libraries/messages.inc.php:705 #: libraries/server_links.inc.php:66 server_privileges.php:72 #: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117 msgid "Privileges" msgstr "Privilexios" #: libraries/db_routines.inc.php:30 libraries/db_routines.inc.php:32 -#: libraries/messages.inc.php:812 +#: libraries/messages.inc.php:808 msgid "Routines" msgstr "Rutinas" -#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:811 +#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:807 msgid "Return type" msgstr "Tipo de retorno" #: libraries/db_structure.lib.php:57 libraries/display_tbl.lib.php:1848 -#: libraries/messages.inc.php:65 +#: libraries/messages.inc.php:61 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "Pode non ser exacto. Consulte a FAQ 3.11" -#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:593 +#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:589 #: server_databases.php:142 tbl_printview.php:336 tbl_structure.php:683 msgid "Overhead" msgstr "De máis (Overhead)" #: libraries/dbi/mysql.dbi.lib.php:112 libraries/dbi/mysqli.dbi.lib.php:124 -#: libraries/messages.inc.php:176 +#: libraries/messages.inc.php:172 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Fallou a conexión para controluser tal e como se define na súa configuración." #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 -#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:855 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:851 msgid "The server is not responding" msgstr "O servidor non está a responder" #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:1010 +#: libraries/messages.inc.php:1006 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 libraries/messages.inc.php:255 +#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:251 #: tbl_structure.php:609 msgid "Details..." msgstr "Detalles..." -#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:143 +#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:139 #: main.php:91 user_password.php:111 user_password.php:129 msgid "Change password" msgstr "Trocar o contrasinal" -#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:561 +#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:557 #: libraries/replication_gui.lib.php:341 server_privileges.php:768 msgid "No Password" msgstr "Sen contrasinal" -#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:610 +#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:606 #: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60 #: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335 #: libraries/replication_gui.lib.php:345 server_privileges.php:757 @@ -2083,13 +2093,13 @@ msgstr "Sen contrasinal" msgid "Password" msgstr "Contrasinal" -#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:806 +#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:802 #: libraries/replication_gui.lib.php:349 libraries/replication_gui.lib.php:352 #: server_privileges.php:776 server_privileges.php:779 msgid "Re-type" msgstr "Reescribir" -#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:608 +#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:604 msgid "Password Hashing" msgstr "Hash do contrasinal" @@ -2099,90 +2109,90 @@ msgstr "Hash do contrasinal" msgid "MySQL 4.0 compatible" msgstr "Compatíbel co MySQL 4.0" -#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:353 +#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:349 #: libraries/replication_gui.lib.php:356 server_privileges.php:783 msgid "Generate Password" msgstr "Xerar un contrasinal" -#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:352 +#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:348 #: libraries/replication_gui.lib.php:359 server_privileges.php:786 msgid "Generate" msgstr "Xerar" #: libraries/display_create_database.lib.php:22 -#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:189 +#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:185 msgid "Create new database" msgstr "Crear unha base de datos nova" -#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:185 +#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:181 msgid "Create" msgstr "Crear" -#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:564 +#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:560 #: server_privileges.php:74 server_privileges.php:1388 #: server_replication.php:35 msgid "No Privileges" msgstr "Sen privilexios" -#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:445 +#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:441 msgid "Table must have at least one field." msgstr "A táboa ha de ter, polo menos, un campo." -#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:190 +#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:186 #, php-format msgid "Create table on database %s" msgstr "Crear unha táboa nova na base de datos %s" -#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:577 +#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:573 msgid "Number of fields" msgstr "Número de campos" -#: libraries/display_export.lib.php:42 libraries/messages.inc.php:124 +#: libraries/display_export.lib.php:42 libraries/messages.inc.php:120 msgid "Could not load export plugins, please check your installation!" msgstr "" "Non se deron carregado as extensións de exportación. Verifique a instalación." -#: libraries/display_export.lib.php:107 libraries/messages.inc.php:277 +#: libraries/display_export.lib.php:107 libraries/messages.inc.php:273 #, php-format msgid "Dump %s row(s) starting at record # %s" msgstr "Pór %s fileiras a partir da fileira %s." -#: libraries/display_export.lib.php:115 libraries/messages.inc.php:274 +#: libraries/display_export.lib.php:115 libraries/messages.inc.php:270 msgid "Dump all rows" msgstr "Envorcar todas as fileiras" -#: libraries/display_export.lib.php:125 libraries/messages.inc.php:852 +#: libraries/display_export.lib.php:125 libraries/messages.inc.php:848 #: setup/lib/messages.inc.php:82 msgid "Save as file" msgstr "Enviar (gravar nun ficheiro)
" -#: libraries/display_export.lib.php:134 libraries/messages.inc.php:828 +#: libraries/display_export.lib.php:134 libraries/messages.inc.php:824 #, php-format msgid "Save on server in %s directory" msgstr "Gardar no servidor no directorio %s" -#: libraries/display_export.lib.php:142 libraries/messages.inc.php:594 +#: libraries/display_export.lib.php:142 libraries/messages.inc.php:590 #: setup/lib/messages.inc.php:90 msgid "Overwrite existing file(s)" msgstr "Eliminar o(s) ficheiro(s) xa existente(s)" -#: libraries/display_export.lib.php:148 libraries/messages.inc.php:330 +#: libraries/display_export.lib.php:148 libraries/messages.inc.php:326 msgid "File name template" msgstr "Modelo para o nome de ficheiro" -#: libraries/display_export.lib.php:152 libraries/messages.inc.php:327 +#: libraries/display_export.lib.php:152 libraries/messages.inc.php:323 msgid "server name" msgstr "nome do servidor" -#: libraries/display_export.lib.php:155 libraries/messages.inc.php:326 +#: libraries/display_export.lib.php:155 libraries/messages.inc.php:322 msgid "database name" msgstr "nome da base de datos" -#: libraries/display_export.lib.php:158 libraries/messages.inc.php:328 +#: libraries/display_export.lib.php:158 libraries/messages.inc.php:324 msgid "table name" msgstr "nome da táboa" -#: libraries/display_export.lib.php:162 libraries/messages.inc.php:329 +#: libraries/display_export.lib.php:162 libraries/messages.inc.php:325 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2193,24 +2203,24 @@ msgstr "" "utilizar cadeas de formato de hora. Produciranse transformacións en " "consecuencia: %3$s. O resto do texto ficará como está." -#: libraries/display_export.lib.php:202 libraries/messages.inc.php:331 +#: libraries/display_export.lib.php:202 libraries/messages.inc.php:327 msgid "remember template" msgstr "lembrar o modelo" #: libraries/display_export.lib.php:210 libraries/display_import.lib.php:178 -#: libraries/display_import.lib.php:191 libraries/messages.inc.php:145 +#: libraries/display_import.lib.php:191 libraries/messages.inc.php:141 #: libraries/sql_query_form.lib.php:549 msgid "Character set of the file:" msgstr "Conxunto de caracteres do ficheiro:" -#: libraries/display_export.lib.php:235 libraries/messages.inc.php:166 +#: libraries/display_export.lib.php:235 libraries/messages.inc.php:162 #: setup/lib/messages.inc.php:84 msgid "Compression" 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/messages.inc.php:558 +#: libraries/export/sql.php:868 libraries/messages.inc.php:554 #: libraries/tbl_properties.inc.php:575 server_privileges.php:1836 #: server_processlist.php:75 msgid "None" @@ -2234,11 +2244,11 @@ msgstr "comprimido no formato \"gzip\"" msgid "bzipped" msgstr "comprimido no formato \"bzip\"" -#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1018 +#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1014 msgid "SQL compatibility mode" msgstr "Modo de compatiblidade SQL" -#: libraries/display_import.lib.php:67 libraries/messages.inc.php:398 +#: libraries/display_import.lib.php:67 libraries/messages.inc.php:394 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " @@ -2248,11 +2258,11 @@ msgstr "" "permitido ou este é un erro coñecido dos navegadores baseados en webkit " "(Safari, Google Chrome, Arora etc.)." -#: libraries/display_import.lib.php:77 libraries/messages.inc.php:406 +#: libraries/display_import.lib.php:77 libraries/messages.inc.php:402 msgid "The file is being processed, please be patient." msgstr "Estase a procesar o ficheiro; teña paciencia, por favor." -#: libraries/display_import.lib.php:99 libraries/messages.inc.php:408 +#: libraries/display_import.lib.php:99 libraries/messages.inc.php:404 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." @@ -2260,39 +2270,39 @@ msgstr "" "Teña paciencia, estase a enviar o ficheiro. Os detalles sobre o envío non " "están dispoñíbeis." -#: libraries/display_import.lib.php:126 libraries/messages.inc.php:333 +#: libraries/display_import.lib.php:126 libraries/messages.inc.php:329 msgid "File to import" msgstr "Ficheiro a importar" -#: libraries/display_import.lib.php:137 libraries/messages.inc.php:486 +#: libraries/display_import.lib.php:137 libraries/messages.inc.php:482 #: libraries/sql_query_form.lib.php:524 msgid "Location of the text file" msgstr "Localización do arquivo de texto" -#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1203 +#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1199 msgid "File uploads are not allowed on this server." msgstr "Este servidor non admite a recepción de ficheiros." -#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1235 +#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1231 #: libraries/sql_query_form.lib.php:533 tbl_change.php:1028 msgid "The directory you set for upload work cannot be reached" msgstr "Non se pode acceder ao directorio que designou para os envíos" -#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1236 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1232 #: libraries/sql_query_form.lib.php:536 tbl_change.php:1031 msgid "web server upload directory" msgstr "directorio de recepción do servidor web" -#: libraries/display_import.lib.php:212 libraries/messages.inc.php:167 +#: libraries/display_import.lib.php:212 libraries/messages.inc.php:163 #, php-format msgid "Imported file compression will be automatically detected from: %s" msgstr "A compresión do ficheiro importado detectarase automaticamente de: %s" -#: libraries/display_import.lib.php:219 libraries/messages.inc.php:600 +#: libraries/display_import.lib.php:219 libraries/messages.inc.php:596 msgid "Partial import" msgstr "Importación parcial" -#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1105 +#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1101 #, php-format msgid "" "Previous import timed out, after resubmitting will continue from position %d." @@ -2300,7 +2310,7 @@ msgstr "" "A importación anterior excedeu do tempo permitido; unha vez reiniciada " "continuará desde a posición %d." -#: libraries/display_import.lib.php:232 libraries/messages.inc.php:51 +#: libraries/display_import.lib.php:232 libraries/messages.inc.php:47 msgid "" "Allow the interruption of an import in case the script detects it is close " "to the PHP timeout limit. This might be good way to import large files, " @@ -2310,179 +2320,179 @@ msgstr "" "está perto do limite. Este podería ser un bon método para importar ficheiros " "longos, aínda que pode rachar transaccións." -#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1004 +#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1000 #: setup/lib/messages.inc.php:161 msgid "Number of records (queries) to skip from start" msgstr "Número de rexistros (procuras) que se ignoran desde o comezo" -#: libraries/display_import.lib.php:255 libraries/messages.inc.php:396 +#: libraries/display_import.lib.php:255 libraries/messages.inc.php:392 #: setup/lib/messages.inc.php:160 msgid "Format of imported file" msgstr "Formato do ficheiro importado" #: libraries/display_select_lang.lib.php:45 -#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:465 +#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:461 #: setup/frames/index.inc.php:70 msgid "Language" msgstr "Lingua" -#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:447 +#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:443 #, php-format msgid "%d is not valid row number." msgstr "%d non é un número de fileira válido." -#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:814 +#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:810 msgid "row(s) starting from record #" msgstr "fileiras, a comezar pola" -#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:817 +#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:813 msgid "horizontal" msgstr "horizontal" -#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:816 +#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:812 msgid "horizontal (rotated headers)" msgstr "horizontal (cabezallos rotados)" -#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:819 +#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:815 msgid "vertical" msgstr "vertical" -#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:818 +#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:814 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "en modo %s e repetir os cabezallos de cada %s celas" -#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:495 +#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:491 msgid "This operation could take a long time. Proceed anyway?" msgstr "Esta operación pode que leve moito tempo. Procésase igual?" -#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1012 +#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1008 msgid "Sort by key" msgstr "Ordenar pola chave" #: libraries/display_tbl.lib.php:555 libraries/import.lib.php:1082 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:591 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:587 #: tbl_select.php:267 tbl_structure.php:754 msgid "Options" msgstr "Opcións" #: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:570 -#: libraries/messages.inc.php:601 +#: libraries/messages.inc.php:597 msgid "Partial Texts" msgstr "Textos parciais" #: libraries/display_tbl.lib.php:561 libraries/display_tbl.lib.php:574 -#: libraries/messages.inc.php:346 +#: libraries/messages.inc.php:342 msgid "Full Texts" msgstr "Textos completos" -#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:739 +#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:735 msgid "Relational key" msgstr "Chave relacional" -#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:738 +#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:734 msgid "Relational display field" msgstr "Campo de exhibición relacional" -#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:872 +#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:868 msgid "Show binary contents" msgstr "Mostrar os contidos binarios" -#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:873 +#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:869 msgid "Show BLOB contents" msgstr "Mostrar os contidos BLOB" -#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:871 +#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:867 msgid "Show binary contents as HEX" msgstr "Mostrar o contido binario como HEX" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:375 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:371 #: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320 msgid "Hide" msgstr "Agochar" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:508 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:504 #: libraries/tbl_properties.inc.php:144 transformation_overview.php:47 msgid "Browser transformation" msgstr "Transformación do navegador" #: libraries/display_tbl.lib.php:1126 libraries/display_tbl.lib.php:1130 -#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:308 +#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:304 msgid "Execute bookmarked query" msgstr "Efectuar a procura gardada" #: libraries/display_tbl.lib.php:1145 libraries/display_tbl.lib.php:1157 -#: libraries/messages.inc.php:244 +#: libraries/messages.inc.php:240 msgid "The row has been deleted" msgstr "Eliminouse o rexistro" #: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056 -#: libraries/messages.inc.php:460 server_processlist.php:71 +#: libraries/messages.inc.php:456 server_processlist.php:71 #: tbl_row_action.php:64 msgid "Kill" msgstr "Matar (kill)" -#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:849 +#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:845 msgid "in query" msgstr "a procurar" -#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:881 +#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:877 msgid "Showing rows" msgstr "A mostrar rexistros " -#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1113 +#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1109 msgid "total" msgstr "total" -#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:727 +#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:723 #: sql.php:524 #, php-format msgid "Query took %01.4f sec" msgstr "a pesquisa levou %01.4f segundos" -#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:135 +#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:131 #: 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:471 msgid "Change" msgstr "Mudar" -#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:724 +#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:720 msgid "Query results operations" msgstr "Operacións de resultados da procura" -#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:671 +#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:667 msgid "Print view (with full texts)" msgstr "Vista previa da impresión (con textos completos)" -#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:482 +#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:478 msgid "Link not found" msgstr "Non se atopou o vínculo" -#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1224 +#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1220 #: main.php:228 msgid "Version information" msgstr "Información sobre a versión" -#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:423 +#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:419 msgid "Data home directory" msgstr "Directorio base dos datos" -#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:424 +#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:420 msgid "The common part of the directory path for all InnoDB data files." msgstr "" "Parte común do camiño do directorio que ten todos os ficheiros de datos de " "innoDB." -#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:422 +#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:418 msgid "Data files" msgstr "Ficheiros de datos" -#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:418 +#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:414 msgid "Autoextend increment" msgstr "Incremento de Autoextend" -#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:419 +#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:415 msgid "" " The increment size for extending the size of an autoextending tablespace " "when it becomes full." @@ -2490,11 +2500,11 @@ msgstr "" " Tamaño do incremento para estender o tamaño dun espazo de táboa cando se " "encha." -#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:420 +#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:416 msgid "Buffer pool size" msgstr "Tamaño da reserva da memoria intermedia" -#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:421 +#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:417 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." @@ -2502,87 +2512,87 @@ msgstr "" "Tamaño da memoria intermedia que usa InnoDB para gardar provisoriamente os " "datos e índices das súas táboas." -#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:112 +#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:108 msgid "Buffer Pool" msgstr "Reserva da memoria intermedia" -#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:426 +#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:422 #: server_status.php:306 msgid "InnoDB Status" msgstr "Estado de InnoDB" -#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:113 +#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:109 msgid "Buffer Pool Usage" msgstr "Uso da reserva da memoria intermedia" -#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1114 +#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1110 #: server_databases.php:137 server_databases.php:305 server_status.php:414 #: server_status.php:475 server_status.php:496 tbl_printview.php:351 #: tbl_structure.php:697 msgid "Total" msgstr "Total" -#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:425 +#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:421 msgid "pages" msgstr "páxinas" -#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:343 +#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:339 msgid "Free pages" msgstr "Páxinas libres" -#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:259 +#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:255 msgid "Dirty pages" msgstr "Páxinas suxas" -#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:230 +#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:226 msgid "Pages containing data" msgstr "Páxinas con datos" -#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:598 +#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:594 msgid "Pages to be flushed" msgstr "Páxinas que se eliminarán" -#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:119 +#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:115 msgid "Busy pages" msgstr "Páxinas ocupadas" -#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:467 +#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:463 msgid "Latched pages" msgstr "Páxinas fechadas" -#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:111 +#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:107 msgid "Buffer Pool Activity" msgstr "Actividade da reserva da memoria intermedia" -#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:731 +#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:727 msgid "Read requests" msgstr "Peticións de lectura" -#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1244 +#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1240 msgid "Write requests" msgstr "Peticións de escrita" -#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:115 +#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:111 msgid "Read misses" msgstr "Houbo fallos de lectura" -#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:117 +#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:113 msgid "Write waits" msgstr "Esperas para escribir" -#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:114 +#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:110 msgid "Read misses in %" msgstr "Houbo fallos de lectura en %" -#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:116 +#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:112 msgid "Write waits in %" msgstr "Esperas para escribir en %" -#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:522 +#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:518 msgid "Data pointer size" msgstr "Tamaño do punteiro de datos" -#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:523 +#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:519 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." @@ -2590,11 +2600,11 @@ msgstr "" "O tamaño por omisión do punteiro de datos en bytes; usarase con CREATE TABLE " "para táboas MyISAM cando non se especifique a opción MAX_ROWS." -#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:528 +#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:524 msgid "Automatic recovery mode" msgstr "Modo de recuperación automática" -#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:529 +#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:525 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." @@ -2602,11 +2612,11 @@ msgstr "" "O modo de recuperación automática de táboas MyISAM estragadas, tal e como se " "configura na opción de inicio do servidor --myisam-recover." -#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:527 +#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:523 msgid "Maximum size for temporary sort files" msgstr "Tamaño máximo dos ficheiros de ordenación temporais" -#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:526 +#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:522 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " @@ -2616,11 +2626,11 @@ msgstr "" "momento de recrear un índice MyISAM (durante REPAIR TABLE, ALTER TABLE, ou " "LOAD DATA INFILE)." -#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:525 +#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:521 msgid "Maximum size for temporary files on index creation" msgstr "Tamaño máximo dos ficheiros temporais no momento de crear índices" -#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:524 +#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:520 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " @@ -2630,11 +2640,11 @@ msgstr "" "máis grande que se se usar o caché de chaves na cantidade que se especifique " "aquí, preferir o método da caché de chaves." -#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:531 +#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:527 msgid "Repair threads" msgstr "Reparar os fíos" -#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:530 +#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:526 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." @@ -2642,11 +2652,11 @@ msgstr "" "Se este valor é maior que 1, os índices das táboas MyISAM créanse en " "paralelo (cada índice no seu propio fío) durante o proceso Reparar ordenando." -#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:533 +#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:529 msgid "Sort buffer size" msgstr "Tamaño da memoria intermedia de ordenación" -#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:532 +#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:528 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." @@ -2655,11 +2665,11 @@ msgstr "" "durante unha instrución REPAIR TABLE ou ao crear índices con CREATE INDEX ou " "ALTER TABLE." -#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:620 +#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:616 msgid "Index cache size" msgstr "Tamaño da caché do índice" -#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:619 +#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:615 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." @@ -2668,11 +2678,11 @@ msgstr "" "omisión é 32MB. A memoria que se asigne aquí só se emprega para a caché das " "páxinas de índice.." -#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:630 +#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:626 msgid "Record cache size" msgstr "Tamaño da caché dos rexistros" -#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:629 +#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:625 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " @@ -2683,11 +2693,11 @@ msgstr "" "emprégase como caché das modificacións dos ficheiros de datos de " "manipulación (.xtd) e punteiros das ficleiras (.xtr)." -#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:624 +#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:620 msgid "Log cache size" msgstr "Tamaño da caché do rexistro" -#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:623 +#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:619 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." @@ -2696,11 +2706,11 @@ msgstr "" "empregada como caché dos datos do rexistro de transaccións. Por omisión é " "16MB." -#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:628 +#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:624 msgid "Log file threshold" msgstr "Limiar do ficheiro de rexistro" -#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:627 +#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:623 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." @@ -2708,11 +2718,11 @@ msgstr "" "O tamaño dun rexistro de transaccións antes do rollover, e créase un " "rexistro novo. O valor por omisión é 16MB." -#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:634 +#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:630 msgid "Transaction buffer size" msgstr "Tamaño do búfer de transaccións" -#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:633 +#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:629 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." @@ -2720,11 +2730,11 @@ msgstr "" "O tamaño do búfer do rexistro de transaccións globais (o motor asigna dous " "búferes deste tamaño). Por omisión é 1MB." -#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:611 +#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:607 msgid "Checkpoint frequency" msgstr "Frecuencia do punto de comprobación" -#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:612 +#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:608 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." @@ -2732,11 +2742,11 @@ msgstr "" "A cantidade de datos escritos no rexistro de transaccións antes de realizar " "o punto de comprobación. O valor por omisión é 24MB." -#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:615 +#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:611 msgid "Data log threshold" msgstr "Limiar do rexistro de datos" -#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:616 +#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:612 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -2749,11 +2759,11 @@ msgstr "" "incrementar a cantidade total de datos que se poden almacenar na base de " "datos." -#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:618 +#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:614 msgid "Garbage threshold" msgstr "Limiar do lixo" -#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:617 +#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:613 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." @@ -2761,11 +2771,11 @@ msgstr "" "A porcentaxe de lixo no ficheiro de datos antes de compactar. É un valor " "entre 1 e 99. Por omisión é 50." -#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:622 +#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:618 msgid "Log buffer size" msgstr "Tamaño do búfer do rexistro" -#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:621 +#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:617 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " @@ -2775,27 +2785,27 @@ msgstr "" "256MB. O motor asigna un búfer por fío, mais só se se require o fío para " "escribir un rexistro de datos." -#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:613 +#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:609 msgid "Data file grow size" msgstr "Tamaño de aumento do ficheiro de datos" -#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:614 +#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:610 msgid "The grow size of the handle data (.xtd) files." msgstr "O tamaño de aumento dos ficheiros de datos de manipulación (.xtd)." -#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:632 +#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:628 msgid "Row file grow size" msgstr "Tamaño de aumento do ficheiro de fileiras" -#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:631 +#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:627 msgid "The grow size of the row pointer (.xtr) files." msgstr "O tamaño de aumento dos ficheiros de punteiro de fileira (.xtr)." -#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:626 +#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:622 msgid "Log file count" msgstr "Número de ficheiros de rexistro" -#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:625 +#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:621 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -2809,19 +2819,19 @@ msgstr "" #: libraries/export/htmlword.php:132 libraries/export/odt.php:168 #: libraries/export/sql.php:881 libraries/export/texytext.php:130 -#: libraries/messages.inc.php:275 +#: libraries/messages.inc.php:271 msgid "Dumping data for table" msgstr "A extraer datos da táboa" #: libraries/export/htmlword.php:185 libraries/export/odt.php:238 #: libraries/export/sql.php:785 libraries/export/texytext.php:177 -#: libraries/messages.inc.php:1086 +#: libraries/messages.inc.php:1082 msgid "Table structure for table" msgstr "Estrutura da táboa" #: libraries/export/latex.php:125 libraries/export/sql.php:232 #: libraries/export/xml.php:102 libraries/header_printview.inc.php:57 -#: libraries/messages.inc.php:381 libraries/replication_gui.lib.php:63 +#: libraries/messages.inc.php:377 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:170 libraries/replication_gui.lib.php:265 #: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325 #: server_privileges.php:692 server_privileges.php:695 @@ -2833,185 +2843,185 @@ msgstr "Servidor" #: libraries/export/latex.php:130 libraries/export/sql.php:233 #: libraries/export/xml.php:107 libraries/header_printview.inc.php:59 -#: libraries/messages.inc.php:354 +#: libraries/messages.inc.php:350 msgid "Generation Time" msgstr "Xerado en" #: libraries/export/latex.php:131 libraries/export/sql.php:235 -#: libraries/export/xml.php:108 libraries/messages.inc.php:864 main.php:186 +#: libraries/export/xml.php:108 libraries/messages.inc.php:860 main.php:186 msgid "Server version" msgstr "Versión do servidor" #: libraries/export/latex.php:132 libraries/export/sql.php:236 -#: libraries/export/xml.php:109 libraries/messages.inc.php:651 +#: libraries/export/xml.php:109 libraries/messages.inc.php:647 msgid "PHP Version" msgstr "Versión do PHP" #: libraries/export/latex.php:201 libraries/export/sql.php:868 -#: libraries/messages.inc.php:226 server_databases.php:127 +#: libraries/messages.inc.php:222 server_databases.php:127 #: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317 #: tbl_structure.php:666 msgid "Data" msgstr "Datos" -#: libraries/export/odt.php:318 libraries/messages.inc.php:506 +#: libraries/export/odt.php:318 libraries/messages.inc.php:502 #: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "Tipo MIME" -#: libraries/export/sql.php:387 libraries/messages.inc.php:711 +#: libraries/export/sql.php:387 libraries/messages.inc.php:707 msgid "Procedures" msgstr "Procedementos" -#: libraries/export/sql.php:401 libraries/messages.inc.php:348 +#: libraries/export/sql.php:401 libraries/messages.inc.php:344 msgid "Functions" msgstr "Funcións" -#: libraries/export/sql.php:618 libraries/messages.inc.php:174 +#: libraries/export/sql.php:618 libraries/messages.inc.php:170 msgid "Constraints for dumped tables" msgstr "Limitacións para os volcados das táboas" -#: libraries/export/sql.php:627 libraries/messages.inc.php:175 +#: libraries/export/sql.php:627 libraries/messages.inc.php:171 msgid "Constraints for table" msgstr "Limitacións para a táboa" -#: libraries/export/sql.php:727 libraries/messages.inc.php:512 +#: libraries/export/sql.php:727 libraries/messages.inc.php:508 msgid "MIME TYPES FOR TABLE" msgstr "TIPOS MIME PARA A TÁBOA" -#: libraries/export/sql.php:739 libraries/messages.inc.php:743 +#: libraries/export/sql.php:739 libraries/messages.inc.php:739 msgid "RELATIONS FOR TABLE" msgstr "RELACIÓNS PARA A TÁBOA" -#: libraries/export/sql.php:796 libraries/messages.inc.php:1178 +#: libraries/export/sql.php:796 libraries/messages.inc.php:1174 #: libraries/tbl_triggers.lib.php:19 msgid "Triggers" msgstr "Lanza" -#: libraries/export/sql.php:808 libraries/messages.inc.php:1046 +#: libraries/export/sql.php:808 libraries/messages.inc.php:1042 msgid "Structure for view" msgstr "Estrutura para a vista" -#: libraries/export/sql.php:817 libraries/messages.inc.php:1029 +#: libraries/export/sql.php:817 libraries/messages.inc.php:1025 msgid "Stand-in structure for view" msgstr "Estrutura existente para a vista" #: libraries/footer.inc.php:184 libraries/footer.inc.php:195 -#: libraries/footer.inc.php:198 libraries/messages.inc.php:586 +#: libraries/footer.inc.php:198 libraries/messages.inc.php:582 msgid "Open new phpMyAdmin window" msgstr "Abrir unha xanela nova co phpMyAdmin" -#: libraries/header.inc.php:115 libraries/messages.inc.php:542 +#: libraries/header.inc.php:115 libraries/messages.inc.php:538 #, fuzzy msgid "New table" msgstr "Sen táboas" #: libraries/header_printview.inc.php:50 libraries/header_printview.inc.php:55 -#: libraries/messages.inc.php:1024 +#: libraries/messages.inc.php:1020 msgid "SQL result" msgstr "Resultado SQL" -#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:350 +#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:346 msgid "Generated by" msgstr "Xerado por" #: libraries/header_printview.inc.php:63 libraries/import.lib.php:145 -#: libraries/messages.inc.php:820 navigation.php:652 navigation.php:674 +#: libraries/messages.inc.php:816 navigation.php:652 navigation.php:674 #: server_databases.php:122 tbl_printview.php:394 tbl_structure.php:366 #: tbl_structure.php:778 msgid "Rows" msgstr "Fileiras" -#: libraries/import.lib.php:150 libraries/messages.inc.php:285 sql.php:520 +#: libraries/import.lib.php:150 libraries/messages.inc.php:281 sql.php:520 #: tbl_change.php:181 tbl_get_field.php:35 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL retornou un conxunto vacío (ex. cero rexistros)." -#: libraries/import.lib.php:1078 libraries/messages.inc.php:399 +#: libraries/import.lib.php:1078 libraries/messages.inc.php:395 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "As estruturas seguintes foron creadas ou alteradas. Aquí pode:" -#: libraries/import.lib.php:1079 libraries/messages.inc.php:400 +#: libraries/import.lib.php:1079 libraries/messages.inc.php:396 msgid "View a structure`s contents by clicking on its name" msgstr "Ver o contido dunha estrutura premendo o seu nome" -#: libraries/import.lib.php:1080 libraries/messages.inc.php:401 +#: libraries/import.lib.php:1080 libraries/messages.inc.php:397 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" "Mude calqueraa destas opcións premendo a ligazón \"Opcións\" correspondente" -#: libraries/import.lib.php:1081 libraries/messages.inc.php:402 +#: libraries/import.lib.php:1081 libraries/messages.inc.php:398 msgid "Edit its structure by following the \"Structure\" link" msgstr "Modificar a súa estrutura seguindo a ligazón \"Estrutura\"" -#: libraries/import.lib.php:1084 libraries/messages.inc.php:362 +#: libraries/import.lib.php:1084 libraries/messages.inc.php:358 msgid "Go to database" msgstr "Ir á base de datos" #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:869 +#: libraries/messages.inc.php:865 msgid "settings" msgstr "opcións" -#: libraries/import.lib.php:1106 libraries/messages.inc.php:363 +#: libraries/import.lib.php:1106 libraries/messages.inc.php:359 msgid "Go to table" msgstr "Ir á táboa" -#: libraries/import.lib.php:1109 libraries/messages.inc.php:1047 +#: libraries/import.lib.php:1109 libraries/messages.inc.php:1043 msgid "structure" msgstr "estrutura" -#: libraries/import.lib.php:1115 libraries/messages.inc.php:364 +#: libraries/import.lib.php:1115 libraries/messages.inc.php:360 msgid "Go to view" msgstr "Ir á vista" #: libraries/import/csv.php:58 libraries/import/csv.php:70 #: libraries/import/csv.php:74 libraries/import/csv.php:78 -#: libraries/messages.inc.php:442 +#: libraries/messages.inc.php:438 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "Hai un parámetro non válido para a importación de CSV: %s" -#: libraries/import/csv.php:59 libraries/messages.inc.php:323 +#: libraries/import/csv.php:59 libraries/messages.inc.php:319 msgid "Fields terminated by" msgstr "Os campos rematan por" -#: libraries/import/csv.php:71 libraries/messages.inc.php:320 +#: libraries/import/csv.php:71 libraries/messages.inc.php:316 msgid "Fields enclosed by" msgstr "Os campos delimítanse con" -#: libraries/import/csv.php:75 libraries/messages.inc.php:321 +#: libraries/import/csv.php:75 libraries/messages.inc.php:317 msgid "Fields escaped by" msgstr "Os campos escápanse con" -#: libraries/import/csv.php:79 libraries/messages.inc.php:481 +#: libraries/import/csv.php:79 libraries/messages.inc.php:477 msgid "Lines terminated by" msgstr "As liñas rematan por" -#: libraries/import/csv.php:119 libraries/messages.inc.php:439 +#: libraries/import/csv.php:119 libraries/messages.inc.php:435 #, php-format msgid "Invalid column (%s) specified!" msgstr "Especificouse unha columna non válida (%s)!" #: libraries/import/csv.php:177 libraries/import/csv.php:424 -#: libraries/messages.inc.php:441 +#: libraries/messages.inc.php:437 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "O formato de entrada de CSV non é válido na liña %d." -#: libraries/import/csv.php:312 libraries/messages.inc.php:440 +#: libraries/import/csv.php:312 libraries/messages.inc.php:436 #, php-format msgid "Invalid field count in CSV input on line %d." msgstr "A contaxe de campos non é válida na entrada de CSV na liña %d." -#: libraries/import/ldi.php:55 libraries/messages.inc.php:446 +#: libraries/import/ldi.php:55 libraries/messages.inc.php:442 msgid "This plugin does not support compressed imports!" msgstr "Este engadido non é capaz de realizar importacións comprimidas!" #: libraries/import/xml.php:74 libraries/import/xml.php:130 -#: libraries/messages.inc.php:1247 +#: libraries/messages.inc.php:1243 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -3044,326 +3054,316 @@ msgstr "" msgid "ltr" msgstr "ltr" -#. l10n: Thousands separator -#: libraries/messages.inc.php:21 -msgid "," -msgstr "." - -#. l10n: Decimal separator -#: libraries/messages.inc.php:23 -msgid "." -msgstr "," - -#: libraries/messages.inc.php:25 server_status.php:461 +#: libraries/messages.inc.php:21 server_status.php:461 msgid "Aborted" msgstr "Cancelado" -#: libraries/messages.inc.php:28 main.php:68 +#: libraries/messages.inc.php:24 main.php:68 msgid "Actions" msgstr "Accións" -#: libraries/messages.inc.php:34 libraries/tbl_properties.inc.php:780 +#: libraries/messages.inc.php:30 libraries/tbl_properties.inc.php:780 #: tbl_structure.php:543 #, php-format msgid "Add %s field(s)" msgstr "Engadir %s campo(s)" -#: libraries/messages.inc.php:35 +#: libraries/messages.inc.php:31 msgid "Add custom comment into header (\\n splits lines)" msgstr "Engadir un comentario propio no cabezallo (\\n liñas diferentes)" -#: libraries/messages.inc.php:36 +#: libraries/messages.inc.php:32 msgid "Add into comments" msgstr "Engadir aos comentarios" -#: libraries/messages.inc.php:37 tbl_structure.php:541 +#: libraries/messages.inc.php:33 tbl_structure.php:541 msgid "Add new field" msgstr "Engadir un campo novo" -#: libraries/messages.inc.php:38 server_privileges.php:1886 +#: libraries/messages.inc.php:34 server_privileges.php:1886 msgid "Add privileges on the following database" msgstr "Engadir privilexios para esta base de datos" -#: libraries/messages.inc.php:39 server_privileges.php:1907 +#: libraries/messages.inc.php:35 server_privileges.php:1907 msgid "Add privileges on the following table" msgstr "Engadir privilexios para a esta táboa" -#: libraries/messages.inc.php:40 tbl_select.php:288 +#: libraries/messages.inc.php:36 tbl_select.php:288 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Condición da pesquisa (ou sexa, o complemento da cláusula \"WHERE\"):" -#: libraries/messages.inc.php:41 tbl_indexes.php:251 +#: libraries/messages.inc.php:37 tbl_indexes.php:251 #, php-format msgid "Add to index  %s column(s)" msgstr "Engadir ao índice  %s coluna(s)" -#: libraries/messages.inc.php:42 server_privileges.php:1570 +#: libraries/messages.inc.php:38 server_privileges.php:1570 #: server_privileges.php:1594 server_privileges.php:1988 #: server_privileges.php:2177 msgid "Add a new User" msgstr "Engadir un usuario novo" -#: libraries/messages.inc.php:43 server_privileges.php:931 +#: libraries/messages.inc.php:39 server_privileges.php:931 msgid "You have added a new user." msgstr "Engadiuse o usuario." -#: libraries/messages.inc.php:44 server_privileges.php:571 +#: libraries/messages.inc.php:40 server_privileges.php:571 msgid "Administration" msgstr "Administración" -#: libraries/messages.inc.php:45 tbl_structure.php:557 +#: libraries/messages.inc.php:41 tbl_structure.php:557 #, php-format msgid "After %s" msgstr "Despois de %s" -#: libraries/messages.inc.php:46 tbl_change.php:1147 +#: libraries/messages.inc.php:42 tbl_change.php:1147 msgid "Go back to previous page" msgstr "Voltar" -#: libraries/messages.inc.php:47 tbl_change.php:1148 +#: libraries/messages.inc.php:43 tbl_change.php:1148 msgid "Insert another new row" msgstr "Inserir un rexistro novo" -#: libraries/messages.inc.php:48 tbl_change.php:1160 +#: libraries/messages.inc.php:44 tbl_change.php:1160 msgid "Edit next row" msgstr "Modificar a fileira seguinte" -#: libraries/messages.inc.php:49 tbl_change.php:1152 +#: libraries/messages.inc.php:45 tbl_change.php:1152 msgid "Go back to this page" msgstr "Voltar para esta páxina" -#: libraries/messages.inc.php:50 querywindow.php:115 +#: libraries/messages.inc.php:46 querywindow.php:115 msgid "All" msgstr "Todos" -#: libraries/messages.inc.php:53 tbl_operations.php:249 +#: libraries/messages.inc.php:49 tbl_operations.php:249 msgid "Alter table order by" msgstr "Ordenar a táboa por" -#: libraries/messages.inc.php:54 tbl_operations.php:660 +#: libraries/messages.inc.php:50 tbl_operations.php:660 msgid "Analyze" msgstr "Analizar" -#: libraries/messages.inc.php:57 +#: libraries/messages.inc.php:53 msgid "and" msgstr "e" -#: libraries/messages.inc.php:59 pmd_general.php:87 +#: libraries/messages.inc.php:55 pmd_general.php:87 msgid "Angular links" msgstr "Ligazóns angulares" -#: libraries/messages.inc.php:60 tbl_structure.php:401 tbl_structure.php:415 +#: libraries/messages.inc.php:56 tbl_structure.php:401 tbl_structure.php:415 #: tbl_structure.php:429 #, php-format msgid "An index has been added on %s" msgstr "Engadiusese un índice a %s" -#: libraries/messages.inc.php:61 server_privileges.php:1521 +#: libraries/messages.inc.php:57 server_privileges.php:1521 #: server_privileges.php:2123 msgid "Any" msgstr "Calquera" -#: libraries/messages.inc.php:62 libraries/replication_gui.lib.php:298 +#: libraries/messages.inc.php:58 libraries/replication_gui.lib.php:298 #: server_privileges.php:725 msgid "Any host" msgstr "Calquera servidor" -#: libraries/messages.inc.php:63 libraries/replication_gui.lib.php:250 +#: libraries/messages.inc.php:59 libraries/replication_gui.lib.php:250 #: server_privileges.php:677 msgid "Any user" msgstr "Calquera usuario" -#: libraries/messages.inc.php:64 server_synchronize.php:449 +#: libraries/messages.inc.php:60 server_synchronize.php:449 #: server_synchronize.php:894 msgid "Apply Selected Changes" msgstr "Aplicar as alteracións seleccionadas" -#: libraries/messages.inc.php:66 tbl_structure.php:386 +#: libraries/messages.inc.php:62 tbl_structure.php:386 #, php-format msgid "A primary key has been added on %s" msgstr "Engadiuse unha chave primaria a %s" -#: libraries/messages.inc.php:67 libraries/mysql_charsets.lib.php:368 +#: libraries/messages.inc.php:63 libraries/mysql_charsets.lib.php:368 msgid "Arabic" msgstr "Árabe" -#: libraries/messages.inc.php:68 libraries/mysql_charsets.lib.php:359 +#: libraries/messages.inc.php:64 libraries/mysql_charsets.lib.php:359 msgid "Armenian" msgstr "Armenio" -#: libraries/messages.inc.php:70 libraries/tbl_properties.inc.php:394 +#: libraries/messages.inc.php:66 libraries/tbl_properties.inc.php:394 msgid "As defined:" msgstr "Como se define:" -#: libraries/messages.inc.php:71 tbl_structure.php:556 +#: libraries/messages.inc.php:67 tbl_structure.php:556 msgid "At Beginning of Table" msgstr "No comezo da táboa" -#: libraries/messages.inc.php:72 tbl_structure.php:555 +#: libraries/messages.inc.php:68 tbl_structure.php:555 msgid "At End of Table" msgstr "Ao final da táboa" -#: libraries/messages.inc.php:73 libraries/tbl_properties.inc.php:108 +#: libraries/messages.inc.php:69 libraries/tbl_properties.inc.php:108 #: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:144 #: tbl_structure.php:180 msgid "Attributes" msgstr "Atributos" -#: libraries/messages.inc.php:74 pdf_pages.php:303 pdf_pages.php:306 +#: libraries/messages.inc.php:70 pdf_pages.php:303 pdf_pages.php:306 msgid "Automatic layout" msgstr "Distribución automática" -#: libraries/messages.inc.php:77 libraries/mysql_charsets.lib.php:354 +#: libraries/messages.inc.php:73 libraries/mysql_charsets.lib.php:354 msgid "Baltic" msgstr "Báltico" -#: libraries/messages.inc.php:78 libraries/sqlparser.lib.php:175 +#: libraries/messages.inc.php:74 libraries/sqlparser.lib.php:175 msgid "BEGIN CUT" msgstr "COMEZA O RECORTE" -#: libraries/messages.inc.php:79 libraries/sqlparser.lib.php:179 +#: libraries/messages.inc.php:75 libraries/sqlparser.lib.php:179 msgid "BEGIN RAW" msgstr "COMEZA O TEXTO SIMPLE (\"RAW\")" -#: libraries/messages.inc.php:80 libraries/mysql_charsets.lib.php:201 +#: libraries/messages.inc.php:76 libraries/mysql_charsets.lib.php:201 #: libraries/mysql_charsets.lib.php:402 tbl_change.php:518 msgid "Binary" msgstr " Binario " -#: libraries/messages.inc.php:81 tbl_change.php:894 +#: libraries/messages.inc.php:77 tbl_change.php:894 msgid "Binary - do not edit" msgstr " Binario - non editar " -#: libraries/messages.inc.php:82 libraries/server_links.inc.php:76 +#: libraries/messages.inc.php:78 libraries/server_links.inc.php:76 #: server_binlog.php:110 server_status.php:253 test/theme.php:121 msgid "Binary log" msgstr "Ficheiro de rexistro binario" -#: libraries/messages.inc.php:83 server_binlog.php:217 +#: libraries/messages.inc.php:79 server_binlog.php:217 msgid "Event type" msgstr "Tipo de evento" -#: libraries/messages.inc.php:84 server_binlog.php:220 +#: libraries/messages.inc.php:80 server_binlog.php:220 msgid "Information" msgstr "Información" -#: libraries/messages.inc.php:85 server_binlog.php:215 +#: libraries/messages.inc.php:81 server_binlog.php:215 msgid "Log name" msgstr "Nome do ficheiro de rexistro" -#: libraries/messages.inc.php:86 server_binlog.php:219 +#: libraries/messages.inc.php:82 server_binlog.php:219 msgid "Original position" msgstr "Posición orixinal" -#: libraries/messages.inc.php:87 server_binlog.php:216 +#: libraries/messages.inc.php:83 server_binlog.php:216 msgid "Position" msgstr "Posición" -#: libraries/messages.inc.php:88 libraries/replication_gui.lib.php:169 +#: libraries/messages.inc.php:84 libraries/replication_gui.lib.php:169 #: server_binlog.php:218 msgid "Server ID" msgstr "Identificador do servidor" -#: libraries/messages.inc.php:92 +#: libraries/messages.inc.php:88 #, fuzzy msgctxt "$strBLOBRepositoryDisabled" msgid "Disabled" msgstr "Desactivado" -#: libraries/messages.inc.php:95 +#: libraries/messages.inc.php:91 #, fuzzy msgctxt "$strBLOBRepositoryEnabled" msgid "Enabled" msgstr "Activado" -#: libraries/messages.inc.php:97 tbl_change.php:888 +#: libraries/messages.inc.php:93 tbl_change.php:888 msgid "Remove BLOB Repository Reference" msgstr "Eliminar a referencia ao repositorio BLOB" -#: libraries/messages.inc.php:98 +#: libraries/messages.inc.php:94 #, fuzzy msgctxt "$strBLOBRepositoryRepair" msgid "Repair" msgstr "Reparar" -#: libraries/messages.inc.php:99 tbl_change.php:987 +#: libraries/messages.inc.php:95 tbl_change.php:987 msgid "Upload to BLOB repository" msgstr "Enviar ao repositorio de BLOB" -#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:359 +#: libraries/messages.inc.php:96 libraries/sql_query_form.lib.php:359 #: sql.php:677 msgid "Let every user access this bookmark" msgstr "Permitir que calquera usuario poida acceder a este marcador" -#: libraries/messages.inc.php:103 sql.php:671 +#: libraries/messages.inc.php:99 sql.php:671 msgid "Label" msgstr "Nome" -#: libraries/messages.inc.php:104 libraries/sql_query_form.lib.php:433 +#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:433 msgid "Bookmarked SQL query" msgstr "Gardouse a procura de SQL" -#: libraries/messages.inc.php:105 libraries/sql_query_form.lib.php:365 +#: libraries/messages.inc.php:101 libraries/sql_query_form.lib.php:365 msgid "Replace existing bookmark of same name" msgstr "Substituír un marcador xa existente que teña o mesmo nome" -#: libraries/messages.inc.php:106 libraries/sql_query_form.lib.php:352 +#: libraries/messages.inc.php:102 libraries/sql_query_form.lib.php:352 #: sql.php:665 sql.php:666 sql.php:683 msgid "Bookmark this SQL query" msgstr "Gardar esta procura de SQL" -#: libraries/messages.inc.php:107 libraries/sql_query_form.lib.php:466 +#: libraries/messages.inc.php:103 libraries/sql_query_form.lib.php:466 msgid "View only" msgstr "Só visualizar" -#: libraries/messages.inc.php:109 tbl_structure.php:161 +#: libraries/messages.inc.php:105 tbl_structure.php:161 msgid "Browse distinct values" msgstr "Examinar valores claramente distintos" -#: libraries/messages.inc.php:110 tbl_change.php:252 tbl_select.php:27 +#: libraries/messages.inc.php:106 tbl_change.php:252 tbl_select.php:27 #: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34 msgid "Browse foreign values" msgstr "Visualizar valores alleos" -#: libraries/messages.inc.php:118 libraries/mysql_charsets.lib.php:213 +#: libraries/messages.inc.php:114 libraries/mysql_charsets.lib.php:213 msgid "Bulgarian" msgstr "Búlgaro" -#: libraries/messages.inc.php:120 +#: libraries/messages.inc.php:116 msgid "\"bzipped\"" msgstr "comprimido no formato \"bzip\"" -#: libraries/messages.inc.php:122 +#: libraries/messages.inc.php:118 msgid "Calendar" msgstr "Calendario" -#: libraries/messages.inc.php:129 tbl_indexes.php:75 +#: libraries/messages.inc.php:125 tbl_indexes.php:75 msgid "Can't rename index to PRIMARY!" msgstr "Non se pode facer que este índice sexa PRIMARIO!" -#: libraries/messages.inc.php:132 libraries/mysql_charsets.lib.php:223 +#: libraries/messages.inc.php:128 libraries/mysql_charsets.lib.php:223 #: libraries/mysql_charsets.lib.php:409 msgid "case-insensitive" msgstr "sen distinguir maiúsculas de minúsculas" -#: libraries/messages.inc.php:133 libraries/mysql_charsets.lib.php:226 +#: libraries/messages.inc.php:129 libraries/mysql_charsets.lib.php:226 #: libraries/mysql_charsets.lib.php:411 msgid "case-sensitive" msgstr "distinguindo maiúsculas de minúsculas" -#: libraries/messages.inc.php:134 libraries/mysql_charsets.lib.php:332 +#: libraries/messages.inc.php:130 libraries/mysql_charsets.lib.php:332 msgid "Central European" msgstr "Centroeuropeu" -#: libraries/messages.inc.php:136 server_privileges.php:1969 +#: libraries/messages.inc.php:132 server_privileges.php:1969 msgid "... keep the old one." msgstr "... manter o anterior." -#: libraries/messages.inc.php:137 server_privileges.php:1967 +#: libraries/messages.inc.php:133 server_privileges.php:1967 msgid "Create a new user with the same privileges and ..." msgstr "Crear un utilizador novo cos mesmos privilexios e..." -#: libraries/messages.inc.php:138 server_privileges.php:1972 +#: libraries/messages.inc.php:134 server_privileges.php:1972 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -3371,77 +3371,77 @@ msgstr "" " ... eliminar o anterior das táboas de utilizadores e recargar os " "privilexios despois." -#: libraries/messages.inc.php:139 server_privileges.php:1970 +#: libraries/messages.inc.php:135 server_privileges.php:1970 msgid " ... delete the old one from the user tables." msgstr " ... eliminar o anterior das táboas de utilizadores." -#: libraries/messages.inc.php:140 server_privileges.php:1971 +#: libraries/messages.inc.php:136 server_privileges.php:1971 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "" " ... retirarlle todos os privilexios activos ao anterior e eliminalo despois." -#: libraries/messages.inc.php:141 server_privileges.php:1964 +#: libraries/messages.inc.php:137 server_privileges.php:1964 msgid "Change Login Information / Copy User" msgstr "Modificar a información de acceso (login) / Copiar o utilizador" -#: libraries/messages.inc.php:144 libraries/mysql_charsets.lib.php:107 +#: libraries/messages.inc.php:140 libraries/mysql_charsets.lib.php:107 msgid "Charset" msgstr "Conxunto de caracteres" -#: libraries/messages.inc.php:146 server_collations.php:40 +#: libraries/messages.inc.php:142 server_collations.php:40 msgid "Character Sets and Collations" msgstr "Conxuntos de caracteres e Ordes alfabéticas" -#: libraries/messages.inc.php:147 libraries/server_links.inc.php:57 +#: libraries/messages.inc.php:143 libraries/server_links.inc.php:57 #: test/theme.php:109 msgid "Charsets" msgstr "Conxuntos de caracteres" -#: libraries/messages.inc.php:149 tbl_operations.php:661 +#: libraries/messages.inc.php:145 tbl_operations.php:661 msgid "Check" msgstr "Comprobar" -#: libraries/messages.inc.php:151 server_databases.php:293 +#: libraries/messages.inc.php:147 server_databases.php:293 #: server_databases.php:294 msgid "Check Privileges" msgstr "Comprobar os privilexios" -#: libraries/messages.inc.php:152 server_databases.php:289 +#: libraries/messages.inc.php:148 server_databases.php:289 #, php-format msgid "Check privileges for database "%s"." msgstr "Comprobar os privilexios da base de datos "%s"." -#: libraries/messages.inc.php:154 pdf_pages.php:261 +#: libraries/messages.inc.php:150 pdf_pages.php:261 msgid "Please choose a page to edit" msgstr "Escolla unha páxina para modificar" -#: libraries/messages.inc.php:157 +#: libraries/messages.inc.php:153 msgid "Displaying Column Comments" msgstr "A mostrar os comentarios das columnas" -#: libraries/messages.inc.php:159 pdf_pages.php:483 view_create.php:148 +#: libraries/messages.inc.php:155 pdf_pages.php:483 view_create.php:148 msgid "Column names" msgstr "Nomes das columnas" -#: libraries/messages.inc.php:160 server_privileges.php:1685 +#: libraries/messages.inc.php:156 server_privileges.php:1685 msgid "Column-specific privileges" msgstr "Privilexios propios de columna" -#: libraries/messages.inc.php:164 +#: libraries/messages.inc.php:160 msgid "MySQL 4.0 compatible" msgstr "Compatíbel co MySQL 4.0" -#: libraries/messages.inc.php:165 +#: libraries/messages.inc.php:161 msgid "Complete inserts" msgstr "Insercións completas" -#: libraries/messages.inc.php:168 +#: libraries/messages.inc.php:164 #, php-format msgid "Could not load default configuration from: \"%1$s\"" msgstr "Non se puido cargar a configuración desde: \"%1$s\"" -#: libraries/messages.inc.php:169 main.php:306 +#: libraries/messages.inc.php:165 main.php:306 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " @@ -3451,170 +3451,170 @@ msgstr "" "existe aínda no directorio de phpMyAdmin. Deberíao eliminar unha vez " "finalice a configuración do phpMyAdmin." -#: libraries/messages.inc.php:171 pdf_schema.php:672 +#: libraries/messages.inc.php:167 pdf_schema.php:672 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Configure as coordenadas da táboa %s" -#: libraries/messages.inc.php:173 server_status.php:433 +#: libraries/messages.inc.php:169 server_status.php:433 msgid "Connections" msgstr "Conexións" -#: libraries/messages.inc.php:179 tbl_operations.php:509 +#: libraries/messages.inc.php:175 tbl_operations.php:509 msgid "Copy table to (database.table):" msgstr "Copiar a táboa a (base_de_datos.táboa):" -#: libraries/messages.inc.php:180 tbl_move_copy.php:58 +#: libraries/messages.inc.php:176 tbl_move_copy.php:58 #, php-format msgid "Table %s has been copied to %s." msgstr "A táboa %s copiouse para %s." -#: libraries/messages.inc.php:181 tbl_move_copy.php:48 +#: libraries/messages.inc.php:177 tbl_move_copy.php:48 msgid "Can't copy table to same one!" msgstr "Non se pode copiar unha táboa sobre si mesma" -#: libraries/messages.inc.php:182 server_synchronize.php:94 +#: libraries/messages.inc.php:178 server_synchronize.php:94 msgid "Could not connect to the source" msgstr "Non foi posíbel conectar coa orixe" -#: libraries/messages.inc.php:183 server_synchronize.php:97 +#: libraries/messages.inc.php:179 server_synchronize.php:97 msgid "Could not connect to the target" msgstr "Non foi posíbel conectar co destino" -#: libraries/messages.inc.php:184 server_processlist.php:24 +#: libraries/messages.inc.php:180 server_processlist.php:24 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" "phpMyAdmin foi incapaz de finalizar o fío %s. Probablemente xa estea fechado." -#: libraries/messages.inc.php:187 +#: libraries/messages.inc.php:183 #, php-format msgid "Create an index on %s columns" msgstr "Crear un índice en %s colunas" -#: libraries/messages.inc.php:188 tbl_indexes.php:160 +#: libraries/messages.inc.php:184 tbl_indexes.php:160 msgid "Create a new index" msgstr "Crear un índice novo" -#: libraries/messages.inc.php:191 pdf_pages.php:297 pmd_pdf.php:114 +#: libraries/messages.inc.php:187 pdf_pages.php:297 pmd_pdf.php:114 msgid "Create a page" msgstr "Crear unha páxina nova" -#: libraries/messages.inc.php:192 +#: libraries/messages.inc.php:188 msgid "Creation of PDFs" msgstr "Creación de PDF" -#: libraries/messages.inc.php:193 pmd_general.php:74 pmd_general.php:306 +#: libraries/messages.inc.php:189 pmd_general.php:74 pmd_general.php:306 msgid "Create relation" msgstr "Crear relación" -#: libraries/messages.inc.php:194 pmd_general.php:71 +#: libraries/messages.inc.php:190 pmd_general.php:71 #: server_synchronize.php:429 server_synchronize.php:872 msgid "Create table" msgstr "Crear táboas" -#: libraries/messages.inc.php:195 +#: libraries/messages.inc.php:191 #, fuzzy msgctxt "$strCreateTableShort" msgid "Create table" msgstr "Crear táboas" -#: libraries/messages.inc.php:196 server_privileges.php:1994 +#: libraries/messages.inc.php:192 server_privileges.php:1994 msgid "Database for user" msgstr "Base de datos para o usuario" -#: libraries/messages.inc.php:197 server_privileges.php:1999 +#: libraries/messages.inc.php:193 server_privileges.php:1999 msgid "Create database with same name and grant all privileges" msgstr "Crear unha base de datos co mesmo nome e conceder todos os privilexios" -#: libraries/messages.inc.php:198 +#: libraries/messages.inc.php:194 #, fuzzy msgctxt "$strCreateUserDatabaseNone" msgid "None" msgstr "Ningunha" -#: libraries/messages.inc.php:199 server_privileges.php:2003 +#: libraries/messages.inc.php:195 server_privileges.php:2003 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Conceder todos os privilexios sobre a base de datos "%s"" -#: libraries/messages.inc.php:200 server_privileges.php:2000 +#: libraries/messages.inc.php:196 server_privileges.php:2000 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Conceder todos os privilexios para o nome con comodíns (username\\_%)" -#: libraries/messages.inc.php:201 +#: libraries/messages.inc.php:197 msgid "Creation/Update/Check dates" msgstr "Datas de creación/actualización/comprobación" -#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:229 +#: libraries/messages.inc.php:199 libraries/mysql_charsets.lib.php:229 msgid "Croatian" msgstr "Croata" -#: libraries/messages.inc.php:204 +#: libraries/messages.inc.php:200 msgid "CSV" msgstr "CSV" -#: libraries/messages.inc.php:205 libraries/server_synchronize.lib.php:1343 +#: libraries/messages.inc.php:201 libraries/server_synchronize.lib.php:1343 #: libraries/server_synchronize.lib.php:1369 msgid "Current server" msgstr "Servidor actual" -#: libraries/messages.inc.php:206 main.php:159 +#: libraries/messages.inc.php:202 main.php:159 msgid "Custom color" msgstr "Cor personalizada" -#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:365 +#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:365 msgid "Cyrillic" msgstr "Cirílico" -#: libraries/messages.inc.php:208 libraries/mysql_charsets.lib.php:232 +#: libraries/messages.inc.php:204 libraries/mysql_charsets.lib.php:232 msgid "Czech" msgstr "Checo" -#: libraries/messages.inc.php:209 libraries/mysql_charsets.lib.php:383 +#: libraries/messages.inc.php:205 libraries/mysql_charsets.lib.php:383 msgid "Czech-Slovak" msgstr "Checo-eslovaco" -#: libraries/messages.inc.php:211 libraries/mysql_charsets.lib.php:235 +#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:235 msgid "Danish" msgstr "Dinamarqués" -#: libraries/messages.inc.php:214 +#: libraries/messages.inc.php:210 msgid "Database export options" msgstr "Opcións de exportación da base de datos" -#: libraries/messages.inc.php:217 server_synchronize.php:122 +#: libraries/messages.inc.php:213 server_synchronize.php:122 #: server_synchronize.php:125 tbl_create.php:82 tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "Non existe a base de datos '%s'." -#: libraries/messages.inc.php:219 server_databases.php:63 +#: libraries/messages.inc.php:215 server_databases.php:63 #, php-format msgid "%s databases have been dropped successfully." msgstr "Elimináronse %s bases de datos sen problemas." -#: libraries/messages.inc.php:220 libraries/server_synchronize.lib.php:1341 +#: libraries/messages.inc.php:216 libraries/server_synchronize.lib.php:1341 #: server_synchronize.php:1110 msgid "Source database" msgstr "Base de datos de orixe" -#: libraries/messages.inc.php:221 server_databases.php:88 +#: libraries/messages.inc.php:217 server_databases.php:88 msgid "Databases statistics" msgstr "Estatísticas das bases de datos" -#: libraries/messages.inc.php:222 server_databases.php:362 +#: libraries/messages.inc.php:218 server_databases.php:362 #: server_databases.php:363 msgid "Disable Statistics" msgstr "Desactivar as estatísticas" -#: libraries/messages.inc.php:223 server_databases.php:358 +#: libraries/messages.inc.php:219 server_databases.php:358 #: server_databases.php:359 msgid "Enable Statistics" msgstr "Activar as estatísticas" -#: libraries/messages.inc.php:224 server_databases.php:366 +#: libraries/messages.inc.php:220 server_databases.php:366 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -3622,30 +3622,30 @@ msgstr "" "Nota: De activar as estatísticas da base de datos, ocasionará que se produza " "un tráfico denso entre o servidor web e o de MySQL." -#: libraries/messages.inc.php:225 libraries/server_synchronize.lib.php:1367 +#: libraries/messages.inc.php:221 libraries/server_synchronize.lib.php:1367 #: server_synchronize.php:1112 msgid "Target database" msgstr "Base de datos de destino" -#: libraries/messages.inc.php:228 server_synchronize.php:425 +#: libraries/messages.inc.php:224 server_synchronize.php:425 #: server_synchronize.php:868 msgid "Data Difference" msgstr "Diferenza dos datos" -#: libraries/messages.inc.php:231 server_synchronize.php:272 +#: libraries/messages.inc.php:227 server_synchronize.php:272 msgid "Data Synchronization" msgstr "Sincronización dos datos" -#: libraries/messages.inc.php:235 server_privileges.php:526 +#: libraries/messages.inc.php:231 server_privileges.php:526 #: server_privileges.php:1679 msgid "Database-specific privileges" msgstr "Privilexios propios de base de datos" -#: libraries/messages.inc.php:237 server_privileges.php:2136 +#: libraries/messages.inc.php:233 server_privileges.php:2136 msgid "database-specific" msgstr "específico da base de datos" -#: libraries/messages.inc.php:240 libraries/tbl_properties.inc.php:106 +#: libraries/messages.inc.php:236 libraries/tbl_properties.inc.php:106 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" @@ -3653,32 +3653,32 @@ msgstr "" "Para os valores por omisión, introduza un único valor, sen escapalo con " "barras ou aspas e empregando este formato: a" -#: libraries/messages.inc.php:241 tbl_operations.php:589 +#: libraries/messages.inc.php:237 tbl_operations.php:589 msgid "Defragment table" msgstr "Táboa de desfragmentación" -#: libraries/messages.inc.php:242 +#: libraries/messages.inc.php:238 msgid "Use delayed inserts" msgstr "Usar insercións demoradas" -#: libraries/messages.inc.php:245 server_privileges.php:1243 +#: libraries/messages.inc.php:241 server_privileges.php:1243 msgid "No users selected for deleting!" msgstr "Non se seleccionaron utilizadores para eliminar!" -#: libraries/messages.inc.php:246 pmd_general.php:372 +#: libraries/messages.inc.php:242 pmd_general.php:372 msgid "Delete relation" msgstr "Eliminar a relación" -#: libraries/messages.inc.php:248 server_privileges.php:1232 +#: libraries/messages.inc.php:244 server_privileges.php:1232 #, php-format msgid "Deleting %s" msgstr "A eliminar %s" -#: libraries/messages.inc.php:249 libraries/sql_query_form.lib.php:388 +#: libraries/messages.inc.php:245 libraries/sql_query_form.lib.php:388 msgid "Delimiter" msgstr "Delimitador" -#: libraries/messages.inc.php:250 pdf_pages.php:506 +#: libraries/messages.inc.php:246 pdf_pages.php:506 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -3686,7 +3686,7 @@ msgstr "" "Esta páxina ten referencias a táboas que xa non existen. Quere eliminar esas " "referencias?" -#: libraries/messages.inc.php:254 pmd_help.php:29 +#: libraries/messages.inc.php:250 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 " @@ -3696,142 +3696,142 @@ msgstr "" "seleccione ou non como o campo a mostrar, prema a icona \"Escoller o campo a " "mostrar\" e a seguir o nome do campo apropiado." -#: libraries/messages.inc.php:256 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:252 libraries/mysql_charsets.lib.php:247 msgid "dictionary" msgstr "dicionario" -#: libraries/messages.inc.php:257 libraries/server_synchronize.lib.php:1348 +#: libraries/messages.inc.php:253 libraries/server_synchronize.lib.php:1348 msgid "Difference" msgstr "Diferenza" -#: libraries/messages.inc.php:258 pmd_general.php:87 +#: libraries/messages.inc.php:254 pmd_general.php:87 msgid "Direct links" msgstr "Ligazóns directas" -#: libraries/messages.inc.php:261 +#: libraries/messages.inc.php:257 msgid "Disable foreign key checks" msgstr "Desactivar as comprobacións de chaves exteriores" -#: libraries/messages.inc.php:262 +#: libraries/messages.inc.php:258 msgid "Display Features" msgstr "Mostrar as características" -#: libraries/messages.inc.php:263 tbl_select.php:301 +#: libraries/messages.inc.php:259 tbl_select.php:301 msgid "Display order:" msgstr "Mostrar en orde:" -#: libraries/messages.inc.php:265 tbl_select.php:132 +#: libraries/messages.inc.php:261 tbl_select.php:132 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Faga unha \"procura por exemplo\" (o comodín é \"%\")" -#: libraries/messages.inc.php:266 +#: libraries/messages.inc.php:262 msgid "DocSQL" msgstr "DocSQL" -#: libraries/messages.inc.php:268 +#: libraries/messages.inc.php:264 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Non empregar AUTO_INCREMENT cos valores cero" -#: libraries/messages.inc.php:273 server_privileges.php:1579 +#: libraries/messages.inc.php:269 server_privileges.php:1579 #: server_privileges.php:1580 server_privileges.php:1581 msgid "Drop the databases that have the same names as the users." msgstr "Eliminar as bases de datos que teñan os mesmos nomes que os usuarios." -#: libraries/messages.inc.php:278 tbl_printview.php:382 tbl_structure.php:743 +#: libraries/messages.inc.php:274 tbl_printview.php:382 tbl_structure.php:743 msgid "dynamic" msgstr "dinámico" -#: libraries/messages.inc.php:282 server_privileges.php:1324 +#: libraries/messages.inc.php:278 server_privileges.php:1324 #: server_privileges.php:1610 msgid "Edit Privileges" msgstr "Modificar privilexios" -#: libraries/messages.inc.php:283 tbl_printview.php:341 tbl_structure.php:688 +#: libraries/messages.inc.php:279 tbl_printview.php:341 tbl_structure.php:688 msgid "Effective" msgstr "Efectivo" -#: libraries/messages.inc.php:286 libraries/relation.lib.php:100 +#: libraries/messages.inc.php:282 libraries/relation.lib.php:100 msgid "Enabled" msgstr "Activado" -#: libraries/messages.inc.php:287 +#: libraries/messages.inc.php:283 msgid "Enclose export in a transaction" msgstr "Incluír a exportación nunha transacción" -#: libraries/messages.inc.php:288 libraries/sqlparser.lib.php:177 +#: libraries/messages.inc.php:284 libraries/sqlparser.lib.php:177 msgid "END CUT" msgstr "FIN DO RECORTE" -#: libraries/messages.inc.php:290 libraries/sqlparser.lib.php:183 +#: libraries/messages.inc.php:286 libraries/sqlparser.lib.php:183 msgid "END RAW" msgstr "FIN DO TEXTO SIMPLE (\"RAW\")" -#: libraries/messages.inc.php:293 libraries/server_links.inc.php:61 +#: libraries/messages.inc.php:289 libraries/server_links.inc.php:61 #: test/theme.php:113 msgid "Engines" msgstr "Motores" -#: libraries/messages.inc.php:295 libraries/mysql_charsets.lib.php:238 +#: libraries/messages.inc.php:291 libraries/mysql_charsets.lib.php:238 msgid "English" msgstr "Inglés" -#: libraries/messages.inc.php:296 server_privileges.php:393 +#: libraries/messages.inc.php:292 server_privileges.php:393 #: server_privileges.php:535 server_privileges.php:1501 msgid " Note: MySQL privilege names are expressed in English " msgstr " Nota: os nomes de privilexios do MySQL están en inglés" -#: libraries/messages.inc.php:298 libraries/zip_extension.lib.php:49 +#: libraries/messages.inc.php:294 libraries/zip_extension.lib.php:49 #: libraries/zip_extension.lib.php:51 libraries/zip_extension.lib.php:66 msgid "Error in ZIP archive:" msgstr "Houbo un erro no ficheiro ZIP:" -#: libraries/messages.inc.php:303 libraries/mysql_charsets.lib.php:241 +#: libraries/messages.inc.php:299 libraries/mysql_charsets.lib.php:241 msgid "Esperanto" msgstr "Esperanto" -#: libraries/messages.inc.php:304 libraries/mysql_charsets.lib.php:244 +#: libraries/messages.inc.php:300 libraries/mysql_charsets.lib.php:244 msgid "Estonian" msgstr "Estonio" -#: libraries/messages.inc.php:305 libraries/tbl_triggers.lib.php:29 +#: libraries/messages.inc.php:301 libraries/tbl_triggers.lib.php:29 msgid "Event" msgstr "Evento" -#: libraries/messages.inc.php:307 +#: libraries/messages.inc.php:303 msgid "Excel edition" msgstr "Edición mediante MS-Excel" -#: libraries/messages.inc.php:311 pmd_pdf.php:85 +#: libraries/messages.inc.php:307 pmd_pdf.php:85 msgid "Export/Import to scale" msgstr "Exportar/Importar a escala" -#: libraries/messages.inc.php:313 +#: libraries/messages.inc.php:309 msgid "Extended inserts" msgstr "Insercións estendidas" -#: libraries/messages.inc.php:314 pdf_schema.php:1267 pdf_schema.php:1288 +#: libraries/messages.inc.php:310 pdf_schema.php:1267 pdf_schema.php:1288 #: tbl_printview.php:147 tbl_structure.php:183 tbl_tracking.php:278 msgid "Extra" msgstr "Extra" -#: libraries/messages.inc.php:316 server_status.php:447 +#: libraries/messages.inc.php:312 server_status.php:447 msgid "Failed attempts" msgstr "Tentativas falidas" -#: libraries/messages.inc.php:318 tbl_structure.php:375 +#: libraries/messages.inc.php:314 tbl_structure.php:375 #, php-format msgid "Field %s has been dropped" msgstr "Eliminouse o campo %s" -#: libraries/messages.inc.php:322 libraries/sql_query_form.lib.php:317 +#: libraries/messages.inc.php:318 libraries/sql_query_form.lib.php:317 msgid "Fields" msgstr "Campos" -#: libraries/messages.inc.php:332 server_binlog.php:136 +#: libraries/messages.inc.php:328 server_binlog.php:136 msgid "Files" msgstr "Ficheiros" -#: libraries/messages.inc.php:334 server_privileges.php:1597 +#: libraries/messages.inc.php:330 server_privileges.php:1597 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -3844,121 +3844,121 @@ msgstr "" "privilexios que usa o servidor se se levaron a cabo alteracións manuais. " "Neste caso, debería %svolver a cargar os privilexios%s antes de proseguir." -#: libraries/messages.inc.php:335 server_status.php:289 +#: libraries/messages.inc.php:331 server_status.php:289 msgid "Flush query cache" msgstr "Limpar a caché da pesquisa" -#: libraries/messages.inc.php:336 +#: libraries/messages.inc.php:332 msgid "Flush the table (\"FLUSH\")" msgstr "Fechar a táboa (\"FLUSH\")" -#: libraries/messages.inc.php:337 server_status.php:271 +#: libraries/messages.inc.php:333 server_status.php:271 msgid "Flush (close) all tables" msgstr "Limpar (fechar) todas as táboas" -#: libraries/messages.inc.php:339 tbl_relation.php:279 +#: libraries/messages.inc.php:335 tbl_relation.php:279 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" "Houbo un erro ao crear a chave externa en %1$s (comprobe os tipos de datos)" -#: libraries/messages.inc.php:341 setup/lib/messages.inc.php:88 +#: libraries/messages.inc.php:337 setup/lib/messages.inc.php:88 #: tbl_printview.php:376 tbl_structure.php:738 msgid "Format" msgstr "Formato" -#: libraries/messages.inc.php:344 server_replication.php:325 +#: libraries/messages.inc.php:340 server_replication.php:325 msgid "Full start" msgstr "Inicio completo" -#: libraries/messages.inc.php:345 server_replication.php:325 +#: libraries/messages.inc.php:341 server_replication.php:325 msgid "Full stop" msgstr "Detención completa" -#: libraries/messages.inc.php:347 tbl_change.php:282 tbl_change.php:320 +#: libraries/messages.inc.php:343 tbl_change.php:282 tbl_change.php:320 msgid "Function" msgstr "Función" -#: libraries/messages.inc.php:355 libraries/mysql_charsets.lib.php:377 +#: libraries/messages.inc.php:351 libraries/mysql_charsets.lib.php:377 msgid "Georgian" msgstr "Xeorxiano" -#: libraries/messages.inc.php:356 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:352 libraries/mysql_charsets.lib.php:247 #: libraries/mysql_charsets.lib.php:250 msgid "German" msgstr "Alemán" -#: libraries/messages.inc.php:357 themes.php:42 +#: libraries/messages.inc.php:353 themes.php:42 msgid "Get more themes!" msgstr "Obter máis temas!" -#: libraries/messages.inc.php:358 server_privileges.php:2134 +#: libraries/messages.inc.php:354 server_privileges.php:2134 msgid "global" msgstr "global" -#: libraries/messages.inc.php:359 server_privileges.php:524 +#: libraries/messages.inc.php:355 server_privileges.php:524 #: server_privileges.php:1500 msgid "Global privileges" msgstr "Privilexios globais" -#: libraries/messages.inc.php:360 server_variables.php:55 +#: libraries/messages.inc.php:356 server_variables.php:55 #: server_variables.php:89 msgid "Global value" msgstr "Valor global" -#: libraries/messages.inc.php:365 server_privileges.php:1502 +#: libraries/messages.inc.php:361 server_privileges.php:1502 #: server_privileges.php:1684 server_privileges.php:2033 msgid "Grant" msgstr "Conceder" -#: libraries/messages.inc.php:366 libraries/mysql_charsets.lib.php:380 +#: libraries/messages.inc.php:362 libraries/mysql_charsets.lib.php:380 msgid "Greek" msgstr "Grego" -#: libraries/messages.inc.php:367 +#: libraries/messages.inc.php:363 msgid "\"gzipped\"" msgstr "comprimido no formato \"gzip\"" -#: libraries/messages.inc.php:369 server_status.php:250 +#: libraries/messages.inc.php:365 server_status.php:250 msgid "Handler" msgstr "Manipulador" -#: libraries/messages.inc.php:370 server_synchronize.php:464 +#: libraries/messages.inc.php:366 server_synchronize.php:464 msgid "Selected target tables have been synchronized with source tables." msgstr "" "Sincronizáronse as táboas de destino seleccionadas coas táboas de orixe." -#: libraries/messages.inc.php:372 libraries/mysql_charsets.lib.php:374 +#: libraries/messages.inc.php:368 libraries/mysql_charsets.lib.php:374 msgid "Hebrew" msgstr "Hebreu" -#: libraries/messages.inc.php:373 pmd_general.php:83 +#: libraries/messages.inc.php:369 pmd_general.php:83 msgid "Help" msgstr "Axuda" -#: libraries/messages.inc.php:374 +#: libraries/messages.inc.php:370 msgid "Use hexadecimal for BLOB" msgstr "Use hexadecimal para BLOB" -#: libraries/messages.inc.php:376 pmd_general.php:120 +#: libraries/messages.inc.php:372 pmd_general.php:120 msgid "Hide/Show all" msgstr "Agochalo/Mostralo todo" -#: libraries/messages.inc.php:377 pmd_general.php:124 +#: libraries/messages.inc.php:373 pmd_general.php:124 msgid "Hide/Show Tables with no relation" msgstr "Agochar/Mostrar táboas sen relación" -#: libraries/messages.inc.php:378 libraries/navigation_header.inc.php:54 +#: libraries/messages.inc.php:374 libraries/navigation_header.inc.php:54 #: libraries/navigation_header.inc.php:57 #: libraries/navigation_header.inc.php:58 msgid "Home" msgstr "Comezo (\"Home\")" -#: libraries/messages.inc.php:379 main.php:233 +#: libraries/messages.inc.php:375 main.php:233 msgid "Official Homepage" msgstr "Páxina Oficial do phpMyAdmin" -#: libraries/messages.inc.php:382 libraries/replication_gui.lib.php:327 +#: libraries/messages.inc.php:378 libraries/replication_gui.lib.php:327 #: server_privileges.php:753 msgid "" "When Host table is used, this field is ignored and values stored in Host " @@ -3967,98 +3967,98 @@ msgstr "" "Cando se emprega a táboa Host, ignórase este campo e no seu canto empréganse " "os valores almacenados na táboa Host." -#: libraries/messages.inc.php:383 +#: libraries/messages.inc.php:379 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/messages.inc.php:384 libraries/mysql_charsets.lib.php:253 +#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:253 msgid "Hungarian" msgstr "Húngaro" -#: libraries/messages.inc.php:386 libraries/mysql_charsets.lib.php:256 +#: libraries/messages.inc.php:382 libraries/mysql_charsets.lib.php:256 msgid "Icelandic" msgstr "Islandés" -#: libraries/messages.inc.php:387 server_processlist.php:53 +#: libraries/messages.inc.php:383 server_processlist.php:53 msgid "ID" msgstr "Identificador" -#: libraries/messages.inc.php:388 libraries/mult_submits.inc.php:108 +#: libraries/messages.inc.php:384 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:479 msgid "Fulltext" msgstr "Texto completo" -#: libraries/messages.inc.php:389 +#: libraries/messages.inc.php:385 msgid "Ignore duplicate rows" msgstr "Ignorar as fileiras duplicadas" -#: libraries/messages.inc.php:390 tbl_change.php:302 tbl_indexes.php:200 +#: libraries/messages.inc.php:386 tbl_change.php:302 tbl_indexes.php:200 #: tbl_indexes.php:225 msgid "Ignore" msgstr "Ignorar" -#: libraries/messages.inc.php:391 +#: libraries/messages.inc.php:387 msgid "Use ignore inserts" msgstr "Usar insercións ignoradas" -#: libraries/messages.inc.php:392 +#: libraries/messages.inc.php:388 msgid "Column names in first row" msgstr "Nomes das columnas na primeira fileira" -#: libraries/messages.inc.php:393 +#: libraries/messages.inc.php:389 msgid "Do not import empty rows" msgstr "Non importar as fileiras baleiras" -#: libraries/messages.inc.php:394 pmd_general.php:104 +#: libraries/messages.inc.php:390 pmd_general.php:104 msgid "Import/Export coordinates for PDF schema" msgstr "Importar/Exportar coordenadas para esquema PDF" -#: libraries/messages.inc.php:395 querywindow.php:104 +#: libraries/messages.inc.php:391 querywindow.php:104 msgid "Import files" msgstr "Importar ficheiros" -#: libraries/messages.inc.php:403 +#: libraries/messages.inc.php:399 msgid "Import currencies ($5.00 to 5.00)" msgstr "Importar as moedas ($5.00 a 5.00)" -#: libraries/messages.inc.php:404 libraries/messages.inc.php:584 +#: libraries/messages.inc.php:400 libraries/messages.inc.php:580 msgid "Open Document Spreadsheet" msgstr "Folla de cálculo Open Document" -#: libraries/messages.inc.php:405 +#: libraries/messages.inc.php:401 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "Importar as porcentaxes como decimais correctos (12.00% a .12)" -#: libraries/messages.inc.php:409 +#: libraries/messages.inc.php:405 msgid "Excel 97-2003 XLS Workbook" msgstr "Libro de traballo XLS do Excel 97-2003" -#: libraries/messages.inc.php:410 +#: libraries/messages.inc.php:406 msgid "Excel 2007 XLSX Workbook" msgstr "Libro de traballo XLSX do Excel 2007" -#: libraries/messages.inc.php:414 libraries/mult_submits.inc.php:98 +#: libraries/messages.inc.php:410 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:476 tbl_structure.php:674 msgid "Index" msgstr "Índice" -#: libraries/messages.inc.php:415 tbl_indexes.php:168 +#: libraries/messages.inc.php:411 tbl_indexes.php:168 msgid "Index name:" msgstr "Nome do índice :" -#: libraries/messages.inc.php:416 tbl_indexes.php:174 +#: libraries/messages.inc.php:412 tbl_indexes.php:174 msgid "Index type:" msgstr "Tipo de índice :" -#: libraries/messages.inc.php:417 sql.php:639 +#: libraries/messages.inc.php:413 sql.php:639 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemas cos índices da táboa `%s`" -#: libraries/messages.inc.php:427 main.php:266 +#: libraries/messages.inc.php:423 main.php:266 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -4071,24 +4071,24 @@ msgstr "" "configuración, está aberto a intrusións e habería que mirar de solucionar " "este problema de seguranza." -#: libraries/messages.inc.php:428 tbl_change.php:1130 +#: libraries/messages.inc.php:424 tbl_change.php:1130 msgid "Insert as new row" msgstr "Inserir unha columna nova" -#: libraries/messages.inc.php:429 sql.php:496 tbl_replace.php:386 +#: libraries/messages.inc.php:425 sql.php:496 tbl_replace.php:386 #, php-format msgid "Inserted row id: %1$d" msgstr "Identificador da fileira inserida: %1$d" -#: libraries/messages.inc.php:430 tbl_change.php:1131 +#: libraries/messages.inc.php:426 tbl_change.php:1131 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/messages.inc.php:432 main.php:139 +#: libraries/messages.inc.php:428 main.php:139 msgid "Interface" msgstr "Interface" -#: libraries/messages.inc.php:433 tbl_relation.php:407 +#: libraries/messages.inc.php:429 tbl_relation.php:407 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -4096,140 +4096,140 @@ msgstr "" "Non se precisas unha relación interna cando existe unha CHAVE EXTERNA " "correspondente." -#: libraries/messages.inc.php:435 pdf_pages.php:303 +#: libraries/messages.inc.php:431 pdf_pages.php:303 msgid "Internal relations" msgstr "Relacións internas" -#: libraries/messages.inc.php:438 tbl_indexes.php:256 tbl_structure.php:590 +#: libraries/messages.inc.php:434 tbl_indexes.php:256 tbl_structure.php:590 #: tbl_structure.php:601 msgid "Column count has to be larger than zero." msgstr "O número de columnas ten que ser maior de cero" -#: libraries/messages.inc.php:444 libraries/tbl_properties.inc.php:784 +#: libraries/messages.inc.php:440 libraries/tbl_properties.inc.php:784 #: tbl_structure.php:537 msgid "You have to add at least one field." msgstr "Ten que engadir un campo polo menos" -#: libraries/messages.inc.php:449 +#: libraries/messages.inc.php:445 #, php-format msgid "Invalid server index: \"%s\"" msgstr "O índice do servidor non é válido: \"%s\"" -#: libraries/messages.inc.php:452 libraries/mysql_charsets.lib.php:259 +#: libraries/messages.inc.php:448 libraries/mysql_charsets.lib.php:259 #: libraries/mysql_charsets.lib.php:349 msgid "Japanese" msgstr "Xaponés" -#: libraries/messages.inc.php:453 main.php:331 +#: libraries/messages.inc.php:449 main.php:331 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: libraries/messages.inc.php:454 server_status.php:257 +#: libraries/messages.inc.php:450 server_status.php:257 msgid "Joins" msgstr "Unións" -#: libraries/messages.inc.php:457 server_privileges.php:763 +#: libraries/messages.inc.php:453 server_privileges.php:763 msgid "Do not change the password" msgstr "Non mude o contrasinal" -#: libraries/messages.inc.php:458 server_status.php:256 +#: libraries/messages.inc.php:454 server_status.php:256 msgid "Key cache" msgstr "caché da chave" -#: libraries/messages.inc.php:462 libraries/mysql_charsets.lib.php:268 +#: libraries/messages.inc.php:458 libraries/mysql_charsets.lib.php:268 #: libraries/mysql_charsets.lib.php:371 msgid "Korean" msgstr "Coreano" -#: libraries/messages.inc.php:466 libraries/select_lang.lib.php:480 +#: libraries/messages.inc.php:462 libraries/select_lang.lib.php:480 #: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492 #, php-format msgid "Unknown language: %1$s." msgstr "Linguaxe descoñecida: %1$s." -#: libraries/messages.inc.php:468 +#: libraries/messages.inc.php:464 msgid "Table caption" msgstr "Título da táboa" -#: libraries/messages.inc.php:469 +#: libraries/messages.inc.php:465 msgid "Content of table __TABLE__" msgstr "Contido da táboa __TABLE__" -#: libraries/messages.inc.php:470 +#: libraries/messages.inc.php:466 msgid "Continued table caption" msgstr "Título da táboa continuado" -#: libraries/messages.inc.php:471 +#: libraries/messages.inc.php:467 msgid "(continued)" msgstr "(continuado)" -#: libraries/messages.inc.php:472 +#: libraries/messages.inc.php:468 msgid "Include table caption" msgstr "Incluír o título da táboa" -#: libraries/messages.inc.php:473 +#: libraries/messages.inc.php:469 msgid "Label key" msgstr "Chave da etiqueta" -#: libraries/messages.inc.php:474 +#: libraries/messages.inc.php:470 msgid "LaTeX" msgstr "LaTeX" -#: libraries/messages.inc.php:475 +#: libraries/messages.inc.php:471 msgid "Structure of table __TABLE__" msgstr "Estrutura da táboa __TABLE__" -#: libraries/messages.inc.php:476 libraries/mysql_charsets.lib.php:262 +#: libraries/messages.inc.php:472 libraries/mysql_charsets.lib.php:262 msgid "Latvian" msgstr "Letonio" -#: libraries/messages.inc.php:477 +#: libraries/messages.inc.php:473 msgid "CSV using LOAD DATA" msgstr "CSV utilizando LOAD DATA" -#: libraries/messages.inc.php:478 +#: libraries/messages.inc.php:474 msgid "Use LOCAL keyword" msgstr "Utilice a palabra chave LOCAL" -#: libraries/messages.inc.php:479 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:475 libraries/tbl_properties.inc.php:105 msgid "Length/Values" msgstr "Tamaño/Definir*" -#: libraries/messages.inc.php:480 tbl_select.php:295 +#: libraries/messages.inc.php:476 tbl_select.php:295 msgid "Number of rows per page" msgstr "Número de rexistros por páxina:" -#: libraries/messages.inc.php:484 libraries/mysql_charsets.lib.php:265 +#: libraries/messages.inc.php:480 libraries/mysql_charsets.lib.php:265 msgid "Lithuanian" msgstr "Lituano" -#: libraries/messages.inc.php:485 libraries/replication_gui.lib.php:302 +#: libraries/messages.inc.php:481 libraries/replication_gui.lib.php:302 #: server_privileges.php:729 msgid "Local" msgstr "Local" -#: libraries/messages.inc.php:487 server_privileges.php:669 +#: libraries/messages.inc.php:483 server_privileges.php:669 msgid "Login Information" msgstr "Información sobre o acceso (login)" -#: libraries/messages.inc.php:490 libraries/navigation_header.inc.php:67 +#: libraries/messages.inc.php:486 libraries/navigation_header.inc.php:67 #: libraries/navigation_header.inc.php:70 #: libraries/navigation_header.inc.php:71 main.php:99 msgid "Log out" msgstr "Saír" -#: libraries/messages.inc.php:497 server_status.php:440 +#: libraries/messages.inc.php:493 server_status.php:440 msgid "max. concurrent connections" msgstr "conexións simultáneas máximas" -#: libraries/messages.inc.php:498 +#: libraries/messages.inc.php:494 msgid "Maximal length of created query" msgstr "Lonxitude máxima da procura creada" -#: libraries/messages.inc.php:500 main.php:282 +#: libraries/messages.inc.php:496 main.php:282 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -4239,7 +4239,7 @@ msgstr "" "de caracteres multibyte. Sen o engadido mbstring, o phpMyAdmin é incapaz de " "partir cadeas correctamente e pode provocar resultados inesperados." -#: libraries/messages.inc.php:501 main.php:274 +#: libraries/messages.inc.php:497 main.php:274 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -4248,24 +4248,24 @@ msgstr "" "Ten activada mbstring.func_overload na configuración do PHP. Esta opción é " "incompatíbel co phpMyAdmin e podería ocasionar danos nos datos" -#: libraries/messages.inc.php:502 +#: libraries/messages.inc.php:498 msgid "MediaWiki Table" msgstr "Táboa do MediaWiki" -#: libraries/messages.inc.php:503 transformation_overview.php:25 +#: libraries/messages.inc.php:499 transformation_overview.php:25 msgid "Available MIME types" msgstr "Tipos MIME dispoñíbeis" -#: libraries/messages.inc.php:504 transformation_overview.php:43 +#: libraries/messages.inc.php:500 transformation_overview.php:43 msgid "Available transformations" msgstr "Transformacións dispoñíbeis" -#: libraries/messages.inc.php:505 +#: libraries/messages.inc.php:501 msgctxt "$strMIME_description" msgid "Description" msgstr "Descrición" -#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:580 +#: libraries/messages.inc.php:503 libraries/tbl_properties.inc.php:580 #: transformation_overview.php:60 #, php-format msgid "" @@ -4275,7 +4275,7 @@ msgstr "" "Non existe descrición desta transformación.
Pregúntelle ao autor que é " "o que fai %s." -#: libraries/messages.inc.php:509 libraries/tbl_properties.inc.php:137 +#: libraries/messages.inc.php:505 libraries/tbl_properties.inc.php:137 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -4284,7 +4284,7 @@ msgstr "" "Para unha lista das opcións de transformación dispoñíbeis e as súas " "transformacións de tipos MIME, prema %sdescricións de transformacións%s" -#: libraries/messages.inc.php:510 libraries/tbl_properties.inc.php:146 +#: libraries/messages.inc.php:506 libraries/tbl_properties.inc.php:146 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -4296,57 +4296,57 @@ msgstr "" "(\"\\\") ou aspas simples (\"'\") entre estes valores, precédaos de barra " "para trás (por exemplo '\\\\xyz' ou 'a\\'b')." -#: libraries/messages.inc.php:511 libraries/tbl_properties.inc.php:145 +#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:145 msgid "Transformation options" msgstr "Opcións de transformación" -#: libraries/messages.inc.php:513 transformation_overview.php:38 +#: libraries/messages.inc.php:509 transformation_overview.php:38 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "" "Os tipos MIME en cursiva non contan cunha función de transformación separada" -#: libraries/messages.inc.php:515 tbl_indexes.php:162 +#: libraries/messages.inc.php:511 tbl_indexes.php:162 msgid "Modify an index" msgstr "Modificar un índice" -#: libraries/messages.inc.php:517 pmd_general.php:108 +#: libraries/messages.inc.php:513 pmd_general.php:108 msgid "Move Menu" msgstr "Mover o menú" -#: libraries/messages.inc.php:518 tbl_operations.php:276 +#: libraries/messages.inc.php:514 tbl_operations.php:276 msgid "Move table to (database.table):" msgstr "Mover a táboa a (base_de_datos.táboa):" -#: libraries/messages.inc.php:519 tbl_move_copy.php:56 +#: libraries/messages.inc.php:515 tbl_move_copy.php:56 #, php-format msgid "Table %s has been moved to %s." msgstr "Moveuse a táboa %s para %s." -#: libraries/messages.inc.php:520 tbl_move_copy.php:46 +#: libraries/messages.inc.php:516 tbl_move_copy.php:46 msgid "Can't move table to same one!" msgstr "Non se pode mover unha táboa sobre si mesma" -#: libraries/messages.inc.php:521 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:517 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 #: libraries/mysql_charsets.lib.php:332 libraries/mysql_charsets.lib.php:354 #: libraries/mysql_charsets.lib.php:365 msgid "multilingual" msgstr "multilíngüe" -#: libraries/messages.inc.php:534 main.php:193 +#: libraries/messages.inc.php:530 main.php:193 msgid "MySQL charset" msgstr "Código de caracteres (Charset) MySQL" -#: libraries/messages.inc.php:535 main.php:211 +#: libraries/messages.inc.php:531 main.php:211 msgid "MySQL client version" msgstr "Versión do cliente de MySQL" -#: libraries/messages.inc.php:536 main.php:125 +#: libraries/messages.inc.php:532 main.php:125 msgid "MySQL connection collation" msgstr "Codificación de caracteres (Collation) da conexión de MySQL" -#: libraries/messages.inc.php:537 main.php:346 +#: libraries/messages.inc.php:533 main.php:346 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -4355,54 +4355,54 @@ msgstr "" "A versión %s da súa libraría de PHP MySQL difire da versión %s do seu " "servidor de MySQL. Isto pode ocasionar un comportamento impredicíbel." -#: libraries/messages.inc.php:539 server_status.php:294 +#: libraries/messages.inc.php:535 server_status.php:294 msgid "Show processes" msgstr "Mostrar os procesos" -#: libraries/messages.inc.php:545 navigation.php:210 server_databases.php:371 +#: libraries/messages.inc.php:541 navigation.php:210 server_databases.php:371 #: server_synchronize.php:1191 msgid "No databases" msgstr "Non hai ningunha base de datos" -#: libraries/messages.inc.php:546 server_databases.php:52 +#: libraries/messages.inc.php:542 server_databases.php:52 msgid "No databases selected." msgstr "Non hai ningunha base de datos seleccionada." -#: libraries/messages.inc.php:548 libraries/relation.lib.php:1173 +#: libraries/messages.inc.php:544 libraries/relation.lib.php:1173 msgid "no description" msgstr "sen descrición" -#: libraries/messages.inc.php:552 libraries/zip_extension.lib.php:26 +#: libraries/messages.inc.php:548 libraries/zip_extension.lib.php:26 msgid "No files found inside ZIP archive!" msgstr "Non se atoparon ficheiros dentro do arquivo ZIP!" -#: libraries/messages.inc.php:555 tbl_indexes.php:91 +#: libraries/messages.inc.php:551 tbl_indexes.php:91 msgid "No index parts defined!" msgstr "Non se definiron partes do índice" -#: libraries/messages.inc.php:556 libraries/mult_submits.inc.php:435 +#: libraries/messages.inc.php:552 libraries/mult_submits.inc.php:435 #: tbl_replace.php:331 msgid "No change" msgstr "Sen cambios" -#: libraries/messages.inc.php:557 +#: libraries/messages.inc.php:553 msgctxt "$strNoneDefault" msgid "None" msgstr "Ningún" -#: libraries/messages.inc.php:560 libraries/plugin_interface.lib.php:312 +#: libraries/messages.inc.php:556 libraries/plugin_interface.lib.php:312 msgid "This format has no options" msgstr "Este formato non ten opcións" -#: libraries/messages.inc.php:565 user_password.php:54 +#: libraries/messages.inc.php:561 user_password.php:54 msgid "You don't have sufficient privileges to be here right now!" msgstr "Non ten direitos suficientes para estar aquí agora!" -#: libraries/messages.inc.php:566 tbl_row_action.php:29 +#: libraries/messages.inc.php:562 tbl_row_action.php:29 msgid "No rows selected" msgstr "Non hai ningunha fileira seleccionada" -#: libraries/messages.inc.php:569 themes.php:32 +#: libraries/messages.inc.php:565 themes.php:32 #, php-format msgid "" "No themes support; please check your configuration and/or your themes in " @@ -4411,291 +4411,291 @@ msgstr "" "Non ten a funcionalidade dos temas. Comprobe a configuración e/ou os seus " "temas no directorio %s." -#: libraries/messages.inc.php:571 libraries/relation.lib.php:95 +#: libraries/messages.inc.php:567 libraries/relation.lib.php:95 msgid "not OK" msgstr "non conforme" -#: libraries/messages.inc.php:572 server_synchronize.php:400 +#: libraries/messages.inc.php:568 server_synchronize.php:400 #: server_synchronize.php:839 msgid "not present" msgstr "non está presente" -#: libraries/messages.inc.php:573 pdf_pages.php:36 pdf_pages.php:42 +#: libraries/messages.inc.php:569 pdf_pages.php:36 pdf_pages.php:42 #: pdf_pages.php:48 pdf_pages.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "Non se atopou a táboa %sou non se indicou en %s" -#: libraries/messages.inc.php:574 server_privileges.php:804 +#: libraries/messages.inc.php:570 server_privileges.php:804 #: server_privileges.php:2166 msgid "No user(s) found." msgstr "Non se achou ningún usuario." -#: libraries/messages.inc.php:578 pmd_general.php:164 +#: libraries/messages.inc.php:574 pmd_general.php:164 msgid "Number of tables" msgstr "Número de táboas" -#: libraries/messages.inc.php:581 server_databases.php:117 +#: libraries/messages.inc.php:577 server_databases.php:117 #: server_status.php:260 setup/lib/messages.inc.php:117 msgid "Tables" msgstr "Táboas" -#: libraries/messages.inc.php:583 libraries/relation.lib.php:99 +#: libraries/messages.inc.php:579 libraries/relation.lib.php:99 #: pmd_general.php:340 msgid "OK" msgstr "Conforme" -#: libraries/messages.inc.php:585 +#: libraries/messages.inc.php:581 msgid "Open Document Text" msgstr "Texto Open Document" -#: libraries/messages.inc.php:588 tbl_select.php:138 +#: libraries/messages.inc.php:584 tbl_select.php:138 msgid "Operator" msgstr "Operador" -#: libraries/messages.inc.php:589 tbl_operations.php:662 +#: libraries/messages.inc.php:585 tbl_operations.php:662 msgid "Optimize" msgstr "Optimizar" -#: libraries/messages.inc.php:602 libraries/tbl_properties.inc.php:755 +#: libraries/messages.inc.php:598 libraries/tbl_properties.inc.php:755 msgid "PARTITION definition" msgstr "Definición da PARTICIÓN" -#: libraries/messages.inc.php:603 tbl_structure.php:757 +#: libraries/messages.inc.php:599 tbl_structure.php:757 msgid "partitioned" msgstr "particionado" -#: libraries/messages.inc.php:604 tbl_operations.php:649 +#: libraries/messages.inc.php:600 tbl_operations.php:649 msgid "Partition maintenance" msgstr "Mantemento da partición" -#: libraries/messages.inc.php:605 tbl_operations.php:657 +#: libraries/messages.inc.php:601 tbl_operations.php:657 #, php-format msgid "Partition %s" msgstr "Partición %s" -#: libraries/messages.inc.php:606 server_privileges.php:1212 +#: libraries/messages.inc.php:602 server_privileges.php:1212 #, php-format msgid "The password for %s was changed successfully." msgstr "Modificouse sen problemas o contrasinal de %s." -#: libraries/messages.inc.php:635 +#: libraries/messages.inc.php:631 #, php-format msgid "Schema of the \"%s\" database - Page %s" msgstr "Esquema da base de datos \"%s\" - Páxina %s" -#: libraries/messages.inc.php:636 +#: libraries/messages.inc.php:632 #, php-format msgid "The \"%s\" table doesn't exist!" msgstr "Non existe a táboa \"%s\"." -#: libraries/messages.inc.php:637 pdf_schema.php:1013 +#: libraries/messages.inc.php:633 pdf_schema.php:1013 msgid "No tables" msgstr "Sen táboas" -#: libraries/messages.inc.php:638 pmd_pdf.php:63 +#: libraries/messages.inc.php:634 pmd_pdf.php:63 #, fuzzy msgid "Page has been created" msgstr "Creouse a táboa %1$s." -#: libraries/messages.inc.php:639 pmd_pdf.php:65 +#: libraries/messages.inc.php:635 pmd_pdf.php:65 msgid "Page creation failed" msgstr "" -#: libraries/messages.inc.php:640 +#: libraries/messages.inc.php:636 msgid "PDF" msgstr "PDF" -#: libraries/messages.inc.php:641 +#: libraries/messages.inc.php:637 msgid "(Generates a report containing the data of a single table)" msgstr "(Xera un informe que contén os datos dunha única táboa)" -#: libraries/messages.inc.php:642 +#: libraries/messages.inc.php:638 msgid "Report title" msgstr "Título do informe" -#: libraries/messages.inc.php:643 server_status.php:389 server_status.php:434 +#: libraries/messages.inc.php:639 server_status.php:389 server_status.php:434 #: server_status.php:497 server_status.php:555 msgid "per hour" msgstr "por hora" -#: libraries/messages.inc.php:644 server_status.php:498 +#: libraries/messages.inc.php:640 server_status.php:498 msgid "per minute" msgstr "por minuto" -#: libraries/messages.inc.php:645 server_status.php:499 +#: libraries/messages.inc.php:641 server_status.php:499 msgid "per second" msgstr "por segundo" -#: libraries/messages.inc.php:646 libraries/mysql_charsets.lib.php:271 +#: libraries/messages.inc.php:642 libraries/mysql_charsets.lib.php:271 msgid "Persian" msgstr "Persa" -#: libraries/messages.inc.php:647 libraries/mysql_charsets.lib.php:250 +#: libraries/messages.inc.php:643 libraries/mysql_charsets.lib.php:250 msgid "phone book" msgstr "directorio telefónico" -#: libraries/messages.inc.php:648 +#: libraries/messages.inc.php:644 msgid "PHP array" msgstr "Array de PHP" -#: libraries/messages.inc.php:650 main.php:213 +#: libraries/messages.inc.php:646 main.php:213 msgid "PHP extension" msgstr "Engadido de PHP" -#: libraries/messages.inc.php:654 libraries/relation.lib.php:163 +#: libraries/messages.inc.php:650 libraries/relation.lib.php:163 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/messages.inc.php:655 libraries/relation.lib.php:159 +#: libraries/messages.inc.php:651 libraries/relation.lib.php:159 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/messages.inc.php:656 libraries/relation.lib.php:161 +#: libraries/messages.inc.php:652 libraries/relation.lib.php:161 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" -#: libraries/messages.inc.php:657 libraries/relation.lib.php:162 +#: libraries/messages.inc.php:653 libraries/relation.lib.php:162 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/messages.inc.php:658 libraries/relation.lib.php:164 +#: libraries/messages.inc.php:654 libraries/relation.lib.php:164 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/messages.inc.php:661 libraries/mysql_charsets.lib.php:274 +#: libraries/messages.inc.php:657 libraries/mysql_charsets.lib.php:274 msgid "Polish" msgstr "Polonés" -#: libraries/messages.inc.php:662 libraries/replication_gui.lib.php:67 +#: libraries/messages.inc.php:658 libraries/replication_gui.lib.php:67 #: server_synchronize.php:1163 msgid "Port" msgstr "Porto" -#: libraries/messages.inc.php:667 tbl_indexes.php:67 +#: libraries/messages.inc.php:663 tbl_indexes.php:67 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "O nome da chave primaria debe ser... PRIMARIA" -#: libraries/messages.inc.php:668 tbl_indexes.php:184 +#: libraries/messages.inc.php:664 tbl_indexes.php:184 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" "(\"PRIMARIA\" debe ser o nome de e só de unha chave primaria)" -#: libraries/messages.inc.php:669 libraries/mult_submits.inc.php:76 +#: libraries/messages.inc.php:665 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:474 msgid "Primary" msgstr "Primaria" -#: libraries/messages.inc.php:673 server_privileges.php:227 +#: libraries/messages.inc.php:669 server_privileges.php:227 msgid "Includes all privileges except GRANT." msgstr "Inclúe todos os privilexios a excepción de GRANT (Conceder)." -#: libraries/messages.inc.php:674 server_privileges.php:153 +#: libraries/messages.inc.php:670 server_privileges.php:153 #: server_privileges.php:476 msgid "Allows altering the structure of existing tables." msgstr "Permite alterar a estrutura das táboas xa existentes." -#: libraries/messages.inc.php:675 server_privileges.php:169 +#: libraries/messages.inc.php:671 server_privileges.php:169 #: server_privileges.php:482 msgid "Allows altering and dropping stored routines." msgstr "Permite alterar e eliminar rutinas armacenadas." -#: libraries/messages.inc.php:676 server_privileges.php:145 +#: libraries/messages.inc.php:672 server_privileges.php:145 #: server_privileges.php:475 msgid "Allows creating new databases and tables." msgstr "Permite crear bases de datos e táboas novas." -#: libraries/messages.inc.php:677 server_privileges.php:168 +#: libraries/messages.inc.php:673 server_privileges.php:168 #: server_privileges.php:481 msgid "Allows creating stored routines." msgstr "Permite crear rutinas almacenadas." -#: libraries/messages.inc.php:678 server_privileges.php:475 +#: libraries/messages.inc.php:674 server_privileges.php:475 msgid "Allows creating new tables." msgstr "Permite crear táboas novas." -#: libraries/messages.inc.php:679 server_privileges.php:156 +#: libraries/messages.inc.php:675 server_privileges.php:156 #: server_privileges.php:479 msgid "Allows creating temporary tables." msgstr "Permite crear táboas temporais." -#: libraries/messages.inc.php:680 server_privileges.php:170 +#: libraries/messages.inc.php:676 server_privileges.php:170 #: server_privileges.php:515 msgid "Allows creating, dropping and renaming user accounts." msgstr "Permite crear, eliminar e mudar o nome das contas de usuario." -#: libraries/messages.inc.php:681 server_privileges.php:160 +#: libraries/messages.inc.php:677 server_privileges.php:160 #: server_privileges.php:164 server_privileges.php:487 #: server_privileges.php:491 msgid "Allows creating new views." msgstr "Permite crear vistas novas." -#: libraries/messages.inc.php:682 server_privileges.php:144 +#: libraries/messages.inc.php:678 server_privileges.php:144 #: server_privileges.php:467 msgid "Allows deleting data." msgstr "Permite eliminar datos." -#: libraries/messages.inc.php:683 server_privileges.php:146 +#: libraries/messages.inc.php:679 server_privileges.php:146 #: server_privileges.php:478 msgid "Allows dropping databases and tables." msgstr "Permite eliminar bases de datos e táboas." -#: libraries/messages.inc.php:684 server_privileges.php:478 +#: libraries/messages.inc.php:680 server_privileges.php:478 msgid "Allows dropping tables." msgstr "Permite eliminar táboas." -#: libraries/messages.inc.php:685 server_privileges.php:161 +#: libraries/messages.inc.php:681 server_privileges.php:161 #: server_privileges.php:495 msgid "Allows to set up events for the event scheduler" msgstr "Permite configurar acontecementos para o programador de acontecementos" -#: libraries/messages.inc.php:686 server_privileges.php:171 +#: libraries/messages.inc.php:682 server_privileges.php:171 #: server_privileges.php:483 msgid "Allows executing stored routines." msgstr "Permite executar rutinas almacenadas." -#: libraries/messages.inc.php:687 server_privileges.php:150 +#: libraries/messages.inc.php:683 server_privileges.php:150 #: server_privileges.php:470 msgid "Allows importing data from and exporting data into files." msgstr "Permite importar e exportar datos desde e para ficheiros." -#: libraries/messages.inc.php:688 server_privileges.php:501 +#: libraries/messages.inc.php:684 server_privileges.php:501 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Permite engadir usuarios e privilexios sen recargar as táboas de privilexios." -#: libraries/messages.inc.php:689 server_privileges.php:152 +#: libraries/messages.inc.php:685 server_privileges.php:152 #: server_privileges.php:477 msgid "Allows creating and dropping indexes." msgstr "Permite crear e eliminar índices." -#: libraries/messages.inc.php:690 server_privileges.php:142 +#: libraries/messages.inc.php:686 server_privileges.php:142 #: server_privileges.php:403 server_privileges.php:465 msgid "Allows inserting and replacing data." msgstr "Permite inserir e substituír datos." -#: libraries/messages.inc.php:691 server_privileges.php:157 +#: libraries/messages.inc.php:687 server_privileges.php:157 #: server_privileges.php:510 msgid "Allows locking tables for the current thread." msgstr "Permite bloquear táboas do fío en uso" -#: libraries/messages.inc.php:692 server_privileges.php:607 +#: libraries/messages.inc.php:688 server_privileges.php:607 #: server_privileges.php:609 msgid "Limits the number of new connections the user may open per hour." msgstr "Limita o número de conexións novas por hora que pode abrir un usuario." -#: libraries/messages.inc.php:693 server_privileges.php:595 +#: libraries/messages.inc.php:689 server_privileges.php:595 #: server_privileges.php:597 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Limita o número de procuras por hora que pode enviar un usuario." -#: libraries/messages.inc.php:694 server_privileges.php:601 +#: libraries/messages.inc.php:690 server_privileges.php:601 #: server_privileges.php:603 msgid "" "Limits the number of commands that change any table or database the user may " @@ -4704,57 +4704,57 @@ msgstr "" "Limita o número de ordes que modifiquen unha táboa ou base de datos por hora " "que pode executar un usuario." -#: libraries/messages.inc.php:695 server_privileges.php:613 +#: libraries/messages.inc.php:691 server_privileges.php:613 #: server_privileges.php:615 msgid "Limits the number of simultaneous connections the user may have." msgstr "Limita o número de conexións simultáneas que pode ter o usuario." -#: libraries/messages.inc.php:696 server_privileges.php:149 +#: libraries/messages.inc.php:692 server_privileges.php:149 #: server_privileges.php:505 msgid "Allows viewing processes of all users" msgstr "Permite ver procesos de todos os usuarios" -#: libraries/messages.inc.php:697 server_privileges.php:151 +#: libraries/messages.inc.php:693 server_privileges.php:151 #: server_privileges.php:409 server_privileges.php:511 msgid "Has no effect in this MySQL version." msgstr "Non funciona nesta versión do MySQL." -#: libraries/messages.inc.php:698 server_privileges.php:147 +#: libraries/messages.inc.php:694 server_privileges.php:147 #: server_privileges.php:506 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Permite recargar a configuración do servidor e limpar a súa caché." -#: libraries/messages.inc.php:699 server_privileges.php:159 +#: libraries/messages.inc.php:695 server_privileges.php:159 #: server_privileges.php:513 msgid "Allows the user to ask where the slaves / masters are." msgstr "Permite que o usuario pregunte onde están os escravos e os masters." -#: libraries/messages.inc.php:700 server_privileges.php:158 +#: libraries/messages.inc.php:696 server_privileges.php:158 #: server_privileges.php:514 msgid "Needed for the replication slaves." msgstr "Necesario para os escravos de replicación." -#: libraries/messages.inc.php:701 server_privileges.php:141 +#: libraries/messages.inc.php:697 server_privileges.php:141 #: server_privileges.php:400 server_privileges.php:464 msgid "Allows reading data." msgstr "Permite gravar datos." -#: libraries/messages.inc.php:702 server_privileges.php:154 +#: libraries/messages.inc.php:698 server_privileges.php:154 #: server_privileges.php:508 msgid "Gives access to the complete list of databases." msgstr "Permite acceder á listaxe completa de bases de datos" -#: libraries/messages.inc.php:703 server_privileges.php:165 +#: libraries/messages.inc.php:699 server_privileges.php:165 #: server_privileges.php:167 server_privileges.php:480 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Permite realizar consultas SHOW CREATE VIEW." -#: libraries/messages.inc.php:704 server_privileges.php:148 +#: libraries/messages.inc.php:700 server_privileges.php:148 #: server_privileges.php:507 msgid "Allows shutting down the server." msgstr "Permite apagar o servidor." -#: libraries/messages.inc.php:705 server_privileges.php:155 +#: libraries/messages.inc.php:701 server_privileges.php:155 #: server_privileges.php:504 msgid "" "Allows connecting, even if maximum number of connections is reached; " @@ -4765,55 +4765,55 @@ msgstr "" "maioría das operación administrativas, como configurar as variábeis globais " "ou matar os fíos doutros usuarios." -#: libraries/messages.inc.php:706 server_privileges.php:162 +#: libraries/messages.inc.php:702 server_privileges.php:162 #: server_privileges.php:496 msgid "Allows creating and dropping triggers" msgstr "Permite crear e eliminar os disparadores" -#: libraries/messages.inc.php:707 server_privileges.php:143 +#: libraries/messages.inc.php:703 server_privileges.php:143 #: server_privileges.php:406 server_privileges.php:466 msgid "Allows changing data." msgstr "Permite modificar datos." -#: libraries/messages.inc.php:708 server_privileges.php:221 +#: libraries/messages.inc.php:704 server_privileges.php:221 msgid "No privileges." msgstr "Sen privilexios." -#: libraries/messages.inc.php:710 server_privileges.php:1296 +#: libraries/messages.inc.php:706 server_privileges.php:1296 msgid "The privileges were reloaded successfully." msgstr "Non houbo problemas ao recargar os privilexios." -#: libraries/messages.inc.php:712 libraries/server_links.inc.php:80 +#: libraries/messages.inc.php:708 libraries/server_links.inc.php:80 msgid "Processes" msgstr "Procesos" -#: libraries/messages.inc.php:714 main.php:187 +#: libraries/messages.inc.php:710 main.php:187 msgid "Protocol version" msgstr "Versión do protocolo" -#: libraries/messages.inc.php:715 +#: libraries/messages.inc.php:711 msgid "Put fields names in the first row" msgstr "Pór os nomes dos campos na primeira fileira" -#: libraries/messages.inc.php:720 server_synchronize.php:1003 +#: libraries/messages.inc.php:716 server_synchronize.php:1003 msgid "The following queries have been executed:" msgstr "Executáronse as procuras seguintes:" -#: libraries/messages.inc.php:721 server_status.php:251 +#: libraries/messages.inc.php:717 server_status.php:251 msgid "Query cache" msgstr "caché de procuras" -#: libraries/messages.inc.php:722 libraries/navigation_header.inc.php:80 +#: libraries/messages.inc.php:718 libraries/navigation_header.inc.php:80 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 setup/lib/messages.inc.php:122 msgid "Query window" msgstr "Xanela de procuras" -#: libraries/messages.inc.php:725 querywindow.php:109 querywindow.php:217 +#: libraries/messages.inc.php:721 querywindow.php:109 querywindow.php:217 msgid "SQL history" msgstr "Historial de SQL" -#: libraries/messages.inc.php:726 server_status.php:490 +#: libraries/messages.inc.php:722 server_status.php:490 #, php-format msgid "" "Query statistics: Since its startup, %s queries have been sent to the " @@ -4822,95 +4822,95 @@ msgstr "" "Estatística das procuras: Desde que se iniciou, enviáronselle ao " "servidor %s procuras." -#: libraries/messages.inc.php:728 server_status.php:554 +#: libraries/messages.inc.php:724 server_status.php:554 msgid "Query type" msgstr "Tipo de procura" -#: libraries/messages.inc.php:729 libraries/sql_query_form.lib.php:381 +#: libraries/messages.inc.php:725 libraries/sql_query_form.lib.php:381 msgid "Do not overwrite this query from outside the window" msgstr "Non escribir sobre esta procura desde fóra da xanela" -#: libraries/messages.inc.php:732 tbl_operations.php:663 +#: libraries/messages.inc.php:728 tbl_operations.php:663 msgid "Rebuild" msgstr "Reconstruír" -#: libraries/messages.inc.php:733 server_status.php:394 +#: libraries/messages.inc.php:729 server_status.php:394 msgid "Received" msgstr "Recibido" -#: libraries/messages.inc.php:734 pmd_pdf.php:89 +#: libraries/messages.inc.php:730 pmd_pdf.php:89 msgid "recommended" msgstr "recomendado" -#: libraries/messages.inc.php:736 tbl_operations.php:702 +#: libraries/messages.inc.php:732 tbl_operations.php:702 msgid "Check referential integrity:" msgstr "Comprobar a integridade das referencias:" -#: libraries/messages.inc.php:740 pdf_schema.php:1032 pdf_schema.php:1141 +#: libraries/messages.inc.php:736 pdf_schema.php:1032 pdf_schema.php:1141 msgid "Relational schema" msgstr "Esquema relacional" -#: libraries/messages.inc.php:744 tbl_relation.php:399 +#: libraries/messages.inc.php:740 tbl_relation.php:399 msgid "Relations" msgstr "Relacións" -#: libraries/messages.inc.php:745 tbl_structure.php:507 tbl_structure.php:509 +#: libraries/messages.inc.php:741 tbl_structure.php:507 tbl_structure.php:509 msgid "Relation view" msgstr "Vista das relacións" -#: libraries/messages.inc.php:746 server_privileges.php:1246 +#: libraries/messages.inc.php:742 server_privileges.php:1246 msgid "Reloading the privileges" msgstr "A recargar os privilexios" -#: libraries/messages.inc.php:747 navigation.php:66 navigation.php:67 +#: libraries/messages.inc.php:743 navigation.php:66 navigation.php:67 #: navigation.php:70 #, fuzzy msgid "Reload navigation frame" msgstr "Personalizar a moldura de navegación" -#: libraries/messages.inc.php:748 pmd_general.php:80 +#: libraries/messages.inc.php:744 pmd_general.php:80 msgid "Reload" msgstr "Recargar" -#: libraries/messages.inc.php:749 libraries/server_synchronize.lib.php:1345 +#: libraries/messages.inc.php:745 libraries/server_synchronize.lib.php:1345 #: libraries/server_synchronize.lib.php:1371 msgid "Remote server" msgstr "Servidor remoto" -#: libraries/messages.inc.php:750 +#: libraries/messages.inc.php:746 msgid "Remove CRLF characters within fields" msgstr "Eliminar os caracteres CRLF dentro dos campos" -#: libraries/messages.inc.php:751 tbl_operations.php:676 +#: libraries/messages.inc.php:747 tbl_operations.php:676 msgid "Remove partitioning" msgstr "Eliminar particións" -#: libraries/messages.inc.php:752 server_privileges.php:1575 +#: libraries/messages.inc.php:748 server_privileges.php:1575 msgid "Remove selected users" msgstr "Eliminar os usuarios seleccionados" -#: libraries/messages.inc.php:755 tbl_operations.php:338 +#: libraries/messages.inc.php:751 tbl_operations.php:338 msgid "Rename table to" msgstr "Mudar o nome da táboa para" -#: libraries/messages.inc.php:756 view_operations.php:93 +#: libraries/messages.inc.php:752 view_operations.php:93 #, fuzzy msgid "Rename view to" msgstr "Mudar o nome da táboa para" -#: libraries/messages.inc.php:757 tbl_operations.php:664 +#: libraries/messages.inc.php:753 tbl_operations.php:664 msgid "Repair" msgstr "Arranxar" -#: libraries/messages.inc.php:759 +#: libraries/messages.inc.php:755 msgid "Replace NULL by" msgstr "Substituír NULL por " -#: libraries/messages.inc.php:760 +#: libraries/messages.inc.php:756 msgid "Replace table data with file" msgstr "Substituír os datos da táboa polos do ficheiro" -#: libraries/messages.inc.php:761 server_replication.php:228 +#: libraries/messages.inc.php:757 server_replication.php:228 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -4918,46 +4918,46 @@ msgstr "" "Agora engada as liñas seguintes ao final do ficheiro my.cnf e a seguir " "reinicie o servidor de MySQL." -#: libraries/messages.inc.php:762 libraries/replication_gui.lib.php:236 +#: libraries/messages.inc.php:758 libraries/replication_gui.lib.php:236 #: server_replication.php:194 msgid "Add slave replication user" msgstr "Engadir un usuario de replicación de escravos" -#: libraries/messages.inc.php:763 server_replication.php:74 +#: libraries/messages.inc.php:759 server_replication.php:74 #, php-format msgid "Master server changed succesfully to %s" msgstr "O servidor principal mudouse sen problemas a %s" -#: libraries/messages.inc.php:764 server_replication.php:182 +#: libraries/messages.inc.php:760 server_replication.php:182 msgid "This server is configured as master in a replication process." msgstr "" "Este servidor está configurado como principal nun proceso de replicación." -#: libraries/messages.inc.php:765 server_replication.php:322 +#: libraries/messages.inc.php:761 server_replication.php:322 msgid "Control slave:" msgstr "Escravo de control:" -#: libraries/messages.inc.php:766 server_replication.php:65 +#: libraries/messages.inc.php:762 server_replication.php:65 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" "Foi imposíbel ler a posición do rexistro do principal. É posíbel que haxa un " "problema de privilexios no principal." -#: libraries/messages.inc.php:767 server_replication.php:58 +#: libraries/messages.inc.php:763 server_replication.php:58 #, php-format msgid "Unable to connect to master %s." msgstr "Foi imposíbel conectar co principal %s." -#: libraries/messages.inc.php:768 server_replication.php:221 +#: libraries/messages.inc.php:764 server_replication.php:221 msgid "Replicate all databases; Ignore:" msgstr "Replicar todas as bases de datos. Ignorar:" -#: libraries/messages.inc.php:769 server_replication.php:222 +#: libraries/messages.inc.php:765 server_replication.php:222 msgid "Ignore all databases; Replicate:" msgstr "Ignorar todas as bases de datos. Replicar:" -#: libraries/messages.inc.php:770 server_replication.php:218 +#: libraries/messages.inc.php:766 server_replication.php:218 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -4971,16 +4971,16 @@ msgstr "" "ignorar todas as bases de datos por omisión e permitir que se repliquen só " "algunhas. Seleccione o modo:" -#: libraries/messages.inc.php:771 server_replication.php:217 +#: libraries/messages.inc.php:767 server_replication.php:217 msgid "Master configuration" msgstr "Configuración do principal" -#: libraries/messages.inc.php:772 server_replication.php:181 +#: libraries/messages.inc.php:768 server_replication.php:181 #: server_replication.php:209 msgid "Master replication" msgstr "Replicación do principal" -#: libraries/messages.inc.php:774 server_replication.php:230 +#: libraries/messages.inc.php:770 server_replication.php:230 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " @@ -4990,11 +4990,11 @@ msgstr "" "ver unha mensaxe que informa de que este servidor está configurado " "como principal." -#: libraries/messages.inc.php:775 server_replication.php:225 +#: libraries/messages.inc.php:771 server_replication.php:225 msgid "Please select databases:" msgstr "Seleccione as bases de datos:" -#: libraries/messages.inc.php:776 server_replication.php:210 +#: libraries/messages.inc.php:772 server_replication.php:210 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -5003,7 +5003,7 @@ msgstr "" "Este servidor non está configurado como principal nun proceso de " "replicación. Desexa configuralo?" -#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:188 +#: libraries/messages.inc.php:773 libraries/replication_gui.lib.php:188 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." @@ -5011,50 +5011,50 @@ msgstr "" "Nesta listaxe só son visíbeis os escravos que se inicien coa opción --report-" "host=nome_da_máquina." -#: libraries/messages.inc.php:778 server_replication.php:187 +#: libraries/messages.inc.php:774 server_replication.php:187 msgid "Show connected slaves" msgstr "Mostrar os escravos conectados" -#: libraries/messages.inc.php:779 libraries/messages.inc.php:885 +#: libraries/messages.inc.php:775 libraries/messages.inc.php:881 #: server_replication.php:184 server_status.php:281 msgid "Show master status" msgstr "Mostrar o estado do principal" -#: libraries/messages.inc.php:780 server_replication.php:334 +#: libraries/messages.inc.php:776 server_replication.php:334 msgid "Skipping error(s) might lead into unsynchronized master and slave!" msgstr "" "Omitir o(s) erro(s) podería conducir a que o principal e o escravo non " "estean sincronizados." -#: libraries/messages.inc.php:781 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:51 #: server_replication.php:347 msgid "Change or reconfigure master server" msgstr "Mudar ou reconfigurar o servidor principal" -#: libraries/messages.inc.php:782 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:778 libraries/replication_gui.lib.php:51 msgid "Slave configuration" msgstr "Configuración do escravo" -#: libraries/messages.inc.php:783 server_replication.php:305 +#: libraries/messages.inc.php:779 server_replication.php:305 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" "O servidor está configurado como escravo nun proceso de replicación. Desexa:" -#: libraries/messages.inc.php:784 server_replication.php:332 +#: libraries/messages.inc.php:780 server_replication.php:332 msgid "Error management:" msgstr "Xestión de erros:" -#: libraries/messages.inc.php:785 server_replication.php:328 +#: libraries/messages.inc.php:781 server_replication.php:328 #, php-format msgid "IO Thread %s only" msgstr "Fío de E/S %s só" -#: libraries/messages.inc.php:786 server_replication.php:296 +#: libraries/messages.inc.php:782 server_replication.php:296 msgid "Slave IO Thread not running!" msgstr "" -#: libraries/messages.inc.php:787 server_replication.php:355 +#: libraries/messages.inc.php:783 server_replication.php:355 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -5063,40 +5063,40 @@ msgstr "" "Este servidor non está configurado como escravo nun proceso de replicación. " "Desexa configuralo?" -#: libraries/messages.inc.php:788 server_replication.php:326 +#: libraries/messages.inc.php:784 server_replication.php:326 msgid "Reset slave" msgstr "Reiniciar o escravo" -#: libraries/messages.inc.php:789 server_replication.php:308 +#: libraries/messages.inc.php:785 server_replication.php:308 msgid "See slave status table" msgstr "Ver a táboa de estado do escravo" -#: libraries/messages.inc.php:790 server_replication.php:336 +#: libraries/messages.inc.php:786 server_replication.php:336 msgid "Skip current error" msgstr "Omitir este erro" -#: libraries/messages.inc.php:791 server_replication.php:340 +#: libraries/messages.inc.php:787 server_replication.php:340 msgid "errors." msgstr "erros." -#: libraries/messages.inc.php:792 server_replication.php:337 +#: libraries/messages.inc.php:788 server_replication.php:337 msgid "Skip next" msgstr "Omitir os seguintes" -#: libraries/messages.inc.php:793 server_replication.php:248 +#: libraries/messages.inc.php:789 server_replication.php:248 msgid "Slave replication" msgstr "Replicación do escravo" -#: libraries/messages.inc.php:794 server_replication.php:293 +#: libraries/messages.inc.php:790 server_replication.php:293 msgid "Slave SQL Thread not running!" msgstr "" -#: libraries/messages.inc.php:795 server_replication.php:327 +#: libraries/messages.inc.php:791 server_replication.php:327 #, php-format msgid "SQL Thread %s only" msgstr "Fío SQL %s só" -#: libraries/messages.inc.php:796 +#: libraries/messages.inc.php:792 #, php-format msgid "" "This MySQL server works as %s in replication process. For further " @@ -5107,163 +5107,163 @@ msgstr "" "b>. Para máis información acerca do estado de replicación do servidor visite " "a sección sobre replicación." -#: libraries/messages.inc.php:797 +#: libraries/messages.inc.php:793 msgid "Master status" msgstr "Estado do mestre" -#: libraries/messages.inc.php:798 server_status.php:721 +#: libraries/messages.inc.php:794 server_status.php:721 msgid "Replication status" msgstr "Estado da replicación" -#: libraries/messages.inc.php:799 +#: libraries/messages.inc.php:795 msgid "Slave status" msgstr "Estado do escravo" -#: libraries/messages.inc.php:800 server_replication.php:311 +#: libraries/messages.inc.php:796 server_replication.php:311 msgid "Synchronize databases with master" msgstr "Sincronizar as bases de datos co principal" -#: libraries/messages.inc.php:801 server_replication.php:71 +#: libraries/messages.inc.php:797 server_replication.php:71 msgid "Unable to change master" msgstr "Foi imposíbel mudar de principal" -#: libraries/messages.inc.php:802 server_replication.php:51 +#: libraries/messages.inc.php:798 server_replication.php:51 msgid "Unknown error" msgstr "Produciuse un erro descoñecido" -#: libraries/messages.inc.php:803 main.php:163 pdf_pages.php:344 +#: libraries/messages.inc.php:799 main.php:163 pdf_pages.php:344 #: setup/lib/FormDisplay.tpl.php:216 tbl_change.php:1175 msgid "Reset" msgstr "Reiniciar" -#: libraries/messages.inc.php:804 server_privileges.php:591 +#: libraries/messages.inc.php:800 server_privileges.php:591 msgid "Resource limits" msgstr "Limites de recursos" -#: libraries/messages.inc.php:805 tbl_change.php:1209 +#: libraries/messages.inc.php:801 tbl_change.php:1209 #, php-format msgid "Restart insertion with %s rows" msgstr "Reiniciar a inserción con %s fileiras" -#: libraries/messages.inc.php:807 server_privileges.php:1578 +#: libraries/messages.inc.php:803 server_privileges.php:1578 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." -#: libraries/messages.inc.php:808 server_privileges.php:1176 +#: libraries/messages.inc.php:804 server_privileges.php:1176 #, php-format msgid "You have revoked the privileges for %s" msgstr "Retiroulle os privilexios a %s" -#: libraries/messages.inc.php:809 server_privileges.php:1333 +#: libraries/messages.inc.php:805 server_privileges.php:1333 msgid "Revoke" msgstr "Revogar" -#: libraries/messages.inc.php:810 libraries/mysql_charsets.lib.php:280 +#: libraries/messages.inc.php:806 libraries/mysql_charsets.lib.php:280 msgid "Romanian" msgstr "Romeno" -#: libraries/messages.inc.php:813 tbl_printview.php:404 tbl_structure.php:786 +#: libraries/messages.inc.php:809 tbl_printview.php:404 tbl_structure.php:786 msgid "Row length" msgstr "Lonxitude da fileira" -#: libraries/messages.inc.php:815 tbl_printview.php:414 tbl_structure.php:794 +#: libraries/messages.inc.php:811 tbl_printview.php:414 tbl_structure.php:794 msgid " Row size " msgstr " Tamaño da fileira " -#: libraries/messages.inc.php:821 tbl_printview.php:366 tbl_structure.php:726 +#: libraries/messages.inc.php:817 tbl_printview.php:366 tbl_structure.php:726 msgid "Row Statistics" msgstr "Estatísticas da fileira" -#: libraries/messages.inc.php:822 +#: libraries/messages.inc.php:818 #, php-format msgid "running on %s" msgstr "en execución no servidor %s" -#: libraries/messages.inc.php:824 libraries/sql_query_form.lib.php:223 +#: libraries/messages.inc.php:820 libraries/sql_query_form.lib.php:223 #, php-format msgid "Run SQL query/queries on server %s" msgstr "Executar procura/s SQL no servidor %s" -#: libraries/messages.inc.php:825 libraries/sql_query_form.lib.php:240 +#: libraries/messages.inc.php:821 libraries/sql_query_form.lib.php:240 #: libraries/sql_query_form.lib.php:265 #, php-format msgid "Run SQL query/queries on database %s" msgstr "Efectuar unha procura SQL na base de datos %s" -#: libraries/messages.inc.php:826 libraries/mysql_charsets.lib.php:337 +#: libraries/messages.inc.php:822 libraries/mysql_charsets.lib.php:337 msgid "Russian" msgstr "Ruso" -#: libraries/messages.inc.php:829 pmd_general.php:68 +#: libraries/messages.inc.php:825 pmd_general.php:68 msgid "Save position" msgstr "Gardar a posición" -#: libraries/messages.inc.php:830 libraries/tbl_properties.inc.php:776 +#: libraries/messages.inc.php:826 libraries/tbl_properties.inc.php:776 #: pdf_pages.php:484 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:214 setup/lib/FormDisplay.tpl.php:215 #: tbl_change.php:1126 tbl_indexes.php:248 tbl_relation.php:566 msgid "Save" msgstr "Gardar" -#: libraries/messages.inc.php:831 +#: libraries/messages.inc.php:827 msgid "The scale factor is too small to fit the schema on one page" msgstr "" "O factor de redución é demasiado pequeno para que o esquema caiba nunha " "única páxina" -#: libraries/messages.inc.php:843 main.php:298 +#: libraries/messages.inc.php:839 main.php:298 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "O ficheiro de configuración agora necesita un contrasinal secreto " "(blowfish_secret)." -#: libraries/messages.inc.php:844 navigation.php:353 navigation.php:516 +#: libraries/messages.inc.php:840 navigation.php:353 navigation.php:516 msgid "Please select a database" msgstr "Seleccione unha base de dados" -#: libraries/messages.inc.php:846 server_binlog.php:120 +#: libraries/messages.inc.php:842 server_binlog.php:120 msgid "Select binary log to view" msgstr "Seleccione o ficheiro de rexistro binario que queira ver" -#: libraries/messages.inc.php:847 tbl_select.php:270 +#: libraries/messages.inc.php:843 tbl_select.php:270 msgid "Select fields (at least one):" msgstr "Seleccione os campos (mínimo un)" -#: libraries/messages.inc.php:851 pdf_pages.php:320 +#: libraries/messages.inc.php:847 pdf_pages.php:320 msgid "Select Tables" msgstr "Seleccionar táboas" -#: libraries/messages.inc.php:853 server_status.php:404 +#: libraries/messages.inc.php:849 server_status.php:404 msgid "Sent" msgstr "Enviado" -#: libraries/messages.inc.php:857 libraries/select_server.lib.php:45 +#: libraries/messages.inc.php:853 libraries/select_server.lib.php:45 #: setup/frames/index.inc.php:97 setup/lib/messages.inc.php:115 msgid "Servers" msgstr "Servidores" -#: libraries/messages.inc.php:858 server_status.php:255 +#: libraries/messages.inc.php:854 server_status.php:255 msgid "Delayed inserts" msgstr "Insercións demoradas" -#: libraries/messages.inc.php:859 server_status.php:46 +#: libraries/messages.inc.php:855 server_status.php:46 msgid "Runtime Information" msgstr "Información sobre o tempo de execución" -#: libraries/messages.inc.php:860 server_status.php:350 +#: libraries/messages.inc.php:856 server_status.php:350 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Este servidor de MySQL leva funcionando %s. Iniciouse às %s." -#: libraries/messages.inc.php:861 libraries/server_links.inc.php:53 +#: libraries/messages.inc.php:857 libraries/server_links.inc.php:53 #: server_engines.php:112 server_engines.php:116 server_status.php:304 #: test/theme.php:105 msgid "Variables" msgstr "Variábeis" -#: libraries/messages.inc.php:862 server_status.php:383 +#: libraries/messages.inc.php:858 server_status.php:383 msgid "" "Server traffic: These tables show the network traffic statistics of " "this MySQL server since its startup." @@ -5271,11 +5271,11 @@ msgstr "" "Tráfico do servidor: Estas táboas mostran as estatísticas do tráfico " "da rede neste servidor de MySQL desde que se iniciou." -#: libraries/messages.inc.php:863 server_variables.php:35 +#: libraries/messages.inc.php:859 server_variables.php:35 msgid "Server variables and settings" msgstr "Variábeis e configuración do servidor" -#: libraries/messages.inc.php:865 main.php:290 +#: libraries/messages.inc.php:861 main.php:290 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -5287,7 +5287,7 @@ msgstr "" "das cookies que se configurou en phpMyAdmin; por causa disto, o rexistro " "caducará antes do que está configurado en phpMyAdmin." -#: libraries/messages.inc.php:866 +#: libraries/messages.inc.php:862 msgid "" "Cannot start session without errors, please check errors given in your PHP " "and/or webserver log file and configure your PHP installation properly." @@ -5296,11 +5296,11 @@ msgstr "" "ficheiro de rexistro do seu servidor de PHP ou web e configure a súa " "instalación PHP adecuadamente." -#: libraries/messages.inc.php:867 server_variables.php:55 +#: libraries/messages.inc.php:863 server_variables.php:55 msgid "Session value" msgstr "Valor da sesión" -#: libraries/messages.inc.php:868 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:864 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 " @@ -5312,45 +5312,45 @@ msgstr "" "ou aspas simples (\" ' \") entre estes valores, preceda a barra e as aspas " "de barras invertidas (por exemplo '\\\\xyz' ou 'a\\'b')." -#: libraries/messages.inc.php:876 server_binlog.php:192 server_binlog.php:195 +#: libraries/messages.inc.php:872 server_binlog.php:192 server_binlog.php:195 #: server_processlist.php:49 server_processlist.php:51 msgid "Show Full Queries" msgstr "Mostrar as procuras completas" -#: libraries/messages.inc.php:878 pmd_general.php:64 +#: libraries/messages.inc.php:874 pmd_general.php:64 msgid "Show/Hide left menu" msgstr "Mostrar/Agochar o menú esquerdo" -#: libraries/messages.inc.php:880 sql.php:513 +#: libraries/messages.inc.php:876 sql.php:513 msgid "Showing as PHP code" msgstr "Mostrar como código PHP" -#: libraries/messages.inc.php:882 sql.php:516 tbl_replace.php:360 +#: libraries/messages.inc.php:878 sql.php:516 tbl_replace.php:360 msgid "Showing SQL query" msgstr "Mostrar procura SQL" -#: libraries/messages.inc.php:883 tbl_change.php:1132 +#: libraries/messages.inc.php:879 tbl_change.php:1132 #, fuzzy msgid "Show insert query" msgstr "Mostrar procura SQL" -#: libraries/messages.inc.php:886 server_status.php:273 +#: libraries/messages.inc.php:882 server_status.php:273 msgid "Show open tables" msgstr "Mostrar as táboas abertas" -#: libraries/messages.inc.php:887 main.php:219 +#: libraries/messages.inc.php:883 main.php:219 msgid "Show PHP information" msgstr "Mostrar información sobre o PHP" -#: libraries/messages.inc.php:889 server_status.php:278 +#: libraries/messages.inc.php:885 server_status.php:278 msgid "Show slave hosts" msgstr "Mostrar os servidores escravos" -#: libraries/messages.inc.php:890 server_status.php:284 +#: libraries/messages.inc.php:886 server_status.php:284 msgid "Show slave status" msgstr "Mostrar o estado dos escravos" -#: libraries/messages.inc.php:891 +#: libraries/messages.inc.php:887 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -5360,11 +5360,11 @@ msgstr "" "excederon o valor de binlog_cache_size e utilizaron un ficheiro temporal " "para almacenar instrucións para a transacción." -#: libraries/messages.inc.php:892 +#: libraries/messages.inc.php:888 msgid "The number of transactions that used the temporary binary log cache." msgstr "Número de transaccións que utilizaron o caché do rexistro binario." -#: libraries/messages.inc.php:893 +#: libraries/messages.inc.php:889 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -5376,11 +5376,11 @@ msgstr "" "incremente o valor de tmp_table_size para que as táboas temporais se baseen " "na memoria en vez de no disco." -#: libraries/messages.inc.php:894 +#: libraries/messages.inc.php:890 msgid "How many temporary files mysqld has created." msgstr "Número de ficheiros temporais creados por mysqld." -#: libraries/messages.inc.php:895 +#: libraries/messages.inc.php:891 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -5388,7 +5388,7 @@ msgstr "" "Número de táboas temporais na memoria creadas automaticamente polo servidor " "ao executar instrucións." -#: libraries/messages.inc.php:896 +#: libraries/messages.inc.php:892 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -5396,7 +5396,7 @@ msgstr "" "Número de fileiras escritas con INSERT DELAYED que sofriron algún erro " "(probabelmente unha chave duplicada)." -#: libraries/messages.inc.php:897 +#: libraries/messages.inc.php:893 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -5404,23 +5404,23 @@ msgstr "" "Número de fíos de manipulación INSERT DELAYED en uso. Cada táboa diferente " "na que se utiliza INSERT DELAYED recibe o seu propio fío." -#: libraries/messages.inc.php:898 +#: libraries/messages.inc.php:894 msgid "The number of INSERT DELAYED rows written." msgstr "Número de fileiras INSERT DELAYED escritas." -#: libraries/messages.inc.php:899 +#: libraries/messages.inc.php:895 msgid "The number of executed FLUSH statements." msgstr "Número de instrucións FLUSH executadas." -#: libraries/messages.inc.php:900 +#: libraries/messages.inc.php:896 msgid "The number of internal COMMIT statements." msgstr "Número de instrucións COMMIT internas." -#: libraries/messages.inc.php:901 +#: libraries/messages.inc.php:897 msgid "The number of times a row was deleted from a table." msgstr "Número de veces que se eliminou unha fileira dunha táboa." -#: libraries/messages.inc.php:902 +#: libraries/messages.inc.php:898 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -5430,7 +5430,7 @@ msgstr "" "se sabe dunha táboa cun nome dado. Isto chámase descuberta. " "Handler_discovery indica o número de veces que se descobriron táboas." -#: libraries/messages.inc.php:903 +#: libraries/messages.inc.php:899 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -5441,7 +5441,7 @@ msgstr "" "completos; por exemplo, SELECT col FROM algo, supoñendo que col estea " "indexada." -#: libraries/messages.inc.php:904 +#: libraries/messages.inc.php:900 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -5449,7 +5449,7 @@ msgstr "" "Número de peticións para ler unha fileira baseadas nunha chave. Se for alto, " "é unha boa indicación de que as procuras e táboas están ben indexadas." -#: libraries/messages.inc.php:905 +#: libraries/messages.inc.php:901 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -5459,7 +5459,7 @@ msgstr "" "increméntase se está a procurar unha columna de índice cunha limitación de " "intervalo ou se está a examinar un índice." -#: libraries/messages.inc.php:906 +#: libraries/messages.inc.php:902 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -5467,7 +5467,7 @@ msgstr "" "Número de peticións para ler a fileira anterior na orde da chave. Este " "método de lectura utilízase sobre todo para optimizar ORDER BY ... DESC." -#: libraries/messages.inc.php:907 +#: libraries/messages.inc.php:903 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -5479,7 +5479,7 @@ msgstr "" "Posibelmente terá un monte de procuras que esixan que MySQL examine táboas " "completas ou ten unións que non usan as chaves axeitadamente." -#: libraries/messages.inc.php:908 +#: libraries/messages.inc.php:904 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -5491,35 +5491,35 @@ msgstr "" "táboas non están indexadas axeitadamente ou que as súas procuras non están " "escritas para aproveitar os índices de que dispón." -#: libraries/messages.inc.php:909 +#: libraries/messages.inc.php:905 msgid "The number of internal ROLLBACK statements." msgstr "Número de instrucións de ROLLBACK (\"desfacer\") interno." -#: libraries/messages.inc.php:910 +#: libraries/messages.inc.php:906 msgid "The number of requests to update a row in a table." msgstr "Número de peticións para actualizar unha fileira nunha táboa." -#: libraries/messages.inc.php:911 +#: libraries/messages.inc.php:907 msgid "The number of requests to insert a row in a table." msgstr "Número de peticións para inserir un ficheiro nunha táboa." -#: libraries/messages.inc.php:912 +#: libraries/messages.inc.php:908 msgid "The number of pages containing data (dirty or clean)." msgstr "Número de páxinas que conteñen datos (suxos ou limpos)." -#: libraries/messages.inc.php:913 +#: libraries/messages.inc.php:909 msgid "The number of pages currently dirty." msgstr "Número de páxinas actualmente suxas." -#: libraries/messages.inc.php:914 +#: libraries/messages.inc.php:910 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Número de páxinas do búfer que se pediu que se limpasen." -#: libraries/messages.inc.php:915 +#: libraries/messages.inc.php:911 msgid "The number of free pages." msgstr "Número de páxinas libres." -#: libraries/messages.inc.php:916 +#: libraries/messages.inc.php:912 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -5529,7 +5529,7 @@ msgstr "" "actualmente a ser lidas ou escritas ou non se poden limpar ou eliminar por " "algunha outra razón." -#: libraries/messages.inc.php:917 +#: libraries/messages.inc.php:913 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -5541,11 +5541,11 @@ msgstr "" "se pode calcular así: Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: libraries/messages.inc.php:918 +#: libraries/messages.inc.php:914 msgid "Total size of buffer pool, in pages." msgstr "Tamaño total do búfer, en páxinas." -#: libraries/messages.inc.php:919 +#: libraries/messages.inc.php:915 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -5554,7 +5554,7 @@ msgstr "" "cando unha procura vai examinar unha porción grande dunha táboa mais en orde " "aleatoria." -#: libraries/messages.inc.php:920 +#: libraries/messages.inc.php:916 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -5562,11 +5562,11 @@ msgstr "" "Número de pre-lecturas secuenciais iniciadas por innoDB. Isto acontece cando " "InnoDB realiza un exame secuencial completo dunha táboa." -#: libraries/messages.inc.php:921 +#: libraries/messages.inc.php:917 msgid "The number of logical read requests InnoDB has done." msgstr "Número de peticións de lectura lóxicas feitas por InnoDB." -#: libraries/messages.inc.php:922 +#: libraries/messages.inc.php:918 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -5574,7 +5574,7 @@ msgstr "" "Número de lecturas lóxicas que InnoDB non puido satisfacer do búfer e tivo " "que efectuar por medio de lecturas dunha única páxina." -#: libraries/messages.inc.php:923 +#: libraries/messages.inc.php:919 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -5588,55 +5588,55 @@ msgstr "" "que esperar. Se o tamaño do búfer é o axeitado, este valor debería ser " "pequeno." -#: libraries/messages.inc.php:924 +#: libraries/messages.inc.php:920 msgid "The number writes done to the InnoDB buffer pool." msgstr "Número de veces que se escribiu no búfer InnoDB." -#: libraries/messages.inc.php:925 +#: libraries/messages.inc.php:921 msgid "The number of fsync() operations so far." msgstr "Número de operacións fsync() até o momento." -#: libraries/messages.inc.php:926 +#: libraries/messages.inc.php:922 msgid "The current number of pending fsync() operations." msgstr "Número actual de operacións fsync() pendentes." -#: libraries/messages.inc.php:927 +#: libraries/messages.inc.php:923 msgid "The current number of pending reads." msgstr "Número actual de lecturas pendentes." -#: libraries/messages.inc.php:928 +#: libraries/messages.inc.php:924 msgid "The current number of pending writes." msgstr "Número actual de escritas pendentes." -#: libraries/messages.inc.php:929 +#: libraries/messages.inc.php:925 msgid "The amount of data read so far, in bytes." msgstr "Cantidade de datos lida até o momento, en bytes." -#: libraries/messages.inc.php:930 +#: libraries/messages.inc.php:926 msgid "The total number of data reads." msgstr "Número total de lecturas de datos." -#: libraries/messages.inc.php:931 +#: libraries/messages.inc.php:927 msgid "The total number of data writes." msgstr "Número total de escritas de datos." -#: libraries/messages.inc.php:932 +#: libraries/messages.inc.php:928 msgid "The amount of data written so far, in bytes." msgstr "Cantidade de datos escrita até o momento, en bytes." -#: libraries/messages.inc.php:933 +#: libraries/messages.inc.php:929 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Número de escritas duplas realizadas e número de páxinas escritas con este " "propósito." -#: libraries/messages.inc.php:934 +#: libraries/messages.inc.php:930 msgid "The number of doublewrite operations that have been performed." msgstr "" "Número de escritas duplas realizadas e número de páxinas escritas con este " "propósito." -#: libraries/messages.inc.php:935 +#: libraries/messages.inc.php:931 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -5644,35 +5644,35 @@ msgstr "" "Número de esperas debidas a que o búfer do rexistro é demasiado pequeno e " "houbo que agardar até que se limpase para continuar." -#: libraries/messages.inc.php:936 +#: libraries/messages.inc.php:932 msgid "The number of log write requests." msgstr "Número de peticións de escrita no rexistro." -#: libraries/messages.inc.php:937 +#: libraries/messages.inc.php:933 msgid "The number of physical writes to the log file." msgstr "Número de escritas físicas no ficheiro de rexistro." -#: libraries/messages.inc.php:938 +#: libraries/messages.inc.php:934 msgid "The number of fsync() writes done to the log file." msgstr "Número de escritas fsyncss feitas no ficheiro de rexistro." -#: libraries/messages.inc.php:939 +#: libraries/messages.inc.php:935 msgid "The number of pending log file fsyncs." msgstr "Número de fsyncs do ficheiro de rexistro pendentes." -#: libraries/messages.inc.php:940 +#: libraries/messages.inc.php:936 msgid "Pending log file writes." msgstr "Escritas no ficheiro de rexistro pendentes." -#: libraries/messages.inc.php:941 +#: libraries/messages.inc.php:937 msgid "The number of bytes written to the log file." msgstr "Número de bytes escritos no ficheiro de rexistro." -#: libraries/messages.inc.php:942 +#: libraries/messages.inc.php:938 msgid "The number of pages created." msgstr "Número de páxinas creadas." -#: libraries/messages.inc.php:943 +#: libraries/messages.inc.php:939 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -5681,55 +5681,55 @@ msgstr "" "cóntanse en páxinas: o tamaño da páxina permite que se convirtan doadamente " "en bytes." -#: libraries/messages.inc.php:944 +#: libraries/messages.inc.php:940 msgid "The number of pages read." msgstr "Número de páxinas lidas." -#: libraries/messages.inc.php:945 +#: libraries/messages.inc.php:941 msgid "The number of pages written." msgstr "Número de páxinas escritas." -#: libraries/messages.inc.php:946 +#: libraries/messages.inc.php:942 msgid "The number of row locks currently being waited for." msgstr "Número de bloqueo de fileiras polos que se está a agardar agora mesmo." -#: libraries/messages.inc.php:947 +#: libraries/messages.inc.php:943 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" "Tempo que, de media, leva adquirir un bloqueo sobre unha fileira, en " "milisegundos." -#: libraries/messages.inc.php:948 +#: libraries/messages.inc.php:944 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" "Tempo total empregado na adquisición de bloqueos sobre as fileiras, en " "milisegundos." -#: libraries/messages.inc.php:949 +#: libraries/messages.inc.php:945 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Tempo máximo en adquirir un bloqueo de fileira, en milisegundos." -#: libraries/messages.inc.php:950 +#: libraries/messages.inc.php:946 msgid "The number of times a row lock had to be waited for." msgstr "Número de veces que houbo que agardar polo bloqueo dunha fileira." -#: libraries/messages.inc.php:951 +#: libraries/messages.inc.php:947 msgid "The number of rows deleted from InnoDB tables." msgstr "Número de fileiras eliminadas das táboas InnoDB." -#: libraries/messages.inc.php:952 +#: libraries/messages.inc.php:948 msgid "The number of rows inserted in InnoDB tables." msgstr "Número de fileiras inseridas nas táboas InnoDB." -#: libraries/messages.inc.php:953 +#: libraries/messages.inc.php:949 msgid "The number of rows read from InnoDB tables." msgstr "Número de fileiras lidas das táboas InnoDB." -#: libraries/messages.inc.php:954 +#: libraries/messages.inc.php:950 msgid "The number of rows updated in InnoDB tables." msgstr "Número de fileiras actualizadas en táboas InnoDB." -#: libraries/messages.inc.php:955 +#: libraries/messages.inc.php:951 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -5737,7 +5737,7 @@ msgstr "" "Número de bloques chave na caché de chaves que se mudaron mais que aínda non " "se limparon para o disco. Antes era Not_flushed_key_blocks." -#: libraries/messages.inc.php:956 +#: libraries/messages.inc.php:952 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -5745,7 +5745,7 @@ msgstr "" "Número de bloques sen utilizar na caché de chaves. Pode utilizar este valor " "para determinar canta caché de chave está en uso." -#: libraries/messages.inc.php:957 +#: libraries/messages.inc.php:953 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -5755,11 +5755,11 @@ msgstr "" "referencia superior que indica o número máximo de bloques que se teñen " "empregado." -#: libraries/messages.inc.php:958 +#: libraries/messages.inc.php:954 msgid "The number of requests to read a key block from the cache." msgstr "Número de peticións para ler un bloque chave da caché." -#: libraries/messages.inc.php:959 +#: libraries/messages.inc.php:955 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -5769,15 +5769,15 @@ msgstr "" "grande, é que, posiblemente, o valor de key_fuffer_size é demasiado baixo. A " "relación de perdas da caché pódese calcular así: Key_reads/Key_read_requests." -#: libraries/messages.inc.php:960 +#: libraries/messages.inc.php:956 msgid "The number of requests to write a key block to the cache." msgstr "Número de peticións para escribir un bloque chave na caché." -#: libraries/messages.inc.php:961 +#: libraries/messages.inc.php:957 msgid "The number of physical writes of a key block to disk." msgstr "Número de escritas físicas dun bloque chave no disco." -#: libraries/messages.inc.php:962 +#: libraries/messages.inc.php:958 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -5788,13 +5788,13 @@ msgstr "" "procura diferentes para a mesma pesquisa. O valor por omisión é 0, que " "significa que aínda non se compilou ningunha procura." -#: libraries/messages.inc.php:963 +#: libraries/messages.inc.php:959 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" "Número de procuras que están a agardar para seren escritas nas fileiras " "INSERT DELAYED." -#: libraries/messages.inc.php:964 +#: libraries/messages.inc.php:960 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -5802,35 +5802,35 @@ msgstr "" "Número de táboas abertas en total. Se a cantidade é grande, o valor da caché " "de táboas posibelmente é demasiado pequeno." -#: libraries/messages.inc.php:965 +#: libraries/messages.inc.php:961 msgid "The number of files that are open." msgstr "Número de ficheiros abertos." -#: libraries/messages.inc.php:966 +#: libraries/messages.inc.php:962 msgid "The number of streams that are open (used mainly for logging)." msgstr "Número de fluxos abertos (utilizado principalmente para o rexistro)." -#: libraries/messages.inc.php:967 +#: libraries/messages.inc.php:963 msgid "The number of tables that are open." msgstr "Número de táboas abertas." -#: libraries/messages.inc.php:968 +#: libraries/messages.inc.php:964 msgid "The number of free memory blocks in query cache." msgstr "Número de bloques de memoria libres na caché de procuras." -#: libraries/messages.inc.php:969 +#: libraries/messages.inc.php:965 msgid "The amount of free memory for query cache." msgstr "Cantidade de memoria libre para a caché de procuras." -#: libraries/messages.inc.php:970 +#: libraries/messages.inc.php:966 msgid "The number of cache hits." msgstr "Número de impactos na caché." -#: libraries/messages.inc.php:971 +#: libraries/messages.inc.php:967 msgid "The number of queries added to the cache." msgstr "Número de procuras adicionadas na caché." -#: libraries/messages.inc.php:972 +#: libraries/messages.inc.php:968 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -5842,7 +5842,7 @@ msgstr "" "caché de procuras. A caché de procuras utiliza unha estratexia de utilizado " "menos recentemente (LRU) para decidir que procuras debe eliminar da caché." -#: libraries/messages.inc.php:973 +#: libraries/messages.inc.php:969 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -5850,24 +5850,24 @@ msgstr "" "Número de procuras non enviadas á caché (que non se poden enviar debido á " "configuración de query_cache_type)." -#: libraries/messages.inc.php:974 +#: libraries/messages.inc.php:970 msgid "The number of queries registered in the cache." msgstr "Número de procuras rexistradas na caché." -#: libraries/messages.inc.php:975 +#: libraries/messages.inc.php:971 msgid "The total number of blocks in the query cache." msgstr "Número total de bloques na caché de procuras." -#: libraries/messages.inc.php:976 +#: libraries/messages.inc.php:972 msgctxt "$strShowStatusReset" msgid "Reset" msgstr "Reiniciar" -#: libraries/messages.inc.php:977 +#: libraries/messages.inc.php:973 msgid "The status of failsafe replication (not yet implemented)." msgstr "Estado da replicación en modo seguro (aínda non realizado)." -#: libraries/messages.inc.php:978 +#: libraries/messages.inc.php:974 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -5875,13 +5875,13 @@ msgstr "" "Número de unións que non utilizan índices. Se este valor non for 0, debería " "comprobar con atención os índices das táboas." -#: libraries/messages.inc.php:979 +#: libraries/messages.inc.php:975 msgid "The number of joins that used a range search on a reference table." msgstr "" "Número de unións que utilizaron un intervalo de procura nunha táboa de " "referencia." -#: libraries/messages.inc.php:980 +#: libraries/messages.inc.php:976 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -5890,7 +5890,7 @@ msgstr "" "cada fileira (se non for 0, debería comprobar con atención os índices das " "táboas)." -#: libraries/messages.inc.php:981 +#: libraries/messages.inc.php:977 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -5898,15 +5898,15 @@ msgstr "" "Número de unións que utilizaron intervalos na primeira táboa (Normalmente " "non é grave, mesmo de ser grande)" -#: libraries/messages.inc.php:982 +#: libraries/messages.inc.php:978 msgid "The number of joins that did a full scan of the first table." msgstr "Número de unións que realizaron un exame completo da primeira táboa." -#: libraries/messages.inc.php:983 +#: libraries/messages.inc.php:979 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "Número de táboas temporais abertas actualmente polo fío SQL escravo." -#: libraries/messages.inc.php:984 +#: libraries/messages.inc.php:980 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -5914,11 +5914,11 @@ msgstr "" "Número total de veces (desde o inicio) que o fío de replicación SQL escravo " "reintentou as transaccións." -#: libraries/messages.inc.php:985 +#: libraries/messages.inc.php:981 msgid "This is ON if this server is a slave that is connected to a master." msgstr "Isto está ON se este servidor é un escravo conectado a un máster." -#: libraries/messages.inc.php:986 +#: libraries/messages.inc.php:982 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -5926,14 +5926,14 @@ msgstr "" "Número de fíos aos que lles levou crearse máis segundos dos indicados en " "slow_launch_time." -#: libraries/messages.inc.php:987 +#: libraries/messages.inc.php:983 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "Número de procuras ás que lles levou máis segundos dos indicados en " "long_query_time." -#: libraries/messages.inc.php:988 +#: libraries/messages.inc.php:984 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -5943,23 +5943,23 @@ msgstr "" "este valor for grande, sería ben que considerase incrementar o valor da " "variábel de sistema sort_buffer_size." -#: libraries/messages.inc.php:989 +#: libraries/messages.inc.php:985 msgid "The number of sorts that were done with ranges." msgstr "Número de ordenacións feitas con intervalos." -#: libraries/messages.inc.php:990 +#: libraries/messages.inc.php:986 msgid "The number of sorted rows." msgstr "Número de fileiras ordenadas." -#: libraries/messages.inc.php:991 +#: libraries/messages.inc.php:987 msgid "The number of sorts that were done by scanning the table." msgstr "Número de ordenacións realizadas examinando a táboa." -#: libraries/messages.inc.php:992 +#: libraries/messages.inc.php:988 msgid "The number of times that a table lock was acquired immediately." msgstr "Número de veces que se adquiriu inmediatamente un bloqueo de táboa." -#: libraries/messages.inc.php:993 +#: libraries/messages.inc.php:989 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -5971,7 +5971,7 @@ msgstr "" "debería en primeiro lugar mellorar as procuras e despois, ora partir a táboa " "ou táboas, ora utilizar replicación." -#: libraries/messages.inc.php:994 +#: libraries/messages.inc.php:990 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -5981,11 +5981,11 @@ msgstr "" "calcular como Threads_created/Connections. Se este valor for vermello, " "debería aumentar a thread_cache_size." -#: libraries/messages.inc.php:995 +#: libraries/messages.inc.php:991 msgid "The number of currently open connections." msgstr "Número de conexións abertas neste momento." -#: libraries/messages.inc.php:996 +#: libraries/messages.inc.php:992 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -5997,28 +5997,28 @@ msgstr "" "non fornece unha mellora notábel no desempeño se ten unha boa implementación " "de fíos.)" -#: libraries/messages.inc.php:997 +#: libraries/messages.inc.php:993 msgid "The number of threads that are not sleeping." msgstr "Número de fíos que non están a durmir." -#: libraries/messages.inc.php:999 tbl_printview.php:75 +#: libraries/messages.inc.php:995 tbl_printview.php:75 msgid "Show tables" msgstr "Mostrar as táboas" -#: libraries/messages.inc.php:1000 libraries/sql_query_form.lib.php:396 +#: libraries/messages.inc.php:996 libraries/sql_query_form.lib.php:396 msgid " Show this query here again " msgstr " Mostrar esta procura aquí outra vez " -#: libraries/messages.inc.php:1001 libraries/mysql_charsets.lib.php:217 +#: libraries/messages.inc.php:997 libraries/mysql_charsets.lib.php:217 #: libraries/mysql_charsets.lib.php:342 msgid "Simplified Chinese" msgstr "Chinés simplificado" -#: libraries/messages.inc.php:1002 tbl_operations.php:258 +#: libraries/messages.inc.php:998 tbl_operations.php:258 msgid "(singly)" msgstr "a refacer logo de insercións e destrucións (shingly)" -#: libraries/messages.inc.php:1005 libraries/replication_gui.lib.php:52 +#: libraries/messages.inc.php:1001 libraries/replication_gui.lib.php:52 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" @@ -6027,47 +6027,47 @@ msgstr "" "configuración (my.cnf). De non ser o caso, engada a liña seguinte na sección " "[mysqld]:" -#: libraries/messages.inc.php:1006 libraries/mysql_charsets.lib.php:283 +#: libraries/messages.inc.php:1002 libraries/mysql_charsets.lib.php:283 msgid "Slovak" msgstr "Eslovaco" -#: libraries/messages.inc.php:1007 libraries/mysql_charsets.lib.php:286 +#: libraries/messages.inc.php:1003 libraries/mysql_charsets.lib.php:286 msgid "Slovenian" msgstr "Esloveno" -#: libraries/messages.inc.php:1008 pmd_general.php:95 +#: libraries/messages.inc.php:1004 pmd_general.php:95 msgid "Small/Big All" msgstr "Todo grande/pequeno" -#: libraries/messages.inc.php:1009 pmd_general.php:91 +#: libraries/messages.inc.php:1005 pmd_general.php:91 msgid "Snap to grid" msgstr "Axustar á grella" -#: libraries/messages.inc.php:1011 server_synchronize.php:1167 +#: libraries/messages.inc.php:1007 server_synchronize.php:1167 msgid "Socket" msgstr "Socket" -#: libraries/messages.inc.php:1013 server_status.php:259 +#: libraries/messages.inc.php:1009 server_status.php:259 msgid "Sorting" msgstr "Ordenación" -#: libraries/messages.inc.php:1015 tbl_printview.php:310 tbl_structure.php:657 +#: libraries/messages.inc.php:1011 tbl_printview.php:310 tbl_structure.php:657 msgid "Space usage" msgstr "Uso do espazo" -#: libraries/messages.inc.php:1016 libraries/mysql_charsets.lib.php:289 +#: libraries/messages.inc.php:1012 libraries/mysql_charsets.lib.php:289 msgid "Spanish" msgstr "Español" -#: libraries/messages.inc.php:1019 +#: libraries/messages.inc.php:1015 msgid "Export type" msgstr "Tipo de exportación" -#: libraries/messages.inc.php:1020 +#: libraries/messages.inc.php:1016 msgid "Export time in UTC" msgstr "" -#: libraries/messages.inc.php:1021 libraries/sqlparser.lib.php:173 +#: libraries/messages.inc.php:1017 libraries/sqlparser.lib.php:173 msgid "" "There is a chance that you may have found a bug in the SQL parser. Please " "examine your query closely, and check that the quotes are correct and not " @@ -6090,7 +6090,7 @@ msgstr "" "pesquisa à parte concreta que produce o erro e envíe unha mensaxe de erro co " "texto da sección RECORTE que aparece a continuación:" -#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:137 +#: libraries/messages.inc.php:1018 libraries/sqlparser.lib.php:137 msgid "" "There seems to be an error in your SQL query. The MySQL server error output " "below, if there is any, may also help you in diagnosing the problem" @@ -6099,32 +6099,32 @@ msgstr "" "unha mensaxe de erro do servidor de MySQL, isto pode axudar a diagnosticar o " "problema" -#: libraries/messages.inc.php:1026 libraries/sqlparser.lib.php:495 +#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:495 msgid "Invalid Identifer" msgstr "O identificador non é válido" -#: libraries/messages.inc.php:1027 libraries/sqlparser.lib.php:344 +#: libraries/messages.inc.php:1023 libraries/sqlparser.lib.php:344 msgid "Unclosed quote" msgstr "Falta pór a aspa final" -#: libraries/messages.inc.php:1028 libraries/sqlparser.lib.php:612 +#: libraries/messages.inc.php:1024 libraries/sqlparser.lib.php:612 msgid "Unknown Punctuation String" msgstr "Hai unha secuencia de puntuación que resulta descoñecida" -#: libraries/messages.inc.php:1030 server_replication.php:327 +#: libraries/messages.inc.php:1026 server_replication.php:327 #: server_replication.php:328 msgid "Start" msgstr "Inicio" -#: libraries/messages.inc.php:1033 tbl_printview.php:369 tbl_structure.php:729 +#: libraries/messages.inc.php:1029 tbl_printview.php:369 tbl_structure.php:729 msgid "Statements" msgstr "Informacións" -#: libraries/messages.inc.php:1034 tbl_printview.php:380 tbl_structure.php:741 +#: libraries/messages.inc.php:1030 tbl_printview.php:380 tbl_structure.php:741 msgid "static" msgstr "estático" -#: libraries/messages.inc.php:1035 server_status.php:388 +#: libraries/messages.inc.php:1031 server_status.php:388 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -6133,42 +6133,42 @@ msgstr "" "que esas estatísticas, tal e como as transmite o servidor de MySQL, poden " "resultar incorrectas." -#: libraries/messages.inc.php:1038 server_replication.php:327 +#: libraries/messages.inc.php:1034 server_replication.php:327 #: server_replication.php:328 msgid "Stop" msgstr "Detención" -#: libraries/messages.inc.php:1039 server_engines.php:49 +#: libraries/messages.inc.php:1035 server_engines.php:49 msgid "Storage Engines" msgstr "Motores de almacenamento" -#: libraries/messages.inc.php:1040 libraries/tbl_properties.inc.php:726 +#: libraries/messages.inc.php:1036 libraries/tbl_properties.inc.php:726 #: server_engines.php:58 tbl_operations.php:353 msgid "Storage Engine" msgstr "Motor de almacenamento" -#: libraries/messages.inc.php:1042 +#: libraries/messages.inc.php:1038 msgid "CSV for MS Excel" msgstr "CSV (para datos de MS Excel)" -#: libraries/messages.inc.php:1044 tbl_structure.php:516 tbl_structure.php:518 +#: libraries/messages.inc.php:1040 tbl_structure.php:516 tbl_structure.php:518 msgid "Propose table structure" msgstr "Propor unha estrutura para a táboa" -#: libraries/messages.inc.php:1045 server_synchronize.php:424 +#: libraries/messages.inc.php:1041 server_synchronize.php:424 #: server_synchronize.php:867 msgid "Structure Difference" msgstr "Diferenza da estrutura" -#: libraries/messages.inc.php:1049 server_synchronize.php:265 +#: libraries/messages.inc.php:1045 server_synchronize.php:265 msgid "Structure Synchronization" msgstr "Sincronización da estrutura" -#: libraries/messages.inc.php:1050 libraries/sql_query_form.lib.php:462 +#: libraries/messages.inc.php:1046 libraries/sql_query_form.lib.php:462 msgid "Submit" msgstr "Enviar" -#: libraries/messages.inc.php:1052 main.php:358 +#: libraries/messages.inc.php:1048 main.php:358 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -6177,16 +6177,16 @@ msgstr "" "Servidor a executarse con Suhosin. Consulte os posíbeis problemas na %" "sdocumentation%s." -#: libraries/messages.inc.php:1054 libraries/mysql_charsets.lib.php:295 +#: libraries/messages.inc.php:1050 libraries/mysql_charsets.lib.php:295 #: libraries/mysql_charsets.lib.php:392 msgid "Swedish" msgstr "Sueco" -#: libraries/messages.inc.php:1060 tbl_operations.php:556 +#: libraries/messages.inc.php:1056 tbl_operations.php:556 msgid "Switch to copied table" msgstr "Ir à táboa copiada" -#: libraries/messages.inc.php:1061 server_synchronize.php:1213 +#: libraries/messages.inc.php:1057 server_synchronize.php:1213 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -6194,147 +6194,147 @@ msgstr "" "A base de datos de destino sincronizarase completamente coa base de datos de " "orixe. A base de datos de orixe ficará sen alteracións." -#: libraries/messages.inc.php:1062 server_synchronize.php:451 +#: libraries/messages.inc.php:1058 server_synchronize.php:451 #: server_synchronize.php:896 msgid "Synchronize Databases" msgstr "Sincronizar as bases de datos" -#: libraries/messages.inc.php:1063 libraries/server_links.inc.php:92 +#: libraries/messages.inc.php:1059 libraries/server_links.inc.php:92 #: server_synchronize.php:1092 server_synchronize.php:1100 msgid "Synchronize" msgstr "Sincronizar" -#: libraries/messages.inc.php:1065 server_synchronize.php:430 +#: libraries/messages.inc.php:1061 server_synchronize.php:430 #: server_synchronize.php:873 msgid "Add column(s)" msgstr "Engadir columna(s)" -#: libraries/messages.inc.php:1066 tbl_create.php:62 +#: libraries/messages.inc.php:1062 tbl_create.php:62 #, php-format msgid "Table %s already exists!" msgstr "Xa existe a táboa %s!!" -#: libraries/messages.inc.php:1067 server_synchronize.php:432 +#: libraries/messages.inc.php:1063 server_synchronize.php:432 #: server_synchronize.php:875 msgid "Alter column(s)" msgstr "Alterar columna(s)" -#: libraries/messages.inc.php:1068 tbl_addfield.php:189 tbl_alter.php:103 +#: libraries/messages.inc.php:1064 tbl_addfield.php:189 tbl_alter.php:103 #: tbl_indexes.php:98 #, php-format msgid "Table %1$s has been altered successfully" msgstr "Alterouse a táboa %1$s sen problemas" -#: libraries/messages.inc.php:1069 server_synchronize.php:434 +#: libraries/messages.inc.php:1065 server_synchronize.php:434 #: server_synchronize.php:877 msgid "Apply index(s)" msgstr "Aplicar índice(s)" -#: libraries/messages.inc.php:1071 server_synchronize.php:446 +#: libraries/messages.inc.php:1067 server_synchronize.php:446 #: server_synchronize.php:890 msgid "Would you like to delete all the previous rows from target tables?" msgstr "Quere eliminar todas as fileiras anteriores das táboas de destino?" -#: libraries/messages.inc.php:1072 tbl_move_copy.php:82 +#: libraries/messages.inc.php:1068 tbl_move_copy.php:82 msgid "The table name is empty!" msgstr "O nome da táboa está vacío!" -#: libraries/messages.inc.php:1073 tbl_create.php:249 +#: libraries/messages.inc.php:1069 tbl_create.php:249 #, php-format msgid "Table %1$s has been created." msgstr "Creouse a táboa %1$s." -#: libraries/messages.inc.php:1076 tbl_operations.php:628 +#: libraries/messages.inc.php:1072 tbl_operations.php:628 #, php-format msgid "Table %s has been flushed" msgstr "Fechouse a táboa %s" -#: libraries/messages.inc.php:1077 server_synchronize.php:436 +#: libraries/messages.inc.php:1073 server_synchronize.php:436 #: server_synchronize.php:879 msgid "Insert row(s)" msgstr "Inserir fileira(s)" -#: libraries/messages.inc.php:1078 libraries/tbl_links.inc.php:107 +#: libraries/messages.inc.php:1074 libraries/tbl_links.inc.php:107 #: libraries/tbl_links.inc.php:140 libraries/tbl_links.inc.php:141 msgid "Table seems to be empty!" msgstr "Parece ser que a táboa está baleira!" -#: libraries/messages.inc.php:1079 tbl_operations.php:568 +#: libraries/messages.inc.php:1075 tbl_operations.php:568 msgid "Table maintenance" msgstr "Táboa de mantemento" -#: libraries/messages.inc.php:1080 libraries/tbl_properties.inc.php:618 +#: libraries/messages.inc.php:1076 libraries/tbl_properties.inc.php:618 #: server_synchronize.php:428 server_synchronize.php:871 msgid "Table name" msgstr "Nome da táboa" -#: libraries/messages.inc.php:1081 pdf_schema.php:1116 +#: libraries/messages.inc.php:1077 pdf_schema.php:1116 msgid "Table of contents" msgstr "Índice" -#: libraries/messages.inc.php:1082 tbl_operations.php:334 +#: libraries/messages.inc.php:1078 tbl_operations.php:334 msgid "Table options" msgstr "Opcións da táboa" -#: libraries/messages.inc.php:1083 server_synchronize.php:431 +#: libraries/messages.inc.php:1079 server_synchronize.php:431 #: server_synchronize.php:874 msgid "Remove column(s)" msgstr "Eliminar columna(s)" -#: libraries/messages.inc.php:1084 server_synchronize.php:433 +#: libraries/messages.inc.php:1080 server_synchronize.php:433 #: server_synchronize.php:876 msgid "Remove index(s)" msgstr "Eliminar índice(s)" -#: libraries/messages.inc.php:1088 server_synchronize.php:435 +#: libraries/messages.inc.php:1084 server_synchronize.php:435 #: server_synchronize.php:878 msgid "Update row(s)" msgstr "Actualizar fileira(s)" -#: libraries/messages.inc.php:1090 server_synchronize.php:942 +#: libraries/messages.inc.php:1086 server_synchronize.php:942 #, fuzzy msgid "Target database has been synchronized with source database" msgstr "" "Sincronizáronse as táboas de destino seleccionadas coas táboas de orixe." -#: libraries/messages.inc.php:1091 server_privileges.php:392 +#: libraries/messages.inc.php:1087 server_privileges.php:392 #: server_privileges.php:527 server_privileges.php:1679 #: server_privileges.php:1685 msgid "Table-specific privileges" msgstr "Privilexios propios de táboa" -#: libraries/messages.inc.php:1092 server_status.php:254 +#: libraries/messages.inc.php:1088 server_status.php:254 msgid "Temporary data" msgstr "Datos temporais" -#: libraries/messages.inc.php:1093 tbl_change.php:728 +#: libraries/messages.inc.php:1089 tbl_change.php:728 msgid " Because of its length,
this field might not be editable " msgstr " Por causa da sua lonxitude,
este campo pode non ser editábel " -#: libraries/messages.inc.php:1094 +#: libraries/messages.inc.php:1090 msgid "Texy! text" msgstr "Texto para Texy!" -#: libraries/messages.inc.php:1095 libraries/mysql_charsets.lib.php:298 +#: libraries/messages.inc.php:1091 libraries/mysql_charsets.lib.php:298 #: libraries/mysql_charsets.lib.php:395 msgid "Thai" msgstr "Tailandés" -#: libraries/messages.inc.php:1102 libraries/replication_gui.lib.php:308 +#: libraries/messages.inc.php:1098 libraries/replication_gui.lib.php:308 #: server_privileges.php:734 msgid "This Host" msgstr "Este servidor" -#: libraries/messages.inc.php:1103 server_status.php:252 +#: libraries/messages.inc.php:1099 server_status.php:252 msgid "Threads" msgstr "Fíos" -#: libraries/messages.inc.php:1104 server_processlist.php:22 +#: libraries/messages.inc.php:1100 server_processlist.php:22 #, php-format msgid "Thread %s was successfully killed." msgstr "Finalizouse o fío %s." -#: libraries/messages.inc.php:1106 +#: libraries/messages.inc.php:1102 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -6343,181 +6343,181 @@ msgstr "" "normalmente significa que o phpMyAdmin non poderá rematar esta importación a " "non ser que lle incrementen os limites de tempo de php." -#: libraries/messages.inc.php:1109 pmd_pdf.php:94 +#: libraries/messages.inc.php:1105 pmd_pdf.php:94 msgid "to/from page" msgstr "até/desde a páxina" -#: libraries/messages.inc.php:1110 pdf_pages.php:343 +#: libraries/messages.inc.php:1106 pdf_pages.php:343 msgid "Toggle scratchboard" msgstr "conmutar o borrador" -#: libraries/messages.inc.php:1111 pmd_general.php:99 +#: libraries/messages.inc.php:1107 pmd_general.php:99 msgid "Toggle small/big" msgstr "Alternar pequeno/grande" -#: libraries/messages.inc.php:1112 pmd_help.php:27 +#: libraries/messages.inc.php:1108 pmd_help.php:27 msgid "To select relation, click :" msgstr "Para seleccionar unha relación, prema:" -#: libraries/messages.inc.php:1115 libraries/tbl_links.inc.php:149 +#: libraries/messages.inc.php:1111 libraries/tbl_links.inc.php:149 #, php-format msgid "Tracking of %s.%s is activated." msgstr "Activouse o seguemento de %s.%s." -#: libraries/messages.inc.php:1116 tbl_tracking.php:655 +#: libraries/messages.inc.php:1112 tbl_tracking.php:655 msgid "Activate now" msgstr "Activar agora" -#: libraries/messages.inc.php:1117 tbl_tracking.php:653 +#: libraries/messages.inc.php:1113 tbl_tracking.php:653 #, php-format msgid "Activate tracking for %s.%s" msgstr "Activar o seguemento de %s.%s" -#: libraries/messages.inc.php:1118 tbl_tracking.php:221 +#: libraries/messages.inc.php:1114 tbl_tracking.php:221 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/messages.inc.php:1119 tbl_tracking.php:688 +#: libraries/messages.inc.php:1115 tbl_tracking.php:688 msgid "Create version" msgstr "Crear unha versión" -#: libraries/messages.inc.php:1120 tbl_tracking.php:668 +#: libraries/messages.inc.php:1116 tbl_tracking.php:668 #, php-format msgid "Create version %s of %s.%s" msgstr "Crear a versión %s de %s.%s" -#: libraries/messages.inc.php:1122 tbl_tracking.php:412 +#: libraries/messages.inc.php:1118 tbl_tracking.php:412 msgid "Data definition statement" msgstr "Declaración de definición de datos" -#: libraries/messages.inc.php:1123 tbl_tracking.php:463 +#: libraries/messages.inc.php:1119 tbl_tracking.php:463 msgid "Data manipulation statement" msgstr "Declaración de manipulación de datos" -#: libraries/messages.inc.php:1124 tbl_tracking.php:410 tbl_tracking.php:461 +#: libraries/messages.inc.php:1120 tbl_tracking.php:410 tbl_tracking.php:461 msgid "Date" msgstr "Data" -#: libraries/messages.inc.php:1125 tbl_tracking.php:642 +#: libraries/messages.inc.php:1121 tbl_tracking.php:642 msgid "Deactivate now" msgstr "Desactivar agora" -#: libraries/messages.inc.php:1126 tbl_tracking.php:640 +#: libraries/messages.inc.php:1122 tbl_tracking.php:640 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "Desactivar o seguemento de %s.%s" -#: libraries/messages.inc.php:1127 tbl_tracking.php:521 +#: libraries/messages.inc.php:1123 tbl_tracking.php:521 #, php-format msgid "Export as %s" msgstr "Exportar como %s" -#: libraries/messages.inc.php:1130 tbl_tracking.php:251 tbl_tracking.php:379 +#: libraries/messages.inc.php:1126 tbl_tracking.php:251 tbl_tracking.php:379 msgid "Close" msgstr "Fechar" -#: libraries/messages.inc.php:1131 tbl_tracking.php:114 +#: libraries/messages.inc.php:1127 tbl_tracking.php:114 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/messages.inc.php:1133 tbl_tracking.php:397 tbl_tracking.php:504 +#: libraries/messages.inc.php:1129 tbl_tracking.php:397 tbl_tracking.php:504 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "Mostrar %s con datas de %s a %s polo usuario %s %s" -#: libraries/messages.inc.php:1134 tbl_tracking.php:561 +#: libraries/messages.inc.php:1130 tbl_tracking.php:561 msgid "Show versions" msgstr "Mostrar as versións" -#: libraries/messages.inc.php:1135 tbl_tracking.php:507 +#: libraries/messages.inc.php:1131 tbl_tracking.php:507 msgid "SQL dump (file download)" msgstr "Volcado de SQL (descarga do ficheiro)" -#: libraries/messages.inc.php:1136 tbl_tracking.php:508 +#: libraries/messages.inc.php:1132 tbl_tracking.php:508 msgid "SQL dump" msgstr "Volcado de SQL" -#: libraries/messages.inc.php:1137 tbl_tracking.php:213 +#: libraries/messages.inc.php:1133 tbl_tracking.php:213 msgid "SQL statements executed." msgstr "Declaracións SQL executadas." -#: libraries/messages.inc.php:1138 +#: libraries/messages.inc.php:1134 msgid "This option will replace your table and contained data." msgstr "Esta opción substitúe a táboa e os datos que contén." -#: libraries/messages.inc.php:1139 tbl_tracking.php:509 +#: libraries/messages.inc.php:1135 tbl_tracking.php:509 msgid "SQL execution" msgstr "Execución de SQL" -#: libraries/messages.inc.php:1140 tbl_tracking.php:230 +#: libraries/messages.inc.php:1136 tbl_tracking.php:230 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "Declaracións SQL exportadas. Copie o volcado ou execúteo." -#: libraries/messages.inc.php:1141 tbl_tracking.php:381 +#: libraries/messages.inc.php:1137 tbl_tracking.php:381 msgid "Tracking statements" msgstr "Declaracións de seguemento" -#: libraries/messages.inc.php:1148 tbl_tracking.php:593 +#: libraries/messages.inc.php:1144 tbl_tracking.php:593 msgid "Version" msgstr "Versión" -#: libraries/messages.inc.php:1149 tbl_tracking.php:672 +#: libraries/messages.inc.php:1145 tbl_tracking.php:672 msgid "Track these data definition statements:" msgstr "Seguir estas declaracións de definición de datos:" -#: libraries/messages.inc.php:1150 tbl_tracking.php:680 +#: libraries/messages.inc.php:1146 tbl_tracking.php:680 msgid "Track these data manipulation statements:" msgstr "Seguir estas declaracións de manipulación de datos:" -#: libraries/messages.inc.php:1155 tbl_tracking.php:411 tbl_tracking.php:462 +#: libraries/messages.inc.php:1151 tbl_tracking.php:411 tbl_tracking.php:462 msgid "Username" msgstr "Nome de usuario" -#: libraries/messages.inc.php:1156 tbl_tracking.php:203 +#: libraries/messages.inc.php:1152 tbl_tracking.php:203 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "Activouse o seguemento de %s.%s , versión %s." -#: libraries/messages.inc.php:1157 tbl_tracking.php:187 +#: libraries/messages.inc.php:1153 tbl_tracking.php:187 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "Creouse a versión %s; activouse o seguemento de %s.%s." -#: libraries/messages.inc.php:1158 tbl_tracking.php:195 +#: libraries/messages.inc.php:1154 tbl_tracking.php:195 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "Desactivouse o seguemento de %s.%s , versión %s." -#: libraries/messages.inc.php:1159 tbl_tracking.php:262 +#: libraries/messages.inc.php:1155 tbl_tracking.php:262 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Instantánea da versión %s (código SQL)" -#: libraries/messages.inc.php:1161 tbl_tracking.php:220 +#: libraries/messages.inc.php:1157 tbl_tracking.php:220 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/messages.inc.php:1162 libraries/mysql_charsets.lib.php:219 +#: libraries/messages.inc.php:1158 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:362 msgid "Traditional Chinese" msgstr "Chinés tradicional" -#: libraries/messages.inc.php:1163 libraries/mysql_charsets.lib.php:292 +#: libraries/messages.inc.php:1159 libraries/mysql_charsets.lib.php:292 msgid "Traditional Spanish" msgstr "Español tradicional" -#: libraries/messages.inc.php:1164 server_status.php:388 +#: libraries/messages.inc.php:1160 server_status.php:388 msgid "Traffic" msgstr "Tráfico" -#: libraries/messages.inc.php:1165 server_status.php:261 +#: libraries/messages.inc.php:1161 server_status.php:261 msgid "Transaction coordinator" msgstr "Coordinador da transacción" -#: libraries/messages.inc.php:1166 +#: libraries/messages.inc.php:1162 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 " @@ -6529,7 +6529,7 @@ msgstr "" "campo dunha fileira de táboa que conteña o nome do ficheiro. Se pretende " "seleccionar a segunda opción, a primeira deberá conter só unha cadea baleira" -#: libraries/messages.inc.php:1167 +#: libraries/messages.inc.php:1163 msgid "" "Displays hexadecimal representation of data. Optional first parameter " "specifies how often space will be added (defaults to 2 nibbles)." @@ -6538,7 +6538,7 @@ msgstr "" "opcional, especifica con que frecuencia se engadirá espazo (por omisión, 2 " "nibbles)." -#: libraries/messages.inc.php:1168 +#: libraries/messages.inc.php:1164 msgid "" "Displays a clickable thumbnail. The options are the maximum width and height " "in pixels. The original aspect ratio is preserved." @@ -6546,15 +6546,15 @@ msgstr "" "Mostra unha imaxe reducida vinculábel. Opcións: anchura,altura en píxeles " "(mantén a proporción orixinal)" -#: libraries/messages.inc.php:1169 +#: libraries/messages.inc.php:1165 msgid "Displays a link to download this image." msgstr "Mostra un vínculo a esta imaxe (ou sexa, baixada directa de blob)." -#: libraries/messages.inc.php:1170 +#: libraries/messages.inc.php:1166 msgid "See image/jpeg: inline" msgstr "Ver image/jpeg: na liña" -#: libraries/messages.inc.php:1171 +#: libraries/messages.inc.php:1167 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 " @@ -6574,7 +6574,7 @@ msgstr "" "- para \"local\" vexa a documentación acerca da función PHP's strftime() e " "para \"utc\" faise empregando a función gmdate()." -#: libraries/messages.inc.php:1172 +#: libraries/messages.inc.php:1168 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 " @@ -6598,13 +6598,13 @@ msgstr "" "cuarto parámetro, se for 1, porá un NOWRAP na cela de contidos para que toda " "a saída se mostre sen reformatar (Por omisión é 1)" -#: libraries/messages.inc.php:1173 +#: libraries/messages.inc.php:1169 msgid "" "Displays the contents of the field as-is, without running it through " "htmlspecialchars(). That is, the field is assumed to contain valid HTML." msgstr "Mantén o formato orixinal do campo. Non hai Escape." -#: libraries/messages.inc.php:1174 +#: libraries/messages.inc.php:1170 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 " @@ -6614,7 +6614,7 @@ msgstr "" "primeira opción é un prefixo do tipo \"http://domain.com/\"; a segunda " "opción é o ancho en píxeles; a terceira é a altura." -#: libraries/messages.inc.php:1175 +#: libraries/messages.inc.php:1171 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 " @@ -6624,11 +6624,11 @@ msgstr "" "prefixo do tipo \"http://domain.com/\"; a segunda opción é un título para o " "vínculo." -#: libraries/messages.inc.php:1176 +#: libraries/messages.inc.php:1172 msgid "Formats text as SQL query with syntax highlighting." msgstr "Formata texto como procura SQL e resalta a sintaxe." -#: libraries/messages.inc.php:1177 +#: libraries/messages.inc.php:1173 msgid "" "Displays a part of a string. The first option is the number of characters to " "skip from the beginning of the string (Default 0). The second option is the " @@ -6642,70 +6642,70 @@ msgstr "" "A terceira opción define que caracteres se engadirán á saída cando se " "devolva unha subcadea (Por omisión: ...)." -#: libraries/messages.inc.php:1179 server_binlog.php:183 server_binlog.php:186 +#: libraries/messages.inc.php:1175 server_binlog.php:183 server_binlog.php:186 #: server_processlist.php:49 server_processlist.php:51 msgid "Truncate Shown Queries" msgstr "Interrumpir as procuras mostradas" -#: libraries/messages.inc.php:1180 libraries/mysql_charsets.lib.php:301 +#: libraries/messages.inc.php:1176 libraries/mysql_charsets.lib.php:301 #: libraries/mysql_charsets.lib.php:389 msgid "Turkish" msgstr "Turco" -#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:304 +#: libraries/messages.inc.php:1179 libraries/mysql_charsets.lib.php:304 #: libraries/mysql_charsets.lib.php:386 msgid "Ukrainian" msgstr "Ucraíno" -#: libraries/messages.inc.php:1185 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:1181 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 msgid "Unicode" msgstr "Unicode" -#: libraries/messages.inc.php:1187 libraries/mysql_charsets.lib.php:398 +#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:398 #: libraries/mysql_charsets.lib.php:405 msgid "unknown" msgstr "descoñecido" -#: libraries/messages.inc.php:1190 server_privileges.php:1152 +#: libraries/messages.inc.php:1186 server_privileges.php:1152 #, php-format msgid "You have updated the privileges for %s." msgstr "Acaba de actualizar os privilexios de %s." -#: libraries/messages.inc.php:1191 user_password.php:112 +#: libraries/messages.inc.php:1187 user_password.php:112 msgid "The profile has been updated." msgstr "Actualizouse o perfil." -#: libraries/messages.inc.php:1193 libraries/relation.lib.php:138 +#: libraries/messages.inc.php:1189 libraries/relation.lib.php:138 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "Consulte a documentación para saber como actualizar a táboa Column_comments" -#: libraries/messages.inc.php:1194 +#: libraries/messages.inc.php:1190 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Debería actualizar a %s %s ou posterior." -#: libraries/messages.inc.php:1204 tbl_printview.php:314 tbl_structure.php:661 +#: libraries/messages.inc.php:1200 tbl_printview.php:314 tbl_structure.php:661 msgid "Usage" msgstr "Uso" -#: libraries/messages.inc.php:1205 +#: libraries/messages.inc.php:1201 msgid "Enclose table and field names with backquotes" msgstr "Protexer os nomes das táboas e dos campos con \" ` \"" -#: libraries/messages.inc.php:1206 libraries/replication_gui.lib.php:314 +#: libraries/messages.inc.php:1202 libraries/replication_gui.lib.php:314 #: server_privileges.php:740 msgid "Use Host Table" msgstr "Usar a táboa de Host" -#: libraries/messages.inc.php:1207 server_privileges.php:848 +#: libraries/messages.inc.php:1203 server_privileges.php:848 #, php-format msgid "The user %s already exists!" msgstr "Xa existe o usuario %s" -#: libraries/messages.inc.php:1209 libraries/replication_gui.lib.php:55 +#: libraries/messages.inc.php:1205 libraries/replication_gui.lib.php:55 #: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245 #: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255 #: server_privileges.php:672 server_privileges.php:675 @@ -6713,37 +6713,37 @@ msgstr "Xa existe o usuario %s" msgid "User name" msgstr "Nome do usuario" -#: libraries/messages.inc.php:1210 server_privileges.php:1645 +#: libraries/messages.inc.php:1206 server_privileges.php:1645 msgid "The selected user was not found in the privilege table." msgstr "Non se atopou o usuario seleccionado na táboa de privilexios." -#: libraries/messages.inc.php:1211 server_privileges.php:1365 +#: libraries/messages.inc.php:1207 server_privileges.php:1365 msgid "User overview" msgstr "Vista xeral dos usuarios" -#: libraries/messages.inc.php:1212 server_privileges.php:1261 +#: libraries/messages.inc.php:1208 server_privileges.php:1261 msgid "The selected users have been deleted successfully." msgstr "Elimináronse sen problemas os usuarios seleccionados." -#: libraries/messages.inc.php:1213 server_privileges.php:2026 +#: libraries/messages.inc.php:1209 server_privileges.php:2026 #, php-format msgid "Users having access to "%s"" msgstr "Usuarios que teñen acceso a "%s"" -#: libraries/messages.inc.php:1214 main.php:189 server_privileges.php:1350 +#: libraries/messages.inc.php:1210 main.php:189 server_privileges.php:1350 #: server_privileges.php:1497 server_privileges.php:1611 #: server_privileges.php:2029 server_processlist.php:54 msgid "User" msgstr "Usuario" -#: libraries/messages.inc.php:1215 tbl_change.php:1171 +#: libraries/messages.inc.php:1211 tbl_change.php:1171 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Use a tecla do tabulador para moverse de valor en valor ou a tecla CONTROL " "combinada cunha flecha para moverse a calquera sitio" -#: libraries/messages.inc.php:1217 libraries/replication_gui.lib.php:251 +#: libraries/messages.inc.php:1213 libraries/replication_gui.lib.php:251 #: libraries/replication_gui.lib.php:319 libraries/replication_gui.lib.php:342 #: server_privileges.php:678 server_privileges.php:745 #: server_privileges.php:769 server_privileges.php:1889 @@ -6751,7 +6751,7 @@ msgstr "" msgid "Use text field" msgstr "Use campo de texto" -#: libraries/messages.inc.php:1221 libraries/sqlvalidator.lib.php:68 +#: libraries/messages.inc.php:1217 libraries/sqlvalidator.lib.php:68 #, php-format msgid "" "The SQL validator could not be initialized. Please check if you have " @@ -6760,84 +6760,84 @@ msgstr "" "Non foi posíbel iniciar o comprobador de SQL. Comprobe que ten instalados " "todos os engadidos de php tal e como se describe na %sdocumentación%s." -#: libraries/messages.inc.php:1222 libraries/replication_gui.lib.php:111 +#: libraries/messages.inc.php:1218 libraries/replication_gui.lib.php:111 #: server_status.php:627 tbl_change.php:324 tbl_printview.php:370 #: tbl_select.php:139 tbl_structure.php:730 msgid "Value" msgstr "Valor" -#: libraries/messages.inc.php:1223 libraries/replication_gui.lib.php:110 +#: libraries/messages.inc.php:1219 libraries/replication_gui.lib.php:110 #: libraries/sql_query_form.lib.php:445 server_status.php:626 #: server_variables.php:52 msgid "Variable" msgstr "Variábel" -#: libraries/messages.inc.php:1225 server_export.php:21 +#: libraries/messages.inc.php:1221 server_export.php:21 msgid "View dump (schema) of databases" msgstr "Ver o volcado das bases de datos" -#: libraries/messages.inc.php:1227 tbl_export.php:23 +#: libraries/messages.inc.php:1223 tbl_export.php:23 msgid "View dump (schema) of table" msgstr "Ver o esquema do volcado da táboa" -#: libraries/messages.inc.php:1231 view_create.php:142 +#: libraries/messages.inc.php:1227 view_create.php:142 msgid "VIEW name" msgstr "Nome da VISTA" -#: libraries/messages.inc.php:1237 main.php:205 +#: libraries/messages.inc.php:1233 main.php:205 msgid "Web server" msgstr "Servidor web" -#: libraries/messages.inc.php:1239 libraries/mysql_charsets.lib.php:277 +#: libraries/messages.inc.php:1235 libraries/mysql_charsets.lib.php:277 #: libraries/mysql_charsets.lib.php:325 msgid "West European" msgstr "Europeo occidental" -#: libraries/messages.inc.php:1240 main.php:230 +#: libraries/messages.inc.php:1236 main.php:230 msgid "Wiki" msgstr "Wiki" -#: libraries/messages.inc.php:1241 server_privileges.php:2138 +#: libraries/messages.inc.php:1237 server_privileges.php:2138 msgid "wildcard" msgstr "comodín" -#: libraries/messages.inc.php:1248 +#: libraries/messages.inc.php:1244 msgid "Export contents" msgstr "Exportar o contido" -#: libraries/messages.inc.php:1249 +#: libraries/messages.inc.php:1245 msgid "Export functions" msgstr "Exportar as funcións" -#: libraries/messages.inc.php:1250 +#: libraries/messages.inc.php:1246 msgid "Export procedures" msgstr "Exportar os procedementos" -#: libraries/messages.inc.php:1251 +#: libraries/messages.inc.php:1247 msgid "Export Structure Schemas (recommended)" msgstr "Exportar os Esquemas de estrutura (recomendado)" -#: libraries/messages.inc.php:1252 +#: libraries/messages.inc.php:1248 msgid "Export tables" msgstr "Exportar as táboas" -#: libraries/messages.inc.php:1253 +#: libraries/messages.inc.php:1249 msgid "Export triggers" msgstr "Exportar os disparadores" -#: libraries/messages.inc.php:1254 +#: libraries/messages.inc.php:1250 msgid "Export views" msgstr "Exportar as vistas" -#: libraries/messages.inc.php:1255 +#: libraries/messages.inc.php:1251 msgid "XML" msgstr "XML" -#: libraries/messages.inc.php:1259 server_privileges.php:592 +#: libraries/messages.inc.php:1255 server_privileges.php:592 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Nota: Se estas opcións se configuran como 0 (cero) elimínase o límite." -#: libraries/messages.inc.php:1260 +#: libraries/messages.inc.php:1256 msgid "\"zipped\"" msgstr "comprimido no formato \"zip\"" diff --git a/po/he.po b/po/he.po index 0ac93ee24..99eee3156 100644 --- 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-05-13 11:25+0200\n" +"POT-Creation-Date: 2010-05-13 11:30+0200\n" "PO-Revision-Date: 2010-03-12 09:15+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: hebrew \n" @@ -13,19 +13,19 @@ msgstr "" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:38 browse_foreigners.php:59 -#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:870 +#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:866 #: server_privileges.php:1475 msgid "Show all" msgstr "ראיית הכל" #: browse_foreigners.php:82 db_operations.php:648 -#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:394 -#: libraries/export/pdf.php:147 libraries/messages.inc.php:597 +#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394 +#: libraries/export/pdf.php:147 libraries/messages.inc.php:593 #: pdf_schema.php:283 pdf_schema.php:1123 pdf_schema.php:1139 msgid "Page number:" msgstr "מספר דף:" -#: browse_foreigners.php:132 libraries/messages.inc.php:1242 +#: browse_foreigners.php:132 libraries/messages.inc.php:1238 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -35,7 +35,7 @@ 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/db_links.inc.php:75 -#: libraries/messages.inc.php:841 libraries/tbl_links.inc.php:63 +#: libraries/messages.inc.php:837 libraries/tbl_links.inc.php:63 msgid "Search" msgstr "חיפוש" @@ -44,12 +44,12 @@ msgstr "חיפוש" #: db_search.php:362 db_structure.php:567 js/messages.php:48 #: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2267 +#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 #: 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 #: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614 -#: libraries/messages.inc.php:361 libraries/replication_gui.lib.php:73 +#: libraries/messages.inc.php:357 libraries/replication_gui.lib.php:73 #: libraries/replication_gui.lib.php:365 libraries/select_server.lib.php:104 #: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477 #: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782 @@ -69,33 +69,33 @@ msgid "Go" msgstr "סע" #: browse_foreigners.php:168 browse_foreigners.php:172 -#: libraries/Index.class.php:442 libraries/messages.inc.php:459 +#: libraries/Index.class.php:442 libraries/messages.inc.php:455 #: tbl_tracking.php:320 msgid "Keyname" msgstr "" #: browse_foreigners.php:169 browse_foreigners.php:171 -#: libraries/messages.inc.php:252 server_collations.php:55 +#: libraries/messages.inc.php:248 server_collations.php:55 #: server_collations.php:67 server_engines.php:59 server_status.php:628 msgid "Description" msgstr "תיאור" #: browse_foreigners.php:247 browse_foreigners.php:256 #: browse_foreigners.php:268 browse_foreigners.php:276 -#: libraries/messages.inc.php:1218 +#: libraries/messages.inc.php:1214 msgid "Use this value" msgstr "השתמש בערך זה" -#: db_create.php:46 libraries/messages.inc.php:215 +#: db_create.php:46 libraries/messages.inc.php:211 #, fuzzy, php-format msgid "Database %1$s has been created." msgstr "מסד הנתונים %s נמחק." -#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:232 +#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:228 msgid "Database comment: " msgstr "הערה על מאגר הנתונים: " -#: db_datadict.php:165 libraries/messages.inc.php:1070 +#: db_datadict.php:165 libraries/messages.inc.php:1066 #: libraries/tbl_properties.inc.php:724 pdf_schema.php:1236 #: tbl_operations.php:345 tbl_printview.php:130 msgid "Table comments" @@ -104,7 +104,7 @@ msgstr "הערות טבלה" #: db_datadict.php:174 db_qbe.php:174 libraries/Index.class.php:446 #: libraries/export/htmlword.php:244 libraries/export/latex.php:360 #: libraries/export/odt.php:294 libraries/export/texytext.php:233 -#: libraries/messages.inc.php:317 libraries/tbl_properties.inc.php:99 +#: libraries/messages.inc.php:313 libraries/tbl_properties.inc.php:99 #: libraries/tbl_properties.inc.php:275 pdf_schema.php:1262 #: pdf_schema.php:1283 tbl_change.php:308 tbl_indexes.php:189 #: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135 @@ -116,7 +116,7 @@ msgstr "שדה" #: libraries/db_events.inc.php:31 libraries/db_routines.inc.php:42 #: 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/messages.inc.php:1181 +#: libraries/export/texytext.php:234 libraries/messages.inc.php:1177 #: libraries/tbl_properties.inc.php:100 pdf_schema.php:1263 #: pdf_schema.php:1284 server_privileges.php:2031 tbl_change.php:287 #: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313 @@ -128,7 +128,7 @@ msgstr "סוג" #: db_datadict.php:177 libraries/Index.class.php:449 #: libraries/export/htmlword.php:246 libraries/export/latex.php:360 #: libraries/export/odt.php:300 libraries/export/texytext.php:235 -#: libraries/messages.inc.php:576 libraries/tbl_properties.inc.php:109 +#: libraries/messages.inc.php:572 libraries/tbl_properties.inc.php:109 #: pdf_schema.php:1265 pdf_schema.php:1286 tbl_change.php:323 #: tbl_printview.php:145 tbl_structure.php:181 tbl_tracking.php:276 #: tbl_tracking.php:327 @@ -137,7 +137,7 @@ msgstr "Null" #: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 -#: libraries/export/texytext.php:236 libraries/messages.inc.php:238 +#: libraries/export/texytext.php:236 libraries/messages.inc.php:234 #: libraries/tbl_properties.inc.php:106 pdf_schema.php:1266 #: pdf_schema.php:1287 tbl_printview.php:146 tbl_structure.php:182 #: tbl_tracking.php:277 @@ -146,14 +146,14 @@ msgstr "ברירת מחדל" #: db_datadict.php:182 libraries/export/htmlword.php:249 #: libraries/export/latex.php:362 libraries/export/odt.php:307 -#: libraries/export/texytext.php:238 libraries/messages.inc.php:483 +#: libraries/export/texytext.php:238 libraries/messages.inc.php:479 #: pdf_schema.php:1268 pdf_schema.php:1289 tbl_printview.php:150 msgid "Links to" msgstr "קישורים אל" #: db_datadict.php:184 db_printview.php:112 libraries/export/htmlword.php:252 #: libraries/export/latex.php:365 libraries/export/odt.php:312 -#: libraries/export/texytext.php:241 libraries/messages.inc.php:163 +#: libraries/export/texytext.php:241 libraries/messages.inc.php:159 #: libraries/tbl_properties.inc.php:130 pdf_schema.php:1279 #: pdf_schema.php:1290 tbl_printview.php:152 msgid "Comments" @@ -162,7 +162,7 @@ msgstr "הערות" #: db_datadict.php:267 libraries/Index.class.php:359 #: 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/messages.inc.php:559 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:555 #: libraries/mult_submits.inc.php:263 pdf_schema.php:1344 #: server_privileges.php:1529 server_privileges.php:1540 #: server_privileges.php:1850 server_privileges.php:1855 @@ -174,7 +174,7 @@ msgstr "לא" #: db_datadict.php:267 libraries/Index.class.php:360 #: libraries/Index.class.php:385 libraries/export/htmlword.php:322 #: libraries/export/latex.php:430 libraries/export/odt.php:368 -#: libraries/export/texytext.php:311 libraries/messages.inc.php:1257 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:1253 #: libraries/mult_submits.inc.php:45 libraries/mult_submits.inc.php:50 #: libraries/mult_submits.inc.php:55 libraries/mult_submits.inc.php:60 #: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:101 @@ -188,108 +188,108 @@ msgstr "לא" msgid "Yes" msgstr "כן" -#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:670 +#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:666 #: tbl_printview.php:498 msgid "Print" msgstr "הדפסה" -#: db_export.php:29 libraries/messages.inc.php:1226 +#: db_export.php:29 libraries/messages.inc.php:1222 msgid "View dump (schema) of database" msgstr "ראיית הוצאה (תבנית) של מאגר נתונים" #: db_export.php:33 db_printview.php:96 db_qbe.php:102 db_structure.php:51 -#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:568 +#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:564 #: navigation.php:346 msgid "No tables found in database." msgstr "לא נמצאו טבלאות במאגר נתונים." -#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:845 +#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:841 #: server_export.php:27 msgid "Select All" msgstr "בחירת הכל" -#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1188 +#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1184 #: server_export.php:29 msgid "Unselect All" msgstr "בטל בחירת הכל" -#: db_operations.php:38 libraries/messages.inc.php:213 tbl_create.php:54 +#: db_operations.php:38 libraries/messages.inc.php:209 tbl_create.php:54 msgid "The database name is empty!" msgstr "שם מאגר הנתונים ריק!" -#: db_operations.php:236 libraries/messages.inc.php:753 +#: db_operations.php:236 libraries/messages.inc.php:749 #, php-format msgid "Database %s has been renamed to %s" msgstr "מאגר נתונים %s שונה אל %s" -#: db_operations.php:240 libraries/messages.inc.php:178 +#: db_operations.php:240 libraries/messages.inc.php:174 #, php-format msgid "Database %s has been copied to %s" msgstr "מאגר נתונים %s הועתק אל %s" -#: db_operations.php:410 libraries/messages.inc.php:236 +#: db_operations.php:410 libraries/messages.inc.php:232 msgid "Rename database to" msgstr "שינוי שם מאגר נתונים אל" -#: db_operations.php:415 libraries/messages.inc.php:161 +#: db_operations.php:415 libraries/messages.inc.php:157 #: server_processlist.php:57 msgid "Command" msgstr "פקודה" -#: db_operations.php:425 libraries/messages.inc.php:58 tbl_change.php:1143 +#: db_operations.php:425 libraries/messages.inc.php:54 tbl_change.php:1143 msgid "and then" msgstr "ואז" -#: db_operations.php:451 libraries/messages.inc.php:233 +#: db_operations.php:451 libraries/messages.inc.php:229 msgid "Copy database to" msgstr "העתקת מאגר נתונים אל" -#: db_operations.php:458 libraries/messages.inc.php:1043 +#: db_operations.php:458 libraries/messages.inc.php:1039 #: tbl_operations.php:526 tbl_tracking.php:388 msgid "Structure only" msgstr "מבנה בלבד" -#: db_operations.php:459 libraries/messages.inc.php:1041 +#: db_operations.php:459 libraries/messages.inc.php:1037 #: tbl_operations.php:527 tbl_tracking.php:390 msgid "Structure and data" msgstr "מבנה ומידע" -#: db_operations.php:460 libraries/messages.inc.php:229 tbl_operations.php:528 +#: db_operations.php:460 libraries/messages.inc.php:225 tbl_operations.php:528 #: tbl_tracking.php:389 msgid "Data only" msgstr "מידע בלבד" -#: db_operations.php:468 libraries/messages.inc.php:186 +#: db_operations.php:468 libraries/messages.inc.php:182 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE לפני העתקה" #: db_operations.php:471 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 -#: libraries/export/sql.php:82 libraries/messages.inc.php:30 +#: libraries/export/sql.php:82 libraries/messages.inc.php:26 #: tbl_operations.php:534 #, php-format msgid "Add %s" msgstr "" -#: db_operations.php:475 libraries/messages.inc.php:29 tbl_operations.php:297 +#: db_operations.php:475 libraries/messages.inc.php:25 tbl_operations.php:297 #: tbl_operations.php:536 msgid "Add AUTO_INCREMENT value" msgstr "הוספת ערך AUTO_INCREMENT (מספור אוטומטי)" -#: db_operations.php:479 libraries/messages.inc.php:31 tbl_operations.php:543 +#: db_operations.php:479 libraries/messages.inc.php:27 tbl_operations.php:543 msgid "Add constraints" msgstr "הוספת הגבלות" -#: db_operations.php:492 libraries/messages.inc.php:1059 +#: db_operations.php:492 libraries/messages.inc.php:1055 msgid "Switch to copied database" msgstr "מעבר למאגר נתונים שהועתק" -#: db_operations.php:533 libraries/messages.inc.php:89 +#: db_operations.php:533 libraries/messages.inc.php:85 msgid "BLOB Repository" msgstr "" #: db_operations.php:536 db_tracking.php:76 libraries/common.lib.php:1350 -#: libraries/messages.inc.php:1037 libraries/server_links.inc.php:49 +#: libraries/messages.inc.php:1033 libraries/server_links.inc.php:49 #: server_processlist.php:59 tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "מצב" @@ -301,12 +301,12 @@ msgctxt "BLOB repository" msgid "Enabled" msgstr "מופעל" -#: db_operations.php:548 libraries/messages.inc.php:93 +#: db_operations.php:548 libraries/messages.inc.php:89 #, fuzzy msgid "Disable" msgstr "מבוטל" -#: db_operations.php:558 libraries/messages.inc.php:90 +#: db_operations.php:558 libraries/messages.inc.php:86 msgid "Damaged" msgstr "" @@ -323,13 +323,13 @@ msgctxt "BLOB repository" msgid "Disabled" msgstr "מבוטל" -#: db_operations.php:574 libraries/messages.inc.php:96 +#: db_operations.php:574 libraries/messages.inc.php:92 #, fuzzy msgid "Enable" msgstr "מופעל" #: db_operations.php:598 libraries/Index.class.php:448 -#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:158 +#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:154 #: 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:361 @@ -338,7 +338,7 @@ msgstr "מופעל" msgid "Collation" msgstr "קידוד" -#: db_operations.php:609 libraries/messages.inc.php:742 main.php:316 +#: db_operations.php:609 libraries/messages.inc.php:738 main.php:316 #: pdf_schema.php:34 #, php-format msgid "" @@ -347,58 +347,58 @@ msgid "" msgstr "" "תכונות נוספות לעבודה עם טבלאות מקושרות בוטלו. לעוד מידע למה לחץ %sכאן%s." -#: db_operations.php:645 libraries/messages.inc.php:264 pdf_pages.php:528 +#: db_operations.php:645 libraries/messages.inc.php:260 pdf_pages.php:528 msgid "Display PDF schema" msgstr "הצגת תרשים PDF" -#: db_operations.php:661 libraries/messages.inc.php:877 pdf_pages.php:529 +#: db_operations.php:661 libraries/messages.inc.php:873 pdf_pages.php:529 msgid "Show grid" msgstr "הראה רשת" -#: db_operations.php:664 libraries/messages.inc.php:874 pdf_pages.php:530 +#: db_operations.php:664 libraries/messages.inc.php:870 pdf_pages.php:530 msgid "Show color" msgstr "ראיית צבע" -#: db_operations.php:666 libraries/messages.inc.php:998 pdf_pages.php:531 +#: db_operations.php:666 libraries/messages.inc.php:994 pdf_pages.php:531 msgid "Show dimension of tables" msgstr "ראיית ממדים של טבלאות" -#: db_operations.php:669 libraries/messages.inc.php:52 pdf_pages.php:532 +#: db_operations.php:669 libraries/messages.inc.php:48 pdf_pages.php:532 msgid "Display all tables with the same width" msgstr "הצגת כל הטבלאות ברוחב דומה?" -#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:227 +#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:223 #: pdf_pages.php:533 msgid "Data Dictionary" msgstr "מילון מידע" -#: db_operations.php:674 libraries/messages.inc.php:884 pdf_pages.php:534 +#: db_operations.php:674 libraries/messages.inc.php:880 pdf_pages.php:534 msgid "Only show keys" msgstr "" -#: db_operations.php:676 libraries/messages.inc.php:875 pdf_pages.php:535 +#: db_operations.php:676 libraries/messages.inc.php:871 pdf_pages.php:535 msgid "Data Dictionary Format" msgstr "תבנית מידע מילון" -#: db_operations.php:678 libraries/messages.inc.php:464 pdf_pages.php:537 +#: db_operations.php:678 libraries/messages.inc.php:460 pdf_pages.php:537 msgid "Landscape" msgstr "" -#: db_operations.php:679 libraries/messages.inc.php:663 pdf_pages.php:538 +#: db_operations.php:679 libraries/messages.inc.php:659 pdf_pages.php:538 msgid "Portrait" msgstr "Portrait" -#: db_operations.php:682 libraries/messages.inc.php:599 pdf_pages.php:541 +#: db_operations.php:682 libraries/messages.inc.php:595 pdf_pages.php:541 msgid "Paper size" msgstr "גודל דף" -#: db_operations.php:706 libraries/messages.inc.php:281 +#: db_operations.php:706 libraries/messages.inc.php:277 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 libraries/messages.inc.php:1087 +#: libraries/header.inc.php:126 libraries/messages.inc.php:1083 #: pdf_pages.php:405 server_privileges.php:1626 server_privileges.php:1682 #: server_privileges.php:1946 server_synchronize.php:423 #: server_synchronize.php:866 tbl_tracking.php:592 test/theme.php:75 @@ -406,176 +406,176 @@ msgid "Table" msgstr "טבלה" #: db_printview.php:105 libraries/db_structure.lib.php:56 -#: libraries/messages.inc.php:735 +#: libraries/messages.inc.php:731 msgid "Records" msgstr "רשומות" #: db_printview.php:109 libraries/db_structure.lib.php:67 -#: libraries/messages.inc.php:1003 tbl_indexes.php:190 +#: libraries/messages.inc.php:999 tbl_indexes.php:190 msgid "Size" msgstr "גודל" #: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 -#: libraries/export/sql.php:899 libraries/messages.inc.php:436 +#: libraries/export/sql.php:899 libraries/messages.inc.php:432 msgid "in use" msgstr "בשימוש" #: db_printview.php:187 libraries/db_info.inc.php:88 -#: libraries/export/sql.php:514 libraries/messages.inc.php:1032 +#: libraries/export/sql.php:514 libraries/messages.inc.php:1028 #: pdf_schema.php:1241 tbl_printview.php:434 tbl_structure.php:810 msgid "Creation" msgstr "יצירה" #: db_printview.php:196 libraries/db_info.inc.php:93 -#: libraries/export/sql.php:519 libraries/messages.inc.php:1036 +#: libraries/export/sql.php:519 libraries/messages.inc.php:1032 #: pdf_schema.php:1246 tbl_printview.php:444 tbl_structure.php:818 msgid "Last update" msgstr "עדכון אחרון" #: db_printview.php:205 libraries/db_info.inc.php:98 -#: libraries/export/sql.php:524 libraries/messages.inc.php:1031 +#: libraries/export/sql.php:524 libraries/messages.inc.php:1027 #: pdf_schema.php:1251 tbl_printview.php:454 tbl_structure.php:826 msgid "Last check" msgstr "נבדק לאחרונה" -#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1085 +#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1081 #, php-format msgid "%s table(s)" msgstr "%s טבלאות" #: db_qbe.php:29 libraries/display_tbl.lib.php:1981 -#: libraries/messages.inc.php:1051 libraries/sql_query_form.lib.php:140 +#: libraries/messages.inc.php:1047 libraries/sql_query_form.lib.php:140 #: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131 #: view_operations.php:62 msgid "Your SQL query has been executed successfully" msgstr "שאילתת SQL שלך בוצעה בהצלחה" -#: db_qbe.php:42 libraries/messages.inc.php:371 +#: db_qbe.php:42 libraries/messages.inc.php:367 msgid "You have to choose at least one column to display" msgstr "עליך לבחור לפחות עמודה אחת לתצוגה" #: db_qbe.php:200 libraries/db_structure.lib.php:104 -#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1014 +#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1010 msgid "Sort" msgstr "סידור" #: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111 #: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828 -#: libraries/messages.inc.php:69 server_databases.php:170 +#: libraries/messages.inc.php:65 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314 msgid "Ascending" msgstr "עולה" #: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119 #: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825 -#: libraries/messages.inc.php:251 server_databases.php:170 +#: libraries/messages.inc.php:247 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315 msgid "Descending" msgstr "יורד" #: db_qbe.php:264 db_tracking.php:78 libraries/display_tbl.lib.php:308 -#: libraries/messages.inc.php:888 tbl_change.php:277 tbl_tracking.php:597 +#: libraries/messages.inc.php:884 tbl_change.php:277 tbl_tracking.php:597 msgid "Show" msgstr "ראייה" -#: db_qbe.php:300 libraries/messages.inc.php:202 +#: db_qbe.php:300 libraries/messages.inc.php:198 msgid "Criteria" msgstr "קריטריון" #: db_qbe.php:353 db_qbe.php:435 db_qbe.php:527 db_qbe.php:558 -#: libraries/messages.inc.php:718 +#: libraries/messages.inc.php:714 msgid "Ins" msgstr "הכנסה" #: db_qbe.php:357 db_qbe.php:439 db_qbe.php:524 db_qbe.php:555 -#: libraries/messages.inc.php:56 +#: libraries/messages.inc.php:52 msgid "And" msgstr "וגם" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:529 db_qbe.php:560 -#: libraries/messages.inc.php:717 +#: libraries/messages.inc.php:713 msgid "Del" msgstr "מחיקה" #: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553 -#: libraries/display_import.lib.php:166 libraries/messages.inc.php:592 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:588 #: libraries/tbl_properties.inc.php:779 server_privileges.php:258 #: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288 msgid "Or" msgstr "או" -#: db_qbe.php:507 libraries/messages.inc.php:516 +#: db_qbe.php:507 libraries/messages.inc.php:512 msgid "Modify" msgstr "עריכה" -#: db_qbe.php:584 libraries/messages.inc.php:33 +#: db_qbe.php:584 libraries/messages.inc.php:29 msgid "Add/Delete Criteria Row" msgstr "Add/Delete Criteria Row" -#: db_qbe.php:596 libraries/messages.inc.php:32 +#: db_qbe.php:596 libraries/messages.inc.php:28 msgid "Add/Delete Field Columns" msgstr "הוספת/מחיקת עמודות שדה" -#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1192 +#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1188 msgid "Update Query" msgstr "עדכון שאילתה" -#: db_qbe.php:617 libraries/messages.inc.php:1216 +#: db_qbe.php:617 libraries/messages.inc.php:1212 msgid "Use Tables" msgstr "השתמש בטבלאות" -#: db_qbe.php:640 libraries/messages.inc.php:723 +#: db_qbe.php:640 libraries/messages.inc.php:719 #, php-format msgid "SQL query on database %s:" msgstr "" -#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:823 +#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:819 msgid "Submit Query" msgstr "שליחת שאילתה" #: db_search.php:68 libraries/auth/config.auth.lib.php:84 #: libraries/auth/config.auth.lib.php:103 #: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52 -#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:26 +#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:22 msgid "Access denied" msgstr "גישה נדתחה" -#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:836 +#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:832 msgid "at least one of the words" msgstr "לפחות אחת מן המילים" -#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:837 +#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:833 msgid "all words" msgstr "כל המילים" -#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:838 +#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:834 msgid "the exact phrase" msgstr "הביטוי המדוייק" -#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:839 +#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:835 msgid "as regular expression" msgstr "כביטוי רגיל" -#: db_search.php:242 libraries/messages.inc.php:840 +#: db_search.php:242 libraries/messages.inc.php:836 #, php-format msgid "Search results for \"%s\" %s:" msgstr "תוצאות חיפוש עבור \"%s\" %s:" -#: db_search.php:260 libraries/messages.inc.php:579 +#: db_search.php:260 libraries/messages.inc.php:575 #, php-format msgid "%s match(es) inside table %s" 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/messages.inc.php:108 +#: db_structure.php:105 libraries/messages.inc.php:104 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468 msgid "Browse" msgstr "עיון" #: db_search.php:272 libraries/display_tbl.lib.php:1165 -#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:243 +#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:239 #: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406 #: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377 #: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216 @@ -583,45 +583,45 @@ msgstr "עיון" msgid "Delete" msgstr "מחיקה" -#: db_search.php:285 libraries/messages.inc.php:580 +#: db_search.php:285 libraries/messages.inc.php:576 #, php-format msgid "Total: %s match(es)" msgstr "סה\"כ: %s פריטים" -#: db_search.php:299 libraries/messages.inc.php:832 +#: db_search.php:299 libraries/messages.inc.php:828 msgid "Search in database" msgstr "חפש במסד הנתונים" -#: db_search.php:302 libraries/messages.inc.php:835 +#: db_search.php:302 libraries/messages.inc.php:831 msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgstr "מילים או ערכים עבור חיפוש (תו כללי: \"%\"):" -#: db_search.php:307 libraries/messages.inc.php:842 +#: db_search.php:307 libraries/messages.inc.php:838 msgid "Find:" msgstr "מצא:" -#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1017 +#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1013 msgid "Words are separated by a space character (\" \")." msgstr "מילים מופרדות ע\"י תו רווח (\" \")." -#: db_search.php:325 libraries/messages.inc.php:834 +#: db_search.php:325 libraries/messages.inc.php:830 msgid "Inside table(s):" msgstr "בתוך הטבלה/הטבלאות:" -#: db_search.php:355 libraries/messages.inc.php:833 +#: db_search.php:355 libraries/messages.inc.php:829 msgid "Inside field:" 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/messages.inc.php:431 libraries/sql_query_form.lib.php:334 +#: libraries/messages.inc.php:427 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/db_links.inc.php:63 libraries/export/latex.php:337 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:1048 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:1044 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 #: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269 msgid "Structure" @@ -630,8 +630,8 @@ 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:1642 -#: libraries/db_links.inc.php:100 libraries/messages.inc.php:272 +#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/db_links.inc.php:100 libraries/messages.inc.php:268 #: 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 @@ -641,40 +641,40 @@ 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:1641 -#: libraries/messages.inc.php:284 libraries/mult_submits.inc.php:39 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: libraries/messages.inc.php:280 libraries/mult_submits.inc.php:39 #: libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "ריקון" -#: db_structure.php:316 libraries/messages.inc.php:1075 +#: db_structure.php:316 libraries/messages.inc.php:1071 #: libraries/tbl_links.inc.php:100 #, php-format msgid "Table %s has been emptied" msgstr "טבלה %s רוקנה" -#: db_structure.php:326 libraries/messages.inc.php:1229 +#: db_structure.php:326 libraries/messages.inc.php:1225 #: libraries/tbl_links.inc.php:133 #, fuzzy, php-format msgid "View %s has been dropped" msgstr "שדה %s נמחק" -#: db_structure.php:326 libraries/messages.inc.php:1074 +#: db_structure.php:326 libraries/messages.inc.php:1070 #: libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "טבלה %s נמחקה" -#: db_structure.php:333 libraries/messages.inc.php:1128 +#: db_structure.php:333 libraries/messages.inc.php:1124 msgid "Tracking is active." msgstr "" -#: db_structure.php:335 libraries/messages.inc.php:1129 +#: db_structure.php:335 libraries/messages.inc.php:1125 msgid "Tracking is not active." msgstr "" #: db_structure.php:420 libraries/display_tbl.lib.php:1944 -#: libraries/messages.inc.php:1228 +#: libraries/messages.inc.php:1224 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -682,84 +682,84 @@ msgid "" msgstr "" #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 -#: libraries/messages.inc.php:1233 libraries/tbl_info.inc.php:66 +#: libraries/messages.inc.php:1229 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/messages.inc.php:773 libraries/server_links.inc.php:70 +#: libraries/messages.inc.php:769 libraries/server_links.inc.php:70 #: server_replication.php:33 server_replication.php:164 server_status.php:258 #, fuzzy msgid "Replication" msgstr "יחסים" -#: db_structure.php:489 libraries/messages.inc.php:1053 +#: db_structure.php:489 libraries/messages.inc.php:1049 msgid "Sum" msgstr "סכום" #: db_structure.php:496 libraries/StorageEngine.class.php:356 -#: libraries/messages.inc.php:239 +#: libraries/messages.inc.php:235 #, 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 #: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086 -#: libraries/messages.inc.php:1243 libraries/mult_submits.inc.php:16 +#: libraries/messages.inc.php:1239 libraries/mult_submits.inc.php:16 #: server_databases.php:346 server_databases.php:351 #: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465 msgid "With selected:" msgstr "עם הנבחרים:" #: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: libraries/messages.inc.php:148 server_databases.php:348 +#: libraries/messages.inc.php:144 server_databases.php:348 #: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459 msgid "Check All" msgstr "בחירת הכל" #: db_structure.php:531 libraries/display_tbl.lib.php:2077 -#: libraries/messages.inc.php:1184 libraries/replication_gui.lib.php:33 +#: libraries/messages.inc.php:1180 libraries/replication_gui.lib.php:33 #: server_databases.php:350 server_privileges.php:533 #: server_privileges.php:1564 tbl_structure.php:463 msgid "Uncheck All" msgstr "בטל סימון הכל" -#: db_structure.php:536 libraries/messages.inc.php:150 +#: db_structure.php:536 libraries/messages.inc.php:146 msgid "Check tables having overhead" msgstr "בדיקת טבלאות עבור תקורה" #: db_structure.php:547 db_structure.php:548 db_structure.php:599 -#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:672 +#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:668 #: libraries/mult_submits.inc.php:28 tbl_structure.php:493 #: tbl_structure.php:495 msgid "Print view" msgstr "תצוגת הדפסה" -#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:153 +#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:149 #: libraries/mult_submits.inc.php:42 tbl_operations.php:579 msgid "Check table" msgstr "בדיקת טבלה" -#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:590 +#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:586 #: libraries/mult_submits.inc.php:47 tbl_operations.php:619 #: tbl_structure.php:710 tbl_structure.php:712 msgid "Optimize table" msgstr "ייעול טבלה" -#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:758 +#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:754 #: libraries/mult_submits.inc.php:52 tbl_operations.php:609 msgid "Repair table" msgstr "תיקון טבלה" -#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:55 +#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:51 #: libraries/mult_submits.inc.php:57 tbl_operations.php:599 msgid "Analyze table" msgstr "ניתוח טבלה" #: db_structure.php:557 db_structure.php:558 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/messages.inc.php:310 +#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:306 #: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84 #: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109 #: server_privileges.php:1341 setup/frames/menu.inc.php:22 @@ -767,7 +767,7 @@ msgstr "ניתוח טבלה" msgid "Export" msgstr "ייצוא" -#: db_tracking.php:66 libraries/messages.inc.php:1151 +#: db_tracking.php:66 libraries/messages.inc.php:1147 msgid "Tracked tables" msgstr "" @@ -775,7 +775,7 @@ msgstr "" #: 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/header_printview.inc.php:58 libraries/messages.inc.php:212 +#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:208 #: navigation.php:233 server_databases.php:169 server_privileges.php:1621 #: server_privileges.php:1682 server_privileges.php:1940 #: server_processlist.php:56 server_synchronize.php:1179 @@ -783,97 +783,97 @@ msgstr "" msgid "Database" msgstr "מאגר נתונים" -#: db_tracking.php:73 libraries/messages.inc.php:1146 +#: db_tracking.php:73 libraries/messages.inc.php:1142 msgid "Last version" msgstr "" -#: db_tracking.php:74 libraries/messages.inc.php:1145 tbl_tracking.php:594 +#: db_tracking.php:74 libraries/messages.inc.php:1141 tbl_tracking.php:594 #, fuzzy msgid "Created" msgstr "יצירה" -#: db_tracking.php:75 libraries/messages.inc.php:1147 tbl_tracking.php:595 +#: db_tracking.php:75 libraries/messages.inc.php:1143 tbl_tracking.php:595 msgid "Updated" msgstr "" #: db_tracking.php:77 libraries/Index.class.php:440 -#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:27 +#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:23 #: server_databases.php:203 server_privileges.php:1503 #: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187 msgid "Action" msgstr "פעולה" -#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:247 +#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:243 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:106 libraries/messages.inc.php:1142 tbl_tracking.php:548 +#: db_tracking.php:106 libraries/messages.inc.php:1138 tbl_tracking.php:548 #: tbl_tracking.php:606 tbl_tracking.php:613 msgid "active" msgstr "" -#: db_tracking.php:108 libraries/messages.inc.php:1143 tbl_tracking.php:550 +#: db_tracking.php:108 libraries/messages.inc.php:1139 tbl_tracking.php:550 #: tbl_tracking.php:608 tbl_tracking.php:610 msgid "not active" msgstr "" -#: db_tracking.php:121 libraries/messages.inc.php:1160 +#: db_tracking.php:121 libraries/messages.inc.php:1156 #, fuzzy msgid "Versions" msgstr "Persian" -#: db_tracking.php:122 libraries/messages.inc.php:1132 tbl_tracking.php:379 +#: db_tracking.php:122 libraries/messages.inc.php:1128 tbl_tracking.php:379 #: tbl_tracking.php:624 msgid "Tracking report" msgstr "" -#: db_tracking.php:123 libraries/messages.inc.php:1144 tbl_tracking.php:251 +#: db_tracking.php:123 libraries/messages.inc.php:1140 tbl_tracking.php:251 #: tbl_tracking.php:624 #, fuzzy msgid "Structure snapshot" msgstr "מבנה בלבד" -#: db_tracking.php:152 libraries/messages.inc.php:1154 +#: db_tracking.php:152 libraries/messages.inc.php:1150 msgid "Untracked tables" msgstr "" -#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1153 +#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1149 #: tbl_structure.php:529 tbl_structure.php:531 #, fuzzy msgid "Track table" msgstr "בדיקת טבלה" -#: db_tracking.php:200 libraries/messages.inc.php:1121 +#: db_tracking.php:200 libraries/messages.inc.php:1117 #, fuzzy msgid "Database Log" msgstr "מאגר נתונים" -#: export.php:62 libraries/messages.inc.php:312 +#: export.php:62 libraries/messages.inc.php:308 msgid "Selected export type has to be saved in file!" msgstr "" -#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:567 +#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:563 #, php-format msgid "Insufficient space to save the file %s." msgstr "אןי מספיק מקום לשמור את הקובץ %s." -#: export.php:294 libraries/messages.inc.php:324 +#: export.php:294 libraries/messages.inc.php:320 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "קובץ %s כבר קיים על השרת, שנה שם קובץ או בדוק אופציית כתיבה-על." -#: export.php:298 export.php:302 libraries/messages.inc.php:562 +#: export.php:298 export.php:302 libraries/messages.inc.php:558 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "לשרת אין הרשאה לשמור את קובץ %s." -#: export.php:629 libraries/messages.inc.php:276 +#: export.php:629 libraries/messages.inc.php:272 #, php-format msgid "Dump has been saved to file %s." msgstr "הוצאה נשמרה אל קובץ %s." -#: import.php:60 libraries/messages.inc.php:1202 +#: import.php:60 libraries/messages.inc.php:1198 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation%" @@ -881,21 +881,21 @@ msgid "" msgstr "" #: import.php:279 import.php:332 libraries/File.class.php:849 -#: libraries/File.class.php:961 libraries/messages.inc.php:325 +#: libraries/File.class.php:961 libraries/messages.inc.php:321 msgid "File could not be read" msgstr "נכשל בקריאת הקובץ" #: import.php:287 import.php:296 import.php:315 import.php:324 #: libraries/File.class.php:1031 libraries/File.class.php:1039 #: libraries/File.class.php:1055 libraries/File.class.php:1063 -#: libraries/messages.inc.php:1189 +#: libraries/messages.inc.php:1185 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." msgstr "" -#: import.php:337 libraries/messages.inc.php:547 +#: import.php:337 libraries/messages.inc.php:543 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -903,39 +903,39 @@ msgid "" msgstr "" #: import.php:372 libraries/display_import.lib.php:24 -#: libraries/messages.inc.php:125 +#: libraries/messages.inc.php:121 msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:397 libraries/messages.inc.php:102 +#: import.php:397 libraries/messages.inc.php:98 msgid "The bookmark has been deleted." msgstr "כתובת מועדפת נמחקה." -#: import.php:401 libraries/messages.inc.php:879 +#: import.php:401 libraries/messages.inc.php:875 msgid "Showing bookmark" msgstr "" -#: import.php:403 libraries/messages.inc.php:101 +#: import.php:403 libraries/messages.inc.php:97 #, php-format msgid "Bookmark %s created" msgstr "" -#: import.php:409 import.php:415 libraries/messages.inc.php:407 +#: import.php:409 import.php:415 libraries/messages.inc.php:403 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" -#: import.php:424 libraries/messages.inc.php:1107 +#: import.php:424 libraries/messages.inc.php:1103 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: index.php:190 libraries/messages.inc.php:553 +#: index.php:190 libraries/messages.inc.php:549 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin יותר ידידותי עם דפדפן frames-capable." -#: js/messages.php:25 libraries/messages.inc.php:155 +#: js/messages.php:25 libraries/messages.inc.php:151 #: server_synchronize.php:345 server_synchronize.php:357 #: server_synchronize.php:373 server_synchronize.php:380 #: server_synchronize.php:739 server_synchronize.php:767 @@ -943,118 +943,118 @@ msgstr "phpMyAdmin יותר ידידותי עם דפדפן frames-capable msgid "Click to select" msgstr "" -#: js/messages.php:26 libraries/messages.inc.php:156 +#: js/messages.php:26 libraries/messages.inc.php:152 msgid "Click to unselect" msgstr "" #: js/messages.php:27 libraries/import.lib.php:103 -#: libraries/messages.inc.php:550 sql.php:89 +#: libraries/messages.inc.php:546 sql.php:89 msgid "\"DROP DATABASE\" statements are disabled." msgstr "הוראות \"DROP DATABASE\" מבוטלות." -#: js/messages.php:30 libraries/messages.inc.php:270 +#: js/messages.php:30 libraries/messages.inc.php:266 #: libraries/mult_submits.inc.php:258 sql.php:188 msgid "Do you really want to " msgstr "האם אתה באמת רוצה " -#: js/messages.php:31 libraries/messages.inc.php:271 +#: js/messages.php:31 libraries/messages.inc.php:267 #: libraries/mult_submits.inc.php:258 sql.php:172 msgid "You are about to DESTROY a complete database!" msgstr "אתה עומד להרוס מאגר נתונים שלם!" -#: js/messages.php:34 libraries/messages.inc.php:94 +#: js/messages.php:34 libraries/messages.inc.php:90 msgid "You are about to DISABLE a BLOB Repository!" msgstr "" -#: js/messages.php:35 libraries/messages.inc.php:91 +#: js/messages.php:35 libraries/messages.inc.php:87 #, php-format msgid "Are you sure you want to disable all BLOB references for database %s?" msgstr "" -#: js/messages.php:38 libraries/messages.inc.php:342 +#: js/messages.php:38 libraries/messages.inc.php:338 msgid "Missing value in the form!" msgstr "ערך ריק בטופס!" -#: js/messages.php:39 libraries/messages.inc.php:570 +#: js/messages.php:39 libraries/messages.inc.php:566 msgid "This is not a number!" msgstr "זה אינו מספר!" -#: js/messages.php:42 libraries/messages.inc.php:380 +#: js/messages.php:42 libraries/messages.inc.php:376 msgid "The host name is empty!" msgstr "שם המארח ריק!" -#: js/messages.php:43 libraries/messages.inc.php:1208 +#: js/messages.php:43 libraries/messages.inc.php:1204 msgid "The user name is empty!" msgstr "שם המשתמש ריק !" -#: js/messages.php:44 libraries/messages.inc.php:607 +#: js/messages.php:44 libraries/messages.inc.php:603 #: server_privileges.php:1197 user_password.php:70 msgid "The password is empty!" msgstr "הסיסמא ריקה!" -#: js/messages.php:45 libraries/messages.inc.php:609 +#: js/messages.php:45 libraries/messages.inc.php:605 #: server_privileges.php:1195 user_password.php:73 msgid "The passwords aren't the same!" msgstr "הסיסמאות אינן זהות!" -#: js/messages.php:49 libraries/messages.inc.php:123 pmd_general.php:342 +#: js/messages.php:49 libraries/messages.inc.php:119 pmd_general.php:342 #: pmd_general.php:379 msgid "Cancel" msgstr "" -#: js/messages.php:52 libraries/messages.inc.php:514 +#: js/messages.php:52 libraries/messages.inc.php:510 msgid "Modifications have been saved" msgstr "שינויים נשמרו" -#: js/messages.php:53 libraries/messages.inc.php:741 +#: js/messages.php:53 libraries/messages.inc.php:737 #, fuzzy msgid "Relation deleted" msgstr "תצוגת יחסים" -#: js/messages.php:54 libraries/messages.inc.php:340 +#: js/messages.php:54 libraries/messages.inc.php:336 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:55 libraries/messages.inc.php:434 +#: js/messages.php:55 libraries/messages.inc.php:430 #, fuzzy msgid "Internal relation added" msgstr "יחסים פנימיים" -#: js/messages.php:56 libraries/messages.inc.php:299 +#: js/messages.php:56 libraries/messages.inc.php:295 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:57 libraries/messages.inc.php:300 +#: js/messages.php:57 libraries/messages.inc.php:296 msgid "Error: relation already exists." msgstr "" -#: js/messages.php:58 libraries/messages.inc.php:302 +#: js/messages.php:58 libraries/messages.inc.php:298 msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:59 libraries/messages.inc.php:351 +#: js/messages.php:59 libraries/messages.inc.php:347 #: libraries/relation.lib.php:107 msgid "General relation features" msgstr "תכונות קשר כלליות" -#: js/messages.php:59 libraries/messages.inc.php:260 +#: js/messages.php:59 libraries/messages.inc.php:256 #: libraries/relation.lib.php:101 libraries/relation.lib.php:108 msgid "Disabled" msgstr "מבוטל" -#: js/messages.php:60 libraries/messages.inc.php:850 +#: js/messages.php:60 libraries/messages.inc.php:846 msgid "Select referenced key" msgstr "" -#: js/messages.php:61 libraries/messages.inc.php:848 +#: js/messages.php:61 libraries/messages.inc.php:844 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:62 libraries/messages.inc.php:653 +#: js/messages.php:62 libraries/messages.inc.php:649 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:63 libraries/messages.inc.php:142 pmd_general.php:77 +#: js/messages.php:63 libraries/messages.inc.php:138 pmd_general.php:77 #: tbl_relation.php:548 msgid "Choose field to display" msgstr "בחירת שדה להצגה" @@ -1074,9 +1074,9 @@ msgid "Prev" msgstr "הקודם" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2332 -#: libraries/common.lib.php:2335 libraries/display_tbl.lib.php:338 -#: libraries/messages.inc.php:543 server_binlog.php:205 server_binlog.php:207 +#: js/messages.php:77 libraries/common.lib.php:2344 +#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: libraries/messages.inc.php:539 server_binlog.php:205 server_binlog.php:207 #: tbl_printview.php:424 tbl_structure.php:802 msgid "Next" msgstr "הבא" @@ -1151,27 +1151,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1543 +#: js/messages.php:97 libraries/common.lib.php:1555 msgid "Jan" msgstr "ינואר" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1545 +#: js/messages.php:99 libraries/common.lib.php:1557 msgid "Feb" msgstr "פברואר" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1547 +#: js/messages.php:101 libraries/common.lib.php:1559 msgid "Mar" msgstr "מרץ" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1549 +#: js/messages.php:103 libraries/common.lib.php:1561 msgid "Apr" msgstr "אפריל" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1551 +#: js/messages.php:105 libraries/common.lib.php:1563 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1179,37 +1179,37 @@ msgid "May" msgstr "מאי" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1553 +#: js/messages.php:107 libraries/common.lib.php:1565 msgid "Jun" msgstr "יוני" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1555 +#: js/messages.php:109 libraries/common.lib.php:1567 msgid "Jul" msgstr "יולי" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1557 +#: js/messages.php:111 libraries/common.lib.php:1569 msgid "Aug" msgstr "אוגוסט" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1559 +#: js/messages.php:113 libraries/common.lib.php:1571 msgid "Sep" msgstr "ספטמבר" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1561 +#: js/messages.php:115 libraries/common.lib.php:1573 msgid "Oct" msgstr "אוקטובר" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1563 +#: js/messages.php:117 libraries/common.lib.php:1575 msgid "Nov" msgstr "נובמבר" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1565 +#: js/messages.php:119 libraries/common.lib.php:1577 msgid "Dec" msgstr "דצמבר" @@ -1250,37 +1250,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1568 +#: js/messages.php:132 libraries/common.lib.php:1580 msgid "Sun" msgstr "יום ראשון" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1570 +#: js/messages.php:134 libraries/common.lib.php:1582 msgid "Mon" msgstr "יום שני" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1572 +#: js/messages.php:136 libraries/common.lib.php:1584 msgid "Tue" msgstr "יום שלישי" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1574 +#: js/messages.php:138 libraries/common.lib.php:1586 msgid "Wed" msgstr "יום רביעי" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1576 +#: js/messages.php:140 libraries/common.lib.php:1588 msgid "Thu" msgstr "יום חמישי" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1578 +#: js/messages.php:142 libraries/common.lib.php:1590 msgid "Fri" msgstr "יום שישי" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1580 +#: js/messages.php:144 libraries/common.lib.php:1592 msgid "Sat" msgstr "שבת" @@ -1354,77 +1354,77 @@ msgstr "בשימוש" msgid "Second" msgstr "לשנייה" -#: libraries/Config.class.php:1015 libraries/messages.inc.php:338 +#: libraries/Config.class.php:1015 libraries/messages.inc.php:334 msgid "Font size" msgstr "" #: libraries/File.class.php:344 libraries/File.class.php:432 #: libraries/File.class.php:569 libraries/File.class.php:708 -#: libraries/messages.inc.php:1201 +#: libraries/messages.inc.php:1197 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.class.php:414 libraries/messages.inc.php:1198 +#: libraries/File.class.php:414 libraries/messages.inc.php:1194 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:417 libraries/messages.inc.php:1197 +#: libraries/File.class.php:417 libraries/messages.inc.php:1193 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:420 libraries/messages.inc.php:1200 +#: libraries/File.class.php:420 libraries/messages.inc.php:1196 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:423 libraries/messages.inc.php:1199 +#: libraries/File.class.php:423 libraries/messages.inc.php:1195 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:426 libraries/messages.inc.php:1195 +#: libraries/File.class.php:426 libraries/messages.inc.php:1191 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:429 libraries/messages.inc.php:1196 +#: libraries/File.class.php:429 libraries/messages.inc.php:1192 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:908 libraries/messages.inc.php:319 +#: libraries/File.class.php:908 libraries/messages.inc.php:315 #, fuzzy msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "יכול להיות הערכה. ראה FAQ 3.11" -#: libraries/Index.class.php:428 libraries/messages.inc.php:554 +#: libraries/Index.class.php:428 libraries/messages.inc.php:550 #: tbl_relation.php:529 msgid "No index defined!" msgstr "אין אינדקסים מוגדרים!" -#: libraries/Index.class.php:433 libraries/messages.inc.php:411 +#: libraries/Index.class.php:433 libraries/messages.inc.php:407 #: server_databases.php:132 tbl_tracking.php:316 msgid "Indexes" msgstr "אינדקסים" -#: libraries/Index.class.php:444 libraries/messages.inc.php:1186 +#: libraries/Index.class.php:444 libraries/messages.inc.php:1182 #: 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:475 tbl_tracking.php:322 msgid "Unique" msgstr "ייחודי" -#: libraries/Index.class.php:445 libraries/messages.inc.php:596 +#: libraries/Index.class.php:445 libraries/messages.inc.php:592 #: tbl_tracking.php:323 msgid "Packed" msgstr "" -#: libraries/Index.class.php:447 libraries/messages.inc.php:131 +#: libraries/Index.class.php:447 libraries/messages.inc.php:127 #: tbl_tracking.php:325 msgid "Cardinality" msgstr "מספור" -#: libraries/Index.class.php:450 libraries/messages.inc.php:162 +#: libraries/Index.class.php:450 libraries/messages.inc.php:158 #: tbl_tracking.php:279 tbl_tracking.php:328 #, fuzzy msgid "Comment" @@ -1433,29 +1433,29 @@ msgstr "הערות" #: libraries/Index.class.php:466 libraries/common.lib.php:616 #: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:280 pdf_pages.php:280 +#: libraries/messages.inc.php:276 pdf_pages.php:280 #: setup/frames/index.inc.php:124 setup/lib/messages.inc.php:352 #: tbl_row_action.php:69 msgid "Edit" msgstr "עריכה" -#: libraries/Index.class.php:472 libraries/messages.inc.php:666 +#: libraries/Index.class.php:472 libraries/messages.inc.php:662 msgid "The primary key has been dropped" msgstr "המפתח הראשי הוסר" -#: libraries/Index.class.php:476 libraries/messages.inc.php:413 +#: libraries/Index.class.php:476 libraries/messages.inc.php:409 #, php-format msgid "Index %s has been dropped" msgstr "אינדקס %s הוסר" -#: libraries/Index.class.php:576 libraries/messages.inc.php:412 +#: libraries/Index.class.php:576 libraries/messages.inc.php:408 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "" -#: libraries/List_Database.class.php:431 libraries/messages.inc.php:218 +#: libraries/List_Database.class.php:431 libraries/messages.inc.php:214 #: libraries/server_links.inc.php:41 server_databases.php:88 #: server_privileges.php:1621 setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" @@ -1484,85 +1484,85 @@ msgid_plural "%1$d rows inserted." msgstr[0] "לא נבחרו שורות" msgstr[1] "לא נבחרו שורות" -#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:549 +#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:545 msgid "" "There is no detailed status information available for this storage engine." msgstr "אין מידע מצב מפורט על מנוע אחסון זה." -#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:291 +#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:287 #, php-format msgid "%s is available on this MySQL server." msgstr "%s זמין על שרת MySQL זה." -#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:292 +#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:288 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s מובטל על שרת MySQL זה." -#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:294 +#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:290 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "שרת MySQL לא תומך במנוע אחסון %s." -#: libraries/Table.class.php:1019 libraries/messages.inc.php:443 +#: libraries/Table.class.php:1019 libraries/messages.inc.php:439 msgid "Invalid database" msgstr "" -#: libraries/Table.class.php:1033 libraries/messages.inc.php:450 +#: libraries/Table.class.php:1033 libraries/messages.inc.php:446 #: tbl_get_field.php:26 msgid "Invalid table name" msgstr "" -#: libraries/Table.class.php:1048 libraries/messages.inc.php:301 +#: libraries/Table.class.php:1048 libraries/messages.inc.php:297 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "" -#: libraries/Table.class.php:1132 libraries/messages.inc.php:754 +#: libraries/Table.class.php:1132 libraries/messages.inc.php:750 #, php-format msgid "Table %s has been renamed to %s" msgstr "טבלה %s שונתה אל %s" -#: libraries/Theme.class.php:162 libraries/messages.inc.php:1099 +#: libraries/Theme.class.php:162 libraries/messages.inc.php:1095 #, php-format msgid "No valid image path for theme %s found!" msgstr "" -#: libraries/Theme.class.php:384 libraries/messages.inc.php:1097 +#: libraries/Theme.class.php:384 libraries/messages.inc.php:1093 msgid "No preview available." msgstr "" -#: libraries/Theme.class.php:387 libraries/messages.inc.php:1089 +#: libraries/Theme.class.php:387 libraries/messages.inc.php:1085 msgid "take it" msgstr "קח זאת" -#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1096 +#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1092 #, php-format msgid "Default theme %s not found!" msgstr "" -#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1098 +#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1094 #, php-format msgid "Theme %s not found!" msgstr "" -#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1100 +#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1096 #, php-format msgid "Theme path not found for theme %s!" msgstr "" -#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1101 +#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1097 #: test/theme.php:161 themes.php:21 themes.php:41 msgid "Theme / Style" msgstr "תבנית / סגנון" -#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:172 +#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:168 msgid "Cannot connect: invalid settings." msgstr "חיבור נכשל: הגדרות לא תקינות." #: libraries/auth/config.auth.lib.php:92 #: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65 -#: libraries/messages.inc.php:1238 test/theme.php:152 +#: libraries/messages.inc.php:1234 test/theme.php:152 #, php-format msgid "Welcome to %s" msgstr "ברוך הבא אל %s" @@ -1585,104 +1585,104 @@ msgstr "" "כתובת השרת, שם משתמש והסיסמא בקובץ config.inc.php ולוודא כי הם תואמים למידע " "שקיבלת ע\"י אחראי השרת של MySQL." -#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:488 +#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:484 msgid "Log in" msgstr "כניסה" #: libraries/auth/cookie.auth.lib.php:246 -#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:659 +#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:655 #: libraries/navigation_header.inc.php:93 #: libraries/navigation_header.inc.php:95 msgid "phpMyAdmin documentation" msgstr "תיעוד phpMyAdmin" #: libraries/auth/cookie.auth.lib.php:258 -#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:492 +#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:488 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:493 +#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:489 msgid "Server:" msgstr "שרת" -#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:494 +#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:490 msgid "Username:" msgstr "שם משתמש:" -#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:491 +#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:487 msgid "Password:" msgstr "סיסמא:" -#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:854 +#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:850 msgid "Server Choice" msgstr "בחירת שרת" #: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 -#: libraries/messages.inc.php:177 +#: libraries/messages.inc.php:173 msgid "Cookies must be enabled past this point." msgstr "עוגיות (Cookies) חייבות לפעול מנקודה זאת." #: libraries/auth/cookie.auth.lib.php:671 -#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:489 +#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:485 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" #: libraries/auth/cookie.auth.lib.php:675 -#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:544 +#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:540 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" #: libraries/auth/cookie.auth.lib.php:685 #: libraries/auth/cookie.auth.lib.php:687 -#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:126 +#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:122 msgid "Cannot log in to the MySQL server" msgstr "נכשל בכניסה לשרת MySQL" -#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1245 +#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1241 msgid "Wrong username/password. Access denied." msgstr "שם משתמש/סיסמה שגויים. הגישה נדחתה." #: libraries/auth/swekey/swekey.auth.lib.php:118 -#: libraries/messages.inc.php:1057 +#: libraries/messages.inc.php:1053 #, php-format msgid "File %s does not contain any key id" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:157 #: libraries/auth/swekey/swekey.auth.lib.php:180 -#: libraries/messages.inc.php:1056 +#: libraries/messages.inc.php:1052 msgid "Hardware authentication failed" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:166 -#: libraries/messages.inc.php:1058 +#: libraries/messages.inc.php:1054 msgid "No valid authentication key plugged" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:202 -#: libraries/messages.inc.php:1055 +#: libraries/messages.inc.php:1051 msgid "Authenticating..." msgstr "" -#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1230 +#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1226 msgid "View image" msgstr "" -#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:652 +#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:648 msgid "Play audio" msgstr "" -#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1232 +#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1228 msgid "View video" msgstr "" -#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:269 +#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:265 msgid "Download file" msgstr "" -#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:128 +#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:124 msgid "" "Couldn't load the iconv or recode extension needed for charset conversion. " "Either configure PHP to enable these extensions or disable charset " @@ -1693,7 +1693,7 @@ msgstr "" #: libraries/charset_conversion.lib.php:79 #: libraries/charset_conversion.lib.php:90 -#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:130 +#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:126 msgid "" "Couldn't use the iconv, libiconv, or recode_string functions, although the " "necessary extensions appear to be loaded. Check your PHP configuration." @@ -1701,7 +1701,7 @@ msgstr "" "נכשל בשימוש בפונקציות iconv, libiconv או recode, למרות שזה נראה כי התוספות " "הדרושות נטענו. בדוק את הגדרות PHP שלך." -#: libraries/common.inc.php:583 libraries/messages.inc.php:170 +#: libraries/common.inc.php:583 libraries/messages.inc.php:166 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!" @@ -1731,22 +1731,22 @@ msgstr "" msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:636 libraries/messages.inc.php:448 +#: libraries/common.inc.php:636 libraries/messages.inc.php:444 #, 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/messages.inc.php:856 libraries/select_server.lib.php:41 +#: libraries/messages.inc.php:852 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/messages.inc.php:437 +#: libraries/common.inc.php:823 libraries/messages.inc.php:433 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.lib.php:147 libraries/messages.inc.php:499 +#: libraries/common.lib.php:147 libraries/messages.inc.php:495 #, php-format msgid "Max: %s%s" msgstr "מירבי: %s%s" @@ -1768,7 +1768,7 @@ msgstr "נשלח" #: libraries/common.lib.php:428 libraries/common.lib.php:430 #: libraries/common.lib.php:432 libraries/common.lib.php:448 #: libraries/common.lib.php:450 libraries/dbg/setup.php:25 -#: libraries/display_export.lib.php:164 libraries/messages.inc.php:267 +#: libraries/display_export.lib.php:164 libraries/messages.inc.php:263 #: libraries/relation.lib.php:97 libraries/sql_query_form.lib.php:451 #: libraries/sql_query_form.lib.php:454 main.php:229 pdf_pages.php:37 #: pdf_pages.php:43 pdf_pages.php:49 pdf_pages.php:54 @@ -1778,56 +1778,56 @@ msgstr "תיעוד" #: libraries/common.lib.php:581 libraries/core.lib.php:234 #: libraries/core.lib.php:263 libraries/import.lib.php:134 -#: libraries/messages.inc.php:297 pdf_schema.php:32 pdf_schema.php:232 +#: libraries/messages.inc.php:293 pdf_schema.php:32 pdf_schema.php:232 #: tbl_change.php:1027 tbl_operations.php:213 tbl_relation.php:290 #: view_operations.php:62 msgid "Error" msgstr "שגיאה" #: libraries/common.lib.php:595 libraries/header_printview.inc.php:61 -#: libraries/messages.inc.php:1023 server_processlist.php:60 +#: libraries/messages.inc.php:1019 server_processlist.php:60 #: server_status.php:247 msgid "SQL query" msgstr "שאילתת SQL" -#: libraries/common.lib.php:634 libraries/messages.inc.php:538 +#: libraries/common.lib.php:634 libraries/messages.inc.php:534 msgid "MySQL said: " msgstr "MySQL אמר: " -#: libraries/common.lib.php:667 libraries/messages.inc.php:76 +#: libraries/common.lib.php:667 libraries/messages.inc.php:72 #: pdf_schema.php:241 user_password.php:115 msgid "Back" msgstr "חזרה" -#: libraries/common.lib.php:1177 libraries/messages.inc.php:309 +#: libraries/common.lib.php:1177 libraries/messages.inc.php:305 #: setup/lib/messages.inc.php:353 msgid "Explain SQL" msgstr "הסברת SQL" -#: libraries/common.lib.php:1180 libraries/messages.inc.php:551 +#: libraries/common.lib.php:1180 libraries/messages.inc.php:547 msgid "Skip Explain SQL" msgstr "Skip Explain SQL" -#: libraries/common.lib.php:1212 libraries/messages.inc.php:563 +#: libraries/common.lib.php:1212 libraries/messages.inc.php:559 msgid "Without PHP Code" msgstr "ללא קוד PHP" -#: libraries/common.lib.php:1215 libraries/messages.inc.php:649 +#: libraries/common.lib.php:1215 libraries/messages.inc.php:645 #: setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "ייצור קוד PHP" -#: libraries/common.lib.php:1233 libraries/messages.inc.php:737 +#: libraries/common.lib.php:1233 libraries/messages.inc.php:733 #: server_status.php:341 setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "רענון" -#: libraries/common.lib.php:1242 libraries/messages.inc.php:575 +#: libraries/common.lib.php:1242 libraries/messages.inc.php:571 #, fuzzy msgid "Skip Validate SQL" msgstr "בדיקת תקינות SQL" -#: libraries/common.lib.php:1245 libraries/messages.inc.php:1220 +#: libraries/common.lib.php:1245 libraries/messages.inc.php:1216 #: setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "בדיקת תקינות SQL" @@ -1843,11 +1843,11 @@ msgid "Inline" msgstr "מנועים" #: libraries/common.lib.php:1332 libraries/common.lib.php:1347 -#: libraries/messages.inc.php:713 +#: libraries/messages.inc.php:709 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1351 libraries/messages.inc.php:1108 +#: libraries/common.lib.php:1351 libraries/messages.inc.php:1104 #: libraries/tbl_triggers.lib.php:28 server_processlist.php:58 msgid "Time" msgstr "זמן" @@ -1881,46 +1881,56 @@ msgstr "PB" msgid "EiB" msgstr "EB" +#. l10n: Thousands separator +#: libraries/common.lib.php:1417 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: libraries/common.lib.php:1419 +msgid "." +msgstr "." + #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1584 +#: libraries/common.lib.php:1596 #: libraries/transformations/text_plain__dateformat.inc.php:28 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y at %I:%M %p" -#: libraries/common.lib.php:1886 +#: libraries/common.lib.php:1898 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s ימים, %s שעות, %s דקות ו- %s שניות" -#: libraries/common.lib.php:2301 libraries/common.lib.php:2304 -#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:664 +#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:660 #: server_status.php:608 msgid "Begin" msgstr "התחלה" -#: libraries/common.lib.php:2302 libraries/common.lib.php:2305 -#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:665 +#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:661 #: server_binlog.php:168 server_binlog.php:170 msgid "Previous" msgstr "הקודם" -#: libraries/common.lib.php:2333 libraries/common.lib.php:2336 -#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:289 +#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:285 msgid "End" msgstr "סיום" -#: libraries/common.lib.php:2409 libraries/messages.inc.php:455 +#: libraries/common.lib.php:2421 libraries/messages.inc.php:451 #, php-format msgid "Jump to database "%s"." msgstr "קפיצה אל מאגר נתונים "%s"." -#: libraries/common.lib.php:2429 libraries/messages.inc.php:461 +#: libraries/common.lib.php:2441 libraries/messages.inc.php:457 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/core.lib.php:286 libraries/dbg/setup.php:22 -#: libraries/messages.inc.php:127 +#: libraries/messages.inc.php:123 #, php-format msgid "" "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " @@ -1928,116 +1938,116 @@ msgid "" msgstr "התוספת %s לא נטענה בהצלחה,
אנא בדוק את הגדרות ה- PHP שלך." #: libraries/db_events.inc.php:20 libraries/db_events.inc.php:22 -#: libraries/export/sql.php:415 libraries/messages.inc.php:306 +#: libraries/export/sql.php:415 libraries/messages.inc.php:302 msgid "Events" msgstr "" #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 -#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:541 +#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:537 #: libraries/tbl_triggers.lib.php:27 setup/frames/index.inc.php:112 msgid "Name" msgstr "שם" -#: libraries/db_links.inc.php:45 libraries/messages.inc.php:216 +#: libraries/db_links.inc.php:45 libraries/messages.inc.php:212 #, php-format msgid "Database %s has been dropped." msgstr "מסד הנתונים %s נמחק." #: libraries/db_links.inc.php:57 libraries/db_links.inc.php:58 -#: libraries/db_links.inc.php:59 libraries/messages.inc.php:234 +#: libraries/db_links.inc.php:59 libraries/messages.inc.php:230 msgid "Database seems to be empty!" msgstr "" -#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1025 +#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1021 #: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60 #: querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1152 +#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1148 #: libraries/tbl_links.inc.php:69 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:86 libraries/messages.inc.php:719 +#: libraries/db_links.inc.php:86 libraries/messages.inc.php:715 msgid "Query" msgstr "שאילתה" -#: libraries/db_links.inc.php:91 libraries/messages.inc.php:253 +#: libraries/db_links.inc.php:91 libraries/messages.inc.php:249 msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:98 libraries/messages.inc.php:397 +#: libraries/db_links.inc.php:98 libraries/messages.inc.php:393 #: libraries/server_links.inc.php:88 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:104 libraries/messages.inc.php:587 +#: libraries/db_links.inc.php:104 libraries/messages.inc.php:583 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" msgstr "פעולות" -#: libraries/db_links.inc.php:111 libraries/messages.inc.php:709 +#: libraries/db_links.inc.php:111 libraries/messages.inc.php:705 #: libraries/server_links.inc.php:66 server_privileges.php:72 #: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117 msgid "Privileges" msgstr "הרשאות" #: libraries/db_routines.inc.php:30 libraries/db_routines.inc.php:32 -#: libraries/messages.inc.php:812 +#: libraries/messages.inc.php:808 msgid "Routines" msgstr "" -#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:811 +#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:807 msgid "Return type" msgstr "" #: libraries/db_structure.lib.php:57 libraries/display_tbl.lib.php:1848 -#: libraries/messages.inc.php:65 +#: libraries/messages.inc.php:61 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "יכול להיות הערכה. ראה FAQ 3.11" -#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:593 +#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:589 #: server_databases.php:142 tbl_printview.php:336 tbl_structure.php:683 msgid "Overhead" msgstr "תקורה" #: libraries/dbi/mysql.dbi.lib.php:112 libraries/dbi/mysqli.dbi.lib.php:124 -#: libraries/messages.inc.php:176 +#: libraries/messages.inc.php:172 msgid "Connection for controluser as defined in your configuration failed." msgstr "" #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 -#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:855 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:851 msgid "The server is not responding" msgstr "השרת אינו מגיב" #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:1010 +#: libraries/messages.inc.php:1006 msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "" -#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:255 +#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:251 #: tbl_structure.php:609 msgid "Details..." msgstr "" -#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:143 +#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:139 #: main.php:91 user_password.php:111 user_password.php:129 msgid "Change password" msgstr "שינוי סיסמא" -#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:561 +#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:557 #: libraries/replication_gui.lib.php:341 server_privileges.php:768 msgid "No Password" msgstr "ללא סיסמא" -#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:610 +#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:606 #: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60 #: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335 #: libraries/replication_gui.lib.php:345 server_privileges.php:757 @@ -2046,13 +2056,13 @@ msgstr "ללא סיסמא" msgid "Password" msgstr "סיסמא" -#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:806 +#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:802 #: libraries/replication_gui.lib.php:349 libraries/replication_gui.lib.php:352 #: server_privileges.php:776 server_privileges.php:779 msgid "Re-type" msgstr "הקלדה נוספת" -#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:608 +#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:604 msgid "Password Hashing" msgstr "" @@ -2062,90 +2072,90 @@ msgstr "" msgid "MySQL 4.0 compatible" msgstr "תואם MySQL 4.0" -#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:353 +#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:349 #: libraries/replication_gui.lib.php:356 server_privileges.php:783 msgid "Generate Password" msgstr "ייצור סיסמא" -#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:352 +#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:348 #: libraries/replication_gui.lib.php:359 server_privileges.php:786 msgid "Generate" msgstr "ייצור" #: libraries/display_create_database.lib.php:22 -#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:189 +#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:185 msgid "Create new database" msgstr "יצירת מאגר נתונים חדש" -#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:185 +#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:181 msgid "Create" msgstr "יצירה" -#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:564 +#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:560 #: server_privileges.php:74 server_privileges.php:1388 #: server_replication.php:35 msgid "No Privileges" msgstr "ללא הרשאות" -#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:445 +#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:441 msgid "Table must have at least one field." msgstr "טבלה חייבית להכיל לפחות שדה אחד." -#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:190 +#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:186 #, php-format msgid "Create table on database %s" msgstr "יצירת טבלה חדשה על מאגר נתונים %s" -#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:577 +#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:573 msgid "Number of fields" msgstr "מספר שדות" -#: libraries/display_export.lib.php:42 libraries/messages.inc.php:124 +#: libraries/display_export.lib.php:42 libraries/messages.inc.php:120 msgid "Could not load export plugins, please check your installation!" msgstr "" -#: libraries/display_export.lib.php:107 libraries/messages.inc.php:277 +#: libraries/display_export.lib.php:107 libraries/messages.inc.php:273 #, php-format msgid "Dump %s row(s) starting at record # %s" msgstr "הוצאת %s שורות מתחילת רשומה מספר %s." -#: libraries/display_export.lib.php:115 libraries/messages.inc.php:274 +#: libraries/display_export.lib.php:115 libraries/messages.inc.php:270 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:125 libraries/messages.inc.php:852 +#: libraries/display_export.lib.php:125 libraries/messages.inc.php:848 #: setup/lib/messages.inc.php:82 msgid "Save as file" msgstr "שמירה כקובץ" -#: libraries/display_export.lib.php:134 libraries/messages.inc.php:828 +#: libraries/display_export.lib.php:134 libraries/messages.inc.php:824 #, php-format msgid "Save on server in %s directory" msgstr "שמירת שרת בתוך תיקיית %s" -#: libraries/display_export.lib.php:142 libraries/messages.inc.php:594 +#: libraries/display_export.lib.php:142 libraries/messages.inc.php:590 #: setup/lib/messages.inc.php:90 msgid "Overwrite existing file(s)" msgstr "" -#: libraries/display_export.lib.php:148 libraries/messages.inc.php:330 +#: libraries/display_export.lib.php:148 libraries/messages.inc.php:326 msgid "File name template" msgstr "תבנית שם קובץ" -#: libraries/display_export.lib.php:152 libraries/messages.inc.php:327 +#: libraries/display_export.lib.php:152 libraries/messages.inc.php:323 #, fuzzy msgid "server name" msgstr "שם משתמש" -#: libraries/display_export.lib.php:155 libraries/messages.inc.php:326 +#: libraries/display_export.lib.php:155 libraries/messages.inc.php:322 msgid "database name" msgstr "" -#: libraries/display_export.lib.php:158 libraries/messages.inc.php:328 +#: libraries/display_export.lib.php:158 libraries/messages.inc.php:324 msgid "table name" msgstr "" -#: libraries/display_export.lib.php:162 libraries/messages.inc.php:329 +#: libraries/display_export.lib.php:162 libraries/messages.inc.php:325 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2153,24 +2163,24 @@ msgid "" "3$s. Other text will be kept as is." msgstr "" -#: libraries/display_export.lib.php:202 libraries/messages.inc.php:331 +#: libraries/display_export.lib.php:202 libraries/messages.inc.php:327 msgid "remember template" msgstr "זכור תבנית" #: libraries/display_export.lib.php:210 libraries/display_import.lib.php:178 -#: libraries/display_import.lib.php:191 libraries/messages.inc.php:145 +#: libraries/display_import.lib.php:191 libraries/messages.inc.php:141 #: libraries/sql_query_form.lib.php:549 msgid "Character set of the file:" msgstr "חבילת הקידוד של הקובץ:" -#: libraries/display_export.lib.php:235 libraries/messages.inc.php:166 +#: libraries/display_export.lib.php:235 libraries/messages.inc.php:162 #: setup/lib/messages.inc.php:84 msgid "Compression" 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/messages.inc.php:558 +#: libraries/export/sql.php:868 libraries/messages.inc.php:554 #: libraries/tbl_properties.inc.php:575 server_privileges.php:1836 #: server_processlist.php:75 msgid "None" @@ -2194,467 +2204,467 @@ msgstr "\"gzipped\"" msgid "bzipped" msgstr "\"bzipped\"" -#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1018 +#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1014 msgid "SQL compatibility mode" msgstr "" -#: libraries/display_import.lib.php:67 libraries/messages.inc.php:398 +#: libraries/display_import.lib.php:67 libraries/messages.inc.php:394 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " "browsers." msgstr "" -#: libraries/display_import.lib.php:77 libraries/messages.inc.php:406 +#: libraries/display_import.lib.php:77 libraries/messages.inc.php:402 msgid "The file is being processed, please be patient." msgstr "" -#: libraries/display_import.lib.php:99 libraries/messages.inc.php:408 +#: libraries/display_import.lib.php:99 libraries/messages.inc.php:404 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." msgstr "" -#: libraries/display_import.lib.php:126 libraries/messages.inc.php:333 +#: libraries/display_import.lib.php:126 libraries/messages.inc.php:329 msgid "File to import" msgstr "" -#: libraries/display_import.lib.php:137 libraries/messages.inc.php:486 +#: libraries/display_import.lib.php:137 libraries/messages.inc.php:482 #: libraries/sql_query_form.lib.php:524 msgid "Location of the text file" msgstr "מיקום של קובץ טקסט" -#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1203 +#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1199 msgid "File uploads are not allowed on this server." msgstr "" -#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1235 +#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1231 #: libraries/sql_query_form.lib.php:533 tbl_change.php:1028 msgid "The directory you set for upload work cannot be reached" msgstr "" -#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1236 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1232 #: libraries/sql_query_form.lib.php:536 tbl_change.php:1031 #, fuzzy msgid "web server upload directory" msgstr "שמירת שרת בתוך תיקיית %s" -#: libraries/display_import.lib.php:212 libraries/messages.inc.php:167 +#: libraries/display_import.lib.php:212 libraries/messages.inc.php:163 #, php-format msgid "Imported file compression will be automatically detected from: %s" msgstr "" -#: libraries/display_import.lib.php:219 libraries/messages.inc.php:600 +#: libraries/display_import.lib.php:219 libraries/messages.inc.php:596 msgid "Partial import" msgstr "" -#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1105 +#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1101 #, php-format msgid "" "Previous import timed out, after resubmitting will continue from position %d." msgstr "" -#: libraries/display_import.lib.php:232 libraries/messages.inc.php:51 +#: libraries/display_import.lib.php:232 libraries/messages.inc.php:47 msgid "" "Allow the interruption of an import in case the script detects it is close " "to the PHP timeout limit. This might be good way to import large files, " "however it can break transactions." msgstr "" -#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1004 +#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1000 #: setup/lib/messages.inc.php:161 msgid "Number of records (queries) to skip from start" msgstr "" -#: libraries/display_import.lib.php:255 libraries/messages.inc.php:396 +#: libraries/display_import.lib.php:255 libraries/messages.inc.php:392 #: setup/lib/messages.inc.php:160 msgid "Format of imported file" msgstr "" #: libraries/display_select_lang.lib.php:45 -#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:465 +#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:461 #: setup/frames/index.inc.php:70 msgid "Language" msgstr "" -#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:447 +#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:443 #, php-format msgid "%d is not valid row number." msgstr "%d הוא לא מספר שורה תקין." -#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:814 +#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:810 msgid "row(s) starting from record #" msgstr "שורות המתחילות מרשומה #" -#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:817 +#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:813 msgid "horizontal" msgstr "מאוזן" -#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:816 +#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:812 msgid "horizontal (rotated headers)" msgstr "מאוזן (headers מסובבים)" -#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:819 +#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:815 msgid "vertical" msgstr "ניצב" -#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:818 +#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:814 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "במצב %s וחזור אחרי Headers לאחר %s תאים" -#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:495 +#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:491 msgid "This operation could take a long time. Proceed anyway?" msgstr "תהליך זה יכול לקחת זמן רב. להמשיך בכל מקרה?" -#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1012 +#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1008 msgid "Sort by key" msgstr "" #: libraries/display_tbl.lib.php:555 libraries/import.lib.php:1082 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:591 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:587 #: tbl_select.php:267 tbl_structure.php:754 #, fuzzy msgid "Options" msgstr "פעולות" #: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:570 -#: libraries/messages.inc.php:601 +#: libraries/messages.inc.php:597 msgid "Partial Texts" msgstr "טקסטים חלקיים" #: libraries/display_tbl.lib.php:561 libraries/display_tbl.lib.php:574 -#: libraries/messages.inc.php:346 +#: libraries/messages.inc.php:342 msgid "Full Texts" msgstr "טקסטים מלאים" -#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:739 +#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:735 #, fuzzy msgid "Relational key" msgstr "תצוגת יחסים" -#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:738 +#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:734 msgid "Relational display field" msgstr "" -#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:872 +#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:868 msgid "Show binary contents" msgstr "" -#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:873 +#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:869 msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:871 +#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:867 msgid "Show binary contents as HEX" msgstr "" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:375 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:371 #: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320 msgid "Hide" msgstr "" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:508 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:504 #: libraries/tbl_properties.inc.php:144 transformation_overview.php:47 #, fuzzy msgid "Browser transformation" msgstr "שינויי צורה זמינים" #: libraries/display_tbl.lib.php:1126 libraries/display_tbl.lib.php:1130 -#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:308 +#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:304 msgid "Execute bookmarked query" msgstr "הרצת שאילתה מועדפת" #: libraries/display_tbl.lib.php:1145 libraries/display_tbl.lib.php:1157 -#: libraries/messages.inc.php:244 +#: libraries/messages.inc.php:240 msgid "The row has been deleted" msgstr "השורה נמחקה" #: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056 -#: libraries/messages.inc.php:460 server_processlist.php:71 +#: libraries/messages.inc.php:456 server_processlist.php:71 #: tbl_row_action.php:64 msgid "Kill" msgstr "" -#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:849 +#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:845 msgid "in query" msgstr "בשאילתה" -#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:881 +#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:877 msgid "Showing rows" msgstr "מראה שורות" -#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1113 +#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1109 msgid "total" msgstr "סה\"כ" -#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:727 +#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:723 #: sql.php:524 #, php-format msgid "Query took %01.4f sec" msgstr "שאילתה לקחה %01.4f שניות" -#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:135 +#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:131 #: 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:471 msgid "Change" msgstr "שינוי" -#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:724 +#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:720 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:671 +#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:667 msgid "Print view (with full texts)" msgstr "תצוגת הדפסה (עם טקסטים מלאים)" -#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:482 +#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:478 msgid "Link not found" msgstr "קישור לא נמצא" -#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1224 +#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1220 #: main.php:228 msgid "Version information" msgstr "מידע גרסאות" -#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:423 +#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:419 msgid "Data home directory" msgstr "תיקיית בית של נתונים" -#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:424 +#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:420 msgid "The common part of the directory path for all InnoDB data files." msgstr "" -#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:422 +#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:418 msgid "Data files" msgstr "קבצי נתונים" -#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:418 +#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:414 msgid "Autoextend increment" msgstr "" -#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:419 +#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:415 msgid "" " The increment size for extending the size of an autoextending tablespace " "when it becomes full." msgstr "" -#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:420 +#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:416 msgid "Buffer pool size" msgstr "" -#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:421 +#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:417 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." msgstr "" -#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:112 +#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:108 msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:426 +#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:422 #: server_status.php:306 msgid "InnoDB Status" msgstr "מצב InnoDB" -#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:113 +#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:109 msgid "Buffer Pool Usage" msgstr "" -#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1114 +#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1110 #: server_databases.php:137 server_databases.php:305 server_status.php:414 #: server_status.php:475 server_status.php:496 tbl_printview.php:351 #: tbl_structure.php:697 msgid "Total" msgstr "סה\"כ" -#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:425 +#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:421 msgid "pages" msgstr "דפים" -#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:343 +#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:339 msgid "Free pages" msgstr "דפים חופשיים" -#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:259 +#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:255 msgid "Dirty pages" msgstr "דפים מלוכלכים" -#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:230 +#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:226 msgid "Pages containing data" msgstr "דפים מכילים מידע" -#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:598 +#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:594 msgid "Pages to be flushed" msgstr "דפים לריקון" -#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:119 +#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:115 msgid "Busy pages" msgstr "עמודים עסוקים" -#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:467 +#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:463 msgid "Latched pages" msgstr "" -#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:111 +#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:107 msgid "Buffer Pool Activity" msgstr "" -#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:731 +#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:727 #, fuzzy msgid "Read requests" msgstr "בקשות כתיבה" -#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1244 +#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1240 msgid "Write requests" msgstr "בקשות כתיבה" -#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:115 +#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:111 msgid "Read misses" msgstr "" -#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:117 +#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:113 msgid "Write waits" msgstr "" -#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:114 +#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:110 msgid "Read misses in %" msgstr "" -#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:116 +#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:112 msgid "Write waits in %" msgstr "" -#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:522 +#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:518 msgid "Data pointer size" msgstr "" -#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:523 +#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:519 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." msgstr "" -#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:528 +#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:524 msgid "Automatic recovery mode" msgstr "" -#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:529 +#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:525 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." msgstr "" -#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:527 +#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:523 msgid "Maximum size for temporary sort files" msgstr "" -#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:526 +#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:522 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " "INFILE)." msgstr "" -#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:525 +#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:521 msgid "Maximum size for temporary files on index creation" msgstr "" -#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:524 +#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:520 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " "method." msgstr "" -#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:531 +#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:527 msgid "Repair threads" msgstr "" -#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:530 +#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:526 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." msgstr "" -#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:533 +#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:529 msgid "Sort buffer size" msgstr "" -#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:532 +#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:528 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." msgstr "" -#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:620 +#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:616 msgid "Index cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:619 +#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:615 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." msgstr "" -#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:630 +#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:626 msgid "Record cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:629 +#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:625 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " "to the handle data (.xtd) and row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:624 +#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:620 msgid "Log cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:623 +#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:619 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:628 +#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:624 msgid "Log file threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:627 +#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:623 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:634 +#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:630 msgid "Transaction buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:633 +#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:629 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." msgstr "" -#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:611 +#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:607 msgid "Checkpoint frequency" msgstr "" -#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:612 +#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:608 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." msgstr "" -#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:615 +#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:611 msgid "Data log threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:616 +#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:612 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -2662,48 +2672,48 @@ msgid "" "that can be stored in the database." msgstr "" -#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:618 +#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:614 msgid "Garbage threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:617 +#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:613 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." msgstr "" -#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:622 +#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:618 msgid "Log buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:621 +#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:617 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " "required to write a data log." msgstr "" -#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:613 +#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:609 msgid "Data file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:614 +#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:610 msgid "The grow size of the handle data (.xtd) files." msgstr "" -#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:632 +#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:628 msgid "Row file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:631 +#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:627 msgid "The grow size of the row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:626 +#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:622 msgid "Log file count" msgstr "" -#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:625 +#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:621 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -2713,19 +2723,19 @@ msgstr "" #: libraries/export/htmlword.php:132 libraries/export/odt.php:168 #: libraries/export/sql.php:881 libraries/export/texytext.php:130 -#: libraries/messages.inc.php:275 +#: libraries/messages.inc.php:271 msgid "Dumping data for table" msgstr "הוצאת מידע עבור טבלה" #: libraries/export/htmlword.php:185 libraries/export/odt.php:238 #: libraries/export/sql.php:785 libraries/export/texytext.php:177 -#: libraries/messages.inc.php:1086 +#: libraries/messages.inc.php:1082 msgid "Table structure for table" msgstr "מבנה טבלה עבור טבלה" #: libraries/export/latex.php:125 libraries/export/sql.php:232 #: libraries/export/xml.php:102 libraries/header_printview.inc.php:57 -#: libraries/messages.inc.php:381 libraries/replication_gui.lib.php:63 +#: libraries/messages.inc.php:377 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:170 libraries/replication_gui.lib.php:265 #: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325 #: server_privileges.php:692 server_privileges.php:695 @@ -2737,189 +2747,189 @@ msgstr "מארח" #: libraries/export/latex.php:130 libraries/export/sql.php:233 #: libraries/export/xml.php:107 libraries/header_printview.inc.php:59 -#: libraries/messages.inc.php:354 +#: libraries/messages.inc.php:350 msgid "Generation Time" msgstr "זמן ייצור" #: libraries/export/latex.php:131 libraries/export/sql.php:235 -#: libraries/export/xml.php:108 libraries/messages.inc.php:864 main.php:186 +#: libraries/export/xml.php:108 libraries/messages.inc.php:860 main.php:186 msgid "Server version" msgstr "גרסת שרת" #: libraries/export/latex.php:132 libraries/export/sql.php:236 -#: libraries/export/xml.php:109 libraries/messages.inc.php:651 +#: libraries/export/xml.php:109 libraries/messages.inc.php:647 msgid "PHP Version" msgstr "גרסת PHP" #: libraries/export/latex.php:201 libraries/export/sql.php:868 -#: libraries/messages.inc.php:226 server_databases.php:127 +#: libraries/messages.inc.php:222 server_databases.php:127 #: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317 #: tbl_structure.php:666 msgid "Data" msgstr "נתונים" -#: libraries/export/odt.php:318 libraries/messages.inc.php:506 +#: libraries/export/odt.php:318 libraries/messages.inc.php:502 #: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "סוג MIME" -#: libraries/export/sql.php:387 libraries/messages.inc.php:711 +#: libraries/export/sql.php:387 libraries/messages.inc.php:707 #, fuzzy msgid "Procedures" msgstr "תהליכים" -#: libraries/export/sql.php:401 libraries/messages.inc.php:348 +#: libraries/export/sql.php:401 libraries/messages.inc.php:344 #, fuzzy msgid "Functions" msgstr "פונקציה" -#: libraries/export/sql.php:618 libraries/messages.inc.php:174 +#: libraries/export/sql.php:618 libraries/messages.inc.php:170 msgid "Constraints for dumped tables" msgstr "הגבלות לטבלאות שהוצאו" -#: libraries/export/sql.php:627 libraries/messages.inc.php:175 +#: libraries/export/sql.php:627 libraries/messages.inc.php:171 msgid "Constraints for table" msgstr "הגבלות לטבלה" -#: libraries/export/sql.php:727 libraries/messages.inc.php:512 +#: libraries/export/sql.php:727 libraries/messages.inc.php:508 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/export/sql.php:739 libraries/messages.inc.php:743 +#: libraries/export/sql.php:739 libraries/messages.inc.php:739 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/export/sql.php:796 libraries/messages.inc.php:1178 +#: libraries/export/sql.php:796 libraries/messages.inc.php:1174 #: libraries/tbl_triggers.lib.php:19 msgid "Triggers" msgstr "" -#: libraries/export/sql.php:808 libraries/messages.inc.php:1046 +#: libraries/export/sql.php:808 libraries/messages.inc.php:1042 #, fuzzy msgid "Structure for view" msgstr "מבנה בלבד" -#: libraries/export/sql.php:817 libraries/messages.inc.php:1029 +#: libraries/export/sql.php:817 libraries/messages.inc.php:1025 msgid "Stand-in structure for view" msgstr "" #: libraries/footer.inc.php:184 libraries/footer.inc.php:195 -#: libraries/footer.inc.php:198 libraries/messages.inc.php:586 +#: libraries/footer.inc.php:198 libraries/messages.inc.php:582 msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/header.inc.php:115 libraries/messages.inc.php:542 +#: libraries/header.inc.php:115 libraries/messages.inc.php:538 #, fuzzy msgid "New table" msgstr "אין טבלאות" #: libraries/header_printview.inc.php:50 libraries/header_printview.inc.php:55 -#: libraries/messages.inc.php:1024 +#: libraries/messages.inc.php:1020 msgid "SQL result" msgstr "תוצאת SQL" -#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:350 +#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:346 msgid "Generated by" msgstr "נוצר ע\"י" #: libraries/header_printview.inc.php:63 libraries/import.lib.php:145 -#: libraries/messages.inc.php:820 navigation.php:652 navigation.php:674 +#: libraries/messages.inc.php:816 navigation.php:652 navigation.php:674 #: server_databases.php:122 tbl_printview.php:394 tbl_structure.php:366 #: tbl_structure.php:778 msgid "Rows" msgstr "שורות" -#: libraries/import.lib.php:150 libraries/messages.inc.php:285 sql.php:520 +#: libraries/import.lib.php:150 libraries/messages.inc.php:281 sql.php:520 #: tbl_change.php:181 tbl_get_field.php:35 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL החזיר חבילת תוצאות ריקה (לדוגמא, אפס שורות)." -#: libraries/import.lib.php:1078 libraries/messages.inc.php:399 +#: libraries/import.lib.php:1078 libraries/messages.inc.php:395 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1079 libraries/messages.inc.php:400 +#: libraries/import.lib.php:1079 libraries/messages.inc.php:396 msgid "View a structure`s contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1080 libraries/messages.inc.php:401 +#: libraries/import.lib.php:1080 libraries/messages.inc.php:397 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1081 libraries/messages.inc.php:402 +#: libraries/import.lib.php:1081 libraries/messages.inc.php:398 msgid "Edit its structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1084 libraries/messages.inc.php:362 +#: libraries/import.lib.php:1084 libraries/messages.inc.php:358 #, fuzzy msgid "Go to database" msgstr "אין מאגרי נתונים" #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:869 +#: libraries/messages.inc.php:865 msgid "settings" msgstr "" -#: libraries/import.lib.php:1106 libraries/messages.inc.php:363 +#: libraries/import.lib.php:1106 libraries/messages.inc.php:359 msgid "Go to table" msgstr "" -#: libraries/import.lib.php:1109 libraries/messages.inc.php:1047 +#: libraries/import.lib.php:1109 libraries/messages.inc.php:1043 #, fuzzy msgid "structure" msgstr "מבנה" -#: libraries/import.lib.php:1115 libraries/messages.inc.php:364 +#: libraries/import.lib.php:1115 libraries/messages.inc.php:360 msgid "Go to view" msgstr "" #: libraries/import/csv.php:58 libraries/import/csv.php:70 #: libraries/import/csv.php:74 libraries/import/csv.php:78 -#: libraries/messages.inc.php:442 +#: libraries/messages.inc.php:438 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "" -#: libraries/import/csv.php:59 libraries/messages.inc.php:323 +#: libraries/import/csv.php:59 libraries/messages.inc.php:319 msgid "Fields terminated by" msgstr "סיום שדות ע\"י" -#: libraries/import/csv.php:71 libraries/messages.inc.php:320 +#: libraries/import/csv.php:71 libraries/messages.inc.php:316 msgid "Fields enclosed by" msgstr "שדות מוקפים ע\"י" -#: libraries/import/csv.php:75 libraries/messages.inc.php:321 +#: libraries/import/csv.php:75 libraries/messages.inc.php:317 msgid "Fields escaped by" msgstr "הורדת שדות עם" -#: libraries/import/csv.php:79 libraries/messages.inc.php:481 +#: libraries/import/csv.php:79 libraries/messages.inc.php:477 msgid "Lines terminated by" msgstr "שורות מסתיימות ע\"י" -#: libraries/import/csv.php:119 libraries/messages.inc.php:439 +#: libraries/import/csv.php:119 libraries/messages.inc.php:435 #, php-format msgid "Invalid column (%s) specified!" msgstr "" #: libraries/import/csv.php:177 libraries/import/csv.php:424 -#: libraries/messages.inc.php:441 +#: libraries/messages.inc.php:437 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/import/csv.php:312 libraries/messages.inc.php:440 +#: libraries/import/csv.php:312 libraries/messages.inc.php:436 #, php-format msgid "Invalid field count in CSV input on line %d." msgstr "" -#: libraries/import/ldi.php:55 libraries/messages.inc.php:446 +#: libraries/import/ldi.php:55 libraries/messages.inc.php:442 msgid "This plugin does not support compressed imports!" msgstr "" #: libraries/import/xml.php:74 libraries/import/xml.php:130 -#: libraries/messages.inc.php:1247 +#: libraries/messages.inc.php:1243 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -2948,575 +2958,565 @@ msgstr "" msgid "ltr" msgstr "rtl" -#. l10n: Thousands separator -#: libraries/messages.inc.php:21 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: libraries/messages.inc.php:23 -msgid "." -msgstr "." - -#: libraries/messages.inc.php:25 server_status.php:461 +#: libraries/messages.inc.php:21 server_status.php:461 msgid "Aborted" msgstr "בוטל" -#: libraries/messages.inc.php:28 main.php:68 +#: libraries/messages.inc.php:24 main.php:68 #, fuzzy msgid "Actions" msgstr "פעולה" -#: libraries/messages.inc.php:34 libraries/tbl_properties.inc.php:780 +#: libraries/messages.inc.php:30 libraries/tbl_properties.inc.php:780 #: tbl_structure.php:543 #, php-format msgid "Add %s field(s)" msgstr "הוספת %s תאים" -#: libraries/messages.inc.php:35 +#: libraries/messages.inc.php:31 msgid "Add custom comment into header (\\n splits lines)" msgstr "הוספת הערה מותאמת אל פתיחה(\\n לשבירת שורות)" -#: libraries/messages.inc.php:36 +#: libraries/messages.inc.php:32 msgid "Add into comments" msgstr "הוספה אל הערות" -#: libraries/messages.inc.php:37 tbl_structure.php:541 +#: libraries/messages.inc.php:33 tbl_structure.php:541 msgid "Add new field" msgstr "הוספת שדה חדש" -#: libraries/messages.inc.php:38 server_privileges.php:1886 +#: libraries/messages.inc.php:34 server_privileges.php:1886 msgid "Add privileges on the following database" msgstr "הוספת הרשאות למאגר הנתונים הבא" -#: libraries/messages.inc.php:39 server_privileges.php:1907 +#: libraries/messages.inc.php:35 server_privileges.php:1907 msgid "Add privileges on the following table" msgstr "הוספת הראשאות לטבלה הבאה" -#: libraries/messages.inc.php:40 tbl_select.php:288 +#: libraries/messages.inc.php:36 tbl_select.php:288 msgid "Add search conditions (body of the \"where\" clause):" msgstr "הוספת תנאי חיפוש (הגוף של תנאי \"where\"):" -#: libraries/messages.inc.php:41 tbl_indexes.php:251 +#: libraries/messages.inc.php:37 tbl_indexes.php:251 #, php-format msgid "Add to index  %s column(s)" msgstr "הוספה לאינדקס  %s שורה/שורות" -#: libraries/messages.inc.php:42 server_privileges.php:1570 +#: libraries/messages.inc.php:38 server_privileges.php:1570 #: server_privileges.php:1594 server_privileges.php:1988 #: server_privileges.php:2177 msgid "Add a new User" msgstr "הוספת משתמש חדש" -#: libraries/messages.inc.php:43 server_privileges.php:931 +#: libraries/messages.inc.php:39 server_privileges.php:931 msgid "You have added a new user." msgstr "משתמש חדש נוסף." -#: libraries/messages.inc.php:44 server_privileges.php:571 +#: libraries/messages.inc.php:40 server_privileges.php:571 msgid "Administration" msgstr "ניהול" -#: libraries/messages.inc.php:45 tbl_structure.php:557 +#: libraries/messages.inc.php:41 tbl_structure.php:557 #, php-format msgid "After %s" msgstr "לאחר %s" -#: libraries/messages.inc.php:46 tbl_change.php:1147 +#: libraries/messages.inc.php:42 tbl_change.php:1147 msgid "Go back to previous page" msgstr "חזרה לעמוד הקודם" -#: libraries/messages.inc.php:47 tbl_change.php:1148 +#: libraries/messages.inc.php:43 tbl_change.php:1148 msgid "Insert another new row" msgstr "הוספה נוספת של שורה חדשה" -#: libraries/messages.inc.php:48 tbl_change.php:1160 +#: libraries/messages.inc.php:44 tbl_change.php:1160 msgid "Edit next row" msgstr "עריכת השורה הבאה" -#: libraries/messages.inc.php:49 tbl_change.php:1152 +#: libraries/messages.inc.php:45 tbl_change.php:1152 msgid "Go back to this page" msgstr "חזרה אחורה לעמוד זה" -#: libraries/messages.inc.php:50 querywindow.php:115 +#: libraries/messages.inc.php:46 querywindow.php:115 msgid "All" msgstr "הכל" -#: libraries/messages.inc.php:53 tbl_operations.php:249 +#: libraries/messages.inc.php:49 tbl_operations.php:249 msgid "Alter table order by" msgstr "שינוי סדר הטבלה לפי" -#: libraries/messages.inc.php:54 tbl_operations.php:660 +#: libraries/messages.inc.php:50 tbl_operations.php:660 msgid "Analyze" msgstr "" -#: libraries/messages.inc.php:57 +#: libraries/messages.inc.php:53 #, fuzzy msgid "and" msgstr "וגם" -#: libraries/messages.inc.php:59 pmd_general.php:87 +#: libraries/messages.inc.php:55 pmd_general.php:87 msgid "Angular links" msgstr "" -#: libraries/messages.inc.php:60 tbl_structure.php:401 tbl_structure.php:415 +#: libraries/messages.inc.php:56 tbl_structure.php:401 tbl_structure.php:415 #: tbl_structure.php:429 #, php-format msgid "An index has been added on %s" msgstr "אינדקס נוסף אל %s" -#: libraries/messages.inc.php:61 server_privileges.php:1521 +#: libraries/messages.inc.php:57 server_privileges.php:1521 #: server_privileges.php:2123 msgid "Any" msgstr "כל דבר" -#: libraries/messages.inc.php:62 libraries/replication_gui.lib.php:298 +#: libraries/messages.inc.php:58 libraries/replication_gui.lib.php:298 #: server_privileges.php:725 msgid "Any host" msgstr "כל שרת מארח" -#: libraries/messages.inc.php:63 libraries/replication_gui.lib.php:250 +#: libraries/messages.inc.php:59 libraries/replication_gui.lib.php:250 #: server_privileges.php:677 msgid "Any user" msgstr "כל משתמש" -#: libraries/messages.inc.php:64 server_synchronize.php:449 +#: libraries/messages.inc.php:60 server_synchronize.php:449 #: server_synchronize.php:894 msgid "Apply Selected Changes" msgstr "" -#: libraries/messages.inc.php:66 tbl_structure.php:386 +#: libraries/messages.inc.php:62 tbl_structure.php:386 #, php-format msgid "A primary key has been added on %s" msgstr "מפתח ראשי נוסף אל %s" -#: libraries/messages.inc.php:67 libraries/mysql_charsets.lib.php:368 +#: libraries/messages.inc.php:63 libraries/mysql_charsets.lib.php:368 msgid "Arabic" msgstr "ערבית" -#: libraries/messages.inc.php:68 libraries/mysql_charsets.lib.php:359 +#: libraries/messages.inc.php:64 libraries/mysql_charsets.lib.php:359 msgid "Armenian" msgstr "ארמנית" -#: libraries/messages.inc.php:70 libraries/tbl_properties.inc.php:394 +#: libraries/messages.inc.php:66 libraries/tbl_properties.inc.php:394 msgid "As defined:" msgstr "" -#: libraries/messages.inc.php:71 tbl_structure.php:556 +#: libraries/messages.inc.php:67 tbl_structure.php:556 msgid "At Beginning of Table" msgstr "בתחילת טבלה" -#: libraries/messages.inc.php:72 tbl_structure.php:555 +#: libraries/messages.inc.php:68 tbl_structure.php:555 msgid "At End of Table" msgstr "בסוף טבלה" -#: libraries/messages.inc.php:73 libraries/tbl_properties.inc.php:108 +#: libraries/messages.inc.php:69 libraries/tbl_properties.inc.php:108 #: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:144 #: tbl_structure.php:180 msgid "Attributes" msgstr "תכונות" -#: libraries/messages.inc.php:74 pdf_pages.php:303 pdf_pages.php:306 +#: libraries/messages.inc.php:70 pdf_pages.php:303 pdf_pages.php:306 msgid "Automatic layout" msgstr "עיצוב אוטומטי" -#: libraries/messages.inc.php:77 libraries/mysql_charsets.lib.php:354 +#: libraries/messages.inc.php:73 libraries/mysql_charsets.lib.php:354 msgid "Baltic" msgstr "בלטית" -#: libraries/messages.inc.php:78 libraries/sqlparser.lib.php:175 +#: libraries/messages.inc.php:74 libraries/sqlparser.lib.php:175 msgid "BEGIN CUT" msgstr "התחלת חיתוך" -#: libraries/messages.inc.php:79 libraries/sqlparser.lib.php:179 +#: libraries/messages.inc.php:75 libraries/sqlparser.lib.php:179 msgid "BEGIN RAW" msgstr "התחלת RAW" -#: libraries/messages.inc.php:80 libraries/mysql_charsets.lib.php:201 +#: libraries/messages.inc.php:76 libraries/mysql_charsets.lib.php:201 #: libraries/mysql_charsets.lib.php:402 tbl_change.php:518 msgid "Binary" msgstr "בינארי" -#: libraries/messages.inc.php:81 tbl_change.php:894 +#: libraries/messages.inc.php:77 tbl_change.php:894 msgid "Binary - do not edit" msgstr "בינארי - אין לערוך" -#: libraries/messages.inc.php:82 libraries/server_links.inc.php:76 +#: libraries/messages.inc.php:78 libraries/server_links.inc.php:76 #: server_binlog.php:110 server_status.php:253 test/theme.php:121 msgid "Binary log" msgstr "דו\"ח בינארי" -#: libraries/messages.inc.php:83 server_binlog.php:217 +#: libraries/messages.inc.php:79 server_binlog.php:217 msgid "Event type" msgstr "סוג אירוע" -#: libraries/messages.inc.php:84 server_binlog.php:220 +#: libraries/messages.inc.php:80 server_binlog.php:220 msgid "Information" msgstr "מידע" -#: libraries/messages.inc.php:85 server_binlog.php:215 +#: libraries/messages.inc.php:81 server_binlog.php:215 msgid "Log name" msgstr "שם דו\"ח" -#: libraries/messages.inc.php:86 server_binlog.php:219 +#: libraries/messages.inc.php:82 server_binlog.php:219 msgid "Original position" msgstr "מיקום מקורי" -#: libraries/messages.inc.php:87 server_binlog.php:216 +#: libraries/messages.inc.php:83 server_binlog.php:216 msgid "Position" msgstr "מיקום" -#: libraries/messages.inc.php:88 libraries/replication_gui.lib.php:169 +#: libraries/messages.inc.php:84 libraries/replication_gui.lib.php:169 #: server_binlog.php:218 msgid "Server ID" msgstr "קוד שרת (ID)" -#: libraries/messages.inc.php:92 +#: libraries/messages.inc.php:88 #, fuzzy msgctxt "$strBLOBRepositoryDisabled" msgid "Disabled" msgstr "מבוטל" -#: libraries/messages.inc.php:95 +#: libraries/messages.inc.php:91 #, fuzzy msgctxt "$strBLOBRepositoryEnabled" msgid "Enabled" msgstr "מופעל" -#: libraries/messages.inc.php:97 tbl_change.php:888 +#: libraries/messages.inc.php:93 tbl_change.php:888 msgid "Remove BLOB Repository Reference" msgstr "" -#: libraries/messages.inc.php:98 +#: libraries/messages.inc.php:94 #, fuzzy msgctxt "$strBLOBRepositoryRepair" msgid "Repair" msgstr "תיקון טבלה" -#: libraries/messages.inc.php:99 tbl_change.php:987 +#: libraries/messages.inc.php:95 tbl_change.php:987 msgid "Upload to BLOB repository" msgstr "" -#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:359 +#: libraries/messages.inc.php:96 libraries/sql_query_form.lib.php:359 #: sql.php:677 msgid "Let every user access this bookmark" msgstr "אפשר לכל משתמש לגשת לכתובת מועדפת זאת" -#: libraries/messages.inc.php:103 sql.php:671 +#: libraries/messages.inc.php:99 sql.php:671 msgid "Label" msgstr "תווית" -#: libraries/messages.inc.php:104 libraries/sql_query_form.lib.php:433 +#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:433 msgid "Bookmarked SQL query" msgstr "שאילתות SQL מועדפות" -#: libraries/messages.inc.php:105 libraries/sql_query_form.lib.php:365 +#: libraries/messages.inc.php:101 libraries/sql_query_form.lib.php:365 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/messages.inc.php:106 libraries/sql_query_form.lib.php:352 +#: libraries/messages.inc.php:102 libraries/sql_query_form.lib.php:352 #: sql.php:665 sql.php:666 sql.php:683 msgid "Bookmark this SQL query" msgstr "הכנס שאילתת SQL זאת למועדפים" -#: libraries/messages.inc.php:107 libraries/sql_query_form.lib.php:466 +#: libraries/messages.inc.php:103 libraries/sql_query_form.lib.php:466 msgid "View only" msgstr "ראה רק" -#: libraries/messages.inc.php:109 tbl_structure.php:161 +#: libraries/messages.inc.php:105 tbl_structure.php:161 msgid "Browse distinct values" msgstr "" -#: libraries/messages.inc.php:110 tbl_change.php:252 tbl_select.php:27 +#: libraries/messages.inc.php:106 tbl_change.php:252 tbl_select.php:27 #: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34 msgid "Browse foreign values" msgstr "" -#: libraries/messages.inc.php:118 libraries/mysql_charsets.lib.php:213 +#: libraries/messages.inc.php:114 libraries/mysql_charsets.lib.php:213 msgid "Bulgarian" msgstr "בולגרית" -#: libraries/messages.inc.php:120 +#: libraries/messages.inc.php:116 msgid "\"bzipped\"" msgstr "\"bzipped\"" -#: libraries/messages.inc.php:122 +#: libraries/messages.inc.php:118 msgid "Calendar" msgstr "לוח שנה" -#: libraries/messages.inc.php:129 tbl_indexes.php:75 +#: libraries/messages.inc.php:125 tbl_indexes.php:75 msgid "Can't rename index to PRIMARY!" msgstr "לא ניתן לשנות שם אינדקס אל PRIMARY!" -#: libraries/messages.inc.php:132 libraries/mysql_charsets.lib.php:223 +#: libraries/messages.inc.php:128 libraries/mysql_charsets.lib.php:223 #: libraries/mysql_charsets.lib.php:409 msgid "case-insensitive" msgstr "אין חשיבות לרישיות (case)" -#: libraries/messages.inc.php:133 libraries/mysql_charsets.lib.php:226 +#: libraries/messages.inc.php:129 libraries/mysql_charsets.lib.php:226 #: libraries/mysql_charsets.lib.php:411 msgid "case-sensitive" msgstr "יש חשיבות לרישיות (case)" -#: libraries/messages.inc.php:134 libraries/mysql_charsets.lib.php:332 +#: libraries/messages.inc.php:130 libraries/mysql_charsets.lib.php:332 msgid "Central European" msgstr "" -#: libraries/messages.inc.php:136 server_privileges.php:1969 +#: libraries/messages.inc.php:132 server_privileges.php:1969 msgid "... keep the old one." msgstr "... שמירת הישן." -#: libraries/messages.inc.php:137 server_privileges.php:1967 +#: libraries/messages.inc.php:133 server_privileges.php:1967 msgid "Create a new user with the same privileges and ..." msgstr "יצירת משתמש חדש עם אותן ההרשאות וגם ..." -#: libraries/messages.inc.php:138 server_privileges.php:1972 +#: libraries/messages.inc.php:134 server_privileges.php:1972 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr " ... מחיקת הישן מטבלאות המשתמשים וטען מחדש את ההרשאות לאחר מכן." -#: libraries/messages.inc.php:139 server_privileges.php:1970 +#: libraries/messages.inc.php:135 server_privileges.php:1970 msgid " ... delete the old one from the user tables." msgstr " ... מחיקת הישן מטבלאות המשתמשים." -#: libraries/messages.inc.php:140 server_privileges.php:1971 +#: libraries/messages.inc.php:136 server_privileges.php:1971 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr " ... בטל את כל ההרשאות הפעילות מהישן ומחק אותו לאחר מכן." -#: libraries/messages.inc.php:141 server_privileges.php:1964 +#: libraries/messages.inc.php:137 server_privileges.php:1964 msgid "Change Login Information / Copy User" msgstr "שינוי מידע כניסה / העתקת משתמש" -#: libraries/messages.inc.php:144 libraries/mysql_charsets.lib.php:107 +#: libraries/messages.inc.php:140 libraries/mysql_charsets.lib.php:107 msgid "Charset" msgstr "קידוד" -#: libraries/messages.inc.php:146 server_collations.php:40 +#: libraries/messages.inc.php:142 server_collations.php:40 msgid "Character Sets and Collations" msgstr "חבילות קידוד" -#: libraries/messages.inc.php:147 libraries/server_links.inc.php:57 +#: libraries/messages.inc.php:143 libraries/server_links.inc.php:57 #: test/theme.php:109 msgid "Charsets" msgstr "קידודים" -#: libraries/messages.inc.php:149 tbl_operations.php:661 +#: libraries/messages.inc.php:145 tbl_operations.php:661 #, fuzzy msgid "Check" msgstr "צ'יכית" -#: libraries/messages.inc.php:151 server_databases.php:293 +#: libraries/messages.inc.php:147 server_databases.php:293 #: server_databases.php:294 msgid "Check Privileges" msgstr "בדיקת הרשאות" -#: libraries/messages.inc.php:152 server_databases.php:289 +#: libraries/messages.inc.php:148 server_databases.php:289 #, php-format msgid "Check privileges for database "%s"." msgstr "בדיקת הראשות עבור מאגר נתונים "%s"." -#: libraries/messages.inc.php:154 pdf_pages.php:261 +#: libraries/messages.inc.php:150 pdf_pages.php:261 msgid "Please choose a page to edit" msgstr "אנא בחר עמוד לעריכה" -#: libraries/messages.inc.php:157 +#: libraries/messages.inc.php:153 msgid "Displaying Column Comments" msgstr "מציג הערות עמודה" -#: libraries/messages.inc.php:159 pdf_pages.php:483 view_create.php:148 +#: libraries/messages.inc.php:155 pdf_pages.php:483 view_create.php:148 msgid "Column names" msgstr "שמות עמודה" -#: libraries/messages.inc.php:160 server_privileges.php:1685 +#: libraries/messages.inc.php:156 server_privileges.php:1685 msgid "Column-specific privileges" msgstr "הרשאות ספציפיות-לעמודה" -#: libraries/messages.inc.php:164 +#: libraries/messages.inc.php:160 msgid "MySQL 4.0 compatible" msgstr "תואם MySQL 4.0" -#: libraries/messages.inc.php:165 +#: libraries/messages.inc.php:161 msgid "Complete inserts" msgstr "השלם הכנסות" -#: libraries/messages.inc.php:168 +#: libraries/messages.inc.php:164 #, php-format msgid "Could not load default configuration from: \"%1$s\"" msgstr "" -#: libraries/messages.inc.php:169 main.php:306 +#: libraries/messages.inc.php:165 main.php:306 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: libraries/messages.inc.php:171 pdf_schema.php:672 +#: libraries/messages.inc.php:167 pdf_schema.php:672 #, php-format msgid "Please configure the coordinates for table %s" msgstr "אנא הגדר נקודות ציון עבור טבלה %s" -#: libraries/messages.inc.php:173 server_status.php:433 +#: libraries/messages.inc.php:169 server_status.php:433 msgid "Connections" msgstr "חיבורים" -#: libraries/messages.inc.php:179 tbl_operations.php:509 +#: libraries/messages.inc.php:175 tbl_operations.php:509 msgid "Copy table to (database.table):" msgstr "העתקת טבלה אל (מסד נתונים.טבלה):" -#: libraries/messages.inc.php:180 tbl_move_copy.php:58 +#: libraries/messages.inc.php:176 tbl_move_copy.php:58 #, php-format msgid "Table %s has been copied to %s." msgstr "טבלה %s הועתקה אל %s." -#: libraries/messages.inc.php:181 tbl_move_copy.php:48 +#: libraries/messages.inc.php:177 tbl_move_copy.php:48 msgid "Can't copy table to same one!" msgstr "לא ניתן להעתיק טבלה אל אותה אחת!" -#: libraries/messages.inc.php:182 server_synchronize.php:94 +#: libraries/messages.inc.php:178 server_synchronize.php:94 msgid "Could not connect to the source" msgstr "" -#: libraries/messages.inc.php:183 server_synchronize.php:97 +#: libraries/messages.inc.php:179 server_synchronize.php:97 msgid "Could not connect to the target" msgstr "" -#: libraries/messages.inc.php:184 server_processlist.php:24 +#: libraries/messages.inc.php:180 server_processlist.php:24 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin נכשל בחיסול בהליך %s. רוב הסיכויים שהוא כבר נסגר." -#: libraries/messages.inc.php:187 +#: libraries/messages.inc.php:183 #, php-format msgid "Create an index on %s columns" msgstr "יצירת אינדקס על %s  עמודות" -#: libraries/messages.inc.php:188 tbl_indexes.php:160 +#: libraries/messages.inc.php:184 tbl_indexes.php:160 msgid "Create a new index" msgstr "יצירת אינדקס חדש" -#: libraries/messages.inc.php:191 pdf_pages.php:297 pmd_pdf.php:114 +#: libraries/messages.inc.php:187 pdf_pages.php:297 pmd_pdf.php:114 msgid "Create a page" msgstr "יצירת עמוד חדש" -#: libraries/messages.inc.php:192 +#: libraries/messages.inc.php:188 msgid "Creation of PDFs" msgstr "יצירה של קבצי PDF" -#: libraries/messages.inc.php:193 pmd_general.php:74 pmd_general.php:306 +#: libraries/messages.inc.php:189 pmd_general.php:74 pmd_general.php:306 msgid "Create relation" msgstr "" -#: libraries/messages.inc.php:194 pmd_general.php:71 +#: libraries/messages.inc.php:190 pmd_general.php:71 #: server_synchronize.php:429 server_synchronize.php:872 #, fuzzy msgid "Create table" msgstr "יצירת עמוד חדש" -#: libraries/messages.inc.php:195 +#: libraries/messages.inc.php:191 #, fuzzy msgctxt "$strCreateTableShort" msgid "Create table" msgstr "יצירת עמוד חדש" -#: libraries/messages.inc.php:196 server_privileges.php:1994 +#: libraries/messages.inc.php:192 server_privileges.php:1994 msgid "Database for user" msgstr "" -#: libraries/messages.inc.php:197 server_privileges.php:1999 +#: libraries/messages.inc.php:193 server_privileges.php:1999 msgid "Create database with same name and grant all privileges" msgstr "" -#: libraries/messages.inc.php:198 +#: libraries/messages.inc.php:194 #, fuzzy msgctxt "$strCreateUserDatabaseNone" msgid "None" msgstr "ללא" -#: libraries/messages.inc.php:199 server_privileges.php:2003 +#: libraries/messages.inc.php:195 server_privileges.php:2003 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "בדיקת הראשות עבור מאגר נתונים "%s"." -#: libraries/messages.inc.php:200 server_privileges.php:2000 +#: libraries/messages.inc.php:196 server_privileges.php:2000 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: libraries/messages.inc.php:201 +#: libraries/messages.inc.php:197 msgid "Creation/Update/Check dates" msgstr "יצירת/עדכון/בדיקת תאריכים" -#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:229 +#: libraries/messages.inc.php:199 libraries/mysql_charsets.lib.php:229 msgid "Croatian" msgstr "קרואטית" -#: libraries/messages.inc.php:204 +#: libraries/messages.inc.php:200 msgid "CSV" msgstr "CSV" -#: libraries/messages.inc.php:205 libraries/server_synchronize.lib.php:1343 +#: libraries/messages.inc.php:201 libraries/server_synchronize.lib.php:1343 #: libraries/server_synchronize.lib.php:1369 msgid "Current server" msgstr "" -#: libraries/messages.inc.php:206 main.php:159 +#: libraries/messages.inc.php:202 main.php:159 msgid "Custom color" msgstr "" -#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:365 +#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:365 msgid "Cyrillic" msgstr "קירילית" -#: libraries/messages.inc.php:208 libraries/mysql_charsets.lib.php:232 +#: libraries/messages.inc.php:204 libraries/mysql_charsets.lib.php:232 msgid "Czech" msgstr "צ'יכית" -#: libraries/messages.inc.php:209 libraries/mysql_charsets.lib.php:383 +#: libraries/messages.inc.php:205 libraries/mysql_charsets.lib.php:383 msgid "Czech-Slovak" msgstr "" -#: libraries/messages.inc.php:211 libraries/mysql_charsets.lib.php:235 +#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:235 msgid "Danish" msgstr "דנית" -#: libraries/messages.inc.php:214 +#: libraries/messages.inc.php:210 msgid "Database export options" msgstr "אפשרויות ייצוא מאגר נתונים" -#: libraries/messages.inc.php:217 server_synchronize.php:122 +#: libraries/messages.inc.php:213 server_synchronize.php:122 #: server_synchronize.php:125 tbl_create.php:82 tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "" -#: libraries/messages.inc.php:219 server_databases.php:63 +#: libraries/messages.inc.php:215 server_databases.php:63 #, php-format msgid "%s databases have been dropped successfully." msgstr "%s מסדי נתונים נמחקו בהצלחה." -#: libraries/messages.inc.php:220 libraries/server_synchronize.lib.php:1341 +#: libraries/messages.inc.php:216 libraries/server_synchronize.lib.php:1341 #: server_synchronize.php:1110 #, fuzzy msgid "Source database" msgstr "חפש במסד הנתונים" -#: libraries/messages.inc.php:221 server_databases.php:88 +#: libraries/messages.inc.php:217 server_databases.php:88 msgid "Databases statistics" msgstr "סטטיסטיקת מסד הנתונים" -#: libraries/messages.inc.php:222 server_databases.php:362 +#: libraries/messages.inc.php:218 server_databases.php:362 #: server_databases.php:363 msgid "Disable Statistics" msgstr "ביטול סטטיסטיקה" -#: libraries/messages.inc.php:223 server_databases.php:358 +#: libraries/messages.inc.php:219 server_databases.php:358 #: server_databases.php:359 msgid "Enable Statistics" msgstr "הפעלת סטטיסטיקה" -#: libraries/messages.inc.php:224 server_databases.php:366 +#: libraries/messages.inc.php:220 server_databases.php:366 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -3524,31 +3524,31 @@ msgstr "" "הערה: הפעלת סטטיסטיקות מאגר נתונים כאן יכולות לגרום לתעבורה כבדה בין השרת " "האינטרנט לשרת MySQL." -#: libraries/messages.inc.php:225 libraries/server_synchronize.lib.php:1367 +#: libraries/messages.inc.php:221 libraries/server_synchronize.lib.php:1367 #: server_synchronize.php:1112 #, fuzzy msgid "Target database" msgstr "חפש במסד הנתונים" -#: libraries/messages.inc.php:228 server_synchronize.php:425 +#: libraries/messages.inc.php:224 server_synchronize.php:425 #: server_synchronize.php:868 msgid "Data Difference" msgstr "" -#: libraries/messages.inc.php:231 server_synchronize.php:272 +#: libraries/messages.inc.php:227 server_synchronize.php:272 msgid "Data Synchronization" msgstr "" -#: libraries/messages.inc.php:235 server_privileges.php:526 +#: libraries/messages.inc.php:231 server_privileges.php:526 #: server_privileges.php:1679 msgid "Database-specific privileges" msgstr "הרשאות ספציפיות למאגר נתונים" -#: libraries/messages.inc.php:237 server_privileges.php:2136 +#: libraries/messages.inc.php:233 server_privileges.php:2136 msgid "database-specific" msgstr "ספציפי למאגר הנתונים" -#: libraries/messages.inc.php:240 libraries/tbl_properties.inc.php:106 +#: libraries/messages.inc.php:236 libraries/tbl_properties.inc.php:106 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" @@ -3556,32 +3556,32 @@ msgstr "" "לערכי ברירת מחדל, אנא הכנס רק ערך בודד, ללא סימני ציטוט או לוכסנים, השתמש " "בתבנית הזאת : a" -#: libraries/messages.inc.php:241 tbl_operations.php:589 +#: libraries/messages.inc.php:237 tbl_operations.php:589 msgid "Defragment table" msgstr "איחוי טבלה" -#: libraries/messages.inc.php:242 +#: libraries/messages.inc.php:238 msgid "Use delayed inserts" msgstr "השתמש בהכנסות מעוכבות" -#: libraries/messages.inc.php:245 server_privileges.php:1243 +#: libraries/messages.inc.php:241 server_privileges.php:1243 msgid "No users selected for deleting!" msgstr "" -#: libraries/messages.inc.php:246 pmd_general.php:372 +#: libraries/messages.inc.php:242 pmd_general.php:372 msgid "Delete relation" msgstr "" -#: libraries/messages.inc.php:248 server_privileges.php:1232 +#: libraries/messages.inc.php:244 server_privileges.php:1232 #, php-format msgid "Deleting %s" msgstr "מוחק %s" -#: libraries/messages.inc.php:249 libraries/sql_query_form.lib.php:388 +#: libraries/messages.inc.php:245 libraries/sql_query_form.lib.php:388 msgid "Delimiter" msgstr "" -#: libraries/messages.inc.php:250 pdf_pages.php:506 +#: libraries/messages.inc.php:246 pdf_pages.php:506 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -3589,151 +3589,151 @@ msgstr "" "לעמוד הנוכחי יש הפניות לטבלאות שכבר לא קיימות. האם אתה רוצה למחוק את הפניות " "אלו?" -#: libraries/messages.inc.php:254 pmd_help.php:29 +#: libraries/messages.inc.php:250 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." msgstr "" -#: libraries/messages.inc.php:256 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:252 libraries/mysql_charsets.lib.php:247 msgid "dictionary" msgstr "מילון" -#: libraries/messages.inc.php:257 libraries/server_synchronize.lib.php:1348 +#: libraries/messages.inc.php:253 libraries/server_synchronize.lib.php:1348 msgid "Difference" msgstr "" -#: libraries/messages.inc.php:258 pmd_general.php:87 +#: libraries/messages.inc.php:254 pmd_general.php:87 msgid "Direct links" msgstr "" -#: libraries/messages.inc.php:261 +#: libraries/messages.inc.php:257 msgid "Disable foreign key checks" msgstr "" -#: libraries/messages.inc.php:262 +#: libraries/messages.inc.php:258 msgid "Display Features" msgstr "הצגת תכונות" -#: libraries/messages.inc.php:263 tbl_select.php:301 +#: libraries/messages.inc.php:259 tbl_select.php:301 msgid "Display order:" msgstr "סדר תצוגה:" -#: libraries/messages.inc.php:265 tbl_select.php:132 +#: libraries/messages.inc.php:261 tbl_select.php:132 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "ביצוע \"שאילתה לדוגמה\" (תו כללי: \"%\")" -#: libraries/messages.inc.php:266 +#: libraries/messages.inc.php:262 msgid "DocSQL" msgstr "" -#: libraries/messages.inc.php:268 +#: libraries/messages.inc.php:264 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/messages.inc.php:273 server_privileges.php:1579 +#: libraries/messages.inc.php:269 server_privileges.php:1579 #: server_privileges.php:1580 server_privileges.php:1581 msgid "Drop the databases that have the same names as the users." msgstr "הסרת מאגרי נתונים שיש להם שמות דומים כמו למשתמשים." -#: libraries/messages.inc.php:278 tbl_printview.php:382 tbl_structure.php:743 +#: libraries/messages.inc.php:274 tbl_printview.php:382 tbl_structure.php:743 msgid "dynamic" msgstr "דינאמי" -#: libraries/messages.inc.php:282 server_privileges.php:1324 +#: libraries/messages.inc.php:278 server_privileges.php:1324 #: server_privileges.php:1610 msgid "Edit Privileges" msgstr "עריכת הרשאות" -#: libraries/messages.inc.php:283 tbl_printview.php:341 tbl_structure.php:688 +#: libraries/messages.inc.php:279 tbl_printview.php:341 tbl_structure.php:688 msgid "Effective" msgstr "יעיל" -#: libraries/messages.inc.php:286 libraries/relation.lib.php:100 +#: libraries/messages.inc.php:282 libraries/relation.lib.php:100 msgid "Enabled" msgstr "מופעל" -#: libraries/messages.inc.php:287 +#: libraries/messages.inc.php:283 msgid "Enclose export in a transaction" msgstr "" -#: libraries/messages.inc.php:288 libraries/sqlparser.lib.php:177 +#: libraries/messages.inc.php:284 libraries/sqlparser.lib.php:177 msgid "END CUT" msgstr "END CUT" -#: libraries/messages.inc.php:290 libraries/sqlparser.lib.php:183 +#: libraries/messages.inc.php:286 libraries/sqlparser.lib.php:183 msgid "END RAW" msgstr "END RAW" -#: libraries/messages.inc.php:293 libraries/server_links.inc.php:61 +#: libraries/messages.inc.php:289 libraries/server_links.inc.php:61 #: test/theme.php:113 msgid "Engines" msgstr "מנועים" -#: libraries/messages.inc.php:295 libraries/mysql_charsets.lib.php:238 +#: libraries/messages.inc.php:291 libraries/mysql_charsets.lib.php:238 msgid "English" msgstr "אנגלית" -#: libraries/messages.inc.php:296 server_privileges.php:393 +#: libraries/messages.inc.php:292 server_privileges.php:393 #: server_privileges.php:535 server_privileges.php:1501 msgid " Note: MySQL privilege names are expressed in English " msgstr " הערה: שמות הרשאות MySQL מובטאות באנגלית " -#: libraries/messages.inc.php:298 libraries/zip_extension.lib.php:49 +#: libraries/messages.inc.php:294 libraries/zip_extension.lib.php:49 #: libraries/zip_extension.lib.php:51 libraries/zip_extension.lib.php:66 msgid "Error in ZIP archive:" msgstr "" -#: libraries/messages.inc.php:303 libraries/mysql_charsets.lib.php:241 +#: libraries/messages.inc.php:299 libraries/mysql_charsets.lib.php:241 msgid "Esperanto" msgstr "" -#: libraries/messages.inc.php:304 libraries/mysql_charsets.lib.php:244 +#: libraries/messages.inc.php:300 libraries/mysql_charsets.lib.php:244 msgid "Estonian" msgstr "אסטונית" -#: libraries/messages.inc.php:305 libraries/tbl_triggers.lib.php:29 +#: libraries/messages.inc.php:301 libraries/tbl_triggers.lib.php:29 #, fuzzy msgid "Event" msgstr "נשלח" -#: libraries/messages.inc.php:307 +#: libraries/messages.inc.php:303 msgid "Excel edition" msgstr "מהדורת Excel" -#: libraries/messages.inc.php:311 pmd_pdf.php:85 +#: libraries/messages.inc.php:307 pmd_pdf.php:85 msgid "Export/Import to scale" msgstr "" -#: libraries/messages.inc.php:313 +#: libraries/messages.inc.php:309 msgid "Extended inserts" msgstr "הכנסות מורחבות" -#: libraries/messages.inc.php:314 pdf_schema.php:1267 pdf_schema.php:1288 +#: libraries/messages.inc.php:310 pdf_schema.php:1267 pdf_schema.php:1288 #: tbl_printview.php:147 tbl_structure.php:183 tbl_tracking.php:278 msgid "Extra" msgstr "תוספת" -#: libraries/messages.inc.php:316 server_status.php:447 +#: libraries/messages.inc.php:312 server_status.php:447 msgid "Failed attempts" msgstr "ניסיונות כושלים" -#: libraries/messages.inc.php:318 tbl_structure.php:375 +#: libraries/messages.inc.php:314 tbl_structure.php:375 #, php-format msgid "Field %s has been dropped" msgstr "שדה %s נמחק" -#: libraries/messages.inc.php:322 libraries/sql_query_form.lib.php:317 +#: libraries/messages.inc.php:318 libraries/sql_query_form.lib.php:317 msgid "Fields" msgstr "שדות" -#: libraries/messages.inc.php:332 server_binlog.php:136 +#: libraries/messages.inc.php:328 server_binlog.php:136 #, fuzzy msgid "Files" msgstr "שדות" -#: libraries/messages.inc.php:334 server_privileges.php:1597 +#: libraries/messages.inc.php:330 server_privileges.php:1597 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -3745,219 +3745,219 @@ msgstr "" "הטבלאות האלו יכול להיות שונה מההרשאות שהשרת משתמש בהן, אם הן שונו באופן " "ידני. במקרה זה, אתה צריך לבצע %sטעינה מחדש של הרשאות%s לפני שאתה ממשיך." -#: libraries/messages.inc.php:335 server_status.php:289 +#: libraries/messages.inc.php:331 server_status.php:289 msgid "Flush query cache" msgstr "" -#: libraries/messages.inc.php:336 +#: libraries/messages.inc.php:332 msgid "Flush the table (\"FLUSH\")" msgstr "ריקון טבלה (\"FLUSH\")" -#: libraries/messages.inc.php:337 server_status.php:271 +#: libraries/messages.inc.php:333 server_status.php:271 msgid "Flush (close) all tables" msgstr "" -#: libraries/messages.inc.php:339 tbl_relation.php:279 +#: libraries/messages.inc.php:335 tbl_relation.php:279 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" -#: libraries/messages.inc.php:341 setup/lib/messages.inc.php:88 +#: libraries/messages.inc.php:337 setup/lib/messages.inc.php:88 #: tbl_printview.php:376 tbl_structure.php:738 msgid "Format" msgstr "תבנית" -#: libraries/messages.inc.php:344 server_replication.php:325 +#: libraries/messages.inc.php:340 server_replication.php:325 #, fuzzy msgid "Full start" msgstr "Fulltext" -#: libraries/messages.inc.php:345 server_replication.php:325 +#: libraries/messages.inc.php:341 server_replication.php:325 msgid "Full stop" msgstr "" -#: libraries/messages.inc.php:347 tbl_change.php:282 tbl_change.php:320 +#: libraries/messages.inc.php:343 tbl_change.php:282 tbl_change.php:320 msgid "Function" msgstr "פונקציה" -#: libraries/messages.inc.php:355 libraries/mysql_charsets.lib.php:377 +#: libraries/messages.inc.php:351 libraries/mysql_charsets.lib.php:377 msgid "Georgian" msgstr "גרוזינית" -#: libraries/messages.inc.php:356 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:352 libraries/mysql_charsets.lib.php:247 #: libraries/mysql_charsets.lib.php:250 msgid "German" msgstr "גרמנית" -#: libraries/messages.inc.php:357 themes.php:42 +#: libraries/messages.inc.php:353 themes.php:42 msgid "Get more themes!" msgstr "" -#: libraries/messages.inc.php:358 server_privileges.php:2134 +#: libraries/messages.inc.php:354 server_privileges.php:2134 msgid "global" msgstr "עולמי" -#: libraries/messages.inc.php:359 server_privileges.php:524 +#: libraries/messages.inc.php:355 server_privileges.php:524 #: server_privileges.php:1500 msgid "Global privileges" msgstr "הרשאות גלובליות" -#: libraries/messages.inc.php:360 server_variables.php:55 +#: libraries/messages.inc.php:356 server_variables.php:55 #: server_variables.php:89 msgid "Global value" msgstr "ערך גלובלי" -#: libraries/messages.inc.php:365 server_privileges.php:1502 +#: libraries/messages.inc.php:361 server_privileges.php:1502 #: server_privileges.php:1684 server_privileges.php:2033 msgid "Grant" msgstr "הענקה" -#: libraries/messages.inc.php:366 libraries/mysql_charsets.lib.php:380 +#: libraries/messages.inc.php:362 libraries/mysql_charsets.lib.php:380 msgid "Greek" msgstr "יוונית" -#: libraries/messages.inc.php:367 +#: libraries/messages.inc.php:363 msgid "\"gzipped\"" msgstr "\"gzipped\"" -#: libraries/messages.inc.php:369 server_status.php:250 +#: libraries/messages.inc.php:365 server_status.php:250 msgid "Handler" msgstr "" -#: libraries/messages.inc.php:370 server_synchronize.php:464 +#: libraries/messages.inc.php:366 server_synchronize.php:464 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: libraries/messages.inc.php:372 libraries/mysql_charsets.lib.php:374 +#: libraries/messages.inc.php:368 libraries/mysql_charsets.lib.php:374 msgid "Hebrew" msgstr "עברית" -#: libraries/messages.inc.php:373 pmd_general.php:83 +#: libraries/messages.inc.php:369 pmd_general.php:83 msgid "Help" msgstr "" -#: libraries/messages.inc.php:374 +#: libraries/messages.inc.php:370 msgid "Use hexadecimal for BLOB" msgstr "" -#: libraries/messages.inc.php:376 pmd_general.php:120 +#: libraries/messages.inc.php:372 pmd_general.php:120 #, fuzzy msgid "Hide/Show all" msgstr "ראיית הכל" -#: libraries/messages.inc.php:377 pmd_general.php:124 +#: libraries/messages.inc.php:373 pmd_general.php:124 msgid "Hide/Show Tables with no relation" msgstr "" -#: libraries/messages.inc.php:378 libraries/navigation_header.inc.php:54 +#: libraries/messages.inc.php:374 libraries/navigation_header.inc.php:54 #: libraries/navigation_header.inc.php:57 #: libraries/navigation_header.inc.php:58 msgid "Home" msgstr "בית" -#: libraries/messages.inc.php:379 main.php:233 +#: libraries/messages.inc.php:375 main.php:233 msgid "Official Homepage" msgstr "דף הבית phpMyAdmin הרשמי" -#: libraries/messages.inc.php:382 libraries/replication_gui.lib.php:327 +#: libraries/messages.inc.php:378 libraries/replication_gui.lib.php:327 #: server_privileges.php:753 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/messages.inc.php:383 +#: libraries/messages.inc.php:379 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/messages.inc.php:384 libraries/mysql_charsets.lib.php:253 +#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:253 msgid "Hungarian" msgstr "הונגרית" -#: libraries/messages.inc.php:386 libraries/mysql_charsets.lib.php:256 +#: libraries/messages.inc.php:382 libraries/mysql_charsets.lib.php:256 msgid "Icelandic" msgstr "איסלנדית" -#: libraries/messages.inc.php:387 server_processlist.php:53 +#: libraries/messages.inc.php:383 server_processlist.php:53 msgid "ID" msgstr "קוד זיהוי" -#: libraries/messages.inc.php:388 libraries/mult_submits.inc.php:108 +#: libraries/messages.inc.php:384 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:479 msgid "Fulltext" msgstr "Fulltext" -#: libraries/messages.inc.php:389 +#: libraries/messages.inc.php:385 msgid "Ignore duplicate rows" msgstr "" -#: libraries/messages.inc.php:390 tbl_change.php:302 tbl_indexes.php:200 +#: libraries/messages.inc.php:386 tbl_change.php:302 tbl_indexes.php:200 #: tbl_indexes.php:225 msgid "Ignore" msgstr "התעלמות" -#: libraries/messages.inc.php:391 +#: libraries/messages.inc.php:387 msgid "Use ignore inserts" msgstr "השתמש בהעלמות מהכנסות" -#: libraries/messages.inc.php:392 +#: libraries/messages.inc.php:388 msgid "Column names in first row" msgstr "" -#: libraries/messages.inc.php:393 +#: libraries/messages.inc.php:389 msgid "Do not import empty rows" msgstr "" -#: libraries/messages.inc.php:394 pmd_general.php:104 +#: libraries/messages.inc.php:390 pmd_general.php:104 msgid "Import/Export coordinates for PDF schema" msgstr "" -#: libraries/messages.inc.php:395 querywindow.php:104 +#: libraries/messages.inc.php:391 querywindow.php:104 msgid "Import files" msgstr "קבצי ייבוא" -#: libraries/messages.inc.php:403 +#: libraries/messages.inc.php:399 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/messages.inc.php:404 libraries/messages.inc.php:584 +#: libraries/messages.inc.php:400 libraries/messages.inc.php:580 msgid "Open Document Spreadsheet" msgstr "" -#: libraries/messages.inc.php:405 +#: libraries/messages.inc.php:401 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/messages.inc.php:409 +#: libraries/messages.inc.php:405 msgid "Excel 97-2003 XLS Workbook" msgstr "" -#: libraries/messages.inc.php:410 +#: libraries/messages.inc.php:406 msgid "Excel 2007 XLSX Workbook" msgstr "" -#: libraries/messages.inc.php:414 libraries/mult_submits.inc.php:98 +#: libraries/messages.inc.php:410 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:476 tbl_structure.php:674 msgid "Index" msgstr "אינדקס" -#: libraries/messages.inc.php:415 tbl_indexes.php:168 +#: libraries/messages.inc.php:411 tbl_indexes.php:168 msgid "Index name:" msgstr "שם אינדקס:" -#: libraries/messages.inc.php:416 tbl_indexes.php:174 +#: libraries/messages.inc.php:412 tbl_indexes.php:174 msgid "Index type:" msgstr "סוג אינדקס:" -#: libraries/messages.inc.php:417 sql.php:639 +#: libraries/messages.inc.php:413 sql.php:639 #, php-format msgid "Problems with indexes of table `%s`" msgstr "בעיות עם אינדקסים של טבלה `%s`" -#: libraries/messages.inc.php:427 main.php:266 +#: libraries/messages.inc.php:423 main.php:266 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -3968,163 +3968,163 @@ msgstr "" "ברירת מחדל של MySQL. שרת MySQL שלך פועל עם ברירת מחדל זאת, והוא פתוח לחדירות," "ואתה ממש צריך לתקן את חור אבטחה זה." -#: libraries/messages.inc.php:428 tbl_change.php:1130 +#: libraries/messages.inc.php:424 tbl_change.php:1130 msgid "Insert as new row" msgstr "הכנסה כשורה חדשה" -#: libraries/messages.inc.php:429 sql.php:496 tbl_replace.php:386 +#: libraries/messages.inc.php:425 sql.php:496 tbl_replace.php:386 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: libraries/messages.inc.php:430 tbl_change.php:1131 +#: libraries/messages.inc.php:426 tbl_change.php:1131 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/messages.inc.php:432 main.php:139 +#: libraries/messages.inc.php:428 main.php:139 msgid "Interface" msgstr "" -#: libraries/messages.inc.php:433 tbl_relation.php:407 +#: libraries/messages.inc.php:429 tbl_relation.php:407 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: libraries/messages.inc.php:435 pdf_pages.php:303 +#: libraries/messages.inc.php:431 pdf_pages.php:303 msgid "Internal relations" msgstr "יחסים פנימיים" -#: libraries/messages.inc.php:438 tbl_indexes.php:256 tbl_structure.php:590 +#: libraries/messages.inc.php:434 tbl_indexes.php:256 tbl_structure.php:590 #: tbl_structure.php:601 msgid "Column count has to be larger than zero." msgstr "מספר העמודות צריך להיות גדול מאפס." -#: libraries/messages.inc.php:444 libraries/tbl_properties.inc.php:784 +#: libraries/messages.inc.php:440 libraries/tbl_properties.inc.php:784 #: tbl_structure.php:537 msgid "You have to add at least one field." msgstr "אתה חייב להוסיף לפחות שדה אחד." -#: libraries/messages.inc.php:449 +#: libraries/messages.inc.php:445 #, php-format msgid "Invalid server index: \"%s\"" msgstr "" -#: libraries/messages.inc.php:452 libraries/mysql_charsets.lib.php:259 +#: libraries/messages.inc.php:448 libraries/mysql_charsets.lib.php:259 #: libraries/mysql_charsets.lib.php:349 msgid "Japanese" msgstr "יפנית" -#: libraries/messages.inc.php:453 main.php:331 +#: libraries/messages.inc.php:449 main.php:331 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: libraries/messages.inc.php:454 server_status.php:257 +#: libraries/messages.inc.php:450 server_status.php:257 msgid "Joins" msgstr "" -#: libraries/messages.inc.php:457 server_privileges.php:763 +#: libraries/messages.inc.php:453 server_privileges.php:763 msgid "Do not change the password" msgstr "אל תשנה את הסיסמא" -#: libraries/messages.inc.php:458 server_status.php:256 +#: libraries/messages.inc.php:454 server_status.php:256 msgid "Key cache" msgstr "" -#: libraries/messages.inc.php:462 libraries/mysql_charsets.lib.php:268 +#: libraries/messages.inc.php:458 libraries/mysql_charsets.lib.php:268 #: libraries/mysql_charsets.lib.php:371 msgid "Korean" msgstr "" -#: libraries/messages.inc.php:466 libraries/select_lang.lib.php:480 +#: libraries/messages.inc.php:462 libraries/select_lang.lib.php:480 #: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492 #, php-format msgid "Unknown language: %1$s." msgstr "" -#: libraries/messages.inc.php:468 +#: libraries/messages.inc.php:464 msgid "Table caption" msgstr "כותרת טבלה" -#: libraries/messages.inc.php:469 +#: libraries/messages.inc.php:465 msgid "Content of table __TABLE__" msgstr "תוכן של טבלה __TABLE__" -#: libraries/messages.inc.php:470 +#: libraries/messages.inc.php:466 msgid "Continued table caption" msgstr "כותרת טבלה מומשך" -#: libraries/messages.inc.php:471 +#: libraries/messages.inc.php:467 msgid "(continued)" msgstr "(מומשך)" -#: libraries/messages.inc.php:472 +#: libraries/messages.inc.php:468 msgid "Include table caption" msgstr "כלול כותרת טבלה" -#: libraries/messages.inc.php:473 +#: libraries/messages.inc.php:469 msgid "Label key" msgstr "מפתח תווית" -#: libraries/messages.inc.php:474 +#: libraries/messages.inc.php:470 msgid "LaTeX" msgstr "LaTeX" -#: libraries/messages.inc.php:475 +#: libraries/messages.inc.php:471 msgid "Structure of table __TABLE__" msgstr "מבנה של טבלה __TABLE__" -#: libraries/messages.inc.php:476 libraries/mysql_charsets.lib.php:262 +#: libraries/messages.inc.php:472 libraries/mysql_charsets.lib.php:262 msgid "Latvian" msgstr "Latvian" -#: libraries/messages.inc.php:477 +#: libraries/messages.inc.php:473 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/messages.inc.php:478 +#: libraries/messages.inc.php:474 msgid "Use LOCAL keyword" msgstr "" -#: libraries/messages.inc.php:479 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:475 libraries/tbl_properties.inc.php:105 msgid "Length/Values" msgstr "אורך/ערכים*" -#: libraries/messages.inc.php:480 tbl_select.php:295 +#: libraries/messages.inc.php:476 tbl_select.php:295 msgid "Number of rows per page" msgstr "מספר של שורות לכל דף" -#: libraries/messages.inc.php:484 libraries/mysql_charsets.lib.php:265 +#: libraries/messages.inc.php:480 libraries/mysql_charsets.lib.php:265 msgid "Lithuanian" msgstr "ליטאית" -#: libraries/messages.inc.php:485 libraries/replication_gui.lib.php:302 +#: libraries/messages.inc.php:481 libraries/replication_gui.lib.php:302 #: server_privileges.php:729 msgid "Local" msgstr "מקומי" -#: libraries/messages.inc.php:487 server_privileges.php:669 +#: libraries/messages.inc.php:483 server_privileges.php:669 msgid "Login Information" msgstr "מידע כניסה" -#: libraries/messages.inc.php:490 libraries/navigation_header.inc.php:67 +#: libraries/messages.inc.php:486 libraries/navigation_header.inc.php:67 #: libraries/navigation_header.inc.php:70 #: libraries/navigation_header.inc.php:71 main.php:99 msgid "Log out" msgstr "יציאה" -#: libraries/messages.inc.php:497 server_status.php:440 +#: libraries/messages.inc.php:493 server_status.php:440 msgid "max. concurrent connections" msgstr "" -#: libraries/messages.inc.php:498 +#: libraries/messages.inc.php:494 msgid "Maximal length of created query" msgstr "" -#: libraries/messages.inc.php:500 main.php:282 +#: libraries/messages.inc.php:496 main.php:282 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -4134,31 +4134,31 @@ msgstr "" "mbstring מותקנת, phpMyAdmin אינו יכול לחלק מחרוזות באופן תקין וזה יכול לגרום " "לתוצאות לא רצויות." -#: libraries/messages.inc.php:501 main.php:274 +#: libraries/messages.inc.php:497 main.php:274 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " "corrupted!" msgstr "" -#: libraries/messages.inc.php:502 +#: libraries/messages.inc.php:498 msgid "MediaWiki Table" msgstr "" -#: libraries/messages.inc.php:503 transformation_overview.php:25 +#: libraries/messages.inc.php:499 transformation_overview.php:25 msgid "Available MIME types" msgstr "סוגי MIME זמינים" -#: libraries/messages.inc.php:504 transformation_overview.php:43 +#: libraries/messages.inc.php:500 transformation_overview.php:43 msgid "Available transformations" msgstr "שינויי צורה זמינים" -#: libraries/messages.inc.php:505 +#: libraries/messages.inc.php:501 msgctxt "$strMIME_description" msgid "Description" msgstr "תיאור" -#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:580 +#: libraries/messages.inc.php:503 libraries/tbl_properties.inc.php:580 #: transformation_overview.php:60 #, php-format msgid "" @@ -4166,14 +4166,14 @@ msgid "" "author what %s does." msgstr "" -#: libraries/messages.inc.php:509 libraries/tbl_properties.inc.php:137 +#: libraries/messages.inc.php:505 libraries/tbl_properties.inc.php:137 #, php-format msgid "" "For a list of available transformation options and their MIME type " "transformations, click on %stransformation descriptions%s" msgstr "" -#: libraries/messages.inc.php:510 libraries/tbl_properties.inc.php:146 +#: libraries/messages.inc.php:506 libraries/tbl_properties.inc.php:146 #, fuzzy msgid "" "Please enter the values for transformation options using this format: 'a', " @@ -4186,469 +4186,469 @@ msgstr "" "(\"'\") ביחד עם הערכים האלה, הכנס לוכסן אחורי לפניהם (לדוגמא '\\\\xyz' or 'a" "\\'b')." -#: libraries/messages.inc.php:511 libraries/tbl_properties.inc.php:145 +#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:145 #, fuzzy msgid "Transformation options" msgstr "לתבנית זאת אין אפשרויות" -#: libraries/messages.inc.php:513 transformation_overview.php:38 +#: libraries/messages.inc.php:509 transformation_overview.php:38 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "" -#: libraries/messages.inc.php:515 tbl_indexes.php:162 +#: libraries/messages.inc.php:511 tbl_indexes.php:162 msgid "Modify an index" msgstr "עריכת אינדקס" -#: libraries/messages.inc.php:517 pmd_general.php:108 +#: libraries/messages.inc.php:513 pmd_general.php:108 msgid "Move Menu" msgstr "" -#: libraries/messages.inc.php:518 tbl_operations.php:276 +#: libraries/messages.inc.php:514 tbl_operations.php:276 msgid "Move table to (database.table):" msgstr "העברת טבלה אל (מסד נתונים.טבלה):" -#: libraries/messages.inc.php:519 tbl_move_copy.php:56 +#: libraries/messages.inc.php:515 tbl_move_copy.php:56 #, php-format msgid "Table %s has been moved to %s." msgstr "הטבלה %s הועברה ל- %s." -#: libraries/messages.inc.php:520 tbl_move_copy.php:46 +#: libraries/messages.inc.php:516 tbl_move_copy.php:46 #, fuzzy msgid "Can't move table to same one!" msgstr "לא ניתן להעתיק טבלה אל אותה אחת!" -#: libraries/messages.inc.php:521 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:517 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 #: libraries/mysql_charsets.lib.php:332 libraries/mysql_charsets.lib.php:354 #: libraries/mysql_charsets.lib.php:365 msgid "multilingual" msgstr "" -#: libraries/messages.inc.php:534 main.php:193 +#: libraries/messages.inc.php:530 main.php:193 msgid "MySQL charset" msgstr "קידוד MySQL" -#: libraries/messages.inc.php:535 main.php:211 +#: libraries/messages.inc.php:531 main.php:211 msgid "MySQL client version" msgstr "" -#: libraries/messages.inc.php:536 main.php:125 +#: libraries/messages.inc.php:532 main.php:125 msgid "MySQL connection collation" msgstr "קידוד חיבור MySQL" -#: libraries/messages.inc.php:537 main.php:346 +#: libraries/messages.inc.php:533 main.php:346 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: libraries/messages.inc.php:539 server_status.php:294 +#: libraries/messages.inc.php:535 server_status.php:294 msgid "Show processes" msgstr "ראיית תהליכים" -#: libraries/messages.inc.php:545 navigation.php:210 server_databases.php:371 +#: libraries/messages.inc.php:541 navigation.php:210 server_databases.php:371 #: server_synchronize.php:1191 msgid "No databases" msgstr "אין מאגרי נתונים" -#: libraries/messages.inc.php:546 server_databases.php:52 +#: libraries/messages.inc.php:542 server_databases.php:52 msgid "No databases selected." msgstr "אף מאגר נתונים לא נבחר." -#: libraries/messages.inc.php:548 libraries/relation.lib.php:1173 +#: libraries/messages.inc.php:544 libraries/relation.lib.php:1173 msgid "no description" msgstr "ללא תיאור" -#: libraries/messages.inc.php:552 libraries/zip_extension.lib.php:26 +#: libraries/messages.inc.php:548 libraries/zip_extension.lib.php:26 msgid "No files found inside ZIP archive!" msgstr "" -#: libraries/messages.inc.php:555 tbl_indexes.php:91 +#: libraries/messages.inc.php:551 tbl_indexes.php:91 msgid "No index parts defined!" msgstr "No index parts defined!" -#: libraries/messages.inc.php:556 libraries/mult_submits.inc.php:435 +#: libraries/messages.inc.php:552 libraries/mult_submits.inc.php:435 #: tbl_replace.php:331 msgid "No change" msgstr "ללא שינוי" -#: libraries/messages.inc.php:557 +#: libraries/messages.inc.php:553 #, fuzzy msgctxt "$strNoneDefault" msgid "None" msgstr "ללא" -#: libraries/messages.inc.php:560 libraries/plugin_interface.lib.php:312 +#: libraries/messages.inc.php:556 libraries/plugin_interface.lib.php:312 msgid "This format has no options" msgstr "לתבנית זאת אין אפשרויות" -#: libraries/messages.inc.php:565 user_password.php:54 +#: libraries/messages.inc.php:561 user_password.php:54 msgid "You don't have sufficient privileges to be here right now!" msgstr "אין לך הרשאות מספיקות להיות כאן כרגע!" -#: libraries/messages.inc.php:566 tbl_row_action.php:29 +#: libraries/messages.inc.php:562 tbl_row_action.php:29 msgid "No rows selected" msgstr "לא נבחרו שורות" -#: libraries/messages.inc.php:569 themes.php:32 +#: libraries/messages.inc.php:565 themes.php:32 #, php-format msgid "" "No themes support; please check your configuration and/or your themes in " "directory %s." msgstr "" -#: libraries/messages.inc.php:571 libraries/relation.lib.php:95 +#: libraries/messages.inc.php:567 libraries/relation.lib.php:95 msgid "not OK" msgstr "לא בסדר" -#: libraries/messages.inc.php:572 server_synchronize.php:400 +#: libraries/messages.inc.php:568 server_synchronize.php:400 #: server_synchronize.php:839 msgid "not present" msgstr "" -#: libraries/messages.inc.php:573 pdf_pages.php:36 pdf_pages.php:42 +#: libraries/messages.inc.php:569 pdf_pages.php:36 pdf_pages.php:42 #: pdf_pages.php:48 pdf_pages.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "טבלה %s לא נמצאה או לא קיימת בתוך %s" -#: libraries/messages.inc.php:574 server_privileges.php:804 +#: libraries/messages.inc.php:570 server_privileges.php:804 #: server_privileges.php:2166 msgid "No user(s) found." msgstr "לא נמצאו משתמשים." -#: libraries/messages.inc.php:578 pmd_general.php:164 +#: libraries/messages.inc.php:574 pmd_general.php:164 #, fuzzy msgid "Number of tables" msgstr "מספר שדות" -#: libraries/messages.inc.php:581 server_databases.php:117 +#: libraries/messages.inc.php:577 server_databases.php:117 #: server_status.php:260 setup/lib/messages.inc.php:117 msgid "Tables" msgstr "טבלאות" -#: libraries/messages.inc.php:583 libraries/relation.lib.php:99 +#: libraries/messages.inc.php:579 libraries/relation.lib.php:99 #: pmd_general.php:340 msgid "OK" msgstr "אישור" -#: libraries/messages.inc.php:585 +#: libraries/messages.inc.php:581 msgid "Open Document Text" msgstr "" -#: libraries/messages.inc.php:588 tbl_select.php:138 +#: libraries/messages.inc.php:584 tbl_select.php:138 #, fuzzy msgid "Operator" msgstr "פעולות" -#: libraries/messages.inc.php:589 tbl_operations.php:662 +#: libraries/messages.inc.php:585 tbl_operations.php:662 msgid "Optimize" msgstr "" -#: libraries/messages.inc.php:602 libraries/tbl_properties.inc.php:755 +#: libraries/messages.inc.php:598 libraries/tbl_properties.inc.php:755 msgid "PARTITION definition" msgstr "" -#: libraries/messages.inc.php:603 tbl_structure.php:757 +#: libraries/messages.inc.php:599 tbl_structure.php:757 msgid "partitioned" msgstr "" -#: libraries/messages.inc.php:604 tbl_operations.php:649 +#: libraries/messages.inc.php:600 tbl_operations.php:649 #, fuzzy msgid "Partition maintenance" msgstr "אחזקת טבלה" -#: libraries/messages.inc.php:605 tbl_operations.php:657 +#: libraries/messages.inc.php:601 tbl_operations.php:657 #, php-format msgid "Partition %s" msgstr "" -#: libraries/messages.inc.php:606 server_privileges.php:1212 +#: libraries/messages.inc.php:602 server_privileges.php:1212 #, php-format msgid "The password for %s was changed successfully." msgstr "הסיסמא עבור %s שונתה בהצלחה." -#: libraries/messages.inc.php:635 +#: libraries/messages.inc.php:631 #, php-format msgid "Schema of the \"%s\" database - Page %s" msgstr "" -#: libraries/messages.inc.php:636 +#: libraries/messages.inc.php:632 #, php-format msgid "The \"%s\" table doesn't exist!" msgstr "הטבלה \"%s\" לא קיימת!" -#: libraries/messages.inc.php:637 pdf_schema.php:1013 +#: libraries/messages.inc.php:633 pdf_schema.php:1013 msgid "No tables" msgstr "אין טבלאות" -#: libraries/messages.inc.php:638 pmd_pdf.php:63 +#: libraries/messages.inc.php:634 pmd_pdf.php:63 #, fuzzy msgid "Page has been created" msgstr "טבלה %s נמחקה" -#: libraries/messages.inc.php:639 pmd_pdf.php:65 +#: libraries/messages.inc.php:635 pmd_pdf.php:65 msgid "Page creation failed" msgstr "" -#: libraries/messages.inc.php:640 +#: libraries/messages.inc.php:636 msgid "PDF" msgstr "" -#: libraries/messages.inc.php:641 +#: libraries/messages.inc.php:637 msgid "(Generates a report containing the data of a single table)" msgstr "" -#: libraries/messages.inc.php:642 +#: libraries/messages.inc.php:638 msgid "Report title" msgstr "" -#: libraries/messages.inc.php:643 server_status.php:389 server_status.php:434 +#: libraries/messages.inc.php:639 server_status.php:389 server_status.php:434 #: server_status.php:497 server_status.php:555 msgid "per hour" msgstr "לשעה" -#: libraries/messages.inc.php:644 server_status.php:498 +#: libraries/messages.inc.php:640 server_status.php:498 msgid "per minute" msgstr "לדקה" -#: libraries/messages.inc.php:645 server_status.php:499 +#: libraries/messages.inc.php:641 server_status.php:499 msgid "per second" msgstr "לשנייה" -#: libraries/messages.inc.php:646 libraries/mysql_charsets.lib.php:271 +#: libraries/messages.inc.php:642 libraries/mysql_charsets.lib.php:271 msgid "Persian" msgstr "Persian" -#: libraries/messages.inc.php:647 libraries/mysql_charsets.lib.php:250 +#: libraries/messages.inc.php:643 libraries/mysql_charsets.lib.php:250 msgid "phone book" msgstr "phone book" -#: libraries/messages.inc.php:648 +#: libraries/messages.inc.php:644 msgid "PHP array" msgstr "" -#: libraries/messages.inc.php:650 main.php:213 +#: libraries/messages.inc.php:646 main.php:213 #, fuzzy msgid "PHP extension" msgstr "גרסת PHP" -#: libraries/messages.inc.php:654 libraries/relation.lib.php:163 +#: libraries/messages.inc.php:650 libraries/relation.lib.php:163 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/messages.inc.php:655 libraries/relation.lib.php:159 +#: libraries/messages.inc.php:651 libraries/relation.lib.php:159 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/messages.inc.php:656 libraries/relation.lib.php:161 +#: libraries/messages.inc.php:652 libraries/relation.lib.php:161 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" -#: libraries/messages.inc.php:657 libraries/relation.lib.php:162 +#: libraries/messages.inc.php:653 libraries/relation.lib.php:162 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/messages.inc.php:658 libraries/relation.lib.php:164 +#: libraries/messages.inc.php:654 libraries/relation.lib.php:164 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/messages.inc.php:661 libraries/mysql_charsets.lib.php:274 +#: libraries/messages.inc.php:657 libraries/mysql_charsets.lib.php:274 msgid "Polish" msgstr "Polish" -#: libraries/messages.inc.php:662 libraries/replication_gui.lib.php:67 +#: libraries/messages.inc.php:658 libraries/replication_gui.lib.php:67 #: server_synchronize.php:1163 #, fuzzy msgid "Port" msgstr "סידור" -#: libraries/messages.inc.php:667 tbl_indexes.php:67 +#: libraries/messages.inc.php:663 tbl_indexes.php:67 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "" -#: libraries/messages.inc.php:668 tbl_indexes.php:184 +#: libraries/messages.inc.php:664 tbl_indexes.php:184 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" -#: libraries/messages.inc.php:669 libraries/mult_submits.inc.php:76 +#: libraries/messages.inc.php:665 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:474 msgid "Primary" msgstr "ראשי" -#: libraries/messages.inc.php:673 server_privileges.php:227 +#: libraries/messages.inc.php:669 server_privileges.php:227 msgid "Includes all privileges except GRANT." msgstr "כלול כל ההרשאות חוץ מ- GRANT." -#: libraries/messages.inc.php:674 server_privileges.php:153 +#: libraries/messages.inc.php:670 server_privileges.php:153 #: server_privileges.php:476 msgid "Allows altering the structure of existing tables." msgstr "מאפשר שינוי של מבני הטבלאות הקיימות." -#: libraries/messages.inc.php:675 server_privileges.php:169 +#: libraries/messages.inc.php:671 server_privileges.php:169 #: server_privileges.php:482 #, fuzzy msgid "Allows altering and dropping stored routines." msgstr "מאפשר יצירת שגרות מאוחסנות." -#: libraries/messages.inc.php:676 server_privileges.php:145 +#: libraries/messages.inc.php:672 server_privileges.php:145 #: server_privileges.php:475 #, fuzzy msgid "Allows creating new databases and tables." msgstr "מאפשר מחיקת מאגרי נתונים וטבלאות." -#: libraries/messages.inc.php:677 server_privileges.php:168 +#: libraries/messages.inc.php:673 server_privileges.php:168 #: server_privileges.php:481 msgid "Allows creating stored routines." msgstr "מאפשר יצירת שגרות מאוחסנות." -#: libraries/messages.inc.php:678 server_privileges.php:475 +#: libraries/messages.inc.php:674 server_privileges.php:475 msgid "Allows creating new tables." msgstr "מאפשר יצירת טבלאות חדשות." -#: libraries/messages.inc.php:679 server_privileges.php:156 +#: libraries/messages.inc.php:675 server_privileges.php:156 #: server_privileges.php:479 msgid "Allows creating temporary tables." msgstr "מאפשר יצירת טבלאות זמניות." -#: libraries/messages.inc.php:680 server_privileges.php:170 +#: libraries/messages.inc.php:676 server_privileges.php:170 #: server_privileges.php:515 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: libraries/messages.inc.php:681 server_privileges.php:160 +#: libraries/messages.inc.php:677 server_privileges.php:160 #: server_privileges.php:164 server_privileges.php:487 #: server_privileges.php:491 #, fuzzy msgid "Allows creating new views." msgstr "מאפשר יצירת טבלאות חדשות." -#: libraries/messages.inc.php:682 server_privileges.php:144 +#: libraries/messages.inc.php:678 server_privileges.php:144 #: server_privileges.php:467 msgid "Allows deleting data." msgstr "מאפשר מחיקת מידע." -#: libraries/messages.inc.php:683 server_privileges.php:146 +#: libraries/messages.inc.php:679 server_privileges.php:146 #: server_privileges.php:478 msgid "Allows dropping databases and tables." msgstr "מאפשר מחיקת מאגרי נתונים וטבלאות." -#: libraries/messages.inc.php:684 server_privileges.php:478 +#: libraries/messages.inc.php:680 server_privileges.php:478 msgid "Allows dropping tables." msgstr "מאפשר מחיקת טבלאות." -#: libraries/messages.inc.php:685 server_privileges.php:161 +#: libraries/messages.inc.php:681 server_privileges.php:161 #: server_privileges.php:495 msgid "Allows to set up events for the event scheduler" msgstr "" -#: libraries/messages.inc.php:686 server_privileges.php:171 +#: libraries/messages.inc.php:682 server_privileges.php:171 #: server_privileges.php:483 #, fuzzy msgid "Allows executing stored routines." msgstr "מאפשר יצירת שגרות מאוחסנות." -#: libraries/messages.inc.php:687 server_privileges.php:150 +#: libraries/messages.inc.php:683 server_privileges.php:150 #: server_privileges.php:470 msgid "Allows importing data from and exporting data into files." msgstr "" -#: libraries/messages.inc.php:688 server_privileges.php:501 +#: libraries/messages.inc.php:684 server_privileges.php:501 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: libraries/messages.inc.php:689 server_privileges.php:152 +#: libraries/messages.inc.php:685 server_privileges.php:152 #: server_privileges.php:477 msgid "Allows creating and dropping indexes." msgstr "" -#: libraries/messages.inc.php:690 server_privileges.php:142 +#: libraries/messages.inc.php:686 server_privileges.php:142 #: server_privileges.php:403 server_privileges.php:465 msgid "Allows inserting and replacing data." msgstr "" -#: libraries/messages.inc.php:691 server_privileges.php:157 +#: libraries/messages.inc.php:687 server_privileges.php:157 #: server_privileges.php:510 msgid "Allows locking tables for the current thread." msgstr "" -#: libraries/messages.inc.php:692 server_privileges.php:607 +#: libraries/messages.inc.php:688 server_privileges.php:607 #: server_privileges.php:609 msgid "Limits the number of new connections the user may open per hour." msgstr "" -#: libraries/messages.inc.php:693 server_privileges.php:595 +#: libraries/messages.inc.php:689 server_privileges.php:595 #: server_privileges.php:597 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" -#: libraries/messages.inc.php:694 server_privileges.php:601 +#: libraries/messages.inc.php:690 server_privileges.php:601 #: server_privileges.php:603 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" -#: libraries/messages.inc.php:695 server_privileges.php:613 +#: libraries/messages.inc.php:691 server_privileges.php:613 #: server_privileges.php:615 msgid "Limits the number of simultaneous connections the user may have." msgstr "" -#: libraries/messages.inc.php:696 server_privileges.php:149 +#: libraries/messages.inc.php:692 server_privileges.php:149 #: server_privileges.php:505 msgid "Allows viewing processes of all users" msgstr "" -#: libraries/messages.inc.php:697 server_privileges.php:151 +#: libraries/messages.inc.php:693 server_privileges.php:151 #: server_privileges.php:409 server_privileges.php:511 msgid "Has no effect in this MySQL version." msgstr "" -#: libraries/messages.inc.php:698 server_privileges.php:147 +#: libraries/messages.inc.php:694 server_privileges.php:147 #: server_privileges.php:506 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: libraries/messages.inc.php:699 server_privileges.php:159 +#: libraries/messages.inc.php:695 server_privileges.php:159 #: server_privileges.php:513 msgid "Allows the user to ask where the slaves / masters are." msgstr "" -#: libraries/messages.inc.php:700 server_privileges.php:158 +#: libraries/messages.inc.php:696 server_privileges.php:158 #: server_privileges.php:514 msgid "Needed for the replication slaves." msgstr "" -#: libraries/messages.inc.php:701 server_privileges.php:141 +#: libraries/messages.inc.php:697 server_privileges.php:141 #: server_privileges.php:400 server_privileges.php:464 #, fuzzy msgid "Allows reading data." msgstr "מאפשר מחיקת מידע." -#: libraries/messages.inc.php:702 server_privileges.php:154 +#: libraries/messages.inc.php:698 server_privileges.php:154 #: server_privileges.php:508 msgid "Gives access to the complete list of databases." msgstr "" -#: libraries/messages.inc.php:703 server_privileges.php:165 +#: libraries/messages.inc.php:699 server_privileges.php:165 #: server_privileges.php:167 server_privileges.php:480 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: libraries/messages.inc.php:704 server_privileges.php:148 +#: libraries/messages.inc.php:700 server_privileges.php:148 #: server_privileges.php:507 msgid "Allows shutting down the server." msgstr "" -#: libraries/messages.inc.php:705 server_privileges.php:155 +#: libraries/messages.inc.php:701 server_privileges.php:155 #: server_privileges.php:504 msgid "" "Allows connecting, even if maximum number of connections is reached; " @@ -4656,194 +4656,194 @@ msgid "" "killing threads of other users." msgstr "" -#: libraries/messages.inc.php:706 server_privileges.php:162 +#: libraries/messages.inc.php:702 server_privileges.php:162 #: server_privileges.php:496 msgid "Allows creating and dropping triggers" msgstr "" -#: libraries/messages.inc.php:707 server_privileges.php:143 +#: libraries/messages.inc.php:703 server_privileges.php:143 #: server_privileges.php:406 server_privileges.php:466 #, fuzzy msgid "Allows changing data." msgstr "מאפשר מחיקת מידע." -#: libraries/messages.inc.php:708 server_privileges.php:221 +#: libraries/messages.inc.php:704 server_privileges.php:221 msgid "No privileges." msgstr "ללא הרשאות." -#: libraries/messages.inc.php:710 server_privileges.php:1296 +#: libraries/messages.inc.php:706 server_privileges.php:1296 msgid "The privileges were reloaded successfully." msgstr "ההרשאות נטענו מחדש בהצלחה." -#: libraries/messages.inc.php:712 libraries/server_links.inc.php:80 +#: libraries/messages.inc.php:708 libraries/server_links.inc.php:80 msgid "Processes" msgstr "תהליכים" -#: libraries/messages.inc.php:714 main.php:187 +#: libraries/messages.inc.php:710 main.php:187 msgid "Protocol version" msgstr "" -#: libraries/messages.inc.php:715 +#: libraries/messages.inc.php:711 msgid "Put fields names in the first row" msgstr "" -#: libraries/messages.inc.php:720 server_synchronize.php:1003 +#: libraries/messages.inc.php:716 server_synchronize.php:1003 msgid "The following queries have been executed:" msgstr "" -#: libraries/messages.inc.php:721 server_status.php:251 +#: libraries/messages.inc.php:717 server_status.php:251 #, fuzzy msgid "Query cache" msgstr "סוג שאילתה" -#: libraries/messages.inc.php:722 libraries/navigation_header.inc.php:80 +#: libraries/messages.inc.php:718 libraries/navigation_header.inc.php:80 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 setup/lib/messages.inc.php:122 msgid "Query window" msgstr "חלון שאילתה" -#: libraries/messages.inc.php:725 querywindow.php:109 querywindow.php:217 +#: libraries/messages.inc.php:721 querywindow.php:109 querywindow.php:217 msgid "SQL history" msgstr "היסטוריית SQL" -#: libraries/messages.inc.php:726 server_status.php:490 +#: libraries/messages.inc.php:722 server_status.php:490 #, php-format msgid "" "Query statistics: Since its startup, %s queries have been sent to the " "server." msgstr "סטטיטיקת שאילתות: מאז ההפעלה, %s שאילתות נשלחו לשרת." -#: libraries/messages.inc.php:728 server_status.php:554 +#: libraries/messages.inc.php:724 server_status.php:554 msgid "Query type" msgstr "סוג שאילתה" -#: libraries/messages.inc.php:729 libraries/sql_query_form.lib.php:381 +#: libraries/messages.inc.php:725 libraries/sql_query_form.lib.php:381 msgid "Do not overwrite this query from outside the window" msgstr "אל תכתוב מחדש על שאילתה זאת מחוץ לחלון זה" -#: libraries/messages.inc.php:732 tbl_operations.php:663 +#: libraries/messages.inc.php:728 tbl_operations.php:663 msgid "Rebuild" msgstr "" -#: libraries/messages.inc.php:733 server_status.php:394 +#: libraries/messages.inc.php:729 server_status.php:394 msgid "Received" msgstr "התקבל" -#: libraries/messages.inc.php:734 pmd_pdf.php:89 +#: libraries/messages.inc.php:730 pmd_pdf.php:89 msgid "recommended" msgstr "" -#: libraries/messages.inc.php:736 tbl_operations.php:702 +#: libraries/messages.inc.php:732 tbl_operations.php:702 msgid "Check referential integrity:" msgstr "" -#: libraries/messages.inc.php:740 pdf_schema.php:1032 pdf_schema.php:1141 +#: libraries/messages.inc.php:736 pdf_schema.php:1032 pdf_schema.php:1141 msgid "Relational schema" msgstr "" -#: libraries/messages.inc.php:744 tbl_relation.php:399 +#: libraries/messages.inc.php:740 tbl_relation.php:399 msgid "Relations" msgstr "יחסים" -#: libraries/messages.inc.php:745 tbl_structure.php:507 tbl_structure.php:509 +#: libraries/messages.inc.php:741 tbl_structure.php:507 tbl_structure.php:509 msgid "Relation view" msgstr "תצוגת יחסים" -#: libraries/messages.inc.php:746 server_privileges.php:1246 +#: libraries/messages.inc.php:742 server_privileges.php:1246 msgid "Reloading the privileges" msgstr "טוען מחדש הרשאות" -#: libraries/messages.inc.php:747 navigation.php:66 navigation.php:67 +#: libraries/messages.inc.php:743 navigation.php:66 navigation.php:67 #: navigation.php:70 msgid "Reload navigation frame" msgstr "" -#: libraries/messages.inc.php:748 pmd_general.php:80 +#: libraries/messages.inc.php:744 pmd_general.php:80 msgid "Reload" msgstr "" -#: libraries/messages.inc.php:749 libraries/server_synchronize.lib.php:1345 +#: libraries/messages.inc.php:745 libraries/server_synchronize.lib.php:1345 #: libraries/server_synchronize.lib.php:1371 msgid "Remote server" msgstr "" -#: libraries/messages.inc.php:750 +#: libraries/messages.inc.php:746 msgid "Remove CRLF characters within fields" msgstr "" -#: libraries/messages.inc.php:751 tbl_operations.php:676 +#: libraries/messages.inc.php:747 tbl_operations.php:676 msgid "Remove partitioning" msgstr "" -#: libraries/messages.inc.php:752 server_privileges.php:1575 +#: libraries/messages.inc.php:748 server_privileges.php:1575 msgid "Remove selected users" msgstr "הסרת משתמשים שנבחרו" -#: libraries/messages.inc.php:755 tbl_operations.php:338 +#: libraries/messages.inc.php:751 tbl_operations.php:338 msgid "Rename table to" msgstr "שינוי שם טבלה אל" -#: libraries/messages.inc.php:756 view_operations.php:93 +#: libraries/messages.inc.php:752 view_operations.php:93 #, fuzzy msgid "Rename view to" msgstr "שינוי שם טבלה אל" -#: libraries/messages.inc.php:757 tbl_operations.php:664 +#: libraries/messages.inc.php:753 tbl_operations.php:664 #, fuzzy msgid "Repair" msgstr "תיקון טבלה" -#: libraries/messages.inc.php:759 +#: libraries/messages.inc.php:755 msgid "Replace NULL by" msgstr "החלפת NULL ע\"י" -#: libraries/messages.inc.php:760 +#: libraries/messages.inc.php:756 msgid "Replace table data with file" msgstr "החלפת נתוני הטבלה עם הקובץ" -#: libraries/messages.inc.php:761 server_replication.php:228 +#: libraries/messages.inc.php:757 server_replication.php:228 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: libraries/messages.inc.php:762 libraries/replication_gui.lib.php:236 +#: libraries/messages.inc.php:758 libraries/replication_gui.lib.php:236 #: server_replication.php:194 msgid "Add slave replication user" msgstr "" -#: libraries/messages.inc.php:763 server_replication.php:74 +#: libraries/messages.inc.php:759 server_replication.php:74 #, php-format msgid "Master server changed succesfully to %s" msgstr "" -#: libraries/messages.inc.php:764 server_replication.php:182 +#: libraries/messages.inc.php:760 server_replication.php:182 msgid "This server is configured as master in a replication process." msgstr "" -#: libraries/messages.inc.php:765 server_replication.php:322 +#: libraries/messages.inc.php:761 server_replication.php:322 msgid "Control slave:" msgstr "" -#: libraries/messages.inc.php:766 server_replication.php:65 +#: libraries/messages.inc.php:762 server_replication.php:65 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: libraries/messages.inc.php:767 server_replication.php:58 +#: libraries/messages.inc.php:763 server_replication.php:58 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: libraries/messages.inc.php:768 server_replication.php:221 +#: libraries/messages.inc.php:764 server_replication.php:221 msgid "Replicate all databases; Ignore:" msgstr "" -#: libraries/messages.inc.php:769 server_replication.php:222 +#: libraries/messages.inc.php:765 server_replication.php:222 msgid "Ignore all databases; Replicate:" msgstr "" -#: libraries/messages.inc.php:770 server_replication.php:218 +#: libraries/messages.inc.php:766 server_replication.php:218 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -4852,121 +4852,121 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: libraries/messages.inc.php:771 server_replication.php:217 +#: libraries/messages.inc.php:767 server_replication.php:217 msgid "Master configuration" msgstr "" -#: libraries/messages.inc.php:772 server_replication.php:181 +#: libraries/messages.inc.php:768 server_replication.php:181 #: server_replication.php:209 msgid "Master replication" msgstr "" -#: libraries/messages.inc.php:774 server_replication.php:230 +#: libraries/messages.inc.php:770 server_replication.php:230 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: libraries/messages.inc.php:775 server_replication.php:225 +#: libraries/messages.inc.php:771 server_replication.php:225 #, fuzzy msgid "Please select databases:" msgstr "אנא בחר מאגר נתונים" -#: libraries/messages.inc.php:776 server_replication.php:210 +#: libraries/messages.inc.php:772 server_replication.php:210 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:188 +#: libraries/messages.inc.php:773 libraries/replication_gui.lib.php:188 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/messages.inc.php:778 server_replication.php:187 +#: libraries/messages.inc.php:774 server_replication.php:187 msgid "Show connected slaves" msgstr "" -#: libraries/messages.inc.php:779 libraries/messages.inc.php:885 +#: libraries/messages.inc.php:775 libraries/messages.inc.php:881 #: server_replication.php:184 server_status.php:281 msgid "Show master status" msgstr "" -#: libraries/messages.inc.php:780 server_replication.php:334 +#: libraries/messages.inc.php:776 server_replication.php:334 msgid "Skipping error(s) might lead into unsynchronized master and slave!" msgstr "" -#: libraries/messages.inc.php:781 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:51 #: server_replication.php:347 msgid "Change or reconfigure master server" msgstr "" -#: libraries/messages.inc.php:782 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:778 libraries/replication_gui.lib.php:51 msgid "Slave configuration" msgstr "" -#: libraries/messages.inc.php:783 server_replication.php:305 +#: libraries/messages.inc.php:779 server_replication.php:305 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: libraries/messages.inc.php:784 server_replication.php:332 +#: libraries/messages.inc.php:780 server_replication.php:332 msgid "Error management:" msgstr "" -#: libraries/messages.inc.php:785 server_replication.php:328 +#: libraries/messages.inc.php:781 server_replication.php:328 #, php-format msgid "IO Thread %s only" msgstr "" -#: libraries/messages.inc.php:786 server_replication.php:296 +#: libraries/messages.inc.php:782 server_replication.php:296 msgid "Slave IO Thread not running!" msgstr "" -#: libraries/messages.inc.php:787 server_replication.php:355 +#: libraries/messages.inc.php:783 server_replication.php:355 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/messages.inc.php:788 server_replication.php:326 +#: libraries/messages.inc.php:784 server_replication.php:326 msgid "Reset slave" msgstr "" -#: libraries/messages.inc.php:789 server_replication.php:308 +#: libraries/messages.inc.php:785 server_replication.php:308 msgid "See slave status table" msgstr "" -#: libraries/messages.inc.php:790 server_replication.php:336 +#: libraries/messages.inc.php:786 server_replication.php:336 msgid "Skip current error" msgstr "" -#: libraries/messages.inc.php:791 server_replication.php:340 +#: libraries/messages.inc.php:787 server_replication.php:340 msgid "errors." msgstr "" -#: libraries/messages.inc.php:792 server_replication.php:337 +#: libraries/messages.inc.php:788 server_replication.php:337 msgid "Skip next" msgstr "" -#: libraries/messages.inc.php:793 server_replication.php:248 +#: libraries/messages.inc.php:789 server_replication.php:248 msgid "Slave replication" msgstr "" -#: libraries/messages.inc.php:794 server_replication.php:293 +#: libraries/messages.inc.php:790 server_replication.php:293 msgid "Slave SQL Thread not running!" msgstr "" -#: libraries/messages.inc.php:795 server_replication.php:327 +#: libraries/messages.inc.php:791 server_replication.php:327 #, php-format msgid "SQL Thread %s only" msgstr "" -#: libraries/messages.inc.php:796 +#: libraries/messages.inc.php:792 #, php-format msgid "" "This MySQL server works as %s in replication process. For further " @@ -4974,169 +4974,169 @@ msgid "" "\"#replication\">replication section." msgstr "" -#: libraries/messages.inc.php:797 +#: libraries/messages.inc.php:793 msgid "Master status" msgstr "" -#: libraries/messages.inc.php:798 server_status.php:721 +#: libraries/messages.inc.php:794 server_status.php:721 msgid "Replication status" msgstr "" -#: libraries/messages.inc.php:799 +#: libraries/messages.inc.php:795 msgid "Slave status" msgstr "" -#: libraries/messages.inc.php:800 server_replication.php:311 +#: libraries/messages.inc.php:796 server_replication.php:311 msgid "Synchronize databases with master" msgstr "" -#: libraries/messages.inc.php:801 server_replication.php:71 +#: libraries/messages.inc.php:797 server_replication.php:71 msgid "Unable to change master" msgstr "" -#: libraries/messages.inc.php:802 server_replication.php:51 +#: libraries/messages.inc.php:798 server_replication.php:51 msgid "Unknown error" msgstr "" -#: libraries/messages.inc.php:803 main.php:163 pdf_pages.php:344 +#: libraries/messages.inc.php:799 main.php:163 pdf_pages.php:344 #: setup/lib/FormDisplay.tpl.php:216 tbl_change.php:1175 msgid "Reset" msgstr "איפוס" -#: libraries/messages.inc.php:804 server_privileges.php:591 +#: libraries/messages.inc.php:800 server_privileges.php:591 msgid "Resource limits" msgstr "גבולות משאבים" -#: libraries/messages.inc.php:805 tbl_change.php:1209 +#: libraries/messages.inc.php:801 tbl_change.php:1209 #, php-format msgid "Restart insertion with %s rows" msgstr "" -#: libraries/messages.inc.php:807 server_privileges.php:1578 +#: libraries/messages.inc.php:803 server_privileges.php:1578 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "שלילת כל ההרשאות הפעילות מהמשתמשים ומחיקתם לאחר מכן." -#: libraries/messages.inc.php:808 server_privileges.php:1176 +#: libraries/messages.inc.php:804 server_privileges.php:1176 #, php-format msgid "You have revoked the privileges for %s" msgstr "אתה שללת הרשאות עבור %s" -#: libraries/messages.inc.php:809 server_privileges.php:1333 +#: libraries/messages.inc.php:805 server_privileges.php:1333 msgid "Revoke" msgstr "שלילה" -#: libraries/messages.inc.php:810 libraries/mysql_charsets.lib.php:280 +#: libraries/messages.inc.php:806 libraries/mysql_charsets.lib.php:280 msgid "Romanian" msgstr "רומנית" -#: libraries/messages.inc.php:813 tbl_printview.php:404 tbl_structure.php:786 +#: libraries/messages.inc.php:809 tbl_printview.php:404 tbl_structure.php:786 msgid "Row length" msgstr "אורך שורה" -#: libraries/messages.inc.php:815 tbl_printview.php:414 tbl_structure.php:794 +#: libraries/messages.inc.php:811 tbl_printview.php:414 tbl_structure.php:794 msgid " Row size " msgstr " גודל שורה " -#: libraries/messages.inc.php:821 tbl_printview.php:366 tbl_structure.php:726 +#: libraries/messages.inc.php:817 tbl_printview.php:366 tbl_structure.php:726 msgid "Row Statistics" msgstr "סטטיסטיקת שורה" -#: libraries/messages.inc.php:822 +#: libraries/messages.inc.php:818 #, php-format msgid "running on %s" msgstr "פועל על %s" -#: libraries/messages.inc.php:824 libraries/sql_query_form.lib.php:223 +#: libraries/messages.inc.php:820 libraries/sql_query_form.lib.php:223 #, fuzzy, php-format msgid "Run SQL query/queries on server %s" msgstr "הרצת את שאילתה/שאילתות על מסד הנתונים %s" -#: libraries/messages.inc.php:825 libraries/sql_query_form.lib.php:240 +#: libraries/messages.inc.php:821 libraries/sql_query_form.lib.php:240 #: libraries/sql_query_form.lib.php:265 #, php-format msgid "Run SQL query/queries on database %s" msgstr "הרצת את שאילתה/שאילתות על מסד הנתונים %s" -#: libraries/messages.inc.php:826 libraries/mysql_charsets.lib.php:337 +#: libraries/messages.inc.php:822 libraries/mysql_charsets.lib.php:337 msgid "Russian" msgstr "רוסית" -#: libraries/messages.inc.php:829 pmd_general.php:68 +#: libraries/messages.inc.php:825 pmd_general.php:68 msgid "Save position" msgstr "" -#: libraries/messages.inc.php:830 libraries/tbl_properties.inc.php:776 +#: libraries/messages.inc.php:826 libraries/tbl_properties.inc.php:776 #: pdf_pages.php:484 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:214 setup/lib/FormDisplay.tpl.php:215 #: tbl_change.php:1126 tbl_indexes.php:248 tbl_relation.php:566 msgid "Save" msgstr "שמירה" -#: libraries/messages.inc.php:831 +#: libraries/messages.inc.php:827 msgid "The scale factor is too small to fit the schema on one page" msgstr "" -#: libraries/messages.inc.php:843 main.php:298 +#: libraries/messages.inc.php:839 main.php:298 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" -#: libraries/messages.inc.php:844 navigation.php:353 navigation.php:516 +#: libraries/messages.inc.php:840 navigation.php:353 navigation.php:516 msgid "Please select a database" msgstr "אנא בחר מאגר נתונים" -#: libraries/messages.inc.php:846 server_binlog.php:120 +#: libraries/messages.inc.php:842 server_binlog.php:120 msgid "Select binary log to view" msgstr "" -#: libraries/messages.inc.php:847 tbl_select.php:270 +#: libraries/messages.inc.php:843 tbl_select.php:270 msgid "Select fields (at least one):" msgstr "בחירת שדות (לפחות אחד):" -#: libraries/messages.inc.php:851 pdf_pages.php:320 +#: libraries/messages.inc.php:847 pdf_pages.php:320 msgid "Select Tables" msgstr "בחירת טבלאות" -#: libraries/messages.inc.php:853 server_status.php:404 +#: libraries/messages.inc.php:849 server_status.php:404 msgid "Sent" msgstr "נשלח" -#: libraries/messages.inc.php:857 libraries/select_server.lib.php:45 +#: libraries/messages.inc.php:853 libraries/select_server.lib.php:45 #: setup/frames/index.inc.php:97 setup/lib/messages.inc.php:115 #, fuzzy msgid "Servers" msgstr "שרת" -#: libraries/messages.inc.php:858 server_status.php:255 +#: libraries/messages.inc.php:854 server_status.php:255 #, fuzzy msgid "Delayed inserts" msgstr "השתמש בהכנסות מעוכבות" -#: libraries/messages.inc.php:859 server_status.php:46 +#: libraries/messages.inc.php:855 server_status.php:46 msgid "Runtime Information" msgstr "מידע זמן ריצה" -#: libraries/messages.inc.php:860 server_status.php:350 +#: libraries/messages.inc.php:856 server_status.php:350 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "שרת MySQL פעיל במשך %s. הוא התחיל לפעול ב- %s." -#: libraries/messages.inc.php:861 libraries/server_links.inc.php:53 +#: libraries/messages.inc.php:857 libraries/server_links.inc.php:53 #: server_engines.php:112 server_engines.php:116 server_status.php:304 #: test/theme.php:105 msgid "Variables" msgstr "משתנים" -#: libraries/messages.inc.php:862 server_status.php:383 +#: libraries/messages.inc.php:858 server_status.php:383 msgid "" "Server traffic: These tables show the network traffic statistics of " "this MySQL server since its startup." msgstr "" -#: libraries/messages.inc.php:863 server_variables.php:35 +#: libraries/messages.inc.php:859 server_variables.php:35 msgid "Server variables and settings" msgstr "משתני והגדרות שרת" -#: libraries/messages.inc.php:865 main.php:290 +#: libraries/messages.inc.php:861 main.php:290 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -5144,17 +5144,17 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: libraries/messages.inc.php:866 +#: libraries/messages.inc.php:862 msgid "" "Cannot start session without errors, please check errors given in your PHP " "and/or webserver log file and configure your PHP installation properly." msgstr "" -#: libraries/messages.inc.php:867 server_variables.php:55 +#: libraries/messages.inc.php:863 server_variables.php:55 msgid "Session value" msgstr "ערך זמן חיבור (Session)" -#: libraries/messages.inc.php:868 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:864 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 " @@ -5166,56 +5166,56 @@ msgstr "" "(\"'\") ביחד עם הערכים האלה, הכנס לוכסן אחורי לפניהם (לדוגמא '\\\\xyz' or 'a" "\\'b')." -#: libraries/messages.inc.php:876 server_binlog.php:192 server_binlog.php:195 +#: libraries/messages.inc.php:872 server_binlog.php:192 server_binlog.php:195 #: server_processlist.php:49 server_processlist.php:51 msgid "Show Full Queries" msgstr "הראה שאילתות שלמות" -#: libraries/messages.inc.php:878 pmd_general.php:64 +#: libraries/messages.inc.php:874 pmd_general.php:64 msgid "Show/Hide left menu" msgstr "" -#: libraries/messages.inc.php:880 sql.php:513 +#: libraries/messages.inc.php:876 sql.php:513 msgid "Showing as PHP code" msgstr "" -#: libraries/messages.inc.php:882 sql.php:516 tbl_replace.php:360 +#: libraries/messages.inc.php:878 sql.php:516 tbl_replace.php:360 msgid "Showing SQL query" msgstr "" -#: libraries/messages.inc.php:883 tbl_change.php:1132 +#: libraries/messages.inc.php:879 tbl_change.php:1132 msgid "Show insert query" msgstr "" -#: libraries/messages.inc.php:886 server_status.php:273 +#: libraries/messages.inc.php:882 server_status.php:273 #, fuzzy msgid "Show open tables" msgstr "ראיית טבלאות" -#: libraries/messages.inc.php:887 main.php:219 +#: libraries/messages.inc.php:883 main.php:219 msgid "Show PHP information" msgstr "ראיית מידע PHP" -#: libraries/messages.inc.php:889 server_status.php:278 +#: libraries/messages.inc.php:885 server_status.php:278 msgid "Show slave hosts" msgstr "" -#: libraries/messages.inc.php:890 server_status.php:284 +#: libraries/messages.inc.php:886 server_status.php:284 msgid "Show slave status" msgstr "" -#: libraries/messages.inc.php:891 +#: libraries/messages.inc.php:887 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/messages.inc.php:892 +#: libraries/messages.inc.php:888 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/messages.inc.php:893 +#: libraries/messages.inc.php:889 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -5223,78 +5223,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/messages.inc.php:894 +#: libraries/messages.inc.php:890 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/messages.inc.php:895 +#: libraries/messages.inc.php:891 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/messages.inc.php:896 +#: libraries/messages.inc.php:892 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/messages.inc.php:897 +#: libraries/messages.inc.php:893 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/messages.inc.php:898 +#: libraries/messages.inc.php:894 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/messages.inc.php:899 +#: libraries/messages.inc.php:895 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/messages.inc.php:900 +#: libraries/messages.inc.php:896 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/messages.inc.php:901 +#: libraries/messages.inc.php:897 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/messages.inc.php:902 +#: libraries/messages.inc.php:898 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/messages.inc.php:903 +#: libraries/messages.inc.php:899 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/messages.inc.php:904 +#: libraries/messages.inc.php:900 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: libraries/messages.inc.php:905 +#: libraries/messages.inc.php:901 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/messages.inc.php:906 +#: libraries/messages.inc.php:902 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: libraries/messages.inc.php:907 +#: libraries/messages.inc.php:903 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -5302,7 +5302,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/messages.inc.php:908 +#: libraries/messages.inc.php:904 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -5310,42 +5310,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/messages.inc.php:909 +#: libraries/messages.inc.php:905 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/messages.inc.php:910 +#: libraries/messages.inc.php:906 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/messages.inc.php:911 +#: libraries/messages.inc.php:907 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/messages.inc.php:912 +#: libraries/messages.inc.php:908 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/messages.inc.php:913 +#: libraries/messages.inc.php:909 msgid "The number of pages currently dirty." msgstr "" -#: libraries/messages.inc.php:914 +#: libraries/messages.inc.php:910 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/messages.inc.php:915 +#: libraries/messages.inc.php:911 msgid "The number of free pages." msgstr "" -#: libraries/messages.inc.php:916 +#: libraries/messages.inc.php:912 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/messages.inc.php:917 +#: libraries/messages.inc.php:913 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -5353,33 +5353,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/messages.inc.php:918 +#: libraries/messages.inc.php:914 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/messages.inc.php:919 +#: libraries/messages.inc.php:915 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/messages.inc.php:920 +#: libraries/messages.inc.php:916 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/messages.inc.php:921 +#: libraries/messages.inc.php:917 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/messages.inc.php:922 +#: libraries/messages.inc.php:918 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/messages.inc.php:923 +#: libraries/messages.inc.php:919 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -5388,218 +5388,218 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/messages.inc.php:924 +#: libraries/messages.inc.php:920 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/messages.inc.php:925 +#: libraries/messages.inc.php:921 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/messages.inc.php:926 +#: libraries/messages.inc.php:922 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/messages.inc.php:927 +#: libraries/messages.inc.php:923 msgid "The current number of pending reads." msgstr "" -#: libraries/messages.inc.php:928 +#: libraries/messages.inc.php:924 msgid "The current number of pending writes." msgstr "" -#: libraries/messages.inc.php:929 +#: libraries/messages.inc.php:925 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/messages.inc.php:930 +#: libraries/messages.inc.php:926 msgid "The total number of data reads." msgstr "" -#: libraries/messages.inc.php:931 +#: libraries/messages.inc.php:927 msgid "The total number of data writes." msgstr "" -#: libraries/messages.inc.php:932 +#: libraries/messages.inc.php:928 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/messages.inc.php:933 +#: libraries/messages.inc.php:929 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/messages.inc.php:934 +#: libraries/messages.inc.php:930 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/messages.inc.php:935 +#: libraries/messages.inc.php:931 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/messages.inc.php:936 +#: libraries/messages.inc.php:932 msgid "The number of log write requests." msgstr "" -#: libraries/messages.inc.php:937 +#: libraries/messages.inc.php:933 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/messages.inc.php:938 +#: libraries/messages.inc.php:934 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/messages.inc.php:939 +#: libraries/messages.inc.php:935 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/messages.inc.php:940 +#: libraries/messages.inc.php:936 msgid "Pending log file writes." msgstr "" -#: libraries/messages.inc.php:941 +#: libraries/messages.inc.php:937 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/messages.inc.php:942 +#: libraries/messages.inc.php:938 msgid "The number of pages created." msgstr "" -#: libraries/messages.inc.php:943 +#: libraries/messages.inc.php:939 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: libraries/messages.inc.php:944 +#: libraries/messages.inc.php:940 msgid "The number of pages read." msgstr "" -#: libraries/messages.inc.php:945 +#: libraries/messages.inc.php:941 msgid "The number of pages written." msgstr "" -#: libraries/messages.inc.php:946 +#: libraries/messages.inc.php:942 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/messages.inc.php:947 +#: libraries/messages.inc.php:943 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/messages.inc.php:948 +#: libraries/messages.inc.php:944 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/messages.inc.php:949 +#: libraries/messages.inc.php:945 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/messages.inc.php:950 +#: libraries/messages.inc.php:946 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/messages.inc.php:951 +#: libraries/messages.inc.php:947 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/messages.inc.php:952 +#: libraries/messages.inc.php:948 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/messages.inc.php:953 +#: libraries/messages.inc.php:949 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/messages.inc.php:954 +#: libraries/messages.inc.php:950 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/messages.inc.php:955 +#: libraries/messages.inc.php:951 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/messages.inc.php:956 +#: libraries/messages.inc.php:952 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: libraries/messages.inc.php:957 +#: libraries/messages.inc.php:953 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/messages.inc.php:958 +#: libraries/messages.inc.php:954 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/messages.inc.php:959 +#: libraries/messages.inc.php:955 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/messages.inc.php:960 +#: libraries/messages.inc.php:956 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/messages.inc.php:961 +#: libraries/messages.inc.php:957 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/messages.inc.php:962 +#: libraries/messages.inc.php:958 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/messages.inc.php:963 +#: libraries/messages.inc.php:959 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/messages.inc.php:964 +#: libraries/messages.inc.php:960 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/messages.inc.php:965 +#: libraries/messages.inc.php:961 msgid "The number of files that are open." msgstr "" -#: libraries/messages.inc.php:966 +#: libraries/messages.inc.php:962 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/messages.inc.php:967 +#: libraries/messages.inc.php:963 msgid "The number of tables that are open." msgstr "" -#: libraries/messages.inc.php:968 +#: libraries/messages.inc.php:964 msgid "The number of free memory blocks in query cache." msgstr "" -#: libraries/messages.inc.php:969 +#: libraries/messages.inc.php:965 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/messages.inc.php:970 +#: libraries/messages.inc.php:966 msgid "The number of cache hits." msgstr "" -#: libraries/messages.inc.php:971 +#: libraries/messages.inc.php:967 msgid "The number of queries added to the cache." msgstr "" -#: libraries/messages.inc.php:972 +#: libraries/messages.inc.php:968 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -5607,105 +5607,105 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/messages.inc.php:973 +#: libraries/messages.inc.php:969 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/messages.inc.php:974 +#: libraries/messages.inc.php:970 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/messages.inc.php:975 +#: libraries/messages.inc.php:971 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/messages.inc.php:976 +#: libraries/messages.inc.php:972 #, fuzzy msgctxt "$strShowStatusReset" msgid "Reset" msgstr "איפוס" -#: libraries/messages.inc.php:977 +#: libraries/messages.inc.php:973 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/messages.inc.php:978 +#: libraries/messages.inc.php:974 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: libraries/messages.inc.php:979 +#: libraries/messages.inc.php:975 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/messages.inc.php:980 +#: libraries/messages.inc.php:976 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: libraries/messages.inc.php:981 +#: libraries/messages.inc.php:977 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/messages.inc.php:982 +#: libraries/messages.inc.php:978 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/messages.inc.php:983 +#: libraries/messages.inc.php:979 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/messages.inc.php:984 +#: libraries/messages.inc.php:980 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/messages.inc.php:985 +#: libraries/messages.inc.php:981 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/messages.inc.php:986 +#: libraries/messages.inc.php:982 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/messages.inc.php:987 +#: libraries/messages.inc.php:983 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/messages.inc.php:988 +#: libraries/messages.inc.php:984 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/messages.inc.php:989 +#: libraries/messages.inc.php:985 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/messages.inc.php:990 +#: libraries/messages.inc.php:986 msgid "The number of sorted rows." msgstr "" -#: libraries/messages.inc.php:991 +#: libraries/messages.inc.php:987 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/messages.inc.php:992 +#: libraries/messages.inc.php:988 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/messages.inc.php:993 +#: libraries/messages.inc.php:989 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -5713,18 +5713,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/messages.inc.php:994 +#: libraries/messages.inc.php:990 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/messages.inc.php:995 +#: libraries/messages.inc.php:991 msgid "The number of currently open connections." msgstr "" -#: libraries/messages.inc.php:996 +#: libraries/messages.inc.php:992 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -5732,74 +5732,74 @@ msgid "" "implementation.)" msgstr "" -#: libraries/messages.inc.php:997 +#: libraries/messages.inc.php:993 msgid "The number of threads that are not sleeping." msgstr "" -#: libraries/messages.inc.php:999 tbl_printview.php:75 +#: libraries/messages.inc.php:995 tbl_printview.php:75 msgid "Show tables" msgstr "ראיית טבלאות" -#: libraries/messages.inc.php:1000 libraries/sql_query_form.lib.php:396 +#: libraries/messages.inc.php:996 libraries/sql_query_form.lib.php:396 msgid " Show this query here again " msgstr " הראה את שאילתה כאן שוב " -#: libraries/messages.inc.php:1001 libraries/mysql_charsets.lib.php:217 +#: libraries/messages.inc.php:997 libraries/mysql_charsets.lib.php:217 #: libraries/mysql_charsets.lib.php:342 msgid "Simplified Chinese" msgstr "" -#: libraries/messages.inc.php:1002 tbl_operations.php:258 +#: libraries/messages.inc.php:998 tbl_operations.php:258 msgid "(singly)" msgstr "(singly)" -#: libraries/messages.inc.php:1005 libraries/replication_gui.lib.php:52 +#: libraries/messages.inc.php:1001 libraries/replication_gui.lib.php:52 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" msgstr "" -#: libraries/messages.inc.php:1006 libraries/mysql_charsets.lib.php:283 +#: libraries/messages.inc.php:1002 libraries/mysql_charsets.lib.php:283 msgid "Slovak" msgstr "סלובקית" -#: libraries/messages.inc.php:1007 libraries/mysql_charsets.lib.php:286 +#: libraries/messages.inc.php:1003 libraries/mysql_charsets.lib.php:286 msgid "Slovenian" msgstr "סלובנית" -#: libraries/messages.inc.php:1008 pmd_general.php:95 +#: libraries/messages.inc.php:1004 pmd_general.php:95 msgid "Small/Big All" msgstr "" -#: libraries/messages.inc.php:1009 pmd_general.php:91 +#: libraries/messages.inc.php:1005 pmd_general.php:91 msgid "Snap to grid" msgstr "" -#: libraries/messages.inc.php:1011 server_synchronize.php:1167 +#: libraries/messages.inc.php:1007 server_synchronize.php:1167 msgid "Socket" msgstr "" -#: libraries/messages.inc.php:1013 server_status.php:259 +#: libraries/messages.inc.php:1009 server_status.php:259 msgid "Sorting" msgstr "" -#: libraries/messages.inc.php:1015 tbl_printview.php:310 tbl_structure.php:657 +#: libraries/messages.inc.php:1011 tbl_printview.php:310 tbl_structure.php:657 msgid "Space usage" msgstr "שימוש מקום" -#: libraries/messages.inc.php:1016 libraries/mysql_charsets.lib.php:289 +#: libraries/messages.inc.php:1012 libraries/mysql_charsets.lib.php:289 msgid "Spanish" msgstr "ספרדית" -#: libraries/messages.inc.php:1019 +#: libraries/messages.inc.php:1015 msgid "Export type" msgstr "סוג ייצוא" -#: libraries/messages.inc.php:1020 +#: libraries/messages.inc.php:1016 msgid "Export time in UTC" msgstr "" -#: libraries/messages.inc.php:1021 libraries/sqlparser.lib.php:173 +#: libraries/messages.inc.php:1017 libraries/sqlparser.lib.php:173 msgid "" "There is a chance that you may have found a bug in the SQL parser. Please " "examine your query closely, and check that the quotes are correct and not " @@ -5812,424 +5812,424 @@ msgid "" "and submit a bug report with the data chunk in the CUT section below:" msgstr "" -#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:137 +#: libraries/messages.inc.php:1018 libraries/sqlparser.lib.php:137 msgid "" "There seems to be an error in your SQL query. The MySQL server error output " "below, if there is any, may also help you in diagnosing the problem" msgstr "" -#: libraries/messages.inc.php:1026 libraries/sqlparser.lib.php:495 +#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:495 msgid "Invalid Identifer" msgstr "" -#: libraries/messages.inc.php:1027 libraries/sqlparser.lib.php:344 +#: libraries/messages.inc.php:1023 libraries/sqlparser.lib.php:344 msgid "Unclosed quote" msgstr "" -#: libraries/messages.inc.php:1028 libraries/sqlparser.lib.php:612 +#: libraries/messages.inc.php:1024 libraries/sqlparser.lib.php:612 msgid "Unknown Punctuation String" msgstr "" -#: libraries/messages.inc.php:1030 server_replication.php:327 +#: libraries/messages.inc.php:1026 server_replication.php:327 #: server_replication.php:328 #, fuzzy msgid "Start" msgstr "שבת" -#: libraries/messages.inc.php:1033 tbl_printview.php:369 tbl_structure.php:729 +#: libraries/messages.inc.php:1029 tbl_printview.php:369 tbl_structure.php:729 msgid "Statements" msgstr "משפטים" -#: libraries/messages.inc.php:1034 tbl_printview.php:380 tbl_structure.php:741 +#: libraries/messages.inc.php:1030 tbl_printview.php:380 tbl_structure.php:741 msgid "static" msgstr "" -#: libraries/messages.inc.php:1035 server_status.php:388 +#: libraries/messages.inc.php:1031 server_status.php:388 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: libraries/messages.inc.php:1038 server_replication.php:327 +#: libraries/messages.inc.php:1034 server_replication.php:327 #: server_replication.php:328 msgid "Stop" msgstr "" -#: libraries/messages.inc.php:1039 server_engines.php:49 +#: libraries/messages.inc.php:1035 server_engines.php:49 msgid "Storage Engines" msgstr "מנועי אחסון" -#: libraries/messages.inc.php:1040 libraries/tbl_properties.inc.php:726 +#: libraries/messages.inc.php:1036 libraries/tbl_properties.inc.php:726 #: server_engines.php:58 tbl_operations.php:353 msgid "Storage Engine" msgstr "מנוע אחסון" -#: libraries/messages.inc.php:1042 +#: libraries/messages.inc.php:1038 msgid "CSV for MS Excel" msgstr "CSV עבור MS Excel" -#: libraries/messages.inc.php:1044 tbl_structure.php:516 tbl_structure.php:518 +#: libraries/messages.inc.php:1040 tbl_structure.php:516 tbl_structure.php:518 msgid "Propose table structure" msgstr "הצעת מבנה טבלה" -#: libraries/messages.inc.php:1045 server_synchronize.php:424 +#: libraries/messages.inc.php:1041 server_synchronize.php:424 #: server_synchronize.php:867 msgid "Structure Difference" msgstr "" -#: libraries/messages.inc.php:1049 server_synchronize.php:265 +#: libraries/messages.inc.php:1045 server_synchronize.php:265 msgid "Structure Synchronization" msgstr "" -#: libraries/messages.inc.php:1050 libraries/sql_query_form.lib.php:462 +#: libraries/messages.inc.php:1046 libraries/sql_query_form.lib.php:462 msgid "Submit" msgstr "שליחה" -#: libraries/messages.inc.php:1052 main.php:358 +#: libraries/messages.inc.php:1048 main.php:358 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " "issues." msgstr "" -#: libraries/messages.inc.php:1054 libraries/mysql_charsets.lib.php:295 +#: libraries/messages.inc.php:1050 libraries/mysql_charsets.lib.php:295 #: libraries/mysql_charsets.lib.php:392 msgid "Swedish" msgstr "שוודית" -#: libraries/messages.inc.php:1060 tbl_operations.php:556 +#: libraries/messages.inc.php:1056 tbl_operations.php:556 msgid "Switch to copied table" msgstr "מעבר לטבלה שהועתקה" -#: libraries/messages.inc.php:1061 server_synchronize.php:1213 +#: libraries/messages.inc.php:1057 server_synchronize.php:1213 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." msgstr "" -#: libraries/messages.inc.php:1062 server_synchronize.php:451 +#: libraries/messages.inc.php:1058 server_synchronize.php:451 #: server_synchronize.php:896 msgid "Synchronize Databases" msgstr "" -#: libraries/messages.inc.php:1063 libraries/server_links.inc.php:92 +#: libraries/messages.inc.php:1059 libraries/server_links.inc.php:92 #: server_synchronize.php:1092 server_synchronize.php:1100 msgid "Synchronize" msgstr "" -#: libraries/messages.inc.php:1065 server_synchronize.php:430 +#: libraries/messages.inc.php:1061 server_synchronize.php:430 #: server_synchronize.php:873 msgid "Add column(s)" msgstr "" -#: libraries/messages.inc.php:1066 tbl_create.php:62 +#: libraries/messages.inc.php:1062 tbl_create.php:62 #, fuzzy, php-format msgid "Table %s already exists!" msgstr "שם המשתמש %s כבר קיים!" -#: libraries/messages.inc.php:1067 server_synchronize.php:432 +#: libraries/messages.inc.php:1063 server_synchronize.php:432 #: server_synchronize.php:875 msgid "Alter column(s)" msgstr "" -#: libraries/messages.inc.php:1068 tbl_addfield.php:189 tbl_alter.php:103 +#: libraries/messages.inc.php:1064 tbl_addfield.php:189 tbl_alter.php:103 #: tbl_indexes.php:98 #, php-format msgid "Table %1$s has been altered successfully" msgstr "" -#: libraries/messages.inc.php:1069 server_synchronize.php:434 +#: libraries/messages.inc.php:1065 server_synchronize.php:434 #: server_synchronize.php:877 msgid "Apply index(s)" msgstr "" -#: libraries/messages.inc.php:1071 server_synchronize.php:446 +#: libraries/messages.inc.php:1067 server_synchronize.php:446 #: server_synchronize.php:890 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: libraries/messages.inc.php:1072 tbl_move_copy.php:82 +#: libraries/messages.inc.php:1068 tbl_move_copy.php:82 msgid "The table name is empty!" msgstr "שם הטבלה ריק!" -#: libraries/messages.inc.php:1073 tbl_create.php:249 +#: libraries/messages.inc.php:1069 tbl_create.php:249 #, fuzzy, php-format msgid "Table %1$s has been created." msgstr "טבלה %s נמחקה" -#: libraries/messages.inc.php:1076 tbl_operations.php:628 +#: libraries/messages.inc.php:1072 tbl_operations.php:628 #, php-format msgid "Table %s has been flushed" msgstr "טבלה %s אופסה" -#: libraries/messages.inc.php:1077 server_synchronize.php:436 +#: libraries/messages.inc.php:1073 server_synchronize.php:436 #: server_synchronize.php:879 msgid "Insert row(s)" msgstr "" -#: libraries/messages.inc.php:1078 libraries/tbl_links.inc.php:107 +#: libraries/messages.inc.php:1074 libraries/tbl_links.inc.php:107 #: libraries/tbl_links.inc.php:140 libraries/tbl_links.inc.php:141 msgid "Table seems to be empty!" msgstr "" -#: libraries/messages.inc.php:1079 tbl_operations.php:568 +#: libraries/messages.inc.php:1075 tbl_operations.php:568 msgid "Table maintenance" msgstr "אחזקת טבלה" -#: libraries/messages.inc.php:1080 libraries/tbl_properties.inc.php:618 +#: libraries/messages.inc.php:1076 libraries/tbl_properties.inc.php:618 #: server_synchronize.php:428 server_synchronize.php:871 msgid "Table name" msgstr "" -#: libraries/messages.inc.php:1081 pdf_schema.php:1116 +#: libraries/messages.inc.php:1077 pdf_schema.php:1116 msgid "Table of contents" msgstr "תוכן עניניים" -#: libraries/messages.inc.php:1082 tbl_operations.php:334 +#: libraries/messages.inc.php:1078 tbl_operations.php:334 msgid "Table options" msgstr "אפשרויות טבלה" -#: libraries/messages.inc.php:1083 server_synchronize.php:431 +#: libraries/messages.inc.php:1079 server_synchronize.php:431 #: server_synchronize.php:874 msgid "Remove column(s)" msgstr "" -#: libraries/messages.inc.php:1084 server_synchronize.php:433 +#: libraries/messages.inc.php:1080 server_synchronize.php:433 #: server_synchronize.php:876 msgid "Remove index(s)" msgstr "" -#: libraries/messages.inc.php:1088 server_synchronize.php:435 +#: libraries/messages.inc.php:1084 server_synchronize.php:435 #: server_synchronize.php:878 msgid "Update row(s)" msgstr "" -#: libraries/messages.inc.php:1090 server_synchronize.php:942 +#: libraries/messages.inc.php:1086 server_synchronize.php:942 msgid "Target database has been synchronized with source database" msgstr "" -#: libraries/messages.inc.php:1091 server_privileges.php:392 +#: libraries/messages.inc.php:1087 server_privileges.php:392 #: server_privileges.php:527 server_privileges.php:1679 #: server_privileges.php:1685 msgid "Table-specific privileges" msgstr "הרשאות ספציפיות-לטבלאות" -#: libraries/messages.inc.php:1092 server_status.php:254 +#: libraries/messages.inc.php:1088 server_status.php:254 msgid "Temporary data" msgstr "" -#: libraries/messages.inc.php:1093 tbl_change.php:728 +#: libraries/messages.inc.php:1089 tbl_change.php:728 msgid " Because of its length,
this field might not be editable " msgstr " משום אורכם,
השדה הזה יכול להיות בלתי עריך " -#: libraries/messages.inc.php:1094 +#: libraries/messages.inc.php:1090 msgid "Texy! text" msgstr "" -#: libraries/messages.inc.php:1095 libraries/mysql_charsets.lib.php:298 +#: libraries/messages.inc.php:1091 libraries/mysql_charsets.lib.php:298 #: libraries/mysql_charsets.lib.php:395 msgid "Thai" msgstr "" -#: libraries/messages.inc.php:1102 libraries/replication_gui.lib.php:308 +#: libraries/messages.inc.php:1098 libraries/replication_gui.lib.php:308 #: server_privileges.php:734 msgid "This Host" msgstr "מארח זה" -#: libraries/messages.inc.php:1103 server_status.php:252 +#: libraries/messages.inc.php:1099 server_status.php:252 msgid "Threads" msgstr "" -#: libraries/messages.inc.php:1104 server_processlist.php:22 +#: libraries/messages.inc.php:1100 server_processlist.php:22 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: libraries/messages.inc.php:1106 +#: libraries/messages.inc.php:1102 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." msgstr "" -#: libraries/messages.inc.php:1109 pmd_pdf.php:94 +#: libraries/messages.inc.php:1105 pmd_pdf.php:94 msgid "to/from page" msgstr "" -#: libraries/messages.inc.php:1110 pdf_pages.php:343 +#: libraries/messages.inc.php:1106 pdf_pages.php:343 msgid "Toggle scratchboard" msgstr "" -#: libraries/messages.inc.php:1111 pmd_general.php:99 +#: libraries/messages.inc.php:1107 pmd_general.php:99 msgid "Toggle small/big" msgstr "" -#: libraries/messages.inc.php:1112 pmd_help.php:27 +#: libraries/messages.inc.php:1108 pmd_help.php:27 msgid "To select relation, click :" msgstr "" -#: libraries/messages.inc.php:1115 libraries/tbl_links.inc.php:149 +#: libraries/messages.inc.php:1111 libraries/tbl_links.inc.php:149 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" -#: libraries/messages.inc.php:1116 tbl_tracking.php:655 +#: libraries/messages.inc.php:1112 tbl_tracking.php:655 msgid "Activate now" msgstr "" -#: libraries/messages.inc.php:1117 tbl_tracking.php:653 +#: libraries/messages.inc.php:1113 tbl_tracking.php:653 #, php-format msgid "Activate tracking for %s.%s" msgstr "" -#: libraries/messages.inc.php:1118 tbl_tracking.php:221 +#: libraries/messages.inc.php:1114 tbl_tracking.php:221 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/messages.inc.php:1119 tbl_tracking.php:688 +#: libraries/messages.inc.php:1115 tbl_tracking.php:688 #, fuzzy msgid "Create version" msgstr "גרסת שרת" -#: libraries/messages.inc.php:1120 tbl_tracking.php:668 +#: libraries/messages.inc.php:1116 tbl_tracking.php:668 #, php-format msgid "Create version %s of %s.%s" msgstr "" -#: libraries/messages.inc.php:1122 tbl_tracking.php:412 +#: libraries/messages.inc.php:1118 tbl_tracking.php:412 msgid "Data definition statement" msgstr "" -#: libraries/messages.inc.php:1123 tbl_tracking.php:463 +#: libraries/messages.inc.php:1119 tbl_tracking.php:463 msgid "Data manipulation statement" msgstr "" -#: libraries/messages.inc.php:1124 tbl_tracking.php:410 tbl_tracking.php:461 +#: libraries/messages.inc.php:1120 tbl_tracking.php:410 tbl_tracking.php:461 #, fuzzy msgid "Date" msgstr "נתונים" -#: libraries/messages.inc.php:1125 tbl_tracking.php:642 +#: libraries/messages.inc.php:1121 tbl_tracking.php:642 msgid "Deactivate now" msgstr "" -#: libraries/messages.inc.php:1126 tbl_tracking.php:640 +#: libraries/messages.inc.php:1122 tbl_tracking.php:640 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "" -#: libraries/messages.inc.php:1127 tbl_tracking.php:521 +#: libraries/messages.inc.php:1123 tbl_tracking.php:521 #, php-format msgid "Export as %s" msgstr "" -#: libraries/messages.inc.php:1130 tbl_tracking.php:251 tbl_tracking.php:379 +#: libraries/messages.inc.php:1126 tbl_tracking.php:251 tbl_tracking.php:379 msgid "Close" msgstr "" -#: libraries/messages.inc.php:1131 tbl_tracking.php:114 +#: libraries/messages.inc.php:1127 tbl_tracking.php:114 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/messages.inc.php:1133 tbl_tracking.php:397 tbl_tracking.php:504 +#: libraries/messages.inc.php:1129 tbl_tracking.php:397 tbl_tracking.php:504 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "" -#: libraries/messages.inc.php:1134 tbl_tracking.php:561 +#: libraries/messages.inc.php:1130 tbl_tracking.php:561 msgid "Show versions" msgstr "" -#: libraries/messages.inc.php:1135 tbl_tracking.php:507 +#: libraries/messages.inc.php:1131 tbl_tracking.php:507 msgid "SQL dump (file download)" msgstr "" -#: libraries/messages.inc.php:1136 tbl_tracking.php:508 +#: libraries/messages.inc.php:1132 tbl_tracking.php:508 msgid "SQL dump" msgstr "" -#: libraries/messages.inc.php:1137 tbl_tracking.php:213 +#: libraries/messages.inc.php:1133 tbl_tracking.php:213 msgid "SQL statements executed." msgstr "" -#: libraries/messages.inc.php:1138 +#: libraries/messages.inc.php:1134 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/messages.inc.php:1139 tbl_tracking.php:509 +#: libraries/messages.inc.php:1135 tbl_tracking.php:509 msgid "SQL execution" msgstr "" -#: libraries/messages.inc.php:1140 tbl_tracking.php:230 +#: libraries/messages.inc.php:1136 tbl_tracking.php:230 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/messages.inc.php:1141 tbl_tracking.php:381 +#: libraries/messages.inc.php:1137 tbl_tracking.php:381 msgid "Tracking statements" msgstr "" -#: libraries/messages.inc.php:1148 tbl_tracking.php:593 +#: libraries/messages.inc.php:1144 tbl_tracking.php:593 #, fuzzy msgid "Version" msgstr "Persian" -#: libraries/messages.inc.php:1149 tbl_tracking.php:672 +#: libraries/messages.inc.php:1145 tbl_tracking.php:672 msgid "Track these data definition statements:" msgstr "" -#: libraries/messages.inc.php:1150 tbl_tracking.php:680 +#: libraries/messages.inc.php:1146 tbl_tracking.php:680 msgid "Track these data manipulation statements:" msgstr "" -#: libraries/messages.inc.php:1155 tbl_tracking.php:411 tbl_tracking.php:462 +#: libraries/messages.inc.php:1151 tbl_tracking.php:411 tbl_tracking.php:462 #, fuzzy msgid "Username" msgstr "שם משתמש:" -#: libraries/messages.inc.php:1156 tbl_tracking.php:203 +#: libraries/messages.inc.php:1152 tbl_tracking.php:203 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "" -#: libraries/messages.inc.php:1157 tbl_tracking.php:187 +#: libraries/messages.inc.php:1153 tbl_tracking.php:187 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "" -#: libraries/messages.inc.php:1158 tbl_tracking.php:195 +#: libraries/messages.inc.php:1154 tbl_tracking.php:195 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "" -#: libraries/messages.inc.php:1159 tbl_tracking.php:262 +#: libraries/messages.inc.php:1155 tbl_tracking.php:262 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/messages.inc.php:1161 tbl_tracking.php:220 +#: libraries/messages.inc.php:1157 tbl_tracking.php:220 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/messages.inc.php:1162 libraries/mysql_charsets.lib.php:219 +#: libraries/messages.inc.php:1158 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:362 msgid "Traditional Chinese" msgstr "סינית מסורתית" -#: libraries/messages.inc.php:1163 libraries/mysql_charsets.lib.php:292 +#: libraries/messages.inc.php:1159 libraries/mysql_charsets.lib.php:292 msgid "Traditional Spanish" msgstr "ספרדית מסורתית" -#: libraries/messages.inc.php:1164 server_status.php:388 +#: libraries/messages.inc.php:1160 server_status.php:388 msgid "Traffic" msgstr "Traffic" -#: libraries/messages.inc.php:1165 server_status.php:261 +#: libraries/messages.inc.php:1161 server_status.php:261 msgid "Transaction coordinator" msgstr "" -#: libraries/messages.inc.php:1166 +#: libraries/messages.inc.php:1162 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 " @@ -6237,27 +6237,27 @@ msgid "" "need to set the first option to the empty string." msgstr "" -#: libraries/messages.inc.php:1167 +#: libraries/messages.inc.php:1163 msgid "" "Displays hexadecimal representation of data. Optional first parameter " "specifies how often space will be added (defaults to 2 nibbles)." msgstr "" -#: libraries/messages.inc.php:1168 +#: libraries/messages.inc.php:1164 msgid "" "Displays a clickable thumbnail. The options are the maximum width and height " "in pixels. The original aspect ratio is preserved." msgstr "" -#: libraries/messages.inc.php:1169 +#: libraries/messages.inc.php:1165 msgid "Displays a link to download this image." msgstr "" -#: libraries/messages.inc.php:1170 +#: libraries/messages.inc.php:1166 msgid "See image/jpeg: inline" msgstr "" -#: libraries/messages.inc.php:1171 +#: libraries/messages.inc.php:1167 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 " @@ -6269,7 +6269,7 @@ msgid "" "gmdate() function." msgstr "" -#: libraries/messages.inc.php:1172 +#: libraries/messages.inc.php:1168 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 " @@ -6283,31 +6283,31 @@ msgid "" "(Default 1)." msgstr "" -#: libraries/messages.inc.php:1173 +#: libraries/messages.inc.php:1169 msgid "" "Displays the contents of the field as-is, without running it through " "htmlspecialchars(). That is, the field is assumed to contain valid HTML." msgstr "" -#: libraries/messages.inc.php:1174 +#: libraries/messages.inc.php:1170 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." msgstr "" -#: libraries/messages.inc.php:1175 +#: libraries/messages.inc.php:1171 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." msgstr "" -#: libraries/messages.inc.php:1176 +#: libraries/messages.inc.php:1172 msgid "Formats text as SQL query with syntax highlighting." msgstr "" -#: libraries/messages.inc.php:1177 +#: libraries/messages.inc.php:1173 msgid "" "Displays a part of a string. The first option is the number of characters to " "skip from the beginning of the string (Default 0). The second option is the " @@ -6316,69 +6316,69 @@ msgid "" "(Default: \"...\")." msgstr "" -#: libraries/messages.inc.php:1179 server_binlog.php:183 server_binlog.php:186 +#: libraries/messages.inc.php:1175 server_binlog.php:183 server_binlog.php:186 #: server_processlist.php:49 server_processlist.php:51 msgid "Truncate Shown Queries" msgstr "" -#: libraries/messages.inc.php:1180 libraries/mysql_charsets.lib.php:301 +#: libraries/messages.inc.php:1176 libraries/mysql_charsets.lib.php:301 #: libraries/mysql_charsets.lib.php:389 msgid "Turkish" msgstr "טורקית" -#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:304 +#: libraries/messages.inc.php:1179 libraries/mysql_charsets.lib.php:304 #: libraries/mysql_charsets.lib.php:386 msgid "Ukrainian" msgstr "אוקראינית" -#: libraries/messages.inc.php:1185 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:1181 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 msgid "Unicode" msgstr "Unicode" -#: libraries/messages.inc.php:1187 libraries/mysql_charsets.lib.php:398 +#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:398 #: libraries/mysql_charsets.lib.php:405 msgid "unknown" msgstr "לא ידוע" -#: libraries/messages.inc.php:1190 server_privileges.php:1152 +#: libraries/messages.inc.php:1186 server_privileges.php:1152 #, php-format msgid "You have updated the privileges for %s." msgstr "אתה עדכנת הרשאות עבור %s." -#: libraries/messages.inc.php:1191 user_password.php:112 +#: libraries/messages.inc.php:1187 user_password.php:112 msgid "The profile has been updated." msgstr "הפרופיל עודכן בהצלחה." -#: libraries/messages.inc.php:1193 libraries/relation.lib.php:138 +#: libraries/messages.inc.php:1189 libraries/relation.lib.php:138 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" -#: libraries/messages.inc.php:1194 +#: libraries/messages.inc.php:1190 #, php-format msgid "You should upgrade to %s %s or later." msgstr "אתה צריך לשדרג אל %s %s לפחות." -#: libraries/messages.inc.php:1204 tbl_printview.php:314 tbl_structure.php:661 +#: libraries/messages.inc.php:1200 tbl_printview.php:314 tbl_structure.php:661 msgid "Usage" msgstr "שימוש" -#: libraries/messages.inc.php:1205 +#: libraries/messages.inc.php:1201 msgid "Enclose table and field names with backquotes" msgstr "צירוף תוי ציטוט (backquotes) אל שמות טבלאות ושדות" -#: libraries/messages.inc.php:1206 libraries/replication_gui.lib.php:314 +#: libraries/messages.inc.php:1202 libraries/replication_gui.lib.php:314 #: server_privileges.php:740 msgid "Use Host Table" msgstr "Use Host Table" -#: libraries/messages.inc.php:1207 server_privileges.php:848 +#: libraries/messages.inc.php:1203 server_privileges.php:848 #, php-format msgid "The user %s already exists!" msgstr "שם המשתמש %s כבר קיים!" -#: libraries/messages.inc.php:1209 libraries/replication_gui.lib.php:55 +#: libraries/messages.inc.php:1205 libraries/replication_gui.lib.php:55 #: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245 #: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255 #: server_privileges.php:672 server_privileges.php:675 @@ -6386,36 +6386,36 @@ msgstr "שם המשתמש %s כבר קיים!" msgid "User name" msgstr "שם משתמש" -#: libraries/messages.inc.php:1210 server_privileges.php:1645 +#: libraries/messages.inc.php:1206 server_privileges.php:1645 msgid "The selected user was not found in the privilege table." msgstr "המשתמש שנבחר לא נמצא בטבלת ההרשאות." -#: libraries/messages.inc.php:1211 server_privileges.php:1365 +#: libraries/messages.inc.php:1207 server_privileges.php:1365 msgid "User overview" msgstr "סקירת משתמשים" -#: libraries/messages.inc.php:1212 server_privileges.php:1261 +#: libraries/messages.inc.php:1208 server_privileges.php:1261 #, fuzzy msgid "The selected users have been deleted successfully." msgstr "%s מסדי נתונים נמחקו בהצלחה." -#: libraries/messages.inc.php:1213 server_privileges.php:2026 +#: libraries/messages.inc.php:1209 server_privileges.php:2026 #, php-format msgid "Users having access to "%s"" msgstr "" -#: libraries/messages.inc.php:1214 main.php:189 server_privileges.php:1350 +#: libraries/messages.inc.php:1210 main.php:189 server_privileges.php:1350 #: server_privileges.php:1497 server_privileges.php:1611 #: server_privileges.php:2029 server_processlist.php:54 msgid "User" msgstr "משתמש" -#: libraries/messages.inc.php:1215 tbl_change.php:1171 +#: libraries/messages.inc.php:1211 tbl_change.php:1171 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/messages.inc.php:1217 libraries/replication_gui.lib.php:251 +#: libraries/messages.inc.php:1213 libraries/replication_gui.lib.php:251 #: libraries/replication_gui.lib.php:319 libraries/replication_gui.lib.php:342 #: server_privileges.php:678 server_privileges.php:745 #: server_privileges.php:769 server_privileges.php:1889 @@ -6423,93 +6423,93 @@ msgstr "" msgid "Use text field" msgstr "השתמש בשדה טקסט" -#: libraries/messages.inc.php:1221 libraries/sqlvalidator.lib.php:68 +#: libraries/messages.inc.php:1217 libraries/sqlvalidator.lib.php:68 #, php-format msgid "" "The SQL validator could not be initialized. Please check if you have " "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" -#: libraries/messages.inc.php:1222 libraries/replication_gui.lib.php:111 +#: libraries/messages.inc.php:1218 libraries/replication_gui.lib.php:111 #: server_status.php:627 tbl_change.php:324 tbl_printview.php:370 #: tbl_select.php:139 tbl_structure.php:730 msgid "Value" msgstr "ערך" -#: libraries/messages.inc.php:1223 libraries/replication_gui.lib.php:110 +#: libraries/messages.inc.php:1219 libraries/replication_gui.lib.php:110 #: libraries/sql_query_form.lib.php:445 server_status.php:626 #: server_variables.php:52 msgid "Variable" msgstr "משתנה" -#: libraries/messages.inc.php:1225 server_export.php:21 +#: libraries/messages.inc.php:1221 server_export.php:21 msgid "View dump (schema) of databases" msgstr "ראיית הוצאה (תבנית) של מאגרי נתונים" -#: libraries/messages.inc.php:1227 tbl_export.php:23 +#: libraries/messages.inc.php:1223 tbl_export.php:23 msgid "View dump (schema) of table" msgstr "ראיית הוצאה (תבנית) של טבלה" -#: libraries/messages.inc.php:1231 view_create.php:142 +#: libraries/messages.inc.php:1227 view_create.php:142 msgid "VIEW name" msgstr "" -#: libraries/messages.inc.php:1237 main.php:205 +#: libraries/messages.inc.php:1233 main.php:205 msgid "Web server" msgstr "" -#: libraries/messages.inc.php:1239 libraries/mysql_charsets.lib.php:277 +#: libraries/messages.inc.php:1235 libraries/mysql_charsets.lib.php:277 #: libraries/mysql_charsets.lib.php:325 msgid "West European" msgstr "" -#: libraries/messages.inc.php:1240 main.php:230 +#: libraries/messages.inc.php:1236 main.php:230 msgid "Wiki" msgstr "" -#: libraries/messages.inc.php:1241 server_privileges.php:2138 +#: libraries/messages.inc.php:1237 server_privileges.php:2138 msgid "wildcard" msgstr "תו כללי" -#: libraries/messages.inc.php:1248 +#: libraries/messages.inc.php:1244 msgid "Export contents" msgstr "" -#: libraries/messages.inc.php:1249 +#: libraries/messages.inc.php:1245 msgid "Export functions" msgstr "" -#: libraries/messages.inc.php:1250 +#: libraries/messages.inc.php:1246 msgid "Export procedures" msgstr "" -#: libraries/messages.inc.php:1251 +#: libraries/messages.inc.php:1247 msgid "Export Structure Schemas (recommended)" msgstr "" -#: libraries/messages.inc.php:1252 +#: libraries/messages.inc.php:1248 #, fuzzy msgid "Export tables" msgstr "סוג ייצוא" -#: libraries/messages.inc.php:1253 +#: libraries/messages.inc.php:1249 #, fuzzy msgid "Export triggers" msgstr "סוג ייצוא" -#: libraries/messages.inc.php:1254 +#: libraries/messages.inc.php:1250 msgid "Export views" msgstr "" -#: libraries/messages.inc.php:1255 +#: libraries/messages.inc.php:1251 msgid "XML" msgstr "XML" -#: libraries/messages.inc.php:1259 server_privileges.php:592 +#: libraries/messages.inc.php:1255 server_privileges.php:592 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "הערה: הגדרת אפשרויות אלו אל 0 (אפס) יבטלו את ההגבלה." -#: libraries/messages.inc.php:1260 +#: libraries/messages.inc.php:1256 msgid "\"zipped\"" msgstr "\"zipped\"" diff --git a/po/hi.po b/po/hi.po index 44c7eb087..b270eeb16 100644 --- 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-05-13 11:25+0200\n" +"POT-Creation-Date: 2010-05-13 11:30+0200\n" "PO-Revision-Date: 2010-05-13 09:11+0200\n" "Last-Translator: \n" "Language-Team: hindi \n" @@ -15,19 +15,19 @@ msgstr "" "X-Generator: Pootle 2.0.1\n" #: browse_foreigners.php:38 browse_foreigners.php:59 -#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:870 +#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:866 #: server_privileges.php:1475 msgid "Show all" msgstr "सभी दिखाओ" #: browse_foreigners.php:82 db_operations.php:648 -#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:394 -#: libraries/export/pdf.php:147 libraries/messages.inc.php:597 +#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394 +#: libraries/export/pdf.php:147 libraries/messages.inc.php:593 #: pdf_schema.php:283 pdf_schema.php:1123 pdf_schema.php:1139 msgid "Page number:" msgstr "पृष्ठ संख्या:" -#: browse_foreigners.php:132 libraries/messages.inc.php:1242 +#: browse_foreigners.php:132 libraries/messages.inc.php:1238 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -39,7 +39,7 @@ 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/db_links.inc.php:75 -#: libraries/messages.inc.php:841 libraries/tbl_links.inc.php:63 +#: libraries/messages.inc.php:837 libraries/tbl_links.inc.php:63 msgid "Search" msgstr "खोजें" @@ -48,12 +48,12 @@ msgstr "खोजें" #: db_search.php:362 db_structure.php:567 js/messages.php:48 #: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2267 +#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 #: 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 #: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614 -#: libraries/messages.inc.php:361 libraries/replication_gui.lib.php:73 +#: libraries/messages.inc.php:357 libraries/replication_gui.lib.php:73 #: libraries/replication_gui.lib.php:365 libraries/select_server.lib.php:104 #: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477 #: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782 @@ -73,33 +73,33 @@ msgid "Go" msgstr "आगे" #: browse_foreigners.php:168 browse_foreigners.php:172 -#: libraries/Index.class.php:442 libraries/messages.inc.php:459 +#: libraries/Index.class.php:442 libraries/messages.inc.php:455 #: tbl_tracking.php:320 msgid "Keyname" msgstr "मुख्यनाम" #: browse_foreigners.php:169 browse_foreigners.php:171 -#: libraries/messages.inc.php:252 server_collations.php:55 +#: libraries/messages.inc.php:248 server_collations.php:55 #: server_collations.php:67 server_engines.php:59 server_status.php:628 msgid "Description" msgstr "वर्णन" #: browse_foreigners.php:247 browse_foreigners.php:256 #: browse_foreigners.php:268 browse_foreigners.php:276 -#: libraries/messages.inc.php:1218 +#: libraries/messages.inc.php:1214 msgid "Use this value" msgstr "इस वेलियु का उपयोग करें" -#: db_create.php:46 libraries/messages.inc.php:215 +#: db_create.php:46 libraries/messages.inc.php:211 #, php-format msgid "Database %1$s has been created." msgstr "%1$s डेटाबेस बनाया गया है." -#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:232 +#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:228 msgid "Database comment: " msgstr "डाटाबेस टिप्पणि: " -#: db_datadict.php:165 libraries/messages.inc.php:1070 +#: db_datadict.php:165 libraries/messages.inc.php:1066 #: libraries/tbl_properties.inc.php:724 pdf_schema.php:1236 #: tbl_operations.php:345 tbl_printview.php:130 msgid "Table comments" @@ -108,7 +108,7 @@ msgstr " टेबल टिप्पणि:" #: db_datadict.php:174 db_qbe.php:174 libraries/Index.class.php:446 #: libraries/export/htmlword.php:244 libraries/export/latex.php:360 #: libraries/export/odt.php:294 libraries/export/texytext.php:233 -#: libraries/messages.inc.php:317 libraries/tbl_properties.inc.php:99 +#: libraries/messages.inc.php:313 libraries/tbl_properties.inc.php:99 #: libraries/tbl_properties.inc.php:275 pdf_schema.php:1262 #: pdf_schema.php:1283 tbl_change.php:308 tbl_indexes.php:189 #: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135 @@ -120,7 +120,7 @@ msgstr "फील्ड" #: libraries/db_events.inc.php:31 libraries/db_routines.inc.php:42 #: 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/messages.inc.php:1181 +#: libraries/export/texytext.php:234 libraries/messages.inc.php:1177 #: libraries/tbl_properties.inc.php:100 pdf_schema.php:1263 #: pdf_schema.php:1284 server_privileges.php:2031 tbl_change.php:287 #: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313 @@ -132,7 +132,7 @@ msgstr "टाइप" #: db_datadict.php:177 libraries/Index.class.php:449 #: libraries/export/htmlword.php:246 libraries/export/latex.php:360 #: libraries/export/odt.php:300 libraries/export/texytext.php:235 -#: libraries/messages.inc.php:576 libraries/tbl_properties.inc.php:109 +#: libraries/messages.inc.php:572 libraries/tbl_properties.inc.php:109 #: pdf_schema.php:1265 pdf_schema.php:1286 tbl_change.php:323 #: tbl_printview.php:145 tbl_structure.php:181 tbl_tracking.php:276 #: tbl_tracking.php:327 @@ -141,7 +141,7 @@ msgstr "अशक्त" #: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 -#: libraries/export/texytext.php:236 libraries/messages.inc.php:238 +#: libraries/export/texytext.php:236 libraries/messages.inc.php:234 #: libraries/tbl_properties.inc.php:106 pdf_schema.php:1266 #: pdf_schema.php:1287 tbl_printview.php:146 tbl_structure.php:182 #: tbl_tracking.php:277 @@ -150,14 +150,14 @@ msgstr "डिफ़ॉल्ट" #: db_datadict.php:182 libraries/export/htmlword.php:249 #: libraries/export/latex.php:362 libraries/export/odt.php:307 -#: libraries/export/texytext.php:238 libraries/messages.inc.php:483 +#: libraries/export/texytext.php:238 libraries/messages.inc.php:479 #: pdf_schema.php:1268 pdf_schema.php:1289 tbl_printview.php:150 msgid "Links to" msgstr "के लिए लिंक" #: db_datadict.php:184 db_printview.php:112 libraries/export/htmlword.php:252 #: libraries/export/latex.php:365 libraries/export/odt.php:312 -#: libraries/export/texytext.php:241 libraries/messages.inc.php:163 +#: libraries/export/texytext.php:241 libraries/messages.inc.php:159 #: libraries/tbl_properties.inc.php:130 pdf_schema.php:1279 #: pdf_schema.php:1290 tbl_printview.php:152 msgid "Comments" @@ -166,7 +166,7 @@ msgstr "टिप्पणी" #: db_datadict.php:267 libraries/Index.class.php:359 #: 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/messages.inc.php:559 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:555 #: libraries/mult_submits.inc.php:263 pdf_schema.php:1344 #: server_privileges.php:1529 server_privileges.php:1540 #: server_privileges.php:1850 server_privileges.php:1855 @@ -178,7 +178,7 @@ msgstr "नहीं" #: db_datadict.php:267 libraries/Index.class.php:360 #: libraries/Index.class.php:385 libraries/export/htmlword.php:322 #: libraries/export/latex.php:430 libraries/export/odt.php:368 -#: libraries/export/texytext.php:311 libraries/messages.inc.php:1257 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:1253 #: libraries/mult_submits.inc.php:45 libraries/mult_submits.inc.php:50 #: libraries/mult_submits.inc.php:55 libraries/mult_submits.inc.php:60 #: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:101 @@ -192,108 +192,108 @@ msgstr "नहीं" msgid "Yes" msgstr "हाँ " -#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:670 +#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:666 #: tbl_printview.php:498 msgid "Print" msgstr "छापें" -#: db_export.php:29 libraries/messages.inc.php:1226 +#: db_export.php:29 libraries/messages.inc.php:1222 msgid "View dump (schema) of database" msgstr "डेटाबेस का डंप (स्कीमा) दिखाएं" #: db_export.php:33 db_printview.php:96 db_qbe.php:102 db_structure.php:51 -#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:568 +#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:564 #: navigation.php:346 msgid "No tables found in database." msgstr "डाटाबेस में कोई टेबल नहीं।" -#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:845 +#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:841 #: server_export.php:27 msgid "Select All" msgstr "सभी का चयन करें" -#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1188 +#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1184 #: server_export.php:29 msgid "Unselect All" msgstr "सभी को रद्द करें" -#: db_operations.php:38 libraries/messages.inc.php:213 tbl_create.php:54 +#: db_operations.php:38 libraries/messages.inc.php:209 tbl_create.php:54 msgid "The database name is empty!" msgstr "डेटाबेस नाम खाली है" -#: db_operations.php:236 libraries/messages.inc.php:753 +#: db_operations.php:236 libraries/messages.inc.php:749 #, php-format msgid "Database %s has been renamed to %s" msgstr " डेटाबेस का नाम %s बदल कर %s रखा गया है" -#: db_operations.php:240 libraries/messages.inc.php:178 +#: db_operations.php:240 libraries/messages.inc.php:174 #, php-format msgid "Database %s has been copied to %s" msgstr " डेटाबेस %s से %s में कॉपी किया गया है" -#: db_operations.php:410 libraries/messages.inc.php:236 +#: db_operations.php:410 libraries/messages.inc.php:232 msgid "Rename database to" msgstr "डेटाबेस का नाम बदल कर ____ रखें" -#: db_operations.php:415 libraries/messages.inc.php:161 +#: db_operations.php:415 libraries/messages.inc.php:157 #: server_processlist.php:57 msgid "Command" msgstr "आदेश" -#: db_operations.php:425 libraries/messages.inc.php:58 tbl_change.php:1143 +#: db_operations.php:425 libraries/messages.inc.php:54 tbl_change.php:1143 msgid "and then" msgstr "और फिर" -#: db_operations.php:451 libraries/messages.inc.php:233 +#: db_operations.php:451 libraries/messages.inc.php:229 msgid "Copy database to" msgstr "डेटाबेस को ______ में कॉपी करें" -#: db_operations.php:458 libraries/messages.inc.php:1043 +#: db_operations.php:458 libraries/messages.inc.php:1039 #: tbl_operations.php:526 tbl_tracking.php:388 msgid "Structure only" msgstr "केवल संरचना" -#: db_operations.php:459 libraries/messages.inc.php:1041 +#: db_operations.php:459 libraries/messages.inc.php:1037 #: tbl_operations.php:527 tbl_tracking.php:390 msgid "Structure and data" msgstr "संरचना और डाटा" -#: db_operations.php:460 libraries/messages.inc.php:229 tbl_operations.php:528 +#: db_operations.php:460 libraries/messages.inc.php:225 tbl_operations.php:528 #: tbl_tracking.php:389 msgid "Data only" msgstr "केवल डाटा" -#: db_operations.php:468 libraries/messages.inc.php:186 +#: db_operations.php:468 libraries/messages.inc.php:182 msgid "CREATE DATABASE before copying" msgstr "डेटाबेस कॉपी करने से पहले डेटाबेस का निर्माण करें" #: db_operations.php:471 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 -#: libraries/export/sql.php:82 libraries/messages.inc.php:30 +#: libraries/export/sql.php:82 libraries/messages.inc.php:26 #: tbl_operations.php:534 #, php-format msgid "Add %s" msgstr "%s जोडें" -#: db_operations.php:475 libraries/messages.inc.php:29 tbl_operations.php:297 +#: db_operations.php:475 libraries/messages.inc.php:25 tbl_operations.php:297 #: tbl_operations.php:536 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT मूल्य जोडें" -#: db_operations.php:479 libraries/messages.inc.php:31 tbl_operations.php:543 +#: db_operations.php:479 libraries/messages.inc.php:27 tbl_operations.php:543 msgid "Add constraints" msgstr "शर्तें जोडें" -#: db_operations.php:492 libraries/messages.inc.php:1059 +#: db_operations.php:492 libraries/messages.inc.php:1055 msgid "Switch to copied database" msgstr "नक़ल किये गए डाटाबेस पर जायें" -#: db_operations.php:533 libraries/messages.inc.php:89 +#: db_operations.php:533 libraries/messages.inc.php:85 msgid "BLOB Repository" msgstr "BLOB भंडार गृह" #: db_operations.php:536 db_tracking.php:76 libraries/common.lib.php:1350 -#: libraries/messages.inc.php:1037 libraries/server_links.inc.php:49 +#: libraries/messages.inc.php:1033 libraries/server_links.inc.php:49 #: server_processlist.php:59 tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "स्थिति" @@ -303,11 +303,11 @@ msgctxt "BLOB repository" msgid "Enabled" msgstr "सक्षम" -#: db_operations.php:548 libraries/messages.inc.php:93 +#: db_operations.php:548 libraries/messages.inc.php:89 msgid "Disable" msgstr "असक्षम" -#: db_operations.php:558 libraries/messages.inc.php:90 +#: db_operations.php:558 libraries/messages.inc.php:86 msgid "Damaged" msgstr "क्षतिग्रस्त" @@ -321,12 +321,12 @@ msgctxt "BLOB repository" msgid "Disabled" msgstr "असक्षम" -#: db_operations.php:574 libraries/messages.inc.php:96 +#: db_operations.php:574 libraries/messages.inc.php:92 msgid "Enable" msgstr "सक्षम" #: db_operations.php:598 libraries/Index.class.php:448 -#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:158 +#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:154 #: 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:361 @@ -335,7 +335,7 @@ msgstr "सक्षम" msgid "Collation" msgstr "क्रम में करें" -#: db_operations.php:609 libraries/messages.inc.php:742 main.php:316 +#: db_operations.php:609 libraries/messages.inc.php:738 main.php:316 #: pdf_schema.php:34 #, php-format msgid "" @@ -345,58 +345,58 @@ msgstr "" "लिंक्ड तालिकाओं के साथ काम करने के लिए अतिरिक्त सुविधाओं को निष्क्रिय कर दिया गया है. " "क्यों ये किया गया है, जानने के लिए %shere%s पर क्लिक करें." -#: db_operations.php:645 libraries/messages.inc.php:264 pdf_pages.php:528 +#: db_operations.php:645 libraries/messages.inc.php:260 pdf_pages.php:528 msgid "Display PDF schema" msgstr "PDF स्कीमा दिखाओ" -#: db_operations.php:661 libraries/messages.inc.php:877 pdf_pages.php:529 +#: db_operations.php:661 libraries/messages.inc.php:873 pdf_pages.php:529 msgid "Show grid" msgstr "ग्रिड दिखाओ" -#: db_operations.php:664 libraries/messages.inc.php:874 pdf_pages.php:530 +#: db_operations.php:664 libraries/messages.inc.php:870 pdf_pages.php:530 msgid "Show color" msgstr "रंग दिखाओ" -#: db_operations.php:666 libraries/messages.inc.php:998 pdf_pages.php:531 +#: db_operations.php:666 libraries/messages.inc.php:994 pdf_pages.php:531 msgid "Show dimension of tables" msgstr " टेबल के परिमाण दिखाओ" -#: db_operations.php:669 libraries/messages.inc.php:52 pdf_pages.php:532 +#: db_operations.php:669 libraries/messages.inc.php:48 pdf_pages.php:532 msgid "Display all tables with the same width" msgstr "समान चौड़ाई के सभी टेबल को प्रदर्शित करें. " -#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:227 +#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:223 #: pdf_pages.php:533 msgid "Data Dictionary" msgstr "डेटा शब्दकोश" -#: db_operations.php:674 libraries/messages.inc.php:884 pdf_pages.php:534 +#: db_operations.php:674 libraries/messages.inc.php:880 pdf_pages.php:534 msgid "Only show keys" msgstr "" -#: db_operations.php:676 libraries/messages.inc.php:875 pdf_pages.php:535 +#: db_operations.php:676 libraries/messages.inc.php:871 pdf_pages.php:535 msgid "Data Dictionary Format" msgstr "डेटा शब्दकोश प्रारूप" -#: db_operations.php:678 libraries/messages.inc.php:464 pdf_pages.php:537 +#: db_operations.php:678 libraries/messages.inc.php:460 pdf_pages.php:537 msgid "Landscape" msgstr "परिदृश्य" -#: db_operations.php:679 libraries/messages.inc.php:663 pdf_pages.php:538 +#: db_operations.php:679 libraries/messages.inc.php:659 pdf_pages.php:538 msgid "Portrait" msgstr "" -#: db_operations.php:682 libraries/messages.inc.php:599 pdf_pages.php:541 +#: db_operations.php:682 libraries/messages.inc.php:595 pdf_pages.php:541 msgid "Paper size" msgstr "पेपर आकार" -#: db_operations.php:706 libraries/messages.inc.php:281 +#: db_operations.php:706 libraries/messages.inc.php:277 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 libraries/messages.inc.php:1087 +#: libraries/header.inc.php:126 libraries/messages.inc.php:1083 #: pdf_pages.php:405 server_privileges.php:1626 server_privileges.php:1682 #: server_privileges.php:1946 server_synchronize.php:423 #: server_synchronize.php:866 tbl_tracking.php:592 test/theme.php:75 @@ -404,176 +404,176 @@ msgid "Table" msgstr " टेबल " #: db_printview.php:105 libraries/db_structure.lib.php:56 -#: libraries/messages.inc.php:735 +#: libraries/messages.inc.php:731 msgid "Records" msgstr "अभिलेख" #: db_printview.php:109 libraries/db_structure.lib.php:67 -#: libraries/messages.inc.php:1003 tbl_indexes.php:190 +#: libraries/messages.inc.php:999 tbl_indexes.php:190 msgid "Size" msgstr "आकार" #: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 -#: libraries/export/sql.php:899 libraries/messages.inc.php:436 +#: libraries/export/sql.php:899 libraries/messages.inc.php:432 msgid "in use" msgstr "उपयोग में" #: db_printview.php:187 libraries/db_info.inc.php:88 -#: libraries/export/sql.php:514 libraries/messages.inc.php:1032 +#: libraries/export/sql.php:514 libraries/messages.inc.php:1028 #: pdf_schema.php:1241 tbl_printview.php:434 tbl_structure.php:810 msgid "Creation" msgstr "" #: db_printview.php:196 libraries/db_info.inc.php:93 -#: libraries/export/sql.php:519 libraries/messages.inc.php:1036 +#: libraries/export/sql.php:519 libraries/messages.inc.php:1032 #: pdf_schema.php:1246 tbl_printview.php:444 tbl_structure.php:818 msgid "Last update" msgstr "" #: db_printview.php:205 libraries/db_info.inc.php:98 -#: libraries/export/sql.php:524 libraries/messages.inc.php:1031 +#: libraries/export/sql.php:524 libraries/messages.inc.php:1027 #: pdf_schema.php:1251 tbl_printview.php:454 tbl_structure.php:826 msgid "Last check" msgstr "" -#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1085 +#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1081 #, php-format msgid "%s table(s)" msgstr " %s टेबल(s)" #: db_qbe.php:29 libraries/display_tbl.lib.php:1981 -#: libraries/messages.inc.php:1051 libraries/sql_query_form.lib.php:140 +#: libraries/messages.inc.php:1047 libraries/sql_query_form.lib.php:140 #: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131 #: view_operations.php:62 msgid "Your SQL query has been executed successfully" msgstr "आपकी SQL-query सफलता से पूरा किया" -#: db_qbe.php:42 libraries/messages.inc.php:371 +#: db_qbe.php:42 libraries/messages.inc.php:367 msgid "You have to choose at least one column to display" msgstr "" #: db_qbe.php:200 libraries/db_structure.lib.php:104 -#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1014 +#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1010 msgid "Sort" msgstr "" #: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111 #: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828 -#: libraries/messages.inc.php:69 server_databases.php:170 +#: libraries/messages.inc.php:65 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314 msgid "Ascending" msgstr "आरोही" #: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119 #: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825 -#: libraries/messages.inc.php:251 server_databases.php:170 +#: libraries/messages.inc.php:247 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315 msgid "Descending" msgstr "" #: db_qbe.php:264 db_tracking.php:78 libraries/display_tbl.lib.php:308 -#: libraries/messages.inc.php:888 tbl_change.php:277 tbl_tracking.php:597 +#: libraries/messages.inc.php:884 tbl_change.php:277 tbl_tracking.php:597 msgid "Show" msgstr "दिखाओ" -#: db_qbe.php:300 libraries/messages.inc.php:202 +#: db_qbe.php:300 libraries/messages.inc.php:198 msgid "Criteria" msgstr "" #: db_qbe.php:353 db_qbe.php:435 db_qbe.php:527 db_qbe.php:558 -#: libraries/messages.inc.php:718 +#: libraries/messages.inc.php:714 msgid "Ins" msgstr "" #: db_qbe.php:357 db_qbe.php:439 db_qbe.php:524 db_qbe.php:555 -#: libraries/messages.inc.php:56 +#: libraries/messages.inc.php:52 msgid "And" msgstr "और" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:529 db_qbe.php:560 -#: libraries/messages.inc.php:717 +#: libraries/messages.inc.php:713 msgid "Del" msgstr "" #: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553 -#: libraries/display_import.lib.php:166 libraries/messages.inc.php:592 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:588 #: libraries/tbl_properties.inc.php:779 server_privileges.php:258 #: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288 msgid "Or" msgstr "अथवा" -#: db_qbe.php:507 libraries/messages.inc.php:516 +#: db_qbe.php:507 libraries/messages.inc.php:512 msgid "Modify" msgstr "" -#: db_qbe.php:584 libraries/messages.inc.php:33 +#: db_qbe.php:584 libraries/messages.inc.php:29 msgid "Add/Delete Criteria Row" msgstr "मापदंड रो जोडें/हटायें" -#: db_qbe.php:596 libraries/messages.inc.php:32 +#: db_qbe.php:596 libraries/messages.inc.php:28 msgid "Add/Delete Field Columns" msgstr "क्षेत्र कोलम जोडें/हटायें" -#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1192 +#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1188 msgid "Update Query" msgstr " क्वरी अपडेट करो" -#: db_qbe.php:617 libraries/messages.inc.php:1216 +#: db_qbe.php:617 libraries/messages.inc.php:1212 msgid "Use Tables" msgstr " टेबल का उपयोग करो" -#: db_qbe.php:640 libraries/messages.inc.php:723 +#: db_qbe.php:640 libraries/messages.inc.php:719 #, php-format msgid "SQL query on database %s:" msgstr "" -#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:823 +#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:819 msgid "Submit Query" msgstr "" #: db_search.php:68 libraries/auth/config.auth.lib.php:84 #: libraries/auth/config.auth.lib.php:103 #: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52 -#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:26 +#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:22 msgid "Access denied" msgstr "प्रवेश निषेध" -#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:836 +#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:832 msgid "at least one of the words" msgstr "कोई भी एक शब्द" -#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:837 +#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:833 msgid "all words" msgstr "सभी शब्द" -#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:838 +#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:834 msgid "the exact phrase" msgstr "यथार्थ वाक्यांश" -#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:839 +#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:835 msgid "as regular expression" msgstr "" -#: db_search.php:242 libraries/messages.inc.php:840 +#: db_search.php:242 libraries/messages.inc.php:836 #, php-format msgid "Search results for \"%s\" %s:" msgstr "\"%s\" %s के लिये सर्च के परिणाम :" -#: db_search.php:260 libraries/messages.inc.php:579 +#: db_search.php:260 libraries/messages.inc.php:575 #, php-format msgid "%s match(es) inside table %s" 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/messages.inc.php:108 +#: db_structure.php:105 libraries/messages.inc.php:104 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468 msgid "Browse" msgstr "ब्राउज़" #: db_search.php:272 libraries/display_tbl.lib.php:1165 -#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:243 +#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:239 #: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406 #: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377 #: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216 @@ -581,45 +581,45 @@ msgstr "ब्राउज़" msgid "Delete" msgstr "डिलीट" -#: db_search.php:285 libraries/messages.inc.php:580 +#: db_search.php:285 libraries/messages.inc.php:576 #, php-format msgid "Total: %s match(es)" msgstr "" -#: db_search.php:299 libraries/messages.inc.php:832 +#: db_search.php:299 libraries/messages.inc.php:828 msgid "Search in database" msgstr "डाटाबेस में सर्च करें" -#: db_search.php:302 libraries/messages.inc.php:835 +#: db_search.php:302 libraries/messages.inc.php:831 msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgstr "शब्द अथवा वेल्यु जिसे सर्च करना है (wildcard: \"%\"):" -#: db_search.php:307 libraries/messages.inc.php:842 +#: db_search.php:307 libraries/messages.inc.php:838 msgid "Find:" msgstr "खोजो:" -#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1017 +#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1013 msgid "Words are separated by a space character (\" \")." msgstr "शब्दों में space (\" \") से अंतर करें." -#: db_search.php:325 libraries/messages.inc.php:834 +#: db_search.php:325 libraries/messages.inc.php:830 msgid "Inside table(s):" msgstr " टेबल में:" -#: db_search.php:355 libraries/messages.inc.php:833 +#: db_search.php:355 libraries/messages.inc.php:829 msgid "Inside field:" 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/messages.inc.php:431 libraries/sql_query_form.lib.php:334 +#: libraries/messages.inc.php:427 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/db_links.inc.php:63 libraries/export/latex.php:337 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:1048 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:1044 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 #: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269 msgid "Structure" @@ -628,8 +628,8 @@ 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:1642 -#: libraries/db_links.inc.php:100 libraries/messages.inc.php:272 +#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/db_links.inc.php:100 libraries/messages.inc.php:268 #: 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 @@ -639,40 +639,40 @@ 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:1641 -#: libraries/messages.inc.php:284 libraries/mult_submits.inc.php:39 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: libraries/messages.inc.php:280 libraries/mult_submits.inc.php:39 #: libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "खाली करें" -#: db_structure.php:316 libraries/messages.inc.php:1075 +#: db_structure.php:316 libraries/messages.inc.php:1071 #: libraries/tbl_links.inc.php:100 #, php-format msgid "Table %s has been emptied" msgstr " टेबल %s को खाली किया" -#: db_structure.php:326 libraries/messages.inc.php:1229 +#: db_structure.php:326 libraries/messages.inc.php:1225 #: libraries/tbl_links.inc.php:133 #, php-format msgid "View %s has been dropped" msgstr "" -#: db_structure.php:326 libraries/messages.inc.php:1074 +#: db_structure.php:326 libraries/messages.inc.php:1070 #: libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr " टेबल %s को ड्रोप किया" -#: db_structure.php:333 libraries/messages.inc.php:1128 +#: db_structure.php:333 libraries/messages.inc.php:1124 msgid "Tracking is active." msgstr "" -#: db_structure.php:335 libraries/messages.inc.php:1129 +#: db_structure.php:335 libraries/messages.inc.php:1125 msgid "Tracking is not active." msgstr "" #: db_structure.php:420 libraries/display_tbl.lib.php:1944 -#: libraries/messages.inc.php:1228 +#: libraries/messages.inc.php:1224 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -680,83 +680,83 @@ msgid "" msgstr "" #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 -#: libraries/messages.inc.php:1233 libraries/tbl_info.inc.php:66 +#: libraries/messages.inc.php:1229 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/messages.inc.php:773 libraries/server_links.inc.php:70 +#: libraries/messages.inc.php:769 libraries/server_links.inc.php:70 #: server_replication.php:33 server_replication.php:164 server_status.php:258 msgid "Replication" msgstr "" -#: db_structure.php:489 libraries/messages.inc.php:1053 +#: db_structure.php:489 libraries/messages.inc.php:1049 msgid "Sum" msgstr "जोड" #: db_structure.php:496 libraries/StorageEngine.class.php:356 -#: libraries/messages.inc.php:239 +#: libraries/messages.inc.php:235 #, 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 #: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086 -#: libraries/messages.inc.php:1243 libraries/mult_submits.inc.php:16 +#: libraries/messages.inc.php:1239 libraries/mult_submits.inc.php:16 #: server_databases.php:346 server_databases.php:351 #: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465 msgid "With selected:" msgstr "चुने हुओं को:" #: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: libraries/messages.inc.php:148 server_databases.php:348 +#: libraries/messages.inc.php:144 server_databases.php:348 #: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459 msgid "Check All" msgstr "सभी को चेक करें" #: db_structure.php:531 libraries/display_tbl.lib.php:2077 -#: libraries/messages.inc.php:1184 libraries/replication_gui.lib.php:33 +#: libraries/messages.inc.php:1180 libraries/replication_gui.lib.php:33 #: server_databases.php:350 server_privileges.php:533 #: server_privileges.php:1564 tbl_structure.php:463 msgid "Uncheck All" msgstr " सभी को अनचेक करें" -#: db_structure.php:536 libraries/messages.inc.php:150 +#: db_structure.php:536 libraries/messages.inc.php:146 msgid "Check tables having overhead" msgstr "" #: db_structure.php:547 db_structure.php:548 db_structure.php:599 -#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:672 +#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:668 #: libraries/mult_submits.inc.php:28 tbl_structure.php:493 #: tbl_structure.php:495 msgid "Print view" msgstr "" -#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:153 +#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:149 #: libraries/mult_submits.inc.php:42 tbl_operations.php:579 msgid "Check table" msgstr " टेबल को चेक करें" -#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:590 +#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:586 #: libraries/mult_submits.inc.php:47 tbl_operations.php:619 #: tbl_structure.php:710 tbl_structure.php:712 msgid "Optimize table" msgstr " टेबल को Optimize करें" -#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:758 +#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:754 #: libraries/mult_submits.inc.php:52 tbl_operations.php:609 msgid "Repair table" msgstr " टेबल को टीक करें" -#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:55 +#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:51 #: libraries/mult_submits.inc.php:57 tbl_operations.php:599 msgid "Analyze table" msgstr "टेबल का विश्लेषण करें" #: db_structure.php:557 db_structure.php:558 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/messages.inc.php:310 +#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:306 #: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84 #: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109 #: server_privileges.php:1341 setup/frames/menu.inc.php:22 @@ -764,7 +764,7 @@ msgstr "टेबल का विश्लेषण करें" msgid "Export" msgstr "एक्सपोर्ट" -#: db_tracking.php:66 libraries/messages.inc.php:1151 +#: db_tracking.php:66 libraries/messages.inc.php:1147 msgid "Tracked tables" msgstr "" @@ -772,7 +772,7 @@ msgstr "" #: 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/header_printview.inc.php:58 libraries/messages.inc.php:212 +#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:208 #: navigation.php:233 server_databases.php:169 server_privileges.php:1621 #: server_privileges.php:1682 server_privileges.php:1940 #: server_processlist.php:56 server_synchronize.php:1179 @@ -780,92 +780,92 @@ msgstr "" msgid "Database" msgstr " डाटाबेस" -#: db_tracking.php:73 libraries/messages.inc.php:1146 +#: db_tracking.php:73 libraries/messages.inc.php:1142 msgid "Last version" msgstr "" -#: db_tracking.php:74 libraries/messages.inc.php:1145 tbl_tracking.php:594 +#: db_tracking.php:74 libraries/messages.inc.php:1141 tbl_tracking.php:594 msgid "Created" msgstr "" -#: db_tracking.php:75 libraries/messages.inc.php:1147 tbl_tracking.php:595 +#: db_tracking.php:75 libraries/messages.inc.php:1143 tbl_tracking.php:595 msgid "Updated" msgstr "" #: db_tracking.php:77 libraries/Index.class.php:440 -#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:27 +#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:23 #: server_databases.php:203 server_privileges.php:1503 #: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187 msgid "Action" msgstr "कार्य" -#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:247 +#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:243 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:106 libraries/messages.inc.php:1142 tbl_tracking.php:548 +#: db_tracking.php:106 libraries/messages.inc.php:1138 tbl_tracking.php:548 #: tbl_tracking.php:606 tbl_tracking.php:613 msgid "active" msgstr "" -#: db_tracking.php:108 libraries/messages.inc.php:1143 tbl_tracking.php:550 +#: db_tracking.php:108 libraries/messages.inc.php:1139 tbl_tracking.php:550 #: tbl_tracking.php:608 tbl_tracking.php:610 msgid "not active" msgstr "" -#: db_tracking.php:121 libraries/messages.inc.php:1160 +#: db_tracking.php:121 libraries/messages.inc.php:1156 msgid "Versions" msgstr "" -#: db_tracking.php:122 libraries/messages.inc.php:1132 tbl_tracking.php:379 +#: db_tracking.php:122 libraries/messages.inc.php:1128 tbl_tracking.php:379 #: tbl_tracking.php:624 msgid "Tracking report" msgstr "" -#: db_tracking.php:123 libraries/messages.inc.php:1144 tbl_tracking.php:251 +#: db_tracking.php:123 libraries/messages.inc.php:1140 tbl_tracking.php:251 #: tbl_tracking.php:624 msgid "Structure snapshot" msgstr "" -#: db_tracking.php:152 libraries/messages.inc.php:1154 +#: db_tracking.php:152 libraries/messages.inc.php:1150 msgid "Untracked tables" msgstr "" -#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1153 +#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1149 #: tbl_structure.php:529 tbl_structure.php:531 msgid "Track table" msgstr "" -#: db_tracking.php:200 libraries/messages.inc.php:1121 +#: db_tracking.php:200 libraries/messages.inc.php:1117 msgid "Database Log" msgstr "" -#: export.php:62 libraries/messages.inc.php:312 +#: export.php:62 libraries/messages.inc.php:308 msgid "Selected export type has to be saved in file!" msgstr "" -#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:567 +#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:563 #, php-format msgid "Insufficient space to save the file %s." msgstr "" -#: export.php:294 libraries/messages.inc.php:324 +#: export.php:294 libraries/messages.inc.php:320 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "" -#: export.php:298 export.php:302 libraries/messages.inc.php:562 +#: export.php:298 export.php:302 libraries/messages.inc.php:558 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "" -#: export.php:629 libraries/messages.inc.php:276 +#: export.php:629 libraries/messages.inc.php:272 #, php-format msgid "Dump has been saved to file %s." msgstr "" -#: import.php:60 libraries/messages.inc.php:1202 +#: import.php:60 libraries/messages.inc.php:1198 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation%" @@ -873,21 +873,21 @@ msgid "" msgstr "" #: import.php:279 import.php:332 libraries/File.class.php:849 -#: libraries/File.class.php:961 libraries/messages.inc.php:325 +#: libraries/File.class.php:961 libraries/messages.inc.php:321 msgid "File could not be read" msgstr "" #: import.php:287 import.php:296 import.php:315 import.php:324 #: libraries/File.class.php:1031 libraries/File.class.php:1039 #: libraries/File.class.php:1055 libraries/File.class.php:1063 -#: libraries/messages.inc.php:1189 +#: libraries/messages.inc.php:1185 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." msgstr "" -#: import.php:337 libraries/messages.inc.php:547 +#: import.php:337 libraries/messages.inc.php:543 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -895,39 +895,39 @@ msgid "" msgstr "" #: import.php:372 libraries/display_import.lib.php:24 -#: libraries/messages.inc.php:125 +#: libraries/messages.inc.php:121 msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:397 libraries/messages.inc.php:102 +#: import.php:397 libraries/messages.inc.php:98 msgid "The bookmark has been deleted." msgstr "यह बुकमार्क हटा दिया गया है" -#: import.php:401 libraries/messages.inc.php:879 +#: import.php:401 libraries/messages.inc.php:875 msgid "Showing bookmark" msgstr "" -#: import.php:403 libraries/messages.inc.php:101 +#: import.php:403 libraries/messages.inc.php:97 #, php-format msgid "Bookmark %s created" msgstr "बुकमार्क %s बनाया" -#: import.php:409 import.php:415 libraries/messages.inc.php:407 +#: import.php:409 import.php:415 libraries/messages.inc.php:403 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" -#: import.php:424 libraries/messages.inc.php:1107 +#: import.php:424 libraries/messages.inc.php:1103 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: index.php:190 libraries/messages.inc.php:553 +#: index.php:190 libraries/messages.inc.php:549 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" -#: js/messages.php:25 libraries/messages.inc.php:155 +#: js/messages.php:25 libraries/messages.inc.php:151 #: server_synchronize.php:345 server_synchronize.php:357 #: server_synchronize.php:373 server_synchronize.php:380 #: server_synchronize.php:739 server_synchronize.php:767 @@ -935,116 +935,116 @@ msgstr "" msgid "Click to select" msgstr "" -#: js/messages.php:26 libraries/messages.inc.php:156 +#: js/messages.php:26 libraries/messages.inc.php:152 msgid "Click to unselect" msgstr "" #: js/messages.php:27 libraries/import.lib.php:103 -#: libraries/messages.inc.php:550 sql.php:89 +#: libraries/messages.inc.php:546 sql.php:89 msgid "\"DROP DATABASE\" statements are disabled." msgstr "" -#: js/messages.php:30 libraries/messages.inc.php:270 +#: js/messages.php:30 libraries/messages.inc.php:266 #: libraries/mult_submits.inc.php:258 sql.php:188 msgid "Do you really want to " msgstr "क्या आप सचमुच चाहते है की" -#: js/messages.php:31 libraries/messages.inc.php:271 +#: js/messages.php:31 libraries/messages.inc.php:267 #: libraries/mult_submits.inc.php:258 sql.php:172 msgid "You are about to DESTROY a complete database!" msgstr "" -#: js/messages.php:34 libraries/messages.inc.php:94 +#: js/messages.php:34 libraries/messages.inc.php:90 msgid "You are about to DISABLE a BLOB Repository!" msgstr "आप एक BLOB भंडार निष्क्रिय करने वाले हैं!" -#: js/messages.php:35 libraries/messages.inc.php:91 +#: js/messages.php:35 libraries/messages.inc.php:87 #, php-format msgid "Are you sure you want to disable all BLOB references for database %s?" msgstr "क्या आप वाकई %s दाताबेस के सारे संदर्भ निष्क्रिय करना चाहते है?" -#: js/messages.php:38 libraries/messages.inc.php:342 +#: js/messages.php:38 libraries/messages.inc.php:338 msgid "Missing value in the form!" msgstr "" -#: js/messages.php:39 libraries/messages.inc.php:570 +#: js/messages.php:39 libraries/messages.inc.php:566 msgid "This is not a number!" msgstr "यह नंबर नहीं है!" -#: js/messages.php:42 libraries/messages.inc.php:380 +#: js/messages.php:42 libraries/messages.inc.php:376 msgid "The host name is empty!" msgstr "होस्ट का नाम (hostname) खाली है!" -#: js/messages.php:43 libraries/messages.inc.php:1208 +#: js/messages.php:43 libraries/messages.inc.php:1204 msgid "The user name is empty!" msgstr "यूसरनेम खाली है!" -#: js/messages.php:44 libraries/messages.inc.php:607 +#: js/messages.php:44 libraries/messages.inc.php:603 #: server_privileges.php:1197 user_password.php:70 msgid "The password is empty!" msgstr "" -#: js/messages.php:45 libraries/messages.inc.php:609 +#: js/messages.php:45 libraries/messages.inc.php:605 #: server_privileges.php:1195 user_password.php:73 msgid "The passwords aren't the same!" msgstr "" -#: js/messages.php:49 libraries/messages.inc.php:123 pmd_general.php:342 +#: js/messages.php:49 libraries/messages.inc.php:119 pmd_general.php:342 #: pmd_general.php:379 msgid "Cancel" msgstr "रद्द" -#: js/messages.php:52 libraries/messages.inc.php:514 +#: js/messages.php:52 libraries/messages.inc.php:510 msgid "Modifications have been saved" msgstr "" -#: js/messages.php:53 libraries/messages.inc.php:741 +#: js/messages.php:53 libraries/messages.inc.php:737 msgid "Relation deleted" msgstr "" -#: js/messages.php:54 libraries/messages.inc.php:340 +#: js/messages.php:54 libraries/messages.inc.php:336 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:55 libraries/messages.inc.php:434 +#: js/messages.php:55 libraries/messages.inc.php:430 msgid "Internal relation added" msgstr "" -#: js/messages.php:56 libraries/messages.inc.php:299 +#: js/messages.php:56 libraries/messages.inc.php:295 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:57 libraries/messages.inc.php:300 +#: js/messages.php:57 libraries/messages.inc.php:296 msgid "Error: relation already exists." msgstr "" -#: js/messages.php:58 libraries/messages.inc.php:302 +#: js/messages.php:58 libraries/messages.inc.php:298 msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:59 libraries/messages.inc.php:351 +#: js/messages.php:59 libraries/messages.inc.php:347 #: libraries/relation.lib.php:107 msgid "General relation features" msgstr "" -#: js/messages.php:59 libraries/messages.inc.php:260 +#: js/messages.php:59 libraries/messages.inc.php:256 #: libraries/relation.lib.php:101 libraries/relation.lib.php:108 msgid "Disabled" msgstr "" -#: js/messages.php:60 libraries/messages.inc.php:850 +#: js/messages.php:60 libraries/messages.inc.php:846 msgid "Select referenced key" msgstr "" -#: js/messages.php:61 libraries/messages.inc.php:848 +#: js/messages.php:61 libraries/messages.inc.php:844 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:62 libraries/messages.inc.php:653 +#: js/messages.php:62 libraries/messages.inc.php:649 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:63 libraries/messages.inc.php:142 pmd_general.php:77 +#: js/messages.php:63 libraries/messages.inc.php:138 pmd_general.php:77 #: tbl_relation.php:548 msgid "Choose field to display" msgstr "" @@ -1060,9 +1060,9 @@ msgid "Prev" msgstr "" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2332 -#: libraries/common.lib.php:2335 libraries/display_tbl.lib.php:338 -#: libraries/messages.inc.php:543 server_binlog.php:205 server_binlog.php:207 +#: js/messages.php:77 libraries/common.lib.php:2344 +#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: libraries/messages.inc.php:539 server_binlog.php:205 server_binlog.php:207 #: tbl_printview.php:424 tbl_structure.php:802 msgid "Next" msgstr " अगला" @@ -1135,27 +1135,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1543 +#: js/messages.php:97 libraries/common.lib.php:1555 msgid "Jan" msgstr "जनवरी" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1545 +#: js/messages.php:99 libraries/common.lib.php:1557 msgid "Feb" msgstr "फरवरी" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1547 +#: js/messages.php:101 libraries/common.lib.php:1559 msgid "Mar" msgstr "मार्च" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1549 +#: js/messages.php:103 libraries/common.lib.php:1561 msgid "Apr" msgstr "अप्रैल" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1551 +#: js/messages.php:105 libraries/common.lib.php:1563 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1163,37 +1163,37 @@ msgid "May" msgstr "मई" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1553 +#: js/messages.php:107 libraries/common.lib.php:1565 msgid "Jun" msgstr "जून" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1555 +#: js/messages.php:109 libraries/common.lib.php:1567 msgid "Jul" msgstr "जुलाई" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1557 +#: js/messages.php:111 libraries/common.lib.php:1569 msgid "Aug" msgstr "अगस्त" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1559 +#: js/messages.php:113 libraries/common.lib.php:1571 msgid "Sep" msgstr "सितम्बर" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1561 +#: js/messages.php:115 libraries/common.lib.php:1573 msgid "Oct" msgstr "अक्तूबर" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1563 +#: js/messages.php:117 libraries/common.lib.php:1575 msgid "Nov" msgstr "नवम्बर" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1565 +#: js/messages.php:119 libraries/common.lib.php:1577 msgid "Dec" msgstr "दिसमबर" @@ -1234,37 +1234,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1568 +#: js/messages.php:132 libraries/common.lib.php:1580 msgid "Sun" msgstr "रविवार" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1570 +#: js/messages.php:134 libraries/common.lib.php:1582 msgid "Mon" msgstr "सोमवार" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1572 +#: js/messages.php:136 libraries/common.lib.php:1584 msgid "Tue" msgstr "मन्गलवार" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1574 +#: js/messages.php:138 libraries/common.lib.php:1586 msgid "Wed" msgstr "बुधवार" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1576 +#: js/messages.php:140 libraries/common.lib.php:1588 msgid "Thu" msgstr "गुरुवार" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1578 +#: js/messages.php:142 libraries/common.lib.php:1590 msgid "Fri" msgstr "शुक्रवार" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1580 +#: js/messages.php:144 libraries/common.lib.php:1592 msgid "Sat" msgstr "शनिवार" @@ -1334,76 +1334,76 @@ msgstr "" msgid "Second" msgstr "" -#: libraries/Config.class.php:1015 libraries/messages.inc.php:338 +#: libraries/Config.class.php:1015 libraries/messages.inc.php:334 msgid "Font size" msgstr "" #: libraries/File.class.php:344 libraries/File.class.php:432 #: libraries/File.class.php:569 libraries/File.class.php:708 -#: libraries/messages.inc.php:1201 +#: libraries/messages.inc.php:1197 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.class.php:414 libraries/messages.inc.php:1198 +#: libraries/File.class.php:414 libraries/messages.inc.php:1194 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:417 libraries/messages.inc.php:1197 +#: libraries/File.class.php:417 libraries/messages.inc.php:1193 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:420 libraries/messages.inc.php:1200 +#: libraries/File.class.php:420 libraries/messages.inc.php:1196 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:423 libraries/messages.inc.php:1199 +#: libraries/File.class.php:423 libraries/messages.inc.php:1195 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:426 libraries/messages.inc.php:1195 +#: libraries/File.class.php:426 libraries/messages.inc.php:1191 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:429 libraries/messages.inc.php:1196 +#: libraries/File.class.php:429 libraries/messages.inc.php:1192 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:908 libraries/messages.inc.php:319 +#: libraries/File.class.php:908 libraries/messages.inc.php:315 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "" -#: libraries/Index.class.php:428 libraries/messages.inc.php:554 +#: libraries/Index.class.php:428 libraries/messages.inc.php:550 #: tbl_relation.php:529 msgid "No index defined!" msgstr "" -#: libraries/Index.class.php:433 libraries/messages.inc.php:411 +#: libraries/Index.class.php:433 libraries/messages.inc.php:407 #: server_databases.php:132 tbl_tracking.php:316 msgid "Indexes" msgstr "" -#: libraries/Index.class.php:444 libraries/messages.inc.php:1186 +#: libraries/Index.class.php:444 libraries/messages.inc.php:1182 #: 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:475 tbl_tracking.php:322 msgid "Unique" msgstr "" -#: libraries/Index.class.php:445 libraries/messages.inc.php:596 +#: libraries/Index.class.php:445 libraries/messages.inc.php:592 #: tbl_tracking.php:323 msgid "Packed" msgstr "" -#: libraries/Index.class.php:447 libraries/messages.inc.php:131 +#: libraries/Index.class.php:447 libraries/messages.inc.php:127 #: tbl_tracking.php:325 msgid "Cardinality" msgstr "" -#: libraries/Index.class.php:450 libraries/messages.inc.php:162 +#: libraries/Index.class.php:450 libraries/messages.inc.php:158 #: tbl_tracking.php:279 tbl_tracking.php:328 msgid "Comment" msgstr "" @@ -1411,29 +1411,29 @@ msgstr "" #: libraries/Index.class.php:466 libraries/common.lib.php:616 #: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:280 pdf_pages.php:280 +#: libraries/messages.inc.php:276 pdf_pages.php:280 #: setup/frames/index.inc.php:124 setup/lib/messages.inc.php:352 #: tbl_row_action.php:69 msgid "Edit" msgstr "एडिट" -#: libraries/Index.class.php:472 libraries/messages.inc.php:666 +#: libraries/Index.class.php:472 libraries/messages.inc.php:662 msgid "The primary key has been dropped" msgstr "" -#: libraries/Index.class.php:476 libraries/messages.inc.php:413 +#: libraries/Index.class.php:476 libraries/messages.inc.php:409 #, php-format msgid "Index %s has been dropped" msgstr "" -#: libraries/Index.class.php:576 libraries/messages.inc.php:412 +#: libraries/Index.class.php:576 libraries/messages.inc.php:408 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "" -#: libraries/List_Database.class.php:431 libraries/messages.inc.php:218 +#: libraries/List_Database.class.php:431 libraries/messages.inc.php:214 #: libraries/server_links.inc.php:41 server_databases.php:88 #: server_privileges.php:1621 setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" @@ -1460,85 +1460,85 @@ msgid_plural "%1$d rows inserted." msgstr[0] "एकवचन%1$d रोव डाला" msgstr[1] "बहुवचन%1$d रोवस डाला" -#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:549 +#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:545 msgid "" "There is no detailed status information available for this storage engine." msgstr "" -#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:291 +#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:287 #, php-format msgid "%s is available on this MySQL server." msgstr "" -#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:292 +#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:288 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "" -#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:294 +#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:290 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "" -#: libraries/Table.class.php:1019 libraries/messages.inc.php:443 +#: libraries/Table.class.php:1019 libraries/messages.inc.php:439 msgid "Invalid database" msgstr "" -#: libraries/Table.class.php:1033 libraries/messages.inc.php:450 +#: libraries/Table.class.php:1033 libraries/messages.inc.php:446 #: tbl_get_field.php:26 msgid "Invalid table name" msgstr "" -#: libraries/Table.class.php:1048 libraries/messages.inc.php:301 +#: libraries/Table.class.php:1048 libraries/messages.inc.php:297 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "" -#: libraries/Table.class.php:1132 libraries/messages.inc.php:754 +#: libraries/Table.class.php:1132 libraries/messages.inc.php:750 #, php-format msgid "Table %s has been renamed to %s" msgstr "" -#: libraries/Theme.class.php:162 libraries/messages.inc.php:1099 +#: libraries/Theme.class.php:162 libraries/messages.inc.php:1095 #, php-format msgid "No valid image path for theme %s found!" msgstr "" -#: libraries/Theme.class.php:384 libraries/messages.inc.php:1097 +#: libraries/Theme.class.php:384 libraries/messages.inc.php:1093 msgid "No preview available." msgstr "" -#: libraries/Theme.class.php:387 libraries/messages.inc.php:1089 +#: libraries/Theme.class.php:387 libraries/messages.inc.php:1085 msgid "take it" msgstr "" -#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1096 +#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1092 #, php-format msgid "Default theme %s not found!" msgstr "" -#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1098 +#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1094 #, php-format msgid "Theme %s not found!" msgstr "" -#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1100 +#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1096 #, php-format msgid "Theme path not found for theme %s!" msgstr "" -#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1101 +#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1097 #: test/theme.php:161 themes.php:21 themes.php:41 msgid "Theme / Style" msgstr "" -#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:172 +#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:168 msgid "Cannot connect: invalid settings." msgstr "" #: libraries/auth/config.auth.lib.php:92 #: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65 -#: libraries/messages.inc.php:1238 test/theme.php:152 +#: libraries/messages.inc.php:1234 test/theme.php:152 #, php-format msgid "Welcome to %s" msgstr " %s मे स्वागत है" @@ -1563,104 +1563,104 @@ msgstr "" "अपने मेजबान विन्यास में, उपयोगकर्ता नाम और पासवर्ड की जाँच करें और इत्मीनान कर ले की ये " "उपयोगकरता नाम और पासवर्ड MySQL सर्वर के व्यवस्थापक द्वारा दी गई जानकारी के अनुरूप हैं." -#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:488 +#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:484 msgid "Log in" msgstr "लोगिन" #: libraries/auth/cookie.auth.lib.php:246 -#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:659 +#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:655 #: libraries/navigation_header.inc.php:93 #: libraries/navigation_header.inc.php:95 msgid "phpMyAdmin documentation" msgstr "phpMyAdmin डोक्युमेंटेशन" #: libraries/auth/cookie.auth.lib.php:258 -#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:492 +#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:488 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:493 +#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:489 msgid "Server:" msgstr "" -#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:494 +#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:490 msgid "Username:" msgstr "यूसरनेम:" -#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:491 +#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:487 msgid "Password:" msgstr "पासव्रड:" -#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:854 +#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:850 msgid "Server Choice" msgstr "Server चुनिये" #: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 -#: libraries/messages.inc.php:177 +#: libraries/messages.inc.php:173 msgid "Cookies must be enabled past this point." msgstr "" #: libraries/auth/cookie.auth.lib.php:671 -#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:489 +#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:485 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" #: libraries/auth/cookie.auth.lib.php:675 -#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:544 +#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:540 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" #: libraries/auth/cookie.auth.lib.php:685 #: libraries/auth/cookie.auth.lib.php:687 -#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:126 +#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:122 msgid "Cannot log in to the MySQL server" msgstr "" -#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1245 +#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1241 msgid "Wrong username/password. Access denied." msgstr "यूसरनेम/पासवर्ड गलत है। Access denied." #: libraries/auth/swekey/swekey.auth.lib.php:118 -#: libraries/messages.inc.php:1057 +#: libraries/messages.inc.php:1053 #, php-format msgid "File %s does not contain any key id" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:157 #: libraries/auth/swekey/swekey.auth.lib.php:180 -#: libraries/messages.inc.php:1056 +#: libraries/messages.inc.php:1052 msgid "Hardware authentication failed" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:166 -#: libraries/messages.inc.php:1058 +#: libraries/messages.inc.php:1054 msgid "No valid authentication key plugged" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:202 -#: libraries/messages.inc.php:1055 +#: libraries/messages.inc.php:1051 msgid "Authenticating..." msgstr "" -#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1230 +#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1226 msgid "View image" msgstr "" -#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:652 +#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:648 msgid "Play audio" msgstr "" -#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1232 +#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1228 msgid "View video" msgstr "" -#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:269 +#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:265 msgid "Download file" msgstr "" -#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:128 +#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:124 msgid "" "Couldn't load the iconv or recode extension needed for charset conversion. " "Either configure PHP to enable these extensions or disable charset " @@ -1669,13 +1669,13 @@ msgstr "" #: libraries/charset_conversion.lib.php:79 #: libraries/charset_conversion.lib.php:90 -#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:130 +#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:126 msgid "" "Couldn't use the iconv, libiconv, or recode_string functions, although the " "necessary extensions appear to be loaded. Check your PHP configuration." msgstr "" -#: libraries/common.inc.php:583 libraries/messages.inc.php:170 +#: libraries/common.inc.php:583 libraries/messages.inc.php:166 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!" @@ -1701,22 +1701,22 @@ msgstr "" msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:636 libraries/messages.inc.php:448 +#: libraries/common.inc.php:636 libraries/messages.inc.php:444 #, 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/messages.inc.php:856 libraries/select_server.lib.php:41 +#: libraries/messages.inc.php:852 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/messages.inc.php:437 +#: libraries/common.inc.php:823 libraries/messages.inc.php:433 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.lib.php:147 libraries/messages.inc.php:499 +#: libraries/common.lib.php:147 libraries/messages.inc.php:495 #, php-format msgid "Max: %s%s" msgstr "" @@ -1736,7 +1736,7 @@ msgstr "इंग्लिश" #: libraries/common.lib.php:428 libraries/common.lib.php:430 #: libraries/common.lib.php:432 libraries/common.lib.php:448 #: libraries/common.lib.php:450 libraries/dbg/setup.php:25 -#: libraries/display_export.lib.php:164 libraries/messages.inc.php:267 +#: libraries/display_export.lib.php:164 libraries/messages.inc.php:263 #: libraries/relation.lib.php:97 libraries/sql_query_form.lib.php:451 #: libraries/sql_query_form.lib.php:454 main.php:229 pdf_pages.php:37 #: pdf_pages.php:43 pdf_pages.php:49 pdf_pages.php:54 @@ -1746,55 +1746,55 @@ msgstr "डोक्युमेंटेशन" #: libraries/common.lib.php:581 libraries/core.lib.php:234 #: libraries/core.lib.php:263 libraries/import.lib.php:134 -#: libraries/messages.inc.php:297 pdf_schema.php:32 pdf_schema.php:232 +#: libraries/messages.inc.php:293 pdf_schema.php:32 pdf_schema.php:232 #: tbl_change.php:1027 tbl_operations.php:213 tbl_relation.php:290 #: view_operations.php:62 msgid "Error" msgstr "गल्ती" #: libraries/common.lib.php:595 libraries/header_printview.inc.php:61 -#: libraries/messages.inc.php:1023 server_processlist.php:60 +#: libraries/messages.inc.php:1019 server_processlist.php:60 #: server_status.php:247 msgid "SQL query" msgstr "" -#: libraries/common.lib.php:634 libraries/messages.inc.php:538 +#: libraries/common.lib.php:634 libraries/messages.inc.php:534 msgid "MySQL said: " msgstr "" -#: libraries/common.lib.php:667 libraries/messages.inc.php:76 +#: libraries/common.lib.php:667 libraries/messages.inc.php:72 #: pdf_schema.php:241 user_password.php:115 msgid "Back" msgstr "वापस" -#: libraries/common.lib.php:1177 libraries/messages.inc.php:309 +#: libraries/common.lib.php:1177 libraries/messages.inc.php:305 #: setup/lib/messages.inc.php:353 msgid "Explain SQL" msgstr "SQL की व्याख्या " -#: libraries/common.lib.php:1180 libraries/messages.inc.php:551 +#: libraries/common.lib.php:1180 libraries/messages.inc.php:547 msgid "Skip Explain SQL" msgstr "" -#: libraries/common.lib.php:1212 libraries/messages.inc.php:563 +#: libraries/common.lib.php:1212 libraries/messages.inc.php:559 msgid "Without PHP Code" msgstr "" -#: libraries/common.lib.php:1215 libraries/messages.inc.php:649 +#: libraries/common.lib.php:1215 libraries/messages.inc.php:645 #: setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "PHP Code बनाओ" -#: libraries/common.lib.php:1233 libraries/messages.inc.php:737 +#: libraries/common.lib.php:1233 libraries/messages.inc.php:733 #: server_status.php:341 setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "" -#: libraries/common.lib.php:1242 libraries/messages.inc.php:575 +#: libraries/common.lib.php:1242 libraries/messages.inc.php:571 msgid "Skip Validate SQL" msgstr "" -#: libraries/common.lib.php:1245 libraries/messages.inc.php:1220 +#: libraries/common.lib.php:1245 libraries/messages.inc.php:1216 #: setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "" @@ -1808,11 +1808,11 @@ msgid "Inline" msgstr "इनलाइन" #: libraries/common.lib.php:1332 libraries/common.lib.php:1347 -#: libraries/messages.inc.php:713 +#: libraries/messages.inc.php:709 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1351 libraries/messages.inc.php:1108 +#: libraries/common.lib.php:1351 libraries/messages.inc.php:1104 #: libraries/tbl_triggers.lib.php:28 server_processlist.php:58 msgid "Time" msgstr "" @@ -1846,46 +1846,56 @@ msgstr "PB" msgid "EiB" msgstr "EB" +#. l10n: Thousands separator +#: libraries/common.lib.php:1417 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: libraries/common.lib.php:1419 +msgid "." +msgstr "." + #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1584 +#: libraries/common.lib.php:1596 #: libraries/transformations/text_plain__dateformat.inc.php:28 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B, %Y को %I:%M %p" -#: libraries/common.lib.php:1886 +#: libraries/common.lib.php:1898 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s दिन, %s घंटे, %s मिनट and %s सेकंड" -#: libraries/common.lib.php:2301 libraries/common.lib.php:2304 -#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:664 +#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:660 #: server_status.php:608 msgid "Begin" msgstr "" -#: libraries/common.lib.php:2302 libraries/common.lib.php:2305 -#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:665 +#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:661 #: server_binlog.php:168 server_binlog.php:170 msgid "Previous" msgstr "" -#: libraries/common.lib.php:2333 libraries/common.lib.php:2336 -#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:289 +#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:285 msgid "End" msgstr "आखरी" -#: libraries/common.lib.php:2409 libraries/messages.inc.php:455 +#: libraries/common.lib.php:2421 libraries/messages.inc.php:451 #, php-format msgid "Jump to database "%s"." msgstr "" -#: libraries/common.lib.php:2429 libraries/messages.inc.php:461 +#: libraries/common.lib.php:2441 libraries/messages.inc.php:457 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/core.lib.php:286 libraries/dbg/setup.php:22 -#: libraries/messages.inc.php:127 +#: libraries/messages.inc.php:123 #, php-format msgid "" "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " @@ -1893,116 +1903,116 @@ msgid "" msgstr "" #: libraries/db_events.inc.php:20 libraries/db_events.inc.php:22 -#: libraries/export/sql.php:415 libraries/messages.inc.php:306 +#: libraries/export/sql.php:415 libraries/messages.inc.php:302 msgid "Events" msgstr "" #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 -#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:541 +#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:537 #: libraries/tbl_triggers.lib.php:27 setup/frames/index.inc.php:112 msgid "Name" msgstr "नाम" -#: libraries/db_links.inc.php:45 libraries/messages.inc.php:216 +#: libraries/db_links.inc.php:45 libraries/messages.inc.php:212 #, php-format msgid "Database %s has been dropped." msgstr "डाटाबेस %s को ड्रोप कर दिया ।" #: libraries/db_links.inc.php:57 libraries/db_links.inc.php:58 -#: libraries/db_links.inc.php:59 libraries/messages.inc.php:234 +#: libraries/db_links.inc.php:59 libraries/messages.inc.php:230 msgid "Database seems to be empty!" msgstr "" -#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1025 +#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1021 #: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60 #: querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "" -#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1152 +#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1148 #: libraries/tbl_links.inc.php:69 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:86 libraries/messages.inc.php:719 +#: libraries/db_links.inc.php:86 libraries/messages.inc.php:715 msgid "Query" msgstr "क्वरी" -#: libraries/db_links.inc.php:91 libraries/messages.inc.php:253 +#: libraries/db_links.inc.php:91 libraries/messages.inc.php:249 msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:98 libraries/messages.inc.php:397 +#: libraries/db_links.inc.php:98 libraries/messages.inc.php:393 #: libraries/server_links.inc.php:88 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:104 libraries/messages.inc.php:587 +#: libraries/db_links.inc.php:104 libraries/messages.inc.php:583 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" msgstr "कार्रवाई" -#: libraries/db_links.inc.php:111 libraries/messages.inc.php:709 +#: libraries/db_links.inc.php:111 libraries/messages.inc.php:705 #: libraries/server_links.inc.php:66 server_privileges.php:72 #: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117 msgid "Privileges" msgstr " प्रिविलेज" #: libraries/db_routines.inc.php:30 libraries/db_routines.inc.php:32 -#: libraries/messages.inc.php:812 +#: libraries/messages.inc.php:808 msgid "Routines" msgstr "" -#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:811 +#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:807 msgid "Return type" msgstr "" #: libraries/db_structure.lib.php:57 libraries/display_tbl.lib.php:1848 -#: libraries/messages.inc.php:65 +#: libraries/messages.inc.php:61 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "" "शायद अनुमानित हैं. [a@./Documentation.html#faq3_11@Documentation]FAQ 3.11[/a] देखें" -#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:593 +#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:589 #: server_databases.php:142 tbl_printview.php:336 tbl_structure.php:683 msgid "Overhead" msgstr "" #: libraries/dbi/mysql.dbi.lib.php:112 libraries/dbi/mysqli.dbi.lib.php:124 -#: libraries/messages.inc.php:176 +#: libraries/messages.inc.php:172 msgid "Connection for controluser as defined in your configuration failed." msgstr "" #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 -#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:855 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:851 msgid "The server is not responding" msgstr "" #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:1010 +#: libraries/messages.inc.php:1006 msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "" -#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:255 +#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:251 #: tbl_structure.php:609 msgid "Details..." msgstr "" -#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:143 +#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:139 #: main.php:91 user_password.php:111 user_password.php:129 msgid "Change password" msgstr "पासव्रड बदलिये" -#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:561 +#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:557 #: libraries/replication_gui.lib.php:341 server_privileges.php:768 msgid "No Password" msgstr "पासवर्ड नहीं है" -#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:610 +#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:606 #: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60 #: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335 #: libraries/replication_gui.lib.php:345 server_privileges.php:757 @@ -2011,13 +2021,13 @@ msgstr "पासवर्ड नहीं है" msgid "Password" msgstr "" -#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:806 +#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:802 #: libraries/replication_gui.lib.php:349 libraries/replication_gui.lib.php:352 #: server_privileges.php:776 server_privileges.php:779 msgid "Re-type" msgstr "" -#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:608 +#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:604 msgid "Password Hashing" msgstr "" @@ -2025,89 +2035,89 @@ msgstr "" msgid "MySQL 4.0 compatible" msgstr "" -#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:353 +#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:349 #: libraries/replication_gui.lib.php:356 server_privileges.php:783 msgid "Generate Password" msgstr "" -#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:352 +#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:348 #: libraries/replication_gui.lib.php:359 server_privileges.php:786 msgid "Generate" msgstr "" #: libraries/display_create_database.lib.php:22 -#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:189 +#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:185 msgid "Create new database" msgstr " नया डाटाबेस बनाओ" -#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:185 +#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:181 msgid "Create" msgstr "बनाइये" -#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:564 +#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:560 #: server_privileges.php:74 server_privileges.php:1388 #: server_replication.php:35 msgid "No Privileges" msgstr "कोइ प्रिविलेज नहीं" -#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:445 +#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:441 msgid "Table must have at least one field." msgstr "" -#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:190 +#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:186 #, fuzzy, php-format msgid "Create table on database %s" msgstr " डाटाबेस मे नया टेबल बनाओ" -#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:577 +#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:573 msgid "Number of fields" msgstr "" -#: libraries/display_export.lib.php:42 libraries/messages.inc.php:124 +#: libraries/display_export.lib.php:42 libraries/messages.inc.php:120 msgid "Could not load export plugins, please check your installation!" msgstr "" -#: libraries/display_export.lib.php:107 libraries/messages.inc.php:277 +#: libraries/display_export.lib.php:107 libraries/messages.inc.php:273 #, php-format msgid "Dump %s row(s) starting at record # %s" msgstr "" -#: libraries/display_export.lib.php:115 libraries/messages.inc.php:274 +#: libraries/display_export.lib.php:115 libraries/messages.inc.php:270 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:125 libraries/messages.inc.php:852 +#: libraries/display_export.lib.php:125 libraries/messages.inc.php:848 #: setup/lib/messages.inc.php:82 msgid "Save as file" msgstr "फाईल मे सेव करें" -#: libraries/display_export.lib.php:134 libraries/messages.inc.php:828 +#: libraries/display_export.lib.php:134 libraries/messages.inc.php:824 #, php-format msgid "Save on server in %s directory" msgstr "" -#: libraries/display_export.lib.php:142 libraries/messages.inc.php:594 +#: libraries/display_export.lib.php:142 libraries/messages.inc.php:590 #: setup/lib/messages.inc.php:90 msgid "Overwrite existing file(s)" msgstr "" -#: libraries/display_export.lib.php:148 libraries/messages.inc.php:330 +#: libraries/display_export.lib.php:148 libraries/messages.inc.php:326 msgid "File name template" msgstr "" -#: libraries/display_export.lib.php:152 libraries/messages.inc.php:327 +#: libraries/display_export.lib.php:152 libraries/messages.inc.php:323 msgid "server name" msgstr "" -#: libraries/display_export.lib.php:155 libraries/messages.inc.php:326 +#: libraries/display_export.lib.php:155 libraries/messages.inc.php:322 msgid "database name" msgstr "" -#: libraries/display_export.lib.php:158 libraries/messages.inc.php:328 +#: libraries/display_export.lib.php:158 libraries/messages.inc.php:324 msgid "table name" msgstr "" -#: libraries/display_export.lib.php:162 libraries/messages.inc.php:329 +#: libraries/display_export.lib.php:162 libraries/messages.inc.php:325 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2115,24 +2125,24 @@ msgid "" "3$s. Other text will be kept as is." msgstr "" -#: libraries/display_export.lib.php:202 libraries/messages.inc.php:331 +#: libraries/display_export.lib.php:202 libraries/messages.inc.php:327 msgid "remember template" msgstr "" #: libraries/display_export.lib.php:210 libraries/display_import.lib.php:178 -#: libraries/display_import.lib.php:191 libraries/messages.inc.php:145 +#: libraries/display_import.lib.php:191 libraries/messages.inc.php:141 #: libraries/sql_query_form.lib.php:549 msgid "Character set of the file:" msgstr "" -#: libraries/display_export.lib.php:235 libraries/messages.inc.php:166 +#: libraries/display_export.lib.php:235 libraries/messages.inc.php:162 #: setup/lib/messages.inc.php:84 msgid "Compression" 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/messages.inc.php:558 +#: libraries/export/sql.php:868 libraries/messages.inc.php:554 #: libraries/tbl_properties.inc.php:575 server_privileges.php:1836 #: server_processlist.php:75 msgid "None" @@ -2150,66 +2160,66 @@ msgstr "" msgid "bzipped" msgstr "" -#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1018 +#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1014 msgid "SQL compatibility mode" msgstr "" -#: libraries/display_import.lib.php:67 libraries/messages.inc.php:398 +#: libraries/display_import.lib.php:67 libraries/messages.inc.php:394 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " "browsers." msgstr "" -#: libraries/display_import.lib.php:77 libraries/messages.inc.php:406 +#: libraries/display_import.lib.php:77 libraries/messages.inc.php:402 msgid "The file is being processed, please be patient." msgstr "" -#: libraries/display_import.lib.php:99 libraries/messages.inc.php:408 +#: libraries/display_import.lib.php:99 libraries/messages.inc.php:404 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." msgstr "" -#: libraries/display_import.lib.php:126 libraries/messages.inc.php:333 +#: libraries/display_import.lib.php:126 libraries/messages.inc.php:329 msgid "File to import" msgstr "" -#: libraries/display_import.lib.php:137 libraries/messages.inc.php:486 +#: libraries/display_import.lib.php:137 libraries/messages.inc.php:482 #: libraries/sql_query_form.lib.php:524 msgid "Location of the text file" msgstr "" -#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1203 +#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1199 msgid "File uploads are not allowed on this server." msgstr "" -#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1235 +#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1231 #: libraries/sql_query_form.lib.php:533 tbl_change.php:1028 msgid "The directory you set for upload work cannot be reached" msgstr "" -#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1236 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1232 #: libraries/sql_query_form.lib.php:536 tbl_change.php:1031 msgid "web server upload directory" msgstr "" -#: libraries/display_import.lib.php:212 libraries/messages.inc.php:167 +#: libraries/display_import.lib.php:212 libraries/messages.inc.php:163 #, php-format msgid "Imported file compression will be automatically detected from: %s" msgstr "" -#: libraries/display_import.lib.php:219 libraries/messages.inc.php:600 +#: libraries/display_import.lib.php:219 libraries/messages.inc.php:596 msgid "Partial import" msgstr "" -#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1105 +#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1101 #, php-format msgid "" "Previous import timed out, after resubmitting will continue from position %d." msgstr "" -#: libraries/display_import.lib.php:232 libraries/messages.inc.php:51 +#: libraries/display_import.lib.php:232 libraries/messages.inc.php:47 msgid "" "Allow the interruption of an import in case the script detects it is close " "to the PHP timeout limit. This might be good way to import large files, " @@ -2218,396 +2228,396 @@ msgstr "" "यदि स्क्रिप्ट पता लगाए की वो PHP मध्यांतर सीमा के करीब है तब एक रुकावट के आयात की " "अनुमति दें. यह बड़ी फाइल के आयात के लिए अच्छा है लेकिन, लेकिन यह लेनदेन तोड़ सकता है. " -#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1004 +#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1000 #: setup/lib/messages.inc.php:161 msgid "Number of records (queries) to skip from start" msgstr "" -#: libraries/display_import.lib.php:255 libraries/messages.inc.php:396 +#: libraries/display_import.lib.php:255 libraries/messages.inc.php:392 #: setup/lib/messages.inc.php:160 msgid "Format of imported file" msgstr "" #: libraries/display_select_lang.lib.php:45 -#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:465 +#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:461 #: setup/frames/index.inc.php:70 msgid "Language" msgstr "" -#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:447 +#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:443 #, php-format msgid "%d is not valid row number." msgstr "" -#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:814 +#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:810 msgid "row(s) starting from record #" msgstr "रौ, इस record से #" -#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:817 +#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:813 msgid "horizontal" msgstr "समतल" -#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:816 +#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:812 msgid "horizontal (rotated headers)" msgstr "" -#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:819 +#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:815 msgid "vertical" msgstr "खडा" -#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:818 +#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:814 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr " %s रूप में और %s सेल के बाद शीर्षक को दोहराईये" -#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:495 +#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:491 msgid "This operation could take a long time. Proceed anyway?" msgstr "" -#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1012 +#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1008 msgid "Sort by key" msgstr "" #: libraries/display_tbl.lib.php:555 libraries/import.lib.php:1082 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:591 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:587 #: tbl_select.php:267 tbl_structure.php:754 msgid "Options" msgstr "" #: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:570 -#: libraries/messages.inc.php:601 +#: libraries/messages.inc.php:597 msgid "Partial Texts" msgstr "" #: libraries/display_tbl.lib.php:561 libraries/display_tbl.lib.php:574 -#: libraries/messages.inc.php:346 +#: libraries/messages.inc.php:342 msgid "Full Texts" msgstr "" -#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:739 +#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:735 msgid "Relational key" msgstr "" -#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:738 +#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:734 msgid "Relational display field" msgstr "" -#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:872 +#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:868 msgid "Show binary contents" msgstr "" -#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:873 +#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:869 msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:871 +#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:867 msgid "Show binary contents as HEX" msgstr "" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:375 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:371 #: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320 msgid "Hide" msgstr "" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:508 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:504 #: libraries/tbl_properties.inc.php:144 transformation_overview.php:47 msgid "Browser transformation" msgstr "" #: libraries/display_tbl.lib.php:1126 libraries/display_tbl.lib.php:1130 -#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:308 +#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:304 msgid "Execute bookmarked query" msgstr "" #: libraries/display_tbl.lib.php:1145 libraries/display_tbl.lib.php:1157 -#: libraries/messages.inc.php:244 +#: libraries/messages.inc.php:240 msgid "The row has been deleted" msgstr "रौ को डिलीट कर दिया" #: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056 -#: libraries/messages.inc.php:460 server_processlist.php:71 +#: libraries/messages.inc.php:456 server_processlist.php:71 #: tbl_row_action.php:64 msgid "Kill" msgstr "" -#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:849 +#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:845 msgid "in query" msgstr "" -#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:881 +#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:877 msgid "Showing rows" msgstr "रौ देखिये" -#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1113 +#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1109 msgid "total" msgstr " कुल" -#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:727 +#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:723 #: sql.php:524 #, php-format msgid "Query took %01.4f sec" msgstr "क्वरी को %01.4f सेकेंड का समय लगा" -#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:135 +#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:131 #: 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:471 msgid "Change" msgstr "बदलिये" -#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:724 +#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:720 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:671 +#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:667 msgid "Print view (with full texts)" msgstr "" -#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:482 +#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:478 msgid "Link not found" msgstr "" -#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1224 +#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1220 #: main.php:228 msgid "Version information" msgstr "" -#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:423 +#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:419 msgid "Data home directory" msgstr "" -#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:424 +#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:420 msgid "The common part of the directory path for all InnoDB data files." msgstr "" -#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:422 +#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:418 msgid "Data files" msgstr "" -#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:418 +#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:414 msgid "Autoextend increment" msgstr "" -#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:419 +#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:415 msgid "" " The increment size for extending the size of an autoextending tablespace " "when it becomes full." msgstr "" -#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:420 +#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:416 msgid "Buffer pool size" msgstr "" -#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:421 +#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:417 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." msgstr "" -#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:112 +#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:108 msgid "Buffer Pool" msgstr "बफर पूल" -#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:426 +#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:422 #: server_status.php:306 msgid "InnoDB Status" msgstr "" -#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:113 +#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:109 msgid "Buffer Pool Usage" msgstr "बफर पूल उपयोग" -#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1114 +#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1110 #: server_databases.php:137 server_databases.php:305 server_status.php:414 #: server_status.php:475 server_status.php:496 tbl_printview.php:351 #: tbl_structure.php:697 msgid "Total" msgstr "" -#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:425 +#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:421 msgid "pages" msgstr "" -#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:343 +#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:339 msgid "Free pages" msgstr "" -#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:259 +#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:255 msgid "Dirty pages" msgstr "" -#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:230 +#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:226 msgid "Pages containing data" msgstr "" -#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:598 +#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:594 msgid "Pages to be flushed" msgstr "" -#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:119 +#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:115 msgid "Busy pages" msgstr "" -#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:467 +#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:463 msgid "Latched pages" msgstr "" -#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:111 +#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:107 msgid "Buffer Pool Activity" msgstr "बफर पूल गतिविधि" -#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:731 +#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:727 msgid "Read requests" msgstr "" -#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1244 +#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1240 msgid "Write requests" msgstr "" -#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:115 +#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:111 msgid "Read misses" msgstr "गलतियाँ पढ़ें" -#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:117 +#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:113 msgid "Write waits" msgstr "" -#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:114 +#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:110 msgid "Read misses in %" msgstr "% में गलतियाँ पढ़ें" -#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:116 +#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:112 msgid "Write waits in %" msgstr "" -#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:522 +#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:518 msgid "Data pointer size" msgstr "" -#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:523 +#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:519 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." msgstr "" -#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:528 +#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:524 msgid "Automatic recovery mode" msgstr "" -#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:529 +#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:525 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." msgstr "" -#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:527 +#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:523 msgid "Maximum size for temporary sort files" msgstr "" -#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:526 +#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:522 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " "INFILE)." msgstr "" -#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:525 +#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:521 msgid "Maximum size for temporary files on index creation" msgstr "" -#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:524 +#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:520 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " "method." msgstr "" -#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:531 +#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:527 msgid "Repair threads" msgstr "" -#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:530 +#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:526 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." msgstr "" -#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:533 +#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:529 msgid "Sort buffer size" msgstr "" -#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:532 +#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:528 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." msgstr "" -#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:620 +#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:616 msgid "Index cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:619 +#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:615 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." msgstr "" -#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:630 +#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:626 msgid "Record cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:629 +#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:625 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " "to the handle data (.xtd) and row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:624 +#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:620 msgid "Log cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:623 +#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:619 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:628 +#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:624 msgid "Log file threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:627 +#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:623 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:634 +#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:630 msgid "Transaction buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:633 +#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:629 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." msgstr "" -#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:611 +#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:607 msgid "Checkpoint frequency" msgstr "" -#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:612 +#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:608 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." msgstr "" -#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:615 +#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:611 msgid "Data log threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:616 +#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:612 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -2615,48 +2625,48 @@ msgid "" "that can be stored in the database." msgstr "" -#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:618 +#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:614 msgid "Garbage threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:617 +#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:613 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." msgstr "" -#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:622 +#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:618 msgid "Log buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:621 +#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:617 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " "required to write a data log." msgstr "" -#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:613 +#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:609 msgid "Data file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:614 +#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:610 msgid "The grow size of the handle data (.xtd) files." msgstr "" -#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:632 +#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:628 msgid "Row file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:631 +#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:627 msgid "The grow size of the row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:626 +#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:622 msgid "Log file count" msgstr "" -#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:625 +#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:621 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -2666,19 +2676,19 @@ msgstr "" #: libraries/export/htmlword.php:132 libraries/export/odt.php:168 #: libraries/export/sql.php:881 libraries/export/texytext.php:130 -#: libraries/messages.inc.php:275 +#: libraries/messages.inc.php:271 msgid "Dumping data for table" msgstr "" #: libraries/export/htmlword.php:185 libraries/export/odt.php:238 #: libraries/export/sql.php:785 libraries/export/texytext.php:177 -#: libraries/messages.inc.php:1086 +#: libraries/messages.inc.php:1082 msgid "Table structure for table" msgstr "" #: libraries/export/latex.php:125 libraries/export/sql.php:232 #: libraries/export/xml.php:102 libraries/header_printview.inc.php:57 -#: libraries/messages.inc.php:381 libraries/replication_gui.lib.php:63 +#: libraries/messages.inc.php:377 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:170 libraries/replication_gui.lib.php:265 #: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325 #: server_privileges.php:692 server_privileges.php:695 @@ -2690,183 +2700,183 @@ msgstr "होस्ट" #: libraries/export/latex.php:130 libraries/export/sql.php:233 #: libraries/export/xml.php:107 libraries/header_printview.inc.php:59 -#: libraries/messages.inc.php:354 +#: libraries/messages.inc.php:350 msgid "Generation Time" msgstr "समय पर बनाया" #: libraries/export/latex.php:131 libraries/export/sql.php:235 -#: libraries/export/xml.php:108 libraries/messages.inc.php:864 main.php:186 +#: libraries/export/xml.php:108 libraries/messages.inc.php:860 main.php:186 msgid "Server version" msgstr "" #: libraries/export/latex.php:132 libraries/export/sql.php:236 -#: libraries/export/xml.php:109 libraries/messages.inc.php:651 +#: libraries/export/xml.php:109 libraries/messages.inc.php:647 msgid "PHP Version" msgstr "" #: libraries/export/latex.php:201 libraries/export/sql.php:868 -#: libraries/messages.inc.php:226 server_databases.php:127 +#: libraries/messages.inc.php:222 server_databases.php:127 #: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317 #: tbl_structure.php:666 msgid "Data" msgstr " डाटा" -#: libraries/export/odt.php:318 libraries/messages.inc.php:506 +#: libraries/export/odt.php:318 libraries/messages.inc.php:502 #: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "" -#: libraries/export/sql.php:387 libraries/messages.inc.php:711 +#: libraries/export/sql.php:387 libraries/messages.inc.php:707 msgid "Procedures" msgstr "" -#: libraries/export/sql.php:401 libraries/messages.inc.php:348 +#: libraries/export/sql.php:401 libraries/messages.inc.php:344 msgid "Functions" msgstr "" -#: libraries/export/sql.php:618 libraries/messages.inc.php:174 +#: libraries/export/sql.php:618 libraries/messages.inc.php:170 msgid "Constraints for dumped tables" msgstr "" -#: libraries/export/sql.php:627 libraries/messages.inc.php:175 +#: libraries/export/sql.php:627 libraries/messages.inc.php:171 msgid "Constraints for table" msgstr "" -#: libraries/export/sql.php:727 libraries/messages.inc.php:512 +#: libraries/export/sql.php:727 libraries/messages.inc.php:508 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/export/sql.php:739 libraries/messages.inc.php:743 +#: libraries/export/sql.php:739 libraries/messages.inc.php:739 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/export/sql.php:796 libraries/messages.inc.php:1178 +#: libraries/export/sql.php:796 libraries/messages.inc.php:1174 #: libraries/tbl_triggers.lib.php:19 msgid "Triggers" msgstr "" -#: libraries/export/sql.php:808 libraries/messages.inc.php:1046 +#: libraries/export/sql.php:808 libraries/messages.inc.php:1042 msgid "Structure for view" msgstr "" -#: libraries/export/sql.php:817 libraries/messages.inc.php:1029 +#: libraries/export/sql.php:817 libraries/messages.inc.php:1025 msgid "Stand-in structure for view" msgstr "" #: libraries/footer.inc.php:184 libraries/footer.inc.php:195 -#: libraries/footer.inc.php:198 libraries/messages.inc.php:586 +#: libraries/footer.inc.php:198 libraries/messages.inc.php:582 msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/header.inc.php:115 libraries/messages.inc.php:542 +#: libraries/header.inc.php:115 libraries/messages.inc.php:538 msgid "New table" msgstr "" #: libraries/header_printview.inc.php:50 libraries/header_printview.inc.php:55 -#: libraries/messages.inc.php:1024 +#: libraries/messages.inc.php:1020 msgid "SQL result" msgstr "" -#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:350 +#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:346 msgid "Generated by" msgstr "" #: libraries/header_printview.inc.php:63 libraries/import.lib.php:145 -#: libraries/messages.inc.php:820 navigation.php:652 navigation.php:674 +#: libraries/messages.inc.php:816 navigation.php:652 navigation.php:674 #: server_databases.php:122 tbl_printview.php:394 tbl_structure.php:366 #: tbl_structure.php:778 msgid "Rows" msgstr "" -#: libraries/import.lib.php:150 libraries/messages.inc.php:285 sql.php:520 +#: libraries/import.lib.php:150 libraries/messages.inc.php:281 sql.php:520 #: tbl_change.php:181 tbl_get_field.php:35 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" -#: libraries/import.lib.php:1078 libraries/messages.inc.php:399 +#: libraries/import.lib.php:1078 libraries/messages.inc.php:395 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1079 libraries/messages.inc.php:400 +#: libraries/import.lib.php:1079 libraries/messages.inc.php:396 msgid "View a structure`s contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1080 libraries/messages.inc.php:401 +#: libraries/import.lib.php:1080 libraries/messages.inc.php:397 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1081 libraries/messages.inc.php:402 +#: libraries/import.lib.php:1081 libraries/messages.inc.php:398 msgid "Edit its structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1084 libraries/messages.inc.php:362 +#: libraries/import.lib.php:1084 libraries/messages.inc.php:358 msgid "Go to database" msgstr "" #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:869 +#: libraries/messages.inc.php:865 msgid "settings" msgstr "" -#: libraries/import.lib.php:1106 libraries/messages.inc.php:363 +#: libraries/import.lib.php:1106 libraries/messages.inc.php:359 msgid "Go to table" msgstr "" -#: libraries/import.lib.php:1109 libraries/messages.inc.php:1047 +#: libraries/import.lib.php:1109 libraries/messages.inc.php:1043 msgid "structure" msgstr "" -#: libraries/import.lib.php:1115 libraries/messages.inc.php:364 +#: libraries/import.lib.php:1115 libraries/messages.inc.php:360 msgid "Go to view" msgstr "" #: libraries/import/csv.php:58 libraries/import/csv.php:70 #: libraries/import/csv.php:74 libraries/import/csv.php:78 -#: libraries/messages.inc.php:442 +#: libraries/messages.inc.php:438 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "" -#: libraries/import/csv.php:59 libraries/messages.inc.php:323 +#: libraries/import/csv.php:59 libraries/messages.inc.php:319 msgid "Fields terminated by" msgstr "" -#: libraries/import/csv.php:71 libraries/messages.inc.php:320 +#: libraries/import/csv.php:71 libraries/messages.inc.php:316 msgid "Fields enclosed by" msgstr "" -#: libraries/import/csv.php:75 libraries/messages.inc.php:321 +#: libraries/import/csv.php:75 libraries/messages.inc.php:317 msgid "Fields escaped by" msgstr "" -#: libraries/import/csv.php:79 libraries/messages.inc.php:481 +#: libraries/import/csv.php:79 libraries/messages.inc.php:477 msgid "Lines terminated by" msgstr "लाईन समाप्त होता है" -#: libraries/import/csv.php:119 libraries/messages.inc.php:439 +#: libraries/import/csv.php:119 libraries/messages.inc.php:435 #, php-format msgid "Invalid column (%s) specified!" msgstr "" #: libraries/import/csv.php:177 libraries/import/csv.php:424 -#: libraries/messages.inc.php:441 +#: libraries/messages.inc.php:437 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/import/csv.php:312 libraries/messages.inc.php:440 +#: libraries/import/csv.php:312 libraries/messages.inc.php:436 #, php-format msgid "Invalid field count in CSV input on line %d." msgstr "" -#: libraries/import/ldi.php:55 libraries/messages.inc.php:446 +#: libraries/import/ldi.php:55 libraries/messages.inc.php:442 msgid "This plugin does not support compressed imports!" msgstr "" #: libraries/import/xml.php:74 libraries/import/xml.php:130 -#: libraries/messages.inc.php:1247 +#: libraries/messages.inc.php:1243 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -2895,567 +2905,557 @@ msgstr "" msgid "ltr" msgstr "आईटीआर" -#. l10n: Thousands separator -#: libraries/messages.inc.php:21 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: libraries/messages.inc.php:23 -msgid "." -msgstr "." - -#: libraries/messages.inc.php:25 server_status.php:461 +#: libraries/messages.inc.php:21 server_status.php:461 msgid "Aborted" msgstr "रद्द" -#: libraries/messages.inc.php:28 main.php:68 +#: libraries/messages.inc.php:24 main.php:68 msgid "Actions" msgstr "कार्य" -#: libraries/messages.inc.php:34 libraries/tbl_properties.inc.php:780 +#: libraries/messages.inc.php:30 libraries/tbl_properties.inc.php:780 #: tbl_structure.php:543 #, php-format msgid "Add %s field(s)" msgstr "%s क्षेत्र जोडें" -#: libraries/messages.inc.php:35 +#: libraries/messages.inc.php:31 msgid "Add custom comment into header (\\n splits lines)" msgstr "" "शीर्षक में कस्टम टिपण्णी जोडें (\n" " लाइनों को विभाजित करें)" -#: libraries/messages.inc.php:36 +#: libraries/messages.inc.php:32 msgid "Add into comments" msgstr "इनटू टिप्पणियां जोडें" -#: libraries/messages.inc.php:37 tbl_structure.php:541 +#: libraries/messages.inc.php:33 tbl_structure.php:541 msgid "Add new field" msgstr "नया क्षेत्र जोडें" -#: libraries/messages.inc.php:38 server_privileges.php:1886 +#: libraries/messages.inc.php:34 server_privileges.php:1886 msgid "Add privileges on the following database" msgstr "इन डाटाबेसों के लिये विशेषाधिकार जोडें" -#: libraries/messages.inc.php:39 server_privileges.php:1907 +#: libraries/messages.inc.php:35 server_privileges.php:1907 msgid "Add privileges on the following table" msgstr "इन टेबल के लिये विशेषाधिकार जोडें" -#: libraries/messages.inc.php:40 tbl_select.php:288 +#: libraries/messages.inc.php:36 tbl_select.php:288 msgid "Add search conditions (body of the \"where\" clause):" msgstr "खोज शर्तें जोडें (\"where\" खंड के शरीर में)" -#: libraries/messages.inc.php:41 tbl_indexes.php:251 +#: libraries/messages.inc.php:37 tbl_indexes.php:251 #, php-format msgid "Add to index  %s column(s)" msgstr "सूचकांक में जोडें  %s column(s)" -#: libraries/messages.inc.php:42 server_privileges.php:1570 +#: libraries/messages.inc.php:38 server_privileges.php:1570 #: server_privileges.php:1594 server_privileges.php:1988 #: server_privileges.php:2177 msgid "Add a new User" msgstr "नया यूसर जोडें" -#: libraries/messages.inc.php:43 server_privileges.php:931 +#: libraries/messages.inc.php:39 server_privileges.php:931 msgid "You have added a new user." msgstr "आपने नया यूसर बना लिया" -#: libraries/messages.inc.php:44 server_privileges.php:571 +#: libraries/messages.inc.php:40 server_privileges.php:571 msgid "Administration" msgstr "एडमिनिस्ट्रेशन" -#: libraries/messages.inc.php:45 tbl_structure.php:557 +#: libraries/messages.inc.php:41 tbl_structure.php:557 #, php-format msgid "After %s" msgstr "%s के बाद" -#: libraries/messages.inc.php:46 tbl_change.php:1147 +#: libraries/messages.inc.php:42 tbl_change.php:1147 msgid "Go back to previous page" msgstr "पिछले पृष्ट पर वापस जाएँ" -#: libraries/messages.inc.php:47 tbl_change.php:1148 +#: libraries/messages.inc.php:43 tbl_change.php:1148 msgid "Insert another new row" msgstr "एक और नई रो सम्मिलित करें" -#: libraries/messages.inc.php:48 tbl_change.php:1160 +#: libraries/messages.inc.php:44 tbl_change.php:1160 msgid "Edit next row" msgstr "अगली रो को संपादित करें" -#: libraries/messages.inc.php:49 tbl_change.php:1152 +#: libraries/messages.inc.php:45 tbl_change.php:1152 msgid "Go back to this page" msgstr "इस पृष्ठ पर वापस जाएँ" -#: libraries/messages.inc.php:50 querywindow.php:115 +#: libraries/messages.inc.php:46 querywindow.php:115 msgid "All" msgstr "सभी" -#: libraries/messages.inc.php:53 tbl_operations.php:249 +#: libraries/messages.inc.php:49 tbl_operations.php:249 msgid "Alter table order by" msgstr "टेबल क्रमांक को बदलिये " -#: libraries/messages.inc.php:54 tbl_operations.php:660 +#: libraries/messages.inc.php:50 tbl_operations.php:660 msgid "Analyze" msgstr "विश्लेषण" -#: libraries/messages.inc.php:57 +#: libraries/messages.inc.php:53 msgid "and" msgstr "और" -#: libraries/messages.inc.php:59 pmd_general.php:87 +#: libraries/messages.inc.php:55 pmd_general.php:87 msgid "Angular links" msgstr "कोणीय लिंक" -#: libraries/messages.inc.php:60 tbl_structure.php:401 tbl_structure.php:415 +#: libraries/messages.inc.php:56 tbl_structure.php:401 tbl_structure.php:415 #: tbl_structure.php:429 #, php-format msgid "An index has been added on %s" msgstr "%s पर एक सूचकांक जोड़ा गया है" -#: libraries/messages.inc.php:61 server_privileges.php:1521 +#: libraries/messages.inc.php:57 server_privileges.php:1521 #: server_privileges.php:2123 msgid "Any" msgstr "कोई" -#: libraries/messages.inc.php:62 libraries/replication_gui.lib.php:298 +#: libraries/messages.inc.php:58 libraries/replication_gui.lib.php:298 #: server_privileges.php:725 msgid "Any host" msgstr "कोई भी होस्ट" -#: libraries/messages.inc.php:63 libraries/replication_gui.lib.php:250 +#: libraries/messages.inc.php:59 libraries/replication_gui.lib.php:250 #: server_privileges.php:677 msgid "Any user" msgstr "कोई भी उपयोगकर्ता" -#: libraries/messages.inc.php:64 server_synchronize.php:449 +#: libraries/messages.inc.php:60 server_synchronize.php:449 #: server_synchronize.php:894 msgid "Apply Selected Changes" msgstr "चयनित परिवर्तन लागू करें" -#: libraries/messages.inc.php:66 tbl_structure.php:386 +#: libraries/messages.inc.php:62 tbl_structure.php:386 #, php-format msgid "A primary key has been added on %s" msgstr " %s पर एक प्राईमरी की जड़ी गयी है" -#: libraries/messages.inc.php:67 libraries/mysql_charsets.lib.php:368 +#: libraries/messages.inc.php:63 libraries/mysql_charsets.lib.php:368 msgid "Arabic" msgstr "अरबी" -#: libraries/messages.inc.php:68 libraries/mysql_charsets.lib.php:359 +#: libraries/messages.inc.php:64 libraries/mysql_charsets.lib.php:359 msgid "Armenian" msgstr "आर्मेनियन" -#: libraries/messages.inc.php:70 libraries/tbl_properties.inc.php:394 +#: libraries/messages.inc.php:66 libraries/tbl_properties.inc.php:394 msgid "As defined:" msgstr "जैसे परिभाषित:" -#: libraries/messages.inc.php:71 tbl_structure.php:556 +#: libraries/messages.inc.php:67 tbl_structure.php:556 msgid "At Beginning of Table" msgstr "टेबल के शुरू में" -#: libraries/messages.inc.php:72 tbl_structure.php:555 +#: libraries/messages.inc.php:68 tbl_structure.php:555 msgid "At End of Table" msgstr "टेबल के आखिर में" -#: libraries/messages.inc.php:73 libraries/tbl_properties.inc.php:108 +#: libraries/messages.inc.php:69 libraries/tbl_properties.inc.php:108 #: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:144 #: tbl_structure.php:180 msgid "Attributes" msgstr "विशेषता" -#: libraries/messages.inc.php:74 pdf_pages.php:303 pdf_pages.php:306 +#: libraries/messages.inc.php:70 pdf_pages.php:303 pdf_pages.php:306 msgid "Automatic layout" msgstr "स्वचालित लेआउट" -#: libraries/messages.inc.php:77 libraries/mysql_charsets.lib.php:354 +#: libraries/messages.inc.php:73 libraries/mysql_charsets.lib.php:354 msgid "Baltic" msgstr "बाल्टिक" -#: libraries/messages.inc.php:78 libraries/sqlparser.lib.php:175 +#: libraries/messages.inc.php:74 libraries/sqlparser.lib.php:175 msgid "BEGIN CUT" msgstr "BEGIN कट" -#: libraries/messages.inc.php:79 libraries/sqlparser.lib.php:179 +#: libraries/messages.inc.php:75 libraries/sqlparser.lib.php:179 msgid "BEGIN RAW" msgstr "BEGIN रॉ" -#: libraries/messages.inc.php:80 libraries/mysql_charsets.lib.php:201 +#: libraries/messages.inc.php:76 libraries/mysql_charsets.lib.php:201 #: libraries/mysql_charsets.lib.php:402 tbl_change.php:518 msgid "Binary" msgstr "बइनरी" -#: libraries/messages.inc.php:81 tbl_change.php:894 +#: libraries/messages.inc.php:77 tbl_change.php:894 msgid "Binary - do not edit" msgstr "बइनरी - एडिट मत करिये" -#: libraries/messages.inc.php:82 libraries/server_links.inc.php:76 +#: libraries/messages.inc.php:78 libraries/server_links.inc.php:76 #: server_binlog.php:110 server_status.php:253 test/theme.php:121 msgid "Binary log" msgstr "बाइनरी लोग" -#: libraries/messages.inc.php:83 server_binlog.php:217 +#: libraries/messages.inc.php:79 server_binlog.php:217 msgid "Event type" msgstr "इवेंट प्रकार " -#: libraries/messages.inc.php:84 server_binlog.php:220 +#: libraries/messages.inc.php:80 server_binlog.php:220 msgid "Information" msgstr "सूचना" -#: libraries/messages.inc.php:85 server_binlog.php:215 +#: libraries/messages.inc.php:81 server_binlog.php:215 msgid "Log name" msgstr "लॉग नाम" -#: libraries/messages.inc.php:86 server_binlog.php:219 +#: libraries/messages.inc.php:82 server_binlog.php:219 msgid "Original position" msgstr "मूल स्थिति" -#: libraries/messages.inc.php:87 server_binlog.php:216 +#: libraries/messages.inc.php:83 server_binlog.php:216 msgid "Position" msgstr "स्थिति" -#: libraries/messages.inc.php:88 libraries/replication_gui.lib.php:169 +#: libraries/messages.inc.php:84 libraries/replication_gui.lib.php:169 #: server_binlog.php:218 msgid "Server ID" msgstr "सर्वर आईडी" -#: libraries/messages.inc.php:92 +#: libraries/messages.inc.php:88 msgctxt "$strBLOBRepositoryDisabled" msgid "Disabled" msgstr "दिसअबल्ड " -#: libraries/messages.inc.php:95 +#: libraries/messages.inc.php:91 msgctxt "$strBLOBRepositoryEnabled" msgid "Enabled" msgstr "सक्षम" -#: libraries/messages.inc.php:97 tbl_change.php:888 +#: libraries/messages.inc.php:93 tbl_change.php:888 msgid "Remove BLOB Repository Reference" msgstr "BLOB रिपोजिटरी संदर्भ हटायें" -#: libraries/messages.inc.php:98 +#: libraries/messages.inc.php:94 msgctxt "$strBLOBRepositoryRepair" msgid "Repair" msgstr "मरम्मत" -#: libraries/messages.inc.php:99 tbl_change.php:987 +#: libraries/messages.inc.php:95 tbl_change.php:987 msgid "Upload to BLOB repository" msgstr "BLOB भण्डार में अपलोड करें" -#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:359 +#: libraries/messages.inc.php:96 libraries/sql_query_form.lib.php:359 #: sql.php:677 msgid "Let every user access this bookmark" msgstr "हर उपयोकर्ता को अनुमति दें इस बुकमार्क का उपयोग करने के लिए" -#: libraries/messages.inc.php:103 sql.php:671 +#: libraries/messages.inc.php:99 sql.php:671 msgid "Label" msgstr "लेबल" -#: libraries/messages.inc.php:104 libraries/sql_query_form.lib.php:433 +#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:433 msgid "Bookmarked SQL query" msgstr "बुकमार्क किया हुआ SQL-क्वरी" -#: libraries/messages.inc.php:105 libraries/sql_query_form.lib.php:365 +#: libraries/messages.inc.php:101 libraries/sql_query_form.lib.php:365 msgid "Replace existing bookmark of same name" msgstr "एक ही नाम के सभी बुकमार्क्स बदल दें" -#: libraries/messages.inc.php:106 libraries/sql_query_form.lib.php:352 +#: libraries/messages.inc.php:102 libraries/sql_query_form.lib.php:352 #: sql.php:665 sql.php:666 sql.php:683 msgid "Bookmark this SQL query" msgstr "इस SQL-क्वरी को बुकमार्क कीजिये " -#: libraries/messages.inc.php:107 libraries/sql_query_form.lib.php:466 +#: libraries/messages.inc.php:103 libraries/sql_query_form.lib.php:466 msgid "View only" msgstr "केवल देखिये" -#: libraries/messages.inc.php:109 tbl_structure.php:161 +#: libraries/messages.inc.php:105 tbl_structure.php:161 msgid "Browse distinct values" msgstr "अलग मूल्य ब्राउस करें " -#: libraries/messages.inc.php:110 tbl_change.php:252 tbl_select.php:27 +#: libraries/messages.inc.php:106 tbl_change.php:252 tbl_select.php:27 #: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34 msgid "Browse foreign values" msgstr "विदेशी मूल्य ब्राउस करें " -#: libraries/messages.inc.php:118 libraries/mysql_charsets.lib.php:213 +#: libraries/messages.inc.php:114 libraries/mysql_charsets.lib.php:213 msgid "Bulgarian" msgstr "" -#: libraries/messages.inc.php:120 +#: libraries/messages.inc.php:116 msgid "\"bzipped\"" msgstr "" -#: libraries/messages.inc.php:122 +#: libraries/messages.inc.php:118 msgid "Calendar" msgstr "" -#: libraries/messages.inc.php:129 tbl_indexes.php:75 +#: libraries/messages.inc.php:125 tbl_indexes.php:75 msgid "Can't rename index to PRIMARY!" msgstr "इन्डेक्स को PRIMARY नाम मे नहीं बदल सकते!" -#: libraries/messages.inc.php:132 libraries/mysql_charsets.lib.php:223 +#: libraries/messages.inc.php:128 libraries/mysql_charsets.lib.php:223 #: libraries/mysql_charsets.lib.php:409 msgid "case-insensitive" msgstr "" -#: libraries/messages.inc.php:133 libraries/mysql_charsets.lib.php:226 +#: libraries/messages.inc.php:129 libraries/mysql_charsets.lib.php:226 #: libraries/mysql_charsets.lib.php:411 msgid "case-sensitive" msgstr "" -#: libraries/messages.inc.php:134 libraries/mysql_charsets.lib.php:332 +#: libraries/messages.inc.php:130 libraries/mysql_charsets.lib.php:332 msgid "Central European" msgstr "" -#: libraries/messages.inc.php:136 server_privileges.php:1969 +#: libraries/messages.inc.php:132 server_privileges.php:1969 msgid "... keep the old one." msgstr "" -#: libraries/messages.inc.php:137 server_privileges.php:1967 +#: libraries/messages.inc.php:133 server_privileges.php:1967 msgid "Create a new user with the same privileges and ..." msgstr "" -#: libraries/messages.inc.php:138 server_privileges.php:1972 +#: libraries/messages.inc.php:134 server_privileges.php:1972 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/messages.inc.php:139 server_privileges.php:1970 +#: libraries/messages.inc.php:135 server_privileges.php:1970 msgid " ... delete the old one from the user tables." msgstr "" -#: libraries/messages.inc.php:140 server_privileges.php:1971 +#: libraries/messages.inc.php:136 server_privileges.php:1971 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/messages.inc.php:141 server_privileges.php:1964 +#: libraries/messages.inc.php:137 server_privileges.php:1964 msgid "Change Login Information / Copy User" msgstr "" -#: libraries/messages.inc.php:144 libraries/mysql_charsets.lib.php:107 +#: libraries/messages.inc.php:140 libraries/mysql_charsets.lib.php:107 msgid "Charset" msgstr "" -#: libraries/messages.inc.php:146 server_collations.php:40 +#: libraries/messages.inc.php:142 server_collations.php:40 msgid "Character Sets and Collations" msgstr "" -#: libraries/messages.inc.php:147 libraries/server_links.inc.php:57 +#: libraries/messages.inc.php:143 libraries/server_links.inc.php:57 #: test/theme.php:109 msgid "Charsets" msgstr "" -#: libraries/messages.inc.php:149 tbl_operations.php:661 +#: libraries/messages.inc.php:145 tbl_operations.php:661 msgid "Check" msgstr "" -#: libraries/messages.inc.php:151 server_databases.php:293 +#: libraries/messages.inc.php:147 server_databases.php:293 #: server_databases.php:294 msgid "Check Privileges" msgstr "प्रिविलेज चेक करें" -#: libraries/messages.inc.php:152 server_databases.php:289 +#: libraries/messages.inc.php:148 server_databases.php:289 #, php-format msgid "Check privileges for database "%s"." msgstr "डाटाबेस के प्रिविलेज चेक करें "%s"." -#: libraries/messages.inc.php:154 pdf_pages.php:261 +#: libraries/messages.inc.php:150 pdf_pages.php:261 msgid "Please choose a page to edit" msgstr " एडिट करने के लिये पेज़ चुने" -#: libraries/messages.inc.php:157 +#: libraries/messages.inc.php:153 msgid "Displaying Column Comments" msgstr "" -#: libraries/messages.inc.php:159 pdf_pages.php:483 view_create.php:148 +#: libraries/messages.inc.php:155 pdf_pages.php:483 view_create.php:148 msgid "Column names" msgstr "कोलम के नाम" -#: libraries/messages.inc.php:160 server_privileges.php:1685 +#: libraries/messages.inc.php:156 server_privileges.php:1685 msgid "Column-specific privileges" msgstr " केवल कोलम के प्रिविलेज" -#: libraries/messages.inc.php:164 +#: libraries/messages.inc.php:160 msgid "MySQL 4.0 compatible" msgstr "" -#: libraries/messages.inc.php:165 +#: libraries/messages.inc.php:161 msgid "Complete inserts" msgstr "पूरा इनसर्टस" -#: libraries/messages.inc.php:168 +#: libraries/messages.inc.php:164 #, php-format msgid "Could not load default configuration from: \"%1$s\"" msgstr "" -#: libraries/messages.inc.php:169 main.php:306 +#: libraries/messages.inc.php:165 main.php:306 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: libraries/messages.inc.php:171 pdf_schema.php:672 +#: libraries/messages.inc.php:167 pdf_schema.php:672 #, php-format msgid "Please configure the coordinates for table %s" msgstr "" -#: libraries/messages.inc.php:173 server_status.php:433 +#: libraries/messages.inc.php:169 server_status.php:433 msgid "Connections" msgstr "" -#: libraries/messages.inc.php:179 tbl_operations.php:509 +#: libraries/messages.inc.php:175 tbl_operations.php:509 msgid "Copy table to (database.table):" msgstr " (database.table) में टेबल को कापी करें:" -#: libraries/messages.inc.php:180 tbl_move_copy.php:58 +#: libraries/messages.inc.php:176 tbl_move_copy.php:58 #, php-format msgid "Table %s has been copied to %s." msgstr " %s टेबल को %s में कापी कर दिया." -#: libraries/messages.inc.php:181 tbl_move_copy.php:48 +#: libraries/messages.inc.php:177 tbl_move_copy.php:48 msgid "Can't copy table to same one!" msgstr "" -#: libraries/messages.inc.php:182 server_synchronize.php:94 +#: libraries/messages.inc.php:178 server_synchronize.php:94 msgid "Could not connect to the source" msgstr "" -#: libraries/messages.inc.php:183 server_synchronize.php:97 +#: libraries/messages.inc.php:179 server_synchronize.php:97 msgid "Could not connect to the target" msgstr "" -#: libraries/messages.inc.php:184 server_processlist.php:24 +#: libraries/messages.inc.php:180 server_processlist.php:24 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "thread %s को मारने में phpMyAdmin असफल हुआ। शायद वह खतम हो चुका है।" -#: libraries/messages.inc.php:187 +#: libraries/messages.inc.php:183 #, php-format msgid "Create an index on %s columns" msgstr "  %s  कोलम पर इन्डेक्स बनाऐं " -#: libraries/messages.inc.php:188 tbl_indexes.php:160 +#: libraries/messages.inc.php:184 tbl_indexes.php:160 msgid "Create a new index" msgstr "एक नया इन्डेक्स बनाऐं" -#: libraries/messages.inc.php:191 pdf_pages.php:297 pmd_pdf.php:114 +#: libraries/messages.inc.php:187 pdf_pages.php:297 pmd_pdf.php:114 msgid "Create a page" msgstr "नया पेज़ बनाऐं" -#: libraries/messages.inc.php:192 +#: libraries/messages.inc.php:188 msgid "Creation of PDFs" msgstr "" -#: libraries/messages.inc.php:193 pmd_general.php:74 pmd_general.php:306 +#: libraries/messages.inc.php:189 pmd_general.php:74 pmd_general.php:306 msgid "Create relation" msgstr "" -#: libraries/messages.inc.php:194 pmd_general.php:71 +#: libraries/messages.inc.php:190 pmd_general.php:71 #: server_synchronize.php:429 server_synchronize.php:872 msgid "Create table" msgstr "" -#: libraries/messages.inc.php:195 +#: libraries/messages.inc.php:191 msgctxt "$strCreateTableShort" msgid "Create table" msgstr "" -#: libraries/messages.inc.php:196 server_privileges.php:1994 +#: libraries/messages.inc.php:192 server_privileges.php:1994 msgid "Database for user" msgstr "" -#: libraries/messages.inc.php:197 server_privileges.php:1999 +#: libraries/messages.inc.php:193 server_privileges.php:1999 msgid "Create database with same name and grant all privileges" msgstr "" -#: libraries/messages.inc.php:198 +#: libraries/messages.inc.php:194 msgctxt "$strCreateUserDatabaseNone" msgid "None" msgstr "" -#: libraries/messages.inc.php:199 server_privileges.php:2003 +#: libraries/messages.inc.php:195 server_privileges.php:2003 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: libraries/messages.inc.php:200 server_privileges.php:2000 +#: libraries/messages.inc.php:196 server_privileges.php:2000 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: libraries/messages.inc.php:201 +#: libraries/messages.inc.php:197 msgid "Creation/Update/Check dates" msgstr "" -#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:229 +#: libraries/messages.inc.php:199 libraries/mysql_charsets.lib.php:229 msgid "Croatian" msgstr "" -#: libraries/messages.inc.php:204 +#: libraries/messages.inc.php:200 msgid "CSV" msgstr "" -#: libraries/messages.inc.php:205 libraries/server_synchronize.lib.php:1343 +#: libraries/messages.inc.php:201 libraries/server_synchronize.lib.php:1343 #: libraries/server_synchronize.lib.php:1369 msgid "Current server" msgstr "" -#: libraries/messages.inc.php:206 main.php:159 +#: libraries/messages.inc.php:202 main.php:159 msgid "Custom color" msgstr "" -#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:365 +#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:365 msgid "Cyrillic" msgstr "" -#: libraries/messages.inc.php:208 libraries/mysql_charsets.lib.php:232 +#: libraries/messages.inc.php:204 libraries/mysql_charsets.lib.php:232 msgid "Czech" msgstr "" -#: libraries/messages.inc.php:209 libraries/mysql_charsets.lib.php:383 +#: libraries/messages.inc.php:205 libraries/mysql_charsets.lib.php:383 msgid "Czech-Slovak" msgstr "" -#: libraries/messages.inc.php:211 libraries/mysql_charsets.lib.php:235 +#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:235 msgid "Danish" msgstr "" -#: libraries/messages.inc.php:214 +#: libraries/messages.inc.php:210 msgid "Database export options" msgstr "" -#: libraries/messages.inc.php:217 server_synchronize.php:122 +#: libraries/messages.inc.php:213 server_synchronize.php:122 #: server_synchronize.php:125 tbl_create.php:82 tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "" -#: libraries/messages.inc.php:219 server_databases.php:63 +#: libraries/messages.inc.php:215 server_databases.php:63 #, php-format msgid "%s databases have been dropped successfully." msgstr "%s डाटाबेस को सफलता से डिलीट कर दिया गया।" -#: libraries/messages.inc.php:220 libraries/server_synchronize.lib.php:1341 +#: libraries/messages.inc.php:216 libraries/server_synchronize.lib.php:1341 #: server_synchronize.php:1110 msgid "Source database" msgstr "" -#: libraries/messages.inc.php:221 server_databases.php:88 +#: libraries/messages.inc.php:217 server_databases.php:88 msgid "Databases statistics" msgstr " डाटाबेसों के आँकडे" -#: libraries/messages.inc.php:222 server_databases.php:362 +#: libraries/messages.inc.php:218 server_databases.php:362 #: server_databases.php:363 msgid "Disable Statistics" msgstr "आँकडे Disable करें" -#: libraries/messages.inc.php:223 server_databases.php:358 +#: libraries/messages.inc.php:219 server_databases.php:358 #: server_databases.php:359 msgid "Enable Statistics" msgstr "आँकडे Enable करें" -#: libraries/messages.inc.php:224 server_databases.php:366 +#: libraries/messages.inc.php:220 server_databases.php:366 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -3463,209 +3463,209 @@ msgstr "" " नोट: यहां डाटाबेस के आँकडे Enable करने से webserver और MySQL के बीच में ट्रेफिक बडने की " "संभावना है। " -#: libraries/messages.inc.php:225 libraries/server_synchronize.lib.php:1367 +#: libraries/messages.inc.php:221 libraries/server_synchronize.lib.php:1367 #: server_synchronize.php:1112 msgid "Target database" msgstr "" -#: libraries/messages.inc.php:228 server_synchronize.php:425 +#: libraries/messages.inc.php:224 server_synchronize.php:425 #: server_synchronize.php:868 msgid "Data Difference" msgstr "" -#: libraries/messages.inc.php:231 server_synchronize.php:272 +#: libraries/messages.inc.php:227 server_synchronize.php:272 msgid "Data Synchronization" msgstr "" -#: libraries/messages.inc.php:235 server_privileges.php:526 +#: libraries/messages.inc.php:231 server_privileges.php:526 #: server_privileges.php:1679 msgid "Database-specific privileges" msgstr " केवल डाटाबेस के प्रिविलेज" -#: libraries/messages.inc.php:237 server_privileges.php:2136 +#: libraries/messages.inc.php:233 server_privileges.php:2136 msgid "database-specific" msgstr "" -#: libraries/messages.inc.php:240 libraries/tbl_properties.inc.php:106 +#: libraries/messages.inc.php:236 libraries/tbl_properties.inc.php:106 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" msgstr "" -#: libraries/messages.inc.php:241 tbl_operations.php:589 +#: libraries/messages.inc.php:237 tbl_operations.php:589 msgid "Defragment table" msgstr "" -#: libraries/messages.inc.php:242 +#: libraries/messages.inc.php:238 msgid "Use delayed inserts" msgstr "" -#: libraries/messages.inc.php:245 server_privileges.php:1243 +#: libraries/messages.inc.php:241 server_privileges.php:1243 msgid "No users selected for deleting!" msgstr "" -#: libraries/messages.inc.php:246 pmd_general.php:372 +#: libraries/messages.inc.php:242 pmd_general.php:372 msgid "Delete relation" msgstr "" -#: libraries/messages.inc.php:248 server_privileges.php:1232 +#: libraries/messages.inc.php:244 server_privileges.php:1232 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/messages.inc.php:249 libraries/sql_query_form.lib.php:388 +#: libraries/messages.inc.php:245 libraries/sql_query_form.lib.php:388 msgid "Delimiter" msgstr "" -#: libraries/messages.inc.php:250 pdf_pages.php:506 +#: libraries/messages.inc.php:246 pdf_pages.php:506 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" msgstr "" -#: libraries/messages.inc.php:254 pmd_help.php:29 +#: libraries/messages.inc.php:250 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." msgstr "" -#: libraries/messages.inc.php:256 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:252 libraries/mysql_charsets.lib.php:247 msgid "dictionary" msgstr "शब्दकोश" -#: libraries/messages.inc.php:257 libraries/server_synchronize.lib.php:1348 +#: libraries/messages.inc.php:253 libraries/server_synchronize.lib.php:1348 msgid "Difference" msgstr "" -#: libraries/messages.inc.php:258 pmd_general.php:87 +#: libraries/messages.inc.php:254 pmd_general.php:87 msgid "Direct links" msgstr "" -#: libraries/messages.inc.php:261 +#: libraries/messages.inc.php:257 msgid "Disable foreign key checks" msgstr "" -#: libraries/messages.inc.php:262 +#: libraries/messages.inc.php:258 msgid "Display Features" msgstr "फीचरस दिखाओ" -#: libraries/messages.inc.php:263 tbl_select.php:301 +#: libraries/messages.inc.php:259 tbl_select.php:301 msgid "Display order:" msgstr "क्रम से दिखाओ:" -#: libraries/messages.inc.php:265 tbl_select.php:132 +#: libraries/messages.inc.php:261 tbl_select.php:132 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "" -#: libraries/messages.inc.php:266 +#: libraries/messages.inc.php:262 msgid "DocSQL" msgstr "" -#: libraries/messages.inc.php:268 +#: libraries/messages.inc.php:264 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/messages.inc.php:273 server_privileges.php:1579 +#: libraries/messages.inc.php:269 server_privileges.php:1579 #: server_privileges.php:1580 server_privileges.php:1581 msgid "Drop the databases that have the same names as the users." msgstr "Drop the databases that have the same names as the users." -#: libraries/messages.inc.php:278 tbl_printview.php:382 tbl_structure.php:743 +#: libraries/messages.inc.php:274 tbl_printview.php:382 tbl_structure.php:743 msgid "dynamic" msgstr "" -#: libraries/messages.inc.php:282 server_privileges.php:1324 +#: libraries/messages.inc.php:278 server_privileges.php:1324 #: server_privileges.php:1610 msgid "Edit Privileges" msgstr " प्रिविलेज एडिट करें" -#: libraries/messages.inc.php:283 tbl_printview.php:341 tbl_structure.php:688 +#: libraries/messages.inc.php:279 tbl_printview.php:341 tbl_structure.php:688 msgid "Effective" msgstr " वास्तविक" -#: libraries/messages.inc.php:286 libraries/relation.lib.php:100 +#: libraries/messages.inc.php:282 libraries/relation.lib.php:100 msgid "Enabled" msgstr "" -#: libraries/messages.inc.php:287 +#: libraries/messages.inc.php:283 msgid "Enclose export in a transaction" msgstr "" -#: libraries/messages.inc.php:288 libraries/sqlparser.lib.php:177 +#: libraries/messages.inc.php:284 libraries/sqlparser.lib.php:177 msgid "END CUT" msgstr "" -#: libraries/messages.inc.php:290 libraries/sqlparser.lib.php:183 +#: libraries/messages.inc.php:286 libraries/sqlparser.lib.php:183 msgid "END RAW" msgstr "" -#: libraries/messages.inc.php:293 libraries/server_links.inc.php:61 +#: libraries/messages.inc.php:289 libraries/server_links.inc.php:61 #: test/theme.php:113 msgid "Engines" msgstr "" -#: libraries/messages.inc.php:295 libraries/mysql_charsets.lib.php:238 +#: libraries/messages.inc.php:291 libraries/mysql_charsets.lib.php:238 msgid "English" msgstr "अंग्रेजी" -#: libraries/messages.inc.php:296 server_privileges.php:393 +#: libraries/messages.inc.php:292 server_privileges.php:393 #: server_privileges.php:535 server_privileges.php:1501 msgid " Note: MySQL privilege names are expressed in English " msgstr " नोट: MySQL प्रिविलेज नामों को अंग्रेजी मे लिखा गया है " -#: libraries/messages.inc.php:298 libraries/zip_extension.lib.php:49 +#: libraries/messages.inc.php:294 libraries/zip_extension.lib.php:49 #: libraries/zip_extension.lib.php:51 libraries/zip_extension.lib.php:66 msgid "Error in ZIP archive:" msgstr "" -#: libraries/messages.inc.php:303 libraries/mysql_charsets.lib.php:241 +#: libraries/messages.inc.php:299 libraries/mysql_charsets.lib.php:241 msgid "Esperanto" msgstr "" -#: libraries/messages.inc.php:304 libraries/mysql_charsets.lib.php:244 +#: libraries/messages.inc.php:300 libraries/mysql_charsets.lib.php:244 msgid "Estonian" msgstr "" -#: libraries/messages.inc.php:305 libraries/tbl_triggers.lib.php:29 +#: libraries/messages.inc.php:301 libraries/tbl_triggers.lib.php:29 msgid "Event" msgstr "" -#: libraries/messages.inc.php:307 +#: libraries/messages.inc.php:303 msgid "Excel edition" msgstr "" -#: libraries/messages.inc.php:311 pmd_pdf.php:85 +#: libraries/messages.inc.php:307 pmd_pdf.php:85 msgid "Export/Import to scale" msgstr "" -#: libraries/messages.inc.php:313 +#: libraries/messages.inc.php:309 msgid "Extended inserts" msgstr "विस्तृत इनसर्टस" -#: libraries/messages.inc.php:314 pdf_schema.php:1267 pdf_schema.php:1288 +#: libraries/messages.inc.php:310 pdf_schema.php:1267 pdf_schema.php:1288 #: tbl_printview.php:147 tbl_structure.php:183 tbl_tracking.php:278 msgid "Extra" msgstr " अतिरिक्त" -#: libraries/messages.inc.php:316 server_status.php:447 +#: libraries/messages.inc.php:312 server_status.php:447 msgid "Failed attempts" msgstr "" -#: libraries/messages.inc.php:318 tbl_structure.php:375 +#: libraries/messages.inc.php:314 tbl_structure.php:375 #, php-format msgid "Field %s has been dropped" msgstr " फील्ड %s ड्रोप कर दिया" -#: libraries/messages.inc.php:322 libraries/sql_query_form.lib.php:317 +#: libraries/messages.inc.php:318 libraries/sql_query_form.lib.php:317 msgid "Fields" msgstr " फील्डस" -#: libraries/messages.inc.php:332 server_binlog.php:136 +#: libraries/messages.inc.php:328 server_binlog.php:136 msgid "Files" msgstr "" -#: libraries/messages.inc.php:334 server_privileges.php:1597 +#: libraries/messages.inc.php:330 server_privileges.php:1597 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -3674,217 +3674,217 @@ msgid "" "sreload the privileges%s before you continue." msgstr "" -#: libraries/messages.inc.php:335 server_status.php:289 +#: libraries/messages.inc.php:331 server_status.php:289 msgid "Flush query cache" msgstr "" -#: libraries/messages.inc.php:336 +#: libraries/messages.inc.php:332 msgid "Flush the table (\"FLUSH\")" msgstr " टेबल को Flush करें (\"FLUSH\")" -#: libraries/messages.inc.php:337 server_status.php:271 +#: libraries/messages.inc.php:333 server_status.php:271 msgid "Flush (close) all tables" msgstr "" -#: libraries/messages.inc.php:339 tbl_relation.php:279 +#: libraries/messages.inc.php:335 tbl_relation.php:279 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" -#: libraries/messages.inc.php:341 setup/lib/messages.inc.php:88 +#: libraries/messages.inc.php:337 setup/lib/messages.inc.php:88 #: tbl_printview.php:376 tbl_structure.php:738 msgid "Format" msgstr "" -#: libraries/messages.inc.php:344 server_replication.php:325 +#: libraries/messages.inc.php:340 server_replication.php:325 msgid "Full start" msgstr "" -#: libraries/messages.inc.php:345 server_replication.php:325 +#: libraries/messages.inc.php:341 server_replication.php:325 msgid "Full stop" msgstr "" -#: libraries/messages.inc.php:347 tbl_change.php:282 tbl_change.php:320 +#: libraries/messages.inc.php:343 tbl_change.php:282 tbl_change.php:320 msgid "Function" msgstr "" -#: libraries/messages.inc.php:355 libraries/mysql_charsets.lib.php:377 +#: libraries/messages.inc.php:351 libraries/mysql_charsets.lib.php:377 msgid "Georgian" msgstr "" -#: libraries/messages.inc.php:356 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:352 libraries/mysql_charsets.lib.php:247 #: libraries/mysql_charsets.lib.php:250 msgid "German" msgstr "जर्मन" -#: libraries/messages.inc.php:357 themes.php:42 +#: libraries/messages.inc.php:353 themes.php:42 msgid "Get more themes!" msgstr "" -#: libraries/messages.inc.php:358 server_privileges.php:2134 +#: libraries/messages.inc.php:354 server_privileges.php:2134 msgid "global" msgstr "" -#: libraries/messages.inc.php:359 server_privileges.php:524 +#: libraries/messages.inc.php:355 server_privileges.php:524 #: server_privileges.php:1500 msgid "Global privileges" msgstr "" -#: libraries/messages.inc.php:360 server_variables.php:55 +#: libraries/messages.inc.php:356 server_variables.php:55 #: server_variables.php:89 msgid "Global value" msgstr "" -#: libraries/messages.inc.php:365 server_privileges.php:1502 +#: libraries/messages.inc.php:361 server_privileges.php:1502 #: server_privileges.php:1684 server_privileges.php:2033 msgid "Grant" msgstr "" -#: libraries/messages.inc.php:366 libraries/mysql_charsets.lib.php:380 +#: libraries/messages.inc.php:362 libraries/mysql_charsets.lib.php:380 msgid "Greek" msgstr " ग्रीक" -#: libraries/messages.inc.php:367 +#: libraries/messages.inc.php:363 msgid "\"gzipped\"" msgstr "" -#: libraries/messages.inc.php:369 server_status.php:250 +#: libraries/messages.inc.php:365 server_status.php:250 msgid "Handler" msgstr "" -#: libraries/messages.inc.php:370 server_synchronize.php:464 +#: libraries/messages.inc.php:366 server_synchronize.php:464 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: libraries/messages.inc.php:372 libraries/mysql_charsets.lib.php:374 +#: libraries/messages.inc.php:368 libraries/mysql_charsets.lib.php:374 msgid "Hebrew" msgstr "" -#: libraries/messages.inc.php:373 pmd_general.php:83 +#: libraries/messages.inc.php:369 pmd_general.php:83 msgid "Help" msgstr "" -#: libraries/messages.inc.php:374 +#: libraries/messages.inc.php:370 msgid "Use hexadecimal for BLOB" msgstr "" -#: libraries/messages.inc.php:376 pmd_general.php:120 +#: libraries/messages.inc.php:372 pmd_general.php:120 msgid "Hide/Show all" msgstr "" -#: libraries/messages.inc.php:377 pmd_general.php:124 +#: libraries/messages.inc.php:373 pmd_general.php:124 msgid "Hide/Show Tables with no relation" msgstr "" -#: libraries/messages.inc.php:378 libraries/navigation_header.inc.php:54 +#: libraries/messages.inc.php:374 libraries/navigation_header.inc.php:54 #: libraries/navigation_header.inc.php:57 #: libraries/navigation_header.inc.php:58 msgid "Home" msgstr "होम" -#: libraries/messages.inc.php:379 main.php:233 +#: libraries/messages.inc.php:375 main.php:233 msgid "Official Homepage" msgstr "phpMyAdmin का आधिकारिक होमपेज" -#: libraries/messages.inc.php:382 libraries/replication_gui.lib.php:327 +#: libraries/messages.inc.php:378 libraries/replication_gui.lib.php:327 #: server_privileges.php:753 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/messages.inc.php:383 +#: libraries/messages.inc.php:379 msgid "Microsoft Word 2000" msgstr "" -#: libraries/messages.inc.php:384 libraries/mysql_charsets.lib.php:253 +#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:253 msgid "Hungarian" msgstr "" -#: libraries/messages.inc.php:386 libraries/mysql_charsets.lib.php:256 +#: libraries/messages.inc.php:382 libraries/mysql_charsets.lib.php:256 msgid "Icelandic" msgstr "" -#: libraries/messages.inc.php:387 server_processlist.php:53 +#: libraries/messages.inc.php:383 server_processlist.php:53 msgid "ID" msgstr "" -#: libraries/messages.inc.php:388 libraries/mult_submits.inc.php:108 +#: libraries/messages.inc.php:384 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:479 msgid "Fulltext" msgstr "" -#: libraries/messages.inc.php:389 +#: libraries/messages.inc.php:385 msgid "Ignore duplicate rows" msgstr "" -#: libraries/messages.inc.php:390 tbl_change.php:302 tbl_indexes.php:200 +#: libraries/messages.inc.php:386 tbl_change.php:302 tbl_indexes.php:200 #: tbl_indexes.php:225 msgid "Ignore" msgstr "" -#: libraries/messages.inc.php:391 +#: libraries/messages.inc.php:387 msgid "Use ignore inserts" msgstr "" -#: libraries/messages.inc.php:392 +#: libraries/messages.inc.php:388 msgid "Column names in first row" msgstr "" -#: libraries/messages.inc.php:393 +#: libraries/messages.inc.php:389 msgid "Do not import empty rows" msgstr "" -#: libraries/messages.inc.php:394 pmd_general.php:104 +#: libraries/messages.inc.php:390 pmd_general.php:104 msgid "Import/Export coordinates for PDF schema" msgstr "" -#: libraries/messages.inc.php:395 querywindow.php:104 +#: libraries/messages.inc.php:391 querywindow.php:104 msgid "Import files" msgstr "" -#: libraries/messages.inc.php:403 +#: libraries/messages.inc.php:399 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/messages.inc.php:404 libraries/messages.inc.php:584 +#: libraries/messages.inc.php:400 libraries/messages.inc.php:580 msgid "Open Document Spreadsheet" msgstr "" -#: libraries/messages.inc.php:405 +#: libraries/messages.inc.php:401 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/messages.inc.php:409 +#: libraries/messages.inc.php:405 msgid "Excel 97-2003 XLS Workbook" msgstr "" -#: libraries/messages.inc.php:410 +#: libraries/messages.inc.php:406 msgid "Excel 2007 XLSX Workbook" msgstr "" -#: libraries/messages.inc.php:414 libraries/mult_submits.inc.php:98 +#: libraries/messages.inc.php:410 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:476 tbl_structure.php:674 msgid "Index" msgstr "" -#: libraries/messages.inc.php:415 tbl_indexes.php:168 +#: libraries/messages.inc.php:411 tbl_indexes.php:168 msgid "Index name:" msgstr "" -#: libraries/messages.inc.php:416 tbl_indexes.php:174 +#: libraries/messages.inc.php:412 tbl_indexes.php:174 msgid "Index type:" msgstr "" -#: libraries/messages.inc.php:417 sql.php:639 +#: libraries/messages.inc.php:413 sql.php:639 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: libraries/messages.inc.php:427 main.php:266 +#: libraries/messages.inc.php:423 main.php:266 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -3892,194 +3892,194 @@ msgid "" "this security hole by setting a password for user 'root'." msgstr "" -#: libraries/messages.inc.php:428 tbl_change.php:1130 +#: libraries/messages.inc.php:424 tbl_change.php:1130 msgid "Insert as new row" msgstr "इसको नया रौ में जोडे " -#: libraries/messages.inc.php:429 sql.php:496 tbl_replace.php:386 +#: libraries/messages.inc.php:425 sql.php:496 tbl_replace.php:386 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: libraries/messages.inc.php:430 tbl_change.php:1131 +#: libraries/messages.inc.php:426 tbl_change.php:1131 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/messages.inc.php:432 main.php:139 +#: libraries/messages.inc.php:428 main.php:139 msgid "Interface" msgstr "" -#: libraries/messages.inc.php:433 tbl_relation.php:407 +#: libraries/messages.inc.php:429 tbl_relation.php:407 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: libraries/messages.inc.php:435 pdf_pages.php:303 +#: libraries/messages.inc.php:431 pdf_pages.php:303 msgid "Internal relations" msgstr "" -#: libraries/messages.inc.php:438 tbl_indexes.php:256 tbl_structure.php:590 +#: libraries/messages.inc.php:434 tbl_indexes.php:256 tbl_structure.php:590 #: tbl_structure.php:601 msgid "Column count has to be larger than zero." msgstr "" -#: libraries/messages.inc.php:444 libraries/tbl_properties.inc.php:784 +#: libraries/messages.inc.php:440 libraries/tbl_properties.inc.php:784 #: tbl_structure.php:537 msgid "You have to add at least one field." msgstr "" -#: libraries/messages.inc.php:449 +#: libraries/messages.inc.php:445 #, php-format msgid "Invalid server index: \"%s\"" msgstr "" -#: libraries/messages.inc.php:452 libraries/mysql_charsets.lib.php:259 +#: libraries/messages.inc.php:448 libraries/mysql_charsets.lib.php:259 #: libraries/mysql_charsets.lib.php:349 msgid "Japanese" msgstr "जापानी" -#: libraries/messages.inc.php:453 main.php:331 +#: libraries/messages.inc.php:449 main.php:331 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: libraries/messages.inc.php:454 server_status.php:257 +#: libraries/messages.inc.php:450 server_status.php:257 msgid "Joins" msgstr "" -#: libraries/messages.inc.php:457 server_privileges.php:763 +#: libraries/messages.inc.php:453 server_privileges.php:763 msgid "Do not change the password" msgstr "पासवर्ड मत बदलिये" -#: libraries/messages.inc.php:458 server_status.php:256 +#: libraries/messages.inc.php:454 server_status.php:256 msgid "Key cache" msgstr "" -#: libraries/messages.inc.php:462 libraries/mysql_charsets.lib.php:268 +#: libraries/messages.inc.php:458 libraries/mysql_charsets.lib.php:268 #: libraries/mysql_charsets.lib.php:371 msgid "Korean" msgstr "कोरियन" -#: libraries/messages.inc.php:466 libraries/select_lang.lib.php:480 +#: libraries/messages.inc.php:462 libraries/select_lang.lib.php:480 #: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492 #, php-format msgid "Unknown language: %1$s." msgstr "" -#: libraries/messages.inc.php:468 +#: libraries/messages.inc.php:464 msgid "Table caption" msgstr "" -#: libraries/messages.inc.php:469 +#: libraries/messages.inc.php:465 msgid "Content of table __TABLE__" msgstr "" -#: libraries/messages.inc.php:470 +#: libraries/messages.inc.php:466 msgid "Continued table caption" msgstr "" -#: libraries/messages.inc.php:471 +#: libraries/messages.inc.php:467 msgid "(continued)" msgstr "" -#: libraries/messages.inc.php:472 +#: libraries/messages.inc.php:468 msgid "Include table caption" msgstr "" -#: libraries/messages.inc.php:473 +#: libraries/messages.inc.php:469 msgid "Label key" msgstr "" -#: libraries/messages.inc.php:474 +#: libraries/messages.inc.php:470 msgid "LaTeX" msgstr "" -#: libraries/messages.inc.php:475 +#: libraries/messages.inc.php:471 msgid "Structure of table __TABLE__" msgstr "" -#: libraries/messages.inc.php:476 libraries/mysql_charsets.lib.php:262 +#: libraries/messages.inc.php:472 libraries/mysql_charsets.lib.php:262 msgid "Latvian" msgstr "" -#: libraries/messages.inc.php:477 +#: libraries/messages.inc.php:473 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/messages.inc.php:478 +#: libraries/messages.inc.php:474 msgid "Use LOCAL keyword" msgstr "" -#: libraries/messages.inc.php:479 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:475 libraries/tbl_properties.inc.php:105 msgid "Length/Values" msgstr "लंबाई/अर्थ*" -#: libraries/messages.inc.php:480 tbl_select.php:295 +#: libraries/messages.inc.php:476 tbl_select.php:295 msgid "Number of rows per page" msgstr "प्रति पृष्ट कितने रौ" -#: libraries/messages.inc.php:484 libraries/mysql_charsets.lib.php:265 +#: libraries/messages.inc.php:480 libraries/mysql_charsets.lib.php:265 msgid "Lithuanian" msgstr "" -#: libraries/messages.inc.php:485 libraries/replication_gui.lib.php:302 +#: libraries/messages.inc.php:481 libraries/replication_gui.lib.php:302 #: server_privileges.php:729 msgid "Local" msgstr "Local" -#: libraries/messages.inc.php:487 server_privileges.php:669 +#: libraries/messages.inc.php:483 server_privileges.php:669 msgid "Login Information" msgstr "" -#: libraries/messages.inc.php:490 libraries/navigation_header.inc.php:67 +#: libraries/messages.inc.php:486 libraries/navigation_header.inc.php:67 #: libraries/navigation_header.inc.php:70 #: libraries/navigation_header.inc.php:71 main.php:99 msgid "Log out" msgstr "लोग औट" -#: libraries/messages.inc.php:497 server_status.php:440 +#: libraries/messages.inc.php:493 server_status.php:440 msgid "max. concurrent connections" msgstr "" -#: libraries/messages.inc.php:498 +#: libraries/messages.inc.php:494 msgid "Maximal length of created query" msgstr "" -#: libraries/messages.inc.php:500 main.php:282 +#: libraries/messages.inc.php:496 main.php:282 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " "split strings correctly and it may result in unexpected results." msgstr "" -#: libraries/messages.inc.php:501 main.php:274 +#: libraries/messages.inc.php:497 main.php:274 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " "corrupted!" msgstr "" -#: libraries/messages.inc.php:502 +#: libraries/messages.inc.php:498 msgid "MediaWiki Table" msgstr "" -#: libraries/messages.inc.php:503 transformation_overview.php:25 +#: libraries/messages.inc.php:499 transformation_overview.php:25 msgid "Available MIME types" msgstr "" -#: libraries/messages.inc.php:504 transformation_overview.php:43 +#: libraries/messages.inc.php:500 transformation_overview.php:43 msgid "Available transformations" msgstr "" -#: libraries/messages.inc.php:505 +#: libraries/messages.inc.php:501 msgctxt "$strMIME_description" msgid "Description" msgstr "" -#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:580 +#: libraries/messages.inc.php:503 libraries/tbl_properties.inc.php:580 #: transformation_overview.php:60 #, php-format msgid "" @@ -4087,14 +4087,14 @@ msgid "" "author what %s does." msgstr "" -#: libraries/messages.inc.php:509 libraries/tbl_properties.inc.php:137 +#: libraries/messages.inc.php:505 libraries/tbl_properties.inc.php:137 #, php-format msgid "" "For a list of available transformation options and their MIME type " "transformations, click on %stransformation descriptions%s" msgstr "" -#: libraries/messages.inc.php:510 libraries/tbl_properties.inc.php:146 +#: libraries/messages.inc.php:506 libraries/tbl_properties.inc.php:146 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -4102,398 +4102,398 @@ msgid "" "'\\\\xyz' or 'a\\'b')." msgstr "" -#: libraries/messages.inc.php:511 libraries/tbl_properties.inc.php:145 +#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:145 msgid "Transformation options" msgstr "" -#: libraries/messages.inc.php:513 transformation_overview.php:38 +#: libraries/messages.inc.php:509 transformation_overview.php:38 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "" -#: libraries/messages.inc.php:515 tbl_indexes.php:162 +#: libraries/messages.inc.php:511 tbl_indexes.php:162 msgid "Modify an index" msgstr "" -#: libraries/messages.inc.php:517 pmd_general.php:108 +#: libraries/messages.inc.php:513 pmd_general.php:108 msgid "Move Menu" msgstr "" -#: libraries/messages.inc.php:518 tbl_operations.php:276 +#: libraries/messages.inc.php:514 tbl_operations.php:276 msgid "Move table to (database.table):" msgstr " टेबल को (database.table) में मूव करें:" -#: libraries/messages.inc.php:519 tbl_move_copy.php:56 +#: libraries/messages.inc.php:515 tbl_move_copy.php:56 #, php-format msgid "Table %s has been moved to %s." msgstr " %s टेबल को %s में मूव कर दिया." -#: libraries/messages.inc.php:520 tbl_move_copy.php:46 +#: libraries/messages.inc.php:516 tbl_move_copy.php:46 msgid "Can't move table to same one!" msgstr "" -#: libraries/messages.inc.php:521 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:517 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 #: libraries/mysql_charsets.lib.php:332 libraries/mysql_charsets.lib.php:354 #: libraries/mysql_charsets.lib.php:365 msgid "multilingual" msgstr "" -#: libraries/messages.inc.php:534 main.php:193 +#: libraries/messages.inc.php:530 main.php:193 msgid "MySQL charset" msgstr "" -#: libraries/messages.inc.php:535 main.php:211 +#: libraries/messages.inc.php:531 main.php:211 msgid "MySQL client version" msgstr "" -#: libraries/messages.inc.php:536 main.php:125 +#: libraries/messages.inc.php:532 main.php:125 msgid "MySQL connection collation" msgstr "" -#: libraries/messages.inc.php:537 main.php:346 +#: libraries/messages.inc.php:533 main.php:346 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: libraries/messages.inc.php:539 server_status.php:294 +#: libraries/messages.inc.php:535 server_status.php:294 msgid "Show processes" msgstr "प्रोसेस दिखाओ" -#: libraries/messages.inc.php:545 navigation.php:210 server_databases.php:371 +#: libraries/messages.inc.php:541 navigation.php:210 server_databases.php:371 #: server_synchronize.php:1191 msgid "No databases" msgstr "कोइ डाटाबेस नहिं" -#: libraries/messages.inc.php:546 server_databases.php:52 +#: libraries/messages.inc.php:542 server_databases.php:52 msgid "No databases selected." msgstr " कोइ डाटाबेस नहीं चुना गया है।" -#: libraries/messages.inc.php:548 libraries/relation.lib.php:1173 +#: libraries/messages.inc.php:544 libraries/relation.lib.php:1173 msgid "no description" msgstr "" -#: libraries/messages.inc.php:552 libraries/zip_extension.lib.php:26 +#: libraries/messages.inc.php:548 libraries/zip_extension.lib.php:26 msgid "No files found inside ZIP archive!" msgstr "" -#: libraries/messages.inc.php:555 tbl_indexes.php:91 +#: libraries/messages.inc.php:551 tbl_indexes.php:91 msgid "No index parts defined!" msgstr "" -#: libraries/messages.inc.php:556 libraries/mult_submits.inc.php:435 +#: libraries/messages.inc.php:552 libraries/mult_submits.inc.php:435 #: tbl_replace.php:331 msgid "No change" msgstr "कोइ बदलाव नहीं" -#: libraries/messages.inc.php:557 +#: libraries/messages.inc.php:553 msgctxt "$strNoneDefault" msgid "None" msgstr "" -#: libraries/messages.inc.php:560 libraries/plugin_interface.lib.php:312 +#: libraries/messages.inc.php:556 libraries/plugin_interface.lib.php:312 msgid "This format has no options" msgstr "" -#: libraries/messages.inc.php:565 user_password.php:54 +#: libraries/messages.inc.php:561 user_password.php:54 msgid "You don't have sufficient privileges to be here right now!" msgstr "" -#: libraries/messages.inc.php:566 tbl_row_action.php:29 +#: libraries/messages.inc.php:562 tbl_row_action.php:29 msgid "No rows selected" msgstr "" -#: libraries/messages.inc.php:569 themes.php:32 +#: libraries/messages.inc.php:565 themes.php:32 #, php-format msgid "" "No themes support; please check your configuration and/or your themes in " "directory %s." msgstr "" -#: libraries/messages.inc.php:571 libraries/relation.lib.php:95 +#: libraries/messages.inc.php:567 libraries/relation.lib.php:95 msgid "not OK" msgstr "" -#: libraries/messages.inc.php:572 server_synchronize.php:400 +#: libraries/messages.inc.php:568 server_synchronize.php:400 #: server_synchronize.php:839 msgid "not present" msgstr "" -#: libraries/messages.inc.php:573 pdf_pages.php:36 pdf_pages.php:42 +#: libraries/messages.inc.php:569 pdf_pages.php:36 pdf_pages.php:42 #: pdf_pages.php:48 pdf_pages.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "" -#: libraries/messages.inc.php:574 server_privileges.php:804 +#: libraries/messages.inc.php:570 server_privileges.php:804 #: server_privileges.php:2166 msgid "No user(s) found." msgstr "कोई यूसर नहीं।" -#: libraries/messages.inc.php:578 pmd_general.php:164 +#: libraries/messages.inc.php:574 pmd_general.php:164 msgid "Number of tables" msgstr "" -#: libraries/messages.inc.php:581 server_databases.php:117 +#: libraries/messages.inc.php:577 server_databases.php:117 #: server_status.php:260 setup/lib/messages.inc.php:117 msgid "Tables" msgstr "" -#: libraries/messages.inc.php:583 libraries/relation.lib.php:99 +#: libraries/messages.inc.php:579 libraries/relation.lib.php:99 #: pmd_general.php:340 msgid "OK" msgstr "" -#: libraries/messages.inc.php:585 +#: libraries/messages.inc.php:581 msgid "Open Document Text" msgstr "" -#: libraries/messages.inc.php:588 tbl_select.php:138 +#: libraries/messages.inc.php:584 tbl_select.php:138 msgid "Operator" msgstr "" -#: libraries/messages.inc.php:589 tbl_operations.php:662 +#: libraries/messages.inc.php:585 tbl_operations.php:662 msgid "Optimize" msgstr "" -#: libraries/messages.inc.php:602 libraries/tbl_properties.inc.php:755 +#: libraries/messages.inc.php:598 libraries/tbl_properties.inc.php:755 msgid "PARTITION definition" msgstr "" -#: libraries/messages.inc.php:603 tbl_structure.php:757 +#: libraries/messages.inc.php:599 tbl_structure.php:757 msgid "partitioned" msgstr "" -#: libraries/messages.inc.php:604 tbl_operations.php:649 +#: libraries/messages.inc.php:600 tbl_operations.php:649 msgid "Partition maintenance" msgstr "" -#: libraries/messages.inc.php:605 tbl_operations.php:657 +#: libraries/messages.inc.php:601 tbl_operations.php:657 #, php-format msgid "Partition %s" msgstr "" -#: libraries/messages.inc.php:606 server_privileges.php:1212 +#: libraries/messages.inc.php:602 server_privileges.php:1212 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/messages.inc.php:635 +#: libraries/messages.inc.php:631 #, php-format msgid "Schema of the \"%s\" database - Page %s" msgstr "" -#: libraries/messages.inc.php:636 +#: libraries/messages.inc.php:632 #, php-format msgid "The \"%s\" table doesn't exist!" msgstr "" -#: libraries/messages.inc.php:637 pdf_schema.php:1013 +#: libraries/messages.inc.php:633 pdf_schema.php:1013 msgid "No tables" msgstr " कोई टेबल नहीं" -#: libraries/messages.inc.php:638 pmd_pdf.php:63 +#: libraries/messages.inc.php:634 pmd_pdf.php:63 msgid "Page has been created" msgstr "" -#: libraries/messages.inc.php:639 pmd_pdf.php:65 +#: libraries/messages.inc.php:635 pmd_pdf.php:65 msgid "Page creation failed" msgstr "" -#: libraries/messages.inc.php:640 +#: libraries/messages.inc.php:636 msgid "PDF" msgstr "" -#: libraries/messages.inc.php:641 +#: libraries/messages.inc.php:637 msgid "(Generates a report containing the data of a single table)" msgstr "" -#: libraries/messages.inc.php:642 +#: libraries/messages.inc.php:638 msgid "Report title" msgstr "" -#: libraries/messages.inc.php:643 server_status.php:389 server_status.php:434 +#: libraries/messages.inc.php:639 server_status.php:389 server_status.php:434 #: server_status.php:497 server_status.php:555 msgid "per hour" msgstr "" -#: libraries/messages.inc.php:644 server_status.php:498 +#: libraries/messages.inc.php:640 server_status.php:498 msgid "per minute" msgstr "" -#: libraries/messages.inc.php:645 server_status.php:499 +#: libraries/messages.inc.php:641 server_status.php:499 msgid "per second" msgstr "" -#: libraries/messages.inc.php:646 libraries/mysql_charsets.lib.php:271 +#: libraries/messages.inc.php:642 libraries/mysql_charsets.lib.php:271 msgid "Persian" msgstr "" -#: libraries/messages.inc.php:647 libraries/mysql_charsets.lib.php:250 +#: libraries/messages.inc.php:643 libraries/mysql_charsets.lib.php:250 msgid "phone book" msgstr "" -#: libraries/messages.inc.php:648 +#: libraries/messages.inc.php:644 msgid "PHP array" msgstr "" -#: libraries/messages.inc.php:650 main.php:213 +#: libraries/messages.inc.php:646 main.php:213 msgid "PHP extension" msgstr "" -#: libraries/messages.inc.php:654 libraries/relation.lib.php:163 +#: libraries/messages.inc.php:650 libraries/relation.lib.php:163 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/messages.inc.php:655 libraries/relation.lib.php:159 +#: libraries/messages.inc.php:651 libraries/relation.lib.php:159 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/messages.inc.php:656 libraries/relation.lib.php:161 +#: libraries/messages.inc.php:652 libraries/relation.lib.php:161 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" -#: libraries/messages.inc.php:657 libraries/relation.lib.php:162 +#: libraries/messages.inc.php:653 libraries/relation.lib.php:162 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/messages.inc.php:658 libraries/relation.lib.php:164 +#: libraries/messages.inc.php:654 libraries/relation.lib.php:164 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/messages.inc.php:661 libraries/mysql_charsets.lib.php:274 +#: libraries/messages.inc.php:657 libraries/mysql_charsets.lib.php:274 msgid "Polish" msgstr "" -#: libraries/messages.inc.php:662 libraries/replication_gui.lib.php:67 +#: libraries/messages.inc.php:658 libraries/replication_gui.lib.php:67 #: server_synchronize.php:1163 msgid "Port" msgstr "" -#: libraries/messages.inc.php:667 tbl_indexes.php:67 +#: libraries/messages.inc.php:663 tbl_indexes.php:67 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "" -#: libraries/messages.inc.php:668 tbl_indexes.php:184 +#: libraries/messages.inc.php:664 tbl_indexes.php:184 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" -#: libraries/messages.inc.php:669 libraries/mult_submits.inc.php:76 +#: libraries/messages.inc.php:665 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:474 msgid "Primary" msgstr "" -#: libraries/messages.inc.php:673 server_privileges.php:227 +#: libraries/messages.inc.php:669 server_privileges.php:227 msgid "Includes all privileges except GRANT." msgstr "" -#: libraries/messages.inc.php:674 server_privileges.php:153 +#: libraries/messages.inc.php:670 server_privileges.php:153 #: server_privileges.php:476 msgid "Allows altering the structure of existing tables." msgstr "" -#: libraries/messages.inc.php:675 server_privileges.php:169 +#: libraries/messages.inc.php:671 server_privileges.php:169 #: server_privileges.php:482 msgid "Allows altering and dropping stored routines." msgstr "" -#: libraries/messages.inc.php:676 server_privileges.php:145 +#: libraries/messages.inc.php:672 server_privileges.php:145 #: server_privileges.php:475 msgid "Allows creating new databases and tables." msgstr "" -#: libraries/messages.inc.php:677 server_privileges.php:168 +#: libraries/messages.inc.php:673 server_privileges.php:168 #: server_privileges.php:481 msgid "Allows creating stored routines." msgstr "" -#: libraries/messages.inc.php:678 server_privileges.php:475 +#: libraries/messages.inc.php:674 server_privileges.php:475 msgid "Allows creating new tables." msgstr "" -#: libraries/messages.inc.php:679 server_privileges.php:156 +#: libraries/messages.inc.php:675 server_privileges.php:156 #: server_privileges.php:479 msgid "Allows creating temporary tables." msgstr "" -#: libraries/messages.inc.php:680 server_privileges.php:170 +#: libraries/messages.inc.php:676 server_privileges.php:170 #: server_privileges.php:515 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: libraries/messages.inc.php:681 server_privileges.php:160 +#: libraries/messages.inc.php:677 server_privileges.php:160 #: server_privileges.php:164 server_privileges.php:487 #: server_privileges.php:491 msgid "Allows creating new views." msgstr "" -#: libraries/messages.inc.php:682 server_privileges.php:144 +#: libraries/messages.inc.php:678 server_privileges.php:144 #: server_privileges.php:467 msgid "Allows deleting data." msgstr "" -#: libraries/messages.inc.php:683 server_privileges.php:146 +#: libraries/messages.inc.php:679 server_privileges.php:146 #: server_privileges.php:478 msgid "Allows dropping databases and tables." msgstr "" -#: libraries/messages.inc.php:684 server_privileges.php:478 +#: libraries/messages.inc.php:680 server_privileges.php:478 msgid "Allows dropping tables." msgstr "" -#: libraries/messages.inc.php:685 server_privileges.php:161 +#: libraries/messages.inc.php:681 server_privileges.php:161 #: server_privileges.php:495 msgid "Allows to set up events for the event scheduler" msgstr "" -#: libraries/messages.inc.php:686 server_privileges.php:171 +#: libraries/messages.inc.php:682 server_privileges.php:171 #: server_privileges.php:483 msgid "Allows executing stored routines." msgstr "" -#: libraries/messages.inc.php:687 server_privileges.php:150 +#: libraries/messages.inc.php:683 server_privileges.php:150 #: server_privileges.php:470 msgid "Allows importing data from and exporting data into files." msgstr "" -#: libraries/messages.inc.php:688 server_privileges.php:501 +#: libraries/messages.inc.php:684 server_privileges.php:501 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: libraries/messages.inc.php:689 server_privileges.php:152 +#: libraries/messages.inc.php:685 server_privileges.php:152 #: server_privileges.php:477 msgid "Allows creating and dropping indexes." msgstr "" -#: libraries/messages.inc.php:690 server_privileges.php:142 +#: libraries/messages.inc.php:686 server_privileges.php:142 #: server_privileges.php:403 server_privileges.php:465 msgid "Allows inserting and replacing data." msgstr "" -#: libraries/messages.inc.php:691 server_privileges.php:157 +#: libraries/messages.inc.php:687 server_privileges.php:157 #: server_privileges.php:510 msgid "Allows locking tables for the current thread." msgstr "" -#: libraries/messages.inc.php:692 server_privileges.php:607 +#: libraries/messages.inc.php:688 server_privileges.php:607 #: server_privileges.php:609 msgid "Limits the number of new connections the user may open per hour." msgstr "Limits the number of new connections the user may open per hour." -#: libraries/messages.inc.php:693 server_privileges.php:595 +#: libraries/messages.inc.php:689 server_privileges.php:595 #: server_privileges.php:597 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Limits the number of queries the user may send to the server per hour." -#: libraries/messages.inc.php:694 server_privileges.php:601 +#: libraries/messages.inc.php:690 server_privileges.php:601 #: server_privileges.php:603 msgid "" "Limits the number of commands that change any table or database the user may " @@ -4502,57 +4502,57 @@ msgstr "" "Limits the number of commands that change any table or database the user may " "execute per hour." -#: libraries/messages.inc.php:695 server_privileges.php:613 +#: libraries/messages.inc.php:691 server_privileges.php:613 #: server_privileges.php:615 msgid "Limits the number of simultaneous connections the user may have." msgstr "" -#: libraries/messages.inc.php:696 server_privileges.php:149 +#: libraries/messages.inc.php:692 server_privileges.php:149 #: server_privileges.php:505 msgid "Allows viewing processes of all users" msgstr "" -#: libraries/messages.inc.php:697 server_privileges.php:151 +#: libraries/messages.inc.php:693 server_privileges.php:151 #: server_privileges.php:409 server_privileges.php:511 msgid "Has no effect in this MySQL version." msgstr "" -#: libraries/messages.inc.php:698 server_privileges.php:147 +#: libraries/messages.inc.php:694 server_privileges.php:147 #: server_privileges.php:506 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: libraries/messages.inc.php:699 server_privileges.php:159 +#: libraries/messages.inc.php:695 server_privileges.php:159 #: server_privileges.php:513 msgid "Allows the user to ask where the slaves / masters are." msgstr "" -#: libraries/messages.inc.php:700 server_privileges.php:158 +#: libraries/messages.inc.php:696 server_privileges.php:158 #: server_privileges.php:514 msgid "Needed for the replication slaves." msgstr "" -#: libraries/messages.inc.php:701 server_privileges.php:141 +#: libraries/messages.inc.php:697 server_privileges.php:141 #: server_privileges.php:400 server_privileges.php:464 msgid "Allows reading data." msgstr "" -#: libraries/messages.inc.php:702 server_privileges.php:154 +#: libraries/messages.inc.php:698 server_privileges.php:154 #: server_privileges.php:508 msgid "Gives access to the complete list of databases." msgstr "" -#: libraries/messages.inc.php:703 server_privileges.php:165 +#: libraries/messages.inc.php:699 server_privileges.php:165 #: server_privileges.php:167 server_privileges.php:480 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: libraries/messages.inc.php:704 server_privileges.php:148 +#: libraries/messages.inc.php:700 server_privileges.php:148 #: server_privileges.php:507 msgid "Allows shutting down the server." msgstr "" -#: libraries/messages.inc.php:705 server_privileges.php:155 +#: libraries/messages.inc.php:701 server_privileges.php:155 #: server_privileges.php:504 msgid "" "Allows connecting, even if maximum number of connections is reached; " @@ -4560,55 +4560,55 @@ msgid "" "killing threads of other users." msgstr "" -#: libraries/messages.inc.php:706 server_privileges.php:162 +#: libraries/messages.inc.php:702 server_privileges.php:162 #: server_privileges.php:496 msgid "Allows creating and dropping triggers" msgstr "" -#: libraries/messages.inc.php:707 server_privileges.php:143 +#: libraries/messages.inc.php:703 server_privileges.php:143 #: server_privileges.php:406 server_privileges.php:466 msgid "Allows changing data." msgstr "" -#: libraries/messages.inc.php:708 server_privileges.php:221 +#: libraries/messages.inc.php:704 server_privileges.php:221 msgid "No privileges." msgstr "" -#: libraries/messages.inc.php:710 server_privileges.php:1296 +#: libraries/messages.inc.php:706 server_privileges.php:1296 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/messages.inc.php:712 libraries/server_links.inc.php:80 +#: libraries/messages.inc.php:708 libraries/server_links.inc.php:80 msgid "Processes" msgstr "" -#: libraries/messages.inc.php:714 main.php:187 +#: libraries/messages.inc.php:710 main.php:187 msgid "Protocol version" msgstr "" -#: libraries/messages.inc.php:715 +#: libraries/messages.inc.php:711 msgid "Put fields names in the first row" msgstr "" -#: libraries/messages.inc.php:720 server_synchronize.php:1003 +#: libraries/messages.inc.php:716 server_synchronize.php:1003 msgid "The following queries have been executed:" msgstr "" -#: libraries/messages.inc.php:721 server_status.php:251 +#: libraries/messages.inc.php:717 server_status.php:251 msgid "Query cache" msgstr "" -#: libraries/messages.inc.php:722 libraries/navigation_header.inc.php:80 +#: libraries/messages.inc.php:718 libraries/navigation_header.inc.php:80 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 setup/lib/messages.inc.php:122 msgid "Query window" msgstr "क्वरी पेज" -#: libraries/messages.inc.php:725 querywindow.php:109 querywindow.php:217 +#: libraries/messages.inc.php:721 querywindow.php:109 querywindow.php:217 msgid "SQL history" msgstr "SQL- इतिहास" -#: libraries/messages.inc.php:726 server_status.php:490 +#: libraries/messages.inc.php:722 server_status.php:490 #, php-format msgid "" "Query statistics: Since its startup, %s queries have been sent to the " @@ -4617,135 +4617,135 @@ msgstr "" "Query statistics: Since its startup, %s queries have been sent to the " "server." -#: libraries/messages.inc.php:728 server_status.php:554 +#: libraries/messages.inc.php:724 server_status.php:554 msgid "Query type" msgstr "" -#: libraries/messages.inc.php:729 libraries/sql_query_form.lib.php:381 +#: libraries/messages.inc.php:725 libraries/sql_query_form.lib.php:381 msgid "Do not overwrite this query from outside the window" msgstr "" -#: libraries/messages.inc.php:732 tbl_operations.php:663 +#: libraries/messages.inc.php:728 tbl_operations.php:663 msgid "Rebuild" msgstr "" -#: libraries/messages.inc.php:733 server_status.php:394 +#: libraries/messages.inc.php:729 server_status.php:394 msgid "Received" msgstr "" -#: libraries/messages.inc.php:734 pmd_pdf.php:89 +#: libraries/messages.inc.php:730 pmd_pdf.php:89 msgid "recommended" msgstr "" -#: libraries/messages.inc.php:736 tbl_operations.php:702 +#: libraries/messages.inc.php:732 tbl_operations.php:702 msgid "Check referential integrity:" msgstr "" -#: libraries/messages.inc.php:740 pdf_schema.php:1032 pdf_schema.php:1141 +#: libraries/messages.inc.php:736 pdf_schema.php:1032 pdf_schema.php:1141 msgid "Relational schema" msgstr "" -#: libraries/messages.inc.php:744 tbl_relation.php:399 +#: libraries/messages.inc.php:740 tbl_relation.php:399 msgid "Relations" msgstr "" -#: libraries/messages.inc.php:745 tbl_structure.php:507 tbl_structure.php:509 +#: libraries/messages.inc.php:741 tbl_structure.php:507 tbl_structure.php:509 msgid "Relation view" msgstr "" -#: libraries/messages.inc.php:746 server_privileges.php:1246 +#: libraries/messages.inc.php:742 server_privileges.php:1246 msgid "Reloading the privileges" msgstr "" -#: libraries/messages.inc.php:747 navigation.php:66 navigation.php:67 +#: libraries/messages.inc.php:743 navigation.php:66 navigation.php:67 #: navigation.php:70 msgid "Reload navigation frame" msgstr "" -#: libraries/messages.inc.php:748 pmd_general.php:80 +#: libraries/messages.inc.php:744 pmd_general.php:80 msgid "Reload" msgstr "" -#: libraries/messages.inc.php:749 libraries/server_synchronize.lib.php:1345 +#: libraries/messages.inc.php:745 libraries/server_synchronize.lib.php:1345 #: libraries/server_synchronize.lib.php:1371 msgid "Remote server" msgstr "" -#: libraries/messages.inc.php:750 +#: libraries/messages.inc.php:746 msgid "Remove CRLF characters within fields" msgstr "" -#: libraries/messages.inc.php:751 tbl_operations.php:676 +#: libraries/messages.inc.php:747 tbl_operations.php:676 msgid "Remove partitioning" msgstr "" -#: libraries/messages.inc.php:752 server_privileges.php:1575 +#: libraries/messages.inc.php:748 server_privileges.php:1575 msgid "Remove selected users" msgstr "" -#: libraries/messages.inc.php:755 tbl_operations.php:338 +#: libraries/messages.inc.php:751 tbl_operations.php:338 msgid "Rename table to" msgstr "" -#: libraries/messages.inc.php:756 view_operations.php:93 +#: libraries/messages.inc.php:752 view_operations.php:93 msgid "Rename view to" msgstr "" -#: libraries/messages.inc.php:757 tbl_operations.php:664 +#: libraries/messages.inc.php:753 tbl_operations.php:664 msgid "Repair" msgstr "" -#: libraries/messages.inc.php:759 +#: libraries/messages.inc.php:755 msgid "Replace NULL by" msgstr "" -#: libraries/messages.inc.php:760 +#: libraries/messages.inc.php:756 msgid "Replace table data with file" msgstr "" -#: libraries/messages.inc.php:761 server_replication.php:228 +#: libraries/messages.inc.php:757 server_replication.php:228 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: libraries/messages.inc.php:762 libraries/replication_gui.lib.php:236 +#: libraries/messages.inc.php:758 libraries/replication_gui.lib.php:236 #: server_replication.php:194 msgid "Add slave replication user" msgstr "" -#: libraries/messages.inc.php:763 server_replication.php:74 +#: libraries/messages.inc.php:759 server_replication.php:74 #, php-format msgid "Master server changed succesfully to %s" msgstr "" -#: libraries/messages.inc.php:764 server_replication.php:182 +#: libraries/messages.inc.php:760 server_replication.php:182 msgid "This server is configured as master in a replication process." msgstr "" -#: libraries/messages.inc.php:765 server_replication.php:322 +#: libraries/messages.inc.php:761 server_replication.php:322 msgid "Control slave:" msgstr "" -#: libraries/messages.inc.php:766 server_replication.php:65 +#: libraries/messages.inc.php:762 server_replication.php:65 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: libraries/messages.inc.php:767 server_replication.php:58 +#: libraries/messages.inc.php:763 server_replication.php:58 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: libraries/messages.inc.php:768 server_replication.php:221 +#: libraries/messages.inc.php:764 server_replication.php:221 msgid "Replicate all databases; Ignore:" msgstr "" -#: libraries/messages.inc.php:769 server_replication.php:222 +#: libraries/messages.inc.php:765 server_replication.php:222 msgid "Ignore all databases; Replicate:" msgstr "" -#: libraries/messages.inc.php:770 server_replication.php:218 +#: libraries/messages.inc.php:766 server_replication.php:218 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -4754,120 +4754,120 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: libraries/messages.inc.php:771 server_replication.php:217 +#: libraries/messages.inc.php:767 server_replication.php:217 msgid "Master configuration" msgstr "" -#: libraries/messages.inc.php:772 server_replication.php:181 +#: libraries/messages.inc.php:768 server_replication.php:181 #: server_replication.php:209 msgid "Master replication" msgstr "" -#: libraries/messages.inc.php:774 server_replication.php:230 +#: libraries/messages.inc.php:770 server_replication.php:230 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: libraries/messages.inc.php:775 server_replication.php:225 +#: libraries/messages.inc.php:771 server_replication.php:225 msgid "Please select databases:" msgstr "" -#: libraries/messages.inc.php:776 server_replication.php:210 +#: libraries/messages.inc.php:772 server_replication.php:210 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:188 +#: libraries/messages.inc.php:773 libraries/replication_gui.lib.php:188 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/messages.inc.php:778 server_replication.php:187 +#: libraries/messages.inc.php:774 server_replication.php:187 msgid "Show connected slaves" msgstr "" -#: libraries/messages.inc.php:779 libraries/messages.inc.php:885 +#: libraries/messages.inc.php:775 libraries/messages.inc.php:881 #: server_replication.php:184 server_status.php:281 msgid "Show master status" msgstr "" -#: libraries/messages.inc.php:780 server_replication.php:334 +#: libraries/messages.inc.php:776 server_replication.php:334 msgid "Skipping error(s) might lead into unsynchronized master and slave!" msgstr "" -#: libraries/messages.inc.php:781 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:51 #: server_replication.php:347 msgid "Change or reconfigure master server" msgstr "" -#: libraries/messages.inc.php:782 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:778 libraries/replication_gui.lib.php:51 msgid "Slave configuration" msgstr "" -#: libraries/messages.inc.php:783 server_replication.php:305 +#: libraries/messages.inc.php:779 server_replication.php:305 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: libraries/messages.inc.php:784 server_replication.php:332 +#: libraries/messages.inc.php:780 server_replication.php:332 msgid "Error management:" msgstr "" -#: libraries/messages.inc.php:785 server_replication.php:328 +#: libraries/messages.inc.php:781 server_replication.php:328 #, php-format msgid "IO Thread %s only" msgstr "" -#: libraries/messages.inc.php:786 server_replication.php:296 +#: libraries/messages.inc.php:782 server_replication.php:296 msgid "Slave IO Thread not running!" msgstr "" -#: libraries/messages.inc.php:787 server_replication.php:355 +#: libraries/messages.inc.php:783 server_replication.php:355 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/messages.inc.php:788 server_replication.php:326 +#: libraries/messages.inc.php:784 server_replication.php:326 msgid "Reset slave" msgstr "" -#: libraries/messages.inc.php:789 server_replication.php:308 +#: libraries/messages.inc.php:785 server_replication.php:308 msgid "See slave status table" msgstr "" -#: libraries/messages.inc.php:790 server_replication.php:336 +#: libraries/messages.inc.php:786 server_replication.php:336 msgid "Skip current error" msgstr "" -#: libraries/messages.inc.php:791 server_replication.php:340 +#: libraries/messages.inc.php:787 server_replication.php:340 msgid "errors." msgstr "" -#: libraries/messages.inc.php:792 server_replication.php:337 +#: libraries/messages.inc.php:788 server_replication.php:337 msgid "Skip next" msgstr "" -#: libraries/messages.inc.php:793 server_replication.php:248 +#: libraries/messages.inc.php:789 server_replication.php:248 msgid "Slave replication" msgstr "" -#: libraries/messages.inc.php:794 server_replication.php:293 +#: libraries/messages.inc.php:790 server_replication.php:293 msgid "Slave SQL Thread not running!" msgstr "" -#: libraries/messages.inc.php:795 server_replication.php:327 +#: libraries/messages.inc.php:791 server_replication.php:327 #, php-format msgid "SQL Thread %s only" msgstr "" -#: libraries/messages.inc.php:796 +#: libraries/messages.inc.php:792 #, php-format msgid "" "This MySQL server works as %s in replication process. For further " @@ -4875,157 +4875,157 @@ msgid "" "\"#replication\">replication section." msgstr "" -#: libraries/messages.inc.php:797 +#: libraries/messages.inc.php:793 msgid "Master status" msgstr "" -#: libraries/messages.inc.php:798 server_status.php:721 +#: libraries/messages.inc.php:794 server_status.php:721 msgid "Replication status" msgstr "" -#: libraries/messages.inc.php:799 +#: libraries/messages.inc.php:795 msgid "Slave status" msgstr "" -#: libraries/messages.inc.php:800 server_replication.php:311 +#: libraries/messages.inc.php:796 server_replication.php:311 msgid "Synchronize databases with master" msgstr "" -#: libraries/messages.inc.php:801 server_replication.php:71 +#: libraries/messages.inc.php:797 server_replication.php:71 msgid "Unable to change master" msgstr "" -#: libraries/messages.inc.php:802 server_replication.php:51 +#: libraries/messages.inc.php:798 server_replication.php:51 msgid "Unknown error" msgstr "" -#: libraries/messages.inc.php:803 main.php:163 pdf_pages.php:344 +#: libraries/messages.inc.php:799 main.php:163 pdf_pages.php:344 #: setup/lib/FormDisplay.tpl.php:216 tbl_change.php:1175 msgid "Reset" msgstr "" -#: libraries/messages.inc.php:804 server_privileges.php:591 +#: libraries/messages.inc.php:800 server_privileges.php:591 msgid "Resource limits" msgstr "" -#: libraries/messages.inc.php:805 tbl_change.php:1209 +#: libraries/messages.inc.php:801 tbl_change.php:1209 #, php-format msgid "Restart insertion with %s rows" msgstr "" -#: libraries/messages.inc.php:807 server_privileges.php:1578 +#: libraries/messages.inc.php:803 server_privileges.php:1578 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: libraries/messages.inc.php:808 server_privileges.php:1176 +#: libraries/messages.inc.php:804 server_privileges.php:1176 #, php-format msgid "You have revoked the privileges for %s" msgstr "आपने %s के privileges वापस ले लिया " -#: libraries/messages.inc.php:809 server_privileges.php:1333 +#: libraries/messages.inc.php:805 server_privileges.php:1333 msgid "Revoke" msgstr "वापस लो" -#: libraries/messages.inc.php:810 libraries/mysql_charsets.lib.php:280 +#: libraries/messages.inc.php:806 libraries/mysql_charsets.lib.php:280 msgid "Romanian" msgstr "" -#: libraries/messages.inc.php:813 tbl_printview.php:404 tbl_structure.php:786 +#: libraries/messages.inc.php:809 tbl_printview.php:404 tbl_structure.php:786 msgid "Row length" msgstr " रौ की लंबाई" -#: libraries/messages.inc.php:815 tbl_printview.php:414 tbl_structure.php:794 +#: libraries/messages.inc.php:811 tbl_printview.php:414 tbl_structure.php:794 msgid " Row size " msgstr "" -#: libraries/messages.inc.php:821 tbl_printview.php:366 tbl_structure.php:726 +#: libraries/messages.inc.php:817 tbl_printview.php:366 tbl_structure.php:726 msgid "Row Statistics" msgstr "" -#: libraries/messages.inc.php:822 +#: libraries/messages.inc.php:818 #, php-format msgid "running on %s" msgstr " %s पर चल रहा है" -#: libraries/messages.inc.php:824 libraries/sql_query_form.lib.php:223 +#: libraries/messages.inc.php:820 libraries/sql_query_form.lib.php:223 #, php-format msgid "Run SQL query/queries on server %s" msgstr "" -#: libraries/messages.inc.php:825 libraries/sql_query_form.lib.php:240 +#: libraries/messages.inc.php:821 libraries/sql_query_form.lib.php:240 #: libraries/sql_query_form.lib.php:265 #, php-format msgid "Run SQL query/queries on database %s" msgstr "डाटाबेस %s में SQL query/queries चलाइये " -#: libraries/messages.inc.php:826 libraries/mysql_charsets.lib.php:337 +#: libraries/messages.inc.php:822 libraries/mysql_charsets.lib.php:337 msgid "Russian" msgstr "रशियन" -#: libraries/messages.inc.php:829 pmd_general.php:68 +#: libraries/messages.inc.php:825 pmd_general.php:68 msgid "Save position" msgstr "" -#: libraries/messages.inc.php:830 libraries/tbl_properties.inc.php:776 +#: libraries/messages.inc.php:826 libraries/tbl_properties.inc.php:776 #: pdf_pages.php:484 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:214 setup/lib/FormDisplay.tpl.php:215 #: tbl_change.php:1126 tbl_indexes.php:248 tbl_relation.php:566 msgid "Save" msgstr "" -#: libraries/messages.inc.php:831 +#: libraries/messages.inc.php:827 msgid "The scale factor is too small to fit the schema on one page" msgstr "" -#: libraries/messages.inc.php:843 main.php:298 +#: libraries/messages.inc.php:839 main.php:298 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" -#: libraries/messages.inc.php:844 navigation.php:353 navigation.php:516 +#: libraries/messages.inc.php:840 navigation.php:353 navigation.php:516 msgid "Please select a database" msgstr "कृपया एक डाटाबेस चुनिये " -#: libraries/messages.inc.php:846 server_binlog.php:120 +#: libraries/messages.inc.php:842 server_binlog.php:120 msgid "Select binary log to view" msgstr "" -#: libraries/messages.inc.php:847 tbl_select.php:270 +#: libraries/messages.inc.php:843 tbl_select.php:270 msgid "Select fields (at least one):" msgstr "" -#: libraries/messages.inc.php:851 pdf_pages.php:320 +#: libraries/messages.inc.php:847 pdf_pages.php:320 msgid "Select Tables" msgstr " टेबल चुनिये" -#: libraries/messages.inc.php:853 server_status.php:404 +#: libraries/messages.inc.php:849 server_status.php:404 msgid "Sent" msgstr "" -#: libraries/messages.inc.php:857 libraries/select_server.lib.php:45 +#: libraries/messages.inc.php:853 libraries/select_server.lib.php:45 #: setup/frames/index.inc.php:97 setup/lib/messages.inc.php:115 msgid "Servers" msgstr "" -#: libraries/messages.inc.php:858 server_status.php:255 +#: libraries/messages.inc.php:854 server_status.php:255 msgid "Delayed inserts" msgstr "" -#: libraries/messages.inc.php:859 server_status.php:46 +#: libraries/messages.inc.php:855 server_status.php:46 msgid "Runtime Information" msgstr "" -#: libraries/messages.inc.php:860 server_status.php:350 +#: libraries/messages.inc.php:856 server_status.php:350 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "" -#: libraries/messages.inc.php:861 libraries/server_links.inc.php:53 +#: libraries/messages.inc.php:857 libraries/server_links.inc.php:53 #: server_engines.php:112 server_engines.php:116 server_status.php:304 #: test/theme.php:105 msgid "Variables" msgstr "" -#: libraries/messages.inc.php:862 server_status.php:383 +#: libraries/messages.inc.php:858 server_status.php:383 msgid "" "Server traffic: These tables show the network traffic statistics of " "this MySQL server since its startup." @@ -5033,11 +5033,11 @@ msgstr "" "Server traffic: These tables show the network traffic statistics of " "this MySQL server since its startup." -#: libraries/messages.inc.php:863 server_variables.php:35 +#: libraries/messages.inc.php:859 server_variables.php:35 msgid "Server variables and settings" msgstr "" -#: libraries/messages.inc.php:865 main.php:290 +#: libraries/messages.inc.php:861 main.php:290 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -5045,17 +5045,17 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: libraries/messages.inc.php:866 +#: libraries/messages.inc.php:862 msgid "" "Cannot start session without errors, please check errors given in your PHP " "and/or webserver log file and configure your PHP installation properly." msgstr "" -#: libraries/messages.inc.php:867 server_variables.php:55 +#: libraries/messages.inc.php:863 server_variables.php:55 msgid "Session value" msgstr "" -#: libraries/messages.inc.php:868 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:864 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 " @@ -5063,55 +5063,55 @@ msgid "" "(for example '\\\\xyz' or 'a\\'b')." msgstr "" -#: libraries/messages.inc.php:876 server_binlog.php:192 server_binlog.php:195 +#: libraries/messages.inc.php:872 server_binlog.php:192 server_binlog.php:195 #: server_processlist.php:49 server_processlist.php:51 msgid "Show Full Queries" msgstr "" -#: libraries/messages.inc.php:878 pmd_general.php:64 +#: libraries/messages.inc.php:874 pmd_general.php:64 msgid "Show/Hide left menu" msgstr "" -#: libraries/messages.inc.php:880 sql.php:513 +#: libraries/messages.inc.php:876 sql.php:513 msgid "Showing as PHP code" msgstr "" -#: libraries/messages.inc.php:882 sql.php:516 tbl_replace.php:360 +#: libraries/messages.inc.php:878 sql.php:516 tbl_replace.php:360 msgid "Showing SQL query" msgstr "" -#: libraries/messages.inc.php:883 tbl_change.php:1132 +#: libraries/messages.inc.php:879 tbl_change.php:1132 msgid "Show insert query" msgstr "" -#: libraries/messages.inc.php:886 server_status.php:273 +#: libraries/messages.inc.php:882 server_status.php:273 msgid "Show open tables" msgstr "" -#: libraries/messages.inc.php:887 main.php:219 +#: libraries/messages.inc.php:883 main.php:219 msgid "Show PHP information" msgstr "PHP कि जानकारी दिखाओ" -#: libraries/messages.inc.php:889 server_status.php:278 +#: libraries/messages.inc.php:885 server_status.php:278 msgid "Show slave hosts" msgstr "" -#: libraries/messages.inc.php:890 server_status.php:284 +#: libraries/messages.inc.php:886 server_status.php:284 msgid "Show slave status" msgstr "" -#: libraries/messages.inc.php:891 +#: libraries/messages.inc.php:887 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/messages.inc.php:892 +#: libraries/messages.inc.php:888 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/messages.inc.php:893 +#: libraries/messages.inc.php:889 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -5119,78 +5119,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/messages.inc.php:894 +#: libraries/messages.inc.php:890 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/messages.inc.php:895 +#: libraries/messages.inc.php:891 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/messages.inc.php:896 +#: libraries/messages.inc.php:892 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/messages.inc.php:897 +#: libraries/messages.inc.php:893 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/messages.inc.php:898 +#: libraries/messages.inc.php:894 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/messages.inc.php:899 +#: libraries/messages.inc.php:895 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/messages.inc.php:900 +#: libraries/messages.inc.php:896 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/messages.inc.php:901 +#: libraries/messages.inc.php:897 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/messages.inc.php:902 +#: libraries/messages.inc.php:898 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/messages.inc.php:903 +#: libraries/messages.inc.php:899 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/messages.inc.php:904 +#: libraries/messages.inc.php:900 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: libraries/messages.inc.php:905 +#: libraries/messages.inc.php:901 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/messages.inc.php:906 +#: libraries/messages.inc.php:902 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: libraries/messages.inc.php:907 +#: libraries/messages.inc.php:903 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -5198,7 +5198,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/messages.inc.php:908 +#: libraries/messages.inc.php:904 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -5206,42 +5206,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/messages.inc.php:909 +#: libraries/messages.inc.php:905 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/messages.inc.php:910 +#: libraries/messages.inc.php:906 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/messages.inc.php:911 +#: libraries/messages.inc.php:907 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/messages.inc.php:912 +#: libraries/messages.inc.php:908 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/messages.inc.php:913 +#: libraries/messages.inc.php:909 msgid "The number of pages currently dirty." msgstr "" -#: libraries/messages.inc.php:914 +#: libraries/messages.inc.php:910 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/messages.inc.php:915 +#: libraries/messages.inc.php:911 msgid "The number of free pages." msgstr "" -#: libraries/messages.inc.php:916 +#: libraries/messages.inc.php:912 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/messages.inc.php:917 +#: libraries/messages.inc.php:913 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -5249,33 +5249,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/messages.inc.php:918 +#: libraries/messages.inc.php:914 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/messages.inc.php:919 +#: libraries/messages.inc.php:915 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/messages.inc.php:920 +#: libraries/messages.inc.php:916 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/messages.inc.php:921 +#: libraries/messages.inc.php:917 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/messages.inc.php:922 +#: libraries/messages.inc.php:918 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/messages.inc.php:923 +#: libraries/messages.inc.php:919 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -5284,218 +5284,218 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/messages.inc.php:924 +#: libraries/messages.inc.php:920 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/messages.inc.php:925 +#: libraries/messages.inc.php:921 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/messages.inc.php:926 +#: libraries/messages.inc.php:922 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/messages.inc.php:927 +#: libraries/messages.inc.php:923 msgid "The current number of pending reads." msgstr "" -#: libraries/messages.inc.php:928 +#: libraries/messages.inc.php:924 msgid "The current number of pending writes." msgstr "" -#: libraries/messages.inc.php:929 +#: libraries/messages.inc.php:925 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/messages.inc.php:930 +#: libraries/messages.inc.php:926 msgid "The total number of data reads." msgstr "" -#: libraries/messages.inc.php:931 +#: libraries/messages.inc.php:927 msgid "The total number of data writes." msgstr "" -#: libraries/messages.inc.php:932 +#: libraries/messages.inc.php:928 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/messages.inc.php:933 +#: libraries/messages.inc.php:929 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/messages.inc.php:934 +#: libraries/messages.inc.php:930 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/messages.inc.php:935 +#: libraries/messages.inc.php:931 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/messages.inc.php:936 +#: libraries/messages.inc.php:932 msgid "The number of log write requests." msgstr "" -#: libraries/messages.inc.php:937 +#: libraries/messages.inc.php:933 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/messages.inc.php:938 +#: libraries/messages.inc.php:934 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/messages.inc.php:939 +#: libraries/messages.inc.php:935 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/messages.inc.php:940 +#: libraries/messages.inc.php:936 msgid "Pending log file writes." msgstr "" -#: libraries/messages.inc.php:941 +#: libraries/messages.inc.php:937 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/messages.inc.php:942 +#: libraries/messages.inc.php:938 msgid "The number of pages created." msgstr "" -#: libraries/messages.inc.php:943 +#: libraries/messages.inc.php:939 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: libraries/messages.inc.php:944 +#: libraries/messages.inc.php:940 msgid "The number of pages read." msgstr "" -#: libraries/messages.inc.php:945 +#: libraries/messages.inc.php:941 msgid "The number of pages written." msgstr "" -#: libraries/messages.inc.php:946 +#: libraries/messages.inc.php:942 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/messages.inc.php:947 +#: libraries/messages.inc.php:943 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/messages.inc.php:948 +#: libraries/messages.inc.php:944 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/messages.inc.php:949 +#: libraries/messages.inc.php:945 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/messages.inc.php:950 +#: libraries/messages.inc.php:946 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/messages.inc.php:951 +#: libraries/messages.inc.php:947 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/messages.inc.php:952 +#: libraries/messages.inc.php:948 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/messages.inc.php:953 +#: libraries/messages.inc.php:949 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/messages.inc.php:954 +#: libraries/messages.inc.php:950 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/messages.inc.php:955 +#: libraries/messages.inc.php:951 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/messages.inc.php:956 +#: libraries/messages.inc.php:952 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: libraries/messages.inc.php:957 +#: libraries/messages.inc.php:953 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/messages.inc.php:958 +#: libraries/messages.inc.php:954 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/messages.inc.php:959 +#: libraries/messages.inc.php:955 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/messages.inc.php:960 +#: libraries/messages.inc.php:956 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/messages.inc.php:961 +#: libraries/messages.inc.php:957 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/messages.inc.php:962 +#: libraries/messages.inc.php:958 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/messages.inc.php:963 +#: libraries/messages.inc.php:959 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/messages.inc.php:964 +#: libraries/messages.inc.php:960 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/messages.inc.php:965 +#: libraries/messages.inc.php:961 msgid "The number of files that are open." msgstr "" -#: libraries/messages.inc.php:966 +#: libraries/messages.inc.php:962 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/messages.inc.php:967 +#: libraries/messages.inc.php:963 msgid "The number of tables that are open." msgstr "" -#: libraries/messages.inc.php:968 +#: libraries/messages.inc.php:964 msgid "The number of free memory blocks in query cache." msgstr "" -#: libraries/messages.inc.php:969 +#: libraries/messages.inc.php:965 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/messages.inc.php:970 +#: libraries/messages.inc.php:966 msgid "The number of cache hits." msgstr "" -#: libraries/messages.inc.php:971 +#: libraries/messages.inc.php:967 msgid "The number of queries added to the cache." msgstr "" -#: libraries/messages.inc.php:972 +#: libraries/messages.inc.php:968 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -5503,104 +5503,104 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/messages.inc.php:973 +#: libraries/messages.inc.php:969 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/messages.inc.php:974 +#: libraries/messages.inc.php:970 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/messages.inc.php:975 +#: libraries/messages.inc.php:971 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/messages.inc.php:976 +#: libraries/messages.inc.php:972 msgctxt "$strShowStatusReset" msgid "Reset" msgstr "" -#: libraries/messages.inc.php:977 +#: libraries/messages.inc.php:973 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/messages.inc.php:978 +#: libraries/messages.inc.php:974 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: libraries/messages.inc.php:979 +#: libraries/messages.inc.php:975 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/messages.inc.php:980 +#: libraries/messages.inc.php:976 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: libraries/messages.inc.php:981 +#: libraries/messages.inc.php:977 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/messages.inc.php:982 +#: libraries/messages.inc.php:978 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/messages.inc.php:983 +#: libraries/messages.inc.php:979 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/messages.inc.php:984 +#: libraries/messages.inc.php:980 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/messages.inc.php:985 +#: libraries/messages.inc.php:981 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/messages.inc.php:986 +#: libraries/messages.inc.php:982 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/messages.inc.php:987 +#: libraries/messages.inc.php:983 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/messages.inc.php:988 +#: libraries/messages.inc.php:984 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/messages.inc.php:989 +#: libraries/messages.inc.php:985 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/messages.inc.php:990 +#: libraries/messages.inc.php:986 msgid "The number of sorted rows." msgstr "" -#: libraries/messages.inc.php:991 +#: libraries/messages.inc.php:987 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/messages.inc.php:992 +#: libraries/messages.inc.php:988 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/messages.inc.php:993 +#: libraries/messages.inc.php:989 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -5608,18 +5608,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/messages.inc.php:994 +#: libraries/messages.inc.php:990 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/messages.inc.php:995 +#: libraries/messages.inc.php:991 msgid "The number of currently open connections." msgstr "" -#: libraries/messages.inc.php:996 +#: libraries/messages.inc.php:992 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -5627,74 +5627,74 @@ msgid "" "implementation.)" msgstr "" -#: libraries/messages.inc.php:997 +#: libraries/messages.inc.php:993 msgid "The number of threads that are not sleeping." msgstr "" -#: libraries/messages.inc.php:999 tbl_printview.php:75 +#: libraries/messages.inc.php:995 tbl_printview.php:75 msgid "Show tables" msgstr " टेबल दिखाओ" -#: libraries/messages.inc.php:1000 libraries/sql_query_form.lib.php:396 +#: libraries/messages.inc.php:996 libraries/sql_query_form.lib.php:396 msgid " Show this query here again " msgstr " यह query वापस यहीं दिखायें " -#: libraries/messages.inc.php:1001 libraries/mysql_charsets.lib.php:217 +#: libraries/messages.inc.php:997 libraries/mysql_charsets.lib.php:217 #: libraries/mysql_charsets.lib.php:342 msgid "Simplified Chinese" msgstr "" -#: libraries/messages.inc.php:1002 tbl_operations.php:258 +#: libraries/messages.inc.php:998 tbl_operations.php:258 msgid "(singly)" msgstr "" -#: libraries/messages.inc.php:1005 libraries/replication_gui.lib.php:52 +#: libraries/messages.inc.php:1001 libraries/replication_gui.lib.php:52 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" msgstr "" -#: libraries/messages.inc.php:1006 libraries/mysql_charsets.lib.php:283 +#: libraries/messages.inc.php:1002 libraries/mysql_charsets.lib.php:283 msgid "Slovak" msgstr "" -#: libraries/messages.inc.php:1007 libraries/mysql_charsets.lib.php:286 +#: libraries/messages.inc.php:1003 libraries/mysql_charsets.lib.php:286 msgid "Slovenian" msgstr "" -#: libraries/messages.inc.php:1008 pmd_general.php:95 +#: libraries/messages.inc.php:1004 pmd_general.php:95 msgid "Small/Big All" msgstr "" -#: libraries/messages.inc.php:1009 pmd_general.php:91 +#: libraries/messages.inc.php:1005 pmd_general.php:91 msgid "Snap to grid" msgstr "" -#: libraries/messages.inc.php:1011 server_synchronize.php:1167 +#: libraries/messages.inc.php:1007 server_synchronize.php:1167 msgid "Socket" msgstr "" -#: libraries/messages.inc.php:1013 server_status.php:259 +#: libraries/messages.inc.php:1009 server_status.php:259 msgid "Sorting" msgstr "" -#: libraries/messages.inc.php:1015 tbl_printview.php:310 tbl_structure.php:657 +#: libraries/messages.inc.php:1011 tbl_printview.php:310 tbl_structure.php:657 msgid "Space usage" msgstr "" -#: libraries/messages.inc.php:1016 libraries/mysql_charsets.lib.php:289 +#: libraries/messages.inc.php:1012 libraries/mysql_charsets.lib.php:289 msgid "Spanish" msgstr "" -#: libraries/messages.inc.php:1019 +#: libraries/messages.inc.php:1015 msgid "Export type" msgstr "" -#: libraries/messages.inc.php:1020 +#: libraries/messages.inc.php:1016 msgid "Export time in UTC" msgstr "" -#: libraries/messages.inc.php:1021 libraries/sqlparser.lib.php:173 +#: libraries/messages.inc.php:1017 libraries/sqlparser.lib.php:173 msgid "" "There is a chance that you may have found a bug in the SQL parser. Please " "examine your query closely, and check that the quotes are correct and not " @@ -5707,419 +5707,419 @@ msgid "" "and submit a bug report with the data chunk in the CUT section below:" msgstr "" -#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:137 +#: libraries/messages.inc.php:1018 libraries/sqlparser.lib.php:137 msgid "" "There seems to be an error in your SQL query. The MySQL server error output " "below, if there is any, may also help you in diagnosing the problem" msgstr "" -#: libraries/messages.inc.php:1026 libraries/sqlparser.lib.php:495 +#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:495 msgid "Invalid Identifer" msgstr "" -#: libraries/messages.inc.php:1027 libraries/sqlparser.lib.php:344 +#: libraries/messages.inc.php:1023 libraries/sqlparser.lib.php:344 msgid "Unclosed quote" msgstr "" -#: libraries/messages.inc.php:1028 libraries/sqlparser.lib.php:612 +#: libraries/messages.inc.php:1024 libraries/sqlparser.lib.php:612 msgid "Unknown Punctuation String" msgstr "" -#: libraries/messages.inc.php:1030 server_replication.php:327 +#: libraries/messages.inc.php:1026 server_replication.php:327 #: server_replication.php:328 msgid "Start" msgstr "" -#: libraries/messages.inc.php:1033 tbl_printview.php:369 tbl_structure.php:729 +#: libraries/messages.inc.php:1029 tbl_printview.php:369 tbl_structure.php:729 msgid "Statements" msgstr "" -#: libraries/messages.inc.php:1034 tbl_printview.php:380 tbl_structure.php:741 +#: libraries/messages.inc.php:1030 tbl_printview.php:380 tbl_structure.php:741 msgid "static" msgstr "" -#: libraries/messages.inc.php:1035 server_status.php:388 +#: libraries/messages.inc.php:1031 server_status.php:388 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: libraries/messages.inc.php:1038 server_replication.php:327 +#: libraries/messages.inc.php:1034 server_replication.php:327 #: server_replication.php:328 msgid "Stop" msgstr "" -#: libraries/messages.inc.php:1039 server_engines.php:49 +#: libraries/messages.inc.php:1035 server_engines.php:49 msgid "Storage Engines" msgstr "" -#: libraries/messages.inc.php:1040 libraries/tbl_properties.inc.php:726 +#: libraries/messages.inc.php:1036 libraries/tbl_properties.inc.php:726 #: server_engines.php:58 tbl_operations.php:353 msgid "Storage Engine" msgstr "" -#: libraries/messages.inc.php:1042 +#: libraries/messages.inc.php:1038 msgid "CSV for MS Excel" msgstr "" -#: libraries/messages.inc.php:1044 tbl_structure.php:516 tbl_structure.php:518 +#: libraries/messages.inc.php:1040 tbl_structure.php:516 tbl_structure.php:518 msgid "Propose table structure" msgstr "" -#: libraries/messages.inc.php:1045 server_synchronize.php:424 +#: libraries/messages.inc.php:1041 server_synchronize.php:424 #: server_synchronize.php:867 msgid "Structure Difference" msgstr "" -#: libraries/messages.inc.php:1049 server_synchronize.php:265 +#: libraries/messages.inc.php:1045 server_synchronize.php:265 msgid "Structure Synchronization" msgstr "" -#: libraries/messages.inc.php:1050 libraries/sql_query_form.lib.php:462 +#: libraries/messages.inc.php:1046 libraries/sql_query_form.lib.php:462 msgid "Submit" msgstr "" -#: libraries/messages.inc.php:1052 main.php:358 +#: libraries/messages.inc.php:1048 main.php:358 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " "issues." msgstr "" -#: libraries/messages.inc.php:1054 libraries/mysql_charsets.lib.php:295 +#: libraries/messages.inc.php:1050 libraries/mysql_charsets.lib.php:295 #: libraries/mysql_charsets.lib.php:392 msgid "Swedish" msgstr "" -#: libraries/messages.inc.php:1060 tbl_operations.php:556 +#: libraries/messages.inc.php:1056 tbl_operations.php:556 msgid "Switch to copied table" msgstr "" -#: libraries/messages.inc.php:1061 server_synchronize.php:1213 +#: libraries/messages.inc.php:1057 server_synchronize.php:1213 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." msgstr "" -#: libraries/messages.inc.php:1062 server_synchronize.php:451 +#: libraries/messages.inc.php:1058 server_synchronize.php:451 #: server_synchronize.php:896 msgid "Synchronize Databases" msgstr "" -#: libraries/messages.inc.php:1063 libraries/server_links.inc.php:92 +#: libraries/messages.inc.php:1059 libraries/server_links.inc.php:92 #: server_synchronize.php:1092 server_synchronize.php:1100 msgid "Synchronize" msgstr "" -#: libraries/messages.inc.php:1065 server_synchronize.php:430 +#: libraries/messages.inc.php:1061 server_synchronize.php:430 #: server_synchronize.php:873 msgid "Add column(s)" msgstr "" -#: libraries/messages.inc.php:1066 tbl_create.php:62 +#: libraries/messages.inc.php:1062 tbl_create.php:62 #, php-format msgid "Table %s already exists!" msgstr "" -#: libraries/messages.inc.php:1067 server_synchronize.php:432 +#: libraries/messages.inc.php:1063 server_synchronize.php:432 #: server_synchronize.php:875 msgid "Alter column(s)" msgstr "" -#: libraries/messages.inc.php:1068 tbl_addfield.php:189 tbl_alter.php:103 +#: libraries/messages.inc.php:1064 tbl_addfield.php:189 tbl_alter.php:103 #: tbl_indexes.php:98 #, php-format msgid "Table %1$s has been altered successfully" msgstr "" -#: libraries/messages.inc.php:1069 server_synchronize.php:434 +#: libraries/messages.inc.php:1065 server_synchronize.php:434 #: server_synchronize.php:877 msgid "Apply index(s)" msgstr "" -#: libraries/messages.inc.php:1071 server_synchronize.php:446 +#: libraries/messages.inc.php:1067 server_synchronize.php:446 #: server_synchronize.php:890 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: libraries/messages.inc.php:1072 tbl_move_copy.php:82 +#: libraries/messages.inc.php:1068 tbl_move_copy.php:82 msgid "The table name is empty!" msgstr " टेबल का नाम खाली है!" -#: libraries/messages.inc.php:1073 tbl_create.php:249 +#: libraries/messages.inc.php:1069 tbl_create.php:249 #, php-format msgid "Table %1$s has been created." msgstr "" -#: libraries/messages.inc.php:1076 tbl_operations.php:628 +#: libraries/messages.inc.php:1072 tbl_operations.php:628 #, php-format msgid "Table %s has been flushed" msgstr " टेबल %s को flush किया" -#: libraries/messages.inc.php:1077 server_synchronize.php:436 +#: libraries/messages.inc.php:1073 server_synchronize.php:436 #: server_synchronize.php:879 msgid "Insert row(s)" msgstr "" -#: libraries/messages.inc.php:1078 libraries/tbl_links.inc.php:107 +#: libraries/messages.inc.php:1074 libraries/tbl_links.inc.php:107 #: libraries/tbl_links.inc.php:140 libraries/tbl_links.inc.php:141 msgid "Table seems to be empty!" msgstr "" -#: libraries/messages.inc.php:1079 tbl_operations.php:568 +#: libraries/messages.inc.php:1075 tbl_operations.php:568 msgid "Table maintenance" msgstr " टेबल रख-रखाव" -#: libraries/messages.inc.php:1080 libraries/tbl_properties.inc.php:618 +#: libraries/messages.inc.php:1076 libraries/tbl_properties.inc.php:618 #: server_synchronize.php:428 server_synchronize.php:871 msgid "Table name" msgstr "" -#: libraries/messages.inc.php:1081 pdf_schema.php:1116 +#: libraries/messages.inc.php:1077 pdf_schema.php:1116 msgid "Table of contents" msgstr "" -#: libraries/messages.inc.php:1082 tbl_operations.php:334 +#: libraries/messages.inc.php:1078 tbl_operations.php:334 msgid "Table options" msgstr "" -#: libraries/messages.inc.php:1083 server_synchronize.php:431 +#: libraries/messages.inc.php:1079 server_synchronize.php:431 #: server_synchronize.php:874 msgid "Remove column(s)" msgstr "" -#: libraries/messages.inc.php:1084 server_synchronize.php:433 +#: libraries/messages.inc.php:1080 server_synchronize.php:433 #: server_synchronize.php:876 msgid "Remove index(s)" msgstr "" -#: libraries/messages.inc.php:1088 server_synchronize.php:435 +#: libraries/messages.inc.php:1084 server_synchronize.php:435 #: server_synchronize.php:878 msgid "Update row(s)" msgstr "" -#: libraries/messages.inc.php:1090 server_synchronize.php:942 +#: libraries/messages.inc.php:1086 server_synchronize.php:942 msgid "Target database has been synchronized with source database" msgstr "" -#: libraries/messages.inc.php:1091 server_privileges.php:392 +#: libraries/messages.inc.php:1087 server_privileges.php:392 #: server_privileges.php:527 server_privileges.php:1679 #: server_privileges.php:1685 msgid "Table-specific privileges" msgstr " केवल टेबल के प्रिविलेज" -#: libraries/messages.inc.php:1092 server_status.php:254 +#: libraries/messages.inc.php:1088 server_status.php:254 msgid "Temporary data" msgstr "" -#: libraries/messages.inc.php:1093 tbl_change.php:728 +#: libraries/messages.inc.php:1089 tbl_change.php:728 msgid " Because of its length,
this field might not be editable " msgstr "" -#: libraries/messages.inc.php:1094 +#: libraries/messages.inc.php:1090 msgid "Texy! text" msgstr "" -#: libraries/messages.inc.php:1095 libraries/mysql_charsets.lib.php:298 +#: libraries/messages.inc.php:1091 libraries/mysql_charsets.lib.php:298 #: libraries/mysql_charsets.lib.php:395 msgid "Thai" msgstr "" -#: libraries/messages.inc.php:1102 libraries/replication_gui.lib.php:308 +#: libraries/messages.inc.php:1098 libraries/replication_gui.lib.php:308 #: server_privileges.php:734 msgid "This Host" msgstr "" -#: libraries/messages.inc.php:1103 server_status.php:252 +#: libraries/messages.inc.php:1099 server_status.php:252 msgid "Threads" msgstr "" -#: libraries/messages.inc.php:1104 server_processlist.php:22 +#: libraries/messages.inc.php:1100 server_processlist.php:22 #, php-format msgid "Thread %s was successfully killed." msgstr "Thread %s को सफलता से मारा गया।" -#: libraries/messages.inc.php:1106 +#: libraries/messages.inc.php:1102 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." msgstr "" -#: libraries/messages.inc.php:1109 pmd_pdf.php:94 +#: libraries/messages.inc.php:1105 pmd_pdf.php:94 msgid "to/from page" msgstr "" -#: libraries/messages.inc.php:1110 pdf_pages.php:343 +#: libraries/messages.inc.php:1106 pdf_pages.php:343 msgid "Toggle scratchboard" msgstr "" -#: libraries/messages.inc.php:1111 pmd_general.php:99 +#: libraries/messages.inc.php:1107 pmd_general.php:99 msgid "Toggle small/big" msgstr "" -#: libraries/messages.inc.php:1112 pmd_help.php:27 +#: libraries/messages.inc.php:1108 pmd_help.php:27 msgid "To select relation, click :" msgstr "" -#: libraries/messages.inc.php:1115 libraries/tbl_links.inc.php:149 +#: libraries/messages.inc.php:1111 libraries/tbl_links.inc.php:149 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" -#: libraries/messages.inc.php:1116 tbl_tracking.php:655 +#: libraries/messages.inc.php:1112 tbl_tracking.php:655 msgid "Activate now" msgstr "" -#: libraries/messages.inc.php:1117 tbl_tracking.php:653 +#: libraries/messages.inc.php:1113 tbl_tracking.php:653 #, php-format msgid "Activate tracking for %s.%s" msgstr "" -#: libraries/messages.inc.php:1118 tbl_tracking.php:221 +#: libraries/messages.inc.php:1114 tbl_tracking.php:221 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/messages.inc.php:1119 tbl_tracking.php:688 +#: libraries/messages.inc.php:1115 tbl_tracking.php:688 msgid "Create version" msgstr "" -#: libraries/messages.inc.php:1120 tbl_tracking.php:668 +#: libraries/messages.inc.php:1116 tbl_tracking.php:668 #, php-format msgid "Create version %s of %s.%s" msgstr "" -#: libraries/messages.inc.php:1122 tbl_tracking.php:412 +#: libraries/messages.inc.php:1118 tbl_tracking.php:412 msgid "Data definition statement" msgstr "" -#: libraries/messages.inc.php:1123 tbl_tracking.php:463 +#: libraries/messages.inc.php:1119 tbl_tracking.php:463 msgid "Data manipulation statement" msgstr "" -#: libraries/messages.inc.php:1124 tbl_tracking.php:410 tbl_tracking.php:461 +#: libraries/messages.inc.php:1120 tbl_tracking.php:410 tbl_tracking.php:461 msgid "Date" msgstr "" -#: libraries/messages.inc.php:1125 tbl_tracking.php:642 +#: libraries/messages.inc.php:1121 tbl_tracking.php:642 msgid "Deactivate now" msgstr "" -#: libraries/messages.inc.php:1126 tbl_tracking.php:640 +#: libraries/messages.inc.php:1122 tbl_tracking.php:640 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "" -#: libraries/messages.inc.php:1127 tbl_tracking.php:521 +#: libraries/messages.inc.php:1123 tbl_tracking.php:521 #, php-format msgid "Export as %s" msgstr "" -#: libraries/messages.inc.php:1130 tbl_tracking.php:251 tbl_tracking.php:379 +#: libraries/messages.inc.php:1126 tbl_tracking.php:251 tbl_tracking.php:379 msgid "Close" msgstr "" -#: libraries/messages.inc.php:1131 tbl_tracking.php:114 +#: libraries/messages.inc.php:1127 tbl_tracking.php:114 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/messages.inc.php:1133 tbl_tracking.php:397 tbl_tracking.php:504 +#: libraries/messages.inc.php:1129 tbl_tracking.php:397 tbl_tracking.php:504 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "" -#: libraries/messages.inc.php:1134 tbl_tracking.php:561 +#: libraries/messages.inc.php:1130 tbl_tracking.php:561 msgid "Show versions" msgstr "" -#: libraries/messages.inc.php:1135 tbl_tracking.php:507 +#: libraries/messages.inc.php:1131 tbl_tracking.php:507 msgid "SQL dump (file download)" msgstr "" -#: libraries/messages.inc.php:1136 tbl_tracking.php:508 +#: libraries/messages.inc.php:1132 tbl_tracking.php:508 msgid "SQL dump" msgstr "" -#: libraries/messages.inc.php:1137 tbl_tracking.php:213 +#: libraries/messages.inc.php:1133 tbl_tracking.php:213 msgid "SQL statements executed." msgstr "" -#: libraries/messages.inc.php:1138 +#: libraries/messages.inc.php:1134 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/messages.inc.php:1139 tbl_tracking.php:509 +#: libraries/messages.inc.php:1135 tbl_tracking.php:509 msgid "SQL execution" msgstr "" -#: libraries/messages.inc.php:1140 tbl_tracking.php:230 +#: libraries/messages.inc.php:1136 tbl_tracking.php:230 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/messages.inc.php:1141 tbl_tracking.php:381 +#: libraries/messages.inc.php:1137 tbl_tracking.php:381 msgid "Tracking statements" msgstr "" -#: libraries/messages.inc.php:1148 tbl_tracking.php:593 +#: libraries/messages.inc.php:1144 tbl_tracking.php:593 msgid "Version" msgstr "" -#: libraries/messages.inc.php:1149 tbl_tracking.php:672 +#: libraries/messages.inc.php:1145 tbl_tracking.php:672 msgid "Track these data definition statements:" msgstr "" -#: libraries/messages.inc.php:1150 tbl_tracking.php:680 +#: libraries/messages.inc.php:1146 tbl_tracking.php:680 msgid "Track these data manipulation statements:" msgstr "" -#: libraries/messages.inc.php:1155 tbl_tracking.php:411 tbl_tracking.php:462 +#: libraries/messages.inc.php:1151 tbl_tracking.php:411 tbl_tracking.php:462 msgid "Username" msgstr "" -#: libraries/messages.inc.php:1156 tbl_tracking.php:203 +#: libraries/messages.inc.php:1152 tbl_tracking.php:203 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "" -#: libraries/messages.inc.php:1157 tbl_tracking.php:187 +#: libraries/messages.inc.php:1153 tbl_tracking.php:187 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "" -#: libraries/messages.inc.php:1158 tbl_tracking.php:195 +#: libraries/messages.inc.php:1154 tbl_tracking.php:195 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "" -#: libraries/messages.inc.php:1159 tbl_tracking.php:262 +#: libraries/messages.inc.php:1155 tbl_tracking.php:262 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/messages.inc.php:1161 tbl_tracking.php:220 +#: libraries/messages.inc.php:1157 tbl_tracking.php:220 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/messages.inc.php:1162 libraries/mysql_charsets.lib.php:219 +#: libraries/messages.inc.php:1158 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:362 msgid "Traditional Chinese" msgstr "" -#: libraries/messages.inc.php:1163 libraries/mysql_charsets.lib.php:292 +#: libraries/messages.inc.php:1159 libraries/mysql_charsets.lib.php:292 msgid "Traditional Spanish" msgstr "" -#: libraries/messages.inc.php:1164 server_status.php:388 +#: libraries/messages.inc.php:1160 server_status.php:388 msgid "Traffic" msgstr "" -#: libraries/messages.inc.php:1165 server_status.php:261 +#: libraries/messages.inc.php:1161 server_status.php:261 msgid "Transaction coordinator" msgstr "" -#: libraries/messages.inc.php:1166 +#: libraries/messages.inc.php:1162 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 " @@ -6127,27 +6127,27 @@ msgid "" "need to set the first option to the empty string." msgstr "" -#: libraries/messages.inc.php:1167 +#: libraries/messages.inc.php:1163 msgid "" "Displays hexadecimal representation of data. Optional first parameter " "specifies how often space will be added (defaults to 2 nibbles)." msgstr "" -#: libraries/messages.inc.php:1168 +#: libraries/messages.inc.php:1164 msgid "" "Displays a clickable thumbnail. The options are the maximum width and height " "in pixels. The original aspect ratio is preserved." msgstr "" -#: libraries/messages.inc.php:1169 +#: libraries/messages.inc.php:1165 msgid "Displays a link to download this image." msgstr "" -#: libraries/messages.inc.php:1170 +#: libraries/messages.inc.php:1166 msgid "See image/jpeg: inline" msgstr "" -#: libraries/messages.inc.php:1171 +#: libraries/messages.inc.php:1167 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 " @@ -6159,7 +6159,7 @@ msgid "" "gmdate() function." msgstr "" -#: libraries/messages.inc.php:1172 +#: libraries/messages.inc.php:1168 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 " @@ -6173,31 +6173,31 @@ msgid "" "(Default 1)." msgstr "" -#: libraries/messages.inc.php:1173 +#: libraries/messages.inc.php:1169 msgid "" "Displays the contents of the field as-is, without running it through " "htmlspecialchars(). That is, the field is assumed to contain valid HTML." msgstr "" -#: libraries/messages.inc.php:1174 +#: libraries/messages.inc.php:1170 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." msgstr "" -#: libraries/messages.inc.php:1175 +#: libraries/messages.inc.php:1171 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." msgstr "" -#: libraries/messages.inc.php:1176 +#: libraries/messages.inc.php:1172 msgid "Formats text as SQL query with syntax highlighting." msgstr "" -#: libraries/messages.inc.php:1177 +#: libraries/messages.inc.php:1173 msgid "" "Displays a part of a string. The first option is the number of characters to " "skip from the beginning of the string (Default 0). The second option is the " @@ -6206,69 +6206,69 @@ msgid "" "(Default: \"...\")." msgstr "" -#: libraries/messages.inc.php:1179 server_binlog.php:183 server_binlog.php:186 +#: libraries/messages.inc.php:1175 server_binlog.php:183 server_binlog.php:186 #: server_processlist.php:49 server_processlist.php:51 msgid "Truncate Shown Queries" msgstr "" -#: libraries/messages.inc.php:1180 libraries/mysql_charsets.lib.php:301 +#: libraries/messages.inc.php:1176 libraries/mysql_charsets.lib.php:301 #: libraries/mysql_charsets.lib.php:389 msgid "Turkish" msgstr "तुर्क" -#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:304 +#: libraries/messages.inc.php:1179 libraries/mysql_charsets.lib.php:304 #: libraries/mysql_charsets.lib.php:386 msgid "Ukrainian" msgstr "" -#: libraries/messages.inc.php:1185 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:1181 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 msgid "Unicode" msgstr "" -#: libraries/messages.inc.php:1187 libraries/mysql_charsets.lib.php:398 +#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:398 #: libraries/mysql_charsets.lib.php:405 msgid "unknown" msgstr "" -#: libraries/messages.inc.php:1190 server_privileges.php:1152 +#: libraries/messages.inc.php:1186 server_privileges.php:1152 #, php-format msgid "You have updated the privileges for %s." msgstr "आपने %s के प्रिविलेज अपडेट कर दिया ।" -#: libraries/messages.inc.php:1191 user_password.php:112 +#: libraries/messages.inc.php:1187 user_password.php:112 msgid "The profile has been updated." msgstr "प्रोफाइल अपडेट कर दिया ।" -#: libraries/messages.inc.php:1193 libraries/relation.lib.php:138 +#: libraries/messages.inc.php:1189 libraries/relation.lib.php:138 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" -#: libraries/messages.inc.php:1194 +#: libraries/messages.inc.php:1190 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/messages.inc.php:1204 tbl_printview.php:314 tbl_structure.php:661 +#: libraries/messages.inc.php:1200 tbl_printview.php:314 tbl_structure.php:661 msgid "Usage" msgstr "उपयोग" -#: libraries/messages.inc.php:1205 +#: libraries/messages.inc.php:1201 msgid "Enclose table and field names with backquotes" msgstr " टेबल और फील्ड के नाम को backquotes से Enclose करें" -#: libraries/messages.inc.php:1206 libraries/replication_gui.lib.php:314 +#: libraries/messages.inc.php:1202 libraries/replication_gui.lib.php:314 #: server_privileges.php:740 msgid "Use Host Table" msgstr "" -#: libraries/messages.inc.php:1207 server_privileges.php:848 +#: libraries/messages.inc.php:1203 server_privileges.php:848 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/messages.inc.php:1209 libraries/replication_gui.lib.php:55 +#: libraries/messages.inc.php:1205 libraries/replication_gui.lib.php:55 #: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245 #: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255 #: server_privileges.php:672 server_privileges.php:675 @@ -6276,35 +6276,35 @@ msgstr "" msgid "User name" msgstr "यूसर नेम" -#: libraries/messages.inc.php:1210 server_privileges.php:1645 +#: libraries/messages.inc.php:1206 server_privileges.php:1645 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/messages.inc.php:1211 server_privileges.php:1365 +#: libraries/messages.inc.php:1207 server_privileges.php:1365 msgid "User overview" msgstr "" -#: libraries/messages.inc.php:1212 server_privileges.php:1261 +#: libraries/messages.inc.php:1208 server_privileges.php:1261 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/messages.inc.php:1213 server_privileges.php:2026 +#: libraries/messages.inc.php:1209 server_privileges.php:2026 #, php-format msgid "Users having access to "%s"" msgstr "" -#: libraries/messages.inc.php:1214 main.php:189 server_privileges.php:1350 +#: libraries/messages.inc.php:1210 main.php:189 server_privileges.php:1350 #: server_privileges.php:1497 server_privileges.php:1611 #: server_privileges.php:2029 server_processlist.php:54 msgid "User" msgstr "यूसर" -#: libraries/messages.inc.php:1215 tbl_change.php:1171 +#: libraries/messages.inc.php:1211 tbl_change.php:1171 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/messages.inc.php:1217 libraries/replication_gui.lib.php:251 +#: libraries/messages.inc.php:1213 libraries/replication_gui.lib.php:251 #: libraries/replication_gui.lib.php:319 libraries/replication_gui.lib.php:342 #: server_privileges.php:678 server_privileges.php:745 #: server_privileges.php:769 server_privileges.php:1889 @@ -6312,91 +6312,91 @@ msgstr "" msgid "Use text field" msgstr "" -#: libraries/messages.inc.php:1221 libraries/sqlvalidator.lib.php:68 +#: libraries/messages.inc.php:1217 libraries/sqlvalidator.lib.php:68 #, php-format msgid "" "The SQL validator could not be initialized. Please check if you have " "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" -#: libraries/messages.inc.php:1222 libraries/replication_gui.lib.php:111 +#: libraries/messages.inc.php:1218 libraries/replication_gui.lib.php:111 #: server_status.php:627 tbl_change.php:324 tbl_printview.php:370 #: tbl_select.php:139 tbl_structure.php:730 msgid "Value" msgstr "मूल्य" -#: libraries/messages.inc.php:1223 libraries/replication_gui.lib.php:110 +#: libraries/messages.inc.php:1219 libraries/replication_gui.lib.php:110 #: libraries/sql_query_form.lib.php:445 server_status.php:626 #: server_variables.php:52 msgid "Variable" msgstr "" -#: libraries/messages.inc.php:1225 server_export.php:21 +#: libraries/messages.inc.php:1221 server_export.php:21 msgid "View dump (schema) of databases" msgstr "" -#: libraries/messages.inc.php:1227 tbl_export.php:23 +#: libraries/messages.inc.php:1223 tbl_export.php:23 msgid "View dump (schema) of table" msgstr "" -#: libraries/messages.inc.php:1231 view_create.php:142 +#: libraries/messages.inc.php:1227 view_create.php:142 msgid "VIEW name" msgstr "" -#: libraries/messages.inc.php:1237 main.php:205 +#: libraries/messages.inc.php:1233 main.php:205 msgid "Web server" msgstr "" -#: libraries/messages.inc.php:1239 libraries/mysql_charsets.lib.php:277 +#: libraries/messages.inc.php:1235 libraries/mysql_charsets.lib.php:277 #: libraries/mysql_charsets.lib.php:325 msgid "West European" msgstr "" -#: libraries/messages.inc.php:1240 main.php:230 +#: libraries/messages.inc.php:1236 main.php:230 msgid "Wiki" msgstr "" -#: libraries/messages.inc.php:1241 server_privileges.php:2138 +#: libraries/messages.inc.php:1237 server_privileges.php:2138 msgid "wildcard" msgstr "" -#: libraries/messages.inc.php:1248 +#: libraries/messages.inc.php:1244 msgid "Export contents" msgstr "" -#: libraries/messages.inc.php:1249 +#: libraries/messages.inc.php:1245 msgid "Export functions" msgstr "" -#: libraries/messages.inc.php:1250 +#: libraries/messages.inc.php:1246 msgid "Export procedures" msgstr "" -#: libraries/messages.inc.php:1251 +#: libraries/messages.inc.php:1247 msgid "Export Structure Schemas (recommended)" msgstr "" -#: libraries/messages.inc.php:1252 +#: libraries/messages.inc.php:1248 msgid "Export tables" msgstr "" -#: libraries/messages.inc.php:1253 +#: libraries/messages.inc.php:1249 msgid "Export triggers" msgstr "" -#: libraries/messages.inc.php:1254 +#: libraries/messages.inc.php:1250 msgid "Export views" msgstr "" -#: libraries/messages.inc.php:1255 +#: libraries/messages.inc.php:1251 msgid "XML" msgstr "" -#: libraries/messages.inc.php:1259 server_privileges.php:592 +#: libraries/messages.inc.php:1255 server_privileges.php:592 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" -#: libraries/messages.inc.php:1260 +#: libraries/messages.inc.php:1256 msgid "\"zipped\"" msgstr "" diff --git a/po/hr.po b/po/hr.po index da25ad435..4a7fc619d 100644 --- 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-05-13 11:25+0200\n" +"POT-Creation-Date: 2010-05-13 11:30+0200\n" "PO-Revision-Date: 2010-03-12 09:13+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: croatian \n" @@ -13,19 +13,19 @@ msgstr "" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:38 browse_foreigners.php:59 -#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:870 +#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:866 #: server_privileges.php:1475 msgid "Show all" msgstr "Prikaži sve" #: browse_foreigners.php:82 db_operations.php:648 -#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:394 -#: libraries/export/pdf.php:147 libraries/messages.inc.php:597 +#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394 +#: libraries/export/pdf.php:147 libraries/messages.inc.php:593 #: pdf_schema.php:283 pdf_schema.php:1123 pdf_schema.php:1139 msgid "Page number:" msgstr "Broj stranice:" -#: browse_foreigners.php:132 libraries/messages.inc.php:1242 +#: browse_foreigners.php:132 libraries/messages.inc.php:1238 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -38,7 +38,7 @@ 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/db_links.inc.php:75 -#: libraries/messages.inc.php:841 libraries/tbl_links.inc.php:63 +#: libraries/messages.inc.php:837 libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Traži" @@ -47,12 +47,12 @@ msgstr "Traži" #: db_search.php:362 db_structure.php:567 js/messages.php:48 #: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2267 +#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 #: 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 #: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614 -#: libraries/messages.inc.php:361 libraries/replication_gui.lib.php:73 +#: libraries/messages.inc.php:357 libraries/replication_gui.lib.php:73 #: libraries/replication_gui.lib.php:365 libraries/select_server.lib.php:104 #: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477 #: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782 @@ -72,33 +72,33 @@ msgid "Go" msgstr "Kreni" #: browse_foreigners.php:168 browse_foreigners.php:172 -#: libraries/Index.class.php:442 libraries/messages.inc.php:459 +#: libraries/Index.class.php:442 libraries/messages.inc.php:455 #: tbl_tracking.php:320 msgid "Keyname" msgstr "Naziv ključa" #: browse_foreigners.php:169 browse_foreigners.php:171 -#: libraries/messages.inc.php:252 server_collations.php:55 +#: libraries/messages.inc.php:248 server_collations.php:55 #: server_collations.php:67 server_engines.php:59 server_status.php:628 msgid "Description" msgstr "Opis" #: browse_foreigners.php:247 browse_foreigners.php:256 #: browse_foreigners.php:268 browse_foreigners.php:276 -#: libraries/messages.inc.php:1218 +#: libraries/messages.inc.php:1214 msgid "Use this value" msgstr "Upotrijebi ovu vrijednost" -#: db_create.php:46 libraries/messages.inc.php:215 +#: db_create.php:46 libraries/messages.inc.php:211 #, php-format 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 libraries/messages.inc.php:232 +#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:228 msgid "Database comment: " msgstr "Komentar baze podataka: " -#: db_datadict.php:165 libraries/messages.inc.php:1070 +#: db_datadict.php:165 libraries/messages.inc.php:1066 #: libraries/tbl_properties.inc.php:724 pdf_schema.php:1236 #: tbl_operations.php:345 tbl_printview.php:130 msgid "Table comments" @@ -107,7 +107,7 @@ msgstr "Komentari tablice" #: db_datadict.php:174 db_qbe.php:174 libraries/Index.class.php:446 #: libraries/export/htmlword.php:244 libraries/export/latex.php:360 #: libraries/export/odt.php:294 libraries/export/texytext.php:233 -#: libraries/messages.inc.php:317 libraries/tbl_properties.inc.php:99 +#: libraries/messages.inc.php:313 libraries/tbl_properties.inc.php:99 #: libraries/tbl_properties.inc.php:275 pdf_schema.php:1262 #: pdf_schema.php:1283 tbl_change.php:308 tbl_indexes.php:189 #: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135 @@ -119,7 +119,7 @@ msgstr "Polje" #: libraries/db_events.inc.php:31 libraries/db_routines.inc.php:42 #: 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/messages.inc.php:1181 +#: libraries/export/texytext.php:234 libraries/messages.inc.php:1177 #: libraries/tbl_properties.inc.php:100 pdf_schema.php:1263 #: pdf_schema.php:1284 server_privileges.php:2031 tbl_change.php:287 #: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313 @@ -131,7 +131,7 @@ msgstr "Vrsta" #: db_datadict.php:177 libraries/Index.class.php:449 #: libraries/export/htmlword.php:246 libraries/export/latex.php:360 #: libraries/export/odt.php:300 libraries/export/texytext.php:235 -#: libraries/messages.inc.php:576 libraries/tbl_properties.inc.php:109 +#: libraries/messages.inc.php:572 libraries/tbl_properties.inc.php:109 #: pdf_schema.php:1265 pdf_schema.php:1286 tbl_change.php:323 #: tbl_printview.php:145 tbl_structure.php:181 tbl_tracking.php:276 #: tbl_tracking.php:327 @@ -140,7 +140,7 @@ msgstr "Null" #: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 -#: libraries/export/texytext.php:236 libraries/messages.inc.php:238 +#: libraries/export/texytext.php:236 libraries/messages.inc.php:234 #: libraries/tbl_properties.inc.php:106 pdf_schema.php:1266 #: pdf_schema.php:1287 tbl_printview.php:146 tbl_structure.php:182 #: tbl_tracking.php:277 @@ -149,14 +149,14 @@ msgstr "Zadano" #: db_datadict.php:182 libraries/export/htmlword.php:249 #: libraries/export/latex.php:362 libraries/export/odt.php:307 -#: libraries/export/texytext.php:238 libraries/messages.inc.php:483 +#: libraries/export/texytext.php:238 libraries/messages.inc.php:479 #: pdf_schema.php:1268 pdf_schema.php:1289 tbl_printview.php:150 msgid "Links to" msgstr "Povezano s" #: db_datadict.php:184 db_printview.php:112 libraries/export/htmlword.php:252 #: libraries/export/latex.php:365 libraries/export/odt.php:312 -#: libraries/export/texytext.php:241 libraries/messages.inc.php:163 +#: libraries/export/texytext.php:241 libraries/messages.inc.php:159 #: libraries/tbl_properties.inc.php:130 pdf_schema.php:1279 #: pdf_schema.php:1290 tbl_printview.php:152 msgid "Comments" @@ -165,7 +165,7 @@ msgstr "Komentari" #: db_datadict.php:267 libraries/Index.class.php:359 #: 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/messages.inc.php:559 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:555 #: libraries/mult_submits.inc.php:263 pdf_schema.php:1344 #: server_privileges.php:1529 server_privileges.php:1540 #: server_privileges.php:1850 server_privileges.php:1855 @@ -177,7 +177,7 @@ msgstr "Ne" #: db_datadict.php:267 libraries/Index.class.php:360 #: libraries/Index.class.php:385 libraries/export/htmlword.php:322 #: libraries/export/latex.php:430 libraries/export/odt.php:368 -#: libraries/export/texytext.php:311 libraries/messages.inc.php:1257 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:1253 #: libraries/mult_submits.inc.php:45 libraries/mult_submits.inc.php:50 #: libraries/mult_submits.inc.php:55 libraries/mult_submits.inc.php:60 #: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:101 @@ -191,108 +191,108 @@ msgstr "Ne" msgid "Yes" msgstr "Da" -#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:670 +#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:666 #: tbl_printview.php:498 msgid "Print" msgstr "Ispiši" -#: db_export.php:29 libraries/messages.inc.php:1226 +#: db_export.php:29 libraries/messages.inc.php:1222 msgid "View dump (schema) of database" msgstr "Prikaži ispis (shemu) baze podataka" #: db_export.php:33 db_printview.php:96 db_qbe.php:102 db_structure.php:51 -#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:568 +#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:564 #: navigation.php:346 msgid "No tables found in database." msgstr "U bazi podataka nisu pronađene tablice." -#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:845 +#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:841 #: server_export.php:27 msgid "Select All" msgstr "Odaberi sve" -#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1188 +#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1184 #: server_export.php:29 msgid "Unselect All" msgstr "Ukloni sav odabir" -#: db_operations.php:38 libraries/messages.inc.php:213 tbl_create.php:54 +#: db_operations.php:38 libraries/messages.inc.php:209 tbl_create.php:54 msgid "The database name is empty!" msgstr "Naziv baze podataka je prazan!" -#: db_operations.php:236 libraries/messages.inc.php:753 +#: db_operations.php:236 libraries/messages.inc.php:749 #, php-format msgid "Database %s has been renamed to %s" msgstr "Baza podataka %s preimenovana je u %s" -#: db_operations.php:240 libraries/messages.inc.php:178 +#: db_operations.php:240 libraries/messages.inc.php:174 #, php-format msgid "Database %s has been copied to %s" msgstr "Baza podataka %s kopirana je u %s" -#: db_operations.php:410 libraries/messages.inc.php:236 +#: db_operations.php:410 libraries/messages.inc.php:232 msgid "Rename database to" msgstr "Preimenuj bazu podataka u" -#: db_operations.php:415 libraries/messages.inc.php:161 +#: db_operations.php:415 libraries/messages.inc.php:157 #: server_processlist.php:57 msgid "Command" msgstr "Naredba" -#: db_operations.php:425 libraries/messages.inc.php:58 tbl_change.php:1143 +#: db_operations.php:425 libraries/messages.inc.php:54 tbl_change.php:1143 msgid "and then" msgstr "i potom" -#: db_operations.php:451 libraries/messages.inc.php:233 +#: db_operations.php:451 libraries/messages.inc.php:229 msgid "Copy database to" msgstr "Kopiraj bazu podataka u" -#: db_operations.php:458 libraries/messages.inc.php:1043 +#: db_operations.php:458 libraries/messages.inc.php:1039 #: tbl_operations.php:526 tbl_tracking.php:388 msgid "Structure only" msgstr "Samo strukturu" -#: db_operations.php:459 libraries/messages.inc.php:1041 +#: db_operations.php:459 libraries/messages.inc.php:1037 #: tbl_operations.php:527 tbl_tracking.php:390 msgid "Structure and data" msgstr "Strukturu i podatke" -#: db_operations.php:460 libraries/messages.inc.php:229 tbl_operations.php:528 +#: db_operations.php:460 libraries/messages.inc.php:225 tbl_operations.php:528 #: tbl_tracking.php:389 msgid "Data only" msgstr "Samo podatke" -#: db_operations.php:468 libraries/messages.inc.php:186 +#: db_operations.php:468 libraries/messages.inc.php:182 msgid "CREATE DATABASE before copying" msgstr "Prije kopiranja izradi bazu podataka (CREATE DATABASE)" #: db_operations.php:471 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 -#: libraries/export/sql.php:82 libraries/messages.inc.php:30 +#: libraries/export/sql.php:82 libraries/messages.inc.php:26 #: tbl_operations.php:534 #, php-format msgid "Add %s" msgstr "Dodaj %s" -#: db_operations.php:475 libraries/messages.inc.php:29 tbl_operations.php:297 +#: db_operations.php:475 libraries/messages.inc.php:25 tbl_operations.php:297 #: tbl_operations.php:536 msgid "Add AUTO_INCREMENT value" msgstr "Dodaj vrijednost AUTO_INCREMENT" -#: db_operations.php:479 libraries/messages.inc.php:31 tbl_operations.php:543 +#: db_operations.php:479 libraries/messages.inc.php:27 tbl_operations.php:543 msgid "Add constraints" msgstr "Dodaj prisile" -#: db_operations.php:492 libraries/messages.inc.php:1059 +#: db_operations.php:492 libraries/messages.inc.php:1055 msgid "Switch to copied database" msgstr "Prebaci se na kopiranu bazu podataka" -#: db_operations.php:533 libraries/messages.inc.php:89 +#: db_operations.php:533 libraries/messages.inc.php:85 msgid "BLOB Repository" msgstr "" #: db_operations.php:536 db_tracking.php:76 libraries/common.lib.php:1350 -#: libraries/messages.inc.php:1037 libraries/server_links.inc.php:49 +#: libraries/messages.inc.php:1033 libraries/server_links.inc.php:49 #: server_processlist.php:59 tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "Stanje" @@ -304,12 +304,12 @@ msgctxt "BLOB repository" msgid "Enabled" msgstr "Omogućeno" -#: db_operations.php:548 libraries/messages.inc.php:93 +#: db_operations.php:548 libraries/messages.inc.php:89 #, fuzzy msgid "Disable" msgstr "Onemogućeno" -#: db_operations.php:558 libraries/messages.inc.php:90 +#: db_operations.php:558 libraries/messages.inc.php:86 msgid "Damaged" msgstr "" @@ -327,13 +327,13 @@ msgctxt "BLOB repository" msgid "Disabled" msgstr "Onemogućeno" -#: db_operations.php:574 libraries/messages.inc.php:96 +#: db_operations.php:574 libraries/messages.inc.php:92 #, fuzzy msgid "Enable" msgstr "Omogućeno" #: db_operations.php:598 libraries/Index.class.php:448 -#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:158 +#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:154 #: 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:361 @@ -342,7 +342,7 @@ msgstr "Omogućeno" msgid "Collation" msgstr "Uspoređivanje" -#: db_operations.php:609 libraries/messages.inc.php:742 main.php:316 +#: db_operations.php:609 libraries/messages.inc.php:738 main.php:316 #: pdf_schema.php:34 #, php-format msgid "" @@ -352,58 +352,58 @@ msgstr "" "Dodatne osobine za rad s relacijski tablicama su isključene. Kako biste " "saznali razloge, pritisnite %sovdje%s." -#: db_operations.php:645 libraries/messages.inc.php:264 pdf_pages.php:528 +#: db_operations.php:645 libraries/messages.inc.php:260 pdf_pages.php:528 msgid "Display PDF schema" msgstr "Prikaži PDF shemu" -#: db_operations.php:661 libraries/messages.inc.php:877 pdf_pages.php:529 +#: db_operations.php:661 libraries/messages.inc.php:873 pdf_pages.php:529 msgid "Show grid" msgstr "Prikaži mrežu" -#: db_operations.php:664 libraries/messages.inc.php:874 pdf_pages.php:530 +#: db_operations.php:664 libraries/messages.inc.php:870 pdf_pages.php:530 msgid "Show color" msgstr "Prikaži boju" -#: db_operations.php:666 libraries/messages.inc.php:998 pdf_pages.php:531 +#: db_operations.php:666 libraries/messages.inc.php:994 pdf_pages.php:531 msgid "Show dimension of tables" msgstr "Prikaži dimenzije tablice" -#: db_operations.php:669 libraries/messages.inc.php:52 pdf_pages.php:532 +#: db_operations.php:669 libraries/messages.inc.php:48 pdf_pages.php:532 msgid "Display all tables with the same width" msgstr "Prikazati sve tablice uz istu širinu?" -#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:227 +#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:223 #: pdf_pages.php:533 msgid "Data Dictionary" msgstr "Rječnik podataka" -#: db_operations.php:674 libraries/messages.inc.php:884 pdf_pages.php:534 +#: db_operations.php:674 libraries/messages.inc.php:880 pdf_pages.php:534 msgid "Only show keys" msgstr "" -#: db_operations.php:676 libraries/messages.inc.php:875 pdf_pages.php:535 +#: db_operations.php:676 libraries/messages.inc.php:871 pdf_pages.php:535 msgid "Data Dictionary Format" msgstr "Oblikovanje rječnika podataka" -#: db_operations.php:678 libraries/messages.inc.php:464 pdf_pages.php:537 +#: db_operations.php:678 libraries/messages.inc.php:460 pdf_pages.php:537 msgid "Landscape" msgstr "Položeno" -#: db_operations.php:679 libraries/messages.inc.php:663 pdf_pages.php:538 +#: db_operations.php:679 libraries/messages.inc.php:659 pdf_pages.php:538 msgid "Portrait" msgstr "Portret" -#: db_operations.php:682 libraries/messages.inc.php:599 pdf_pages.php:541 +#: db_operations.php:682 libraries/messages.inc.php:595 pdf_pages.php:541 msgid "Paper size" msgstr "Veličina papira" -#: db_operations.php:706 libraries/messages.inc.php:281 +#: db_operations.php:706 libraries/messages.inc.php:277 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 libraries/messages.inc.php:1087 +#: libraries/header.inc.php:126 libraries/messages.inc.php:1083 #: pdf_pages.php:405 server_privileges.php:1626 server_privileges.php:1682 #: server_privileges.php:1946 server_synchronize.php:423 #: server_synchronize.php:866 tbl_tracking.php:592 test/theme.php:75 @@ -411,176 +411,176 @@ msgid "Table" msgstr "Tablica" #: db_printview.php:105 libraries/db_structure.lib.php:56 -#: libraries/messages.inc.php:735 +#: libraries/messages.inc.php:731 msgid "Records" msgstr "Zapisi" #: db_printview.php:109 libraries/db_structure.lib.php:67 -#: libraries/messages.inc.php:1003 tbl_indexes.php:190 +#: libraries/messages.inc.php:999 tbl_indexes.php:190 msgid "Size" msgstr "Veličina" #: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 -#: libraries/export/sql.php:899 libraries/messages.inc.php:436 +#: libraries/export/sql.php:899 libraries/messages.inc.php:432 msgid "in use" msgstr "u upotrebi" #: db_printview.php:187 libraries/db_info.inc.php:88 -#: libraries/export/sql.php:514 libraries/messages.inc.php:1032 +#: libraries/export/sql.php:514 libraries/messages.inc.php:1028 #: pdf_schema.php:1241 tbl_printview.php:434 tbl_structure.php:810 msgid "Creation" msgstr "Izrada" #: db_printview.php:196 libraries/db_info.inc.php:93 -#: libraries/export/sql.php:519 libraries/messages.inc.php:1036 +#: libraries/export/sql.php:519 libraries/messages.inc.php:1032 #: pdf_schema.php:1246 tbl_printview.php:444 tbl_structure.php:818 msgid "Last update" msgstr "Posljednje ažuriranje" #: db_printview.php:205 libraries/db_info.inc.php:98 -#: libraries/export/sql.php:524 libraries/messages.inc.php:1031 +#: libraries/export/sql.php:524 libraries/messages.inc.php:1027 #: pdf_schema.php:1251 tbl_printview.php:454 tbl_structure.php:826 msgid "Last check" msgstr "Posljednja provjera" -#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1085 +#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1081 #, php-format msgid "%s table(s)" msgstr "%s tablica" #: db_qbe.php:29 libraries/display_tbl.lib.php:1981 -#: libraries/messages.inc.php:1051 libraries/sql_query_form.lib.php:140 +#: libraries/messages.inc.php:1047 libraries/sql_query_form.lib.php:140 #: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131 #: view_operations.php:62 msgid "Your SQL query has been executed successfully" msgstr "Vaš SQL upit uspješno je izvršen" -#: db_qbe.php:42 libraries/messages.inc.php:371 +#: db_qbe.php:42 libraries/messages.inc.php:367 msgid "You have to choose at least one column to display" msgstr "Morate odabrati najmanje jedan stupac za prikazivanje" #: db_qbe.php:200 libraries/db_structure.lib.php:104 -#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1014 +#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1010 msgid "Sort" msgstr "Presloži" #: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111 #: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828 -#: libraries/messages.inc.php:69 server_databases.php:170 +#: libraries/messages.inc.php:65 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314 msgid "Ascending" msgstr "Uzlazno" #: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119 #: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825 -#: libraries/messages.inc.php:251 server_databases.php:170 +#: libraries/messages.inc.php:247 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315 msgid "Descending" msgstr "Silazno" #: db_qbe.php:264 db_tracking.php:78 libraries/display_tbl.lib.php:308 -#: libraries/messages.inc.php:888 tbl_change.php:277 tbl_tracking.php:597 +#: libraries/messages.inc.php:884 tbl_change.php:277 tbl_tracking.php:597 msgid "Show" msgstr "Prikaži" -#: db_qbe.php:300 libraries/messages.inc.php:202 +#: db_qbe.php:300 libraries/messages.inc.php:198 msgid "Criteria" msgstr "Kriterij" #: db_qbe.php:353 db_qbe.php:435 db_qbe.php:527 db_qbe.php:558 -#: libraries/messages.inc.php:718 +#: libraries/messages.inc.php:714 msgid "Ins" msgstr "Ins" #: db_qbe.php:357 db_qbe.php:439 db_qbe.php:524 db_qbe.php:555 -#: libraries/messages.inc.php:56 +#: libraries/messages.inc.php:52 msgid "And" msgstr "I" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:529 db_qbe.php:560 -#: libraries/messages.inc.php:717 +#: libraries/messages.inc.php:713 msgid "Del" 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/messages.inc.php:592 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:588 #: libraries/tbl_properties.inc.php:779 server_privileges.php:258 #: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288 msgid "Or" msgstr "Ili" -#: db_qbe.php:507 libraries/messages.inc.php:516 +#: db_qbe.php:507 libraries/messages.inc.php:512 msgid "Modify" msgstr "Uredi" -#: db_qbe.php:584 libraries/messages.inc.php:33 +#: db_qbe.php:584 libraries/messages.inc.php:29 msgid "Add/Delete Criteria Row" msgstr "Dodaj/Izbriši redak kriterija" -#: db_qbe.php:596 libraries/messages.inc.php:32 +#: db_qbe.php:596 libraries/messages.inc.php:28 msgid "Add/Delete Field Columns" msgstr "Dodaj/Izbriši stupce polja" -#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1192 +#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1188 msgid "Update Query" msgstr "Ažuriraj upit" -#: db_qbe.php:617 libraries/messages.inc.php:1216 +#: db_qbe.php:617 libraries/messages.inc.php:1212 msgid "Use Tables" msgstr "Upotrijebi tablice" -#: db_qbe.php:640 libraries/messages.inc.php:723 +#: db_qbe.php:640 libraries/messages.inc.php:719 #, php-format msgid "SQL query on database %s:" msgstr "SQL upit nad bazom podataka %s:" -#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:823 +#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:819 msgid "Submit Query" msgstr "Podnesi upit" #: db_search.php:68 libraries/auth/config.auth.lib.php:84 #: libraries/auth/config.auth.lib.php:103 #: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52 -#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:26 +#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:22 msgid "Access denied" msgstr "Pristup odbijen" -#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:836 +#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:832 msgid "at least one of the words" msgstr "najmanje jedna riječ" -#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:837 +#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:833 msgid "all words" msgstr "sve riječi" -#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:838 +#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:834 msgid "the exact phrase" msgstr "točan izraz" -#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:839 +#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:835 msgid "as regular expression" msgstr "kao regularan izraz" -#: db_search.php:242 libraries/messages.inc.php:840 +#: db_search.php:242 libraries/messages.inc.php:836 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Rezultati pretraživanja za \"%s\" %s:" -#: db_search.php:260 libraries/messages.inc.php:579 +#: db_search.php:260 libraries/messages.inc.php:575 #, php-format msgid "%s match(es) inside table %s" 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/messages.inc.php:108 +#: db_structure.php:105 libraries/messages.inc.php:104 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468 msgid "Browse" msgstr "Pretraživanje" #: db_search.php:272 libraries/display_tbl.lib.php:1165 -#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:243 +#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:239 #: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406 #: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377 #: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216 @@ -588,45 +588,45 @@ msgstr "Pretraživanje" msgid "Delete" msgstr "Izbriši" -#: db_search.php:285 libraries/messages.inc.php:580 +#: db_search.php:285 libraries/messages.inc.php:576 #, php-format msgid "Total: %s match(es)" msgstr "Ukupno: %s poklapanja" -#: db_search.php:299 libraries/messages.inc.php:832 +#: db_search.php:299 libraries/messages.inc.php:828 msgid "Search in database" msgstr "Traži u bazi podataka" -#: db_search.php:302 libraries/messages.inc.php:835 +#: db_search.php:302 libraries/messages.inc.php:831 msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgstr "Riječi ili vrijednost za pretraživanje (džoker: \"%\"):" -#: db_search.php:307 libraries/messages.inc.php:842 +#: db_search.php:307 libraries/messages.inc.php:838 msgid "Find:" msgstr "Traži:" -#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1017 +#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1013 msgid "Words are separated by a space character (\" \")." msgstr "Riječi su razdvojene znakom razmaka (\" \")." -#: db_search.php:325 libraries/messages.inc.php:834 +#: db_search.php:325 libraries/messages.inc.php:830 msgid "Inside table(s):" msgstr "Unutar tablica:" -#: db_search.php:355 libraries/messages.inc.php:833 +#: db_search.php:355 libraries/messages.inc.php:829 msgid "Inside field:" 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/messages.inc.php:431 libraries/sql_query_form.lib.php:334 +#: libraries/messages.inc.php:427 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/db_links.inc.php:63 libraries/export/latex.php:337 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:1048 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:1044 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 #: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269 msgid "Structure" @@ -635,8 +635,8 @@ 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:1642 -#: libraries/db_links.inc.php:100 libraries/messages.inc.php:272 +#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/db_links.inc.php:100 libraries/messages.inc.php:268 #: 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 @@ -646,40 +646,40 @@ 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:1641 -#: libraries/messages.inc.php:284 libraries/mult_submits.inc.php:39 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: libraries/messages.inc.php:280 libraries/mult_submits.inc.php:39 #: libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Isprazni" -#: db_structure.php:316 libraries/messages.inc.php:1075 +#: db_structure.php:316 libraries/messages.inc.php:1071 #: libraries/tbl_links.inc.php:100 #, php-format msgid "Table %s has been emptied" msgstr "Tablica %s je očišćena" -#: db_structure.php:326 libraries/messages.inc.php:1229 +#: db_structure.php:326 libraries/messages.inc.php:1225 #: 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/messages.inc.php:1074 +#: db_structure.php:326 libraries/messages.inc.php:1070 #: libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "Tablica %s je odbačen" -#: db_structure.php:333 libraries/messages.inc.php:1128 +#: db_structure.php:333 libraries/messages.inc.php:1124 msgid "Tracking is active." msgstr "" -#: db_structure.php:335 libraries/messages.inc.php:1129 +#: db_structure.php:335 libraries/messages.inc.php:1125 msgid "Tracking is not active." msgstr "" #: db_structure.php:420 libraries/display_tbl.lib.php:1944 -#: libraries/messages.inc.php:1228 +#: libraries/messages.inc.php:1224 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -688,83 +688,83 @@ 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 -#: libraries/messages.inc.php:1233 libraries/tbl_info.inc.php:66 +#: libraries/messages.inc.php:1229 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/messages.inc.php:773 libraries/server_links.inc.php:70 +#: libraries/messages.inc.php:769 libraries/server_links.inc.php:70 #: server_replication.php:33 server_replication.php:164 server_status.php:258 msgid "Replication" msgstr "Replikacija" -#: db_structure.php:489 libraries/messages.inc.php:1053 +#: db_structure.php:489 libraries/messages.inc.php:1049 msgid "Sum" msgstr "Zbroj" #: db_structure.php:496 libraries/StorageEngine.class.php:356 -#: libraries/messages.inc.php:239 +#: libraries/messages.inc.php:235 #, 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 #: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086 -#: libraries/messages.inc.php:1243 libraries/mult_submits.inc.php:16 +#: libraries/messages.inc.php:1239 libraries/mult_submits.inc.php:16 #: server_databases.php:346 server_databases.php:351 #: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465 msgid "With selected:" msgstr "S odabirom:" #: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: libraries/messages.inc.php:148 server_databases.php:348 +#: libraries/messages.inc.php:144 server_databases.php:348 #: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459 msgid "Check All" msgstr "Označi sve" #: db_structure.php:531 libraries/display_tbl.lib.php:2077 -#: libraries/messages.inc.php:1184 libraries/replication_gui.lib.php:33 +#: libraries/messages.inc.php:1180 libraries/replication_gui.lib.php:33 #: server_databases.php:350 server_privileges.php:533 #: server_privileges.php:1564 tbl_structure.php:463 msgid "Uncheck All" msgstr "Ukloni sve oznake" -#: db_structure.php:536 libraries/messages.inc.php:150 +#: db_structure.php:536 libraries/messages.inc.php:146 msgid "Check tables having overhead" msgstr "Provjeri za prepunjene tablice" #: db_structure.php:547 db_structure.php:548 db_structure.php:599 -#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:672 +#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:668 #: libraries/mult_submits.inc.php:28 tbl_structure.php:493 #: tbl_structure.php:495 msgid "Print view" msgstr "Prikaz ispisa" -#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:153 +#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:149 #: libraries/mult_submits.inc.php:42 tbl_operations.php:579 msgid "Check table" msgstr "Provjeri tablicu" -#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:590 +#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:586 #: libraries/mult_submits.inc.php:47 tbl_operations.php:619 #: tbl_structure.php:710 tbl_structure.php:712 msgid "Optimize table" msgstr "Optimiziraj tablicu" -#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:758 +#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:754 #: libraries/mult_submits.inc.php:52 tbl_operations.php:609 msgid "Repair table" msgstr "Popravi tablicu" -#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:55 +#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:51 #: libraries/mult_submits.inc.php:57 tbl_operations.php:599 msgid "Analyze table" msgstr "Analiziraj tablicu" #: db_structure.php:557 db_structure.php:558 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/messages.inc.php:310 +#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:306 #: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84 #: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109 #: server_privileges.php:1341 setup/frames/menu.inc.php:22 @@ -772,7 +772,7 @@ msgstr "Analiziraj tablicu" msgid "Export" msgstr "Izvoz" -#: db_tracking.php:66 libraries/messages.inc.php:1151 +#: db_tracking.php:66 libraries/messages.inc.php:1147 #, fuzzy msgid "Tracked tables" msgstr "Provjeri tablicu" @@ -781,7 +781,7 @@ msgstr "Provjeri tablicu" #: 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/header_printview.inc.php:58 libraries/messages.inc.php:212 +#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:208 #: navigation.php:233 server_databases.php:169 server_privileges.php:1621 #: server_privileges.php:1682 server_privileges.php:1940 #: server_processlist.php:56 server_synchronize.php:1179 @@ -789,83 +789,83 @@ msgstr "Provjeri tablicu" msgid "Database" msgstr "Baza podataka" -#: db_tracking.php:73 libraries/messages.inc.php:1146 +#: db_tracking.php:73 libraries/messages.inc.php:1142 #, fuzzy msgid "Last version" msgstr "Izradi relaciju" -#: db_tracking.php:74 libraries/messages.inc.php:1145 tbl_tracking.php:594 +#: db_tracking.php:74 libraries/messages.inc.php:1141 tbl_tracking.php:594 #, fuzzy msgid "Created" msgstr "Izradi" -#: db_tracking.php:75 libraries/messages.inc.php:1147 tbl_tracking.php:595 +#: db_tracking.php:75 libraries/messages.inc.php:1143 tbl_tracking.php:595 msgid "Updated" msgstr "" #: db_tracking.php:77 libraries/Index.class.php:440 -#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:27 +#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:23 #: server_databases.php:203 server_privileges.php:1503 #: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187 msgid "Action" msgstr "Aktivnost" -#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:247 +#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:243 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:106 libraries/messages.inc.php:1142 tbl_tracking.php:548 +#: db_tracking.php:106 libraries/messages.inc.php:1138 tbl_tracking.php:548 #: tbl_tracking.php:606 tbl_tracking.php:613 msgid "active" msgstr "" -#: db_tracking.php:108 libraries/messages.inc.php:1143 tbl_tracking.php:550 +#: db_tracking.php:108 libraries/messages.inc.php:1139 tbl_tracking.php:550 #: tbl_tracking.php:608 tbl_tracking.php:610 msgid "not active" msgstr "" -#: db_tracking.php:121 libraries/messages.inc.php:1160 +#: db_tracking.php:121 libraries/messages.inc.php:1156 #, fuzzy msgid "Versions" msgstr "Perzijski" -#: db_tracking.php:122 libraries/messages.inc.php:1132 tbl_tracking.php:379 +#: db_tracking.php:122 libraries/messages.inc.php:1128 tbl_tracking.php:379 #: tbl_tracking.php:624 msgid "Tracking report" msgstr "" -#: db_tracking.php:123 libraries/messages.inc.php:1144 tbl_tracking.php:251 +#: db_tracking.php:123 libraries/messages.inc.php:1140 tbl_tracking.php:251 #: tbl_tracking.php:624 #, fuzzy msgid "Structure snapshot" msgstr "Samo strukturu" -#: db_tracking.php:152 libraries/messages.inc.php:1154 +#: db_tracking.php:152 libraries/messages.inc.php:1150 #, fuzzy msgid "Untracked tables" msgstr "Provjeri tablicu" -#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1153 +#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1149 #: tbl_structure.php:529 tbl_structure.php:531 #, fuzzy msgid "Track table" msgstr "Provjeri tablicu" -#: db_tracking.php:200 libraries/messages.inc.php:1121 +#: db_tracking.php:200 libraries/messages.inc.php:1117 #, fuzzy msgid "Database Log" msgstr "Baza podataka" -#: export.php:62 libraries/messages.inc.php:312 +#: export.php:62 libraries/messages.inc.php:308 msgid "Selected export type has to be saved in file!" msgstr "Odabrana vrsta izvoza mora biti spremljena u datoteku!" -#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:567 +#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:563 #, php-format msgid "Insufficient space to save the file %s." msgstr "Nema dovoljno prostora za spremanje datoteke %s." -#: export.php:294 libraries/messages.inc.php:324 +#: export.php:294 libraries/messages.inc.php:320 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -873,17 +873,17 @@ msgstr "" "Datoteka %s već postoji na poslužitelju. Promijenite naziv ili označite " "opciju za prepisivanje." -#: export.php:298 export.php:302 libraries/messages.inc.php:562 +#: export.php:298 export.php:302 libraries/messages.inc.php:558 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Web poslužitelj nema dopuštenja za spremanje datoteke %s." -#: export.php:629 libraries/messages.inc.php:276 +#: export.php:629 libraries/messages.inc.php:272 #, php-format msgid "Dump has been saved to file %s." msgstr "Izbacivanje je spremljeno u datoteku %s." -#: import.php:60 libraries/messages.inc.php:1202 +#: import.php:60 libraries/messages.inc.php:1198 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation%" @@ -893,14 +893,14 @@ msgstr "" "sdokumentaciju%s radi uputa o načinima rješavanja ovog ograničenja." #: import.php:279 import.php:332 libraries/File.class.php:849 -#: libraries/File.class.php:961 libraries/messages.inc.php:325 +#: libraries/File.class.php:961 libraries/messages.inc.php:321 msgid "File could not be read" msgstr "Datoteku nije moguće pročitati" #: import.php:287 import.php:296 import.php:315 import.php:324 #: libraries/File.class.php:1031 libraries/File.class.php:1039 #: libraries/File.class.php:1055 libraries/File.class.php:1063 -#: libraries/messages.inc.php:1189 +#: libraries/messages.inc.php:1185 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -910,7 +910,7 @@ msgstr "" "Takva podrška još nije implementirana ili je onemogućena u vašoj " "konfiguraciji." -#: import.php:337 libraries/messages.inc.php:547 +#: import.php:337 libraries/messages.inc.php:543 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -921,29 +921,29 @@ msgstr "" "konfiguracije. Pogledajte ČPP 1.16." #: import.php:372 libraries/display_import.lib.php:24 -#: libraries/messages.inc.php:125 +#: libraries/messages.inc.php:121 msgid "Could not load import plugins, please check your installation!" msgstr "Nije moguće učitati dodatke za uvoz. Provjerite svoju instalaciju!" -#: import.php:397 libraries/messages.inc.php:102 +#: import.php:397 libraries/messages.inc.php:98 msgid "The bookmark has been deleted." msgstr "Favorit je izbrisan." -#: import.php:401 libraries/messages.inc.php:879 +#: import.php:401 libraries/messages.inc.php:875 msgid "Showing bookmark" msgstr "Prikazivanje oznake" -#: import.php:403 libraries/messages.inc.php:101 +#: import.php:403 libraries/messages.inc.php:97 #, php-format msgid "Bookmark %s created" msgstr "Izrađen je favorit %s" -#: import.php:409 import.php:415 libraries/messages.inc.php:407 +#: import.php:409 import.php:415 libraries/messages.inc.php:403 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Uvoz je uspješno dovršen. Izvršeno upita: %d ." -#: import.php:424 libraries/messages.inc.php:1107 +#: import.php:424 libraries/messages.inc.php:1103 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -951,13 +951,13 @@ msgstr "" "Vrijeme za skriptu je isteklo. Ako želite završiti uvoz, ponovo podnesite " "istu datoteku i uvoz će nastaviti." -#: index.php:190 libraries/messages.inc.php:553 +#: index.php:190 libraries/messages.inc.php:549 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" "phpMyAdmin je jednostavniji za upotrebu s preglednikom koji podržava " "okvire." -#: js/messages.php:25 libraries/messages.inc.php:155 +#: js/messages.php:25 libraries/messages.inc.php:151 #: server_synchronize.php:345 server_synchronize.php:357 #: server_synchronize.php:373 server_synchronize.php:380 #: server_synchronize.php:739 server_synchronize.php:767 @@ -965,116 +965,116 @@ msgstr "" msgid "Click to select" msgstr "" -#: js/messages.php:26 libraries/messages.inc.php:156 +#: js/messages.php:26 libraries/messages.inc.php:152 msgid "Click to unselect" msgstr "" #: js/messages.php:27 libraries/import.lib.php:103 -#: libraries/messages.inc.php:550 sql.php:89 +#: libraries/messages.inc.php:546 sql.php:89 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" izjave su onemogućene." -#: js/messages.php:30 libraries/messages.inc.php:270 +#: js/messages.php:30 libraries/messages.inc.php:266 #: libraries/mult_submits.inc.php:258 sql.php:188 msgid "Do you really want to " msgstr "Želite li zaista " -#: js/messages.php:31 libraries/messages.inc.php:271 +#: js/messages.php:31 libraries/messages.inc.php:267 #: libraries/mult_submits.inc.php:258 sql.php:172 msgid "You are about to DESTROY a complete database!" msgstr "UNIŠTIT ĆETE CJELOKUPNU BAZU PODATAKA!" -#: js/messages.php:34 libraries/messages.inc.php:94 +#: js/messages.php:34 libraries/messages.inc.php:90 msgid "You are about to DISABLE a BLOB Repository!" msgstr "" -#: js/messages.php:35 libraries/messages.inc.php:91 +#: js/messages.php:35 libraries/messages.inc.php:87 #, php-format msgid "Are you sure you want to disable all BLOB references for database %s?" msgstr "" -#: js/messages.php:38 libraries/messages.inc.php:342 +#: js/messages.php:38 libraries/messages.inc.php:338 msgid "Missing value in the form!" msgstr "U obrascu nedostaje vrijednost!" -#: js/messages.php:39 libraries/messages.inc.php:570 +#: js/messages.php:39 libraries/messages.inc.php:566 msgid "This is not a number!" msgstr "Ovo nije brojka!" -#: js/messages.php:42 libraries/messages.inc.php:380 +#: js/messages.php:42 libraries/messages.inc.php:376 msgid "The host name is empty!" msgstr "Naziv računala je prazan!" -#: js/messages.php:43 libraries/messages.inc.php:1208 +#: js/messages.php:43 libraries/messages.inc.php:1204 msgid "The user name is empty!" msgstr "Korisničko ime je prazno!" -#: js/messages.php:44 libraries/messages.inc.php:607 +#: js/messages.php:44 libraries/messages.inc.php:603 #: server_privileges.php:1197 user_password.php:70 msgid "The password is empty!" msgstr "Lozinka je prazna!" -#: js/messages.php:45 libraries/messages.inc.php:609 +#: js/messages.php:45 libraries/messages.inc.php:605 #: server_privileges.php:1195 user_password.php:73 msgid "The passwords aren't the same!" msgstr "Lozinke se ne podudaraju!" -#: js/messages.php:49 libraries/messages.inc.php:123 pmd_general.php:342 +#: js/messages.php:49 libraries/messages.inc.php:119 pmd_general.php:342 #: pmd_general.php:379 msgid "Cancel" msgstr "Odustani" -#: js/messages.php:52 libraries/messages.inc.php:514 +#: js/messages.php:52 libraries/messages.inc.php:510 msgid "Modifications have been saved" msgstr "Izmjene su spremljene" -#: js/messages.php:53 libraries/messages.inc.php:741 +#: js/messages.php:53 libraries/messages.inc.php:737 msgid "Relation deleted" msgstr "Relacija je izbrisana" -#: js/messages.php:54 libraries/messages.inc.php:340 +#: js/messages.php:54 libraries/messages.inc.php:336 msgid "FOREIGN KEY relation added" msgstr "Dodana je relacija FOREIGN KEY" -#: js/messages.php:55 libraries/messages.inc.php:434 +#: js/messages.php:55 libraries/messages.inc.php:430 msgid "Internal relation added" msgstr "Dodane interne relacije" -#: js/messages.php:56 libraries/messages.inc.php:299 +#: js/messages.php:56 libraries/messages.inc.php:295 msgid "Error: Relation not added." msgstr "Pogreška: Relacija nije dodana." -#: js/messages.php:57 libraries/messages.inc.php:300 +#: js/messages.php:57 libraries/messages.inc.php:296 msgid "Error: relation already exists." msgstr "Pogreška: Relacija već postoji." -#: js/messages.php:58 libraries/messages.inc.php:302 +#: js/messages.php:58 libraries/messages.inc.php:298 msgid "Error saving coordinates for Designer." msgstr "Pogreška tijekom spremanja koordinata za Kreatora." -#: js/messages.php:59 libraries/messages.inc.php:351 +#: js/messages.php:59 libraries/messages.inc.php:347 #: libraries/relation.lib.php:107 msgid "General relation features" msgstr "Opće osobine relacija" -#: js/messages.php:59 libraries/messages.inc.php:260 +#: js/messages.php:59 libraries/messages.inc.php:256 #: libraries/relation.lib.php:101 libraries/relation.lib.php:108 msgid "Disabled" msgstr "Onemogućeno" -#: js/messages.php:60 libraries/messages.inc.php:850 +#: js/messages.php:60 libraries/messages.inc.php:846 msgid "Select referenced key" msgstr "Odaberite referentni ključ" -#: js/messages.php:61 libraries/messages.inc.php:848 +#: js/messages.php:61 libraries/messages.inc.php:844 msgid "Select Foreign Key" msgstr "Odaberite strani ključ" -#: js/messages.php:62 libraries/messages.inc.php:653 +#: js/messages.php:62 libraries/messages.inc.php:649 msgid "Please select the primary key or a unique key" msgstr "Odaberite primarni ključ ili jedinstveni ključ" -#: js/messages.php:63 libraries/messages.inc.php:142 pmd_general.php:77 +#: js/messages.php:63 libraries/messages.inc.php:138 pmd_general.php:77 #: tbl_relation.php:548 msgid "Choose field to display" msgstr "Odaberi polje za prikaz" @@ -1093,9 +1093,9 @@ msgid "Prev" msgstr "Prethodni" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2332 -#: libraries/common.lib.php:2335 libraries/display_tbl.lib.php:338 -#: libraries/messages.inc.php:543 server_binlog.php:205 server_binlog.php:207 +#: js/messages.php:77 libraries/common.lib.php:2344 +#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: libraries/messages.inc.php:539 server_binlog.php:205 server_binlog.php:207 #: tbl_printview.php:424 tbl_structure.php:802 msgid "Next" msgstr "Sljedeće" @@ -1170,27 +1170,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1543 +#: js/messages.php:97 libraries/common.lib.php:1555 msgid "Jan" msgstr "Sij" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1545 +#: js/messages.php:99 libraries/common.lib.php:1557 msgid "Feb" msgstr "Velj" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1547 +#: js/messages.php:101 libraries/common.lib.php:1559 msgid "Mar" msgstr "Ožu" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1549 +#: js/messages.php:103 libraries/common.lib.php:1561 msgid "Apr" msgstr "Tra" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1551 +#: js/messages.php:105 libraries/common.lib.php:1563 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1198,37 +1198,37 @@ msgid "May" msgstr "Svi" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1553 +#: js/messages.php:107 libraries/common.lib.php:1565 msgid "Jun" msgstr "Lip" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1555 +#: js/messages.php:109 libraries/common.lib.php:1567 msgid "Jul" msgstr "Srp" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1557 +#: js/messages.php:111 libraries/common.lib.php:1569 msgid "Aug" msgstr "Kol" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1559 +#: js/messages.php:113 libraries/common.lib.php:1571 msgid "Sep" msgstr "Ruj" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1561 +#: js/messages.php:115 libraries/common.lib.php:1573 msgid "Oct" msgstr "Lis" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1563 +#: js/messages.php:117 libraries/common.lib.php:1575 msgid "Nov" msgstr "Stu" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1565 +#: js/messages.php:119 libraries/common.lib.php:1577 msgid "Dec" msgstr "Pro" @@ -1269,37 +1269,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1568 +#: js/messages.php:132 libraries/common.lib.php:1580 msgid "Sun" msgstr "Ned" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1570 +#: js/messages.php:134 libraries/common.lib.php:1582 msgid "Mon" msgstr "Pon" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1572 +#: js/messages.php:136 libraries/common.lib.php:1584 msgid "Tue" msgstr "Uto" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1574 +#: js/messages.php:138 libraries/common.lib.php:1586 msgid "Wed" msgstr "Sri" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1576 +#: js/messages.php:140 libraries/common.lib.php:1588 msgid "Thu" msgstr "Čet" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1578 +#: js/messages.php:142 libraries/common.lib.php:1590 msgid "Fri" msgstr "Pet" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1580 +#: js/messages.php:144 libraries/common.lib.php:1592 msgid "Sat" msgstr "Sub" @@ -1375,23 +1375,23 @@ msgstr "u upotrebi" msgid "Second" msgstr "po sekundi" -#: libraries/Config.class.php:1015 libraries/messages.inc.php:338 +#: libraries/Config.class.php:1015 libraries/messages.inc.php:334 msgid "Font size" msgstr "Veličina fonta" #: libraries/File.class.php:344 libraries/File.class.php:432 #: libraries/File.class.php:569 libraries/File.class.php:708 -#: libraries/messages.inc.php:1201 +#: libraries/messages.inc.php:1197 msgid "Unknown error in file upload." msgstr "Nepoznata pogreška tijekom učitavanja datoteke." -#: libraries/File.class.php:414 libraries/messages.inc.php:1198 +#: libraries/File.class.php:414 libraries/messages.inc.php:1194 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "Učitana datoteka nadmašuje uputu upload_max_filesize (najveća veličina " "datoteke) u datoteci php.ini." -#: libraries/File.class.php:417 libraries/messages.inc.php:1197 +#: libraries/File.class.php:417 libraries/messages.inc.php:1193 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -1399,56 +1399,56 @@ msgstr "" "Učitana datoteka nadmašuje uputu MAX_FILE_SIZE (najveća veličina datoteke), " "određenu u HTML obliku." -#: libraries/File.class.php:420 libraries/messages.inc.php:1200 +#: libraries/File.class.php:420 libraries/messages.inc.php:1196 msgid "The uploaded file was only partially uploaded." msgstr "Učitana datoteka bila je djelomično učitana." -#: libraries/File.class.php:423 libraries/messages.inc.php:1199 +#: libraries/File.class.php:423 libraries/messages.inc.php:1195 msgid "Missing a temporary folder." msgstr "Nedostaje mapa privremene pohrane." -#: libraries/File.class.php:426 libraries/messages.inc.php:1195 +#: libraries/File.class.php:426 libraries/messages.inc.php:1191 msgid "Failed to write file to disk." msgstr "Zapisivanje datoteke na disk nije uspjelo." -#: libraries/File.class.php:429 libraries/messages.inc.php:1196 +#: libraries/File.class.php:429 libraries/messages.inc.php:1192 msgid "File upload stopped by extension." msgstr "Učitavanje datoteke prekinuto je uslijed ekstenzije." -#: libraries/File.class.php:908 libraries/messages.inc.php:319 +#: libraries/File.class.php:908 libraries/messages.inc.php:315 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "Pogreška tijekom premještanja učitane datoteke. Pogledajte ČPP 1.11" -#: libraries/Index.class.php:428 libraries/messages.inc.php:554 +#: libraries/Index.class.php:428 libraries/messages.inc.php:550 #: tbl_relation.php:529 msgid "No index defined!" msgstr "Nema definiranog indeksa!" -#: libraries/Index.class.php:433 libraries/messages.inc.php:411 +#: libraries/Index.class.php:433 libraries/messages.inc.php:407 #: server_databases.php:132 tbl_tracking.php:316 msgid "Indexes" msgstr "Indeksi" -#: libraries/Index.class.php:444 libraries/messages.inc.php:1186 +#: libraries/Index.class.php:444 libraries/messages.inc.php:1182 #: 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:475 tbl_tracking.php:322 msgid "Unique" msgstr "Jedinstveno" -#: libraries/Index.class.php:445 libraries/messages.inc.php:596 +#: libraries/Index.class.php:445 libraries/messages.inc.php:592 #: tbl_tracking.php:323 msgid "Packed" msgstr "Pakirano" -#: libraries/Index.class.php:447 libraries/messages.inc.php:131 +#: libraries/Index.class.php:447 libraries/messages.inc.php:127 #: tbl_tracking.php:325 msgid "Cardinality" msgstr "Najvažnije" -#: libraries/Index.class.php:450 libraries/messages.inc.php:162 +#: libraries/Index.class.php:450 libraries/messages.inc.php:158 #: tbl_tracking.php:279 tbl_tracking.php:328 msgid "Comment" msgstr "Komentar" @@ -1456,22 +1456,22 @@ msgstr "Komentar" #: libraries/Index.class.php:466 libraries/common.lib.php:616 #: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:280 pdf_pages.php:280 +#: libraries/messages.inc.php:276 pdf_pages.php:280 #: setup/frames/index.inc.php:124 setup/lib/messages.inc.php:352 #: tbl_row_action.php:69 msgid "Edit" msgstr "Uređivanje" -#: libraries/Index.class.php:472 libraries/messages.inc.php:666 +#: libraries/Index.class.php:472 libraries/messages.inc.php:662 msgid "The primary key has been dropped" msgstr "Primarni ključ je odbačen" -#: libraries/Index.class.php:476 libraries/messages.inc.php:413 +#: libraries/Index.class.php:476 libraries/messages.inc.php:409 #, php-format msgid "Index %s has been dropped" msgstr "Index %s je odbačen" -#: libraries/Index.class.php:576 libraries/messages.inc.php:412 +#: libraries/Index.class.php:576 libraries/messages.inc.php:408 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -1479,7 +1479,7 @@ 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/messages.inc.php:218 +#: libraries/List_Database.class.php:431 libraries/messages.inc.php:214 #: libraries/server_links.inc.php:41 server_databases.php:88 #: server_privileges.php:1621 setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" @@ -1509,85 +1509,85 @@ msgid_plural "%1$d rows inserted." msgstr[0] "Umetnuto redaka: %1$d." msgstr[1] "Umetnuto redaka: %1$d." -#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:549 +#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:545 msgid "" "There is no detailed status information available for this storage engine." msgstr "Za ovaj pogon pohranjivanje ne postoje raspoloživi podaci." -#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:291 +#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:287 #, php-format msgid "%s is available on this MySQL server." msgstr "%s je raspoloživ na ovom MySQL poslužitelju." -#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:292 +#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:288 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s je onemogućen za ovaj MySQL poslužitelj." -#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:294 +#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:290 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "Ovaj MySQL poslužitelj ne podržava pogon pohranjivanja %s." -#: libraries/Table.class.php:1019 libraries/messages.inc.php:443 +#: libraries/Table.class.php:1019 libraries/messages.inc.php:439 msgid "Invalid database" msgstr "Neispravna baza podataka" -#: libraries/Table.class.php:1033 libraries/messages.inc.php:450 +#: libraries/Table.class.php:1033 libraries/messages.inc.php:446 #: tbl_get_field.php:26 msgid "Invalid table name" msgstr "Neispravan naziv tablice" -#: libraries/Table.class.php:1048 libraries/messages.inc.php:301 +#: libraries/Table.class.php:1048 libraries/messages.inc.php:297 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "Pogreška tijekom preimenovanja tablice %1$s u %2$s" -#: libraries/Table.class.php:1132 libraries/messages.inc.php:754 +#: libraries/Table.class.php:1132 libraries/messages.inc.php:750 #, php-format msgid "Table %s has been renamed to %s" msgstr "Tablica %s preimenovana je u %s" -#: libraries/Theme.class.php:162 libraries/messages.inc.php:1099 +#: libraries/Theme.class.php:162 libraries/messages.inc.php:1095 #, php-format msgid "No valid image path for theme %s found!" msgstr "Valjana putanja slika za temu %s nije pronađena!" -#: libraries/Theme.class.php:384 libraries/messages.inc.php:1097 +#: libraries/Theme.class.php:384 libraries/messages.inc.php:1093 msgid "No preview available." msgstr "Nema raspoloživog pregleda." -#: libraries/Theme.class.php:387 libraries/messages.inc.php:1089 +#: libraries/Theme.class.php:387 libraries/messages.inc.php:1085 msgid "take it" msgstr "Dodijeli" -#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1096 +#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1092 #, php-format msgid "Default theme %s not found!" msgstr "Zadana tema %s nije pronađena!" -#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1098 +#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1094 #, php-format msgid "Theme %s not found!" msgstr "Tema %s nije pronađena!" -#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1100 +#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1096 #, php-format msgid "Theme path not found for theme %s!" msgstr "Za temu %s nije pronađena putanje tema!" -#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1101 +#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1097 #: test/theme.php:161 themes.php:21 themes.php:41 msgid "Theme / Style" msgstr "Tema / Stil" -#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:172 +#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:168 msgid "Cannot connect: invalid settings." msgstr "Povezivanje nije moguće: neispravna postavka." #: libraries/auth/config.auth.lib.php:92 #: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65 -#: libraries/messages.inc.php:1238 test/theme.php:152 +#: libraries/messages.inc.php:1234 test/theme.php:152 #, php-format msgid "Welcome to %s" msgstr "Dobro došli u %s" @@ -1613,104 +1613,104 @@ msgstr "" "računala, korisničko ime i lozinku, te provjerite da se odgovaraju podacima " "koje vam je dao administrator MySQL poslužitelja." -#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:488 +#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:484 msgid "Log in" msgstr "Prijava" #: libraries/auth/cookie.auth.lib.php:246 -#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:659 +#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:655 #: libraries/navigation_header.inc.php:93 #: libraries/navigation_header.inc.php:95 msgid "phpMyAdmin documentation" msgstr "phpMyAdmin dokumentacija" #: libraries/auth/cookie.auth.lib.php:258 -#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:492 +#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:488 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:493 +#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:489 msgid "Server:" msgstr "Poslužitelj" -#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:494 +#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:490 msgid "Username:" msgstr "Korisničko ime:" -#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:491 +#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:487 msgid "Password:" msgstr "Lozinka:" -#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:854 +#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:850 msgid "Server Choice" msgstr "Odabir poslužitelja" #: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 -#: libraries/messages.inc.php:177 +#: libraries/messages.inc.php:173 msgid "Cookies must be enabled past this point." msgstr "Od ovog mjesta potrebno je omogućiti kolačiće." #: libraries/auth/cookie.auth.lib.php:671 -#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:489 +#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:485 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" #: libraries/auth/cookie.auth.lib.php:675 -#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:544 +#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:540 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "Nije bilo nikakvih aktivnosti tijekom %s sekunda. Prijavite se ponovo." #: libraries/auth/cookie.auth.lib.php:685 #: libraries/auth/cookie.auth.lib.php:687 -#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:126 +#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:122 msgid "Cannot log in to the MySQL server" msgstr "Prijavljivanje na MySQL poslužitelj nije moguće" -#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1245 +#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1241 msgid "Wrong username/password. Access denied." msgstr "Pogrešno korisničko ime ili lozinka. Pristup odbijen." #: libraries/auth/swekey/swekey.auth.lib.php:118 -#: libraries/messages.inc.php:1057 +#: libraries/messages.inc.php:1053 #, php-format msgid "File %s does not contain any key id" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:157 #: libraries/auth/swekey/swekey.auth.lib.php:180 -#: libraries/messages.inc.php:1056 +#: libraries/messages.inc.php:1052 msgid "Hardware authentication failed" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:166 -#: libraries/messages.inc.php:1058 +#: libraries/messages.inc.php:1054 msgid "No valid authentication key plugged" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:202 -#: libraries/messages.inc.php:1055 +#: libraries/messages.inc.php:1051 msgid "Authenticating..." msgstr "" -#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1230 +#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1226 msgid "View image" msgstr "" -#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:652 +#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:648 msgid "Play audio" msgstr "" -#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1232 +#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1228 msgid "View video" msgstr "" -#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:269 +#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:265 msgid "Download file" msgstr "" -#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:128 +#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:124 msgid "" "Couldn't load the iconv or recode extension needed for charset conversion. " "Either configure PHP to enable these extensions or disable charset " @@ -1722,7 +1722,7 @@ msgstr "" #: libraries/charset_conversion.lib.php:79 #: libraries/charset_conversion.lib.php:90 -#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:130 +#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:126 msgid "" "Couldn't use the iconv, libiconv, or recode_string functions, although the " "necessary extensions appear to be loaded. Check your PHP configuration." @@ -1731,7 +1731,7 @@ msgstr "" "izgleda da su sva potrebna proširenja učitana. Provjerite svoju PHP " "konfiguraciju." -#: libraries/common.inc.php:583 libraries/messages.inc.php:170 +#: libraries/common.inc.php:583 libraries/messages.inc.php:166 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!" @@ -1767,7 +1767,7 @@ msgstr "" msgid "Invalid server index: %s" msgstr "Neispravan indeks poslužitelja: \"%s\"" -#: libraries/common.inc.php:636 libraries/messages.inc.php:448 +#: libraries/common.inc.php:636 libraries/messages.inc.php:444 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" @@ -1775,16 +1775,16 @@ msgstr "" "konfiguraciju." #: libraries/common.inc.php:645 libraries/header.inc.php:96 -#: libraries/messages.inc.php:856 libraries/select_server.lib.php:41 +#: libraries/messages.inc.php:852 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/messages.inc.php:437 +#: libraries/common.inc.php:823 libraries/messages.inc.php:433 msgid "Invalid authentication method set in configuration:" msgstr "Neispravan komplet načina provjere vjerodostojnosti u konfiguraciji:" -#: libraries/common.lib.php:147 libraries/messages.inc.php:499 +#: libraries/common.lib.php:147 libraries/messages.inc.php:495 #, php-format msgid "Max: %s%s" msgstr "Najv: %s%s" @@ -1806,7 +1806,7 @@ msgstr "Poslano" #: libraries/common.lib.php:428 libraries/common.lib.php:430 #: libraries/common.lib.php:432 libraries/common.lib.php:448 #: libraries/common.lib.php:450 libraries/dbg/setup.php:25 -#: libraries/display_export.lib.php:164 libraries/messages.inc.php:267 +#: libraries/display_export.lib.php:164 libraries/messages.inc.php:263 #: libraries/relation.lib.php:97 libraries/sql_query_form.lib.php:451 #: libraries/sql_query_form.lib.php:454 main.php:229 pdf_pages.php:37 #: pdf_pages.php:43 pdf_pages.php:49 pdf_pages.php:54 @@ -1816,55 +1816,55 @@ msgstr "Dokumentacija" #: libraries/common.lib.php:581 libraries/core.lib.php:234 #: libraries/core.lib.php:263 libraries/import.lib.php:134 -#: libraries/messages.inc.php:297 pdf_schema.php:32 pdf_schema.php:232 +#: libraries/messages.inc.php:293 pdf_schema.php:32 pdf_schema.php:232 #: tbl_change.php:1027 tbl_operations.php:213 tbl_relation.php:290 #: view_operations.php:62 msgid "Error" msgstr "Pogreška" #: libraries/common.lib.php:595 libraries/header_printview.inc.php:61 -#: libraries/messages.inc.php:1023 server_processlist.php:60 +#: libraries/messages.inc.php:1019 server_processlist.php:60 #: server_status.php:247 msgid "SQL query" msgstr "SQL upit" -#: libraries/common.lib.php:634 libraries/messages.inc.php:538 +#: libraries/common.lib.php:634 libraries/messages.inc.php:534 msgid "MySQL said: " msgstr "MySQL je poručio: " -#: libraries/common.lib.php:667 libraries/messages.inc.php:76 +#: libraries/common.lib.php:667 libraries/messages.inc.php:72 #: pdf_schema.php:241 user_password.php:115 msgid "Back" msgstr "Nazad" -#: libraries/common.lib.php:1177 libraries/messages.inc.php:309 +#: libraries/common.lib.php:1177 libraries/messages.inc.php:305 #: setup/lib/messages.inc.php:353 msgid "Explain SQL" msgstr "Objasni SQL" -#: libraries/common.lib.php:1180 libraries/messages.inc.php:551 +#: libraries/common.lib.php:1180 libraries/messages.inc.php:547 msgid "Skip Explain SQL" msgstr "Preskoči Objasni SQL" -#: libraries/common.lib.php:1212 libraries/messages.inc.php:563 +#: libraries/common.lib.php:1212 libraries/messages.inc.php:559 msgid "Without PHP Code" msgstr "Bez PHP koda" -#: libraries/common.lib.php:1215 libraries/messages.inc.php:649 +#: libraries/common.lib.php:1215 libraries/messages.inc.php:645 #: setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "Izradi PHP kod" -#: libraries/common.lib.php:1233 libraries/messages.inc.php:737 +#: libraries/common.lib.php:1233 libraries/messages.inc.php:733 #: server_status.php:341 setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "Osvježi" -#: libraries/common.lib.php:1242 libraries/messages.inc.php:575 +#: libraries/common.lib.php:1242 libraries/messages.inc.php:571 msgid "Skip Validate SQL" msgstr "Preskoči provjeru valjanosti SQL-a" -#: libraries/common.lib.php:1245 libraries/messages.inc.php:1220 +#: libraries/common.lib.php:1245 libraries/messages.inc.php:1216 #: setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "Provjera valjanosti SQL-a" @@ -1880,11 +1880,11 @@ msgid "Inline" msgstr "Pogoni" #: libraries/common.lib.php:1332 libraries/common.lib.php:1347 -#: libraries/messages.inc.php:713 +#: libraries/messages.inc.php:709 msgid "Profiling" msgstr "Izrada profila" -#: libraries/common.lib.php:1351 libraries/messages.inc.php:1108 +#: libraries/common.lib.php:1351 libraries/messages.inc.php:1104 #: libraries/tbl_triggers.lib.php:28 server_processlist.php:58 msgid "Time" msgstr "Vrijeme" @@ -1918,46 +1918,56 @@ msgstr "PB" msgid "EiB" msgstr "EB" +#. l10n: Thousands separator +#: libraries/common.lib.php:1417 +msgid "," +msgstr "." + +#. l10n: Decimal separator +#: libraries/common.lib.php:1419 +msgid "." +msgstr "," + #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1584 +#: libraries/common.lib.php:1596 #: libraries/transformations/text_plain__dateformat.inc.php:28 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y u %I:%M %p" -#: libraries/common.lib.php:1886 +#: libraries/common.lib.php:1898 #, 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:2301 libraries/common.lib.php:2304 -#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:664 +#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:660 #: server_status.php:608 msgid "Begin" msgstr "Na vrh stranice" -#: libraries/common.lib.php:2302 libraries/common.lib.php:2305 -#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:665 +#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:661 #: server_binlog.php:168 server_binlog.php:170 msgid "Previous" msgstr "Prethodni" -#: libraries/common.lib.php:2333 libraries/common.lib.php:2336 -#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:289 +#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:285 msgid "End" msgstr "Završetak" -#: libraries/common.lib.php:2409 libraries/messages.inc.php:455 +#: libraries/common.lib.php:2421 libraries/messages.inc.php:451 #, php-format msgid "Jump to database "%s"." msgstr "Skoči do baze podataka \"%s\"." -#: libraries/common.lib.php:2429 libraries/messages.inc.php:461 +#: libraries/common.lib.php:2441 libraries/messages.inc.php:457 #, 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/core.lib.php:286 libraries/dbg/setup.php:22 -#: libraries/messages.inc.php:127 +#: libraries/messages.inc.php:123 #, php-format msgid "" "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " @@ -1967,118 +1977,118 @@ msgstr "" "[/em][/a] . Provjerite svoju PHP konfiguraciju." #: libraries/db_events.inc.php:20 libraries/db_events.inc.php:22 -#: libraries/export/sql.php:415 libraries/messages.inc.php:306 +#: libraries/export/sql.php:415 libraries/messages.inc.php:302 msgid "Events" msgstr "Događaji" #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 -#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:541 +#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:537 #: libraries/tbl_triggers.lib.php:27 setup/frames/index.inc.php:112 msgid "Name" msgstr "Naziv" -#: libraries/db_links.inc.php:45 libraries/messages.inc.php:216 +#: libraries/db_links.inc.php:45 libraries/messages.inc.php:212 #, php-format msgid "Database %s has been dropped." msgstr "Baza podataka %s je odbačena." #: libraries/db_links.inc.php:57 libraries/db_links.inc.php:58 -#: libraries/db_links.inc.php:59 libraries/messages.inc.php:234 +#: libraries/db_links.inc.php:59 libraries/messages.inc.php:230 msgid "Database seems to be empty!" msgstr "Baza podataka izgleda praznom!" -#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1025 +#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1021 #: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60 #: querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1152 +#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1148 #: libraries/tbl_links.inc.php:69 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:86 libraries/messages.inc.php:719 +#: libraries/db_links.inc.php:86 libraries/messages.inc.php:715 msgid "Query" msgstr "Upit" -#: libraries/db_links.inc.php:91 libraries/messages.inc.php:253 +#: libraries/db_links.inc.php:91 libraries/messages.inc.php:249 msgid "Designer" msgstr "Kreator" -#: libraries/db_links.inc.php:98 libraries/messages.inc.php:397 +#: libraries/db_links.inc.php:98 libraries/messages.inc.php:393 #: libraries/server_links.inc.php:88 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:104 libraries/messages.inc.php:587 +#: libraries/db_links.inc.php:104 libraries/messages.inc.php:583 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" msgstr "Operacije" -#: libraries/db_links.inc.php:111 libraries/messages.inc.php:709 +#: libraries/db_links.inc.php:111 libraries/messages.inc.php:705 #: libraries/server_links.inc.php:66 server_privileges.php:72 #: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117 msgid "Privileges" msgstr "Privilegije" #: libraries/db_routines.inc.php:30 libraries/db_routines.inc.php:32 -#: libraries/messages.inc.php:812 +#: libraries/messages.inc.php:808 msgid "Routines" msgstr "Rutine" -#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:811 +#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:807 msgid "Return type" msgstr "Vrsta povratka" #: libraries/db_structure.lib.php:57 libraries/display_tbl.lib.php:1848 -#: libraries/messages.inc.php:65 +#: libraries/messages.inc.php:61 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "Može biti približno. Pogledajte ČPP 3.11" -#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:593 +#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:589 #: server_databases.php:142 tbl_printview.php:336 tbl_structure.php:683 msgid "Overhead" msgstr "Prepunjenje" #: libraries/dbi/mysql.dbi.lib.php:112 libraries/dbi/mysqli.dbi.lib.php:124 -#: libraries/messages.inc.php:176 +#: libraries/messages.inc.php:172 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Povezivanje kontrolnih korisnika na način kako je definirano u vašoj " "konfiguraciji nije uspjelo." #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 -#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:855 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:851 msgid "The server is not responding" msgstr "Poslužitelj ne odgovara" #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:1010 +#: libraries/messages.inc.php:1006 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 libraries/messages.inc.php:255 +#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:251 #: tbl_structure.php:609 msgid "Details..." msgstr "Detalji..." -#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:143 +#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:139 #: main.php:91 user_password.php:111 user_password.php:129 msgid "Change password" msgstr "Promijeni lozinku" -#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:561 +#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:557 #: libraries/replication_gui.lib.php:341 server_privileges.php:768 msgid "No Password" msgstr "Bez lozinke" -#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:610 +#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:606 #: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60 #: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335 #: libraries/replication_gui.lib.php:345 server_privileges.php:757 @@ -2087,13 +2097,13 @@ msgstr "Bez lozinke" msgid "Password" msgstr "Lozinka" -#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:806 +#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:802 #: libraries/replication_gui.lib.php:349 libraries/replication_gui.lib.php:352 #: server_privileges.php:776 server_privileges.php:779 msgid "Re-type" msgstr "Ponovite" -#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:608 +#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:604 msgid "Password Hashing" msgstr "Izrada presjeka lozinke" @@ -2103,89 +2113,89 @@ msgstr "Izrada presjeka lozinke" msgid "MySQL 4.0 compatible" msgstr "MySQL 4.0 kompatibilno" -#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:353 +#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:349 #: libraries/replication_gui.lib.php:356 server_privileges.php:783 msgid "Generate Password" msgstr "Generiraj lozinku" -#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:352 +#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:348 #: libraries/replication_gui.lib.php:359 server_privileges.php:786 msgid "Generate" msgstr "Generiraj" #: libraries/display_create_database.lib.php:22 -#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:189 +#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:185 msgid "Create new database" msgstr "Izradi novu bazu podataka" -#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:185 +#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:181 msgid "Create" msgstr "Izradi" -#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:564 +#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:560 #: server_privileges.php:74 server_privileges.php:1388 #: server_replication.php:35 msgid "No Privileges" msgstr "Bez privilegija" -#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:445 +#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:441 msgid "Table must have at least one field." msgstr "Tablica mora sadržavati najmanje jedno polje." -#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:190 +#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:186 #, php-format msgid "Create table on database %s" msgstr "Izradi novu tablicu u bazi podataka %s" -#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:577 +#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:573 msgid "Number of fields" msgstr "Broj polja" -#: libraries/display_export.lib.php:42 libraries/messages.inc.php:124 +#: libraries/display_export.lib.php:42 libraries/messages.inc.php:120 msgid "Could not load export plugins, please check your installation!" msgstr "Nije moguće učitati dodatke za izvoz. Provjerite svoju instalaciju!" -#: libraries/display_export.lib.php:107 libraries/messages.inc.php:277 +#: libraries/display_export.lib.php:107 libraries/messages.inc.php:273 #, php-format msgid "Dump %s row(s) starting at record # %s" msgstr "Izbaci %s redaka, počevši od zapisa # %s." -#: libraries/display_export.lib.php:115 libraries/messages.inc.php:274 +#: libraries/display_export.lib.php:115 libraries/messages.inc.php:270 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:125 libraries/messages.inc.php:852 +#: libraries/display_export.lib.php:125 libraries/messages.inc.php:848 #: setup/lib/messages.inc.php:82 msgid "Save as file" msgstr "Spremi kao datoteku" -#: libraries/display_export.lib.php:134 libraries/messages.inc.php:828 +#: libraries/display_export.lib.php:134 libraries/messages.inc.php:824 #, php-format msgid "Save on server in %s directory" msgstr "Spremi na poslužitelju u mapi %s" -#: libraries/display_export.lib.php:142 libraries/messages.inc.php:594 +#: libraries/display_export.lib.php:142 libraries/messages.inc.php:590 #: setup/lib/messages.inc.php:90 msgid "Overwrite existing file(s)" msgstr "Prepiši postojeće datoteke" -#: libraries/display_export.lib.php:148 libraries/messages.inc.php:330 +#: libraries/display_export.lib.php:148 libraries/messages.inc.php:326 msgid "File name template" msgstr "Predložak naziva datoteka" -#: libraries/display_export.lib.php:152 libraries/messages.inc.php:327 +#: libraries/display_export.lib.php:152 libraries/messages.inc.php:323 msgid "server name" msgstr "naziv poslužitelja" -#: libraries/display_export.lib.php:155 libraries/messages.inc.php:326 +#: libraries/display_export.lib.php:155 libraries/messages.inc.php:322 msgid "database name" msgstr "naziv baze podataka" -#: libraries/display_export.lib.php:158 libraries/messages.inc.php:328 +#: libraries/display_export.lib.php:158 libraries/messages.inc.php:324 msgid "table name" msgstr "naziv tablice" -#: libraries/display_export.lib.php:162 libraries/messages.inc.php:329 +#: libraries/display_export.lib.php:162 libraries/messages.inc.php:325 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2196,24 +2206,24 @@ msgstr "" "naredbe oblikovanja vremena. Dodatno se mogu dogoditi sljedeća " "preoblikovanja: \"%3$s\". Ostatak teksta bit će zadržan u izvornom obliku." -#: libraries/display_export.lib.php:202 libraries/messages.inc.php:331 +#: libraries/display_export.lib.php:202 libraries/messages.inc.php:327 msgid "remember template" msgstr "zapamti predložak" #: libraries/display_export.lib.php:210 libraries/display_import.lib.php:178 -#: libraries/display_import.lib.php:191 libraries/messages.inc.php:145 +#: libraries/display_import.lib.php:191 libraries/messages.inc.php:141 #: libraries/sql_query_form.lib.php:549 msgid "Character set of the file:" msgstr "Tablica znakova za datoteku:" -#: libraries/display_export.lib.php:235 libraries/messages.inc.php:166 +#: libraries/display_export.lib.php:235 libraries/messages.inc.php:162 #: setup/lib/messages.inc.php:84 msgid "Compression" 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/messages.inc.php:558 +#: libraries/export/sql.php:868 libraries/messages.inc.php:554 #: libraries/tbl_properties.inc.php:575 server_privileges.php:1836 #: server_processlist.php:75 msgid "None" @@ -2237,60 +2247,60 @@ msgstr "\"gzipano\"" msgid "bzipped" msgstr "\"bzipano\"" -#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1018 +#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1014 msgid "SQL compatibility mode" msgstr "Način rada SQL kompatibilnosti" -#: libraries/display_import.lib.php:67 libraries/messages.inc.php:398 +#: libraries/display_import.lib.php:67 libraries/messages.inc.php:394 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " "browsers." msgstr "" -#: libraries/display_import.lib.php:77 libraries/messages.inc.php:406 +#: libraries/display_import.lib.php:77 libraries/messages.inc.php:402 msgid "The file is being processed, please be patient." msgstr "" -#: libraries/display_import.lib.php:99 libraries/messages.inc.php:408 +#: libraries/display_import.lib.php:99 libraries/messages.inc.php:404 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." msgstr "" -#: libraries/display_import.lib.php:126 libraries/messages.inc.php:333 +#: libraries/display_import.lib.php:126 libraries/messages.inc.php:329 msgid "File to import" msgstr "Datoteka za uvoz" -#: libraries/display_import.lib.php:137 libraries/messages.inc.php:486 +#: libraries/display_import.lib.php:137 libraries/messages.inc.php:482 #: libraries/sql_query_form.lib.php:524 msgid "Location of the text file" msgstr "Lokacija tekstualne datoteke" -#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1203 +#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1199 msgid "File uploads are not allowed on this server." msgstr "Učitavanje datoteka nije dopušteno na ovom poslužitelju." -#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1235 +#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1231 #: libraries/sql_query_form.lib.php:533 tbl_change.php:1028 msgid "The directory you set for upload work cannot be reached" msgstr "Mapu koju ste odabrali za potrebe učitavanja nije moguće dohvatiti" -#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1236 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1232 #: libraries/sql_query_form.lib.php:536 tbl_change.php:1031 msgid "web server upload directory" msgstr "mapa učitavanja web poslužitelja" -#: libraries/display_import.lib.php:212 libraries/messages.inc.php:167 +#: libraries/display_import.lib.php:212 libraries/messages.inc.php:163 #, php-format msgid "Imported file compression will be automatically detected from: %s" msgstr "Kompresija uvezene datoteke bit će automatski prepoznata iz: %s" -#: libraries/display_import.lib.php:219 libraries/messages.inc.php:600 +#: libraries/display_import.lib.php:219 libraries/messages.inc.php:596 msgid "Partial import" msgstr "Djelomičan uvoz" -#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1105 +#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1101 #, php-format msgid "" "Previous import timed out, after resubmitting will continue from position %d." @@ -2298,7 +2308,7 @@ msgstr "" "Vrijeme prethodnog uvoza je isteklo. Nakon ponovno podnošenja bit će " "nastavljeno od položaja %d." -#: libraries/display_import.lib.php:232 libraries/messages.inc.php:51 +#: libraries/display_import.lib.php:232 libraries/messages.inc.php:47 msgid "" "Allow the interruption of an import in case the script detects it is close " "to the PHP timeout limit. This might be good way to import large files, " @@ -2308,177 +2318,177 @@ msgstr "" "ograničenja. Ovo bi mogao biti dobar način uvoza velikih datoteka, ali može " "prekinuti transakcije." -#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1004 +#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1000 #: setup/lib/messages.inc.php:161 msgid "Number of records (queries) to skip from start" msgstr "Broj zapisa (upita) koje je potrebno preskočiti od početka" -#: libraries/display_import.lib.php:255 libraries/messages.inc.php:396 +#: libraries/display_import.lib.php:255 libraries/messages.inc.php:392 #: setup/lib/messages.inc.php:160 msgid "Format of imported file" msgstr "Oblikovanje uvezene datoteke" #: libraries/display_select_lang.lib.php:45 -#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:465 +#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:461 #: setup/frames/index.inc.php:70 msgid "Language" msgstr "Jezik" -#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:447 +#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:443 #, php-format msgid "%d is not valid row number." msgstr "%d nije valjani broj retka." -#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:814 +#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:810 msgid "row(s) starting from record #" msgstr "redovi koji započinju zapisom #" -#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:817 +#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:813 msgid "horizontal" msgstr "vodoravno" -#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:816 +#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:812 msgid "horizontal (rotated headers)" msgstr "vodoravno (okrenuta zaglavlja)" -#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:819 +#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:815 msgid "vertical" msgstr "uspravno" -#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:818 +#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:814 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "u načinu %s i ponavljaj zaglavlja nakon %s ćelija" -#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:495 +#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:491 msgid "This operation could take a long time. Proceed anyway?" msgstr "Ovaj postupak može potrajati dulje vrijeme. Ipak nastaviti?" -#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1012 +#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1008 msgid "Sort by key" msgstr "Presloži po ključu" #: libraries/display_tbl.lib.php:555 libraries/import.lib.php:1082 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:591 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:587 #: tbl_select.php:267 tbl_structure.php:754 msgid "Options" msgstr "Opcije" #: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:570 -#: libraries/messages.inc.php:601 +#: libraries/messages.inc.php:597 msgid "Partial Texts" msgstr "Djelomični tekstovi" #: libraries/display_tbl.lib.php:561 libraries/display_tbl.lib.php:574 -#: libraries/messages.inc.php:346 +#: libraries/messages.inc.php:342 msgid "Full Texts" msgstr "Potpuni tekstovi" -#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:739 +#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:735 msgid "Relational key" msgstr "Relacijski ključ" -#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:738 +#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:734 msgid "Relational display field" msgstr "Polje za prikaz relacija" -#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:872 +#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:868 msgid "Show binary contents" msgstr "" -#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:873 +#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:869 msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:871 +#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:867 msgid "Show binary contents as HEX" msgstr "" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:375 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:371 #: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320 msgid "Hide" msgstr "Sakrij" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:508 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:504 #: libraries/tbl_properties.inc.php:144 transformation_overview.php:47 msgid "Browser transformation" msgstr "Pretvaranje preglednika" #: libraries/display_tbl.lib.php:1126 libraries/display_tbl.lib.php:1130 -#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:308 +#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:304 msgid "Execute bookmarked query" msgstr "Izvrši favorizirani upit" #: libraries/display_tbl.lib.php:1145 libraries/display_tbl.lib.php:1157 -#: libraries/messages.inc.php:244 +#: libraries/messages.inc.php:240 msgid "The row has been deleted" msgstr "Redak je izbrisan" #: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056 -#: libraries/messages.inc.php:460 server_processlist.php:71 +#: libraries/messages.inc.php:456 server_processlist.php:71 #: tbl_row_action.php:64 msgid "Kill" msgstr "Eliminiraj" -#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:849 +#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:845 msgid "in query" msgstr "unutar upita" -#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:881 +#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:877 msgid "Showing rows" msgstr "Prikazivanje redaka" -#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1113 +#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1109 msgid "total" msgstr "ukupno" -#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:727 +#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:723 #: sql.php:524 #, php-format msgid "Query took %01.4f sec" msgstr "Upit je trajao %01.4f sek" -#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:135 +#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:131 #: 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:471 msgid "Change" msgstr "Promijeni" -#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:724 +#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:720 msgid "Query results operations" msgstr "Operacije rezultata upita" -#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:671 +#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:667 msgid "Print view (with full texts)" msgstr "Prikaz ispisa (s potpunim tekstovima)" -#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:482 +#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:478 msgid "Link not found" msgstr "Veza nije pronađena" -#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1224 +#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1220 #: main.php:228 msgid "Version information" msgstr "Podaci o verziji" -#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:423 +#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:419 msgid "Data home directory" msgstr "Osnovna mapa podataka" -#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:424 +#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:420 msgid "The common part of the directory path for all InnoDB data files." msgstr "Uobičajeni dio putanje mapa za sve InnoDB podatkovne datoteke." -#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:422 +#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:418 msgid "Data files" msgstr "Podatkovne datoteke" -#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:418 +#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:414 msgid "Autoextend increment" msgstr "Korak autoproširenja" -#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:419 +#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:415 msgid "" " The increment size for extending the size of an autoextending tablespace " "when it becomes full." @@ -2486,11 +2496,11 @@ msgstr "" " Veličina koraka za proširivanje veličine automatski proširujućeg prostora " "tablice u slučaju njezinog ispunjavanja." -#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:420 +#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:416 msgid "Buffer pool size" msgstr "Veličina međuspremnika" -#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:421 +#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:417 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." @@ -2498,87 +2508,87 @@ msgstr "" "Veličina memorijskog međuspremnika koju InnoDB upotrebljava za privremenu " "pohranu podataka i indeksa svojih tablica." -#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:112 +#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:108 msgid "Buffer Pool" msgstr "Međuspremnik" -#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:426 +#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:422 #: server_status.php:306 msgid "InnoDB Status" msgstr "InnoDB stanje" -#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:113 +#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:109 msgid "Buffer Pool Usage" msgstr "Iskoristivost međuspremnika" -#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1114 +#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1110 #: server_databases.php:137 server_databases.php:305 server_status.php:414 #: server_status.php:475 server_status.php:496 tbl_printview.php:351 #: tbl_structure.php:697 msgid "Total" msgstr "Ukupno" -#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:425 +#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:421 msgid "pages" msgstr "stranice" -#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:343 +#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:339 msgid "Free pages" msgstr "Slobodne stranice" -#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:259 +#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:255 msgid "Dirty pages" msgstr "Prljave stranice" -#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:230 +#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:226 msgid "Pages containing data" msgstr "Stranice koje sadrže podatke" -#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:598 +#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:594 msgid "Pages to be flushed" msgstr "Stranice za pražnjenje" -#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:119 +#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:115 msgid "Busy pages" msgstr "Zaposlene stranice" -#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:467 +#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:463 msgid "Latched pages" msgstr "Vezane stranice" -#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:111 +#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:107 msgid "Buffer Pool Activity" msgstr "Aktivnost međuspremnika" -#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:731 +#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:727 msgid "Read requests" msgstr "Pročitaj zahtjeve" -#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1244 +#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1240 msgid "Write requests" msgstr "Zahtjevi zapisivanja" -#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:115 +#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:111 msgid "Read misses" msgstr "Propuštena čitanja" -#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:117 +#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:113 msgid "Write waits" msgstr "Zapisivanje čeka" -#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:114 +#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:110 msgid "Read misses in %" msgstr "Propuštena čitanja pri %" -#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:116 +#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:112 msgid "Write waits in %" msgstr "Zapisivanje čeka pri %" -#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:522 +#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:518 msgid "Data pointer size" msgstr "Veličina pokazatelja podataka" -#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:523 +#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:519 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." @@ -2586,11 +2596,11 @@ msgstr "" "Zadana veličina pokazatelja podataka u bajtovima, koju će upotrijebiti " "naredba CREATE TABLE za MyISAM tablice ako opcija MAX_ROWS nije određena." -#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:528 +#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:524 msgid "Automatic recovery mode" msgstr "Rad s automatskim povratom" -#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:529 +#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:525 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." @@ -2598,11 +2608,11 @@ msgstr "" "Način rada za automatski povrat srušenih MyISAM tablica, na način kojim je " "određen putem opcije --myisam-recover." -#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:527 +#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:523 msgid "Maximum size for temporary sort files" msgstr "Najveća veličina datoteke za privremeno preslagivanje" -#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:526 +#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:522 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " @@ -2612,11 +2622,11 @@ msgstr "" "ponovne izrade MyISAM indeksa (tijekom izvođenja naredbi REPAIR TABLE, ALTER " "TABLE ili LOAD DATA INFILE)." -#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:525 +#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:521 msgid "Maximum size for temporary files on index creation" msgstr "Najveća veličina privremenih datoteka pri izradi indeksa" -#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:524 +#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:520 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " @@ -2626,11 +2636,11 @@ msgstr "" "pohrane ključeva, uz ovdje navedenu vrijednost, preferiraj način pohrane " "ključeva." -#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:531 +#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:527 msgid "Repair threads" msgstr "Popravi grane" -#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:530 +#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:526 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." @@ -2639,11 +2649,11 @@ msgstr "" "paralelno (svaki indeks unutar vlastite grane) tijekom popravka putem " "postupka preslagivanja." -#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:533 +#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:529 msgid "Sort buffer size" msgstr "Veličina međuspremnika preslagivanja" -#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:532 +#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:528 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." @@ -2652,11 +2662,11 @@ msgstr "" "tijekom naredbe REPAIR TABLE ili tijekom izrade indeksa naredbama CREATE " "INDEX ili ALTER TABLE." -#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:620 +#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:616 msgid "Index cache size" msgstr "Veličina pohrane indeksa" -#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:619 +#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:615 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." @@ -2665,11 +2675,11 @@ msgstr "" "MB. Ovdje dodijeljena memorija koristi se samo za međupohranjivanje stranica " "indeksa." -#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:630 +#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:626 msgid "Record cache size" msgstr "Veličina pohrane zapisa" -#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:629 +#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:625 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " @@ -2680,11 +2690,11 @@ msgstr "" "upotrebljava za međuspremanje izmjena u datotekama rukovanim podacima (.xtd) " "pokazivača retka (.xtr)." -#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:624 +#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:620 msgid "Log cache size" msgstr "Veličina pohrane zapisnika" -#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:623 +#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:619 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." @@ -2692,11 +2702,11 @@ msgstr "" "Količina memorije dodijeljena međuspremniku zapisnika transakcija. Zadana " "vrijednost je 16 MB." -#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:628 +#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:624 msgid "Log file threshold" msgstr "Najveća veličina datoteke zapisnika" -#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:627 +#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:623 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." @@ -2704,11 +2714,11 @@ msgstr "" "Veličina zapisnika transakcija prije povrata i izrade novog zapisnika. " "Zadana vrijednost je 16 MB." -#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:634 +#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:630 msgid "Transaction buffer size" msgstr "Veličina međuspremnika transakcije" -#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:633 +#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:629 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." @@ -2716,11 +2726,11 @@ msgstr "" "Veličina globalnog međuspremnika zapisnika transakcija (pogon dodjeljuje 2 " "međuspremnika ove veličine). Zadana vrijednost je 1 MB." -#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:611 +#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:607 msgid "Checkpoint frequency" msgstr "Učestalost točke provjere" -#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:612 +#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:608 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." @@ -2728,11 +2738,11 @@ msgstr "" "Količina podataka zapisana u zapisnik transakcija prije izvođenja točke " "provjere. Zadana vrijednost je 24 MB." -#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:615 +#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:611 msgid "Data log threshold" msgstr "Najveća veličina zapisnika podataka" -#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:616 +#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:612 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -2744,11 +2754,11 @@ msgstr "" "Vrijednost ove varijable može se povećati kako bi se povećao ukupan broj " "podataka koji se mogu pohraniti u bazu podataka." -#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:618 +#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:614 msgid "Garbage threshold" msgstr "Najveća veličina otpada" -#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:617 +#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:613 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." @@ -2756,11 +2766,11 @@ msgstr "" "Postotak otpada u datoteci zapisnika podataka prije sređivanja. Vrijednost " "može biti od 1 do 99. Zadana vrijednost je 50." -#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:622 +#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:618 msgid "Log buffer size" msgstr "Veličina međuspremnika zapisnika" -#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:621 +#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:617 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " @@ -2770,27 +2780,27 @@ msgstr "" "vrijednost je 256 MB. Pogon dodjeljuje jedan međuspremnik po grani, ali samo " "ako je grana potrebna za zapisivanje zapisnika podataka." -#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:613 +#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:609 msgid "Data file grow size" msgstr "Veličina porasta datoteke podataka" -#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:614 +#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:610 msgid "The grow size of the handle data (.xtd) files." msgstr "Veličina porasta rukovanim datotekama podataka (.xtr)." -#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:632 +#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:628 msgid "Row file grow size" msgstr "Veličina porasta datoteke redaka" -#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:631 +#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:627 msgid "The grow size of the row pointer (.xtr) files." msgstr "Veličina porasta datoteka pokazivača retka (.xtr)." -#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:626 +#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:622 msgid "Log file count" msgstr "Najveći broj datoteka zapisnika" -#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:625 +#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:621 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -2804,19 +2814,19 @@ msgstr "" #: libraries/export/htmlword.php:132 libraries/export/odt.php:168 #: libraries/export/sql.php:881 libraries/export/texytext.php:130 -#: libraries/messages.inc.php:275 +#: libraries/messages.inc.php:271 msgid "Dumping data for table" msgstr "Izbacivanje podataka za tablicu" #: libraries/export/htmlword.php:185 libraries/export/odt.php:238 #: libraries/export/sql.php:785 libraries/export/texytext.php:177 -#: libraries/messages.inc.php:1086 +#: libraries/messages.inc.php:1082 msgid "Table structure for table" msgstr "Tablična struktura za tablicu" #: libraries/export/latex.php:125 libraries/export/sql.php:232 #: libraries/export/xml.php:102 libraries/header_printview.inc.php:57 -#: libraries/messages.inc.php:381 libraries/replication_gui.lib.php:63 +#: libraries/messages.inc.php:377 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:170 libraries/replication_gui.lib.php:265 #: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325 #: server_privileges.php:692 server_privileges.php:695 @@ -2828,187 +2838,187 @@ msgstr "Računalo" #: libraries/export/latex.php:130 libraries/export/sql.php:233 #: libraries/export/xml.php:107 libraries/header_printview.inc.php:59 -#: libraries/messages.inc.php:354 +#: libraries/messages.inc.php:350 msgid "Generation Time" msgstr "Vrijeme generiranja" #: libraries/export/latex.php:131 libraries/export/sql.php:235 -#: libraries/export/xml.php:108 libraries/messages.inc.php:864 main.php:186 +#: libraries/export/xml.php:108 libraries/messages.inc.php:860 main.php:186 msgid "Server version" msgstr "Verzija poslužitelja" #: libraries/export/latex.php:132 libraries/export/sql.php:236 -#: libraries/export/xml.php:109 libraries/messages.inc.php:651 +#: libraries/export/xml.php:109 libraries/messages.inc.php:647 msgid "PHP Version" msgstr "PHP verzija" #: libraries/export/latex.php:201 libraries/export/sql.php:868 -#: libraries/messages.inc.php:226 server_databases.php:127 +#: libraries/messages.inc.php:222 server_databases.php:127 #: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317 #: tbl_structure.php:666 msgid "Data" msgstr "Podaci" -#: libraries/export/odt.php:318 libraries/messages.inc.php:506 +#: libraries/export/odt.php:318 libraries/messages.inc.php:502 #: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "MIME vrsta" -#: libraries/export/sql.php:387 libraries/messages.inc.php:711 +#: libraries/export/sql.php:387 libraries/messages.inc.php:707 msgid "Procedures" msgstr "Postupci" -#: libraries/export/sql.php:401 libraries/messages.inc.php:348 +#: libraries/export/sql.php:401 libraries/messages.inc.php:344 msgid "Functions" msgstr "Funkcije" -#: libraries/export/sql.php:618 libraries/messages.inc.php:174 +#: libraries/export/sql.php:618 libraries/messages.inc.php:170 msgid "Constraints for dumped tables" msgstr "Ograničenja za izbačene tablice" -#: libraries/export/sql.php:627 libraries/messages.inc.php:175 +#: libraries/export/sql.php:627 libraries/messages.inc.php:171 msgid "Constraints for table" msgstr "Ograničenja za tablicu" -#: libraries/export/sql.php:727 libraries/messages.inc.php:512 +#: libraries/export/sql.php:727 libraries/messages.inc.php:508 msgid "MIME TYPES FOR TABLE" msgstr "MIME VRSTE ZA TABLICU" -#: libraries/export/sql.php:739 libraries/messages.inc.php:743 +#: libraries/export/sql.php:739 libraries/messages.inc.php:739 msgid "RELATIONS FOR TABLE" msgstr "RELACIJE TABLICE" -#: libraries/export/sql.php:796 libraries/messages.inc.php:1178 +#: libraries/export/sql.php:796 libraries/messages.inc.php:1174 #: libraries/tbl_triggers.lib.php:19 msgid "Triggers" msgstr "Okidači" -#: libraries/export/sql.php:808 libraries/messages.inc.php:1046 +#: libraries/export/sql.php:808 libraries/messages.inc.php:1042 msgid "Structure for view" msgstr "Struktura za pregledavanje" -#: libraries/export/sql.php:817 libraries/messages.inc.php:1029 +#: libraries/export/sql.php:817 libraries/messages.inc.php:1025 msgid "Stand-in structure for view" msgstr "Unutarnja struktura za pregledavanje" #: libraries/footer.inc.php:184 libraries/footer.inc.php:195 -#: libraries/footer.inc.php:198 libraries/messages.inc.php:586 +#: libraries/footer.inc.php:198 libraries/messages.inc.php:582 msgid "Open new phpMyAdmin window" msgstr "Otvori novi phpMyAdmin prozor" -#: libraries/header.inc.php:115 libraries/messages.inc.php:542 +#: libraries/header.inc.php:115 libraries/messages.inc.php:538 #, fuzzy msgid "New table" msgstr "Nema tablica" #: libraries/header_printview.inc.php:50 libraries/header_printview.inc.php:55 -#: libraries/messages.inc.php:1024 +#: libraries/messages.inc.php:1020 msgid "SQL result" msgstr "SQL rezultat" -#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:350 +#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:346 msgid "Generated by" msgstr "Generirano s" #: libraries/header_printview.inc.php:63 libraries/import.lib.php:145 -#: libraries/messages.inc.php:820 navigation.php:652 navigation.php:674 +#: libraries/messages.inc.php:816 navigation.php:652 navigation.php:674 #: server_databases.php:122 tbl_printview.php:394 tbl_structure.php:366 #: tbl_structure.php:778 msgid "Rows" msgstr "Redaka" -#: libraries/import.lib.php:150 libraries/messages.inc.php:285 sql.php:520 +#: libraries/import.lib.php:150 libraries/messages.inc.php:281 sql.php:520 #: tbl_change.php:181 tbl_get_field.php:35 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL je vratio prazan komplet rezultata (npr. nula redova)." -#: libraries/import.lib.php:1078 libraries/messages.inc.php:399 +#: libraries/import.lib.php:1078 libraries/messages.inc.php:395 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1079 libraries/messages.inc.php:400 +#: libraries/import.lib.php:1079 libraries/messages.inc.php:396 msgid "View a structure`s contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1080 libraries/messages.inc.php:401 +#: libraries/import.lib.php:1080 libraries/messages.inc.php:397 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1081 libraries/messages.inc.php:402 +#: libraries/import.lib.php:1081 libraries/messages.inc.php:398 msgid "Edit its structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1084 libraries/messages.inc.php:362 +#: libraries/import.lib.php:1084 libraries/messages.inc.php:358 #, fuzzy msgid "Go to database" msgstr "Nema baza podataka" #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:869 +#: libraries/messages.inc.php:865 msgid "settings" msgstr "" -#: libraries/import.lib.php:1106 libraries/messages.inc.php:363 +#: libraries/import.lib.php:1106 libraries/messages.inc.php:359 #, fuzzy msgid "Go to table" msgstr "Nema baza podataka" -#: libraries/import.lib.php:1109 libraries/messages.inc.php:1047 +#: libraries/import.lib.php:1109 libraries/messages.inc.php:1043 #, fuzzy msgid "structure" msgstr "Strukturu" -#: libraries/import.lib.php:1115 libraries/messages.inc.php:364 +#: libraries/import.lib.php:1115 libraries/messages.inc.php:360 msgid "Go to view" msgstr "" #: libraries/import/csv.php:58 libraries/import/csv.php:70 #: libraries/import/csv.php:74 libraries/import/csv.php:78 -#: libraries/messages.inc.php:442 +#: libraries/messages.inc.php:438 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "Neispravan parametar za CSV uvoz: %s" -#: libraries/import/csv.php:59 libraries/messages.inc.php:323 +#: libraries/import/csv.php:59 libraries/messages.inc.php:319 msgid "Fields terminated by" msgstr "Polja završena s" -#: libraries/import/csv.php:71 libraries/messages.inc.php:320 +#: libraries/import/csv.php:71 libraries/messages.inc.php:316 msgid "Fields enclosed by" msgstr "Polja obuhvaćena po" -#: libraries/import/csv.php:75 libraries/messages.inc.php:321 +#: libraries/import/csv.php:75 libraries/messages.inc.php:317 msgid "Fields escaped by" msgstr "Polja izostavljena po" -#: libraries/import/csv.php:79 libraries/messages.inc.php:481 +#: libraries/import/csv.php:79 libraries/messages.inc.php:477 msgid "Lines terminated by" msgstr "Redovi završeni s" -#: libraries/import/csv.php:119 libraries/messages.inc.php:439 +#: libraries/import/csv.php:119 libraries/messages.inc.php:435 #, php-format msgid "Invalid column (%s) specified!" msgstr "Određen je neispravan stupac (%s) !" #: libraries/import/csv.php:177 libraries/import/csv.php:424 -#: libraries/messages.inc.php:441 +#: libraries/messages.inc.php:437 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "Neispravno oblikovanje u CSV unosu unutar retka %d." -#: libraries/import/csv.php:312 libraries/messages.inc.php:440 +#: libraries/import/csv.php:312 libraries/messages.inc.php:436 #, php-format msgid "Invalid field count in CSV input on line %d." msgstr "Neispravan broj polja u CSV unosu unutar retka %d." -#: libraries/import/ldi.php:55 libraries/messages.inc.php:446 +#: libraries/import/ldi.php:55 libraries/messages.inc.php:442 msgid "This plugin does not support compressed imports!" msgstr "Ovaj dodatak ne podržava uvoz komprimiranih datoteka!" #: libraries/import/xml.php:74 libraries/import/xml.php:130 -#: libraries/messages.inc.php:1247 +#: libraries/messages.inc.php:1243 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -3038,573 +3048,563 @@ msgstr "" msgid "ltr" msgstr "ltr" -#. l10n: Thousands separator -#: libraries/messages.inc.php:21 -msgid "," -msgstr "." - -#. l10n: Decimal separator -#: libraries/messages.inc.php:23 -msgid "." -msgstr "," - -#: libraries/messages.inc.php:25 server_status.php:461 +#: libraries/messages.inc.php:21 server_status.php:461 msgid "Aborted" msgstr "Prekinuto" -#: libraries/messages.inc.php:28 main.php:68 +#: libraries/messages.inc.php:24 main.php:68 msgid "Actions" msgstr "Aktivnosti" -#: libraries/messages.inc.php:34 libraries/tbl_properties.inc.php:780 +#: libraries/messages.inc.php:30 libraries/tbl_properties.inc.php:780 #: tbl_structure.php:543 #, php-format msgid "Add %s field(s)" msgstr "Dodaj %s polja" -#: libraries/messages.inc.php:35 +#: libraries/messages.inc.php:31 msgid "Add custom comment into header (\\n splits lines)" msgstr "Dodaj prilagođeni komentar u zaglavlje (\"\\n\" razdvaja retke)" -#: libraries/messages.inc.php:36 +#: libraries/messages.inc.php:32 msgid "Add into comments" msgstr "Dodaj u komentare" -#: libraries/messages.inc.php:37 tbl_structure.php:541 +#: libraries/messages.inc.php:33 tbl_structure.php:541 msgid "Add new field" msgstr "Dodaj novo polje" -#: libraries/messages.inc.php:38 server_privileges.php:1886 +#: libraries/messages.inc.php:34 server_privileges.php:1886 msgid "Add privileges on the following database" msgstr "Dodaj privilegije za sljedeće baze podataka" -#: libraries/messages.inc.php:39 server_privileges.php:1907 +#: libraries/messages.inc.php:35 server_privileges.php:1907 msgid "Add privileges on the following table" msgstr "Dodaj privilegije za sljedeću tablicu" -#: libraries/messages.inc.php:40 tbl_select.php:288 +#: libraries/messages.inc.php:36 tbl_select.php:288 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Dodaj uvjete pretrage (sadržaj uvjeta \"gdje\"):" -#: libraries/messages.inc.php:41 tbl_indexes.php:251 +#: libraries/messages.inc.php:37 tbl_indexes.php:251 #, php-format msgid "Add to index  %s column(s)" msgstr "Dodaj u indeks  %s stupci" -#: libraries/messages.inc.php:42 server_privileges.php:1570 +#: libraries/messages.inc.php:38 server_privileges.php:1570 #: server_privileges.php:1594 server_privileges.php:1988 #: server_privileges.php:2177 msgid "Add a new User" msgstr "Dodaj novog korisnika" -#: libraries/messages.inc.php:43 server_privileges.php:931 +#: libraries/messages.inc.php:39 server_privileges.php:931 msgid "You have added a new user." msgstr "Dodali ste novog korisnika." -#: libraries/messages.inc.php:44 server_privileges.php:571 +#: libraries/messages.inc.php:40 server_privileges.php:571 msgid "Administration" msgstr "Administracija" -#: libraries/messages.inc.php:45 tbl_structure.php:557 +#: libraries/messages.inc.php:41 tbl_structure.php:557 #, php-format msgid "After %s" msgstr "Poslije %s" -#: libraries/messages.inc.php:46 tbl_change.php:1147 +#: libraries/messages.inc.php:42 tbl_change.php:1147 msgid "Go back to previous page" msgstr "Kreni nazad na prethodnu stranicu" -#: libraries/messages.inc.php:47 tbl_change.php:1148 +#: libraries/messages.inc.php:43 tbl_change.php:1148 msgid "Insert another new row" msgstr "Umetni dodatni novi redak" -#: libraries/messages.inc.php:48 tbl_change.php:1160 +#: libraries/messages.inc.php:44 tbl_change.php:1160 msgid "Edit next row" msgstr "Uredi sljedeći redak" -#: libraries/messages.inc.php:49 tbl_change.php:1152 +#: libraries/messages.inc.php:45 tbl_change.php:1152 msgid "Go back to this page" msgstr "Kreni nazad na ovu stranicu" -#: libraries/messages.inc.php:50 querywindow.php:115 +#: libraries/messages.inc.php:46 querywindow.php:115 msgid "All" msgstr "Sve" -#: libraries/messages.inc.php:53 tbl_operations.php:249 +#: libraries/messages.inc.php:49 tbl_operations.php:249 msgid "Alter table order by" msgstr "Izmijeni rasporede tablice po" -#: libraries/messages.inc.php:54 tbl_operations.php:660 +#: libraries/messages.inc.php:50 tbl_operations.php:660 msgid "Analyze" msgstr "Analiziraj" -#: libraries/messages.inc.php:57 +#: libraries/messages.inc.php:53 #, fuzzy msgid "and" msgstr "I" -#: libraries/messages.inc.php:59 pmd_general.php:87 +#: libraries/messages.inc.php:55 pmd_general.php:87 msgid "Angular links" msgstr "Kutne veze" -#: libraries/messages.inc.php:60 tbl_structure.php:401 tbl_structure.php:415 +#: libraries/messages.inc.php:56 tbl_structure.php:401 tbl_structure.php:415 #: tbl_structure.php:429 #, php-format msgid "An index has been added on %s" msgstr "Indeks je pridodan na %s" -#: libraries/messages.inc.php:61 server_privileges.php:1521 +#: libraries/messages.inc.php:57 server_privileges.php:1521 #: server_privileges.php:2123 msgid "Any" msgstr "Bilo koji" -#: libraries/messages.inc.php:62 libraries/replication_gui.lib.php:298 +#: libraries/messages.inc.php:58 libraries/replication_gui.lib.php:298 #: server_privileges.php:725 msgid "Any host" msgstr "Bilo koje računalo" -#: libraries/messages.inc.php:63 libraries/replication_gui.lib.php:250 +#: libraries/messages.inc.php:59 libraries/replication_gui.lib.php:250 #: server_privileges.php:677 msgid "Any user" msgstr "Bilo koji korisnik" -#: libraries/messages.inc.php:64 server_synchronize.php:449 +#: libraries/messages.inc.php:60 server_synchronize.php:449 #: server_synchronize.php:894 msgid "Apply Selected Changes" msgstr "" -#: libraries/messages.inc.php:66 tbl_structure.php:386 +#: libraries/messages.inc.php:62 tbl_structure.php:386 #, php-format msgid "A primary key has been added on %s" msgstr "Primarni ključ je dodan na %s" -#: libraries/messages.inc.php:67 libraries/mysql_charsets.lib.php:368 +#: libraries/messages.inc.php:63 libraries/mysql_charsets.lib.php:368 msgid "Arabic" msgstr "Arapski" -#: libraries/messages.inc.php:68 libraries/mysql_charsets.lib.php:359 +#: libraries/messages.inc.php:64 libraries/mysql_charsets.lib.php:359 msgid "Armenian" msgstr "Armenski" -#: libraries/messages.inc.php:70 libraries/tbl_properties.inc.php:394 +#: libraries/messages.inc.php:66 libraries/tbl_properties.inc.php:394 msgid "As defined:" msgstr "Kako je definirano:" -#: libraries/messages.inc.php:71 tbl_structure.php:556 +#: libraries/messages.inc.php:67 tbl_structure.php:556 msgid "At Beginning of Table" msgstr "Pri početku tablice" -#: libraries/messages.inc.php:72 tbl_structure.php:555 +#: libraries/messages.inc.php:68 tbl_structure.php:555 msgid "At End of Table" msgstr "Pri završetku tablice" -#: libraries/messages.inc.php:73 libraries/tbl_properties.inc.php:108 +#: libraries/messages.inc.php:69 libraries/tbl_properties.inc.php:108 #: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:144 #: tbl_structure.php:180 msgid "Attributes" msgstr "Atributi" -#: libraries/messages.inc.php:74 pdf_pages.php:303 pdf_pages.php:306 +#: libraries/messages.inc.php:70 pdf_pages.php:303 pdf_pages.php:306 msgid "Automatic layout" msgstr "Automatski raspored" -#: libraries/messages.inc.php:77 libraries/mysql_charsets.lib.php:354 +#: libraries/messages.inc.php:73 libraries/mysql_charsets.lib.php:354 msgid "Baltic" msgstr "Baltički" -#: libraries/messages.inc.php:78 libraries/sqlparser.lib.php:175 +#: libraries/messages.inc.php:74 libraries/sqlparser.lib.php:175 msgid "BEGIN CUT" msgstr "BEGIN CUT" -#: libraries/messages.inc.php:79 libraries/sqlparser.lib.php:179 +#: libraries/messages.inc.php:75 libraries/sqlparser.lib.php:179 msgid "BEGIN RAW" msgstr "BEGIN RAW" -#: libraries/messages.inc.php:80 libraries/mysql_charsets.lib.php:201 +#: libraries/messages.inc.php:76 libraries/mysql_charsets.lib.php:201 #: libraries/mysql_charsets.lib.php:402 tbl_change.php:518 msgid "Binary" msgstr "Binarno" -#: libraries/messages.inc.php:81 tbl_change.php:894 +#: libraries/messages.inc.php:77 tbl_change.php:894 msgid "Binary - do not edit" msgstr "Binarno - ne uređuj" -#: libraries/messages.inc.php:82 libraries/server_links.inc.php:76 +#: libraries/messages.inc.php:78 libraries/server_links.inc.php:76 #: server_binlog.php:110 server_status.php:253 test/theme.php:121 msgid "Binary log" msgstr "Binarni zapisnik" -#: libraries/messages.inc.php:83 server_binlog.php:217 +#: libraries/messages.inc.php:79 server_binlog.php:217 msgid "Event type" msgstr "Vrsta događaja" -#: libraries/messages.inc.php:84 server_binlog.php:220 +#: libraries/messages.inc.php:80 server_binlog.php:220 msgid "Information" msgstr "Podaci" -#: libraries/messages.inc.php:85 server_binlog.php:215 +#: libraries/messages.inc.php:81 server_binlog.php:215 msgid "Log name" msgstr "Naziv zapisnika" -#: libraries/messages.inc.php:86 server_binlog.php:219 +#: libraries/messages.inc.php:82 server_binlog.php:219 msgid "Original position" msgstr "Izvorni položaj" -#: libraries/messages.inc.php:87 server_binlog.php:216 +#: libraries/messages.inc.php:83 server_binlog.php:216 msgid "Position" msgstr "Položaj" -#: libraries/messages.inc.php:88 libraries/replication_gui.lib.php:169 +#: libraries/messages.inc.php:84 libraries/replication_gui.lib.php:169 #: server_binlog.php:218 msgid "Server ID" msgstr "ID poslužitelja" -#: libraries/messages.inc.php:92 +#: libraries/messages.inc.php:88 #, fuzzy msgctxt "$strBLOBRepositoryDisabled" msgid "Disabled" msgstr "Onemogućeno" -#: libraries/messages.inc.php:95 +#: libraries/messages.inc.php:91 #, fuzzy msgctxt "$strBLOBRepositoryEnabled" msgid "Enabled" msgstr "Omogućeno" -#: libraries/messages.inc.php:97 tbl_change.php:888 +#: libraries/messages.inc.php:93 tbl_change.php:888 msgid "Remove BLOB Repository Reference" msgstr "" -#: libraries/messages.inc.php:98 +#: libraries/messages.inc.php:94 #, fuzzy msgctxt "$strBLOBRepositoryRepair" msgid "Repair" msgstr "Popravi" -#: libraries/messages.inc.php:99 tbl_change.php:987 +#: libraries/messages.inc.php:95 tbl_change.php:987 msgid "Upload to BLOB repository" msgstr "" -#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:359 +#: libraries/messages.inc.php:96 libraries/sql_query_form.lib.php:359 #: sql.php:677 msgid "Let every user access this bookmark" msgstr "Neka svi korisnici imaju pristup ovom favoritu" -#: libraries/messages.inc.php:103 sql.php:671 +#: libraries/messages.inc.php:99 sql.php:671 msgid "Label" msgstr "Oznaka" -#: libraries/messages.inc.php:104 libraries/sql_query_form.lib.php:433 +#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:433 msgid "Bookmarked SQL query" msgstr "Favorizirani SQL upit" -#: libraries/messages.inc.php:105 libraries/sql_query_form.lib.php:365 +#: libraries/messages.inc.php:101 libraries/sql_query_form.lib.php:365 msgid "Replace existing bookmark of same name" msgstr "Zamijeni postojećim favoritom istog naziva" -#: libraries/messages.inc.php:106 libraries/sql_query_form.lib.php:352 +#: libraries/messages.inc.php:102 libraries/sql_query_form.lib.php:352 #: sql.php:665 sql.php:666 sql.php:683 msgid "Bookmark this SQL query" msgstr "Favoriziraj ovaj SQL upit" -#: libraries/messages.inc.php:107 libraries/sql_query_form.lib.php:466 +#: libraries/messages.inc.php:103 libraries/sql_query_form.lib.php:466 msgid "View only" msgstr "Samo prikaz" -#: libraries/messages.inc.php:109 tbl_structure.php:161 +#: libraries/messages.inc.php:105 tbl_structure.php:161 msgid "Browse distinct values" msgstr "Pretraži prepoznatljive vrijednosti" -#: libraries/messages.inc.php:110 tbl_change.php:252 tbl_select.php:27 +#: libraries/messages.inc.php:106 tbl_change.php:252 tbl_select.php:27 #: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34 msgid "Browse foreign values" msgstr "Pretraži strane vrijednosti" -#: libraries/messages.inc.php:118 libraries/mysql_charsets.lib.php:213 +#: libraries/messages.inc.php:114 libraries/mysql_charsets.lib.php:213 msgid "Bulgarian" msgstr "Bugarski" -#: libraries/messages.inc.php:120 +#: libraries/messages.inc.php:116 msgid "\"bzipped\"" msgstr "\"bzipano\"" -#: libraries/messages.inc.php:122 +#: libraries/messages.inc.php:118 msgid "Calendar" msgstr "Kalendar" -#: libraries/messages.inc.php:129 tbl_indexes.php:75 +#: libraries/messages.inc.php:125 tbl_indexes.php:75 msgid "Can't rename index to PRIMARY!" msgstr "Preimenovanje indeksa u PRIMARY nije moguće!" -#: libraries/messages.inc.php:132 libraries/mysql_charsets.lib.php:223 +#: libraries/messages.inc.php:128 libraries/mysql_charsets.lib.php:223 #: libraries/mysql_charsets.lib.php:409 msgid "case-insensitive" msgstr "nebitna veličina znakova" -#: libraries/messages.inc.php:133 libraries/mysql_charsets.lib.php:226 +#: libraries/messages.inc.php:129 libraries/mysql_charsets.lib.php:226 #: libraries/mysql_charsets.lib.php:411 msgid "case-sensitive" msgstr "veličina znakova je važna" -#: libraries/messages.inc.php:134 libraries/mysql_charsets.lib.php:332 +#: libraries/messages.inc.php:130 libraries/mysql_charsets.lib.php:332 msgid "Central European" msgstr "Srednjoeuropski" -#: libraries/messages.inc.php:136 server_privileges.php:1969 +#: libraries/messages.inc.php:132 server_privileges.php:1969 msgid "... keep the old one." msgstr "... zadržati staru." -#: libraries/messages.inc.php:137 server_privileges.php:1967 +#: libraries/messages.inc.php:133 server_privileges.php:1967 msgid "Create a new user with the same privileges and ..." msgstr "Izradi novog korisnika s istim privilegijama i..." -#: libraries/messages.inc.php:138 server_privileges.php:1972 +#: libraries/messages.inc.php:134 server_privileges.php:1972 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" " ... izbriši starog iz korisničkih tablica i potom ponovo učitaj privilegije." -#: libraries/messages.inc.php:139 server_privileges.php:1970 +#: libraries/messages.inc.php:135 server_privileges.php:1970 msgid " ... delete the old one from the user tables." msgstr " ... izbriši starog iz korisničkih tablica." -#: libraries/messages.inc.php:140 server_privileges.php:1971 +#: libraries/messages.inc.php:136 server_privileges.php:1971 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr " ... opozovi sve aktivne privilegije iz stare i potom je izbriši." -#: libraries/messages.inc.php:141 server_privileges.php:1964 +#: libraries/messages.inc.php:137 server_privileges.php:1964 msgid "Change Login Information / Copy User" msgstr "Promjena podataka prijave / Kopiranje korisnika" -#: libraries/messages.inc.php:144 libraries/mysql_charsets.lib.php:107 +#: libraries/messages.inc.php:140 libraries/mysql_charsets.lib.php:107 msgid "Charset" msgstr "Tablica znakova" -#: libraries/messages.inc.php:146 server_collations.php:40 +#: libraries/messages.inc.php:142 server_collations.php:40 msgid "Character Sets and Collations" msgstr "Tablica znakova i uspoređivanja" -#: libraries/messages.inc.php:147 libraries/server_links.inc.php:57 +#: libraries/messages.inc.php:143 libraries/server_links.inc.php:57 #: test/theme.php:109 msgid "Charsets" msgstr "Tablice znakova" -#: libraries/messages.inc.php:149 tbl_operations.php:661 +#: libraries/messages.inc.php:145 tbl_operations.php:661 msgid "Check" msgstr "Provjeri" -#: libraries/messages.inc.php:151 server_databases.php:293 +#: libraries/messages.inc.php:147 server_databases.php:293 #: server_databases.php:294 msgid "Check Privileges" msgstr "Provjeri privilegije" -#: libraries/messages.inc.php:152 server_databases.php:289 +#: libraries/messages.inc.php:148 server_databases.php:289 #, php-format msgid "Check privileges for database "%s"." msgstr "Provjeri privilegije za bazu podataka \"%s\"." -#: libraries/messages.inc.php:154 pdf_pages.php:261 +#: libraries/messages.inc.php:150 pdf_pages.php:261 msgid "Please choose a page to edit" msgstr "Odaberite tablicu za uređivanje" -#: libraries/messages.inc.php:157 +#: libraries/messages.inc.php:153 msgid "Displaying Column Comments" msgstr "Prikazivanje stupca komentara" -#: libraries/messages.inc.php:159 pdf_pages.php:483 view_create.php:148 +#: libraries/messages.inc.php:155 pdf_pages.php:483 view_create.php:148 msgid "Column names" msgstr "Nazivi stupaca" -#: libraries/messages.inc.php:160 server_privileges.php:1685 +#: libraries/messages.inc.php:156 server_privileges.php:1685 msgid "Column-specific privileges" msgstr "Privilegije specifične za stupac" -#: libraries/messages.inc.php:164 +#: libraries/messages.inc.php:160 msgid "MySQL 4.0 compatible" msgstr "MySQL 4.0 kompatibilno" -#: libraries/messages.inc.php:165 +#: libraries/messages.inc.php:161 msgid "Complete inserts" msgstr "Dovrši umetanja" -#: libraries/messages.inc.php:168 +#: libraries/messages.inc.php:164 #, php-format msgid "Could not load default configuration from: \"%1$s\"" msgstr "Nije moguće učitati zadanu konfiguraciju iz: \"%1$s\"" -#: libraries/messages.inc.php:169 main.php:306 +#: libraries/messages.inc.php:165 main.php:306 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: libraries/messages.inc.php:171 pdf_schema.php:672 +#: libraries/messages.inc.php:167 pdf_schema.php:672 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Konfigurirajte koordinate tablice %s" -#: libraries/messages.inc.php:173 server_status.php:433 +#: libraries/messages.inc.php:169 server_status.php:433 msgid "Connections" msgstr "Veze" -#: libraries/messages.inc.php:179 tbl_operations.php:509 +#: libraries/messages.inc.php:175 tbl_operations.php:509 msgid "Copy table to (database.table):" msgstr "Kopiraj tablicu u (bazapodataka.tablica):" -#: libraries/messages.inc.php:180 tbl_move_copy.php:58 +#: libraries/messages.inc.php:176 tbl_move_copy.php:58 #, php-format msgid "Table %s has been copied to %s." msgstr "Tablica %s kopirana je u %s." -#: libraries/messages.inc.php:181 tbl_move_copy.php:48 +#: libraries/messages.inc.php:177 tbl_move_copy.php:48 msgid "Can't copy table to same one!" msgstr "Kopiranje u istu tablicu nije moguće!" -#: libraries/messages.inc.php:182 server_synchronize.php:94 +#: libraries/messages.inc.php:178 server_synchronize.php:94 msgid "Could not connect to the source" msgstr "" -#: libraries/messages.inc.php:183 server_synchronize.php:97 +#: libraries/messages.inc.php:179 server_synchronize.php:97 msgid "Could not connect to the target" msgstr "" -#: libraries/messages.inc.php:184 server_processlist.php:24 +#: libraries/messages.inc.php:180 server_processlist.php:24 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin nije mogao ugasiti granu %s. Vjerojatno je već zatvorena." -#: libraries/messages.inc.php:187 +#: libraries/messages.inc.php:183 #, php-format msgid "Create an index on %s columns" msgstr "Izradi indeks  %s stupaca" -#: libraries/messages.inc.php:188 tbl_indexes.php:160 +#: libraries/messages.inc.php:184 tbl_indexes.php:160 msgid "Create a new index" msgstr "Izradi novi indeks" -#: libraries/messages.inc.php:191 pdf_pages.php:297 pmd_pdf.php:114 +#: libraries/messages.inc.php:187 pdf_pages.php:297 pmd_pdf.php:114 msgid "Create a page" msgstr "Izradi novu stranicu" -#: libraries/messages.inc.php:192 +#: libraries/messages.inc.php:188 msgid "Creation of PDFs" msgstr "Izrada PDF datoteka" -#: libraries/messages.inc.php:193 pmd_general.php:74 pmd_general.php:306 +#: libraries/messages.inc.php:189 pmd_general.php:74 pmd_general.php:306 msgid "Create relation" msgstr "Izradi relaciju" -#: libraries/messages.inc.php:194 pmd_general.php:71 +#: libraries/messages.inc.php:190 pmd_general.php:71 #: server_synchronize.php:429 server_synchronize.php:872 msgid "Create table" msgstr "Izradi tablicu" -#: libraries/messages.inc.php:195 +#: libraries/messages.inc.php:191 #, fuzzy msgctxt "$strCreateTableShort" msgid "Create table" msgstr "Izradi tablicu" -#: libraries/messages.inc.php:196 server_privileges.php:1994 +#: libraries/messages.inc.php:192 server_privileges.php:1994 msgid "Database for user" msgstr "Baza podataka za korisnika" -#: libraries/messages.inc.php:197 server_privileges.php:1999 +#: libraries/messages.inc.php:193 server_privileges.php:1999 msgid "Create database with same name and grant all privileges" msgstr "Izradi bazu podataka istog naziva i podari sve privilegije" -#: libraries/messages.inc.php:198 +#: libraries/messages.inc.php:194 #, fuzzy msgctxt "$strCreateUserDatabaseNone" msgid "None" msgstr "bez kompresije" -#: libraries/messages.inc.php:199 server_privileges.php:2003 +#: libraries/messages.inc.php:195 server_privileges.php:2003 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "Provjeri privilegije za bazu podataka \"%s\"." -#: libraries/messages.inc.php:200 server_privileges.php:2000 +#: libraries/messages.inc.php:196 server_privileges.php:2000 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Podari sve privilegije imenima s džokerima (korisničkoime_%)" -#: libraries/messages.inc.php:201 +#: libraries/messages.inc.php:197 msgid "Creation/Update/Check dates" msgstr "Izrada/Ažuriranje/Provjera datuma" -#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:229 +#: libraries/messages.inc.php:199 libraries/mysql_charsets.lib.php:229 msgid "Croatian" msgstr "Hrvatski" -#: libraries/messages.inc.php:204 +#: libraries/messages.inc.php:200 msgid "CSV" msgstr "CSV" -#: libraries/messages.inc.php:205 libraries/server_synchronize.lib.php:1343 +#: libraries/messages.inc.php:201 libraries/server_synchronize.lib.php:1343 #: libraries/server_synchronize.lib.php:1369 msgid "Current server" msgstr "" -#: libraries/messages.inc.php:206 main.php:159 +#: libraries/messages.inc.php:202 main.php:159 msgid "Custom color" msgstr "Prilagođena boja" -#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:365 +#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:365 msgid "Cyrillic" msgstr "Ćirilica" -#: libraries/messages.inc.php:208 libraries/mysql_charsets.lib.php:232 +#: libraries/messages.inc.php:204 libraries/mysql_charsets.lib.php:232 msgid "Czech" msgstr "Češki" -#: libraries/messages.inc.php:209 libraries/mysql_charsets.lib.php:383 +#: libraries/messages.inc.php:205 libraries/mysql_charsets.lib.php:383 msgid "Czech-Slovak" msgstr "Češki ili Slovački" -#: libraries/messages.inc.php:211 libraries/mysql_charsets.lib.php:235 +#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:235 msgid "Danish" msgstr "Danski" -#: libraries/messages.inc.php:214 +#: libraries/messages.inc.php:210 msgid "Database export options" msgstr "Opcije izvoza baze podataka" -#: libraries/messages.inc.php:217 server_synchronize.php:122 +#: libraries/messages.inc.php:213 server_synchronize.php:122 #: server_synchronize.php:125 tbl_create.php:82 tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "" -#: libraries/messages.inc.php:219 server_databases.php:63 +#: libraries/messages.inc.php:215 server_databases.php:63 #, php-format msgid "%s databases have been dropped successfully." msgstr "Baza podataka %s uspješno je odbačena." -#: libraries/messages.inc.php:220 libraries/server_synchronize.lib.php:1341 +#: libraries/messages.inc.php:216 libraries/server_synchronize.lib.php:1341 #: server_synchronize.php:1110 #, fuzzy msgid "Source database" msgstr "Traži u bazi podataka" -#: libraries/messages.inc.php:221 server_databases.php:88 +#: libraries/messages.inc.php:217 server_databases.php:88 msgid "Databases statistics" msgstr "Statistike baza podataka" -#: libraries/messages.inc.php:222 server_databases.php:362 +#: libraries/messages.inc.php:218 server_databases.php:362 #: server_databases.php:363 msgid "Disable Statistics" msgstr "Onemogući statistike" -#: libraries/messages.inc.php:223 server_databases.php:358 +#: libraries/messages.inc.php:219 server_databases.php:358 #: server_databases.php:359 msgid "Enable Statistics" msgstr "Omogući statistike" -#: libraries/messages.inc.php:224 server_databases.php:366 +#: libraries/messages.inc.php:220 server_databases.php:366 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -3612,32 +3612,32 @@ msgstr "" "Napomena: Omogućavanja statistika baze podataka može prouzrokovati izuzetno " "velik promet između web poslužitelja i MySQL poslužitelja." -#: libraries/messages.inc.php:225 libraries/server_synchronize.lib.php:1367 +#: libraries/messages.inc.php:221 libraries/server_synchronize.lib.php:1367 #: server_synchronize.php:1112 #, fuzzy msgid "Target database" msgstr "Traži u bazi podataka" -#: libraries/messages.inc.php:228 server_synchronize.php:425 +#: libraries/messages.inc.php:224 server_synchronize.php:425 #: server_synchronize.php:868 #, fuzzy msgid "Data Difference" msgstr "Struktura za pregledavanje" -#: libraries/messages.inc.php:231 server_synchronize.php:272 +#: libraries/messages.inc.php:227 server_synchronize.php:272 msgid "Data Synchronization" msgstr "" -#: libraries/messages.inc.php:235 server_privileges.php:526 +#: libraries/messages.inc.php:231 server_privileges.php:526 #: server_privileges.php:1679 msgid "Database-specific privileges" msgstr "Privilegije specifične za bazu podataka" -#: libraries/messages.inc.php:237 server_privileges.php:2136 +#: libraries/messages.inc.php:233 server_privileges.php:2136 msgid "database-specific" msgstr "specifično za bazu podataka" -#: libraries/messages.inc.php:240 libraries/tbl_properties.inc.php:106 +#: libraries/messages.inc.php:236 libraries/tbl_properties.inc.php:106 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" @@ -3645,32 +3645,32 @@ msgstr "" "Za zadane vrijednosti unesite samo jednu vrijednost, bez kosih crta ili " "navodnika, u sljedećem obliku: a" -#: libraries/messages.inc.php:241 tbl_operations.php:589 +#: libraries/messages.inc.php:237 tbl_operations.php:589 msgid "Defragment table" msgstr "Defragmentiraj tablicu" -#: libraries/messages.inc.php:242 +#: libraries/messages.inc.php:238 msgid "Use delayed inserts" msgstr "Upotrijebi odgođena umetanja" -#: libraries/messages.inc.php:245 server_privileges.php:1243 +#: libraries/messages.inc.php:241 server_privileges.php:1243 msgid "No users selected for deleting!" msgstr "Nema odabranih korisnika za uklanjanje!" -#: libraries/messages.inc.php:246 pmd_general.php:372 +#: libraries/messages.inc.php:242 pmd_general.php:372 msgid "Delete relation" msgstr "Izbriši relaciju" -#: libraries/messages.inc.php:248 server_privileges.php:1232 +#: libraries/messages.inc.php:244 server_privileges.php:1232 #, php-format msgid "Deleting %s" msgstr "Brisanje %s" -#: libraries/messages.inc.php:249 libraries/sql_query_form.lib.php:388 +#: libraries/messages.inc.php:245 libraries/sql_query_form.lib.php:388 msgid "Delimiter" msgstr "Razgraničavanje" -#: libraries/messages.inc.php:250 pdf_pages.php:506 +#: libraries/messages.inc.php:246 pdf_pages.php:506 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -3678,7 +3678,7 @@ msgstr "" "Trenutna stranica sadrži reference prema tablicama koje više ne postoje. " "Želite li izbrisati te reference?" -#: libraries/messages.inc.php:254 pmd_help.php:29 +#: libraries/messages.inc.php:250 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 " @@ -3688,142 +3688,142 @@ msgstr "" "ili uklonili opciju polja za prikazivanje pritisnite ikonu \"Odaberite polje " "za prikazivanje\", a zatim pritisnite odgovarajući naziv polja." -#: libraries/messages.inc.php:256 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:252 libraries/mysql_charsets.lib.php:247 msgid "dictionary" msgstr "rječnik" -#: libraries/messages.inc.php:257 libraries/server_synchronize.lib.php:1348 +#: libraries/messages.inc.php:253 libraries/server_synchronize.lib.php:1348 msgid "Difference" msgstr "" -#: libraries/messages.inc.php:258 pmd_general.php:87 +#: libraries/messages.inc.php:254 pmd_general.php:87 msgid "Direct links" msgstr "Izravne veze" -#: libraries/messages.inc.php:261 +#: libraries/messages.inc.php:257 msgid "Disable foreign key checks" msgstr "Onemogući provjere stranih znakova" -#: libraries/messages.inc.php:262 +#: libraries/messages.inc.php:258 msgid "Display Features" msgstr "Osobine prikaza" -#: libraries/messages.inc.php:263 tbl_select.php:301 +#: libraries/messages.inc.php:259 tbl_select.php:301 msgid "Display order:" msgstr "Redoslijed prikaza:" -#: libraries/messages.inc.php:265 tbl_select.php:132 +#: libraries/messages.inc.php:261 tbl_select.php:132 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Izvedi \"upit po primjeru\" (džoker: \"%\")" -#: libraries/messages.inc.php:266 +#: libraries/messages.inc.php:262 msgid "DocSQL" msgstr "DocSQL" -#: libraries/messages.inc.php:268 +#: libraries/messages.inc.php:264 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/messages.inc.php:273 server_privileges.php:1579 +#: libraries/messages.inc.php:269 server_privileges.php:1579 #: server_privileges.php:1580 server_privileges.php:1581 msgid "Drop the databases that have the same names as the users." msgstr "Ispusti baze podataka koje imaju iste nazive i korisnike." -#: libraries/messages.inc.php:278 tbl_printview.php:382 tbl_structure.php:743 +#: libraries/messages.inc.php:274 tbl_printview.php:382 tbl_structure.php:743 msgid "dynamic" msgstr "dinamički" -#: libraries/messages.inc.php:282 server_privileges.php:1324 +#: libraries/messages.inc.php:278 server_privileges.php:1324 #: server_privileges.php:1610 msgid "Edit Privileges" msgstr "Uredi privilegije" -#: libraries/messages.inc.php:283 tbl_printview.php:341 tbl_structure.php:688 +#: libraries/messages.inc.php:279 tbl_printview.php:341 tbl_structure.php:688 msgid "Effective" msgstr "Na snazi" -#: libraries/messages.inc.php:286 libraries/relation.lib.php:100 +#: libraries/messages.inc.php:282 libraries/relation.lib.php:100 msgid "Enabled" msgstr "Omogućeno" -#: libraries/messages.inc.php:287 +#: libraries/messages.inc.php:283 msgid "Enclose export in a transaction" msgstr "Izvoz uključi u transakciju" -#: libraries/messages.inc.php:288 libraries/sqlparser.lib.php:177 +#: libraries/messages.inc.php:284 libraries/sqlparser.lib.php:177 msgid "END CUT" msgstr "END CUT" -#: libraries/messages.inc.php:290 libraries/sqlparser.lib.php:183 +#: libraries/messages.inc.php:286 libraries/sqlparser.lib.php:183 msgid "END RAW" msgstr "END RAW" -#: libraries/messages.inc.php:293 libraries/server_links.inc.php:61 +#: libraries/messages.inc.php:289 libraries/server_links.inc.php:61 #: test/theme.php:113 msgid "Engines" msgstr "Pogoni" -#: libraries/messages.inc.php:295 libraries/mysql_charsets.lib.php:238 +#: libraries/messages.inc.php:291 libraries/mysql_charsets.lib.php:238 msgid "English" msgstr "Engleski" -#: libraries/messages.inc.php:296 server_privileges.php:393 +#: libraries/messages.inc.php:292 server_privileges.php:393 #: server_privileges.php:535 server_privileges.php:1501 msgid " Note: MySQL privilege names are expressed in English " msgstr " Napomena: Nazivi MySQL privilegija navedeni su na engleskom jeziku " -#: libraries/messages.inc.php:298 libraries/zip_extension.lib.php:49 +#: libraries/messages.inc.php:294 libraries/zip_extension.lib.php:49 #: libraries/zip_extension.lib.php:51 libraries/zip_extension.lib.php:66 msgid "Error in ZIP archive:" msgstr "Pogreška u ZIP arhivi:" -#: libraries/messages.inc.php:303 libraries/mysql_charsets.lib.php:241 +#: libraries/messages.inc.php:299 libraries/mysql_charsets.lib.php:241 msgid "Esperanto" msgstr "Esperanto" -#: libraries/messages.inc.php:304 libraries/mysql_charsets.lib.php:244 +#: libraries/messages.inc.php:300 libraries/mysql_charsets.lib.php:244 msgid "Estonian" msgstr "Estonski" -#: libraries/messages.inc.php:305 libraries/tbl_triggers.lib.php:29 +#: libraries/messages.inc.php:301 libraries/tbl_triggers.lib.php:29 msgid "Event" msgstr "Događaj" -#: libraries/messages.inc.php:307 +#: libraries/messages.inc.php:303 msgid "Excel edition" msgstr "Excel izdanje" -#: libraries/messages.inc.php:311 pmd_pdf.php:85 +#: libraries/messages.inc.php:307 pmd_pdf.php:85 msgid "Export/Import to scale" msgstr "Uvoz / Izvor prema omjeru" -#: libraries/messages.inc.php:313 +#: libraries/messages.inc.php:309 msgid "Extended inserts" msgstr "Proširena umetanja" -#: libraries/messages.inc.php:314 pdf_schema.php:1267 pdf_schema.php:1288 +#: libraries/messages.inc.php:310 pdf_schema.php:1267 pdf_schema.php:1288 #: tbl_printview.php:147 tbl_structure.php:183 tbl_tracking.php:278 msgid "Extra" msgstr "Dodatno" -#: libraries/messages.inc.php:316 server_status.php:447 +#: libraries/messages.inc.php:312 server_status.php:447 msgid "Failed attempts" msgstr "Neuspjeli pokušaji" -#: libraries/messages.inc.php:318 tbl_structure.php:375 +#: libraries/messages.inc.php:314 tbl_structure.php:375 #, php-format msgid "Field %s has been dropped" msgstr "Polje %s je odbačeno" -#: libraries/messages.inc.php:322 libraries/sql_query_form.lib.php:317 +#: libraries/messages.inc.php:318 libraries/sql_query_form.lib.php:317 msgid "Fields" msgstr "Polja" -#: libraries/messages.inc.php:332 server_binlog.php:136 +#: libraries/messages.inc.php:328 server_binlog.php:136 msgid "Files" msgstr "Datoteke" -#: libraries/messages.inc.php:334 server_privileges.php:1597 +#: libraries/messages.inc.php:330 server_privileges.php:1597 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -3836,220 +3836,220 @@ msgstr "" "može se razlikovati od privilegija koje upotrebljava poslužitelj. U tom je " "slučaju potrebno %sponovo učitati privilegije%s prije nastavljanja rada." -#: libraries/messages.inc.php:335 server_status.php:289 +#: libraries/messages.inc.php:331 server_status.php:289 msgid "Flush query cache" msgstr "Isprazni pohranu upita" -#: libraries/messages.inc.php:336 +#: libraries/messages.inc.php:332 msgid "Flush the table (\"FLUSH\")" msgstr "Isprazni tablicu (\"FLUSH\")" -#: libraries/messages.inc.php:337 server_status.php:271 +#: libraries/messages.inc.php:333 server_status.php:271 msgid "Flush (close) all tables" msgstr "Isprazni (zatvori) sve tablice" -#: libraries/messages.inc.php:339 tbl_relation.php:279 +#: libraries/messages.inc.php:335 tbl_relation.php:279 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" "Pogreška tijekom izrade stranog ključa na %1$s (provjerite vrste podataka)" -#: libraries/messages.inc.php:341 setup/lib/messages.inc.php:88 +#: libraries/messages.inc.php:337 setup/lib/messages.inc.php:88 #: tbl_printview.php:376 tbl_structure.php:738 msgid "Format" msgstr "Oblikovanje" -#: libraries/messages.inc.php:344 server_replication.php:325 +#: libraries/messages.inc.php:340 server_replication.php:325 #, fuzzy msgid "Full start" msgstr "Puni tekst" -#: libraries/messages.inc.php:345 server_replication.php:325 +#: libraries/messages.inc.php:341 server_replication.php:325 #, fuzzy msgid "Full stop" msgstr "Puni tekst" -#: libraries/messages.inc.php:347 tbl_change.php:282 tbl_change.php:320 +#: libraries/messages.inc.php:343 tbl_change.php:282 tbl_change.php:320 msgid "Function" msgstr "Funkcija" -#: libraries/messages.inc.php:355 libraries/mysql_charsets.lib.php:377 +#: libraries/messages.inc.php:351 libraries/mysql_charsets.lib.php:377 msgid "Georgian" msgstr "Gruzijski" -#: libraries/messages.inc.php:356 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:352 libraries/mysql_charsets.lib.php:247 #: libraries/mysql_charsets.lib.php:250 msgid "German" msgstr "Njemački" -#: libraries/messages.inc.php:357 themes.php:42 +#: libraries/messages.inc.php:353 themes.php:42 msgid "Get more themes!" msgstr "" -#: libraries/messages.inc.php:358 server_privileges.php:2134 +#: libraries/messages.inc.php:354 server_privileges.php:2134 msgid "global" msgstr "opće" -#: libraries/messages.inc.php:359 server_privileges.php:524 +#: libraries/messages.inc.php:355 server_privileges.php:524 #: server_privileges.php:1500 msgid "Global privileges" msgstr "Opće privilegije" -#: libraries/messages.inc.php:360 server_variables.php:55 +#: libraries/messages.inc.php:356 server_variables.php:55 #: server_variables.php:89 msgid "Global value" msgstr "Opća vrijednost" -#: libraries/messages.inc.php:365 server_privileges.php:1502 +#: libraries/messages.inc.php:361 server_privileges.php:1502 #: server_privileges.php:1684 server_privileges.php:2033 msgid "Grant" msgstr "Podarivanje" -#: libraries/messages.inc.php:366 libraries/mysql_charsets.lib.php:380 +#: libraries/messages.inc.php:362 libraries/mysql_charsets.lib.php:380 msgid "Greek" msgstr "Grčki" -#: libraries/messages.inc.php:367 +#: libraries/messages.inc.php:363 msgid "\"gzipped\"" msgstr "\"gzipano\"" -#: libraries/messages.inc.php:369 server_status.php:250 +#: libraries/messages.inc.php:365 server_status.php:250 msgid "Handler" msgstr "Hvatišta" -#: libraries/messages.inc.php:370 server_synchronize.php:464 +#: libraries/messages.inc.php:366 server_synchronize.php:464 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: libraries/messages.inc.php:372 libraries/mysql_charsets.lib.php:374 +#: libraries/messages.inc.php:368 libraries/mysql_charsets.lib.php:374 msgid "Hebrew" msgstr "Hebrejski" -#: libraries/messages.inc.php:373 pmd_general.php:83 +#: libraries/messages.inc.php:369 pmd_general.php:83 msgid "Help" msgstr "Pomoć" -#: libraries/messages.inc.php:374 +#: libraries/messages.inc.php:370 msgid "Use hexadecimal for BLOB" msgstr "Za BLOB upotrijebi heksadecimalno" -#: libraries/messages.inc.php:376 pmd_general.php:120 +#: libraries/messages.inc.php:372 pmd_general.php:120 msgid "Hide/Show all" msgstr "Prikaži / Sakrij sve" -#: libraries/messages.inc.php:377 pmd_general.php:124 +#: libraries/messages.inc.php:373 pmd_general.php:124 msgid "Hide/Show Tables with no relation" msgstr "Prikaži / Sakrij tablice bez relacija" -#: libraries/messages.inc.php:378 libraries/navigation_header.inc.php:54 +#: libraries/messages.inc.php:374 libraries/navigation_header.inc.php:54 #: libraries/navigation_header.inc.php:57 #: libraries/navigation_header.inc.php:58 msgid "Home" msgstr "Početna stranica" -#: libraries/messages.inc.php:379 main.php:233 +#: libraries/messages.inc.php:375 main.php:233 msgid "Official Homepage" msgstr "Službena stranica programa phpMyAdmin" -#: libraries/messages.inc.php:382 libraries/replication_gui.lib.php:327 +#: libraries/messages.inc.php:378 libraries/replication_gui.lib.php:327 #: server_privileges.php:753 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/messages.inc.php:383 +#: libraries/messages.inc.php:379 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/messages.inc.php:384 libraries/mysql_charsets.lib.php:253 +#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:253 msgid "Hungarian" msgstr "Mađarski" -#: libraries/messages.inc.php:386 libraries/mysql_charsets.lib.php:256 +#: libraries/messages.inc.php:382 libraries/mysql_charsets.lib.php:256 msgid "Icelandic" msgstr "Islandski" -#: libraries/messages.inc.php:387 server_processlist.php:53 +#: libraries/messages.inc.php:383 server_processlist.php:53 msgid "ID" msgstr "ID" -#: libraries/messages.inc.php:388 libraries/mult_submits.inc.php:108 +#: libraries/messages.inc.php:384 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:479 msgid "Fulltext" msgstr "Puni tekst" -#: libraries/messages.inc.php:389 +#: libraries/messages.inc.php:385 msgid "Ignore duplicate rows" msgstr "Ignoriraj istovjetne redove" -#: libraries/messages.inc.php:390 tbl_change.php:302 tbl_indexes.php:200 +#: libraries/messages.inc.php:386 tbl_change.php:302 tbl_indexes.php:200 #: tbl_indexes.php:225 msgid "Ignore" msgstr "Ignoriraj" -#: libraries/messages.inc.php:391 +#: libraries/messages.inc.php:387 msgid "Use ignore inserts" msgstr "Upotrijebi ignoriranje umetaka" -#: libraries/messages.inc.php:392 +#: libraries/messages.inc.php:388 msgid "Column names in first row" msgstr "" -#: libraries/messages.inc.php:393 +#: libraries/messages.inc.php:389 msgid "Do not import empty rows" msgstr "" -#: libraries/messages.inc.php:394 pmd_general.php:104 +#: libraries/messages.inc.php:390 pmd_general.php:104 msgid "Import/Export coordinates for PDF schema" msgstr "Uvoz / Izvoz koordinate iz PDF sheme" -#: libraries/messages.inc.php:395 querywindow.php:104 +#: libraries/messages.inc.php:391 querywindow.php:104 msgid "Import files" msgstr "Uvezi datoteke" -#: libraries/messages.inc.php:403 +#: libraries/messages.inc.php:399 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/messages.inc.php:404 libraries/messages.inc.php:584 +#: libraries/messages.inc.php:400 libraries/messages.inc.php:580 msgid "Open Document Spreadsheet" msgstr "Otvori izračunsku tablicu dokumenta" -#: libraries/messages.inc.php:405 +#: libraries/messages.inc.php:401 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/messages.inc.php:409 +#: libraries/messages.inc.php:405 msgid "Excel 97-2003 XLS Workbook" msgstr "" -#: libraries/messages.inc.php:410 +#: libraries/messages.inc.php:406 msgid "Excel 2007 XLSX Workbook" msgstr "" -#: libraries/messages.inc.php:414 libraries/mult_submits.inc.php:98 +#: libraries/messages.inc.php:410 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:476 tbl_structure.php:674 msgid "Index" msgstr "Indeks" -#: libraries/messages.inc.php:415 tbl_indexes.php:168 +#: libraries/messages.inc.php:411 tbl_indexes.php:168 msgid "Index name:" msgstr "Naziv indeksa:" -#: libraries/messages.inc.php:416 tbl_indexes.php:174 +#: libraries/messages.inc.php:412 tbl_indexes.php:174 msgid "Index type:" msgstr "Vrsta indeksa:" -#: libraries/messages.inc.php:417 sql.php:639 +#: libraries/messages.inc.php:413 sql.php:639 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemi s indeksima tablice `%s`" -#: libraries/messages.inc.php:427 main.php:266 +#: libraries/messages.inc.php:423 main.php:266 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -4061,164 +4061,164 @@ msgstr "" "pokrenut je sa zadanim postavkama i kao takav otvoren je upadima. Potrebno " "je ispraviti ovaj sigurnosni nedostatak." -#: libraries/messages.inc.php:428 tbl_change.php:1130 +#: libraries/messages.inc.php:424 tbl_change.php:1130 msgid "Insert as new row" msgstr "Umetni kao novi redak" -#: libraries/messages.inc.php:429 sql.php:496 tbl_replace.php:386 +#: libraries/messages.inc.php:425 sql.php:496 tbl_replace.php:386 #, php-format msgid "Inserted row id: %1$d" msgstr "Umetnut ID retka: %1$d" -#: libraries/messages.inc.php:430 tbl_change.php:1131 +#: libraries/messages.inc.php:426 tbl_change.php:1131 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/messages.inc.php:432 main.php:139 +#: libraries/messages.inc.php:428 main.php:139 msgid "Interface" msgstr "Sučelje" -#: libraries/messages.inc.php:433 tbl_relation.php:407 +#: libraries/messages.inc.php:429 tbl_relation.php:407 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" "Interna relacija nije potrebna ako postoji odgovarajuća relacija FOREIGN KEY." -#: libraries/messages.inc.php:435 pdf_pages.php:303 +#: libraries/messages.inc.php:431 pdf_pages.php:303 msgid "Internal relations" msgstr "Interne relacije" -#: libraries/messages.inc.php:438 tbl_indexes.php:256 tbl_structure.php:590 +#: libraries/messages.inc.php:434 tbl_indexes.php:256 tbl_structure.php:590 #: tbl_structure.php:601 msgid "Column count has to be larger than zero." msgstr "Broj stupaca mora biti veći od nule." -#: libraries/messages.inc.php:444 libraries/tbl_properties.inc.php:784 +#: libraries/messages.inc.php:440 libraries/tbl_properties.inc.php:784 #: tbl_structure.php:537 msgid "You have to add at least one field." msgstr "Morate dodati najmanje jedno polje." -#: libraries/messages.inc.php:449 +#: libraries/messages.inc.php:445 #, php-format msgid "Invalid server index: \"%s\"" msgstr "Neispravan indeks poslužitelja: \"%s\"" -#: libraries/messages.inc.php:452 libraries/mysql_charsets.lib.php:259 +#: libraries/messages.inc.php:448 libraries/mysql_charsets.lib.php:259 #: libraries/mysql_charsets.lib.php:349 msgid "Japanese" msgstr "Japanski" -#: libraries/messages.inc.php:453 main.php:331 +#: libraries/messages.inc.php:449 main.php:331 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: libraries/messages.inc.php:454 server_status.php:257 +#: libraries/messages.inc.php:450 server_status.php:257 msgid "Joins" msgstr "Spojevi" -#: libraries/messages.inc.php:457 server_privileges.php:763 +#: libraries/messages.inc.php:453 server_privileges.php:763 msgid "Do not change the password" msgstr "Ne mijenjaj lozinku" -#: libraries/messages.inc.php:458 server_status.php:256 +#: libraries/messages.inc.php:454 server_status.php:256 msgid "Key cache" msgstr "Pohrana ključeva" -#: libraries/messages.inc.php:462 libraries/mysql_charsets.lib.php:268 +#: libraries/messages.inc.php:458 libraries/mysql_charsets.lib.php:268 #: libraries/mysql_charsets.lib.php:371 msgid "Korean" msgstr "Korejski" -#: libraries/messages.inc.php:466 libraries/select_lang.lib.php:480 +#: libraries/messages.inc.php:462 libraries/select_lang.lib.php:480 #: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492 #, php-format msgid "Unknown language: %1$s." msgstr "Nepoznati jezik: %1$s." -#: libraries/messages.inc.php:468 +#: libraries/messages.inc.php:464 msgid "Table caption" msgstr "Naslov tablice" -#: libraries/messages.inc.php:469 +#: libraries/messages.inc.php:465 msgid "Content of table __TABLE__" msgstr "Sadržaj tablice __TABLE__" -#: libraries/messages.inc.php:470 +#: libraries/messages.inc.php:466 msgid "Continued table caption" msgstr "Nastavljeni naslov tablice" -#: libraries/messages.inc.php:471 +#: libraries/messages.inc.php:467 msgid "(continued)" msgstr "(nastavljeno)" -#: libraries/messages.inc.php:472 +#: libraries/messages.inc.php:468 msgid "Include table caption" msgstr "Uključi naslov tablice" -#: libraries/messages.inc.php:473 +#: libraries/messages.inc.php:469 msgid "Label key" msgstr "Ključ oznake" -#: libraries/messages.inc.php:474 +#: libraries/messages.inc.php:470 msgid "LaTeX" msgstr "LaTeX" -#: libraries/messages.inc.php:475 +#: libraries/messages.inc.php:471 msgid "Structure of table __TABLE__" msgstr "Struktura tablice __TABLE__" -#: libraries/messages.inc.php:476 libraries/mysql_charsets.lib.php:262 +#: libraries/messages.inc.php:472 libraries/mysql_charsets.lib.php:262 msgid "Latvian" msgstr "Latvijski" -#: libraries/messages.inc.php:477 +#: libraries/messages.inc.php:473 msgid "CSV using LOAD DATA" msgstr "CSV upotrebom LOAD DATA" -#: libraries/messages.inc.php:478 +#: libraries/messages.inc.php:474 msgid "Use LOCAL keyword" msgstr "Upotrijebi lokalnu ključnu riječ" -#: libraries/messages.inc.php:479 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:475 libraries/tbl_properties.inc.php:105 msgid "Length/Values" msgstr "Duljina/Vrijednosti" -#: libraries/messages.inc.php:480 tbl_select.php:295 +#: libraries/messages.inc.php:476 tbl_select.php:295 msgid "Number of rows per page" msgstr "Broj redaka po stranici" -#: libraries/messages.inc.php:484 libraries/mysql_charsets.lib.php:265 +#: libraries/messages.inc.php:480 libraries/mysql_charsets.lib.php:265 msgid "Lithuanian" msgstr "Litavski" -#: libraries/messages.inc.php:485 libraries/replication_gui.lib.php:302 +#: libraries/messages.inc.php:481 libraries/replication_gui.lib.php:302 #: server_privileges.php:729 msgid "Local" msgstr "Lokalno" -#: libraries/messages.inc.php:487 server_privileges.php:669 +#: libraries/messages.inc.php:483 server_privileges.php:669 msgid "Login Information" msgstr "_Podaci prijave" -#: libraries/messages.inc.php:490 libraries/navigation_header.inc.php:67 +#: libraries/messages.inc.php:486 libraries/navigation_header.inc.php:67 #: libraries/navigation_header.inc.php:70 #: libraries/navigation_header.inc.php:71 main.php:99 msgid "Log out" msgstr "Odjava" -#: libraries/messages.inc.php:497 server_status.php:440 +#: libraries/messages.inc.php:493 server_status.php:440 msgid "max. concurrent connections" msgstr "najv. uzastopnih veza" -#: libraries/messages.inc.php:498 +#: libraries/messages.inc.php:494 msgid "Maximal length of created query" msgstr "Najveća duljina izrađenog upita" -#: libraries/messages.inc.php:500 main.php:282 +#: libraries/messages.inc.php:496 main.php:282 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -4228,7 +4228,7 @@ msgstr "" "tablicu znakova. Bez proširenja mbstring, phpMyAdmin nije u mogućnosti " "pravilno razdjeljivati naredbe i može doći do neočekivanih rezultata." -#: libraries/messages.inc.php:501 main.php:274 +#: libraries/messages.inc.php:497 main.php:274 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -4238,24 +4238,24 @@ msgstr "" "opcija nije kompatibilna s programom phpMyAdmin i može prouzrokovati " "oštećivanje nekih podataka!" -#: libraries/messages.inc.php:502 +#: libraries/messages.inc.php:498 msgid "MediaWiki Table" msgstr "" -#: libraries/messages.inc.php:503 transformation_overview.php:25 +#: libraries/messages.inc.php:499 transformation_overview.php:25 msgid "Available MIME types" msgstr "Raspoložive MIME vrste" -#: libraries/messages.inc.php:504 transformation_overview.php:43 +#: libraries/messages.inc.php:500 transformation_overview.php:43 msgid "Available transformations" msgstr "Raspoloživa preoblikovanja" -#: libraries/messages.inc.php:505 +#: libraries/messages.inc.php:501 msgctxt "$strMIME_description" msgid "Description" msgstr "Opis" -#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:580 +#: libraries/messages.inc.php:503 libraries/tbl_properties.inc.php:580 #: transformation_overview.php:60 #, php-format msgid "" @@ -4265,7 +4265,7 @@ msgstr "" "Za ovo preoblikovanje ne postoji raspoloživ opis.
Molimo da od autora " "zatražite objašnjenje rada %s ." -#: libraries/messages.inc.php:509 libraries/tbl_properties.inc.php:137 +#: libraries/messages.inc.php:505 libraries/tbl_properties.inc.php:137 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -4274,7 +4274,7 @@ msgstr "" "Za popis raspoloživih opcija preoblikovanja i njihovih MIME vrsta " "oblikovanja, pritisnite %sopcije preoblikovanja%s" -#: libraries/messages.inc.php:510 libraries/tbl_properties.inc.php:146 +#: libraries/messages.inc.php:506 libraries/tbl_properties.inc.php:146 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -4286,56 +4286,56 @@ msgstr "" "jednostruki navodnik (\"'\") unutar ovih vrijednosti, ispred znaka stavite " "lijevu kosu crtu (na primjer: '\\\\xyz' ili 'a\\'B')." -#: libraries/messages.inc.php:511 libraries/tbl_properties.inc.php:145 +#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:145 msgid "Transformation options" msgstr "Opcije preoblikovanja" -#: libraries/messages.inc.php:513 transformation_overview.php:38 +#: libraries/messages.inc.php:509 transformation_overview.php:38 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "MIME vrste ispisane kurzivom nemaju posebnu funkciju preoblikovanja" -#: libraries/messages.inc.php:515 tbl_indexes.php:162 +#: libraries/messages.inc.php:511 tbl_indexes.php:162 msgid "Modify an index" msgstr "Uredi indeks" -#: libraries/messages.inc.php:517 pmd_general.php:108 +#: libraries/messages.inc.php:513 pmd_general.php:108 msgid "Move Menu" msgstr "Premjesti izbornik" -#: libraries/messages.inc.php:518 tbl_operations.php:276 +#: libraries/messages.inc.php:514 tbl_operations.php:276 msgid "Move table to (database.table):" msgstr "Premjesti tablicu u (bazapodataka.tablica):" -#: libraries/messages.inc.php:519 tbl_move_copy.php:56 +#: libraries/messages.inc.php:515 tbl_move_copy.php:56 #, php-format msgid "Table %s has been moved to %s." msgstr "Tablica %s premještena je u %s." -#: libraries/messages.inc.php:520 tbl_move_copy.php:46 +#: libraries/messages.inc.php:516 tbl_move_copy.php:46 msgid "Can't move table to same one!" msgstr "Premještanje u istu tablicu nije moguće!" -#: libraries/messages.inc.php:521 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:517 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 #: libraries/mysql_charsets.lib.php:332 libraries/mysql_charsets.lib.php:354 #: libraries/mysql_charsets.lib.php:365 msgid "multilingual" msgstr "višejezično" -#: libraries/messages.inc.php:534 main.php:193 +#: libraries/messages.inc.php:530 main.php:193 msgid "MySQL charset" msgstr "MySQL tablica znakova" -#: libraries/messages.inc.php:535 main.php:211 +#: libraries/messages.inc.php:531 main.php:211 msgid "MySQL client version" msgstr "MySQL verzija klijenta" -#: libraries/messages.inc.php:536 main.php:125 +#: libraries/messages.inc.php:532 main.php:125 msgid "MySQL connection collation" msgstr "MySQL uspoređivanje veza" -#: libraries/messages.inc.php:537 main.php:346 +#: libraries/messages.inc.php:533 main.php:346 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -4344,55 +4344,55 @@ msgstr "" "Verzija %s vaše PHP MySQL biblioteke razlikuje se oda vaše verzije %s MySQL " "poslužitelja. Ovo bi moglo prouzrokovati nepredviđeno ponašanje." -#: libraries/messages.inc.php:539 server_status.php:294 +#: libraries/messages.inc.php:535 server_status.php:294 msgid "Show processes" msgstr "Prikaži procese" -#: libraries/messages.inc.php:545 navigation.php:210 server_databases.php:371 +#: libraries/messages.inc.php:541 navigation.php:210 server_databases.php:371 #: server_synchronize.php:1191 msgid "No databases" msgstr "Nema baza podataka" -#: libraries/messages.inc.php:546 server_databases.php:52 +#: libraries/messages.inc.php:542 server_databases.php:52 msgid "No databases selected." msgstr "Nema odabrane baze podataka." -#: libraries/messages.inc.php:548 libraries/relation.lib.php:1173 +#: libraries/messages.inc.php:544 libraries/relation.lib.php:1173 msgid "no description" msgstr "bez opisa" -#: libraries/messages.inc.php:552 libraries/zip_extension.lib.php:26 +#: libraries/messages.inc.php:548 libraries/zip_extension.lib.php:26 msgid "No files found inside ZIP archive!" msgstr "Datoteke nisu pronađene unutar ZIP arhive!" -#: libraries/messages.inc.php:555 tbl_indexes.php:91 +#: libraries/messages.inc.php:551 tbl_indexes.php:91 msgid "No index parts defined!" msgstr "Nema definiranih dijelova indeksa!" -#: libraries/messages.inc.php:556 libraries/mult_submits.inc.php:435 +#: libraries/messages.inc.php:552 libraries/mult_submits.inc.php:435 #: tbl_replace.php:331 msgid "No change" msgstr "Bez izmjena" -#: libraries/messages.inc.php:557 +#: libraries/messages.inc.php:553 #, fuzzy msgctxt "$strNoneDefault" msgid "None" msgstr "bez kompresije" -#: libraries/messages.inc.php:560 libraries/plugin_interface.lib.php:312 +#: libraries/messages.inc.php:556 libraries/plugin_interface.lib.php:312 msgid "This format has no options" msgstr "Ovaj oblik nema raspoložive opcije" -#: libraries/messages.inc.php:565 user_password.php:54 +#: libraries/messages.inc.php:561 user_password.php:54 msgid "You don't have sufficient privileges to be here right now!" msgstr "Nemate dovoljno privilegija da boravite ovdje!" -#: libraries/messages.inc.php:566 tbl_row_action.php:29 +#: libraries/messages.inc.php:562 tbl_row_action.php:29 msgid "No rows selected" msgstr "Nema odabranih redova" -#: libraries/messages.inc.php:569 themes.php:32 +#: libraries/messages.inc.php:565 themes.php:32 #, php-format msgid "" "No themes support; please check your configuration and/or your themes in " @@ -4401,294 +4401,294 @@ msgstr "" "Podrška za teme ne postoji. Provjerite vašu konfiguraciju i/ili vaše teme u " "mapi %s." -#: libraries/messages.inc.php:571 libraries/relation.lib.php:95 +#: libraries/messages.inc.php:567 libraries/relation.lib.php:95 msgid "not OK" msgstr "nije OK" -#: libraries/messages.inc.php:572 server_synchronize.php:400 +#: libraries/messages.inc.php:568 server_synchronize.php:400 #: server_synchronize.php:839 msgid "not present" msgstr "" -#: libraries/messages.inc.php:573 pdf_pages.php:36 pdf_pages.php:42 +#: libraries/messages.inc.php:569 pdf_pages.php:36 pdf_pages.php:42 #: pdf_pages.php:48 pdf_pages.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "tablica %s nije pronađena ili nije zadana u %s" -#: libraries/messages.inc.php:574 server_privileges.php:804 +#: libraries/messages.inc.php:570 server_privileges.php:804 #: server_privileges.php:2166 msgid "No user(s) found." msgstr "Korisnici nisu pronađeni." -#: libraries/messages.inc.php:578 pmd_general.php:164 +#: libraries/messages.inc.php:574 pmd_general.php:164 msgid "Number of tables" msgstr "Broj tablica" -#: libraries/messages.inc.php:581 server_databases.php:117 +#: libraries/messages.inc.php:577 server_databases.php:117 #: server_status.php:260 setup/lib/messages.inc.php:117 msgid "Tables" msgstr "Tablice" -#: libraries/messages.inc.php:583 libraries/relation.lib.php:99 +#: libraries/messages.inc.php:579 libraries/relation.lib.php:99 #: pmd_general.php:340 msgid "OK" msgstr "U redu " -#: libraries/messages.inc.php:585 +#: libraries/messages.inc.php:581 msgid "Open Document Text" msgstr "Otvori tekst dokumenta" -#: libraries/messages.inc.php:588 tbl_select.php:138 +#: libraries/messages.inc.php:584 tbl_select.php:138 msgid "Operator" msgstr "Operator" -#: libraries/messages.inc.php:589 tbl_operations.php:662 +#: libraries/messages.inc.php:585 tbl_operations.php:662 msgid "Optimize" msgstr "Optimiziraj" -#: libraries/messages.inc.php:602 libraries/tbl_properties.inc.php:755 +#: libraries/messages.inc.php:598 libraries/tbl_properties.inc.php:755 msgid "PARTITION definition" msgstr "Definicija PARTICIJE" -#: libraries/messages.inc.php:603 tbl_structure.php:757 +#: libraries/messages.inc.php:599 tbl_structure.php:757 msgid "partitioned" msgstr "particionirano" -#: libraries/messages.inc.php:604 tbl_operations.php:649 +#: libraries/messages.inc.php:600 tbl_operations.php:649 msgid "Partition maintenance" msgstr "Održavanje particije" -#: libraries/messages.inc.php:605 tbl_operations.php:657 +#: libraries/messages.inc.php:601 tbl_operations.php:657 #, php-format msgid "Partition %s" msgstr "Particija %s" -#: libraries/messages.inc.php:606 server_privileges.php:1212 +#: libraries/messages.inc.php:602 server_privileges.php:1212 #, php-format msgid "The password for %s was changed successfully." msgstr "Lozinka za %s uspješno je promijenjena." -#: libraries/messages.inc.php:635 +#: libraries/messages.inc.php:631 #, php-format msgid "Schema of the \"%s\" database - Page %s" msgstr "Shema \"%s\" baza podataka - stranica %s" -#: libraries/messages.inc.php:636 +#: libraries/messages.inc.php:632 #, php-format msgid "The \"%s\" table doesn't exist!" msgstr "Tablica \"%s\" ne postoji!" -#: libraries/messages.inc.php:637 pdf_schema.php:1013 +#: libraries/messages.inc.php:633 pdf_schema.php:1013 msgid "No tables" msgstr "Nema tablica" -#: libraries/messages.inc.php:638 pmd_pdf.php:63 +#: libraries/messages.inc.php:634 pmd_pdf.php:63 #, fuzzy msgid "Page has been created" msgstr "Tablica %1$s je izrađena." -#: libraries/messages.inc.php:639 pmd_pdf.php:65 +#: libraries/messages.inc.php:635 pmd_pdf.php:65 msgid "Page creation failed" msgstr "" -#: libraries/messages.inc.php:640 +#: libraries/messages.inc.php:636 msgid "PDF" msgstr "PDF" -#: libraries/messages.inc.php:641 +#: libraries/messages.inc.php:637 msgid "(Generates a report containing the data of a single table)" msgstr "(Generira izvještaj koji sadrži podatke samo jedne tablice)" -#: libraries/messages.inc.php:642 +#: libraries/messages.inc.php:638 msgid "Report title" msgstr "Naslov izvještaja" -#: libraries/messages.inc.php:643 server_status.php:389 server_status.php:434 +#: libraries/messages.inc.php:639 server_status.php:389 server_status.php:434 #: server_status.php:497 server_status.php:555 msgid "per hour" msgstr "po satu" -#: libraries/messages.inc.php:644 server_status.php:498 +#: libraries/messages.inc.php:640 server_status.php:498 msgid "per minute" msgstr "po minuti" -#: libraries/messages.inc.php:645 server_status.php:499 +#: libraries/messages.inc.php:641 server_status.php:499 msgid "per second" msgstr "po sekundi" -#: libraries/messages.inc.php:646 libraries/mysql_charsets.lib.php:271 +#: libraries/messages.inc.php:642 libraries/mysql_charsets.lib.php:271 msgid "Persian" msgstr "Perzijski" -#: libraries/messages.inc.php:647 libraries/mysql_charsets.lib.php:250 +#: libraries/messages.inc.php:643 libraries/mysql_charsets.lib.php:250 msgid "phone book" msgstr "telefonski imenik" -#: libraries/messages.inc.php:648 +#: libraries/messages.inc.php:644 msgid "PHP array" msgstr "" -#: libraries/messages.inc.php:650 main.php:213 +#: libraries/messages.inc.php:646 main.php:213 msgid "PHP extension" msgstr "PHP ekstenzija" -#: libraries/messages.inc.php:654 libraries/relation.lib.php:163 +#: libraries/messages.inc.php:650 libraries/relation.lib.php:163 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/messages.inc.php:655 libraries/relation.lib.php:159 +#: libraries/messages.inc.php:651 libraries/relation.lib.php:159 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/messages.inc.php:656 libraries/relation.lib.php:161 +#: libraries/messages.inc.php:652 libraries/relation.lib.php:161 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" -#: libraries/messages.inc.php:657 libraries/relation.lib.php:162 +#: libraries/messages.inc.php:653 libraries/relation.lib.php:162 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/messages.inc.php:658 libraries/relation.lib.php:164 +#: libraries/messages.inc.php:654 libraries/relation.lib.php:164 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/messages.inc.php:661 libraries/mysql_charsets.lib.php:274 +#: libraries/messages.inc.php:657 libraries/mysql_charsets.lib.php:274 msgid "Polish" msgstr "Poljski" -#: libraries/messages.inc.php:662 libraries/replication_gui.lib.php:67 +#: libraries/messages.inc.php:658 libraries/replication_gui.lib.php:67 #: server_synchronize.php:1163 #, fuzzy msgid "Port" msgstr "Presloži" -#: libraries/messages.inc.php:667 tbl_indexes.php:67 +#: libraries/messages.inc.php:663 tbl_indexes.php:67 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Naziv primarnog ključa mora biti \"PRIMARY\"!" -#: libraries/messages.inc.php:668 tbl_indexes.php:184 +#: libraries/messages.inc.php:664 tbl_indexes.php:184 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" "(\"PRIMARY\" mora biti naziv i samo naziv primarnog ključa!)" -#: libraries/messages.inc.php:669 libraries/mult_submits.inc.php:76 +#: libraries/messages.inc.php:665 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:474 msgid "Primary" msgstr "Primarni" -#: libraries/messages.inc.php:673 server_privileges.php:227 +#: libraries/messages.inc.php:669 server_privileges.php:227 msgid "Includes all privileges except GRANT." msgstr "Obuhvaća sve privilegije osim GRANT (Podari)." -#: libraries/messages.inc.php:674 server_privileges.php:153 +#: libraries/messages.inc.php:670 server_privileges.php:153 #: server_privileges.php:476 msgid "Allows altering the structure of existing tables." msgstr "Dopušta izmjenu strukture postojećih tablice." -#: libraries/messages.inc.php:675 server_privileges.php:169 +#: libraries/messages.inc.php:671 server_privileges.php:169 #: server_privileges.php:482 msgid "Allows altering and dropping stored routines." msgstr "Dopušta izmjenu i odbacivanje pohranjenih rutina." -#: libraries/messages.inc.php:676 server_privileges.php:145 +#: libraries/messages.inc.php:672 server_privileges.php:145 #: server_privileges.php:475 msgid "Allows creating new databases and tables." msgstr "Dopušta izradu novih baze podataka i tablice." -#: libraries/messages.inc.php:677 server_privileges.php:168 +#: libraries/messages.inc.php:673 server_privileges.php:168 #: server_privileges.php:481 msgid "Allows creating stored routines." msgstr "Dopušta izradu pohranjenih rutina." -#: libraries/messages.inc.php:678 server_privileges.php:475 +#: libraries/messages.inc.php:674 server_privileges.php:475 msgid "Allows creating new tables." msgstr "Dopušta izradu novih tablica." -#: libraries/messages.inc.php:679 server_privileges.php:156 +#: libraries/messages.inc.php:675 server_privileges.php:156 #: server_privileges.php:479 msgid "Allows creating temporary tables." msgstr "Dopušta izradu privremenih tablica." -#: libraries/messages.inc.php:680 server_privileges.php:170 +#: libraries/messages.inc.php:676 server_privileges.php:170 #: server_privileges.php:515 msgid "Allows creating, dropping and renaming user accounts." msgstr "Dopušta izradu, odbacivanje i preimenovanje korisničkih naloga." -#: libraries/messages.inc.php:681 server_privileges.php:160 +#: libraries/messages.inc.php:677 server_privileges.php:160 #: server_privileges.php:164 server_privileges.php:487 #: server_privileges.php:491 msgid "Allows creating new views." msgstr "Dopušta izradu novih prikaza." -#: libraries/messages.inc.php:682 server_privileges.php:144 +#: libraries/messages.inc.php:678 server_privileges.php:144 #: server_privileges.php:467 msgid "Allows deleting data." msgstr "Dopušta brisanje podataka." -#: libraries/messages.inc.php:683 server_privileges.php:146 +#: libraries/messages.inc.php:679 server_privileges.php:146 #: server_privileges.php:478 msgid "Allows dropping databases and tables." msgstr "Dopušta odbacivanje baza podataka i tablica." -#: libraries/messages.inc.php:684 server_privileges.php:478 +#: libraries/messages.inc.php:680 server_privileges.php:478 msgid "Allows dropping tables." msgstr "Dopušta odbacivanje tablica." -#: libraries/messages.inc.php:685 server_privileges.php:161 +#: libraries/messages.inc.php:681 server_privileges.php:161 #: server_privileges.php:495 msgid "Allows to set up events for the event scheduler" msgstr "Omogućuje postavljanje događaja za planer" -#: libraries/messages.inc.php:686 server_privileges.php:171 +#: libraries/messages.inc.php:682 server_privileges.php:171 #: server_privileges.php:483 msgid "Allows executing stored routines." msgstr "Dopušta pokretanje pohranjenih rutina." -#: libraries/messages.inc.php:687 server_privileges.php:150 +#: libraries/messages.inc.php:683 server_privileges.php:150 #: server_privileges.php:470 msgid "Allows importing data from and exporting data into files." msgstr "Dopušta uvoz i izvoz podataka iz datoteka." -#: libraries/messages.inc.php:688 server_privileges.php:501 +#: libraries/messages.inc.php:684 server_privileges.php:501 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Dopušta dodavanje korisnika i privilegija bez ponovnog učitavanja tablica." -#: libraries/messages.inc.php:689 server_privileges.php:152 +#: libraries/messages.inc.php:685 server_privileges.php:152 #: server_privileges.php:477 msgid "Allows creating and dropping indexes." msgstr "Dopušta izradu i odbacivanje indeksa." -#: libraries/messages.inc.php:690 server_privileges.php:142 +#: libraries/messages.inc.php:686 server_privileges.php:142 #: server_privileges.php:403 server_privileges.php:465 msgid "Allows inserting and replacing data." msgstr "Dopušta umetanje i zamjenu podataka." -#: libraries/messages.inc.php:691 server_privileges.php:157 +#: libraries/messages.inc.php:687 server_privileges.php:157 #: server_privileges.php:510 msgid "Allows locking tables for the current thread." msgstr "Dopušta zaključavanje tablica u trenutnoj grani." -#: libraries/messages.inc.php:692 server_privileges.php:607 +#: libraries/messages.inc.php:688 server_privileges.php:607 #: server_privileges.php:609 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Ograničava broj novih povezivanja koje korisnik može otvoriti, po satu." -#: libraries/messages.inc.php:693 server_privileges.php:595 +#: libraries/messages.inc.php:689 server_privileges.php:595 #: server_privileges.php:597 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Ograničava broj upita koje korisnik može poslati poslužitelju, po satu." -#: libraries/messages.inc.php:694 server_privileges.php:601 +#: libraries/messages.inc.php:690 server_privileges.php:601 #: server_privileges.php:603 msgid "" "Limits the number of commands that change any table or database the user may " @@ -4697,60 +4697,60 @@ msgstr "" "Ograničava broj naredbi koje korisnik može pokrenuti, a čija je namjena " "mijenjanje bilo koje tablice ili baze podataka, po satu." -#: libraries/messages.inc.php:695 server_privileges.php:613 +#: libraries/messages.inc.php:691 server_privileges.php:613 #: server_privileges.php:615 msgid "Limits the number of simultaneous connections the user may have." msgstr "Ograničava broj istovremenih povezivanja koje korisnik može imati." -#: libraries/messages.inc.php:696 server_privileges.php:149 +#: libraries/messages.inc.php:692 server_privileges.php:149 #: server_privileges.php:505 msgid "Allows viewing processes of all users" msgstr "Omogućuje pregledavanje procesa za sve korisnike" -#: libraries/messages.inc.php:697 server_privileges.php:151 +#: libraries/messages.inc.php:693 server_privileges.php:151 #: server_privileges.php:409 server_privileges.php:511 msgid "Has no effect in this MySQL version." msgstr "Nema učinka u ovoj verziji MySQL-a." -#: libraries/messages.inc.php:698 server_privileges.php:147 +#: libraries/messages.inc.php:694 server_privileges.php:147 #: server_privileges.php:506 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Dopušta ponovno učitavanje postavki poslužitelja i pražnjenje privremene " "pohrane poslužitelja." -#: libraries/messages.inc.php:699 server_privileges.php:159 +#: libraries/messages.inc.php:695 server_privileges.php:159 #: server_privileges.php:513 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Dopušta korisnik postavljanje upita o lokaciji potčinjenih i gospodara." -#: libraries/messages.inc.php:700 server_privileges.php:158 +#: libraries/messages.inc.php:696 server_privileges.php:158 #: server_privileges.php:514 msgid "Needed for the replication slaves." msgstr "Potrebno za replikacijske potčinjene." -#: libraries/messages.inc.php:701 server_privileges.php:141 +#: libraries/messages.inc.php:697 server_privileges.php:141 #: server_privileges.php:400 server_privileges.php:464 msgid "Allows reading data." msgstr "Dopušta čitanje podataka." -#: libraries/messages.inc.php:702 server_privileges.php:154 +#: libraries/messages.inc.php:698 server_privileges.php:154 #: server_privileges.php:508 msgid "Gives access to the complete list of databases." msgstr "Daje pristup cjelokupnom popisu baza podataka." -#: libraries/messages.inc.php:703 server_privileges.php:165 +#: libraries/messages.inc.php:699 server_privileges.php:165 #: server_privileges.php:167 server_privileges.php:480 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Dopušta izvođenje upita SHOW CREATE VIEW." -#: libraries/messages.inc.php:704 server_privileges.php:148 +#: libraries/messages.inc.php:700 server_privileges.php:148 #: server_privileges.php:507 msgid "Allows shutting down the server." msgstr "Dopušta gašenje poslužitelja." -#: libraries/messages.inc.php:705 server_privileges.php:155 +#: libraries/messages.inc.php:701 server_privileges.php:155 #: server_privileges.php:504 msgid "" "Allows connecting, even if maximum number of connections is reached; " @@ -4761,55 +4761,55 @@ msgstr "" "većinu administrativnih operacija poput postavljanja općih varijabli ili " "eliminiranje grana drugih korisnika." -#: libraries/messages.inc.php:706 server_privileges.php:162 +#: libraries/messages.inc.php:702 server_privileges.php:162 #: server_privileges.php:496 msgid "Allows creating and dropping triggers" msgstr "Omogućuje izradu i uklanjanje okidača" -#: libraries/messages.inc.php:707 server_privileges.php:143 +#: libraries/messages.inc.php:703 server_privileges.php:143 #: server_privileges.php:406 server_privileges.php:466 msgid "Allows changing data." msgstr "Dopušta mijenjanje podataka." -#: libraries/messages.inc.php:708 server_privileges.php:221 +#: libraries/messages.inc.php:704 server_privileges.php:221 msgid "No privileges." msgstr "Bez privilegija." -#: libraries/messages.inc.php:710 server_privileges.php:1296 +#: libraries/messages.inc.php:706 server_privileges.php:1296 msgid "The privileges were reloaded successfully." msgstr "Privilegije su uspješno učitane." -#: libraries/messages.inc.php:712 libraries/server_links.inc.php:80 +#: libraries/messages.inc.php:708 libraries/server_links.inc.php:80 msgid "Processes" msgstr "Procesi" -#: libraries/messages.inc.php:714 main.php:187 +#: libraries/messages.inc.php:710 main.php:187 msgid "Protocol version" msgstr "Verzija protokola" -#: libraries/messages.inc.php:715 +#: libraries/messages.inc.php:711 msgid "Put fields names in the first row" msgstr "Nazive polja stavi u prvi red" -#: libraries/messages.inc.php:720 server_synchronize.php:1003 +#: libraries/messages.inc.php:716 server_synchronize.php:1003 msgid "The following queries have been executed:" msgstr "" -#: libraries/messages.inc.php:721 server_status.php:251 +#: libraries/messages.inc.php:717 server_status.php:251 msgid "Query cache" msgstr "Pohrana upita" -#: libraries/messages.inc.php:722 libraries/navigation_header.inc.php:80 +#: libraries/messages.inc.php:718 libraries/navigation_header.inc.php:80 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 setup/lib/messages.inc.php:122 msgid "Query window" msgstr "Prozor za upite" -#: libraries/messages.inc.php:725 querywindow.php:109 querywindow.php:217 +#: libraries/messages.inc.php:721 querywindow.php:109 querywindow.php:217 msgid "SQL history" msgstr "SQL povijest" -#: libraries/messages.inc.php:726 server_status.php:490 +#: libraries/messages.inc.php:722 server_status.php:490 #, php-format msgid "" "Query statistics: Since its startup, %s queries have been sent to the " @@ -4817,137 +4817,137 @@ msgid "" msgstr "" "Statistike upita: Od pokretanja poslužitelju je upućeno %s upita." -#: libraries/messages.inc.php:728 server_status.php:554 +#: libraries/messages.inc.php:724 server_status.php:554 msgid "Query type" msgstr "Vrsta upita" -#: libraries/messages.inc.php:729 libraries/sql_query_form.lib.php:381 +#: libraries/messages.inc.php:725 libraries/sql_query_form.lib.php:381 msgid "Do not overwrite this query from outside the window" msgstr "Ne prepisuj ovaj upit iz vanjskog prozora" -#: libraries/messages.inc.php:732 tbl_operations.php:663 +#: libraries/messages.inc.php:728 tbl_operations.php:663 msgid "Rebuild" msgstr "Ponovno izgradi" -#: libraries/messages.inc.php:733 server_status.php:394 +#: libraries/messages.inc.php:729 server_status.php:394 msgid "Received" msgstr "Primljeno" -#: libraries/messages.inc.php:734 pmd_pdf.php:89 +#: libraries/messages.inc.php:730 pmd_pdf.php:89 msgid "recommended" msgstr "preporučeno" -#: libraries/messages.inc.php:736 tbl_operations.php:702 +#: libraries/messages.inc.php:732 tbl_operations.php:702 msgid "Check referential integrity:" msgstr "Provjeri referencijalan integritet:" -#: libraries/messages.inc.php:740 pdf_schema.php:1032 pdf_schema.php:1141 +#: libraries/messages.inc.php:736 pdf_schema.php:1032 pdf_schema.php:1141 msgid "Relational schema" msgstr "Shema relacija" -#: libraries/messages.inc.php:744 tbl_relation.php:399 +#: libraries/messages.inc.php:740 tbl_relation.php:399 msgid "Relations" msgstr "Relacije" -#: libraries/messages.inc.php:745 tbl_structure.php:507 tbl_structure.php:509 +#: libraries/messages.inc.php:741 tbl_structure.php:507 tbl_structure.php:509 msgid "Relation view" msgstr "Prikaz relacija" -#: libraries/messages.inc.php:746 server_privileges.php:1246 +#: libraries/messages.inc.php:742 server_privileges.php:1246 msgid "Reloading the privileges" msgstr "Ponovno učitavanje privilegija" -#: libraries/messages.inc.php:747 navigation.php:66 navigation.php:67 +#: libraries/messages.inc.php:743 navigation.php:66 navigation.php:67 #: navigation.php:70 msgid "Reload navigation frame" msgstr "" -#: libraries/messages.inc.php:748 pmd_general.php:80 +#: libraries/messages.inc.php:744 pmd_general.php:80 msgid "Reload" msgstr "Osvježi" -#: libraries/messages.inc.php:749 libraries/server_synchronize.lib.php:1345 +#: libraries/messages.inc.php:745 libraries/server_synchronize.lib.php:1345 #: libraries/server_synchronize.lib.php:1371 #, fuzzy msgid "Remote server" msgstr "Web poslužitelj" -#: libraries/messages.inc.php:750 +#: libraries/messages.inc.php:746 msgid "Remove CRLF characters within fields" msgstr "" -#: libraries/messages.inc.php:751 tbl_operations.php:676 +#: libraries/messages.inc.php:747 tbl_operations.php:676 msgid "Remove partitioning" msgstr "Ukloni particioniranje" -#: libraries/messages.inc.php:752 server_privileges.php:1575 +#: libraries/messages.inc.php:748 server_privileges.php:1575 msgid "Remove selected users" msgstr "Ukloni odabrane korisnike" -#: libraries/messages.inc.php:755 tbl_operations.php:338 +#: libraries/messages.inc.php:751 tbl_operations.php:338 msgid "Rename table to" msgstr "Preimenuj tablicu u" -#: libraries/messages.inc.php:756 view_operations.php:93 +#: libraries/messages.inc.php:752 view_operations.php:93 #, fuzzy msgid "Rename view to" msgstr "Preimenuj tablicu u" -#: libraries/messages.inc.php:757 tbl_operations.php:664 +#: libraries/messages.inc.php:753 tbl_operations.php:664 msgid "Repair" msgstr "Popravi" -#: libraries/messages.inc.php:759 +#: libraries/messages.inc.php:755 msgid "Replace NULL by" msgstr "NULL zamijeni s" -#: libraries/messages.inc.php:760 +#: libraries/messages.inc.php:756 msgid "Replace table data with file" msgstr "Podatke tablice zamijeni datotekom" -#: libraries/messages.inc.php:761 server_replication.php:228 +#: libraries/messages.inc.php:757 server_replication.php:228 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: libraries/messages.inc.php:762 libraries/replication_gui.lib.php:236 +#: libraries/messages.inc.php:758 libraries/replication_gui.lib.php:236 #: server_replication.php:194 msgid "Add slave replication user" msgstr "" -#: libraries/messages.inc.php:763 server_replication.php:74 +#: libraries/messages.inc.php:759 server_replication.php:74 #, php-format msgid "Master server changed succesfully to %s" msgstr "" -#: libraries/messages.inc.php:764 server_replication.php:182 +#: libraries/messages.inc.php:760 server_replication.php:182 msgid "This server is configured as master in a replication process." msgstr "" -#: libraries/messages.inc.php:765 server_replication.php:322 +#: libraries/messages.inc.php:761 server_replication.php:322 msgid "Control slave:" msgstr "" -#: libraries/messages.inc.php:766 server_replication.php:65 +#: libraries/messages.inc.php:762 server_replication.php:65 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: libraries/messages.inc.php:767 server_replication.php:58 +#: libraries/messages.inc.php:763 server_replication.php:58 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: libraries/messages.inc.php:768 server_replication.php:221 +#: libraries/messages.inc.php:764 server_replication.php:221 msgid "Replicate all databases; Ignore:" msgstr "" -#: libraries/messages.inc.php:769 server_replication.php:222 +#: libraries/messages.inc.php:765 server_replication.php:222 msgid "Ignore all databases; Replicate:" msgstr "" -#: libraries/messages.inc.php:770 server_replication.php:218 +#: libraries/messages.inc.php:766 server_replication.php:218 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -4956,122 +4956,122 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: libraries/messages.inc.php:771 server_replication.php:217 +#: libraries/messages.inc.php:767 server_replication.php:217 msgid "Master configuration" msgstr "" -#: libraries/messages.inc.php:772 server_replication.php:181 +#: libraries/messages.inc.php:768 server_replication.php:181 #: server_replication.php:209 msgid "Master replication" msgstr "" -#: libraries/messages.inc.php:774 server_replication.php:230 +#: libraries/messages.inc.php:770 server_replication.php:230 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: libraries/messages.inc.php:775 server_replication.php:225 +#: libraries/messages.inc.php:771 server_replication.php:225 #, fuzzy msgid "Please select databases:" msgstr "Odaberite bazu podataka" -#: libraries/messages.inc.php:776 server_replication.php:210 +#: libraries/messages.inc.php:772 server_replication.php:210 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:188 +#: libraries/messages.inc.php:773 libraries/replication_gui.lib.php:188 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/messages.inc.php:778 server_replication.php:187 +#: libraries/messages.inc.php:774 server_replication.php:187 msgid "Show connected slaves" msgstr "" -#: libraries/messages.inc.php:779 libraries/messages.inc.php:885 +#: libraries/messages.inc.php:775 libraries/messages.inc.php:881 #: server_replication.php:184 server_status.php:281 #, fuzzy msgid "Show master status" msgstr "Prikaži stanje potčinjenog" -#: libraries/messages.inc.php:780 server_replication.php:334 +#: libraries/messages.inc.php:776 server_replication.php:334 msgid "Skipping error(s) might lead into unsynchronized master and slave!" msgstr "" -#: libraries/messages.inc.php:781 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:51 #: server_replication.php:347 msgid "Change or reconfigure master server" msgstr "" -#: libraries/messages.inc.php:782 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:778 libraries/replication_gui.lib.php:51 msgid "Slave configuration" msgstr "" -#: libraries/messages.inc.php:783 server_replication.php:305 +#: libraries/messages.inc.php:779 server_replication.php:305 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: libraries/messages.inc.php:784 server_replication.php:332 +#: libraries/messages.inc.php:780 server_replication.php:332 msgid "Error management:" msgstr "" -#: libraries/messages.inc.php:785 server_replication.php:328 +#: libraries/messages.inc.php:781 server_replication.php:328 #, php-format msgid "IO Thread %s only" msgstr "" -#: libraries/messages.inc.php:786 server_replication.php:296 +#: libraries/messages.inc.php:782 server_replication.php:296 msgid "Slave IO Thread not running!" msgstr "" -#: libraries/messages.inc.php:787 server_replication.php:355 +#: libraries/messages.inc.php:783 server_replication.php:355 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/messages.inc.php:788 server_replication.php:326 +#: libraries/messages.inc.php:784 server_replication.php:326 msgid "Reset slave" msgstr "" -#: libraries/messages.inc.php:789 server_replication.php:308 +#: libraries/messages.inc.php:785 server_replication.php:308 msgid "See slave status table" msgstr "" -#: libraries/messages.inc.php:790 server_replication.php:336 +#: libraries/messages.inc.php:786 server_replication.php:336 msgid "Skip current error" msgstr "" -#: libraries/messages.inc.php:791 server_replication.php:340 +#: libraries/messages.inc.php:787 server_replication.php:340 msgid "errors." msgstr "" -#: libraries/messages.inc.php:792 server_replication.php:337 +#: libraries/messages.inc.php:788 server_replication.php:337 msgid "Skip next" msgstr "" -#: libraries/messages.inc.php:793 server_replication.php:248 +#: libraries/messages.inc.php:789 server_replication.php:248 msgid "Slave replication" msgstr "" -#: libraries/messages.inc.php:794 server_replication.php:293 +#: libraries/messages.inc.php:790 server_replication.php:293 msgid "Slave SQL Thread not running!" msgstr "" -#: libraries/messages.inc.php:795 server_replication.php:327 +#: libraries/messages.inc.php:791 server_replication.php:327 #, php-format msgid "SQL Thread %s only" msgstr "" -#: libraries/messages.inc.php:796 +#: libraries/messages.inc.php:792 #, php-format msgid "" "This MySQL server works as %s in replication process. For further " @@ -5079,161 +5079,161 @@ msgid "" "\"#replication\">replication section." msgstr "" -#: libraries/messages.inc.php:797 +#: libraries/messages.inc.php:793 #, fuzzy msgid "Master status" msgstr "Prikaži stanje potčinjenog" -#: libraries/messages.inc.php:798 server_status.php:721 +#: libraries/messages.inc.php:794 server_status.php:721 #, fuzzy msgid "Replication status" msgstr "Replikacija" -#: libraries/messages.inc.php:799 +#: libraries/messages.inc.php:795 #, fuzzy msgid "Slave status" msgstr "Prikaži stanje potčinjenog" -#: libraries/messages.inc.php:800 server_replication.php:311 +#: libraries/messages.inc.php:796 server_replication.php:311 msgid "Synchronize databases with master" msgstr "" -#: libraries/messages.inc.php:801 server_replication.php:71 +#: libraries/messages.inc.php:797 server_replication.php:71 msgid "Unable to change master" msgstr "" -#: libraries/messages.inc.php:802 server_replication.php:51 +#: libraries/messages.inc.php:798 server_replication.php:51 msgid "Unknown error" msgstr "" -#: libraries/messages.inc.php:803 main.php:163 pdf_pages.php:344 +#: libraries/messages.inc.php:799 main.php:163 pdf_pages.php:344 #: setup/lib/FormDisplay.tpl.php:216 tbl_change.php:1175 msgid "Reset" msgstr "Povrat" -#: libraries/messages.inc.php:804 server_privileges.php:591 +#: libraries/messages.inc.php:800 server_privileges.php:591 msgid "Resource limits" msgstr "Ograničenja resursa" -#: libraries/messages.inc.php:805 tbl_change.php:1209 +#: libraries/messages.inc.php:801 tbl_change.php:1209 #, php-format msgid "Restart insertion with %s rows" msgstr "Ponovno pokreni umetanje s %s redaka" -#: libraries/messages.inc.php:807 server_privileges.php:1578 +#: libraries/messages.inc.php:803 server_privileges.php:1578 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Opozovi sve aktivne privilegije korisnika i potom ih izbriši." -#: libraries/messages.inc.php:808 server_privileges.php:1176 +#: libraries/messages.inc.php:804 server_privileges.php:1176 #, php-format msgid "You have revoked the privileges for %s" msgstr "Opozvali ste privilegije za %s" -#: libraries/messages.inc.php:809 server_privileges.php:1333 +#: libraries/messages.inc.php:805 server_privileges.php:1333 msgid "Revoke" msgstr "Opozovi" -#: libraries/messages.inc.php:810 libraries/mysql_charsets.lib.php:280 +#: libraries/messages.inc.php:806 libraries/mysql_charsets.lib.php:280 msgid "Romanian" msgstr "Rumunjski" -#: libraries/messages.inc.php:813 tbl_printview.php:404 tbl_structure.php:786 +#: libraries/messages.inc.php:809 tbl_printview.php:404 tbl_structure.php:786 msgid "Row length" msgstr "Duljina retka" -#: libraries/messages.inc.php:815 tbl_printview.php:414 tbl_structure.php:794 +#: libraries/messages.inc.php:811 tbl_printview.php:414 tbl_structure.php:794 msgid " Row size " msgstr " Veličina retka " -#: libraries/messages.inc.php:821 tbl_printview.php:366 tbl_structure.php:726 +#: libraries/messages.inc.php:817 tbl_printview.php:366 tbl_structure.php:726 msgid "Row Statistics" msgstr "Statistike redova" -#: libraries/messages.inc.php:822 +#: libraries/messages.inc.php:818 #, php-format msgid "running on %s" msgstr "Izvršava se pri %s" -#: libraries/messages.inc.php:824 libraries/sql_query_form.lib.php:223 +#: libraries/messages.inc.php:820 libraries/sql_query_form.lib.php:223 #, php-format msgid "Run SQL query/queries on server %s" msgstr "Pokreni SQL upit na poslužitelju %s" -#: libraries/messages.inc.php:825 libraries/sql_query_form.lib.php:240 +#: libraries/messages.inc.php:821 libraries/sql_query_form.lib.php:240 #: libraries/sql_query_form.lib.php:265 #, php-format msgid "Run SQL query/queries on database %s" msgstr "Pokreni SQL upit na bazi podataka %s" -#: libraries/messages.inc.php:826 libraries/mysql_charsets.lib.php:337 +#: libraries/messages.inc.php:822 libraries/mysql_charsets.lib.php:337 msgid "Russian" msgstr "Ruski" -#: libraries/messages.inc.php:829 pmd_general.php:68 +#: libraries/messages.inc.php:825 pmd_general.php:68 msgid "Save position" msgstr "Spremi položaj" -#: libraries/messages.inc.php:830 libraries/tbl_properties.inc.php:776 +#: libraries/messages.inc.php:826 libraries/tbl_properties.inc.php:776 #: pdf_pages.php:484 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:214 setup/lib/FormDisplay.tpl.php:215 #: tbl_change.php:1126 tbl_indexes.php:248 tbl_relation.php:566 msgid "Save" msgstr "Spremi" -#: libraries/messages.inc.php:831 +#: libraries/messages.inc.php:827 msgid "The scale factor is too small to fit the schema on one page" msgstr "" "Vrijednost omjera suviše je malen kako bi shema stala na jednu stranicu" -#: libraries/messages.inc.php:843 main.php:298 +#: libraries/messages.inc.php:839 main.php:298 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "Konfiguracijska datoteka potražuje tajnu lozinku (blowfish_secret)." -#: libraries/messages.inc.php:844 navigation.php:353 navigation.php:516 +#: libraries/messages.inc.php:840 navigation.php:353 navigation.php:516 msgid "Please select a database" msgstr "Odaberite bazu podataka" -#: libraries/messages.inc.php:846 server_binlog.php:120 +#: libraries/messages.inc.php:842 server_binlog.php:120 msgid "Select binary log to view" msgstr "Odaberite binarni zapisnik za prikaz" -#: libraries/messages.inc.php:847 tbl_select.php:270 +#: libraries/messages.inc.php:843 tbl_select.php:270 msgid "Select fields (at least one):" msgstr "Odaberite polja (najmanje jedno):" -#: libraries/messages.inc.php:851 pdf_pages.php:320 +#: libraries/messages.inc.php:847 pdf_pages.php:320 msgid "Select Tables" msgstr "Odaberite tablice" -#: libraries/messages.inc.php:853 server_status.php:404 +#: libraries/messages.inc.php:849 server_status.php:404 msgid "Sent" msgstr "Poslano" -#: libraries/messages.inc.php:857 libraries/select_server.lib.php:45 +#: libraries/messages.inc.php:853 libraries/select_server.lib.php:45 #: setup/frames/index.inc.php:97 setup/lib/messages.inc.php:115 msgid "Servers" msgstr "Poslužitelji" -#: libraries/messages.inc.php:858 server_status.php:255 +#: libraries/messages.inc.php:854 server_status.php:255 msgid "Delayed inserts" msgstr "Odgođena umetanja" -#: libraries/messages.inc.php:859 server_status.php:46 +#: libraries/messages.inc.php:855 server_status.php:46 msgid "Runtime Information" msgstr "Podaci o razini izvršavanja" -#: libraries/messages.inc.php:860 server_status.php:350 +#: libraries/messages.inc.php:856 server_status.php:350 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Ovaj MySQL poslužitelj radi tijekom %s. Pokrenut je %s." -#: libraries/messages.inc.php:861 libraries/server_links.inc.php:53 +#: libraries/messages.inc.php:857 libraries/server_links.inc.php:53 #: server_engines.php:112 server_engines.php:116 server_status.php:304 #: test/theme.php:105 msgid "Variables" msgstr "Varijable" -#: libraries/messages.inc.php:862 server_status.php:383 +#: libraries/messages.inc.php:858 server_status.php:383 msgid "" "Server traffic: These tables show the network traffic statistics of " "this MySQL server since its startup." @@ -5241,11 +5241,11 @@ msgstr "" "Promet poslužitelja: Ove tablice prikazuju statistike mrežnog prometa " "na ovom MySQL poslužitelju od trenutka njegovog pokretanja." -#: libraries/messages.inc.php:863 server_variables.php:35 +#: libraries/messages.inc.php:859 server_variables.php:35 msgid "Server variables and settings" msgstr "Varijable i postavke poslužitelja" -#: libraries/messages.inc.php:865 main.php:290 +#: libraries/messages.inc.php:861 main.php:290 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -5253,7 +5253,7 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: libraries/messages.inc.php:866 +#: libraries/messages.inc.php:862 msgid "" "Cannot start session without errors, please check errors given in your PHP " "and/or webserver log file and configure your PHP installation properly." @@ -5262,11 +5262,11 @@ msgstr "" "ispisuje vaš PHP i/ili datoteku zapisnika poslužitelja i pravilno " "konfigurirajte vašu instalaciju PHP-a." -#: libraries/messages.inc.php:867 server_variables.php:55 +#: libraries/messages.inc.php:863 server_variables.php:55 msgid "Session value" msgstr "Vrijednost sesije" -#: libraries/messages.inc.php:868 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:864 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 " @@ -5278,45 +5278,45 @@ msgstr "" "\") or a single quote (\"'\") amongst those values, precede it with a " "backslash (for example '\\\\xyz' or 'a\\'b')." -#: libraries/messages.inc.php:876 server_binlog.php:192 server_binlog.php:195 +#: libraries/messages.inc.php:872 server_binlog.php:192 server_binlog.php:195 #: server_processlist.php:49 server_processlist.php:51 msgid "Show Full Queries" msgstr "Prikaži pune upite" -#: libraries/messages.inc.php:878 pmd_general.php:64 +#: libraries/messages.inc.php:874 pmd_general.php:64 msgid "Show/Hide left menu" msgstr "Prikaži/sakrij lijevi izbornik" -#: libraries/messages.inc.php:880 sql.php:513 +#: libraries/messages.inc.php:876 sql.php:513 msgid "Showing as PHP code" msgstr "Prikazivanje kao PHP koda" -#: libraries/messages.inc.php:882 sql.php:516 tbl_replace.php:360 +#: libraries/messages.inc.php:878 sql.php:516 tbl_replace.php:360 msgid "Showing SQL query" msgstr "Prikazivanje SQL upita" -#: libraries/messages.inc.php:883 tbl_change.php:1132 +#: libraries/messages.inc.php:879 tbl_change.php:1132 #, fuzzy msgid "Show insert query" msgstr "Prikazivanje SQL upita" -#: libraries/messages.inc.php:886 server_status.php:273 +#: libraries/messages.inc.php:882 server_status.php:273 msgid "Show open tables" msgstr "Prikaži otvorene tablice" -#: libraries/messages.inc.php:887 main.php:219 +#: libraries/messages.inc.php:883 main.php:219 msgid "Show PHP information" msgstr "Prikaži PHP podatke" -#: libraries/messages.inc.php:889 server_status.php:278 +#: libraries/messages.inc.php:885 server_status.php:278 msgid "Show slave hosts" msgstr "Prikaži potčinjena računala" -#: libraries/messages.inc.php:890 server_status.php:284 +#: libraries/messages.inc.php:886 server_status.php:284 msgid "Show slave status" msgstr "Prikaži stanje potčinjenog" -#: libraries/messages.inc.php:891 +#: libraries/messages.inc.php:887 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -5326,12 +5326,12 @@ msgstr "" "ali su nadmašile vrijednost binlog_cache_size i upotrijebile privremenu " "datoteku za pohranjivanje izjava transakcija." -#: libraries/messages.inc.php:892 +#: libraries/messages.inc.php:888 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Broj transakcija koje su upotrebljavale privremeni binarni zapisnik pohrane." -#: libraries/messages.inc.php:893 +#: libraries/messages.inc.php:889 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -5343,11 +5343,11 @@ msgstr "" "moglo bi biti potrebno da povećate vrijednost tmp_table_size, kako biste " "privremene tablice smjestili u radnu memoriju, a ne na tvrdi disk." -#: libraries/messages.inc.php:894 +#: libraries/messages.inc.php:890 msgid "How many temporary files mysqld has created." msgstr "Koliko je privremenih tablica izradio mysqld." -#: libraries/messages.inc.php:895 +#: libraries/messages.inc.php:891 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -5355,7 +5355,7 @@ msgstr "" "Broj privremenih tablica u memoriji koje je poslužitelj automatski izradio " "tijekom izvršavanja izjava." -#: libraries/messages.inc.php:896 +#: libraries/messages.inc.php:892 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -5363,7 +5363,7 @@ msgstr "" "Broj redaka upisanih pomoću naredbe INSERT DELAYED, a kod kojih je došlo do " "neke vrste pogreške (vjerojatan razlog je udvojen ključ)." -#: libraries/messages.inc.php:897 +#: libraries/messages.inc.php:893 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -5371,23 +5371,23 @@ msgstr "" "Broj hvatište grana INSERT DELAYED u upotrebi. Svaka druga tablica na koju " "se primjeni INSERT DELAYED dobiva vlastitu granu." -#: libraries/messages.inc.php:898 +#: libraries/messages.inc.php:894 msgid "The number of INSERT DELAYED rows written." msgstr "Broj redaka zapisanih pomoću INSERT DELAYED." -#: libraries/messages.inc.php:899 +#: libraries/messages.inc.php:895 msgid "The number of executed FLUSH statements." msgstr "Broj izvršenih izjava FLUSH." -#: libraries/messages.inc.php:900 +#: libraries/messages.inc.php:896 msgid "The number of internal COMMIT statements." msgstr "Broj internih izjava COMMIT." -#: libraries/messages.inc.php:901 +#: libraries/messages.inc.php:897 msgid "The number of times a row was deleted from a table." msgstr "Brojka koja prokazuje koliko puta je redak bio izbrisan iz tablice." -#: libraries/messages.inc.php:902 +#: libraries/messages.inc.php:898 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -5397,7 +5397,7 @@ msgstr "" "tablicu s traženim nazivom. Ovaj se postupak naziva otkrivanje. " "Handler_discover naznačuje koliko je puta tablica bila otkrivenom." -#: libraries/messages.inc.php:903 +#: libraries/messages.inc.php:899 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -5407,7 +5407,7 @@ msgstr "" "broj je pokazatelj da poslužitelj izvodi mnogo potpunih pretraživanja " "indeksa, npr. SELECT col1 FROM foo, pri čemu je col1 indeksiran." -#: libraries/messages.inc.php:904 +#: libraries/messages.inc.php:900 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -5415,7 +5415,7 @@ msgstr "" "Broj zahtjeva za čitanje retka zasnovan na ključu. Velik broj je pokazatelj " "da su vaši upiti i tablice pravilno indeksirani." -#: libraries/messages.inc.php:905 +#: libraries/messages.inc.php:901 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -5425,7 +5425,7 @@ msgstr "" "povećava ako izvodite upite stupca indeksa s ograničenjem opsega ili ako " "izvodite pretraživanje indeksa." -#: libraries/messages.inc.php:906 +#: libraries/messages.inc.php:902 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -5433,7 +5433,7 @@ msgstr "" "Broj zahtjeva za čitanje prethodnog retka u redoslijedu ključa. Ovaj način " "čitanja uglavnom se upotrebljava za optimiziranje opcije ORDER BY ... DESC." -#: libraries/messages.inc.php:907 +#: libraries/messages.inc.php:903 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -5445,7 +5445,7 @@ msgstr "" "Vjerojatno imate mnogo upita koji zahtijevaju da MySQL pretražuje cjelokupne " "tablice ili imate spojeve koji ne upotrebljavaju ključ na pravilan način." -#: libraries/messages.inc.php:908 +#: libraries/messages.inc.php:904 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -5457,36 +5457,36 @@ msgstr "" "naznačuje da vaša tablice nisu pravilno indeksirane ili da vaši upiti nisu " "napisani na način koji iskorištava prednosti raspoloživih indeksa." -#: libraries/messages.inc.php:909 +#: libraries/messages.inc.php:905 msgid "The number of internal ROLLBACK statements." msgstr "Broj internih izjava ROLLBACK." -#: libraries/messages.inc.php:910 +#: libraries/messages.inc.php:906 msgid "The number of requests to update a row in a table." msgstr "Broj zahtjeva za ažuriranje retka u tablici." -#: libraries/messages.inc.php:911 +#: libraries/messages.inc.php:907 msgid "The number of requests to insert a row in a table." msgstr "Broj zahtjeva za umetanje retka u tablici." -#: libraries/messages.inc.php:912 +#: libraries/messages.inc.php:908 msgid "The number of pages containing data (dirty or clean)." msgstr "Broj stranice koje sadrže podatke (dirty ili clean)." -#: libraries/messages.inc.php:913 +#: libraries/messages.inc.php:909 msgid "The number of pages currently dirty." msgstr "Broj stranica koje su trenutno 'dirty'." -#: libraries/messages.inc.php:914 +#: libraries/messages.inc.php:910 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" "Broj stranica međuspremnika za koje je podnesen zahtjev za pražnjenjem." -#: libraries/messages.inc.php:915 +#: libraries/messages.inc.php:911 msgid "The number of free pages." msgstr "Broj slobodnih stranica." -#: libraries/messages.inc.php:916 +#: libraries/messages.inc.php:912 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -5496,7 +5496,7 @@ msgstr "" "čitaju ili zapisuju, ili ih nije moguće isprazniti ili ukloniti iz nekog " "drugog razloga." -#: libraries/messages.inc.php:917 +#: libraries/messages.inc.php:913 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -5508,11 +5508,11 @@ msgstr "" "je vrijednost moguće izračunati i kao Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: libraries/messages.inc.php:918 +#: libraries/messages.inc.php:914 msgid "Total size of buffer pool, in pages." msgstr "Ukupna veličina međuspremnika, u stranicama." -#: libraries/messages.inc.php:919 +#: libraries/messages.inc.php:915 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -5520,7 +5520,7 @@ msgstr "" "Broj \"nasumičnih\" pripremnih čitanja koje je InnoDB inicijalizirao. Događa " "se kad upit mora pretražiti veliki dio tablice, ali nasumičnim redoslijedom." -#: libraries/messages.inc.php:920 +#: libraries/messages.inc.php:916 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -5528,11 +5528,11 @@ msgstr "" "Broj slijednih pripremnih čitanja koje je inicijalizirao InnoDB. Ovo se " "događa kad InnoDB izvodi potpuno pretraživanje tablice." -#: libraries/messages.inc.php:921 +#: libraries/messages.inc.php:917 msgid "The number of logical read requests InnoDB has done." msgstr "Broj logičkih zahtjeva za čitanjem koje je obavio InnoDB." -#: libraries/messages.inc.php:922 +#: libraries/messages.inc.php:918 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -5540,7 +5540,7 @@ msgstr "" "Broj logičkih čitanja koje InnoDB nije mogao zadovoljiti iz međuspremnik i " "morao je izvesti čitanje po jedne stranice." -#: libraries/messages.inc.php:923 +#: libraries/messages.inc.php:919 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -5554,55 +5554,55 @@ msgstr "" "prikazuje stanje ovog čekanja. Ako je veličina međuspremnika pravilno " "postavljena, ova bi vrijednost trebala biti malenom." -#: libraries/messages.inc.php:924 +#: libraries/messages.inc.php:920 msgid "The number writes done to the InnoDB buffer pool." msgstr "Broj izvršenih zapisivanja u InnoDB međuspremnik." -#: libraries/messages.inc.php:925 +#: libraries/messages.inc.php:921 msgid "The number of fsync() operations so far." msgstr "Broj dosadašnjih fsync() operacija." -#: libraries/messages.inc.php:926 +#: libraries/messages.inc.php:922 msgid "The current number of pending fsync() operations." msgstr "Trenutan broj fsync() operacija u čekanju." -#: libraries/messages.inc.php:927 +#: libraries/messages.inc.php:923 msgid "The current number of pending reads." msgstr "Trenutan broj čitanja u čekanju." -#: libraries/messages.inc.php:928 +#: libraries/messages.inc.php:924 msgid "The current number of pending writes." msgstr "Trenutan broj zapisivanja u čekanju." -#: libraries/messages.inc.php:929 +#: libraries/messages.inc.php:925 msgid "The amount of data read so far, in bytes." msgstr "Količina podataka pročitanih do ovog trenutka, u bajtovima." -#: libraries/messages.inc.php:930 +#: libraries/messages.inc.php:926 msgid "The total number of data reads." msgstr "Ukupan broj iščitavanja podataka." -#: libraries/messages.inc.php:931 +#: libraries/messages.inc.php:927 msgid "The total number of data writes." msgstr "Ukupan broj zapisivanja podataka." -#: libraries/messages.inc.php:932 +#: libraries/messages.inc.php:928 msgid "The amount of data written so far, in bytes." msgstr "Količina podataka zapisanih do ovog trenutka, u bajtovima." -#: libraries/messages.inc.php:933 +#: libraries/messages.inc.php:929 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Broj dvostrukih zapisivanja do ovog trenutka i broj stranica zapisanih za " "ovu potrebu." -#: libraries/messages.inc.php:934 +#: libraries/messages.inc.php:930 msgid "The number of doublewrite operations that have been performed." msgstr "" "Broj dvostrukih zapisivanja do ovog trenutka i broj stranica zapisanih za " "ovu potrebu." -#: libraries/messages.inc.php:935 +#: libraries/messages.inc.php:931 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -5611,35 +5611,35 @@ msgstr "" "međuspremnika, te je bilo potrebno čekati njegovo pražnjenje prije nastavka " "rada." -#: libraries/messages.inc.php:936 +#: libraries/messages.inc.php:932 msgid "The number of log write requests." msgstr "Broj zahtjeva za zapisivanje u zapisnik." -#: libraries/messages.inc.php:937 +#: libraries/messages.inc.php:933 msgid "The number of physical writes to the log file." msgstr "Broj fizičkih zapisivanja u zapisnik." -#: libraries/messages.inc.php:938 +#: libraries/messages.inc.php:934 msgid "The number of fsync() writes done to the log file." msgstr "Broj fsyncs zapisivanja izvršenih u datoteci zapisnika." -#: libraries/messages.inc.php:939 +#: libraries/messages.inc.php:935 msgid "The number of pending log file fsyncs." msgstr "Broj naredbi fsyncs za zapisnik, a koje su na čekanju." -#: libraries/messages.inc.php:940 +#: libraries/messages.inc.php:936 msgid "Pending log file writes." msgstr "Zapisivanja u zapisnik na čekanju." -#: libraries/messages.inc.php:941 +#: libraries/messages.inc.php:937 msgid "The number of bytes written to the log file." msgstr "Broj bajtova zapisanih u zapisnik." -#: libraries/messages.inc.php:942 +#: libraries/messages.inc.php:938 msgid "The number of pages created." msgstr "Broj izrađenih stranica." -#: libraries/messages.inc.php:943 +#: libraries/messages.inc.php:939 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -5648,52 +5648,52 @@ msgstr "" "vrijednosti prebrojavaju u stranicama. Veličina stranice dopušta njihovo " "jednostavno pretvaranje u bajtove." -#: libraries/messages.inc.php:944 +#: libraries/messages.inc.php:940 msgid "The number of pages read." msgstr "Broj iščitanih stranica." -#: libraries/messages.inc.php:945 +#: libraries/messages.inc.php:941 msgid "The number of pages written." msgstr "Broj zapisanih stranica." -#: libraries/messages.inc.php:946 +#: libraries/messages.inc.php:942 msgid "The number of row locks currently being waited for." msgstr "Broj zaključavanja redaka na koje se trenutno čeka." -#: libraries/messages.inc.php:947 +#: libraries/messages.inc.php:943 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Prosječno vrijeme postizanja zaključanosti retka, u milisekundama." -#: libraries/messages.inc.php:948 +#: libraries/messages.inc.php:944 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" "Ukupno vrijeme utrošeno na postizanja zaključanosti retka, u milisekundama." -#: libraries/messages.inc.php:949 +#: libraries/messages.inc.php:945 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Najdulje vrijeme postizanja zaključanosti retka, u milisekundama." -#: libraries/messages.inc.php:950 +#: libraries/messages.inc.php:946 msgid "The number of times a row lock had to be waited for." msgstr "Broj okolnosti kad je bilo potrebno čekati na zaključanost retka." -#: libraries/messages.inc.php:951 +#: libraries/messages.inc.php:947 msgid "The number of rows deleted from InnoDB tables." msgstr "Broj redaka izbrisanih iz InnoDB tablica." -#: libraries/messages.inc.php:952 +#: libraries/messages.inc.php:948 msgid "The number of rows inserted in InnoDB tables." msgstr "Broj redaka umetnutih u InnoDB tablice." -#: libraries/messages.inc.php:953 +#: libraries/messages.inc.php:949 msgid "The number of rows read from InnoDB tables." msgstr "Broj redaka iščitanih iz InnoDB tablica." -#: libraries/messages.inc.php:954 +#: libraries/messages.inc.php:950 msgid "The number of rows updated in InnoDB tables." msgstr "Broj ažuriranih redaka u InnoDB tablicama." -#: libraries/messages.inc.php:955 +#: libraries/messages.inc.php:951 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -5701,7 +5701,7 @@ msgstr "" "Broj ključnih blokova u pohrani ključeva koji su izmijenjeni ali još nisu " "ispražnjeni na disk. Nekoć se nazivalo: Not_flushed_key_blocks." -#: libraries/messages.inc.php:956 +#: libraries/messages.inc.php:952 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -5709,7 +5709,7 @@ msgstr "" "Broj neiskorištenih blokova u pohrani ključeva. Ovu vrijednost možete " "upotrijebiti za određivanje veličine pohrane ključeva koja je u upotrebi." -#: libraries/messages.inc.php:957 +#: libraries/messages.inc.php:953 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -5719,11 +5719,11 @@ msgstr "" "gornje razine koja označuje najveći broj blokova koji su ikad bili u " "istovremenoj upotrebi." -#: libraries/messages.inc.php:958 +#: libraries/messages.inc.php:954 msgid "The number of requests to read a key block from the cache." msgstr "Broj zahtjeva za čitanje ključnog bloka iz pohrane." -#: libraries/messages.inc.php:959 +#: libraries/messages.inc.php:955 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -5734,15 +5734,15 @@ msgstr "" "promašivanja pohrane moguće je izračunati putem naredbi Key_reads/" "Key_read_requests." -#: libraries/messages.inc.php:960 +#: libraries/messages.inc.php:956 msgid "The number of requests to write a key block to the cache." msgstr "Broj zahtjeva za zapisivanje ključnog bloka u pohranu." -#: libraries/messages.inc.php:961 +#: libraries/messages.inc.php:957 msgid "The number of physical writes of a key block to disk." msgstr "Broj fizičkih zapisivanja ključnih blokova na disk. " -#: libraries/messages.inc.php:962 +#: libraries/messages.inc.php:958 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -5752,11 +5752,11 @@ msgstr "" "upita. Korisno za uspoređivanje troškova različitih planova upita za isti " "upit. Zadana vrijednost je 0 i podrazumijeva da još nema složenog upita." -#: libraries/messages.inc.php:963 +#: libraries/messages.inc.php:959 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Broj redaka koji čekaju svoje upisivanje u red čekanja INSERT DELAYED." -#: libraries/messages.inc.php:964 +#: libraries/messages.inc.php:960 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -5764,36 +5764,36 @@ msgstr "" "Broj tablica koje su otvorene. Ako je iznos otvorenih tablica velik, vaša " "vrijednost za pohranu tablica vjerojatno je premala." -#: libraries/messages.inc.php:965 +#: libraries/messages.inc.php:961 msgid "The number of files that are open." msgstr "Broj otvorenih datoteka." -#: libraries/messages.inc.php:966 +#: libraries/messages.inc.php:962 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Broj otvorenih protoka (uglavnom se upotrebljava za vođenje zapisnika)." -#: libraries/messages.inc.php:967 +#: libraries/messages.inc.php:963 msgid "The number of tables that are open." msgstr "Broj otvorenih tablica." -#: libraries/messages.inc.php:968 +#: libraries/messages.inc.php:964 msgid "The number of free memory blocks in query cache." msgstr "Broj slobodnih memorijskih blokova u pohrani upita." -#: libraries/messages.inc.php:969 +#: libraries/messages.inc.php:965 msgid "The amount of free memory for query cache." msgstr "Količina slobodne memorije za pohranu upita." -#: libraries/messages.inc.php:970 +#: libraries/messages.inc.php:966 msgid "The number of cache hits." msgstr "Broj pronalaženja u pohrani." -#: libraries/messages.inc.php:971 +#: libraries/messages.inc.php:967 msgid "The number of queries added to the cache." msgstr "Broj upita pridodanih u pohranu." -#: libraries/messages.inc.php:972 +#: libraries/messages.inc.php:968 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -5806,7 +5806,7 @@ msgstr "" "nedavno upotrebljavanog (LRU - least recently used) radi odlučivanja koje će " "upite ukloniti iz pohrane." -#: libraries/messages.inc.php:973 +#: libraries/messages.inc.php:969 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -5814,24 +5814,24 @@ msgstr "" "Broj upita koji nisu pohranjeni (nisu za pohranu ili nisu pohranjeni zbog " "postavke query_cache_type)." -#: libraries/messages.inc.php:974 +#: libraries/messages.inc.php:970 msgid "The number of queries registered in the cache." msgstr "Broj upita registriranih u pohrani." -#: libraries/messages.inc.php:975 +#: libraries/messages.inc.php:971 msgid "The total number of blocks in the query cache." msgstr "Ukupan broj blokova u pohrani upita." -#: libraries/messages.inc.php:976 +#: libraries/messages.inc.php:972 msgctxt "$strShowStatusReset" msgid "Reset" msgstr "Povrat" -#: libraries/messages.inc.php:977 +#: libraries/messages.inc.php:973 msgid "The status of failsafe replication (not yet implemented)." msgstr "Stanje replikacije sigurnosti protiv otkaza (još nije implementirano)." -#: libraries/messages.inc.php:978 +#: libraries/messages.inc.php:974 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -5839,12 +5839,12 @@ msgstr "" "Broj spojeva koji ne upotrebljavaju indekse. Ako ovaj iznos nije 0, bit će " "potrebno da pažljivo provjerite indekse vaših tablica." -#: libraries/messages.inc.php:979 +#: libraries/messages.inc.php:975 msgid "The number of joins that used a range search on a reference table." msgstr "" "Broj spojeva koji nad referentnom tablicom upotrebljavaju opseg traženja." -#: libraries/messages.inc.php:980 +#: libraries/messages.inc.php:976 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -5853,7 +5853,7 @@ msgstr "" "retka. (Ako ovaj iznos nije 0, bit će potrebno da pažljivo provjerite " "indekse vaših tablica." -#: libraries/messages.inc.php:981 +#: libraries/messages.inc.php:977 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -5861,17 +5861,17 @@ msgstr "" "Broj spojeva koji su upotrijebili opsege nad prvom tablicom. (Općenito nije " "kritično ako je ovaj iznos velik.)" -#: libraries/messages.inc.php:982 +#: libraries/messages.inc.php:978 msgid "The number of joins that did a full scan of the first table." msgstr "Broj spojeva koji su izveli potpuno pretraživanje prve tablice." -#: libraries/messages.inc.php:983 +#: libraries/messages.inc.php:979 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "Broj privremenih tablica koje su trenutno otvorene od strane potčinjene SQL " "grane." -#: libraries/messages.inc.php:984 +#: libraries/messages.inc.php:980 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -5879,12 +5879,12 @@ msgstr "" "Ukupna količina (od pokretanja) ponovnih pokušaja transakcija od strane " "replikacijske potčinjene SQL grane." -#: libraries/messages.inc.php:985 +#: libraries/messages.inc.php:981 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Uključeno (ON) ako je ovaj poslužitelj potčinjen i povezan na gospodara." -#: libraries/messages.inc.php:986 +#: libraries/messages.inc.php:982 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -5892,14 +5892,14 @@ msgstr "" "Broj grana kojima je bilo potrebno više vremena za izradu, nego što je to " "definirano u slow_launch_time (sporo vrijeme pokretanja), u sekundama." -#: libraries/messages.inc.php:987 +#: libraries/messages.inc.php:983 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "Broj upita kojima je bilo potrebno više vremena nego što je to definirano u " "long_query_time (dugo vrijeme upita), u sekundama." -#: libraries/messages.inc.php:988 +#: libraries/messages.inc.php:984 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -5909,23 +5909,23 @@ msgstr "" "Ako je ovaj iznos velik, razmotrite mogućnost povećanja vrijednosti " "sistemske varijable sort_buffer_size." -#: libraries/messages.inc.php:989 +#: libraries/messages.inc.php:985 msgid "The number of sorts that were done with ranges." msgstr "Broj preslagivanja učinjenih pomoću opsega." -#: libraries/messages.inc.php:990 +#: libraries/messages.inc.php:986 msgid "The number of sorted rows." msgstr "Broj presloženih redaka." -#: libraries/messages.inc.php:991 +#: libraries/messages.inc.php:987 msgid "The number of sorts that were done by scanning the table." msgstr "Broj preslagivanja učinjenih pomoću pretraživanja tablice." -#: libraries/messages.inc.php:992 +#: libraries/messages.inc.php:988 msgid "The number of times that a table lock was acquired immediately." msgstr "Količina trenutno postignutih zaključavanja tablica." -#: libraries/messages.inc.php:993 +#: libraries/messages.inc.php:989 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -5937,7 +5937,7 @@ msgstr "" "problema s performansama, bit će potrebno da prvo optimizirate svoje upite i " "potom ili podijelite svoje tablice ili upotrijebite replikaciju." -#: libraries/messages.inc.php:994 +#: libraries/messages.inc.php:990 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -5947,11 +5947,11 @@ msgstr "" "kao Threads_created/Connections. Ako je ovaj iznos prikazan crvenom bojom, " "bit će potrebno da povećate svoju vrijednost thread_cache_size." -#: libraries/messages.inc.php:995 +#: libraries/messages.inc.php:991 msgid "The number of currently open connections." msgstr "Broj trenutno otvorenih veza." -#: libraries/messages.inc.php:996 +#: libraries/messages.inc.php:992 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -5963,74 +5963,74 @@ msgstr "" "(Uobičajeno, ako imate dobru implementaciju grana, ova opcija neće pružiti " "primjetna poboljšanja performansi.)" -#: libraries/messages.inc.php:997 +#: libraries/messages.inc.php:993 msgid "The number of threads that are not sleeping." msgstr "Broj grana koje nisu uspavane." -#: libraries/messages.inc.php:999 tbl_printview.php:75 +#: libraries/messages.inc.php:995 tbl_printview.php:75 msgid "Show tables" msgstr "Prikaži tablice" -#: libraries/messages.inc.php:1000 libraries/sql_query_form.lib.php:396 +#: libraries/messages.inc.php:996 libraries/sql_query_form.lib.php:396 msgid " Show this query here again " msgstr "Ovaj upit ponovno prikaži ovdje" -#: libraries/messages.inc.php:1001 libraries/mysql_charsets.lib.php:217 +#: libraries/messages.inc.php:997 libraries/mysql_charsets.lib.php:217 #: libraries/mysql_charsets.lib.php:342 msgid "Simplified Chinese" msgstr "Kineski, pojednostavljen" -#: libraries/messages.inc.php:1002 tbl_operations.php:258 +#: libraries/messages.inc.php:998 tbl_operations.php:258 msgid "(singly)" msgstr "(pojedinačno)" -#: libraries/messages.inc.php:1005 libraries/replication_gui.lib.php:52 +#: libraries/messages.inc.php:1001 libraries/replication_gui.lib.php:52 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" msgstr "" -#: libraries/messages.inc.php:1006 libraries/mysql_charsets.lib.php:283 +#: libraries/messages.inc.php:1002 libraries/mysql_charsets.lib.php:283 msgid "Slovak" msgstr "Slovački" -#: libraries/messages.inc.php:1007 libraries/mysql_charsets.lib.php:286 +#: libraries/messages.inc.php:1003 libraries/mysql_charsets.lib.php:286 msgid "Slovenian" msgstr "Slovenski" -#: libraries/messages.inc.php:1008 pmd_general.php:95 +#: libraries/messages.inc.php:1004 pmd_general.php:95 msgid "Small/Big All" msgstr "Malo / Sve veliko" -#: libraries/messages.inc.php:1009 pmd_general.php:91 +#: libraries/messages.inc.php:1005 pmd_general.php:91 msgid "Snap to grid" msgstr "Poravnaj s mrežom" -#: libraries/messages.inc.php:1011 server_synchronize.php:1167 +#: libraries/messages.inc.php:1007 server_synchronize.php:1167 msgid "Socket" msgstr "" -#: libraries/messages.inc.php:1013 server_status.php:259 +#: libraries/messages.inc.php:1009 server_status.php:259 msgid "Sorting" msgstr "Preslagivanje" -#: libraries/messages.inc.php:1015 tbl_printview.php:310 tbl_structure.php:657 +#: libraries/messages.inc.php:1011 tbl_printview.php:310 tbl_structure.php:657 msgid "Space usage" msgstr "Iskorištenost prostora" -#: libraries/messages.inc.php:1016 libraries/mysql_charsets.lib.php:289 +#: libraries/messages.inc.php:1012 libraries/mysql_charsets.lib.php:289 msgid "Spanish" msgstr "Španjolski" -#: libraries/messages.inc.php:1019 +#: libraries/messages.inc.php:1015 msgid "Export type" msgstr "Vrsta izvoza" -#: libraries/messages.inc.php:1020 +#: libraries/messages.inc.php:1016 msgid "Export time in UTC" msgstr "" -#: libraries/messages.inc.php:1021 libraries/sqlparser.lib.php:173 +#: libraries/messages.inc.php:1017 libraries/sqlparser.lib.php:173 msgid "" "There is a chance that you may have found a bug in the SQL parser. Please " "examine your query closely, and check that the quotes are correct and not " @@ -6052,7 +6052,7 @@ msgstr "" "samo onaj upit koji izaziva probleme i podnesite prijavu o nedostatku " "zajedno s dijelom podatka u donjem odjeljku CUT:" -#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:137 +#: libraries/messages.inc.php:1018 libraries/sqlparser.lib.php:137 msgid "" "There seems to be an error in your SQL query. The MySQL server error output " "below, if there is any, may also help you in diagnosing the problem" @@ -6060,33 +6060,33 @@ msgstr "" "Izgleda da postoji pogreška u vašem SQL upitu. Ispis pogreške MySQL " "poslužitelja može vam pomoći u dijagnosticiranju problema." -#: libraries/messages.inc.php:1026 libraries/sqlparser.lib.php:495 +#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:495 msgid "Invalid Identifer" msgstr "Neispravna ID oznaka" -#: libraries/messages.inc.php:1027 libraries/sqlparser.lib.php:344 +#: libraries/messages.inc.php:1023 libraries/sqlparser.lib.php:344 msgid "Unclosed quote" msgstr "Navodnik nije zatvoren" -#: libraries/messages.inc.php:1028 libraries/sqlparser.lib.php:612 +#: libraries/messages.inc.php:1024 libraries/sqlparser.lib.php:612 msgid "Unknown Punctuation String" msgstr "Nepoznat niz interpunkcija" -#: libraries/messages.inc.php:1030 server_replication.php:327 +#: libraries/messages.inc.php:1026 server_replication.php:327 #: server_replication.php:328 #, fuzzy msgid "Start" msgstr "Sub" -#: libraries/messages.inc.php:1033 tbl_printview.php:369 tbl_structure.php:729 +#: libraries/messages.inc.php:1029 tbl_printview.php:369 tbl_structure.php:729 msgid "Statements" msgstr "Izjave" -#: libraries/messages.inc.php:1034 tbl_printview.php:380 tbl_structure.php:741 +#: libraries/messages.inc.php:1030 tbl_printview.php:380 tbl_structure.php:741 msgid "static" msgstr "" -#: libraries/messages.inc.php:1035 server_status.php:388 +#: libraries/messages.inc.php:1031 server_status.php:388 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -6095,43 +6095,43 @@ msgstr "" "prikaza, pri čemu bi statistike koje prikazuje MySQL poslužitelj mogle biti " "netočne." -#: libraries/messages.inc.php:1038 server_replication.php:327 +#: libraries/messages.inc.php:1034 server_replication.php:327 #: server_replication.php:328 msgid "Stop" msgstr "" -#: libraries/messages.inc.php:1039 server_engines.php:49 +#: libraries/messages.inc.php:1035 server_engines.php:49 msgid "Storage Engines" msgstr "Pogoni pohrane" -#: libraries/messages.inc.php:1040 libraries/tbl_properties.inc.php:726 +#: libraries/messages.inc.php:1036 libraries/tbl_properties.inc.php:726 #: server_engines.php:58 tbl_operations.php:353 msgid "Storage Engine" msgstr "Pogon pohrane" -#: libraries/messages.inc.php:1042 +#: libraries/messages.inc.php:1038 msgid "CSV for MS Excel" msgstr "CSV za MS Excel" -#: libraries/messages.inc.php:1044 tbl_structure.php:516 tbl_structure.php:518 +#: libraries/messages.inc.php:1040 tbl_structure.php:516 tbl_structure.php:518 msgid "Propose table structure" msgstr "Predloži strukturu tablice" -#: libraries/messages.inc.php:1045 server_synchronize.php:424 +#: libraries/messages.inc.php:1041 server_synchronize.php:424 #: server_synchronize.php:867 #, fuzzy msgid "Structure Difference" msgstr "Struktura za pregledavanje" -#: libraries/messages.inc.php:1049 server_synchronize.php:265 +#: libraries/messages.inc.php:1045 server_synchronize.php:265 msgid "Structure Synchronization" msgstr "" -#: libraries/messages.inc.php:1050 libraries/sql_query_form.lib.php:462 +#: libraries/messages.inc.php:1046 libraries/sql_query_form.lib.php:462 msgid "Submit" msgstr "Podnesi" -#: libraries/messages.inc.php:1052 main.php:358 +#: libraries/messages.inc.php:1048 main.php:358 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -6140,161 +6140,161 @@ msgstr "" "Poslužitelj pokrenut sa Suhosin. Proučite %sdokumentaciju%s radi mogućih " "problema." -#: libraries/messages.inc.php:1054 libraries/mysql_charsets.lib.php:295 +#: libraries/messages.inc.php:1050 libraries/mysql_charsets.lib.php:295 #: libraries/mysql_charsets.lib.php:392 msgid "Swedish" msgstr "Švedski" -#: libraries/messages.inc.php:1060 tbl_operations.php:556 +#: libraries/messages.inc.php:1056 tbl_operations.php:556 msgid "Switch to copied table" msgstr "Prebaci se na kopiranu tablicu" -#: libraries/messages.inc.php:1061 server_synchronize.php:1213 +#: libraries/messages.inc.php:1057 server_synchronize.php:1213 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." msgstr "" -#: libraries/messages.inc.php:1062 server_synchronize.php:451 +#: libraries/messages.inc.php:1058 server_synchronize.php:451 #: server_synchronize.php:896 msgid "Synchronize Databases" msgstr "" -#: libraries/messages.inc.php:1063 libraries/server_links.inc.php:92 +#: libraries/messages.inc.php:1059 libraries/server_links.inc.php:92 #: server_synchronize.php:1092 server_synchronize.php:1100 msgid "Synchronize" msgstr "" -#: libraries/messages.inc.php:1065 server_synchronize.php:430 +#: libraries/messages.inc.php:1061 server_synchronize.php:430 #: server_synchronize.php:873 msgid "Add column(s)" msgstr "" -#: libraries/messages.inc.php:1066 tbl_create.php:62 +#: libraries/messages.inc.php:1062 tbl_create.php:62 #, php-format msgid "Table %s already exists!" msgstr "Tablica %s već postoji!" -#: libraries/messages.inc.php:1067 server_synchronize.php:432 +#: libraries/messages.inc.php:1063 server_synchronize.php:432 #: server_synchronize.php:875 msgid "Alter column(s)" msgstr "" -#: libraries/messages.inc.php:1068 tbl_addfield.php:189 tbl_alter.php:103 +#: libraries/messages.inc.php:1064 tbl_addfield.php:189 tbl_alter.php:103 #: tbl_indexes.php:98 #, php-format msgid "Table %1$s has been altered successfully" msgstr "Tablica %1$s uspješno je izmijenjena." -#: libraries/messages.inc.php:1069 server_synchronize.php:434 +#: libraries/messages.inc.php:1065 server_synchronize.php:434 #: server_synchronize.php:877 msgid "Apply index(s)" msgstr "" -#: libraries/messages.inc.php:1071 server_synchronize.php:446 +#: libraries/messages.inc.php:1067 server_synchronize.php:446 #: server_synchronize.php:890 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: libraries/messages.inc.php:1072 tbl_move_copy.php:82 +#: libraries/messages.inc.php:1068 tbl_move_copy.php:82 msgid "The table name is empty!" msgstr "Naziv tablice je prazan!" -#: libraries/messages.inc.php:1073 tbl_create.php:249 +#: libraries/messages.inc.php:1069 tbl_create.php:249 #, php-format msgid "Table %1$s has been created." msgstr "Tablica %1$s je izrađena." -#: libraries/messages.inc.php:1076 tbl_operations.php:628 +#: libraries/messages.inc.php:1072 tbl_operations.php:628 #, php-format msgid "Table %s has been flushed" msgstr "Tablica %s je ispražnjena" -#: libraries/messages.inc.php:1077 server_synchronize.php:436 +#: libraries/messages.inc.php:1073 server_synchronize.php:436 #: server_synchronize.php:879 msgid "Insert row(s)" msgstr "" -#: libraries/messages.inc.php:1078 libraries/tbl_links.inc.php:107 +#: libraries/messages.inc.php:1074 libraries/tbl_links.inc.php:107 #: libraries/tbl_links.inc.php:140 libraries/tbl_links.inc.php:141 msgid "Table seems to be empty!" msgstr "Tablica izgleda praznom!" -#: libraries/messages.inc.php:1079 tbl_operations.php:568 +#: libraries/messages.inc.php:1075 tbl_operations.php:568 msgid "Table maintenance" msgstr "Održavanje tablice" -#: libraries/messages.inc.php:1080 libraries/tbl_properties.inc.php:618 +#: libraries/messages.inc.php:1076 libraries/tbl_properties.inc.php:618 #: server_synchronize.php:428 server_synchronize.php:871 msgid "Table name" msgstr "Naziv tablice" -#: libraries/messages.inc.php:1081 pdf_schema.php:1116 +#: libraries/messages.inc.php:1077 pdf_schema.php:1116 msgid "Table of contents" msgstr "Sadržaj tablice" -#: libraries/messages.inc.php:1082 tbl_operations.php:334 +#: libraries/messages.inc.php:1078 tbl_operations.php:334 msgid "Table options" msgstr "Opcije tablice" -#: libraries/messages.inc.php:1083 server_synchronize.php:431 +#: libraries/messages.inc.php:1079 server_synchronize.php:431 #: server_synchronize.php:874 msgid "Remove column(s)" msgstr "" -#: libraries/messages.inc.php:1084 server_synchronize.php:433 +#: libraries/messages.inc.php:1080 server_synchronize.php:433 #: server_synchronize.php:876 msgid "Remove index(s)" msgstr "" -#: libraries/messages.inc.php:1088 server_synchronize.php:435 +#: libraries/messages.inc.php:1084 server_synchronize.php:435 #: server_synchronize.php:878 msgid "Update row(s)" msgstr "" -#: libraries/messages.inc.php:1090 server_synchronize.php:942 +#: libraries/messages.inc.php:1086 server_synchronize.php:942 msgid "Target database has been synchronized with source database" msgstr "" -#: libraries/messages.inc.php:1091 server_privileges.php:392 +#: libraries/messages.inc.php:1087 server_privileges.php:392 #: server_privileges.php:527 server_privileges.php:1679 #: server_privileges.php:1685 msgid "Table-specific privileges" msgstr "Privilegije specifične za tablicu" -#: libraries/messages.inc.php:1092 server_status.php:254 +#: libraries/messages.inc.php:1088 server_status.php:254 msgid "Temporary data" msgstr "Privremeni podaci" -#: libraries/messages.inc.php:1093 tbl_change.php:728 +#: libraries/messages.inc.php:1089 tbl_change.php:728 msgid " Because of its length,
this field might not be editable " msgstr "" " Zbog svoje duljine,
uređivanje ovog polja možda neće biti moguće " -#: libraries/messages.inc.php:1094 +#: libraries/messages.inc.php:1090 msgid "Texy! text" msgstr "Texy! tekst" -#: libraries/messages.inc.php:1095 libraries/mysql_charsets.lib.php:298 +#: libraries/messages.inc.php:1091 libraries/mysql_charsets.lib.php:298 #: libraries/mysql_charsets.lib.php:395 msgid "Thai" msgstr "Thai" -#: libraries/messages.inc.php:1102 libraries/replication_gui.lib.php:308 +#: libraries/messages.inc.php:1098 libraries/replication_gui.lib.php:308 #: server_privileges.php:734 msgid "This Host" msgstr "Ovo računalo" -#: libraries/messages.inc.php:1103 server_status.php:252 +#: libraries/messages.inc.php:1099 server_status.php:252 msgid "Threads" msgstr "Grane" -#: libraries/messages.inc.php:1104 server_processlist.php:22 +#: libraries/messages.inc.php:1100 server_processlist.php:22 #, php-format msgid "Thread %s was successfully killed." msgstr "Grana %s uspješno je prekinuta." -#: libraries/messages.inc.php:1106 +#: libraries/messages.inc.php:1102 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -6303,185 +6303,185 @@ msgstr "" "znači da phpMyAdmin neće biti u mogućnosti završiti ovaj uvoz sve dok ne " "povećate vremenska ograničenja unutar php." -#: libraries/messages.inc.php:1109 pmd_pdf.php:94 +#: libraries/messages.inc.php:1105 pmd_pdf.php:94 msgid "to/from page" msgstr "stranica od / prema" -#: libraries/messages.inc.php:1110 pdf_pages.php:343 +#: libraries/messages.inc.php:1106 pdf_pages.php:343 msgid "Toggle scratchboard" msgstr "Uključi bilješke" -#: libraries/messages.inc.php:1111 pmd_general.php:99 +#: libraries/messages.inc.php:1107 pmd_general.php:99 msgid "Toggle small/big" msgstr "Malo / Veliko" -#: libraries/messages.inc.php:1112 pmd_help.php:27 +#: libraries/messages.inc.php:1108 pmd_help.php:27 msgid "To select relation, click :" msgstr "Za odabir relacije pritisnite:" -#: libraries/messages.inc.php:1115 libraries/tbl_links.inc.php:149 +#: libraries/messages.inc.php:1111 libraries/tbl_links.inc.php:149 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" -#: libraries/messages.inc.php:1116 tbl_tracking.php:655 +#: libraries/messages.inc.php:1112 tbl_tracking.php:655 msgid "Activate now" msgstr "" -#: libraries/messages.inc.php:1117 tbl_tracking.php:653 +#: libraries/messages.inc.php:1113 tbl_tracking.php:653 #, php-format msgid "Activate tracking for %s.%s" msgstr "" -#: libraries/messages.inc.php:1118 tbl_tracking.php:221 +#: libraries/messages.inc.php:1114 tbl_tracking.php:221 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/messages.inc.php:1119 tbl_tracking.php:688 +#: libraries/messages.inc.php:1115 tbl_tracking.php:688 #, fuzzy msgid "Create version" msgstr "Izradi relaciju" -#: libraries/messages.inc.php:1120 tbl_tracking.php:668 +#: libraries/messages.inc.php:1116 tbl_tracking.php:668 #, php-format msgid "Create version %s of %s.%s" msgstr "" -#: libraries/messages.inc.php:1122 tbl_tracking.php:412 +#: libraries/messages.inc.php:1118 tbl_tracking.php:412 msgid "Data definition statement" msgstr "" -#: libraries/messages.inc.php:1123 tbl_tracking.php:463 +#: libraries/messages.inc.php:1119 tbl_tracking.php:463 msgid "Data manipulation statement" msgstr "" -#: libraries/messages.inc.php:1124 tbl_tracking.php:410 tbl_tracking.php:461 +#: libraries/messages.inc.php:1120 tbl_tracking.php:410 tbl_tracking.php:461 #, fuzzy msgid "Date" msgstr "Podaci" -#: libraries/messages.inc.php:1125 tbl_tracking.php:642 +#: libraries/messages.inc.php:1121 tbl_tracking.php:642 msgid "Deactivate now" msgstr "" -#: libraries/messages.inc.php:1126 tbl_tracking.php:640 +#: libraries/messages.inc.php:1122 tbl_tracking.php:640 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "" -#: libraries/messages.inc.php:1127 tbl_tracking.php:521 +#: libraries/messages.inc.php:1123 tbl_tracking.php:521 #, fuzzy, php-format msgid "Export as %s" msgstr "Vrsta izvoza" -#: libraries/messages.inc.php:1130 tbl_tracking.php:251 tbl_tracking.php:379 +#: libraries/messages.inc.php:1126 tbl_tracking.php:251 tbl_tracking.php:379 msgid "Close" msgstr "" -#: libraries/messages.inc.php:1131 tbl_tracking.php:114 +#: libraries/messages.inc.php:1127 tbl_tracking.php:114 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/messages.inc.php:1133 tbl_tracking.php:397 tbl_tracking.php:504 +#: libraries/messages.inc.php:1129 tbl_tracking.php:397 tbl_tracking.php:504 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "" -#: libraries/messages.inc.php:1134 tbl_tracking.php:561 +#: libraries/messages.inc.php:1130 tbl_tracking.php:561 msgid "Show versions" msgstr "" -#: libraries/messages.inc.php:1135 tbl_tracking.php:507 +#: libraries/messages.inc.php:1131 tbl_tracking.php:507 msgid "SQL dump (file download)" msgstr "" -#: libraries/messages.inc.php:1136 tbl_tracking.php:508 +#: libraries/messages.inc.php:1132 tbl_tracking.php:508 msgid "SQL dump" msgstr "" -#: libraries/messages.inc.php:1137 tbl_tracking.php:213 +#: libraries/messages.inc.php:1133 tbl_tracking.php:213 msgid "SQL statements executed." msgstr "" -#: libraries/messages.inc.php:1138 +#: libraries/messages.inc.php:1134 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/messages.inc.php:1139 tbl_tracking.php:509 +#: libraries/messages.inc.php:1135 tbl_tracking.php:509 msgid "SQL execution" msgstr "" -#: libraries/messages.inc.php:1140 tbl_tracking.php:230 +#: libraries/messages.inc.php:1136 tbl_tracking.php:230 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/messages.inc.php:1141 tbl_tracking.php:381 +#: libraries/messages.inc.php:1137 tbl_tracking.php:381 msgid "Tracking statements" msgstr "" -#: libraries/messages.inc.php:1148 tbl_tracking.php:593 +#: libraries/messages.inc.php:1144 tbl_tracking.php:593 #, fuzzy msgid "Version" msgstr "Perzijski" -#: libraries/messages.inc.php:1149 tbl_tracking.php:672 +#: libraries/messages.inc.php:1145 tbl_tracking.php:672 msgid "Track these data definition statements:" msgstr "" -#: libraries/messages.inc.php:1150 tbl_tracking.php:680 +#: libraries/messages.inc.php:1146 tbl_tracking.php:680 msgid "Track these data manipulation statements:" msgstr "" -#: libraries/messages.inc.php:1155 tbl_tracking.php:411 tbl_tracking.php:462 +#: libraries/messages.inc.php:1151 tbl_tracking.php:411 tbl_tracking.php:462 #, fuzzy msgid "Username" msgstr "Korisničko ime:" -#: libraries/messages.inc.php:1156 tbl_tracking.php:203 +#: libraries/messages.inc.php:1152 tbl_tracking.php:203 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "" -#: libraries/messages.inc.php:1157 tbl_tracking.php:187 +#: libraries/messages.inc.php:1153 tbl_tracking.php:187 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "" -#: libraries/messages.inc.php:1158 tbl_tracking.php:195 +#: libraries/messages.inc.php:1154 tbl_tracking.php:195 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "" -#: libraries/messages.inc.php:1159 tbl_tracking.php:262 +#: libraries/messages.inc.php:1155 tbl_tracking.php:262 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/messages.inc.php:1161 tbl_tracking.php:220 +#: libraries/messages.inc.php:1157 tbl_tracking.php:220 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/messages.inc.php:1162 libraries/mysql_charsets.lib.php:219 +#: libraries/messages.inc.php:1158 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:362 msgid "Traditional Chinese" msgstr "Kineski, tradicionalan" -#: libraries/messages.inc.php:1163 libraries/mysql_charsets.lib.php:292 +#: libraries/messages.inc.php:1159 libraries/mysql_charsets.lib.php:292 msgid "Traditional Spanish" msgstr "Španjolski, tradicionalan" -#: libraries/messages.inc.php:1164 server_status.php:388 +#: libraries/messages.inc.php:1160 server_status.php:388 msgid "Traffic" msgstr "Promet" -#: libraries/messages.inc.php:1165 server_status.php:261 +#: libraries/messages.inc.php:1161 server_status.php:261 msgid "Transaction coordinator" msgstr "Koordinator transakcije" -#: libraries/messages.inc.php:1166 +#: libraries/messages.inc.php:1162 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 " @@ -6493,7 +6493,7 @@ msgstr "" "opciju kako biste upotrijebili naziv polja koje sadrži naziv datoteke. Ako " "upotrijebite drugu opciju, u prvu opciju morate unijeti prazan niz." -#: libraries/messages.inc.php:1167 +#: libraries/messages.inc.php:1163 msgid "" "Displays hexadecimal representation of data. Optional first parameter " "specifies how often space will be added (defaults to 2 nibbles)." @@ -6502,7 +6502,7 @@ msgstr "" "određuje koliko često će prazna mjesta biti dodavana (zadana vrijednost je " "2)." -#: libraries/messages.inc.php:1168 +#: libraries/messages.inc.php:1164 msgid "" "Displays a clickable thumbnail. The options are the maximum width and height " "in pixels. The original aspect ratio is preserved." @@ -6510,15 +6510,15 @@ msgstr "" "Prikazuje sličicu s mogućnošću pritiskanja. Opcije su najveća širina i " "visina u pikselima. Izvorne proporcije su očuvane." -#: libraries/messages.inc.php:1169 +#: libraries/messages.inc.php:1165 msgid "Displays a link to download this image." msgstr "Prikazuje vezu za preuzimanje ove slike." -#: libraries/messages.inc.php:1170 +#: libraries/messages.inc.php:1166 msgid "See image/jpeg: inline" msgstr "Pogledajte slika/jpeg: inline" -#: libraries/messages.inc.php:1171 +#: libraries/messages.inc.php:1167 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 " @@ -6539,7 +6539,7 @@ msgstr "" "dokumentaciju o upotrebi PHP funkcije strftime(), a za \"utc\" pogledajte " "dokumentaciju o upotrebi funkcije gmdate()." -#: libraries/messages.inc.php:1172 +#: libraries/messages.inc.php:1168 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 " @@ -6563,7 +6563,7 @@ msgstr "" "postavljena na vrijednost 1, spriječit će omatanje i osigurati prikaz ispisa " "u jednom retku (zadano: 1)." -#: libraries/messages.inc.php:1173 +#: libraries/messages.inc.php:1169 msgid "" "Displays the contents of the field as-is, without running it through " "htmlspecialchars(). That is, the field is assumed to contain valid HTML." @@ -6572,7 +6572,7 @@ msgstr "" "htmlspecialchars(). Odnosno, za polje se pretpostavlja da ne sadrži valjani " "HTML kod." -#: libraries/messages.inc.php:1174 +#: libraries/messages.inc.php:1170 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 " @@ -6582,7 +6582,7 @@ msgstr "" "prefiks, poput \"http://www.example.com/\". Druga i treća opcija " "predstavljaju širinu i visinu u pikselima." -#: libraries/messages.inc.php:1175 +#: libraries/messages.inc.php:1171 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 " @@ -6591,11 +6591,11 @@ msgstr "" "Prikazuje vezu. Polje sadrži naziv datoteke. Prva opcija je URL prefiks, " "poput \"http://www.example.com/\". Druga opcija je naziv veze." -#: libraries/messages.inc.php:1176 +#: libraries/messages.inc.php:1172 msgid "Formats text as SQL query with syntax highlighting." msgstr "Oblikuje tekst kao SQL upit s naglašavanjem sintakse." -#: libraries/messages.inc.php:1177 +#: libraries/messages.inc.php:1173 msgid "" "Displays a part of a string. The first option is the number of characters to " "skip from the beginning of the string (Default 0). The second option is the " @@ -6608,70 +6608,70 @@ msgstr "" "do završetka niza). Treća opcija je niz koji je potrebno pridodati iza " "završetka i/ili prije početka kad započne srezivanje (zadano: \"...\")." -#: libraries/messages.inc.php:1179 server_binlog.php:183 server_binlog.php:186 +#: libraries/messages.inc.php:1175 server_binlog.php:183 server_binlog.php:186 #: server_processlist.php:49 server_processlist.php:51 msgid "Truncate Shown Queries" msgstr "Sreži prikazane rezultate" -#: libraries/messages.inc.php:1180 libraries/mysql_charsets.lib.php:301 +#: libraries/messages.inc.php:1176 libraries/mysql_charsets.lib.php:301 #: libraries/mysql_charsets.lib.php:389 msgid "Turkish" msgstr "Turski" -#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:304 +#: libraries/messages.inc.php:1179 libraries/mysql_charsets.lib.php:304 #: libraries/mysql_charsets.lib.php:386 msgid "Ukrainian" msgstr "Ukrajinski" -#: libraries/messages.inc.php:1185 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:1181 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 msgid "Unicode" msgstr "Unicode" -#: libraries/messages.inc.php:1187 libraries/mysql_charsets.lib.php:398 +#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:398 #: libraries/mysql_charsets.lib.php:405 msgid "unknown" msgstr "nepoznato" -#: libraries/messages.inc.php:1190 server_privileges.php:1152 +#: libraries/messages.inc.php:1186 server_privileges.php:1152 #, php-format msgid "You have updated the privileges for %s." msgstr "Ažurirali ste privilegije za %s." -#: libraries/messages.inc.php:1191 user_password.php:112 +#: libraries/messages.inc.php:1187 user_password.php:112 msgid "The profile has been updated." msgstr "Profil je ažuriran." -#: libraries/messages.inc.php:1193 libraries/relation.lib.php:138 +#: libraries/messages.inc.php:1189 libraries/relation.lib.php:138 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "Pogledajte dokumentaciju radi uputa o ažuriranju tablice column_comments." -#: libraries/messages.inc.php:1194 +#: libraries/messages.inc.php:1190 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Trebali biste nadograditi na %s %s ili kasniju." -#: libraries/messages.inc.php:1204 tbl_printview.php:314 tbl_structure.php:661 +#: libraries/messages.inc.php:1200 tbl_printview.php:314 tbl_structure.php:661 msgid "Usage" msgstr "Upotreba" -#: libraries/messages.inc.php:1205 +#: libraries/messages.inc.php:1201 msgid "Enclose table and field names with backquotes" msgstr "Unesi nazive tablica i polja sa stražnjim navodnicima" -#: libraries/messages.inc.php:1206 libraries/replication_gui.lib.php:314 +#: libraries/messages.inc.php:1202 libraries/replication_gui.lib.php:314 #: server_privileges.php:740 msgid "Use Host Table" msgstr "Upotrijebi tablicu poslužitelja" -#: libraries/messages.inc.php:1207 server_privileges.php:848 +#: libraries/messages.inc.php:1203 server_privileges.php:848 #, php-format msgid "The user %s already exists!" msgstr "Korisnik %s već postoji!" -#: libraries/messages.inc.php:1209 libraries/replication_gui.lib.php:55 +#: libraries/messages.inc.php:1205 libraries/replication_gui.lib.php:55 #: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245 #: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255 #: server_privileges.php:672 server_privileges.php:675 @@ -6679,37 +6679,37 @@ msgstr "Korisnik %s već postoji!" msgid "User name" msgstr "Korisničko ime" -#: libraries/messages.inc.php:1210 server_privileges.php:1645 +#: libraries/messages.inc.php:1206 server_privileges.php:1645 msgid "The selected user was not found in the privilege table." msgstr "Odabrani korisnik nije pronađen u tablici privilegija." -#: libraries/messages.inc.php:1211 server_privileges.php:1365 +#: libraries/messages.inc.php:1207 server_privileges.php:1365 msgid "User overview" msgstr "Pregled korisnika" -#: libraries/messages.inc.php:1212 server_privileges.php:1261 +#: libraries/messages.inc.php:1208 server_privileges.php:1261 msgid "The selected users have been deleted successfully." msgstr "Odabrani korisnici uspješno su izbrisani." -#: libraries/messages.inc.php:1213 server_privileges.php:2026 +#: libraries/messages.inc.php:1209 server_privileges.php:2026 #, php-format msgid "Users having access to "%s"" msgstr "Korisnici koji imaju pristup u \"%s\"" -#: libraries/messages.inc.php:1214 main.php:189 server_privileges.php:1350 +#: libraries/messages.inc.php:1210 main.php:189 server_privileges.php:1350 #: server_privileges.php:1497 server_privileges.php:1611 #: server_privileges.php:2029 server_processlist.php:54 msgid "User" msgstr "Korisnik" -#: libraries/messages.inc.php:1215 tbl_change.php:1171 +#: libraries/messages.inc.php:1211 tbl_change.php:1171 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Pomoću tipke TAB premještate se od jedne vrijednost do druge vrijednost, " "odnosno s tipkama CTRL+Strelice za premještanje bilo kamo" -#: libraries/messages.inc.php:1217 libraries/replication_gui.lib.php:251 +#: libraries/messages.inc.php:1213 libraries/replication_gui.lib.php:251 #: libraries/replication_gui.lib.php:319 libraries/replication_gui.lib.php:342 #: server_privileges.php:678 server_privileges.php:745 #: server_privileges.php:769 server_privileges.php:1889 @@ -6717,7 +6717,7 @@ msgstr "" msgid "Use text field" msgstr "Upotrijebi tekstualno polje" -#: libraries/messages.inc.php:1221 libraries/sqlvalidator.lib.php:68 +#: libraries/messages.inc.php:1217 libraries/sqlvalidator.lib.php:68 #, php-format msgid "" "The SQL validator could not be initialized. Please check if you have " @@ -6726,90 +6726,90 @@ msgstr "" "SQL validator nije bilo moguće pokrenuti. Provjerite jeste li instalirali " "potrebna PHP proširenja, na način opisan u %sdokumentaciji%s." -#: libraries/messages.inc.php:1222 libraries/replication_gui.lib.php:111 +#: libraries/messages.inc.php:1218 libraries/replication_gui.lib.php:111 #: server_status.php:627 tbl_change.php:324 tbl_printview.php:370 #: tbl_select.php:139 tbl_structure.php:730 msgid "Value" msgstr "Vrijednost" -#: libraries/messages.inc.php:1223 libraries/replication_gui.lib.php:110 +#: libraries/messages.inc.php:1219 libraries/replication_gui.lib.php:110 #: libraries/sql_query_form.lib.php:445 server_status.php:626 #: server_variables.php:52 msgid "Variable" msgstr "Varijabla" -#: libraries/messages.inc.php:1225 server_export.php:21 +#: libraries/messages.inc.php:1221 server_export.php:21 msgid "View dump (schema) of databases" msgstr "Prikaži ispis (shemu) baza podataka" -#: libraries/messages.inc.php:1227 tbl_export.php:23 +#: libraries/messages.inc.php:1223 tbl_export.php:23 msgid "View dump (schema) of table" msgstr "Prikaži ispis (shemu) tablice" -#: libraries/messages.inc.php:1231 view_create.php:142 +#: libraries/messages.inc.php:1227 view_create.php:142 msgid "VIEW name" msgstr "Naziv prikaza" -#: libraries/messages.inc.php:1237 main.php:205 +#: libraries/messages.inc.php:1233 main.php:205 msgid "Web server" msgstr "Web poslužitelj" -#: libraries/messages.inc.php:1239 libraries/mysql_charsets.lib.php:277 +#: libraries/messages.inc.php:1235 libraries/mysql_charsets.lib.php:277 #: libraries/mysql_charsets.lib.php:325 msgid "West European" msgstr "Zapadno europski" -#: libraries/messages.inc.php:1240 main.php:230 +#: libraries/messages.inc.php:1236 main.php:230 msgid "Wiki" msgstr "Wiki" -#: libraries/messages.inc.php:1241 server_privileges.php:2138 +#: libraries/messages.inc.php:1237 server_privileges.php:2138 msgid "wildcard" msgstr "džoker" -#: libraries/messages.inc.php:1248 +#: libraries/messages.inc.php:1244 #, fuzzy msgid "Export contents" msgstr "Vrsta izvoza" -#: libraries/messages.inc.php:1249 +#: libraries/messages.inc.php:1245 msgid "Export functions" msgstr "" -#: libraries/messages.inc.php:1250 +#: libraries/messages.inc.php:1246 msgid "Export procedures" msgstr "" -#: libraries/messages.inc.php:1251 +#: libraries/messages.inc.php:1247 msgid "Export Structure Schemas (recommended)" msgstr "" -#: libraries/messages.inc.php:1252 +#: libraries/messages.inc.php:1248 #, fuzzy msgid "Export tables" msgstr "Vrsta izvoza" -#: libraries/messages.inc.php:1253 +#: libraries/messages.inc.php:1249 #, fuzzy msgid "Export triggers" msgstr "Vrsta izvoza" -#: libraries/messages.inc.php:1254 +#: libraries/messages.inc.php:1250 #, fuzzy msgid "Export views" msgstr "Vrsta izvoza" -#: libraries/messages.inc.php:1255 +#: libraries/messages.inc.php:1251 msgid "XML" msgstr "XML" -#: libraries/messages.inc.php:1259 server_privileges.php:592 +#: libraries/messages.inc.php:1255 server_privileges.php:592 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" "Napomena: Postavljanje ovih opcija na vrijednost 0 (nula) uklanja " "ograničenje." -#: libraries/messages.inc.php:1260 +#: libraries/messages.inc.php:1256 msgid "\"zipped\"" msgstr "\"zipano\"" diff --git a/po/hu.po b/po/hu.po index 2ded1d9b8..61bb10c09 100644 --- 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-05-13 11:25+0200\n" +"POT-Creation-Date: 2010-05-13 11:30+0200\n" "PO-Revision-Date: 2010-03-12 09:15+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: hungarian \n" @@ -13,19 +13,19 @@ msgstr "" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:38 browse_foreigners.php:59 -#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:870 +#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:866 #: server_privileges.php:1475 msgid "Show all" msgstr "Mind látható" #: browse_foreigners.php:82 db_operations.php:648 -#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:394 -#: libraries/export/pdf.php:147 libraries/messages.inc.php:597 +#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394 +#: libraries/export/pdf.php:147 libraries/messages.inc.php:593 #: pdf_schema.php:283 pdf_schema.php:1123 pdf_schema.php:1139 msgid "Page number:" msgstr "Oldalszám:" -#: browse_foreigners.php:132 libraries/messages.inc.php:1242 +#: browse_foreigners.php:132 libraries/messages.inc.php:1238 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -38,7 +38,7 @@ 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/db_links.inc.php:75 -#: libraries/messages.inc.php:841 libraries/tbl_links.inc.php:63 +#: libraries/messages.inc.php:837 libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Keresés" @@ -47,12 +47,12 @@ msgstr "Keresés" #: db_search.php:362 db_structure.php:567 js/messages.php:48 #: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2267 +#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 #: 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 #: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614 -#: libraries/messages.inc.php:361 libraries/replication_gui.lib.php:73 +#: libraries/messages.inc.php:357 libraries/replication_gui.lib.php:73 #: libraries/replication_gui.lib.php:365 libraries/select_server.lib.php:104 #: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477 #: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782 @@ -72,33 +72,33 @@ msgid "Go" msgstr "Indítás" #: browse_foreigners.php:168 browse_foreigners.php:172 -#: libraries/Index.class.php:442 libraries/messages.inc.php:459 +#: libraries/Index.class.php:442 libraries/messages.inc.php:455 #: tbl_tracking.php:320 msgid "Keyname" msgstr "Kulcsnév" #: browse_foreigners.php:169 browse_foreigners.php:171 -#: libraries/messages.inc.php:252 server_collations.php:55 +#: libraries/messages.inc.php:248 server_collations.php:55 #: server_collations.php:67 server_engines.php:59 server_status.php:628 msgid "Description" msgstr "Leírás" #: browse_foreigners.php:247 browse_foreigners.php:256 #: browse_foreigners.php:268 browse_foreigners.php:276 -#: libraries/messages.inc.php:1218 +#: libraries/messages.inc.php:1214 msgid "Use this value" msgstr "Ezen érték használata" -#: db_create.php:46 libraries/messages.inc.php:215 +#: db_create.php:46 libraries/messages.inc.php:211 #, php-format 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 libraries/messages.inc.php:232 +#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:228 msgid "Database comment: " msgstr "Megjegyzés az adatbázishoz: " -#: db_datadict.php:165 libraries/messages.inc.php:1070 +#: db_datadict.php:165 libraries/messages.inc.php:1066 #: libraries/tbl_properties.inc.php:724 pdf_schema.php:1236 #: tbl_operations.php:345 tbl_printview.php:130 msgid "Table comments" @@ -107,7 +107,7 @@ msgstr "Tábla megjegyzése" #: db_datadict.php:174 db_qbe.php:174 libraries/Index.class.php:446 #: libraries/export/htmlword.php:244 libraries/export/latex.php:360 #: libraries/export/odt.php:294 libraries/export/texytext.php:233 -#: libraries/messages.inc.php:317 libraries/tbl_properties.inc.php:99 +#: libraries/messages.inc.php:313 libraries/tbl_properties.inc.php:99 #: libraries/tbl_properties.inc.php:275 pdf_schema.php:1262 #: pdf_schema.php:1283 tbl_change.php:308 tbl_indexes.php:189 #: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135 @@ -119,7 +119,7 @@ msgstr "Mező" #: libraries/db_events.inc.php:31 libraries/db_routines.inc.php:42 #: 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/messages.inc.php:1181 +#: libraries/export/texytext.php:234 libraries/messages.inc.php:1177 #: libraries/tbl_properties.inc.php:100 pdf_schema.php:1263 #: pdf_schema.php:1284 server_privileges.php:2031 tbl_change.php:287 #: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313 @@ -131,7 +131,7 @@ msgstr "Típus" #: db_datadict.php:177 libraries/Index.class.php:449 #: libraries/export/htmlword.php:246 libraries/export/latex.php:360 #: libraries/export/odt.php:300 libraries/export/texytext.php:235 -#: libraries/messages.inc.php:576 libraries/tbl_properties.inc.php:109 +#: libraries/messages.inc.php:572 libraries/tbl_properties.inc.php:109 #: pdf_schema.php:1265 pdf_schema.php:1286 tbl_change.php:323 #: tbl_printview.php:145 tbl_structure.php:181 tbl_tracking.php:276 #: tbl_tracking.php:327 @@ -140,7 +140,7 @@ msgstr "Nulla" #: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 -#: libraries/export/texytext.php:236 libraries/messages.inc.php:238 +#: libraries/export/texytext.php:236 libraries/messages.inc.php:234 #: libraries/tbl_properties.inc.php:106 pdf_schema.php:1266 #: pdf_schema.php:1287 tbl_printview.php:146 tbl_structure.php:182 #: tbl_tracking.php:277 @@ -149,14 +149,14 @@ msgstr "Alapértelmezett" #: db_datadict.php:182 libraries/export/htmlword.php:249 #: libraries/export/latex.php:362 libraries/export/odt.php:307 -#: libraries/export/texytext.php:238 libraries/messages.inc.php:483 +#: libraries/export/texytext.php:238 libraries/messages.inc.php:479 #: pdf_schema.php:1268 pdf_schema.php:1289 tbl_printview.php:150 msgid "Links to" msgstr "Hivatkozások:" #: db_datadict.php:184 db_printview.php:112 libraries/export/htmlword.php:252 #: libraries/export/latex.php:365 libraries/export/odt.php:312 -#: libraries/export/texytext.php:241 libraries/messages.inc.php:163 +#: libraries/export/texytext.php:241 libraries/messages.inc.php:159 #: libraries/tbl_properties.inc.php:130 pdf_schema.php:1279 #: pdf_schema.php:1290 tbl_printview.php:152 msgid "Comments" @@ -165,7 +165,7 @@ msgstr "Megjegyzések" #: db_datadict.php:267 libraries/Index.class.php:359 #: 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/messages.inc.php:559 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:555 #: libraries/mult_submits.inc.php:263 pdf_schema.php:1344 #: server_privileges.php:1529 server_privileges.php:1540 #: server_privileges.php:1850 server_privileges.php:1855 @@ -177,7 +177,7 @@ msgstr "Nem" #: db_datadict.php:267 libraries/Index.class.php:360 #: libraries/Index.class.php:385 libraries/export/htmlword.php:322 #: libraries/export/latex.php:430 libraries/export/odt.php:368 -#: libraries/export/texytext.php:311 libraries/messages.inc.php:1257 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:1253 #: libraries/mult_submits.inc.php:45 libraries/mult_submits.inc.php:50 #: libraries/mult_submits.inc.php:55 libraries/mult_submits.inc.php:60 #: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:101 @@ -191,108 +191,108 @@ msgstr "Nem" msgid "Yes" msgstr "Igen" -#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:670 +#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:666 #: tbl_printview.php:498 msgid "Print" msgstr "Nyomtatás" -#: db_export.php:29 libraries/messages.inc.php:1226 +#: db_export.php:29 libraries/messages.inc.php:1222 msgid "View dump (schema) of database" msgstr "Adatbázis kiírás (vázlat) megtekintése" #: db_export.php:33 db_printview.php:96 db_qbe.php:102 db_structure.php:51 -#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:568 +#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:564 #: navigation.php:346 msgid "No tables found in database." msgstr "Nem található tábla az adatbázisban." -#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:845 +#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:841 #: server_export.php:27 msgid "Select All" msgstr "Mind kijelölése" -#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1188 +#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1184 #: server_export.php:29 msgid "Unselect All" msgstr "Mind törlése" -#: db_operations.php:38 libraries/messages.inc.php:213 tbl_create.php:54 +#: db_operations.php:38 libraries/messages.inc.php:209 tbl_create.php:54 msgid "The database name is empty!" msgstr "Üres az adatbázis neve!" -#: db_operations.php:236 libraries/messages.inc.php:753 +#: db_operations.php:236 libraries/messages.inc.php:749 #, 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 libraries/messages.inc.php:178 +#: db_operations.php:240 libraries/messages.inc.php:174 #, 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:410 libraries/messages.inc.php:236 +#: db_operations.php:410 libraries/messages.inc.php:232 msgid "Rename database to" msgstr "Adatbázis átnevezése" -#: db_operations.php:415 libraries/messages.inc.php:161 +#: db_operations.php:415 libraries/messages.inc.php:157 #: server_processlist.php:57 msgid "Command" msgstr "Parancs" -#: db_operations.php:425 libraries/messages.inc.php:58 tbl_change.php:1143 +#: db_operations.php:425 libraries/messages.inc.php:54 tbl_change.php:1143 msgid "and then" msgstr "és utána" -#: db_operations.php:451 libraries/messages.inc.php:233 +#: db_operations.php:451 libraries/messages.inc.php:229 msgid "Copy database to" msgstr "Adatbázis másolása" -#: db_operations.php:458 libraries/messages.inc.php:1043 +#: db_operations.php:458 libraries/messages.inc.php:1039 #: tbl_operations.php:526 tbl_tracking.php:388 msgid "Structure only" msgstr "Csak a szerkezet" -#: db_operations.php:459 libraries/messages.inc.php:1041 +#: db_operations.php:459 libraries/messages.inc.php:1037 #: tbl_operations.php:527 tbl_tracking.php:390 msgid "Structure and data" msgstr "Szerkezet és adatok" -#: db_operations.php:460 libraries/messages.inc.php:229 tbl_operations.php:528 +#: db_operations.php:460 libraries/messages.inc.php:225 tbl_operations.php:528 #: tbl_tracking.php:389 msgid "Data only" msgstr "Csak az adatok" -#: db_operations.php:468 libraries/messages.inc.php:186 +#: db_operations.php:468 libraries/messages.inc.php:182 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE másolás előtt" #: db_operations.php:471 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 -#: libraries/export/sql.php:82 libraries/messages.inc.php:30 +#: libraries/export/sql.php:82 libraries/messages.inc.php:26 #: tbl_operations.php:534 #, php-format msgid "Add %s" msgstr "%s hozzáadása" -#: db_operations.php:475 libraries/messages.inc.php:29 tbl_operations.php:297 +#: db_operations.php:475 libraries/messages.inc.php:25 tbl_operations.php:297 #: tbl_operations.php:536 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT érték hozzáadása" -#: db_operations.php:479 libraries/messages.inc.php:31 tbl_operations.php:543 +#: db_operations.php:479 libraries/messages.inc.php:27 tbl_operations.php:543 msgid "Add constraints" msgstr "Megszorítás hozzáadása" -#: db_operations.php:492 libraries/messages.inc.php:1059 +#: db_operations.php:492 libraries/messages.inc.php:1055 msgid "Switch to copied database" msgstr "A másolt adatbázisra váltás" -#: db_operations.php:533 libraries/messages.inc.php:89 +#: db_operations.php:533 libraries/messages.inc.php:85 msgid "BLOB Repository" msgstr "BLOB-ratár" #: db_operations.php:536 db_tracking.php:76 libraries/common.lib.php:1350 -#: libraries/messages.inc.php:1037 libraries/server_links.inc.php:49 +#: libraries/messages.inc.php:1033 libraries/server_links.inc.php:49 #: server_processlist.php:59 tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "Állapot" @@ -304,11 +304,11 @@ msgctxt "BLOB repository" msgid "Enabled" msgstr "Engedélyezett" -#: db_operations.php:548 libraries/messages.inc.php:93 +#: db_operations.php:548 libraries/messages.inc.php:89 msgid "Disable" msgstr "Letiltás" -#: db_operations.php:558 libraries/messages.inc.php:90 +#: db_operations.php:558 libraries/messages.inc.php:86 msgid "Damaged" msgstr "Sérült" @@ -326,12 +326,12 @@ msgctxt "BLOB repository" msgid "Disabled" msgstr "Letiltott" -#: db_operations.php:574 libraries/messages.inc.php:96 +#: db_operations.php:574 libraries/messages.inc.php:92 msgid "Enable" msgstr "Engedélyezés" #: db_operations.php:598 libraries/Index.class.php:448 -#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:158 +#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:154 #: 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:361 @@ -340,7 +340,7 @@ msgstr "Engedélyezés" msgid "Collation" msgstr "Illesztés" -#: db_operations.php:609 libraries/messages.inc.php:742 main.php:316 +#: db_operations.php:609 libraries/messages.inc.php:738 main.php:316 #: pdf_schema.php:34 #, php-format msgid "" @@ -350,58 +350,58 @@ 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:645 libraries/messages.inc.php:264 pdf_pages.php:528 +#: db_operations.php:645 libraries/messages.inc.php:260 pdf_pages.php:528 msgid "Display PDF schema" msgstr "PDF séma megjelenítése" -#: db_operations.php:661 libraries/messages.inc.php:877 pdf_pages.php:529 +#: db_operations.php:661 libraries/messages.inc.php:873 pdf_pages.php:529 msgid "Show grid" msgstr "Rács megjelenítése" -#: db_operations.php:664 libraries/messages.inc.php:874 pdf_pages.php:530 +#: db_operations.php:664 libraries/messages.inc.php:870 pdf_pages.php:530 msgid "Show color" msgstr "Szín megjelenítése" -#: db_operations.php:666 libraries/messages.inc.php:998 pdf_pages.php:531 +#: db_operations.php:666 libraries/messages.inc.php:994 pdf_pages.php:531 msgid "Show dimension of tables" msgstr "A táblák méretének megjelenítése" -#: db_operations.php:669 libraries/messages.inc.php:52 pdf_pages.php:532 +#: db_operations.php:669 libraries/messages.inc.php:48 pdf_pages.php:532 msgid "Display all tables with the same width" msgstr "Az összes tábla megjelenítése ugyanolyan szélességgel" -#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:227 +#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:223 #: pdf_pages.php:533 msgid "Data Dictionary" msgstr "Adatkönyvtár" -#: db_operations.php:674 libraries/messages.inc.php:884 pdf_pages.php:534 +#: db_operations.php:674 libraries/messages.inc.php:880 pdf_pages.php:534 msgid "Only show keys" msgstr "Csak a kulcsok megjelenítése" -#: db_operations.php:676 libraries/messages.inc.php:875 pdf_pages.php:535 +#: db_operations.php:676 libraries/messages.inc.php:871 pdf_pages.php:535 msgid "Data Dictionary Format" msgstr "Adatkönyvtár formátum" -#: db_operations.php:678 libraries/messages.inc.php:464 pdf_pages.php:537 +#: db_operations.php:678 libraries/messages.inc.php:460 pdf_pages.php:537 msgid "Landscape" msgstr "Fekvő" -#: db_operations.php:679 libraries/messages.inc.php:663 pdf_pages.php:538 +#: db_operations.php:679 libraries/messages.inc.php:659 pdf_pages.php:538 msgid "Portrait" msgstr "Álló" -#: db_operations.php:682 libraries/messages.inc.php:599 pdf_pages.php:541 +#: db_operations.php:682 libraries/messages.inc.php:595 pdf_pages.php:541 msgid "Paper size" msgstr "Papírméret" -#: db_operations.php:706 libraries/messages.inc.php:281 +#: db_operations.php:706 libraries/messages.inc.php:277 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 libraries/messages.inc.php:1087 +#: libraries/header.inc.php:126 libraries/messages.inc.php:1083 #: pdf_pages.php:405 server_privileges.php:1626 server_privileges.php:1682 #: server_privileges.php:1946 server_synchronize.php:423 #: server_synchronize.php:866 tbl_tracking.php:592 test/theme.php:75 @@ -409,176 +409,176 @@ msgid "Table" msgstr "Tábla" #: db_printview.php:105 libraries/db_structure.lib.php:56 -#: libraries/messages.inc.php:735 +#: libraries/messages.inc.php:731 msgid "Records" msgstr "Rekordok" #: db_printview.php:109 libraries/db_structure.lib.php:67 -#: libraries/messages.inc.php:1003 tbl_indexes.php:190 +#: libraries/messages.inc.php:999 tbl_indexes.php:190 msgid "Size" msgstr "Méret" #: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 -#: libraries/export/sql.php:899 libraries/messages.inc.php:436 +#: libraries/export/sql.php:899 libraries/messages.inc.php:432 msgid "in use" msgstr "használatban" #: db_printview.php:187 libraries/db_info.inc.php:88 -#: libraries/export/sql.php:514 libraries/messages.inc.php:1032 +#: libraries/export/sql.php:514 libraries/messages.inc.php:1028 #: pdf_schema.php:1241 tbl_printview.php:434 tbl_structure.php:810 msgid "Creation" msgstr "Létrehozás" #: db_printview.php:196 libraries/db_info.inc.php:93 -#: libraries/export/sql.php:519 libraries/messages.inc.php:1036 +#: libraries/export/sql.php:519 libraries/messages.inc.php:1032 #: pdf_schema.php:1246 tbl_printview.php:444 tbl_structure.php:818 msgid "Last update" msgstr "Utolsó frissítés" #: db_printview.php:205 libraries/db_info.inc.php:98 -#: libraries/export/sql.php:524 libraries/messages.inc.php:1031 +#: libraries/export/sql.php:524 libraries/messages.inc.php:1027 #: pdf_schema.php:1251 tbl_printview.php:454 tbl_structure.php:826 msgid "Last check" msgstr "Utolsó ellenőrzés" -#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1085 +#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1081 #, php-format msgid "%s table(s)" msgstr "%s tábla" #: db_qbe.php:29 libraries/display_tbl.lib.php:1981 -#: libraries/messages.inc.php:1051 libraries/sql_query_form.lib.php:140 +#: libraries/messages.inc.php:1047 libraries/sql_query_form.lib.php:140 #: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131 #: view_operations.php:62 msgid "Your SQL query has been executed successfully" msgstr "Az SQL-lekérdezés végrehajtása sikerült" -#: db_qbe.php:42 libraries/messages.inc.php:371 +#: db_qbe.php:42 libraries/messages.inc.php:367 msgid "You have to choose at least one column to display" msgstr "Ki kell legalább egy megjelenítendő oszlopot választania" #: db_qbe.php:200 libraries/db_structure.lib.php:104 -#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1014 +#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1010 msgid "Sort" msgstr "Rendezés" #: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111 #: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828 -#: libraries/messages.inc.php:69 server_databases.php:170 +#: libraries/messages.inc.php:65 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314 msgid "Ascending" msgstr "Növekvő" #: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119 #: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825 -#: libraries/messages.inc.php:251 server_databases.php:170 +#: libraries/messages.inc.php:247 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315 msgid "Descending" msgstr "Csökkenő" #: db_qbe.php:264 db_tracking.php:78 libraries/display_tbl.lib.php:308 -#: libraries/messages.inc.php:888 tbl_change.php:277 tbl_tracking.php:597 +#: libraries/messages.inc.php:884 tbl_change.php:277 tbl_tracking.php:597 msgid "Show" msgstr "Megjelenítés" -#: db_qbe.php:300 libraries/messages.inc.php:202 +#: db_qbe.php:300 libraries/messages.inc.php:198 msgid "Criteria" msgstr "Feltételek" #: db_qbe.php:353 db_qbe.php:435 db_qbe.php:527 db_qbe.php:558 -#: libraries/messages.inc.php:718 +#: libraries/messages.inc.php:714 msgid "Ins" msgstr "Beszúrás" #: db_qbe.php:357 db_qbe.php:439 db_qbe.php:524 db_qbe.php:555 -#: libraries/messages.inc.php:56 +#: libraries/messages.inc.php:52 msgid "And" msgstr "És" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:529 db_qbe.php:560 -#: libraries/messages.inc.php:717 +#: libraries/messages.inc.php:713 msgid "Del" 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/messages.inc.php:592 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:588 #: libraries/tbl_properties.inc.php:779 server_privileges.php:258 #: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288 msgid "Or" msgstr "Vagy" -#: db_qbe.php:507 libraries/messages.inc.php:516 +#: db_qbe.php:507 libraries/messages.inc.php:512 msgid "Modify" msgstr "Módosítás" -#: db_qbe.php:584 libraries/messages.inc.php:33 +#: db_qbe.php:584 libraries/messages.inc.php:29 msgid "Add/Delete Criteria Row" msgstr "Feltételsor hozzáadása/törlése" -#: db_qbe.php:596 libraries/messages.inc.php:32 +#: db_qbe.php:596 libraries/messages.inc.php:28 msgid "Add/Delete Field Columns" msgstr "Mezőoszlopok hozzáadása/törlése" -#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1192 +#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1188 msgid "Update Query" msgstr "Lekérdezés frissítése" -#: db_qbe.php:617 libraries/messages.inc.php:1216 +#: db_qbe.php:617 libraries/messages.inc.php:1212 msgid "Use Tables" msgstr "Felhasználandó táblák" -#: db_qbe.php:640 libraries/messages.inc.php:723 +#: db_qbe.php:640 libraries/messages.inc.php:719 #, php-format msgid "SQL query on database %s:" msgstr "SQL-lekérdezés a(z) %s adatbázison:" -#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:823 +#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:819 msgid "Submit Query" msgstr "Lekérdezés indítása" #: db_search.php:68 libraries/auth/config.auth.lib.php:84 #: libraries/auth/config.auth.lib.php:103 #: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52 -#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:26 +#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:22 msgid "Access denied" msgstr "A hozzáférés megtagadva" -#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:836 +#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:832 msgid "at least one of the words" msgstr "legalább az egyik szó" -#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:837 +#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:833 msgid "all words" msgstr "minden szó" -#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:838 +#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:834 msgid "the exact phrase" msgstr "a pontos kifejezés" -#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:839 +#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:835 msgid "as regular expression" msgstr "reguláris kifejezésként" -#: db_search.php:242 libraries/messages.inc.php:840 +#: db_search.php:242 libraries/messages.inc.php:836 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Keresési eredmények \"%s\" %s:" -#: db_search.php:260 libraries/messages.inc.php:579 +#: db_search.php:260 libraries/messages.inc.php:575 #, php-format msgid "%s match(es) inside table %s" 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/messages.inc.php:108 +#: db_structure.php:105 libraries/messages.inc.php:104 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468 msgid "Browse" msgstr "Tartalom" #: db_search.php:272 libraries/display_tbl.lib.php:1165 -#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:243 +#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:239 #: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406 #: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377 #: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216 @@ -586,45 +586,45 @@ msgstr "Tartalom" msgid "Delete" msgstr "Törlés" -#: db_search.php:285 libraries/messages.inc.php:580 +#: db_search.php:285 libraries/messages.inc.php:576 #, php-format msgid "Total: %s match(es)" msgstr "Összesen: %s találat" -#: db_search.php:299 libraries/messages.inc.php:832 +#: db_search.php:299 libraries/messages.inc.php:828 msgid "Search in database" msgstr "Keresés az adatbázisban" -#: db_search.php:302 libraries/messages.inc.php:835 +#: db_search.php:302 libraries/messages.inc.php:831 msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgstr "Keresendő szavak vagy értékek (karakterhelyettesítő: \"%\"):" -#: db_search.php:307 libraries/messages.inc.php:842 +#: db_search.php:307 libraries/messages.inc.php:838 msgid "Find:" msgstr "Keresés:" -#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1017 +#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1013 msgid "Words are separated by a space character (\" \")." msgstr "A szavak elválasztása szóköz karakterrel (\" \")." -#: db_search.php:325 libraries/messages.inc.php:834 +#: db_search.php:325 libraries/messages.inc.php:830 msgid "Inside table(s):" msgstr "Táblá(k)ban:" -#: db_search.php:355 libraries/messages.inc.php:833 +#: db_search.php:355 libraries/messages.inc.php:829 msgid "Inside field:" 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/messages.inc.php:431 libraries/sql_query_form.lib.php:334 +#: libraries/messages.inc.php:427 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/db_links.inc.php:63 libraries/export/latex.php:337 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:1048 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:1044 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 #: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269 msgid "Structure" @@ -633,8 +633,8 @@ 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:1642 -#: libraries/db_links.inc.php:100 libraries/messages.inc.php:272 +#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/db_links.inc.php:100 libraries/messages.inc.php:268 #: 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 @@ -644,40 +644,40 @@ 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:1641 -#: libraries/messages.inc.php:284 libraries/mult_submits.inc.php:39 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: libraries/messages.inc.php:280 libraries/mult_submits.inc.php:39 #: libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Kiürítés" -#: db_structure.php:316 libraries/messages.inc.php:1075 +#: db_structure.php:316 libraries/messages.inc.php:1071 #: libraries/tbl_links.inc.php:100 #, php-format msgid "Table %s has been emptied" msgstr "A(z) %s tábla kiürítése megtörtént" -#: db_structure.php:326 libraries/messages.inc.php:1229 +#: db_structure.php:326 libraries/messages.inc.php:1225 #: 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/messages.inc.php:1074 +#: db_structure.php:326 libraries/messages.inc.php:1070 #: 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 libraries/messages.inc.php:1128 +#: db_structure.php:333 libraries/messages.inc.php:1124 msgid "Tracking is active." msgstr "" -#: db_structure.php:335 libraries/messages.inc.php:1129 +#: db_structure.php:335 libraries/messages.inc.php:1125 msgid "Tracking is not active." msgstr "" #: db_structure.php:420 libraries/display_tbl.lib.php:1944 -#: libraries/messages.inc.php:1228 +#: libraries/messages.inc.php:1224 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -687,83 +687,83 @@ msgstr "" "sdokumentációban%s." #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 -#: libraries/messages.inc.php:1233 libraries/tbl_info.inc.php:66 +#: libraries/messages.inc.php:1229 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/messages.inc.php:773 libraries/server_links.inc.php:70 +#: libraries/messages.inc.php:769 libraries/server_links.inc.php:70 #: server_replication.php:33 server_replication.php:164 server_status.php:258 msgid "Replication" msgstr "Többszörözés" -#: db_structure.php:489 libraries/messages.inc.php:1053 +#: db_structure.php:489 libraries/messages.inc.php:1049 msgid "Sum" msgstr "Összeg" #: db_structure.php:496 libraries/StorageEngine.class.php:356 -#: libraries/messages.inc.php:239 +#: libraries/messages.inc.php:235 #, 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 #: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086 -#: libraries/messages.inc.php:1243 libraries/mult_submits.inc.php:16 +#: libraries/messages.inc.php:1239 libraries/mult_submits.inc.php:16 #: server_databases.php:346 server_databases.php:351 #: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465 msgid "With selected:" msgstr "A kijelöltekkel végzendő művelet:" #: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: libraries/messages.inc.php:148 server_databases.php:348 +#: libraries/messages.inc.php:144 server_databases.php:348 #: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459 msgid "Check All" msgstr "Mind kijelölése" #: db_structure.php:531 libraries/display_tbl.lib.php:2077 -#: libraries/messages.inc.php:1184 libraries/replication_gui.lib.php:33 +#: libraries/messages.inc.php:1180 libraries/replication_gui.lib.php:33 #: server_databases.php:350 server_privileges.php:533 #: server_privileges.php:1564 tbl_structure.php:463 msgid "Uncheck All" msgstr "Kijelölés törlése" -#: db_structure.php:536 libraries/messages.inc.php:150 +#: db_structure.php:536 libraries/messages.inc.php:146 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 -#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:672 +#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:668 #: libraries/mult_submits.inc.php:28 tbl_structure.php:493 #: tbl_structure.php:495 msgid "Print view" msgstr "Nyomtatási nézet" -#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:153 +#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:149 #: libraries/mult_submits.inc.php:42 tbl_operations.php:579 msgid "Check table" msgstr "Tábla ellenőrzése" -#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:590 +#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:586 #: libraries/mult_submits.inc.php:47 tbl_operations.php:619 #: tbl_structure.php:710 tbl_structure.php:712 msgid "Optimize table" msgstr "Tábla optimalizálása" -#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:758 +#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:754 #: libraries/mult_submits.inc.php:52 tbl_operations.php:609 msgid "Repair table" msgstr "Tábla javítása" -#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:55 +#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:51 #: libraries/mult_submits.inc.php:57 tbl_operations.php:599 msgid "Analyze table" msgstr "Tábla elemzése" #: db_structure.php:557 db_structure.php:558 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/messages.inc.php:310 +#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:306 #: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84 #: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109 #: server_privileges.php:1341 setup/frames/menu.inc.php:22 @@ -771,7 +771,7 @@ msgstr "Tábla elemzése" msgid "Export" msgstr "Exportálás" -#: db_tracking.php:66 libraries/messages.inc.php:1151 +#: db_tracking.php:66 libraries/messages.inc.php:1147 #, fuzzy msgid "Tracked tables" msgstr "A zárolt táblák kihagyása" @@ -780,7 +780,7 @@ msgstr "A zárolt táblák kihagyása" #: 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/header_printview.inc.php:58 libraries/messages.inc.php:212 +#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:208 #: navigation.php:233 server_databases.php:169 server_privileges.php:1621 #: server_privileges.php:1682 server_privileges.php:1940 #: server_processlist.php:56 server_synchronize.php:1179 @@ -788,82 +788,82 @@ msgstr "A zárolt táblák kihagyása" msgid "Database" msgstr "Adatbázis" -#: db_tracking.php:73 libraries/messages.inc.php:1146 +#: db_tracking.php:73 libraries/messages.inc.php:1142 msgid "Last version" msgstr "" -#: db_tracking.php:74 libraries/messages.inc.php:1145 tbl_tracking.php:594 +#: db_tracking.php:74 libraries/messages.inc.php:1141 tbl_tracking.php:594 #, fuzzy msgid "Created" msgstr "Létrehozás" -#: db_tracking.php:75 libraries/messages.inc.php:1147 tbl_tracking.php:595 +#: db_tracking.php:75 libraries/messages.inc.php:1143 tbl_tracking.php:595 msgid "Updated" msgstr "" #: db_tracking.php:77 libraries/Index.class.php:440 -#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:27 +#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:23 #: server_databases.php:203 server_privileges.php:1503 #: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187 msgid "Action" msgstr "Művelet" -#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:247 +#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:243 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:106 libraries/messages.inc.php:1142 tbl_tracking.php:548 +#: db_tracking.php:106 libraries/messages.inc.php:1138 tbl_tracking.php:548 #: tbl_tracking.php:606 tbl_tracking.php:613 msgid "active" msgstr "" -#: db_tracking.php:108 libraries/messages.inc.php:1143 tbl_tracking.php:550 +#: db_tracking.php:108 libraries/messages.inc.php:1139 tbl_tracking.php:550 #: tbl_tracking.php:608 tbl_tracking.php:610 msgid "not active" msgstr "" -#: db_tracking.php:121 libraries/messages.inc.php:1160 +#: db_tracking.php:121 libraries/messages.inc.php:1156 #, fuzzy msgid "Versions" msgstr "Perzsa" -#: db_tracking.php:122 libraries/messages.inc.php:1132 tbl_tracking.php:379 +#: db_tracking.php:122 libraries/messages.inc.php:1128 tbl_tracking.php:379 #: tbl_tracking.php:624 msgid "Tracking report" msgstr "" -#: db_tracking.php:123 libraries/messages.inc.php:1144 tbl_tracking.php:251 +#: db_tracking.php:123 libraries/messages.inc.php:1140 tbl_tracking.php:251 #: tbl_tracking.php:624 #, fuzzy msgid "Structure snapshot" msgstr "Csak a szerkezet" -#: db_tracking.php:152 libraries/messages.inc.php:1154 +#: db_tracking.php:152 libraries/messages.inc.php:1150 #, fuzzy msgid "Untracked tables" msgstr "A zárolt táblák kihagyása" -#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1153 +#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1149 #: tbl_structure.php:529 tbl_structure.php:531 #, fuzzy msgid "Track table" msgstr "Tábla ellenőrzése" -#: db_tracking.php:200 libraries/messages.inc.php:1121 +#: db_tracking.php:200 libraries/messages.inc.php:1117 #, fuzzy msgid "Database Log" msgstr "Adatbázis" -#: export.php:62 libraries/messages.inc.php:312 +#: export.php:62 libraries/messages.inc.php:308 msgid "Selected export type has to be saved in file!" msgstr "Fájlban kell menteni a kiválasztott exportálási típust!" -#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:567 +#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:563 #, php-format msgid "Insufficient space to save the file %s." msgstr "Kevés a hely a(z) %s fájl mentéséhez." -#: export.php:294 libraries/messages.inc.php:324 +#: export.php:294 libraries/messages.inc.php:320 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -871,17 +871,17 @@ msgstr "" "már létezik %s fájl a szerveren, változtassa meg a fájlnevet, vagy állítsa " "be a felülírási opciót!" -#: export.php:298 export.php:302 libraries/messages.inc.php:562 +#: export.php:298 export.php:302 libraries/messages.inc.php:558 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "A webszerver számára nem engedélyezett a(z) %s fájl mentése." -#: export.php:629 libraries/messages.inc.php:276 +#: export.php:629 libraries/messages.inc.php:272 #, php-format msgid "Dump has been saved to file %s." msgstr "A kiíratás mentése a(z) %s fájlba megtörtént." -#: import.php:60 libraries/messages.inc.php:1202 +#: import.php:60 libraries/messages.inc.php:1198 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation%" @@ -891,14 +891,14 @@ msgstr "" "sdokumentációban%s a korlátozás feloldásának." #: import.php:279 import.php:332 libraries/File.class.php:849 -#: libraries/File.class.php:961 libraries/messages.inc.php:325 +#: libraries/File.class.php:961 libraries/messages.inc.php:321 msgid "File could not be read" msgstr "Nem lehetett beolvasni a fájlt" #: import.php:287 import.php:296 import.php:315 import.php:324 #: libraries/File.class.php:1031 libraries/File.class.php:1039 #: libraries/File.class.php:1055 libraries/File.class.php:1063 -#: libraries/messages.inc.php:1189 +#: libraries/messages.inc.php:1185 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -907,7 +907,7 @@ msgstr "" "Ön nem támogatott tömörítésű (%s) fájlt kísérelt meg betölteni. Vagy nem " "valósították meg a támogatását, vagy letiltják a beállítások." -#: import.php:337 libraries/messages.inc.php:547 +#: import.php:337 libraries/messages.inc.php:543 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -918,32 +918,32 @@ msgstr "" "méretet. Lásd GYIK 1.16." #: import.php:372 libraries/display_import.lib.php:24 -#: libraries/messages.inc.php:125 +#: libraries/messages.inc.php:121 msgid "Could not load import plugins, please check your installation!" msgstr "" "Nem lehetett betölteni az importáló beépülő modulokat. Kérjük, ellenőrizze a " "telepítését!" -#: import.php:397 libraries/messages.inc.php:102 +#: import.php:397 libraries/messages.inc.php:98 msgid "The bookmark has been deleted." msgstr "A könyvjelző törlése megtörtént." -#: import.php:401 libraries/messages.inc.php:879 +#: import.php:401 libraries/messages.inc.php:875 msgid "Showing bookmark" msgstr "Könyvjelző megjelenítése" -#: import.php:403 libraries/messages.inc.php:101 +#: import.php:403 libraries/messages.inc.php:97 #, php-format msgid "Bookmark %s created" msgstr "A(z) %s könyvjelző elkészült" -#: import.php:409 import.php:415 libraries/messages.inc.php:407 +#: import.php:409 import.php:415 libraries/messages.inc.php:403 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" "Az importálás sikeresen befejeződött, %d lekérdezés került végrehajtásra." -#: import.php:424 libraries/messages.inc.php:1107 +#: import.php:424 libraries/messages.inc.php:1103 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -951,11 +951,11 @@ msgstr "" "Script időtúllépés történt, ha be akarja fejezni az importálást, akkor " "küldje újra ugyanazt a fájlt és az importálás folytatódni fog." -#: index.php:190 libraries/messages.inc.php:553 +#: index.php:190 libraries/messages.inc.php:549 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "A phpMyAdmin keretkezelő böngészőben használhatóbb." -#: js/messages.php:25 libraries/messages.inc.php:155 +#: js/messages.php:25 libraries/messages.inc.php:151 #: server_synchronize.php:345 server_synchronize.php:357 #: server_synchronize.php:373 server_synchronize.php:380 #: server_synchronize.php:739 server_synchronize.php:767 @@ -963,116 +963,116 @@ msgstr "A phpMyAdmin keretkezelő böngészőben használhatóbb." msgid "Click to select" msgstr "" -#: js/messages.php:26 libraries/messages.inc.php:156 +#: js/messages.php:26 libraries/messages.inc.php:152 msgid "Click to unselect" msgstr "" #: js/messages.php:27 libraries/import.lib.php:103 -#: libraries/messages.inc.php:550 sql.php:89 +#: libraries/messages.inc.php:546 sql.php:89 msgid "\"DROP DATABASE\" statements are disabled." msgstr "A \"DROP DATABASE\" utasítást letiltották." -#: js/messages.php:30 libraries/messages.inc.php:270 +#: js/messages.php:30 libraries/messages.inc.php:266 #: libraries/mult_submits.inc.php:258 sql.php:188 msgid "Do you really want to " msgstr "Valóban a következőt akarja " -#: js/messages.php:31 libraries/messages.inc.php:271 +#: js/messages.php:31 libraries/messages.inc.php:267 #: libraries/mult_submits.inc.php:258 sql.php:172 msgid "You are about to DESTROY a complete database!" msgstr "Ön a teljes adatbázis MEGSEMMISÍTÉSÉRE készül!" -#: js/messages.php:34 libraries/messages.inc.php:94 +#: js/messages.php:34 libraries/messages.inc.php:90 msgid "You are about to DISABLE a BLOB Repository!" msgstr "Ön egy BLOB-raktár LETILTÁSÁRA készül!" -#: js/messages.php:35 libraries/messages.inc.php:91 +#: js/messages.php:35 libraries/messages.inc.php:87 #, php-format msgid "Are you sure you want to disable all BLOB references for database %s?" msgstr "Biztosan le akarja tiltani a(z) %s adatbázis összes BLOB hivatkozását?" -#: js/messages.php:38 libraries/messages.inc.php:342 +#: js/messages.php:38 libraries/messages.inc.php:338 msgid "Missing value in the form!" msgstr "Érték hiányzik az űrlapban!" -#: js/messages.php:39 libraries/messages.inc.php:570 +#: js/messages.php:39 libraries/messages.inc.php:566 msgid "This is not a number!" msgstr "Ez nem szám!" -#: js/messages.php:42 libraries/messages.inc.php:380 +#: js/messages.php:42 libraries/messages.inc.php:376 msgid "The host name is empty!" msgstr "A hosztnév üres!" -#: js/messages.php:43 libraries/messages.inc.php:1208 +#: js/messages.php:43 libraries/messages.inc.php:1204 msgid "The user name is empty!" msgstr "Üres a felhasználónév!" -#: js/messages.php:44 libraries/messages.inc.php:607 +#: js/messages.php:44 libraries/messages.inc.php:603 #: server_privileges.php:1197 user_password.php:70 msgid "The password is empty!" msgstr "Üres a jelszó mező!" -#: js/messages.php:45 libraries/messages.inc.php:609 +#: js/messages.php:45 libraries/messages.inc.php:605 #: server_privileges.php:1195 user_password.php:73 msgid "The passwords aren't the same!" msgstr "Nem egyeznek a jelszavak!" -#: js/messages.php:49 libraries/messages.inc.php:123 pmd_general.php:342 +#: js/messages.php:49 libraries/messages.inc.php:119 pmd_general.php:342 #: pmd_general.php:379 msgid "Cancel" msgstr "Mégse" -#: js/messages.php:52 libraries/messages.inc.php:514 +#: js/messages.php:52 libraries/messages.inc.php:510 msgid "Modifications have been saved" msgstr "A módosítások mentése megtörtént" -#: js/messages.php:53 libraries/messages.inc.php:741 +#: js/messages.php:53 libraries/messages.inc.php:737 msgid "Relation deleted" msgstr "A kapcsolat törlése kész" -#: js/messages.php:54 libraries/messages.inc.php:340 +#: js/messages.php:54 libraries/messages.inc.php:336 msgid "FOREIGN KEY relation added" msgstr "IDEGEN KULCS kapcsolat hozzáadása megtörtént" -#: js/messages.php:55 libraries/messages.inc.php:434 +#: js/messages.php:55 libraries/messages.inc.php:430 msgid "Internal relation added" msgstr "A belső kapcsolat hozzáadása megtörtént" -#: js/messages.php:56 libraries/messages.inc.php:299 +#: js/messages.php:56 libraries/messages.inc.php:295 msgid "Error: Relation not added." msgstr "Hiba: Nem adta hozzá a kapcsolatot." -#: js/messages.php:57 libraries/messages.inc.php:300 +#: js/messages.php:57 libraries/messages.inc.php:296 msgid "Error: relation already exists." msgstr "Hiba: A kapcsolat már létezik." -#: js/messages.php:58 libraries/messages.inc.php:302 +#: js/messages.php:58 libraries/messages.inc.php:298 msgid "Error saving coordinates for Designer." msgstr "Hiba történt a Tervező koordinátáinak mentésekor." -#: js/messages.php:59 libraries/messages.inc.php:351 +#: js/messages.php:59 libraries/messages.inc.php:347 #: libraries/relation.lib.php:107 msgid "General relation features" msgstr "Általános relációs jellemzők" -#: js/messages.php:59 libraries/messages.inc.php:260 +#: js/messages.php:59 libraries/messages.inc.php:256 #: libraries/relation.lib.php:101 libraries/relation.lib.php:108 msgid "Disabled" msgstr "Letiltott" -#: js/messages.php:60 libraries/messages.inc.php:850 +#: js/messages.php:60 libraries/messages.inc.php:846 msgid "Select referenced key" msgstr "Válassza ki a hivatkozott kulcsot" -#: js/messages.php:61 libraries/messages.inc.php:848 +#: js/messages.php:61 libraries/messages.inc.php:844 msgid "Select Foreign Key" msgstr "Idegen kulcs kiválasztása" -#: js/messages.php:62 libraries/messages.inc.php:653 +#: js/messages.php:62 libraries/messages.inc.php:649 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 libraries/messages.inc.php:142 pmd_general.php:77 +#: js/messages.php:63 libraries/messages.inc.php:138 pmd_general.php:77 #: tbl_relation.php:548 msgid "Choose field to display" msgstr "Válassza ki a megjelenítendő mezőt" @@ -1092,9 +1092,9 @@ msgid "Prev" msgstr "Előző" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2332 -#: libraries/common.lib.php:2335 libraries/display_tbl.lib.php:338 -#: libraries/messages.inc.php:543 server_binlog.php:205 server_binlog.php:207 +#: js/messages.php:77 libraries/common.lib.php:2344 +#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: libraries/messages.inc.php:539 server_binlog.php:205 server_binlog.php:207 #: tbl_printview.php:424 tbl_structure.php:802 msgid "Next" msgstr "Következő" @@ -1169,27 +1169,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1543 +#: js/messages.php:97 libraries/common.lib.php:1555 msgid "Jan" msgstr "jan." #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1545 +#: js/messages.php:99 libraries/common.lib.php:1557 msgid "Feb" msgstr "febr." #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1547 +#: js/messages.php:101 libraries/common.lib.php:1559 msgid "Mar" msgstr "márc." #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1549 +#: js/messages.php:103 libraries/common.lib.php:1561 msgid "Apr" msgstr "ápr." #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1551 +#: js/messages.php:105 libraries/common.lib.php:1563 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1197,37 +1197,37 @@ msgid "May" msgstr "máj." #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1553 +#: js/messages.php:107 libraries/common.lib.php:1565 msgid "Jun" msgstr "jún." #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1555 +#: js/messages.php:109 libraries/common.lib.php:1567 msgid "Jul" msgstr "júl." #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1557 +#: js/messages.php:111 libraries/common.lib.php:1569 msgid "Aug" msgstr "aug." #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1559 +#: js/messages.php:113 libraries/common.lib.php:1571 msgid "Sep" msgstr "szept." #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1561 +#: js/messages.php:115 libraries/common.lib.php:1573 msgid "Oct" msgstr "okt." #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1563 +#: js/messages.php:117 libraries/common.lib.php:1575 msgid "Nov" msgstr "nov." #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1565 +#: js/messages.php:119 libraries/common.lib.php:1577 msgid "Dec" msgstr "dec." @@ -1268,37 +1268,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1568 +#: js/messages.php:132 libraries/common.lib.php:1580 msgid "Sun" msgstr "V" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1570 +#: js/messages.php:134 libraries/common.lib.php:1582 msgid "Mon" msgstr "H" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1572 +#: js/messages.php:136 libraries/common.lib.php:1584 msgid "Tue" msgstr "K" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1574 +#: js/messages.php:138 libraries/common.lib.php:1586 msgid "Wed" msgstr "Sze" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1576 +#: js/messages.php:140 libraries/common.lib.php:1588 msgid "Thu" msgstr "Cs" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1578 +#: js/messages.php:142 libraries/common.lib.php:1590 msgid "Fri" msgstr "P" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1580 +#: js/messages.php:144 libraries/common.lib.php:1592 msgid "Sat" msgstr "Szo" @@ -1374,23 +1374,23 @@ msgstr "használatban" msgid "Second" msgstr "másodpercenként" -#: libraries/Config.class.php:1015 libraries/messages.inc.php:338 +#: libraries/Config.class.php:1015 libraries/messages.inc.php:334 msgid "Font size" msgstr "Betűméret" #: libraries/File.class.php:344 libraries/File.class.php:432 #: libraries/File.class.php:569 libraries/File.class.php:708 -#: libraries/messages.inc.php:1201 +#: libraries/messages.inc.php:1197 msgid "Unknown error in file upload." msgstr "Ismeretlen hiba a fájlfeltöltésben." -#: libraries/File.class.php:414 libraries/messages.inc.php:1198 +#: libraries/File.class.php:414 libraries/messages.inc.php:1194 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "A feltöltött fájl mérete túllépi a php.ini fájlban megadott " "upload_max_filesize utasítást." -#: libraries/File.class.php:417 libraries/messages.inc.php:1197 +#: libraries/File.class.php:417 libraries/messages.inc.php:1193 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -1398,56 +1398,56 @@ msgstr "" "A feltöltött fájl mérete túllépi a HTML űrlapban megadott MAX_FILE_SIZE " "utasítást." -#: libraries/File.class.php:420 libraries/messages.inc.php:1200 +#: libraries/File.class.php:420 libraries/messages.inc.php:1196 msgid "The uploaded file was only partially uploaded." msgstr "A feltöltött fájl csak részben került feltöltésre." -#: libraries/File.class.php:423 libraries/messages.inc.php:1199 +#: libraries/File.class.php:423 libraries/messages.inc.php:1195 msgid "Missing a temporary folder." msgstr "Hiányzik egy ideiglenes mappa." -#: libraries/File.class.php:426 libraries/messages.inc.php:1195 +#: libraries/File.class.php:426 libraries/messages.inc.php:1191 msgid "Failed to write file to disk." msgstr "Nem sikerült lemezre írni a fájlt." -#: libraries/File.class.php:429 libraries/messages.inc.php:1196 +#: libraries/File.class.php:429 libraries/messages.inc.php:1192 msgid "File upload stopped by extension." msgstr "A fájlfeltöltés kiterjesztés alapján leállt." -#: libraries/File.class.php:908 libraries/messages.inc.php:319 +#: libraries/File.class.php:908 libraries/messages.inc.php:315 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "Hiba történt a feltöltött fájl áthelyezésekor, lásd: GYIK 1.11" -#: libraries/Index.class.php:428 libraries/messages.inc.php:554 +#: libraries/Index.class.php:428 libraries/messages.inc.php:550 #: tbl_relation.php:529 msgid "No index defined!" msgstr "Nincs meghatározott index!" -#: libraries/Index.class.php:433 libraries/messages.inc.php:411 +#: libraries/Index.class.php:433 libraries/messages.inc.php:407 #: server_databases.php:132 tbl_tracking.php:316 msgid "Indexes" msgstr "Indexek" -#: libraries/Index.class.php:444 libraries/messages.inc.php:1186 +#: libraries/Index.class.php:444 libraries/messages.inc.php:1182 #: 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:475 tbl_tracking.php:322 msgid "Unique" msgstr "Egyedi" -#: libraries/Index.class.php:445 libraries/messages.inc.php:596 +#: libraries/Index.class.php:445 libraries/messages.inc.php:592 #: tbl_tracking.php:323 msgid "Packed" msgstr "Csomagolt" -#: libraries/Index.class.php:447 libraries/messages.inc.php:131 +#: libraries/Index.class.php:447 libraries/messages.inc.php:127 #: tbl_tracking.php:325 msgid "Cardinality" msgstr "Számosság" -#: libraries/Index.class.php:450 libraries/messages.inc.php:162 +#: libraries/Index.class.php:450 libraries/messages.inc.php:158 #: tbl_tracking.php:279 tbl_tracking.php:328 msgid "Comment" msgstr "Megjegyzés" @@ -1455,22 +1455,22 @@ msgstr "Megjegyzés" #: libraries/Index.class.php:466 libraries/common.lib.php:616 #: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:280 pdf_pages.php:280 +#: libraries/messages.inc.php:276 pdf_pages.php:280 #: setup/frames/index.inc.php:124 setup/lib/messages.inc.php:352 #: tbl_row_action.php:69 msgid "Edit" msgstr "Módosítás" -#: libraries/Index.class.php:472 libraries/messages.inc.php:666 +#: libraries/Index.class.php:472 libraries/messages.inc.php:662 msgid "The primary key has been dropped" msgstr "Az elsődleges kulcs eldobása megtörtént" -#: libraries/Index.class.php:476 libraries/messages.inc.php:413 +#: libraries/Index.class.php:476 libraries/messages.inc.php:409 #, php-format msgid "Index %s has been dropped" msgstr "A(z) %s index eldobása megtörtént" -#: libraries/Index.class.php:576 libraries/messages.inc.php:412 +#: libraries/Index.class.php:576 libraries/messages.inc.php:408 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -1479,7 +1479,7 @@ 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/messages.inc.php:218 +#: libraries/List_Database.class.php:431 libraries/messages.inc.php:214 #: libraries/server_links.inc.php:41 server_databases.php:88 #: server_privileges.php:1621 setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" @@ -1509,86 +1509,86 @@ msgid_plural "%1$d rows inserted." msgstr[0] "A(z) %1$d sor beszúrása megtörtént." msgstr[1] "A(z) %1$d sor beszúrása megtörtént." -#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:549 +#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:545 msgid "" "There is no detailed status information available for this storage engine." msgstr "" "Erről a tárolómotorról részletes állapot-információ nem áll rendelkezésre." -#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:291 +#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:287 #, php-format msgid "%s is available on this MySQL server." msgstr "A(z) %s motor elérhető ezen a MySQL szerveren." -#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:292 +#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:288 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s letiltott ezen a MySQL szerveren." -#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:294 +#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:290 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "Ez a MySQL szerver nem támogatja a(z) %s tárolómotort." -#: libraries/Table.class.php:1019 libraries/messages.inc.php:443 +#: libraries/Table.class.php:1019 libraries/messages.inc.php:439 msgid "Invalid database" msgstr "Érvénytelen adatbázis" -#: libraries/Table.class.php:1033 libraries/messages.inc.php:450 +#: libraries/Table.class.php:1033 libraries/messages.inc.php:446 #: tbl_get_field.php:26 msgid "Invalid table name" msgstr "Érvénytelen táblanév" -#: libraries/Table.class.php:1048 libraries/messages.inc.php:301 +#: libraries/Table.class.php:1048 libraries/messages.inc.php:297 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "Hiba történt a(z) %1$s tábla %2$s névre történő átnevezésekor" -#: libraries/Table.class.php:1132 libraries/messages.inc.php:754 +#: libraries/Table.class.php:1132 libraries/messages.inc.php:750 #, php-format msgid "Table %s has been renamed to %s" msgstr "A(z) %s tábla átnevezése %s névre megtörtént" -#: libraries/Theme.class.php:162 libraries/messages.inc.php:1099 +#: libraries/Theme.class.php:162 libraries/messages.inc.php:1095 #, php-format msgid "No valid image path for theme %s found!" msgstr "Nincs érvényes kép elérési útja a(z) %s témának!" -#: libraries/Theme.class.php:384 libraries/messages.inc.php:1097 +#: libraries/Theme.class.php:384 libraries/messages.inc.php:1093 msgid "No preview available." msgstr "Nincs előnézet." -#: libraries/Theme.class.php:387 libraries/messages.inc.php:1089 +#: libraries/Theme.class.php:387 libraries/messages.inc.php:1085 msgid "take it" msgstr "csináld" -#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1096 +#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1092 #, php-format msgid "Default theme %s not found!" msgstr "A(z) %s alapértelmezett téma nem található!" -#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1098 +#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1094 #, php-format msgid "Theme %s not found!" msgstr "Nem található a(z) %s téma!" -#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1100 +#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1096 #, php-format msgid "Theme path not found for theme %s!" msgstr "Nem található a(z) %s téma téma elérési útja!" -#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1101 +#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1097 #: test/theme.php:161 themes.php:21 themes.php:41 msgid "Theme / Style" msgstr "Téma / Séma" -#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:172 +#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:168 msgid "Cannot connect: invalid settings." msgstr "Nem lehet csatlakozni: érvénytelenek a beállítások." #: libraries/auth/config.auth.lib.php:92 #: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65 -#: libraries/messages.inc.php:1238 test/theme.php:152 +#: libraries/messages.inc.php:1234 test/theme.php:152 #, php-format msgid "Welcome to %s" msgstr "Üdvözli a %s" @@ -1614,106 +1614,106 @@ msgstr "" "a config.inc.php fájlban, s győződjön meg róla, hogy ezek megfelelnek-e a " "MySQL szerver adminisztrátorától kapott információknak." -#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:488 +#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:484 msgid "Log in" msgstr "Belépés" #: libraries/auth/cookie.auth.lib.php:246 -#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:659 +#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:655 #: libraries/navigation_header.inc.php:93 #: libraries/navigation_header.inc.php:95 msgid "phpMyAdmin documentation" msgstr "phpMyAdmin dokumentáció" #: libraries/auth/cookie.auth.lib.php:258 -#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:492 +#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:488 msgid "You can enter hostname/IP address and port separated by space." msgstr "" "Az állomásnevet/IP-címet és a port számát szóközzel elválasztva írhatja be." -#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:493 +#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:489 msgid "Server:" msgstr "Szerver" -#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:494 +#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:490 msgid "Username:" msgstr "Felhasználónév:" -#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:491 +#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:487 msgid "Password:" msgstr "Jelszó:" -#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:854 +#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:850 msgid "Server Choice" msgstr "Szerver választása" #: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 -#: libraries/messages.inc.php:177 +#: libraries/messages.inc.php:173 msgid "Cookies must be enabled past this point." msgstr "Ettől a ponttól engedélyeznie kell a cookie-k fogadását." #: libraries/auth/cookie.auth.lib.php:671 -#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:489 +#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:485 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" "A konfiguráció tiltja a jelszó nélküli bejelentkezést (lásd AllowNoPassword)" #: libraries/auth/cookie.auth.lib.php:675 -#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:544 +#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:540 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "Nem volt tevékenység %s másodperce; jelentkezzen be újra" #: libraries/auth/cookie.auth.lib.php:685 #: libraries/auth/cookie.auth.lib.php:687 -#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:126 +#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:122 msgid "Cannot log in to the MySQL server" msgstr "Nem lehet bejelentkezni a MySQL szerverre" -#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1245 +#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1241 msgid "Wrong username/password. Access denied." msgstr "Hibás felhasználónév/jelszó. A hozzáférés megtagadva." #: libraries/auth/swekey/swekey.auth.lib.php:118 -#: libraries/messages.inc.php:1057 +#: libraries/messages.inc.php:1053 #, php-format msgid "File %s does not contain any key id" msgstr "A(z) %s fájl nem tartalmaz semmilyen kulcsazonosítót" #: libraries/auth/swekey/swekey.auth.lib.php:157 #: libraries/auth/swekey/swekey.auth.lib.php:180 -#: libraries/messages.inc.php:1056 +#: libraries/messages.inc.php:1052 msgid "Hardware authentication failed" msgstr "A hardveres hitelesítés nem sikerült" #: libraries/auth/swekey/swekey.auth.lib.php:166 -#: libraries/messages.inc.php:1058 +#: libraries/messages.inc.php:1054 msgid "No valid authentication key plugged" msgstr "Nem történt meg érvényes hitelesítő kulcs csatlakoztatása" #: libraries/auth/swekey/swekey.auth.lib.php:202 -#: libraries/messages.inc.php:1055 +#: libraries/messages.inc.php:1051 msgid "Authenticating..." msgstr "Hitelesítés..." -#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1230 +#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1226 msgid "View image" msgstr "Kép megtekintése" -#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:652 +#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:648 msgid "Play audio" msgstr "Hang lejátszása" -#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1232 +#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1228 msgid "View video" msgstr "Videó megtekintése" -#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:269 +#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:265 msgid "Download file" msgstr "Fájl letöltése" -#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:128 +#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:124 msgid "" "Couldn't load the iconv or recode extension needed for charset conversion. " "Either configure PHP to enable these extensions or disable charset " @@ -1726,7 +1726,7 @@ msgstr "" #: libraries/charset_conversion.lib.php:79 #: libraries/charset_conversion.lib.php:90 -#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:130 +#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:126 msgid "" "Couldn't use the iconv, libiconv, or recode_string functions, although the " "necessary extensions appear to be loaded. Check your PHP configuration." @@ -1735,7 +1735,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/messages.inc.php:170 +#: libraries/common.inc.php:583 libraries/messages.inc.php:166 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!" @@ -1772,22 +1772,22 @@ msgstr "" msgid "Invalid server index: %s" msgstr "Érvénytelen szerverindex: \"%s\"" -#: libraries/common.inc.php:636 libraries/messages.inc.php:448 +#: libraries/common.inc.php:636 libraries/messages.inc.php:444 #, 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/messages.inc.php:856 libraries/select_server.lib.php:41 +#: libraries/messages.inc.php:852 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/messages.inc.php:437 +#: libraries/common.inc.php:823 libraries/messages.inc.php:433 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.lib.php:147 libraries/messages.inc.php:499 +#: libraries/common.lib.php:147 libraries/messages.inc.php:495 #, php-format msgid "Max: %s%s" msgstr "Legnagyobb méret: %s%s" @@ -1808,7 +1808,7 @@ msgstr "en" #: libraries/common.lib.php:428 libraries/common.lib.php:430 #: libraries/common.lib.php:432 libraries/common.lib.php:448 #: libraries/common.lib.php:450 libraries/dbg/setup.php:25 -#: libraries/display_export.lib.php:164 libraries/messages.inc.php:267 +#: libraries/display_export.lib.php:164 libraries/messages.inc.php:263 #: libraries/relation.lib.php:97 libraries/sql_query_form.lib.php:451 #: libraries/sql_query_form.lib.php:454 main.php:229 pdf_pages.php:37 #: pdf_pages.php:43 pdf_pages.php:49 pdf_pages.php:54 @@ -1818,55 +1818,55 @@ msgstr "Dokumentáció" #: libraries/common.lib.php:581 libraries/core.lib.php:234 #: libraries/core.lib.php:263 libraries/import.lib.php:134 -#: libraries/messages.inc.php:297 pdf_schema.php:32 pdf_schema.php:232 +#: libraries/messages.inc.php:293 pdf_schema.php:32 pdf_schema.php:232 #: tbl_change.php:1027 tbl_operations.php:213 tbl_relation.php:290 #: view_operations.php:62 msgid "Error" msgstr "Hiba" #: libraries/common.lib.php:595 libraries/header_printview.inc.php:61 -#: libraries/messages.inc.php:1023 server_processlist.php:60 +#: libraries/messages.inc.php:1019 server_processlist.php:60 #: server_status.php:247 msgid "SQL query" msgstr "SQL-lekérdezés" -#: libraries/common.lib.php:634 libraries/messages.inc.php:538 +#: libraries/common.lib.php:634 libraries/messages.inc.php:534 msgid "MySQL said: " msgstr "A MySQL mondta: " -#: libraries/common.lib.php:667 libraries/messages.inc.php:76 +#: libraries/common.lib.php:667 libraries/messages.inc.php:72 #: pdf_schema.php:241 user_password.php:115 msgid "Back" msgstr "Vissza" -#: libraries/common.lib.php:1177 libraries/messages.inc.php:309 +#: libraries/common.lib.php:1177 libraries/messages.inc.php:305 #: setup/lib/messages.inc.php:353 msgid "Explain SQL" msgstr "Az SQL magyarázata" -#: libraries/common.lib.php:1180 libraries/messages.inc.php:551 +#: libraries/common.lib.php:1180 libraries/messages.inc.php:547 msgid "Skip Explain SQL" msgstr "SQL magyarázat átugrása" -#: libraries/common.lib.php:1212 libraries/messages.inc.php:563 +#: libraries/common.lib.php:1212 libraries/messages.inc.php:559 msgid "Without PHP Code" msgstr "PHP kód nélkül" -#: libraries/common.lib.php:1215 libraries/messages.inc.php:649 +#: libraries/common.lib.php:1215 libraries/messages.inc.php:645 #: setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "PHP-kód létrehozása" -#: libraries/common.lib.php:1233 libraries/messages.inc.php:737 +#: libraries/common.lib.php:1233 libraries/messages.inc.php:733 #: server_status.php:341 setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "Frissítés" -#: libraries/common.lib.php:1242 libraries/messages.inc.php:575 +#: libraries/common.lib.php:1242 libraries/messages.inc.php:571 msgid "Skip Validate SQL" msgstr "SQL érvényesítés átugrása" -#: libraries/common.lib.php:1245 libraries/messages.inc.php:1220 +#: libraries/common.lib.php:1245 libraries/messages.inc.php:1216 #: setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "SQL érvényesítése" @@ -1882,11 +1882,11 @@ msgid "Inline" msgstr "Motorok" #: libraries/common.lib.php:1332 libraries/common.lib.php:1347 -#: libraries/messages.inc.php:713 +#: libraries/messages.inc.php:709 msgid "Profiling" msgstr "Adatgyűjtés" -#: libraries/common.lib.php:1351 libraries/messages.inc.php:1108 +#: libraries/common.lib.php:1351 libraries/messages.inc.php:1104 #: libraries/tbl_triggers.lib.php:28 server_processlist.php:58 msgid "Time" msgstr "Idő" @@ -1920,46 +1920,56 @@ msgstr "PB" msgid "EiB" msgstr "EB" +#. l10n: Thousands separator +#: libraries/common.lib.php:1417 +msgid "," +msgstr " " + +#. l10n: Decimal separator +#: libraries/common.lib.php:1419 +msgid "." +msgstr "." + #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1584 +#: libraries/common.lib.php:1596 #: libraries/transformations/text_plain__dateformat.inc.php:28 msgid "%B %d, %Y at %I:%M %p" msgstr "%Y. %B %d. %H:%M" -#: libraries/common.lib.php:1886 +#: libraries/common.lib.php:1898 #, 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:2301 libraries/common.lib.php:2304 -#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:664 +#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:660 #: server_status.php:608 msgid "Begin" msgstr "A tetejére" -#: libraries/common.lib.php:2302 libraries/common.lib.php:2305 -#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:665 +#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:661 #: server_binlog.php:168 server_binlog.php:170 msgid "Previous" msgstr "Előző" -#: libraries/common.lib.php:2333 libraries/common.lib.php:2336 -#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:289 +#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:285 msgid "End" msgstr "Vége" -#: libraries/common.lib.php:2409 libraries/messages.inc.php:455 +#: libraries/common.lib.php:2421 libraries/messages.inc.php:451 #, php-format msgid "Jump to database "%s"." msgstr "Ugrás a(z) "%s" adatbázishoz." -#: libraries/common.lib.php:2429 libraries/messages.inc.php:461 +#: libraries/common.lib.php:2441 libraries/messages.inc.php:457 #, 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/core.lib.php:286 libraries/dbg/setup.php:22 -#: libraries/messages.inc.php:127 +#: libraries/messages.inc.php:123 #, php-format msgid "" "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " @@ -1969,119 +1979,119 @@ msgstr "" "kiterjesztés. Ellenőrizze a PHP beállításait." #: libraries/db_events.inc.php:20 libraries/db_events.inc.php:22 -#: libraries/export/sql.php:415 libraries/messages.inc.php:306 +#: libraries/export/sql.php:415 libraries/messages.inc.php:302 msgid "Events" msgstr "Események" #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 -#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:541 +#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:537 #: libraries/tbl_triggers.lib.php:27 setup/frames/index.inc.php:112 msgid "Name" msgstr "Név" -#: libraries/db_links.inc.php:45 libraries/messages.inc.php:216 +#: libraries/db_links.inc.php:45 libraries/messages.inc.php:212 #, php-format msgid "Database %s has been dropped." msgstr "A(z) %s adatbázis eldobása megtörtént." #: libraries/db_links.inc.php:57 libraries/db_links.inc.php:58 -#: libraries/db_links.inc.php:59 libraries/messages.inc.php:234 +#: libraries/db_links.inc.php:59 libraries/messages.inc.php:230 msgid "Database seems to be empty!" msgstr "Üresnek tűnik az adatbázis!" -#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1025 +#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1021 #: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60 #: querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1152 +#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1148 #: libraries/tbl_links.inc.php:69 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:86 libraries/messages.inc.php:719 +#: libraries/db_links.inc.php:86 libraries/messages.inc.php:715 msgid "Query" msgstr "Lekérdezés" -#: libraries/db_links.inc.php:91 libraries/messages.inc.php:253 +#: libraries/db_links.inc.php:91 libraries/messages.inc.php:249 msgid "Designer" msgstr "Tervező" -#: libraries/db_links.inc.php:98 libraries/messages.inc.php:397 +#: libraries/db_links.inc.php:98 libraries/messages.inc.php:393 #: libraries/server_links.inc.php:88 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:104 libraries/messages.inc.php:587 +#: libraries/db_links.inc.php:104 libraries/messages.inc.php:583 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" msgstr "Műveletek" -#: libraries/db_links.inc.php:111 libraries/messages.inc.php:709 +#: libraries/db_links.inc.php:111 libraries/messages.inc.php:705 #: libraries/server_links.inc.php:66 server_privileges.php:72 #: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117 msgid "Privileges" msgstr "Jogok" #: libraries/db_routines.inc.php:30 libraries/db_routines.inc.php:32 -#: libraries/messages.inc.php:812 +#: libraries/messages.inc.php:808 msgid "Routines" msgstr "Eljárások" -#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:811 +#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:807 msgid "Return type" msgstr "Típus visszaadása" #: libraries/db_structure.lib.php:57 libraries/display_tbl.lib.php:1848 -#: libraries/messages.inc.php:65 +#: libraries/messages.inc.php:61 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "Becsült érték lehet. Lásd: GYIK 3.11" -#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:593 +#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:589 #: server_databases.php:142 tbl_printview.php:336 tbl_structure.php:683 msgid "Overhead" msgstr "Felülírás" #: libraries/dbi/mysql.dbi.lib.php:112 libraries/dbi/mysqli.dbi.lib.php:124 -#: libraries/messages.inc.php:176 +#: libraries/messages.inc.php:172 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "A konfigurációban meghatározott kapcsolat a kontrollfelhasználó számára nem " "sikerült." #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 -#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:855 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:851 msgid "The server is not responding" msgstr "A szerver nem válaszol" #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:1010 +#: libraries/messages.inc.php:1006 msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "" "(vagy nem megfelelően állították be a helyi MySQL szerver " "szoftvercsatornáját)" -#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:255 +#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:251 #: tbl_structure.php:609 msgid "Details..." msgstr "Részletek..." -#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:143 +#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:139 #: main.php:91 user_password.php:111 user_password.php:129 msgid "Change password" msgstr "Jelszó megváltoztatása" -#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:561 +#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:557 #: libraries/replication_gui.lib.php:341 server_privileges.php:768 msgid "No Password" msgstr "Nincs jelszó" -#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:610 +#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:606 #: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60 #: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335 #: libraries/replication_gui.lib.php:345 server_privileges.php:757 @@ -2090,13 +2100,13 @@ msgstr "Nincs jelszó" msgid "Password" msgstr "Jelszó" -#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:806 +#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:802 #: libraries/replication_gui.lib.php:349 libraries/replication_gui.lib.php:352 #: server_privileges.php:776 server_privileges.php:779 msgid "Re-type" msgstr "Újraírás" -#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:608 +#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:604 msgid "Password Hashing" msgstr "Jelszó kivonatolása" @@ -2106,91 +2116,91 @@ msgstr "Jelszó kivonatolása" msgid "MySQL 4.0 compatible" msgstr "MySQL 4.0 kompatibilis" -#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:353 +#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:349 #: libraries/replication_gui.lib.php:356 server_privileges.php:783 msgid "Generate Password" msgstr "Jelszó generálása" -#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:352 +#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:348 #: libraries/replication_gui.lib.php:359 server_privileges.php:786 msgid "Generate" msgstr "Generálás" #: libraries/display_create_database.lib.php:22 -#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:189 +#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:185 msgid "Create new database" msgstr "Új adatbázis létrehozása" -#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:185 +#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:181 msgid "Create" msgstr "Létrehozás" -#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:564 +#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:560 #: server_privileges.php:74 server_privileges.php:1388 #: server_replication.php:35 msgid "No Privileges" msgstr "Nincs jog" -#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:445 +#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:441 msgid "Table must have at least one field." msgstr "A táblázatnak legalább egy mezőt kell tartalmaznia." -#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:190 +#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:186 #, php-format msgid "Create table on database %s" msgstr "Új tábla létrehozása a(z) %s adatbázisban" -#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:577 +#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:573 msgid "Number of fields" msgstr "Mezők száma" -#: libraries/display_export.lib.php:42 libraries/messages.inc.php:124 +#: libraries/display_export.lib.php:42 libraries/messages.inc.php:120 msgid "Could not load export plugins, please check your installation!" msgstr "" "Nem lehetett betölteni az exportáló beépülő modulokat. Kérjük, ellenőrizze a " "telepítését!" -#: libraries/display_export.lib.php:107 libraries/messages.inc.php:277 +#: libraries/display_export.lib.php:107 libraries/messages.inc.php:273 #, php-format msgid "Dump %s row(s) starting at record # %s" msgstr "%s sor kiírása a(z) %s. rekorddal kezdődően" -#: libraries/display_export.lib.php:115 libraries/messages.inc.php:274 +#: libraries/display_export.lib.php:115 libraries/messages.inc.php:270 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:125 libraries/messages.inc.php:852 +#: libraries/display_export.lib.php:125 libraries/messages.inc.php:848 #: setup/lib/messages.inc.php:82 msgid "Save as file" msgstr "Mentés fájlként" -#: libraries/display_export.lib.php:134 libraries/messages.inc.php:828 +#: libraries/display_export.lib.php:134 libraries/messages.inc.php:824 #, php-format msgid "Save on server in %s directory" msgstr "Mentés a szerver %s könyvtárában" -#: libraries/display_export.lib.php:142 libraries/messages.inc.php:594 +#: libraries/display_export.lib.php:142 libraries/messages.inc.php:590 #: setup/lib/messages.inc.php:90 msgid "Overwrite existing file(s)" msgstr "A létező fájl(ok) felülírása" -#: libraries/display_export.lib.php:148 libraries/messages.inc.php:330 +#: libraries/display_export.lib.php:148 libraries/messages.inc.php:326 msgid "File name template" msgstr "Fájlnévsablon" -#: libraries/display_export.lib.php:152 libraries/messages.inc.php:327 +#: libraries/display_export.lib.php:152 libraries/messages.inc.php:323 msgid "server name" msgstr "szerver neve" -#: libraries/display_export.lib.php:155 libraries/messages.inc.php:326 +#: libraries/display_export.lib.php:155 libraries/messages.inc.php:322 msgid "database name" msgstr "adatbázis neve" -#: libraries/display_export.lib.php:158 libraries/messages.inc.php:328 +#: libraries/display_export.lib.php:158 libraries/messages.inc.php:324 msgid "table name" msgstr "tábla neve" -#: libraries/display_export.lib.php:162 libraries/messages.inc.php:329 +#: libraries/display_export.lib.php:162 libraries/messages.inc.php:325 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2201,24 +2211,24 @@ msgstr "" "vagyis időformázó karakterláncokat használhat. A következő átalakításokra " "kerül továbbá sor: %3$s. Más szöveg eredeti állapotában kerül megtartásra." -#: libraries/display_export.lib.php:202 libraries/messages.inc.php:331 +#: libraries/display_export.lib.php:202 libraries/messages.inc.php:327 msgid "remember template" msgstr "a sablon megjegyzése" #: libraries/display_export.lib.php:210 libraries/display_import.lib.php:178 -#: libraries/display_import.lib.php:191 libraries/messages.inc.php:145 +#: libraries/display_import.lib.php:191 libraries/messages.inc.php:141 #: libraries/sql_query_form.lib.php:549 msgid "Character set of the file:" msgstr "A fájl karakterkészlete:" -#: libraries/display_export.lib.php:235 libraries/messages.inc.php:166 +#: libraries/display_export.lib.php:235 libraries/messages.inc.php:162 #: setup/lib/messages.inc.php:84 msgid "Compression" 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/messages.inc.php:558 +#: libraries/export/sql.php:868 libraries/messages.inc.php:554 #: libraries/tbl_properties.inc.php:575 server_privileges.php:1836 #: server_processlist.php:75 msgid "None" @@ -2242,62 +2252,62 @@ msgstr "\"gzip tömörítés\"" msgid "bzipped" msgstr "\"bzip tömörítés\"" -#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1018 +#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1014 msgid "SQL compatibility mode" msgstr "SQL kompatibilitási mód" -#: libraries/display_import.lib.php:67 libraries/messages.inc.php:398 +#: libraries/display_import.lib.php:67 libraries/messages.inc.php:394 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " "browsers." msgstr "" -#: libraries/display_import.lib.php:77 libraries/messages.inc.php:406 +#: libraries/display_import.lib.php:77 libraries/messages.inc.php:402 msgid "The file is being processed, please be patient." msgstr "" -#: libraries/display_import.lib.php:99 libraries/messages.inc.php:408 +#: libraries/display_import.lib.php:99 libraries/messages.inc.php:404 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." msgstr "" -#: libraries/display_import.lib.php:126 libraries/messages.inc.php:333 +#: libraries/display_import.lib.php:126 libraries/messages.inc.php:329 msgid "File to import" msgstr "Importálandó fájl" -#: libraries/display_import.lib.php:137 libraries/messages.inc.php:486 +#: libraries/display_import.lib.php:137 libraries/messages.inc.php:482 #: libraries/sql_query_form.lib.php:524 msgid "Location of the text file" msgstr "A szövegfájl helye" -#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1203 +#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1199 msgid "File uploads are not allowed on this server." msgstr "Ezen a szerveren a fájlfeltöltések nem engedélyezettek." -#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1235 +#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1231 #: libraries/sql_query_form.lib.php:533 tbl_change.php:1028 msgid "The directory you set for upload work cannot be reached" msgstr "Nem elérhető a feltöltésekhez megadott könyvtár" -#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1236 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1232 #: libraries/sql_query_form.lib.php:536 tbl_change.php:1031 msgid "web server upload directory" msgstr "webszerver feltöltési könyvtár" -#: libraries/display_import.lib.php:212 libraries/messages.inc.php:167 +#: libraries/display_import.lib.php:212 libraries/messages.inc.php:163 #, php-format msgid "Imported file compression will be automatically detected from: %s" msgstr "" "Az importált fájl tömörítése automatikusan felismerésre kerül a " "következőből: %s" -#: libraries/display_import.lib.php:219 libraries/messages.inc.php:600 +#: libraries/display_import.lib.php:219 libraries/messages.inc.php:596 msgid "Partial import" msgstr "Részleges importálás" -#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1105 +#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1101 #, php-format msgid "" "Previous import timed out, after resubmitting will continue from position %d." @@ -2305,7 +2315,7 @@ msgstr "" "Az előző importálás időtúllépés miatt leállt, újraküldés után a(z) %d " "pozíciótól folytatódik." -#: libraries/display_import.lib.php:232 libraries/messages.inc.php:51 +#: libraries/display_import.lib.php:232 libraries/messages.inc.php:47 msgid "" "Allow the interruption of an import in case the script detects it is close " "to the PHP timeout limit. This might be good way to import large files, " @@ -2315,178 +2325,178 @@ msgstr "" "közel van az időkorláthoz. Nagy fájlok importálásakor jól jöhet, azonban meg " "tudja szakítani a tranzakciót." -#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1004 +#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1000 #: setup/lib/messages.inc.php:161 msgid "Number of records (queries) to skip from start" msgstr "Az elejétől kihagyandó rekordok (lekérdezések) száma" -#: libraries/display_import.lib.php:255 libraries/messages.inc.php:396 +#: libraries/display_import.lib.php:255 libraries/messages.inc.php:392 #: setup/lib/messages.inc.php:160 msgid "Format of imported file" msgstr "Az importált fájl formátuma" #: libraries/display_select_lang.lib.php:45 -#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:465 +#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:461 #: setup/frames/index.inc.php:70 msgid "Language" msgstr "Nyelv" -#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:447 +#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:443 #, php-format msgid "%d is not valid row number." msgstr "A(z) %d érvénytelen sorszám." -#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:814 +#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:810 msgid "row(s) starting from record #" msgstr "sor a következő számú rekordtól kezdődően:" -#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:817 +#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:813 msgid "horizontal" msgstr "vízszintesen" -#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:816 +#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:812 msgid "horizontal (rotated headers)" msgstr "vízszintesen (elforgatott fejlécek)" -#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:819 +#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:815 msgid "vertical" msgstr "függőlegesen" -#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:818 +#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:814 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "%s és a fejlécek megismétlése %s cella után" -#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:495 +#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:491 msgid "This operation could take a long time. Proceed anyway?" msgstr "Ez a művelet sokáig eltarthat. Mindenképp folytatja?" -#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1012 +#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1008 msgid "Sort by key" msgstr "Kulcs szerinti rendezés" #: libraries/display_tbl.lib.php:555 libraries/import.lib.php:1082 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:591 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:587 #: tbl_select.php:267 tbl_structure.php:754 msgid "Options" msgstr "Beállítások" #: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:570 -#: libraries/messages.inc.php:601 +#: libraries/messages.inc.php:597 msgid "Partial Texts" msgstr "Részleges szövegek" #: libraries/display_tbl.lib.php:561 libraries/display_tbl.lib.php:574 -#: libraries/messages.inc.php:346 +#: libraries/messages.inc.php:342 msgid "Full Texts" msgstr "Teljes szövegek" -#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:739 +#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:735 msgid "Relational key" msgstr "Relációs kulcs" -#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:738 +#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:734 msgid "Relational display field" msgstr "Relációs megjelenítési mező" -#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:872 +#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:868 msgid "Show binary contents" msgstr "Bináris tartalom megjelenítése" -#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:873 +#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:869 msgid "Show BLOB contents" msgstr "BLOB-tartalom megjelenítése" -#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:871 +#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:867 #, fuzzy msgid "Show binary contents as HEX" msgstr "Bináris tartalom megjelenítése" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:375 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:371 #: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320 msgid "Hide" msgstr "Elrejtés" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:508 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:504 #: libraries/tbl_properties.inc.php:144 transformation_overview.php:47 msgid "Browser transformation" msgstr "Böngésző átalakítása" #: libraries/display_tbl.lib.php:1126 libraries/display_tbl.lib.php:1130 -#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:308 +#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:304 msgid "Execute bookmarked query" msgstr "Könyvjelzőkhöz hozzáadott lekérdezés végrehajtása" #: libraries/display_tbl.lib.php:1145 libraries/display_tbl.lib.php:1157 -#: libraries/messages.inc.php:244 +#: libraries/messages.inc.php:240 msgid "The row has been deleted" msgstr "A sor törlése megtörtént" #: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056 -#: libraries/messages.inc.php:460 server_processlist.php:71 +#: libraries/messages.inc.php:456 server_processlist.php:71 #: tbl_row_action.php:64 msgid "Kill" msgstr "Leállít" -#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:849 +#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:845 msgid "in query" msgstr "lekérdezésben" -#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:881 +#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:877 msgid "Showing rows" msgstr "Megjelenített sorok:" -#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1113 +#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1109 msgid "total" msgstr "összesen" -#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:727 +#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:723 #: sql.php:524 #, php-format msgid "Query took %01.4f sec" msgstr "a lekérdezés %01.4f másodpercig tartott" -#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:135 +#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:131 #: 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:471 msgid "Change" msgstr "Módosítás" -#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:724 +#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:720 msgid "Query results operations" msgstr "Műveletek a lekérdezési eredménnyel" -#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:671 +#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:667 msgid "Print view (with full texts)" msgstr "Nyomtatási nézet (teljes szöveggel)" -#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:482 +#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:478 msgid "Link not found" msgstr "Nem található a hivatkozás" -#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1224 +#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1220 #: main.php:228 msgid "Version information" msgstr "Verziószám" -#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:423 +#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:419 msgid "Data home directory" msgstr "Adatok kezdőkönyvtára" -#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:424 +#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:420 msgid "The common part of the directory path for all InnoDB data files." msgstr "Az összes InnoDB adatfájl könyvtára elérési útjának közös része." -#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:422 +#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:418 msgid "Data files" msgstr "Adatfájlok" -#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:418 +#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:414 msgid "Autoextend increment" msgstr "Növekmény automatikus bővítése" -#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:419 +#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:415 msgid "" " The increment size for extending the size of an autoextending tablespace " "when it becomes full." @@ -2494,11 +2504,11 @@ msgstr "" " A növekmény mérete egy automatikusan bővülő táblahely méretének " "bővítéséhez, amikor megtelik." -#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:420 +#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:416 msgid "Buffer pool size" msgstr "Pufferkészlet mérete" -#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:421 +#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:417 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." @@ -2506,87 +2516,87 @@ msgstr "" "Az InnoDB által a táblák adatainak és indexeinek gyorsítótárazásához " "használt memóriapuffer mérete." -#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:112 +#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:108 msgid "Buffer Pool" msgstr "Pufferkészlet" -#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:426 +#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:422 #: server_status.php:306 msgid "InnoDB Status" msgstr "InnoDB állapota" -#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:113 +#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:109 msgid "Buffer Pool Usage" msgstr "Pufferkészlet kihasználtsága" -#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1114 +#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1110 #: server_databases.php:137 server_databases.php:305 server_status.php:414 #: server_status.php:475 server_status.php:496 tbl_printview.php:351 #: tbl_structure.php:697 msgid "Total" msgstr "Összesen" -#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:425 +#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:421 msgid "pages" msgstr "lapok" -#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:343 +#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:339 msgid "Free pages" msgstr "Szabad lapok" -#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:259 +#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:255 msgid "Dirty pages" msgstr "Piszkos lapok" -#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:230 +#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:226 msgid "Pages containing data" msgstr "Adatokat tartalmazó lapok" -#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:598 +#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:594 msgid "Pages to be flushed" msgstr "Kiírandó oldalak" -#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:119 +#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:115 msgid "Busy pages" msgstr "Foglalt oldalak" -#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:467 +#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:463 msgid "Latched pages" msgstr "Zárolt oldalak" -#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:111 +#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:107 msgid "Buffer Pool Activity" msgstr "Pufferkészlet művelete" -#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:731 +#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:727 msgid "Read requests" msgstr "Olvasási kérések" -#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1244 +#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1240 msgid "Write requests" msgstr "Írási kérések" -#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:115 +#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:111 msgid "Read misses" msgstr "Olvasási hibák" -#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:117 +#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:113 msgid "Write waits" msgstr "Írási várakozások" -#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:114 +#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:110 msgid "Read misses in %" msgstr "Olvasási hibák %-ban" -#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:116 +#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:112 msgid "Write waits in %" msgstr "Írási várakozások %-ban" -#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:522 +#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:518 msgid "Data pointer size" msgstr "Adatmutató mérete" -#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:523 +#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:519 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." @@ -2594,11 +2604,11 @@ msgstr "" "Az alapértelmezett mutató mérete bájtban, a CREATE TABLE által a MyISAM " "táblákhoz, ha nem adták meg a MAX_ROWS beállítás értékét." -#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:528 +#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:524 msgid "Automatic recovery mode" msgstr "Automatikus helyreállítási mód" -#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:529 +#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:525 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." @@ -2606,11 +2616,11 @@ msgstr "" "Az összeomlott MyISAM táblák automatikus helyreállítási módja, a --myisam-" "recover szerver indítási beállításnál megadottak szerint." -#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:527 +#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:523 msgid "Maximum size for temporary sort files" msgstr "Az ideiglenes rendezőfájlok mérete legfeljebb" -#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:526 +#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:522 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " @@ -2619,11 +2629,11 @@ msgstr "" "A MySQL által engedélyezett ideiglenes fájl legnagyobb mérete a MyISAM index " "újralétrehozásakor (REPAIR TABLE, ALTER TABLE vagy LOAD DATA INFILE során)." -#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:525 +#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:521 msgid "Maximum size for temporary files on index creation" msgstr "Index készítésekor az ideiglenes fájlok mérete legfeljebb" -#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:524 +#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:520 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " @@ -2633,11 +2643,11 @@ msgstr "" "megadott érték által használt kulcsgyorsítótárnál, akkor részesítse előnyben " "a kulcsgyorsítótár módszert." -#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:531 +#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:527 msgid "Repair threads" msgstr "Szálak kijavítása" -#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:530 +#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:526 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." @@ -2646,11 +2656,11 @@ msgstr "" "tároló folyamat által párhuzamosan (mindegyik index a saját szálában) " "történik a javítás során " -#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:533 +#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:529 msgid "Sort buffer size" msgstr "Rendezőpuffer mérete" -#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:532 +#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:528 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." @@ -2659,11 +2669,11 @@ msgstr "" "vagy az indexek CREATE INDEX vagy ALTER TABLE paranccsal történő " "készítésekor." -#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:620 +#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:616 msgid "Index cache size" msgstr "Indexgyorsítótár mérete" -#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:619 +#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:615 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." @@ -2672,11 +2682,11 @@ msgstr "" "alapértelmezett érték 32 MB. Az itt lefoglalt memória kerül felhasználásra " "az indexoldalak gyorsítótárazásához." -#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:630 +#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:626 msgid "Record cache size" msgstr "Rekordgyorsítótár mérete" -#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:629 +#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:625 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " @@ -2687,11 +2697,11 @@ msgstr "" "kerül felhasználásra az adat (.xtd) és a sormutató (.xtr) fájlok kezeléséhez " "szükséges változások gyorsítótárazásához." -#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:624 +#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:620 msgid "Log cache size" msgstr "Naplógyorsítótár mérete" -#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:623 +#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:619 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." @@ -2699,11 +2709,11 @@ msgstr "" "A tranzakciónapló gyorsítótárához lefoglalt, a tranzakciónapló adatainak " "gyorsítótárazásához használt memória mennyisége. Alapértelmezés: 16 MB." -#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:628 +#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:624 msgid "Log file threshold" msgstr "Naplófájl küszöbértéke" -#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:627 +#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:623 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." @@ -2711,11 +2721,11 @@ msgstr "" "A tranzakciónapló váltás előtti mérete, s egy új napló készül. Az " "alapértelmezett érték 16MB." -#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:634 +#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:630 msgid "Transaction buffer size" msgstr "Tranzakció puffer mérete" -#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:633 +#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:629 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." @@ -2723,11 +2733,11 @@ msgstr "" "A globális tranzakciónapló pufferének mérete (a motor 2 ilyen méretű puffert " "foglal le). Alapértelmezés: 1 MB." -#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:611 +#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:607 msgid "Checkpoint frequency" msgstr "Ellenőrzőpont gyakorisága" -#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:612 +#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:608 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." @@ -2735,11 +2745,11 @@ msgstr "" "Az ellenőrzőpont végrehajtása előtt a tranzakciónaplóba írt adatok " "mennyisége. Az alapértelmezés 24 MB." -#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:615 +#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:611 msgid "Data log threshold" msgstr "Adatnapló küszöbértéke" -#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:616 +#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:612 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -2751,11 +2761,11 @@ msgstr "" "használ. Így ennek a változónak az értéke növelhető, hogy növelje az " "adatbázisban tárolható adatok összes mennyiségét." -#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:618 +#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:614 msgid "Garbage threshold" msgstr "Szemét küszöbértéke" -#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:617 +#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:613 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." @@ -2763,11 +2773,11 @@ msgstr "" "Az adatnaplófájlban lévő szemét tömörítés előtti százalékaránya. Ez 1 és 99 " "közti érték. Alapértelmezés: 50." -#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:622 +#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:618 msgid "Log buffer size" msgstr "Napló gyorsítótárának mérete" -#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:621 +#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:617 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " @@ -2777,27 +2787,27 @@ msgstr "" "motor szálanként egy puffert foglal le, de csak akkor, ha a szálnak írnia " "kell az adatnaplóba." -#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:613 +#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:609 msgid "Data file grow size" msgstr "Az adatfájl növekedési mérete" -#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:614 +#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:610 msgid "The grow size of the handle data (.xtd) files." msgstr "Az adatkezelő (.xtd) fájlok növekedési mérete." -#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:632 +#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:628 msgid "Row file grow size" msgstr "Sorfájl növekedési mérete" -#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:631 +#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:627 msgid "The grow size of the row pointer (.xtr) files." msgstr "A sormutató (.xtr) fájlok növekedési mérete." -#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:626 +#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:622 msgid "Log file count" msgstr "Naplófájlok száma" -#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:625 +#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:621 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -2811,19 +2821,19 @@ msgstr "" #: libraries/export/htmlword.php:132 libraries/export/odt.php:168 #: libraries/export/sql.php:881 libraries/export/texytext.php:130 -#: libraries/messages.inc.php:275 +#: libraries/messages.inc.php:271 msgid "Dumping data for table" msgstr "A tábla adatainak kiíratása" #: libraries/export/htmlword.php:185 libraries/export/odt.php:238 #: libraries/export/sql.php:785 libraries/export/texytext.php:177 -#: libraries/messages.inc.php:1086 +#: libraries/messages.inc.php:1082 msgid "Table structure for table" msgstr "Tábla szerkezet:" #: libraries/export/latex.php:125 libraries/export/sql.php:232 #: libraries/export/xml.php:102 libraries/header_printview.inc.php:57 -#: libraries/messages.inc.php:381 libraries/replication_gui.lib.php:63 +#: libraries/messages.inc.php:377 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:170 libraries/replication_gui.lib.php:265 #: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325 #: server_privileges.php:692 server_privileges.php:695 @@ -2835,186 +2845,186 @@ msgstr "Hoszt" #: libraries/export/latex.php:130 libraries/export/sql.php:233 #: libraries/export/xml.php:107 libraries/header_printview.inc.php:59 -#: libraries/messages.inc.php:354 +#: libraries/messages.inc.php:350 msgid "Generation Time" msgstr "Létrehozás ideje" #: libraries/export/latex.php:131 libraries/export/sql.php:235 -#: libraries/export/xml.php:108 libraries/messages.inc.php:864 main.php:186 +#: libraries/export/xml.php:108 libraries/messages.inc.php:860 main.php:186 msgid "Server version" msgstr "Szerver verzió" #: libraries/export/latex.php:132 libraries/export/sql.php:236 -#: libraries/export/xml.php:109 libraries/messages.inc.php:651 +#: libraries/export/xml.php:109 libraries/messages.inc.php:647 msgid "PHP Version" msgstr "PHP verzió" #: libraries/export/latex.php:201 libraries/export/sql.php:868 -#: libraries/messages.inc.php:226 server_databases.php:127 +#: libraries/messages.inc.php:222 server_databases.php:127 #: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317 #: tbl_structure.php:666 msgid "Data" msgstr "Adatok" -#: libraries/export/odt.php:318 libraries/messages.inc.php:506 +#: libraries/export/odt.php:318 libraries/messages.inc.php:502 #: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "MIME-típus" -#: libraries/export/sql.php:387 libraries/messages.inc.php:711 +#: libraries/export/sql.php:387 libraries/messages.inc.php:707 msgid "Procedures" msgstr "Eljárások" -#: libraries/export/sql.php:401 libraries/messages.inc.php:348 +#: libraries/export/sql.php:401 libraries/messages.inc.php:344 msgid "Functions" msgstr "Függvények" -#: libraries/export/sql.php:618 libraries/messages.inc.php:174 +#: libraries/export/sql.php:618 libraries/messages.inc.php:170 msgid "Constraints for dumped tables" msgstr "Megkötések a kiírt táblákhoz" -#: libraries/export/sql.php:627 libraries/messages.inc.php:175 +#: libraries/export/sql.php:627 libraries/messages.inc.php:171 msgid "Constraints for table" msgstr "Megkötések a táblához" -#: libraries/export/sql.php:727 libraries/messages.inc.php:512 +#: libraries/export/sql.php:727 libraries/messages.inc.php:508 msgid "MIME TYPES FOR TABLE" msgstr "Tábla MIME-típusok" -#: libraries/export/sql.php:739 libraries/messages.inc.php:743 +#: libraries/export/sql.php:739 libraries/messages.inc.php:739 msgid "RELATIONS FOR TABLE" msgstr "TÁBLA KAPCSOLATAI" -#: libraries/export/sql.php:796 libraries/messages.inc.php:1178 +#: libraries/export/sql.php:796 libraries/messages.inc.php:1174 #: libraries/tbl_triggers.lib.php:19 msgid "Triggers" msgstr "Eseményindítók" -#: libraries/export/sql.php:808 libraries/messages.inc.php:1046 +#: libraries/export/sql.php:808 libraries/messages.inc.php:1042 msgid "Structure for view" msgstr "Nézet szerkezete" -#: libraries/export/sql.php:817 libraries/messages.inc.php:1029 +#: libraries/export/sql.php:817 libraries/messages.inc.php:1025 msgid "Stand-in structure for view" msgstr "A nézet helyettes szerkezete" #: libraries/footer.inc.php:184 libraries/footer.inc.php:195 -#: libraries/footer.inc.php:198 libraries/messages.inc.php:586 +#: libraries/footer.inc.php:198 libraries/messages.inc.php:582 msgid "Open new phpMyAdmin window" msgstr "Új phpMyAdmin ablak nyitása" -#: libraries/header.inc.php:115 libraries/messages.inc.php:542 +#: libraries/header.inc.php:115 libraries/messages.inc.php:538 #, fuzzy msgid "New table" msgstr "Nincs tábla" #: libraries/header_printview.inc.php:50 libraries/header_printview.inc.php:55 -#: libraries/messages.inc.php:1024 +#: libraries/messages.inc.php:1020 msgid "SQL result" msgstr "SQL-eredmény" -#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:350 +#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:346 msgid "Generated by" msgstr "Készítette" #: libraries/header_printview.inc.php:63 libraries/import.lib.php:145 -#: libraries/messages.inc.php:820 navigation.php:652 navigation.php:674 +#: libraries/messages.inc.php:816 navigation.php:652 navigation.php:674 #: server_databases.php:122 tbl_printview.php:394 tbl_structure.php:366 #: tbl_structure.php:778 msgid "Rows" msgstr "sor" -#: libraries/import.lib.php:150 libraries/messages.inc.php:285 sql.php:520 +#: libraries/import.lib.php:150 libraries/messages.inc.php:281 sql.php:520 #: tbl_change.php:181 tbl_get_field.php:35 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "A MySQL üres eredményhalmazt adott vissza (pl. nulla sorok)." -#: libraries/import.lib.php:1078 libraries/messages.inc.php:399 +#: libraries/import.lib.php:1078 libraries/messages.inc.php:395 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1079 libraries/messages.inc.php:400 +#: libraries/import.lib.php:1079 libraries/messages.inc.php:396 msgid "View a structure`s contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1080 libraries/messages.inc.php:401 +#: libraries/import.lib.php:1080 libraries/messages.inc.php:397 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1081 libraries/messages.inc.php:402 +#: libraries/import.lib.php:1081 libraries/messages.inc.php:398 msgid "Edit its structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1084 libraries/messages.inc.php:362 +#: libraries/import.lib.php:1084 libraries/messages.inc.php:358 #, fuzzy msgid "Go to database" msgstr "Nincs adatbázis" #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:869 +#: libraries/messages.inc.php:865 msgid "settings" msgstr "" -#: libraries/import.lib.php:1106 libraries/messages.inc.php:363 +#: libraries/import.lib.php:1106 libraries/messages.inc.php:359 msgid "Go to table" msgstr "" -#: libraries/import.lib.php:1109 libraries/messages.inc.php:1047 +#: libraries/import.lib.php:1109 libraries/messages.inc.php:1043 #, fuzzy msgid "structure" msgstr "Szerkezet" -#: libraries/import.lib.php:1115 libraries/messages.inc.php:364 +#: libraries/import.lib.php:1115 libraries/messages.inc.php:360 msgid "Go to view" msgstr "" #: libraries/import/csv.php:58 libraries/import/csv.php:70 #: libraries/import/csv.php:74 libraries/import/csv.php:78 -#: libraries/messages.inc.php:442 +#: libraries/messages.inc.php:438 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "A CSV importálás paramétere érvénytelen: %s" -#: libraries/import/csv.php:59 libraries/messages.inc.php:323 +#: libraries/import/csv.php:59 libraries/messages.inc.php:319 msgid "Fields terminated by" msgstr "Mező vége" -#: libraries/import/csv.php:71 libraries/messages.inc.php:320 +#: libraries/import/csv.php:71 libraries/messages.inc.php:316 msgid "Fields enclosed by" msgstr "Mező lezárás" -#: libraries/import/csv.php:75 libraries/messages.inc.php:321 +#: libraries/import/csv.php:75 libraries/messages.inc.php:317 msgid "Fields escaped by" msgstr "Mező escape karakter" -#: libraries/import/csv.php:79 libraries/messages.inc.php:481 +#: libraries/import/csv.php:79 libraries/messages.inc.php:477 msgid "Lines terminated by" msgstr "Sorok vége" -#: libraries/import/csv.php:119 libraries/messages.inc.php:439 +#: libraries/import/csv.php:119 libraries/messages.inc.php:435 #, php-format msgid "Invalid column (%s) specified!" msgstr "A megadott oszlop (%s) érvénytelen!" #: libraries/import/csv.php:177 libraries/import/csv.php:424 -#: libraries/messages.inc.php:441 +#: libraries/messages.inc.php:437 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "A CSV bevitel %d. sorában a formázás érvénytelen." -#: libraries/import/csv.php:312 libraries/messages.inc.php:440 +#: libraries/import/csv.php:312 libraries/messages.inc.php:436 #, php-format msgid "Invalid field count in CSV input on line %d." msgstr "A CSV bevitel %d. sorában a mezők száma érvénytelen." -#: libraries/import/ldi.php:55 libraries/messages.inc.php:446 +#: libraries/import/ldi.php:55 libraries/messages.inc.php:442 msgid "This plugin does not support compressed imports!" msgstr "Ez a beépülő modul nem támogatja a tömörített importálásokat!" #: libraries/import/xml.php:74 libraries/import/xml.php:130 -#: libraries/messages.inc.php:1247 +#: libraries/messages.inc.php:1243 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -3045,405 +3055,395 @@ msgstr "" msgid "ltr" msgstr "ltr" -#. l10n: Thousands separator -#: libraries/messages.inc.php:21 -msgid "," -msgstr " " - -#. l10n: Decimal separator -#: libraries/messages.inc.php:23 -msgid "." -msgstr "." - -#: libraries/messages.inc.php:25 server_status.php:461 +#: libraries/messages.inc.php:21 server_status.php:461 msgid "Aborted" msgstr "Megszakítva" -#: libraries/messages.inc.php:28 main.php:68 +#: libraries/messages.inc.php:24 main.php:68 msgid "Actions" msgstr "Műveletek" -#: libraries/messages.inc.php:34 libraries/tbl_properties.inc.php:780 +#: libraries/messages.inc.php:30 libraries/tbl_properties.inc.php:780 #: tbl_structure.php:543 #, php-format msgid "Add %s field(s)" msgstr "%s mező hozzáadása" -#: libraries/messages.inc.php:35 +#: libraries/messages.inc.php:31 msgid "Add custom comment into header (\\n splits lines)" msgstr "Egyéni megjegyzés hozzáadása a fejléchez (a \\n töri a sorokat)" -#: libraries/messages.inc.php:36 +#: libraries/messages.inc.php:32 msgid "Add into comments" msgstr "Hozzáadás a megjegyzéshez" -#: libraries/messages.inc.php:37 tbl_structure.php:541 +#: libraries/messages.inc.php:33 tbl_structure.php:541 msgid "Add new field" msgstr "Új mező hozzáadása" -#: libraries/messages.inc.php:38 server_privileges.php:1886 +#: libraries/messages.inc.php:34 server_privileges.php:1886 msgid "Add privileges on the following database" msgstr "Jogok hozzáadása a következő adatbázison" -#: libraries/messages.inc.php:39 server_privileges.php:1907 +#: libraries/messages.inc.php:35 server_privileges.php:1907 msgid "Add privileges on the following table" msgstr "Jogok hozzáadása a következő táblán:" -#: libraries/messages.inc.php:40 tbl_select.php:288 +#: libraries/messages.inc.php:36 tbl_select.php:288 msgid "Add search conditions (body of the \"where\" clause):" msgstr "adja meg a keresési feltételeket (a \"where\" feltétel törzsét):" -#: libraries/messages.inc.php:41 tbl_indexes.php:251 +#: libraries/messages.inc.php:37 tbl_indexes.php:251 #, php-format msgid "Add to index  %s column(s)" msgstr "Hozzáadás az index  %s oszlophoz" -#: libraries/messages.inc.php:42 server_privileges.php:1570 +#: libraries/messages.inc.php:38 server_privileges.php:1570 #: server_privileges.php:1594 server_privileges.php:1988 #: server_privileges.php:2177 msgid "Add a new User" msgstr "Új felhasználó hozzáadása" -#: libraries/messages.inc.php:43 server_privileges.php:931 +#: libraries/messages.inc.php:39 server_privileges.php:931 msgid "You have added a new user." msgstr "Az új felhasználó hozzáadása megtörtént." -#: libraries/messages.inc.php:44 server_privileges.php:571 +#: libraries/messages.inc.php:40 server_privileges.php:571 msgid "Administration" msgstr "Adminisztráció" -#: libraries/messages.inc.php:45 tbl_structure.php:557 +#: libraries/messages.inc.php:41 tbl_structure.php:557 #, php-format msgid "After %s" msgstr "%s után" -#: libraries/messages.inc.php:46 tbl_change.php:1147 +#: libraries/messages.inc.php:42 tbl_change.php:1147 msgid "Go back to previous page" msgstr "Vissza az előző oldalra" -#: libraries/messages.inc.php:47 tbl_change.php:1148 +#: libraries/messages.inc.php:43 tbl_change.php:1148 msgid "Insert another new row" msgstr "Új sor beszúrása" -#: libraries/messages.inc.php:48 tbl_change.php:1160 +#: libraries/messages.inc.php:44 tbl_change.php:1160 msgid "Edit next row" msgstr "Következő sor szerkesztése" -#: libraries/messages.inc.php:49 tbl_change.php:1152 +#: libraries/messages.inc.php:45 tbl_change.php:1152 msgid "Go back to this page" msgstr "Visszatérés erre az oldalra" -#: libraries/messages.inc.php:50 querywindow.php:115 +#: libraries/messages.inc.php:46 querywindow.php:115 msgid "All" msgstr "Mind" -#: libraries/messages.inc.php:53 tbl_operations.php:249 +#: libraries/messages.inc.php:49 tbl_operations.php:249 msgid "Alter table order by" msgstr "Tábla rendezésének módosítása e szerint:" -#: libraries/messages.inc.php:54 tbl_operations.php:660 +#: libraries/messages.inc.php:50 tbl_operations.php:660 msgid "Analyze" msgstr "Elemzés" -#: libraries/messages.inc.php:57 +#: libraries/messages.inc.php:53 msgid "and" msgstr "és" -#: libraries/messages.inc.php:59 pmd_general.php:87 +#: libraries/messages.inc.php:55 pmd_general.php:87 msgid "Angular links" msgstr "Összeférhetetlen hivatkozások" -#: libraries/messages.inc.php:60 tbl_structure.php:401 tbl_structure.php:415 +#: libraries/messages.inc.php:56 tbl_structure.php:401 tbl_structure.php:415 #: tbl_structure.php:429 #, php-format msgid "An index has been added on %s" msgstr "Az index hozzáadása a(z) %s mezőn megtörtént" -#: libraries/messages.inc.php:61 server_privileges.php:1521 +#: libraries/messages.inc.php:57 server_privileges.php:1521 #: server_privileges.php:2123 msgid "Any" msgstr "Bármi" -#: libraries/messages.inc.php:62 libraries/replication_gui.lib.php:298 +#: libraries/messages.inc.php:58 libraries/replication_gui.lib.php:298 #: server_privileges.php:725 msgid "Any host" msgstr "Bármilyen hoszt" -#: libraries/messages.inc.php:63 libraries/replication_gui.lib.php:250 +#: libraries/messages.inc.php:59 libraries/replication_gui.lib.php:250 #: server_privileges.php:677 msgid "Any user" msgstr "Bármilyen felhasználó" -#: libraries/messages.inc.php:64 server_synchronize.php:449 +#: libraries/messages.inc.php:60 server_synchronize.php:449 #: server_synchronize.php:894 msgid "Apply Selected Changes" msgstr "" -#: libraries/messages.inc.php:66 tbl_structure.php:386 +#: libraries/messages.inc.php:62 tbl_structure.php:386 #, 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" -#: libraries/messages.inc.php:67 libraries/mysql_charsets.lib.php:368 +#: libraries/messages.inc.php:63 libraries/mysql_charsets.lib.php:368 msgid "Arabic" msgstr "Arab" -#: libraries/messages.inc.php:68 libraries/mysql_charsets.lib.php:359 +#: libraries/messages.inc.php:64 libraries/mysql_charsets.lib.php:359 msgid "Armenian" msgstr "Örmény" -#: libraries/messages.inc.php:70 libraries/tbl_properties.inc.php:394 +#: libraries/messages.inc.php:66 libraries/tbl_properties.inc.php:394 msgid "As defined:" msgstr "Mint meghatározva:" -#: libraries/messages.inc.php:71 tbl_structure.php:556 +#: libraries/messages.inc.php:67 tbl_structure.php:556 msgid "At Beginning of Table" msgstr "A tábla elején" -#: libraries/messages.inc.php:72 tbl_structure.php:555 +#: libraries/messages.inc.php:68 tbl_structure.php:555 msgid "At End of Table" msgstr "A tábla végén" -#: libraries/messages.inc.php:73 libraries/tbl_properties.inc.php:108 +#: libraries/messages.inc.php:69 libraries/tbl_properties.inc.php:108 #: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:144 #: tbl_structure.php:180 msgid "Attributes" msgstr "Tulajdonságok" -#: libraries/messages.inc.php:74 pdf_pages.php:303 pdf_pages.php:306 +#: libraries/messages.inc.php:70 pdf_pages.php:303 pdf_pages.php:306 msgid "Automatic layout" msgstr "Automatikus elrendezés" -#: libraries/messages.inc.php:77 libraries/mysql_charsets.lib.php:354 +#: libraries/messages.inc.php:73 libraries/mysql_charsets.lib.php:354 msgid "Baltic" msgstr "Balti" -#: libraries/messages.inc.php:78 libraries/sqlparser.lib.php:175 +#: libraries/messages.inc.php:74 libraries/sqlparser.lib.php:175 msgid "BEGIN CUT" msgstr "Kivágás kezdete" -#: libraries/messages.inc.php:79 libraries/sqlparser.lib.php:179 +#: libraries/messages.inc.php:75 libraries/sqlparser.lib.php:179 msgid "BEGIN RAW" msgstr "Feldolgozatlan kezdete" -#: libraries/messages.inc.php:80 libraries/mysql_charsets.lib.php:201 +#: libraries/messages.inc.php:76 libraries/mysql_charsets.lib.php:201 #: libraries/mysql_charsets.lib.php:402 tbl_change.php:518 msgid "Binary" msgstr "Bináris" -#: libraries/messages.inc.php:81 tbl_change.php:894 +#: libraries/messages.inc.php:77 tbl_change.php:894 msgid "Binary - do not edit" msgstr "Bináris - nem szerkeszthető" -#: libraries/messages.inc.php:82 libraries/server_links.inc.php:76 +#: libraries/messages.inc.php:78 libraries/server_links.inc.php:76 #: server_binlog.php:110 server_status.php:253 test/theme.php:121 msgid "Binary log" msgstr "Bináris napló" -#: libraries/messages.inc.php:83 server_binlog.php:217 +#: libraries/messages.inc.php:79 server_binlog.php:217 msgid "Event type" msgstr "Esemény típusa" -#: libraries/messages.inc.php:84 server_binlog.php:220 +#: libraries/messages.inc.php:80 server_binlog.php:220 msgid "Information" msgstr "Információ" -#: libraries/messages.inc.php:85 server_binlog.php:215 +#: libraries/messages.inc.php:81 server_binlog.php:215 msgid "Log name" msgstr "Napló neve" -#: libraries/messages.inc.php:86 server_binlog.php:219 +#: libraries/messages.inc.php:82 server_binlog.php:219 msgid "Original position" msgstr "Eredeti pozíció" -#: libraries/messages.inc.php:87 server_binlog.php:216 +#: libraries/messages.inc.php:83 server_binlog.php:216 msgid "Position" msgstr "Pozíció" -#: libraries/messages.inc.php:88 libraries/replication_gui.lib.php:169 +#: libraries/messages.inc.php:84 libraries/replication_gui.lib.php:169 #: server_binlog.php:218 msgid "Server ID" msgstr "Szerver AZ" -#: libraries/messages.inc.php:92 +#: libraries/messages.inc.php:88 #, fuzzy msgctxt "$strBLOBRepositoryDisabled" msgid "Disabled" msgstr "Letiltott" -#: libraries/messages.inc.php:95 +#: libraries/messages.inc.php:91 #, fuzzy msgctxt "$strBLOBRepositoryEnabled" msgid "Enabled" msgstr "Engedélyezett" -#: libraries/messages.inc.php:97 tbl_change.php:888 +#: libraries/messages.inc.php:93 tbl_change.php:888 msgid "Remove BLOB Repository Reference" msgstr "A BLOB-raktár hivatkozásának eltávolítása" -#: libraries/messages.inc.php:98 +#: libraries/messages.inc.php:94 #, fuzzy msgctxt "$strBLOBRepositoryRepair" msgid "Repair" msgstr "Javítás" -#: libraries/messages.inc.php:99 tbl_change.php:987 +#: libraries/messages.inc.php:95 tbl_change.php:987 msgid "Upload to BLOB repository" msgstr "Feltöltés a BLOB-raktárba" -#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:359 +#: libraries/messages.inc.php:96 libraries/sql_query_form.lib.php:359 #: sql.php:677 msgid "Let every user access this bookmark" msgstr "" "A hozzáférés ehhez a könyvjelzőhöz az összes felhasználó számára " "engedélyezett" -#: libraries/messages.inc.php:103 sql.php:671 +#: libraries/messages.inc.php:99 sql.php:671 msgid "Label" msgstr "Név" -#: libraries/messages.inc.php:104 libraries/sql_query_form.lib.php:433 +#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:433 msgid "Bookmarked SQL query" msgstr "Könyvjelzőkhöz hozzáadott SQL-lekérdezés" -#: libraries/messages.inc.php:105 libraries/sql_query_form.lib.php:365 +#: libraries/messages.inc.php:101 libraries/sql_query_form.lib.php:365 msgid "Replace existing bookmark of same name" msgstr "Az ugyanazon nevű könyvjelző kicserélése" -#: libraries/messages.inc.php:106 libraries/sql_query_form.lib.php:352 +#: libraries/messages.inc.php:102 libraries/sql_query_form.lib.php:352 #: sql.php:665 sql.php:666 sql.php:683 msgid "Bookmark this SQL query" msgstr "Az SQL-lekérdezés hozzáadása a könyvjelzőkhöz" -#: libraries/messages.inc.php:107 libraries/sql_query_form.lib.php:466 +#: libraries/messages.inc.php:103 libraries/sql_query_form.lib.php:466 msgid "View only" msgstr "Csak megtekinthető" -#: libraries/messages.inc.php:109 tbl_structure.php:161 +#: libraries/messages.inc.php:105 tbl_structure.php:161 msgid "Browse distinct values" msgstr "A különböző értékek tallózása" -#: libraries/messages.inc.php:110 tbl_change.php:252 tbl_select.php:27 +#: libraries/messages.inc.php:106 tbl_change.php:252 tbl_select.php:27 #: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34 msgid "Browse foreign values" msgstr "Az idegen kulcsok böngészése" -#: libraries/messages.inc.php:118 libraries/mysql_charsets.lib.php:213 +#: libraries/messages.inc.php:114 libraries/mysql_charsets.lib.php:213 msgid "Bulgarian" msgstr "Bolgár" -#: libraries/messages.inc.php:120 +#: libraries/messages.inc.php:116 msgid "\"bzipped\"" msgstr "\"bzip tömörítés\"" -#: libraries/messages.inc.php:122 +#: libraries/messages.inc.php:118 msgid "Calendar" msgstr "Naptár" -#: libraries/messages.inc.php:129 tbl_indexes.php:75 +#: libraries/messages.inc.php:125 tbl_indexes.php:75 msgid "Can't rename index to PRIMARY!" msgstr "Nem nevezhető át PRIMARY-re az index!" -#: libraries/messages.inc.php:132 libraries/mysql_charsets.lib.php:223 +#: libraries/messages.inc.php:128 libraries/mysql_charsets.lib.php:223 #: libraries/mysql_charsets.lib.php:409 msgid "case-insensitive" msgstr "a kis- és nagybetű nem különbözik" -#: libraries/messages.inc.php:133 libraries/mysql_charsets.lib.php:226 +#: libraries/messages.inc.php:129 libraries/mysql_charsets.lib.php:226 #: libraries/mysql_charsets.lib.php:411 msgid "case-sensitive" msgstr "a kis- és nagybetű különbözik" -#: libraries/messages.inc.php:134 libraries/mysql_charsets.lib.php:332 +#: libraries/messages.inc.php:130 libraries/mysql_charsets.lib.php:332 msgid "Central European" msgstr "Közép-európai" -#: libraries/messages.inc.php:136 server_privileges.php:1969 +#: libraries/messages.inc.php:132 server_privileges.php:1969 msgid "... keep the old one." msgstr "... a régiek megőrzése." -#: libraries/messages.inc.php:137 server_privileges.php:1967 +#: libraries/messages.inc.php:133 server_privileges.php:1967 msgid "Create a new user with the same privileges and ..." msgstr "Új felhasználó létrehozása ezekkel a jogokkal, és ..." -#: libraries/messages.inc.php:138 server_privileges.php:1972 +#: libraries/messages.inc.php:134 server_privileges.php:1972 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" " ... a régiek törlése a felhasználói táblákból, majd a jogok újratöltése." -#: libraries/messages.inc.php:139 server_privileges.php:1970 +#: libraries/messages.inc.php:135 server_privileges.php:1970 msgid " ... delete the old one from the user tables." msgstr " ... a régiek törlése a felhasználói táblákból." -#: libraries/messages.inc.php:140 server_privileges.php:1971 +#: libraries/messages.inc.php:136 server_privileges.php:1971 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr " ... az összes aktív jog visszaállítása a régiekből, majd törlés." -#: libraries/messages.inc.php:141 server_privileges.php:1964 +#: libraries/messages.inc.php:137 server_privileges.php:1964 msgid "Change Login Information / Copy User" msgstr "Bejelentkezési adatok módosítása / Felhasználó másolása" -#: libraries/messages.inc.php:144 libraries/mysql_charsets.lib.php:107 +#: libraries/messages.inc.php:140 libraries/mysql_charsets.lib.php:107 msgid "Charset" msgstr "Karakterkészlet" -#: libraries/messages.inc.php:146 server_collations.php:40 +#: libraries/messages.inc.php:142 server_collations.php:40 msgid "Character Sets and Collations" msgstr "Karakterkészletek és illesztések" -#: libraries/messages.inc.php:147 libraries/server_links.inc.php:57 +#: libraries/messages.inc.php:143 libraries/server_links.inc.php:57 #: test/theme.php:109 msgid "Charsets" msgstr "Karakterkészlet" -#: libraries/messages.inc.php:149 tbl_operations.php:661 +#: libraries/messages.inc.php:145 tbl_operations.php:661 msgid "Check" msgstr "Ellenőrzés" -#: libraries/messages.inc.php:151 server_databases.php:293 +#: libraries/messages.inc.php:147 server_databases.php:293 #: server_databases.php:294 msgid "Check Privileges" msgstr "Jogok ellenőrzése" -#: libraries/messages.inc.php:152 server_databases.php:289 +#: libraries/messages.inc.php:148 server_databases.php:289 #, php-format msgid "Check privileges for database "%s"." msgstr "A(z) "%s" adatbázis jogainak ellenőrzése." -#: libraries/messages.inc.php:154 pdf_pages.php:261 +#: libraries/messages.inc.php:150 pdf_pages.php:261 msgid "Please choose a page to edit" msgstr "Válassza ki a szerkesztendő oldalt" -#: libraries/messages.inc.php:157 +#: libraries/messages.inc.php:153 msgid "Displaying Column Comments" msgstr "Oszlopmegjegyzések megjelenítése" -#: libraries/messages.inc.php:159 pdf_pages.php:483 view_create.php:148 +#: libraries/messages.inc.php:155 pdf_pages.php:483 view_create.php:148 msgid "Column names" msgstr "Oszlopnevek" -#: libraries/messages.inc.php:160 server_privileges.php:1685 +#: libraries/messages.inc.php:156 server_privileges.php:1685 msgid "Column-specific privileges" msgstr "Oszlopspecifikus jogok" -#: libraries/messages.inc.php:164 +#: libraries/messages.inc.php:160 msgid "MySQL 4.0 compatible" msgstr "MySQL 4.0 kompatibilis" -#: libraries/messages.inc.php:165 +#: libraries/messages.inc.php:161 msgid "Complete inserts" msgstr "Teljes beszúrások" -#: libraries/messages.inc.php:168 +#: libraries/messages.inc.php:164 #, php-format msgid "Could not load default configuration from: \"%1$s\"" msgstr "" "Nem lehetett betölteni az alapértelmezett konfigurációt innen: \"%1$s\"" -#: libraries/messages.inc.php:169 main.php:306 +#: libraries/messages.inc.php:165 main.php:306 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " @@ -3452,39 +3452,39 @@ msgstr "" "A parancsfájl által használt [code]config[/code] könyvtár még létezik a " "phpMyAdmin könyvtárában. Távolítsa el a phpMyAdmin beállítása után." -#: libraries/messages.inc.php:171 pdf_schema.php:672 +#: libraries/messages.inc.php:167 pdf_schema.php:672 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Állítsa be a(z) %s tábla koordinátáit" -#: libraries/messages.inc.php:173 server_status.php:433 +#: libraries/messages.inc.php:169 server_status.php:433 msgid "Connections" msgstr "Kapcsolatok" -#: libraries/messages.inc.php:179 tbl_operations.php:509 +#: libraries/messages.inc.php:175 tbl_operations.php:509 msgid "Copy table to (database.table):" msgstr "Tábla másolása (adatbázis.tábla):" -#: libraries/messages.inc.php:180 tbl_move_copy.php:58 +#: libraries/messages.inc.php:176 tbl_move_copy.php:58 #, php-format msgid "Table %s has been copied to %s." msgstr "A(z) %s tábla másolása %s néven megtörtént." -#: libraries/messages.inc.php:181 tbl_move_copy.php:48 +#: libraries/messages.inc.php:177 tbl_move_copy.php:48 msgid "Can't copy table to same one!" msgstr "Nem másolható ugyanabba a tábla!" -#: libraries/messages.inc.php:182 server_synchronize.php:94 +#: libraries/messages.inc.php:178 server_synchronize.php:94 #, fuzzy msgid "Could not connect to the source" msgstr "Nem lehetett kapcsolódni a MySQL-szerverhez" -#: libraries/messages.inc.php:183 server_synchronize.php:97 +#: libraries/messages.inc.php:179 server_synchronize.php:97 #, fuzzy msgid "Could not connect to the target" msgstr "Nem lehetett kapcsolódni a MySQL-szerverhez" -#: libraries/messages.inc.php:184 server_processlist.php:24 +#: libraries/messages.inc.php:180 server_processlist.php:24 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -3492,134 +3492,134 @@ msgstr "" "A phpMyAdmin nem tudta leállítani a(z) %s szálat. Valószínűleg már " "befejeződött." -#: libraries/messages.inc.php:187 +#: libraries/messages.inc.php:183 #, php-format msgid "Create an index on %s columns" msgstr "Index készítése a(z) %s. oszlopon" -#: libraries/messages.inc.php:188 tbl_indexes.php:160 +#: libraries/messages.inc.php:184 tbl_indexes.php:160 msgid "Create a new index" msgstr "Új index létrehozása" -#: libraries/messages.inc.php:191 pdf_pages.php:297 pmd_pdf.php:114 +#: libraries/messages.inc.php:187 pdf_pages.php:297 pmd_pdf.php:114 msgid "Create a page" msgstr "Új oldal készítése" -#: libraries/messages.inc.php:192 +#: libraries/messages.inc.php:188 msgid "Creation of PDFs" msgstr "PDF készítése" -#: libraries/messages.inc.php:193 pmd_general.php:74 pmd_general.php:306 +#: libraries/messages.inc.php:189 pmd_general.php:74 pmd_general.php:306 msgid "Create relation" msgstr "Kapcsolat létrehozása" -#: libraries/messages.inc.php:194 pmd_general.php:71 +#: libraries/messages.inc.php:190 pmd_general.php:71 #: server_synchronize.php:429 server_synchronize.php:872 msgid "Create table" msgstr "Tábla létrehozása" -#: libraries/messages.inc.php:195 +#: libraries/messages.inc.php:191 #, fuzzy msgctxt "$strCreateTableShort" msgid "Create table" msgstr "Tábla létrehozása" -#: libraries/messages.inc.php:196 server_privileges.php:1994 +#: libraries/messages.inc.php:192 server_privileges.php:1994 msgid "Database for user" msgstr "Adatbázis a felhasználó számára" -#: libraries/messages.inc.php:197 server_privileges.php:1999 +#: libraries/messages.inc.php:193 server_privileges.php:1999 msgid "Create database with same name and grant all privileges" msgstr "Azonos nevű adatbázis létrehozása, és az összes jog engedélyezése" -#: libraries/messages.inc.php:198 +#: libraries/messages.inc.php:194 #, fuzzy msgctxt "$strCreateUserDatabaseNone" msgid "None" msgstr "Nincs" -#: libraries/messages.inc.php:199 server_privileges.php:2003 +#: libraries/messages.inc.php:195 server_privileges.php:2003 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Az összes jog engedélyezése a(z) "%s" adatbázison" -#: libraries/messages.inc.php:200 server_privileges.php:2000 +#: libraries/messages.inc.php:196 server_privileges.php:2000 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Az összes jog engedélyezése karakterhelyettesítős néven (username\\_%)" -#: libraries/messages.inc.php:201 +#: libraries/messages.inc.php:197 msgid "Creation/Update/Check dates" msgstr "Létrehozás/módosítás/ellenőrzés dátuma" -#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:229 +#: libraries/messages.inc.php:199 libraries/mysql_charsets.lib.php:229 msgid "Croatian" msgstr "Horvát" -#: libraries/messages.inc.php:204 +#: libraries/messages.inc.php:200 msgid "CSV" msgstr "CSV" -#: libraries/messages.inc.php:205 libraries/server_synchronize.lib.php:1343 +#: libraries/messages.inc.php:201 libraries/server_synchronize.lib.php:1343 #: libraries/server_synchronize.lib.php:1369 msgid "Current server" msgstr "" -#: libraries/messages.inc.php:206 main.php:159 +#: libraries/messages.inc.php:202 main.php:159 msgid "Custom color" msgstr "Egyéni szín" -#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:365 +#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:365 msgid "Cyrillic" msgstr "Cirill" -#: libraries/messages.inc.php:208 libraries/mysql_charsets.lib.php:232 +#: libraries/messages.inc.php:204 libraries/mysql_charsets.lib.php:232 msgid "Czech" msgstr "Cseh" -#: libraries/messages.inc.php:209 libraries/mysql_charsets.lib.php:383 +#: libraries/messages.inc.php:205 libraries/mysql_charsets.lib.php:383 msgid "Czech-Slovak" msgstr "Csehszlovák" -#: libraries/messages.inc.php:211 libraries/mysql_charsets.lib.php:235 +#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:235 msgid "Danish" msgstr "Dán" -#: libraries/messages.inc.php:214 +#: libraries/messages.inc.php:210 msgid "Database export options" msgstr "Adatbázis exportálási beállításai" -#: libraries/messages.inc.php:217 server_synchronize.php:122 +#: libraries/messages.inc.php:213 server_synchronize.php:122 #: server_synchronize.php:125 tbl_create.php:82 tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "" -#: libraries/messages.inc.php:219 server_databases.php:63 +#: libraries/messages.inc.php:215 server_databases.php:63 #, php-format msgid "%s databases have been dropped successfully." msgstr "A(z) %s adatbázis eldobása sikerült." -#: libraries/messages.inc.php:220 libraries/server_synchronize.lib.php:1341 +#: libraries/messages.inc.php:216 libraries/server_synchronize.lib.php:1341 #: server_synchronize.php:1110 #, fuzzy msgid "Source database" msgstr "Keresés az adatbázisban" -#: libraries/messages.inc.php:221 server_databases.php:88 +#: libraries/messages.inc.php:217 server_databases.php:88 msgid "Databases statistics" msgstr "Adatbázis-statisztika" -#: libraries/messages.inc.php:222 server_databases.php:362 +#: libraries/messages.inc.php:218 server_databases.php:362 #: server_databases.php:363 msgid "Disable Statistics" msgstr "Statisztika letiltása" -#: libraries/messages.inc.php:223 server_databases.php:358 +#: libraries/messages.inc.php:219 server_databases.php:358 #: server_databases.php:359 msgid "Enable Statistics" msgstr "Statisztika engedélyezése" -#: libraries/messages.inc.php:224 server_databases.php:366 +#: libraries/messages.inc.php:220 server_databases.php:366 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -3627,31 +3627,31 @@ msgstr "" "Megjegyzés: az adatbázis-statisztika engedélyezése a webszerver és a MySQL " "közti nagy adatforgalomhoz vezethet." -#: libraries/messages.inc.php:225 libraries/server_synchronize.lib.php:1367 +#: libraries/messages.inc.php:221 libraries/server_synchronize.lib.php:1367 #: server_synchronize.php:1112 #, fuzzy msgid "Target database" msgstr "Keresés az adatbázisban" -#: libraries/messages.inc.php:228 server_synchronize.php:425 +#: libraries/messages.inc.php:224 server_synchronize.php:425 #: server_synchronize.php:868 msgid "Data Difference" msgstr "" -#: libraries/messages.inc.php:231 server_synchronize.php:272 +#: libraries/messages.inc.php:227 server_synchronize.php:272 msgid "Data Synchronization" msgstr "" -#: libraries/messages.inc.php:235 server_privileges.php:526 +#: libraries/messages.inc.php:231 server_privileges.php:526 #: server_privileges.php:1679 msgid "Database-specific privileges" msgstr "Adatbázis-specifikus jogok" -#: libraries/messages.inc.php:237 server_privileges.php:2136 +#: libraries/messages.inc.php:233 server_privileges.php:2136 msgid "database-specific" msgstr "adatbázis-specifikus" -#: libraries/messages.inc.php:240 libraries/tbl_properties.inc.php:106 +#: libraries/messages.inc.php:236 libraries/tbl_properties.inc.php:106 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" @@ -3659,32 +3659,32 @@ msgstr "" "Írjon be egy értéket az alapértelmezett értékekhez, fordított perjel, escape " "karakter vagy idézőjelek nélkül, a következő formátum használatával: a" -#: libraries/messages.inc.php:241 tbl_operations.php:589 +#: libraries/messages.inc.php:237 tbl_operations.php:589 msgid "Defragment table" msgstr "Tábla töredezettségmentesítése" -#: libraries/messages.inc.php:242 +#: libraries/messages.inc.php:238 msgid "Use delayed inserts" msgstr "Késleltetett beszúrások használata" -#: libraries/messages.inc.php:245 server_privileges.php:1243 +#: libraries/messages.inc.php:241 server_privileges.php:1243 msgid "No users selected for deleting!" msgstr "Nincs törlésre kijelölt felhasználó!" -#: libraries/messages.inc.php:246 pmd_general.php:372 +#: libraries/messages.inc.php:242 pmd_general.php:372 msgid "Delete relation" msgstr "Kapcsolat törlése" -#: libraries/messages.inc.php:248 server_privileges.php:1232 +#: libraries/messages.inc.php:244 server_privileges.php:1232 #, php-format msgid "Deleting %s" msgstr "%s törlése" -#: libraries/messages.inc.php:249 libraries/sql_query_form.lib.php:388 +#: libraries/messages.inc.php:245 libraries/sql_query_form.lib.php:388 msgid "Delimiter" msgstr "Elválasztó" -#: libraries/messages.inc.php:250 pdf_pages.php:506 +#: libraries/messages.inc.php:246 pdf_pages.php:506 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -3692,7 +3692,7 @@ msgstr "" "A jelenlegi oldalon lévő táblahivatkozások már léteznek. Szeretné törölni " "ezeket a hivatkozásokat?" -#: libraries/messages.inc.php:254 pmd_help.php:29 +#: libraries/messages.inc.php:250 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 " @@ -3702,143 +3702,143 @@ msgstr "" "történő beállításához/eltávolításához kattintson a \"Válassza ki a " "megjelenítendő mezőt\" ikonra, majd kattintson a megfelelő mező nevére." -#: libraries/messages.inc.php:256 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:252 libraries/mysql_charsets.lib.php:247 msgid "dictionary" msgstr "szótár" -#: libraries/messages.inc.php:257 libraries/server_synchronize.lib.php:1348 +#: libraries/messages.inc.php:253 libraries/server_synchronize.lib.php:1348 msgid "Difference" msgstr "" -#: libraries/messages.inc.php:258 pmd_general.php:87 +#: libraries/messages.inc.php:254 pmd_general.php:87 msgid "Direct links" msgstr "Közvetlen hivatkozások" -#: libraries/messages.inc.php:261 +#: libraries/messages.inc.php:257 msgid "Disable foreign key checks" msgstr "Az idegen kulcsok ellenőrzésének letiltása" -#: libraries/messages.inc.php:262 +#: libraries/messages.inc.php:258 msgid "Display Features" msgstr "Tulajdonságok megjelenítése" -#: libraries/messages.inc.php:263 tbl_select.php:301 +#: libraries/messages.inc.php:259 tbl_select.php:301 msgid "Display order:" msgstr "Megjelenítési sorrend:" -#: libraries/messages.inc.php:265 tbl_select.php:132 +#: libraries/messages.inc.php:261 tbl_select.php:132 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "" "Egy \"példa szerinti lekérdezés\" végrehajtása (karakterhelyettesítő: \"%\")" -#: libraries/messages.inc.php:266 +#: libraries/messages.inc.php:262 msgid "DocSQL" msgstr "DocSQL" -#: libraries/messages.inc.php:268 +#: libraries/messages.inc.php:264 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Az AUTO_INCREMENT nulla értékekhez nincs használatban" -#: libraries/messages.inc.php:273 server_privileges.php:1579 +#: libraries/messages.inc.php:269 server_privileges.php:1579 #: server_privileges.php:1580 server_privileges.php:1581 msgid "Drop the databases that have the same names as the users." msgstr "A felhasználókéval azonos nevű adatbázisok eldobása." -#: libraries/messages.inc.php:278 tbl_printview.php:382 tbl_structure.php:743 +#: libraries/messages.inc.php:274 tbl_printview.php:382 tbl_structure.php:743 msgid "dynamic" msgstr "dinamikus" -#: libraries/messages.inc.php:282 server_privileges.php:1324 +#: libraries/messages.inc.php:278 server_privileges.php:1324 #: server_privileges.php:1610 msgid "Edit Privileges" msgstr "Jogok szerkesztése" -#: libraries/messages.inc.php:283 tbl_printview.php:341 tbl_structure.php:688 +#: libraries/messages.inc.php:279 tbl_printview.php:341 tbl_structure.php:688 msgid "Effective" msgstr "Hatályos" -#: libraries/messages.inc.php:286 libraries/relation.lib.php:100 +#: libraries/messages.inc.php:282 libraries/relation.lib.php:100 msgid "Enabled" msgstr "Engedélyezett" -#: libraries/messages.inc.php:287 +#: libraries/messages.inc.php:283 msgid "Enclose export in a transaction" msgstr "Az exportálás befoglalása egy tranzakcióban" -#: libraries/messages.inc.php:288 libraries/sqlparser.lib.php:177 +#: libraries/messages.inc.php:284 libraries/sqlparser.lib.php:177 msgid "END CUT" msgstr "Kivágás vége" -#: libraries/messages.inc.php:290 libraries/sqlparser.lib.php:183 +#: libraries/messages.inc.php:286 libraries/sqlparser.lib.php:183 msgid "END RAW" msgstr "Feldolgozatlan Vége" -#: libraries/messages.inc.php:293 libraries/server_links.inc.php:61 +#: libraries/messages.inc.php:289 libraries/server_links.inc.php:61 #: test/theme.php:113 msgid "Engines" msgstr "Motorok" -#: libraries/messages.inc.php:295 libraries/mysql_charsets.lib.php:238 +#: libraries/messages.inc.php:291 libraries/mysql_charsets.lib.php:238 msgid "English" msgstr "Angol" -#: libraries/messages.inc.php:296 server_privileges.php:393 +#: libraries/messages.inc.php:292 server_privileges.php:393 #: server_privileges.php:535 server_privileges.php:1501 msgid " Note: MySQL privilege names are expressed in English " msgstr " Megjegyzés: a MySQL jognevek az angolból származnak." -#: libraries/messages.inc.php:298 libraries/zip_extension.lib.php:49 +#: libraries/messages.inc.php:294 libraries/zip_extension.lib.php:49 #: libraries/zip_extension.lib.php:51 libraries/zip_extension.lib.php:66 msgid "Error in ZIP archive:" msgstr "Hiba a ZIP archívumban:" -#: libraries/messages.inc.php:303 libraries/mysql_charsets.lib.php:241 +#: libraries/messages.inc.php:299 libraries/mysql_charsets.lib.php:241 msgid "Esperanto" msgstr "Eszperantó" -#: libraries/messages.inc.php:304 libraries/mysql_charsets.lib.php:244 +#: libraries/messages.inc.php:300 libraries/mysql_charsets.lib.php:244 msgid "Estonian" msgstr "Észt" -#: libraries/messages.inc.php:305 libraries/tbl_triggers.lib.php:29 +#: libraries/messages.inc.php:301 libraries/tbl_triggers.lib.php:29 msgid "Event" msgstr "Esemény" -#: libraries/messages.inc.php:307 +#: libraries/messages.inc.php:303 msgid "Excel edition" msgstr "Excel szerkesztés" -#: libraries/messages.inc.php:311 pmd_pdf.php:85 +#: libraries/messages.inc.php:307 pmd_pdf.php:85 msgid "Export/Import to scale" msgstr "Méretezendő exportálás/importálás" -#: libraries/messages.inc.php:313 +#: libraries/messages.inc.php:309 msgid "Extended inserts" msgstr "Kiterjesztett beszúrások" -#: libraries/messages.inc.php:314 pdf_schema.php:1267 pdf_schema.php:1288 +#: libraries/messages.inc.php:310 pdf_schema.php:1267 pdf_schema.php:1288 #: tbl_printview.php:147 tbl_structure.php:183 tbl_tracking.php:278 msgid "Extra" msgstr "Extra" -#: libraries/messages.inc.php:316 server_status.php:447 +#: libraries/messages.inc.php:312 server_status.php:447 msgid "Failed attempts" msgstr "Sikertelen próbák" -#: libraries/messages.inc.php:318 tbl_structure.php:375 +#: libraries/messages.inc.php:314 tbl_structure.php:375 #, php-format msgid "Field %s has been dropped" msgstr "A(z) %s mező eldobása megtörtént" -#: libraries/messages.inc.php:322 libraries/sql_query_form.lib.php:317 +#: libraries/messages.inc.php:318 libraries/sql_query_form.lib.php:317 msgid "Fields" msgstr "Mezők száma" -#: libraries/messages.inc.php:332 server_binlog.php:136 +#: libraries/messages.inc.php:328 server_binlog.php:136 msgid "Files" msgstr "Fájlok" -#: libraries/messages.inc.php:334 server_privileges.php:1597 +#: libraries/messages.inc.php:330 server_privileges.php:1597 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -3851,122 +3851,122 @@ msgstr "" "használt jogoktól, ha a módosításuk kézzel történt. Ebben az esetben %" "stöltse be újra a jogokat%s a folytatás előtt." -#: libraries/messages.inc.php:335 server_status.php:289 +#: libraries/messages.inc.php:331 server_status.php:289 msgid "Flush query cache" msgstr "Lekérdezési gyorsítótár kiírása" -#: libraries/messages.inc.php:336 +#: libraries/messages.inc.php:332 msgid "Flush the table (\"FLUSH\")" msgstr "Tábla kiírása (\"FLUSH\")" -#: libraries/messages.inc.php:337 server_status.php:271 +#: libraries/messages.inc.php:333 server_status.php:271 msgid "Flush (close) all tables" msgstr "Összes tábla kiírása (bezárása)" -#: libraries/messages.inc.php:339 tbl_relation.php:279 +#: libraries/messages.inc.php:335 tbl_relation.php:279 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" "Hiba történt az idegen kulcs %1$s táblán történő létrehozásakor (ellenőrizze " "az adattípusokat)" -#: libraries/messages.inc.php:341 setup/lib/messages.inc.php:88 +#: libraries/messages.inc.php:337 setup/lib/messages.inc.php:88 #: tbl_printview.php:376 tbl_structure.php:738 msgid "Format" msgstr "Formátum" -#: libraries/messages.inc.php:344 server_replication.php:325 +#: libraries/messages.inc.php:340 server_replication.php:325 #, fuzzy msgid "Full start" msgstr "Teljes szöveg" -#: libraries/messages.inc.php:345 server_replication.php:325 +#: libraries/messages.inc.php:341 server_replication.php:325 msgid "Full stop" msgstr "" -#: libraries/messages.inc.php:347 tbl_change.php:282 tbl_change.php:320 +#: libraries/messages.inc.php:343 tbl_change.php:282 tbl_change.php:320 msgid "Function" msgstr "Függvény" -#: libraries/messages.inc.php:355 libraries/mysql_charsets.lib.php:377 +#: libraries/messages.inc.php:351 libraries/mysql_charsets.lib.php:377 msgid "Georgian" msgstr "Grúz" -#: libraries/messages.inc.php:356 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:352 libraries/mysql_charsets.lib.php:247 #: libraries/mysql_charsets.lib.php:250 msgid "German" msgstr "Német" -#: libraries/messages.inc.php:357 themes.php:42 +#: libraries/messages.inc.php:353 themes.php:42 msgid "Get more themes!" msgstr "Több téma letöltése" -#: libraries/messages.inc.php:358 server_privileges.php:2134 +#: libraries/messages.inc.php:354 server_privileges.php:2134 msgid "global" msgstr "globális" -#: libraries/messages.inc.php:359 server_privileges.php:524 +#: libraries/messages.inc.php:355 server_privileges.php:524 #: server_privileges.php:1500 msgid "Global privileges" msgstr "Globális jogok" -#: libraries/messages.inc.php:360 server_variables.php:55 +#: libraries/messages.inc.php:356 server_variables.php:55 #: server_variables.php:89 msgid "Global value" msgstr "Globális változó" -#: libraries/messages.inc.php:365 server_privileges.php:1502 +#: libraries/messages.inc.php:361 server_privileges.php:1502 #: server_privileges.php:1684 server_privileges.php:2033 msgid "Grant" msgstr "Engedélyezés" -#: libraries/messages.inc.php:366 libraries/mysql_charsets.lib.php:380 +#: libraries/messages.inc.php:362 libraries/mysql_charsets.lib.php:380 msgid "Greek" msgstr "Görög" -#: libraries/messages.inc.php:367 +#: libraries/messages.inc.php:363 msgid "\"gzipped\"" msgstr "\"gzip tömörítés\"" -#: libraries/messages.inc.php:369 server_status.php:250 +#: libraries/messages.inc.php:365 server_status.php:250 msgid "Handler" msgstr "Kezelő" -#: libraries/messages.inc.php:370 server_synchronize.php:464 +#: libraries/messages.inc.php:366 server_synchronize.php:464 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: libraries/messages.inc.php:372 libraries/mysql_charsets.lib.php:374 +#: libraries/messages.inc.php:368 libraries/mysql_charsets.lib.php:374 msgid "Hebrew" msgstr "Héber" -#: libraries/messages.inc.php:373 pmd_general.php:83 +#: libraries/messages.inc.php:369 pmd_general.php:83 msgid "Help" msgstr "Súgó" -#: libraries/messages.inc.php:374 +#: libraries/messages.inc.php:370 msgid "Use hexadecimal for BLOB" msgstr "Hexadecimális értékek használata a BLOB művelethez" -#: libraries/messages.inc.php:376 pmd_general.php:120 +#: libraries/messages.inc.php:372 pmd_general.php:120 msgid "Hide/Show all" msgstr "Minden elrejtése/megjelenítése" -#: libraries/messages.inc.php:377 pmd_general.php:124 +#: libraries/messages.inc.php:373 pmd_general.php:124 msgid "Hide/Show Tables with no relation" msgstr "A kapcsolat nélküli táblák megjelenítése/elrejtése" -#: libraries/messages.inc.php:378 libraries/navigation_header.inc.php:54 +#: libraries/messages.inc.php:374 libraries/navigation_header.inc.php:54 #: libraries/navigation_header.inc.php:57 #: libraries/navigation_header.inc.php:58 msgid "Home" msgstr "Kezdőlap" -#: libraries/messages.inc.php:379 main.php:233 +#: libraries/messages.inc.php:375 main.php:233 msgid "Official Homepage" msgstr "Hivatalos honlap" -#: libraries/messages.inc.php:382 libraries/replication_gui.lib.php:327 +#: libraries/messages.inc.php:378 libraries/replication_gui.lib.php:327 #: server_privileges.php:753 msgid "" "When Host table is used, this field is ignored and values stored in Host " @@ -3975,98 +3975,98 @@ msgstr "" "A Host tábla használatakor ez a mező mellőzésre kerül, s a Host táblában " "lévő értékek kerülnek felhaszsnálásra." -#: libraries/messages.inc.php:383 +#: libraries/messages.inc.php:379 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/messages.inc.php:384 libraries/mysql_charsets.lib.php:253 +#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:253 msgid "Hungarian" msgstr "Magyar" -#: libraries/messages.inc.php:386 libraries/mysql_charsets.lib.php:256 +#: libraries/messages.inc.php:382 libraries/mysql_charsets.lib.php:256 msgid "Icelandic" msgstr "Izlandi" -#: libraries/messages.inc.php:387 server_processlist.php:53 +#: libraries/messages.inc.php:383 server_processlist.php:53 msgid "ID" msgstr "AZ" -#: libraries/messages.inc.php:388 libraries/mult_submits.inc.php:108 +#: libraries/messages.inc.php:384 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:479 msgid "Fulltext" msgstr "Teljes szöveg" -#: libraries/messages.inc.php:389 +#: libraries/messages.inc.php:385 msgid "Ignore duplicate rows" msgstr "A dupla sorok figyelmen kívül hagyása" -#: libraries/messages.inc.php:390 tbl_change.php:302 tbl_indexes.php:200 +#: libraries/messages.inc.php:386 tbl_change.php:302 tbl_indexes.php:200 #: tbl_indexes.php:225 msgid "Ignore" msgstr "Kihagyás" -#: libraries/messages.inc.php:391 +#: libraries/messages.inc.php:387 msgid "Use ignore inserts" msgstr "Mellőző beszúrások használata" -#: libraries/messages.inc.php:392 +#: libraries/messages.inc.php:388 msgid "Column names in first row" msgstr "" -#: libraries/messages.inc.php:393 +#: libraries/messages.inc.php:389 msgid "Do not import empty rows" msgstr "" -#: libraries/messages.inc.php:394 pmd_general.php:104 +#: libraries/messages.inc.php:390 pmd_general.php:104 msgid "Import/Export coordinates for PDF schema" msgstr "A PDF-séma importálási/exportálási koordinátái" -#: libraries/messages.inc.php:395 querywindow.php:104 +#: libraries/messages.inc.php:391 querywindow.php:104 msgid "Import files" msgstr "Fájlok importálása" -#: libraries/messages.inc.php:403 +#: libraries/messages.inc.php:399 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/messages.inc.php:404 libraries/messages.inc.php:584 +#: libraries/messages.inc.php:400 libraries/messages.inc.php:580 msgid "Open Document Spreadsheet" msgstr "Open Document munkafüzet" -#: libraries/messages.inc.php:405 +#: libraries/messages.inc.php:401 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/messages.inc.php:409 +#: libraries/messages.inc.php:405 msgid "Excel 97-2003 XLS Workbook" msgstr "" -#: libraries/messages.inc.php:410 +#: libraries/messages.inc.php:406 msgid "Excel 2007 XLSX Workbook" msgstr "" -#: libraries/messages.inc.php:414 libraries/mult_submits.inc.php:98 +#: libraries/messages.inc.php:410 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:476 tbl_structure.php:674 msgid "Index" msgstr "Index" -#: libraries/messages.inc.php:415 tbl_indexes.php:168 +#: libraries/messages.inc.php:411 tbl_indexes.php:168 msgid "Index name:" msgstr "Index neve:" -#: libraries/messages.inc.php:416 tbl_indexes.php:174 +#: libraries/messages.inc.php:412 tbl_indexes.php:174 msgid "Index type:" msgstr "Index típusa:" -#: libraries/messages.inc.php:417 sql.php:639 +#: libraries/messages.inc.php:413 sql.php:639 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Probléma a(z) `%s` tábla indexeivel" -#: libraries/messages.inc.php:427 main.php:266 +#: libraries/messages.inc.php:423 main.php:266 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -4078,164 +4078,164 @@ msgstr "" "MySQL szerver most ezzel az alapbeállítással fut, behatolásra nyitott. " "Javítsa ezt a biztonsági rést." -#: libraries/messages.inc.php:428 tbl_change.php:1130 +#: libraries/messages.inc.php:424 tbl_change.php:1130 msgid "Insert as new row" msgstr "Beszúrás új sorként" -#: libraries/messages.inc.php:429 sql.php:496 tbl_replace.php:386 +#: libraries/messages.inc.php:425 sql.php:496 tbl_replace.php:386 #, php-format msgid "Inserted row id: %1$d" msgstr "A beszúrt sor azonosítószáma: %1$d" -#: libraries/messages.inc.php:430 tbl_change.php:1131 +#: libraries/messages.inc.php:426 tbl_change.php:1131 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/messages.inc.php:432 main.php:139 +#: libraries/messages.inc.php:428 main.php:139 msgid "Interface" msgstr "Kezelőfelület" -#: libraries/messages.inc.php:433 tbl_relation.php:407 +#: libraries/messages.inc.php:429 tbl_relation.php:407 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" "Nincs szükség belső kapcsolatra, ha létezik megfelelő IDEGEN KULCS kapcsolat." -#: libraries/messages.inc.php:435 pdf_pages.php:303 +#: libraries/messages.inc.php:431 pdf_pages.php:303 msgid "Internal relations" msgstr "Belső kapcsolatok" -#: libraries/messages.inc.php:438 tbl_indexes.php:256 tbl_structure.php:590 +#: libraries/messages.inc.php:434 tbl_indexes.php:256 tbl_structure.php:590 #: tbl_structure.php:601 msgid "Column count has to be larger than zero." msgstr "Az oszlopok számának nullánál nagyobbnak kell lennie." -#: libraries/messages.inc.php:444 libraries/tbl_properties.inc.php:784 +#: libraries/messages.inc.php:440 libraries/tbl_properties.inc.php:784 #: tbl_structure.php:537 msgid "You have to add at least one field." msgstr "Legalább egy mezőt meg kell adnia." -#: libraries/messages.inc.php:449 +#: libraries/messages.inc.php:445 #, php-format msgid "Invalid server index: \"%s\"" msgstr "Érvénytelen szerverindex: \"%s\"" -#: libraries/messages.inc.php:452 libraries/mysql_charsets.lib.php:259 +#: libraries/messages.inc.php:448 libraries/mysql_charsets.lib.php:259 #: libraries/mysql_charsets.lib.php:349 msgid "Japanese" msgstr "Japán" -#: libraries/messages.inc.php:453 main.php:331 +#: libraries/messages.inc.php:449 main.php:331 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: libraries/messages.inc.php:454 server_status.php:257 +#: libraries/messages.inc.php:450 server_status.php:257 msgid "Joins" msgstr "Illesztések" -#: libraries/messages.inc.php:457 server_privileges.php:763 +#: libraries/messages.inc.php:453 server_privileges.php:763 msgid "Do not change the password" msgstr "Nincs jelszó megváltoztatás" -#: libraries/messages.inc.php:458 server_status.php:256 +#: libraries/messages.inc.php:454 server_status.php:256 msgid "Key cache" msgstr "Kulcs gyorsítótár" -#: libraries/messages.inc.php:462 libraries/mysql_charsets.lib.php:268 +#: libraries/messages.inc.php:458 libraries/mysql_charsets.lib.php:268 #: libraries/mysql_charsets.lib.php:371 msgid "Korean" msgstr "Koreai" -#: libraries/messages.inc.php:466 libraries/select_lang.lib.php:480 +#: libraries/messages.inc.php:462 libraries/select_lang.lib.php:480 #: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492 #, php-format msgid "Unknown language: %1$s." msgstr "Ismeretlen nyelv: %1$s." -#: libraries/messages.inc.php:468 +#: libraries/messages.inc.php:464 msgid "Table caption" msgstr "Táblacím" -#: libraries/messages.inc.php:469 +#: libraries/messages.inc.php:465 msgid "Content of table __TABLE__" msgstr "__TABLE__ tábla tartalma" -#: libraries/messages.inc.php:470 +#: libraries/messages.inc.php:466 msgid "Continued table caption" msgstr "Táblacím folytatása" -#: libraries/messages.inc.php:471 +#: libraries/messages.inc.php:467 msgid "(continued)" msgstr "(folytatás)" -#: libraries/messages.inc.php:472 +#: libraries/messages.inc.php:468 msgid "Include table caption" msgstr "Tartalmazza a táblacímet" -#: libraries/messages.inc.php:473 +#: libraries/messages.inc.php:469 msgid "Label key" msgstr "Feliratkulcs" -#: libraries/messages.inc.php:474 +#: libraries/messages.inc.php:470 msgid "LaTeX" msgstr "LaTeX" -#: libraries/messages.inc.php:475 +#: libraries/messages.inc.php:471 msgid "Structure of table __TABLE__" msgstr "__TABLE__ tábla szerkezete" -#: libraries/messages.inc.php:476 libraries/mysql_charsets.lib.php:262 +#: libraries/messages.inc.php:472 libraries/mysql_charsets.lib.php:262 msgid "Latvian" msgstr "Lett" -#: libraries/messages.inc.php:477 +#: libraries/messages.inc.php:473 msgid "CSV using LOAD DATA" msgstr "CSV a LOAD DATA használatával" -#: libraries/messages.inc.php:478 +#: libraries/messages.inc.php:474 msgid "Use LOCAL keyword" msgstr "LOCAL kulcsszó használata" -#: libraries/messages.inc.php:479 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:475 libraries/tbl_properties.inc.php:105 msgid "Length/Values" msgstr "Hossz/Érték*" -#: libraries/messages.inc.php:480 tbl_select.php:295 +#: libraries/messages.inc.php:476 tbl_select.php:295 msgid "Number of rows per page" msgstr "Sorok száma oldalanként" -#: libraries/messages.inc.php:484 libraries/mysql_charsets.lib.php:265 +#: libraries/messages.inc.php:480 libraries/mysql_charsets.lib.php:265 msgid "Lithuanian" msgstr "Litván" -#: libraries/messages.inc.php:485 libraries/replication_gui.lib.php:302 +#: libraries/messages.inc.php:481 libraries/replication_gui.lib.php:302 #: server_privileges.php:729 msgid "Local" msgstr "Helyi" -#: libraries/messages.inc.php:487 server_privileges.php:669 +#: libraries/messages.inc.php:483 server_privileges.php:669 msgid "Login Information" msgstr "Bejelentkezési adatok" -#: libraries/messages.inc.php:490 libraries/navigation_header.inc.php:67 +#: libraries/messages.inc.php:486 libraries/navigation_header.inc.php:67 #: libraries/navigation_header.inc.php:70 #: libraries/navigation_header.inc.php:71 main.php:99 msgid "Log out" msgstr "Kilépés" -#: libraries/messages.inc.php:497 server_status.php:440 +#: libraries/messages.inc.php:493 server_status.php:440 msgid "max. concurrent connections" msgstr "Max. egyidejű kapcsolatok száma" -#: libraries/messages.inc.php:498 +#: libraries/messages.inc.php:494 msgid "Maximal length of created query" msgstr "A létrehozott lekérdezés hossza legfeljebb" -#: libraries/messages.inc.php:500 main.php:282 +#: libraries/messages.inc.php:496 main.php:282 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -4246,7 +4246,7 @@ msgstr "" "tudja megfelelően felosztani a karakterláncokat, mely nem várt eredményhez " "vezethet." -#: libraries/messages.inc.php:501 main.php:274 +#: libraries/messages.inc.php:497 main.php:274 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -4255,24 +4255,24 @@ msgstr "" "Ön engedélyezte az mbstring.func_overload funkciót a PHP konfigurációban. Ez " "a beállítás nem kompatibilis a phpMyAdminnal, és az adatsérüléssel járhat!" -#: libraries/messages.inc.php:502 +#: libraries/messages.inc.php:498 msgid "MediaWiki Table" msgstr "" -#: libraries/messages.inc.php:503 transformation_overview.php:25 +#: libraries/messages.inc.php:499 transformation_overview.php:25 msgid "Available MIME types" msgstr "Létező MIME-típusok" -#: libraries/messages.inc.php:504 transformation_overview.php:43 +#: libraries/messages.inc.php:500 transformation_overview.php:43 msgid "Available transformations" msgstr "Létező átalakítások" -#: libraries/messages.inc.php:505 +#: libraries/messages.inc.php:501 msgctxt "$strMIME_description" msgid "Description" msgstr "Leírás" -#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:580 +#: libraries/messages.inc.php:503 libraries/tbl_properties.inc.php:580 #: transformation_overview.php:60 #, php-format msgid "" @@ -4282,7 +4282,7 @@ msgstr "" "Ehhez az átalakításhoz nem érhető el leírás.
Kérdezze meg a szerzőtől, " "hogy mit csinál a(z) %s." -#: libraries/messages.inc.php:509 libraries/tbl_properties.inc.php:137 +#: libraries/messages.inc.php:505 libraries/tbl_properties.inc.php:137 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -4291,7 +4291,7 @@ msgstr "" "Az elérhető átalakítási beállítások listájához és a hozzájuk tartozó MIME-" "típusokhoz kattintson ide: %stransformation descriptions%s" -#: libraries/messages.inc.php:510 libraries/tbl_properties.inc.php:146 +#: libraries/messages.inc.php:506 libraries/tbl_properties.inc.php:146 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -4303,56 +4303,56 @@ msgstr "" "akar beszúrni az értékekbe, akkor kezdje fordított perjellel (például: '\\" "\\xyz' vagy 'a\\'b')." -#: libraries/messages.inc.php:511 libraries/tbl_properties.inc.php:145 +#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:145 msgid "Transformation options" msgstr "Átalakítás beállításai" -#: libraries/messages.inc.php:513 transformation_overview.php:38 +#: libraries/messages.inc.php:509 transformation_overview.php:38 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "A dőlttel írt MIME-típusoknak nincs külön átalakítási funkciójuk" -#: libraries/messages.inc.php:515 tbl_indexes.php:162 +#: libraries/messages.inc.php:511 tbl_indexes.php:162 msgid "Modify an index" msgstr "Index módosítása" -#: libraries/messages.inc.php:517 pmd_general.php:108 +#: libraries/messages.inc.php:513 pmd_general.php:108 msgid "Move Menu" msgstr "Menü áthelyezése" -#: libraries/messages.inc.php:518 tbl_operations.php:276 +#: libraries/messages.inc.php:514 tbl_operations.php:276 msgid "Move table to (database.table):" msgstr "Tábla áthelyezése (adatbázis.tábla):" -#: libraries/messages.inc.php:519 tbl_move_copy.php:56 +#: libraries/messages.inc.php:515 tbl_move_copy.php:56 #, php-format msgid "Table %s has been moved to %s." msgstr "A(z) %s tábla áthelyezése a(z) %s adatbázisba kész." -#: libraries/messages.inc.php:520 tbl_move_copy.php:46 +#: libraries/messages.inc.php:516 tbl_move_copy.php:46 msgid "Can't move table to same one!" msgstr "Nem helyezhető át ugyanabba a tábla!" -#: libraries/messages.inc.php:521 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:517 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 #: libraries/mysql_charsets.lib.php:332 libraries/mysql_charsets.lib.php:354 #: libraries/mysql_charsets.lib.php:365 msgid "multilingual" msgstr "többnyelvű" -#: libraries/messages.inc.php:534 main.php:193 +#: libraries/messages.inc.php:530 main.php:193 msgid "MySQL charset" msgstr "MySQL karakterkészlet" -#: libraries/messages.inc.php:535 main.php:211 +#: libraries/messages.inc.php:531 main.php:211 msgid "MySQL client version" msgstr "MySQL kliens verzió" -#: libraries/messages.inc.php:536 main.php:125 +#: libraries/messages.inc.php:532 main.php:125 msgid "MySQL connection collation" msgstr "MySQL kapcsolat illesztése" -#: libraries/messages.inc.php:537 main.php:346 +#: libraries/messages.inc.php:533 main.php:346 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -4361,54 +4361,54 @@ msgstr "" "A PHP MySQL függvénytár %s-s verziója eltér a MySQL szerver %s-s " "verziójától. Ez kiszámíthatatlan viselkedést okozhat." -#: libraries/messages.inc.php:539 server_status.php:294 +#: libraries/messages.inc.php:535 server_status.php:294 msgid "Show processes" msgstr "Folyamatok megjelenítése" -#: libraries/messages.inc.php:545 navigation.php:210 server_databases.php:371 +#: libraries/messages.inc.php:541 navigation.php:210 server_databases.php:371 #: server_synchronize.php:1191 msgid "No databases" msgstr "Nincs adatbázis" -#: libraries/messages.inc.php:546 server_databases.php:52 +#: libraries/messages.inc.php:542 server_databases.php:52 msgid "No databases selected." msgstr "Nincs kiválasztott adatbázis." -#: libraries/messages.inc.php:548 libraries/relation.lib.php:1173 +#: libraries/messages.inc.php:544 libraries/relation.lib.php:1173 msgid "no description" msgstr "nincs leírás" -#: libraries/messages.inc.php:552 libraries/zip_extension.lib.php:26 +#: libraries/messages.inc.php:548 libraries/zip_extension.lib.php:26 msgid "No files found inside ZIP archive!" msgstr "Nem található fájl a ZIP archívumban!" -#: libraries/messages.inc.php:555 tbl_indexes.php:91 +#: libraries/messages.inc.php:551 tbl_indexes.php:91 msgid "No index parts defined!" msgstr "Nincs meghatározott indexrész!" -#: libraries/messages.inc.php:556 libraries/mult_submits.inc.php:435 +#: libraries/messages.inc.php:552 libraries/mult_submits.inc.php:435 #: tbl_replace.php:331 msgid "No change" msgstr "Nincs változás" -#: libraries/messages.inc.php:557 +#: libraries/messages.inc.php:553 msgctxt "$strNoneDefault" msgid "None" msgstr "Nincs" -#: libraries/messages.inc.php:560 libraries/plugin_interface.lib.php:312 +#: libraries/messages.inc.php:556 libraries/plugin_interface.lib.php:312 msgid "This format has no options" msgstr "Ennek a formátumnak nincsenek beállításai" -#: libraries/messages.inc.php:565 user_password.php:54 +#: libraries/messages.inc.php:561 user_password.php:54 msgid "You don't have sufficient privileges to be here right now!" msgstr "Önnek nincs elég joga ahhoz, hogy épp most itt tartózkodjon!" -#: libraries/messages.inc.php:566 tbl_row_action.php:29 +#: libraries/messages.inc.php:562 tbl_row_action.php:29 msgid "No rows selected" msgstr "Nem jelölte ki a sort" -#: libraries/messages.inc.php:569 themes.php:32 +#: libraries/messages.inc.php:565 themes.php:32 #, php-format msgid "" "No themes support; please check your configuration and/or your themes in " @@ -4417,299 +4417,299 @@ msgstr "" "Nincs téma támogatás, ellenőrizze a beállításokat és/vagy a témákat a(z) %s " "könyvtárban." -#: libraries/messages.inc.php:571 libraries/relation.lib.php:95 +#: libraries/messages.inc.php:567 libraries/relation.lib.php:95 msgid "not OK" msgstr "Nincs rendben" -#: libraries/messages.inc.php:572 server_synchronize.php:400 +#: libraries/messages.inc.php:568 server_synchronize.php:400 #: server_synchronize.php:839 msgid "not present" msgstr "" -#: libraries/messages.inc.php:573 pdf_pages.php:36 pdf_pages.php:42 +#: libraries/messages.inc.php:569 pdf_pages.php:36 pdf_pages.php:42 #: pdf_pages.php:48 pdf_pages.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "" "Nem található a(z) %s tábla, vagy nem adták meg a(z) %s adatbázisban" -#: libraries/messages.inc.php:574 server_privileges.php:804 +#: libraries/messages.inc.php:570 server_privileges.php:804 #: server_privileges.php:2166 msgid "No user(s) found." msgstr "Nem található(k) a felhasználó(k)." -#: libraries/messages.inc.php:578 pmd_general.php:164 +#: libraries/messages.inc.php:574 pmd_general.php:164 msgid "Number of tables" msgstr "Táblák száma" -#: libraries/messages.inc.php:581 server_databases.php:117 +#: libraries/messages.inc.php:577 server_databases.php:117 #: server_status.php:260 setup/lib/messages.inc.php:117 msgid "Tables" msgstr "Táblák" -#: libraries/messages.inc.php:583 libraries/relation.lib.php:99 +#: libraries/messages.inc.php:579 libraries/relation.lib.php:99 #: pmd_general.php:340 msgid "OK" msgstr "OK" -#: libraries/messages.inc.php:585 +#: libraries/messages.inc.php:581 msgid "Open Document Text" msgstr "Open Document szöveges dokumentum" -#: libraries/messages.inc.php:588 tbl_select.php:138 +#: libraries/messages.inc.php:584 tbl_select.php:138 msgid "Operator" msgstr "Kezelő" -#: libraries/messages.inc.php:589 tbl_operations.php:662 +#: libraries/messages.inc.php:585 tbl_operations.php:662 msgid "Optimize" msgstr "Optimalizálás" -#: libraries/messages.inc.php:602 libraries/tbl_properties.inc.php:755 +#: libraries/messages.inc.php:598 libraries/tbl_properties.inc.php:755 msgid "PARTITION definition" msgstr "PARTITION definíció" -#: libraries/messages.inc.php:603 tbl_structure.php:757 +#: libraries/messages.inc.php:599 tbl_structure.php:757 msgid "partitioned" msgstr "particionált" -#: libraries/messages.inc.php:604 tbl_operations.php:649 +#: libraries/messages.inc.php:600 tbl_operations.php:649 msgid "Partition maintenance" msgstr "Partíció karbantartása" -#: libraries/messages.inc.php:605 tbl_operations.php:657 +#: libraries/messages.inc.php:601 tbl_operations.php:657 #, php-format msgid "Partition %s" msgstr "%s partíció" -#: libraries/messages.inc.php:606 server_privileges.php:1212 +#: libraries/messages.inc.php:602 server_privileges.php:1212 #, php-format msgid "The password for %s was changed successfully." msgstr "%s jelszavának megváltoztatása sikerült." -#: libraries/messages.inc.php:635 +#: libraries/messages.inc.php:631 #, php-format msgid "Schema of the \"%s\" database - Page %s" msgstr "A(z) \"%s\" adatbázis sémája - %s. oldal" -#: libraries/messages.inc.php:636 +#: libraries/messages.inc.php:632 #, php-format msgid "The \"%s\" table doesn't exist!" msgstr "Nem létezik a(z) \"%s\" tábla!" -#: libraries/messages.inc.php:637 pdf_schema.php:1013 +#: libraries/messages.inc.php:633 pdf_schema.php:1013 msgid "No tables" msgstr "Nincs tábla" -#: libraries/messages.inc.php:638 pmd_pdf.php:63 +#: libraries/messages.inc.php:634 pmd_pdf.php:63 #, fuzzy msgid "Page has been created" msgstr "A(z) %1$s tábla elkészült." -#: libraries/messages.inc.php:639 pmd_pdf.php:65 +#: libraries/messages.inc.php:635 pmd_pdf.php:65 msgid "Page creation failed" msgstr "" -#: libraries/messages.inc.php:640 +#: libraries/messages.inc.php:636 msgid "PDF" msgstr "PDF" -#: libraries/messages.inc.php:641 +#: libraries/messages.inc.php:637 msgid "(Generates a report containing the data of a single table)" msgstr "(Egyetlen táblázat adatait tartalmazó jelentést generál)" -#: libraries/messages.inc.php:642 +#: libraries/messages.inc.php:638 msgid "Report title" msgstr "A jelentés címe" -#: libraries/messages.inc.php:643 server_status.php:389 server_status.php:434 +#: libraries/messages.inc.php:639 server_status.php:389 server_status.php:434 #: server_status.php:497 server_status.php:555 msgid "per hour" msgstr "óránként" -#: libraries/messages.inc.php:644 server_status.php:498 +#: libraries/messages.inc.php:640 server_status.php:498 msgid "per minute" msgstr "percenként" -#: libraries/messages.inc.php:645 server_status.php:499 +#: libraries/messages.inc.php:641 server_status.php:499 msgid "per second" msgstr "másodpercenként" -#: libraries/messages.inc.php:646 libraries/mysql_charsets.lib.php:271 +#: libraries/messages.inc.php:642 libraries/mysql_charsets.lib.php:271 msgid "Persian" msgstr "Perzsa" -#: libraries/messages.inc.php:647 libraries/mysql_charsets.lib.php:250 +#: libraries/messages.inc.php:643 libraries/mysql_charsets.lib.php:250 msgid "phone book" msgstr "telefonkönyv" -#: libraries/messages.inc.php:648 +#: libraries/messages.inc.php:644 msgid "PHP array" msgstr "" -#: libraries/messages.inc.php:650 main.php:213 +#: libraries/messages.inc.php:646 main.php:213 msgid "PHP extension" msgstr "PHP-kiterjesztés" -#: libraries/messages.inc.php:654 libraries/relation.lib.php:163 +#: libraries/messages.inc.php:650 libraries/relation.lib.php:163 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/messages.inc.php:655 libraries/relation.lib.php:159 +#: libraries/messages.inc.php:651 libraries/relation.lib.php:159 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/messages.inc.php:656 libraries/relation.lib.php:161 +#: libraries/messages.inc.php:652 libraries/relation.lib.php:161 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" -#: libraries/messages.inc.php:657 libraries/relation.lib.php:162 +#: libraries/messages.inc.php:653 libraries/relation.lib.php:162 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/messages.inc.php:658 libraries/relation.lib.php:164 +#: libraries/messages.inc.php:654 libraries/relation.lib.php:164 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/messages.inc.php:661 libraries/mysql_charsets.lib.php:274 +#: libraries/messages.inc.php:657 libraries/mysql_charsets.lib.php:274 msgid "Polish" msgstr "Lengyel" -#: libraries/messages.inc.php:662 libraries/replication_gui.lib.php:67 +#: libraries/messages.inc.php:658 libraries/replication_gui.lib.php:67 #: server_synchronize.php:1163 #, fuzzy msgid "Port" msgstr "Rendezés" -#: libraries/messages.inc.php:667 tbl_indexes.php:67 +#: libraries/messages.inc.php:663 tbl_indexes.php:67 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Az elsődleges kulcs nevének \"PRIMARY\"-nak kell lennie!" -#: libraries/messages.inc.php:668 tbl_indexes.php:184 +#: libraries/messages.inc.php:664 tbl_indexes.php:184 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" "(Az elsődleges kulcs nevének, és csak annak \"PRIMARY\"-nak kell lennie!)" -#: libraries/messages.inc.php:669 libraries/mult_submits.inc.php:76 +#: libraries/messages.inc.php:665 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:474 msgid "Primary" msgstr "Elsődleges" -#: libraries/messages.inc.php:673 server_privileges.php:227 +#: libraries/messages.inc.php:669 server_privileges.php:227 msgid "Includes all privileges except GRANT." msgstr "A GRANT kivételével minden jogot tartalmaz." -#: libraries/messages.inc.php:674 server_privileges.php:153 +#: libraries/messages.inc.php:670 server_privileges.php:153 #: server_privileges.php:476 msgid "Allows altering the structure of existing tables." msgstr "Engedélyezi a létező táblák szerkezetének megváltoztatását." -#: libraries/messages.inc.php:675 server_privileges.php:169 +#: libraries/messages.inc.php:671 server_privileges.php:169 #: server_privileges.php:482 msgid "Allows altering and dropping stored routines." msgstr "Engedélyezi a tárolt eljárások módosítását és eldobását." -#: libraries/messages.inc.php:676 server_privileges.php:145 +#: libraries/messages.inc.php:672 server_privileges.php:145 #: server_privileges.php:475 msgid "Allows creating new databases and tables." msgstr "Engedélyezi új adatbázisok és táblák készítését." -#: libraries/messages.inc.php:677 server_privileges.php:168 +#: libraries/messages.inc.php:673 server_privileges.php:168 #: server_privileges.php:481 msgid "Allows creating stored routines." msgstr "Engedélyezi tárolt eljárások létrehozását." -#: libraries/messages.inc.php:678 server_privileges.php:475 +#: libraries/messages.inc.php:674 server_privileges.php:475 msgid "Allows creating new tables." msgstr "Engedélyezi új táblák készítését." -#: libraries/messages.inc.php:679 server_privileges.php:156 +#: libraries/messages.inc.php:675 server_privileges.php:156 #: server_privileges.php:479 msgid "Allows creating temporary tables." msgstr "Engedélyezi ideiglenes táblák készítését." -#: libraries/messages.inc.php:680 server_privileges.php:170 +#: libraries/messages.inc.php:676 server_privileges.php:170 #: server_privileges.php:515 msgid "Allows creating, dropping and renaming user accounts." msgstr "" "Engedélyezi a felhasználói fiókok létrehozását, törlését és átnevezését." -#: libraries/messages.inc.php:681 server_privileges.php:160 +#: libraries/messages.inc.php:677 server_privileges.php:160 #: server_privileges.php:164 server_privileges.php:487 #: server_privileges.php:491 msgid "Allows creating new views." msgstr "Engedélyezi új nézetek létrehozását." -#: libraries/messages.inc.php:682 server_privileges.php:144 +#: libraries/messages.inc.php:678 server_privileges.php:144 #: server_privileges.php:467 msgid "Allows deleting data." msgstr "Engedélyezi az adatok törlését." -#: libraries/messages.inc.php:683 server_privileges.php:146 +#: libraries/messages.inc.php:679 server_privileges.php:146 #: server_privileges.php:478 msgid "Allows dropping databases and tables." msgstr "Engedélyezi az adatbázisok és táblák eldobását." -#: libraries/messages.inc.php:684 server_privileges.php:478 +#: libraries/messages.inc.php:680 server_privileges.php:478 msgid "Allows dropping tables." msgstr "Engedélyezi a táblák eldobását." -#: libraries/messages.inc.php:685 server_privileges.php:161 +#: libraries/messages.inc.php:681 server_privileges.php:161 #: server_privileges.php:495 msgid "Allows to set up events for the event scheduler" msgstr "Az eseményütemező eseményeinek beállítását teszi lehetővé" -#: libraries/messages.inc.php:686 server_privileges.php:171 +#: libraries/messages.inc.php:682 server_privileges.php:171 #: server_privileges.php:483 msgid "Allows executing stored routines." msgstr "Engedélyezi a tárolt eljárások végrehajtását." -#: libraries/messages.inc.php:687 server_privileges.php:150 +#: libraries/messages.inc.php:683 server_privileges.php:150 #: server_privileges.php:470 msgid "Allows importing data from and exporting data into files." msgstr "Engedélyezi az adatok fájlokba történő exportálását/importálását." -#: libraries/messages.inc.php:688 server_privileges.php:501 +#: libraries/messages.inc.php:684 server_privileges.php:501 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "A privilégium táblák újratöltése nélkül engedélyezi a felhasználók és jogok " "hozzáadását." -#: libraries/messages.inc.php:689 server_privileges.php:152 +#: libraries/messages.inc.php:685 server_privileges.php:152 #: server_privileges.php:477 msgid "Allows creating and dropping indexes." msgstr "Engedélyezi indexek készítését és törlését." -#: libraries/messages.inc.php:690 server_privileges.php:142 +#: libraries/messages.inc.php:686 server_privileges.php:142 #: server_privileges.php:403 server_privileges.php:465 msgid "Allows inserting and replacing data." msgstr "Engedélyezi az adatok beírását és megváltoztatását." -#: libraries/messages.inc.php:691 server_privileges.php:157 +#: libraries/messages.inc.php:687 server_privileges.php:157 #: server_privileges.php:510 msgid "Allows locking tables for the current thread." msgstr "A jelenlegi szálon engedélyezi a táblák blokkolását." -#: libraries/messages.inc.php:692 server_privileges.php:607 +#: libraries/messages.inc.php:688 server_privileges.php:607 #: server_privileges.php:609 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Korlátozza a felhasználó által óránként megnyitható új kapcsolatok számát." -#: libraries/messages.inc.php:693 server_privileges.php:595 +#: libraries/messages.inc.php:689 server_privileges.php:595 #: server_privileges.php:597 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Korlátozza a felhasználó által a kiszolgálóra óránként küldhető lekérdezések " "számát." -#: libraries/messages.inc.php:694 server_privileges.php:601 +#: libraries/messages.inc.php:690 server_privileges.php:601 #: server_privileges.php:603 msgid "" "Limits the number of commands that change any table or database the user may " @@ -4718,61 +4718,61 @@ msgstr "" "Korlátozza a felhasználó által óránként végrehajtható, bármelyik táblát vagy " "adatbázist módosító parancsok számát." -#: libraries/messages.inc.php:695 server_privileges.php:613 +#: libraries/messages.inc.php:691 server_privileges.php:613 #: server_privileges.php:615 msgid "Limits the number of simultaneous connections the user may have." msgstr "Korlátozza a felhasználó egyidejű kapcsolatainak számát." -#: libraries/messages.inc.php:696 server_privileges.php:149 +#: libraries/messages.inc.php:692 server_privileges.php:149 #: server_privileges.php:505 msgid "Allows viewing processes of all users" msgstr "Az összes felhasználó folyamatainak megtekintését engedélyezi" -#: libraries/messages.inc.php:697 server_privileges.php:151 +#: libraries/messages.inc.php:693 server_privileges.php:151 #: server_privileges.php:409 server_privileges.php:511 msgid "Has no effect in this MySQL version." msgstr "Nem valósult meg ebben a MySQL verzióban" -#: libraries/messages.inc.php:698 server_privileges.php:147 +#: libraries/messages.inc.php:694 server_privileges.php:147 #: server_privileges.php:506 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Engedélyezi a szerver beállításainak újratöltését, és a szerver " "gyorsítótárának törlését." -#: libraries/messages.inc.php:699 server_privileges.php:159 +#: libraries/messages.inc.php:695 server_privileges.php:159 #: server_privileges.php:513 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Engedélyezi a felhasználónak, hogy megkérdezze, hol találhatók a kisegítő/fő " "helyek." -#: libraries/messages.inc.php:700 server_privileges.php:158 +#: libraries/messages.inc.php:696 server_privileges.php:158 #: server_privileges.php:514 msgid "Needed for the replication slaves." msgstr "A kisegítő helyek másolásához szükséges." -#: libraries/messages.inc.php:701 server_privileges.php:141 +#: libraries/messages.inc.php:697 server_privileges.php:141 #: server_privileges.php:400 server_privileges.php:464 msgid "Allows reading data." msgstr "Engedélyezi az adatok olvasását." -#: libraries/messages.inc.php:702 server_privileges.php:154 +#: libraries/messages.inc.php:698 server_privileges.php:154 #: server_privileges.php:508 msgid "Gives access to the complete list of databases." msgstr "Hozzáférést ad az adatbázisok teljes listájához." -#: libraries/messages.inc.php:703 server_privileges.php:165 +#: libraries/messages.inc.php:699 server_privileges.php:165 #: server_privileges.php:167 server_privileges.php:480 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Engedélyezi SHOW CREATE VIEW lekérdezések végrehajtását." -#: libraries/messages.inc.php:704 server_privileges.php:148 +#: libraries/messages.inc.php:700 server_privileges.php:148 #: server_privileges.php:507 msgid "Allows shutting down the server." msgstr "Engedélyezi a szerver leállítását." -#: libraries/messages.inc.php:705 server_privileges.php:155 +#: libraries/messages.inc.php:701 server_privileges.php:155 #: server_privileges.php:504 msgid "" "Allows connecting, even if maximum number of connections is reached; " @@ -4784,55 +4784,55 @@ msgstr "" "globális változók beállítása, vagy más felhasználók folyamatainak " "megszüntetése." -#: libraries/messages.inc.php:706 server_privileges.php:162 +#: libraries/messages.inc.php:702 server_privileges.php:162 #: server_privileges.php:496 msgid "Allows creating and dropping triggers" msgstr "Eseményindítók létrehozásának és eldobásának engedélyezése" -#: libraries/messages.inc.php:707 server_privileges.php:143 +#: libraries/messages.inc.php:703 server_privileges.php:143 #: server_privileges.php:406 server_privileges.php:466 msgid "Allows changing data." msgstr "Engedélyezi az adatok megváltoztatását." -#: libraries/messages.inc.php:708 server_privileges.php:221 +#: libraries/messages.inc.php:704 server_privileges.php:221 msgid "No privileges." msgstr "Nincsenek jogok." -#: libraries/messages.inc.php:710 server_privileges.php:1296 +#: libraries/messages.inc.php:706 server_privileges.php:1296 msgid "The privileges were reloaded successfully." msgstr "A jogok újratöltése sikerült." -#: libraries/messages.inc.php:712 libraries/server_links.inc.php:80 +#: libraries/messages.inc.php:708 libraries/server_links.inc.php:80 msgid "Processes" msgstr "Folyamatok" -#: libraries/messages.inc.php:714 main.php:187 +#: libraries/messages.inc.php:710 main.php:187 msgid "Protocol version" msgstr "Protokoll verzió" -#: libraries/messages.inc.php:715 +#: libraries/messages.inc.php:711 msgid "Put fields names in the first row" msgstr "A mezőneveket az első sorba teszi" -#: libraries/messages.inc.php:720 server_synchronize.php:1003 +#: libraries/messages.inc.php:716 server_synchronize.php:1003 msgid "The following queries have been executed:" msgstr "" -#: libraries/messages.inc.php:721 server_status.php:251 +#: libraries/messages.inc.php:717 server_status.php:251 msgid "Query cache" msgstr "Lekérdezési gyorsítótár" -#: libraries/messages.inc.php:722 libraries/navigation_header.inc.php:80 +#: libraries/messages.inc.php:718 libraries/navigation_header.inc.php:80 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 setup/lib/messages.inc.php:122 msgid "Query window" msgstr "Lekérdezés ablak" -#: libraries/messages.inc.php:725 querywindow.php:109 querywindow.php:217 +#: libraries/messages.inc.php:721 querywindow.php:109 querywindow.php:217 msgid "SQL history" msgstr "SQL-előzmények" -#: libraries/messages.inc.php:726 server_status.php:490 +#: libraries/messages.inc.php:722 server_status.php:490 #, php-format msgid "" "Query statistics: Since its startup, %s queries have been sent to the " @@ -4841,139 +4841,139 @@ msgstr "" "Lekérdezési statisztika: Az indulás óta %s kérés került elküldésre a " "szerverhez." -#: libraries/messages.inc.php:728 server_status.php:554 +#: libraries/messages.inc.php:724 server_status.php:554 msgid "Query type" msgstr "Lekérdezés típusa" -#: libraries/messages.inc.php:729 libraries/sql_query_form.lib.php:381 +#: libraries/messages.inc.php:725 libraries/sql_query_form.lib.php:381 msgid "Do not overwrite this query from outside the window" msgstr "Nem írja felül ezt a lekérdezést az ablakon kívülről" -#: libraries/messages.inc.php:732 tbl_operations.php:663 +#: libraries/messages.inc.php:728 tbl_operations.php:663 msgid "Rebuild" msgstr "Újraépítés" -#: libraries/messages.inc.php:733 server_status.php:394 +#: libraries/messages.inc.php:729 server_status.php:394 msgid "Received" msgstr "Fogadott" -#: libraries/messages.inc.php:734 pmd_pdf.php:89 +#: libraries/messages.inc.php:730 pmd_pdf.php:89 msgid "recommended" msgstr "ajánlott" -#: libraries/messages.inc.php:736 tbl_operations.php:702 +#: libraries/messages.inc.php:732 tbl_operations.php:702 msgid "Check referential integrity:" msgstr "Hivatkozási sértetlenség ellenőrzése:" -#: libraries/messages.inc.php:740 pdf_schema.php:1032 pdf_schema.php:1141 +#: libraries/messages.inc.php:736 pdf_schema.php:1032 pdf_schema.php:1141 msgid "Relational schema" msgstr "Kapcsolati séma" -#: libraries/messages.inc.php:744 tbl_relation.php:399 +#: libraries/messages.inc.php:740 tbl_relation.php:399 msgid "Relations" msgstr "Kapcsolatok" -#: libraries/messages.inc.php:745 tbl_structure.php:507 tbl_structure.php:509 +#: libraries/messages.inc.php:741 tbl_structure.php:507 tbl_structure.php:509 msgid "Relation view" msgstr "Kapcsolat nézete" -#: libraries/messages.inc.php:746 server_privileges.php:1246 +#: libraries/messages.inc.php:742 server_privileges.php:1246 msgid "Reloading the privileges" msgstr "A jogok újratöltése" -#: libraries/messages.inc.php:747 navigation.php:66 navigation.php:67 +#: libraries/messages.inc.php:743 navigation.php:66 navigation.php:67 #: navigation.php:70 #, fuzzy msgid "Reload navigation frame" msgstr "A navigációs keret testreszabása" -#: libraries/messages.inc.php:748 pmd_general.php:80 +#: libraries/messages.inc.php:744 pmd_general.php:80 msgid "Reload" msgstr "Újratöltés" -#: libraries/messages.inc.php:749 libraries/server_synchronize.lib.php:1345 +#: libraries/messages.inc.php:745 libraries/server_synchronize.lib.php:1345 #: libraries/server_synchronize.lib.php:1371 #, fuzzy msgid "Remote server" msgstr "Új szerver" -#: libraries/messages.inc.php:750 +#: libraries/messages.inc.php:746 msgid "Remove CRLF characters within fields" msgstr "A mezőkben lévő CRLF karakterek eltávolítása" -#: libraries/messages.inc.php:751 tbl_operations.php:676 +#: libraries/messages.inc.php:747 tbl_operations.php:676 msgid "Remove partitioning" msgstr "Particionálás eltávolítása" -#: libraries/messages.inc.php:752 server_privileges.php:1575 +#: libraries/messages.inc.php:748 server_privileges.php:1575 msgid "Remove selected users" msgstr "A kijelölt felhasználók törlése" -#: libraries/messages.inc.php:755 tbl_operations.php:338 +#: libraries/messages.inc.php:751 tbl_operations.php:338 msgid "Rename table to" msgstr "Tábla átnevezése" -#: libraries/messages.inc.php:756 view_operations.php:93 +#: libraries/messages.inc.php:752 view_operations.php:93 #, fuzzy msgid "Rename view to" msgstr "Tábla átnevezése" -#: libraries/messages.inc.php:757 tbl_operations.php:664 +#: libraries/messages.inc.php:753 tbl_operations.php:664 msgid "Repair" msgstr "Javítás" -#: libraries/messages.inc.php:759 +#: libraries/messages.inc.php:755 msgid "Replace NULL by" msgstr "NULL cseréje ezzel:" -#: libraries/messages.inc.php:760 +#: libraries/messages.inc.php:756 msgid "Replace table data with file" msgstr "A táblaadatok lecserélése fájlra" -#: libraries/messages.inc.php:761 server_replication.php:228 +#: libraries/messages.inc.php:757 server_replication.php:228 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: libraries/messages.inc.php:762 libraries/replication_gui.lib.php:236 +#: libraries/messages.inc.php:758 libraries/replication_gui.lib.php:236 #: server_replication.php:194 msgid "Add slave replication user" msgstr "" -#: libraries/messages.inc.php:763 server_replication.php:74 +#: libraries/messages.inc.php:759 server_replication.php:74 #, php-format msgid "Master server changed succesfully to %s" msgstr "" -#: libraries/messages.inc.php:764 server_replication.php:182 +#: libraries/messages.inc.php:760 server_replication.php:182 msgid "This server is configured as master in a replication process." msgstr "" -#: libraries/messages.inc.php:765 server_replication.php:322 +#: libraries/messages.inc.php:761 server_replication.php:322 #, fuzzy msgid "Control slave:" msgstr "Kontrollfelhasználó" -#: libraries/messages.inc.php:766 server_replication.php:65 +#: libraries/messages.inc.php:762 server_replication.php:65 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: libraries/messages.inc.php:767 server_replication.php:58 +#: libraries/messages.inc.php:763 server_replication.php:58 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: libraries/messages.inc.php:768 server_replication.php:221 +#: libraries/messages.inc.php:764 server_replication.php:221 msgid "Replicate all databases; Ignore:" msgstr "" -#: libraries/messages.inc.php:769 server_replication.php:222 +#: libraries/messages.inc.php:765 server_replication.php:222 msgid "Ignore all databases; Replicate:" msgstr "" -#: libraries/messages.inc.php:770 server_replication.php:218 +#: libraries/messages.inc.php:766 server_replication.php:218 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -4982,124 +4982,124 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: libraries/messages.inc.php:771 server_replication.php:217 +#: libraries/messages.inc.php:767 server_replication.php:217 #, fuzzy msgid "Master configuration" msgstr "Szerverbeállítások" -#: libraries/messages.inc.php:772 server_replication.php:181 +#: libraries/messages.inc.php:768 server_replication.php:181 #: server_replication.php:209 msgid "Master replication" msgstr "" -#: libraries/messages.inc.php:774 server_replication.php:230 +#: libraries/messages.inc.php:770 server_replication.php:230 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: libraries/messages.inc.php:775 server_replication.php:225 +#: libraries/messages.inc.php:771 server_replication.php:225 #, fuzzy msgid "Please select databases:" msgstr "Válasszon adatbázist" -#: libraries/messages.inc.php:776 server_replication.php:210 +#: libraries/messages.inc.php:772 server_replication.php:210 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:188 +#: libraries/messages.inc.php:773 libraries/replication_gui.lib.php:188 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/messages.inc.php:778 server_replication.php:187 +#: libraries/messages.inc.php:774 server_replication.php:187 msgid "Show connected slaves" msgstr "" -#: libraries/messages.inc.php:779 libraries/messages.inc.php:885 +#: libraries/messages.inc.php:775 libraries/messages.inc.php:881 #: server_replication.php:184 server_status.php:281 #, fuzzy msgid "Show master status" msgstr "Kisegítő állapot megjelenítése" -#: libraries/messages.inc.php:780 server_replication.php:334 +#: libraries/messages.inc.php:776 server_replication.php:334 msgid "Skipping error(s) might lead into unsynchronized master and slave!" msgstr "" -#: libraries/messages.inc.php:781 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:51 #: server_replication.php:347 msgid "Change or reconfigure master server" msgstr "" -#: libraries/messages.inc.php:782 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:778 libraries/replication_gui.lib.php:51 #, fuzzy msgid "Slave configuration" msgstr "Szerverbeállítások" -#: libraries/messages.inc.php:783 server_replication.php:305 +#: libraries/messages.inc.php:779 server_replication.php:305 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: libraries/messages.inc.php:784 server_replication.php:332 +#: libraries/messages.inc.php:780 server_replication.php:332 msgid "Error management:" msgstr "" -#: libraries/messages.inc.php:785 server_replication.php:328 +#: libraries/messages.inc.php:781 server_replication.php:328 #, php-format msgid "IO Thread %s only" msgstr "" -#: libraries/messages.inc.php:786 server_replication.php:296 +#: libraries/messages.inc.php:782 server_replication.php:296 msgid "Slave IO Thread not running!" msgstr "" -#: libraries/messages.inc.php:787 server_replication.php:355 +#: libraries/messages.inc.php:783 server_replication.php:355 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/messages.inc.php:788 server_replication.php:326 +#: libraries/messages.inc.php:784 server_replication.php:326 msgid "Reset slave" msgstr "" -#: libraries/messages.inc.php:789 server_replication.php:308 +#: libraries/messages.inc.php:785 server_replication.php:308 msgid "See slave status table" msgstr "" -#: libraries/messages.inc.php:790 server_replication.php:336 +#: libraries/messages.inc.php:786 server_replication.php:336 msgid "Skip current error" msgstr "" -#: libraries/messages.inc.php:791 server_replication.php:340 +#: libraries/messages.inc.php:787 server_replication.php:340 msgid "errors." msgstr "" -#: libraries/messages.inc.php:792 server_replication.php:337 +#: libraries/messages.inc.php:788 server_replication.php:337 msgid "Skip next" msgstr "" -#: libraries/messages.inc.php:793 server_replication.php:248 +#: libraries/messages.inc.php:789 server_replication.php:248 msgid "Slave replication" msgstr "" -#: libraries/messages.inc.php:794 server_replication.php:293 +#: libraries/messages.inc.php:790 server_replication.php:293 msgid "Slave SQL Thread not running!" msgstr "" -#: libraries/messages.inc.php:795 server_replication.php:327 +#: libraries/messages.inc.php:791 server_replication.php:327 #, php-format msgid "SQL Thread %s only" msgstr "" -#: libraries/messages.inc.php:796 +#: libraries/messages.inc.php:792 #, php-format msgid "" "This MySQL server works as %s in replication process. For further " @@ -5110,159 +5110,159 @@ msgstr "" "szerveren lévő többszörözéses állapotról a többszörözés részben kaphat bővebb információt." -#: libraries/messages.inc.php:797 +#: libraries/messages.inc.php:793 msgid "Master status" msgstr "Mester állapot" -#: libraries/messages.inc.php:798 server_status.php:721 +#: libraries/messages.inc.php:794 server_status.php:721 msgid "Replication status" msgstr "Többszörözéses állapot" -#: libraries/messages.inc.php:799 +#: libraries/messages.inc.php:795 msgid "Slave status" msgstr "Másodlagos állapot" -#: libraries/messages.inc.php:800 server_replication.php:311 +#: libraries/messages.inc.php:796 server_replication.php:311 msgid "Synchronize databases with master" msgstr "" -#: libraries/messages.inc.php:801 server_replication.php:71 +#: libraries/messages.inc.php:797 server_replication.php:71 msgid "Unable to change master" msgstr "" -#: libraries/messages.inc.php:802 server_replication.php:51 +#: libraries/messages.inc.php:798 server_replication.php:51 msgid "Unknown error" msgstr "" -#: libraries/messages.inc.php:803 main.php:163 pdf_pages.php:344 +#: libraries/messages.inc.php:799 main.php:163 pdf_pages.php:344 #: setup/lib/FormDisplay.tpl.php:216 tbl_change.php:1175 msgid "Reset" msgstr "Törlés" -#: libraries/messages.inc.php:804 server_privileges.php:591 +#: libraries/messages.inc.php:800 server_privileges.php:591 msgid "Resource limits" msgstr "Erőforrás-korlátozások" -#: libraries/messages.inc.php:805 tbl_change.php:1209 +#: libraries/messages.inc.php:801 tbl_change.php:1209 #, php-format msgid "Restart insertion with %s rows" msgstr "Beszúrás újrakezdése %s sorral" -#: libraries/messages.inc.php:807 server_privileges.php:1578 +#: libraries/messages.inc.php:803 server_privileges.php:1578 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "A felhasználók összes jogának visszavonása, majd törlése." -#: libraries/messages.inc.php:808 server_privileges.php:1176 +#: libraries/messages.inc.php:804 server_privileges.php:1176 #, php-format msgid "You have revoked the privileges for %s" msgstr "%s jogainak visszavonása megtörtént" -#: libraries/messages.inc.php:809 server_privileges.php:1333 +#: libraries/messages.inc.php:805 server_privileges.php:1333 msgid "Revoke" msgstr "Visszavonás" -#: libraries/messages.inc.php:810 libraries/mysql_charsets.lib.php:280 +#: libraries/messages.inc.php:806 libraries/mysql_charsets.lib.php:280 msgid "Romanian" msgstr "Román" -#: libraries/messages.inc.php:813 tbl_printview.php:404 tbl_structure.php:786 +#: libraries/messages.inc.php:809 tbl_printview.php:404 tbl_structure.php:786 msgid "Row length" msgstr "Sor hossza" -#: libraries/messages.inc.php:815 tbl_printview.php:414 tbl_structure.php:794 +#: libraries/messages.inc.php:811 tbl_printview.php:414 tbl_structure.php:794 msgid " Row size " msgstr " Sor mérete " -#: libraries/messages.inc.php:821 tbl_printview.php:366 tbl_structure.php:726 +#: libraries/messages.inc.php:817 tbl_printview.php:366 tbl_structure.php:726 msgid "Row Statistics" msgstr "Sorstatisztika" -#: libraries/messages.inc.php:822 +#: libraries/messages.inc.php:818 #, php-format msgid "running on %s" msgstr ": %s" -#: libraries/messages.inc.php:824 libraries/sql_query_form.lib.php:223 +#: libraries/messages.inc.php:820 libraries/sql_query_form.lib.php:223 #, php-format msgid "Run SQL query/queries on server %s" msgstr "A(z) %s szerveren lefuttatandó SQL lekérdezés(ek)" -#: libraries/messages.inc.php:825 libraries/sql_query_form.lib.php:240 +#: libraries/messages.inc.php:821 libraries/sql_query_form.lib.php:240 #: libraries/sql_query_form.lib.php:265 #, php-format msgid "Run SQL query/queries on database %s" msgstr "SQL lekérdezés(ek) futtatása a(z) %s adatbázison" -#: libraries/messages.inc.php:826 libraries/mysql_charsets.lib.php:337 +#: libraries/messages.inc.php:822 libraries/mysql_charsets.lib.php:337 msgid "Russian" msgstr "Orosz" -#: libraries/messages.inc.php:829 pmd_general.php:68 +#: libraries/messages.inc.php:825 pmd_general.php:68 msgid "Save position" msgstr "Pozíció mentése" -#: libraries/messages.inc.php:830 libraries/tbl_properties.inc.php:776 +#: libraries/messages.inc.php:826 libraries/tbl_properties.inc.php:776 #: pdf_pages.php:484 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:214 setup/lib/FormDisplay.tpl.php:215 #: tbl_change.php:1126 tbl_indexes.php:248 tbl_relation.php:566 msgid "Save" msgstr "Mentés" -#: libraries/messages.inc.php:831 +#: libraries/messages.inc.php:827 msgid "The scale factor is too small to fit the schema on one page" msgstr "A mérettényező túl kicsi, hogy a séma ráférjen egy oldalra" -#: libraries/messages.inc.php:843 main.php:298 +#: libraries/messages.inc.php:839 main.php:298 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "A konfigurációs fájlnak egy titkos hozzáférési kódra (blowfish_secret) van " "szüksége." -#: libraries/messages.inc.php:844 navigation.php:353 navigation.php:516 +#: libraries/messages.inc.php:840 navigation.php:353 navigation.php:516 msgid "Please select a database" msgstr "Válasszon adatbázist" -#: libraries/messages.inc.php:846 server_binlog.php:120 +#: libraries/messages.inc.php:842 server_binlog.php:120 msgid "Select binary log to view" msgstr "Válassza ki a megtekintendő bináris naplót" -#: libraries/messages.inc.php:847 tbl_select.php:270 +#: libraries/messages.inc.php:843 tbl_select.php:270 msgid "Select fields (at least one):" msgstr "Válasszon mezőket (legalább egyet):" -#: libraries/messages.inc.php:851 pdf_pages.php:320 +#: libraries/messages.inc.php:847 pdf_pages.php:320 msgid "Select Tables" msgstr "Táblák kiválasztása" -#: libraries/messages.inc.php:853 server_status.php:404 +#: libraries/messages.inc.php:849 server_status.php:404 msgid "Sent" msgstr "Küldött" -#: libraries/messages.inc.php:857 libraries/select_server.lib.php:45 +#: libraries/messages.inc.php:853 libraries/select_server.lib.php:45 #: setup/frames/index.inc.php:97 setup/lib/messages.inc.php:115 msgid "Servers" msgstr "Szerverek" -#: libraries/messages.inc.php:858 server_status.php:255 +#: libraries/messages.inc.php:854 server_status.php:255 msgid "Delayed inserts" msgstr "Késleltetett beszúrások" -#: libraries/messages.inc.php:859 server_status.php:46 +#: libraries/messages.inc.php:855 server_status.php:46 msgid "Runtime Information" msgstr "Futtatási információk" -#: libraries/messages.inc.php:860 server_status.php:350 +#: libraries/messages.inc.php:856 server_status.php:350 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Ez a MySQL szerver %s óta fut. Indítás időpontja: %s." -#: libraries/messages.inc.php:861 libraries/server_links.inc.php:53 +#: libraries/messages.inc.php:857 libraries/server_links.inc.php:53 #: server_engines.php:112 server_engines.php:116 server_status.php:304 #: test/theme.php:105 msgid "Variables" msgstr "Változók" -#: libraries/messages.inc.php:862 server_status.php:383 +#: libraries/messages.inc.php:858 server_status.php:383 msgid "" "Server traffic: These tables show the network traffic statistics of " "this MySQL server since its startup." @@ -5270,11 +5270,11 @@ msgstr "" "Szerver forgalma: Ezek a táblázatok a MySQL szerver hálózati " "forgalmának statisztikájáit mutatják az indítástól kezdve." -#: libraries/messages.inc.php:863 server_variables.php:35 +#: libraries/messages.inc.php:859 server_variables.php:35 msgid "Server variables and settings" msgstr "Szerver változók és beállítások" -#: libraries/messages.inc.php:865 main.php:290 +#: libraries/messages.inc.php:861 main.php:290 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -5286,7 +5286,7 @@ msgstr "" "phpMyAdminban beállított cookie érvényességénél, Emiatt a bejelentkezése a " "phpMyAdminban beállítottnál előbb fog lejárni." -#: libraries/messages.inc.php:866 +#: libraries/messages.inc.php:862 msgid "" "Cannot start session without errors, please check errors given in your PHP " "and/or webserver log file and configure your PHP installation properly." @@ -5295,11 +5295,11 @@ msgstr "" "webszerver naplófájljába bejegyzett hibákat, és konfigurálja megfelelően a " "PHP telepítését." -#: libraries/messages.inc.php:867 server_variables.php:55 +#: libraries/messages.inc.php:863 server_variables.php:55 msgid "Session value" msgstr "Munkamenet értéke" -#: libraries/messages.inc.php:868 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:864 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 " @@ -5311,45 +5311,45 @@ msgstr "" "(\"'\") akar ezekben az értékekben használni, akkor fordított perjellel " "kezdje (pl.: '\\\\xyz' vagy 'a\\'b')." -#: libraries/messages.inc.php:876 server_binlog.php:192 server_binlog.php:195 +#: libraries/messages.inc.php:872 server_binlog.php:192 server_binlog.php:195 #: server_processlist.php:49 server_processlist.php:51 msgid "Show Full Queries" msgstr "Teljes lekérdezések megjelenítése" -#: libraries/messages.inc.php:878 pmd_general.php:64 +#: libraries/messages.inc.php:874 pmd_general.php:64 msgid "Show/Hide left menu" msgstr "Bal oldali menü megjelenítése/elrejtése" -#: libraries/messages.inc.php:880 sql.php:513 +#: libraries/messages.inc.php:876 sql.php:513 msgid "Showing as PHP code" msgstr "Megjelenítés PHP kódként" -#: libraries/messages.inc.php:882 sql.php:516 tbl_replace.php:360 +#: libraries/messages.inc.php:878 sql.php:516 tbl_replace.php:360 msgid "Showing SQL query" msgstr "Megjelenítés SQL lekérdezésként" -#: libraries/messages.inc.php:883 tbl_change.php:1132 +#: libraries/messages.inc.php:879 tbl_change.php:1132 #, fuzzy msgid "Show insert query" msgstr "Megjelenítés SQL lekérdezésként" -#: libraries/messages.inc.php:886 server_status.php:273 +#: libraries/messages.inc.php:882 server_status.php:273 msgid "Show open tables" msgstr "Nyitott táblák megjelenítése" -#: libraries/messages.inc.php:887 main.php:219 +#: libraries/messages.inc.php:883 main.php:219 msgid "Show PHP information" msgstr "PHP információ megjelenítése" -#: libraries/messages.inc.php:889 server_status.php:278 +#: libraries/messages.inc.php:885 server_status.php:278 msgid "Show slave hosts" msgstr "Kisegítő állomások megjelenítése" -#: libraries/messages.inc.php:890 server_status.php:284 +#: libraries/messages.inc.php:886 server_status.php:284 msgid "Show slave status" msgstr "Kisegítő állapot megjelenítése" -#: libraries/messages.inc.php:891 +#: libraries/messages.inc.php:887 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -5359,12 +5359,12 @@ msgstr "" "használt, azonban az túllépte a binlog_cache_size méretet, és ideiglenes " "fájlt használt az utasítások tárolásához a tranzakcióból." -#: libraries/messages.inc.php:892 +#: libraries/messages.inc.php:888 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Az ideiglenes bináris naplógyorsítótár által használt tranzakciók száma." -#: libraries/messages.inc.php:893 +#: libraries/messages.inc.php:889 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -5376,11 +5376,11 @@ msgstr "" "nagy, akkor növelheti a tmp_table_size értékét, mely az ideiglenes táblákból " "memóriaalapúakat csinál a lemezalapú helyett." -#: libraries/messages.inc.php:894 +#: libraries/messages.inc.php:890 msgid "How many temporary files mysqld has created." msgstr "Ennyi ideiglenes fájlt hozott létre a mysqld." -#: libraries/messages.inc.php:895 +#: libraries/messages.inc.php:891 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -5388,7 +5388,7 @@ msgstr "" "A szerver által az utasítások végrehajtásakor automatikusan létrehozott, a " "memóriában tárolt ideiglenes táblák száma." -#: libraries/messages.inc.php:896 +#: libraries/messages.inc.php:892 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -5396,7 +5396,7 @@ msgstr "" "Az INSERT DELAYED utasítással írt sorok száma, melyeknél néhány hiba történt " "(valószínűleg ismétlődő kulcs)." -#: libraries/messages.inc.php:897 +#: libraries/messages.inc.php:893 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -5404,23 +5404,23 @@ msgstr "" "A használatban lévő INSERT DELAYED kezelőszálak száma. Minden eltérő " "táblának, melyen valaki INSERT DELAYED parancsot használ, saját szála lesz." -#: libraries/messages.inc.php:898 +#: libraries/messages.inc.php:894 msgid "The number of INSERT DELAYED rows written." msgstr "A beírt INSERT DELAYED sorok száma." -#: libraries/messages.inc.php:899 +#: libraries/messages.inc.php:895 msgid "The number of executed FLUSH statements." msgstr "A végrehajtott FLUSH utasítások száma." -#: libraries/messages.inc.php:900 +#: libraries/messages.inc.php:896 msgid "The number of internal COMMIT statements." msgstr "A belső COMMIT utasítások száma." -#: libraries/messages.inc.php:901 +#: libraries/messages.inc.php:897 msgid "The number of times a row was deleted from a table." msgstr "Egy sornak a táblázatból történő törléseinek a száma." -#: libraries/messages.inc.php:902 +#: libraries/messages.inc.php:898 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -5430,7 +5430,7 @@ msgstr "" "megadott nevű táblát. Ezt hívják felfedezésnek. A handler_discover jelzi a " "táblák felfedezésének számát." -#: libraries/messages.inc.php:903 +#: libraries/messages.inc.php:899 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -5441,7 +5441,7 @@ msgstr "" "például a SELECT col1 FROM foo azt feltételezi, hogy a col1 kerül " "indexelésre." -#: libraries/messages.inc.php:904 +#: libraries/messages.inc.php:900 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -5449,7 +5449,7 @@ msgstr "" "Egy sor kulcs alapján történő beolvasási kéréseinek száma. Ha ez magas, " "akkor jól mutatja, hogy a lekérdezések és a táblák megfelelően indexeltek." -#: libraries/messages.inc.php:905 +#: libraries/messages.inc.php:901 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -5459,7 +5459,7 @@ msgstr "" "ha Ön tartománymegkötéses index oszlopot kérdez le, vagy ha indexvizsgálatot " "végez." -#: libraries/messages.inc.php:906 +#: libraries/messages.inc.php:902 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -5467,7 +5467,7 @@ msgstr "" "A kulcssorrendben előző sort beolvasandó kérések száma. Ezt a beolvasási " "módszert főleg az ORDER BY ... DESC optimalizálásához használják." -#: libraries/messages.inc.php:907 +#: libraries/messages.inc.php:903 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -5479,7 +5479,7 @@ msgstr "" "Valószínűleg sok olyan lekérdezés van, s a MySQL-nek teljes táblákat kell " "megvizsgálnia, vagy a kulcsokat nem megfelelően használó illesztések vannak." -#: libraries/messages.inc.php:908 +#: libraries/messages.inc.php:904 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -5491,35 +5491,35 @@ msgstr "" "hogy a táblák nem megfelelően indexeltek, vagy a lekérdezések nincsenek írva " "az indexek kihasználása végett." -#: libraries/messages.inc.php:909 +#: libraries/messages.inc.php:905 msgid "The number of internal ROLLBACK statements." msgstr "A belső ROLLBACK utasítások száma." -#: libraries/messages.inc.php:910 +#: libraries/messages.inc.php:906 msgid "The number of requests to update a row in a table." msgstr "A kérések száma egy táblában lévő sor frissítéséhez." -#: libraries/messages.inc.php:911 +#: libraries/messages.inc.php:907 msgid "The number of requests to insert a row in a table." msgstr "A kérések száma egy táblában lévő sor beszúrásához." -#: libraries/messages.inc.php:912 +#: libraries/messages.inc.php:908 msgid "The number of pages containing data (dirty or clean)." msgstr "Az adatokat tartalmazó lapok száma (piszkos vagy tiszta)." -#: libraries/messages.inc.php:913 +#: libraries/messages.inc.php:909 msgid "The number of pages currently dirty." msgstr "A jelenleg piszkos lapok száma." -#: libraries/messages.inc.php:914 +#: libraries/messages.inc.php:910 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "A pufferkészlet oldalainak száma, melyeket kiírásra kértek." -#: libraries/messages.inc.php:915 +#: libraries/messages.inc.php:911 msgid "The number of free pages." msgstr "A szabad lapok száma." -#: libraries/messages.inc.php:916 +#: libraries/messages.inc.php:912 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -5529,7 +5529,7 @@ msgstr "" "írás alatt lévő oldalak, melyeket bizonyos más okok miatt nem lehet kiírni " "vagy eltávolítani." -#: libraries/messages.inc.php:917 +#: libraries/messages.inc.php:913 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -5542,11 +5542,11 @@ msgstr "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data értékként is " "számolható." -#: libraries/messages.inc.php:918 +#: libraries/messages.inc.php:914 msgid "Total size of buffer pool, in pages." msgstr "A pufferkészlet teljes mérete lapokban." -#: libraries/messages.inc.php:919 +#: libraries/messages.inc.php:915 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -5555,7 +5555,7 @@ msgstr "" "akkor történik, ha egy lekérdezés meg akarja vizsgálni egy tábla nagy " "részét, viszont véletlenszerű sorrendben." -#: libraries/messages.inc.php:920 +#: libraries/messages.inc.php:916 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -5563,11 +5563,11 @@ msgstr "" "Az InnoDB által kezdeményezett sorozatos előreolvasások száma. Ez akkor " "történik, mikor az InnoDB sorozatos teljes táblavizsgálatot tart." -#: libraries/messages.inc.php:921 +#: libraries/messages.inc.php:917 msgid "The number of logical read requests InnoDB has done." msgstr "Az InnoDB által elvégzett logikai olvasási kérések száma." -#: libraries/messages.inc.php:922 +#: libraries/messages.inc.php:918 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -5575,7 +5575,7 @@ msgstr "" "A logikai olvasások száma, melyeket az InnoDB nem tudott a pufferkészletből " "kielégíteni, s egyoldalas beolvasást végzett." -#: libraries/messages.inc.php:923 +#: libraries/messages.inc.php:919 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -5590,53 +5590,53 @@ msgstr "" "méretét megfelelően állították be, akkor ennek az értéknek kicsinek kell " "lennie." -#: libraries/messages.inc.php:924 +#: libraries/messages.inc.php:920 msgid "The number writes done to the InnoDB buffer pool." msgstr "Az InnoDB pufferkészletébe történt írások száma." -#: libraries/messages.inc.php:925 +#: libraries/messages.inc.php:921 msgid "The number of fsync() operations so far." msgstr "Az fsync() műveletek eddigi száma." -#: libraries/messages.inc.php:926 +#: libraries/messages.inc.php:922 msgid "The current number of pending fsync() operations." msgstr "A folyamatban lévő fsync() műveletek száma." -#: libraries/messages.inc.php:927 +#: libraries/messages.inc.php:923 msgid "The current number of pending reads." msgstr "A folyamatban lévő olvasások száma." -#: libraries/messages.inc.php:928 +#: libraries/messages.inc.php:924 msgid "The current number of pending writes." msgstr "A folyamatban lévő írások száma." -#: libraries/messages.inc.php:929 +#: libraries/messages.inc.php:925 msgid "The amount of data read so far, in bytes." msgstr "Az eddig beolvasott adatok mennyisége bájtban." -#: libraries/messages.inc.php:930 +#: libraries/messages.inc.php:926 msgid "The total number of data reads." msgstr "Az összes beolvasott adat." -#: libraries/messages.inc.php:931 +#: libraries/messages.inc.php:927 msgid "The total number of data writes." msgstr "Az összes írott adat." -#: libraries/messages.inc.php:932 +#: libraries/messages.inc.php:928 msgid "The amount of data written so far, in bytes." msgstr "Az összes írott adat, bájtban." -#: libraries/messages.inc.php:933 +#: libraries/messages.inc.php:929 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "A végrehajtott duplaírásos írások száma, s az e célból kiírt oldalak száma." -#: libraries/messages.inc.php:934 +#: libraries/messages.inc.php:930 msgid "The number of doublewrite operations that have been performed." msgstr "" "A végrehajtott duplaírásos írások száma, s az e célból kiírt oldalak száma." -#: libraries/messages.inc.php:935 +#: libraries/messages.inc.php:931 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -5644,35 +5644,35 @@ msgstr "" "Várakozások száma, amiket a naplópuffer kis mérete okozott és folytatás " "előtt meg kellett várni a kiírást." -#: libraries/messages.inc.php:936 +#: libraries/messages.inc.php:932 msgid "The number of log write requests." msgstr "A naplóírási kérések száma." -#: libraries/messages.inc.php:937 +#: libraries/messages.inc.php:933 msgid "The number of physical writes to the log file." msgstr "A naplófájlba történt fizikai írások száma." -#: libraries/messages.inc.php:938 +#: libraries/messages.inc.php:934 msgid "The number of fsync() writes done to the log file." msgstr "A naplófájlba történt fsyncs írások száma." -#: libraries/messages.inc.php:939 +#: libraries/messages.inc.php:935 msgid "The number of pending log file fsyncs." msgstr "A folyamatban lévő naplófájl fsync-ek száma." -#: libraries/messages.inc.php:940 +#: libraries/messages.inc.php:936 msgid "Pending log file writes." msgstr "A folyamatban lévő naplófájl írások száma." -#: libraries/messages.inc.php:941 +#: libraries/messages.inc.php:937 msgid "The number of bytes written to the log file." msgstr "A naplófájlba írt bájtok száma." -#: libraries/messages.inc.php:942 +#: libraries/messages.inc.php:938 msgid "The number of pages created." msgstr "A létrehozott lapok száma." -#: libraries/messages.inc.php:943 +#: libraries/messages.inc.php:939 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -5681,51 +5681,51 @@ msgstr "" "került számolásra az oldalakban; az oldal mérete teszi lehetővé a bájtokká " "történő könnyű átalakítást." -#: libraries/messages.inc.php:944 +#: libraries/messages.inc.php:940 msgid "The number of pages read." msgstr "A beolvasott lapok száma." -#: libraries/messages.inc.php:945 +#: libraries/messages.inc.php:941 msgid "The number of pages written." msgstr "Az írott lapok száma." -#: libraries/messages.inc.php:946 +#: libraries/messages.inc.php:942 msgid "The number of row locks currently being waited for." msgstr "A jelenleg várakozás alatt lévő sorzárolások száma." -#: libraries/messages.inc.php:947 +#: libraries/messages.inc.php:943 msgid "The average time to acquire a row lock, in milliseconds." msgstr "A sorzároláshoz szükséges átlag időtartam, milliszekundumban." -#: libraries/messages.inc.php:948 +#: libraries/messages.inc.php:944 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "A sorzárolásokra fordított összes idő, milliszekundumban." -#: libraries/messages.inc.php:949 +#: libraries/messages.inc.php:945 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "A sorzároláshoz szükséges időtartam, milliszekundumban." -#: libraries/messages.inc.php:950 +#: libraries/messages.inc.php:946 msgid "The number of times a row lock had to be waited for." msgstr "A sorzárolásra váráshoz szükséges alkalmak száma." -#: libraries/messages.inc.php:951 +#: libraries/messages.inc.php:947 msgid "The number of rows deleted from InnoDB tables." msgstr "Az InnoDB táblákból törölt sorok száma." -#: libraries/messages.inc.php:952 +#: libraries/messages.inc.php:948 msgid "The number of rows inserted in InnoDB tables." msgstr "Az InnoDB táblákba beszúrt sorok száma." -#: libraries/messages.inc.php:953 +#: libraries/messages.inc.php:949 msgid "The number of rows read from InnoDB tables." msgstr "Az InnoDB táblákból beolvasott sorok száma." -#: libraries/messages.inc.php:954 +#: libraries/messages.inc.php:950 msgid "The number of rows updated in InnoDB tables." msgstr "Az InnoDB táblákban frissített sorok száma." -#: libraries/messages.inc.php:955 +#: libraries/messages.inc.php:951 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -5733,7 +5733,7 @@ msgstr "" "A kulcsgyorsítótárban lévő kulcsblokkok száma, melyek megváltoztak, de még " "nem kerültek lemezre kiírásra. Ez Not_flushed_key_blocks néven ismert." -#: libraries/messages.inc.php:956 +#: libraries/messages.inc.php:952 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -5741,7 +5741,7 @@ msgstr "" "A kulcsgyorsítótárban lévő, nem használt blokkok száma. Ezzel az értékkel " "állapíthatja meg, hogy mennyire van használatban a kulcsgyorsítótár." -#: libraries/messages.inc.php:957 +#: libraries/messages.inc.php:953 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -5750,11 +5750,11 @@ msgstr "" "A kulcsgyorsítótárban lévő használt blokkok száma. Ez az érték egy maximális " "jel, mely a valamikor használatban volt blokkok számát jelzi." -#: libraries/messages.inc.php:958 +#: libraries/messages.inc.php:954 msgid "The number of requests to read a key block from the cache." msgstr "A gyorsítótárból egy kulcsblokk beolvasásához szükséges kérések száma." -#: libraries/messages.inc.php:959 +#: libraries/messages.inc.php:955 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -5765,15 +5765,15 @@ msgstr "" "sikertelen találatainak aránya a Key_reads/Key_read_requests alapján " "számítható ki." -#: libraries/messages.inc.php:960 +#: libraries/messages.inc.php:956 msgid "The number of requests to write a key block to the cache." msgstr "A kérések száma egy kulcsblokk gyorsítótárba történő írásához." -#: libraries/messages.inc.php:961 +#: libraries/messages.inc.php:957 msgid "The number of physical writes of a key block to disk." msgstr "Egy kulcsblokk lemezre történő fizikai írásainak száma." -#: libraries/messages.inc.php:962 +#: libraries/messages.inc.php:958 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -5784,11 +5784,11 @@ msgstr "" "költségének lekérdezéséhez hasznos. Az alapértelmezett 0 érték azt jelenti, " "hogy lekérdezés lefordítására még nem került sor." -#: libraries/messages.inc.php:963 +#: libraries/messages.inc.php:959 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Az INSERT DELAYED sorokban írásra várakozó sorok száma." -#: libraries/messages.inc.php:964 +#: libraries/messages.inc.php:960 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -5796,37 +5796,37 @@ msgstr "" "Az eddig megnyitott táblák száma. Ha a megnyitott táblák nagy,akkor " "valószínűleg túl kicsi a táblagyorsítótár értéke." -#: libraries/messages.inc.php:965 +#: libraries/messages.inc.php:961 msgid "The number of files that are open." msgstr "A megnyitott fájlok száma." -#: libraries/messages.inc.php:966 +#: libraries/messages.inc.php:962 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Az adatfolyamok száma, melyek nyitottak (főleg a naplózáshoz kerül " "felhasználásra)." -#: libraries/messages.inc.php:967 +#: libraries/messages.inc.php:963 msgid "The number of tables that are open." msgstr "A megnyitott táblák száma." -#: libraries/messages.inc.php:968 +#: libraries/messages.inc.php:964 msgid "The number of free memory blocks in query cache." msgstr "A szabad memóriablokkok száma a lekérdezési gyorsítótárban." -#: libraries/messages.inc.php:969 +#: libraries/messages.inc.php:965 msgid "The amount of free memory for query cache." msgstr "A szabad memória mérete a lekérdezési gyorsítótárhoz." -#: libraries/messages.inc.php:970 +#: libraries/messages.inc.php:966 msgid "The number of cache hits." msgstr "A gyorsítótár találatok száma." -#: libraries/messages.inc.php:971 +#: libraries/messages.inc.php:967 msgid "The number of queries added to the cache." msgstr "A gyorsítótárhoz adott lekérdezések száma." -#: libraries/messages.inc.php:972 +#: libraries/messages.inc.php:968 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -5839,7 +5839,7 @@ msgstr "" "lekérdezési gyorsítótár a legrégebben használt (LRU) stratégiával dönti el, " "hogy mely lekérdezéseket kell eltávolítani a gyorsítótárból." -#: libraries/messages.inc.php:973 +#: libraries/messages.inc.php:969 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -5847,24 +5847,24 @@ msgstr "" "A nem gyorsítótárazott lekérdezések száma (nem gyorsítótárazható, vagy nem " "gyorsítótárazott a query_cache_type beállítás miatt)." -#: libraries/messages.inc.php:974 +#: libraries/messages.inc.php:970 msgid "The number of queries registered in the cache." msgstr "A gyorsítótárban bejegyzett lekérdezések száma." -#: libraries/messages.inc.php:975 +#: libraries/messages.inc.php:971 msgid "The total number of blocks in the query cache." msgstr "A blokkok száma a lekérdezési gyorsítótárban." -#: libraries/messages.inc.php:976 +#: libraries/messages.inc.php:972 msgctxt "$strShowStatusReset" msgid "Reset" msgstr "Törlés" -#: libraries/messages.inc.php:977 +#: libraries/messages.inc.php:973 msgid "The status of failsafe replication (not yet implemented)." msgstr "A hibabiztos többszörözések állapota (megvalósításra vár)." -#: libraries/messages.inc.php:978 +#: libraries/messages.inc.php:974 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -5872,11 +5872,11 @@ msgstr "" "Az indexeket nem használó illesztések száma. Ha ez az érték nem 0, akkor " "ellenőrizze körültekintően a táblák indexeit." -#: libraries/messages.inc.php:979 +#: libraries/messages.inc.php:975 msgid "The number of joins that used a range search on a reference table." msgstr "Egy hivatkozási táblán tartománykeresést használt illesztések száma." -#: libraries/messages.inc.php:980 +#: libraries/messages.inc.php:976 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -5885,7 +5885,7 @@ msgstr "" "használatát ellenőrzik. (Ha ez nem 0, akkor ellenőrizze körültekintően a " "táblák indexeit.))" -#: libraries/messages.inc.php:981 +#: libraries/messages.inc.php:977 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -5893,15 +5893,15 @@ msgstr "" "Az első táblán tartományokat használt illesztések száma. (Normál esetben ez " "nem súlyos, még ha túl nagy is ez.)" -#: libraries/messages.inc.php:982 +#: libraries/messages.inc.php:978 msgid "The number of joins that did a full scan of the first table." msgstr "Az első tábla teljes vizsgálatát elvégzett illesztések száma." -#: libraries/messages.inc.php:983 +#: libraries/messages.inc.php:979 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "A kisegítő SQL szál által épp megnyitott ideiglenes táblák száma." -#: libraries/messages.inc.php:984 +#: libraries/messages.inc.php:980 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -5909,11 +5909,11 @@ msgstr "" "A többszörözésben kisegítő SQL szál (az indítás óta) ennyiszer próbálta újra " "a tranzakciókat." -#: libraries/messages.inc.php:985 +#: libraries/messages.inc.php:981 msgid "This is ON if this server is a slave that is connected to a master." msgstr "Ez BE, ha ez főszerverhez csatlakoztatott kisegítő szerver." -#: libraries/messages.inc.php:986 +#: libraries/messages.inc.php:982 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -5921,14 +5921,14 @@ msgstr "" "A szálak száma, melyek létrehozásához slow_launch_time másodpercnél többre " "volt szükség." -#: libraries/messages.inc.php:987 +#: libraries/messages.inc.php:983 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "A lekérdezések száma, melyekhez long_query_time másodpercnél többre volt " "szükség." -#: libraries/messages.inc.php:988 +#: libraries/messages.inc.php:984 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -5938,23 +5938,23 @@ msgstr "" "végeznie. Ha ez az érték nagy, akkor gondolja meg a sort_buffer_size " "rendszerváltozó értékének növelését." -#: libraries/messages.inc.php:989 +#: libraries/messages.inc.php:985 msgid "The number of sorts that were done with ranges." msgstr "A tartományokkal végzett rendezések száma." -#: libraries/messages.inc.php:990 +#: libraries/messages.inc.php:986 msgid "The number of sorted rows." msgstr "Rendezett sorok száma." -#: libraries/messages.inc.php:991 +#: libraries/messages.inc.php:987 msgid "The number of sorts that were done by scanning the table." msgstr "A tábla vizsgálatával végrehajtott rendezések száma." -#: libraries/messages.inc.php:992 +#: libraries/messages.inc.php:988 msgid "The number of times that a table lock was acquired immediately." msgstr "Ennyiszer nem lehetett azonnal megszerezni egy táblazárolást." -#: libraries/messages.inc.php:993 +#: libraries/messages.inc.php:989 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -5966,7 +5966,7 @@ msgstr "" "optimalizálja a lekérdezéseket, majd vagy ossza fel a táblát vagy táblákat, " "vagy használja a többszörözést." -#: libraries/messages.inc.php:994 +#: libraries/messages.inc.php:990 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -5976,11 +5976,11 @@ msgstr "" "Threads_created/Connections alapján számítható ki. Ha ez az érték piros, " "akkor növelnie kell a thread_cache_size méretét." -#: libraries/messages.inc.php:995 +#: libraries/messages.inc.php:991 msgid "The number of currently open connections." msgstr "A jelenleg megnyitott kapcsolatok száma." -#: libraries/messages.inc.php:996 +#: libraries/messages.inc.php:992 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -5991,74 +5991,74 @@ msgstr "" "nagy, akkor növelheti a thread_cache_size értékét. (Normál esetben ez nem " "növeli jelentősen a teljesítményt, ha jó szálmegvalósítása van.)" -#: libraries/messages.inc.php:997 +#: libraries/messages.inc.php:993 msgid "The number of threads that are not sleeping." msgstr "A nem alvó szálak száma." -#: libraries/messages.inc.php:999 tbl_printview.php:75 +#: libraries/messages.inc.php:995 tbl_printview.php:75 msgid "Show tables" msgstr "A táblák megjelenítése" -#: libraries/messages.inc.php:1000 libraries/sql_query_form.lib.php:396 +#: libraries/messages.inc.php:996 libraries/sql_query_form.lib.php:396 msgid " Show this query here again " msgstr " A fenti lekérdezés megjelenítése itt újra " -#: libraries/messages.inc.php:1001 libraries/mysql_charsets.lib.php:217 +#: libraries/messages.inc.php:997 libraries/mysql_charsets.lib.php:217 #: libraries/mysql_charsets.lib.php:342 msgid "Simplified Chinese" msgstr "Egyszerűsített kínai" -#: libraries/messages.inc.php:1002 tbl_operations.php:258 +#: libraries/messages.inc.php:998 tbl_operations.php:258 msgid "(singly)" msgstr "(egyenként)" -#: libraries/messages.inc.php:1005 libraries/replication_gui.lib.php:52 +#: libraries/messages.inc.php:1001 libraries/replication_gui.lib.php:52 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" msgstr "" -#: libraries/messages.inc.php:1006 libraries/mysql_charsets.lib.php:283 +#: libraries/messages.inc.php:1002 libraries/mysql_charsets.lib.php:283 msgid "Slovak" msgstr "Szlovák" -#: libraries/messages.inc.php:1007 libraries/mysql_charsets.lib.php:286 +#: libraries/messages.inc.php:1003 libraries/mysql_charsets.lib.php:286 msgid "Slovenian" msgstr "Szlovén" -#: libraries/messages.inc.php:1008 pmd_general.php:95 +#: libraries/messages.inc.php:1004 pmd_general.php:95 msgid "Small/Big All" msgstr "Mind kicsi/nagy" -#: libraries/messages.inc.php:1009 pmd_general.php:91 +#: libraries/messages.inc.php:1005 pmd_general.php:91 msgid "Snap to grid" msgstr "Rácshoz illesztés" -#: libraries/messages.inc.php:1011 server_synchronize.php:1167 +#: libraries/messages.inc.php:1007 server_synchronize.php:1167 msgid "Socket" msgstr "" -#: libraries/messages.inc.php:1013 server_status.php:259 +#: libraries/messages.inc.php:1009 server_status.php:259 msgid "Sorting" msgstr "Rendezés" -#: libraries/messages.inc.php:1015 tbl_printview.php:310 tbl_structure.php:657 +#: libraries/messages.inc.php:1011 tbl_printview.php:310 tbl_structure.php:657 msgid "Space usage" msgstr "Területhasználat" -#: libraries/messages.inc.php:1016 libraries/mysql_charsets.lib.php:289 +#: libraries/messages.inc.php:1012 libraries/mysql_charsets.lib.php:289 msgid "Spanish" msgstr "Spanyol" -#: libraries/messages.inc.php:1019 +#: libraries/messages.inc.php:1015 msgid "Export type" msgstr "Exportálás típusa" -#: libraries/messages.inc.php:1020 +#: libraries/messages.inc.php:1016 msgid "Export time in UTC" msgstr "" -#: libraries/messages.inc.php:1021 libraries/sqlparser.lib.php:173 +#: libraries/messages.inc.php:1017 libraries/sqlparser.lib.php:173 msgid "" "There is a chance that you may have found a bug in the SQL parser. Please " "examine your query closely, and check that the quotes are correct and not " @@ -6081,7 +6081,7 @@ msgstr "" "redukálja a problémát okozó SQL lekérdezést egy egyszerű lekérdezéssé, és " "küldjön be hibabejelentést az alsó Kivágás részben levő adatokkal együtt:" -#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:137 +#: libraries/messages.inc.php:1018 libraries/sqlparser.lib.php:137 msgid "" "There seems to be an error in your SQL query. The MySQL server error output " "below, if there is any, may also help you in diagnosing the problem" @@ -6090,33 +6090,33 @@ msgstr "" "hibakimenete alul látható, ha van ott valami, az segíthet kideríteni a hiba " "okát" -#: libraries/messages.inc.php:1026 libraries/sqlparser.lib.php:495 +#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:495 msgid "Invalid Identifer" msgstr "Érvénytelen azonosító" -#: libraries/messages.inc.php:1027 libraries/sqlparser.lib.php:344 +#: libraries/messages.inc.php:1023 libraries/sqlparser.lib.php:344 msgid "Unclosed quote" msgstr "Lezáratlan idézőjel" -#: libraries/messages.inc.php:1028 libraries/sqlparser.lib.php:612 +#: libraries/messages.inc.php:1024 libraries/sqlparser.lib.php:612 msgid "Unknown Punctuation String" msgstr "Ismeretlen írásjeleket tartalmazó karakterlánc" -#: libraries/messages.inc.php:1030 server_replication.php:327 +#: libraries/messages.inc.php:1026 server_replication.php:327 #: server_replication.php:328 #, fuzzy msgid "Start" msgstr "Indítás" -#: libraries/messages.inc.php:1033 tbl_printview.php:369 tbl_structure.php:729 +#: libraries/messages.inc.php:1029 tbl_printview.php:369 tbl_structure.php:729 msgid "Statements" msgstr "Utasítások" -#: libraries/messages.inc.php:1034 tbl_printview.php:380 tbl_structure.php:741 +#: libraries/messages.inc.php:1030 tbl_printview.php:380 tbl_structure.php:741 msgid "static" msgstr "statikus" -#: libraries/messages.inc.php:1035 server_status.php:388 +#: libraries/messages.inc.php:1031 server_status.php:388 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -6124,43 +6124,43 @@ msgstr "" "Foglalt szerveren túlfuthatnak a bájtszámlálók, ezért a MySQL által " "jelentett statisztikák pontatlanok lehetnek." -#: libraries/messages.inc.php:1038 server_replication.php:327 +#: libraries/messages.inc.php:1034 server_replication.php:327 #: server_replication.php:328 msgid "Stop" msgstr "" -#: libraries/messages.inc.php:1039 server_engines.php:49 +#: libraries/messages.inc.php:1035 server_engines.php:49 msgid "Storage Engines" msgstr "Tárolómotorok" -#: libraries/messages.inc.php:1040 libraries/tbl_properties.inc.php:726 +#: libraries/messages.inc.php:1036 libraries/tbl_properties.inc.php:726 #: server_engines.php:58 tbl_operations.php:353 msgid "Storage Engine" msgstr "Tárolómotor" -#: libraries/messages.inc.php:1042 +#: libraries/messages.inc.php:1038 msgid "CSV for MS Excel" msgstr "MS Excel CSV adat" -#: libraries/messages.inc.php:1044 tbl_structure.php:516 tbl_structure.php:518 +#: libraries/messages.inc.php:1040 tbl_structure.php:516 tbl_structure.php:518 msgid "Propose table structure" msgstr "Táblaszerkezet ajánlása" -#: libraries/messages.inc.php:1045 server_synchronize.php:424 +#: libraries/messages.inc.php:1041 server_synchronize.php:424 #: server_synchronize.php:867 #, fuzzy msgid "Structure Difference" msgstr "Nézet szerkezete" -#: libraries/messages.inc.php:1049 server_synchronize.php:265 +#: libraries/messages.inc.php:1045 server_synchronize.php:265 msgid "Structure Synchronization" msgstr "" -#: libraries/messages.inc.php:1050 libraries/sql_query_form.lib.php:462 +#: libraries/messages.inc.php:1046 libraries/sql_query_form.lib.php:462 msgid "Submit" msgstr "Indítás" -#: libraries/messages.inc.php:1052 main.php:358 +#: libraries/messages.inc.php:1048 main.php:358 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -6169,160 +6169,160 @@ msgstr "" "A szerver Suhosinnal fut. Kérjük, hogy a lehetséges problémáknak nézzen " "utána a %sdokumentációban%s." -#: libraries/messages.inc.php:1054 libraries/mysql_charsets.lib.php:295 +#: libraries/messages.inc.php:1050 libraries/mysql_charsets.lib.php:295 #: libraries/mysql_charsets.lib.php:392 msgid "Swedish" msgstr "Svéd" -#: libraries/messages.inc.php:1060 tbl_operations.php:556 +#: libraries/messages.inc.php:1056 tbl_operations.php:556 msgid "Switch to copied table" msgstr "A másolt táblára váltás" -#: libraries/messages.inc.php:1061 server_synchronize.php:1213 +#: libraries/messages.inc.php:1057 server_synchronize.php:1213 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." msgstr "" -#: libraries/messages.inc.php:1062 server_synchronize.php:451 +#: libraries/messages.inc.php:1058 server_synchronize.php:451 #: server_synchronize.php:896 msgid "Synchronize Databases" msgstr "" -#: libraries/messages.inc.php:1063 libraries/server_links.inc.php:92 +#: libraries/messages.inc.php:1059 libraries/server_links.inc.php:92 #: server_synchronize.php:1092 server_synchronize.php:1100 msgid "Synchronize" msgstr "" -#: libraries/messages.inc.php:1065 server_synchronize.php:430 +#: libraries/messages.inc.php:1061 server_synchronize.php:430 #: server_synchronize.php:873 msgid "Add column(s)" msgstr "" -#: libraries/messages.inc.php:1066 tbl_create.php:62 +#: libraries/messages.inc.php:1062 tbl_create.php:62 #, php-format msgid "Table %s already exists!" msgstr "Már létezik nevű %s tábla!" -#: libraries/messages.inc.php:1067 server_synchronize.php:432 +#: libraries/messages.inc.php:1063 server_synchronize.php:432 #: server_synchronize.php:875 msgid "Alter column(s)" msgstr "" -#: libraries/messages.inc.php:1068 tbl_addfield.php:189 tbl_alter.php:103 +#: libraries/messages.inc.php:1064 tbl_addfield.php:189 tbl_alter.php:103 #: tbl_indexes.php:98 #, php-format msgid "Table %1$s has been altered successfully" msgstr "A(z) %1$s tábla módosítása sikerült" -#: libraries/messages.inc.php:1069 server_synchronize.php:434 +#: libraries/messages.inc.php:1065 server_synchronize.php:434 #: server_synchronize.php:877 msgid "Apply index(s)" msgstr "" -#: libraries/messages.inc.php:1071 server_synchronize.php:446 +#: libraries/messages.inc.php:1067 server_synchronize.php:446 #: server_synchronize.php:890 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: libraries/messages.inc.php:1072 tbl_move_copy.php:82 +#: libraries/messages.inc.php:1068 tbl_move_copy.php:82 msgid "The table name is empty!" msgstr "Üres a tábla neve!" -#: libraries/messages.inc.php:1073 tbl_create.php:249 +#: libraries/messages.inc.php:1069 tbl_create.php:249 #, php-format msgid "Table %1$s has been created." msgstr "A(z) %1$s tábla elkészült." -#: libraries/messages.inc.php:1076 tbl_operations.php:628 +#: libraries/messages.inc.php:1072 tbl_operations.php:628 #, php-format msgid "Table %s has been flushed" msgstr "A(z) %s tábla kiírása megtörtént" -#: libraries/messages.inc.php:1077 server_synchronize.php:436 +#: libraries/messages.inc.php:1073 server_synchronize.php:436 #: server_synchronize.php:879 msgid "Insert row(s)" msgstr "" -#: libraries/messages.inc.php:1078 libraries/tbl_links.inc.php:107 +#: libraries/messages.inc.php:1074 libraries/tbl_links.inc.php:107 #: libraries/tbl_links.inc.php:140 libraries/tbl_links.inc.php:141 msgid "Table seems to be empty!" msgstr "Üresnek tűnik a tábla!" -#: libraries/messages.inc.php:1079 tbl_operations.php:568 +#: libraries/messages.inc.php:1075 tbl_operations.php:568 msgid "Table maintenance" msgstr "Tábla karbantartása" -#: libraries/messages.inc.php:1080 libraries/tbl_properties.inc.php:618 +#: libraries/messages.inc.php:1076 libraries/tbl_properties.inc.php:618 #: server_synchronize.php:428 server_synchronize.php:871 msgid "Table name" msgstr "Tábla neve" -#: libraries/messages.inc.php:1081 pdf_schema.php:1116 +#: libraries/messages.inc.php:1077 pdf_schema.php:1116 msgid "Table of contents" msgstr "Tartalomjegyzék" -#: libraries/messages.inc.php:1082 tbl_operations.php:334 +#: libraries/messages.inc.php:1078 tbl_operations.php:334 msgid "Table options" msgstr "Tábla beállításai" -#: libraries/messages.inc.php:1083 server_synchronize.php:431 +#: libraries/messages.inc.php:1079 server_synchronize.php:431 #: server_synchronize.php:874 msgid "Remove column(s)" msgstr "" -#: libraries/messages.inc.php:1084 server_synchronize.php:433 +#: libraries/messages.inc.php:1080 server_synchronize.php:433 #: server_synchronize.php:876 msgid "Remove index(s)" msgstr "" -#: libraries/messages.inc.php:1088 server_synchronize.php:435 +#: libraries/messages.inc.php:1084 server_synchronize.php:435 #: server_synchronize.php:878 msgid "Update row(s)" msgstr "" -#: libraries/messages.inc.php:1090 server_synchronize.php:942 +#: libraries/messages.inc.php:1086 server_synchronize.php:942 msgid "Target database has been synchronized with source database" msgstr "" -#: libraries/messages.inc.php:1091 server_privileges.php:392 +#: libraries/messages.inc.php:1087 server_privileges.php:392 #: server_privileges.php:527 server_privileges.php:1679 #: server_privileges.php:1685 msgid "Table-specific privileges" msgstr "Táblaspecifikus jogok" -#: libraries/messages.inc.php:1092 server_status.php:254 +#: libraries/messages.inc.php:1088 server_status.php:254 msgid "Temporary data" msgstr "Ideiglenes adatok" -#: libraries/messages.inc.php:1093 tbl_change.php:728 +#: libraries/messages.inc.php:1089 tbl_change.php:728 msgid " Because of its length,
this field might not be editable " msgstr "A hossza miatt
lehet, hogy ez a mező nem szerkeszthető " -#: libraries/messages.inc.php:1094 +#: libraries/messages.inc.php:1090 msgid "Texy! text" msgstr "Texy! szöveg" -#: libraries/messages.inc.php:1095 libraries/mysql_charsets.lib.php:298 +#: libraries/messages.inc.php:1091 libraries/mysql_charsets.lib.php:298 #: libraries/mysql_charsets.lib.php:395 msgid "Thai" msgstr "Thai" -#: libraries/messages.inc.php:1102 libraries/replication_gui.lib.php:308 +#: libraries/messages.inc.php:1098 libraries/replication_gui.lib.php:308 #: server_privileges.php:734 msgid "This Host" msgstr "Ez a hoszt" -#: libraries/messages.inc.php:1103 server_status.php:252 +#: libraries/messages.inc.php:1099 server_status.php:252 msgid "Threads" msgstr "Szálak" -#: libraries/messages.inc.php:1104 server_processlist.php:22 +#: libraries/messages.inc.php:1100 server_processlist.php:22 #, php-format msgid "Thread %s was successfully killed." msgstr "Sikerült leállítani a(z) %s. szálat." -#: libraries/messages.inc.php:1106 +#: libraries/messages.inc.php:1102 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -6331,185 +6331,185 @@ msgstr "" "jelenti, hogy a phpMyAdmin nem tudja befejezni ezt az importálást, ha Ön nem " "növeli meg a PHP időkorlátozását." -#: libraries/messages.inc.php:1109 pmd_pdf.php:94 +#: libraries/messages.inc.php:1105 pmd_pdf.php:94 msgid "to/from page" msgstr "oldalra/-ról" -#: libraries/messages.inc.php:1110 pdf_pages.php:343 +#: libraries/messages.inc.php:1106 pdf_pages.php:343 msgid "Toggle scratchboard" msgstr "Scratchboard kapcsolása" -#: libraries/messages.inc.php:1111 pmd_general.php:99 +#: libraries/messages.inc.php:1107 pmd_general.php:99 msgid "Toggle small/big" msgstr "Kicsi/nagy kapcsoló" -#: libraries/messages.inc.php:1112 pmd_help.php:27 +#: libraries/messages.inc.php:1108 pmd_help.php:27 msgid "To select relation, click :" msgstr "A kapcsolat kiválasztásához, kattintson :" -#: libraries/messages.inc.php:1115 libraries/tbl_links.inc.php:149 +#: libraries/messages.inc.php:1111 libraries/tbl_links.inc.php:149 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" -#: libraries/messages.inc.php:1116 tbl_tracking.php:655 +#: libraries/messages.inc.php:1112 tbl_tracking.php:655 msgid "Activate now" msgstr "" -#: libraries/messages.inc.php:1117 tbl_tracking.php:653 +#: libraries/messages.inc.php:1113 tbl_tracking.php:653 #, php-format msgid "Activate tracking for %s.%s" msgstr "" -#: libraries/messages.inc.php:1118 tbl_tracking.php:221 +#: libraries/messages.inc.php:1114 tbl_tracking.php:221 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/messages.inc.php:1119 tbl_tracking.php:688 +#: libraries/messages.inc.php:1115 tbl_tracking.php:688 #, fuzzy msgid "Create version" msgstr "Kapcsolat létrehozása" -#: libraries/messages.inc.php:1120 tbl_tracking.php:668 +#: libraries/messages.inc.php:1116 tbl_tracking.php:668 #, php-format msgid "Create version %s of %s.%s" msgstr "" -#: libraries/messages.inc.php:1122 tbl_tracking.php:412 +#: libraries/messages.inc.php:1118 tbl_tracking.php:412 msgid "Data definition statement" msgstr "" -#: libraries/messages.inc.php:1123 tbl_tracking.php:463 +#: libraries/messages.inc.php:1119 tbl_tracking.php:463 msgid "Data manipulation statement" msgstr "" -#: libraries/messages.inc.php:1124 tbl_tracking.php:410 tbl_tracking.php:461 +#: libraries/messages.inc.php:1120 tbl_tracking.php:410 tbl_tracking.php:461 #, fuzzy msgid "Date" msgstr "Adatok" -#: libraries/messages.inc.php:1125 tbl_tracking.php:642 +#: libraries/messages.inc.php:1121 tbl_tracking.php:642 msgid "Deactivate now" msgstr "" -#: libraries/messages.inc.php:1126 tbl_tracking.php:640 +#: libraries/messages.inc.php:1122 tbl_tracking.php:640 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "" -#: libraries/messages.inc.php:1127 tbl_tracking.php:521 +#: libraries/messages.inc.php:1123 tbl_tracking.php:521 #, fuzzy, php-format msgid "Export as %s" msgstr "Exportálás alapértelmezései" -#: libraries/messages.inc.php:1130 tbl_tracking.php:251 tbl_tracking.php:379 +#: libraries/messages.inc.php:1126 tbl_tracking.php:251 tbl_tracking.php:379 msgid "Close" msgstr "" -#: libraries/messages.inc.php:1131 tbl_tracking.php:114 +#: libraries/messages.inc.php:1127 tbl_tracking.php:114 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/messages.inc.php:1133 tbl_tracking.php:397 tbl_tracking.php:504 +#: libraries/messages.inc.php:1129 tbl_tracking.php:397 tbl_tracking.php:504 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "" -#: libraries/messages.inc.php:1134 tbl_tracking.php:561 +#: libraries/messages.inc.php:1130 tbl_tracking.php:561 msgid "Show versions" msgstr "" -#: libraries/messages.inc.php:1135 tbl_tracking.php:507 +#: libraries/messages.inc.php:1131 tbl_tracking.php:507 msgid "SQL dump (file download)" msgstr "" -#: libraries/messages.inc.php:1136 tbl_tracking.php:508 +#: libraries/messages.inc.php:1132 tbl_tracking.php:508 msgid "SQL dump" msgstr "" -#: libraries/messages.inc.php:1137 tbl_tracking.php:213 +#: libraries/messages.inc.php:1133 tbl_tracking.php:213 msgid "SQL statements executed." msgstr "" -#: libraries/messages.inc.php:1138 +#: libraries/messages.inc.php:1134 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/messages.inc.php:1139 tbl_tracking.php:509 +#: libraries/messages.inc.php:1135 tbl_tracking.php:509 msgid "SQL execution" msgstr "" -#: libraries/messages.inc.php:1140 tbl_tracking.php:230 +#: libraries/messages.inc.php:1136 tbl_tracking.php:230 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/messages.inc.php:1141 tbl_tracking.php:381 +#: libraries/messages.inc.php:1137 tbl_tracking.php:381 msgid "Tracking statements" msgstr "" -#: libraries/messages.inc.php:1148 tbl_tracking.php:593 +#: libraries/messages.inc.php:1144 tbl_tracking.php:593 #, fuzzy msgid "Version" msgstr "Perzsa" -#: libraries/messages.inc.php:1149 tbl_tracking.php:672 +#: libraries/messages.inc.php:1145 tbl_tracking.php:672 msgid "Track these data definition statements:" msgstr "" -#: libraries/messages.inc.php:1150 tbl_tracking.php:680 +#: libraries/messages.inc.php:1146 tbl_tracking.php:680 msgid "Track these data manipulation statements:" msgstr "" -#: libraries/messages.inc.php:1155 tbl_tracking.php:411 tbl_tracking.php:462 +#: libraries/messages.inc.php:1151 tbl_tracking.php:411 tbl_tracking.php:462 #, fuzzy msgid "Username" msgstr "Felhasználónév:" -#: libraries/messages.inc.php:1156 tbl_tracking.php:203 +#: libraries/messages.inc.php:1152 tbl_tracking.php:203 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "" -#: libraries/messages.inc.php:1157 tbl_tracking.php:187 +#: libraries/messages.inc.php:1153 tbl_tracking.php:187 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "" -#: libraries/messages.inc.php:1158 tbl_tracking.php:195 +#: libraries/messages.inc.php:1154 tbl_tracking.php:195 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "" -#: libraries/messages.inc.php:1159 tbl_tracking.php:262 +#: libraries/messages.inc.php:1155 tbl_tracking.php:262 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/messages.inc.php:1161 tbl_tracking.php:220 +#: libraries/messages.inc.php:1157 tbl_tracking.php:220 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/messages.inc.php:1162 libraries/mysql_charsets.lib.php:219 +#: libraries/messages.inc.php:1158 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:362 msgid "Traditional Chinese" msgstr "Hagyományos kínai" -#: libraries/messages.inc.php:1163 libraries/mysql_charsets.lib.php:292 +#: libraries/messages.inc.php:1159 libraries/mysql_charsets.lib.php:292 msgid "Traditional Spanish" msgstr "Hagyományos spanyol" -#: libraries/messages.inc.php:1164 server_status.php:388 +#: libraries/messages.inc.php:1160 server_status.php:388 msgid "Traffic" msgstr "Forgalom" -#: libraries/messages.inc.php:1165 server_status.php:261 +#: libraries/messages.inc.php:1161 server_status.php:261 msgid "Transaction coordinator" msgstr "Tranzakció koordinátor" -#: libraries/messages.inc.php:1166 +#: libraries/messages.inc.php:1162 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 " @@ -6522,7 +6522,7 @@ msgstr "" "második lehetőséget használja, akkor az első lehetőséget üres karakterláncra " "kell állítania." -#: libraries/messages.inc.php:1167 +#: libraries/messages.inc.php:1163 msgid "" "Displays hexadecimal representation of data. Optional first parameter " "specifies how often space will be added (defaults to 2 nibbles)." @@ -6531,7 +6531,7 @@ msgstr "" "határozza meg, hogy milyen gyakran kerül szóköz hozzáadásra (alapértelmezés " "2 négybit)." -#: libraries/messages.inc.php:1168 +#: libraries/messages.inc.php:1164 msgid "" "Displays a clickable thumbnail. The options are the maximum width and height " "in pixels. The original aspect ratio is preserved." @@ -6540,15 +6540,15 @@ msgstr "" "szélesség és magasság a lehetőségek. Az eredeti méretarányok megtartásra " "kerülnek." -#: libraries/messages.inc.php:1169 +#: libraries/messages.inc.php:1165 msgid "Displays a link to download this image." msgstr "A kép letöltésére mutató hivatkozást jelenít meg." -#: libraries/messages.inc.php:1170 +#: libraries/messages.inc.php:1166 msgid "See image/jpeg: inline" msgstr "Lásd image/jpeg megtekintése: bent" -#: libraries/messages.inc.php:1171 +#: libraries/messages.inc.php:1167 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 " @@ -6569,7 +6569,7 @@ msgstr "" "tekintse meg a dokumentációban a PHP strftime() függvényét, míg az \"utc\" " "végrehajtása a gmdate() függvénnyel történik." -#: libraries/messages.inc.php:1172 +#: libraries/messages.inc.php:1168 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 " @@ -6593,7 +6593,7 @@ msgstr "" "lehetőség, ha egyre van beállítva, megakadályozza a beágyazást, és " "biztosítja, hogy a kimenet az összes soron megjelenik (alapértelmezés: 1)" -#: libraries/messages.inc.php:1173 +#: libraries/messages.inc.php:1169 msgid "" "Displays the contents of the field as-is, without running it through " "htmlspecialchars(). That is, the field is assumed to contain valid HTML." @@ -6602,7 +6602,7 @@ msgstr "" "függvényen keresztüli lefuttatás nélkül. Vagyis feltételezi, hogy a mező " "érvényes HTML-kódot tartalmaz." -#: libraries/messages.inc.php:1174 +#: libraries/messages.inc.php:1170 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 " @@ -6612,7 +6612,7 @@ msgstr "" "első opcíó egy URL előtag, mint a \"http://www.pelda.hu/\". A második és " "harmadik lehetőség a szélesség és a magasság képpontban." -#: libraries/messages.inc.php:1175 +#: libraries/messages.inc.php:1171 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 " @@ -6622,11 +6622,11 @@ msgstr "" "lehetőség egy URL előtag, mint a \"http://www.pelda.hu/\". A második " "lehetőség a hivatkozás címe." -#: libraries/messages.inc.php:1176 +#: libraries/messages.inc.php:1172 msgid "Formats text as SQL query with syntax highlighting." msgstr "SQL-lekérdezésként, színkódolással formázza a szöveget." -#: libraries/messages.inc.php:1177 +#: libraries/messages.inc.php:1173 msgid "" "Displays a part of a string. The first option is the number of characters to " "skip from the beginning of the string (Default 0). The second option is the " @@ -6641,71 +6641,71 @@ msgstr "" "hozzáfűzendő karakterlánc a tranzakció előfordulásakor (alapértelmezés: \"..." "\")." -#: libraries/messages.inc.php:1179 server_binlog.php:183 server_binlog.php:186 +#: libraries/messages.inc.php:1175 server_binlog.php:183 server_binlog.php:186 #: server_processlist.php:49 server_processlist.php:51 msgid "Truncate Shown Queries" msgstr "A megjelenített lekérdezések lerövidítése" -#: libraries/messages.inc.php:1180 libraries/mysql_charsets.lib.php:301 +#: libraries/messages.inc.php:1176 libraries/mysql_charsets.lib.php:301 #: libraries/mysql_charsets.lib.php:389 msgid "Turkish" msgstr "Török" -#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:304 +#: libraries/messages.inc.php:1179 libraries/mysql_charsets.lib.php:304 #: libraries/mysql_charsets.lib.php:386 msgid "Ukrainian" msgstr "Ukrán" -#: libraries/messages.inc.php:1185 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:1181 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 msgid "Unicode" msgstr "Unicode" -#: libraries/messages.inc.php:1187 libraries/mysql_charsets.lib.php:398 +#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:398 #: libraries/mysql_charsets.lib.php:405 msgid "unknown" msgstr "ismeretlen" -#: libraries/messages.inc.php:1190 server_privileges.php:1152 +#: libraries/messages.inc.php:1186 server_privileges.php:1152 #, php-format msgid "You have updated the privileges for %s." msgstr "Ön frissítette %s jogait." -#: libraries/messages.inc.php:1191 user_password.php:112 +#: libraries/messages.inc.php:1187 user_password.php:112 msgid "The profile has been updated." msgstr "A profil frissítése megtörtént." -#: libraries/messages.inc.php:1193 libraries/relation.lib.php:138 +#: libraries/messages.inc.php:1189 libraries/relation.lib.php:138 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "Kérjük, olvassa el a dokumentációban a column_comments tábla frissítéséről " "szóló fejezetet" -#: libraries/messages.inc.php:1194 +#: libraries/messages.inc.php:1190 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Frissítenie kell %s %s vagy újabb verzióra." -#: libraries/messages.inc.php:1204 tbl_printview.php:314 tbl_structure.php:661 +#: libraries/messages.inc.php:1200 tbl_printview.php:314 tbl_structure.php:661 msgid "Usage" msgstr "Méret" -#: libraries/messages.inc.php:1205 +#: libraries/messages.inc.php:1201 msgid "Enclose table and field names with backquotes" msgstr "Idézőjelek használata a tábla- és mezőneveknél" -#: libraries/messages.inc.php:1206 libraries/replication_gui.lib.php:314 +#: libraries/messages.inc.php:1202 libraries/replication_gui.lib.php:314 #: server_privileges.php:740 msgid "Use Host Table" msgstr "Hoszt-tábla használata" -#: libraries/messages.inc.php:1207 server_privileges.php:848 +#: libraries/messages.inc.php:1203 server_privileges.php:848 #, php-format msgid "The user %s already exists!" msgstr "%s felhasználó már létezik!" -#: libraries/messages.inc.php:1209 libraries/replication_gui.lib.php:55 +#: libraries/messages.inc.php:1205 libraries/replication_gui.lib.php:55 #: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245 #: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255 #: server_privileges.php:672 server_privileges.php:675 @@ -6713,37 +6713,37 @@ msgstr "%s felhasználó már létezik!" msgid "User name" msgstr "Felhasználónév" -#: libraries/messages.inc.php:1210 server_privileges.php:1645 +#: libraries/messages.inc.php:1206 server_privileges.php:1645 msgid "The selected user was not found in the privilege table." msgstr "Nem található a kiválasztott felhasználó a privilégium táblában." -#: libraries/messages.inc.php:1211 server_privileges.php:1365 +#: libraries/messages.inc.php:1207 server_privileges.php:1365 msgid "User overview" msgstr "Felhasználók áttekintése" -#: libraries/messages.inc.php:1212 server_privileges.php:1261 +#: libraries/messages.inc.php:1208 server_privileges.php:1261 msgid "The selected users have been deleted successfully." msgstr "A kiválasztott felhasználók törlése sikerült." -#: libraries/messages.inc.php:1213 server_privileges.php:2026 +#: libraries/messages.inc.php:1209 server_privileges.php:2026 #, php-format msgid "Users having access to "%s"" msgstr "A(z) "%s" adatbázishoz hozzáférhető felhasználók" -#: libraries/messages.inc.php:1214 main.php:189 server_privileges.php:1350 +#: libraries/messages.inc.php:1210 main.php:189 server_privileges.php:1350 #: server_privileges.php:1497 server_privileges.php:1611 #: server_privileges.php:2029 server_processlist.php:54 msgid "User" msgstr "Felhasználó" -#: libraries/messages.inc.php:1215 tbl_change.php:1171 +#: libraries/messages.inc.php:1211 tbl_change.php:1171 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "A TAB billentyűvel értékről értékre lépkedhet, ill. a CTRL+nyilakkal bárhová " "léphet." -#: libraries/messages.inc.php:1217 libraries/replication_gui.lib.php:251 +#: libraries/messages.inc.php:1213 libraries/replication_gui.lib.php:251 #: libraries/replication_gui.lib.php:319 libraries/replication_gui.lib.php:342 #: server_privileges.php:678 server_privileges.php:745 #: server_privileges.php:769 server_privileges.php:1889 @@ -6751,7 +6751,7 @@ msgstr "" msgid "Use text field" msgstr "Szöveges mező használata" -#: libraries/messages.inc.php:1221 libraries/sqlvalidator.lib.php:68 +#: libraries/messages.inc.php:1217 libraries/sqlvalidator.lib.php:68 #, php-format msgid "" "The SQL validator could not be initialized. Please check if you have " @@ -6761,88 +6761,88 @@ msgstr "" "sdokumentációban%s leírtak szerint telepítette-e a szükséges PHP-" "kiterjesztést." -#: libraries/messages.inc.php:1222 libraries/replication_gui.lib.php:111 +#: libraries/messages.inc.php:1218 libraries/replication_gui.lib.php:111 #: server_status.php:627 tbl_change.php:324 tbl_printview.php:370 #: tbl_select.php:139 tbl_structure.php:730 msgid "Value" msgstr "Érték" -#: libraries/messages.inc.php:1223 libraries/replication_gui.lib.php:110 +#: libraries/messages.inc.php:1219 libraries/replication_gui.lib.php:110 #: libraries/sql_query_form.lib.php:445 server_status.php:626 #: server_variables.php:52 msgid "Variable" msgstr "Változó" -#: libraries/messages.inc.php:1225 server_export.php:21 +#: libraries/messages.inc.php:1221 server_export.php:21 msgid "View dump (schema) of databases" msgstr "Adatbázis kiírás (séma) megtekintése" -#: libraries/messages.inc.php:1227 tbl_export.php:23 +#: libraries/messages.inc.php:1223 tbl_export.php:23 msgid "View dump (schema) of table" msgstr "Tábla kiírás (vázlat) megtekintése" -#: libraries/messages.inc.php:1231 view_create.php:142 +#: libraries/messages.inc.php:1227 view_create.php:142 msgid "VIEW name" msgstr "NÉZET neve" -#: libraries/messages.inc.php:1237 main.php:205 +#: libraries/messages.inc.php:1233 main.php:205 msgid "Web server" msgstr "Webszerver" -#: libraries/messages.inc.php:1239 libraries/mysql_charsets.lib.php:277 +#: libraries/messages.inc.php:1235 libraries/mysql_charsets.lib.php:277 #: libraries/mysql_charsets.lib.php:325 msgid "West European" msgstr "Nyugat-európai" -#: libraries/messages.inc.php:1240 main.php:230 +#: libraries/messages.inc.php:1236 main.php:230 msgid "Wiki" msgstr "Wiki" -#: libraries/messages.inc.php:1241 server_privileges.php:2138 +#: libraries/messages.inc.php:1237 server_privileges.php:2138 msgid "wildcard" msgstr "karakterhelyettesítő" -#: libraries/messages.inc.php:1248 +#: libraries/messages.inc.php:1244 #, fuzzy msgid "Export contents" msgstr "Exportálás alapértelmezései" -#: libraries/messages.inc.php:1249 +#: libraries/messages.inc.php:1245 msgid "Export functions" msgstr "" -#: libraries/messages.inc.php:1250 +#: libraries/messages.inc.php:1246 msgid "Export procedures" msgstr "" -#: libraries/messages.inc.php:1251 +#: libraries/messages.inc.php:1247 msgid "Export Structure Schemas (recommended)" msgstr "" -#: libraries/messages.inc.php:1252 +#: libraries/messages.inc.php:1248 #, fuzzy msgid "Export tables" msgstr "Exportálás típusa" -#: libraries/messages.inc.php:1253 +#: libraries/messages.inc.php:1249 #, fuzzy msgid "Export triggers" msgstr "Exportálás típusa" -#: libraries/messages.inc.php:1254 +#: libraries/messages.inc.php:1250 msgid "Export views" msgstr "" -#: libraries/messages.inc.php:1255 +#: libraries/messages.inc.php:1251 msgid "XML" msgstr "XML" -#: libraries/messages.inc.php:1259 server_privileges.php:592 +#: libraries/messages.inc.php:1255 server_privileges.php:592 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" "Megjegyzés: Ezen beállítások 0-ra (nulla) állítása eltávolítja a korlátozást." -#: libraries/messages.inc.php:1260 +#: libraries/messages.inc.php:1256 msgid "\"zipped\"" msgstr "\"zip tömörítés\"" diff --git a/po/id.po b/po/id.po index a272b8f44..d29c95c11 100644 --- a/po/id.po +++ b/po/id.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-05-13 11:25+0200\n" +"POT-Creation-Date: 2010-05-13 11:30+0200\n" "PO-Revision-Date: 2010-04-17 21:14+0200\n" "Last-Translator: Azhari Harahap \n" "Language-Team: indonesian \n" @@ -15,19 +15,19 @@ msgstr "" "X-Generator: Pootle 2.0.1\n" #: browse_foreigners.php:38 browse_foreigners.php:59 -#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:870 +#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:866 #: server_privileges.php:1475 msgid "Show all" msgstr "Tampilkan semua" #: browse_foreigners.php:82 db_operations.php:648 -#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:394 -#: libraries/export/pdf.php:147 libraries/messages.inc.php:597 +#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394 +#: libraries/export/pdf.php:147 libraries/messages.inc.php:593 #: pdf_schema.php:283 pdf_schema.php:1123 pdf_schema.php:1139 msgid "Page number:" msgstr "Halaman no.:" -#: browse_foreigners.php:132 libraries/messages.inc.php:1242 +#: browse_foreigners.php:132 libraries/messages.inc.php:1238 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -40,7 +40,7 @@ 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/db_links.inc.php:75 -#: libraries/messages.inc.php:841 libraries/tbl_links.inc.php:63 +#: libraries/messages.inc.php:837 libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Cari" @@ -49,12 +49,12 @@ msgstr "Cari" #: db_search.php:362 db_structure.php:567 js/messages.php:48 #: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2267 +#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 #: 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 #: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614 -#: libraries/messages.inc.php:361 libraries/replication_gui.lib.php:73 +#: libraries/messages.inc.php:357 libraries/replication_gui.lib.php:73 #: libraries/replication_gui.lib.php:365 libraries/select_server.lib.php:104 #: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477 #: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782 @@ -74,33 +74,33 @@ msgid "Go" msgstr "Go" #: browse_foreigners.php:168 browse_foreigners.php:172 -#: libraries/Index.class.php:442 libraries/messages.inc.php:459 +#: libraries/Index.class.php:442 libraries/messages.inc.php:455 #: tbl_tracking.php:320 msgid "Keyname" msgstr "Nama Kunci" #: browse_foreigners.php:169 browse_foreigners.php:171 -#: libraries/messages.inc.php:252 server_collations.php:55 +#: libraries/messages.inc.php:248 server_collations.php:55 #: server_collations.php:67 server_engines.php:59 server_status.php:628 msgid "Description" msgstr "Deskripsi" #: browse_foreigners.php:247 browse_foreigners.php:256 #: browse_foreigners.php:268 browse_foreigners.php:276 -#: libraries/messages.inc.php:1218 +#: libraries/messages.inc.php:1214 msgid "Use this value" msgstr "gunakan nilai ini" -#: db_create.php:46 libraries/messages.inc.php:215 +#: db_create.php:46 libraries/messages.inc.php:211 #, php-format msgid "Database %1$s has been created." msgstr "Database %1$s telah dibuat." -#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:232 +#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:228 msgid "Database comment: " msgstr "Komentar Database: " -#: db_datadict.php:165 libraries/messages.inc.php:1070 +#: db_datadict.php:165 libraries/messages.inc.php:1066 #: libraries/tbl_properties.inc.php:724 pdf_schema.php:1236 #: tbl_operations.php:345 tbl_printview.php:130 msgid "Table comments" @@ -109,7 +109,7 @@ msgstr "Komentar tabel" #: db_datadict.php:174 db_qbe.php:174 libraries/Index.class.php:446 #: libraries/export/htmlword.php:244 libraries/export/latex.php:360 #: libraries/export/odt.php:294 libraries/export/texytext.php:233 -#: libraries/messages.inc.php:317 libraries/tbl_properties.inc.php:99 +#: libraries/messages.inc.php:313 libraries/tbl_properties.inc.php:99 #: libraries/tbl_properties.inc.php:275 pdf_schema.php:1262 #: pdf_schema.php:1283 tbl_change.php:308 tbl_indexes.php:189 #: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135 @@ -121,7 +121,7 @@ msgstr "Field" #: libraries/db_events.inc.php:31 libraries/db_routines.inc.php:42 #: 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/messages.inc.php:1181 +#: libraries/export/texytext.php:234 libraries/messages.inc.php:1177 #: libraries/tbl_properties.inc.php:100 pdf_schema.php:1263 #: pdf_schema.php:1284 server_privileges.php:2031 tbl_change.php:287 #: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313 @@ -133,7 +133,7 @@ msgstr "Jenis" #: db_datadict.php:177 libraries/Index.class.php:449 #: libraries/export/htmlword.php:246 libraries/export/latex.php:360 #: libraries/export/odt.php:300 libraries/export/texytext.php:235 -#: libraries/messages.inc.php:576 libraries/tbl_properties.inc.php:109 +#: libraries/messages.inc.php:572 libraries/tbl_properties.inc.php:109 #: pdf_schema.php:1265 pdf_schema.php:1286 tbl_change.php:323 #: tbl_printview.php:145 tbl_structure.php:181 tbl_tracking.php:276 #: tbl_tracking.php:327 @@ -142,7 +142,7 @@ msgstr "Kosong" #: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 -#: libraries/export/texytext.php:236 libraries/messages.inc.php:238 +#: libraries/export/texytext.php:236 libraries/messages.inc.php:234 #: libraries/tbl_properties.inc.php:106 pdf_schema.php:1266 #: pdf_schema.php:1287 tbl_printview.php:146 tbl_structure.php:182 #: tbl_tracking.php:277 @@ -151,14 +151,14 @@ msgstr "Default" #: db_datadict.php:182 libraries/export/htmlword.php:249 #: libraries/export/latex.php:362 libraries/export/odt.php:307 -#: libraries/export/texytext.php:238 libraries/messages.inc.php:483 +#: libraries/export/texytext.php:238 libraries/messages.inc.php:479 #: pdf_schema.php:1268 pdf_schema.php:1289 tbl_printview.php:150 msgid "Links to" msgstr "Link ke" #: db_datadict.php:184 db_printview.php:112 libraries/export/htmlword.php:252 #: libraries/export/latex.php:365 libraries/export/odt.php:312 -#: libraries/export/texytext.php:241 libraries/messages.inc.php:163 +#: libraries/export/texytext.php:241 libraries/messages.inc.php:159 #: libraries/tbl_properties.inc.php:130 pdf_schema.php:1279 #: pdf_schema.php:1290 tbl_printview.php:152 msgid "Comments" @@ -167,7 +167,7 @@ msgstr "Komentar" #: db_datadict.php:267 libraries/Index.class.php:359 #: 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/messages.inc.php:559 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:555 #: libraries/mult_submits.inc.php:263 pdf_schema.php:1344 #: server_privileges.php:1529 server_privileges.php:1540 #: server_privileges.php:1850 server_privileges.php:1855 @@ -179,7 +179,7 @@ msgstr "Tidak" #: db_datadict.php:267 libraries/Index.class.php:360 #: libraries/Index.class.php:385 libraries/export/htmlword.php:322 #: libraries/export/latex.php:430 libraries/export/odt.php:368 -#: libraries/export/texytext.php:311 libraries/messages.inc.php:1257 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:1253 #: libraries/mult_submits.inc.php:45 libraries/mult_submits.inc.php:50 #: libraries/mult_submits.inc.php:55 libraries/mult_submits.inc.php:60 #: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:101 @@ -193,108 +193,108 @@ msgstr "Tidak" msgid "Yes" msgstr "Ya" -#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:670 +#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:666 #: tbl_printview.php:498 msgid "Print" msgstr "Cetak" -#: db_export.php:29 libraries/messages.inc.php:1226 +#: db_export.php:29 libraries/messages.inc.php:1222 msgid "View dump (schema) of database" msgstr "Tampilkan Dump (Skema) dari database" #: db_export.php:33 db_printview.php:96 db_qbe.php:102 db_structure.php:51 -#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:568 +#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:564 #: navigation.php:346 msgid "No tables found in database." msgstr "Tidak ada tabel dalam database." -#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:845 +#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:841 #: server_export.php:27 msgid "Select All" msgstr "Pilih semua" -#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1188 +#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1184 #: server_export.php:29 msgid "Unselect All" msgstr "Unselect semua" -#: db_operations.php:38 libraries/messages.inc.php:213 tbl_create.php:54 +#: db_operations.php:38 libraries/messages.inc.php:209 tbl_create.php:54 msgid "The database name is empty!" msgstr "Nama database kosong!" -#: db_operations.php:236 libraries/messages.inc.php:753 +#: db_operations.php:236 libraries/messages.inc.php:749 #, php-format msgid "Database %s has been renamed to %s" msgstr "Nama database %s telah diubah menjadi %s" -#: db_operations.php:240 libraries/messages.inc.php:178 +#: db_operations.php:240 libraries/messages.inc.php:174 #, php-format msgid "Database %s has been copied to %s" msgstr "Database %s telah disalin ke %s" -#: db_operations.php:410 libraries/messages.inc.php:236 +#: db_operations.php:410 libraries/messages.inc.php:232 msgid "Rename database to" msgstr "Ubah nama database menjadi" -#: db_operations.php:415 libraries/messages.inc.php:161 +#: db_operations.php:415 libraries/messages.inc.php:157 #: server_processlist.php:57 msgid "Command" msgstr "Perintah" -#: db_operations.php:425 libraries/messages.inc.php:58 tbl_change.php:1143 +#: db_operations.php:425 libraries/messages.inc.php:54 tbl_change.php:1143 msgid "and then" msgstr "selanjutnya" -#: db_operations.php:451 libraries/messages.inc.php:233 +#: db_operations.php:451 libraries/messages.inc.php:229 msgid "Copy database to" msgstr "Salin database ke" -#: db_operations.php:458 libraries/messages.inc.php:1043 +#: db_operations.php:458 libraries/messages.inc.php:1039 #: tbl_operations.php:526 tbl_tracking.php:388 msgid "Structure only" msgstr "Struktur saja" -#: db_operations.php:459 libraries/messages.inc.php:1041 +#: db_operations.php:459 libraries/messages.inc.php:1037 #: tbl_operations.php:527 tbl_tracking.php:390 msgid "Structure and data" msgstr "Struktur dan data" -#: db_operations.php:460 libraries/messages.inc.php:229 tbl_operations.php:528 +#: db_operations.php:460 libraries/messages.inc.php:225 tbl_operations.php:528 #: tbl_tracking.php:389 msgid "Data only" msgstr "Data saja" -#: db_operations.php:468 libraries/messages.inc.php:186 +#: db_operations.php:468 libraries/messages.inc.php:182 msgid "CREATE DATABASE before copying" msgstr "CIPTAKAN DATABASE sebelum menyalin" #: db_operations.php:471 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 -#: libraries/export/sql.php:82 libraries/messages.inc.php:30 +#: libraries/export/sql.php:82 libraries/messages.inc.php:26 #: tbl_operations.php:534 #, php-format msgid "Add %s" msgstr "Tambah %s" -#: db_operations.php:475 libraries/messages.inc.php:29 tbl_operations.php:297 +#: db_operations.php:475 libraries/messages.inc.php:25 tbl_operations.php:297 #: tbl_operations.php:536 msgid "Add AUTO_INCREMENT value" msgstr "Menambahkan nilai AUTO_INCREMENT" -#: db_operations.php:479 libraries/messages.inc.php:31 tbl_operations.php:543 +#: db_operations.php:479 libraries/messages.inc.php:27 tbl_operations.php:543 msgid "Add constraints" msgstr "Menambahkan pembatas" -#: db_operations.php:492 libraries/messages.inc.php:1059 +#: db_operations.php:492 libraries/messages.inc.php:1055 msgid "Switch to copied database" msgstr "Pindah ke database yang disalin" -#: db_operations.php:533 libraries/messages.inc.php:89 +#: db_operations.php:533 libraries/messages.inc.php:85 msgid "BLOB Repository" msgstr "Repositori BLOB" #: db_operations.php:536 db_tracking.php:76 libraries/common.lib.php:1350 -#: libraries/messages.inc.php:1037 libraries/server_links.inc.php:49 +#: libraries/messages.inc.php:1033 libraries/server_links.inc.php:49 #: server_processlist.php:59 tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "Status" @@ -306,11 +306,11 @@ msgctxt "BLOB repository" msgid "Enabled" msgstr "Aktif" -#: db_operations.php:548 libraries/messages.inc.php:93 +#: db_operations.php:548 libraries/messages.inc.php:89 msgid "Disable" msgstr "Tidak aktif" -#: db_operations.php:558 libraries/messages.inc.php:90 +#: db_operations.php:558 libraries/messages.inc.php:86 msgid "Damaged" msgstr "Rusak" @@ -327,12 +327,12 @@ msgctxt "BLOB repository" msgid "Disabled" msgstr "Tidak aktif" -#: db_operations.php:574 libraries/messages.inc.php:96 +#: db_operations.php:574 libraries/messages.inc.php:92 msgid "Enable" msgstr "Aktif" #: db_operations.php:598 libraries/Index.class.php:448 -#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:158 +#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:154 #: 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:361 @@ -341,7 +341,7 @@ msgstr "Aktif" msgid "Collation" msgstr "Penyortiran" -#: db_operations.php:609 libraries/messages.inc.php:742 main.php:316 +#: db_operations.php:609 libraries/messages.inc.php:738 main.php:316 #: pdf_schema.php:34 #, php-format msgid "" @@ -351,58 +351,58 @@ msgstr "" "Fasilitas penambahan untuk bekerja dengan tabel yang di-link di nonaktifkan. " "Untuk mengetahui sebabnya silakan klik %sdisini%s." -#: db_operations.php:645 libraries/messages.inc.php:264 pdf_pages.php:528 +#: db_operations.php:645 libraries/messages.inc.php:260 pdf_pages.php:528 msgid "Display PDF schema" msgstr "Tampilkan skema PDF" -#: db_operations.php:661 libraries/messages.inc.php:877 pdf_pages.php:529 +#: db_operations.php:661 libraries/messages.inc.php:873 pdf_pages.php:529 msgid "Show grid" msgstr "Tampilkan garis" -#: db_operations.php:664 libraries/messages.inc.php:874 pdf_pages.php:530 +#: db_operations.php:664 libraries/messages.inc.php:870 pdf_pages.php:530 msgid "Show color" msgstr "Tampilkan warna" -#: db_operations.php:666 libraries/messages.inc.php:998 pdf_pages.php:531 +#: db_operations.php:666 libraries/messages.inc.php:994 pdf_pages.php:531 msgid "Show dimension of tables" msgstr "Tampilkan ukuran dari tabel" -#: db_operations.php:669 libraries/messages.inc.php:52 pdf_pages.php:532 +#: db_operations.php:669 libraries/messages.inc.php:48 pdf_pages.php:532 msgid "Display all tables with the same width" msgstr "Tampilkan seluruh tabel dengan lebar yang sama?" -#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:227 +#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:223 #: pdf_pages.php:533 msgid "Data Dictionary" msgstr "Kamus Data" -#: db_operations.php:674 libraries/messages.inc.php:884 pdf_pages.php:534 +#: db_operations.php:674 libraries/messages.inc.php:880 pdf_pages.php:534 msgid "Only show keys" msgstr "" -#: db_operations.php:676 libraries/messages.inc.php:875 pdf_pages.php:535 +#: db_operations.php:676 libraries/messages.inc.php:871 pdf_pages.php:535 msgid "Data Dictionary Format" msgstr "Format dari kamus data" -#: db_operations.php:678 libraries/messages.inc.php:464 pdf_pages.php:537 +#: db_operations.php:678 libraries/messages.inc.php:460 pdf_pages.php:537 msgid "Landscape" msgstr "Landscape" -#: db_operations.php:679 libraries/messages.inc.php:663 pdf_pages.php:538 +#: db_operations.php:679 libraries/messages.inc.php:659 pdf_pages.php:538 msgid "Portrait" msgstr "Gambaran" -#: db_operations.php:682 libraries/messages.inc.php:599 pdf_pages.php:541 +#: db_operations.php:682 libraries/messages.inc.php:595 pdf_pages.php:541 msgid "Paper size" msgstr "Ukuran kertas" -#: db_operations.php:706 libraries/messages.inc.php:281 +#: db_operations.php:706 libraries/messages.inc.php:277 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 libraries/messages.inc.php:1087 +#: libraries/header.inc.php:126 libraries/messages.inc.php:1083 #: pdf_pages.php:405 server_privileges.php:1626 server_privileges.php:1682 #: server_privileges.php:1946 server_synchronize.php:423 #: server_synchronize.php:866 tbl_tracking.php:592 test/theme.php:75 @@ -410,176 +410,176 @@ msgid "Table" msgstr "Tabel" #: db_printview.php:105 libraries/db_structure.lib.php:56 -#: libraries/messages.inc.php:735 +#: libraries/messages.inc.php:731 msgid "Records" msgstr "Catatan" #: db_printview.php:109 libraries/db_structure.lib.php:67 -#: libraries/messages.inc.php:1003 tbl_indexes.php:190 +#: libraries/messages.inc.php:999 tbl_indexes.php:190 msgid "Size" msgstr "Ukuran" #: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 -#: libraries/export/sql.php:899 libraries/messages.inc.php:436 +#: libraries/export/sql.php:899 libraries/messages.inc.php:432 msgid "in use" msgstr "sedang digunakan" #: db_printview.php:187 libraries/db_info.inc.php:88 -#: libraries/export/sql.php:514 libraries/messages.inc.php:1032 +#: libraries/export/sql.php:514 libraries/messages.inc.php:1028 #: pdf_schema.php:1241 tbl_printview.php:434 tbl_structure.php:810 msgid "Creation" msgstr "Pembuatan" #: db_printview.php:196 libraries/db_info.inc.php:93 -#: libraries/export/sql.php:519 libraries/messages.inc.php:1036 +#: libraries/export/sql.php:519 libraries/messages.inc.php:1032 #: pdf_schema.php:1246 tbl_printview.php:444 tbl_structure.php:818 msgid "Last update" msgstr "Update terakhir" #: db_printview.php:205 libraries/db_info.inc.php:98 -#: libraries/export/sql.php:524 libraries/messages.inc.php:1031 +#: libraries/export/sql.php:524 libraries/messages.inc.php:1027 #: pdf_schema.php:1251 tbl_printview.php:454 tbl_structure.php:826 msgid "Last check" msgstr "Pemeriksaan terakhir" -#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1085 +#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1081 #, php-format msgid "%s table(s)" msgstr "tabel %s" #: db_qbe.php:29 libraries/display_tbl.lib.php:1981 -#: libraries/messages.inc.php:1051 libraries/sql_query_form.lib.php:140 +#: libraries/messages.inc.php:1047 libraries/sql_query_form.lib.php:140 #: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131 #: view_operations.php:62 msgid "Your SQL query has been executed successfully" msgstr "Sukses menjalankan perintah SQL" -#: db_qbe.php:42 libraries/messages.inc.php:371 +#: db_qbe.php:42 libraries/messages.inc.php:367 msgid "You have to choose at least one column to display" msgstr "Sekurang-kurangnya satu kolom harus dipilih untuk ditampilkan" #: db_qbe.php:200 libraries/db_structure.lib.php:104 -#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1014 +#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1010 msgid "Sort" msgstr "Urutkan" #: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111 #: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828 -#: libraries/messages.inc.php:69 server_databases.php:170 +#: libraries/messages.inc.php:65 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314 msgid "Ascending" msgstr "Urutan menaik" #: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119 #: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825 -#: libraries/messages.inc.php:251 server_databases.php:170 +#: libraries/messages.inc.php:247 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315 msgid "Descending" msgstr "Urutan menurun" #: db_qbe.php:264 db_tracking.php:78 libraries/display_tbl.lib.php:308 -#: libraries/messages.inc.php:888 tbl_change.php:277 tbl_tracking.php:597 +#: libraries/messages.inc.php:884 tbl_change.php:277 tbl_tracking.php:597 msgid "Show" msgstr "Tampilkan" -#: db_qbe.php:300 libraries/messages.inc.php:202 +#: db_qbe.php:300 libraries/messages.inc.php:198 msgid "Criteria" msgstr "Kriteria" #: db_qbe.php:353 db_qbe.php:435 db_qbe.php:527 db_qbe.php:558 -#: libraries/messages.inc.php:718 +#: libraries/messages.inc.php:714 msgid "Ins" msgstr "Sisipkan" #: db_qbe.php:357 db_qbe.php:439 db_qbe.php:524 db_qbe.php:555 -#: libraries/messages.inc.php:56 +#: libraries/messages.inc.php:52 msgid "And" msgstr "Dan" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:529 db_qbe.php:560 -#: libraries/messages.inc.php:717 +#: libraries/messages.inc.php:713 msgid "Del" 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/messages.inc.php:592 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:588 #: libraries/tbl_properties.inc.php:779 server_privileges.php:258 #: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288 msgid "Or" msgstr "Atau" -#: db_qbe.php:507 libraries/messages.inc.php:516 +#: db_qbe.php:507 libraries/messages.inc.php:512 msgid "Modify" msgstr "Ubah" -#: db_qbe.php:584 libraries/messages.inc.php:33 +#: db_qbe.php:584 libraries/messages.inc.php:29 msgid "Add/Delete Criteria Row" msgstr "Menambahkan/Hapus baris" -#: db_qbe.php:596 libraries/messages.inc.php:32 +#: db_qbe.php:596 libraries/messages.inc.php:28 msgid "Add/Delete Field Columns" msgstr "Menambahkan/Hapus kolom" -#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1192 +#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1188 msgid "Update Query" msgstr "Update proses pencarian" -#: db_qbe.php:617 libraries/messages.inc.php:1216 +#: db_qbe.php:617 libraries/messages.inc.php:1212 msgid "Use Tables" msgstr "Gunakan tabel" -#: db_qbe.php:640 libraries/messages.inc.php:723 +#: db_qbe.php:640 libraries/messages.inc.php:719 #, php-format msgid "SQL query on database %s:" msgstr "Pencarian SQL dalam database %s:" -#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:823 +#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:819 msgid "Submit Query" msgstr "Jalankan pencarian SQL" #: db_search.php:68 libraries/auth/config.auth.lib.php:84 #: libraries/auth/config.auth.lib.php:103 #: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52 -#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:26 +#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:22 msgid "Access denied" msgstr "Akses ditolak" -#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:836 +#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:832 msgid "at least one of the words" msgstr "sekurang-kurangnya salah satu kata" -#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:837 +#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:833 msgid "all words" msgstr "seluruh kata" -#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:838 +#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:834 msgid "the exact phrase" msgstr "kata-kata tepat" -#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:839 +#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:835 msgid "as regular expression" msgstr "sebagai regular expression" -#: db_search.php:242 libraries/messages.inc.php:840 +#: db_search.php:242 libraries/messages.inc.php:836 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Hasil pencarian untuk \"%s\" %s:" -#: db_search.php:260 libraries/messages.inc.php:579 +#: db_search.php:260 libraries/messages.inc.php:575 #, php-format msgid "%s match(es) inside table %s" 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/messages.inc.php:108 +#: db_structure.php:105 libraries/messages.inc.php:104 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468 msgid "Browse" msgstr "Browse" #: db_search.php:272 libraries/display_tbl.lib.php:1165 -#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:243 +#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:239 #: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406 #: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377 #: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216 @@ -587,45 +587,45 @@ msgstr "Browse" msgid "Delete" msgstr "Hapus" -#: db_search.php:285 libraries/messages.inc.php:580 +#: db_search.php:285 libraries/messages.inc.php:576 #, php-format msgid "Total: %s match(es)" msgstr "Jumlah: %s rekord" -#: db_search.php:299 libraries/messages.inc.php:832 +#: db_search.php:299 libraries/messages.inc.php:828 msgid "Search in database" msgstr "Cari dalam database" -#: db_search.php:302 libraries/messages.inc.php:835 +#: db_search.php:302 libraries/messages.inc.php:831 msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgstr "Kata atau nilai untuk dicari (wildcard: \"%\"):" -#: db_search.php:307 libraries/messages.inc.php:842 +#: db_search.php:307 libraries/messages.inc.php:838 msgid "Find:" msgstr "Cari:" -#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1017 +#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1013 msgid "Words are separated by a space character (\" \")." msgstr "Kata dipisahkan oleh karakter spasi (\" \")." -#: db_search.php:325 libraries/messages.inc.php:834 +#: db_search.php:325 libraries/messages.inc.php:830 msgid "Inside table(s):" msgstr "Cari dalam tabel:" -#: db_search.php:355 libraries/messages.inc.php:833 +#: db_search.php:355 libraries/messages.inc.php:829 msgid "Inside field:" 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/messages.inc.php:431 libraries/sql_query_form.lib.php:334 +#: libraries/messages.inc.php:427 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/db_links.inc.php:63 libraries/export/latex.php:337 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:1048 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:1044 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 #: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269 msgid "Structure" @@ -634,8 +634,8 @@ 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:1642 -#: libraries/db_links.inc.php:100 libraries/messages.inc.php:272 +#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/db_links.inc.php:100 libraries/messages.inc.php:268 #: 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 @@ -645,40 +645,40 @@ 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:1641 -#: libraries/messages.inc.php:284 libraries/mult_submits.inc.php:39 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: libraries/messages.inc.php:280 libraries/mult_submits.inc.php:39 #: libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Mengosongkan" -#: db_structure.php:316 libraries/messages.inc.php:1075 +#: db_structure.php:316 libraries/messages.inc.php:1071 #: libraries/tbl_links.inc.php:100 #, php-format msgid "Table %s has been emptied" msgstr "Tabel %s telah dikosongkan" -#: db_structure.php:326 libraries/messages.inc.php:1229 +#: db_structure.php:326 libraries/messages.inc.php:1225 #: libraries/tbl_links.inc.php:133 #, php-format msgid "View %s has been dropped" msgstr "Pandangan %s telah dibubarkan" -#: db_structure.php:326 libraries/messages.inc.php:1074 +#: db_structure.php:326 libraries/messages.inc.php:1070 #: libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "Tabel %s telah dihapus" -#: db_structure.php:333 libraries/messages.inc.php:1128 +#: db_structure.php:333 libraries/messages.inc.php:1124 msgid "Tracking is active." msgstr "Pelacakan aktif" -#: db_structure.php:335 libraries/messages.inc.php:1129 +#: db_structure.php:335 libraries/messages.inc.php:1125 msgid "Tracking is not active." msgstr "Pelacakan tidak aktif." #: db_structure.php:420 libraries/display_tbl.lib.php:1944 -#: libraries/messages.inc.php:1228 +#: libraries/messages.inc.php:1224 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -688,84 +688,84 @@ msgstr "" "sdokumentasi%s" #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 -#: libraries/messages.inc.php:1233 libraries/tbl_info.inc.php:66 +#: libraries/messages.inc.php:1229 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/messages.inc.php:773 libraries/server_links.inc.php:70 +#: libraries/messages.inc.php:769 libraries/server_links.inc.php:70 #: server_replication.php:33 server_replication.php:164 server_status.php:258 #, fuzzy msgid "Replication" msgstr "Tabel Relasi" -#: db_structure.php:489 libraries/messages.inc.php:1053 +#: db_structure.php:489 libraries/messages.inc.php:1049 msgid "Sum" msgstr "Jumlah" #: db_structure.php:496 libraries/StorageEngine.class.php:356 -#: libraries/messages.inc.php:239 +#: libraries/messages.inc.php:235 #, 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 #: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086 -#: libraries/messages.inc.php:1243 libraries/mult_submits.inc.php:16 +#: libraries/messages.inc.php:1239 libraries/mult_submits.inc.php:16 #: server_databases.php:346 server_databases.php:351 #: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465 msgid "With selected:" msgstr "yang ditandai:" #: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: libraries/messages.inc.php:148 server_databases.php:348 +#: libraries/messages.inc.php:144 server_databases.php:348 #: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459 msgid "Check All" msgstr "Pilih semua" #: db_structure.php:531 libraries/display_tbl.lib.php:2077 -#: libraries/messages.inc.php:1184 libraries/replication_gui.lib.php:33 +#: libraries/messages.inc.php:1180 libraries/replication_gui.lib.php:33 #: server_databases.php:350 server_privileges.php:533 #: server_privileges.php:1564 tbl_structure.php:463 msgid "Uncheck All" msgstr "Balik pilihan" -#: db_structure.php:536 libraries/messages.inc.php:150 +#: db_structure.php:536 libraries/messages.inc.php:146 msgid "Check tables having overhead" msgstr "Periksa Overheaded" #: db_structure.php:547 db_structure.php:548 db_structure.php:599 -#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:672 +#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:668 #: libraries/mult_submits.inc.php:28 tbl_structure.php:493 #: tbl_structure.php:495 msgid "Print view" msgstr "Pandangan cetak" -#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:153 +#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:149 #: libraries/mult_submits.inc.php:42 tbl_operations.php:579 msgid "Check table" msgstr "Periksa tabel" -#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:590 +#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:586 #: libraries/mult_submits.inc.php:47 tbl_operations.php:619 #: tbl_structure.php:710 tbl_structure.php:712 msgid "Optimize table" msgstr "Optimasikan tabel" -#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:758 +#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:754 #: libraries/mult_submits.inc.php:52 tbl_operations.php:609 msgid "Repair table" msgstr "Perbaiki tabel" -#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:55 +#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:51 #: libraries/mult_submits.inc.php:57 tbl_operations.php:599 msgid "Analyze table" msgstr "Analisa tabel" #: db_structure.php:557 db_structure.php:558 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/messages.inc.php:310 +#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:306 #: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84 #: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109 #: server_privileges.php:1341 setup/frames/menu.inc.php:22 @@ -773,7 +773,7 @@ msgstr "Analisa tabel" msgid "Export" msgstr "Ekspor" -#: db_tracking.php:66 libraries/messages.inc.php:1151 +#: db_tracking.php:66 libraries/messages.inc.php:1147 msgid "Tracked tables" msgstr "Tabel-tabel yang dilacak" @@ -781,7 +781,7 @@ msgstr "Tabel-tabel yang dilacak" #: 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/header_printview.inc.php:58 libraries/messages.inc.php:212 +#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:208 #: navigation.php:233 server_databases.php:169 server_privileges.php:1621 #: server_privileges.php:1682 server_privileges.php:1940 #: server_processlist.php:56 server_synchronize.php:1179 @@ -789,76 +789,76 @@ msgstr "Tabel-tabel yang dilacak" msgid "Database" msgstr "Database" -#: db_tracking.php:73 libraries/messages.inc.php:1146 +#: db_tracking.php:73 libraries/messages.inc.php:1142 msgid "Last version" msgstr "Versi terakhir" -#: db_tracking.php:74 libraries/messages.inc.php:1145 tbl_tracking.php:594 +#: db_tracking.php:74 libraries/messages.inc.php:1141 tbl_tracking.php:594 msgid "Created" msgstr "Dibuat" -#: db_tracking.php:75 libraries/messages.inc.php:1147 tbl_tracking.php:595 +#: db_tracking.php:75 libraries/messages.inc.php:1143 tbl_tracking.php:595 msgid "Updated" msgstr "Diperbarui" #: db_tracking.php:77 libraries/Index.class.php:440 -#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:27 +#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:23 #: server_databases.php:203 server_privileges.php:1503 #: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187 msgid "Action" msgstr "Aksi" -#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:247 +#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:243 msgid "Delete tracking data for this table" msgstr "Hapus pelacakan data untuk tabel ini" -#: db_tracking.php:106 libraries/messages.inc.php:1142 tbl_tracking.php:548 +#: db_tracking.php:106 libraries/messages.inc.php:1138 tbl_tracking.php:548 #: tbl_tracking.php:606 tbl_tracking.php:613 msgid "active" msgstr "aktif" -#: db_tracking.php:108 libraries/messages.inc.php:1143 tbl_tracking.php:550 +#: db_tracking.php:108 libraries/messages.inc.php:1139 tbl_tracking.php:550 #: tbl_tracking.php:608 tbl_tracking.php:610 msgid "not active" msgstr "tidak aktif" -#: db_tracking.php:121 libraries/messages.inc.php:1160 +#: db_tracking.php:121 libraries/messages.inc.php:1156 msgid "Versions" msgstr "Versi" -#: db_tracking.php:122 libraries/messages.inc.php:1132 tbl_tracking.php:379 +#: db_tracking.php:122 libraries/messages.inc.php:1128 tbl_tracking.php:379 #: tbl_tracking.php:624 msgid "Tracking report" msgstr "Laporan pelacakan" -#: db_tracking.php:123 libraries/messages.inc.php:1144 tbl_tracking.php:251 +#: db_tracking.php:123 libraries/messages.inc.php:1140 tbl_tracking.php:251 #: tbl_tracking.php:624 msgid "Structure snapshot" msgstr "Struktur snapshot" -#: db_tracking.php:152 libraries/messages.inc.php:1154 +#: db_tracking.php:152 libraries/messages.inc.php:1150 msgid "Untracked tables" msgstr "Batal lacak tabel" -#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1153 +#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1149 #: tbl_structure.php:529 tbl_structure.php:531 msgid "Track table" msgstr "Lacak tabel" -#: db_tracking.php:200 libraries/messages.inc.php:1121 +#: db_tracking.php:200 libraries/messages.inc.php:1117 msgid "Database Log" msgstr "Log Database" -#: export.php:62 libraries/messages.inc.php:312 +#: export.php:62 libraries/messages.inc.php:308 msgid "Selected export type has to be saved in file!" msgstr "" -#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:567 +#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:563 #, php-format msgid "Insufficient space to save the file %s." msgstr "Tidak cukup ruang untuk menyimpan %s." -#: export.php:294 libraries/messages.inc.php:324 +#: export.php:294 libraries/messages.inc.php:320 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -866,17 +866,17 @@ msgstr "" "File %s sudah ada pada server. Gantikan nama file atau periksa pilihan " "Overwrite." -#: export.php:298 export.php:302 libraries/messages.inc.php:562 +#: export.php:298 export.php:302 libraries/messages.inc.php:558 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Webserver tidak memilik hak (permission) untuk menyimpan file %s." -#: export.php:629 libraries/messages.inc.php:276 +#: export.php:629 libraries/messages.inc.php:272 #, php-format msgid "Dump has been saved to file %s." msgstr "Dump (Skema) disimpan pada file %s." -#: import.php:60 libraries/messages.inc.php:1202 +#: import.php:60 libraries/messages.inc.php:1198 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation%" @@ -886,14 +886,14 @@ msgstr "" "sdokumentasi%s untuk mendapatkan solusi tentang batasan ini." #: import.php:279 import.php:332 libraries/File.class.php:849 -#: libraries/File.class.php:961 libraries/messages.inc.php:325 +#: libraries/File.class.php:961 libraries/messages.inc.php:321 msgid "File could not be read" msgstr "Gagal membaca File" #: import.php:287 import.php:296 import.php:315 import.php:324 #: libraries/File.class.php:1031 libraries/File.class.php:1039 #: libraries/File.class.php:1055 libraries/File.class.php:1063 -#: libraries/messages.inc.php:1189 +#: libraries/messages.inc.php:1185 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -902,7 +902,7 @@ msgstr "" "Anda mencoba untuk memuat file dengan kompresi yang tidak didukung (%s). " "Dukungan belum diimplementasi atau tidak aktif di dalam konfigurasi Anda." -#: import.php:337 libraries/messages.inc.php:547 +#: import.php:337 libraries/messages.inc.php:543 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -910,41 +910,41 @@ msgid "" msgstr "" #: import.php:372 libraries/display_import.lib.php:24 -#: libraries/messages.inc.php:125 +#: libraries/messages.inc.php:121 msgid "Could not load import plugins, please check your installation!" msgstr "Tidak dapat memuat plugin import, silahkan periksa instalasi Anda!" -#: import.php:397 libraries/messages.inc.php:102 +#: import.php:397 libraries/messages.inc.php:98 msgid "The bookmark has been deleted." msgstr "Penyimpanan telah dihapus." -#: import.php:401 libraries/messages.inc.php:879 +#: import.php:401 libraries/messages.inc.php:875 msgid "Showing bookmark" msgstr "" -#: import.php:403 libraries/messages.inc.php:101 +#: import.php:403 libraries/messages.inc.php:97 #, php-format msgid "Bookmark %s created" msgstr "" -#: import.php:409 import.php:415 libraries/messages.inc.php:407 +#: import.php:409 import.php:415 libraries/messages.inc.php:403 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" -#: import.php:424 libraries/messages.inc.php:1107 +#: import.php:424 libraries/messages.inc.php:1103 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: index.php:190 libraries/messages.inc.php:553 +#: index.php:190 libraries/messages.inc.php:549 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" "Lebih mudah untuk menggunakan phpMyAdmin dengan browser yang mendukung " "frame." -#: js/messages.php:25 libraries/messages.inc.php:155 +#: js/messages.php:25 libraries/messages.inc.php:151 #: server_synchronize.php:345 server_synchronize.php:357 #: server_synchronize.php:373 server_synchronize.php:380 #: server_synchronize.php:739 server_synchronize.php:767 @@ -952,118 +952,118 @@ msgstr "" msgid "Click to select" msgstr "Klik untuk memilih" -#: js/messages.php:26 libraries/messages.inc.php:156 +#: js/messages.php:26 libraries/messages.inc.php:152 msgid "Click to unselect" msgstr "Klik untuk batal memilih" #: js/messages.php:27 libraries/import.lib.php:103 -#: libraries/messages.inc.php:550 sql.php:89 +#: libraries/messages.inc.php:546 sql.php:89 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Perintah \"HAPUS DATABASE\" dimatikan." -#: js/messages.php:30 libraries/messages.inc.php:270 +#: js/messages.php:30 libraries/messages.inc.php:266 #: libraries/mult_submits.inc.php:258 sql.php:188 msgid "Do you really want to " msgstr "Apakah anda ingin " -#: js/messages.php:31 libraries/messages.inc.php:271 +#: js/messages.php:31 libraries/messages.inc.php:267 #: libraries/mult_submits.inc.php:258 sql.php:172 msgid "You are about to DESTROY a complete database!" msgstr "Anda akan MENGHAPUS SELURUH database!" -#: js/messages.php:34 libraries/messages.inc.php:94 +#: js/messages.php:34 libraries/messages.inc.php:90 msgid "You are about to DISABLE a BLOB Repository!" msgstr "Anda akan MENONAKTIFKAN repositori BLOB!" -#: js/messages.php:35 libraries/messages.inc.php:91 +#: js/messages.php:35 libraries/messages.inc.php:87 #, php-format msgid "Are you sure you want to disable all BLOB references for database %s?" msgstr "" -#: js/messages.php:38 libraries/messages.inc.php:342 +#: js/messages.php:38 libraries/messages.inc.php:338 msgid "Missing value in the form!" msgstr "Data dalam form kurang !" -#: js/messages.php:39 libraries/messages.inc.php:570 +#: js/messages.php:39 libraries/messages.inc.php:566 msgid "This is not a number!" msgstr "Ini bukan angka!" -#: js/messages.php:42 libraries/messages.inc.php:380 +#: js/messages.php:42 libraries/messages.inc.php:376 msgid "The host name is empty!" msgstr "Nama Host harus diisi!" -#: js/messages.php:43 libraries/messages.inc.php:1208 +#: js/messages.php:43 libraries/messages.inc.php:1204 msgid "The user name is empty!" msgstr "Nama pengguna masih kosong!" -#: js/messages.php:44 libraries/messages.inc.php:607 +#: js/messages.php:44 libraries/messages.inc.php:603 #: server_privileges.php:1197 user_password.php:70 msgid "The password is empty!" msgstr "Kata Sandi kosong!" -#: js/messages.php:45 libraries/messages.inc.php:609 +#: js/messages.php:45 libraries/messages.inc.php:605 #: server_privileges.php:1195 user_password.php:73 msgid "The passwords aren't the same!" msgstr "Kata Sandi tidak sama!" -#: js/messages.php:49 libraries/messages.inc.php:123 pmd_general.php:342 +#: js/messages.php:49 libraries/messages.inc.php:119 pmd_general.php:342 #: pmd_general.php:379 msgid "Cancel" msgstr "Batal" -#: js/messages.php:52 libraries/messages.inc.php:514 +#: js/messages.php:52 libraries/messages.inc.php:510 msgid "Modifications have been saved" msgstr "Modifikasi telah disimpan" -#: js/messages.php:53 libraries/messages.inc.php:741 +#: js/messages.php:53 libraries/messages.inc.php:737 #, fuzzy msgid "Relation deleted" msgstr "Tampilan relasi" -#: js/messages.php:54 libraries/messages.inc.php:340 +#: js/messages.php:54 libraries/messages.inc.php:336 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:55 libraries/messages.inc.php:434 +#: js/messages.php:55 libraries/messages.inc.php:430 #, fuzzy msgid "Internal relation added" msgstr "Relasi internal" -#: js/messages.php:56 libraries/messages.inc.php:299 +#: js/messages.php:56 libraries/messages.inc.php:295 msgid "Error: Relation not added." msgstr "Kesalahan: Relasi tidak ditambahkan." -#: js/messages.php:57 libraries/messages.inc.php:300 +#: js/messages.php:57 libraries/messages.inc.php:296 msgid "Error: relation already exists." msgstr "Kesalahan: relasi sudah ada." -#: js/messages.php:58 libraries/messages.inc.php:302 +#: js/messages.php:58 libraries/messages.inc.php:298 msgid "Error saving coordinates for Designer." msgstr "Kesalahan menyimpan koordinat untuk Perancang." -#: js/messages.php:59 libraries/messages.inc.php:351 +#: js/messages.php:59 libraries/messages.inc.php:347 #: libraries/relation.lib.php:107 msgid "General relation features" msgstr "Ciri-ciri dari General Relation" -#: js/messages.php:59 libraries/messages.inc.php:260 +#: js/messages.php:59 libraries/messages.inc.php:256 #: libraries/relation.lib.php:101 libraries/relation.lib.php:108 msgid "Disabled" msgstr "Tidak aktif" -#: js/messages.php:60 libraries/messages.inc.php:850 +#: js/messages.php:60 libraries/messages.inc.php:846 msgid "Select referenced key" msgstr "" -#: js/messages.php:61 libraries/messages.inc.php:848 +#: js/messages.php:61 libraries/messages.inc.php:844 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:62 libraries/messages.inc.php:653 +#: js/messages.php:62 libraries/messages.inc.php:649 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:63 libraries/messages.inc.php:142 pmd_general.php:77 +#: js/messages.php:63 libraries/messages.inc.php:138 pmd_general.php:77 #: tbl_relation.php:548 msgid "Choose field to display" msgstr "Pilih Field untuk ditampilkan" @@ -1083,9 +1083,9 @@ msgid "Prev" msgstr "Sebelumnya" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2332 -#: libraries/common.lib.php:2335 libraries/display_tbl.lib.php:338 -#: libraries/messages.inc.php:543 server_binlog.php:205 server_binlog.php:207 +#: js/messages.php:77 libraries/common.lib.php:2344 +#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: libraries/messages.inc.php:539 server_binlog.php:205 server_binlog.php:207 #: tbl_printview.php:424 tbl_structure.php:802 msgid "Next" msgstr "Berikutnya" @@ -1160,27 +1160,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1543 +#: js/messages.php:97 libraries/common.lib.php:1555 msgid "Jan" msgstr "Januari" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1545 +#: js/messages.php:99 libraries/common.lib.php:1557 msgid "Feb" msgstr "Februari" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1547 +#: js/messages.php:101 libraries/common.lib.php:1559 msgid "Mar" msgstr "Maret" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1549 +#: js/messages.php:103 libraries/common.lib.php:1561 msgid "Apr" msgstr "April" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1551 +#: js/messages.php:105 libraries/common.lib.php:1563 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1188,37 +1188,37 @@ msgid "May" msgstr "Mei" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1553 +#: js/messages.php:107 libraries/common.lib.php:1565 msgid "Jun" msgstr "Juni" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1555 +#: js/messages.php:109 libraries/common.lib.php:1567 msgid "Jul" msgstr "Juli" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1557 +#: js/messages.php:111 libraries/common.lib.php:1569 msgid "Aug" msgstr "Agustus" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1559 +#: js/messages.php:113 libraries/common.lib.php:1571 msgid "Sep" msgstr "September" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1561 +#: js/messages.php:115 libraries/common.lib.php:1573 msgid "Oct" msgstr "Oktober" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1563 +#: js/messages.php:117 libraries/common.lib.php:1575 msgid "Nov" msgstr "Nopember" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1565 +#: js/messages.php:119 libraries/common.lib.php:1577 msgid "Dec" msgstr "Desember" @@ -1259,37 +1259,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1568 +#: js/messages.php:132 libraries/common.lib.php:1580 msgid "Sun" msgstr "Minggu" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1570 +#: js/messages.php:134 libraries/common.lib.php:1582 msgid "Mon" msgstr "Senin" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1572 +#: js/messages.php:136 libraries/common.lib.php:1584 msgid "Tue" msgstr "Selasa" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1574 +#: js/messages.php:138 libraries/common.lib.php:1586 msgid "Wed" msgstr "Rabu" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1576 +#: js/messages.php:140 libraries/common.lib.php:1588 msgid "Thu" msgstr "Kamis" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1578 +#: js/messages.php:142 libraries/common.lib.php:1590 msgid "Fri" msgstr "Jumat" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1580 +#: js/messages.php:144 libraries/common.lib.php:1592 msgid "Sat" msgstr "Sabtu" @@ -1365,79 +1365,79 @@ msgstr "sedang digunakan" msgid "Second" msgstr "per detik" -#: libraries/Config.class.php:1015 libraries/messages.inc.php:338 +#: libraries/Config.class.php:1015 libraries/messages.inc.php:334 msgid "Font size" msgstr "" #: libraries/File.class.php:344 libraries/File.class.php:432 #: libraries/File.class.php:569 libraries/File.class.php:708 -#: libraries/messages.inc.php:1201 +#: libraries/messages.inc.php:1197 msgid "Unknown error in file upload." msgstr "Kesalahan yang tidak diketahui dalam upload file." -#: libraries/File.class.php:414 libraries/messages.inc.php:1198 +#: libraries/File.class.php:414 libraries/messages.inc.php:1194 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "File yang di upload melewati ketentuan upload_max_filesize dalam php.ini." -#: libraries/File.class.php:417 libraries/messages.inc.php:1197 +#: libraries/File.class.php:417 libraries/messages.inc.php:1193 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" "File yang di upload melewati MAX_FILE_SIZE yang ditentukan dalam form HTML." -#: libraries/File.class.php:420 libraries/messages.inc.php:1200 +#: libraries/File.class.php:420 libraries/messages.inc.php:1196 msgid "The uploaded file was only partially uploaded." msgstr "File yang di upload hanya ter-upload sebagian." -#: libraries/File.class.php:423 libraries/messages.inc.php:1199 +#: libraries/File.class.php:423 libraries/messages.inc.php:1195 msgid "Missing a temporary folder." msgstr "Folder sementara tidak ditemukan." -#: libraries/File.class.php:426 libraries/messages.inc.php:1195 +#: libraries/File.class.php:426 libraries/messages.inc.php:1191 msgid "Failed to write file to disk." msgstr "Gagal menulis file ke disk" -#: libraries/File.class.php:429 libraries/messages.inc.php:1196 +#: libraries/File.class.php:429 libraries/messages.inc.php:1192 msgid "File upload stopped by extension." msgstr "Upload file dihentikan oleh ekstensi." -#: libraries/File.class.php:908 libraries/messages.inc.php:319 +#: libraries/File.class.php:908 libraries/messages.inc.php:315 #, fuzzy msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "Kemungkinan hanya perkiraan saja. Lihat FAQ 3.11" -#: libraries/Index.class.php:428 libraries/messages.inc.php:554 +#: libraries/Index.class.php:428 libraries/messages.inc.php:550 #: tbl_relation.php:529 msgid "No index defined!" msgstr "Indeks belum ditentukan!" -#: libraries/Index.class.php:433 libraries/messages.inc.php:411 +#: libraries/Index.class.php:433 libraries/messages.inc.php:407 #: server_databases.php:132 tbl_tracking.php:316 msgid "Indexes" msgstr "Indeks" -#: libraries/Index.class.php:444 libraries/messages.inc.php:1186 +#: libraries/Index.class.php:444 libraries/messages.inc.php:1182 #: 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:475 tbl_tracking.php:322 msgid "Unique" msgstr "Unik" -#: libraries/Index.class.php:445 libraries/messages.inc.php:596 +#: libraries/Index.class.php:445 libraries/messages.inc.php:592 #: tbl_tracking.php:323 msgid "Packed" msgstr "" -#: libraries/Index.class.php:447 libraries/messages.inc.php:131 +#: libraries/Index.class.php:447 libraries/messages.inc.php:127 #: tbl_tracking.php:325 msgid "Cardinality" msgstr "Bilangan Pokok" -#: libraries/Index.class.php:450 libraries/messages.inc.php:162 +#: libraries/Index.class.php:450 libraries/messages.inc.php:158 #: tbl_tracking.php:279 tbl_tracking.php:328 msgid "Comment" msgstr "Komentar" @@ -1445,29 +1445,29 @@ msgstr "Komentar" #: libraries/Index.class.php:466 libraries/common.lib.php:616 #: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:280 pdf_pages.php:280 +#: libraries/messages.inc.php:276 pdf_pages.php:280 #: setup/frames/index.inc.php:124 setup/lib/messages.inc.php:352 #: tbl_row_action.php:69 msgid "Edit" msgstr "Ubah" -#: libraries/Index.class.php:472 libraries/messages.inc.php:666 +#: libraries/Index.class.php:472 libraries/messages.inc.php:662 msgid "The primary key has been dropped" msgstr "Kunci utama telah dihapus" -#: libraries/Index.class.php:476 libraries/messages.inc.php:413 +#: libraries/Index.class.php:476 libraries/messages.inc.php:409 #, php-format msgid "Index %s has been dropped" msgstr "Indeks %s telah dihapus" -#: libraries/Index.class.php:576 libraries/messages.inc.php:412 +#: libraries/Index.class.php:576 libraries/messages.inc.php:408 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "" -#: libraries/List_Database.class.php:431 libraries/messages.inc.php:218 +#: libraries/List_Database.class.php:431 libraries/messages.inc.php:214 #: libraries/server_links.inc.php:41 server_databases.php:88 #: server_privileges.php:1621 setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" @@ -1493,86 +1493,86 @@ msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." msgstr[0] "Tidak ada baris yang dipilih" -#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:549 +#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:545 msgid "" "There is no detailed status information available for this storage engine." msgstr "" "Informasi secara rinci tentang keadaan mesin penyimpan ini tidak ditemukan." -#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:291 +#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:287 #, php-format msgid "%s is available on this MySQL server." msgstr "%s siap untuk digunakan pada server MySQL ini." -#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:292 +#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:288 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s dimatikan untuk server MySQL ini." -#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:294 +#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:290 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "Server MySQL ini tidak mendukung mesin penyimpan %s." -#: libraries/Table.class.php:1019 libraries/messages.inc.php:443 +#: libraries/Table.class.php:1019 libraries/messages.inc.php:439 msgid "Invalid database" msgstr "" -#: libraries/Table.class.php:1033 libraries/messages.inc.php:450 +#: libraries/Table.class.php:1033 libraries/messages.inc.php:446 #: tbl_get_field.php:26 msgid "Invalid table name" msgstr "" -#: libraries/Table.class.php:1048 libraries/messages.inc.php:301 +#: libraries/Table.class.php:1048 libraries/messages.inc.php:297 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "Kesalahan mengganti nama table %1$s ke %2$s" -#: libraries/Table.class.php:1132 libraries/messages.inc.php:754 +#: libraries/Table.class.php:1132 libraries/messages.inc.php:750 #, php-format msgid "Table %s has been renamed to %s" msgstr "Nama tabel %s telah diubah menjadi %s" -#: libraries/Theme.class.php:162 libraries/messages.inc.php:1099 +#: libraries/Theme.class.php:162 libraries/messages.inc.php:1095 #, php-format msgid "No valid image path for theme %s found!" msgstr "" -#: libraries/Theme.class.php:384 libraries/messages.inc.php:1097 +#: libraries/Theme.class.php:384 libraries/messages.inc.php:1093 msgid "No preview available." msgstr "" -#: libraries/Theme.class.php:387 libraries/messages.inc.php:1089 +#: libraries/Theme.class.php:387 libraries/messages.inc.php:1085 msgid "take it" msgstr "ambil" -#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1096 +#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1092 #, php-format msgid "Default theme %s not found!" msgstr "" -#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1098 +#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1094 #, php-format msgid "Theme %s not found!" msgstr "" -#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1100 +#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1096 #, php-format msgid "Theme path not found for theme %s!" msgstr "" -#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1101 +#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1097 #: test/theme.php:161 themes.php:21 themes.php:41 msgid "Theme / Style" msgstr "Desain Penampilan" -#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:172 +#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:168 msgid "Cannot connect: invalid settings." msgstr "Koneksi gagal: Stelan tidak berlaku." #: libraries/auth/config.auth.lib.php:92 #: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65 -#: libraries/messages.inc.php:1238 test/theme.php:152 +#: libraries/messages.inc.php:1234 test/theme.php:152 #, php-format msgid "Welcome to %s" msgstr "Selamat Datang di %s" @@ -1597,104 +1597,104 @@ msgstr "" "kecocokannya dengan informasi yang telah diberikan oleh administrator server " "MySQL." -#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:488 +#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:484 msgid "Log in" msgstr "Login" #: libraries/auth/cookie.auth.lib.php:246 -#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:659 +#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:655 #: libraries/navigation_header.inc.php:93 #: libraries/navigation_header.inc.php:95 msgid "phpMyAdmin documentation" msgstr "Dokumentasi phpMyAdmin" #: libraries/auth/cookie.auth.lib.php:258 -#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:492 +#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:488 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:493 +#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:489 msgid "Server:" msgstr "Server" -#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:494 +#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:490 msgid "Username:" msgstr "Nama Pengguna:" -#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:491 +#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:487 msgid "Password:" msgstr "Kata Sandi:" -#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:854 +#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:850 msgid "Server Choice" msgstr "Pilihan Server" #: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 -#: libraries/messages.inc.php:177 +#: libraries/messages.inc.php:173 msgid "Cookies must be enabled past this point." msgstr "Mulai dari sini Cookies harus diaktifkan." #: libraries/auth/cookie.auth.lib.php:671 -#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:489 +#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:485 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" #: libraries/auth/cookie.auth.lib.php:675 -#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:544 +#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:540 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "Tidak ada aktifitas selama %s detik atau lebih. Silakan login kembali" #: libraries/auth/cookie.auth.lib.php:685 #: libraries/auth/cookie.auth.lib.php:687 -#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:126 +#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:122 msgid "Cannot log in to the MySQL server" msgstr "Gagal login ke MySQL server" -#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1245 +#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1241 msgid "Wrong username/password. Access denied." msgstr "Nama Pengguna/Kata Sandi salah. Akses ditolak." #: libraries/auth/swekey/swekey.auth.lib.php:118 -#: libraries/messages.inc.php:1057 +#: libraries/messages.inc.php:1053 #, php-format msgid "File %s does not contain any key id" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:157 #: libraries/auth/swekey/swekey.auth.lib.php:180 -#: libraries/messages.inc.php:1056 +#: libraries/messages.inc.php:1052 msgid "Hardware authentication failed" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:166 -#: libraries/messages.inc.php:1058 +#: libraries/messages.inc.php:1054 msgid "No valid authentication key plugged" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:202 -#: libraries/messages.inc.php:1055 +#: libraries/messages.inc.php:1051 msgid "Authenticating..." msgstr "" -#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1230 +#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1226 msgid "View image" msgstr "Tampilan View" -#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:652 +#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:648 msgid "Play audio" msgstr "" -#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1232 +#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1228 msgid "View video" msgstr "Video View" -#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:269 +#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:265 msgid "Download file" msgstr "Unduh file" -#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:128 +#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:124 msgid "" "Couldn't load the iconv or recode extension needed for charset conversion. " "Either configure PHP to enable these extensions or disable charset " @@ -1706,7 +1706,7 @@ msgstr "" #: libraries/charset_conversion.lib.php:79 #: libraries/charset_conversion.lib.php:90 -#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:130 +#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:126 msgid "" "Couldn't use the iconv, libiconv, or recode_string functions, although the " "necessary extensions appear to be loaded. Check your PHP configuration." @@ -1714,7 +1714,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/messages.inc.php:170 +#: libraries/common.inc.php:583 libraries/messages.inc.php:166 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!" @@ -1748,22 +1748,22 @@ msgstr "" msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:636 libraries/messages.inc.php:448 +#: libraries/common.inc.php:636 libraries/messages.inc.php:444 #, 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/messages.inc.php:856 libraries/select_server.lib.php:41 +#: libraries/messages.inc.php:852 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/messages.inc.php:437 +#: libraries/common.inc.php:823 libraries/messages.inc.php:433 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.lib.php:147 libraries/messages.inc.php:499 +#: libraries/common.lib.php:147 libraries/messages.inc.php:495 #, php-format msgid "Max: %s%s" msgstr "Batas ukuran: %s%s" @@ -1783,7 +1783,7 @@ msgstr "id" #: libraries/common.lib.php:428 libraries/common.lib.php:430 #: libraries/common.lib.php:432 libraries/common.lib.php:448 #: libraries/common.lib.php:450 libraries/dbg/setup.php:25 -#: libraries/display_export.lib.php:164 libraries/messages.inc.php:267 +#: libraries/display_export.lib.php:164 libraries/messages.inc.php:263 #: libraries/relation.lib.php:97 libraries/sql_query_form.lib.php:451 #: libraries/sql_query_form.lib.php:454 main.php:229 pdf_pages.php:37 #: pdf_pages.php:43 pdf_pages.php:49 pdf_pages.php:54 @@ -1793,55 +1793,55 @@ msgstr "Dokumentasi" #: libraries/common.lib.php:581 libraries/core.lib.php:234 #: libraries/core.lib.php:263 libraries/import.lib.php:134 -#: libraries/messages.inc.php:297 pdf_schema.php:32 pdf_schema.php:232 +#: libraries/messages.inc.php:293 pdf_schema.php:32 pdf_schema.php:232 #: tbl_change.php:1027 tbl_operations.php:213 tbl_relation.php:290 #: view_operations.php:62 msgid "Error" msgstr "Error" #: libraries/common.lib.php:595 libraries/header_printview.inc.php:61 -#: libraries/messages.inc.php:1023 server_processlist.php:60 +#: libraries/messages.inc.php:1019 server_processlist.php:60 #: server_status.php:247 msgid "SQL query" msgstr "Pencarian SQL" -#: libraries/common.lib.php:634 libraries/messages.inc.php:538 +#: libraries/common.lib.php:634 libraries/messages.inc.php:534 msgid "MySQL said: " msgstr "MySQL menyatakan: " -#: libraries/common.lib.php:667 libraries/messages.inc.php:76 +#: libraries/common.lib.php:667 libraries/messages.inc.php:72 #: pdf_schema.php:241 user_password.php:115 msgid "Back" msgstr "Kembali" -#: libraries/common.lib.php:1177 libraries/messages.inc.php:309 +#: libraries/common.lib.php:1177 libraries/messages.inc.php:305 #: setup/lib/messages.inc.php:353 msgid "Explain SQL" msgstr "Terangkan SQL" -#: libraries/common.lib.php:1180 libraries/messages.inc.php:551 +#: libraries/common.lib.php:1180 libraries/messages.inc.php:547 msgid "Skip Explain SQL" msgstr "Melewati keterangan SQL" -#: libraries/common.lib.php:1212 libraries/messages.inc.php:563 +#: libraries/common.lib.php:1212 libraries/messages.inc.php:559 msgid "Without PHP Code" msgstr "Kode PHP tidak ditemukan" -#: libraries/common.lib.php:1215 libraries/messages.inc.php:649 +#: libraries/common.lib.php:1215 libraries/messages.inc.php:645 #: setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "Ciptakan kode PHP" -#: libraries/common.lib.php:1233 libraries/messages.inc.php:737 +#: libraries/common.lib.php:1233 libraries/messages.inc.php:733 #: server_status.php:341 setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "Menyegarkan" -#: libraries/common.lib.php:1242 libraries/messages.inc.php:575 +#: libraries/common.lib.php:1242 libraries/messages.inc.php:571 msgid "Skip Validate SQL" msgstr "Melewati pengesahan (validation) SQL" -#: libraries/common.lib.php:1245 libraries/messages.inc.php:1220 +#: libraries/common.lib.php:1245 libraries/messages.inc.php:1216 #: setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "Mengesahkan (validate) SQL" @@ -1857,11 +1857,11 @@ msgid "Inline" msgstr "Mesin" #: libraries/common.lib.php:1332 libraries/common.lib.php:1347 -#: libraries/messages.inc.php:713 +#: libraries/messages.inc.php:709 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1351 libraries/messages.inc.php:1108 +#: libraries/common.lib.php:1351 libraries/messages.inc.php:1104 #: libraries/tbl_triggers.lib.php:28 server_processlist.php:58 msgid "Time" msgstr "Jangka Waktu" @@ -1895,46 +1895,56 @@ msgstr "PB" msgid "EiB" msgstr "EB" +#. l10n: Thousands separator +#: libraries/common.lib.php:1417 +msgid "," +msgstr "." + +#. l10n: Decimal separator +#: libraries/common.lib.php:1419 +msgid "." +msgstr "," + #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1584 +#: libraries/common.lib.php:1596 #: libraries/transformations/text_plain__dateformat.inc.php:28 msgid "%B %d, %Y at %I:%M %p" msgstr "%d. %B %Y jam %H:%M" -#: libraries/common.lib.php:1886 +#: libraries/common.lib.php:1898 #, 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:2301 libraries/common.lib.php:2304 -#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:664 +#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:660 #: server_status.php:608 msgid "Begin" msgstr "Awal" -#: libraries/common.lib.php:2302 libraries/common.lib.php:2305 -#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:665 +#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:661 #: server_binlog.php:168 server_binlog.php:170 msgid "Previous" msgstr "Sebelumnya" -#: libraries/common.lib.php:2333 libraries/common.lib.php:2336 -#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:289 +#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:285 msgid "End" msgstr "Terakhir" -#: libraries/common.lib.php:2409 libraries/messages.inc.php:455 +#: libraries/common.lib.php:2421 libraries/messages.inc.php:451 #, php-format msgid "Jump to database "%s"." msgstr "Lompat langsung ke database "%s"." -#: libraries/common.lib.php:2429 libraries/messages.inc.php:461 +#: libraries/common.lib.php:2441 libraries/messages.inc.php:457 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/core.lib.php:286 libraries/dbg/setup.php:22 -#: libraries/messages.inc.php:127 +#: libraries/messages.inc.php:123 #, php-format msgid "" "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " @@ -1942,75 +1952,75 @@ msgid "" msgstr "gagal loading ekstensi %s,
mohon periksa kembali konfigurasi PHP." #: libraries/db_events.inc.php:20 libraries/db_events.inc.php:22 -#: libraries/export/sql.php:415 libraries/messages.inc.php:306 +#: libraries/export/sql.php:415 libraries/messages.inc.php:302 msgid "Events" msgstr "Kejadian" #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 -#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:541 +#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:537 #: libraries/tbl_triggers.lib.php:27 setup/frames/index.inc.php:112 msgid "Name" msgstr "Nama" -#: libraries/db_links.inc.php:45 libraries/messages.inc.php:216 +#: libraries/db_links.inc.php:45 libraries/messages.inc.php:212 #, php-format msgid "Database %s has been dropped." msgstr "Database %s telah dihapus." #: libraries/db_links.inc.php:57 libraries/db_links.inc.php:58 -#: libraries/db_links.inc.php:59 libraries/messages.inc.php:234 +#: libraries/db_links.inc.php:59 libraries/messages.inc.php:230 msgid "Database seems to be empty!" msgstr "Database kelihatannya kosong" -#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1025 +#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1021 #: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60 #: querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1152 +#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1148 #: libraries/tbl_links.inc.php:69 msgid "Tracking" msgstr "Pelacakan" -#: libraries/db_links.inc.php:86 libraries/messages.inc.php:719 +#: libraries/db_links.inc.php:86 libraries/messages.inc.php:715 msgid "Query" msgstr "Cari berdasarkan data contoh" -#: libraries/db_links.inc.php:91 libraries/messages.inc.php:253 +#: libraries/db_links.inc.php:91 libraries/messages.inc.php:249 msgid "Designer" msgstr "Perancang" -#: libraries/db_links.inc.php:98 libraries/messages.inc.php:397 +#: libraries/db_links.inc.php:98 libraries/messages.inc.php:393 #: libraries/server_links.inc.php:88 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:104 libraries/messages.inc.php:587 +#: libraries/db_links.inc.php:104 libraries/messages.inc.php:583 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" msgstr "Operasi" -#: libraries/db_links.inc.php:111 libraries/messages.inc.php:709 +#: libraries/db_links.inc.php:111 libraries/messages.inc.php:705 #: libraries/server_links.inc.php:66 server_privileges.php:72 #: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117 msgid "Privileges" msgstr "Hak Akses" #: libraries/db_routines.inc.php:30 libraries/db_routines.inc.php:32 -#: libraries/messages.inc.php:812 +#: libraries/messages.inc.php:808 msgid "Routines" msgstr "" -#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:811 +#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:807 msgid "Return type" msgstr "" #: libraries/db_structure.lib.php:57 libraries/display_tbl.lib.php:1848 -#: libraries/messages.inc.php:65 +#: libraries/messages.inc.php:61 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -2018,43 +2028,43 @@ msgstr "" "Kemungkinan hanya perkiraan saja. Lihat [a@./Documentation." "html#faq3_11@Dokumentasi]FAQ 3.11[/a]" -#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:593 +#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:589 #: server_databases.php:142 tbl_printview.php:336 tbl_structure.php:683 msgid "Overhead" msgstr "Kelebihan (Overhead)" #: libraries/dbi/mysql.dbi.lib.php:112 libraries/dbi/mysqli.dbi.lib.php:124 -#: libraries/messages.inc.php:176 +#: libraries/messages.inc.php:172 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Koneksi untuk controluser yang di definisikan di konfigurasi Anda gagal." #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 -#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:855 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:851 msgid "The server is not responding" msgstr "Server tidak menjawab" #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:1010 +#: libraries/messages.inc.php:1006 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 libraries/messages.inc.php:255 +#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:251 #: tbl_structure.php:609 msgid "Details..." msgstr "Rincian..." -#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:143 +#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:139 #: main.php:91 user_password.php:111 user_password.php:129 msgid "Change password" msgstr "Ubah Kata Sandi" -#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:561 +#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:557 #: libraries/replication_gui.lib.php:341 server_privileges.php:768 msgid "No Password" msgstr "Kata Sandi belum ditetapkan" -#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:610 +#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:606 #: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60 #: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335 #: libraries/replication_gui.lib.php:345 server_privileges.php:757 @@ -2063,13 +2073,13 @@ msgstr "Kata Sandi belum ditetapkan" msgid "Password" msgstr "Kata Sandi" -#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:806 +#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:802 #: libraries/replication_gui.lib.php:349 libraries/replication_gui.lib.php:352 #: server_privileges.php:776 server_privileges.php:779 msgid "Re-type" msgstr "Ketik ulang" -#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:608 +#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:604 msgid "Password Hashing" msgstr "Pengernaian Kata Sandi (Password Hashing)" @@ -2079,90 +2089,90 @@ msgstr "Pengernaian Kata Sandi (Password Hashing)" msgid "MySQL 4.0 compatible" msgstr "MySQL 4.0 compatible" -#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:353 +#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:349 #: libraries/replication_gui.lib.php:356 server_privileges.php:783 msgid "Generate Password" msgstr "Menghasilkan kata sandi" -#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:352 +#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:348 #: libraries/replication_gui.lib.php:359 server_privileges.php:786 msgid "Generate" msgstr "Menghasilkan" #: libraries/display_create_database.lib.php:22 -#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:189 +#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:185 msgid "Create new database" msgstr "Ciptakan database baru" -#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:185 +#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:181 msgid "Create" msgstr "Ciptakan" -#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:564 +#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:560 #: server_privileges.php:74 server_privileges.php:1388 #: server_replication.php:35 msgid "No Privileges" msgstr "Tidak ada Hak Akses (privilege)" -#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:445 +#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:441 msgid "Table must have at least one field." msgstr "Tabel wajib mengandung sesedikitnya satu Field." -#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:190 +#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:186 #, php-format msgid "Create table on database %s" msgstr "Ciptakan tabel baru pada database %s" -#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:577 +#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:573 msgid "Number of fields" msgstr "" -#: libraries/display_export.lib.php:42 libraries/messages.inc.php:124 +#: libraries/display_export.lib.php:42 libraries/messages.inc.php:120 msgid "Could not load export plugins, please check your installation!" msgstr "Tidak dapat memuat plugin export, silahkan periksa instalasi Anda!" -#: libraries/display_export.lib.php:107 libraries/messages.inc.php:277 +#: libraries/display_export.lib.php:107 libraries/messages.inc.php:273 #, php-format msgid "Dump %s row(s) starting at record # %s" msgstr "Dump %s baris bermula pada baris %s." -#: libraries/display_export.lib.php:115 libraries/messages.inc.php:274 +#: libraries/display_export.lib.php:115 libraries/messages.inc.php:270 msgid "Dump all rows" msgstr "Dump semua row" -#: libraries/display_export.lib.php:125 libraries/messages.inc.php:852 +#: libraries/display_export.lib.php:125 libraries/messages.inc.php:848 #: setup/lib/messages.inc.php:82 msgid "Save as file" msgstr "Kirimkan ke" -#: libraries/display_export.lib.php:134 libraries/messages.inc.php:828 +#: libraries/display_export.lib.php:134 libraries/messages.inc.php:824 #, php-format msgid "Save on server in %s directory" msgstr "Simpan pada server dalam direktori %s" -#: libraries/display_export.lib.php:142 libraries/messages.inc.php:594 +#: libraries/display_export.lib.php:142 libraries/messages.inc.php:590 #: setup/lib/messages.inc.php:90 msgid "Overwrite existing file(s)" msgstr "Timpahkan (Overwrite) file(s) yang ada" -#: libraries/display_export.lib.php:148 libraries/messages.inc.php:330 +#: libraries/display_export.lib.php:148 libraries/messages.inc.php:326 msgid "File name template" msgstr "Konvensi nama file" -#: libraries/display_export.lib.php:152 libraries/messages.inc.php:327 +#: libraries/display_export.lib.php:152 libraries/messages.inc.php:323 #, fuzzy msgid "server name" msgstr "Nama pengguna" -#: libraries/display_export.lib.php:155 libraries/messages.inc.php:326 +#: libraries/display_export.lib.php:155 libraries/messages.inc.php:322 msgid "database name" msgstr "" -#: libraries/display_export.lib.php:158 libraries/messages.inc.php:328 +#: libraries/display_export.lib.php:158 libraries/messages.inc.php:324 msgid "table name" msgstr "" -#: libraries/display_export.lib.php:162 libraries/messages.inc.php:329 +#: libraries/display_export.lib.php:162 libraries/messages.inc.php:325 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2170,24 +2180,24 @@ msgid "" "3$s. Other text will be kept as is." msgstr "" -#: libraries/display_export.lib.php:202 libraries/messages.inc.php:331 +#: libraries/display_export.lib.php:202 libraries/messages.inc.php:327 msgid "remember template" msgstr "ingat konvensi" #: libraries/display_export.lib.php:210 libraries/display_import.lib.php:178 -#: libraries/display_import.lib.php:191 libraries/messages.inc.php:145 +#: libraries/display_import.lib.php:191 libraries/messages.inc.php:141 #: libraries/sql_query_form.lib.php:549 msgid "Character set of the file:" msgstr "Penyusunan karakter dalam file:" -#: libraries/display_export.lib.php:235 libraries/messages.inc.php:166 +#: libraries/display_export.lib.php:235 libraries/messages.inc.php:162 #: setup/lib/messages.inc.php:84 msgid "Compression" 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/messages.inc.php:558 +#: libraries/export/sql.php:868 libraries/messages.inc.php:554 #: libraries/tbl_properties.inc.php:575 server_privileges.php:1836 #: server_processlist.php:75 msgid "None" @@ -2211,257 +2221,257 @@ msgstr "Dikompress dengan GZip" msgid "bzipped" msgstr "\"Dikompress dengan BZip\"" -#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1018 +#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1014 msgid "SQL compatibility mode" msgstr "" -#: libraries/display_import.lib.php:67 libraries/messages.inc.php:398 +#: libraries/display_import.lib.php:67 libraries/messages.inc.php:394 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " "browsers." msgstr "" -#: libraries/display_import.lib.php:77 libraries/messages.inc.php:406 +#: libraries/display_import.lib.php:77 libraries/messages.inc.php:402 msgid "The file is being processed, please be patient." msgstr "" -#: libraries/display_import.lib.php:99 libraries/messages.inc.php:408 +#: libraries/display_import.lib.php:99 libraries/messages.inc.php:404 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." msgstr "" -#: libraries/display_import.lib.php:126 libraries/messages.inc.php:333 +#: libraries/display_import.lib.php:126 libraries/messages.inc.php:329 msgid "File to import" msgstr "" -#: libraries/display_import.lib.php:137 libraries/messages.inc.php:486 +#: libraries/display_import.lib.php:137 libraries/messages.inc.php:482 #: libraries/sql_query_form.lib.php:524 msgid "Location of the text file" msgstr "dari File" -#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1203 +#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1199 msgid "File uploads are not allowed on this server." msgstr "Upload file tidak diizinkan di server ini." -#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1235 +#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1231 #: libraries/sql_query_form.lib.php:533 tbl_change.php:1028 msgid "The directory you set for upload work cannot be reached" msgstr "" "Direktori yang telah ditetapkan untuk meng-upload tidak dapat dihubungi" -#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1236 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1232 #: libraries/sql_query_form.lib.php:536 tbl_change.php:1031 msgid "web server upload directory" msgstr "direktori upload pada web-server" -#: libraries/display_import.lib.php:212 libraries/messages.inc.php:167 +#: libraries/display_import.lib.php:212 libraries/messages.inc.php:163 #, php-format msgid "Imported file compression will be automatically detected from: %s" msgstr "Kompresi file yang di impor akan otomatis di deteksi dari: %s" -#: libraries/display_import.lib.php:219 libraries/messages.inc.php:600 +#: libraries/display_import.lib.php:219 libraries/messages.inc.php:596 msgid "Partial import" msgstr "" -#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1105 +#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1101 #, php-format msgid "" "Previous import timed out, after resubmitting will continue from position %d." msgstr "" -#: libraries/display_import.lib.php:232 libraries/messages.inc.php:51 +#: libraries/display_import.lib.php:232 libraries/messages.inc.php:47 msgid "" "Allow the interruption of an import in case the script detects it is close " "to the PHP timeout limit. This might be good way to import large files, " "however it can break transactions." msgstr "" -#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1004 +#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1000 #: setup/lib/messages.inc.php:161 msgid "Number of records (queries) to skip from start" msgstr "" -#: libraries/display_import.lib.php:255 libraries/messages.inc.php:396 +#: libraries/display_import.lib.php:255 libraries/messages.inc.php:392 #: setup/lib/messages.inc.php:160 msgid "Format of imported file" msgstr "" #: libraries/display_select_lang.lib.php:45 -#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:465 +#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:461 #: setup/frames/index.inc.php:70 msgid "Language" msgstr "" -#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:447 +#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:443 #, php-format msgid "%d is not valid row number." msgstr "%d bukanlah nomor baris yang berlaku." -#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:814 +#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:810 msgid "row(s) starting from record #" msgstr "baris dimulai dari rekord #" -#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:817 +#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:813 msgid "horizontal" msgstr "horisontal" -#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:816 +#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:812 msgid "horizontal (rotated headers)" msgstr "horisontal (rotated headers)" -#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:819 +#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:815 msgid "vertical" msgstr "vertikal" -#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:818 +#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:814 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "diatur dengan urutan %s dan mengulang header setelah %s sel." -#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:495 +#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:491 msgid "This operation could take a long time. Proceed anyway?" msgstr "Aktifitas ini membutuhkan waktu yang lama. Tetap melanjutkan?" -#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1012 +#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1008 msgid "Sort by key" msgstr "Urut berdasarkan kunci" #: libraries/display_tbl.lib.php:555 libraries/import.lib.php:1082 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:591 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:587 #: tbl_select.php:267 tbl_structure.php:754 #, fuzzy msgid "Options" msgstr "Operasi" #: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:570 -#: libraries/messages.inc.php:601 +#: libraries/messages.inc.php:597 msgid "Partial Texts" msgstr "Teks yang disingkat" #: libraries/display_tbl.lib.php:561 libraries/display_tbl.lib.php:574 -#: libraries/messages.inc.php:346 +#: libraries/messages.inc.php:342 msgid "Full Texts" msgstr "Teks Penuh" -#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:739 +#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:735 #, fuzzy msgid "Relational key" msgstr "Skema Relational" -#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:738 +#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:734 msgid "Relational display field" msgstr "" -#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:872 +#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:868 msgid "Show binary contents" msgstr "" -#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:873 +#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:869 msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:871 +#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:867 msgid "Show binary contents as HEX" msgstr "" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:375 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:371 #: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320 msgid "Hide" msgstr "" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:508 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:504 #: libraries/tbl_properties.inc.php:144 transformation_overview.php:47 msgid "Browser transformation" msgstr "Transformasi Browser" #: libraries/display_tbl.lib.php:1126 libraries/display_tbl.lib.php:1130 -#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:308 +#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:304 msgid "Execute bookmarked query" msgstr "Eksekusikan pencarian dengan mengikuti penunjuk halaman" #: libraries/display_tbl.lib.php:1145 libraries/display_tbl.lib.php:1157 -#: libraries/messages.inc.php:244 +#: libraries/messages.inc.php:240 msgid "The row has been deleted" msgstr "Baris telah dihapus" #: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056 -#: libraries/messages.inc.php:460 server_processlist.php:71 +#: libraries/messages.inc.php:456 server_processlist.php:71 #: tbl_row_action.php:64 msgid "Kill" msgstr "Tutup" -#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:849 +#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:845 msgid "in query" msgstr "dalam susunan pemeriksaan" -#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:881 +#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:877 msgid "Showing rows" msgstr "Tampilan baris" -#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1113 +#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1109 msgid "total" msgstr "jumlah" -#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:727 +#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:723 #: sql.php:524 #, php-format msgid "Query took %01.4f sec" msgstr "pencarian membutuhkan waktu %01.4f detik" -#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:135 +#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:131 #: 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:471 msgid "Change" msgstr "Ubah" -#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:724 +#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:720 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:671 +#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:667 msgid "Print view (with full texts)" msgstr "Pandangan cetak (dengan teks lengkap)" -#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:482 +#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:478 msgid "Link not found" msgstr "Link tidak ditemukan" -#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1224 +#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1220 #: main.php:228 msgid "Version information" msgstr "Informasi tentang versi" -#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:423 +#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:419 msgid "Data home directory" msgstr "Home direktori data" -#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:424 +#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:420 msgid "The common part of the directory path for all InnoDB data files." msgstr "Bagian lazim dari Directory Path untuk seluruh file data milik InnoDB." -#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:422 +#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:418 msgid "Data files" msgstr "File data" -#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:418 +#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:414 msgid "Autoextend increment" msgstr "Pembesaran otomatis" -#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:419 +#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:415 msgid "" " The increment size for extending the size of an autoextending tablespace " "when it becomes full." msgstr "" " Ukuran bertahap dari pembesaran ruang tabel otomatis bila ia mempenuh." -#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:420 +#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:416 msgid "Buffer pool size" msgstr "Ukuran penampungan buffer" -#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:421 +#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:417 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." @@ -2469,87 +2479,87 @@ msgstr "" "Ukuran Memory Buffer yang digunakan oleh InnoDB untuk meng-cache data dan " "indeks dari tabelnya." -#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:112 +#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:108 msgid "Buffer Pool" msgstr "Penampungan Buffer" -#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:426 +#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:422 #: server_status.php:306 msgid "InnoDB Status" msgstr "Status dari InnoDB" -#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:113 +#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:109 msgid "Buffer Pool Usage" msgstr "Penggunaan penampungan Buffer" -#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1114 +#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1110 #: server_databases.php:137 server_databases.php:305 server_status.php:414 #: server_status.php:475 server_status.php:496 tbl_printview.php:351 #: tbl_structure.php:697 msgid "Total" msgstr "Jumlah" -#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:425 +#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:421 msgid "pages" msgstr "halaman" -#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:343 +#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:339 msgid "Free pages" msgstr "Halaman yang bebas" -#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:259 +#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:255 msgid "Dirty pages" msgstr "Halaman yang kotor" -#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:230 +#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:226 msgid "Pages containing data" msgstr "Halaman yang berisi data" -#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:598 +#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:594 msgid "Pages to be flushed" msgstr "Halaman yang akan di-flush" -#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:119 +#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:115 msgid "Busy pages" msgstr "Halaman yang sibuk" -#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:467 +#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:463 msgid "Latched pages" msgstr "Halaman yang dipalang" -#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:111 +#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:107 msgid "Buffer Pool Activity" msgstr "Aktifitas penampungan Buffer" -#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:731 +#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:727 msgid "Read requests" msgstr "Permintaan pembacaan" -#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1244 +#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1240 msgid "Write requests" msgstr "Permintaan penulisan" -#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:115 +#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:111 msgid "Read misses" msgstr "Pembacaan yang kelewat" -#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:117 +#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:113 msgid "Write waits" msgstr "Penundaan penulisan" -#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:114 +#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:110 msgid "Read misses in %" msgstr "Pembacaan yang kelewat dalam %" -#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:116 +#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:112 msgid "Write waits in %" msgstr "Penundaan penulisan dalam %" -#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:522 +#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:518 msgid "Data pointer size" msgstr "Ukuran petunjuk data (Data Pointer)" -#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:523 +#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:519 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." @@ -2557,11 +2567,11 @@ msgstr "" "Ukuran standar dari petunjuk (Pointer) dalam Byte untuk digunakan oleh " "CREATE TABLE untuk tabel jenis MyISAM bila pilihan MAX_ROWS tidak ditentukan." -#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:528 +#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:524 msgid "Automatic recovery mode" msgstr "Modus restorasi otomatis" -#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:529 +#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:525 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." @@ -2570,11 +2580,11 @@ msgstr "" "sesuai dengan pengaturan melalui pilihan --myisam-recover pada startup " "server." -#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:527 +#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:523 msgid "Maximum size for temporary sort files" msgstr "Ukuran maksimal untuk penyortiran file sementara" -#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:526 +#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:522 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " @@ -2584,11 +2594,11 @@ msgstr "" "MySQL pada saat pembuatan ulang sebuah indeks MyISAM (sewaktu menjalankan " "REPAIR TABLE, ALTER TABLE, atau LOAD DATA INFILE)." -#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:525 +#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:521 msgid "Maximum size for temporary files on index creation" msgstr "Ukuran maksimal untuk file sementara pada pembuatan indeks" -#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:524 +#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:520 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " @@ -2598,11 +2608,11 @@ msgstr "" "dibandingkan dengan ukuran Key Cache yang disebut disini, disarankan untuk " "menggunakan metode Key Cache." -#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:531 +#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:527 msgid "Repair threads" msgstr "Perbaiki proses" -#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:530 +#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:526 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." @@ -2611,11 +2621,11 @@ msgstr "" "dalam modus paralel (setiap indeks memiliki proses tersendiri) selama " "perbaikan dijalankan oleh proses penyortiran." -#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:533 +#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:529 msgid "Sort buffer size" msgstr "Urutkan ukuran Buffer" -#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:532 +#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:528 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." @@ -2623,72 +2633,72 @@ msgstr "" "Buffer yang dialokasikan bila menyortir indeks MyISAM pada saat REPAIR TABLE " "atau pada saat membuat indeks dengan cara CREATE INDEX atau cara ALTER TABLE." -#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:620 +#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:616 msgid "Index cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:619 +#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:615 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." msgstr "" -#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:630 +#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:626 msgid "Record cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:629 +#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:625 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " "to the handle data (.xtd) and row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:624 +#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:620 msgid "Log cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:623 +#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:619 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:628 +#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:624 msgid "Log file threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:627 +#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:623 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:634 +#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:630 msgid "Transaction buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:633 +#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:629 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." msgstr "" -#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:611 +#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:607 msgid "Checkpoint frequency" msgstr "" -#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:612 +#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:608 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." msgstr "" -#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:615 +#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:611 msgid "Data log threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:616 +#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:612 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -2696,49 +2706,49 @@ msgid "" "that can be stored in the database." msgstr "" -#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:618 +#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:614 msgid "Garbage threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:617 +#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:613 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." msgstr "" -#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:622 +#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:618 #, fuzzy msgid "Log buffer size" msgstr "Urutkan ukuran Buffer" -#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:621 +#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:617 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " "required to write a data log." msgstr "" -#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:613 +#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:609 msgid "Data file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:614 +#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:610 msgid "The grow size of the handle data (.xtd) files." msgstr "" -#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:632 +#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:628 msgid "Row file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:631 +#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:627 msgid "The grow size of the row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:626 +#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:622 msgid "Log file count" msgstr "" -#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:625 +#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:621 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -2748,19 +2758,19 @@ msgstr "" #: libraries/export/htmlword.php:132 libraries/export/odt.php:168 #: libraries/export/sql.php:881 libraries/export/texytext.php:130 -#: libraries/messages.inc.php:275 +#: libraries/messages.inc.php:271 msgid "Dumping data for table" msgstr "Dumping data untuk tabel" #: libraries/export/htmlword.php:185 libraries/export/odt.php:238 #: libraries/export/sql.php:785 libraries/export/texytext.php:177 -#: libraries/messages.inc.php:1086 +#: libraries/messages.inc.php:1082 msgid "Table structure for table" msgstr "Struktur dari tabel" #: libraries/export/latex.php:125 libraries/export/sql.php:232 #: libraries/export/xml.php:102 libraries/header_printview.inc.php:57 -#: libraries/messages.inc.php:381 libraries/replication_gui.lib.php:63 +#: libraries/messages.inc.php:377 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:170 libraries/replication_gui.lib.php:265 #: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325 #: server_privileges.php:692 server_privileges.php:695 @@ -2772,189 +2782,189 @@ msgstr "Host" #: libraries/export/latex.php:130 libraries/export/sql.php:233 #: libraries/export/xml.php:107 libraries/header_printview.inc.php:59 -#: libraries/messages.inc.php:354 +#: libraries/messages.inc.php:350 msgid "Generation Time" msgstr "Waktu pembuatan" #: libraries/export/latex.php:131 libraries/export/sql.php:235 -#: libraries/export/xml.php:108 libraries/messages.inc.php:864 main.php:186 +#: libraries/export/xml.php:108 libraries/messages.inc.php:860 main.php:186 msgid "Server version" msgstr "Versi Server" #: libraries/export/latex.php:132 libraries/export/sql.php:236 -#: libraries/export/xml.php:109 libraries/messages.inc.php:651 +#: libraries/export/xml.php:109 libraries/messages.inc.php:647 msgid "PHP Version" msgstr "Versi PHP" #: libraries/export/latex.php:201 libraries/export/sql.php:868 -#: libraries/messages.inc.php:226 server_databases.php:127 +#: libraries/messages.inc.php:222 server_databases.php:127 #: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317 #: tbl_structure.php:666 msgid "Data" msgstr "Data" -#: libraries/export/odt.php:318 libraries/messages.inc.php:506 +#: libraries/export/odt.php:318 libraries/messages.inc.php:502 #: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "Tipe MIME" -#: libraries/export/sql.php:387 libraries/messages.inc.php:711 +#: libraries/export/sql.php:387 libraries/messages.inc.php:707 #, fuzzy msgid "Procedures" msgstr "Proses Aktif" -#: libraries/export/sql.php:401 libraries/messages.inc.php:348 +#: libraries/export/sql.php:401 libraries/messages.inc.php:344 #, fuzzy msgid "Functions" msgstr "Fungsi" -#: libraries/export/sql.php:618 libraries/messages.inc.php:174 +#: libraries/export/sql.php:618 libraries/messages.inc.php:170 msgid "Constraints for dumped tables" msgstr "Ketidakleluasaan untuk tabel pelimpahan (Dumped Tables)" -#: libraries/export/sql.php:627 libraries/messages.inc.php:175 +#: libraries/export/sql.php:627 libraries/messages.inc.php:171 msgid "Constraints for table" msgstr "Ketidakleluasaan untuk tabel" -#: libraries/export/sql.php:727 libraries/messages.inc.php:512 +#: libraries/export/sql.php:727 libraries/messages.inc.php:508 msgid "MIME TYPES FOR TABLE" msgstr "TIPE MIME UNTUK TABEL" -#: libraries/export/sql.php:739 libraries/messages.inc.php:743 +#: libraries/export/sql.php:739 libraries/messages.inc.php:739 msgid "RELATIONS FOR TABLE" msgstr "RELASI UNTUK TABEL" -#: libraries/export/sql.php:796 libraries/messages.inc.php:1178 +#: libraries/export/sql.php:796 libraries/messages.inc.php:1174 #: libraries/tbl_triggers.lib.php:19 msgid "Triggers" msgstr "Trigger" -#: libraries/export/sql.php:808 libraries/messages.inc.php:1046 +#: libraries/export/sql.php:808 libraries/messages.inc.php:1042 #, fuzzy msgid "Structure for view" msgstr "Struktur saja" -#: libraries/export/sql.php:817 libraries/messages.inc.php:1029 +#: libraries/export/sql.php:817 libraries/messages.inc.php:1025 msgid "Stand-in structure for view" msgstr "" #: libraries/footer.inc.php:184 libraries/footer.inc.php:195 -#: libraries/footer.inc.php:198 libraries/messages.inc.php:586 +#: libraries/footer.inc.php:198 libraries/messages.inc.php:582 msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/header.inc.php:115 libraries/messages.inc.php:542 +#: libraries/header.inc.php:115 libraries/messages.inc.php:538 #, fuzzy msgid "New table" msgstr "Tabel tidak ditemukan" #: libraries/header_printview.inc.php:50 libraries/header_printview.inc.php:55 -#: libraries/messages.inc.php:1024 +#: libraries/messages.inc.php:1020 msgid "SQL result" msgstr "Hasil SQL" -#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:350 +#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:346 msgid "Generated by" msgstr "Diciptakan oleh" #: libraries/header_printview.inc.php:63 libraries/import.lib.php:145 -#: libraries/messages.inc.php:820 navigation.php:652 navigation.php:674 +#: libraries/messages.inc.php:816 navigation.php:652 navigation.php:674 #: server_databases.php:122 tbl_printview.php:394 tbl_structure.php:366 #: tbl_structure.php:778 msgid "Rows" msgstr "Baris" -#: libraries/import.lib.php:150 libraries/messages.inc.php:285 sql.php:520 +#: libraries/import.lib.php:150 libraries/messages.inc.php:281 sql.php:520 #: tbl_change.php:181 tbl_get_field.php:35 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL balikkan hasil kosong (a.k. baris yang kosong)." -#: libraries/import.lib.php:1078 libraries/messages.inc.php:399 +#: libraries/import.lib.php:1078 libraries/messages.inc.php:395 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1079 libraries/messages.inc.php:400 +#: libraries/import.lib.php:1079 libraries/messages.inc.php:396 msgid "View a structure`s contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1080 libraries/messages.inc.php:401 +#: libraries/import.lib.php:1080 libraries/messages.inc.php:397 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1081 libraries/messages.inc.php:402 +#: libraries/import.lib.php:1081 libraries/messages.inc.php:398 msgid "Edit its structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1084 libraries/messages.inc.php:362 +#: libraries/import.lib.php:1084 libraries/messages.inc.php:358 #, fuzzy msgid "Go to database" msgstr "Database tidak ditemukan" #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:869 +#: libraries/messages.inc.php:865 msgid "settings" msgstr "" -#: libraries/import.lib.php:1106 libraries/messages.inc.php:363 +#: libraries/import.lib.php:1106 libraries/messages.inc.php:359 msgid "Go to table" msgstr "" -#: libraries/import.lib.php:1109 libraries/messages.inc.php:1047 +#: libraries/import.lib.php:1109 libraries/messages.inc.php:1043 #, fuzzy msgid "structure" msgstr "Struktur" -#: libraries/import.lib.php:1115 libraries/messages.inc.php:364 +#: libraries/import.lib.php:1115 libraries/messages.inc.php:360 msgid "Go to view" msgstr "" #: libraries/import/csv.php:58 libraries/import/csv.php:70 #: libraries/import/csv.php:74 libraries/import/csv.php:78 -#: libraries/messages.inc.php:442 +#: libraries/messages.inc.php:438 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "" -#: libraries/import/csv.php:59 libraries/messages.inc.php:323 +#: libraries/import/csv.php:59 libraries/messages.inc.php:319 msgid "Fields terminated by" msgstr "Fields diputus oleh" -#: libraries/import/csv.php:71 libraries/messages.inc.php:320 +#: libraries/import/csv.php:71 libraries/messages.inc.php:316 msgid "Fields enclosed by" msgstr "Field ditutup dengan" -#: libraries/import/csv.php:75 libraries/messages.inc.php:321 +#: libraries/import/csv.php:75 libraries/messages.inc.php:317 msgid "Fields escaped by" msgstr "Field dikembalikan oleh" -#: libraries/import/csv.php:79 libraries/messages.inc.php:481 +#: libraries/import/csv.php:79 libraries/messages.inc.php:477 msgid "Lines terminated by" msgstr "Garis diputuskan oleh" -#: libraries/import/csv.php:119 libraries/messages.inc.php:439 +#: libraries/import/csv.php:119 libraries/messages.inc.php:435 #, php-format msgid "Invalid column (%s) specified!" msgstr "" #: libraries/import/csv.php:177 libraries/import/csv.php:424 -#: libraries/messages.inc.php:441 +#: libraries/messages.inc.php:437 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/import/csv.php:312 libraries/messages.inc.php:440 +#: libraries/import/csv.php:312 libraries/messages.inc.php:436 #, php-format msgid "Invalid field count in CSV input on line %d." msgstr "" -#: libraries/import/ldi.php:55 libraries/messages.inc.php:446 +#: libraries/import/ldi.php:55 libraries/messages.inc.php:442 msgid "This plugin does not support compressed imports!" msgstr "" #: libraries/import/xml.php:74 libraries/import/xml.php:130 -#: libraries/messages.inc.php:1247 +#: libraries/messages.inc.php:1243 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -2985,399 +2995,389 @@ msgstr "" msgid "ltr" msgstr "ltr" -#. l10n: Thousands separator -#: libraries/messages.inc.php:21 -msgid "," -msgstr "." - -#. l10n: Decimal separator -#: libraries/messages.inc.php:23 -msgid "." -msgstr "," - -#: libraries/messages.inc.php:25 server_status.php:461 +#: libraries/messages.inc.php:21 server_status.php:461 msgid "Aborted" msgstr "Pembatalan" -#: libraries/messages.inc.php:28 main.php:68 +#: libraries/messages.inc.php:24 main.php:68 msgid "Actions" msgstr "Tindakan" -#: libraries/messages.inc.php:34 libraries/tbl_properties.inc.php:780 +#: libraries/messages.inc.php:30 libraries/tbl_properties.inc.php:780 #: tbl_structure.php:543 #, php-format msgid "Add %s field(s)" msgstr "Menambahkan %s field(s)" -#: libraries/messages.inc.php:35 +#: libraries/messages.inc.php:31 msgid "Add custom comment into header (\\n splits lines)" msgstr "Menambahkan komentar individual pada Header (\\n membelahkan garis)" -#: libraries/messages.inc.php:36 +#: libraries/messages.inc.php:32 msgid "Add into comments" msgstr "Penambahkan pada komentar:" -#: libraries/messages.inc.php:37 tbl_structure.php:541 +#: libraries/messages.inc.php:33 tbl_structure.php:541 msgid "Add new field" msgstr "Menambahkan field baru" -#: libraries/messages.inc.php:38 server_privileges.php:1886 +#: libraries/messages.inc.php:34 server_privileges.php:1886 msgid "Add privileges on the following database" msgstr "Menambahkan hak (privileges) pada database berikut" -#: libraries/messages.inc.php:39 server_privileges.php:1907 +#: libraries/messages.inc.php:35 server_privileges.php:1907 msgid "Add privileges on the following table" msgstr "Menambahkan hak (privileges) pada tabel berikut" -#: libraries/messages.inc.php:40 tbl_select.php:288 +#: libraries/messages.inc.php:36 tbl_select.php:288 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Menambahkan kriteria pencarian (Argumen untuk WHERE-Statement):" -#: libraries/messages.inc.php:41 tbl_indexes.php:251 +#: libraries/messages.inc.php:37 tbl_indexes.php:251 #, php-format msgid "Add to index  %s column(s)" msgstr "Menambahkan ke indeks  %s kolom" -#: libraries/messages.inc.php:42 server_privileges.php:1570 +#: libraries/messages.inc.php:38 server_privileges.php:1570 #: server_privileges.php:1594 server_privileges.php:1988 #: server_privileges.php:2177 msgid "Add a new User" msgstr "Menambahkan pengguna baru" -#: libraries/messages.inc.php:43 server_privileges.php:931 +#: libraries/messages.inc.php:39 server_privileges.php:931 msgid "You have added a new user." msgstr "Pengguna baru telah ditambahkan." -#: libraries/messages.inc.php:44 server_privileges.php:571 +#: libraries/messages.inc.php:40 server_privileges.php:571 msgid "Administration" msgstr "Administrasi" -#: libraries/messages.inc.php:45 tbl_structure.php:557 +#: libraries/messages.inc.php:41 tbl_structure.php:557 #, php-format msgid "After %s" msgstr "sisipkan setelah %s" -#: libraries/messages.inc.php:46 tbl_change.php:1147 +#: libraries/messages.inc.php:42 tbl_change.php:1147 msgid "Go back to previous page" msgstr "kembali" -#: libraries/messages.inc.php:47 tbl_change.php:1148 +#: libraries/messages.inc.php:43 tbl_change.php:1148 msgid "Insert another new row" msgstr "sisipkan baris baru berikutnya" -#: libraries/messages.inc.php:48 tbl_change.php:1160 +#: libraries/messages.inc.php:44 tbl_change.php:1160 msgid "Edit next row" msgstr "Edit baris berikut" -#: libraries/messages.inc.php:49 tbl_change.php:1152 +#: libraries/messages.inc.php:45 tbl_change.php:1152 msgid "Go back to this page" msgstr "Kembali ke halaman ini" -#: libraries/messages.inc.php:50 querywindow.php:115 +#: libraries/messages.inc.php:46 querywindow.php:115 msgid "All" msgstr "Semua" -#: libraries/messages.inc.php:53 tbl_operations.php:249 +#: libraries/messages.inc.php:49 tbl_operations.php:249 msgid "Alter table order by" msgstr "Urutkan tabel berdasarkan" -#: libraries/messages.inc.php:54 tbl_operations.php:660 +#: libraries/messages.inc.php:50 tbl_operations.php:660 msgid "Analyze" msgstr "Analisa" -#: libraries/messages.inc.php:57 +#: libraries/messages.inc.php:53 msgid "and" msgstr "dan" -#: libraries/messages.inc.php:59 pmd_general.php:87 +#: libraries/messages.inc.php:55 pmd_general.php:87 msgid "Angular links" msgstr "" -#: libraries/messages.inc.php:60 tbl_structure.php:401 tbl_structure.php:415 +#: libraries/messages.inc.php:56 tbl_structure.php:401 tbl_structure.php:415 #: tbl_structure.php:429 #, php-format msgid "An index has been added on %s" msgstr "Indeks telah ditambahkan pada %s" -#: libraries/messages.inc.php:61 server_privileges.php:1521 +#: libraries/messages.inc.php:57 server_privileges.php:1521 #: server_privileges.php:2123 msgid "Any" msgstr "Setiap" -#: libraries/messages.inc.php:62 libraries/replication_gui.lib.php:298 +#: libraries/messages.inc.php:58 libraries/replication_gui.lib.php:298 #: server_privileges.php:725 msgid "Any host" msgstr "Setiap host" -#: libraries/messages.inc.php:63 libraries/replication_gui.lib.php:250 +#: libraries/messages.inc.php:59 libraries/replication_gui.lib.php:250 #: server_privileges.php:677 msgid "Any user" msgstr "Setiap pengguna" -#: libraries/messages.inc.php:64 server_synchronize.php:449 +#: libraries/messages.inc.php:60 server_synchronize.php:449 #: server_synchronize.php:894 msgid "Apply Selected Changes" msgstr "Terapkan Perubahan Terpilih" -#: libraries/messages.inc.php:66 tbl_structure.php:386 +#: libraries/messages.inc.php:62 tbl_structure.php:386 #, php-format msgid "A primary key has been added on %s" msgstr "Primary key telah ditambahkan pada %s" -#: libraries/messages.inc.php:67 libraries/mysql_charsets.lib.php:368 +#: libraries/messages.inc.php:63 libraries/mysql_charsets.lib.php:368 msgid "Arabic" msgstr "Bahasa Arab" -#: libraries/messages.inc.php:68 libraries/mysql_charsets.lib.php:359 +#: libraries/messages.inc.php:64 libraries/mysql_charsets.lib.php:359 msgid "Armenian" msgstr "Bahasa Armenia" -#: libraries/messages.inc.php:70 libraries/tbl_properties.inc.php:394 +#: libraries/messages.inc.php:66 libraries/tbl_properties.inc.php:394 msgid "As defined:" msgstr "Seperti yang didefinisikan" -#: libraries/messages.inc.php:71 tbl_structure.php:556 +#: libraries/messages.inc.php:67 tbl_structure.php:556 msgid "At Beginning of Table" msgstr "Pada Awal Tabel" -#: libraries/messages.inc.php:72 tbl_structure.php:555 +#: libraries/messages.inc.php:68 tbl_structure.php:555 msgid "At End of Table" msgstr "Pada Akhir Tabel" -#: libraries/messages.inc.php:73 libraries/tbl_properties.inc.php:108 +#: libraries/messages.inc.php:69 libraries/tbl_properties.inc.php:108 #: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:144 #: tbl_structure.php:180 msgid "Attributes" msgstr "Atribut" -#: libraries/messages.inc.php:74 pdf_pages.php:303 pdf_pages.php:306 +#: libraries/messages.inc.php:70 pdf_pages.php:303 pdf_pages.php:306 msgid "Automatic layout" msgstr "Layout otomatis" -#: libraries/messages.inc.php:77 libraries/mysql_charsets.lib.php:354 +#: libraries/messages.inc.php:73 libraries/mysql_charsets.lib.php:354 msgid "Baltic" msgstr "Bahasa Baltik" -#: libraries/messages.inc.php:78 libraries/sqlparser.lib.php:175 +#: libraries/messages.inc.php:74 libraries/sqlparser.lib.php:175 msgid "BEGIN CUT" msgstr "Mulai potong (CUT)" -#: libraries/messages.inc.php:79 libraries/sqlparser.lib.php:179 +#: libraries/messages.inc.php:75 libraries/sqlparser.lib.php:179 msgid "BEGIN RAW" msgstr "MULAI mentah (RAW)" -#: libraries/messages.inc.php:80 libraries/mysql_charsets.lib.php:201 +#: libraries/messages.inc.php:76 libraries/mysql_charsets.lib.php:201 #: libraries/mysql_charsets.lib.php:402 tbl_change.php:518 msgid "Binary" msgstr "Binari" -#: libraries/messages.inc.php:81 tbl_change.php:894 +#: libraries/messages.inc.php:77 tbl_change.php:894 msgid "Binary - do not edit" msgstr "Binari - jangan di-edit" -#: libraries/messages.inc.php:82 libraries/server_links.inc.php:76 +#: libraries/messages.inc.php:78 libraries/server_links.inc.php:76 #: server_binlog.php:110 server_status.php:253 test/theme.php:121 msgid "Binary log" msgstr "Log binari" -#: libraries/messages.inc.php:83 server_binlog.php:217 +#: libraries/messages.inc.php:79 server_binlog.php:217 msgid "Event type" msgstr "Tipe Kejadian" -#: libraries/messages.inc.php:84 server_binlog.php:220 +#: libraries/messages.inc.php:80 server_binlog.php:220 msgid "Information" msgstr "Informasi" -#: libraries/messages.inc.php:85 server_binlog.php:215 +#: libraries/messages.inc.php:81 server_binlog.php:215 msgid "Log name" msgstr "Catat nama" -#: libraries/messages.inc.php:86 server_binlog.php:219 +#: libraries/messages.inc.php:82 server_binlog.php:219 msgid "Original position" msgstr "Posisi aslinya" -#: libraries/messages.inc.php:87 server_binlog.php:216 +#: libraries/messages.inc.php:83 server_binlog.php:216 msgid "Position" msgstr "Posisi" -#: libraries/messages.inc.php:88 libraries/replication_gui.lib.php:169 +#: libraries/messages.inc.php:84 libraries/replication_gui.lib.php:169 #: server_binlog.php:218 msgid "Server ID" msgstr "ID Server" -#: libraries/messages.inc.php:92 +#: libraries/messages.inc.php:88 msgctxt "$strBLOBRepositoryDisabled" msgid "Disabled" msgstr "Nonaktifkan" -#: libraries/messages.inc.php:95 +#: libraries/messages.inc.php:91 msgctxt "$strBLOBRepositoryEnabled" msgid "Enabled" msgstr "Aktifkan" -#: libraries/messages.inc.php:97 tbl_change.php:888 +#: libraries/messages.inc.php:93 tbl_change.php:888 msgid "Remove BLOB Repository Reference" msgstr "Hapus Referensi Repositori BLOB" -#: libraries/messages.inc.php:98 +#: libraries/messages.inc.php:94 msgctxt "$strBLOBRepositoryRepair" msgid "Repair" msgstr "Perbaiki" -#: libraries/messages.inc.php:99 tbl_change.php:987 +#: libraries/messages.inc.php:95 tbl_change.php:987 msgid "Upload to BLOB repository" msgstr "Upload ke repositori BLOB" -#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:359 +#: libraries/messages.inc.php:96 libraries/sql_query_form.lib.php:359 #: sql.php:677 msgid "Let every user access this bookmark" msgstr "Izinkan semua pengguna untuk mengakses simpanan ini" -#: libraries/messages.inc.php:103 sql.php:671 +#: libraries/messages.inc.php:99 sql.php:671 msgid "Label" msgstr "Judul" -#: libraries/messages.inc.php:104 libraries/sql_query_form.lib.php:433 +#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:433 msgid "Bookmarked SQL query" msgstr "Ingat pada pencarian SQL " -#: libraries/messages.inc.php:105 libraries/sql_query_form.lib.php:365 +#: libraries/messages.inc.php:101 libraries/sql_query_form.lib.php:365 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/messages.inc.php:106 libraries/sql_query_form.lib.php:352 +#: libraries/messages.inc.php:102 libraries/sql_query_form.lib.php:352 #: sql.php:665 sql.php:666 sql.php:683 msgid "Bookmark this SQL query" msgstr "Simpan pencarian SQL ini" -#: libraries/messages.inc.php:107 libraries/sql_query_form.lib.php:466 +#: libraries/messages.inc.php:103 libraries/sql_query_form.lib.php:466 msgid "View only" msgstr "Hanya melihat" -#: libraries/messages.inc.php:109 tbl_structure.php:161 +#: libraries/messages.inc.php:105 tbl_structure.php:161 #, fuzzy msgid "Browse distinct values" msgstr "Menjelajahi nilai luar" -#: libraries/messages.inc.php:110 tbl_change.php:252 tbl_select.php:27 +#: libraries/messages.inc.php:106 tbl_change.php:252 tbl_select.php:27 #: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34 msgid "Browse foreign values" msgstr "Menjelajahi nilai luar" -#: libraries/messages.inc.php:118 libraries/mysql_charsets.lib.php:213 +#: libraries/messages.inc.php:114 libraries/mysql_charsets.lib.php:213 msgid "Bulgarian" msgstr "Bahasa Bulgaria" -#: libraries/messages.inc.php:120 +#: libraries/messages.inc.php:116 msgid "\"bzipped\"" msgstr "\"Dikompress dengan BZip\"" -#: libraries/messages.inc.php:122 +#: libraries/messages.inc.php:118 msgid "Calendar" msgstr "Kalender" -#: libraries/messages.inc.php:129 tbl_indexes.php:75 +#: libraries/messages.inc.php:125 tbl_indexes.php:75 msgid "Can't rename index to PRIMARY!" msgstr "Gagal ubah nama Indeks ke PRIMARY!" -#: libraries/messages.inc.php:132 libraries/mysql_charsets.lib.php:223 +#: libraries/messages.inc.php:128 libraries/mysql_charsets.lib.php:223 #: libraries/mysql_charsets.lib.php:409 msgid "case-insensitive" msgstr "peka terhadap huruf besar/kecil" -#: libraries/messages.inc.php:133 libraries/mysql_charsets.lib.php:226 +#: libraries/messages.inc.php:129 libraries/mysql_charsets.lib.php:226 #: libraries/mysql_charsets.lib.php:411 msgid "case-sensitive" msgstr "tidak peka terhadap huruf besar/kecil" -#: libraries/messages.inc.php:134 libraries/mysql_charsets.lib.php:332 +#: libraries/messages.inc.php:130 libraries/mysql_charsets.lib.php:332 msgid "Central European" msgstr "Eropa Tengah" -#: libraries/messages.inc.php:136 server_privileges.php:1969 +#: libraries/messages.inc.php:132 server_privileges.php:1969 msgid "... keep the old one." msgstr "... mempertahankan yang lama." -#: libraries/messages.inc.php:137 server_privileges.php:1967 +#: libraries/messages.inc.php:133 server_privileges.php:1967 msgid "Create a new user with the same privileges and ..." msgstr "Ciptakan pengguna baru dengan hak-hak yang sama dan ..." -#: libraries/messages.inc.php:138 server_privileges.php:1972 +#: libraries/messages.inc.php:134 server_privileges.php:1972 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." -#: libraries/messages.inc.php:139 server_privileges.php:1970 +#: libraries/messages.inc.php:135 server_privileges.php:1970 msgid " ... delete the old one from the user tables." msgstr " ... hapus yang lama dari User Table." -#: libraries/messages.inc.php:140 server_privileges.php:1971 +#: libraries/messages.inc.php:136 server_privileges.php:1971 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr " ... cabut seluruh hak yang aktif, kemudian hapuskan yang lama." -#: libraries/messages.inc.php:141 server_privileges.php:1964 +#: libraries/messages.inc.php:137 server_privileges.php:1964 msgid "Change Login Information / Copy User" msgstr "Ubah informasi Login / Salip pengguna" -#: libraries/messages.inc.php:144 libraries/mysql_charsets.lib.php:107 +#: libraries/messages.inc.php:140 libraries/mysql_charsets.lib.php:107 msgid "Charset" msgstr "Perangkat karakter (Charset)" -#: libraries/messages.inc.php:146 server_collations.php:40 +#: libraries/messages.inc.php:142 server_collations.php:40 msgid "Character Sets and Collations" msgstr "Penyusunan karakter dan tabel urutan" -#: libraries/messages.inc.php:147 libraries/server_links.inc.php:57 +#: libraries/messages.inc.php:143 libraries/server_links.inc.php:57 #: test/theme.php:109 msgid "Charsets" msgstr "Penyusunan Karakter" -#: libraries/messages.inc.php:149 tbl_operations.php:661 +#: libraries/messages.inc.php:145 tbl_operations.php:661 msgid "Check" msgstr "Tandai" -#: libraries/messages.inc.php:151 server_databases.php:293 +#: libraries/messages.inc.php:147 server_databases.php:293 #: server_databases.php:294 msgid "Check Privileges" msgstr "Periksa hak-hak" -#: libraries/messages.inc.php:152 server_databases.php:289 +#: libraries/messages.inc.php:148 server_databases.php:289 #, php-format msgid "Check privileges for database "%s"." msgstr "Periksa hak-hak untuk database "%s"." -#: libraries/messages.inc.php:154 pdf_pages.php:261 +#: libraries/messages.inc.php:150 pdf_pages.php:261 msgid "Please choose a page to edit" msgstr "Silakan pilih halaman untuk diubah" -#: libraries/messages.inc.php:157 +#: libraries/messages.inc.php:153 msgid "Displaying Column Comments" msgstr "Tampilkan komentar kolom" -#: libraries/messages.inc.php:159 pdf_pages.php:483 view_create.php:148 +#: libraries/messages.inc.php:155 pdf_pages.php:483 view_create.php:148 msgid "Column names" msgstr "Nama kolom" -#: libraries/messages.inc.php:160 server_privileges.php:1685 +#: libraries/messages.inc.php:156 server_privileges.php:1685 msgid "Column-specific privileges" msgstr "Hak (privileges) khusus terhadap kolum" -#: libraries/messages.inc.php:164 +#: libraries/messages.inc.php:160 msgid "MySQL 4.0 compatible" msgstr "MySQL 4.0 compatible" -#: libraries/messages.inc.php:165 +#: libraries/messages.inc.php:161 msgid "Complete inserts" msgstr "INSERT lengkap" -#: libraries/messages.inc.php:168 +#: libraries/messages.inc.php:164 #, php-format msgid "Could not load default configuration from: \"%1$s\"" msgstr "Tidak dapat memuat konfigurasi default dari: \"%1$s\"" -#: libraries/messages.inc.php:169 main.php:306 +#: libraries/messages.inc.php:165 main.php:306 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " @@ -3387,37 +3387,37 @@ msgstr "" "di direktori phpMyAdmin Anda. Anda harus menghapus nya setelah phpMyAdmin di " "konfigurasi." -#: libraries/messages.inc.php:171 pdf_schema.php:672 +#: libraries/messages.inc.php:167 pdf_schema.php:672 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Silakan konfigurasikan koordinasi bagi tabel %s" -#: libraries/messages.inc.php:173 server_status.php:433 +#: libraries/messages.inc.php:169 server_status.php:433 msgid "Connections" msgstr "Koneksi" -#: libraries/messages.inc.php:179 tbl_operations.php:509 +#: libraries/messages.inc.php:175 tbl_operations.php:509 msgid "Copy table to (database.table):" msgstr "Salin tabel ke (database.nama tabel):" -#: libraries/messages.inc.php:180 tbl_move_copy.php:58 +#: libraries/messages.inc.php:176 tbl_move_copy.php:58 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabel %s telah disalin ke %s." -#: libraries/messages.inc.php:181 tbl_move_copy.php:48 +#: libraries/messages.inc.php:177 tbl_move_copy.php:48 msgid "Can't copy table to same one!" msgstr "Penyalinan tabel pada diri-sendiri tidak bisa dilakukan!" -#: libraries/messages.inc.php:182 server_synchronize.php:94 +#: libraries/messages.inc.php:178 server_synchronize.php:94 msgid "Could not connect to the source" msgstr "Tidak dapat terhubung ke sumber" -#: libraries/messages.inc.php:183 server_synchronize.php:97 +#: libraries/messages.inc.php:179 server_synchronize.php:97 msgid "Could not connect to the target" msgstr "Tidak dapat terhubung ke target" -#: libraries/messages.inc.php:184 server_processlist.php:24 +#: libraries/messages.inc.php:180 server_processlist.php:24 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -3425,131 +3425,131 @@ msgstr "" "phpMyAdmin gagal menutup Thread %s. Kemungkinan Thread tersebut sudah " "ditutup terlebih dahulu" -#: libraries/messages.inc.php:187 +#: libraries/messages.inc.php:183 #, php-format msgid "Create an index on %s columns" msgstr "Ciptakan indeks pada kolom  %s " -#: libraries/messages.inc.php:188 tbl_indexes.php:160 +#: libraries/messages.inc.php:184 tbl_indexes.php:160 msgid "Create a new index" msgstr "Ciptakan indeks baru" -#: libraries/messages.inc.php:191 pdf_pages.php:297 pmd_pdf.php:114 +#: libraries/messages.inc.php:187 pdf_pages.php:297 pmd_pdf.php:114 msgid "Create a page" msgstr "Ciptakan halaman baru" -#: libraries/messages.inc.php:192 +#: libraries/messages.inc.php:188 msgid "Creation of PDFs" msgstr "Penciptaan PDF" -#: libraries/messages.inc.php:193 pmd_general.php:74 pmd_general.php:306 +#: libraries/messages.inc.php:189 pmd_general.php:74 pmd_general.php:306 msgid "Create relation" msgstr "Buat relasi" -#: libraries/messages.inc.php:194 pmd_general.php:71 +#: libraries/messages.inc.php:190 pmd_general.php:71 #: server_synchronize.php:429 server_synchronize.php:872 msgid "Create table" msgstr "Buat tabel" -#: libraries/messages.inc.php:195 +#: libraries/messages.inc.php:191 msgctxt "$strCreateTableShort" msgid "Create table" msgstr "Buat tabel" -#: libraries/messages.inc.php:196 server_privileges.php:1994 +#: libraries/messages.inc.php:192 server_privileges.php:1994 msgid "Database for user" msgstr "Database untuk pengguna" -#: libraries/messages.inc.php:197 server_privileges.php:1999 +#: libraries/messages.inc.php:193 server_privileges.php:1999 msgid "Create database with same name and grant all privileges" msgstr "Buat database dengan nama yang sama dan beri semua hak" -#: libraries/messages.inc.php:198 +#: libraries/messages.inc.php:194 msgctxt "$strCreateUserDatabaseNone" msgid "None" msgstr "Tak satupun" -#: libraries/messages.inc.php:199 server_privileges.php:2003 +#: libraries/messages.inc.php:195 server_privileges.php:2003 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Berikan semua hak untuk database "%s"." -#: libraries/messages.inc.php:200 server_privileges.php:2000 +#: libraries/messages.inc.php:196 server_privileges.php:2000 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Berikan semua hak untuk nama wildcard (pengguna\\_%)" -#: libraries/messages.inc.php:201 +#: libraries/messages.inc.php:197 msgid "Creation/Update/Check dates" msgstr "Tanggal Penciptaan/Update/Pemeriksaan" -#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:229 +#: libraries/messages.inc.php:199 libraries/mysql_charsets.lib.php:229 msgid "Croatian" msgstr "Bahasa Kroatia" -#: libraries/messages.inc.php:204 +#: libraries/messages.inc.php:200 msgid "CSV" msgstr "Data CSV" -#: libraries/messages.inc.php:205 libraries/server_synchronize.lib.php:1343 +#: libraries/messages.inc.php:201 libraries/server_synchronize.lib.php:1343 #: libraries/server_synchronize.lib.php:1369 msgid "Current server" msgstr "Server saat ini" -#: libraries/messages.inc.php:206 main.php:159 +#: libraries/messages.inc.php:202 main.php:159 msgid "Custom color" msgstr "Warna kustom" -#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:365 +#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:365 msgid "Cyrillic" msgstr "Bahasa Kirilia" -#: libraries/messages.inc.php:208 libraries/mysql_charsets.lib.php:232 +#: libraries/messages.inc.php:204 libraries/mysql_charsets.lib.php:232 msgid "Czech" msgstr "Bahasa Ceko" -#: libraries/messages.inc.php:209 libraries/mysql_charsets.lib.php:383 +#: libraries/messages.inc.php:205 libraries/mysql_charsets.lib.php:383 msgid "Czech-Slovak" msgstr "Cecko-Slovakia" -#: libraries/messages.inc.php:211 libraries/mysql_charsets.lib.php:235 +#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:235 msgid "Danish" msgstr "Bahasa Denmark" -#: libraries/messages.inc.php:214 +#: libraries/messages.inc.php:210 msgid "Database export options" msgstr "Pilihan cara untuk mengekspor Database" -#: libraries/messages.inc.php:217 server_synchronize.php:122 +#: libraries/messages.inc.php:213 server_synchronize.php:122 #: server_synchronize.php:125 tbl_create.php:82 tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "Database %s tidak ditemukan." -#: libraries/messages.inc.php:219 server_databases.php:63 +#: libraries/messages.inc.php:215 server_databases.php:63 #, php-format msgid "%s databases have been dropped successfully." msgstr "Sukses menghapus database %s." -#: libraries/messages.inc.php:220 libraries/server_synchronize.lib.php:1341 +#: libraries/messages.inc.php:216 libraries/server_synchronize.lib.php:1341 #: server_synchronize.php:1110 msgid "Source database" msgstr "Database cumber" -#: libraries/messages.inc.php:221 server_databases.php:88 +#: libraries/messages.inc.php:217 server_databases.php:88 msgid "Databases statistics" msgstr "Statistik Database" -#: libraries/messages.inc.php:222 server_databases.php:362 +#: libraries/messages.inc.php:218 server_databases.php:362 #: server_databases.php:363 msgid "Disable Statistics" msgstr "Mencacatkan Statistik" -#: libraries/messages.inc.php:223 server_databases.php:358 +#: libraries/messages.inc.php:219 server_databases.php:358 #: server_databases.php:359 msgid "Enable Statistics" msgstr "Menggiatkan Statistik" -#: libraries/messages.inc.php:224 server_databases.php:366 +#: libraries/messages.inc.php:220 server_databases.php:366 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -3557,30 +3557,30 @@ msgstr "" "Perhatian: Menggiatkan statistik database dengan kemungkinan besar " "mengakibatkan traffic yang cukup tinggi antara webserver dan server MySQL." -#: libraries/messages.inc.php:225 libraries/server_synchronize.lib.php:1367 +#: libraries/messages.inc.php:221 libraries/server_synchronize.lib.php:1367 #: server_synchronize.php:1112 msgid "Target database" msgstr "Database target" -#: libraries/messages.inc.php:228 server_synchronize.php:425 +#: libraries/messages.inc.php:224 server_synchronize.php:425 #: server_synchronize.php:868 msgid "Data Difference" msgstr "Perbedaan data" -#: libraries/messages.inc.php:231 server_synchronize.php:272 +#: libraries/messages.inc.php:227 server_synchronize.php:272 msgid "Data Synchronization" msgstr "Sinkronisasi Data" -#: libraries/messages.inc.php:235 server_privileges.php:526 +#: libraries/messages.inc.php:231 server_privileges.php:526 #: server_privileges.php:1679 msgid "Database-specific privileges" msgstr "Hak (privileges) khusus terhadap Database" -#: libraries/messages.inc.php:237 server_privileges.php:2136 +#: libraries/messages.inc.php:233 server_privileges.php:2136 msgid "database-specific" msgstr "database-spesifik" -#: libraries/messages.inc.php:240 libraries/tbl_properties.inc.php:106 +#: libraries/messages.inc.php:236 libraries/tbl_properties.inc.php:106 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" @@ -3588,32 +3588,32 @@ msgstr "" "Untuk nilai (value) default cukup diisi single value saja tanpa menggunakan " "backslash, escaping atau quotes dan dengan menggunakan format sbb.: a" -#: libraries/messages.inc.php:241 tbl_operations.php:589 +#: libraries/messages.inc.php:237 tbl_operations.php:589 msgid "Defragment table" msgstr "Defragmentasikan tabel" -#: libraries/messages.inc.php:242 +#: libraries/messages.inc.php:238 msgid "Use delayed inserts" msgstr "Gunakan perintah INSERT memperlambat" -#: libraries/messages.inc.php:245 server_privileges.php:1243 +#: libraries/messages.inc.php:241 server_privileges.php:1243 msgid "No users selected for deleting!" msgstr "Tidak ada pengguna yang dipilih untuk dihapus!" -#: libraries/messages.inc.php:246 pmd_general.php:372 +#: libraries/messages.inc.php:242 pmd_general.php:372 msgid "Delete relation" msgstr "Hapus relasi" -#: libraries/messages.inc.php:248 server_privileges.php:1232 +#: libraries/messages.inc.php:244 server_privileges.php:1232 #, php-format msgid "Deleting %s" msgstr "Menghapus %s" -#: libraries/messages.inc.php:249 libraries/sql_query_form.lib.php:388 +#: libraries/messages.inc.php:245 libraries/sql_query_form.lib.php:388 msgid "Delimiter" msgstr "Pembatas" -#: libraries/messages.inc.php:250 pdf_pages.php:506 +#: libraries/messages.inc.php:246 pdf_pages.php:506 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -3621,150 +3621,150 @@ msgstr "" "Halaman ini berisi referensi tentang tabel yang sudah tidak ada. Apakah Anda " "ingin hapus referensi yang bersangkutan?" -#: libraries/messages.inc.php:254 pmd_help.php:29 +#: libraries/messages.inc.php:250 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." msgstr "" -#: libraries/messages.inc.php:256 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:252 libraries/mysql_charsets.lib.php:247 msgid "dictionary" msgstr "kamus" -#: libraries/messages.inc.php:257 libraries/server_synchronize.lib.php:1348 +#: libraries/messages.inc.php:253 libraries/server_synchronize.lib.php:1348 msgid "Difference" msgstr "Perbedaan" -#: libraries/messages.inc.php:258 pmd_general.php:87 +#: libraries/messages.inc.php:254 pmd_general.php:87 msgid "Direct links" msgstr "Link langsung" -#: libraries/messages.inc.php:261 +#: libraries/messages.inc.php:257 msgid "Disable foreign key checks" msgstr "Tanpa pemeriksaan kunci asing" -#: libraries/messages.inc.php:262 +#: libraries/messages.inc.php:258 msgid "Display Features" msgstr "Tampilkan ciri-ciri" -#: libraries/messages.inc.php:263 tbl_select.php:301 +#: libraries/messages.inc.php:259 tbl_select.php:301 msgid "Display order:" msgstr "Urut tampilan berdasarkan:" -#: libraries/messages.inc.php:265 tbl_select.php:132 +#: libraries/messages.inc.php:261 tbl_select.php:132 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "cari berdasarkan data contoh (\"query by example\") (wildcard: \"%\")" -#: libraries/messages.inc.php:266 +#: libraries/messages.inc.php:262 msgid "DocSQL" msgstr "DocSQL" -#: libraries/messages.inc.php:268 +#: libraries/messages.inc.php:264 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Jangan gunakan AUTO_INCREMENT untuk nilai nol" -#: libraries/messages.inc.php:273 server_privileges.php:1579 +#: libraries/messages.inc.php:269 server_privileges.php:1579 #: server_privileges.php:1580 server_privileges.php:1581 msgid "Drop the databases that have the same names as the users." msgstr "Hapus database yang memiliki nama yang sama dengan pengguna." -#: libraries/messages.inc.php:278 tbl_printview.php:382 tbl_structure.php:743 +#: libraries/messages.inc.php:274 tbl_printview.php:382 tbl_structure.php:743 msgid "dynamic" msgstr "dinamis" -#: libraries/messages.inc.php:282 server_privileges.php:1324 +#: libraries/messages.inc.php:278 server_privileges.php:1324 #: server_privileges.php:1610 msgid "Edit Privileges" msgstr "Ubah hak akses (privilege)" -#: libraries/messages.inc.php:283 tbl_printview.php:341 tbl_structure.php:688 +#: libraries/messages.inc.php:279 tbl_printview.php:341 tbl_structure.php:688 msgid "Effective" msgstr "Efektif" -#: libraries/messages.inc.php:286 libraries/relation.lib.php:100 +#: libraries/messages.inc.php:282 libraries/relation.lib.php:100 msgid "Enabled" msgstr "Aktif" -#: libraries/messages.inc.php:287 +#: libraries/messages.inc.php:283 msgid "Enclose export in a transaction" msgstr "Menyertakan ekspor dalam transaksi" -#: libraries/messages.inc.php:288 libraries/sqlparser.lib.php:177 +#: libraries/messages.inc.php:284 libraries/sqlparser.lib.php:177 msgid "END CUT" msgstr "Akhiri potong (CUT)" -#: libraries/messages.inc.php:290 libraries/sqlparser.lib.php:183 +#: libraries/messages.inc.php:286 libraries/sqlparser.lib.php:183 msgid "END RAW" msgstr "AKHIRI mentah (RAW)" -#: libraries/messages.inc.php:293 libraries/server_links.inc.php:61 +#: libraries/messages.inc.php:289 libraries/server_links.inc.php:61 #: test/theme.php:113 msgid "Engines" msgstr "Mesin" -#: libraries/messages.inc.php:295 libraries/mysql_charsets.lib.php:238 +#: libraries/messages.inc.php:291 libraries/mysql_charsets.lib.php:238 msgid "English" msgstr "Bahasa Ingris" -#: libraries/messages.inc.php:296 server_privileges.php:393 +#: libraries/messages.inc.php:292 server_privileges.php:393 #: server_privileges.php:535 server_privileges.php:1501 msgid " Note: MySQL privilege names are expressed in English " msgstr " Catatan: Nama privilege MySQL dalam bahasa Ingris " -#: libraries/messages.inc.php:298 libraries/zip_extension.lib.php:49 +#: libraries/messages.inc.php:294 libraries/zip_extension.lib.php:49 #: libraries/zip_extension.lib.php:51 libraries/zip_extension.lib.php:66 msgid "Error in ZIP archive:" msgstr "Kesalahan dalam arsip ZIP:" -#: libraries/messages.inc.php:303 libraries/mysql_charsets.lib.php:241 +#: libraries/messages.inc.php:299 libraries/mysql_charsets.lib.php:241 msgid "Esperanto" msgstr "Bahasa Esperanto" -#: libraries/messages.inc.php:304 libraries/mysql_charsets.lib.php:244 +#: libraries/messages.inc.php:300 libraries/mysql_charsets.lib.php:244 msgid "Estonian" msgstr "Bahasa Estonia" -#: libraries/messages.inc.php:305 libraries/tbl_triggers.lib.php:29 +#: libraries/messages.inc.php:301 libraries/tbl_triggers.lib.php:29 msgid "Event" msgstr "Kejadian" -#: libraries/messages.inc.php:307 +#: libraries/messages.inc.php:303 msgid "Excel edition" msgstr "Edisi Excel" -#: libraries/messages.inc.php:311 pmd_pdf.php:85 +#: libraries/messages.inc.php:307 pmd_pdf.php:85 msgid "Export/Import to scale" msgstr "" -#: libraries/messages.inc.php:313 +#: libraries/messages.inc.php:309 msgid "Extended inserts" msgstr "INSERT memperluas" -#: libraries/messages.inc.php:314 pdf_schema.php:1267 pdf_schema.php:1288 +#: libraries/messages.inc.php:310 pdf_schema.php:1267 pdf_schema.php:1288 #: tbl_printview.php:147 tbl_structure.php:183 tbl_tracking.php:278 msgid "Extra" msgstr "Ekstra" -#: libraries/messages.inc.php:316 server_status.php:447 +#: libraries/messages.inc.php:312 server_status.php:447 msgid "Failed attempts" msgstr "Gagal" -#: libraries/messages.inc.php:318 tbl_structure.php:375 +#: libraries/messages.inc.php:314 tbl_structure.php:375 #, php-format msgid "Field %s has been dropped" msgstr "Field %s telah dihapus" -#: libraries/messages.inc.php:322 libraries/sql_query_form.lib.php:317 +#: libraries/messages.inc.php:318 libraries/sql_query_form.lib.php:317 msgid "Fields" msgstr "Field" -#: libraries/messages.inc.php:332 server_binlog.php:136 +#: libraries/messages.inc.php:328 server_binlog.php:136 #, fuzzy msgid "Files" msgstr "Field" -#: libraries/messages.inc.php:334 server_privileges.php:1597 +#: libraries/messages.inc.php:330 server_privileges.php:1597 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -3778,219 +3778,219 @@ msgstr "" "diubah secara manual. Disarankan untuk %sme-reload profil pengguna%s sebelum " "melanjut." -#: libraries/messages.inc.php:335 server_status.php:289 +#: libraries/messages.inc.php:331 server_status.php:289 msgid "Flush query cache" msgstr "" -#: libraries/messages.inc.php:336 +#: libraries/messages.inc.php:332 msgid "Flush the table (\"FLUSH\")" msgstr "Tutup tabel (\"FLUSH\")" -#: libraries/messages.inc.php:337 server_status.php:271 +#: libraries/messages.inc.php:333 server_status.php:271 msgid "Flush (close) all tables" msgstr "" -#: libraries/messages.inc.php:339 tbl_relation.php:279 +#: libraries/messages.inc.php:335 tbl_relation.php:279 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" -#: libraries/messages.inc.php:341 setup/lib/messages.inc.php:88 +#: libraries/messages.inc.php:337 setup/lib/messages.inc.php:88 #: tbl_printview.php:376 tbl_structure.php:738 msgid "Format" msgstr "Format" -#: libraries/messages.inc.php:344 server_replication.php:325 +#: libraries/messages.inc.php:340 server_replication.php:325 #, fuzzy msgid "Full start" msgstr "Teks penuh" -#: libraries/messages.inc.php:345 server_replication.php:325 +#: libraries/messages.inc.php:341 server_replication.php:325 msgid "Full stop" msgstr "" -#: libraries/messages.inc.php:347 tbl_change.php:282 tbl_change.php:320 +#: libraries/messages.inc.php:343 tbl_change.php:282 tbl_change.php:320 msgid "Function" msgstr "Fungsi" -#: libraries/messages.inc.php:355 libraries/mysql_charsets.lib.php:377 +#: libraries/messages.inc.php:351 libraries/mysql_charsets.lib.php:377 msgid "Georgian" msgstr "Georgia" -#: libraries/messages.inc.php:356 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:352 libraries/mysql_charsets.lib.php:247 #: libraries/mysql_charsets.lib.php:250 msgid "German" msgstr "Bahasa Jerman" -#: libraries/messages.inc.php:357 themes.php:42 +#: libraries/messages.inc.php:353 themes.php:42 msgid "Get more themes!" msgstr "" -#: libraries/messages.inc.php:358 server_privileges.php:2134 +#: libraries/messages.inc.php:354 server_privileges.php:2134 msgid "global" msgstr "global" -#: libraries/messages.inc.php:359 server_privileges.php:524 +#: libraries/messages.inc.php:355 server_privileges.php:524 #: server_privileges.php:1500 msgid "Global privileges" msgstr "Hak Istimewa (Privileges) Global" -#: libraries/messages.inc.php:360 server_variables.php:55 +#: libraries/messages.inc.php:356 server_variables.php:55 #: server_variables.php:89 msgid "Global value" msgstr "Nilai Global" -#: libraries/messages.inc.php:365 server_privileges.php:1502 +#: libraries/messages.inc.php:361 server_privileges.php:1502 #: server_privileges.php:1684 server_privileges.php:2033 msgid "Grant" msgstr "Izin" -#: libraries/messages.inc.php:366 libraries/mysql_charsets.lib.php:380 +#: libraries/messages.inc.php:362 libraries/mysql_charsets.lib.php:380 msgid "Greek" msgstr "Bahasa Yunani" -#: libraries/messages.inc.php:367 +#: libraries/messages.inc.php:363 msgid "\"gzipped\"" msgstr "Dikompress dengan GZip" -#: libraries/messages.inc.php:369 server_status.php:250 +#: libraries/messages.inc.php:365 server_status.php:250 msgid "Handler" msgstr "" -#: libraries/messages.inc.php:370 server_synchronize.php:464 +#: libraries/messages.inc.php:366 server_synchronize.php:464 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: libraries/messages.inc.php:372 libraries/mysql_charsets.lib.php:374 +#: libraries/messages.inc.php:368 libraries/mysql_charsets.lib.php:374 msgid "Hebrew" msgstr "Bahasa Yahudi" -#: libraries/messages.inc.php:373 pmd_general.php:83 +#: libraries/messages.inc.php:369 pmd_general.php:83 msgid "Help" msgstr "" -#: libraries/messages.inc.php:374 +#: libraries/messages.inc.php:370 msgid "Use hexadecimal for BLOB" msgstr "" -#: libraries/messages.inc.php:376 pmd_general.php:120 +#: libraries/messages.inc.php:372 pmd_general.php:120 #, fuzzy msgid "Hide/Show all" msgstr "Tampilkan semua" -#: libraries/messages.inc.php:377 pmd_general.php:124 +#: libraries/messages.inc.php:373 pmd_general.php:124 msgid "Hide/Show Tables with no relation" msgstr "" -#: libraries/messages.inc.php:378 libraries/navigation_header.inc.php:54 +#: libraries/messages.inc.php:374 libraries/navigation_header.inc.php:54 #: libraries/navigation_header.inc.php:57 #: libraries/navigation_header.inc.php:58 msgid "Home" msgstr "Home" -#: libraries/messages.inc.php:379 main.php:233 +#: libraries/messages.inc.php:375 main.php:233 msgid "Official Homepage" msgstr "Homepage resmi phpMyAdmin" -#: libraries/messages.inc.php:382 libraries/replication_gui.lib.php:327 +#: libraries/messages.inc.php:378 libraries/replication_gui.lib.php:327 #: server_privileges.php:753 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/messages.inc.php:383 +#: libraries/messages.inc.php:379 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/messages.inc.php:384 libraries/mysql_charsets.lib.php:253 +#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:253 msgid "Hungarian" msgstr "Bahasa Hongaria" -#: libraries/messages.inc.php:386 libraries/mysql_charsets.lib.php:256 +#: libraries/messages.inc.php:382 libraries/mysql_charsets.lib.php:256 msgid "Icelandic" msgstr "Islandia" -#: libraries/messages.inc.php:387 server_processlist.php:53 +#: libraries/messages.inc.php:383 server_processlist.php:53 msgid "ID" msgstr "ID" -#: libraries/messages.inc.php:388 libraries/mult_submits.inc.php:108 +#: libraries/messages.inc.php:384 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:479 msgid "Fulltext" msgstr "Teks penuh" -#: libraries/messages.inc.php:389 +#: libraries/messages.inc.php:385 msgid "Ignore duplicate rows" msgstr "" -#: libraries/messages.inc.php:390 tbl_change.php:302 tbl_indexes.php:200 +#: libraries/messages.inc.php:386 tbl_change.php:302 tbl_indexes.php:200 #: tbl_indexes.php:225 msgid "Ignore" msgstr "Abaikan" -#: libraries/messages.inc.php:391 +#: libraries/messages.inc.php:387 msgid "Use ignore inserts" msgstr "Gunakan perintah INSERT dengan mengabaikan kesalahan" -#: libraries/messages.inc.php:392 +#: libraries/messages.inc.php:388 msgid "Column names in first row" msgstr "" -#: libraries/messages.inc.php:393 +#: libraries/messages.inc.php:389 msgid "Do not import empty rows" msgstr "" -#: libraries/messages.inc.php:394 pmd_general.php:104 +#: libraries/messages.inc.php:390 pmd_general.php:104 msgid "Import/Export coordinates for PDF schema" msgstr "" -#: libraries/messages.inc.php:395 querywindow.php:104 +#: libraries/messages.inc.php:391 querywindow.php:104 msgid "Import files" msgstr "Impor file" -#: libraries/messages.inc.php:403 +#: libraries/messages.inc.php:399 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/messages.inc.php:404 libraries/messages.inc.php:584 +#: libraries/messages.inc.php:400 libraries/messages.inc.php:580 msgid "Open Document Spreadsheet" msgstr "" -#: libraries/messages.inc.php:405 +#: libraries/messages.inc.php:401 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/messages.inc.php:409 +#: libraries/messages.inc.php:405 msgid "Excel 97-2003 XLS Workbook" msgstr "" -#: libraries/messages.inc.php:410 +#: libraries/messages.inc.php:406 msgid "Excel 2007 XLSX Workbook" msgstr "" -#: libraries/messages.inc.php:414 libraries/mult_submits.inc.php:98 +#: libraries/messages.inc.php:410 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:476 tbl_structure.php:674 msgid "Index" msgstr "Indeks" -#: libraries/messages.inc.php:415 tbl_indexes.php:168 +#: libraries/messages.inc.php:411 tbl_indexes.php:168 msgid "Index name:" msgstr "Nama indeks :" -#: libraries/messages.inc.php:416 tbl_indexes.php:174 +#: libraries/messages.inc.php:412 tbl_indexes.php:174 msgid "Index type:" msgstr "Tipe indeks :" -#: libraries/messages.inc.php:417 sql.php:639 +#: libraries/messages.inc.php:413 sql.php:639 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Ditemukan masalah dengan indeks dalam tabel `%s`" -#: libraries/messages.inc.php:427 main.php:266 +#: libraries/messages.inc.php:423 main.php:266 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -4003,163 +4003,163 @@ msgstr "" "penyerangan. Disarankan untuk memperbaiki kelemahan keamanan (security hole) " "ini." -#: libraries/messages.inc.php:428 tbl_change.php:1130 +#: libraries/messages.inc.php:424 tbl_change.php:1130 msgid "Insert as new row" msgstr "Sisipkan sebagai baris baru" -#: libraries/messages.inc.php:429 sql.php:496 tbl_replace.php:386 +#: libraries/messages.inc.php:425 sql.php:496 tbl_replace.php:386 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: libraries/messages.inc.php:430 tbl_change.php:1131 +#: libraries/messages.inc.php:426 tbl_change.php:1131 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/messages.inc.php:432 main.php:139 +#: libraries/messages.inc.php:428 main.php:139 msgid "Interface" msgstr "" -#: libraries/messages.inc.php:433 tbl_relation.php:407 +#: libraries/messages.inc.php:429 tbl_relation.php:407 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: libraries/messages.inc.php:435 pdf_pages.php:303 +#: libraries/messages.inc.php:431 pdf_pages.php:303 msgid "Internal relations" msgstr "Relasi internal" -#: libraries/messages.inc.php:438 tbl_indexes.php:256 tbl_structure.php:590 +#: libraries/messages.inc.php:434 tbl_indexes.php:256 tbl_structure.php:590 #: tbl_structure.php:601 msgid "Column count has to be larger than zero." msgstr "Perhitungan kolom wajib lebih besar dari nol." -#: libraries/messages.inc.php:444 libraries/tbl_properties.inc.php:784 +#: libraries/messages.inc.php:440 libraries/tbl_properties.inc.php:784 #: tbl_structure.php:537 msgid "You have to add at least one field." msgstr "Anda perlu menambahkan sedikitnya satu Field." -#: libraries/messages.inc.php:449 +#: libraries/messages.inc.php:445 #, php-format msgid "Invalid server index: \"%s\"" msgstr "" -#: libraries/messages.inc.php:452 libraries/mysql_charsets.lib.php:259 +#: libraries/messages.inc.php:448 libraries/mysql_charsets.lib.php:259 #: libraries/mysql_charsets.lib.php:349 msgid "Japanese" msgstr "Bahasa Jepang" -#: libraries/messages.inc.php:453 main.php:331 +#: libraries/messages.inc.php:449 main.php:331 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: libraries/messages.inc.php:454 server_status.php:257 +#: libraries/messages.inc.php:450 server_status.php:257 msgid "Joins" msgstr "" -#: libraries/messages.inc.php:457 server_privileges.php:763 +#: libraries/messages.inc.php:453 server_privileges.php:763 msgid "Do not change the password" msgstr "Jangan ubah Kata Sandi" -#: libraries/messages.inc.php:458 server_status.php:256 +#: libraries/messages.inc.php:454 server_status.php:256 msgid "Key cache" msgstr "" -#: libraries/messages.inc.php:462 libraries/mysql_charsets.lib.php:268 +#: libraries/messages.inc.php:458 libraries/mysql_charsets.lib.php:268 #: libraries/mysql_charsets.lib.php:371 msgid "Korean" msgstr "Bahasa Korea" -#: libraries/messages.inc.php:466 libraries/select_lang.lib.php:480 +#: libraries/messages.inc.php:462 libraries/select_lang.lib.php:480 #: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492 #, php-format msgid "Unknown language: %1$s." msgstr "" -#: libraries/messages.inc.php:468 +#: libraries/messages.inc.php:464 msgid "Table caption" msgstr "Judul halaman" -#: libraries/messages.inc.php:469 +#: libraries/messages.inc.php:465 msgid "Content of table __TABLE__" msgstr "Isi dari tabel __TABLE__" -#: libraries/messages.inc.php:470 +#: libraries/messages.inc.php:466 msgid "Continued table caption" msgstr "Lanjutan dari judul halaman tabel" -#: libraries/messages.inc.php:471 +#: libraries/messages.inc.php:467 msgid "(continued)" msgstr "(dilanjutkan)" -#: libraries/messages.inc.php:472 +#: libraries/messages.inc.php:468 msgid "Include table caption" msgstr "Masukkan judul halaman tabel" -#: libraries/messages.inc.php:473 +#: libraries/messages.inc.php:469 msgid "Label key" msgstr "Kunci nama" -#: libraries/messages.inc.php:474 +#: libraries/messages.inc.php:470 msgid "LaTeX" msgstr "LaTeX" -#: libraries/messages.inc.php:475 +#: libraries/messages.inc.php:471 msgid "Structure of table __TABLE__" msgstr "Struktur dari tabel __TABLE__" -#: libraries/messages.inc.php:476 libraries/mysql_charsets.lib.php:262 +#: libraries/messages.inc.php:472 libraries/mysql_charsets.lib.php:262 msgid "Latvian" msgstr "Latvia" -#: libraries/messages.inc.php:477 +#: libraries/messages.inc.php:473 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/messages.inc.php:478 +#: libraries/messages.inc.php:474 msgid "Use LOCAL keyword" msgstr "" -#: libraries/messages.inc.php:479 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:475 libraries/tbl_properties.inc.php:105 msgid "Length/Values" msgstr "Ukuran Panjang/Nilai*" -#: libraries/messages.inc.php:480 tbl_select.php:295 +#: libraries/messages.inc.php:476 tbl_select.php:295 msgid "Number of rows per page" msgstr "Jumlah baris per halaman" -#: libraries/messages.inc.php:484 libraries/mysql_charsets.lib.php:265 +#: libraries/messages.inc.php:480 libraries/mysql_charsets.lib.php:265 msgid "Lithuanian" msgstr "Bahasa Lithuania" -#: libraries/messages.inc.php:485 libraries/replication_gui.lib.php:302 +#: libraries/messages.inc.php:481 libraries/replication_gui.lib.php:302 #: server_privileges.php:729 msgid "Local" msgstr "Lokal" -#: libraries/messages.inc.php:487 server_privileges.php:669 +#: libraries/messages.inc.php:483 server_privileges.php:669 msgid "Login Information" msgstr "Informasi Login" -#: libraries/messages.inc.php:490 libraries/navigation_header.inc.php:67 +#: libraries/messages.inc.php:486 libraries/navigation_header.inc.php:67 #: libraries/navigation_header.inc.php:70 #: libraries/navigation_header.inc.php:71 main.php:99 msgid "Log out" msgstr "Logout" -#: libraries/messages.inc.php:497 server_status.php:440 +#: libraries/messages.inc.php:493 server_status.php:440 msgid "max. concurrent connections" msgstr "" -#: libraries/messages.inc.php:498 +#: libraries/messages.inc.php:494 msgid "Maximal length of created query" msgstr "" -#: libraries/messages.inc.php:500 main.php:282 +#: libraries/messages.inc.php:496 main.php:282 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -4170,7 +4170,7 @@ msgstr "" "baris-baris dengan cara yang benar. Hal ini mampu mengakibatkan hasil yang " "tidak diinginkan." -#: libraries/messages.inc.php:501 main.php:274 +#: libraries/messages.inc.php:497 main.php:274 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -4179,24 +4179,24 @@ msgstr "" "Fungsi mbstring.func_overload aktif pada konfigurasi PHP Anda. Pilihan ini " "tidak cocok dengan phpMyAdmin dan mampu merusak sebagian data!" -#: libraries/messages.inc.php:502 +#: libraries/messages.inc.php:498 msgid "MediaWiki Table" msgstr "" -#: libraries/messages.inc.php:503 transformation_overview.php:25 +#: libraries/messages.inc.php:499 transformation_overview.php:25 msgid "Available MIME types" msgstr "Tipe MIME yang tersedia" -#: libraries/messages.inc.php:504 transformation_overview.php:43 +#: libraries/messages.inc.php:500 transformation_overview.php:43 msgid "Available transformations" msgstr "Transformasi yang tersedia" -#: libraries/messages.inc.php:505 +#: libraries/messages.inc.php:501 msgctxt "$strMIME_description" msgid "Description" msgstr "Deskripsi" -#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:580 +#: libraries/messages.inc.php:503 libraries/tbl_properties.inc.php:580 #: transformation_overview.php:60 #, php-format msgid "" @@ -4206,7 +4206,7 @@ msgstr "" "Tidak ada deskripsi untuk transformasi ini.
Mohon ditanyakan kepada " "penulis tentang artinya %s." -#: libraries/messages.inc.php:509 libraries/tbl_properties.inc.php:137 +#: libraries/messages.inc.php:505 libraries/tbl_properties.inc.php:137 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -4215,7 +4215,7 @@ msgstr "" "Untuk tampilan daftar tentang pilihan transformasi dan transformasi jenis " "MIME-nya, silakan klik pada %sDeskripsi Transformasi%s" -#: libraries/messages.inc.php:510 libraries/tbl_properties.inc.php:146 +#: libraries/messages.inc.php:506 libraries/tbl_properties.inc.php:146 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -4227,112 +4227,112 @@ msgstr "" "Quote (\"'\") diperlukan di antara nilai tersebut, mohon gunakan tanda " "Backslash (contoh: '\\\\xyz' atau 'a\\'b')." -#: libraries/messages.inc.php:511 libraries/tbl_properties.inc.php:145 +#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:145 msgid "Transformation options" msgstr "Pilihan transformasi" -#: libraries/messages.inc.php:513 transformation_overview.php:38 +#: libraries/messages.inc.php:509 transformation_overview.php:38 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "" "Jenis MIME yang dicetak dalam huruf miring tidak memiliki fungsi transformasi" -#: libraries/messages.inc.php:515 tbl_indexes.php:162 +#: libraries/messages.inc.php:511 tbl_indexes.php:162 msgid "Modify an index" msgstr "Ubah indeks" -#: libraries/messages.inc.php:517 pmd_general.php:108 +#: libraries/messages.inc.php:513 pmd_general.php:108 msgid "Move Menu" msgstr "" -#: libraries/messages.inc.php:518 tbl_operations.php:276 +#: libraries/messages.inc.php:514 tbl_operations.php:276 msgid "Move table to (database.table):" msgstr "Pindahkan tabel ke (database.tabel):" -#: libraries/messages.inc.php:519 tbl_move_copy.php:56 +#: libraries/messages.inc.php:515 tbl_move_copy.php:56 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabel %s telah dipindahkan ke %s." -#: libraries/messages.inc.php:520 tbl_move_copy.php:46 +#: libraries/messages.inc.php:516 tbl_move_copy.php:46 msgid "Can't move table to same one!" msgstr "Memindahkan tabel ke diri-sendiri tidak bisa dilakukan!" -#: libraries/messages.inc.php:521 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:517 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 #: libraries/mysql_charsets.lib.php:332 libraries/mysql_charsets.lib.php:354 #: libraries/mysql_charsets.lib.php:365 msgid "multilingual" msgstr "berbagai bahasa" -#: libraries/messages.inc.php:534 main.php:193 +#: libraries/messages.inc.php:530 main.php:193 msgid "MySQL charset" msgstr "Charset MySQL" -#: libraries/messages.inc.php:535 main.php:211 +#: libraries/messages.inc.php:531 main.php:211 msgid "MySQL client version" msgstr "" -#: libraries/messages.inc.php:536 main.php:125 +#: libraries/messages.inc.php:532 main.php:125 msgid "MySQL connection collation" msgstr "Penyortiran koneksi MySQL" -#: libraries/messages.inc.php:537 main.php:346 +#: libraries/messages.inc.php:533 main.php:346 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: libraries/messages.inc.php:539 server_status.php:294 +#: libraries/messages.inc.php:535 server_status.php:294 msgid "Show processes" msgstr "Tampilkan Proses" -#: libraries/messages.inc.php:545 navigation.php:210 server_databases.php:371 +#: libraries/messages.inc.php:541 navigation.php:210 server_databases.php:371 #: server_synchronize.php:1191 msgid "No databases" msgstr "Database tidak ditemukan" -#: libraries/messages.inc.php:546 server_databases.php:52 +#: libraries/messages.inc.php:542 server_databases.php:52 msgid "No databases selected." msgstr "Database belum dipilih." -#: libraries/messages.inc.php:548 libraries/relation.lib.php:1173 +#: libraries/messages.inc.php:544 libraries/relation.lib.php:1173 msgid "no description" msgstr "tanpa keterangan" -#: libraries/messages.inc.php:552 libraries/zip_extension.lib.php:26 +#: libraries/messages.inc.php:548 libraries/zip_extension.lib.php:26 msgid "No files found inside ZIP archive!" msgstr "" -#: libraries/messages.inc.php:555 tbl_indexes.php:91 +#: libraries/messages.inc.php:551 tbl_indexes.php:91 msgid "No index parts defined!" msgstr "Bagian indeks belum diberi definisin!" -#: libraries/messages.inc.php:556 libraries/mult_submits.inc.php:435 +#: libraries/messages.inc.php:552 libraries/mult_submits.inc.php:435 #: tbl_replace.php:331 msgid "No change" msgstr "Tidak ada perubahan" -#: libraries/messages.inc.php:557 +#: libraries/messages.inc.php:553 #, fuzzy msgctxt "$strNoneDefault" msgid "None" msgstr "tanpa" -#: libraries/messages.inc.php:560 libraries/plugin_interface.lib.php:312 +#: libraries/messages.inc.php:556 libraries/plugin_interface.lib.php:312 msgid "This format has no options" msgstr "Format ini tidak ada pilihannya" -#: libraries/messages.inc.php:565 user_password.php:54 +#: libraries/messages.inc.php:561 user_password.php:54 msgid "You don't have sufficient privileges to be here right now!" msgstr "Hak Akses Anda untuk melanjut tidak cukup!" -#: libraries/messages.inc.php:566 tbl_row_action.php:29 +#: libraries/messages.inc.php:562 tbl_row_action.php:29 msgid "No rows selected" msgstr "Tidak ada baris yang dipilih" -#: libraries/messages.inc.php:569 themes.php:32 +#: libraries/messages.inc.php:565 themes.php:32 #, php-format msgid "" "No themes support; please check your configuration and/or your themes in " @@ -4341,300 +4341,300 @@ msgstr "" "Tidak ada dukungan untuk desain penampilan. Mohon periksa kembali " "konfigurasi dan/atau desain penampilan dalam direktori %s." -#: libraries/messages.inc.php:571 libraries/relation.lib.php:95 +#: libraries/messages.inc.php:567 libraries/relation.lib.php:95 msgid "not OK" msgstr "tidak oke" -#: libraries/messages.inc.php:572 server_synchronize.php:400 +#: libraries/messages.inc.php:568 server_synchronize.php:400 #: server_synchronize.php:839 msgid "not present" msgstr "" -#: libraries/messages.inc.php:573 pdf_pages.php:36 pdf_pages.php:42 +#: libraries/messages.inc.php:569 pdf_pages.php:36 pdf_pages.php:42 #: pdf_pages.php:48 pdf_pages.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "%s tabel tidak ditemukan atau tidak diset di %s" -#: libraries/messages.inc.php:574 server_privileges.php:804 +#: libraries/messages.inc.php:570 server_privileges.php:804 #: server_privileges.php:2166 msgid "No user(s) found." msgstr "Pengguna tidak ditemukan." -#: libraries/messages.inc.php:578 pmd_general.php:164 +#: libraries/messages.inc.php:574 pmd_general.php:164 msgid "Number of tables" msgstr "" -#: libraries/messages.inc.php:581 server_databases.php:117 +#: libraries/messages.inc.php:577 server_databases.php:117 #: server_status.php:260 setup/lib/messages.inc.php:117 msgid "Tables" msgstr "Tabel" -#: libraries/messages.inc.php:583 libraries/relation.lib.php:99 +#: libraries/messages.inc.php:579 libraries/relation.lib.php:99 #: pmd_general.php:340 msgid "OK" msgstr "Oke" -#: libraries/messages.inc.php:585 +#: libraries/messages.inc.php:581 msgid "Open Document Text" msgstr "" -#: libraries/messages.inc.php:588 tbl_select.php:138 +#: libraries/messages.inc.php:584 tbl_select.php:138 msgid "Operator" msgstr "Operator" -#: libraries/messages.inc.php:589 tbl_operations.php:662 +#: libraries/messages.inc.php:585 tbl_operations.php:662 msgid "Optimize" msgstr "" -#: libraries/messages.inc.php:602 libraries/tbl_properties.inc.php:755 +#: libraries/messages.inc.php:598 libraries/tbl_properties.inc.php:755 msgid "PARTITION definition" msgstr "" -#: libraries/messages.inc.php:603 tbl_structure.php:757 +#: libraries/messages.inc.php:599 tbl_structure.php:757 msgid "partitioned" msgstr "" -#: libraries/messages.inc.php:604 tbl_operations.php:649 +#: libraries/messages.inc.php:600 tbl_operations.php:649 #, fuzzy msgid "Partition maintenance" msgstr "Pemeliharaan tabel" -#: libraries/messages.inc.php:605 tbl_operations.php:657 +#: libraries/messages.inc.php:601 tbl_operations.php:657 #, php-format msgid "Partition %s" msgstr "" -#: libraries/messages.inc.php:606 server_privileges.php:1212 +#: libraries/messages.inc.php:602 server_privileges.php:1212 #, php-format msgid "The password for %s was changed successfully." msgstr "Sukses mengubah Kata Sandi untuk %s ." -#: libraries/messages.inc.php:635 +#: libraries/messages.inc.php:631 #, php-format msgid "Schema of the \"%s\" database - Page %s" msgstr "Skema dari database \"%s\" - Halaman %s" -#: libraries/messages.inc.php:636 +#: libraries/messages.inc.php:632 #, php-format msgid "The \"%s\" table doesn't exist!" msgstr "Tabel \"%s\" tidak ditemukan!" -#: libraries/messages.inc.php:637 pdf_schema.php:1013 +#: libraries/messages.inc.php:633 pdf_schema.php:1013 msgid "No tables" msgstr "Tabel tidak ditemukan" -#: libraries/messages.inc.php:638 pmd_pdf.php:63 +#: libraries/messages.inc.php:634 pmd_pdf.php:63 #, fuzzy msgid "Page has been created" msgstr "Tabel %s telah dihapus" -#: libraries/messages.inc.php:639 pmd_pdf.php:65 +#: libraries/messages.inc.php:635 pmd_pdf.php:65 msgid "Page creation failed" msgstr "" -#: libraries/messages.inc.php:640 +#: libraries/messages.inc.php:636 msgid "PDF" msgstr "" -#: libraries/messages.inc.php:641 +#: libraries/messages.inc.php:637 msgid "(Generates a report containing the data of a single table)" msgstr "" -#: libraries/messages.inc.php:642 +#: libraries/messages.inc.php:638 msgid "Report title" msgstr "" -#: libraries/messages.inc.php:643 server_status.php:389 server_status.php:434 +#: libraries/messages.inc.php:639 server_status.php:389 server_status.php:434 #: server_status.php:497 server_status.php:555 msgid "per hour" msgstr "dalam sejam" -#: libraries/messages.inc.php:644 server_status.php:498 +#: libraries/messages.inc.php:640 server_status.php:498 msgid "per minute" msgstr "per menit" -#: libraries/messages.inc.php:645 server_status.php:499 +#: libraries/messages.inc.php:641 server_status.php:499 msgid "per second" msgstr "per detik" -#: libraries/messages.inc.php:646 libraries/mysql_charsets.lib.php:271 +#: libraries/messages.inc.php:642 libraries/mysql_charsets.lib.php:271 msgid "Persian" msgstr "Persia" -#: libraries/messages.inc.php:647 libraries/mysql_charsets.lib.php:250 +#: libraries/messages.inc.php:643 libraries/mysql_charsets.lib.php:250 msgid "phone book" msgstr "buku telpon" -#: libraries/messages.inc.php:648 +#: libraries/messages.inc.php:644 msgid "PHP array" msgstr "" -#: libraries/messages.inc.php:650 main.php:213 +#: libraries/messages.inc.php:646 main.php:213 #, fuzzy msgid "PHP extension" msgstr "Versi PHP" -#: libraries/messages.inc.php:654 libraries/relation.lib.php:163 +#: libraries/messages.inc.php:650 libraries/relation.lib.php:163 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/messages.inc.php:655 libraries/relation.lib.php:159 +#: libraries/messages.inc.php:651 libraries/relation.lib.php:159 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/messages.inc.php:656 libraries/relation.lib.php:161 +#: libraries/messages.inc.php:652 libraries/relation.lib.php:161 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" -#: libraries/messages.inc.php:657 libraries/relation.lib.php:162 +#: libraries/messages.inc.php:653 libraries/relation.lib.php:162 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/messages.inc.php:658 libraries/relation.lib.php:164 +#: libraries/messages.inc.php:654 libraries/relation.lib.php:164 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/messages.inc.php:661 libraries/mysql_charsets.lib.php:274 +#: libraries/messages.inc.php:657 libraries/mysql_charsets.lib.php:274 msgid "Polish" msgstr "Polandia" -#: libraries/messages.inc.php:662 libraries/replication_gui.lib.php:67 +#: libraries/messages.inc.php:658 libraries/replication_gui.lib.php:67 #: server_synchronize.php:1163 #, fuzzy msgid "Port" msgstr "Urutkan" -#: libraries/messages.inc.php:667 tbl_indexes.php:67 +#: libraries/messages.inc.php:663 tbl_indexes.php:67 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Nama Kunci utama diwajibkan... PRIMARY!" -#: libraries/messages.inc.php:668 tbl_indexes.php:184 +#: libraries/messages.inc.php:664 tbl_indexes.php:184 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" "(Tanda nama \"PRIMARY\" wajib sebagai satu-satunya nama dan hanya sebagai Kunci utama saja!)" -#: libraries/messages.inc.php:669 libraries/mult_submits.inc.php:76 +#: libraries/messages.inc.php:665 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:474 msgid "Primary" msgstr "Kunci Utama" -#: libraries/messages.inc.php:673 server_privileges.php:227 +#: libraries/messages.inc.php:669 server_privileges.php:227 msgid "Includes all privileges except GRANT." msgstr "Menggunakan seluruh Hak Istimewa (Privileges) selain GRANT." -#: libraries/messages.inc.php:674 server_privileges.php:153 +#: libraries/messages.inc.php:670 server_privileges.php:153 #: server_privileges.php:476 msgid "Allows altering the structure of existing tables." msgstr "Mengizinkan untuk merubah struktur dari tabel yang ada." -#: libraries/messages.inc.php:675 server_privileges.php:169 +#: libraries/messages.inc.php:671 server_privileges.php:169 #: server_privileges.php:482 msgid "Allows altering and dropping stored routines." msgstr "Mengizinkan perubahan dan penghapusan dari Routines yang tersimpan." -#: libraries/messages.inc.php:676 server_privileges.php:145 +#: libraries/messages.inc.php:672 server_privileges.php:145 #: server_privileges.php:475 msgid "Allows creating new databases and tables." msgstr "Mengizinkan untuk menciptakan database dan tabel baru." -#: libraries/messages.inc.php:677 server_privileges.php:168 +#: libraries/messages.inc.php:673 server_privileges.php:168 #: server_privileges.php:481 msgid "Allows creating stored routines." msgstr "Mengizinkan penciptaan Routines yang akan disimpan." -#: libraries/messages.inc.php:678 server_privileges.php:475 +#: libraries/messages.inc.php:674 server_privileges.php:475 msgid "Allows creating new tables." msgstr "Mengizinkan untuk menciptakan tabel baru." -#: libraries/messages.inc.php:679 server_privileges.php:156 +#: libraries/messages.inc.php:675 server_privileges.php:156 #: server_privileges.php:479 msgid "Allows creating temporary tables." msgstr "Mengizinkan untuk menciptakan tabel yang bersifat temporer." -#: libraries/messages.inc.php:680 server_privileges.php:170 +#: libraries/messages.inc.php:676 server_privileges.php:170 #: server_privileges.php:515 msgid "Allows creating, dropping and renaming user accounts." msgstr "Mengizinkan penciptaan, penghapusan dan perubahan account pengguna." -#: libraries/messages.inc.php:681 server_privileges.php:160 +#: libraries/messages.inc.php:677 server_privileges.php:160 #: server_privileges.php:164 server_privileges.php:487 #: server_privileges.php:491 msgid "Allows creating new views." msgstr "Mengizinkan untuk menciptakan pandangan baru." -#: libraries/messages.inc.php:682 server_privileges.php:144 +#: libraries/messages.inc.php:678 server_privileges.php:144 #: server_privileges.php:467 msgid "Allows deleting data." msgstr "Mengizinkan untuk hapus data." -#: libraries/messages.inc.php:683 server_privileges.php:146 +#: libraries/messages.inc.php:679 server_privileges.php:146 #: server_privileges.php:478 msgid "Allows dropping databases and tables." msgstr "Mengizinkan untuk hapus database dan tabel." -#: libraries/messages.inc.php:684 server_privileges.php:478 +#: libraries/messages.inc.php:680 server_privileges.php:478 msgid "Allows dropping tables." msgstr "Mengizinkan untuk hapus tabel." -#: libraries/messages.inc.php:685 server_privileges.php:161 +#: libraries/messages.inc.php:681 server_privileges.php:161 #: server_privileges.php:495 msgid "Allows to set up events for the event scheduler" msgstr "" -#: libraries/messages.inc.php:686 server_privileges.php:171 +#: libraries/messages.inc.php:682 server_privileges.php:171 #: server_privileges.php:483 msgid "Allows executing stored routines." msgstr "Mengizinkan eksekusi Routines yang tersimpan." -#: libraries/messages.inc.php:687 server_privileges.php:150 +#: libraries/messages.inc.php:683 server_privileges.php:150 #: server_privileges.php:470 msgid "Allows importing data from and exporting data into files." msgstr "Mengizinkan untuk impor data dari file dan ekspor data kedalam file." -#: libraries/messages.inc.php:688 server_privileges.php:501 +#: libraries/messages.inc.php:684 server_privileges.php:501 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Mengizinkan untuk menambah pengguna dan Hak Istimewa (Privileges) tanpa " "harus me-reload ulang tabel Hak Istimewa." -#: libraries/messages.inc.php:689 server_privileges.php:152 +#: libraries/messages.inc.php:685 server_privileges.php:152 #: server_privileges.php:477 msgid "Allows creating and dropping indexes." msgstr "Mengizinkan untuk menciptakan dan hapus Indeks." -#: libraries/messages.inc.php:690 server_privileges.php:142 +#: libraries/messages.inc.php:686 server_privileges.php:142 #: server_privileges.php:403 server_privileges.php:465 msgid "Allows inserting and replacing data." msgstr "Mengizinkan untuk tambah dan ganti data." -#: libraries/messages.inc.php:691 server_privileges.php:157 +#: libraries/messages.inc.php:687 server_privileges.php:157 #: server_privileges.php:510 msgid "Allows locking tables for the current thread." msgstr "Mengizinkan untuk mengunci tabel dalam Thread yang lagi berjalan." -#: libraries/messages.inc.php:692 server_privileges.php:607 +#: libraries/messages.inc.php:688 server_privileges.php:607 #: server_privileges.php:609 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Membatasi jumlah koneksi baru yang diperbolehkan untuk setiap pengguna dalam " "batas waktu satu jam." -#: libraries/messages.inc.php:693 server_privileges.php:595 +#: libraries/messages.inc.php:689 server_privileges.php:595 #: server_privileges.php:597 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Membatasi jumlah pencarian (Queries) yang diperbolehkan untuk setiap " "pengguna dalam batas waktu satu jam." -#: libraries/messages.inc.php:694 server_privileges.php:601 +#: libraries/messages.inc.php:690 server_privileges.php:601 #: server_privileges.php:603 msgid "" "Limits the number of commands that change any table or database the user may " @@ -4643,7 +4643,7 @@ msgstr "" "Membatasi jumlah perintah untuk merubah sebuah tabel atau database untuk " "setiap pengguna dalam batas waktu satu jam." -#: libraries/messages.inc.php:695 server_privileges.php:613 +#: libraries/messages.inc.php:691 server_privileges.php:613 #: server_privileges.php:615 #, fuzzy msgid "Limits the number of simultaneous connections the user may have." @@ -4651,55 +4651,55 @@ msgstr "" "Membatasi jumlah koneksi baru yang diperbolehkan untuk setiap pengguna dalam " "batas waktu satu jam." -#: libraries/messages.inc.php:696 server_privileges.php:149 +#: libraries/messages.inc.php:692 server_privileges.php:149 #: server_privileges.php:505 msgid "Allows viewing processes of all users" msgstr "" -#: libraries/messages.inc.php:697 server_privileges.php:151 +#: libraries/messages.inc.php:693 server_privileges.php:151 #: server_privileges.php:409 server_privileges.php:511 msgid "Has no effect in this MySQL version." msgstr "Tidak ada efek dalam versi MySQL yang digunakan." -#: libraries/messages.inc.php:698 server_privileges.php:147 +#: libraries/messages.inc.php:694 server_privileges.php:147 #: server_privileges.php:506 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Mengizinkan untuk reload stelan dari server dan untuk flush cache dari " "server." -#: libraries/messages.inc.php:699 server_privileges.php:159 +#: libraries/messages.inc.php:695 server_privileges.php:159 #: server_privileges.php:513 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Memberi hak kepada pengguna untuk menanyakan lokasi dari slaves / masters." -#: libraries/messages.inc.php:700 server_privileges.php:158 +#: libraries/messages.inc.php:696 server_privileges.php:158 #: server_privileges.php:514 msgid "Needed for the replication slaves." msgstr "Digunakan untuk replikasi dari slaves." -#: libraries/messages.inc.php:701 server_privileges.php:141 +#: libraries/messages.inc.php:697 server_privileges.php:141 #: server_privileges.php:400 server_privileges.php:464 msgid "Allows reading data." msgstr "Mengizinkan untuk baca data." -#: libraries/messages.inc.php:702 server_privileges.php:154 +#: libraries/messages.inc.php:698 server_privileges.php:154 #: server_privileges.php:508 msgid "Gives access to the complete list of databases." msgstr "Memberi akses ke seluruh daftar database." -#: libraries/messages.inc.php:703 server_privileges.php:165 +#: libraries/messages.inc.php:699 server_privileges.php:165 #: server_privileges.php:167 server_privileges.php:480 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Mengizinkan pencarian dengan cara SHOW CREATE VIEW." -#: libraries/messages.inc.php:704 server_privileges.php:148 +#: libraries/messages.inc.php:700 server_privileges.php:148 #: server_privileges.php:507 msgid "Allows shutting down the server." msgstr "Mengizinkan untuk shut-down server." -#: libraries/messages.inc.php:705 server_privileges.php:155 +#: libraries/messages.inc.php:701 server_privileges.php:155 #: server_privileges.php:504 msgid "" "Allows connecting, even if maximum number of connections is reached; " @@ -4710,57 +4710,57 @@ msgstr "" "diperlukan untuk hampir semua operasi administratif seperti stelan variabel " "global atau untuk mematikan sebuah Thread yang dimiliki oleh pengguna lain." -#: libraries/messages.inc.php:706 server_privileges.php:162 +#: libraries/messages.inc.php:702 server_privileges.php:162 #: server_privileges.php:496 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "Mengizinkan untuk menciptakan dan hapus Indeks." -#: libraries/messages.inc.php:707 server_privileges.php:143 +#: libraries/messages.inc.php:703 server_privileges.php:143 #: server_privileges.php:406 server_privileges.php:466 msgid "Allows changing data." msgstr "Mengizinkan untuk ubah data." -#: libraries/messages.inc.php:708 server_privileges.php:221 +#: libraries/messages.inc.php:704 server_privileges.php:221 msgid "No privileges." msgstr "Tanpa Hak Istimewa (Privileges)." -#: libraries/messages.inc.php:710 server_privileges.php:1296 +#: libraries/messages.inc.php:706 server_privileges.php:1296 msgid "The privileges were reloaded successfully." msgstr "Sukses reload Hak Istimewa (Privileges)." -#: libraries/messages.inc.php:712 libraries/server_links.inc.php:80 +#: libraries/messages.inc.php:708 libraries/server_links.inc.php:80 msgid "Processes" msgstr "Proses Aktif" -#: libraries/messages.inc.php:714 main.php:187 +#: libraries/messages.inc.php:710 main.php:187 msgid "Protocol version" msgstr "" -#: libraries/messages.inc.php:715 +#: libraries/messages.inc.php:711 msgid "Put fields names in the first row" msgstr "Letakkan nama Fields pada baris pertama" -#: libraries/messages.inc.php:720 server_synchronize.php:1003 +#: libraries/messages.inc.php:716 server_synchronize.php:1003 msgid "The following queries have been executed:" msgstr "" -#: libraries/messages.inc.php:721 server_status.php:251 +#: libraries/messages.inc.php:717 server_status.php:251 #, fuzzy msgid "Query cache" msgstr "Tipe Pencarian" -#: libraries/messages.inc.php:722 libraries/navigation_header.inc.php:80 +#: libraries/messages.inc.php:718 libraries/navigation_header.inc.php:80 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 setup/lib/messages.inc.php:122 msgid "Query window" msgstr "Jendela Pencarian" -#: libraries/messages.inc.php:725 querywindow.php:109 querywindow.php:217 +#: libraries/messages.inc.php:721 querywindow.php:109 querywindow.php:217 msgid "SQL history" msgstr "Sejarah SQL" -#: libraries/messages.inc.php:726 server_status.php:490 +#: libraries/messages.inc.php:722 server_status.php:490 #, php-format msgid "" "Query statistics: Since its startup, %s queries have been sent to the " @@ -4769,137 +4769,137 @@ msgstr "" "Informasi statistik: Sejak dihidupkan, %s pencarian telah dikirim " "kepada server." -#: libraries/messages.inc.php:728 server_status.php:554 +#: libraries/messages.inc.php:724 server_status.php:554 msgid "Query type" msgstr "Tipe Pencarian" -#: libraries/messages.inc.php:729 libraries/sql_query_form.lib.php:381 +#: libraries/messages.inc.php:725 libraries/sql_query_form.lib.php:381 msgid "Do not overwrite this query from outside the window" msgstr "Jangan timpahkan pencarian ini dari jendela luar" -#: libraries/messages.inc.php:732 tbl_operations.php:663 +#: libraries/messages.inc.php:728 tbl_operations.php:663 msgid "Rebuild" msgstr "" -#: libraries/messages.inc.php:733 server_status.php:394 +#: libraries/messages.inc.php:729 server_status.php:394 msgid "Received" msgstr "Penerimaan" -#: libraries/messages.inc.php:734 pmd_pdf.php:89 +#: libraries/messages.inc.php:730 pmd_pdf.php:89 msgid "recommended" msgstr "" -#: libraries/messages.inc.php:736 tbl_operations.php:702 +#: libraries/messages.inc.php:732 tbl_operations.php:702 msgid "Check referential integrity:" msgstr "Cek integriti referensial:" -#: libraries/messages.inc.php:740 pdf_schema.php:1032 pdf_schema.php:1141 +#: libraries/messages.inc.php:736 pdf_schema.php:1032 pdf_schema.php:1141 msgid "Relational schema" msgstr "Skema Relational" -#: libraries/messages.inc.php:744 tbl_relation.php:399 +#: libraries/messages.inc.php:740 tbl_relation.php:399 msgid "Relations" msgstr "Tabel Relasi" -#: libraries/messages.inc.php:745 tbl_structure.php:507 tbl_structure.php:509 +#: libraries/messages.inc.php:741 tbl_structure.php:507 tbl_structure.php:509 msgid "Relation view" msgstr "Tampilan relasi" -#: libraries/messages.inc.php:746 server_privileges.php:1246 +#: libraries/messages.inc.php:742 server_privileges.php:1246 msgid "Reloading the privileges" msgstr "Reload Hak Istimewa (Privileges)" -#: libraries/messages.inc.php:747 navigation.php:66 navigation.php:67 +#: libraries/messages.inc.php:743 navigation.php:66 navigation.php:67 #: navigation.php:70 msgid "Reload navigation frame" msgstr "" -#: libraries/messages.inc.php:748 pmd_general.php:80 +#: libraries/messages.inc.php:744 pmd_general.php:80 msgid "Reload" msgstr "" -#: libraries/messages.inc.php:749 libraries/server_synchronize.lib.php:1345 +#: libraries/messages.inc.php:745 libraries/server_synchronize.lib.php:1345 #: libraries/server_synchronize.lib.php:1371 msgid "Remote server" msgstr "" -#: libraries/messages.inc.php:750 +#: libraries/messages.inc.php:746 msgid "Remove CRLF characters within fields" msgstr "" -#: libraries/messages.inc.php:751 tbl_operations.php:676 +#: libraries/messages.inc.php:747 tbl_operations.php:676 msgid "Remove partitioning" msgstr "" -#: libraries/messages.inc.php:752 server_privileges.php:1575 +#: libraries/messages.inc.php:748 server_privileges.php:1575 msgid "Remove selected users" msgstr "Hapus pengguna yang dipilih" -#: libraries/messages.inc.php:755 tbl_operations.php:338 +#: libraries/messages.inc.php:751 tbl_operations.php:338 msgid "Rename table to" msgstr "Ubah nama tabel menjadi " -#: libraries/messages.inc.php:756 view_operations.php:93 +#: libraries/messages.inc.php:752 view_operations.php:93 #, fuzzy msgid "Rename view to" msgstr "Ubah nama tabel menjadi " -#: libraries/messages.inc.php:757 tbl_operations.php:664 +#: libraries/messages.inc.php:753 tbl_operations.php:664 #, fuzzy msgid "Repair" msgstr "Perbaiki tabel" -#: libraries/messages.inc.php:759 +#: libraries/messages.inc.php:755 msgid "Replace NULL by" msgstr "Menggantikan NULL dengan" -#: libraries/messages.inc.php:760 +#: libraries/messages.inc.php:756 msgid "Replace table data with file" msgstr "Ganti data tabel dengan file" -#: libraries/messages.inc.php:761 server_replication.php:228 +#: libraries/messages.inc.php:757 server_replication.php:228 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: libraries/messages.inc.php:762 libraries/replication_gui.lib.php:236 +#: libraries/messages.inc.php:758 libraries/replication_gui.lib.php:236 #: server_replication.php:194 msgid "Add slave replication user" msgstr "" -#: libraries/messages.inc.php:763 server_replication.php:74 +#: libraries/messages.inc.php:759 server_replication.php:74 #, php-format msgid "Master server changed succesfully to %s" msgstr "" -#: libraries/messages.inc.php:764 server_replication.php:182 +#: libraries/messages.inc.php:760 server_replication.php:182 msgid "This server is configured as master in a replication process." msgstr "" -#: libraries/messages.inc.php:765 server_replication.php:322 +#: libraries/messages.inc.php:761 server_replication.php:322 msgid "Control slave:" msgstr "" -#: libraries/messages.inc.php:766 server_replication.php:65 +#: libraries/messages.inc.php:762 server_replication.php:65 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: libraries/messages.inc.php:767 server_replication.php:58 +#: libraries/messages.inc.php:763 server_replication.php:58 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: libraries/messages.inc.php:768 server_replication.php:221 +#: libraries/messages.inc.php:764 server_replication.php:221 msgid "Replicate all databases; Ignore:" msgstr "" -#: libraries/messages.inc.php:769 server_replication.php:222 +#: libraries/messages.inc.php:765 server_replication.php:222 msgid "Ignore all databases; Replicate:" msgstr "" -#: libraries/messages.inc.php:770 server_replication.php:218 +#: libraries/messages.inc.php:766 server_replication.php:218 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -4908,121 +4908,121 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: libraries/messages.inc.php:771 server_replication.php:217 +#: libraries/messages.inc.php:767 server_replication.php:217 msgid "Master configuration" msgstr "" -#: libraries/messages.inc.php:772 server_replication.php:181 +#: libraries/messages.inc.php:768 server_replication.php:181 #: server_replication.php:209 msgid "Master replication" msgstr "" -#: libraries/messages.inc.php:774 server_replication.php:230 +#: libraries/messages.inc.php:770 server_replication.php:230 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: libraries/messages.inc.php:775 server_replication.php:225 +#: libraries/messages.inc.php:771 server_replication.php:225 #, fuzzy msgid "Please select databases:" msgstr "Silakan pilih database" -#: libraries/messages.inc.php:776 server_replication.php:210 +#: libraries/messages.inc.php:772 server_replication.php:210 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:188 +#: libraries/messages.inc.php:773 libraries/replication_gui.lib.php:188 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/messages.inc.php:778 server_replication.php:187 +#: libraries/messages.inc.php:774 server_replication.php:187 msgid "Show connected slaves" msgstr "" -#: libraries/messages.inc.php:779 libraries/messages.inc.php:885 +#: libraries/messages.inc.php:775 libraries/messages.inc.php:881 #: server_replication.php:184 server_status.php:281 msgid "Show master status" msgstr "" -#: libraries/messages.inc.php:780 server_replication.php:334 +#: libraries/messages.inc.php:776 server_replication.php:334 msgid "Skipping error(s) might lead into unsynchronized master and slave!" msgstr "" -#: libraries/messages.inc.php:781 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:51 #: server_replication.php:347 msgid "Change or reconfigure master server" msgstr "" -#: libraries/messages.inc.php:782 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:778 libraries/replication_gui.lib.php:51 msgid "Slave configuration" msgstr "" -#: libraries/messages.inc.php:783 server_replication.php:305 +#: libraries/messages.inc.php:779 server_replication.php:305 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: libraries/messages.inc.php:784 server_replication.php:332 +#: libraries/messages.inc.php:780 server_replication.php:332 msgid "Error management:" msgstr "" -#: libraries/messages.inc.php:785 server_replication.php:328 +#: libraries/messages.inc.php:781 server_replication.php:328 #, php-format msgid "IO Thread %s only" msgstr "" -#: libraries/messages.inc.php:786 server_replication.php:296 +#: libraries/messages.inc.php:782 server_replication.php:296 msgid "Slave IO Thread not running!" msgstr "" -#: libraries/messages.inc.php:787 server_replication.php:355 +#: libraries/messages.inc.php:783 server_replication.php:355 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/messages.inc.php:788 server_replication.php:326 +#: libraries/messages.inc.php:784 server_replication.php:326 msgid "Reset slave" msgstr "" -#: libraries/messages.inc.php:789 server_replication.php:308 +#: libraries/messages.inc.php:785 server_replication.php:308 msgid "See slave status table" msgstr "" -#: libraries/messages.inc.php:790 server_replication.php:336 +#: libraries/messages.inc.php:786 server_replication.php:336 msgid "Skip current error" msgstr "" -#: libraries/messages.inc.php:791 server_replication.php:340 +#: libraries/messages.inc.php:787 server_replication.php:340 msgid "errors." msgstr "" -#: libraries/messages.inc.php:792 server_replication.php:337 +#: libraries/messages.inc.php:788 server_replication.php:337 msgid "Skip next" msgstr "" -#: libraries/messages.inc.php:793 server_replication.php:248 +#: libraries/messages.inc.php:789 server_replication.php:248 msgid "Slave replication" msgstr "" -#: libraries/messages.inc.php:794 server_replication.php:293 +#: libraries/messages.inc.php:790 server_replication.php:293 msgid "Slave SQL Thread not running!" msgstr "" -#: libraries/messages.inc.php:795 server_replication.php:327 +#: libraries/messages.inc.php:791 server_replication.php:327 #, php-format msgid "SQL Thread %s only" msgstr "" -#: libraries/messages.inc.php:796 +#: libraries/messages.inc.php:792 #, php-format msgid "" "This MySQL server works as %s in replication process. For further " @@ -5030,165 +5030,165 @@ msgid "" "\"#replication\">replication section." msgstr "" -#: libraries/messages.inc.php:797 +#: libraries/messages.inc.php:793 msgid "Master status" msgstr "" -#: libraries/messages.inc.php:798 server_status.php:721 +#: libraries/messages.inc.php:794 server_status.php:721 msgid "Replication status" msgstr "" -#: libraries/messages.inc.php:799 +#: libraries/messages.inc.php:795 msgid "Slave status" msgstr "" -#: libraries/messages.inc.php:800 server_replication.php:311 +#: libraries/messages.inc.php:796 server_replication.php:311 msgid "Synchronize databases with master" msgstr "" -#: libraries/messages.inc.php:801 server_replication.php:71 +#: libraries/messages.inc.php:797 server_replication.php:71 msgid "Unable to change master" msgstr "" -#: libraries/messages.inc.php:802 server_replication.php:51 +#: libraries/messages.inc.php:798 server_replication.php:51 msgid "Unknown error" msgstr "" -#: libraries/messages.inc.php:803 main.php:163 pdf_pages.php:344 +#: libraries/messages.inc.php:799 main.php:163 pdf_pages.php:344 #: setup/lib/FormDisplay.tpl.php:216 tbl_change.php:1175 msgid "Reset" msgstr "Reset" -#: libraries/messages.inc.php:804 server_privileges.php:591 +#: libraries/messages.inc.php:800 server_privileges.php:591 msgid "Resource limits" msgstr "Batas dari sumber" -#: libraries/messages.inc.php:805 tbl_change.php:1209 +#: libraries/messages.inc.php:801 tbl_change.php:1209 #, php-format msgid "Restart insertion with %s rows" msgstr "" -#: libraries/messages.inc.php:807 server_privileges.php:1578 +#: libraries/messages.inc.php:803 server_privileges.php:1578 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." -#: libraries/messages.inc.php:808 server_privileges.php:1176 +#: libraries/messages.inc.php:804 server_privileges.php:1176 #, php-format msgid "You have revoked the privileges for %s" msgstr "Hak akses untuk %s telah dicabut" -#: libraries/messages.inc.php:809 server_privileges.php:1333 +#: libraries/messages.inc.php:805 server_privileges.php:1333 msgid "Revoke" msgstr "Cabut" -#: libraries/messages.inc.php:810 libraries/mysql_charsets.lib.php:280 +#: libraries/messages.inc.php:806 libraries/mysql_charsets.lib.php:280 msgid "Romanian" msgstr "Romania" -#: libraries/messages.inc.php:813 tbl_printview.php:404 tbl_structure.php:786 +#: libraries/messages.inc.php:809 tbl_printview.php:404 tbl_structure.php:786 msgid "Row length" msgstr "Panjangnya baris" -#: libraries/messages.inc.php:815 tbl_printview.php:414 tbl_structure.php:794 +#: libraries/messages.inc.php:811 tbl_printview.php:414 tbl_structure.php:794 msgid " Row size " msgstr " Besarnya baris " -#: libraries/messages.inc.php:821 tbl_printview.php:366 tbl_structure.php:726 +#: libraries/messages.inc.php:817 tbl_printview.php:366 tbl_structure.php:726 msgid "Row Statistics" msgstr "Statistik Baris" -#: libraries/messages.inc.php:822 +#: libraries/messages.inc.php:818 #, php-format msgid "running on %s" msgstr "dijalankan pada %s" -#: libraries/messages.inc.php:824 libraries/sql_query_form.lib.php:223 +#: libraries/messages.inc.php:820 libraries/sql_query_form.lib.php:223 #, fuzzy, php-format msgid "Run SQL query/queries on server %s" msgstr "Melaksanakan perintah SQL pada database %s" -#: libraries/messages.inc.php:825 libraries/sql_query_form.lib.php:240 +#: libraries/messages.inc.php:821 libraries/sql_query_form.lib.php:240 #: libraries/sql_query_form.lib.php:265 #, php-format msgid "Run SQL query/queries on database %s" msgstr "Melaksanakan perintah SQL pada database %s" -#: libraries/messages.inc.php:826 libraries/mysql_charsets.lib.php:337 +#: libraries/messages.inc.php:822 libraries/mysql_charsets.lib.php:337 msgid "Russian" msgstr "Bahasa Rusia" -#: libraries/messages.inc.php:829 pmd_general.php:68 +#: libraries/messages.inc.php:825 pmd_general.php:68 msgid "Save position" msgstr "" -#: libraries/messages.inc.php:830 libraries/tbl_properties.inc.php:776 +#: libraries/messages.inc.php:826 libraries/tbl_properties.inc.php:776 #: pdf_pages.php:484 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:214 setup/lib/FormDisplay.tpl.php:215 #: tbl_change.php:1126 tbl_indexes.php:248 tbl_relation.php:566 msgid "Save" msgstr "Simpan" -#: libraries/messages.inc.php:831 +#: libraries/messages.inc.php:827 msgid "The scale factor is too small to fit the schema on one page" msgstr "" "Faktor skala yang dipilih terlalu kecil untuk dimuat dalam skema satu halaman" -#: libraries/messages.inc.php:843 main.php:298 +#: libraries/messages.inc.php:839 main.php:298 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "File konfigurasi membutuhkan susunan kata-kata rahasia (blowfish_secret)." -#: libraries/messages.inc.php:844 navigation.php:353 navigation.php:516 +#: libraries/messages.inc.php:840 navigation.php:353 navigation.php:516 msgid "Please select a database" msgstr "Silakan pilih database" -#: libraries/messages.inc.php:846 server_binlog.php:120 +#: libraries/messages.inc.php:842 server_binlog.php:120 msgid "Select binary log to view" msgstr "Pilih Log binari untuk ditinjau" -#: libraries/messages.inc.php:847 tbl_select.php:270 +#: libraries/messages.inc.php:843 tbl_select.php:270 msgid "Select fields (at least one):" msgstr "Pilihan field (min. satu):" -#: libraries/messages.inc.php:851 pdf_pages.php:320 +#: libraries/messages.inc.php:847 pdf_pages.php:320 msgid "Select Tables" msgstr "Pilih tabel" -#: libraries/messages.inc.php:853 server_status.php:404 +#: libraries/messages.inc.php:849 server_status.php:404 msgid "Sent" msgstr "Pengiriman" -#: libraries/messages.inc.php:857 libraries/select_server.lib.php:45 +#: libraries/messages.inc.php:853 libraries/select_server.lib.php:45 #: setup/frames/index.inc.php:97 setup/lib/messages.inc.php:115 #, fuzzy msgid "Servers" msgstr "Server" -#: libraries/messages.inc.php:858 server_status.php:255 +#: libraries/messages.inc.php:854 server_status.php:255 #, fuzzy msgid "Delayed inserts" msgstr "Gunakan perintah INSERT memperlambat" -#: libraries/messages.inc.php:859 server_status.php:46 +#: libraries/messages.inc.php:855 server_status.php:46 msgid "Runtime Information" msgstr "Informasi Runtime" -#: libraries/messages.inc.php:860 server_status.php:350 +#: libraries/messages.inc.php:856 server_status.php:350 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "" "MySQL server ini telah berjalan secara berturut-turut selama %s. Server " "dijalankan pada tanggal %s." -#: libraries/messages.inc.php:861 libraries/server_links.inc.php:53 +#: libraries/messages.inc.php:857 libraries/server_links.inc.php:53 #: server_engines.php:112 server_engines.php:116 server_status.php:304 #: test/theme.php:105 msgid "Variables" msgstr "Variabel" -#: libraries/messages.inc.php:862 server_status.php:383 +#: libraries/messages.inc.php:858 server_status.php:383 msgid "" "Server traffic: These tables show the network traffic statistics of " "this MySQL server since its startup." @@ -5196,11 +5196,11 @@ msgstr "" "Server traffic: Tabel ini menampilkan statistik jaringan lalu-lintas " "server MySQL sejak dihidupkan." -#: libraries/messages.inc.php:863 server_variables.php:35 +#: libraries/messages.inc.php:859 server_variables.php:35 msgid "Server variables and settings" msgstr "Variabel dan penyetelan server" -#: libraries/messages.inc.php:865 main.php:290 +#: libraries/messages.inc.php:861 main.php:290 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -5208,17 +5208,17 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: libraries/messages.inc.php:866 +#: libraries/messages.inc.php:862 msgid "" "Cannot start session without errors, please check errors given in your PHP " "and/or webserver log file and configure your PHP installation properly." msgstr "" -#: libraries/messages.inc.php:867 server_variables.php:55 +#: libraries/messages.inc.php:863 server_variables.php:55 msgid "Session value" msgstr "Nilai dari Session" -#: libraries/messages.inc.php:868 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:864 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 " @@ -5230,56 +5230,56 @@ msgstr "" "tanda kutip (\"'\") diperlukan, tanda tersebut perlu ditutupi dengan tanda " "backslash (seb. contoh '\\\\xyz' atau 'a\\'b')." -#: libraries/messages.inc.php:876 server_binlog.php:192 server_binlog.php:195 +#: libraries/messages.inc.php:872 server_binlog.php:192 server_binlog.php:195 #: server_processlist.php:49 server_processlist.php:51 msgid "Show Full Queries" msgstr "Tampilkan pencarian yang lengkap" -#: libraries/messages.inc.php:878 pmd_general.php:64 +#: libraries/messages.inc.php:874 pmd_general.php:64 msgid "Show/Hide left menu" msgstr "" -#: libraries/messages.inc.php:880 sql.php:513 +#: libraries/messages.inc.php:876 sql.php:513 msgid "Showing as PHP code" msgstr "" -#: libraries/messages.inc.php:882 sql.php:516 tbl_replace.php:360 +#: libraries/messages.inc.php:878 sql.php:516 tbl_replace.php:360 msgid "Showing SQL query" msgstr "" -#: libraries/messages.inc.php:883 tbl_change.php:1132 +#: libraries/messages.inc.php:879 tbl_change.php:1132 msgid "Show insert query" msgstr "" -#: libraries/messages.inc.php:886 server_status.php:273 +#: libraries/messages.inc.php:882 server_status.php:273 #, fuzzy msgid "Show open tables" msgstr "Tampilkan tabel" -#: libraries/messages.inc.php:887 main.php:219 +#: libraries/messages.inc.php:883 main.php:219 msgid "Show PHP information" msgstr "Tampilkan informasi PHP" -#: libraries/messages.inc.php:889 server_status.php:278 +#: libraries/messages.inc.php:885 server_status.php:278 msgid "Show slave hosts" msgstr "" -#: libraries/messages.inc.php:890 server_status.php:284 +#: libraries/messages.inc.php:886 server_status.php:284 msgid "Show slave status" msgstr "" -#: libraries/messages.inc.php:891 +#: libraries/messages.inc.php:887 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/messages.inc.php:892 +#: libraries/messages.inc.php:888 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/messages.inc.php:893 +#: libraries/messages.inc.php:889 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -5287,78 +5287,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/messages.inc.php:894 +#: libraries/messages.inc.php:890 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/messages.inc.php:895 +#: libraries/messages.inc.php:891 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/messages.inc.php:896 +#: libraries/messages.inc.php:892 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/messages.inc.php:897 +#: libraries/messages.inc.php:893 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/messages.inc.php:898 +#: libraries/messages.inc.php:894 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/messages.inc.php:899 +#: libraries/messages.inc.php:895 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/messages.inc.php:900 +#: libraries/messages.inc.php:896 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/messages.inc.php:901 +#: libraries/messages.inc.php:897 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/messages.inc.php:902 +#: libraries/messages.inc.php:898 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/messages.inc.php:903 +#: libraries/messages.inc.php:899 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/messages.inc.php:904 +#: libraries/messages.inc.php:900 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: libraries/messages.inc.php:905 +#: libraries/messages.inc.php:901 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/messages.inc.php:906 +#: libraries/messages.inc.php:902 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: libraries/messages.inc.php:907 +#: libraries/messages.inc.php:903 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -5366,7 +5366,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/messages.inc.php:908 +#: libraries/messages.inc.php:904 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -5374,42 +5374,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/messages.inc.php:909 +#: libraries/messages.inc.php:905 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/messages.inc.php:910 +#: libraries/messages.inc.php:906 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/messages.inc.php:911 +#: libraries/messages.inc.php:907 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/messages.inc.php:912 +#: libraries/messages.inc.php:908 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/messages.inc.php:913 +#: libraries/messages.inc.php:909 msgid "The number of pages currently dirty." msgstr "" -#: libraries/messages.inc.php:914 +#: libraries/messages.inc.php:910 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/messages.inc.php:915 +#: libraries/messages.inc.php:911 msgid "The number of free pages." msgstr "" -#: libraries/messages.inc.php:916 +#: libraries/messages.inc.php:912 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/messages.inc.php:917 +#: libraries/messages.inc.php:913 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -5417,33 +5417,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/messages.inc.php:918 +#: libraries/messages.inc.php:914 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/messages.inc.php:919 +#: libraries/messages.inc.php:915 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/messages.inc.php:920 +#: libraries/messages.inc.php:916 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/messages.inc.php:921 +#: libraries/messages.inc.php:917 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/messages.inc.php:922 +#: libraries/messages.inc.php:918 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/messages.inc.php:923 +#: libraries/messages.inc.php:919 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -5452,218 +5452,218 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/messages.inc.php:924 +#: libraries/messages.inc.php:920 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/messages.inc.php:925 +#: libraries/messages.inc.php:921 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/messages.inc.php:926 +#: libraries/messages.inc.php:922 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/messages.inc.php:927 +#: libraries/messages.inc.php:923 msgid "The current number of pending reads." msgstr "" -#: libraries/messages.inc.php:928 +#: libraries/messages.inc.php:924 msgid "The current number of pending writes." msgstr "" -#: libraries/messages.inc.php:929 +#: libraries/messages.inc.php:925 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/messages.inc.php:930 +#: libraries/messages.inc.php:926 msgid "The total number of data reads." msgstr "" -#: libraries/messages.inc.php:931 +#: libraries/messages.inc.php:927 msgid "The total number of data writes." msgstr "" -#: libraries/messages.inc.php:932 +#: libraries/messages.inc.php:928 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/messages.inc.php:933 +#: libraries/messages.inc.php:929 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/messages.inc.php:934 +#: libraries/messages.inc.php:930 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/messages.inc.php:935 +#: libraries/messages.inc.php:931 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/messages.inc.php:936 +#: libraries/messages.inc.php:932 msgid "The number of log write requests." msgstr "" -#: libraries/messages.inc.php:937 +#: libraries/messages.inc.php:933 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/messages.inc.php:938 +#: libraries/messages.inc.php:934 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/messages.inc.php:939 +#: libraries/messages.inc.php:935 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/messages.inc.php:940 +#: libraries/messages.inc.php:936 msgid "Pending log file writes." msgstr "" -#: libraries/messages.inc.php:941 +#: libraries/messages.inc.php:937 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/messages.inc.php:942 +#: libraries/messages.inc.php:938 msgid "The number of pages created." msgstr "" -#: libraries/messages.inc.php:943 +#: libraries/messages.inc.php:939 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: libraries/messages.inc.php:944 +#: libraries/messages.inc.php:940 msgid "The number of pages read." msgstr "" -#: libraries/messages.inc.php:945 +#: libraries/messages.inc.php:941 msgid "The number of pages written." msgstr "" -#: libraries/messages.inc.php:946 +#: libraries/messages.inc.php:942 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/messages.inc.php:947 +#: libraries/messages.inc.php:943 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/messages.inc.php:948 +#: libraries/messages.inc.php:944 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/messages.inc.php:949 +#: libraries/messages.inc.php:945 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/messages.inc.php:950 +#: libraries/messages.inc.php:946 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/messages.inc.php:951 +#: libraries/messages.inc.php:947 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/messages.inc.php:952 +#: libraries/messages.inc.php:948 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/messages.inc.php:953 +#: libraries/messages.inc.php:949 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/messages.inc.php:954 +#: libraries/messages.inc.php:950 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/messages.inc.php:955 +#: libraries/messages.inc.php:951 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/messages.inc.php:956 +#: libraries/messages.inc.php:952 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: libraries/messages.inc.php:957 +#: libraries/messages.inc.php:953 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/messages.inc.php:958 +#: libraries/messages.inc.php:954 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/messages.inc.php:959 +#: libraries/messages.inc.php:955 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/messages.inc.php:960 +#: libraries/messages.inc.php:956 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/messages.inc.php:961 +#: libraries/messages.inc.php:957 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/messages.inc.php:962 +#: libraries/messages.inc.php:958 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/messages.inc.php:963 +#: libraries/messages.inc.php:959 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/messages.inc.php:964 +#: libraries/messages.inc.php:960 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/messages.inc.php:965 +#: libraries/messages.inc.php:961 msgid "The number of files that are open." msgstr "" -#: libraries/messages.inc.php:966 +#: libraries/messages.inc.php:962 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/messages.inc.php:967 +#: libraries/messages.inc.php:963 msgid "The number of tables that are open." msgstr "" -#: libraries/messages.inc.php:968 +#: libraries/messages.inc.php:964 msgid "The number of free memory blocks in query cache." msgstr "" -#: libraries/messages.inc.php:969 +#: libraries/messages.inc.php:965 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/messages.inc.php:970 +#: libraries/messages.inc.php:966 msgid "The number of cache hits." msgstr "" -#: libraries/messages.inc.php:971 +#: libraries/messages.inc.php:967 msgid "The number of queries added to the cache." msgstr "" -#: libraries/messages.inc.php:972 +#: libraries/messages.inc.php:968 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -5671,105 +5671,105 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/messages.inc.php:973 +#: libraries/messages.inc.php:969 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/messages.inc.php:974 +#: libraries/messages.inc.php:970 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/messages.inc.php:975 +#: libraries/messages.inc.php:971 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/messages.inc.php:976 +#: libraries/messages.inc.php:972 #, fuzzy msgctxt "$strShowStatusReset" msgid "Reset" msgstr "Reset" -#: libraries/messages.inc.php:977 +#: libraries/messages.inc.php:973 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/messages.inc.php:978 +#: libraries/messages.inc.php:974 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: libraries/messages.inc.php:979 +#: libraries/messages.inc.php:975 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/messages.inc.php:980 +#: libraries/messages.inc.php:976 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: libraries/messages.inc.php:981 +#: libraries/messages.inc.php:977 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/messages.inc.php:982 +#: libraries/messages.inc.php:978 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/messages.inc.php:983 +#: libraries/messages.inc.php:979 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/messages.inc.php:984 +#: libraries/messages.inc.php:980 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/messages.inc.php:985 +#: libraries/messages.inc.php:981 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/messages.inc.php:986 +#: libraries/messages.inc.php:982 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/messages.inc.php:987 +#: libraries/messages.inc.php:983 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/messages.inc.php:988 +#: libraries/messages.inc.php:984 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/messages.inc.php:989 +#: libraries/messages.inc.php:985 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/messages.inc.php:990 +#: libraries/messages.inc.php:986 msgid "The number of sorted rows." msgstr "" -#: libraries/messages.inc.php:991 +#: libraries/messages.inc.php:987 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/messages.inc.php:992 +#: libraries/messages.inc.php:988 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/messages.inc.php:993 +#: libraries/messages.inc.php:989 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -5777,18 +5777,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/messages.inc.php:994 +#: libraries/messages.inc.php:990 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/messages.inc.php:995 +#: libraries/messages.inc.php:991 msgid "The number of currently open connections." msgstr "" -#: libraries/messages.inc.php:996 +#: libraries/messages.inc.php:992 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -5796,74 +5796,74 @@ msgid "" "implementation.)" msgstr "" -#: libraries/messages.inc.php:997 +#: libraries/messages.inc.php:993 msgid "The number of threads that are not sleeping." msgstr "" -#: libraries/messages.inc.php:999 tbl_printview.php:75 +#: libraries/messages.inc.php:995 tbl_printview.php:75 msgid "Show tables" msgstr "Tampilkan tabel" -#: libraries/messages.inc.php:1000 libraries/sql_query_form.lib.php:396 +#: libraries/messages.inc.php:996 libraries/sql_query_form.lib.php:396 msgid " Show this query here again " msgstr " Tampilkan ulang perintah SQL " -#: libraries/messages.inc.php:1001 libraries/mysql_charsets.lib.php:217 +#: libraries/messages.inc.php:997 libraries/mysql_charsets.lib.php:217 #: libraries/mysql_charsets.lib.php:342 msgid "Simplified Chinese" msgstr "Bahasa Cina sederhana" -#: libraries/messages.inc.php:1002 tbl_operations.php:258 +#: libraries/messages.inc.php:998 tbl_operations.php:258 msgid "(singly)" msgstr "(unik)" -#: libraries/messages.inc.php:1005 libraries/replication_gui.lib.php:52 +#: libraries/messages.inc.php:1001 libraries/replication_gui.lib.php:52 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" msgstr "" -#: libraries/messages.inc.php:1006 libraries/mysql_charsets.lib.php:283 +#: libraries/messages.inc.php:1002 libraries/mysql_charsets.lib.php:283 msgid "Slovak" msgstr "Slovakia" -#: libraries/messages.inc.php:1007 libraries/mysql_charsets.lib.php:286 +#: libraries/messages.inc.php:1003 libraries/mysql_charsets.lib.php:286 msgid "Slovenian" msgstr "Slovenia" -#: libraries/messages.inc.php:1008 pmd_general.php:95 +#: libraries/messages.inc.php:1004 pmd_general.php:95 msgid "Small/Big All" msgstr "" -#: libraries/messages.inc.php:1009 pmd_general.php:91 +#: libraries/messages.inc.php:1005 pmd_general.php:91 msgid "Snap to grid" msgstr "" -#: libraries/messages.inc.php:1011 server_synchronize.php:1167 +#: libraries/messages.inc.php:1007 server_synchronize.php:1167 msgid "Socket" msgstr "" -#: libraries/messages.inc.php:1013 server_status.php:259 +#: libraries/messages.inc.php:1009 server_status.php:259 msgid "Sorting" msgstr "" -#: libraries/messages.inc.php:1015 tbl_printview.php:310 tbl_structure.php:657 +#: libraries/messages.inc.php:1011 tbl_printview.php:310 tbl_structure.php:657 msgid "Space usage" msgstr "Penggunaan tempat" -#: libraries/messages.inc.php:1016 libraries/mysql_charsets.lib.php:289 +#: libraries/messages.inc.php:1012 libraries/mysql_charsets.lib.php:289 msgid "Spanish" msgstr "Bahasa Spanyol" -#: libraries/messages.inc.php:1019 +#: libraries/messages.inc.php:1015 msgid "Export type" msgstr "Jenis Ekspor" -#: libraries/messages.inc.php:1020 +#: libraries/messages.inc.php:1016 msgid "Export time in UTC" msgstr "" -#: libraries/messages.inc.php:1021 libraries/sqlparser.lib.php:173 +#: libraries/messages.inc.php:1017 libraries/sqlparser.lib.php:173 msgid "" "There is a chance that you may have found a bug in the SQL parser. Please " "examine your query closely, and check that the quotes are correct and not " @@ -5887,7 +5887,7 @@ msgstr "" "ditemukan. Mohon kirimkan sebuah Bug Report dengan cara menyisipkan data di " "bagian bawah ini kepada kami:" -#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:137 +#: libraries/messages.inc.php:1018 libraries/sqlparser.lib.php:137 msgid "" "There seems to be an error in your SQL query. The MySQL server error output " "below, if there is any, may also help you in diagnosing the problem" @@ -5896,392 +5896,392 @@ msgstr "" "jika tertampil, akan menolong Anda untuk mengetahui penyebab dari problem " "tersebut." -#: libraries/messages.inc.php:1026 libraries/sqlparser.lib.php:495 +#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:495 msgid "Invalid Identifer" msgstr "Identifer tidak valid" -#: libraries/messages.inc.php:1027 libraries/sqlparser.lib.php:344 +#: libraries/messages.inc.php:1023 libraries/sqlparser.lib.php:344 msgid "Unclosed quote" msgstr "Tanda kutip tidak ditutup" -#: libraries/messages.inc.php:1028 libraries/sqlparser.lib.php:612 +#: libraries/messages.inc.php:1024 libraries/sqlparser.lib.php:612 msgid "Unknown Punctuation String" msgstr "Punctation String tidak dikenali" -#: libraries/messages.inc.php:1030 server_replication.php:327 +#: libraries/messages.inc.php:1026 server_replication.php:327 #: server_replication.php:328 #, fuzzy msgid "Start" msgstr "Sabtu" -#: libraries/messages.inc.php:1033 tbl_printview.php:369 tbl_structure.php:729 +#: libraries/messages.inc.php:1029 tbl_printview.php:369 tbl_structure.php:729 msgid "Statements" msgstr "Keterangan" -#: libraries/messages.inc.php:1034 tbl_printview.php:380 tbl_structure.php:741 +#: libraries/messages.inc.php:1030 tbl_printview.php:380 tbl_structure.php:741 msgid "static" msgstr "" -#: libraries/messages.inc.php:1035 server_status.php:388 +#: libraries/messages.inc.php:1031 server_status.php:388 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: libraries/messages.inc.php:1038 server_replication.php:327 +#: libraries/messages.inc.php:1034 server_replication.php:327 #: server_replication.php:328 msgid "Stop" msgstr "" -#: libraries/messages.inc.php:1039 server_engines.php:49 +#: libraries/messages.inc.php:1035 server_engines.php:49 msgid "Storage Engines" msgstr "Mesin Penyimpan" -#: libraries/messages.inc.php:1040 libraries/tbl_properties.inc.php:726 +#: libraries/messages.inc.php:1036 libraries/tbl_properties.inc.php:726 #: server_engines.php:58 tbl_operations.php:353 msgid "Storage Engine" msgstr "Mesin Penyimpan" -#: libraries/messages.inc.php:1042 +#: libraries/messages.inc.php:1038 msgid "CSV for MS Excel" msgstr "CSV untuk data MS Excel" -#: libraries/messages.inc.php:1044 tbl_structure.php:516 tbl_structure.php:518 +#: libraries/messages.inc.php:1040 tbl_structure.php:516 tbl_structure.php:518 msgid "Propose table structure" msgstr "Menganalisa struktur tabel" -#: libraries/messages.inc.php:1045 server_synchronize.php:424 +#: libraries/messages.inc.php:1041 server_synchronize.php:424 #: server_synchronize.php:867 msgid "Structure Difference" msgstr "" -#: libraries/messages.inc.php:1049 server_synchronize.php:265 +#: libraries/messages.inc.php:1045 server_synchronize.php:265 msgid "Structure Synchronization" msgstr "" -#: libraries/messages.inc.php:1050 libraries/sql_query_form.lib.php:462 +#: libraries/messages.inc.php:1046 libraries/sql_query_form.lib.php:462 msgid "Submit" msgstr "Kirim" -#: libraries/messages.inc.php:1052 main.php:358 +#: libraries/messages.inc.php:1048 main.php:358 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " "issues." msgstr "" -#: libraries/messages.inc.php:1054 libraries/mysql_charsets.lib.php:295 +#: libraries/messages.inc.php:1050 libraries/mysql_charsets.lib.php:295 #: libraries/mysql_charsets.lib.php:392 msgid "Swedish" msgstr "Bahasa Swedia" -#: libraries/messages.inc.php:1060 tbl_operations.php:556 +#: libraries/messages.inc.php:1056 tbl_operations.php:556 msgid "Switch to copied table" msgstr "Pindah ke tabel salinan" -#: libraries/messages.inc.php:1061 server_synchronize.php:1213 +#: libraries/messages.inc.php:1057 server_synchronize.php:1213 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." msgstr "" -#: libraries/messages.inc.php:1062 server_synchronize.php:451 +#: libraries/messages.inc.php:1058 server_synchronize.php:451 #: server_synchronize.php:896 msgid "Synchronize Databases" msgstr "" -#: libraries/messages.inc.php:1063 libraries/server_links.inc.php:92 +#: libraries/messages.inc.php:1059 libraries/server_links.inc.php:92 #: server_synchronize.php:1092 server_synchronize.php:1100 msgid "Synchronize" msgstr "" -#: libraries/messages.inc.php:1065 server_synchronize.php:430 +#: libraries/messages.inc.php:1061 server_synchronize.php:430 #: server_synchronize.php:873 msgid "Add column(s)" msgstr "" -#: libraries/messages.inc.php:1066 tbl_create.php:62 +#: libraries/messages.inc.php:1062 tbl_create.php:62 #, fuzzy, php-format msgid "Table %s already exists!" msgstr "Pengguna %s telah terdaftar!" -#: libraries/messages.inc.php:1067 server_synchronize.php:432 +#: libraries/messages.inc.php:1063 server_synchronize.php:432 #: server_synchronize.php:875 msgid "Alter column(s)" msgstr "" -#: libraries/messages.inc.php:1068 tbl_addfield.php:189 tbl_alter.php:103 +#: libraries/messages.inc.php:1064 tbl_addfield.php:189 tbl_alter.php:103 #: tbl_indexes.php:98 #, fuzzy, php-format msgid "Table %1$s has been altered successfully" msgstr "Sukses menghapus Pengguna yang dipilih." -#: libraries/messages.inc.php:1069 server_synchronize.php:434 +#: libraries/messages.inc.php:1065 server_synchronize.php:434 #: server_synchronize.php:877 msgid "Apply index(s)" msgstr "" -#: libraries/messages.inc.php:1071 server_synchronize.php:446 +#: libraries/messages.inc.php:1067 server_synchronize.php:446 #: server_synchronize.php:890 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: libraries/messages.inc.php:1072 tbl_move_copy.php:82 +#: libraries/messages.inc.php:1068 tbl_move_copy.php:82 msgid "The table name is empty!" msgstr "Nama tabel kosong!" -#: libraries/messages.inc.php:1073 tbl_create.php:249 +#: libraries/messages.inc.php:1069 tbl_create.php:249 #, fuzzy, php-format msgid "Table %1$s has been created." msgstr "Tabel %s telah dihapus" -#: libraries/messages.inc.php:1076 tbl_operations.php:628 +#: libraries/messages.inc.php:1072 tbl_operations.php:628 #, php-format msgid "Table %s has been flushed" msgstr "Tabel %s telah dibuang" -#: libraries/messages.inc.php:1077 server_synchronize.php:436 +#: libraries/messages.inc.php:1073 server_synchronize.php:436 #: server_synchronize.php:879 msgid "Insert row(s)" msgstr "" -#: libraries/messages.inc.php:1078 libraries/tbl_links.inc.php:107 +#: libraries/messages.inc.php:1074 libraries/tbl_links.inc.php:107 #: libraries/tbl_links.inc.php:140 libraries/tbl_links.inc.php:141 msgid "Table seems to be empty!" msgstr "" -#: libraries/messages.inc.php:1079 tbl_operations.php:568 +#: libraries/messages.inc.php:1075 tbl_operations.php:568 msgid "Table maintenance" msgstr "Pemeliharaan tabel" -#: libraries/messages.inc.php:1080 libraries/tbl_properties.inc.php:618 +#: libraries/messages.inc.php:1076 libraries/tbl_properties.inc.php:618 #: server_synchronize.php:428 server_synchronize.php:871 msgid "Table name" msgstr "Nama tabel" -#: libraries/messages.inc.php:1081 pdf_schema.php:1116 +#: libraries/messages.inc.php:1077 pdf_schema.php:1116 msgid "Table of contents" msgstr "Daftar Isi" -#: libraries/messages.inc.php:1082 tbl_operations.php:334 +#: libraries/messages.inc.php:1078 tbl_operations.php:334 msgid "Table options" msgstr "Pilihan untuk tabel" -#: libraries/messages.inc.php:1083 server_synchronize.php:431 +#: libraries/messages.inc.php:1079 server_synchronize.php:431 #: server_synchronize.php:874 msgid "Remove column(s)" msgstr "" -#: libraries/messages.inc.php:1084 server_synchronize.php:433 +#: libraries/messages.inc.php:1080 server_synchronize.php:433 #: server_synchronize.php:876 msgid "Remove index(s)" msgstr "" -#: libraries/messages.inc.php:1088 server_synchronize.php:435 +#: libraries/messages.inc.php:1084 server_synchronize.php:435 #: server_synchronize.php:878 msgid "Update row(s)" msgstr "" -#: libraries/messages.inc.php:1090 server_synchronize.php:942 +#: libraries/messages.inc.php:1086 server_synchronize.php:942 msgid "Target database has been synchronized with source database" msgstr "" -#: libraries/messages.inc.php:1091 server_privileges.php:392 +#: libraries/messages.inc.php:1087 server_privileges.php:392 #: server_privileges.php:527 server_privileges.php:1679 #: server_privileges.php:1685 msgid "Table-specific privileges" msgstr "Hak (privileges) khusus terhadap tabel" -#: libraries/messages.inc.php:1092 server_status.php:254 +#: libraries/messages.inc.php:1088 server_status.php:254 msgid "Temporary data" msgstr "" -#: libraries/messages.inc.php:1093 tbl_change.php:728 +#: libraries/messages.inc.php:1089 tbl_change.php:728 msgid " Because of its length,
this field might not be editable " msgstr "" " Disebabkan ukuran panjangnya,
field ini tidak dapat di-edit ulang. " -#: libraries/messages.inc.php:1094 +#: libraries/messages.inc.php:1090 msgid "Texy! text" msgstr "" -#: libraries/messages.inc.php:1095 libraries/mysql_charsets.lib.php:298 +#: libraries/messages.inc.php:1091 libraries/mysql_charsets.lib.php:298 #: libraries/mysql_charsets.lib.php:395 msgid "Thai" msgstr "Bahasa Thailand" -#: libraries/messages.inc.php:1102 libraries/replication_gui.lib.php:308 +#: libraries/messages.inc.php:1098 libraries/replication_gui.lib.php:308 #: server_privileges.php:734 msgid "This Host" msgstr "Host yang ini" -#: libraries/messages.inc.php:1103 server_status.php:252 +#: libraries/messages.inc.php:1099 server_status.php:252 msgid "Threads" msgstr "" -#: libraries/messages.inc.php:1104 server_processlist.php:22 +#: libraries/messages.inc.php:1100 server_processlist.php:22 #, php-format msgid "Thread %s was successfully killed." msgstr "Sukses hentikan Thread %s." -#: libraries/messages.inc.php:1106 +#: libraries/messages.inc.php:1102 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." msgstr "" -#: libraries/messages.inc.php:1109 pmd_pdf.php:94 +#: libraries/messages.inc.php:1105 pmd_pdf.php:94 msgid "to/from page" msgstr "" -#: libraries/messages.inc.php:1110 pdf_pages.php:343 +#: libraries/messages.inc.php:1106 pdf_pages.php:343 msgid "Toggle scratchboard" msgstr "pindah buku catatan (Scratchboard)" -#: libraries/messages.inc.php:1111 pmd_general.php:99 +#: libraries/messages.inc.php:1107 pmd_general.php:99 msgid "Toggle small/big" msgstr "" -#: libraries/messages.inc.php:1112 pmd_help.php:27 +#: libraries/messages.inc.php:1108 pmd_help.php:27 msgid "To select relation, click :" msgstr "" -#: libraries/messages.inc.php:1115 libraries/tbl_links.inc.php:149 +#: libraries/messages.inc.php:1111 libraries/tbl_links.inc.php:149 #, php-format msgid "Tracking of %s.%s is activated." msgstr "Pelacakan dari %s.%s diaktifkan" -#: libraries/messages.inc.php:1116 tbl_tracking.php:655 +#: libraries/messages.inc.php:1112 tbl_tracking.php:655 msgid "Activate now" msgstr "Aktifkan sekarang" -#: libraries/messages.inc.php:1117 tbl_tracking.php:653 +#: libraries/messages.inc.php:1113 tbl_tracking.php:653 #, php-format msgid "Activate tracking for %s.%s" msgstr "Aktifkan pelacakan untuk %s.%s" -#: libraries/messages.inc.php:1118 tbl_tracking.php:221 +#: libraries/messages.inc.php:1114 tbl_tracking.php:221 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/messages.inc.php:1119 tbl_tracking.php:688 +#: libraries/messages.inc.php:1115 tbl_tracking.php:688 msgid "Create version" msgstr "Membuat versi" -#: libraries/messages.inc.php:1120 tbl_tracking.php:668 +#: libraries/messages.inc.php:1116 tbl_tracking.php:668 #, php-format msgid "Create version %s of %s.%s" msgstr "Membuat versi %s dari %s.%s" -#: libraries/messages.inc.php:1122 tbl_tracking.php:412 +#: libraries/messages.inc.php:1118 tbl_tracking.php:412 msgid "Data definition statement" msgstr "Pernyataan definisi data" -#: libraries/messages.inc.php:1123 tbl_tracking.php:463 +#: libraries/messages.inc.php:1119 tbl_tracking.php:463 msgid "Data manipulation statement" msgstr "Penyataan manipulasi data" -#: libraries/messages.inc.php:1124 tbl_tracking.php:410 tbl_tracking.php:461 +#: libraries/messages.inc.php:1120 tbl_tracking.php:410 tbl_tracking.php:461 msgid "Date" msgstr "Tanggal" -#: libraries/messages.inc.php:1125 tbl_tracking.php:642 +#: libraries/messages.inc.php:1121 tbl_tracking.php:642 msgid "Deactivate now" msgstr "Nonaktifkan sekarang" -#: libraries/messages.inc.php:1126 tbl_tracking.php:640 +#: libraries/messages.inc.php:1122 tbl_tracking.php:640 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "Nonaktifkan pelacakan untuk %s.%s" -#: libraries/messages.inc.php:1127 tbl_tracking.php:521 +#: libraries/messages.inc.php:1123 tbl_tracking.php:521 #, php-format msgid "Export as %s" msgstr "Ekspor sebagai %s" -#: libraries/messages.inc.php:1130 tbl_tracking.php:251 tbl_tracking.php:379 +#: libraries/messages.inc.php:1126 tbl_tracking.php:251 tbl_tracking.php:379 msgid "Close" msgstr "Tutup" -#: libraries/messages.inc.php:1131 tbl_tracking.php:114 +#: libraries/messages.inc.php:1127 tbl_tracking.php:114 #, php-format msgid "Tracking report for table `%s`" msgstr "Laporan pelacakan untuk table '%s'" -#: libraries/messages.inc.php:1133 tbl_tracking.php:397 tbl_tracking.php:504 +#: libraries/messages.inc.php:1129 tbl_tracking.php:397 tbl_tracking.php:504 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "" -#: libraries/messages.inc.php:1134 tbl_tracking.php:561 +#: libraries/messages.inc.php:1130 tbl_tracking.php:561 msgid "Show versions" msgstr "" -#: libraries/messages.inc.php:1135 tbl_tracking.php:507 +#: libraries/messages.inc.php:1131 tbl_tracking.php:507 msgid "SQL dump (file download)" msgstr "" -#: libraries/messages.inc.php:1136 tbl_tracking.php:508 +#: libraries/messages.inc.php:1132 tbl_tracking.php:508 msgid "SQL dump" msgstr "" -#: libraries/messages.inc.php:1137 tbl_tracking.php:213 +#: libraries/messages.inc.php:1133 tbl_tracking.php:213 msgid "SQL statements executed." msgstr "" -#: libraries/messages.inc.php:1138 +#: libraries/messages.inc.php:1134 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/messages.inc.php:1139 tbl_tracking.php:509 +#: libraries/messages.inc.php:1135 tbl_tracking.php:509 msgid "SQL execution" msgstr "" -#: libraries/messages.inc.php:1140 tbl_tracking.php:230 +#: libraries/messages.inc.php:1136 tbl_tracking.php:230 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/messages.inc.php:1141 tbl_tracking.php:381 +#: libraries/messages.inc.php:1137 tbl_tracking.php:381 msgid "Tracking statements" msgstr "" -#: libraries/messages.inc.php:1148 tbl_tracking.php:593 +#: libraries/messages.inc.php:1144 tbl_tracking.php:593 msgid "Version" msgstr "Versi" -#: libraries/messages.inc.php:1149 tbl_tracking.php:672 +#: libraries/messages.inc.php:1145 tbl_tracking.php:672 msgid "Track these data definition statements:" msgstr "Lacak definisi data dari pernyataan berikut:" -#: libraries/messages.inc.php:1150 tbl_tracking.php:680 +#: libraries/messages.inc.php:1146 tbl_tracking.php:680 msgid "Track these data manipulation statements:" msgstr "Lacak manipulasi data dari pernyataan berikut:" -#: libraries/messages.inc.php:1155 tbl_tracking.php:411 tbl_tracking.php:462 +#: libraries/messages.inc.php:1151 tbl_tracking.php:411 tbl_tracking.php:462 msgid "Username" msgstr "Nama Pengguna" -#: libraries/messages.inc.php:1156 tbl_tracking.php:203 +#: libraries/messages.inc.php:1152 tbl_tracking.php:203 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "Pelacakan untuk %s.%s , versi %s diaktifkan." -#: libraries/messages.inc.php:1157 tbl_tracking.php:187 +#: libraries/messages.inc.php:1153 tbl_tracking.php:187 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "Versi %s telah dibuat, pelacakan untuk %s.%s diaktifkan." -#: libraries/messages.inc.php:1158 tbl_tracking.php:195 +#: libraries/messages.inc.php:1154 tbl_tracking.php:195 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "Pelacakan untuk %s.%s , versi %s dinonaktifkan." -#: libraries/messages.inc.php:1159 tbl_tracking.php:262 +#: libraries/messages.inc.php:1155 tbl_tracking.php:262 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Versi %s snapshot (kode SQL)" -#: libraries/messages.inc.php:1161 tbl_tracking.php:220 +#: libraries/messages.inc.php:1157 tbl_tracking.php:220 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -6289,24 +6289,24 @@ msgstr "" "Anda dapat mengeksekusi dump dengan membuat dan menggunakan database " "sementara. Mohon pastikan Anda mempunyai hak untuk melakukannya." -#: libraries/messages.inc.php:1162 libraries/mysql_charsets.lib.php:219 +#: libraries/messages.inc.php:1158 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:362 msgid "Traditional Chinese" msgstr "Bahasa Cina tradisional" -#: libraries/messages.inc.php:1163 libraries/mysql_charsets.lib.php:292 +#: libraries/messages.inc.php:1159 libraries/mysql_charsets.lib.php:292 msgid "Traditional Spanish" msgstr "Spanyol tradisional" -#: libraries/messages.inc.php:1164 server_status.php:388 +#: libraries/messages.inc.php:1160 server_status.php:388 msgid "Traffic" msgstr "Lalu-Lintas" -#: libraries/messages.inc.php:1165 server_status.php:261 +#: libraries/messages.inc.php:1161 server_status.php:261 msgid "Transaction coordinator" msgstr "Koordinator transaksi" -#: libraries/messages.inc.php:1166 +#: libraries/messages.inc.php:1162 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 " @@ -6318,7 +6318,7 @@ msgstr "" "sebuah baris tabel yang memiliki nama file. Bila Anda menetapkan pilihan " "kedua, pilihan pertama harus ditepatkan ke sebuah string yang kosong" -#: libraries/messages.inc.php:1167 +#: libraries/messages.inc.php:1163 msgid "" "Displays hexadecimal representation of data. Optional first parameter " "specifies how often space will be added (defaults to 2 nibbles)." @@ -6326,7 +6326,7 @@ msgstr "" "Tampilkan representasi hexadecimal dari data. Parameter opsional pertama " "menentukan seberapa sering space akan ditambahkan (default 2 nibble)" -#: libraries/messages.inc.php:1168 +#: libraries/messages.inc.php:1164 msgid "" "Displays a clickable thumbnail. The options are the maximum width and height " "in pixels. The original aspect ratio is preserved." @@ -6334,15 +6334,15 @@ msgstr "" "Tampilkan Thumbnail yang bisa diklik; pilihan: lebar, tinggi dalam piksel " "(rasio asli dipertahankan)" -#: libraries/messages.inc.php:1169 +#: libraries/messages.inc.php:1165 msgid "Displays a link to download this image." msgstr "Tampilkan link ke gambar ini (direct blob download, i.e.)." -#: libraries/messages.inc.php:1170 +#: libraries/messages.inc.php:1166 msgid "See image/jpeg: inline" msgstr "Lihat image/jpeg: inline" -#: libraries/messages.inc.php:1171 +#: libraries/messages.inc.php:1167 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 " @@ -6354,7 +6354,7 @@ msgid "" "gmdate() function." msgstr "" -#: libraries/messages.inc.php:1172 +#: libraries/messages.inc.php:1168 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 " @@ -6380,13 +6380,13 @@ msgstr "" "output yang akan ditampilkan tanpa keperluan untuk me-format ulang (Default " "1)" -#: libraries/messages.inc.php:1173 +#: libraries/messages.inc.php:1169 msgid "" "Displays the contents of the field as-is, without running it through " "htmlspecialchars(). That is, the field is assumed to contain valid HTML." msgstr "Menyimpan format asli dari field. Escaping tidak dilakukan." -#: libraries/messages.inc.php:1174 +#: libraries/messages.inc.php:1170 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 " @@ -6396,7 +6396,7 @@ msgstr "" "pilihan utama adalah awalan seperti \"http://domain.com/\", pilihan kedua " "adalah lebar dalam piksel, pilihan ketiga adalah tingginya." -#: libraries/messages.inc.php:1175 +#: libraries/messages.inc.php:1171 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 " @@ -6406,11 +6406,11 @@ msgstr "" "awalan seperti \"http://domain.com/\", pilihan kedua adalah judul untuk " "Link tersebut." -#: libraries/messages.inc.php:1176 +#: libraries/messages.inc.php:1172 msgid "Formats text as SQL query with syntax highlighting." msgstr "Format teks sebagai query dengan penyorotan sintaks." -#: libraries/messages.inc.php:1177 +#: libraries/messages.inc.php:1173 msgid "" "Displays a part of a string. The first option is the number of characters to " "skip from the beginning of the string (Default 0). The second option is the " @@ -6425,71 +6425,71 @@ msgstr "" "dibalikkan. Pilihan ketiga mendefinisikan Chars yang akan ditambahkan pada " "Output bila sebuah Substring dibalikkan (Default: ...) ." -#: libraries/messages.inc.php:1179 server_binlog.php:183 server_binlog.php:186 +#: libraries/messages.inc.php:1175 server_binlog.php:183 server_binlog.php:186 #: server_processlist.php:49 server_processlist.php:51 msgid "Truncate Shown Queries" msgstr "Potongkan pencarian yang ditampilkan" -#: libraries/messages.inc.php:1180 libraries/mysql_charsets.lib.php:301 +#: libraries/messages.inc.php:1176 libraries/mysql_charsets.lib.php:301 #: libraries/mysql_charsets.lib.php:389 msgid "Turkish" msgstr "Bahasa Turki" -#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:304 +#: libraries/messages.inc.php:1179 libraries/mysql_charsets.lib.php:304 #: libraries/mysql_charsets.lib.php:386 msgid "Ukrainian" msgstr "Bahasa Ukrainia" -#: libraries/messages.inc.php:1185 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:1181 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 msgid "Unicode" msgstr "Unikode" -#: libraries/messages.inc.php:1187 libraries/mysql_charsets.lib.php:398 +#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:398 #: libraries/mysql_charsets.lib.php:405 msgid "unknown" msgstr "tidak diketahui" -#: libraries/messages.inc.php:1190 server_privileges.php:1152 +#: libraries/messages.inc.php:1186 server_privileges.php:1152 #, php-format msgid "You have updated the privileges for %s." msgstr "Hak Akses (privilege) untuk %s telah di-update." -#: libraries/messages.inc.php:1191 user_password.php:112 +#: libraries/messages.inc.php:1187 user_password.php:112 msgid "The profile has been updated." msgstr "Profil pengguna telah di-update." -#: libraries/messages.inc.php:1193 libraries/relation.lib.php:138 +#: libraries/messages.inc.php:1189 libraries/relation.lib.php:138 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "Mohon belajari dokumentasi untuk mengetahui cara meng-update tabel " "Column_comments Anda" -#: libraries/messages.inc.php:1194 +#: libraries/messages.inc.php:1190 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Disarankan untuk meng-update ke %s versi %s atau lebih baru." -#: libraries/messages.inc.php:1204 tbl_printview.php:314 tbl_structure.php:661 +#: libraries/messages.inc.php:1200 tbl_printview.php:314 tbl_structure.php:661 msgid "Usage" msgstr "Penggunaan" -#: libraries/messages.inc.php:1205 +#: libraries/messages.inc.php:1201 msgid "Enclose table and field names with backquotes" msgstr "Nama tabel dan nama field dalam tanda kutip biasa" -#: libraries/messages.inc.php:1206 libraries/replication_gui.lib.php:314 +#: libraries/messages.inc.php:1202 libraries/replication_gui.lib.php:314 #: server_privileges.php:740 msgid "Use Host Table" msgstr "Gunakan Host Table" -#: libraries/messages.inc.php:1207 server_privileges.php:848 +#: libraries/messages.inc.php:1203 server_privileges.php:848 #, php-format msgid "The user %s already exists!" msgstr "Pengguna %s telah terdaftar!" -#: libraries/messages.inc.php:1209 libraries/replication_gui.lib.php:55 +#: libraries/messages.inc.php:1205 libraries/replication_gui.lib.php:55 #: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245 #: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255 #: server_privileges.php:672 server_privileges.php:675 @@ -6497,38 +6497,38 @@ msgstr "Pengguna %s telah terdaftar!" msgid "User name" msgstr "Nama pengguna" -#: libraries/messages.inc.php:1210 server_privileges.php:1645 +#: libraries/messages.inc.php:1206 server_privileges.php:1645 msgid "The selected user was not found in the privilege table." msgstr "" "Pengguna yang dipilih tidak ditemukan pada tabel hak (privilege table)." -#: libraries/messages.inc.php:1211 server_privileges.php:1365 +#: libraries/messages.inc.php:1207 server_privileges.php:1365 msgid "User overview" msgstr "Pandangan Umum Pengguna" -#: libraries/messages.inc.php:1212 server_privileges.php:1261 +#: libraries/messages.inc.php:1208 server_privileges.php:1261 msgid "The selected users have been deleted successfully." msgstr "Sukses menghapus Pengguna yang dipilih." -#: libraries/messages.inc.php:1213 server_privileges.php:2026 +#: libraries/messages.inc.php:1209 server_privileges.php:2026 #, php-format msgid "Users having access to "%s"" msgstr "Pengguna memiliki akses ke "%s"" -#: libraries/messages.inc.php:1214 main.php:189 server_privileges.php:1350 +#: libraries/messages.inc.php:1210 main.php:189 server_privileges.php:1350 #: server_privileges.php:1497 server_privileges.php:1611 #: server_privileges.php:2029 server_processlist.php:54 msgid "User" msgstr "Pengguna" -#: libraries/messages.inc.php:1215 tbl_change.php:1171 +#: libraries/messages.inc.php:1211 tbl_change.php:1171 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Gunakan tombol TAB untuk maju dari angka ke angka atau gunakan CTRL+panah " "untuk maju kemana saja" -#: libraries/messages.inc.php:1217 libraries/replication_gui.lib.php:251 +#: libraries/messages.inc.php:1213 libraries/replication_gui.lib.php:251 #: libraries/replication_gui.lib.php:319 libraries/replication_gui.lib.php:342 #: server_privileges.php:678 server_privileges.php:745 #: server_privileges.php:769 server_privileges.php:1889 @@ -6536,7 +6536,7 @@ msgstr "" msgid "Use text field" msgstr "Gunakan text field" -#: libraries/messages.inc.php:1221 libraries/sqlvalidator.lib.php:68 +#: libraries/messages.inc.php:1217 libraries/sqlvalidator.lib.php:68 #, php-format msgid "" "The SQL validator could not be initialized. Please check if you have " @@ -6545,86 +6545,86 @@ msgstr "" "Pengesahan SQL tidak dapat disahkan. Mohon periksa kembali ekstension PHP " "yang diperlukan seperti yang tercatat dalam %sdokumentasi%s." -#: libraries/messages.inc.php:1222 libraries/replication_gui.lib.php:111 +#: libraries/messages.inc.php:1218 libraries/replication_gui.lib.php:111 #: server_status.php:627 tbl_change.php:324 tbl_printview.php:370 #: tbl_select.php:139 tbl_structure.php:730 msgid "Value" msgstr "Nilai" -#: libraries/messages.inc.php:1223 libraries/replication_gui.lib.php:110 +#: libraries/messages.inc.php:1219 libraries/replication_gui.lib.php:110 #: libraries/sql_query_form.lib.php:445 server_status.php:626 #: server_variables.php:52 msgid "Variable" msgstr "Variabel" -#: libraries/messages.inc.php:1225 server_export.php:21 +#: libraries/messages.inc.php:1221 server_export.php:21 msgid "View dump (schema) of databases" msgstr "Tampilkan Dump (skema) dari database" -#: libraries/messages.inc.php:1227 tbl_export.php:23 +#: libraries/messages.inc.php:1223 tbl_export.php:23 msgid "View dump (schema) of table" msgstr "Tampilkan Dump (Skema) dari tabel" -#: libraries/messages.inc.php:1231 view_create.php:142 +#: libraries/messages.inc.php:1227 view_create.php:142 msgid "VIEW name" msgstr "Nama VIEW" -#: libraries/messages.inc.php:1237 main.php:205 +#: libraries/messages.inc.php:1233 main.php:205 msgid "Web server" msgstr "Server web" -#: libraries/messages.inc.php:1239 libraries/mysql_charsets.lib.php:277 +#: libraries/messages.inc.php:1235 libraries/mysql_charsets.lib.php:277 #: libraries/mysql_charsets.lib.php:325 msgid "West European" msgstr "Eropa Barat" -#: libraries/messages.inc.php:1240 main.php:230 +#: libraries/messages.inc.php:1236 main.php:230 msgid "Wiki" msgstr "Wiki" -#: libraries/messages.inc.php:1241 server_privileges.php:2138 +#: libraries/messages.inc.php:1237 server_privileges.php:2138 msgid "wildcard" msgstr "wildcard" -#: libraries/messages.inc.php:1248 +#: libraries/messages.inc.php:1244 msgid "Export contents" msgstr "Ekspor isi" -#: libraries/messages.inc.php:1249 +#: libraries/messages.inc.php:1245 msgid "Export functions" msgstr "Ekspor fungsi" -#: libraries/messages.inc.php:1250 +#: libraries/messages.inc.php:1246 msgid "Export procedures" msgstr "Ekspor prosedur" -#: libraries/messages.inc.php:1251 +#: libraries/messages.inc.php:1247 msgid "Export Structure Schemas (recommended)" msgstr "Ekspor Skema Struktur (dianjurkan)" -#: libraries/messages.inc.php:1252 +#: libraries/messages.inc.php:1248 msgid "Export tables" msgstr "Ekspor tabel" -#: libraries/messages.inc.php:1253 +#: libraries/messages.inc.php:1249 msgid "Export triggers" msgstr "Ekspor triggers" -#: libraries/messages.inc.php:1254 +#: libraries/messages.inc.php:1250 msgid "Export views" msgstr "Ekspor views" -#: libraries/messages.inc.php:1255 +#: libraries/messages.inc.php:1251 msgid "XML" msgstr "XML" -#: libraries/messages.inc.php:1259 server_privileges.php:592 +#: libraries/messages.inc.php:1255 server_privileges.php:592 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" "Perhatian: Perubahan pilihan ini ke posisi 0 (zero) akan menghapus batas " "yang telah ditentukan." -#: libraries/messages.inc.php:1260 +#: libraries/messages.inc.php:1256 msgid "\"zipped\"" msgstr "Dikompress dengan Zip" diff --git a/po/it.po b/po/it.po index 6a9226948..aa7a11de0 100644 --- 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-05-13 11:25+0200\n" +"POT-Creation-Date: 2010-05-13 11:30+0200\n" "PO-Revision-Date: 2010-04-11 11:19+0200\n" "Last-Translator: Fabio \n" "Language-Team: italian \n" @@ -15,19 +15,19 @@ msgstr "" "X-Generator: Pootle 2.0.1\n" #: browse_foreigners.php:38 browse_foreigners.php:59 -#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:870 +#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:866 #: server_privileges.php:1475 msgid "Show all" msgstr "Mostra tutti" #: browse_foreigners.php:82 db_operations.php:648 -#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:394 -#: libraries/export/pdf.php:147 libraries/messages.inc.php:597 +#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394 +#: libraries/export/pdf.php:147 libraries/messages.inc.php:593 #: pdf_schema.php:283 pdf_schema.php:1123 pdf_schema.php:1139 msgid "Page number:" msgstr "Numero pagina:" -#: browse_foreigners.php:132 libraries/messages.inc.php:1242 +#: browse_foreigners.php:132 libraries/messages.inc.php:1238 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -41,7 +41,7 @@ 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/db_links.inc.php:75 -#: libraries/messages.inc.php:841 libraries/tbl_links.inc.php:63 +#: libraries/messages.inc.php:837 libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Cerca" @@ -50,12 +50,12 @@ msgstr "Cerca" #: db_search.php:362 db_structure.php:567 js/messages.php:48 #: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2267 +#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 #: 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 #: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614 -#: libraries/messages.inc.php:361 libraries/replication_gui.lib.php:73 +#: libraries/messages.inc.php:357 libraries/replication_gui.lib.php:73 #: libraries/replication_gui.lib.php:365 libraries/select_server.lib.php:104 #: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477 #: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782 @@ -75,33 +75,33 @@ msgid "Go" msgstr "Esegui" #: browse_foreigners.php:168 browse_foreigners.php:172 -#: libraries/Index.class.php:442 libraries/messages.inc.php:459 +#: libraries/Index.class.php:442 libraries/messages.inc.php:455 #: tbl_tracking.php:320 msgid "Keyname" msgstr "Nome chiave" #: browse_foreigners.php:169 browse_foreigners.php:171 -#: libraries/messages.inc.php:252 server_collations.php:55 +#: libraries/messages.inc.php:248 server_collations.php:55 #: server_collations.php:67 server_engines.php:59 server_status.php:628 msgid "Description" msgstr "Descrizione" #: browse_foreigners.php:247 browse_foreigners.php:256 #: browse_foreigners.php:268 browse_foreigners.php:276 -#: libraries/messages.inc.php:1218 +#: libraries/messages.inc.php:1214 msgid "Use this value" msgstr "Usa questa opzione" -#: db_create.php:46 libraries/messages.inc.php:215 +#: db_create.php:46 libraries/messages.inc.php:211 #, php-format msgid "Database %1$s has been created." msgstr "Il database %1$s è stato creato." -#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:232 +#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:228 msgid "Database comment: " msgstr "Commento al Database: " -#: db_datadict.php:165 libraries/messages.inc.php:1070 +#: db_datadict.php:165 libraries/messages.inc.php:1066 #: libraries/tbl_properties.inc.php:724 pdf_schema.php:1236 #: tbl_operations.php:345 tbl_printview.php:130 msgid "Table comments" @@ -110,7 +110,7 @@ msgstr "Commenti sulla tabella" #: db_datadict.php:174 db_qbe.php:174 libraries/Index.class.php:446 #: libraries/export/htmlword.php:244 libraries/export/latex.php:360 #: libraries/export/odt.php:294 libraries/export/texytext.php:233 -#: libraries/messages.inc.php:317 libraries/tbl_properties.inc.php:99 +#: libraries/messages.inc.php:313 libraries/tbl_properties.inc.php:99 #: libraries/tbl_properties.inc.php:275 pdf_schema.php:1262 #: pdf_schema.php:1283 tbl_change.php:308 tbl_indexes.php:189 #: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135 @@ -122,7 +122,7 @@ msgstr "Campo" #: libraries/db_events.inc.php:31 libraries/db_routines.inc.php:42 #: 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/messages.inc.php:1181 +#: libraries/export/texytext.php:234 libraries/messages.inc.php:1177 #: libraries/tbl_properties.inc.php:100 pdf_schema.php:1263 #: pdf_schema.php:1284 server_privileges.php:2031 tbl_change.php:287 #: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313 @@ -134,7 +134,7 @@ msgstr "Tipo" #: db_datadict.php:177 libraries/Index.class.php:449 #: libraries/export/htmlword.php:246 libraries/export/latex.php:360 #: libraries/export/odt.php:300 libraries/export/texytext.php:235 -#: libraries/messages.inc.php:576 libraries/tbl_properties.inc.php:109 +#: libraries/messages.inc.php:572 libraries/tbl_properties.inc.php:109 #: pdf_schema.php:1265 pdf_schema.php:1286 tbl_change.php:323 #: tbl_printview.php:145 tbl_structure.php:181 tbl_tracking.php:276 #: tbl_tracking.php:327 @@ -143,7 +143,7 @@ msgstr "Null" #: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 -#: libraries/export/texytext.php:236 libraries/messages.inc.php:238 +#: libraries/export/texytext.php:236 libraries/messages.inc.php:234 #: libraries/tbl_properties.inc.php:106 pdf_schema.php:1266 #: pdf_schema.php:1287 tbl_printview.php:146 tbl_structure.php:182 #: tbl_tracking.php:277 @@ -152,14 +152,14 @@ msgstr "Predefinito" #: db_datadict.php:182 libraries/export/htmlword.php:249 #: libraries/export/latex.php:362 libraries/export/odt.php:307 -#: libraries/export/texytext.php:238 libraries/messages.inc.php:483 +#: libraries/export/texytext.php:238 libraries/messages.inc.php:479 #: pdf_schema.php:1268 pdf_schema.php:1289 tbl_printview.php:150 msgid "Links to" msgstr "Collegamenti a" #: db_datadict.php:184 db_printview.php:112 libraries/export/htmlword.php:252 #: libraries/export/latex.php:365 libraries/export/odt.php:312 -#: libraries/export/texytext.php:241 libraries/messages.inc.php:163 +#: libraries/export/texytext.php:241 libraries/messages.inc.php:159 #: libraries/tbl_properties.inc.php:130 pdf_schema.php:1279 #: pdf_schema.php:1290 tbl_printview.php:152 msgid "Comments" @@ -168,7 +168,7 @@ msgstr "Commenti" #: db_datadict.php:267 libraries/Index.class.php:359 #: 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/messages.inc.php:559 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:555 #: libraries/mult_submits.inc.php:263 pdf_schema.php:1344 #: server_privileges.php:1529 server_privileges.php:1540 #: server_privileges.php:1850 server_privileges.php:1855 @@ -180,7 +180,7 @@ msgstr " No " #: db_datadict.php:267 libraries/Index.class.php:360 #: libraries/Index.class.php:385 libraries/export/htmlword.php:322 #: libraries/export/latex.php:430 libraries/export/odt.php:368 -#: libraries/export/texytext.php:311 libraries/messages.inc.php:1257 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:1253 #: libraries/mult_submits.inc.php:45 libraries/mult_submits.inc.php:50 #: libraries/mult_submits.inc.php:55 libraries/mult_submits.inc.php:60 #: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:101 @@ -194,108 +194,108 @@ msgstr " No " msgid "Yes" msgstr "Sì" -#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:670 +#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:666 #: tbl_printview.php:498 msgid "Print" msgstr "Stampa" -#: db_export.php:29 libraries/messages.inc.php:1226 +#: db_export.php:29 libraries/messages.inc.php:1222 msgid "View dump (schema) of database" msgstr "Visualizza dump (schema) del database" #: db_export.php:33 db_printview.php:96 db_qbe.php:102 db_structure.php:51 -#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:568 +#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:564 #: navigation.php:346 msgid "No tables found in database." msgstr "Non ci sono tabelle nel database." -#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:845 +#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:841 #: server_export.php:27 msgid "Select All" msgstr "Seleziona tutto" -#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1188 +#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1184 #: server_export.php:29 msgid "Unselect All" msgstr "Deseleziona tutto" -#: db_operations.php:38 libraries/messages.inc.php:213 tbl_create.php:54 +#: db_operations.php:38 libraries/messages.inc.php:209 tbl_create.php:54 msgid "The database name is empty!" msgstr "Il nome del DataBase è vuoto!" -#: db_operations.php:236 libraries/messages.inc.php:753 +#: db_operations.php:236 libraries/messages.inc.php:749 #, php-format msgid "Database %s has been renamed to %s" msgstr "Il DataBase %s è stato rinominato in %s" -#: db_operations.php:240 libraries/messages.inc.php:178 +#: db_operations.php:240 libraries/messages.inc.php:174 #, php-format msgid "Database %s has been copied to %s" msgstr "Il Database %s è stato copiato in %s" -#: db_operations.php:410 libraries/messages.inc.php:236 +#: db_operations.php:410 libraries/messages.inc.php:232 msgid "Rename database to" msgstr "Rinomina il DataBase in" -#: db_operations.php:415 libraries/messages.inc.php:161 +#: db_operations.php:415 libraries/messages.inc.php:157 #: server_processlist.php:57 msgid "Command" msgstr "Comando" -#: db_operations.php:425 libraries/messages.inc.php:58 tbl_change.php:1143 +#: db_operations.php:425 libraries/messages.inc.php:54 tbl_change.php:1143 msgid "and then" msgstr "e quindi" -#: db_operations.php:451 libraries/messages.inc.php:233 +#: db_operations.php:451 libraries/messages.inc.php:229 msgid "Copy database to" msgstr "Copia il Database in" -#: db_operations.php:458 libraries/messages.inc.php:1043 +#: db_operations.php:458 libraries/messages.inc.php:1039 #: tbl_operations.php:526 tbl_tracking.php:388 msgid "Structure only" msgstr "Solo struttura" -#: db_operations.php:459 libraries/messages.inc.php:1041 +#: db_operations.php:459 libraries/messages.inc.php:1037 #: tbl_operations.php:527 tbl_tracking.php:390 msgid "Structure and data" msgstr "Struttura e dati" -#: db_operations.php:460 libraries/messages.inc.php:229 tbl_operations.php:528 +#: db_operations.php:460 libraries/messages.inc.php:225 tbl_operations.php:528 #: tbl_tracking.php:389 msgid "Data only" msgstr "Solo dati" -#: db_operations.php:468 libraries/messages.inc.php:186 +#: db_operations.php:468 libraries/messages.inc.php:182 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE prima di copiare" #: db_operations.php:471 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 -#: libraries/export/sql.php:82 libraries/messages.inc.php:30 +#: libraries/export/sql.php:82 libraries/messages.inc.php:26 #: tbl_operations.php:534 #, php-format msgid "Add %s" msgstr "Aggiungi %s" -#: db_operations.php:475 libraries/messages.inc.php:29 tbl_operations.php:297 +#: db_operations.php:475 libraries/messages.inc.php:25 tbl_operations.php:297 #: tbl_operations.php:536 msgid "Add AUTO_INCREMENT value" msgstr "Aggiungi valore AUTO_INCREMENT" -#: db_operations.php:479 libraries/messages.inc.php:31 tbl_operations.php:543 +#: db_operations.php:479 libraries/messages.inc.php:27 tbl_operations.php:543 msgid "Add constraints" msgstr "Aggiungi vincoli" -#: db_operations.php:492 libraries/messages.inc.php:1059 +#: db_operations.php:492 libraries/messages.inc.php:1055 msgid "Switch to copied database" msgstr "Passare al Database copiato" -#: db_operations.php:533 libraries/messages.inc.php:89 +#: db_operations.php:533 libraries/messages.inc.php:85 msgid "BLOB Repository" msgstr "Repository BLOB" #: db_operations.php:536 db_tracking.php:76 libraries/common.lib.php:1350 -#: libraries/messages.inc.php:1037 libraries/server_links.inc.php:49 +#: libraries/messages.inc.php:1033 libraries/server_links.inc.php:49 #: server_processlist.php:59 tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "Stato" @@ -307,11 +307,11 @@ msgctxt "BLOB repository" msgid "Enabled" msgstr "Abilitata" -#: db_operations.php:548 libraries/messages.inc.php:93 +#: db_operations.php:548 libraries/messages.inc.php:89 msgid "Disable" msgstr "Disabilita" -#: db_operations.php:558 libraries/messages.inc.php:90 +#: db_operations.php:558 libraries/messages.inc.php:86 msgid "Damaged" msgstr "Danneggiato" @@ -329,12 +329,12 @@ msgctxt "BLOB repository" msgid "Disabled" msgstr "Disabilitata" -#: db_operations.php:574 libraries/messages.inc.php:96 +#: db_operations.php:574 libraries/messages.inc.php:92 msgid "Enable" msgstr "Abilita" #: db_operations.php:598 libraries/Index.class.php:448 -#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:158 +#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:154 #: 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:361 @@ -343,7 +343,7 @@ msgstr "Abilita" msgid "Collation" msgstr "Collation" -#: db_operations.php:609 libraries/messages.inc.php:742 main.php:316 +#: db_operations.php:609 libraries/messages.inc.php:738 main.php:316 #: pdf_schema.php:34 #, php-format msgid "" @@ -353,58 +353,58 @@ msgstr "" "Le caratteristiche aggiuntive sono state disattivate per funzionare con le " "tabelle linkate. Per scoprire perché clicca %squi%s." -#: db_operations.php:645 libraries/messages.inc.php:264 pdf_pages.php:528 +#: db_operations.php:645 libraries/messages.inc.php:260 pdf_pages.php:528 msgid "Display PDF schema" msgstr "Mostra lo schema del PDF" -#: db_operations.php:661 libraries/messages.inc.php:877 pdf_pages.php:529 +#: db_operations.php:661 libraries/messages.inc.php:873 pdf_pages.php:529 msgid "Show grid" msgstr "Mostra la griglia" -#: db_operations.php:664 libraries/messages.inc.php:874 pdf_pages.php:530 +#: db_operations.php:664 libraries/messages.inc.php:870 pdf_pages.php:530 msgid "Show color" msgstr "Mostra il colore" -#: db_operations.php:666 libraries/messages.inc.php:998 pdf_pages.php:531 +#: db_operations.php:666 libraries/messages.inc.php:994 pdf_pages.php:531 msgid "Show dimension of tables" msgstr "Mostra la dimensione delle tabelle" -#: db_operations.php:669 libraries/messages.inc.php:52 pdf_pages.php:532 +#: db_operations.php:669 libraries/messages.inc.php:48 pdf_pages.php:532 msgid "Display all tables with the same width" msgstr "mostra tutte le Tabelle con la stessa larghezza?" -#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:227 +#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:223 #: pdf_pages.php:533 msgid "Data Dictionary" msgstr "Data Dictionary" -#: db_operations.php:674 libraries/messages.inc.php:884 pdf_pages.php:534 +#: db_operations.php:674 libraries/messages.inc.php:880 pdf_pages.php:534 msgid "Only show keys" msgstr "Mostra solo le chiavi" -#: db_operations.php:676 libraries/messages.inc.php:875 pdf_pages.php:535 +#: db_operations.php:676 libraries/messages.inc.php:871 pdf_pages.php:535 msgid "Data Dictionary Format" msgstr "Formato del Data Dictionary" -#: db_operations.php:678 libraries/messages.inc.php:464 pdf_pages.php:537 +#: db_operations.php:678 libraries/messages.inc.php:460 pdf_pages.php:537 msgid "Landscape" msgstr "Orizzontale" -#: db_operations.php:679 libraries/messages.inc.php:663 pdf_pages.php:538 +#: db_operations.php:679 libraries/messages.inc.php:659 pdf_pages.php:538 msgid "Portrait" msgstr "Verticale" -#: db_operations.php:682 libraries/messages.inc.php:599 pdf_pages.php:541 +#: db_operations.php:682 libraries/messages.inc.php:595 pdf_pages.php:541 msgid "Paper size" msgstr "Dimensioni carta" -#: db_operations.php:706 libraries/messages.inc.php:281 +#: db_operations.php:706 libraries/messages.inc.php:277 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 libraries/messages.inc.php:1087 +#: libraries/header.inc.php:126 libraries/messages.inc.php:1083 #: pdf_pages.php:405 server_privileges.php:1626 server_privileges.php:1682 #: server_privileges.php:1946 server_synchronize.php:423 #: server_synchronize.php:866 tbl_tracking.php:592 test/theme.php:75 @@ -412,176 +412,176 @@ msgid "Table" msgstr "Tabella" #: db_printview.php:105 libraries/db_structure.lib.php:56 -#: libraries/messages.inc.php:735 +#: libraries/messages.inc.php:731 msgid "Records" msgstr "Record" #: db_printview.php:109 libraries/db_structure.lib.php:67 -#: libraries/messages.inc.php:1003 tbl_indexes.php:190 +#: libraries/messages.inc.php:999 tbl_indexes.php:190 msgid "Size" msgstr "Dimensione" #: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 -#: libraries/export/sql.php:899 libraries/messages.inc.php:436 +#: libraries/export/sql.php:899 libraries/messages.inc.php:432 msgid "in use" msgstr "in uso" #: db_printview.php:187 libraries/db_info.inc.php:88 -#: libraries/export/sql.php:514 libraries/messages.inc.php:1032 +#: libraries/export/sql.php:514 libraries/messages.inc.php:1028 #: pdf_schema.php:1241 tbl_printview.php:434 tbl_structure.php:810 msgid "Creation" msgstr "Creazione" #: db_printview.php:196 libraries/db_info.inc.php:93 -#: libraries/export/sql.php:519 libraries/messages.inc.php:1036 +#: libraries/export/sql.php:519 libraries/messages.inc.php:1032 #: pdf_schema.php:1246 tbl_printview.php:444 tbl_structure.php:818 msgid "Last update" msgstr "Ultimo cambiamento" #: db_printview.php:205 libraries/db_info.inc.php:98 -#: libraries/export/sql.php:524 libraries/messages.inc.php:1031 +#: libraries/export/sql.php:524 libraries/messages.inc.php:1027 #: pdf_schema.php:1251 tbl_printview.php:454 tbl_structure.php:826 msgid "Last check" msgstr "Ultimo controllo" -#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1085 +#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1081 #, php-format msgid "%s table(s)" msgstr "%s tabella(e)" #: db_qbe.php:29 libraries/display_tbl.lib.php:1981 -#: libraries/messages.inc.php:1051 libraries/sql_query_form.lib.php:140 +#: libraries/messages.inc.php:1047 libraries/sql_query_form.lib.php:140 #: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131 #: view_operations.php:62 msgid "Your SQL query has been executed successfully" msgstr "La query è stata eseguita con successo" -#: db_qbe.php:42 libraries/messages.inc.php:371 +#: db_qbe.php:42 libraries/messages.inc.php:367 msgid "You have to choose at least one column to display" msgstr "Devi scegliere almeno una Colonna da mostrare" #: db_qbe.php:200 libraries/db_structure.lib.php:104 -#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1014 +#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1010 msgid "Sort" msgstr "Ordinamento" #: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111 #: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828 -#: libraries/messages.inc.php:69 server_databases.php:170 +#: libraries/messages.inc.php:65 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314 msgid "Ascending" msgstr "Crescente" #: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119 #: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825 -#: libraries/messages.inc.php:251 server_databases.php:170 +#: libraries/messages.inc.php:247 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315 msgid "Descending" msgstr "Decrescente" #: db_qbe.php:264 db_tracking.php:78 libraries/display_tbl.lib.php:308 -#: libraries/messages.inc.php:888 tbl_change.php:277 tbl_tracking.php:597 +#: libraries/messages.inc.php:884 tbl_change.php:277 tbl_tracking.php:597 msgid "Show" msgstr "Mostra" -#: db_qbe.php:300 libraries/messages.inc.php:202 +#: db_qbe.php:300 libraries/messages.inc.php:198 msgid "Criteria" msgstr "Criterio" #: db_qbe.php:353 db_qbe.php:435 db_qbe.php:527 db_qbe.php:558 -#: libraries/messages.inc.php:718 +#: libraries/messages.inc.php:714 msgid "Ins" msgstr "Aggiungi" #: db_qbe.php:357 db_qbe.php:439 db_qbe.php:524 db_qbe.php:555 -#: libraries/messages.inc.php:56 +#: libraries/messages.inc.php:52 msgid "And" msgstr "e" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:529 db_qbe.php:560 -#: libraries/messages.inc.php:717 +#: libraries/messages.inc.php:713 msgid "Del" 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/messages.inc.php:592 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:588 #: libraries/tbl_properties.inc.php:779 server_privileges.php:258 #: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288 msgid "Or" msgstr "Oppure" -#: db_qbe.php:507 libraries/messages.inc.php:516 +#: db_qbe.php:507 libraries/messages.inc.php:512 msgid "Modify" msgstr "Modifica" -#: db_qbe.php:584 libraries/messages.inc.php:33 +#: db_qbe.php:584 libraries/messages.inc.php:29 msgid "Add/Delete Criteria Row" msgstr "Aggiungi/Cancella criterio" -#: db_qbe.php:596 libraries/messages.inc.php:32 +#: db_qbe.php:596 libraries/messages.inc.php:28 msgid "Add/Delete Field Columns" msgstr "Aggiungi/Cancella campo" -#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1192 +#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1188 msgid "Update Query" msgstr "Aggiorna Query" -#: db_qbe.php:617 libraries/messages.inc.php:1216 +#: db_qbe.php:617 libraries/messages.inc.php:1212 msgid "Use Tables" msgstr "Utilizza tabelle" -#: db_qbe.php:640 libraries/messages.inc.php:723 +#: db_qbe.php:640 libraries/messages.inc.php:719 #, php-format msgid "SQL query on database %s:" msgstr "SQL-query sul database %s:" -#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:823 +#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:819 msgid "Submit Query" msgstr "Invia Query" #: db_search.php:68 libraries/auth/config.auth.lib.php:84 #: libraries/auth/config.auth.lib.php:103 #: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52 -#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:26 +#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:22 msgid "Access denied" msgstr "Accesso negato" -#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:836 +#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:832 msgid "at least one of the words" msgstr "almeno una delle parole" -#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:837 +#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:833 msgid "all words" msgstr "tutte le parole" -#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:838 +#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:834 msgid "the exact phrase" msgstr "la frase esatta" -#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:839 +#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:835 msgid "as regular expression" msgstr "come espressione regolare" -#: db_search.php:242 libraries/messages.inc.php:840 +#: db_search.php:242 libraries/messages.inc.php:836 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Cerca i risultati per \"%s\" %s:" -#: db_search.php:260 libraries/messages.inc.php:579 +#: db_search.php:260 libraries/messages.inc.php:575 #, php-format msgid "%s match(es) inside table %s" 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/messages.inc.php:108 +#: db_structure.php:105 libraries/messages.inc.php:104 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468 msgid "Browse" msgstr "Mostra" #: db_search.php:272 libraries/display_tbl.lib.php:1165 -#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:243 +#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:239 #: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406 #: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377 #: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216 @@ -589,45 +589,45 @@ msgstr "Mostra" msgid "Delete" msgstr "Elimina" -#: db_search.php:285 libraries/messages.inc.php:580 +#: db_search.php:285 libraries/messages.inc.php:576 #, php-format msgid "Total: %s match(es)" msgstr "Totale: %s corrispondenza/e" -#: db_search.php:299 libraries/messages.inc.php:832 +#: db_search.php:299 libraries/messages.inc.php:828 msgid "Search in database" msgstr "Cerca nel database" -#: db_search.php:302 libraries/messages.inc.php:835 +#: db_search.php:302 libraries/messages.inc.php:831 msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgstr "parola/e o valore/i da cercare (carattere jolly: \"%\"):" -#: db_search.php:307 libraries/messages.inc.php:842 +#: db_search.php:307 libraries/messages.inc.php:838 msgid "Find:" msgstr "Trova:" -#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1017 +#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1013 msgid "Words are separated by a space character (\" \")." msgstr "Le parole sono separate da spazi (\" \")." -#: db_search.php:325 libraries/messages.inc.php:834 +#: db_search.php:325 libraries/messages.inc.php:830 msgid "Inside table(s):" msgstr "Nella/e tabella/e:" -#: db_search.php:355 libraries/messages.inc.php:833 +#: db_search.php:355 libraries/messages.inc.php:829 msgid "Inside field:" 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/messages.inc.php:431 libraries/sql_query_form.lib.php:334 +#: libraries/messages.inc.php:427 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/db_links.inc.php:63 libraries/export/latex.php:337 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:1048 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:1044 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 #: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269 msgid "Structure" @@ -636,8 +636,8 @@ 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:1642 -#: libraries/db_links.inc.php:100 libraries/messages.inc.php:272 +#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/db_links.inc.php:100 libraries/messages.inc.php:268 #: 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 @@ -647,40 +647,40 @@ 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:1641 -#: libraries/messages.inc.php:284 libraries/mult_submits.inc.php:39 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: libraries/messages.inc.php:280 libraries/mult_submits.inc.php:39 #: libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Svuota" -#: db_structure.php:316 libraries/messages.inc.php:1075 +#: db_structure.php:316 libraries/messages.inc.php:1071 #: libraries/tbl_links.inc.php:100 #, php-format msgid "Table %s has been emptied" msgstr "La tabella %s è stata svuotata" -#: db_structure.php:326 libraries/messages.inc.php:1229 +#: db_structure.php:326 libraries/messages.inc.php:1225 #: 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/messages.inc.php:1074 +#: db_structure.php:326 libraries/messages.inc.php:1070 #: libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "La tabella %s è stata eliminata" -#: db_structure.php:333 libraries/messages.inc.php:1128 +#: db_structure.php:333 libraries/messages.inc.php:1124 msgid "Tracking is active." msgstr "" -#: db_structure.php:335 libraries/messages.inc.php:1129 +#: db_structure.php:335 libraries/messages.inc.php:1125 msgid "Tracking is not active." msgstr "" #: db_structure.php:420 libraries/display_tbl.lib.php:1944 -#: libraries/messages.inc.php:1228 +#: libraries/messages.inc.php:1224 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -690,83 +690,83 @@ msgstr "" "controlla la %sdocumentazione%s." #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 -#: libraries/messages.inc.php:1233 libraries/tbl_info.inc.php:66 +#: libraries/messages.inc.php:1229 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/messages.inc.php:773 libraries/server_links.inc.php:70 +#: libraries/messages.inc.php:769 libraries/server_links.inc.php:70 #: server_replication.php:33 server_replication.php:164 server_status.php:258 msgid "Replication" msgstr "Replicazione" -#: db_structure.php:489 libraries/messages.inc.php:1053 +#: db_structure.php:489 libraries/messages.inc.php:1049 msgid "Sum" msgstr "Totali" #: db_structure.php:496 libraries/StorageEngine.class.php:356 -#: libraries/messages.inc.php:239 +#: libraries/messages.inc.php:235 #, 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 #: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086 -#: libraries/messages.inc.php:1243 libraries/mult_submits.inc.php:16 +#: libraries/messages.inc.php:1239 libraries/mult_submits.inc.php:16 #: server_databases.php:346 server_databases.php:351 #: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465 msgid "With selected:" msgstr "Se selezionati:" #: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: libraries/messages.inc.php:148 server_databases.php:348 +#: libraries/messages.inc.php:144 server_databases.php:348 #: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459 msgid "Check All" msgstr "Seleziona tutti" #: db_structure.php:531 libraries/display_tbl.lib.php:2077 -#: libraries/messages.inc.php:1184 libraries/replication_gui.lib.php:33 +#: libraries/messages.inc.php:1180 libraries/replication_gui.lib.php:33 #: server_databases.php:350 server_privileges.php:533 #: server_privileges.php:1564 tbl_structure.php:463 msgid "Uncheck All" msgstr "Deseleziona tutti" -#: db_structure.php:536 libraries/messages.inc.php:150 +#: db_structure.php:536 libraries/messages.inc.php:146 msgid "Check tables having overhead" msgstr "Controllo addizionale" #: db_structure.php:547 db_structure.php:548 db_structure.php:599 -#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:672 +#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:668 #: libraries/mult_submits.inc.php:28 tbl_structure.php:493 #: tbl_structure.php:495 msgid "Print view" msgstr "Visualizza per stampa" -#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:153 +#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:149 #: libraries/mult_submits.inc.php:42 tbl_operations.php:579 msgid "Check table" msgstr "Controlla tabella" -#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:590 +#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:586 #: libraries/mult_submits.inc.php:47 tbl_operations.php:619 #: tbl_structure.php:710 tbl_structure.php:712 msgid "Optimize table" msgstr "Ottimizza tabella" -#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:758 +#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:754 #: libraries/mult_submits.inc.php:52 tbl_operations.php:609 msgid "Repair table" msgstr "Ripara tabella" -#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:55 +#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:51 #: libraries/mult_submits.inc.php:57 tbl_operations.php:599 msgid "Analyze table" msgstr "Analizza tabella" #: db_structure.php:557 db_structure.php:558 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/messages.inc.php:310 +#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:306 #: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84 #: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109 #: server_privileges.php:1341 setup/frames/menu.inc.php:22 @@ -774,7 +774,7 @@ msgstr "Analizza tabella" msgid "Export" msgstr "Esporta" -#: db_tracking.php:66 libraries/messages.inc.php:1151 +#: db_tracking.php:66 libraries/messages.inc.php:1147 #, fuzzy msgid "Tracked tables" msgstr "Controlla tabella" @@ -783,7 +783,7 @@ msgstr "Controlla tabella" #: 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/header_printview.inc.php:58 libraries/messages.inc.php:212 +#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:208 #: navigation.php:233 server_databases.php:169 server_privileges.php:1621 #: server_privileges.php:1682 server_privileges.php:1940 #: server_processlist.php:56 server_synchronize.php:1179 @@ -791,84 +791,84 @@ msgstr "Controlla tabella" msgid "Database" msgstr "Database" -#: db_tracking.php:73 libraries/messages.inc.php:1146 +#: db_tracking.php:73 libraries/messages.inc.php:1142 #, fuzzy msgid "Last version" msgstr "Crea relazioni" -#: db_tracking.php:74 libraries/messages.inc.php:1145 tbl_tracking.php:594 +#: db_tracking.php:74 libraries/messages.inc.php:1141 tbl_tracking.php:594 #, fuzzy msgid "Created" msgstr "Crea" -#: db_tracking.php:75 libraries/messages.inc.php:1147 tbl_tracking.php:595 +#: db_tracking.php:75 libraries/messages.inc.php:1143 tbl_tracking.php:595 msgid "Updated" msgstr "" #: db_tracking.php:77 libraries/Index.class.php:440 -#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:27 +#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:23 #: server_databases.php:203 server_privileges.php:1503 #: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187 msgid "Action" msgstr "Azione" -#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:247 +#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:243 msgid "Delete tracking data for this table" msgstr "Cancella dati di tracciamento per questa tabella" -#: db_tracking.php:106 libraries/messages.inc.php:1142 tbl_tracking.php:548 +#: db_tracking.php:106 libraries/messages.inc.php:1138 tbl_tracking.php:548 #: tbl_tracking.php:606 tbl_tracking.php:613 msgid "active" msgstr "" -#: db_tracking.php:108 libraries/messages.inc.php:1143 tbl_tracking.php:550 +#: db_tracking.php:108 libraries/messages.inc.php:1139 tbl_tracking.php:550 #: tbl_tracking.php:608 tbl_tracking.php:610 msgid "not active" msgstr "" -#: db_tracking.php:121 libraries/messages.inc.php:1160 +#: db_tracking.php:121 libraries/messages.inc.php:1156 #, fuzzy msgid "Versions" msgstr "Persiano" -#: db_tracking.php:122 libraries/messages.inc.php:1132 tbl_tracking.php:379 +#: db_tracking.php:122 libraries/messages.inc.php:1128 tbl_tracking.php:379 #: tbl_tracking.php:624 msgid "Tracking report" msgstr "" -#: db_tracking.php:123 libraries/messages.inc.php:1144 tbl_tracking.php:251 +#: db_tracking.php:123 libraries/messages.inc.php:1140 tbl_tracking.php:251 #: tbl_tracking.php:624 #, fuzzy msgid "Structure snapshot" msgstr "Solo struttura" -#: db_tracking.php:152 libraries/messages.inc.php:1154 +#: db_tracking.php:152 libraries/messages.inc.php:1150 #, fuzzy msgid "Untracked tables" msgstr "Controlla tabella" -#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1153 +#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1149 #: tbl_structure.php:529 tbl_structure.php:531 #, fuzzy msgid "Track table" msgstr "Controlla tabella" -#: db_tracking.php:200 libraries/messages.inc.php:1121 +#: db_tracking.php:200 libraries/messages.inc.php:1117 #, fuzzy msgid "Database Log" msgstr "Database" -#: export.php:62 libraries/messages.inc.php:312 +#: export.php:62 libraries/messages.inc.php:308 msgid "Selected export type has to be saved in file!" msgstr "" "Il tipo di esportazione selezionato necessita di essere salvato in un file!" -#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:567 +#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:563 #, php-format msgid "Insufficient space to save the file %s." msgstr "Spazio insufficiente per salvare il file %s." -#: export.php:294 libraries/messages.inc.php:324 +#: export.php:294 libraries/messages.inc.php:320 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -876,17 +876,17 @@ msgstr "" "Il file %s esiste già sul server: prego, cambiare nome del file o " "selezionare l'opzione \"sovrascrivi\"." -#: export.php:298 export.php:302 libraries/messages.inc.php:562 +#: export.php:298 export.php:302 libraries/messages.inc.php:558 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Il server web non possiede i privilegi per salvare il file %s." -#: export.php:629 libraries/messages.inc.php:276 +#: export.php:629 libraries/messages.inc.php:272 #, php-format msgid "Dump has been saved to file %s." msgstr "Il dump è stato salvato sul file %s." -#: import.php:60 libraries/messages.inc.php:1202 +#: import.php:60 libraries/messages.inc.php:1198 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation%" @@ -897,14 +897,14 @@ msgstr "" "questo limite." #: import.php:279 import.php:332 libraries/File.class.php:849 -#: libraries/File.class.php:961 libraries/messages.inc.php:325 +#: libraries/File.class.php:961 libraries/messages.inc.php:321 msgid "File could not be read" msgstr "Il file non può essere letto" #: import.php:287 import.php:296 import.php:315 import.php:324 #: libraries/File.class.php:1031 libraries/File.class.php:1039 #: libraries/File.class.php:1055 libraries/File.class.php:1063 -#: libraries/messages.inc.php:1189 +#: libraries/messages.inc.php:1185 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -914,7 +914,7 @@ msgstr "" "supportato. Altrimenti il supporto per questo tipo di compressione non è " "stato ancora implementato o è stato disabilitato dalla tua configurazione." -#: import.php:337 libraries/messages.inc.php:547 +#: import.php:337 libraries/messages.inc.php:543 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -925,31 +925,31 @@ msgstr "" "impostata nella configurazione di PHP. Vedi FAQ 1.16." #: import.php:372 libraries/display_import.lib.php:24 -#: libraries/messages.inc.php:125 +#: libraries/messages.inc.php:121 msgid "Could not load import plugins, please check your installation!" msgstr "" "Non posso caricare i plugins di importazione, controlla la tua " "configurazione!" -#: import.php:397 libraries/messages.inc.php:102 +#: import.php:397 libraries/messages.inc.php:98 msgid "The bookmark has been deleted." msgstr "Il bookmark è stato cancellato." -#: import.php:401 libraries/messages.inc.php:879 +#: import.php:401 libraries/messages.inc.php:875 msgid "Showing bookmark" msgstr "Mostrando i segnalibri" -#: import.php:403 libraries/messages.inc.php:101 +#: import.php:403 libraries/messages.inc.php:97 #, php-format msgid "Bookmark %s created" msgstr "Segnalibro %s creato" -#: import.php:409 import.php:415 libraries/messages.inc.php:407 +#: import.php:409 import.php:415 libraries/messages.inc.php:403 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Importazione eseguita con successo, %d query eseguite." -#: import.php:424 libraries/messages.inc.php:1107 +#: import.php:424 libraries/messages.inc.php:1103 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -957,11 +957,11 @@ msgstr "" "Superato il tempo limite dello script, se vuoi finire l'importazione inoltra " "nuovamente il file e il processo riprenderà." -#: index.php:190 libraries/messages.inc.php:553 +#: index.php:190 libraries/messages.inc.php:549 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin funziona meglio con browser che supportano frames" -#: js/messages.php:25 libraries/messages.inc.php:155 +#: js/messages.php:25 libraries/messages.inc.php:151 #: server_synchronize.php:345 server_synchronize.php:357 #: server_synchronize.php:373 server_synchronize.php:380 #: server_synchronize.php:739 server_synchronize.php:767 @@ -969,117 +969,117 @@ msgstr "phpMyAdmin funziona meglio con browser che supportano frames" msgid "Click to select" msgstr "Clicca per selezionare" -#: js/messages.php:26 libraries/messages.inc.php:156 +#: js/messages.php:26 libraries/messages.inc.php:152 msgid "Click to unselect" msgstr "Clicca per deselezionare" #: js/messages.php:27 libraries/import.lib.php:103 -#: libraries/messages.inc.php:550 sql.php:89 +#: libraries/messages.inc.php:546 sql.php:89 msgid "\"DROP DATABASE\" statements are disabled." msgstr "I comandi \"DROP DATABASE\" sono disabilitati." -#: js/messages.php:30 libraries/messages.inc.php:270 +#: js/messages.php:30 libraries/messages.inc.php:266 #: libraries/mult_submits.inc.php:258 sql.php:188 msgid "Do you really want to " msgstr "Confermi: " -#: js/messages.php:31 libraries/messages.inc.php:271 +#: js/messages.php:31 libraries/messages.inc.php:267 #: libraries/mult_submits.inc.php:258 sql.php:172 msgid "You are about to DESTROY a complete database!" msgstr "Si sta per DISTRUGGERE COMPLETAMENTE un intero DataBase!" -#: js/messages.php:34 libraries/messages.inc.php:94 +#: js/messages.php:34 libraries/messages.inc.php:90 msgid "You are about to DISABLE a BLOB Repository!" msgstr "Stai per DISABILITARE una repository BLOB!" -#: js/messages.php:35 libraries/messages.inc.php:91 +#: js/messages.php:35 libraries/messages.inc.php:87 #, php-format msgid "Are you sure you want to disable all BLOB references for database %s?" msgstr "" "Sei sicuro di voler disabilitare tutte le referenze BLOB per il database %s?" -#: js/messages.php:38 libraries/messages.inc.php:342 +#: js/messages.php:38 libraries/messages.inc.php:338 msgid "Missing value in the form!" msgstr "Valore mancante nel form!" -#: js/messages.php:39 libraries/messages.inc.php:570 +#: js/messages.php:39 libraries/messages.inc.php:566 msgid "This is not a number!" msgstr "Questo non è un numero!" -#: js/messages.php:42 libraries/messages.inc.php:380 +#: js/messages.php:42 libraries/messages.inc.php:376 msgid "The host name is empty!" msgstr "Il nome di host è vuoto!" -#: js/messages.php:43 libraries/messages.inc.php:1208 +#: js/messages.php:43 libraries/messages.inc.php:1204 msgid "The user name is empty!" msgstr "Il nome utente è vuoto!" -#: js/messages.php:44 libraries/messages.inc.php:607 +#: js/messages.php:44 libraries/messages.inc.php:603 #: server_privileges.php:1197 user_password.php:70 msgid "The password is empty!" msgstr "La password è vuota!" -#: js/messages.php:45 libraries/messages.inc.php:609 +#: js/messages.php:45 libraries/messages.inc.php:605 #: server_privileges.php:1195 user_password.php:73 msgid "The passwords aren't the same!" msgstr "La password non coincide!" -#: js/messages.php:49 libraries/messages.inc.php:123 pmd_general.php:342 +#: js/messages.php:49 libraries/messages.inc.php:119 pmd_general.php:342 #: pmd_general.php:379 msgid "Cancel" msgstr "Annulla" -#: js/messages.php:52 libraries/messages.inc.php:514 +#: js/messages.php:52 libraries/messages.inc.php:510 msgid "Modifications have been saved" msgstr "Le modifiche sono state salvate" -#: js/messages.php:53 libraries/messages.inc.php:741 +#: js/messages.php:53 libraries/messages.inc.php:737 msgid "Relation deleted" msgstr "Relazione cancellata" -#: js/messages.php:54 libraries/messages.inc.php:340 +#: js/messages.php:54 libraries/messages.inc.php:336 msgid "FOREIGN KEY relation added" msgstr "Relazione \"FOREIGN KEY\" aggiunta" -#: js/messages.php:55 libraries/messages.inc.php:434 +#: js/messages.php:55 libraries/messages.inc.php:430 msgid "Internal relation added" msgstr "Aggiunte relazioni internet" -#: js/messages.php:56 libraries/messages.inc.php:299 +#: js/messages.php:56 libraries/messages.inc.php:295 msgid "Error: Relation not added." msgstr "Errore: relazione non aggiunta." -#: js/messages.php:57 libraries/messages.inc.php:300 +#: js/messages.php:57 libraries/messages.inc.php:296 msgid "Error: relation already exists." msgstr "Errore: relazione già esistente." -#: js/messages.php:58 libraries/messages.inc.php:302 +#: js/messages.php:58 libraries/messages.inc.php:298 msgid "Error saving coordinates for Designer." msgstr "Errore nel salvare le coordinate per il Designer." -#: js/messages.php:59 libraries/messages.inc.php:351 +#: js/messages.php:59 libraries/messages.inc.php:347 #: libraries/relation.lib.php:107 msgid "General relation features" msgstr "Caratteristiche Generali di Relazione" -#: js/messages.php:59 libraries/messages.inc.php:260 +#: js/messages.php:59 libraries/messages.inc.php:256 #: libraries/relation.lib.php:101 libraries/relation.lib.php:108 msgid "Disabled" msgstr "Disabilitata" -#: js/messages.php:60 libraries/messages.inc.php:850 +#: js/messages.php:60 libraries/messages.inc.php:846 msgid "Select referenced key" msgstr "Seleziona le chiavi referenziali" -#: js/messages.php:61 libraries/messages.inc.php:848 +#: js/messages.php:61 libraries/messages.inc.php:844 msgid "Select Foreign Key" msgstr "Seleziona Foreign Key" -#: js/messages.php:62 libraries/messages.inc.php:653 +#: js/messages.php:62 libraries/messages.inc.php:649 msgid "Please select the primary key or a unique key" msgstr "Seleziona la chiave primaria o una chiave univoca" -#: js/messages.php:63 libraries/messages.inc.php:142 pmd_general.php:77 +#: js/messages.php:63 libraries/messages.inc.php:138 pmd_general.php:77 #: tbl_relation.php:548 msgid "Choose field to display" msgstr "Scegli il campo da mostrare" @@ -1099,9 +1099,9 @@ msgid "Prev" msgstr "Precedente" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2332 -#: libraries/common.lib.php:2335 libraries/display_tbl.lib.php:338 -#: libraries/messages.inc.php:543 server_binlog.php:205 server_binlog.php:207 +#: js/messages.php:77 libraries/common.lib.php:2344 +#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: libraries/messages.inc.php:539 server_binlog.php:205 server_binlog.php:207 #: tbl_printview.php:424 tbl_structure.php:802 msgid "Next" msgstr "Prossimo" @@ -1176,27 +1176,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1543 +#: js/messages.php:97 libraries/common.lib.php:1555 msgid "Jan" msgstr "gen" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1545 +#: js/messages.php:99 libraries/common.lib.php:1557 msgid "Feb" msgstr "feb" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1547 +#: js/messages.php:101 libraries/common.lib.php:1559 msgid "Mar" msgstr "mar" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1549 +#: js/messages.php:103 libraries/common.lib.php:1561 msgid "Apr" msgstr "apr" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1551 +#: js/messages.php:105 libraries/common.lib.php:1563 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1204,37 +1204,37 @@ msgid "May" msgstr "mag" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1553 +#: js/messages.php:107 libraries/common.lib.php:1565 msgid "Jun" msgstr "giu" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1555 +#: js/messages.php:109 libraries/common.lib.php:1567 msgid "Jul" msgstr "lug" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1557 +#: js/messages.php:111 libraries/common.lib.php:1569 msgid "Aug" msgstr "ago" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1559 +#: js/messages.php:113 libraries/common.lib.php:1571 msgid "Sep" msgstr "set" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1561 +#: js/messages.php:115 libraries/common.lib.php:1573 msgid "Oct" msgstr "ott" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1563 +#: js/messages.php:117 libraries/common.lib.php:1575 msgid "Nov" msgstr "nov" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1565 +#: js/messages.php:119 libraries/common.lib.php:1577 msgid "Dec" msgstr "dic" @@ -1275,37 +1275,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1568 +#: js/messages.php:132 libraries/common.lib.php:1580 msgid "Sun" msgstr "Dom" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1570 +#: js/messages.php:134 libraries/common.lib.php:1582 msgid "Mon" msgstr "Lun" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1572 +#: js/messages.php:136 libraries/common.lib.php:1584 msgid "Tue" msgstr "Mar" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1574 +#: js/messages.php:138 libraries/common.lib.php:1586 msgid "Wed" msgstr "Mer" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1576 +#: js/messages.php:140 libraries/common.lib.php:1588 msgid "Thu" msgstr "Gio" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1578 +#: js/messages.php:142 libraries/common.lib.php:1590 msgid "Fri" msgstr "Ven" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1580 +#: js/messages.php:144 libraries/common.lib.php:1592 msgid "Sat" msgstr "Sab" @@ -1381,77 +1381,77 @@ msgstr "in uso" msgid "Second" msgstr "al secondo" -#: libraries/Config.class.php:1015 libraries/messages.inc.php:338 +#: libraries/Config.class.php:1015 libraries/messages.inc.php:334 msgid "Font size" msgstr "Dimensione font" #: libraries/File.class.php:344 libraries/File.class.php:432 #: libraries/File.class.php:569 libraries/File.class.php:708 -#: libraries/messages.inc.php:1201 +#: libraries/messages.inc.php:1197 msgid "Unknown error in file upload." msgstr "Errore sconosciuto nel caricamento del file." -#: libraries/File.class.php:414 libraries/messages.inc.php:1198 +#: libraries/File.class.php:414 libraries/messages.inc.php:1194 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "Il file caricato eccede il parametro upload_max_filesize in php.ini." -#: libraries/File.class.php:417 libraries/messages.inc.php:1197 +#: libraries/File.class.php:417 libraries/messages.inc.php:1193 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" "Il file caricato eccede il parametro MAX_FILE_SIZE specificato nel form HTML." -#: libraries/File.class.php:420 libraries/messages.inc.php:1200 +#: libraries/File.class.php:420 libraries/messages.inc.php:1196 msgid "The uploaded file was only partially uploaded." msgstr "Il file è stato solo parzialmente caricato." -#: libraries/File.class.php:423 libraries/messages.inc.php:1199 +#: libraries/File.class.php:423 libraries/messages.inc.php:1195 msgid "Missing a temporary folder." msgstr "Non trovo la cartella temporanea." -#: libraries/File.class.php:426 libraries/messages.inc.php:1195 +#: libraries/File.class.php:426 libraries/messages.inc.php:1191 msgid "Failed to write file to disk." msgstr "Non riesco a scrivere il file su disco." -#: libraries/File.class.php:429 libraries/messages.inc.php:1196 +#: libraries/File.class.php:429 libraries/messages.inc.php:1192 msgid "File upload stopped by extension." msgstr "Caricamento del file interrotto per estensione errata." -#: libraries/File.class.php:908 libraries/messages.inc.php:319 +#: libraries/File.class.php:908 libraries/messages.inc.php:315 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "Errore nello spostare il file caricato, vedi FAQ 1.11" -#: libraries/Index.class.php:428 libraries/messages.inc.php:554 +#: libraries/Index.class.php:428 libraries/messages.inc.php:550 #: tbl_relation.php:529 msgid "No index defined!" msgstr "Nessun indice definito!" -#: libraries/Index.class.php:433 libraries/messages.inc.php:411 +#: libraries/Index.class.php:433 libraries/messages.inc.php:407 #: server_databases.php:132 tbl_tracking.php:316 msgid "Indexes" msgstr "Indici" -#: libraries/Index.class.php:444 libraries/messages.inc.php:1186 +#: libraries/Index.class.php:444 libraries/messages.inc.php:1182 #: 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:475 tbl_tracking.php:322 msgid "Unique" msgstr "Unica" -#: libraries/Index.class.php:445 libraries/messages.inc.php:596 +#: libraries/Index.class.php:445 libraries/messages.inc.php:592 #: tbl_tracking.php:323 msgid "Packed" msgstr "Compresso" -#: libraries/Index.class.php:447 libraries/messages.inc.php:131 +#: libraries/Index.class.php:447 libraries/messages.inc.php:127 #: tbl_tracking.php:325 msgid "Cardinality" msgstr "Cardinalità" -#: libraries/Index.class.php:450 libraries/messages.inc.php:162 +#: libraries/Index.class.php:450 libraries/messages.inc.php:158 #: tbl_tracking.php:279 tbl_tracking.php:328 msgid "Comment" msgstr "Commenti" @@ -1459,22 +1459,22 @@ msgstr "Commenti" #: libraries/Index.class.php:466 libraries/common.lib.php:616 #: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:280 pdf_pages.php:280 +#: libraries/messages.inc.php:276 pdf_pages.php:280 #: setup/frames/index.inc.php:124 setup/lib/messages.inc.php:352 #: tbl_row_action.php:69 msgid "Edit" msgstr "Modifica" -#: libraries/Index.class.php:472 libraries/messages.inc.php:666 +#: libraries/Index.class.php:472 libraries/messages.inc.php:662 msgid "The primary key has been dropped" msgstr "La chiave primaria è stata eliminata" -#: libraries/Index.class.php:476 libraries/messages.inc.php:413 +#: libraries/Index.class.php:476 libraries/messages.inc.php:409 #, php-format msgid "Index %s has been dropped" msgstr "L'indice %s è stato eliminato" -#: libraries/Index.class.php:576 libraries/messages.inc.php:412 +#: libraries/Index.class.php:576 libraries/messages.inc.php:408 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -1483,7 +1483,7 @@ msgstr "" "Gli indici %1$s e %2$s sembrano essere uguali e andrebbero, possibilmente, " "essere rimossi." -#: libraries/List_Database.class.php:431 libraries/messages.inc.php:218 +#: libraries/List_Database.class.php:431 libraries/messages.inc.php:214 #: libraries/server_links.inc.php:41 server_databases.php:88 #: server_privileges.php:1621 setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" @@ -1510,87 +1510,87 @@ msgid_plural "%1$d rows inserted." msgstr[0] "%1$d riga inserita." msgstr[1] "%1$d righe inserite." -#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:549 +#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:545 msgid "" "There is no detailed status information available for this storage engine." msgstr "" "Non è disponibile nessuna informazione dettagliata sullo stato di questo " "motore di memorizzazione." -#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:291 +#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:287 #, php-format msgid "%s is available on this MySQL server." msgstr "%s è disponibile su questo server MySQL." -#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:292 +#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:288 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s è stato disabilitato su questo server MySQL." -#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:294 +#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:290 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "Questo server MySQL non supporta il motore di memorizzazione %s." -#: libraries/Table.class.php:1019 libraries/messages.inc.php:443 +#: libraries/Table.class.php:1019 libraries/messages.inc.php:439 msgid "Invalid database" msgstr "Database non valido" -#: libraries/Table.class.php:1033 libraries/messages.inc.php:450 +#: libraries/Table.class.php:1033 libraries/messages.inc.php:446 #: tbl_get_field.php:26 msgid "Invalid table name" msgstr "Nome tabella non valido" -#: libraries/Table.class.php:1048 libraries/messages.inc.php:301 +#: libraries/Table.class.php:1048 libraries/messages.inc.php:297 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "Errore nel rinominare la tabella %1$s in %2$s" -#: libraries/Table.class.php:1132 libraries/messages.inc.php:754 +#: libraries/Table.class.php:1132 libraries/messages.inc.php:750 #, php-format msgid "Table %s has been renamed to %s" msgstr "La tabella %s è stata rinominata %s" -#: libraries/Theme.class.php:162 libraries/messages.inc.php:1099 +#: libraries/Theme.class.php:162 libraries/messages.inc.php:1095 #, php-format msgid "No valid image path for theme %s found!" msgstr "Nessun percorso per le immagini per il tema %s trovato!" -#: libraries/Theme.class.php:384 libraries/messages.inc.php:1097 +#: libraries/Theme.class.php:384 libraries/messages.inc.php:1093 msgid "No preview available." msgstr "Nessuna preview disponibile." -#: libraries/Theme.class.php:387 libraries/messages.inc.php:1089 +#: libraries/Theme.class.php:387 libraries/messages.inc.php:1085 msgid "take it" msgstr "prendilo" -#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1096 +#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1092 #, php-format msgid "Default theme %s not found!" msgstr "Tema di default %s non trovato!" -#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1098 +#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1094 #, php-format msgid "Theme %s not found!" msgstr "Tema %s non trovato!" -#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1100 +#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1096 #, php-format msgid "Theme path not found for theme %s!" msgstr "Percorso per il tema non trovato %s!" -#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1101 +#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1097 #: test/theme.php:161 themes.php:21 themes.php:41 msgid "Theme / Style" msgstr "Tema / Stile" -#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:172 +#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:168 msgid "Cannot connect: invalid settings." msgstr "Impossibile connettersi: impostazioni non valide." #: libraries/auth/config.auth.lib.php:92 #: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65 -#: libraries/messages.inc.php:1238 test/theme.php:152 +#: libraries/messages.inc.php:1234 test/theme.php:152 #, php-format msgid "Welcome to %s" msgstr "Benvenuto in %s" @@ -1616,52 +1616,52 @@ msgstr "" "l'username e la password nel file config.inc.php ed assicurarsi che " "corrispondano alle informazioni fornite dall'amministratore del server MySQL." -#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:488 +#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:484 msgid "Log in" msgstr "Connetti" #: libraries/auth/cookie.auth.lib.php:246 -#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:659 +#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:655 #: libraries/navigation_header.inc.php:93 #: libraries/navigation_header.inc.php:95 msgid "phpMyAdmin documentation" msgstr "Documentazione di phpMyAdmin" #: libraries/auth/cookie.auth.lib.php:258 -#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:492 +#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:488 msgid "You can enter hostname/IP address and port separated by space." msgstr "Puoi inserire Indirizzo IP/hostname a porta separati dallo spazio." -#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:493 +#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:489 msgid "Server:" msgstr "Server" -#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:494 +#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:490 msgid "Username:" msgstr "Nome utente:" -#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:491 +#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:487 msgid "Password:" msgstr "Password:" -#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:854 +#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:850 msgid "Server Choice" msgstr "Scelta del server" #: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 -#: libraries/messages.inc.php:177 +#: libraries/messages.inc.php:173 msgid "Cookies must be enabled past this point." msgstr "Da questo punto in poi, i cookie devono essere abilitati." #: libraries/auth/cookie.auth.lib.php:671 -#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:489 +#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:485 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" "Login senza password è vietato dalla configurazione (vedi AllowNoPassword)" #: libraries/auth/cookie.auth.lib.php:675 -#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:544 +#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:540 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" @@ -1669,53 +1669,53 @@ msgstr "" #: libraries/auth/cookie.auth.lib.php:685 #: libraries/auth/cookie.auth.lib.php:687 -#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:126 +#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:122 msgid "Cannot log in to the MySQL server" msgstr "Impossibile eseguire il login nel server MySQL" -#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1245 +#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1241 msgid "Wrong username/password. Access denied." msgstr "Nome utente o password errati. Accesso negato." #: libraries/auth/swekey/swekey.auth.lib.php:118 -#: libraries/messages.inc.php:1057 +#: libraries/messages.inc.php:1053 #, php-format msgid "File %s does not contain any key id" msgstr "Il file %s non contiente nessuna chiave id" #: libraries/auth/swekey/swekey.auth.lib.php:157 #: libraries/auth/swekey/swekey.auth.lib.php:180 -#: libraries/messages.inc.php:1056 +#: libraries/messages.inc.php:1052 msgid "Hardware authentication failed" msgstr "Autentificazione hardware fallita" #: libraries/auth/swekey/swekey.auth.lib.php:166 -#: libraries/messages.inc.php:1058 +#: libraries/messages.inc.php:1054 msgid "No valid authentication key plugged" msgstr "Nessuna chiave di autentificazione valida inserita" #: libraries/auth/swekey/swekey.auth.lib.php:202 -#: libraries/messages.inc.php:1055 +#: libraries/messages.inc.php:1051 msgid "Authenticating..." msgstr "Autenticazione..." -#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1230 +#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1226 msgid "View image" msgstr "Visualizza immagine" -#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:652 +#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:648 msgid "Play audio" msgstr "Avvia audio" -#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1232 +#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1228 msgid "View video" msgstr "Visualizza video" -#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:269 +#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:265 msgid "Download file" msgstr "Scarica file" -#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:128 +#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:124 msgid "" "Couldn't load the iconv or recode extension needed for charset conversion. " "Either configure PHP to enable these extensions or disable charset " @@ -1728,7 +1728,7 @@ msgstr "" #: libraries/charset_conversion.lib.php:79 #: libraries/charset_conversion.lib.php:90 -#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:130 +#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:126 msgid "" "Couldn't use the iconv, libiconv, or recode_string functions, although the " "necessary extensions appear to be loaded. Check your PHP configuration." @@ -1737,7 +1737,7 @@ msgstr "" "quanto l'estensione deve essere caricata. Controllare la configurazione del " "PHP." -#: libraries/common.inc.php:583 libraries/messages.inc.php:170 +#: libraries/common.inc.php:583 libraries/messages.inc.php:166 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!" @@ -1773,23 +1773,23 @@ msgstr "" msgid "Invalid server index: %s" msgstr "Server index non valido: \"%s\"" -#: libraries/common.inc.php:636 libraries/messages.inc.php:448 +#: libraries/common.inc.php:636 libraries/messages.inc.php:444 #, 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/messages.inc.php:856 libraries/select_server.lib.php:41 +#: libraries/messages.inc.php:852 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/messages.inc.php:437 +#: libraries/common.inc.php:823 libraries/messages.inc.php:433 msgid "Invalid authentication method set in configuration:" msgstr "Metodo di autenticazione settato nella configurazione non valido:" -#: libraries/common.lib.php:147 libraries/messages.inc.php:499 +#: libraries/common.lib.php:147 libraries/messages.inc.php:495 #, php-format msgid "Max: %s%s" msgstr "Dimensione massima: %s%s" @@ -1809,7 +1809,7 @@ msgstr "en" #: libraries/common.lib.php:428 libraries/common.lib.php:430 #: libraries/common.lib.php:432 libraries/common.lib.php:448 #: libraries/common.lib.php:450 libraries/dbg/setup.php:25 -#: libraries/display_export.lib.php:164 libraries/messages.inc.php:267 +#: libraries/display_export.lib.php:164 libraries/messages.inc.php:263 #: libraries/relation.lib.php:97 libraries/sql_query_form.lib.php:451 #: libraries/sql_query_form.lib.php:454 main.php:229 pdf_pages.php:37 #: pdf_pages.php:43 pdf_pages.php:49 pdf_pages.php:54 @@ -1819,55 +1819,55 @@ msgstr "Documentazione" #: libraries/common.lib.php:581 libraries/core.lib.php:234 #: libraries/core.lib.php:263 libraries/import.lib.php:134 -#: libraries/messages.inc.php:297 pdf_schema.php:32 pdf_schema.php:232 +#: libraries/messages.inc.php:293 pdf_schema.php:32 pdf_schema.php:232 #: tbl_change.php:1027 tbl_operations.php:213 tbl_relation.php:290 #: view_operations.php:62 msgid "Error" msgstr "Errore" #: libraries/common.lib.php:595 libraries/header_printview.inc.php:61 -#: libraries/messages.inc.php:1023 server_processlist.php:60 +#: libraries/messages.inc.php:1019 server_processlist.php:60 #: server_status.php:247 msgid "SQL query" msgstr "query SQL" -#: libraries/common.lib.php:634 libraries/messages.inc.php:538 +#: libraries/common.lib.php:634 libraries/messages.inc.php:534 msgid "MySQL said: " msgstr "Messaggio di MySQL: " -#: libraries/common.lib.php:667 libraries/messages.inc.php:76 +#: libraries/common.lib.php:667 libraries/messages.inc.php:72 #: pdf_schema.php:241 user_password.php:115 msgid "Back" msgstr "Indietro" -#: libraries/common.lib.php:1177 libraries/messages.inc.php:309 +#: libraries/common.lib.php:1177 libraries/messages.inc.php:305 #: setup/lib/messages.inc.php:353 msgid "Explain SQL" msgstr "Spiega SQL" -#: libraries/common.lib.php:1180 libraries/messages.inc.php:551 +#: libraries/common.lib.php:1180 libraries/messages.inc.php:547 msgid "Skip Explain SQL" msgstr "Non Spiegare SQL" -#: libraries/common.lib.php:1212 libraries/messages.inc.php:563 +#: libraries/common.lib.php:1212 libraries/messages.inc.php:559 msgid "Without PHP Code" msgstr "senza codice PHP" -#: libraries/common.lib.php:1215 libraries/messages.inc.php:649 +#: libraries/common.lib.php:1215 libraries/messages.inc.php:645 #: setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "Crea il codice PHP" -#: libraries/common.lib.php:1233 libraries/messages.inc.php:737 +#: libraries/common.lib.php:1233 libraries/messages.inc.php:733 #: server_status.php:341 setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "Aggiorna" -#: libraries/common.lib.php:1242 libraries/messages.inc.php:575 +#: libraries/common.lib.php:1242 libraries/messages.inc.php:571 msgid "Skip Validate SQL" msgstr "Non Validare SQL" -#: libraries/common.lib.php:1245 libraries/messages.inc.php:1220 +#: libraries/common.lib.php:1245 libraries/messages.inc.php:1216 #: setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "Valida SQL" @@ -1883,11 +1883,11 @@ msgid "Inline" msgstr "In linea" #: libraries/common.lib.php:1332 libraries/common.lib.php:1347 -#: libraries/messages.inc.php:713 +#: libraries/messages.inc.php:709 msgid "Profiling" msgstr "Profiling" -#: libraries/common.lib.php:1351 libraries/messages.inc.php:1108 +#: libraries/common.lib.php:1351 libraries/messages.inc.php:1104 #: libraries/tbl_triggers.lib.php:28 server_processlist.php:58 msgid "Time" msgstr "Tempo" @@ -1921,46 +1921,56 @@ msgstr "PiB" msgid "EiB" msgstr "EiB" +#. l10n: Thousands separator +#: libraries/common.lib.php:1417 +msgid "," +msgstr "." + +#. l10n: Decimal separator +#: libraries/common.lib.php:1419 +msgid "." +msgstr "," + #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1584 +#: libraries/common.lib.php:1596 #: libraries/transformations/text_plain__dateformat.inc.php:28 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B, %Y at %I:%M %p" -#: libraries/common.lib.php:1886 +#: libraries/common.lib.php:1898 #, 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:2301 libraries/common.lib.php:2304 -#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:664 +#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:660 #: server_status.php:608 msgid "Begin" msgstr "Inizio" -#: libraries/common.lib.php:2302 libraries/common.lib.php:2305 -#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:665 +#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:661 #: server_binlog.php:168 server_binlog.php:170 msgid "Previous" msgstr "Precedente" -#: libraries/common.lib.php:2333 libraries/common.lib.php:2336 -#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:289 +#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:285 msgid "End" msgstr "Fine" -#: libraries/common.lib.php:2409 libraries/messages.inc.php:455 +#: libraries/common.lib.php:2421 libraries/messages.inc.php:451 #, php-format msgid "Jump to database "%s"." msgstr "Passa al database \"%s\"." -#: libraries/common.lib.php:2429 libraries/messages.inc.php:461 +#: libraries/common.lib.php:2441 libraries/messages.inc.php:457 #, 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/core.lib.php:286 libraries/dbg/setup.php:22 -#: libraries/messages.inc.php:127 +#: libraries/messages.inc.php:123 #, php-format msgid "" "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " @@ -1970,116 +1980,116 @@ msgstr "" "configurazione di PHP" #: libraries/db_events.inc.php:20 libraries/db_events.inc.php:22 -#: libraries/export/sql.php:415 libraries/messages.inc.php:306 +#: libraries/export/sql.php:415 libraries/messages.inc.php:302 msgid "Events" msgstr "Eventi" #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 -#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:541 +#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:537 #: libraries/tbl_triggers.lib.php:27 setup/frames/index.inc.php:112 msgid "Name" msgstr "Nome" -#: libraries/db_links.inc.php:45 libraries/messages.inc.php:216 +#: libraries/db_links.inc.php:45 libraries/messages.inc.php:212 #, php-format msgid "Database %s has been dropped." msgstr "Il Database %s è stato eliminato." #: libraries/db_links.inc.php:57 libraries/db_links.inc.php:58 -#: libraries/db_links.inc.php:59 libraries/messages.inc.php:234 +#: libraries/db_links.inc.php:59 libraries/messages.inc.php:230 msgid "Database seems to be empty!" msgstr "Il databse sembra essere vuoto!" -#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1025 +#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1021 #: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60 #: querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1152 +#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1148 #: libraries/tbl_links.inc.php:69 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:86 libraries/messages.inc.php:719 +#: libraries/db_links.inc.php:86 libraries/messages.inc.php:715 msgid "Query" msgstr "Query da esempio" -#: libraries/db_links.inc.php:91 libraries/messages.inc.php:253 +#: libraries/db_links.inc.php:91 libraries/messages.inc.php:249 msgid "Designer" msgstr "Designer" -#: libraries/db_links.inc.php:98 libraries/messages.inc.php:397 +#: libraries/db_links.inc.php:98 libraries/messages.inc.php:393 #: libraries/server_links.inc.php:88 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:104 libraries/messages.inc.php:587 +#: libraries/db_links.inc.php:104 libraries/messages.inc.php:583 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" msgstr "Operazioni" -#: libraries/db_links.inc.php:111 libraries/messages.inc.php:709 +#: libraries/db_links.inc.php:111 libraries/messages.inc.php:705 #: libraries/server_links.inc.php:66 server_privileges.php:72 #: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117 msgid "Privileges" msgstr "Privilegi" #: libraries/db_routines.inc.php:30 libraries/db_routines.inc.php:32 -#: libraries/messages.inc.php:812 +#: libraries/messages.inc.php:808 msgid "Routines" msgstr "Routines" -#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:811 +#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:807 msgid "Return type" msgstr "Tipo di risultato" #: libraries/db_structure.lib.php:57 libraries/display_tbl.lib.php:1848 -#: libraries/messages.inc.php:65 +#: libraries/messages.inc.php:61 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "Può essere approssimato. Vedere FAQ 3.11" -#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:593 +#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:589 #: server_databases.php:142 tbl_printview.php:336 tbl_structure.php:683 msgid "Overhead" msgstr "In eccesso" #: libraries/dbi/mysql.dbi.lib.php:112 libraries/dbi/mysqli.dbi.lib.php:124 -#: libraries/messages.inc.php:176 +#: libraries/messages.inc.php:172 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Connessione per controluser come definito nella configurazione fallita." #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 -#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:855 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:851 msgid "The server is not responding" msgstr "Il server non risponde" #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:1010 +#: libraries/messages.inc.php:1006 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 libraries/messages.inc.php:255 +#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:251 #: tbl_structure.php:609 msgid "Details..." msgstr "Dettagli..." -#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:143 +#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:139 #: main.php:91 user_password.php:111 user_password.php:129 msgid "Change password" msgstr "Cambia password" -#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:561 +#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:557 #: libraries/replication_gui.lib.php:341 server_privileges.php:768 msgid "No Password" msgstr "Nessuna Password" -#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:610 +#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:606 #: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60 #: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335 #: libraries/replication_gui.lib.php:345 server_privileges.php:757 @@ -2088,13 +2098,13 @@ msgstr "Nessuna Password" msgid "Password" msgstr "Password" -#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:806 +#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:802 #: libraries/replication_gui.lib.php:349 libraries/replication_gui.lib.php:352 #: server_privileges.php:776 server_privileges.php:779 msgid "Re-type" msgstr "Reinserisci" -#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:608 +#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:604 msgid "Password Hashing" msgstr "Password Hashing" @@ -2104,90 +2114,90 @@ msgstr "Password Hashing" msgid "MySQL 4.0 compatible" msgstr "Compatibile con MySQL 4.0" -#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:353 +#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:349 #: libraries/replication_gui.lib.php:356 server_privileges.php:783 msgid "Generate Password" msgstr "Genera Password" -#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:352 +#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:348 #: libraries/replication_gui.lib.php:359 server_privileges.php:786 msgid "Generate" msgstr "Genera" #: libraries/display_create_database.lib.php:22 -#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:189 +#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:185 msgid "Create new database" msgstr "Crea un nuovo database" -#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:185 +#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:181 msgid "Create" msgstr "Crea" -#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:564 +#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:560 #: server_privileges.php:74 server_privileges.php:1388 #: server_replication.php:35 msgid "No Privileges" msgstr "Nessun Privilegio" -#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:445 +#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:441 msgid "Table must have at least one field." msgstr "la tabella deve avere come minimo un dato." -#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:190 +#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:186 #, php-format msgid "Create table on database %s" msgstr "Crea una nuova tabella nel database %s" -#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:577 +#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:573 msgid "Number of fields" msgstr "Numero di campi" -#: libraries/display_export.lib.php:42 libraries/messages.inc.php:124 +#: libraries/display_export.lib.php:42 libraries/messages.inc.php:120 msgid "Could not load export plugins, please check your installation!" msgstr "" "Non posso caricare i plugins di esportazione. Controlla l'installazione!" -#: libraries/display_export.lib.php:107 libraries/messages.inc.php:277 +#: libraries/display_export.lib.php:107 libraries/messages.inc.php:273 #, php-format msgid "Dump %s row(s) starting at record # %s" msgstr "Dump di %s righe a partire dalla riga %s." -#: libraries/display_export.lib.php:115 libraries/messages.inc.php:274 +#: libraries/display_export.lib.php:115 libraries/messages.inc.php:270 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:125 libraries/messages.inc.php:852 +#: libraries/display_export.lib.php:125 libraries/messages.inc.php:848 #: setup/lib/messages.inc.php:82 msgid "Save as file" msgstr "Salva con nome..." -#: libraries/display_export.lib.php:134 libraries/messages.inc.php:828 +#: libraries/display_export.lib.php:134 libraries/messages.inc.php:824 #, php-format msgid "Save on server in %s directory" msgstr "Salva sul server nella directory %s" -#: libraries/display_export.lib.php:142 libraries/messages.inc.php:594 +#: libraries/display_export.lib.php:142 libraries/messages.inc.php:590 #: setup/lib/messages.inc.php:90 msgid "Overwrite existing file(s)" msgstr "Sovrascrivi file(s) esistente/i" -#: libraries/display_export.lib.php:148 libraries/messages.inc.php:330 +#: libraries/display_export.lib.php:148 libraries/messages.inc.php:326 msgid "File name template" msgstr "Nome file template" -#: libraries/display_export.lib.php:152 libraries/messages.inc.php:327 +#: libraries/display_export.lib.php:152 libraries/messages.inc.php:323 msgid "server name" msgstr "nome server" -#: libraries/display_export.lib.php:155 libraries/messages.inc.php:326 +#: libraries/display_export.lib.php:155 libraries/messages.inc.php:322 msgid "database name" msgstr "nome database" -#: libraries/display_export.lib.php:158 libraries/messages.inc.php:328 +#: libraries/display_export.lib.php:158 libraries/messages.inc.php:324 msgid "table name" msgstr "nome tabella" -#: libraries/display_export.lib.php:162 libraries/messages.inc.php:329 +#: libraries/display_export.lib.php:162 libraries/messages.inc.php:325 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2198,24 +2208,24 @@ msgstr "" "usare stringhe di formattazione per le date/tempi. Verranno anche aggiunte " "le seguenti trasformazioni: %3$s. Il testo rimanente resterà invariato." -#: libraries/display_export.lib.php:202 libraries/messages.inc.php:331 +#: libraries/display_export.lib.php:202 libraries/messages.inc.php:327 msgid "remember template" msgstr "ricorda il template" #: libraries/display_export.lib.php:210 libraries/display_import.lib.php:178 -#: libraries/display_import.lib.php:191 libraries/messages.inc.php:145 +#: libraries/display_import.lib.php:191 libraries/messages.inc.php:141 #: libraries/sql_query_form.lib.php:549 msgid "Character set of the file:" msgstr "Set di caratteri del file:" -#: libraries/display_export.lib.php:235 libraries/messages.inc.php:166 +#: libraries/display_export.lib.php:235 libraries/messages.inc.php:162 #: setup/lib/messages.inc.php:84 msgid "Compression" 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/messages.inc.php:558 +#: libraries/export/sql.php:868 libraries/messages.inc.php:554 #: libraries/tbl_properties.inc.php:575 server_privileges.php:1836 #: server_processlist.php:75 msgid "None" @@ -2239,11 +2249,11 @@ msgstr "\"compresso con gzip\"" msgid "bzipped" msgstr "\"compresso con bzip\"" -#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1018 +#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1014 msgid "SQL compatibility mode" msgstr "Modo di compatibilità SQL" -#: libraries/display_import.lib.php:67 libraries/messages.inc.php:398 +#: libraries/display_import.lib.php:67 libraries/messages.inc.php:394 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " @@ -2253,11 +2263,11 @@ msgstr "" "massima consentita o questo è un bug noto in browser basati su WebKit " "(Safari, Google Chrome, Arora, ecc)." -#: libraries/display_import.lib.php:77 libraries/messages.inc.php:406 +#: libraries/display_import.lib.php:77 libraries/messages.inc.php:402 msgid "The file is being processed, please be patient." msgstr "Il file è in fase di elaborazione, vi preghiamo di essere pazienti." -#: libraries/display_import.lib.php:99 libraries/messages.inc.php:408 +#: libraries/display_import.lib.php:99 libraries/messages.inc.php:404 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." @@ -2265,41 +2275,41 @@ msgstr "" "Pazienza mentre il file viene caricato. Dettagli sulla upload non sono " "disponibili." -#: libraries/display_import.lib.php:126 libraries/messages.inc.php:333 +#: libraries/display_import.lib.php:126 libraries/messages.inc.php:329 msgid "File to import" msgstr "File importato" -#: libraries/display_import.lib.php:137 libraries/messages.inc.php:486 +#: libraries/display_import.lib.php:137 libraries/messages.inc.php:482 #: libraries/sql_query_form.lib.php:524 msgid "Location of the text file" msgstr "Percorso del file" -#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1203 +#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1199 msgid "File uploads are not allowed on this server." msgstr "Non è permesso l'upload dei file su questo server." -#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1235 +#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1231 #: libraries/sql_query_form.lib.php:533 tbl_change.php:1028 msgid "The directory you set for upload work cannot be reached" msgstr "La directory impostata per l'upload non può essere trovata" -#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1236 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1232 #: libraries/sql_query_form.lib.php:536 tbl_change.php:1031 msgid "web server upload directory" msgstr "directory di upload del web-server" -#: libraries/display_import.lib.php:212 libraries/messages.inc.php:167 +#: libraries/display_import.lib.php:212 libraries/messages.inc.php:163 #, php-format msgid "Imported file compression will be automatically detected from: %s" msgstr "" "Il tipo di compressione del file importato sarà automaticamente rilevato da: " "%s" -#: libraries/display_import.lib.php:219 libraries/messages.inc.php:600 +#: libraries/display_import.lib.php:219 libraries/messages.inc.php:596 msgid "Partial import" msgstr "Importazione parziale" -#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1105 +#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1101 #, php-format msgid "" "Previous import timed out, after resubmitting will continue from position %d." @@ -2307,7 +2317,7 @@ msgstr "" "Una precedente importazione è entrata in timeout, dopo un nuovo inoltro " "riprenderà dalla posizione: %d." -#: libraries/display_import.lib.php:232 libraries/messages.inc.php:51 +#: libraries/display_import.lib.php:232 libraries/messages.inc.php:47 msgid "" "Allow the interruption of an import in case the script detects it is close " "to the PHP timeout limit. This might be good way to import large files, " @@ -2317,177 +2327,177 @@ msgstr "" "essere troppo vicino al tempo limite. Questo potrebbe essere un buon modo di " "importare grandi file, tuttavia potrebbe interrompere la transazione." -#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1004 +#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1000 #: setup/lib/messages.inc.php:161 msgid "Number of records (queries) to skip from start" msgstr "Numero di record (query) da saltare a partire dall'inizio" -#: libraries/display_import.lib.php:255 libraries/messages.inc.php:396 +#: libraries/display_import.lib.php:255 libraries/messages.inc.php:392 #: setup/lib/messages.inc.php:160 msgid "Format of imported file" msgstr "Formato del file importato" #: libraries/display_select_lang.lib.php:45 -#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:465 +#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:461 #: setup/frames/index.inc.php:70 msgid "Language" msgstr "Lingua" -#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:447 +#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:443 #, php-format msgid "%d is not valid row number." msgstr "%d non è un numero valido di righe." -#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:814 +#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:810 msgid "row(s) starting from record #" msgstr "righe a partire da" -#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:817 +#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:813 msgid "horizontal" msgstr " orizzontale " -#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:816 +#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:812 msgid "horizontal (rotated headers)" msgstr "orizzontale (headers ruotati)" -#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:819 +#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:815 msgid "vertical" msgstr " verticale " -#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:818 +#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:814 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr " in modalità %s e ripeti gli headers dopo %s celle " -#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:495 +#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:491 msgid "This operation could take a long time. Proceed anyway?" msgstr "Questa operazione potrebbe impiegare molto tempo. Procedere comunque?" -#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1012 +#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1008 msgid "Sort by key" msgstr "Ordina per chiave" #: libraries/display_tbl.lib.php:555 libraries/import.lib.php:1082 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:591 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:587 #: tbl_select.php:267 tbl_structure.php:754 msgid "Options" msgstr "Opzioni" #: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:570 -#: libraries/messages.inc.php:601 +#: libraries/messages.inc.php:597 msgid "Partial Texts" msgstr "Testo parziale" #: libraries/display_tbl.lib.php:561 libraries/display_tbl.lib.php:574 -#: libraries/messages.inc.php:346 +#: libraries/messages.inc.php:342 msgid "Full Texts" msgstr "Testo completo" -#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:739 +#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:735 msgid "Relational key" msgstr "Chiave relazionale" -#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:738 +#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:734 msgid "Relational display field" msgstr "Mosta il campo relazionale" -#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:872 +#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:868 msgid "Show binary contents" msgstr "" -#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:873 +#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:869 msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:871 +#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:867 msgid "Show binary contents as HEX" msgstr "" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:375 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:371 #: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320 msgid "Hide" msgstr "Nascondi" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:508 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:504 #: libraries/tbl_properties.inc.php:144 transformation_overview.php:47 msgid "Browser transformation" msgstr "Trasformazione del Browser" #: libraries/display_tbl.lib.php:1126 libraries/display_tbl.lib.php:1130 -#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:308 +#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:304 msgid "Execute bookmarked query" msgstr "Esegue la query dalle preferite" #: libraries/display_tbl.lib.php:1145 libraries/display_tbl.lib.php:1157 -#: libraries/messages.inc.php:244 +#: libraries/messages.inc.php:240 msgid "The row has been deleted" msgstr "La riga è stata cancellata" #: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056 -#: libraries/messages.inc.php:460 server_processlist.php:71 +#: libraries/messages.inc.php:456 server_processlist.php:71 #: tbl_row_action.php:64 msgid "Kill" msgstr "Rimuovi" -#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:849 +#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:845 msgid "in query" msgstr "nella query" -#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:881 +#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:877 msgid "Showing rows" msgstr "Visualizzazione record " -#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1113 +#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1109 msgid "total" msgstr "Totali" -#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:727 +#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:723 #: sql.php:524 #, php-format msgid "Query took %01.4f sec" msgstr "La query ha impiegato %01.4f sec" -#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:135 +#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:131 #: 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:471 msgid "Change" msgstr "Modifica" -#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:724 +#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:720 msgid "Query results operations" msgstr "Risultato delle operazioni di Query" -#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:671 +#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:667 msgid "Print view (with full texts)" msgstr "Vista stampa (con full text)" -#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:482 +#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:478 msgid "Link not found" msgstr "Link non trovato" -#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1224 +#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1220 #: main.php:228 msgid "Version information" msgstr "Informazioni sulla versione" -#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:423 +#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:419 msgid "Data home directory" msgstr "Home directory dei dati" -#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:424 +#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:420 msgid "The common part of the directory path for all InnoDB data files." msgstr "La parte comune del path della directory per tutti i file dati InnoDB." -#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:422 +#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:418 msgid "Data files" msgstr "File dati" -#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:418 +#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:414 msgid "Autoextend increment" msgstr "Incremento autoextend" -#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:419 +#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:415 msgid "" " The increment size for extending the size of an autoextending tablespace " "when it becomes full." @@ -2495,11 +2505,11 @@ msgstr "" " La dimensione di incremento per aumentare la dimensione di una tabella " "autoextending quando diventa piena." -#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:420 +#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:416 msgid "Buffer pool size" msgstr "Dimensione del Buffer pool" -#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:421 +#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:417 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." @@ -2507,87 +2517,87 @@ msgstr "" "La dimensione del buffer di memoria InnoDB cacha dati e indici delle proprie " "tabelle." -#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:112 +#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:108 msgid "Buffer Pool" msgstr "Buffer Pool" -#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:426 +#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:422 #: server_status.php:306 msgid "InnoDB Status" msgstr "Stato InnoDB" -#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:113 +#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:109 msgid "Buffer Pool Usage" msgstr "Utilizzo del Buffer Pool" -#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1114 +#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1110 #: server_databases.php:137 server_databases.php:305 server_status.php:414 #: server_status.php:475 server_status.php:496 tbl_printview.php:351 #: tbl_structure.php:697 msgid "Total" msgstr "Totale" -#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:425 +#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:421 msgid "pages" msgstr "pagine" -#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:343 +#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:339 msgid "Free pages" msgstr "Pagine libere" -#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:259 +#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:255 msgid "Dirty pages" msgstr "Pagine sporche" -#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:230 +#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:226 msgid "Pages containing data" msgstr "Pagine contenenti dati" -#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:598 +#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:594 msgid "Pages to be flushed" msgstr "Pagine che devono essere flushate" -#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:119 +#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:115 msgid "Busy pages" msgstr "Pagine occupate" -#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:467 +#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:463 msgid "Latched pages" msgstr "Latched pages" -#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:111 +#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:107 msgid "Buffer Pool Activity" msgstr "Attività del Buffer Pool" -#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:731 +#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:727 msgid "Read requests" msgstr "Richieste di lettura" -#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1244 +#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1240 msgid "Write requests" msgstr "Richieste di scrittura" -#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:115 +#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:111 msgid "Read misses" msgstr "Non letto" -#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:117 +#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:113 msgid "Write waits" msgstr "In attesa di scrittura" -#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:114 +#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:110 msgid "Read misses in %" msgstr "Non letto in %" -#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:116 +#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:112 msgid "Write waits in %" msgstr "In attesa di scrittura in %" -#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:522 +#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:518 msgid "Data pointer size" msgstr "Domensione del puntatore dati" -#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:523 +#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:519 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." @@ -2596,11 +2606,11 @@ msgstr "" "CREATE TABLE per le tabelle MyISAM quando non è stata specificata l'opzione " "MAX_ROWS." -#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:528 +#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:524 msgid "Automatic recovery mode" msgstr "Modalità di ripristino automatico" -#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:529 +#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:525 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." @@ -2608,11 +2618,11 @@ msgstr "" "La modalità di irppristino automatico di tabelle MyISAM corrotte, come " "impostato tramite l'opzione di lan cio del server --myisam-recover." -#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:527 +#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:523 msgid "Maximum size for temporary sort files" msgstr "Dimensione massima dei file temporanei di ordinamento" -#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:526 +#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:522 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " @@ -2622,11 +2632,11 @@ msgstr "" "rigenerazione di un indice MyISAM (durante un REPAIR TABLE, ALTER TABLE, o " "LOAD DATA INFILE)." -#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:525 +#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:521 msgid "Maximum size for temporary files on index creation" msgstr "Dimensione massima per i file temporanei nella creazione di un indice" -#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:524 +#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:520 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " @@ -2636,11 +2646,11 @@ msgstr "" "occuperebbe più spazio dell'utilizzo del metodo key cache con la quantità " "ivi specificata: perciò si deve prediligere il metodo key cache." -#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:531 +#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:527 msgid "Repair threads" msgstr "Thread di riparazione" -#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:530 +#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:526 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." @@ -2649,11 +2659,11 @@ msgstr "" "creati in parallelo (ogni indice nel suo thread) durante il processo di " "ordinamento Repair by." -#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:533 +#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:529 msgid "Sort buffer size" msgstr "Ordina la dimensione del buffer" -#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:532 +#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:528 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." @@ -2661,11 +2671,11 @@ msgstr "" "Il buffer che viene allocato nell'ordinamento degli indici MyISAM durante un " "REPAIR TABLE o nella creazione degli indici con CREATE INDEX o ALTER TABLE." -#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:620 +#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:616 msgid "Index cache size" msgstr "Dimensione cache degli indici" -#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:619 +#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:615 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." @@ -2674,11 +2684,11 @@ msgstr "" "default è 32MB. La memoria allocata qui è usata solo per la cache delle " "pagine di indice." -#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:630 +#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:626 msgid "Record cache size" msgstr "Dimensione cache dei record" -#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:629 +#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:625 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " @@ -2688,11 +2698,11 @@ msgstr "" "cache dei dati della tabella. The default value is 32MB. This memory is used " "to cache changes to the handle data (.xtd) and row pointer (.xtr) files." -#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:624 +#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:620 msgid "Log cache size" msgstr "Dimensione cache dei log" -#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:623 +#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:619 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." @@ -2700,11 +2710,11 @@ msgstr "" "L'ammontare di memoria allocata per la cache del log delle trasazioni. Il " "valore di default è 16MB." -#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:628 +#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:624 msgid "Log file threshold" msgstr "Soglia dei file di log" -#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:627 +#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:623 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." @@ -2712,11 +2722,11 @@ msgstr "" "La dimensione del log delle trasazioni prima di un rollover, quando viene " "creato un nuovo file. Il valore di default è 16MB." -#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:634 +#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:630 msgid "Transaction buffer size" msgstr "Dimensione buffer delle transazioni" -#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:633 +#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:629 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." @@ -2724,11 +2734,11 @@ msgstr "" "La dimensione del buffer globale dei log di trasazione (il motore alloca 2 " "buffer di questa dimensione). Il valore di default è 1MB." -#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:611 +#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:607 msgid "Checkpoint frequency" msgstr "Frequheckpoint" -#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:612 +#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:608 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." @@ -2736,11 +2746,11 @@ msgstr "" "L'ammontare dei dati scritti sul log delle trasazioni, prima che sia " "eseguito un checkpoint. Il valore di default è 24MB." -#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:615 +#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:611 msgid "Data log threshold" msgstr "Dimensione del log dei dati" -#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:616 +#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:612 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -2753,11 +2763,11 @@ msgstr "" "massima dei dati che possono essere memorizzati complessivamente nel " "database." -#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:618 +#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:614 msgid "Garbage threshold" msgstr "Dimensione del cestino" -#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:617 +#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:613 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." @@ -2766,11 +2776,11 @@ msgstr "" "debba essere compattato. Il valore deve essere compreso tra 1 e 99. Il " "valore di default è 50." -#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:622 +#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:618 msgid "Log buffer size" msgstr "Dimensione del buffer dei log" -#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:621 +#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:617 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " @@ -2780,28 +2790,28 @@ msgstr "" "di default è 256MB. Il motore allora un buffer per ciascun thread, ma solo " "se è necessario scrivere un log dei dati." -#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:613 +#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:609 msgid "Data file grow size" msgstr "Dimensione incremento del file dei dati" -#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:614 +#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:610 msgid "The grow size of the handle data (.xtd) files." msgstr "Dimensione dell'incremento del file (.xtd) con gli \"handle data\"." -#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:632 +#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:628 msgid "Row file grow size" msgstr "Dimensione incremento del file delle righe" -#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:631 +#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:627 msgid "The grow size of the row pointer (.xtr) files." msgstr "" "Dimensione dell'incremento del file (.xtr) con i puntatori delle righe." -#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:626 +#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:622 msgid "Log file count" msgstr "Numero dei file di log" -#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:625 +#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:621 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -2815,19 +2825,19 @@ msgstr "" #: libraries/export/htmlword.php:132 libraries/export/odt.php:168 #: libraries/export/sql.php:881 libraries/export/texytext.php:130 -#: libraries/messages.inc.php:275 +#: libraries/messages.inc.php:271 msgid "Dumping data for table" msgstr "Dump dei dati per la tabella" #: libraries/export/htmlword.php:185 libraries/export/odt.php:238 #: libraries/export/sql.php:785 libraries/export/texytext.php:177 -#: libraries/messages.inc.php:1086 +#: libraries/messages.inc.php:1082 msgid "Table structure for table" msgstr "Struttura della tabella" #: libraries/export/latex.php:125 libraries/export/sql.php:232 #: libraries/export/xml.php:102 libraries/header_printview.inc.php:57 -#: libraries/messages.inc.php:381 libraries/replication_gui.lib.php:63 +#: libraries/messages.inc.php:377 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:170 libraries/replication_gui.lib.php:265 #: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325 #: server_privileges.php:692 server_privileges.php:695 @@ -2839,185 +2849,185 @@ msgstr "Host" #: libraries/export/latex.php:130 libraries/export/sql.php:233 #: libraries/export/xml.php:107 libraries/header_printview.inc.php:59 -#: libraries/messages.inc.php:354 +#: libraries/messages.inc.php:350 msgid "Generation Time" msgstr "Generato il" #: libraries/export/latex.php:131 libraries/export/sql.php:235 -#: libraries/export/xml.php:108 libraries/messages.inc.php:864 main.php:186 +#: libraries/export/xml.php:108 libraries/messages.inc.php:860 main.php:186 msgid "Server version" msgstr "Versione MySQL" #: libraries/export/latex.php:132 libraries/export/sql.php:236 -#: libraries/export/xml.php:109 libraries/messages.inc.php:651 +#: libraries/export/xml.php:109 libraries/messages.inc.php:647 msgid "PHP Version" msgstr "Versione PHP" #: libraries/export/latex.php:201 libraries/export/sql.php:868 -#: libraries/messages.inc.php:226 server_databases.php:127 +#: libraries/messages.inc.php:222 server_databases.php:127 #: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317 #: tbl_structure.php:666 msgid "Data" msgstr "Dati" -#: libraries/export/odt.php:318 libraries/messages.inc.php:506 +#: libraries/export/odt.php:318 libraries/messages.inc.php:502 #: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "tipo MIME" -#: libraries/export/sql.php:387 libraries/messages.inc.php:711 +#: libraries/export/sql.php:387 libraries/messages.inc.php:707 msgid "Procedures" msgstr "Procedure" -#: libraries/export/sql.php:401 libraries/messages.inc.php:348 +#: libraries/export/sql.php:401 libraries/messages.inc.php:344 msgid "Functions" msgstr "Funzioni" -#: libraries/export/sql.php:618 libraries/messages.inc.php:174 +#: libraries/export/sql.php:618 libraries/messages.inc.php:170 msgid "Constraints for dumped tables" msgstr "Limiti per le tabelle scaricate" -#: libraries/export/sql.php:627 libraries/messages.inc.php:175 +#: libraries/export/sql.php:627 libraries/messages.inc.php:171 msgid "Constraints for table" msgstr "Limiti per la tabella" -#: libraries/export/sql.php:727 libraries/messages.inc.php:512 +#: libraries/export/sql.php:727 libraries/messages.inc.php:508 msgid "MIME TYPES FOR TABLE" msgstr "MIME TYPES FOR TABLE" -#: libraries/export/sql.php:739 libraries/messages.inc.php:743 +#: libraries/export/sql.php:739 libraries/messages.inc.php:739 msgid "RELATIONS FOR TABLE" msgstr "RELATIONS FOR TABLE" -#: libraries/export/sql.php:796 libraries/messages.inc.php:1178 +#: libraries/export/sql.php:796 libraries/messages.inc.php:1174 #: libraries/tbl_triggers.lib.php:19 msgid "Triggers" msgstr "Triggers" -#: libraries/export/sql.php:808 libraries/messages.inc.php:1046 +#: libraries/export/sql.php:808 libraries/messages.inc.php:1042 msgid "Structure for view" msgstr "Struttura per la vista" -#: libraries/export/sql.php:817 libraries/messages.inc.php:1029 +#: libraries/export/sql.php:817 libraries/messages.inc.php:1025 msgid "Stand-in structure for view" msgstr "Struttura Stand-in per le viste" #: libraries/footer.inc.php:184 libraries/footer.inc.php:195 -#: libraries/footer.inc.php:198 libraries/messages.inc.php:586 +#: libraries/footer.inc.php:198 libraries/messages.inc.php:582 msgid "Open new phpMyAdmin window" msgstr "Apri una nuova finestra di PhpMyAdmin" -#: libraries/header.inc.php:115 libraries/messages.inc.php:542 +#: libraries/header.inc.php:115 libraries/messages.inc.php:538 msgid "New table" msgstr "Nuova tabella" #: libraries/header_printview.inc.php:50 libraries/header_printview.inc.php:55 -#: libraries/messages.inc.php:1024 +#: libraries/messages.inc.php:1020 msgid "SQL result" msgstr "Risultato SQL" -#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:350 +#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:346 msgid "Generated by" msgstr "Generato da" #: libraries/header_printview.inc.php:63 libraries/import.lib.php:145 -#: libraries/messages.inc.php:820 navigation.php:652 navigation.php:674 +#: libraries/messages.inc.php:816 navigation.php:652 navigation.php:674 #: server_databases.php:122 tbl_printview.php:394 tbl_structure.php:366 #: tbl_structure.php:778 msgid "Rows" msgstr "Righe" -#: libraries/import.lib.php:150 libraries/messages.inc.php:285 sql.php:520 +#: libraries/import.lib.php:150 libraries/messages.inc.php:281 sql.php:520 #: tbl_change.php:181 tbl_get_field.php:35 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL ha restituito un insieme vuoto (i.e. zero righe)." -#: libraries/import.lib.php:1078 libraries/messages.inc.php:399 +#: libraries/import.lib.php:1078 libraries/messages.inc.php:395 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "Le seguenti strutture sono state create o modificate. Qui tu puoi:" -#: libraries/import.lib.php:1079 libraries/messages.inc.php:400 +#: libraries/import.lib.php:1079 libraries/messages.inc.php:396 msgid "View a structure`s contents by clicking on its name" msgstr "Visualizza i contenuti delle strutture facendo click sul loro nome" -#: libraries/import.lib.php:1080 libraries/messages.inc.php:401 +#: libraries/import.lib.php:1080 libraries/messages.inc.php:397 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" "Modificare ogni impostazione cliccando sul corrispondente link \"Opzioni\"" -#: libraries/import.lib.php:1081 libraries/messages.inc.php:402 +#: libraries/import.lib.php:1081 libraries/messages.inc.php:398 msgid "Edit its structure by following the \"Structure\" link" msgstr "Modifica la sua struttura seguendo il link \"Struttura\"" -#: libraries/import.lib.php:1084 libraries/messages.inc.php:362 +#: libraries/import.lib.php:1084 libraries/messages.inc.php:358 msgid "Go to database" msgstr "Vai al database" #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:869 +#: libraries/messages.inc.php:865 msgid "settings" msgstr "" -#: libraries/import.lib.php:1106 libraries/messages.inc.php:363 +#: libraries/import.lib.php:1106 libraries/messages.inc.php:359 msgid "Go to table" msgstr "Vai alla tabella" -#: libraries/import.lib.php:1109 libraries/messages.inc.php:1047 +#: libraries/import.lib.php:1109 libraries/messages.inc.php:1043 #, fuzzy msgid "structure" msgstr "Struttura" -#: libraries/import.lib.php:1115 libraries/messages.inc.php:364 +#: libraries/import.lib.php:1115 libraries/messages.inc.php:360 msgid "Go to view" msgstr "Vai alla visualizzazione" #: libraries/import/csv.php:58 libraries/import/csv.php:70 #: libraries/import/csv.php:74 libraries/import/csv.php:78 -#: libraries/messages.inc.php:442 +#: libraries/messages.inc.php:438 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "Parametro non valido per importazione CSV: %s" -#: libraries/import/csv.php:59 libraries/messages.inc.php:323 +#: libraries/import/csv.php:59 libraries/messages.inc.php:319 msgid "Fields terminated by" msgstr "Campo terminato da" -#: libraries/import/csv.php:71 libraries/messages.inc.php:320 +#: libraries/import/csv.php:71 libraries/messages.inc.php:316 msgid "Fields enclosed by" msgstr "Campo composto da" -#: libraries/import/csv.php:75 libraries/messages.inc.php:321 +#: libraries/import/csv.php:75 libraries/messages.inc.php:317 msgid "Fields escaped by" msgstr "Campo impedito da" -#: libraries/import/csv.php:79 libraries/messages.inc.php:481 +#: libraries/import/csv.php:79 libraries/messages.inc.php:477 msgid "Lines terminated by" msgstr "Linee terminate da" -#: libraries/import/csv.php:119 libraries/messages.inc.php:439 +#: libraries/import/csv.php:119 libraries/messages.inc.php:435 #, php-format msgid "Invalid column (%s) specified!" msgstr "Colonna specificata (%s) invalida!" #: libraries/import/csv.php:177 libraries/import/csv.php:424 -#: libraries/messages.inc.php:441 +#: libraries/messages.inc.php:437 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "Formato non valido per l'input CSV alla linea %d." -#: libraries/import/csv.php:312 libraries/messages.inc.php:440 +#: libraries/import/csv.php:312 libraries/messages.inc.php:436 #, php-format msgid "Invalid field count in CSV input on line %d." msgstr "Contatore di campo non valido nell'input CSV alla linea %d." -#: libraries/import/ldi.php:55 libraries/messages.inc.php:446 +#: libraries/import/ldi.php:55 libraries/messages.inc.php:442 msgid "This plugin does not support compressed imports!" msgstr "Questo plugin non supporta importazioni di dati compressi!" #: libraries/import/xml.php:74 libraries/import/xml.php:130 -#: libraries/messages.inc.php:1247 +#: libraries/messages.inc.php:1243 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -3048,324 +3058,314 @@ msgstr "" msgid "ltr" msgstr "ltr" -#. l10n: Thousands separator -#: libraries/messages.inc.php:21 -msgid "," -msgstr "." - -#. l10n: Decimal separator -#: libraries/messages.inc.php:23 -msgid "." -msgstr "," - -#: libraries/messages.inc.php:25 server_status.php:461 +#: libraries/messages.inc.php:21 server_status.php:461 msgid "Aborted" msgstr "Fallito" -#: libraries/messages.inc.php:28 main.php:68 +#: libraries/messages.inc.php:24 main.php:68 msgid "Actions" msgstr "Azioni" -#: libraries/messages.inc.php:34 libraries/tbl_properties.inc.php:780 +#: libraries/messages.inc.php:30 libraries/tbl_properties.inc.php:780 #: tbl_structure.php:543 #, php-format msgid "Add %s field(s)" msgstr "Aggiungi %s campo(i)" -#: libraries/messages.inc.php:35 +#: libraries/messages.inc.php:31 msgid "Add custom comment into header (\\n splits lines)" msgstr "" "Aggiunge un commento personalizzato all'header (\\n per tornare a capo)" -#: libraries/messages.inc.php:36 +#: libraries/messages.inc.php:32 msgid "Add into comments" msgstr "Aggiungi nei commenti" -#: libraries/messages.inc.php:37 tbl_structure.php:541 +#: libraries/messages.inc.php:33 tbl_structure.php:541 msgid "Add new field" msgstr "Aggiungi un nuovo campo" -#: libraries/messages.inc.php:38 server_privileges.php:1886 +#: libraries/messages.inc.php:34 server_privileges.php:1886 msgid "Add privileges on the following database" msgstr "Aggiungi privilegi sul seguente database" -#: libraries/messages.inc.php:39 server_privileges.php:1907 +#: libraries/messages.inc.php:35 server_privileges.php:1907 msgid "Add privileges on the following table" msgstr "Aggiungi privilegi sulla seguente tabella" -#: libraries/messages.inc.php:40 tbl_select.php:288 +#: libraries/messages.inc.php:36 tbl_select.php:288 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Aggiungi condizioni di ricerca (corpo della clausola \"where\"):" -#: libraries/messages.inc.php:41 tbl_indexes.php:251 +#: libraries/messages.inc.php:37 tbl_indexes.php:251 #, php-format msgid "Add to index  %s column(s)" msgstr "Aggiungi all'indice %s colonna/e" -#: libraries/messages.inc.php:42 server_privileges.php:1570 +#: libraries/messages.inc.php:38 server_privileges.php:1570 #: server_privileges.php:1594 server_privileges.php:1988 #: server_privileges.php:2177 msgid "Add a new User" msgstr "Aggiungi un nuovo utente" -#: libraries/messages.inc.php:43 server_privileges.php:931 +#: libraries/messages.inc.php:39 server_privileges.php:931 msgid "You have added a new user." msgstr "Hai aggiunto un nuovo utente." -#: libraries/messages.inc.php:44 server_privileges.php:571 +#: libraries/messages.inc.php:40 server_privileges.php:571 msgid "Administration" msgstr "Amministrazione" -#: libraries/messages.inc.php:45 tbl_structure.php:557 +#: libraries/messages.inc.php:41 tbl_structure.php:557 #, php-format msgid "After %s" msgstr "Dopo %s" -#: libraries/messages.inc.php:46 tbl_change.php:1147 +#: libraries/messages.inc.php:42 tbl_change.php:1147 msgid "Go back to previous page" msgstr "Indietro" -#: libraries/messages.inc.php:47 tbl_change.php:1148 +#: libraries/messages.inc.php:43 tbl_change.php:1148 msgid "Insert another new row" msgstr "Inserisci un nuovo record" -#: libraries/messages.inc.php:48 tbl_change.php:1160 +#: libraries/messages.inc.php:44 tbl_change.php:1160 msgid "Edit next row" msgstr "Modifica il record successivo" -#: libraries/messages.inc.php:49 tbl_change.php:1152 +#: libraries/messages.inc.php:45 tbl_change.php:1152 msgid "Go back to this page" msgstr "Torna a questa pagina" -#: libraries/messages.inc.php:50 querywindow.php:115 +#: libraries/messages.inc.php:46 querywindow.php:115 msgid "All" msgstr "Tutti" -#: libraries/messages.inc.php:53 tbl_operations.php:249 +#: libraries/messages.inc.php:49 tbl_operations.php:249 msgid "Alter table order by" msgstr "Altera tabella ordinata per" -#: libraries/messages.inc.php:54 tbl_operations.php:660 +#: libraries/messages.inc.php:50 tbl_operations.php:660 msgid "Analyze" msgstr "Analizza" -#: libraries/messages.inc.php:57 +#: libraries/messages.inc.php:53 msgid "and" msgstr "e" -#: libraries/messages.inc.php:59 pmd_general.php:87 +#: libraries/messages.inc.php:55 pmd_general.php:87 msgid "Angular links" msgstr "Link angolari" -#: libraries/messages.inc.php:60 tbl_structure.php:401 tbl_structure.php:415 +#: libraries/messages.inc.php:56 tbl_structure.php:401 tbl_structure.php:415 #: tbl_structure.php:429 #, php-format msgid "An index has been added on %s" msgstr "Un indice è stato aggiunto in %s" -#: libraries/messages.inc.php:61 server_privileges.php:1521 +#: libraries/messages.inc.php:57 server_privileges.php:1521 #: server_privileges.php:2123 msgid "Any" msgstr "Qualsiasi" -#: libraries/messages.inc.php:62 libraries/replication_gui.lib.php:298 +#: libraries/messages.inc.php:58 libraries/replication_gui.lib.php:298 #: server_privileges.php:725 msgid "Any host" msgstr "Qualsiasi host" -#: libraries/messages.inc.php:63 libraries/replication_gui.lib.php:250 +#: libraries/messages.inc.php:59 libraries/replication_gui.lib.php:250 #: server_privileges.php:677 msgid "Any user" msgstr "Qualsiasi utente" -#: libraries/messages.inc.php:64 server_synchronize.php:449 +#: libraries/messages.inc.php:60 server_synchronize.php:449 #: server_synchronize.php:894 msgid "Apply Selected Changes" msgstr "Applica i cambiamenti selezionati" -#: libraries/messages.inc.php:66 tbl_structure.php:386 +#: libraries/messages.inc.php:62 tbl_structure.php:386 #, php-format msgid "A primary key has been added on %s" msgstr "Una chiave primaria è stata aggiunta in %s" -#: libraries/messages.inc.php:67 libraries/mysql_charsets.lib.php:368 +#: libraries/messages.inc.php:63 libraries/mysql_charsets.lib.php:368 msgid "Arabic" msgstr "Arabo" -#: libraries/messages.inc.php:68 libraries/mysql_charsets.lib.php:359 +#: libraries/messages.inc.php:64 libraries/mysql_charsets.lib.php:359 msgid "Armenian" msgstr "Armeno" -#: libraries/messages.inc.php:70 libraries/tbl_properties.inc.php:394 +#: libraries/messages.inc.php:66 libraries/tbl_properties.inc.php:394 msgid "As defined:" msgstr "Come definito:" -#: libraries/messages.inc.php:71 tbl_structure.php:556 +#: libraries/messages.inc.php:67 tbl_structure.php:556 msgid "At Beginning of Table" msgstr "All'inizio della tabella" -#: libraries/messages.inc.php:72 tbl_structure.php:555 +#: libraries/messages.inc.php:68 tbl_structure.php:555 msgid "At End of Table" msgstr "Alla fine della tabella" -#: libraries/messages.inc.php:73 libraries/tbl_properties.inc.php:108 +#: libraries/messages.inc.php:69 libraries/tbl_properties.inc.php:108 #: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:144 #: tbl_structure.php:180 msgid "Attributes" msgstr "Attributi" -#: libraries/messages.inc.php:74 pdf_pages.php:303 pdf_pages.php:306 +#: libraries/messages.inc.php:70 pdf_pages.php:303 pdf_pages.php:306 msgid "Automatic layout" msgstr "Impaginazione automatica" -#: libraries/messages.inc.php:77 libraries/mysql_charsets.lib.php:354 +#: libraries/messages.inc.php:73 libraries/mysql_charsets.lib.php:354 msgid "Baltic" msgstr "Baltico" -#: libraries/messages.inc.php:78 libraries/sqlparser.lib.php:175 +#: libraries/messages.inc.php:74 libraries/sqlparser.lib.php:175 msgid "BEGIN CUT" msgstr "INIZIO CUT" -#: libraries/messages.inc.php:79 libraries/sqlparser.lib.php:179 +#: libraries/messages.inc.php:75 libraries/sqlparser.lib.php:179 msgid "BEGIN RAW" msgstr "INIZIO RAW" -#: libraries/messages.inc.php:80 libraries/mysql_charsets.lib.php:201 +#: libraries/messages.inc.php:76 libraries/mysql_charsets.lib.php:201 #: libraries/mysql_charsets.lib.php:402 tbl_change.php:518 msgid "Binary" msgstr "Binario" -#: libraries/messages.inc.php:81 tbl_change.php:894 +#: libraries/messages.inc.php:77 tbl_change.php:894 msgid "Binary - do not edit" msgstr "Tipo di dato Binario - non modificare" -#: libraries/messages.inc.php:82 libraries/server_links.inc.php:76 +#: libraries/messages.inc.php:78 libraries/server_links.inc.php:76 #: server_binlog.php:110 server_status.php:253 test/theme.php:121 msgid "Binary log" msgstr "Log binario" -#: libraries/messages.inc.php:83 server_binlog.php:217 +#: libraries/messages.inc.php:79 server_binlog.php:217 msgid "Event type" msgstr "Tipo di evento" -#: libraries/messages.inc.php:84 server_binlog.php:220 +#: libraries/messages.inc.php:80 server_binlog.php:220 msgid "Information" msgstr "Informazioni" -#: libraries/messages.inc.php:85 server_binlog.php:215 +#: libraries/messages.inc.php:81 server_binlog.php:215 msgid "Log name" msgstr "Nome del Log" -#: libraries/messages.inc.php:86 server_binlog.php:219 +#: libraries/messages.inc.php:82 server_binlog.php:219 msgid "Original position" msgstr "Posizione originale" -#: libraries/messages.inc.php:87 server_binlog.php:216 +#: libraries/messages.inc.php:83 server_binlog.php:216 msgid "Position" msgstr "Posizione" -#: libraries/messages.inc.php:88 libraries/replication_gui.lib.php:169 +#: libraries/messages.inc.php:84 libraries/replication_gui.lib.php:169 #: server_binlog.php:218 msgid "Server ID" msgstr "ID del server" -#: libraries/messages.inc.php:92 +#: libraries/messages.inc.php:88 msgctxt "$strBLOBRepositoryDisabled" msgid "Disabled" msgstr "Disabilitato" -#: libraries/messages.inc.php:95 +#: libraries/messages.inc.php:91 msgctxt "$strBLOBRepositoryEnabled" msgid "Enabled" msgstr "Abilitato" -#: libraries/messages.inc.php:97 tbl_change.php:888 +#: libraries/messages.inc.php:93 tbl_change.php:888 msgid "Remove BLOB Repository Reference" msgstr "Rimuovi le referenze al REPOSITORY BLOB" -#: libraries/messages.inc.php:98 +#: libraries/messages.inc.php:94 msgctxt "$strBLOBRepositoryRepair" msgid "Repair" msgstr "Ripara" -#: libraries/messages.inc.php:99 tbl_change.php:987 +#: libraries/messages.inc.php:95 tbl_change.php:987 msgid "Upload to BLOB repository" msgstr "Carica nella repository BLOB" -#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:359 +#: libraries/messages.inc.php:96 libraries/sql_query_form.lib.php:359 #: sql.php:677 msgid "Let every user access this bookmark" msgstr "Permetti ad ogni utente di accedere a questo bookmark" -#: libraries/messages.inc.php:103 sql.php:671 +#: libraries/messages.inc.php:99 sql.php:671 msgid "Label" msgstr "Etichetta" -#: libraries/messages.inc.php:104 libraries/sql_query_form.lib.php:433 +#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:433 msgid "Bookmarked SQL query" msgstr "Query SQL aggiunte ai preferiti" -#: libraries/messages.inc.php:105 libraries/sql_query_form.lib.php:365 +#: libraries/messages.inc.php:101 libraries/sql_query_form.lib.php:365 msgid "Replace existing bookmark of same name" msgstr "Sostituisci segnalibro esistente se con lo stesso nome" -#: libraries/messages.inc.php:106 libraries/sql_query_form.lib.php:352 +#: libraries/messages.inc.php:102 libraries/sql_query_form.lib.php:352 #: sql.php:665 sql.php:666 sql.php:683 msgid "Bookmark this SQL query" msgstr "Aggiungi ai preferiti questa query SQL" -#: libraries/messages.inc.php:107 libraries/sql_query_form.lib.php:466 +#: libraries/messages.inc.php:103 libraries/sql_query_form.lib.php:466 msgid "View only" msgstr "Visualizza solo" -#: libraries/messages.inc.php:109 tbl_structure.php:161 +#: libraries/messages.inc.php:105 tbl_structure.php:161 msgid "Browse distinct values" msgstr "Naviga tra i valori DISTINCT" -#: libraries/messages.inc.php:110 tbl_change.php:252 tbl_select.php:27 +#: libraries/messages.inc.php:106 tbl_change.php:252 tbl_select.php:27 #: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34 msgid "Browse foreign values" msgstr "Naviga tra i valori esterni" -#: libraries/messages.inc.php:118 libraries/mysql_charsets.lib.php:213 +#: libraries/messages.inc.php:114 libraries/mysql_charsets.lib.php:213 msgid "Bulgarian" msgstr "Bulgaro" -#: libraries/messages.inc.php:120 +#: libraries/messages.inc.php:116 msgid "\"bzipped\"" msgstr "\"compresso con bzip\"" -#: libraries/messages.inc.php:122 +#: libraries/messages.inc.php:118 msgid "Calendar" msgstr "Calendario" -#: libraries/messages.inc.php:129 tbl_indexes.php:75 +#: libraries/messages.inc.php:125 tbl_indexes.php:75 msgid "Can't rename index to PRIMARY!" msgstr "Impossibile rinominare l'indice a PRIMARIO!" -#: libraries/messages.inc.php:132 libraries/mysql_charsets.lib.php:223 +#: libraries/messages.inc.php:128 libraries/mysql_charsets.lib.php:223 #: libraries/mysql_charsets.lib.php:409 msgid "case-insensitive" msgstr "case-insensitive" -#: libraries/messages.inc.php:133 libraries/mysql_charsets.lib.php:226 +#: libraries/messages.inc.php:129 libraries/mysql_charsets.lib.php:226 #: libraries/mysql_charsets.lib.php:411 msgid "case-sensitive" msgstr "case-sensitive" -#: libraries/messages.inc.php:134 libraries/mysql_charsets.lib.php:332 +#: libraries/messages.inc.php:130 libraries/mysql_charsets.lib.php:332 msgid "Central European" msgstr "Europeo Centrale" -#: libraries/messages.inc.php:136 server_privileges.php:1969 +#: libraries/messages.inc.php:132 server_privileges.php:1969 msgid "... keep the old one." msgstr "... mantieni quello vecchio." -#: libraries/messages.inc.php:137 server_privileges.php:1967 +#: libraries/messages.inc.php:133 server_privileges.php:1967 msgid "Create a new user with the same privileges and ..." msgstr "Crea un nuovo utente con gli stessi privilegi e ..." -#: libraries/messages.inc.php:138 server_privileges.php:1972 +#: libraries/messages.inc.php:134 server_privileges.php:1972 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -3373,78 +3373,78 @@ msgstr "" " ... cancella quello vecchio dalla tabella degli utenti e in seguito " "ricarica i privilegi." -#: libraries/messages.inc.php:139 server_privileges.php:1970 +#: libraries/messages.inc.php:135 server_privileges.php:1970 msgid " ... delete the old one from the user tables." msgstr " ... cancella quello vecchio dalla tabella degli utenti." -#: libraries/messages.inc.php:140 server_privileges.php:1971 +#: libraries/messages.inc.php:136 server_privileges.php:1971 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "" " ... revoca tutti i privilegi attivi da quello vecchio e in seguito " "cancellalo." -#: libraries/messages.inc.php:141 server_privileges.php:1964 +#: libraries/messages.inc.php:137 server_privileges.php:1964 msgid "Change Login Information / Copy User" msgstr "Cambia le Informazioni di Login / Copia Utente" -#: libraries/messages.inc.php:144 libraries/mysql_charsets.lib.php:107 +#: libraries/messages.inc.php:140 libraries/mysql_charsets.lib.php:107 msgid "Charset" msgstr "Set di caratteri" -#: libraries/messages.inc.php:146 server_collations.php:40 +#: libraries/messages.inc.php:142 server_collations.php:40 msgid "Character Sets and Collations" msgstr "Set di Caratteri e Collation" -#: libraries/messages.inc.php:147 libraries/server_links.inc.php:57 +#: libraries/messages.inc.php:143 libraries/server_links.inc.php:57 #: test/theme.php:109 msgid "Charsets" msgstr "Set di caratteri" -#: libraries/messages.inc.php:149 tbl_operations.php:661 +#: libraries/messages.inc.php:145 tbl_operations.php:661 msgid "Check" msgstr "Controlla" -#: libraries/messages.inc.php:151 server_databases.php:293 +#: libraries/messages.inc.php:147 server_databases.php:293 #: server_databases.php:294 msgid "Check Privileges" msgstr "Controlla i privilegi" -#: libraries/messages.inc.php:152 server_databases.php:289 +#: libraries/messages.inc.php:148 server_databases.php:289 #, php-format msgid "Check privileges for database "%s"." msgstr "Controlla i privilegi per il database \"%s\"." -#: libraries/messages.inc.php:154 pdf_pages.php:261 +#: libraries/messages.inc.php:150 pdf_pages.php:261 msgid "Please choose a page to edit" msgstr "Prego scegliere una Page da modificare" -#: libraries/messages.inc.php:157 +#: libraries/messages.inc.php:153 msgid "Displaying Column Comments" msgstr "Visualizzazione commenti delle colonne" -#: libraries/messages.inc.php:159 pdf_pages.php:483 view_create.php:148 +#: libraries/messages.inc.php:155 pdf_pages.php:483 view_create.php:148 msgid "Column names" msgstr "Nomi delle colonne" -#: libraries/messages.inc.php:160 server_privileges.php:1685 +#: libraries/messages.inc.php:156 server_privileges.php:1685 msgid "Column-specific privileges" msgstr "Privilegi relativi alle colonne" -#: libraries/messages.inc.php:164 +#: libraries/messages.inc.php:160 msgid "MySQL 4.0 compatible" msgstr "Compatibile con MySQL 4.0" -#: libraries/messages.inc.php:165 +#: libraries/messages.inc.php:161 msgid "Complete inserts" msgstr "Inserimenti completi" -#: libraries/messages.inc.php:168 +#: libraries/messages.inc.php:164 #, php-format msgid "Could not load default configuration from: \"%1$s\"" msgstr "Non posso leggere la configurazione da: \"%1$s\"" -#: libraries/messages.inc.php:169 main.php:306 +#: libraries/messages.inc.php:165 main.php:306 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " @@ -3454,37 +3454,37 @@ msgstr "" "installazione, esiste ancora nella cartella del tuo phpMyAdmin. Si consiglia " "di rimuoverla una volta configurato phpMyAdmin." -#: libraries/messages.inc.php:171 pdf_schema.php:672 +#: libraries/messages.inc.php:167 pdf_schema.php:672 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Prego, configurare le coordinate per la tabella %s" -#: libraries/messages.inc.php:173 server_status.php:433 +#: libraries/messages.inc.php:169 server_status.php:433 msgid "Connections" msgstr "Connessioni" -#: libraries/messages.inc.php:179 tbl_operations.php:509 +#: libraries/messages.inc.php:175 tbl_operations.php:509 msgid "Copy table to (database.table):" msgstr "Copia la tabella nel (database.tabella):" -#: libraries/messages.inc.php:180 tbl_move_copy.php:58 +#: libraries/messages.inc.php:176 tbl_move_copy.php:58 #, php-format msgid "Table %s has been copied to %s." msgstr "La tabella %s è stata copiata su %s." -#: libraries/messages.inc.php:181 tbl_move_copy.php:48 +#: libraries/messages.inc.php:177 tbl_move_copy.php:48 msgid "Can't copy table to same one!" msgstr "Impossibile copiare la tabella su se stessa!" -#: libraries/messages.inc.php:182 server_synchronize.php:94 +#: libraries/messages.inc.php:178 server_synchronize.php:94 msgid "Could not connect to the source" msgstr "Impossibile connettersi all'origine" -#: libraries/messages.inc.php:183 server_synchronize.php:97 +#: libraries/messages.inc.php:179 server_synchronize.php:97 msgid "Could not connect to the target" msgstr "Impossibile connettersi alla destinazione" -#: libraries/messages.inc.php:184 server_processlist.php:24 +#: libraries/messages.inc.php:180 server_processlist.php:24 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -3492,131 +3492,131 @@ msgstr "" "phpMyAdmin non è in grado di terminare il thread %s. Probabilmente è già " "stato terminato." -#: libraries/messages.inc.php:187 +#: libraries/messages.inc.php:183 #, php-format msgid "Create an index on %s columns" msgstr "Crea un indice su %s columns" -#: libraries/messages.inc.php:188 tbl_indexes.php:160 +#: libraries/messages.inc.php:184 tbl_indexes.php:160 msgid "Create a new index" msgstr "Crea un nuovo indice" -#: libraries/messages.inc.php:191 pdf_pages.php:297 pmd_pdf.php:114 +#: libraries/messages.inc.php:187 pdf_pages.php:297 pmd_pdf.php:114 msgid "Create a page" msgstr "Crea una nuova pagina" -#: libraries/messages.inc.php:192 +#: libraries/messages.inc.php:188 msgid "Creation of PDFs" msgstr "Creazione di PDF" -#: libraries/messages.inc.php:193 pmd_general.php:74 pmd_general.php:306 +#: libraries/messages.inc.php:189 pmd_general.php:74 pmd_general.php:306 msgid "Create relation" msgstr "Crea relazioni" -#: libraries/messages.inc.php:194 pmd_general.php:71 +#: libraries/messages.inc.php:190 pmd_general.php:71 #: server_synchronize.php:429 server_synchronize.php:872 msgid "Create table" msgstr "Crea tabelle" -#: libraries/messages.inc.php:195 +#: libraries/messages.inc.php:191 msgctxt "$strCreateTableShort" msgid "Create table" msgstr "Crea tabelle" -#: libraries/messages.inc.php:196 server_privileges.php:1994 +#: libraries/messages.inc.php:192 server_privileges.php:1994 msgid "Database for user" msgstr "Database per l'utente" -#: libraries/messages.inc.php:197 server_privileges.php:1999 +#: libraries/messages.inc.php:193 server_privileges.php:1999 msgid "Create database with same name and grant all privileges" msgstr "Crea un database con lo stesso nome e concedi tutti i privilegi" -#: libraries/messages.inc.php:198 +#: libraries/messages.inc.php:194 msgctxt "$strCreateUserDatabaseNone" msgid "None" msgstr "Nessuno" -#: libraries/messages.inc.php:199 server_privileges.php:2003 +#: libraries/messages.inc.php:195 server_privileges.php:2003 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Garantisci tutti i privilegi per il database "%s"" -#: libraries/messages.inc.php:200 server_privileges.php:2000 +#: libraries/messages.inc.php:196 server_privileges.php:2000 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Concedi tutti i privilegi al nome con caratteri jolly (username\\_%)" -#: libraries/messages.inc.php:201 +#: libraries/messages.inc.php:197 msgid "Creation/Update/Check dates" msgstr "Creazione/Aggiornamento/Controllo date" -#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:229 +#: libraries/messages.inc.php:199 libraries/mysql_charsets.lib.php:229 msgid "Croatian" msgstr "Croato" -#: libraries/messages.inc.php:204 +#: libraries/messages.inc.php:200 msgid "CSV" msgstr "CSV" -#: libraries/messages.inc.php:205 libraries/server_synchronize.lib.php:1343 +#: libraries/messages.inc.php:201 libraries/server_synchronize.lib.php:1343 #: libraries/server_synchronize.lib.php:1369 msgid "Current server" msgstr "Server attuale" -#: libraries/messages.inc.php:206 main.php:159 +#: libraries/messages.inc.php:202 main.php:159 msgid "Custom color" msgstr "Colore definito dall'utente" -#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:365 +#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:365 msgid "Cyrillic" msgstr "Cirillico" -#: libraries/messages.inc.php:208 libraries/mysql_charsets.lib.php:232 +#: libraries/messages.inc.php:204 libraries/mysql_charsets.lib.php:232 msgid "Czech" msgstr "Ceco" -#: libraries/messages.inc.php:209 libraries/mysql_charsets.lib.php:383 +#: libraries/messages.inc.php:205 libraries/mysql_charsets.lib.php:383 msgid "Czech-Slovak" msgstr "Ceco-Slovacco" -#: libraries/messages.inc.php:211 libraries/mysql_charsets.lib.php:235 +#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:235 msgid "Danish" msgstr "Danese" -#: libraries/messages.inc.php:214 +#: libraries/messages.inc.php:210 msgid "Database export options" msgstr "Opzioni di esportazione del database" -#: libraries/messages.inc.php:217 server_synchronize.php:122 +#: libraries/messages.inc.php:213 server_synchronize.php:122 #: server_synchronize.php:125 tbl_create.php:82 tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "database '%s' non esistente." -#: libraries/messages.inc.php:219 server_databases.php:63 +#: libraries/messages.inc.php:215 server_databases.php:63 #, php-format msgid "%s databases have been dropped successfully." msgstr "%s databases sono stati cancellati correttamente." -#: libraries/messages.inc.php:220 libraries/server_synchronize.lib.php:1341 +#: libraries/messages.inc.php:216 libraries/server_synchronize.lib.php:1341 #: server_synchronize.php:1110 msgid "Source database" msgstr "Database di origine" -#: libraries/messages.inc.php:221 server_databases.php:88 +#: libraries/messages.inc.php:217 server_databases.php:88 msgid "Databases statistics" msgstr "Statistiche dei databases" -#: libraries/messages.inc.php:222 server_databases.php:362 +#: libraries/messages.inc.php:218 server_databases.php:362 #: server_databases.php:363 msgid "Disable Statistics" msgstr "Disabilita le Statistiche" -#: libraries/messages.inc.php:223 server_databases.php:358 +#: libraries/messages.inc.php:219 server_databases.php:358 #: server_databases.php:359 msgid "Enable Statistics" msgstr "Abilita le Statistiche" -#: libraries/messages.inc.php:224 server_databases.php:366 +#: libraries/messages.inc.php:220 server_databases.php:366 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -3624,30 +3624,30 @@ msgstr "" "N.B.: Abilitare qui le statistiche del Database potrebbe causare del " "traffico intenso fra il server web e MySQL." -#: libraries/messages.inc.php:225 libraries/server_synchronize.lib.php:1367 +#: libraries/messages.inc.php:221 libraries/server_synchronize.lib.php:1367 #: server_synchronize.php:1112 msgid "Target database" msgstr "Database di destinazione" -#: libraries/messages.inc.php:228 server_synchronize.php:425 +#: libraries/messages.inc.php:224 server_synchronize.php:425 #: server_synchronize.php:868 msgid "Data Difference" msgstr "Differenze dei dati" -#: libraries/messages.inc.php:231 server_synchronize.php:272 +#: libraries/messages.inc.php:227 server_synchronize.php:272 msgid "Data Synchronization" msgstr "Sincronizzazione dati" -#: libraries/messages.inc.php:235 server_privileges.php:526 +#: libraries/messages.inc.php:231 server_privileges.php:526 #: server_privileges.php:1679 msgid "Database-specific privileges" msgstr "Privilegi specifici al database" -#: libraries/messages.inc.php:237 server_privileges.php:2136 +#: libraries/messages.inc.php:233 server_privileges.php:2136 msgid "database-specific" msgstr "specifico del database" -#: libraries/messages.inc.php:240 libraries/tbl_properties.inc.php:106 +#: libraries/messages.inc.php:236 libraries/tbl_properties.inc.php:106 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" @@ -3655,32 +3655,32 @@ msgstr "" "Per i valori predefiniti, prego inserire un singolo valore, senza backslash " "escaping o virgolette, utilizzando questo formato: a" -#: libraries/messages.inc.php:241 tbl_operations.php:589 +#: libraries/messages.inc.php:237 tbl_operations.php:589 msgid "Defragment table" msgstr "Deframmenta la tabella" -#: libraries/messages.inc.php:242 +#: libraries/messages.inc.php:238 msgid "Use delayed inserts" msgstr "Utilizza inserimenti ritardati" -#: libraries/messages.inc.php:245 server_privileges.php:1243 +#: libraries/messages.inc.php:241 server_privileges.php:1243 msgid "No users selected for deleting!" msgstr "Nessun utente selezionato per la cancellazione!" -#: libraries/messages.inc.php:246 pmd_general.php:372 +#: libraries/messages.inc.php:242 pmd_general.php:372 msgid "Delete relation" msgstr "Elimina relazione" -#: libraries/messages.inc.php:248 server_privileges.php:1232 +#: libraries/messages.inc.php:244 server_privileges.php:1232 #, php-format msgid "Deleting %s" msgstr "Cancellazione in corso di %s" -#: libraries/messages.inc.php:249 libraries/sql_query_form.lib.php:388 +#: libraries/messages.inc.php:245 libraries/sql_query_form.lib.php:388 msgid "Delimiter" msgstr "Delimitatori" -#: libraries/messages.inc.php:250 pdf_pages.php:506 +#: libraries/messages.inc.php:246 pdf_pages.php:506 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -3688,7 +3688,7 @@ msgstr "" "La Pagina corrente contiene Riferimenti a Tabelle che non esistono più. " "Volete cancellare questi Riferimenti?" -#: libraries/messages.inc.php:254 pmd_help.php:29 +#: libraries/messages.inc.php:250 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 " @@ -3698,142 +3698,142 @@ msgstr "" "come campo da mostrare, clicca l'icona \"Scegli il campo da mostrare\", e " "poi clicca sul nome appropriato del campo." -#: libraries/messages.inc.php:256 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:252 libraries/mysql_charsets.lib.php:247 msgid "dictionary" msgstr "dizionario" -#: libraries/messages.inc.php:257 libraries/server_synchronize.lib.php:1348 +#: libraries/messages.inc.php:253 libraries/server_synchronize.lib.php:1348 msgid "Difference" msgstr "Differenza" -#: libraries/messages.inc.php:258 pmd_general.php:87 +#: libraries/messages.inc.php:254 pmd_general.php:87 msgid "Direct links" msgstr "Link diretti" -#: libraries/messages.inc.php:261 +#: libraries/messages.inc.php:257 msgid "Disable foreign key checks" msgstr "Disabilita i controlli sulle chiavi straniere" -#: libraries/messages.inc.php:262 +#: libraries/messages.inc.php:258 msgid "Display Features" msgstr "Mostra Caratteristiche" -#: libraries/messages.inc.php:263 tbl_select.php:301 +#: libraries/messages.inc.php:259 tbl_select.php:301 msgid "Display order:" msgstr "Ordine di visualizzazione:" -#: libraries/messages.inc.php:265 tbl_select.php:132 +#: libraries/messages.inc.php:261 tbl_select.php:132 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Esegui \"query da esempio\" (carattere jolly: \"%\")" -#: libraries/messages.inc.php:266 +#: libraries/messages.inc.php:262 msgid "DocSQL" msgstr "DocSQL" -#: libraries/messages.inc.php:268 +#: libraries/messages.inc.php:264 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Non usare AUTO_INCREMENT per il valore zero" -#: libraries/messages.inc.php:273 server_privileges.php:1579 +#: libraries/messages.inc.php:269 server_privileges.php:1579 #: server_privileges.php:1580 server_privileges.php:1581 msgid "Drop the databases that have the same names as the users." msgstr "Elimina i databases gli stessi nomi degli utenti." -#: libraries/messages.inc.php:278 tbl_printview.php:382 tbl_structure.php:743 +#: libraries/messages.inc.php:274 tbl_printview.php:382 tbl_structure.php:743 msgid "dynamic" msgstr "dinamico" -#: libraries/messages.inc.php:282 server_privileges.php:1324 +#: libraries/messages.inc.php:278 server_privileges.php:1324 #: server_privileges.php:1610 msgid "Edit Privileges" msgstr "Modifica Privilegi" -#: libraries/messages.inc.php:283 tbl_printview.php:341 tbl_structure.php:688 +#: libraries/messages.inc.php:279 tbl_printview.php:341 tbl_structure.php:688 msgid "Effective" msgstr "Effettivo" -#: libraries/messages.inc.php:286 libraries/relation.lib.php:100 +#: libraries/messages.inc.php:282 libraries/relation.lib.php:100 msgid "Enabled" msgstr "Abilitata" -#: libraries/messages.inc.php:287 +#: libraries/messages.inc.php:283 msgid "Enclose export in a transaction" msgstr "Includi export in una transazione" -#: libraries/messages.inc.php:288 libraries/sqlparser.lib.php:177 +#: libraries/messages.inc.php:284 libraries/sqlparser.lib.php:177 msgid "END CUT" msgstr "FINE CUT" -#: libraries/messages.inc.php:290 libraries/sqlparser.lib.php:183 +#: libraries/messages.inc.php:286 libraries/sqlparser.lib.php:183 msgid "END RAW" msgstr "FINE RAW" -#: libraries/messages.inc.php:293 libraries/server_links.inc.php:61 +#: libraries/messages.inc.php:289 libraries/server_links.inc.php:61 #: test/theme.php:113 msgid "Engines" msgstr "Motori" -#: libraries/messages.inc.php:295 libraries/mysql_charsets.lib.php:238 +#: libraries/messages.inc.php:291 libraries/mysql_charsets.lib.php:238 msgid "English" msgstr "Inglese" -#: libraries/messages.inc.php:296 server_privileges.php:393 +#: libraries/messages.inc.php:292 server_privileges.php:393 #: server_privileges.php:535 server_privileges.php:1501 msgid " Note: MySQL privilege names are expressed in English " msgstr "Nota: i nomi dei privilegi di MySQL sono in Inglese" -#: libraries/messages.inc.php:298 libraries/zip_extension.lib.php:49 +#: libraries/messages.inc.php:294 libraries/zip_extension.lib.php:49 #: libraries/zip_extension.lib.php:51 libraries/zip_extension.lib.php:66 msgid "Error in ZIP archive:" msgstr "Errore nell'archivio ZIP:" -#: libraries/messages.inc.php:303 libraries/mysql_charsets.lib.php:241 +#: libraries/messages.inc.php:299 libraries/mysql_charsets.lib.php:241 msgid "Esperanto" msgstr "Esperanto" -#: libraries/messages.inc.php:304 libraries/mysql_charsets.lib.php:244 +#: libraries/messages.inc.php:300 libraries/mysql_charsets.lib.php:244 msgid "Estonian" msgstr "Estone" -#: libraries/messages.inc.php:305 libraries/tbl_triggers.lib.php:29 +#: libraries/messages.inc.php:301 libraries/tbl_triggers.lib.php:29 msgid "Event" msgstr "Eventi" -#: libraries/messages.inc.php:307 +#: libraries/messages.inc.php:303 msgid "Excel edition" msgstr "Edizione Excel" -#: libraries/messages.inc.php:311 pmd_pdf.php:85 +#: libraries/messages.inc.php:307 pmd_pdf.php:85 msgid "Export/Import to scale" msgstr "Importa/esporta alla dimensione" -#: libraries/messages.inc.php:313 +#: libraries/messages.inc.php:309 msgid "Extended inserts" msgstr "Inserimenti estesi" -#: libraries/messages.inc.php:314 pdf_schema.php:1267 pdf_schema.php:1288 +#: libraries/messages.inc.php:310 pdf_schema.php:1267 pdf_schema.php:1288 #: tbl_printview.php:147 tbl_structure.php:183 tbl_tracking.php:278 msgid "Extra" msgstr "Extra" -#: libraries/messages.inc.php:316 server_status.php:447 +#: libraries/messages.inc.php:312 server_status.php:447 msgid "Failed attempts" msgstr "Tentativi falliti" -#: libraries/messages.inc.php:318 tbl_structure.php:375 +#: libraries/messages.inc.php:314 tbl_structure.php:375 #, php-format msgid "Field %s has been dropped" msgstr "Il campo %s è stato eliminato" -#: libraries/messages.inc.php:322 libraries/sql_query_form.lib.php:317 +#: libraries/messages.inc.php:318 libraries/sql_query_form.lib.php:317 msgid "Fields" msgstr "Campi" -#: libraries/messages.inc.php:332 server_binlog.php:136 +#: libraries/messages.inc.php:328 server_binlog.php:136 msgid "Files" msgstr "File" -#: libraries/messages.inc.php:334 server_privileges.php:1597 +#: libraries/messages.inc.php:330 server_privileges.php:1597 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -3846,122 +3846,122 @@ msgstr "" "privilegi usati dal server se sono stati fatti cambiamenti manuali. In " "questo caso, Si dovrebbero %srinfrescare i privilegi%s prima di continuare." -#: libraries/messages.inc.php:335 server_status.php:289 +#: libraries/messages.inc.php:331 server_status.php:289 msgid "Flush query cache" msgstr "Rinfresca la cache delle query" -#: libraries/messages.inc.php:336 +#: libraries/messages.inc.php:332 msgid "Flush the table (\"FLUSH\")" msgstr "Inizializza (\"FLUSH\") la tabella" -#: libraries/messages.inc.php:337 server_status.php:271 +#: libraries/messages.inc.php:333 server_status.php:271 msgid "Flush (close) all tables" msgstr "Rinfresca (chiudi) tutte le tabelle" -#: libraries/messages.inc.php:339 tbl_relation.php:279 +#: libraries/messages.inc.php:335 tbl_relation.php:279 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" "Errore nel creare una \"foreign key\" su %1$s (controlla il tipo di dati)" -#: libraries/messages.inc.php:341 setup/lib/messages.inc.php:88 +#: libraries/messages.inc.php:337 setup/lib/messages.inc.php:88 #: tbl_printview.php:376 tbl_structure.php:738 msgid "Format" msgstr "Formato" -#: libraries/messages.inc.php:344 server_replication.php:325 +#: libraries/messages.inc.php:340 server_replication.php:325 msgid "Full start" msgstr "Pieno avvio" -#: libraries/messages.inc.php:345 server_replication.php:325 +#: libraries/messages.inc.php:341 server_replication.php:325 msgid "Full stop" msgstr "Pieno spegnimento" -#: libraries/messages.inc.php:347 tbl_change.php:282 tbl_change.php:320 +#: libraries/messages.inc.php:343 tbl_change.php:282 tbl_change.php:320 msgid "Function" msgstr "Funzione" -#: libraries/messages.inc.php:355 libraries/mysql_charsets.lib.php:377 +#: libraries/messages.inc.php:351 libraries/mysql_charsets.lib.php:377 msgid "Georgian" msgstr "Georgiano" -#: libraries/messages.inc.php:356 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:352 libraries/mysql_charsets.lib.php:247 #: libraries/mysql_charsets.lib.php:250 msgid "German" msgstr "Tedesco" -#: libraries/messages.inc.php:357 themes.php:42 +#: libraries/messages.inc.php:353 themes.php:42 msgid "Get more themes!" msgstr "Ottieni altri temi!" -#: libraries/messages.inc.php:358 server_privileges.php:2134 +#: libraries/messages.inc.php:354 server_privileges.php:2134 msgid "global" msgstr "globale" -#: libraries/messages.inc.php:359 server_privileges.php:524 +#: libraries/messages.inc.php:355 server_privileges.php:524 #: server_privileges.php:1500 msgid "Global privileges" msgstr "Privilegi globali" -#: libraries/messages.inc.php:360 server_variables.php:55 +#: libraries/messages.inc.php:356 server_variables.php:55 #: server_variables.php:89 msgid "Global value" msgstr "Valore globale" -#: libraries/messages.inc.php:365 server_privileges.php:1502 +#: libraries/messages.inc.php:361 server_privileges.php:1502 #: server_privileges.php:1684 server_privileges.php:2033 msgid "Grant" msgstr "Grant" -#: libraries/messages.inc.php:366 libraries/mysql_charsets.lib.php:380 +#: libraries/messages.inc.php:362 libraries/mysql_charsets.lib.php:380 msgid "Greek" msgstr "Greco" -#: libraries/messages.inc.php:367 +#: libraries/messages.inc.php:363 msgid "\"gzipped\"" msgstr "\"compresso con gzip\"" -#: libraries/messages.inc.php:369 server_status.php:250 +#: libraries/messages.inc.php:365 server_status.php:250 msgid "Handler" msgstr "Handler" -#: libraries/messages.inc.php:370 server_synchronize.php:464 +#: libraries/messages.inc.php:366 server_synchronize.php:464 msgid "Selected target tables have been synchronized with source tables." msgstr "" "Le tabelle di destinazione selezionate sono state sincronizzate con le " "tabelle di origine." -#: libraries/messages.inc.php:372 libraries/mysql_charsets.lib.php:374 +#: libraries/messages.inc.php:368 libraries/mysql_charsets.lib.php:374 msgid "Hebrew" msgstr "Ebreo" -#: libraries/messages.inc.php:373 pmd_general.php:83 +#: libraries/messages.inc.php:369 pmd_general.php:83 msgid "Help" msgstr "Aiuto" -#: libraries/messages.inc.php:374 +#: libraries/messages.inc.php:370 msgid "Use hexadecimal for BLOB" msgstr "Usa dati esadecimali per BLOB" -#: libraries/messages.inc.php:376 pmd_general.php:120 +#: libraries/messages.inc.php:372 pmd_general.php:120 msgid "Hide/Show all" msgstr "Mostra/nascondi tutto" -#: libraries/messages.inc.php:377 pmd_general.php:124 +#: libraries/messages.inc.php:373 pmd_general.php:124 msgid "Hide/Show Tables with no relation" msgstr "Mostra/nascondi tabella senza relazioni" -#: libraries/messages.inc.php:378 libraries/navigation_header.inc.php:54 +#: libraries/messages.inc.php:374 libraries/navigation_header.inc.php:54 #: libraries/navigation_header.inc.php:57 #: libraries/navigation_header.inc.php:58 msgid "Home" msgstr "Home" -#: libraries/messages.inc.php:379 main.php:233 +#: libraries/messages.inc.php:375 main.php:233 msgid "Official Homepage" msgstr "Home page ufficiale di phpMyAdmin" -#: libraries/messages.inc.php:382 libraries/replication_gui.lib.php:327 +#: libraries/messages.inc.php:378 libraries/replication_gui.lib.php:327 #: server_privileges.php:753 msgid "" "When Host table is used, this field is ignored and values stored in Host " @@ -3970,98 +3970,98 @@ msgstr "" "Quando la tabella Host è usata, questo campo è ignorato e i valori " "memorizzati nella tabella Host invece utilizzati." -#: libraries/messages.inc.php:383 +#: libraries/messages.inc.php:379 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/messages.inc.php:384 libraries/mysql_charsets.lib.php:253 +#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:253 msgid "Hungarian" msgstr "Ungherese" -#: libraries/messages.inc.php:386 libraries/mysql_charsets.lib.php:256 +#: libraries/messages.inc.php:382 libraries/mysql_charsets.lib.php:256 msgid "Icelandic" msgstr "Islandese" -#: libraries/messages.inc.php:387 server_processlist.php:53 +#: libraries/messages.inc.php:383 server_processlist.php:53 msgid "ID" msgstr "ID" -#: libraries/messages.inc.php:388 libraries/mult_submits.inc.php:108 +#: libraries/messages.inc.php:384 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:479 msgid "Fulltext" msgstr "Testo completo" -#: libraries/messages.inc.php:389 +#: libraries/messages.inc.php:385 msgid "Ignore duplicate rows" msgstr "Ignora le righe duplicate" -#: libraries/messages.inc.php:390 tbl_change.php:302 tbl_indexes.php:200 +#: libraries/messages.inc.php:386 tbl_change.php:302 tbl_indexes.php:200 #: tbl_indexes.php:225 msgid "Ignore" msgstr "Ignora" -#: libraries/messages.inc.php:391 +#: libraries/messages.inc.php:387 msgid "Use ignore inserts" msgstr "Utilizza gli IGNORE INSERTS" -#: libraries/messages.inc.php:392 +#: libraries/messages.inc.php:388 msgid "Column names in first row" msgstr "I nomi delle colonne in prima fila" -#: libraries/messages.inc.php:393 +#: libraries/messages.inc.php:389 msgid "Do not import empty rows" msgstr "Non importare righe vuote" -#: libraries/messages.inc.php:394 pmd_general.php:104 +#: libraries/messages.inc.php:390 pmd_general.php:104 msgid "Import/Export coordinates for PDF schema" msgstr "Importa/esporta le coordinate per PDF schema" -#: libraries/messages.inc.php:395 querywindow.php:104 +#: libraries/messages.inc.php:391 querywindow.php:104 msgid "Import files" msgstr "Importa file" -#: libraries/messages.inc.php:403 +#: libraries/messages.inc.php:399 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/messages.inc.php:404 libraries/messages.inc.php:584 +#: libraries/messages.inc.php:400 libraries/messages.inc.php:580 msgid "Open Document Spreadsheet" msgstr "Foglio di calcolo nel formato Open Document" -#: libraries/messages.inc.php:405 +#: libraries/messages.inc.php:401 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/messages.inc.php:409 +#: libraries/messages.inc.php:405 msgid "Excel 97-2003 XLS Workbook" msgstr "Excel 97-2003 XLS Workbook" -#: libraries/messages.inc.php:410 +#: libraries/messages.inc.php:406 msgid "Excel 2007 XLSX Workbook" msgstr "Excel 2007 XLSX Workbook" -#: libraries/messages.inc.php:414 libraries/mult_submits.inc.php:98 +#: libraries/messages.inc.php:410 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:476 tbl_structure.php:674 msgid "Index" msgstr "Indice" -#: libraries/messages.inc.php:415 tbl_indexes.php:168 +#: libraries/messages.inc.php:411 tbl_indexes.php:168 msgid "Index name:" msgstr "Nome dell'indice :" -#: libraries/messages.inc.php:416 tbl_indexes.php:174 +#: libraries/messages.inc.php:412 tbl_indexes.php:174 msgid "Index type:" msgstr "Tipo di indice :" -#: libraries/messages.inc.php:417 sql.php:639 +#: libraries/messages.inc.php:413 sql.php:639 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemi con gli indici della tabella `%s`" -#: libraries/messages.inc.php:427 main.php:266 +#: libraries/messages.inc.php:423 main.php:266 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -4073,24 +4073,24 @@ msgstr "" "server MySQL funzionante con queste impostazioni è aperto a intrusioni, e si " "dovrebbe realmente riparare a questa falla nella sicurezza." -#: libraries/messages.inc.php:428 tbl_change.php:1130 +#: libraries/messages.inc.php:424 tbl_change.php:1130 msgid "Insert as new row" msgstr "Inserisci come nuova riga" -#: libraries/messages.inc.php:429 sql.php:496 tbl_replace.php:386 +#: libraries/messages.inc.php:425 sql.php:496 tbl_replace.php:386 #, php-format msgid "Inserted row id: %1$d" msgstr "Inserita riga id: %1$d" -#: libraries/messages.inc.php:430 tbl_change.php:1131 +#: libraries/messages.inc.php:426 tbl_change.php:1131 msgid "Insert as new row and ignore errors" msgstr "Inserisci come nuova riga e ignora gli errori" -#: libraries/messages.inc.php:432 main.php:139 +#: libraries/messages.inc.php:428 main.php:139 msgid "Interface" msgstr "Interfacce" -#: libraries/messages.inc.php:433 tbl_relation.php:407 +#: libraries/messages.inc.php:429 tbl_relation.php:407 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -4098,31 +4098,31 @@ msgstr "" "Una relazione interna non %è necessaria, quando una corrispondente relazione " "FOREIGN KEY esiste." -#: libraries/messages.inc.php:435 pdf_pages.php:303 +#: libraries/messages.inc.php:431 pdf_pages.php:303 msgid "Internal relations" msgstr "Relazioni interne" -#: libraries/messages.inc.php:438 tbl_indexes.php:256 tbl_structure.php:590 +#: libraries/messages.inc.php:434 tbl_indexes.php:256 tbl_structure.php:590 #: tbl_structure.php:601 msgid "Column count has to be larger than zero." msgstr "Il contatore delle colonne deve essere superiore a 0." -#: libraries/messages.inc.php:444 libraries/tbl_properties.inc.php:784 +#: libraries/messages.inc.php:440 libraries/tbl_properties.inc.php:784 #: tbl_structure.php:537 msgid "You have to add at least one field." msgstr "Deviaggiungere come minimo un campo." -#: libraries/messages.inc.php:449 +#: libraries/messages.inc.php:445 #, php-format msgid "Invalid server index: \"%s\"" msgstr "Server index non valido: \"%s\"" -#: libraries/messages.inc.php:452 libraries/mysql_charsets.lib.php:259 +#: libraries/messages.inc.php:448 libraries/mysql_charsets.lib.php:259 #: libraries/mysql_charsets.lib.php:349 msgid "Japanese" msgstr "Giapponese" -#: libraries/messages.inc.php:453 main.php:331 +#: libraries/messages.inc.php:449 main.php:331 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " @@ -4132,109 +4132,109 @@ msgstr "" "funzioni di phpMyAdmin saranno mancanti. Per esempio la navigazione dei " "frame non sarà aggiornata automaticamente." -#: libraries/messages.inc.php:454 server_status.php:257 +#: libraries/messages.inc.php:450 server_status.php:257 msgid "Joins" msgstr "Joins" -#: libraries/messages.inc.php:457 server_privileges.php:763 +#: libraries/messages.inc.php:453 server_privileges.php:763 msgid "Do not change the password" msgstr "Non cambiare la password" -#: libraries/messages.inc.php:458 server_status.php:256 +#: libraries/messages.inc.php:454 server_status.php:256 msgid "Key cache" msgstr "Key cache" -#: libraries/messages.inc.php:462 libraries/mysql_charsets.lib.php:268 +#: libraries/messages.inc.php:458 libraries/mysql_charsets.lib.php:268 #: libraries/mysql_charsets.lib.php:371 msgid "Korean" msgstr "Coreano" -#: libraries/messages.inc.php:466 libraries/select_lang.lib.php:480 +#: libraries/messages.inc.php:462 libraries/select_lang.lib.php:480 #: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492 #, php-format msgid "Unknown language: %1$s." msgstr "Lingua non conosciuta : %1$s." -#: libraries/messages.inc.php:468 +#: libraries/messages.inc.php:464 msgid "Table caption" msgstr "Sottotitolo della tabella" -#: libraries/messages.inc.php:469 +#: libraries/messages.inc.php:465 msgid "Content of table __TABLE__" msgstr "Contenuto della tabella __TABLE__" -#: libraries/messages.inc.php:470 +#: libraries/messages.inc.php:466 msgid "Continued table caption" msgstr "Sottotitolo della tabella continuato" -#: libraries/messages.inc.php:471 +#: libraries/messages.inc.php:467 msgid "(continued)" msgstr "(continua)" -#: libraries/messages.inc.php:472 +#: libraries/messages.inc.php:468 msgid "Include table caption" msgstr "Includi sottotitolo della tabella" -#: libraries/messages.inc.php:473 +#: libraries/messages.inc.php:469 msgid "Label key" msgstr "Chiave etichetta" -#: libraries/messages.inc.php:474 +#: libraries/messages.inc.php:470 msgid "LaTeX" msgstr "LaTeX" -#: libraries/messages.inc.php:475 +#: libraries/messages.inc.php:471 msgid "Structure of table __TABLE__" msgstr "Struttura della tabella __TABLE__" -#: libraries/messages.inc.php:476 libraries/mysql_charsets.lib.php:262 +#: libraries/messages.inc.php:472 libraries/mysql_charsets.lib.php:262 msgid "Latvian" msgstr "Lituano" -#: libraries/messages.inc.php:477 +#: libraries/messages.inc.php:473 msgid "CSV using LOAD DATA" msgstr "CSV usando LOAD DATA" -#: libraries/messages.inc.php:478 +#: libraries/messages.inc.php:474 msgid "Use LOCAL keyword" msgstr "Usa LOCAL keyword" -#: libraries/messages.inc.php:479 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:475 libraries/tbl_properties.inc.php:105 msgid "Length/Values" msgstr "Lunghezza/Set*" -#: libraries/messages.inc.php:480 tbl_select.php:295 +#: libraries/messages.inc.php:476 tbl_select.php:295 msgid "Number of rows per page" msgstr "record per pagina" -#: libraries/messages.inc.php:484 libraries/mysql_charsets.lib.php:265 +#: libraries/messages.inc.php:480 libraries/mysql_charsets.lib.php:265 msgid "Lithuanian" msgstr "Lituano" -#: libraries/messages.inc.php:485 libraries/replication_gui.lib.php:302 +#: libraries/messages.inc.php:481 libraries/replication_gui.lib.php:302 #: server_privileges.php:729 msgid "Local" msgstr "Locale" -#: libraries/messages.inc.php:487 server_privileges.php:669 +#: libraries/messages.inc.php:483 server_privileges.php:669 msgid "Login Information" msgstr "Informazioni di Login" -#: libraries/messages.inc.php:490 libraries/navigation_header.inc.php:67 +#: libraries/messages.inc.php:486 libraries/navigation_header.inc.php:67 #: libraries/navigation_header.inc.php:70 #: libraries/navigation_header.inc.php:71 main.php:99 msgid "Log out" msgstr "Disconnetti" -#: libraries/messages.inc.php:497 server_status.php:440 +#: libraries/messages.inc.php:493 server_status.php:440 msgid "max. concurrent connections" msgstr "max. connessioni contemporanee" -#: libraries/messages.inc.php:498 +#: libraries/messages.inc.php:494 msgid "Maximal length of created query" msgstr "Lunghezza massima di una query creata" -#: libraries/messages.inc.php:500 main.php:282 +#: libraries/messages.inc.php:496 main.php:282 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -4245,7 +4245,7 @@ msgstr "" "phpMyAdmin non è in grado di dividere correttamente le stringhe di caratteri " "e questo può portare a risultati inaspettati." -#: libraries/messages.inc.php:501 main.php:274 +#: libraries/messages.inc.php:497 main.php:274 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -4255,24 +4255,24 @@ msgstr "" "opzione è incompatibile con phpMyAdmin e potrebbe causare la corruzione di " "alcuni dati!" -#: libraries/messages.inc.php:502 +#: libraries/messages.inc.php:498 msgid "MediaWiki Table" msgstr "Tabella MediaWiki" -#: libraries/messages.inc.php:503 transformation_overview.php:25 +#: libraries/messages.inc.php:499 transformation_overview.php:25 msgid "Available MIME types" msgstr "Tipi-MIME disponibili" -#: libraries/messages.inc.php:504 transformation_overview.php:43 +#: libraries/messages.inc.php:500 transformation_overview.php:43 msgid "Available transformations" msgstr "Trasformazioni disponibili" -#: libraries/messages.inc.php:505 +#: libraries/messages.inc.php:501 msgctxt "$strMIME_description" msgid "Description" msgstr "Descrizione" -#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:580 +#: libraries/messages.inc.php:503 libraries/tbl_properties.inc.php:580 #: transformation_overview.php:60 #, php-format msgid "" @@ -4282,7 +4282,7 @@ msgstr "" "Nessuna descrizione è disponibile per questa trasformazione.
Prego, " "chiedere all'autore cosa %s faccia." -#: libraries/messages.inc.php:509 libraries/tbl_properties.inc.php:137 +#: libraries/messages.inc.php:505 libraries/tbl_properties.inc.php:137 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -4291,7 +4291,7 @@ msgstr "" "Per una lista di opzioni di trasformazione disponibili e le loro rispettive " "trasformazioni di tipi-MIME, cliccate su %strasformazione descrizioni%s" -#: libraries/messages.inc.php:510 libraries/tbl_properties.inc.php:146 +#: libraries/messages.inc.php:506 libraries/tbl_properties.inc.php:146 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -4303,58 +4303,58 @@ msgstr "" "backslash (\"\\\") o un apostrofo (\"'\") tra questi valori, essi vanno " "backslashati (per es. '\\\\xyz' or 'a\\'b')." -#: libraries/messages.inc.php:511 libraries/tbl_properties.inc.php:145 +#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:145 msgid "Transformation options" msgstr "Opzioni di Transformation" -#: libraries/messages.inc.php:513 transformation_overview.php:38 +#: libraries/messages.inc.php:509 transformation_overview.php:38 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "" "Tipi-MIME stampati in italics non hanno una funzione di trasformazione " "separata" -#: libraries/messages.inc.php:515 tbl_indexes.php:162 +#: libraries/messages.inc.php:511 tbl_indexes.php:162 msgid "Modify an index" msgstr "Modifica un indice" -#: libraries/messages.inc.php:517 pmd_general.php:108 +#: libraries/messages.inc.php:513 pmd_general.php:108 msgid "Move Menu" msgstr "Muovi menù" -#: libraries/messages.inc.php:518 tbl_operations.php:276 +#: libraries/messages.inc.php:514 tbl_operations.php:276 msgid "Move table to (database.table):" msgstr "Sposta la tabella nel (database.tabella):" -#: libraries/messages.inc.php:519 tbl_move_copy.php:56 +#: libraries/messages.inc.php:515 tbl_move_copy.php:56 #, php-format msgid "Table %s has been moved to %s." msgstr "La tabella %s è stata spostata in %s." -#: libraries/messages.inc.php:520 tbl_move_copy.php:46 +#: libraries/messages.inc.php:516 tbl_move_copy.php:46 msgid "Can't move table to same one!" msgstr "Impossibile spostare la tabella su se stessa!" -#: libraries/messages.inc.php:521 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:517 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 #: libraries/mysql_charsets.lib.php:332 libraries/mysql_charsets.lib.php:354 #: libraries/mysql_charsets.lib.php:365 msgid "multilingual" msgstr "multilingua" -#: libraries/messages.inc.php:534 main.php:193 +#: libraries/messages.inc.php:530 main.php:193 msgid "MySQL charset" msgstr "Set di caratteri MySQL" -#: libraries/messages.inc.php:535 main.php:211 +#: libraries/messages.inc.php:531 main.php:211 msgid "MySQL client version" msgstr "Versione MySQL client" -#: libraries/messages.inc.php:536 main.php:125 +#: libraries/messages.inc.php:532 main.php:125 msgid "MySQL connection collation" msgstr "collation della connessione di MySQL" -#: libraries/messages.inc.php:537 main.php:346 +#: libraries/messages.inc.php:533 main.php:346 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -4363,54 +4363,54 @@ msgstr "" "Le tue librerie di PHP per MySQL versione %s sono diverse dalla versione di " "MySQL server %s. Potrebbe causare comportamenti imprevedibili." -#: libraries/messages.inc.php:539 server_status.php:294 +#: libraries/messages.inc.php:535 server_status.php:294 msgid "Show processes" msgstr "Visualizza processi in esecuzione" -#: libraries/messages.inc.php:545 navigation.php:210 server_databases.php:371 +#: libraries/messages.inc.php:541 navigation.php:210 server_databases.php:371 #: server_synchronize.php:1191 msgid "No databases" msgstr "Nessun database" -#: libraries/messages.inc.php:546 server_databases.php:52 +#: libraries/messages.inc.php:542 server_databases.php:52 msgid "No databases selected." msgstr "Nessun database selezionato." -#: libraries/messages.inc.php:548 libraries/relation.lib.php:1173 +#: libraries/messages.inc.php:544 libraries/relation.lib.php:1173 msgid "no description" msgstr "nessuna Description" -#: libraries/messages.inc.php:552 libraries/zip_extension.lib.php:26 +#: libraries/messages.inc.php:548 libraries/zip_extension.lib.php:26 msgid "No files found inside ZIP archive!" msgstr "Non sono stati trovati file ZIP all'interno dell'archivio!" -#: libraries/messages.inc.php:555 tbl_indexes.php:91 +#: libraries/messages.inc.php:551 tbl_indexes.php:91 msgid "No index parts defined!" msgstr "Nessuna parte di indice definita!" -#: libraries/messages.inc.php:556 libraries/mult_submits.inc.php:435 +#: libraries/messages.inc.php:552 libraries/mult_submits.inc.php:435 #: tbl_replace.php:331 msgid "No change" msgstr "Nessun cambiamento" -#: libraries/messages.inc.php:557 +#: libraries/messages.inc.php:553 msgctxt "$strNoneDefault" msgid "None" msgstr "Nessuno" -#: libraries/messages.inc.php:560 libraries/plugin_interface.lib.php:312 +#: libraries/messages.inc.php:556 libraries/plugin_interface.lib.php:312 msgid "This format has no options" msgstr "Questo formato non ha opzioni" -#: libraries/messages.inc.php:565 user_password.php:54 +#: libraries/messages.inc.php:561 user_password.php:54 msgid "You don't have sufficient privileges to be here right now!" msgstr "Non hai i permessi per effettuare questa operazione!" -#: libraries/messages.inc.php:566 tbl_row_action.php:29 +#: libraries/messages.inc.php:562 tbl_row_action.php:29 msgid "No rows selected" msgstr "Nessuna riga selezionata" -#: libraries/messages.inc.php:569 themes.php:32 +#: libraries/messages.inc.php:565 themes.php:32 #, php-format msgid "" "No themes support; please check your configuration and/or your themes in " @@ -4419,138 +4419,138 @@ msgstr "" "Nessun supporto per i temi, si prega di controllare la configurazione e/o i " "temi nella cartella %s." -#: libraries/messages.inc.php:571 libraries/relation.lib.php:95 +#: libraries/messages.inc.php:567 libraries/relation.lib.php:95 msgid "not OK" msgstr "non OK" -#: libraries/messages.inc.php:572 server_synchronize.php:400 +#: libraries/messages.inc.php:568 server_synchronize.php:400 #: server_synchronize.php:839 msgid "not present" msgstr "non presente" -#: libraries/messages.inc.php:573 pdf_pages.php:36 pdf_pages.php:42 +#: libraries/messages.inc.php:569 pdf_pages.php:36 pdf_pages.php:42 #: pdf_pages.php:48 pdf_pages.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "%s tabella non trovata o non settata in %s" -#: libraries/messages.inc.php:574 server_privileges.php:804 +#: libraries/messages.inc.php:570 server_privileges.php:804 #: server_privileges.php:2166 msgid "No user(s) found." msgstr "Nessun utente trovato." -#: libraries/messages.inc.php:578 pmd_general.php:164 +#: libraries/messages.inc.php:574 pmd_general.php:164 msgid "Number of tables" msgstr "Numero di tabelle" -#: libraries/messages.inc.php:581 server_databases.php:117 +#: libraries/messages.inc.php:577 server_databases.php:117 #: server_status.php:260 setup/lib/messages.inc.php:117 msgid "Tables" msgstr "Tabelle" -#: libraries/messages.inc.php:583 libraries/relation.lib.php:99 +#: libraries/messages.inc.php:579 libraries/relation.lib.php:99 #: pmd_general.php:340 msgid "OK" msgstr "OK" -#: libraries/messages.inc.php:585 +#: libraries/messages.inc.php:581 msgid "Open Document Text" msgstr "Testo nel formato Open Document" -#: libraries/messages.inc.php:588 tbl_select.php:138 +#: libraries/messages.inc.php:584 tbl_select.php:138 msgid "Operator" msgstr "Operatore" -#: libraries/messages.inc.php:589 tbl_operations.php:662 +#: libraries/messages.inc.php:585 tbl_operations.php:662 msgid "Optimize" msgstr "Ottimizza" -#: libraries/messages.inc.php:602 libraries/tbl_properties.inc.php:755 +#: libraries/messages.inc.php:598 libraries/tbl_properties.inc.php:755 msgid "PARTITION definition" msgstr "Definizione Partizioni" -#: libraries/messages.inc.php:603 tbl_structure.php:757 +#: libraries/messages.inc.php:599 tbl_structure.php:757 msgid "partitioned" msgstr "partizionato" -#: libraries/messages.inc.php:604 tbl_operations.php:649 +#: libraries/messages.inc.php:600 tbl_operations.php:649 msgid "Partition maintenance" msgstr "Manutenzione partizione" -#: libraries/messages.inc.php:605 tbl_operations.php:657 +#: libraries/messages.inc.php:601 tbl_operations.php:657 #, php-format msgid "Partition %s" msgstr "Partizione %s" -#: libraries/messages.inc.php:606 server_privileges.php:1212 +#: libraries/messages.inc.php:602 server_privileges.php:1212 #, php-format msgid "The password for %s was changed successfully." msgstr "La password per l'utente %s è cambiata con successo." -#: libraries/messages.inc.php:635 +#: libraries/messages.inc.php:631 #, php-format msgid "Schema of the \"%s\" database - Page %s" msgstr "Schema del database \"%s\" - Pagina %s" -#: libraries/messages.inc.php:636 +#: libraries/messages.inc.php:632 #, php-format msgid "The \"%s\" table doesn't exist!" msgstr "La tabella \"%s\" non esiste!" -#: libraries/messages.inc.php:637 pdf_schema.php:1013 +#: libraries/messages.inc.php:633 pdf_schema.php:1013 msgid "No tables" msgstr "Nessuna Tabella" -#: libraries/messages.inc.php:638 pmd_pdf.php:63 +#: libraries/messages.inc.php:634 pmd_pdf.php:63 msgid "Page has been created" msgstr "La pagina è stata creata" -#: libraries/messages.inc.php:639 pmd_pdf.php:65 +#: libraries/messages.inc.php:635 pmd_pdf.php:65 msgid "Page creation failed" msgstr "Creazione della pagina fallita" -#: libraries/messages.inc.php:640 +#: libraries/messages.inc.php:636 msgid "PDF" msgstr "PDF" -#: libraries/messages.inc.php:641 +#: libraries/messages.inc.php:637 msgid "(Generates a report containing the data of a single table)" msgstr "(Genera un report contenete i dati di una singola tabella)" -#: libraries/messages.inc.php:642 +#: libraries/messages.inc.php:638 msgid "Report title" msgstr "Titolo del Report" -#: libraries/messages.inc.php:643 server_status.php:389 server_status.php:434 +#: libraries/messages.inc.php:639 server_status.php:389 server_status.php:434 #: server_status.php:497 server_status.php:555 msgid "per hour" msgstr "all'ora" -#: libraries/messages.inc.php:644 server_status.php:498 +#: libraries/messages.inc.php:640 server_status.php:498 msgid "per minute" msgstr "al minuto" -#: libraries/messages.inc.php:645 server_status.php:499 +#: libraries/messages.inc.php:641 server_status.php:499 msgid "per second" msgstr "al secondo" -#: libraries/messages.inc.php:646 libraries/mysql_charsets.lib.php:271 +#: libraries/messages.inc.php:642 libraries/mysql_charsets.lib.php:271 msgid "Persian" msgstr "Persiano" -#: libraries/messages.inc.php:647 libraries/mysql_charsets.lib.php:250 +#: libraries/messages.inc.php:643 libraries/mysql_charsets.lib.php:250 msgid "phone book" msgstr "rubrica" -#: libraries/messages.inc.php:648 +#: libraries/messages.inc.php:644 msgid "PHP array" msgstr "Array PHP" -#: libraries/messages.inc.php:650 main.php:213 +#: libraries/messages.inc.php:646 main.php:213 msgid "PHP extension" msgstr "Estensioni PHP" -#: libraries/messages.inc.php:654 libraries/relation.lib.php:163 +#: libraries/messages.inc.php:650 libraries/relation.lib.php:163 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." @@ -4558,158 +4558,158 @@ msgstr "" "Attiva funzionalità avanzate nel file di configuratione (config.inc." "php), per esempio partendo da config.sample.inc.php." -#: libraries/messages.inc.php:655 libraries/relation.lib.php:159 +#: libraries/messages.inc.php:651 libraries/relation.lib.php:159 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/messages.inc.php:656 libraries/relation.lib.php:161 +#: libraries/messages.inc.php:652 libraries/relation.lib.php:161 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "Crea le tabelle necessarie script/create_tables.sql." -#: libraries/messages.inc.php:657 libraries/relation.lib.php:162 +#: libraries/messages.inc.php:653 libraries/relation.lib.php:162 msgid "Create a pma user and give access to these tables." msgstr "Crea l'utente pma e dagli accesso a queste tabelle." -#: libraries/messages.inc.php:658 libraries/relation.lib.php:164 +#: libraries/messages.inc.php:654 libraries/relation.lib.php:164 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/messages.inc.php:661 libraries/mysql_charsets.lib.php:274 +#: libraries/messages.inc.php:657 libraries/mysql_charsets.lib.php:274 msgid "Polish" msgstr "Polacco" -#: libraries/messages.inc.php:662 libraries/replication_gui.lib.php:67 +#: libraries/messages.inc.php:658 libraries/replication_gui.lib.php:67 #: server_synchronize.php:1163 #, fuzzy msgid "Port" msgstr "Ordinamento" -#: libraries/messages.inc.php:667 tbl_indexes.php:67 +#: libraries/messages.inc.php:663 tbl_indexes.php:67 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Il nome della chiave primaria deve essere... PRIMARY!" -#: libraries/messages.inc.php:668 tbl_indexes.php:184 +#: libraries/messages.inc.php:664 tbl_indexes.php:184 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" "(\"PRIMARY\" deve essere il nome di, e solo di, una chiave " "primaria!)" -#: libraries/messages.inc.php:669 libraries/mult_submits.inc.php:76 +#: libraries/messages.inc.php:665 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:474 msgid "Primary" msgstr "Primaria" -#: libraries/messages.inc.php:673 server_privileges.php:227 +#: libraries/messages.inc.php:669 server_privileges.php:227 msgid "Includes all privileges except GRANT." msgstr "Comprende tutti i privilegi tranne GRANT." -#: libraries/messages.inc.php:674 server_privileges.php:153 +#: libraries/messages.inc.php:670 server_privileges.php:153 #: server_privileges.php:476 msgid "Allows altering the structure of existing tables." msgstr "Permette di alterare la struttura di tabelle esistenti." -#: libraries/messages.inc.php:675 server_privileges.php:169 +#: libraries/messages.inc.php:671 server_privileges.php:169 #: server_privileges.php:482 msgid "Allows altering and dropping stored routines." msgstr "Permette l'alterazione e l'eliminazione di routines memorizzate." -#: libraries/messages.inc.php:676 server_privileges.php:145 +#: libraries/messages.inc.php:672 server_privileges.php:145 #: server_privileges.php:475 msgid "Allows creating new databases and tables." msgstr "Permette di creare nuove tabelle e nuovi databases." -#: libraries/messages.inc.php:677 server_privileges.php:168 +#: libraries/messages.inc.php:673 server_privileges.php:168 #: server_privileges.php:481 msgid "Allows creating stored routines." msgstr "Permette la creazione di routines memorizzate." -#: libraries/messages.inc.php:678 server_privileges.php:475 +#: libraries/messages.inc.php:674 server_privileges.php:475 msgid "Allows creating new tables." msgstr "Permette di creare nuove tabelle." -#: libraries/messages.inc.php:679 server_privileges.php:156 +#: libraries/messages.inc.php:675 server_privileges.php:156 #: server_privileges.php:479 msgid "Allows creating temporary tables." msgstr "Permette di creare tabelle temporanee." -#: libraries/messages.inc.php:680 server_privileges.php:170 +#: libraries/messages.inc.php:676 server_privileges.php:170 #: server_privileges.php:515 msgid "Allows creating, dropping and renaming user accounts." msgstr "Permette di creare, cancellare e rinominare gli account utente." -#: libraries/messages.inc.php:681 server_privileges.php:160 +#: libraries/messages.inc.php:677 server_privileges.php:160 #: server_privileges.php:164 server_privileges.php:487 #: server_privileges.php:491 msgid "Allows creating new views." msgstr "Permette la creazione di nuove viste." -#: libraries/messages.inc.php:682 server_privileges.php:144 +#: libraries/messages.inc.php:678 server_privileges.php:144 #: server_privileges.php:467 msgid "Allows deleting data." msgstr "Permette di cancellare dati." -#: libraries/messages.inc.php:683 server_privileges.php:146 +#: libraries/messages.inc.php:679 server_privileges.php:146 #: server_privileges.php:478 msgid "Allows dropping databases and tables." msgstr "Permette di eliminare databases e tabelle." -#: libraries/messages.inc.php:684 server_privileges.php:478 +#: libraries/messages.inc.php:680 server_privileges.php:478 msgid "Allows dropping tables." msgstr "Permette di eliminare tabelle." -#: libraries/messages.inc.php:685 server_privileges.php:161 +#: libraries/messages.inc.php:681 server_privileges.php:161 #: server_privileges.php:495 msgid "Allows to set up events for the event scheduler" msgstr "Permette di impostare gli eventi per lo scheduler" -#: libraries/messages.inc.php:686 server_privileges.php:171 +#: libraries/messages.inc.php:682 server_privileges.php:171 #: server_privileges.php:483 msgid "Allows executing stored routines." msgstr "Permette l'esecuzione di routines memorizzate." -#: libraries/messages.inc.php:687 server_privileges.php:150 +#: libraries/messages.inc.php:683 server_privileges.php:150 #: server_privileges.php:470 msgid "Allows importing data from and exporting data into files." msgstr "Permette di importare dati da e esportare dati in file." -#: libraries/messages.inc.php:688 server_privileges.php:501 +#: libraries/messages.inc.php:684 server_privileges.php:501 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Permette di aggiungere utenti e privilegi senza ricaricare le tabelle dei " "privilegi." -#: libraries/messages.inc.php:689 server_privileges.php:152 +#: libraries/messages.inc.php:685 server_privileges.php:152 #: server_privileges.php:477 msgid "Allows creating and dropping indexes." msgstr "Permette di creare ed eliminare gli indici." -#: libraries/messages.inc.php:690 server_privileges.php:142 +#: libraries/messages.inc.php:686 server_privileges.php:142 #: server_privileges.php:403 server_privileges.php:465 msgid "Allows inserting and replacing data." msgstr "Permette di inserire e sovrascrivere dati." -#: libraries/messages.inc.php:691 server_privileges.php:157 +#: libraries/messages.inc.php:687 server_privileges.php:157 #: server_privileges.php:510 msgid "Allows locking tables for the current thread." msgstr "Permette di bloccare le tabelle per il thread corrente." -#: libraries/messages.inc.php:692 server_privileges.php:607 +#: libraries/messages.inc.php:688 server_privileges.php:607 #: server_privileges.php:609 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Limita il numero di nuove connessioni che un utente può aprire in un'ora." -#: libraries/messages.inc.php:693 server_privileges.php:595 +#: libraries/messages.inc.php:689 server_privileges.php:595 #: server_privileges.php:597 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Limita il numero di query che un utente può mandare al server in un'ora." -#: libraries/messages.inc.php:694 server_privileges.php:601 +#: libraries/messages.inc.php:690 server_privileges.php:601 #: server_privileges.php:603 msgid "" "Limits the number of commands that change any table or database the user may " @@ -4718,60 +4718,60 @@ msgstr "" "Limita il numero di comandi che possono cambiare una tabella o un database " "che un utente può eseguire in un'ora." -#: libraries/messages.inc.php:695 server_privileges.php:613 +#: libraries/messages.inc.php:691 server_privileges.php:613 #: server_privileges.php:615 msgid "Limits the number of simultaneous connections the user may have." msgstr "Limite di connessioni simultanee che un utente può fare." -#: libraries/messages.inc.php:696 server_privileges.php:149 +#: libraries/messages.inc.php:692 server_privileges.php:149 #: server_privileges.php:505 msgid "Allows viewing processes of all users" msgstr "Permette di vedere i processi di tutti gli utenti" -#: libraries/messages.inc.php:697 server_privileges.php:151 +#: libraries/messages.inc.php:693 server_privileges.php:151 #: server_privileges.php:409 server_privileges.php:511 msgid "Has no effect in this MySQL version." msgstr "Non ha alcun effetto in questa versione di MySQL." -#: libraries/messages.inc.php:698 server_privileges.php:147 +#: libraries/messages.inc.php:694 server_privileges.php:147 #: server_privileges.php:506 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Permette di ricaricare i parametri del server e di resettare la cache del " "server." -#: libraries/messages.inc.php:699 server_privileges.php:159 +#: libraries/messages.inc.php:695 server_privileges.php:159 #: server_privileges.php:513 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Accorda il diritto ad un utente di domandare dove sono i masters/slaves." -#: libraries/messages.inc.php:700 server_privileges.php:158 +#: libraries/messages.inc.php:696 server_privileges.php:158 #: server_privileges.php:514 msgid "Needed for the replication slaves." msgstr "Necessario per la replicazione degli slaves." -#: libraries/messages.inc.php:701 server_privileges.php:141 +#: libraries/messages.inc.php:697 server_privileges.php:141 #: server_privileges.php:400 server_privileges.php:464 msgid "Allows reading data." msgstr "Permette di leggere i dati." -#: libraries/messages.inc.php:702 server_privileges.php:154 +#: libraries/messages.inc.php:698 server_privileges.php:154 #: server_privileges.php:508 msgid "Gives access to the complete list of databases." msgstr "Accorda l'accesso alla lista completa dei databases." -#: libraries/messages.inc.php:703 server_privileges.php:165 +#: libraries/messages.inc.php:699 server_privileges.php:165 #: server_privileges.php:167 server_privileges.php:480 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Permette di effettuare query del tipo SHOW CREATE VIEW." -#: libraries/messages.inc.php:704 server_privileges.php:148 +#: libraries/messages.inc.php:700 server_privileges.php:148 #: server_privileges.php:507 msgid "Allows shutting down the server." msgstr "Permette di chiudere il server." -#: libraries/messages.inc.php:705 server_privileges.php:155 +#: libraries/messages.inc.php:701 server_privileges.php:155 #: server_privileges.php:504 msgid "" "Allows connecting, even if maximum number of connections is reached; " @@ -4783,55 +4783,55 @@ msgstr "" "settaggio di variabili globali o la cancellazione dei threads di altri " "utenti." -#: libraries/messages.inc.php:706 server_privileges.php:162 +#: libraries/messages.inc.php:702 server_privileges.php:162 #: server_privileges.php:496 msgid "Allows creating and dropping triggers" msgstr "Permette di creare e di eliminare i triggers" -#: libraries/messages.inc.php:707 server_privileges.php:143 +#: libraries/messages.inc.php:703 server_privileges.php:143 #: server_privileges.php:406 server_privileges.php:466 msgid "Allows changing data." msgstr "Permette di cambiare i dati." -#: libraries/messages.inc.php:708 server_privileges.php:221 +#: libraries/messages.inc.php:704 server_privileges.php:221 msgid "No privileges." msgstr "Nessun privilegio." -#: libraries/messages.inc.php:710 server_privileges.php:1296 +#: libraries/messages.inc.php:706 server_privileges.php:1296 msgid "The privileges were reloaded successfully." msgstr "I privilegi sono stati ricaricati con successo." -#: libraries/messages.inc.php:712 libraries/server_links.inc.php:80 +#: libraries/messages.inc.php:708 libraries/server_links.inc.php:80 msgid "Processes" msgstr "Processi" -#: libraries/messages.inc.php:714 main.php:187 +#: libraries/messages.inc.php:710 main.php:187 msgid "Protocol version" msgstr "Versione protocollo" -#: libraries/messages.inc.php:715 +#: libraries/messages.inc.php:711 msgid "Put fields names in the first row" msgstr "Mette i nomi delle colonne alla prima riga" -#: libraries/messages.inc.php:720 server_synchronize.php:1003 +#: libraries/messages.inc.php:716 server_synchronize.php:1003 msgid "The following queries have been executed:" msgstr "" -#: libraries/messages.inc.php:721 server_status.php:251 +#: libraries/messages.inc.php:717 server_status.php:251 msgid "Query cache" msgstr "Cache delle query" -#: libraries/messages.inc.php:722 libraries/navigation_header.inc.php:80 +#: libraries/messages.inc.php:718 libraries/navigation_header.inc.php:80 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 setup/lib/messages.inc.php:122 msgid "Query window" msgstr "Finestra della Query" -#: libraries/messages.inc.php:725 querywindow.php:109 querywindow.php:217 +#: libraries/messages.inc.php:721 querywindow.php:109 querywindow.php:217 msgid "SQL history" msgstr "Storico dell'SQL" -#: libraries/messages.inc.php:726 server_status.php:490 +#: libraries/messages.inc.php:722 server_status.php:490 #, php-format msgid "" "Query statistics: Since its startup, %s queries have been sent to the " @@ -4840,138 +4840,138 @@ msgstr "" "Query delle Statistiche: Dall'avvio, %s query sono state effettuate " "sul server." -#: libraries/messages.inc.php:728 server_status.php:554 +#: libraries/messages.inc.php:724 server_status.php:554 msgid "Query type" msgstr "Tipo di Query" -#: libraries/messages.inc.php:729 libraries/sql_query_form.lib.php:381 +#: libraries/messages.inc.php:725 libraries/sql_query_form.lib.php:381 msgid "Do not overwrite this query from outside the window" msgstr "Non sovrascrivere questa query da fuori della finestra" -#: libraries/messages.inc.php:732 tbl_operations.php:663 +#: libraries/messages.inc.php:728 tbl_operations.php:663 msgid "Rebuild" msgstr "Ricrea" -#: libraries/messages.inc.php:733 server_status.php:394 +#: libraries/messages.inc.php:729 server_status.php:394 msgid "Received" msgstr "Ricevuti" -#: libraries/messages.inc.php:734 pmd_pdf.php:89 +#: libraries/messages.inc.php:730 pmd_pdf.php:89 msgid "recommended" msgstr "raccomandato" -#: libraries/messages.inc.php:736 tbl_operations.php:702 +#: libraries/messages.inc.php:732 tbl_operations.php:702 msgid "Check referential integrity:" msgstr "Controlla l'integrità delle referenze:" -#: libraries/messages.inc.php:740 pdf_schema.php:1032 pdf_schema.php:1141 +#: libraries/messages.inc.php:736 pdf_schema.php:1032 pdf_schema.php:1141 msgid "Relational schema" msgstr "Schema relazionale" -#: libraries/messages.inc.php:744 tbl_relation.php:399 +#: libraries/messages.inc.php:740 tbl_relation.php:399 msgid "Relations" msgstr "Relazioni" -#: libraries/messages.inc.php:745 tbl_structure.php:507 tbl_structure.php:509 +#: libraries/messages.inc.php:741 tbl_structure.php:507 tbl_structure.php:509 msgid "Relation view" msgstr "Vedi relazioni" -#: libraries/messages.inc.php:746 server_privileges.php:1246 +#: libraries/messages.inc.php:742 server_privileges.php:1246 msgid "Reloading the privileges" msgstr "Caricamento dei privilegi in corso" -#: libraries/messages.inc.php:747 navigation.php:66 navigation.php:67 +#: libraries/messages.inc.php:743 navigation.php:66 navigation.php:67 #: navigation.php:70 #, fuzzy msgid "Reload navigation frame" msgstr "Personalizza frame di navigazione" -#: libraries/messages.inc.php:748 pmd_general.php:80 +#: libraries/messages.inc.php:744 pmd_general.php:80 msgid "Reload" msgstr "Ricarica" -#: libraries/messages.inc.php:749 libraries/server_synchronize.lib.php:1345 +#: libraries/messages.inc.php:745 libraries/server_synchronize.lib.php:1345 #: libraries/server_synchronize.lib.php:1371 #, fuzzy msgid "Remote server" msgstr "Nuovo server" -#: libraries/messages.inc.php:750 +#: libraries/messages.inc.php:746 msgid "Remove CRLF characters within fields" msgstr "" -#: libraries/messages.inc.php:751 tbl_operations.php:676 +#: libraries/messages.inc.php:747 tbl_operations.php:676 msgid "Remove partitioning" msgstr "Rimuove partizionamento" -#: libraries/messages.inc.php:752 server_privileges.php:1575 +#: libraries/messages.inc.php:748 server_privileges.php:1575 msgid "Remove selected users" msgstr "Rimuove gli utenti selezionati" -#: libraries/messages.inc.php:755 tbl_operations.php:338 +#: libraries/messages.inc.php:751 tbl_operations.php:338 msgid "Rename table to" msgstr "Rinomina la tabella in" -#: libraries/messages.inc.php:756 view_operations.php:93 +#: libraries/messages.inc.php:752 view_operations.php:93 #, fuzzy msgid "Rename view to" msgstr "Rinomina la tabella in" -#: libraries/messages.inc.php:757 tbl_operations.php:664 +#: libraries/messages.inc.php:753 tbl_operations.php:664 msgid "Repair" msgstr "Ripara" -#: libraries/messages.inc.php:759 +#: libraries/messages.inc.php:755 msgid "Replace NULL by" msgstr "Sostituisci NULL con" -#: libraries/messages.inc.php:760 +#: libraries/messages.inc.php:756 msgid "Replace table data with file" msgstr "Sostituisci i dati della tabella col file" -#: libraries/messages.inc.php:761 server_replication.php:228 +#: libraries/messages.inc.php:757 server_replication.php:228 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: libraries/messages.inc.php:762 libraries/replication_gui.lib.php:236 +#: libraries/messages.inc.php:758 libraries/replication_gui.lib.php:236 #: server_replication.php:194 msgid "Add slave replication user" msgstr "" -#: libraries/messages.inc.php:763 server_replication.php:74 +#: libraries/messages.inc.php:759 server_replication.php:74 #, php-format msgid "Master server changed succesfully to %s" msgstr "" -#: libraries/messages.inc.php:764 server_replication.php:182 +#: libraries/messages.inc.php:760 server_replication.php:182 msgid "This server is configured as master in a replication process." msgstr "" -#: libraries/messages.inc.php:765 server_replication.php:322 +#: libraries/messages.inc.php:761 server_replication.php:322 msgid "Control slave:" msgstr "" -#: libraries/messages.inc.php:766 server_replication.php:65 +#: libraries/messages.inc.php:762 server_replication.php:65 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: libraries/messages.inc.php:767 server_replication.php:58 +#: libraries/messages.inc.php:763 server_replication.php:58 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: libraries/messages.inc.php:768 server_replication.php:221 +#: libraries/messages.inc.php:764 server_replication.php:221 msgid "Replicate all databases; Ignore:" msgstr "" -#: libraries/messages.inc.php:769 server_replication.php:222 +#: libraries/messages.inc.php:765 server_replication.php:222 msgid "Ignore all databases; Replicate:" msgstr "" -#: libraries/messages.inc.php:770 server_replication.php:218 +#: libraries/messages.inc.php:766 server_replication.php:218 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -4980,126 +4980,126 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: libraries/messages.inc.php:771 server_replication.php:217 +#: libraries/messages.inc.php:767 server_replication.php:217 #, fuzzy msgid "Master configuration" msgstr "Configurazione del server" -#: libraries/messages.inc.php:772 server_replication.php:181 +#: libraries/messages.inc.php:768 server_replication.php:181 #: server_replication.php:209 #, fuzzy msgid "Master replication" msgstr "Configurazione del server" -#: libraries/messages.inc.php:774 server_replication.php:230 +#: libraries/messages.inc.php:770 server_replication.php:230 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: libraries/messages.inc.php:775 server_replication.php:225 +#: libraries/messages.inc.php:771 server_replication.php:225 #, fuzzy msgid "Please select databases:" msgstr "Prego, selezionare un database" -#: libraries/messages.inc.php:776 server_replication.php:210 +#: libraries/messages.inc.php:772 server_replication.php:210 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:188 +#: libraries/messages.inc.php:773 libraries/replication_gui.lib.php:188 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/messages.inc.php:778 server_replication.php:187 +#: libraries/messages.inc.php:774 server_replication.php:187 msgid "Show connected slaves" msgstr "" -#: libraries/messages.inc.php:779 libraries/messages.inc.php:885 +#: libraries/messages.inc.php:775 libraries/messages.inc.php:881 #: server_replication.php:184 server_status.php:281 #, fuzzy msgid "Show master status" msgstr "Mostra lo stato degli slave" -#: libraries/messages.inc.php:780 server_replication.php:334 +#: libraries/messages.inc.php:776 server_replication.php:334 msgid "Skipping error(s) might lead into unsynchronized master and slave!" msgstr "" -#: libraries/messages.inc.php:781 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:51 #: server_replication.php:347 msgid "Change or reconfigure master server" msgstr "" -#: libraries/messages.inc.php:782 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:778 libraries/replication_gui.lib.php:51 #, fuzzy msgid "Slave configuration" msgstr "Configurazione del server" -#: libraries/messages.inc.php:783 server_replication.php:305 +#: libraries/messages.inc.php:779 server_replication.php:305 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: libraries/messages.inc.php:784 server_replication.php:332 +#: libraries/messages.inc.php:780 server_replication.php:332 msgid "Error management:" msgstr "" -#: libraries/messages.inc.php:785 server_replication.php:328 +#: libraries/messages.inc.php:781 server_replication.php:328 #, php-format msgid "IO Thread %s only" msgstr "" -#: libraries/messages.inc.php:786 server_replication.php:296 +#: libraries/messages.inc.php:782 server_replication.php:296 msgid "Slave IO Thread not running!" msgstr "" -#: libraries/messages.inc.php:787 server_replication.php:355 +#: libraries/messages.inc.php:783 server_replication.php:355 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/messages.inc.php:788 server_replication.php:326 +#: libraries/messages.inc.php:784 server_replication.php:326 msgid "Reset slave" msgstr "" -#: libraries/messages.inc.php:789 server_replication.php:308 +#: libraries/messages.inc.php:785 server_replication.php:308 msgid "See slave status table" msgstr "" -#: libraries/messages.inc.php:790 server_replication.php:336 +#: libraries/messages.inc.php:786 server_replication.php:336 msgid "Skip current error" msgstr "" -#: libraries/messages.inc.php:791 server_replication.php:340 +#: libraries/messages.inc.php:787 server_replication.php:340 msgid "errors." msgstr "" -#: libraries/messages.inc.php:792 server_replication.php:337 +#: libraries/messages.inc.php:788 server_replication.php:337 msgid "Skip next" msgstr "" -#: libraries/messages.inc.php:793 server_replication.php:248 +#: libraries/messages.inc.php:789 server_replication.php:248 #, fuzzy msgid "Slave replication" msgstr "Configurazione del server" -#: libraries/messages.inc.php:794 server_replication.php:293 +#: libraries/messages.inc.php:790 server_replication.php:293 msgid "Slave SQL Thread not running!" msgstr "" -#: libraries/messages.inc.php:795 server_replication.php:327 +#: libraries/messages.inc.php:791 server_replication.php:327 #, php-format msgid "SQL Thread %s only" msgstr "" -#: libraries/messages.inc.php:796 +#: libraries/messages.inc.php:792 #, php-format msgid "" "This MySQL server works as %s in replication process. For further " @@ -5107,163 +5107,163 @@ msgid "" "\"#replication\">replication section." msgstr "" -#: libraries/messages.inc.php:797 +#: libraries/messages.inc.php:793 #, fuzzy msgid "Master status" msgstr "Mostra lo stato degli slave" -#: libraries/messages.inc.php:798 server_status.php:721 +#: libraries/messages.inc.php:794 server_status.php:721 #, fuzzy msgid "Replication status" msgstr "Replicazione" -#: libraries/messages.inc.php:799 +#: libraries/messages.inc.php:795 #, fuzzy msgid "Slave status" msgstr "Mostra lo stato degli slave" -#: libraries/messages.inc.php:800 server_replication.php:311 +#: libraries/messages.inc.php:796 server_replication.php:311 msgid "Synchronize databases with master" msgstr "" -#: libraries/messages.inc.php:801 server_replication.php:71 +#: libraries/messages.inc.php:797 server_replication.php:71 msgid "Unable to change master" msgstr "" -#: libraries/messages.inc.php:802 server_replication.php:51 +#: libraries/messages.inc.php:798 server_replication.php:51 msgid "Unknown error" msgstr "" -#: libraries/messages.inc.php:803 main.php:163 pdf_pages.php:344 +#: libraries/messages.inc.php:799 main.php:163 pdf_pages.php:344 #: setup/lib/FormDisplay.tpl.php:216 tbl_change.php:1175 msgid "Reset" msgstr "Riavvia" -#: libraries/messages.inc.php:804 server_privileges.php:591 +#: libraries/messages.inc.php:800 server_privileges.php:591 msgid "Resource limits" msgstr "Limiti di risorse" -#: libraries/messages.inc.php:805 tbl_change.php:1209 +#: libraries/messages.inc.php:801 tbl_change.php:1209 #, php-format msgid "Restart insertion with %s rows" msgstr "Riprendi inserimento con la riga %s" -#: libraries/messages.inc.php:807 server_privileges.php:1578 +#: libraries/messages.inc.php:803 server_privileges.php:1578 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Revoca tutti i privilegi attivi agli utenti e dopo li cancella." -#: libraries/messages.inc.php:808 server_privileges.php:1176 +#: libraries/messages.inc.php:804 server_privileges.php:1176 #, php-format msgid "You have revoked the privileges for %s" msgstr "Hai revocato i privilegi per %s" -#: libraries/messages.inc.php:809 server_privileges.php:1333 +#: libraries/messages.inc.php:805 server_privileges.php:1333 msgid "Revoke" msgstr "Revoca" -#: libraries/messages.inc.php:810 libraries/mysql_charsets.lib.php:280 +#: libraries/messages.inc.php:806 libraries/mysql_charsets.lib.php:280 msgid "Romanian" msgstr "Rumeno" -#: libraries/messages.inc.php:813 tbl_printview.php:404 tbl_structure.php:786 +#: libraries/messages.inc.php:809 tbl_printview.php:404 tbl_structure.php:786 msgid "Row length" msgstr "Lunghezza riga" -#: libraries/messages.inc.php:815 tbl_printview.php:414 tbl_structure.php:794 +#: libraries/messages.inc.php:811 tbl_printview.php:414 tbl_structure.php:794 msgid " Row size " msgstr "Dimensione riga" -#: libraries/messages.inc.php:821 tbl_printview.php:366 tbl_structure.php:726 +#: libraries/messages.inc.php:817 tbl_printview.php:366 tbl_structure.php:726 msgid "Row Statistics" msgstr "Statistiche righe" -#: libraries/messages.inc.php:822 +#: libraries/messages.inc.php:818 #, php-format msgid "running on %s" msgstr "in esecuzione su %s" -#: libraries/messages.inc.php:824 libraries/sql_query_form.lib.php:223 +#: libraries/messages.inc.php:820 libraries/sql_query_form.lib.php:223 #, php-format msgid "Run SQL query/queries on server %s" msgstr "Eseguendo query SQL sul server %s" -#: libraries/messages.inc.php:825 libraries/sql_query_form.lib.php:240 +#: libraries/messages.inc.php:821 libraries/sql_query_form.lib.php:240 #: libraries/sql_query_form.lib.php:265 #, php-format msgid "Run SQL query/queries on database %s" msgstr "Esegui la/e query SQL sul database %s" -#: libraries/messages.inc.php:826 libraries/mysql_charsets.lib.php:337 +#: libraries/messages.inc.php:822 libraries/mysql_charsets.lib.php:337 msgid "Russian" msgstr "Russo" -#: libraries/messages.inc.php:829 pmd_general.php:68 +#: libraries/messages.inc.php:825 pmd_general.php:68 msgid "Save position" msgstr "Salva la posizione" -#: libraries/messages.inc.php:830 libraries/tbl_properties.inc.php:776 +#: libraries/messages.inc.php:826 libraries/tbl_properties.inc.php:776 #: pdf_pages.php:484 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:214 setup/lib/FormDisplay.tpl.php:215 #: tbl_change.php:1126 tbl_indexes.php:248 tbl_relation.php:566 msgid "Save" msgstr "Salva" -#: libraries/messages.inc.php:831 +#: libraries/messages.inc.php:827 msgid "The scale factor is too small to fit the schema on one page" msgstr "" "Il fattore di scala è troppo piccolo per riempire lo schema nella pagina" -#: libraries/messages.inc.php:843 main.php:298 +#: libraries/messages.inc.php:839 main.php:298 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "Adesso c'è bisogno di una password per il file di configurazione " "(blowfish_secret)." -#: libraries/messages.inc.php:844 navigation.php:353 navigation.php:516 +#: libraries/messages.inc.php:840 navigation.php:353 navigation.php:516 msgid "Please select a database" msgstr "Prego, selezionare un database" -#: libraries/messages.inc.php:846 server_binlog.php:120 +#: libraries/messages.inc.php:842 server_binlog.php:120 msgid "Select binary log to view" msgstr "Selezionare il log binario da visualizzare" -#: libraries/messages.inc.php:847 tbl_select.php:270 +#: libraries/messages.inc.php:843 tbl_select.php:270 msgid "Select fields (at least one):" msgstr "Seleziona campi (almeno uno):" -#: libraries/messages.inc.php:851 pdf_pages.php:320 +#: libraries/messages.inc.php:847 pdf_pages.php:320 msgid "Select Tables" msgstr "Seleziona Tables" -#: libraries/messages.inc.php:853 server_status.php:404 +#: libraries/messages.inc.php:849 server_status.php:404 msgid "Sent" msgstr "Spediti" -#: libraries/messages.inc.php:857 libraries/select_server.lib.php:45 +#: libraries/messages.inc.php:853 libraries/select_server.lib.php:45 #: setup/frames/index.inc.php:97 setup/lib/messages.inc.php:115 msgid "Servers" msgstr "Servers" -#: libraries/messages.inc.php:858 server_status.php:255 +#: libraries/messages.inc.php:854 server_status.php:255 msgid "Delayed inserts" msgstr "Inserimento ritardato" -#: libraries/messages.inc.php:859 server_status.php:46 +#: libraries/messages.inc.php:855 server_status.php:46 msgid "Runtime Information" msgstr "Informazioni di Runtime" -#: libraries/messages.inc.php:860 server_status.php:350 +#: libraries/messages.inc.php:856 server_status.php:350 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Questo server MySQL sta girando da %s. E' stato avviato il %s." -#: libraries/messages.inc.php:861 libraries/server_links.inc.php:53 +#: libraries/messages.inc.php:857 libraries/server_links.inc.php:53 #: server_engines.php:112 server_engines.php:116 server_status.php:304 #: test/theme.php:105 msgid "Variables" msgstr "Variabili" -#: libraries/messages.inc.php:862 server_status.php:383 +#: libraries/messages.inc.php:858 server_status.php:383 msgid "" "Server traffic: These tables show the network traffic statistics of " "this MySQL server since its startup." @@ -5271,11 +5271,11 @@ msgstr "" "Traffico del server: Queste tabelle mostrano le statistiche del " "traffico di rete di questo server MySQL dal momento del suo avvio." -#: libraries/messages.inc.php:863 server_variables.php:35 +#: libraries/messages.inc.php:859 server_variables.php:35 msgid "Server variables and settings" msgstr "Variabili e parametri del Server" -#: libraries/messages.inc.php:865 main.php:290 +#: libraries/messages.inc.php:861 main.php:290 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -5283,7 +5283,7 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: libraries/messages.inc.php:866 +#: libraries/messages.inc.php:862 msgid "" "Cannot start session without errors, please check errors given in your PHP " "and/or webserver log file and configure your PHP installation properly." @@ -5292,11 +5292,11 @@ msgstr "" "di PHP e/o del tuo server web e configura correttamente la tua installazione " "di PHP." -#: libraries/messages.inc.php:867 server_variables.php:55 +#: libraries/messages.inc.php:863 server_variables.php:55 msgid "Session value" msgstr "Valore sessione" -#: libraries/messages.inc.php:868 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:864 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 " @@ -5308,45 +5308,45 @@ msgstr "" "\") o dei single quote (\"'\") davanti a questi valori anteporre un \"\\" "\" (per esempio '\\\\xyz' o 'a\\'b')." -#: libraries/messages.inc.php:876 server_binlog.php:192 server_binlog.php:195 +#: libraries/messages.inc.php:872 server_binlog.php:192 server_binlog.php:195 #: server_processlist.php:49 server_processlist.php:51 msgid "Show Full Queries" msgstr "Mostra query complete" -#: libraries/messages.inc.php:878 pmd_general.php:64 +#: libraries/messages.inc.php:874 pmd_general.php:64 msgid "Show/Hide left menu" msgstr "Mostra/nascondi il menù di sinistra" -#: libraries/messages.inc.php:880 sql.php:513 +#: libraries/messages.inc.php:876 sql.php:513 msgid "Showing as PHP code" msgstr "Mostrando il codice PHP" -#: libraries/messages.inc.php:882 sql.php:516 tbl_replace.php:360 +#: libraries/messages.inc.php:878 sql.php:516 tbl_replace.php:360 msgid "Showing SQL query" msgstr "Mostrando la query SQL" -#: libraries/messages.inc.php:883 tbl_change.php:1132 +#: libraries/messages.inc.php:879 tbl_change.php:1132 #, fuzzy msgid "Show insert query" msgstr "Mostrando la query SQL" -#: libraries/messages.inc.php:886 server_status.php:273 +#: libraries/messages.inc.php:882 server_status.php:273 msgid "Show open tables" msgstr "Mostra le tabelle aperte" -#: libraries/messages.inc.php:887 main.php:219 +#: libraries/messages.inc.php:883 main.php:219 msgid "Show PHP information" msgstr "Mostra le info sul PHP" -#: libraries/messages.inc.php:889 server_status.php:278 +#: libraries/messages.inc.php:885 server_status.php:278 msgid "Show slave hosts" msgstr "Mostra gli hosts slave" -#: libraries/messages.inc.php:890 server_status.php:284 +#: libraries/messages.inc.php:886 server_status.php:284 msgid "Show slave status" msgstr "Mostra lo stato degli slave" -#: libraries/messages.inc.php:891 +#: libraries/messages.inc.php:887 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -5356,12 +5356,12 @@ msgstr "" "ma che oltrepassano il valore di binlog_cache_size e usano un file " "temporaneo per salvare gli statements dalle transazioni." -#: libraries/messages.inc.php:892 +#: libraries/messages.inc.php:888 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Il numero delle transazioni che usano la cache temporanea del log binario." -#: libraries/messages.inc.php:893 +#: libraries/messages.inc.php:889 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -5373,11 +5373,11 @@ msgstr "" "grande, potresti voler aumentare il valore tmp_table_size, per fare im modo " "che le tabelle temporanee siano memory-based anzichè disk-based." -#: libraries/messages.inc.php:894 +#: libraries/messages.inc.php:890 msgid "How many temporary files mysqld has created." msgstr "Numero di file temporanei che mysqld ha creato." -#: libraries/messages.inc.php:895 +#: libraries/messages.inc.php:891 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -5385,7 +5385,7 @@ msgstr "" "Il numero di tabelle temporanee create automaticamente in memoria dal server " "durante l'esecuzione dei comandi." -#: libraries/messages.inc.php:896 +#: libraries/messages.inc.php:892 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -5393,7 +5393,7 @@ msgstr "" "Numero di righe scritte con INSERT DELAYED in cui ci sono stati degli errori " "(probabilmete chiave dublicata)." -#: libraries/messages.inc.php:897 +#: libraries/messages.inc.php:893 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -5401,23 +5401,23 @@ msgstr "" "Il numero di processi INSERT DELAYED in uso. Ciascuna tabella su cui è usato " "INSERT DELAYED occupa un thread." -#: libraries/messages.inc.php:898 +#: libraries/messages.inc.php:894 msgid "The number of INSERT DELAYED rows written." msgstr "Il numero di righe INSERT DELAYED scritte." -#: libraries/messages.inc.php:899 +#: libraries/messages.inc.php:895 msgid "The number of executed FLUSH statements." msgstr "Il numero di comandi FLUSH eseguiti." -#: libraries/messages.inc.php:900 +#: libraries/messages.inc.php:896 msgid "The number of internal COMMIT statements." msgstr "Il numero di comandi interni COMMIT eseguiti." -#: libraries/messages.inc.php:901 +#: libraries/messages.inc.php:897 msgid "The number of times a row was deleted from a table." msgstr "Il numero di volte in cui una riga è stata cancellata da una tabella." -#: libraries/messages.inc.php:902 +#: libraries/messages.inc.php:898 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -5427,7 +5427,7 @@ msgstr "" "tabella sulla base di un nome dato. Questo è chaiamto discovery. " "Handler_discover indica il numero di volte che una tabella è stata trovata." -#: libraries/messages.inc.php:903 +#: libraries/messages.inc.php:899 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -5438,7 +5438,7 @@ msgstr "" "degli indici; per esempio, SELECT col1 FROM foo, assumento che col1 sia " "indicizzata." -#: libraries/messages.inc.php:904 +#: libraries/messages.inc.php:900 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -5447,7 +5447,7 @@ msgstr "" "alta, è un buon indice che le tue query e le tue tabelle sono correttamente " "indicizzate." -#: libraries/messages.inc.php:905 +#: libraries/messages.inc.php:901 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -5458,7 +5458,7 @@ msgstr "" "colonna indice con un range costante, oppure se stai facendo una scansione " "degli indici." -#: libraries/messages.inc.php:906 +#: libraries/messages.inc.php:902 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -5467,7 +5467,7 @@ msgstr "" "chiavi. Questo metodo di lettura è principalmente utilizzato per ottimizzare " "ORDER BY ... DESC." -#: libraries/messages.inc.php:907 +#: libraries/messages.inc.php:903 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -5480,7 +5480,7 @@ msgstr "" "a MySQL di leggere l'intera tabella oppure ci sono dei joins che non usano " "le chiavi correttamente." -#: libraries/messages.inc.php:908 +#: libraries/messages.inc.php:904 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -5493,37 +5493,37 @@ msgstr "" "indicizzate, o che le query non sono state scritte per trarre vantaggi dagli " "indici che hai." -#: libraries/messages.inc.php:909 +#: libraries/messages.inc.php:905 msgid "The number of internal ROLLBACK statements." msgstr "Il numero di comandi ROLLBACK interni." -#: libraries/messages.inc.php:910 +#: libraries/messages.inc.php:906 msgid "The number of requests to update a row in a table." msgstr "Il numero di richieste per aggiornare una riga in una tabella." -#: libraries/messages.inc.php:911 +#: libraries/messages.inc.php:907 msgid "The number of requests to insert a row in a table." msgstr "Il numero di richieste per inserire una riga in una tabella." -#: libraries/messages.inc.php:912 +#: libraries/messages.inc.php:908 msgid "The number of pages containing data (dirty or clean)." msgstr "Il numero di pagine che contengono dati (sporchi o puliti)." -#: libraries/messages.inc.php:913 +#: libraries/messages.inc.php:909 msgid "The number of pages currently dirty." msgstr "Il numero di pagine attualmente sporche." -#: libraries/messages.inc.php:914 +#: libraries/messages.inc.php:910 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" "Il numero di buffer pool pages che hanno avuto richiesta di essere " "aggiornate." -#: libraries/messages.inc.php:915 +#: libraries/messages.inc.php:911 msgid "The number of free pages." msgstr "Il numero di pagine libere." -#: libraries/messages.inc.php:916 +#: libraries/messages.inc.php:912 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -5533,7 +5533,7 @@ msgstr "" "attualmente in lettura o in scittura e non possono essere aggiornate o " "rimosse per altre ragioni." -#: libraries/messages.inc.php:917 +#: libraries/messages.inc.php:913 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -5545,11 +5545,11 @@ msgstr "" "come Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data." -#: libraries/messages.inc.php:918 +#: libraries/messages.inc.php:914 msgid "Total size of buffer pool, in pages." msgstr "Il numero totale di buffer pool, in pagine." -#: libraries/messages.inc.php:919 +#: libraries/messages.inc.php:915 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -5557,7 +5557,7 @@ msgstr "" "Il numero di read-aheads \"random\" InnoDB iniziate. Questo accade quando " "una query legge una porzione di una tabella, ma in ordine casuale." -#: libraries/messages.inc.php:920 +#: libraries/messages.inc.php:916 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -5565,11 +5565,11 @@ msgstr "" "Il numero di read-aheads InnoDB sequanziali. Questo accade quando InnoDB " "esegue una scansione completa sequenziale di una tabella." -#: libraries/messages.inc.php:921 +#: libraries/messages.inc.php:917 msgid "The number of logical read requests InnoDB has done." msgstr "Il numero di richieste logiche che InnoDb ha fatto." -#: libraries/messages.inc.php:922 +#: libraries/messages.inc.php:918 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -5577,7 +5577,7 @@ msgstr "" "Il numero di richieste logiche che InnoDB non può soddisfare dal buffer pool " "e che devono fare una lettura di una pagina singola." -#: libraries/messages.inc.php:923 +#: libraries/messages.inc.php:919 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -5592,55 +5592,55 @@ msgstr "" "dimesione del buffer pool è stata settata correttamente questo valore " "dovrebbe essere basso." -#: libraries/messages.inc.php:924 +#: libraries/messages.inc.php:920 msgid "The number writes done to the InnoDB buffer pool." msgstr "Il numero di scritture effettuate nel buffer pool InnoDB." -#: libraries/messages.inc.php:925 +#: libraries/messages.inc.php:921 msgid "The number of fsync() operations so far." msgstr "Il numero delle operazioni fsync() fino ad ora." -#: libraries/messages.inc.php:926 +#: libraries/messages.inc.php:922 msgid "The current number of pending fsync() operations." msgstr "Il numero di operazioni fsync() in attesa." -#: libraries/messages.inc.php:927 +#: libraries/messages.inc.php:923 msgid "The current number of pending reads." msgstr "Il numero di letture in attesa." -#: libraries/messages.inc.php:928 +#: libraries/messages.inc.php:924 msgid "The current number of pending writes." msgstr "Il numero di scritture in attesa." -#: libraries/messages.inc.php:929 +#: libraries/messages.inc.php:925 msgid "The amount of data read so far, in bytes." msgstr "La quantità di dati letti fino ad ora, in bytes." -#: libraries/messages.inc.php:930 +#: libraries/messages.inc.php:926 msgid "The total number of data reads." msgstr "Il numero totale di dati letti." -#: libraries/messages.inc.php:931 +#: libraries/messages.inc.php:927 msgid "The total number of data writes." msgstr "Il numero totale di dati scritti." -#: libraries/messages.inc.php:932 +#: libraries/messages.inc.php:928 msgid "The amount of data written so far, in bytes." msgstr "La quantità di dati scritti fino ad ora, in bytes." -#: libraries/messages.inc.php:933 +#: libraries/messages.inc.php:929 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Il numero di scritture doublewrite che sono state eseguite ed il numero che " "sono state scritte a questo scopo." -#: libraries/messages.inc.php:934 +#: libraries/messages.inc.php:930 msgid "The number of doublewrite operations that have been performed." msgstr "" "Il numero di scritture doublewrite che sono state eseguite ed il numero che " "sono state scritte a questo scopo." -#: libraries/messages.inc.php:935 +#: libraries/messages.inc.php:931 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -5648,35 +5648,35 @@ msgstr "" "Il numero di attese che abbiamo avuto perchè il buffer di log era troppo " "piccolo e abbiamo duvuto attendere che fosse aggiornato prima di continuare." -#: libraries/messages.inc.php:936 +#: libraries/messages.inc.php:932 msgid "The number of log write requests." msgstr "Il numero di richieste di scrittura dei log." -#: libraries/messages.inc.php:937 +#: libraries/messages.inc.php:933 msgid "The number of physical writes to the log file." msgstr "Il numero scritture fisiche del log file." -#: libraries/messages.inc.php:938 +#: libraries/messages.inc.php:934 msgid "The number of fsync() writes done to the log file." msgstr "Il numero di scritture fsync fatte sul log file." -#: libraries/messages.inc.php:939 +#: libraries/messages.inc.php:935 msgid "The number of pending log file fsyncs." msgstr "Il numero degli fsyncs in sospeso sul log file." -#: libraries/messages.inc.php:940 +#: libraries/messages.inc.php:936 msgid "Pending log file writes." msgstr "Il numero di scritture in sospeso sul log file." -#: libraries/messages.inc.php:941 +#: libraries/messages.inc.php:937 msgid "The number of bytes written to the log file." msgstr "Il numero di bytes scritti sul log file." -#: libraries/messages.inc.php:942 +#: libraries/messages.inc.php:938 msgid "The number of pages created." msgstr "Il numero di pagine create." -#: libraries/messages.inc.php:943 +#: libraries/messages.inc.php:939 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -5685,51 +5685,51 @@ msgstr "" "valori sono conteggiati nelle pagine; la dimesione delle pagine permette di " "convertirli facilmente in bytes." -#: libraries/messages.inc.php:944 +#: libraries/messages.inc.php:940 msgid "The number of pages read." msgstr "Il numero di pagine lette." -#: libraries/messages.inc.php:945 +#: libraries/messages.inc.php:941 msgid "The number of pages written." msgstr "Il numero di pagine scritte." -#: libraries/messages.inc.php:946 +#: libraries/messages.inc.php:942 msgid "The number of row locks currently being waited for." msgstr "Il numero di row locks attualmente in attesa." -#: libraries/messages.inc.php:947 +#: libraries/messages.inc.php:943 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Il tempo medio per l'acquisizione di un row lock, in millisecondi." -#: libraries/messages.inc.php:948 +#: libraries/messages.inc.php:944 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Il tempo totale per l'acquisizione di un row locks, in millisecondi." -#: libraries/messages.inc.php:949 +#: libraries/messages.inc.php:945 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Il tempo massimo per l'acquisizione di un row lock, in millisecondi." -#: libraries/messages.inc.php:950 +#: libraries/messages.inc.php:946 msgid "The number of times a row lock had to be waited for." msgstr "Il numero di volte che un row lock ha dovuto attendere." -#: libraries/messages.inc.php:951 +#: libraries/messages.inc.php:947 msgid "The number of rows deleted from InnoDB tables." msgstr "Il numero di righe cancellate da una tabella InnoDB." -#: libraries/messages.inc.php:952 +#: libraries/messages.inc.php:948 msgid "The number of rows inserted in InnoDB tables." msgstr "Il numero di righe inserite da una tabella InnoDB." -#: libraries/messages.inc.php:953 +#: libraries/messages.inc.php:949 msgid "The number of rows read from InnoDB tables." msgstr "Il numero di righe lette da una tabella InnoDB." -#: libraries/messages.inc.php:954 +#: libraries/messages.inc.php:950 msgid "The number of rows updated in InnoDB tables." msgstr "Il numero di righe aggiornate da una tabella InnoDB." -#: libraries/messages.inc.php:955 +#: libraries/messages.inc.php:951 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -5738,7 +5738,7 @@ msgstr "" "cambiati, ma che non sono stai aggiornati su disco. E' conosciuto con il " "nome di Not_flushed_key_blocks." -#: libraries/messages.inc.php:956 +#: libraries/messages.inc.php:952 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -5746,7 +5746,7 @@ msgstr "" "Il numero di blocchi non usati nella cache chiave. Puoi usare questo valore " "per determinare quanta cache chiave è in uso." -#: libraries/messages.inc.php:957 +#: libraries/messages.inc.php:953 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -5756,11 +5756,11 @@ msgstr "" "the key cache. Questo valore è un'importante segnale che indica il numero " "massimo di blocchi che sono stati in uso contemporaneamente." -#: libraries/messages.inc.php:958 +#: libraries/messages.inc.php:954 msgid "The number of requests to read a key block from the cache." msgstr "Il numero di richieste per le ggere un blocco chiave dalla cache." -#: libraries/messages.inc.php:959 +#: libraries/messages.inc.php:955 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -5771,15 +5771,15 @@ msgstr "" "rapporto di cache miss rate può essere calcolato come Key_reads/" "Key_read_requests." -#: libraries/messages.inc.php:960 +#: libraries/messages.inc.php:956 msgid "The number of requests to write a key block to the cache." msgstr "Il numero di richieste per scrivere una blocco chiave nella cache." -#: libraries/messages.inc.php:961 +#: libraries/messages.inc.php:957 msgid "The number of physical writes of a key block to disk." msgstr "Il numero di scritture fisiche di un blocco chiave sul disco." -#: libraries/messages.inc.php:962 +#: libraries/messages.inc.php:958 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -5790,12 +5790,12 @@ msgstr "" "query per la stessa operazione di query. Il valore di default è 0, che " "significa che nessuna query è stata ancora compilata." -#: libraries/messages.inc.php:963 +#: libraries/messages.inc.php:959 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" "In numero di righe in attesa di essere scritte nella coda INSERT DELAYED." -#: libraries/messages.inc.php:964 +#: libraries/messages.inc.php:960 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -5803,36 +5803,36 @@ msgstr "" "Il numero di tabelle che sono state aperte. Se il valore opened_tables è " "grande, probabilmente il valore di table cache è troppo piccolo." -#: libraries/messages.inc.php:965 +#: libraries/messages.inc.php:961 msgid "The number of files that are open." msgstr "Il numero di file che sono aperti." -#: libraries/messages.inc.php:966 +#: libraries/messages.inc.php:962 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "il numero di stream che sono aperti (usato principalmente per il logging)." -#: libraries/messages.inc.php:967 +#: libraries/messages.inc.php:963 msgid "The number of tables that are open." msgstr "Il numero di tabelle che sono aperte." -#: libraries/messages.inc.php:968 +#: libraries/messages.inc.php:964 msgid "The number of free memory blocks in query cache." msgstr "Il numero di blocchi di memoria liberi nella cache delle query." -#: libraries/messages.inc.php:969 +#: libraries/messages.inc.php:965 msgid "The amount of free memory for query cache." msgstr "L'ammontare di memoria libera nella cache delle query." -#: libraries/messages.inc.php:970 +#: libraries/messages.inc.php:966 msgid "The number of cache hits." msgstr "Il numero di cache hits." -#: libraries/messages.inc.php:971 +#: libraries/messages.inc.php:967 msgid "The number of queries added to the cache." msgstr "Il numero di query aggiunte alla cache." -#: libraries/messages.inc.php:972 +#: libraries/messages.inc.php:968 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -5845,7 +5845,7 @@ msgstr "" "una strategia di \"meno usate recentemente\" (LRU - least recently used) per " "decidere quali query rimuovere dalla cache." -#: libraries/messages.inc.php:973 +#: libraries/messages.inc.php:969 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -5853,24 +5853,24 @@ msgstr "" "Il numero di query non in cache (impossibilità di inserirle nella cache " "oppure non inserite per i settaggi del parametro query_cache_type)." -#: libraries/messages.inc.php:974 +#: libraries/messages.inc.php:970 msgid "The number of queries registered in the cache." msgstr "Il numero di query registrate nella cache." -#: libraries/messages.inc.php:975 +#: libraries/messages.inc.php:971 msgid "The total number of blocks in the query cache." msgstr "Il numero totale di blocchi nella cache delle query." -#: libraries/messages.inc.php:976 +#: libraries/messages.inc.php:972 msgctxt "$strShowStatusReset" msgid "Reset" msgstr "Reset" -#: libraries/messages.inc.php:977 +#: libraries/messages.inc.php:973 msgid "The status of failsafe replication (not yet implemented)." msgstr "Lo sato delle repliche failsafe (non ancora implementato)." -#: libraries/messages.inc.php:978 +#: libraries/messages.inc.php:974 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -5878,13 +5878,13 @@ msgstr "" "Il numero di joins che non usano gli indici. (Se questo valore non è 0, " "dovresti controllare attentamente gli indici delle tue tabelle.)" -#: libraries/messages.inc.php:979 +#: libraries/messages.inc.php:975 msgid "The number of joins that used a range search on a reference table." msgstr "" "Il numero di joins che usano una ricerca limitata su di una tabella di " "riferimento." -#: libraries/messages.inc.php:980 +#: libraries/messages.inc.php:976 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -5893,7 +5893,7 @@ msgstr "" "ogni riga. (Se questo valore non è 0, dovresti controllare attentamente gli " "indici delle tue tabelle.)" -#: libraries/messages.inc.php:981 +#: libraries/messages.inc.php:977 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -5901,17 +5901,17 @@ msgstr "" "Il numero di joins che usano un range sulla prima tabella. (Non è, " "solitamente, un valore critico anche se è grande.)" -#: libraries/messages.inc.php:982 +#: libraries/messages.inc.php:978 msgid "The number of joins that did a full scan of the first table." msgstr "" "Il numero di join che hanno effettuato una scansione completa della prima " "tabella." -#: libraries/messages.inc.php:983 +#: libraries/messages.inc.php:979 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "Il numero di tabelle temporaneamente aperte da processi SQL slave." -#: libraries/messages.inc.php:984 +#: libraries/messages.inc.php:980 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -5919,12 +5919,12 @@ msgstr "" "Numero totale di volte (dalla partenza) in cui la replica slave SQL ha " "ritentato una transazione." -#: libraries/messages.inc.php:985 +#: libraries/messages.inc.php:981 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Questa chiave è ON se questo è un server slave connesso ad un server master." -#: libraries/messages.inc.php:986 +#: libraries/messages.inc.php:982 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -5932,13 +5932,13 @@ msgstr "" "Numero di processi che hanno impiegato più di \"slow_launch_time\" secondi " "per partire." -#: libraries/messages.inc.php:987 +#: libraries/messages.inc.php:983 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "Numero di query che hanno impiegato più di \"long_query_time\" seconds." -#: libraries/messages.inc.php:988 +#: libraries/messages.inc.php:984 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -5948,23 +5948,23 @@ msgstr "" "fatte. Se questo valore è grande, dovresti incrementare la variabile di " "sistema sort_buffer_size." -#: libraries/messages.inc.php:989 +#: libraries/messages.inc.php:985 msgid "The number of sorts that were done with ranges." msgstr "Il numero di ordinamenti che sono stati eseguiti in un intervallo." -#: libraries/messages.inc.php:990 +#: libraries/messages.inc.php:986 msgid "The number of sorted rows." msgstr "Il numero di righe ordinate." -#: libraries/messages.inc.php:991 +#: libraries/messages.inc.php:987 msgid "The number of sorts that were done by scanning the table." msgstr "Il numero di ordinamenti che sono stati fatti leggendo la tabella." -#: libraries/messages.inc.php:992 +#: libraries/messages.inc.php:988 msgid "The number of times that a table lock was acquired immediately." msgstr "Il numero di volte che un table lock è stato eseguito immediatamente." -#: libraries/messages.inc.php:993 +#: libraries/messages.inc.php:989 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -5976,7 +5976,7 @@ msgstr "" "performance, dovresti prima ottimizzare le query, oppure sia utilizzare le " "repliche, sia dividere le tabelle." -#: libraries/messages.inc.php:994 +#: libraries/messages.inc.php:990 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -5986,11 +5986,11 @@ msgstr "" "essere calcolato come processi_creati/connessioni. Se questo valore è rosso " "devi aumentare la tua thread_cache_size." -#: libraries/messages.inc.php:995 +#: libraries/messages.inc.php:991 msgid "The number of currently open connections." msgstr "Il numero di connessioni correntemente aperte." -#: libraries/messages.inc.php:996 +#: libraries/messages.inc.php:992 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -6002,74 +6002,74 @@ msgstr "" "(Normalmente questo non fornisce un significatico incremento delle " "performace se hai una buona implementazione dei processi.)" -#: libraries/messages.inc.php:997 +#: libraries/messages.inc.php:993 msgid "The number of threads that are not sleeping." msgstr "Il numero di processi non in attesa." -#: libraries/messages.inc.php:999 tbl_printview.php:75 +#: libraries/messages.inc.php:995 tbl_printview.php:75 msgid "Show tables" msgstr "Mostra le tabelle" -#: libraries/messages.inc.php:1000 libraries/sql_query_form.lib.php:396 +#: libraries/messages.inc.php:996 libraries/sql_query_form.lib.php:396 msgid " Show this query here again " msgstr "Mostra di nuovo questa query" -#: libraries/messages.inc.php:1001 libraries/mysql_charsets.lib.php:217 +#: libraries/messages.inc.php:997 libraries/mysql_charsets.lib.php:217 #: libraries/mysql_charsets.lib.php:342 msgid "Simplified Chinese" msgstr "Cinese Semplificato" -#: libraries/messages.inc.php:1002 tbl_operations.php:258 +#: libraries/messages.inc.php:998 tbl_operations.php:258 msgid "(singly)" msgstr "(singolarmente)" -#: libraries/messages.inc.php:1005 libraries/replication_gui.lib.php:52 +#: libraries/messages.inc.php:1001 libraries/replication_gui.lib.php:52 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" msgstr "" -#: libraries/messages.inc.php:1006 libraries/mysql_charsets.lib.php:283 +#: libraries/messages.inc.php:1002 libraries/mysql_charsets.lib.php:283 msgid "Slovak" msgstr "Slovacco" -#: libraries/messages.inc.php:1007 libraries/mysql_charsets.lib.php:286 +#: libraries/messages.inc.php:1003 libraries/mysql_charsets.lib.php:286 msgid "Slovenian" msgstr "Sloveno" -#: libraries/messages.inc.php:1008 pmd_general.php:95 +#: libraries/messages.inc.php:1004 pmd_general.php:95 msgid "Small/Big All" msgstr "Espandi/Contrai" -#: libraries/messages.inc.php:1009 pmd_general.php:91 +#: libraries/messages.inc.php:1005 pmd_general.php:91 msgid "Snap to grid" msgstr "Calamita alla griglia" -#: libraries/messages.inc.php:1011 server_synchronize.php:1167 +#: libraries/messages.inc.php:1007 server_synchronize.php:1167 msgid "Socket" msgstr "" -#: libraries/messages.inc.php:1013 server_status.php:259 +#: libraries/messages.inc.php:1009 server_status.php:259 msgid "Sorting" msgstr "Ordinando" -#: libraries/messages.inc.php:1015 tbl_printview.php:310 tbl_structure.php:657 +#: libraries/messages.inc.php:1011 tbl_printview.php:310 tbl_structure.php:657 msgid "Space usage" msgstr "Spazio utilizzato" -#: libraries/messages.inc.php:1016 libraries/mysql_charsets.lib.php:289 +#: libraries/messages.inc.php:1012 libraries/mysql_charsets.lib.php:289 msgid "Spanish" msgstr "Spagnolo" -#: libraries/messages.inc.php:1019 +#: libraries/messages.inc.php:1015 msgid "Export type" msgstr "Tipo di esportazione" -#: libraries/messages.inc.php:1020 +#: libraries/messages.inc.php:1016 msgid "Export time in UTC" msgstr "" -#: libraries/messages.inc.php:1021 libraries/sqlparser.lib.php:173 +#: libraries/messages.inc.php:1017 libraries/sqlparser.lib.php:173 msgid "" "There is a chance that you may have found a bug in the SQL parser. Please " "examine your query closely, and check that the quotes are correct and not " @@ -6093,7 +6093,7 @@ msgstr "" "singola query che causa problemi, e inviare un bug report con i dati " "riportati nella sezione CUT qui sotto:" -#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:137 +#: libraries/messages.inc.php:1018 libraries/sqlparser.lib.php:137 msgid "" "There seems to be an error in your SQL query. The MySQL server error output " "below, if there is any, may also help you in diagnosing the problem" @@ -6101,33 +6101,33 @@ msgstr "" "Pare che ci sia un errore nella query SQL immessa. L'errore del server MySQL " "mostrato qui sotto, se c'è, può anche aiutare nella risoluzione del problema" -#: libraries/messages.inc.php:1026 libraries/sqlparser.lib.php:495 +#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:495 msgid "Invalid Identifer" msgstr "Identificatore Non Valido" -#: libraries/messages.inc.php:1027 libraries/sqlparser.lib.php:344 +#: libraries/messages.inc.php:1023 libraries/sqlparser.lib.php:344 msgid "Unclosed quote" msgstr "Virgolette Non Chiuse" -#: libraries/messages.inc.php:1028 libraries/sqlparser.lib.php:612 +#: libraries/messages.inc.php:1024 libraries/sqlparser.lib.php:612 msgid "Unknown Punctuation String" msgstr "Stringa di Punctuation Sconosciuta" -#: libraries/messages.inc.php:1030 server_replication.php:327 +#: libraries/messages.inc.php:1026 server_replication.php:327 #: server_replication.php:328 #, fuzzy msgid "Start" msgstr "Avvio" -#: libraries/messages.inc.php:1033 tbl_printview.php:369 tbl_structure.php:729 +#: libraries/messages.inc.php:1029 tbl_printview.php:369 tbl_structure.php:729 msgid "Statements" msgstr "Istruzioni" -#: libraries/messages.inc.php:1034 tbl_printview.php:380 tbl_structure.php:741 +#: libraries/messages.inc.php:1030 tbl_printview.php:380 tbl_structure.php:741 msgid "static" msgstr "" -#: libraries/messages.inc.php:1035 server_status.php:388 +#: libraries/messages.inc.php:1031 server_status.php:388 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -6136,43 +6136,43 @@ msgstr "" "e per questa ragione le statistiche riportate dal server MySQL potrebbero " "non essere corrette." -#: libraries/messages.inc.php:1038 server_replication.php:327 +#: libraries/messages.inc.php:1034 server_replication.php:327 #: server_replication.php:328 msgid "Stop" msgstr "" -#: libraries/messages.inc.php:1039 server_engines.php:49 +#: libraries/messages.inc.php:1035 server_engines.php:49 msgid "Storage Engines" msgstr "Motori di Memorizzazione" -#: libraries/messages.inc.php:1040 libraries/tbl_properties.inc.php:726 +#: libraries/messages.inc.php:1036 libraries/tbl_properties.inc.php:726 #: server_engines.php:58 tbl_operations.php:353 msgid "Storage Engine" msgstr "Motore di Memorizzazione" -#: libraries/messages.inc.php:1042 +#: libraries/messages.inc.php:1038 msgid "CSV for MS Excel" msgstr "CSV per dati MS Excel" -#: libraries/messages.inc.php:1044 tbl_structure.php:516 tbl_structure.php:518 +#: libraries/messages.inc.php:1040 tbl_structure.php:516 tbl_structure.php:518 msgid "Propose table structure" msgstr "Proponi la struttura della tabella" -#: libraries/messages.inc.php:1045 server_synchronize.php:424 +#: libraries/messages.inc.php:1041 server_synchronize.php:424 #: server_synchronize.php:867 #, fuzzy msgid "Structure Difference" msgstr "Struttura per la vista" -#: libraries/messages.inc.php:1049 server_synchronize.php:265 +#: libraries/messages.inc.php:1045 server_synchronize.php:265 msgid "Structure Synchronization" msgstr "" -#: libraries/messages.inc.php:1050 libraries/sql_query_form.lib.php:462 +#: libraries/messages.inc.php:1046 libraries/sql_query_form.lib.php:462 msgid "Submit" msgstr "Invia" -#: libraries/messages.inc.php:1052 main.php:358 +#: libraries/messages.inc.php:1048 main.php:358 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -6181,161 +6181,161 @@ msgstr "" "Sul server è in esecuzione Suhosin. Controlla la documentazione: %" "sdocumentation%s per possibili problemi." -#: libraries/messages.inc.php:1054 libraries/mysql_charsets.lib.php:295 +#: libraries/messages.inc.php:1050 libraries/mysql_charsets.lib.php:295 #: libraries/mysql_charsets.lib.php:392 msgid "Swedish" msgstr "Svedese" -#: libraries/messages.inc.php:1060 tbl_operations.php:556 +#: libraries/messages.inc.php:1056 tbl_operations.php:556 msgid "Switch to copied table" msgstr "Passa alla tabella copiata" -#: libraries/messages.inc.php:1061 server_synchronize.php:1213 +#: libraries/messages.inc.php:1057 server_synchronize.php:1213 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." msgstr "" -#: libraries/messages.inc.php:1062 server_synchronize.php:451 +#: libraries/messages.inc.php:1058 server_synchronize.php:451 #: server_synchronize.php:896 msgid "Synchronize Databases" msgstr "" -#: libraries/messages.inc.php:1063 libraries/server_links.inc.php:92 +#: libraries/messages.inc.php:1059 libraries/server_links.inc.php:92 #: server_synchronize.php:1092 server_synchronize.php:1100 msgid "Synchronize" msgstr "" -#: libraries/messages.inc.php:1065 server_synchronize.php:430 +#: libraries/messages.inc.php:1061 server_synchronize.php:430 #: server_synchronize.php:873 msgid "Add column(s)" msgstr "" -#: libraries/messages.inc.php:1066 tbl_create.php:62 +#: libraries/messages.inc.php:1062 tbl_create.php:62 #, php-format msgid "Table %s already exists!" msgstr "La tabella %s esiste già!" -#: libraries/messages.inc.php:1067 server_synchronize.php:432 +#: libraries/messages.inc.php:1063 server_synchronize.php:432 #: server_synchronize.php:875 msgid "Alter column(s)" msgstr "" -#: libraries/messages.inc.php:1068 tbl_addfield.php:189 tbl_alter.php:103 +#: libraries/messages.inc.php:1064 tbl_addfield.php:189 tbl_alter.php:103 #: tbl_indexes.php:98 #, php-format msgid "Table %1$s has been altered successfully" msgstr "La tabella %1$s è già stata modificata con successo" -#: libraries/messages.inc.php:1069 server_synchronize.php:434 +#: libraries/messages.inc.php:1065 server_synchronize.php:434 #: server_synchronize.php:877 msgid "Apply index(s)" msgstr "" -#: libraries/messages.inc.php:1071 server_synchronize.php:446 +#: libraries/messages.inc.php:1067 server_synchronize.php:446 #: server_synchronize.php:890 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: libraries/messages.inc.php:1072 tbl_move_copy.php:82 +#: libraries/messages.inc.php:1068 tbl_move_copy.php:82 msgid "The table name is empty!" msgstr "Il nome della tabella è vuoto!" -#: libraries/messages.inc.php:1073 tbl_create.php:249 +#: libraries/messages.inc.php:1069 tbl_create.php:249 #, php-format msgid "Table %1$s has been created." msgstr "La tabella %1$s è stata creata." -#: libraries/messages.inc.php:1076 tbl_operations.php:628 +#: libraries/messages.inc.php:1072 tbl_operations.php:628 #, php-format msgid "Table %s has been flushed" msgstr "La tabella %s è stata inizializzata" -#: libraries/messages.inc.php:1077 server_synchronize.php:436 +#: libraries/messages.inc.php:1073 server_synchronize.php:436 #: server_synchronize.php:879 msgid "Insert row(s)" msgstr "" -#: libraries/messages.inc.php:1078 libraries/tbl_links.inc.php:107 +#: libraries/messages.inc.php:1074 libraries/tbl_links.inc.php:107 #: libraries/tbl_links.inc.php:140 libraries/tbl_links.inc.php:141 msgid "Table seems to be empty!" msgstr "La tabella sembra essere vuota!" -#: libraries/messages.inc.php:1079 tbl_operations.php:568 +#: libraries/messages.inc.php:1075 tbl_operations.php:568 msgid "Table maintenance" msgstr "Amministrazione tabella" -#: libraries/messages.inc.php:1080 libraries/tbl_properties.inc.php:618 +#: libraries/messages.inc.php:1076 libraries/tbl_properties.inc.php:618 #: server_synchronize.php:428 server_synchronize.php:871 msgid "Table name" msgstr "Nome tabella" -#: libraries/messages.inc.php:1081 pdf_schema.php:1116 +#: libraries/messages.inc.php:1077 pdf_schema.php:1116 msgid "Table of contents" msgstr "Tabella dei contenuti" -#: libraries/messages.inc.php:1082 tbl_operations.php:334 +#: libraries/messages.inc.php:1078 tbl_operations.php:334 msgid "Table options" msgstr "Opzioni della tabella" -#: libraries/messages.inc.php:1083 server_synchronize.php:431 +#: libraries/messages.inc.php:1079 server_synchronize.php:431 #: server_synchronize.php:874 msgid "Remove column(s)" msgstr "" -#: libraries/messages.inc.php:1084 server_synchronize.php:433 +#: libraries/messages.inc.php:1080 server_synchronize.php:433 #: server_synchronize.php:876 msgid "Remove index(s)" msgstr "" -#: libraries/messages.inc.php:1088 server_synchronize.php:435 +#: libraries/messages.inc.php:1084 server_synchronize.php:435 #: server_synchronize.php:878 msgid "Update row(s)" msgstr "" -#: libraries/messages.inc.php:1090 server_synchronize.php:942 +#: libraries/messages.inc.php:1086 server_synchronize.php:942 msgid "Target database has been synchronized with source database" msgstr "" -#: libraries/messages.inc.php:1091 server_privileges.php:392 +#: libraries/messages.inc.php:1087 server_privileges.php:392 #: server_privileges.php:527 server_privileges.php:1679 #: server_privileges.php:1685 msgid "Table-specific privileges" msgstr "Privilegi relativi alle tabelle" -#: libraries/messages.inc.php:1092 server_status.php:254 +#: libraries/messages.inc.php:1088 server_status.php:254 msgid "Temporary data" msgstr "Dati temporanei" -#: libraries/messages.inc.php:1093 tbl_change.php:728 +#: libraries/messages.inc.php:1089 tbl_change.php:728 msgid " Because of its length,
this field might not be editable " msgstr "" " A causa della sua lunghezza,
questo campo non può essere modificato " -#: libraries/messages.inc.php:1094 +#: libraries/messages.inc.php:1090 msgid "Texy! text" msgstr "Testo \"Texy!\"" -#: libraries/messages.inc.php:1095 libraries/mysql_charsets.lib.php:298 +#: libraries/messages.inc.php:1091 libraries/mysql_charsets.lib.php:298 #: libraries/mysql_charsets.lib.php:395 msgid "Thai" msgstr "Thai" -#: libraries/messages.inc.php:1102 libraries/replication_gui.lib.php:308 +#: libraries/messages.inc.php:1098 libraries/replication_gui.lib.php:308 #: server_privileges.php:734 msgid "This Host" msgstr "Questo Host" -#: libraries/messages.inc.php:1103 server_status.php:252 +#: libraries/messages.inc.php:1099 server_status.php:252 msgid "Threads" msgstr "Processi" -#: libraries/messages.inc.php:1104 server_processlist.php:22 +#: libraries/messages.inc.php:1100 server_processlist.php:22 #, php-format msgid "Thread %s was successfully killed." msgstr "Il thread %s è stato terminato con successo." -#: libraries/messages.inc.php:1106 +#: libraries/messages.inc.php:1102 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -6344,185 +6344,185 @@ msgstr "" "vuole dire che che phpMyAdmin non è in grado di ultimare l'operazione fino a " "che non verrà aumentato il parametro php time limits." -#: libraries/messages.inc.php:1109 pmd_pdf.php:94 +#: libraries/messages.inc.php:1105 pmd_pdf.php:94 msgid "to/from page" msgstr "da/per pagina" -#: libraries/messages.inc.php:1110 pdf_pages.php:343 +#: libraries/messages.inc.php:1106 pdf_pages.php:343 msgid "Toggle scratchboard" msgstr "(dis)attiva scratchboard" -#: libraries/messages.inc.php:1111 pmd_general.php:99 +#: libraries/messages.inc.php:1107 pmd_general.php:99 msgid "Toggle small/big" msgstr "Contrai/Espandi" -#: libraries/messages.inc.php:1112 pmd_help.php:27 +#: libraries/messages.inc.php:1108 pmd_help.php:27 msgid "To select relation, click :" msgstr "Per selezionare una relazione, click :" -#: libraries/messages.inc.php:1115 libraries/tbl_links.inc.php:149 +#: libraries/messages.inc.php:1111 libraries/tbl_links.inc.php:149 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" -#: libraries/messages.inc.php:1116 tbl_tracking.php:655 +#: libraries/messages.inc.php:1112 tbl_tracking.php:655 msgid "Activate now" msgstr "" -#: libraries/messages.inc.php:1117 tbl_tracking.php:653 +#: libraries/messages.inc.php:1113 tbl_tracking.php:653 #, php-format msgid "Activate tracking for %s.%s" msgstr "" -#: libraries/messages.inc.php:1118 tbl_tracking.php:221 +#: libraries/messages.inc.php:1114 tbl_tracking.php:221 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/messages.inc.php:1119 tbl_tracking.php:688 +#: libraries/messages.inc.php:1115 tbl_tracking.php:688 #, fuzzy msgid "Create version" msgstr "Crea relazioni" -#: libraries/messages.inc.php:1120 tbl_tracking.php:668 +#: libraries/messages.inc.php:1116 tbl_tracking.php:668 #, php-format msgid "Create version %s of %s.%s" msgstr "" -#: libraries/messages.inc.php:1122 tbl_tracking.php:412 +#: libraries/messages.inc.php:1118 tbl_tracking.php:412 msgid "Data definition statement" msgstr "" -#: libraries/messages.inc.php:1123 tbl_tracking.php:463 +#: libraries/messages.inc.php:1119 tbl_tracking.php:463 msgid "Data manipulation statement" msgstr "" -#: libraries/messages.inc.php:1124 tbl_tracking.php:410 tbl_tracking.php:461 +#: libraries/messages.inc.php:1120 tbl_tracking.php:410 tbl_tracking.php:461 #, fuzzy msgid "Date" msgstr "Dati" -#: libraries/messages.inc.php:1125 tbl_tracking.php:642 +#: libraries/messages.inc.php:1121 tbl_tracking.php:642 msgid "Deactivate now" msgstr "" -#: libraries/messages.inc.php:1126 tbl_tracking.php:640 +#: libraries/messages.inc.php:1122 tbl_tracking.php:640 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "" -#: libraries/messages.inc.php:1127 tbl_tracking.php:521 +#: libraries/messages.inc.php:1123 tbl_tracking.php:521 #, fuzzy, php-format msgid "Export as %s" msgstr "Tipo di esportazione" -#: libraries/messages.inc.php:1130 tbl_tracking.php:251 tbl_tracking.php:379 +#: libraries/messages.inc.php:1126 tbl_tracking.php:251 tbl_tracking.php:379 msgid "Close" msgstr "" -#: libraries/messages.inc.php:1131 tbl_tracking.php:114 +#: libraries/messages.inc.php:1127 tbl_tracking.php:114 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/messages.inc.php:1133 tbl_tracking.php:397 tbl_tracking.php:504 +#: libraries/messages.inc.php:1129 tbl_tracking.php:397 tbl_tracking.php:504 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "" -#: libraries/messages.inc.php:1134 tbl_tracking.php:561 +#: libraries/messages.inc.php:1130 tbl_tracking.php:561 msgid "Show versions" msgstr "" -#: libraries/messages.inc.php:1135 tbl_tracking.php:507 +#: libraries/messages.inc.php:1131 tbl_tracking.php:507 msgid "SQL dump (file download)" msgstr "" -#: libraries/messages.inc.php:1136 tbl_tracking.php:508 +#: libraries/messages.inc.php:1132 tbl_tracking.php:508 msgid "SQL dump" msgstr "" -#: libraries/messages.inc.php:1137 tbl_tracking.php:213 +#: libraries/messages.inc.php:1133 tbl_tracking.php:213 msgid "SQL statements executed." msgstr "" -#: libraries/messages.inc.php:1138 +#: libraries/messages.inc.php:1134 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/messages.inc.php:1139 tbl_tracking.php:509 +#: libraries/messages.inc.php:1135 tbl_tracking.php:509 msgid "SQL execution" msgstr "" -#: libraries/messages.inc.php:1140 tbl_tracking.php:230 +#: libraries/messages.inc.php:1136 tbl_tracking.php:230 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/messages.inc.php:1141 tbl_tracking.php:381 +#: libraries/messages.inc.php:1137 tbl_tracking.php:381 msgid "Tracking statements" msgstr "" -#: libraries/messages.inc.php:1148 tbl_tracking.php:593 +#: libraries/messages.inc.php:1144 tbl_tracking.php:593 #, fuzzy msgid "Version" msgstr "Persiano" -#: libraries/messages.inc.php:1149 tbl_tracking.php:672 +#: libraries/messages.inc.php:1145 tbl_tracking.php:672 msgid "Track these data definition statements:" msgstr "" -#: libraries/messages.inc.php:1150 tbl_tracking.php:680 +#: libraries/messages.inc.php:1146 tbl_tracking.php:680 msgid "Track these data manipulation statements:" msgstr "" -#: libraries/messages.inc.php:1155 tbl_tracking.php:411 tbl_tracking.php:462 +#: libraries/messages.inc.php:1151 tbl_tracking.php:411 tbl_tracking.php:462 #, fuzzy msgid "Username" msgstr "Nome utente:" -#: libraries/messages.inc.php:1156 tbl_tracking.php:203 +#: libraries/messages.inc.php:1152 tbl_tracking.php:203 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "" -#: libraries/messages.inc.php:1157 tbl_tracking.php:187 +#: libraries/messages.inc.php:1153 tbl_tracking.php:187 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "" -#: libraries/messages.inc.php:1158 tbl_tracking.php:195 +#: libraries/messages.inc.php:1154 tbl_tracking.php:195 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "" -#: libraries/messages.inc.php:1159 tbl_tracking.php:262 +#: libraries/messages.inc.php:1155 tbl_tracking.php:262 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/messages.inc.php:1161 tbl_tracking.php:220 +#: libraries/messages.inc.php:1157 tbl_tracking.php:220 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/messages.inc.php:1162 libraries/mysql_charsets.lib.php:219 +#: libraries/messages.inc.php:1158 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:362 msgid "Traditional Chinese" msgstr "Cinese Tradizionale" -#: libraries/messages.inc.php:1163 libraries/mysql_charsets.lib.php:292 +#: libraries/messages.inc.php:1159 libraries/mysql_charsets.lib.php:292 msgid "Traditional Spanish" msgstr "Spagnolo tradizionale" -#: libraries/messages.inc.php:1164 server_status.php:388 +#: libraries/messages.inc.php:1160 server_status.php:388 msgid "Traffic" msgstr "Traffico" -#: libraries/messages.inc.php:1165 server_status.php:261 +#: libraries/messages.inc.php:1161 server_status.php:261 msgid "Transaction coordinator" msgstr "Coordinatore delle transazioni" -#: libraries/messages.inc.php:1166 +#: libraries/messages.inc.php:1162 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 " @@ -6535,7 +6535,7 @@ msgstr "" "schedario. Se fornite una seconda opzione dovete avere la prima opzione " "settata ad una stringa vuota" -#: libraries/messages.inc.php:1167 +#: libraries/messages.inc.php:1163 msgid "" "Displays hexadecimal representation of data. Optional first parameter " "specifies how often space will be added (defaults to 2 nibbles)." @@ -6544,7 +6544,7 @@ msgstr "" "opzionale, specifica ogni quanto deve essere aggiunto uno spazio (default a " "2 nibbles)." -#: libraries/messages.inc.php:1168 +#: libraries/messages.inc.php:1164 msgid "" "Displays a clickable thumbnail. The options are the maximum width and height " "in pixels. The original aspect ratio is preserved." @@ -6552,15 +6552,15 @@ msgstr "" "Mostra un thumbnalil cliccabile; opzioni: larghezza,altezza in pixel " "(mantiere la proporzione iniziale)" -#: libraries/messages.inc.php:1169 +#: libraries/messages.inc.php:1165 msgid "Displays a link to download this image." msgstr "Mostra un link a questa immagine (download blob diretto, i.e.)." -#: libraries/messages.inc.php:1170 +#: libraries/messages.inc.php:1166 msgid "See image/jpeg: inline" msgstr "Vedi immagine/jpeg: inline" -#: libraries/messages.inc.php:1171 +#: libraries/messages.inc.php:1167 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 " @@ -6579,7 +6579,7 @@ msgstr "" "ha differenti valori - per \"local\" guarda la documentazione della funzione " "PHP strftime(); per \"utc\" viene usata la funzione gmdate()." -#: libraries/messages.inc.php:1172 +#: libraries/messages.inc.php:1168 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 " @@ -6604,7 +6604,7 @@ msgstr "" "impostato a 1 inserirà un NOWRAP al contenuto della cella così che l'intero " "output sarà mostrato senza essere riformattato (Predefinito: 1)" -#: libraries/messages.inc.php:1173 +#: libraries/messages.inc.php:1169 msgid "" "Displays the contents of the field as-is, without running it through " "htmlspecialchars(). That is, the field is assumed to contain valid HTML." @@ -6612,7 +6612,7 @@ msgstr "" "Preserva l'originale formattazione del campo. Nessun Escaping viene " "applicato." -#: libraries/messages.inc.php:1174 +#: libraries/messages.inc.php:1170 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 " @@ -6622,7 +6622,7 @@ msgstr "" "del file; la prima opzione è un prefisso come \"http://tuodominio.com/\", la " "seconda opzione è la larghezza in pixel, la terza è l'altezza." -#: libraries/messages.inc.php:1175 +#: libraries/messages.inc.php:1171 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 " @@ -6632,11 +6632,11 @@ msgstr "" "è un prefisso come \"http://tuodominio.com/\", la seconda opzione è un " "titolo per il collegamento." -#: libraries/messages.inc.php:1176 +#: libraries/messages.inc.php:1172 msgid "Formats text as SQL query with syntax highlighting." msgstr "Formatta il testo come query SQL con evidenziazione della sintassi." -#: libraries/messages.inc.php:1177 +#: libraries/messages.inc.php:1173 msgid "" "Displays a part of a string. The first option is the number of characters to " "skip from the beginning of the string (Default 0). The second option is the " @@ -6651,71 +6651,71 @@ msgstr "" "quali caratteri saranno aggiunti in fondo all'output quando una soptto-" "stringa viene restituita (Predefinito: ...) ." -#: libraries/messages.inc.php:1179 server_binlog.php:183 server_binlog.php:186 +#: libraries/messages.inc.php:1175 server_binlog.php:183 server_binlog.php:186 #: server_processlist.php:49 server_processlist.php:51 msgid "Truncate Shown Queries" msgstr "Tronca le Query Mostrate" -#: libraries/messages.inc.php:1180 libraries/mysql_charsets.lib.php:301 +#: libraries/messages.inc.php:1176 libraries/mysql_charsets.lib.php:301 #: libraries/mysql_charsets.lib.php:389 msgid "Turkish" msgstr "Turco" -#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:304 +#: libraries/messages.inc.php:1179 libraries/mysql_charsets.lib.php:304 #: libraries/mysql_charsets.lib.php:386 msgid "Ukrainian" msgstr "Ucraino" -#: libraries/messages.inc.php:1185 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:1181 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 msgid "Unicode" msgstr "Unicode" -#: libraries/messages.inc.php:1187 libraries/mysql_charsets.lib.php:398 +#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:398 #: libraries/mysql_charsets.lib.php:405 msgid "unknown" msgstr "sconosciuto" -#: libraries/messages.inc.php:1190 server_privileges.php:1152 +#: libraries/messages.inc.php:1186 server_privileges.php:1152 #, php-format msgid "You have updated the privileges for %s." msgstr "Hai aggiornato i permessi per %s." -#: libraries/messages.inc.php:1191 user_password.php:112 +#: libraries/messages.inc.php:1187 user_password.php:112 msgid "The profile has been updated." msgstr "Il profilo è stato aggiornato." -#: libraries/messages.inc.php:1193 libraries/relation.lib.php:138 +#: libraries/messages.inc.php:1189 libraries/relation.lib.php:138 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "Prego leggere la documentazione su come aggiornare la vostra tabella " "Column_comments" -#: libraries/messages.inc.php:1194 +#: libraries/messages.inc.php:1190 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Si dovrebbe aggiornare %s alla versione %s o successiva." -#: libraries/messages.inc.php:1204 tbl_printview.php:314 tbl_structure.php:661 +#: libraries/messages.inc.php:1200 tbl_printview.php:314 tbl_structure.php:661 msgid "Usage" msgstr "Utilizzo" -#: libraries/messages.inc.php:1205 +#: libraries/messages.inc.php:1201 msgid "Enclose table and field names with backquotes" msgstr "Usa i backquotes con i nomi delle tabelle e dei campi" -#: libraries/messages.inc.php:1206 libraries/replication_gui.lib.php:314 +#: libraries/messages.inc.php:1202 libraries/replication_gui.lib.php:314 #: server_privileges.php:740 msgid "Use Host Table" msgstr "Utilizza la Tabella dell'Host" -#: libraries/messages.inc.php:1207 server_privileges.php:848 +#: libraries/messages.inc.php:1203 server_privileges.php:848 #, php-format msgid "The user %s already exists!" msgstr "L'utente %s esiste già!" -#: libraries/messages.inc.php:1209 libraries/replication_gui.lib.php:55 +#: libraries/messages.inc.php:1205 libraries/replication_gui.lib.php:55 #: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245 #: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255 #: server_privileges.php:672 server_privileges.php:675 @@ -6723,37 +6723,37 @@ msgstr "L'utente %s esiste già!" msgid "User name" msgstr "Nome utente" -#: libraries/messages.inc.php:1210 server_privileges.php:1645 +#: libraries/messages.inc.php:1206 server_privileges.php:1645 msgid "The selected user was not found in the privilege table." msgstr "L'utente selezionato non è stato trovato nella tabella dei privilegi." -#: libraries/messages.inc.php:1211 server_privileges.php:1365 +#: libraries/messages.inc.php:1207 server_privileges.php:1365 msgid "User overview" msgstr "Vista d'insieme dell'utente" -#: libraries/messages.inc.php:1212 server_privileges.php:1261 +#: libraries/messages.inc.php:1208 server_privileges.php:1261 msgid "The selected users have been deleted successfully." msgstr "Gli utenti selezionati sono stati cancellati con successo." -#: libraries/messages.inc.php:1213 server_privileges.php:2026 +#: libraries/messages.inc.php:1209 server_privileges.php:2026 #, php-format msgid "Users having access to "%s"" msgstr "Utenti che hanno accesso a \"%s\"" -#: libraries/messages.inc.php:1214 main.php:189 server_privileges.php:1350 +#: libraries/messages.inc.php:1210 main.php:189 server_privileges.php:1350 #: server_privileges.php:1497 server_privileges.php:1611 #: server_privileges.php:2029 server_processlist.php:54 msgid "User" msgstr "Utente" -#: libraries/messages.inc.php:1215 tbl_change.php:1171 +#: libraries/messages.inc.php:1211 tbl_change.php:1171 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Usare il tasto TAB per spostare il cursore di valore in valore, o CTRL" "+frecce per spostarlo altrove" -#: libraries/messages.inc.php:1217 libraries/replication_gui.lib.php:251 +#: libraries/messages.inc.php:1213 libraries/replication_gui.lib.php:251 #: libraries/replication_gui.lib.php:319 libraries/replication_gui.lib.php:342 #: server_privileges.php:678 server_privileges.php:745 #: server_privileges.php:769 server_privileges.php:1889 @@ -6761,7 +6761,7 @@ msgstr "" msgid "Use text field" msgstr "Utilizza campo text" -#: libraries/messages.inc.php:1221 libraries/sqlvalidator.lib.php:68 +#: libraries/messages.inc.php:1217 libraries/sqlvalidator.lib.php:68 #, php-format msgid "" "The SQL validator could not be initialized. Please check if you have " @@ -6771,88 +6771,88 @@ msgstr "" "installato le estensioni php necessarie come descritto nella %sdocumentazione" "%s." -#: libraries/messages.inc.php:1222 libraries/replication_gui.lib.php:111 +#: libraries/messages.inc.php:1218 libraries/replication_gui.lib.php:111 #: server_status.php:627 tbl_change.php:324 tbl_printview.php:370 #: tbl_select.php:139 tbl_structure.php:730 msgid "Value" msgstr "Valore" -#: libraries/messages.inc.php:1223 libraries/replication_gui.lib.php:110 +#: libraries/messages.inc.php:1219 libraries/replication_gui.lib.php:110 #: libraries/sql_query_form.lib.php:445 server_status.php:626 #: server_variables.php:52 msgid "Variable" msgstr "Variabile" -#: libraries/messages.inc.php:1225 server_export.php:21 +#: libraries/messages.inc.php:1221 server_export.php:21 msgid "View dump (schema) of databases" msgstr "Visualizza il dump (schema) dei databases" -#: libraries/messages.inc.php:1227 tbl_export.php:23 +#: libraries/messages.inc.php:1223 tbl_export.php:23 msgid "View dump (schema) of table" msgstr "Visualizza dump (schema) della tabella" -#: libraries/messages.inc.php:1231 view_create.php:142 +#: libraries/messages.inc.php:1227 view_create.php:142 msgid "VIEW name" msgstr "Nome VISTA" -#: libraries/messages.inc.php:1237 main.php:205 +#: libraries/messages.inc.php:1233 main.php:205 msgid "Web server" msgstr "Web server" -#: libraries/messages.inc.php:1239 libraries/mysql_charsets.lib.php:277 +#: libraries/messages.inc.php:1235 libraries/mysql_charsets.lib.php:277 #: libraries/mysql_charsets.lib.php:325 msgid "West European" msgstr "Europeo Occidentale" -#: libraries/messages.inc.php:1240 main.php:230 +#: libraries/messages.inc.php:1236 main.php:230 msgid "Wiki" msgstr "Wiki" -#: libraries/messages.inc.php:1241 server_privileges.php:2138 +#: libraries/messages.inc.php:1237 server_privileges.php:2138 msgid "wildcard" msgstr "wildcard" -#: libraries/messages.inc.php:1248 +#: libraries/messages.inc.php:1244 #, fuzzy msgid "Export contents" msgstr "Tipo di esportazione" -#: libraries/messages.inc.php:1249 +#: libraries/messages.inc.php:1245 msgid "Export functions" msgstr "" -#: libraries/messages.inc.php:1250 +#: libraries/messages.inc.php:1246 msgid "Export procedures" msgstr "" -#: libraries/messages.inc.php:1251 +#: libraries/messages.inc.php:1247 msgid "Export Structure Schemas (recommended)" msgstr "" -#: libraries/messages.inc.php:1252 +#: libraries/messages.inc.php:1248 #, fuzzy msgid "Export tables" msgstr "Tipo di esportazione" -#: libraries/messages.inc.php:1253 +#: libraries/messages.inc.php:1249 #, fuzzy msgid "Export triggers" msgstr "Tipo di esportazione" -#: libraries/messages.inc.php:1254 +#: libraries/messages.inc.php:1250 #, fuzzy msgid "Export views" msgstr "Tipo di esportazione" -#: libraries/messages.inc.php:1255 +#: libraries/messages.inc.php:1251 msgid "XML" msgstr "XML" -#: libraries/messages.inc.php:1259 server_privileges.php:592 +#: libraries/messages.inc.php:1255 server_privileges.php:592 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "N.B.: 0 (zero) significa nessun limite." -#: libraries/messages.inc.php:1260 +#: libraries/messages.inc.php:1256 msgid "\"zipped\"" msgstr "\"compresso con zip\"" diff --git a/po/ja.po b/po/ja.po index a138dd617..1610f862c 100644 --- 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-05-13 11:25+0200\n" +"POT-Creation-Date: 2010-05-13 11:30+0200\n" "PO-Revision-Date: 2010-03-12 11:22+0200\n" "Last-Translator: Michal \n" "Language-Team: japanese \n" @@ -15,19 +15,19 @@ msgstr "" "X-Generator: Pootle 2.0.1\n" #: browse_foreigners.php:38 browse_foreigners.php:59 -#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:870 +#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:866 #: server_privileges.php:1475 msgid "Show all" msgstr "すべて表示" #: browse_foreigners.php:82 db_operations.php:648 -#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:394 -#: libraries/export/pdf.php:147 libraries/messages.inc.php:597 +#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394 +#: libraries/export/pdf.php:147 libraries/messages.inc.php:593 #: pdf_schema.php:283 pdf_schema.php:1123 pdf_schema.php:1139 msgid "Page number:" msgstr "ページ番号:" -#: browse_foreigners.php:132 libraries/messages.inc.php:1242 +#: browse_foreigners.php:132 libraries/messages.inc.php:1238 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -40,7 +40,7 @@ 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/db_links.inc.php:75 -#: libraries/messages.inc.php:841 libraries/tbl_links.inc.php:63 +#: libraries/messages.inc.php:837 libraries/tbl_links.inc.php:63 msgid "Search" msgstr "検索" @@ -49,12 +49,12 @@ msgstr "検索" #: db_search.php:362 db_structure.php:567 js/messages.php:48 #: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2267 +#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 #: 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 #: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614 -#: libraries/messages.inc.php:361 libraries/replication_gui.lib.php:73 +#: libraries/messages.inc.php:357 libraries/replication_gui.lib.php:73 #: libraries/replication_gui.lib.php:365 libraries/select_server.lib.php:104 #: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477 #: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782 @@ -74,33 +74,33 @@ msgid "Go" msgstr "実行する" #: browse_foreigners.php:168 browse_foreigners.php:172 -#: libraries/Index.class.php:442 libraries/messages.inc.php:459 +#: libraries/Index.class.php:442 libraries/messages.inc.php:455 #: tbl_tracking.php:320 msgid "Keyname" msgstr "キー名" #: browse_foreigners.php:169 browse_foreigners.php:171 -#: libraries/messages.inc.php:252 server_collations.php:55 +#: libraries/messages.inc.php:248 server_collations.php:55 #: server_collations.php:67 server_engines.php:59 server_status.php:628 msgid "Description" msgstr "説明" #: browse_foreigners.php:247 browse_foreigners.php:256 #: browse_foreigners.php:268 browse_foreigners.php:276 -#: libraries/messages.inc.php:1218 +#: libraries/messages.inc.php:1214 msgid "Use this value" msgstr "この値を利用する" -#: db_create.php:46 libraries/messages.inc.php:215 +#: db_create.php:46 libraries/messages.inc.php:211 #, php-format msgid "Database %1$s has been created." msgstr "データベース %1$s を作成しました。" -#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:232 +#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:228 msgid "Database comment: " msgstr "データベースのコメント:" -#: db_datadict.php:165 libraries/messages.inc.php:1070 +#: db_datadict.php:165 libraries/messages.inc.php:1066 #: libraries/tbl_properties.inc.php:724 pdf_schema.php:1236 #: tbl_operations.php:345 tbl_printview.php:130 msgid "Table comments" @@ -109,7 +109,7 @@ msgstr "テーブルのコメント" #: db_datadict.php:174 db_qbe.php:174 libraries/Index.class.php:446 #: libraries/export/htmlword.php:244 libraries/export/latex.php:360 #: libraries/export/odt.php:294 libraries/export/texytext.php:233 -#: libraries/messages.inc.php:317 libraries/tbl_properties.inc.php:99 +#: libraries/messages.inc.php:313 libraries/tbl_properties.inc.php:99 #: libraries/tbl_properties.inc.php:275 pdf_schema.php:1262 #: pdf_schema.php:1283 tbl_change.php:308 tbl_indexes.php:189 #: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135 @@ -121,7 +121,7 @@ msgstr "フィールド" #: libraries/db_events.inc.php:31 libraries/db_routines.inc.php:42 #: 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/messages.inc.php:1181 +#: libraries/export/texytext.php:234 libraries/messages.inc.php:1177 #: libraries/tbl_properties.inc.php:100 pdf_schema.php:1263 #: pdf_schema.php:1284 server_privileges.php:2031 tbl_change.php:287 #: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313 @@ -133,7 +133,7 @@ msgstr "種別" #: db_datadict.php:177 libraries/Index.class.php:449 #: libraries/export/htmlword.php:246 libraries/export/latex.php:360 #: libraries/export/odt.php:300 libraries/export/texytext.php:235 -#: libraries/messages.inc.php:576 libraries/tbl_properties.inc.php:109 +#: libraries/messages.inc.php:572 libraries/tbl_properties.inc.php:109 #: pdf_schema.php:1265 pdf_schema.php:1286 tbl_change.php:323 #: tbl_printview.php:145 tbl_structure.php:181 tbl_tracking.php:276 #: tbl_tracking.php:327 @@ -142,7 +142,7 @@ msgstr "ヌル(NULL)" #: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 -#: libraries/export/texytext.php:236 libraries/messages.inc.php:238 +#: libraries/export/texytext.php:236 libraries/messages.inc.php:234 #: libraries/tbl_properties.inc.php:106 pdf_schema.php:1266 #: pdf_schema.php:1287 tbl_printview.php:146 tbl_structure.php:182 #: tbl_tracking.php:277 @@ -151,14 +151,14 @@ msgstr "デフォルト値" #: db_datadict.php:182 libraries/export/htmlword.php:249 #: libraries/export/latex.php:362 libraries/export/odt.php:307 -#: libraries/export/texytext.php:238 libraries/messages.inc.php:483 +#: libraries/export/texytext.php:238 libraries/messages.inc.php:479 #: pdf_schema.php:1268 pdf_schema.php:1289 tbl_printview.php:150 msgid "Links to" msgstr "リンク先" #: db_datadict.php:184 db_printview.php:112 libraries/export/htmlword.php:252 #: libraries/export/latex.php:365 libraries/export/odt.php:312 -#: libraries/export/texytext.php:241 libraries/messages.inc.php:163 +#: libraries/export/texytext.php:241 libraries/messages.inc.php:159 #: libraries/tbl_properties.inc.php:130 pdf_schema.php:1279 #: pdf_schema.php:1290 tbl_printview.php:152 msgid "Comments" @@ -167,7 +167,7 @@ msgstr "コメント" #: db_datadict.php:267 libraries/Index.class.php:359 #: 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/messages.inc.php:559 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:555 #: libraries/mult_submits.inc.php:263 pdf_schema.php:1344 #: server_privileges.php:1529 server_privileges.php:1540 #: server_privileges.php:1850 server_privileges.php:1855 @@ -179,7 +179,7 @@ msgstr "いいえ" #: db_datadict.php:267 libraries/Index.class.php:360 #: libraries/Index.class.php:385 libraries/export/htmlword.php:322 #: libraries/export/latex.php:430 libraries/export/odt.php:368 -#: libraries/export/texytext.php:311 libraries/messages.inc.php:1257 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:1253 #: libraries/mult_submits.inc.php:45 libraries/mult_submits.inc.php:50 #: libraries/mult_submits.inc.php:55 libraries/mult_submits.inc.php:60 #: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:101 @@ -193,108 +193,108 @@ msgstr "いいえ" msgid "Yes" msgstr "はい" -#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:670 +#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:666 #: tbl_printview.php:498 msgid "Print" msgstr "印刷" -#: db_export.php:29 libraries/messages.inc.php:1226 +#: db_export.php:29 libraries/messages.inc.php:1222 msgid "View dump (schema) of database" msgstr "DB のダンプ(スキーマ)表示" #: db_export.php:33 db_printview.php:96 db_qbe.php:102 db_structure.php:51 -#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:568 +#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:564 #: navigation.php:346 msgid "No tables found in database." msgstr "このデータベースにはテーブルがありません" -#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:845 +#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:841 #: server_export.php:27 msgid "Select All" msgstr "全選択" -#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1188 +#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1184 #: server_export.php:29 msgid "Unselect All" msgstr "全選択解除" -#: db_operations.php:38 libraries/messages.inc.php:213 tbl_create.php:54 +#: db_operations.php:38 libraries/messages.inc.php:209 tbl_create.php:54 msgid "The database name is empty!" msgstr "データベース名が空です!" -#: db_operations.php:236 libraries/messages.inc.php:753 +#: db_operations.php:236 libraries/messages.inc.php:749 #, php-format msgid "Database %s has been renamed to %s" msgstr "データベース %s を %s にリネームしました" -#: db_operations.php:240 libraries/messages.inc.php:178 +#: db_operations.php:240 libraries/messages.inc.php:174 #, php-format msgid "Database %s has been copied to %s" msgstr "データベース %s を %s にコピーしました" -#: db_operations.php:410 libraries/messages.inc.php:236 +#: db_operations.php:410 libraries/messages.inc.php:232 msgid "Rename database to" msgstr "新しいデータベース名" -#: db_operations.php:415 libraries/messages.inc.php:161 +#: db_operations.php:415 libraries/messages.inc.php:157 #: server_processlist.php:57 msgid "Command" msgstr "コマンド" -#: db_operations.php:425 libraries/messages.inc.php:58 tbl_change.php:1143 +#: db_operations.php:425 libraries/messages.inc.php:54 tbl_change.php:1143 msgid "and then" msgstr "続いて" -#: db_operations.php:451 libraries/messages.inc.php:233 +#: db_operations.php:451 libraries/messages.inc.php:229 msgid "Copy database to" msgstr "データベースのコピー先" -#: db_operations.php:458 libraries/messages.inc.php:1043 +#: db_operations.php:458 libraries/messages.inc.php:1039 #: tbl_operations.php:526 tbl_tracking.php:388 msgid "Structure only" msgstr "構造のみ" -#: db_operations.php:459 libraries/messages.inc.php:1041 +#: db_operations.php:459 libraries/messages.inc.php:1037 #: tbl_operations.php:527 tbl_tracking.php:390 msgid "Structure and data" msgstr "構造とデータ" -#: db_operations.php:460 libraries/messages.inc.php:229 tbl_operations.php:528 +#: db_operations.php:460 libraries/messages.inc.php:225 tbl_operations.php:528 #: tbl_tracking.php:389 msgid "Data only" msgstr "データのみ" -#: db_operations.php:468 libraries/messages.inc.php:186 +#: db_operations.php:468 libraries/messages.inc.php:182 msgid "CREATE DATABASE before copying" msgstr "コピーの前に CREATE DATABASE する" #: db_operations.php:471 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 -#: libraries/export/sql.php:82 libraries/messages.inc.php:30 +#: libraries/export/sql.php:82 libraries/messages.inc.php:26 #: tbl_operations.php:534 #, php-format msgid "Add %s" msgstr "%s を追加" -#: db_operations.php:475 libraries/messages.inc.php:29 tbl_operations.php:297 +#: db_operations.php:475 libraries/messages.inc.php:25 tbl_operations.php:297 #: tbl_operations.php:536 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT 値を追加する" -#: db_operations.php:479 libraries/messages.inc.php:31 tbl_operations.php:543 +#: db_operations.php:479 libraries/messages.inc.php:27 tbl_operations.php:543 msgid "Add constraints" msgstr "制約を追加する" -#: db_operations.php:492 libraries/messages.inc.php:1059 +#: db_operations.php:492 libraries/messages.inc.php:1055 msgid "Switch to copied database" msgstr "コピーしたデータベースに切り替える" -#: db_operations.php:533 libraries/messages.inc.php:89 +#: db_operations.php:533 libraries/messages.inc.php:85 msgid "BLOB Repository" msgstr "" #: db_operations.php:536 db_tracking.php:76 libraries/common.lib.php:1350 -#: libraries/messages.inc.php:1037 libraries/server_links.inc.php:49 +#: libraries/messages.inc.php:1033 libraries/server_links.inc.php:49 #: server_processlist.php:59 tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "状態" @@ -306,11 +306,11 @@ msgctxt "BLOB repository" msgid "Enabled" msgstr "有効" -#: db_operations.php:548 libraries/messages.inc.php:93 +#: db_operations.php:548 libraries/messages.inc.php:89 msgid "Disable" msgstr "" -#: db_operations.php:558 libraries/messages.inc.php:90 +#: db_operations.php:558 libraries/messages.inc.php:86 msgid "Damaged" msgstr "" @@ -328,12 +328,12 @@ msgctxt "BLOB repository" msgid "Disabled" msgstr "無効" -#: db_operations.php:574 libraries/messages.inc.php:96 +#: db_operations.php:574 libraries/messages.inc.php:92 msgid "Enable" msgstr "" #: db_operations.php:598 libraries/Index.class.php:448 -#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:158 +#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:154 #: 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:361 @@ -342,7 +342,7 @@ msgstr "" msgid "Collation" msgstr "照合順序" -#: db_operations.php:609 libraries/messages.inc.php:742 main.php:316 +#: db_operations.php:609 libraries/messages.inc.php:738 main.php:316 #: pdf_schema.php:34 #, php-format msgid "" @@ -352,58 +352,58 @@ msgstr "" "リンクテーブルを処理するための追加機能が無効になっています。理由については%s" "こちら%sをご覧ください" -#: db_operations.php:645 libraries/messages.inc.php:264 pdf_pages.php:528 +#: db_operations.php:645 libraries/messages.inc.php:260 pdf_pages.php:528 msgid "Display PDF schema" msgstr "PDF スキーマを表示する" -#: db_operations.php:661 libraries/messages.inc.php:877 pdf_pages.php:529 +#: db_operations.php:661 libraries/messages.inc.php:873 pdf_pages.php:529 msgid "Show grid" msgstr "グリッドを表示" -#: db_operations.php:664 libraries/messages.inc.php:874 pdf_pages.php:530 +#: db_operations.php:664 libraries/messages.inc.php:870 pdf_pages.php:530 msgid "Show color" msgstr "色表示" -#: db_operations.php:666 libraries/messages.inc.php:998 pdf_pages.php:531 +#: db_operations.php:666 libraries/messages.inc.php:994 pdf_pages.php:531 msgid "Show dimension of tables" msgstr "テーブルの大きさを表示する" -#: db_operations.php:669 libraries/messages.inc.php:52 pdf_pages.php:532 +#: db_operations.php:669 libraries/messages.inc.php:48 pdf_pages.php:532 msgid "Display all tables with the same width" msgstr "すべてのテーブルを同じ幅で表示しますか?" -#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:227 +#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:223 #: pdf_pages.php:533 msgid "Data Dictionary" msgstr "データ辞書" -#: db_operations.php:674 libraries/messages.inc.php:884 pdf_pages.php:534 +#: db_operations.php:674 libraries/messages.inc.php:880 pdf_pages.php:534 msgid "Only show keys" msgstr "" -#: db_operations.php:676 libraries/messages.inc.php:875 pdf_pages.php:535 +#: db_operations.php:676 libraries/messages.inc.php:871 pdf_pages.php:535 msgid "Data Dictionary Format" msgstr "データ辞書形式" -#: db_operations.php:678 libraries/messages.inc.php:464 pdf_pages.php:537 +#: db_operations.php:678 libraries/messages.inc.php:460 pdf_pages.php:537 msgid "Landscape" msgstr "横向き" -#: db_operations.php:679 libraries/messages.inc.php:663 pdf_pages.php:538 +#: db_operations.php:679 libraries/messages.inc.php:659 pdf_pages.php:538 msgid "Portrait" msgstr "縦向き" -#: db_operations.php:682 libraries/messages.inc.php:599 pdf_pages.php:541 +#: db_operations.php:682 libraries/messages.inc.php:595 pdf_pages.php:541 msgid "Paper size" msgstr "用紙サイズ" -#: db_operations.php:706 libraries/messages.inc.php:281 +#: db_operations.php:706 libraries/messages.inc.php:277 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 libraries/messages.inc.php:1087 +#: libraries/header.inc.php:126 libraries/messages.inc.php:1083 #: pdf_pages.php:405 server_privileges.php:1626 server_privileges.php:1682 #: server_privileges.php:1946 server_synchronize.php:423 #: server_synchronize.php:866 tbl_tracking.php:592 test/theme.php:75 @@ -411,176 +411,176 @@ msgid "Table" msgstr "テーブル" #: db_printview.php:105 libraries/db_structure.lib.php:56 -#: libraries/messages.inc.php:735 +#: libraries/messages.inc.php:731 msgid "Records" msgstr "レコード数" #: db_printview.php:109 libraries/db_structure.lib.php:67 -#: libraries/messages.inc.php:1003 tbl_indexes.php:190 +#: libraries/messages.inc.php:999 tbl_indexes.php:190 msgid "Size" msgstr "サイズ" #: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 -#: libraries/export/sql.php:899 libraries/messages.inc.php:436 +#: libraries/export/sql.php:899 libraries/messages.inc.php:432 msgid "in use" msgstr "使用中" #: db_printview.php:187 libraries/db_info.inc.php:88 -#: libraries/export/sql.php:514 libraries/messages.inc.php:1032 +#: libraries/export/sql.php:514 libraries/messages.inc.php:1028 #: pdf_schema.php:1241 tbl_printview.php:434 tbl_structure.php:810 msgid "Creation" msgstr "作成日時" #: db_printview.php:196 libraries/db_info.inc.php:93 -#: libraries/export/sql.php:519 libraries/messages.inc.php:1036 +#: libraries/export/sql.php:519 libraries/messages.inc.php:1032 #: pdf_schema.php:1246 tbl_printview.php:444 tbl_structure.php:818 msgid "Last update" msgstr "最終更新" #: db_printview.php:205 libraries/db_info.inc.php:98 -#: libraries/export/sql.php:524 libraries/messages.inc.php:1031 +#: libraries/export/sql.php:524 libraries/messages.inc.php:1027 #: pdf_schema.php:1251 tbl_printview.php:454 tbl_structure.php:826 msgid "Last check" msgstr "最終検査" -#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1085 +#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1081 #, php-format msgid "%s table(s)" msgstr "%s テーブル" #: db_qbe.php:29 libraries/display_tbl.lib.php:1981 -#: libraries/messages.inc.php:1051 libraries/sql_query_form.lib.php:140 +#: libraries/messages.inc.php:1047 libraries/sql_query_form.lib.php:140 #: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131 #: view_operations.php:62 msgid "Your SQL query has been executed successfully" msgstr "SQL は正常に実行されました" -#: db_qbe.php:42 libraries/messages.inc.php:371 +#: db_qbe.php:42 libraries/messages.inc.php:367 msgid "You have to choose at least one column to display" msgstr "最低ひとつは表示するカラムを選択してください" #: db_qbe.php:200 libraries/db_structure.lib.php:104 -#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1014 +#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1010 msgid "Sort" msgstr "ソート" #: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111 #: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828 -#: libraries/messages.inc.php:69 server_databases.php:170 +#: libraries/messages.inc.php:65 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314 msgid "Ascending" msgstr "昇順" #: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119 #: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825 -#: libraries/messages.inc.php:251 server_databases.php:170 +#: libraries/messages.inc.php:247 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315 msgid "Descending" msgstr "降順" #: db_qbe.php:264 db_tracking.php:78 libraries/display_tbl.lib.php:308 -#: libraries/messages.inc.php:888 tbl_change.php:277 tbl_tracking.php:597 +#: libraries/messages.inc.php:884 tbl_change.php:277 tbl_tracking.php:597 msgid "Show" msgstr "表示" -#: db_qbe.php:300 libraries/messages.inc.php:202 +#: db_qbe.php:300 libraries/messages.inc.php:198 msgid "Criteria" msgstr "条件" #: db_qbe.php:353 db_qbe.php:435 db_qbe.php:527 db_qbe.php:558 -#: libraries/messages.inc.php:718 +#: libraries/messages.inc.php:714 msgid "Ins" msgstr "挿入" #: db_qbe.php:357 db_qbe.php:439 db_qbe.php:524 db_qbe.php:555 -#: libraries/messages.inc.php:56 +#: libraries/messages.inc.php:52 msgid "And" msgstr "および" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:529 db_qbe.php:560 -#: libraries/messages.inc.php:717 +#: libraries/messages.inc.php:713 msgid "Del" msgstr "削除" #: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553 -#: libraries/display_import.lib.php:166 libraries/messages.inc.php:592 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:588 #: libraries/tbl_properties.inc.php:779 server_privileges.php:258 #: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288 msgid "Or" msgstr "または" -#: db_qbe.php:507 libraries/messages.inc.php:516 +#: db_qbe.php:507 libraries/messages.inc.php:512 msgid "Modify" msgstr "修正" -#: db_qbe.php:584 libraries/messages.inc.php:33 +#: db_qbe.php:584 libraries/messages.inc.php:29 msgid "Add/Delete Criteria Row" msgstr "条件行を追加・削除する" -#: db_qbe.php:596 libraries/messages.inc.php:32 +#: db_qbe.php:596 libraries/messages.inc.php:28 msgid "Add/Delete Field Columns" msgstr "フィールド列を追加・削除する" -#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1192 +#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1188 msgid "Update Query" msgstr "クエリを更新する" -#: db_qbe.php:617 libraries/messages.inc.php:1216 +#: db_qbe.php:617 libraries/messages.inc.php:1212 msgid "Use Tables" msgstr "利用するテーブル" -#: db_qbe.php:640 libraries/messages.inc.php:723 +#: db_qbe.php:640 libraries/messages.inc.php:719 #, php-format msgid "SQL query on database %s:" msgstr "データベース %s のSQL:" -#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:823 +#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:819 msgid "Submit Query" msgstr "クエリを実行する" #: db_search.php:68 libraries/auth/config.auth.lib.php:84 #: libraries/auth/config.auth.lib.php:103 #: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52 -#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:26 +#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:22 msgid "Access denied" msgstr "アクセスは拒否されました" -#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:836 +#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:832 msgid "at least one of the words" msgstr "いずれかの単語を含む" -#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:837 +#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:833 msgid "all words" msgstr "すべての単語を含む" -#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:838 +#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:834 msgid "the exact phrase" msgstr "完全一致" -#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:839 +#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:835 msgid "as regular expression" msgstr "正規表現" -#: db_search.php:242 libraries/messages.inc.php:840 +#: db_search.php:242 libraries/messages.inc.php:836 #, php-format msgid "Search results for \"%s\" %s:" msgstr "\"%s\" の検索結果 %s:" -#: db_search.php:260 libraries/messages.inc.php:579 +#: db_search.php:260 libraries/messages.inc.php:575 #, php-format msgid "%s match(es) inside table %s" 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/messages.inc.php:108 +#: db_structure.php:105 libraries/messages.inc.php:104 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468 msgid "Browse" msgstr "表示" #: db_search.php:272 libraries/display_tbl.lib.php:1165 -#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:243 +#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:239 #: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406 #: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377 #: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216 @@ -588,45 +588,45 @@ msgstr "表示" msgid "Delete" msgstr "削除" -#: db_search.php:285 libraries/messages.inc.php:580 +#: db_search.php:285 libraries/messages.inc.php:576 #, php-format msgid "Total: %s match(es)" msgstr "合計: %s 件" -#: db_search.php:299 libraries/messages.inc.php:832 +#: db_search.php:299 libraries/messages.inc.php:828 msgid "Search in database" msgstr "データベース内検索" -#: db_search.php:302 libraries/messages.inc.php:835 +#: db_search.php:302 libraries/messages.inc.php:831 msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgstr "検索する単語や値 (ワイルドカード: \"%\"):" -#: db_search.php:307 libraries/messages.inc.php:842 +#: db_search.php:307 libraries/messages.inc.php:838 msgid "Find:" msgstr "検索条件:" -#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1017 +#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1013 msgid "Words are separated by a space character (\" \")." msgstr "各単語は空白文字(\" \")で区切ってください" -#: db_search.php:325 libraries/messages.inc.php:834 +#: db_search.php:325 libraries/messages.inc.php:830 msgid "Inside table(s):" msgstr "検索するテーブル:" -#: db_search.php:355 libraries/messages.inc.php:833 +#: db_search.php:355 libraries/messages.inc.php:829 msgid "Inside field:" 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/messages.inc.php:431 libraries/sql_query_form.lib.php:334 +#: libraries/messages.inc.php:427 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/db_links.inc.php:63 libraries/export/latex.php:337 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:1048 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:1044 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 #: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269 msgid "Structure" @@ -635,8 +635,8 @@ 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:1642 -#: libraries/db_links.inc.php:100 libraries/messages.inc.php:272 +#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/db_links.inc.php:100 libraries/messages.inc.php:268 #: 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 @@ -646,40 +646,40 @@ 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:1641 -#: libraries/messages.inc.php:284 libraries/mult_submits.inc.php:39 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: libraries/messages.inc.php:280 libraries/mult_submits.inc.php:39 #: libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "空にする" -#: db_structure.php:316 libraries/messages.inc.php:1075 +#: db_structure.php:316 libraries/messages.inc.php:1071 #: libraries/tbl_links.inc.php:100 #, php-format msgid "Table %s has been emptied" msgstr "テーブル %s を空にしました" -#: db_structure.php:326 libraries/messages.inc.php:1229 +#: db_structure.php:326 libraries/messages.inc.php:1225 #: libraries/tbl_links.inc.php:133 #, php-format msgid "View %s has been dropped" msgstr "ビュー %s を破棄しました" -#: db_structure.php:326 libraries/messages.inc.php:1074 +#: db_structure.php:326 libraries/messages.inc.php:1070 #: libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "テーブル %s を削除しました" -#: db_structure.php:333 libraries/messages.inc.php:1128 +#: db_structure.php:333 libraries/messages.inc.php:1124 msgid "Tracking is active." msgstr "" -#: db_structure.php:335 libraries/messages.inc.php:1129 +#: db_structure.php:335 libraries/messages.inc.php:1125 msgid "Tracking is not active." msgstr "" #: db_structure.php:420 libraries/display_tbl.lib.php:1944 -#: libraries/messages.inc.php:1228 +#: libraries/messages.inc.php:1224 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -687,83 +687,83 @@ msgid "" msgstr "このビューの最低行数。詳しくは%sドキュメント%sをご覧ください。" #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 -#: libraries/messages.inc.php:1233 libraries/tbl_info.inc.php:66 +#: libraries/messages.inc.php:1229 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/messages.inc.php:773 libraries/server_links.inc.php:70 +#: libraries/messages.inc.php:769 libraries/server_links.inc.php:70 #: server_replication.php:33 server_replication.php:164 server_status.php:258 msgid "Replication" msgstr "レプリケーション" -#: db_structure.php:489 libraries/messages.inc.php:1053 +#: db_structure.php:489 libraries/messages.inc.php:1049 msgid "Sum" msgstr "合計" #: db_structure.php:496 libraries/StorageEngine.class.php:356 -#: libraries/messages.inc.php:239 +#: libraries/messages.inc.php:235 #, 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 #: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086 -#: libraries/messages.inc.php:1243 libraries/mult_submits.inc.php:16 +#: libraries/messages.inc.php:1239 libraries/mult_submits.inc.php:16 #: server_databases.php:346 server_databases.php:351 #: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465 msgid "With selected:" msgstr "チェックしたものを:" #: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: libraries/messages.inc.php:148 server_databases.php:348 +#: libraries/messages.inc.php:144 server_databases.php:348 #: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459 msgid "Check All" msgstr "すべてチェックする" #: db_structure.php:531 libraries/display_tbl.lib.php:2077 -#: libraries/messages.inc.php:1184 libraries/replication_gui.lib.php:33 +#: libraries/messages.inc.php:1180 libraries/replication_gui.lib.php:33 #: server_databases.php:350 server_privileges.php:533 #: server_privileges.php:1564 tbl_structure.php:463 msgid "Uncheck All" msgstr "すべてのチェックを外す" -#: db_structure.php:536 libraries/messages.inc.php:150 +#: db_structure.php:536 libraries/messages.inc.php:146 msgid "Check tables having overhead" msgstr "オーバーヘッドのあるテーブルを確認してください" #: db_structure.php:547 db_structure.php:548 db_structure.php:599 -#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:672 +#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:668 #: libraries/mult_submits.inc.php:28 tbl_structure.php:493 #: tbl_structure.php:495 msgid "Print view" msgstr "印刷用画面" -#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:153 +#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:149 #: libraries/mult_submits.inc.php:42 tbl_operations.php:579 msgid "Check table" msgstr "テーブルをチェックする" -#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:590 +#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:586 #: libraries/mult_submits.inc.php:47 tbl_operations.php:619 #: tbl_structure.php:710 tbl_structure.php:712 msgid "Optimize table" msgstr "テーブルを最適化する" -#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:758 +#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:754 #: libraries/mult_submits.inc.php:52 tbl_operations.php:609 msgid "Repair table" msgstr "テーブルを修復する" -#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:55 +#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:51 #: libraries/mult_submits.inc.php:57 tbl_operations.php:599 msgid "Analyze table" msgstr "テーブルを分析する" #: db_structure.php:557 db_structure.php:558 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/messages.inc.php:310 +#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:306 #: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84 #: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109 #: server_privileges.php:1341 setup/frames/menu.inc.php:22 @@ -771,7 +771,7 @@ msgstr "テーブルを分析する" msgid "Export" msgstr "エクスポート" -#: db_tracking.php:66 libraries/messages.inc.php:1151 +#: db_tracking.php:66 libraries/messages.inc.php:1147 msgid "Tracked tables" msgstr "" @@ -779,7 +779,7 @@ msgstr "" #: 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/header_printview.inc.php:58 libraries/messages.inc.php:212 +#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:208 #: navigation.php:233 server_databases.php:169 server_privileges.php:1621 #: server_privileges.php:1682 server_privileges.php:1940 #: server_processlist.php:56 server_synchronize.php:1179 @@ -787,76 +787,76 @@ msgstr "" msgid "Database" msgstr "データベース" -#: db_tracking.php:73 libraries/messages.inc.php:1146 +#: db_tracking.php:73 libraries/messages.inc.php:1142 msgid "Last version" msgstr "" -#: db_tracking.php:74 libraries/messages.inc.php:1145 tbl_tracking.php:594 +#: db_tracking.php:74 libraries/messages.inc.php:1141 tbl_tracking.php:594 msgid "Created" msgstr "" -#: db_tracking.php:75 libraries/messages.inc.php:1147 tbl_tracking.php:595 +#: db_tracking.php:75 libraries/messages.inc.php:1143 tbl_tracking.php:595 msgid "Updated" msgstr "" #: db_tracking.php:77 libraries/Index.class.php:440 -#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:27 +#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:23 #: server_databases.php:203 server_privileges.php:1503 #: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187 msgid "Action" msgstr "操作" -#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:247 +#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:243 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:106 libraries/messages.inc.php:1142 tbl_tracking.php:548 +#: db_tracking.php:106 libraries/messages.inc.php:1138 tbl_tracking.php:548 #: tbl_tracking.php:606 tbl_tracking.php:613 msgid "active" msgstr "" -#: db_tracking.php:108 libraries/messages.inc.php:1143 tbl_tracking.php:550 +#: db_tracking.php:108 libraries/messages.inc.php:1139 tbl_tracking.php:550 #: tbl_tracking.php:608 tbl_tracking.php:610 msgid "not active" msgstr "" -#: db_tracking.php:121 libraries/messages.inc.php:1160 +#: db_tracking.php:121 libraries/messages.inc.php:1156 msgid "Versions" msgstr "" -#: db_tracking.php:122 libraries/messages.inc.php:1132 tbl_tracking.php:379 +#: db_tracking.php:122 libraries/messages.inc.php:1128 tbl_tracking.php:379 #: tbl_tracking.php:624 msgid "Tracking report" msgstr "" -#: db_tracking.php:123 libraries/messages.inc.php:1144 tbl_tracking.php:251 +#: db_tracking.php:123 libraries/messages.inc.php:1140 tbl_tracking.php:251 #: tbl_tracking.php:624 msgid "Structure snapshot" msgstr "" -#: db_tracking.php:152 libraries/messages.inc.php:1154 +#: db_tracking.php:152 libraries/messages.inc.php:1150 msgid "Untracked tables" msgstr "" -#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1153 +#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1149 #: tbl_structure.php:529 tbl_structure.php:531 msgid "Track table" msgstr "" -#: db_tracking.php:200 libraries/messages.inc.php:1121 +#: db_tracking.php:200 libraries/messages.inc.php:1117 msgid "Database Log" msgstr "" -#: export.php:62 libraries/messages.inc.php:312 +#: export.php:62 libraries/messages.inc.php:308 msgid "Selected export type has to be saved in file!" msgstr "この形式のエクスポートはファイルに保存する必要があります!" -#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:567 +#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:563 #, php-format msgid "Insufficient space to save the file %s." msgstr "空き容量不足でファイル %s を保存できません" -#: export.php:294 libraries/messages.inc.php:324 +#: export.php:294 libraries/messages.inc.php:320 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -864,17 +864,17 @@ msgstr "" "サーバ上に既存のファイル %s があります。ファイル名を変更するか、上書きオプ" "ションを有効にしてください" -#: export.php:298 export.php:302 libraries/messages.inc.php:562 +#: export.php:298 export.php:302 libraries/messages.inc.php:558 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "このウェブサーバにはファイル %s を保存する権限がありません" -#: export.php:629 libraries/messages.inc.php:276 +#: export.php:629 libraries/messages.inc.php:272 #, php-format msgid "Dump has been saved to file %s." msgstr "ダンプをファイル %s に保存しました" -#: import.php:60 libraries/messages.inc.php:1202 +#: import.php:60 libraries/messages.inc.php:1198 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation%" @@ -884,14 +884,14 @@ msgstr "" "メント%s をご覧ください" #: import.php:279 import.php:332 libraries/File.class.php:849 -#: libraries/File.class.php:961 libraries/messages.inc.php:325 +#: libraries/File.class.php:961 libraries/messages.inc.php:321 msgid "File could not be read" msgstr "ファイルを読み込めませんでした" #: import.php:287 import.php:296 import.php:315 import.php:324 #: libraries/File.class.php:1031 libraries/File.class.php:1039 #: libraries/File.class.php:1055 libraries/File.class.php:1063 -#: libraries/messages.inc.php:1189 +#: libraries/messages.inc.php:1185 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -900,7 +900,7 @@ msgstr "" "サポートされていない圧縮形式(%s)のファイルをロードしようとしました。この形式" "はサポートされていないか設定で無効にされています" -#: import.php:337 libraries/messages.inc.php:547 +#: import.php:337 libraries/messages.inc.php:543 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -911,31 +911,31 @@ msgstr "" "ださい" #: import.php:372 libraries/display_import.lib.php:24 -#: libraries/messages.inc.php:125 +#: libraries/messages.inc.php:121 msgid "Could not load import plugins, please check your installation!" msgstr "" "インポートプラグインをロードできません。正しくインストールされているか確認し" "てください!" -#: import.php:397 libraries/messages.inc.php:102 +#: import.php:397 libraries/messages.inc.php:98 msgid "The bookmark has been deleted." msgstr "ブックマークを削除しました" -#: import.php:401 libraries/messages.inc.php:879 +#: import.php:401 libraries/messages.inc.php:875 msgid "Showing bookmark" msgstr "表示中のブックマーク" -#: import.php:403 libraries/messages.inc.php:101 +#: import.php:403 libraries/messages.inc.php:97 #, php-format msgid "Bookmark %s created" msgstr "ブックマーク %s を作成しました" -#: import.php:409 import.php:415 libraries/messages.inc.php:407 +#: import.php:409 import.php:415 libraries/messages.inc.php:403 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "インポートは正常終了しました。%d 個のクエリを実行しました" -#: import.php:424 libraries/messages.inc.php:1107 +#: import.php:424 libraries/messages.inc.php:1103 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -943,11 +943,11 @@ msgstr "" "スクリプトがタイムアウトしました。インポートを完了させたいのであれば同じファ" "イルを再送信すればインポートが再開されます" -#: index.php:190 libraries/messages.inc.php:553 +#: index.php:190 libraries/messages.inc.php:549 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin はフレーム対応ブラウザでの利用をお勧めします" -#: js/messages.php:25 libraries/messages.inc.php:155 +#: js/messages.php:25 libraries/messages.inc.php:151 #: server_synchronize.php:345 server_synchronize.php:357 #: server_synchronize.php:373 server_synchronize.php:380 #: server_synchronize.php:739 server_synchronize.php:767 @@ -955,116 +955,116 @@ msgstr "phpMyAdmin はフレーム対応ブラウザでの利用をお勧 msgid "Click to select" msgstr "" -#: js/messages.php:26 libraries/messages.inc.php:156 +#: js/messages.php:26 libraries/messages.inc.php:152 msgid "Click to unselect" msgstr "" #: js/messages.php:27 libraries/import.lib.php:103 -#: libraries/messages.inc.php:550 sql.php:89 +#: libraries/messages.inc.php:546 sql.php:89 msgid "\"DROP DATABASE\" statements are disabled." msgstr "DROP DATABASE 文は無効にされています" -#: js/messages.php:30 libraries/messages.inc.php:270 +#: js/messages.php:30 libraries/messages.inc.php:266 #: libraries/mult_submits.inc.php:258 sql.php:188 msgid "Do you really want to " msgstr "本当に実行しますか?" -#: js/messages.php:31 libraries/messages.inc.php:271 +#: js/messages.php:31 libraries/messages.inc.php:267 #: libraries/mult_submits.inc.php:258 sql.php:172 msgid "You are about to DESTROY a complete database!" msgstr "データベースを完全に削除しようとしています!" -#: js/messages.php:34 libraries/messages.inc.php:94 +#: js/messages.php:34 libraries/messages.inc.php:90 msgid "You are about to DISABLE a BLOB Repository!" msgstr "" -#: js/messages.php:35 libraries/messages.inc.php:91 +#: js/messages.php:35 libraries/messages.inc.php:87 #, php-format msgid "Are you sure you want to disable all BLOB references for database %s?" msgstr "" -#: js/messages.php:38 libraries/messages.inc.php:342 +#: js/messages.php:38 libraries/messages.inc.php:338 msgid "Missing value in the form!" msgstr "フォームに入力されていない値があります!" -#: js/messages.php:39 libraries/messages.inc.php:570 +#: js/messages.php:39 libraries/messages.inc.php:566 msgid "This is not a number!" msgstr "数値ではありません!" -#: js/messages.php:42 libraries/messages.inc.php:380 +#: js/messages.php:42 libraries/messages.inc.php:376 msgid "The host name is empty!" msgstr "ホスト名が空です!" -#: js/messages.php:43 libraries/messages.inc.php:1208 +#: js/messages.php:43 libraries/messages.inc.php:1204 msgid "The user name is empty!" msgstr "ユーザ名が空です!" -#: js/messages.php:44 libraries/messages.inc.php:607 +#: js/messages.php:44 libraries/messages.inc.php:603 #: server_privileges.php:1197 user_password.php:70 msgid "The password is empty!" msgstr "パスワードが空です!" -#: js/messages.php:45 libraries/messages.inc.php:609 +#: js/messages.php:45 libraries/messages.inc.php:605 #: server_privileges.php:1195 user_password.php:73 msgid "The passwords aren't the same!" msgstr "パスワードが異なっています!" -#: js/messages.php:49 libraries/messages.inc.php:123 pmd_general.php:342 +#: js/messages.php:49 libraries/messages.inc.php:119 pmd_general.php:342 #: pmd_general.php:379 msgid "Cancel" msgstr "キャンセル" -#: js/messages.php:52 libraries/messages.inc.php:514 +#: js/messages.php:52 libraries/messages.inc.php:510 msgid "Modifications have been saved" msgstr "修正を保存しました" -#: js/messages.php:53 libraries/messages.inc.php:741 +#: js/messages.php:53 libraries/messages.inc.php:737 msgid "Relation deleted" msgstr "リレーションを削除しました" -#: js/messages.php:54 libraries/messages.inc.php:340 +#: js/messages.php:54 libraries/messages.inc.php:336 msgid "FOREIGN KEY relation added" msgstr "外部キーを追加しました" -#: js/messages.php:55 libraries/messages.inc.php:434 +#: js/messages.php:55 libraries/messages.inc.php:430 msgid "Internal relation added" msgstr "内部リレーションを追加しました" -#: js/messages.php:56 libraries/messages.inc.php:299 +#: js/messages.php:56 libraries/messages.inc.php:295 msgid "Error: Relation not added." msgstr "エラー: リレーションを追加できませんでした" -#: js/messages.php:57 libraries/messages.inc.php:300 +#: js/messages.php:57 libraries/messages.inc.php:296 msgid "Error: relation already exists." msgstr "エラー: リレーションはすでに存在しています" -#: js/messages.php:58 libraries/messages.inc.php:302 +#: js/messages.php:58 libraries/messages.inc.php:298 msgid "Error saving coordinates for Designer." msgstr "デザイナの座標を保存するときにエラーが発生しました" -#: js/messages.php:59 libraries/messages.inc.php:351 +#: js/messages.php:59 libraries/messages.inc.php:347 #: libraries/relation.lib.php:107 msgid "General relation features" msgstr "一般的なリレーション機能" -#: js/messages.php:59 libraries/messages.inc.php:260 +#: js/messages.php:59 libraries/messages.inc.php:256 #: libraries/relation.lib.php:101 libraries/relation.lib.php:108 msgid "Disabled" msgstr "無効" -#: js/messages.php:60 libraries/messages.inc.php:850 +#: js/messages.php:60 libraries/messages.inc.php:846 msgid "Select referenced key" msgstr "参照されているキーを選択" -#: js/messages.php:61 libraries/messages.inc.php:848 +#: js/messages.php:61 libraries/messages.inc.php:844 msgid "Select Foreign Key" msgstr "外部キーを選択してください" -#: js/messages.php:62 libraries/messages.inc.php:653 +#: js/messages.php:62 libraries/messages.inc.php:649 msgid "Please select the primary key or a unique key" msgstr "主キーまたはユニークキーを選択してください" -#: js/messages.php:63 libraries/messages.inc.php:142 pmd_general.php:77 +#: js/messages.php:63 libraries/messages.inc.php:138 pmd_general.php:77 #: tbl_relation.php:548 msgid "Choose field to display" msgstr "表示するフィールドを選択してください" @@ -1084,9 +1084,9 @@ msgid "Prev" msgstr "前" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2332 -#: libraries/common.lib.php:2335 libraries/display_tbl.lib.php:338 -#: libraries/messages.inc.php:543 server_binlog.php:205 server_binlog.php:207 +#: js/messages.php:77 libraries/common.lib.php:2344 +#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: libraries/messages.inc.php:539 server_binlog.php:205 server_binlog.php:207 #: tbl_printview.php:424 tbl_structure.php:802 msgid "Next" msgstr "次へ" @@ -1156,27 +1156,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1543 +#: js/messages.php:97 libraries/common.lib.php:1555 msgid "Jan" msgstr "1 月','2 月','3 月','4 月','5 月','6 月" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1545 +#: js/messages.php:99 libraries/common.lib.php:1557 msgid "Feb" msgstr "7 月" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1547 +#: js/messages.php:101 libraries/common.lib.php:1559 msgid "Mar" msgstr "8 月" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1549 +#: js/messages.php:103 libraries/common.lib.php:1561 msgid "Apr" msgstr "9 月" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1551 +#: js/messages.php:105 libraries/common.lib.php:1563 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1184,38 +1184,38 @@ msgid "May" msgstr "10 月" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1553 +#: js/messages.php:107 libraries/common.lib.php:1565 msgid "Jun" msgstr "11 月" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1555 +#: js/messages.php:109 libraries/common.lib.php:1567 #, fuzzy msgid "Jul" msgstr "日" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1557 +#: js/messages.php:111 libraries/common.lib.php:1569 msgid "Aug" msgstr "" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1559 +#: js/messages.php:113 libraries/common.lib.php:1571 msgid "Sep" msgstr "" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1561 +#: js/messages.php:115 libraries/common.lib.php:1573 msgid "Oct" msgstr "" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1563 +#: js/messages.php:117 libraries/common.lib.php:1575 msgid "Nov" msgstr "" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1565 +#: js/messages.php:119 libraries/common.lib.php:1577 msgid "Dec" msgstr "" @@ -1256,37 +1256,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1568 +#: js/messages.php:132 libraries/common.lib.php:1580 msgid "Sun" msgstr "日" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1570 +#: js/messages.php:134 libraries/common.lib.php:1582 msgid "Mon" msgstr "月" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1572 +#: js/messages.php:136 libraries/common.lib.php:1584 msgid "Tue" msgstr "火" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1574 +#: js/messages.php:138 libraries/common.lib.php:1586 msgid "Wed" msgstr "水" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1576 +#: js/messages.php:140 libraries/common.lib.php:1588 msgid "Thu" msgstr "木" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1578 +#: js/messages.php:142 libraries/common.lib.php:1590 msgid "Fri" msgstr "金" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1580 +#: js/messages.php:144 libraries/common.lib.php:1592 msgid "Sat" msgstr "土" @@ -1362,23 +1362,23 @@ msgstr "使用中" msgid "Second" msgstr "/秒" -#: libraries/Config.class.php:1015 libraries/messages.inc.php:338 +#: libraries/Config.class.php:1015 libraries/messages.inc.php:334 msgid "Font size" msgstr "フォントサイズ" #: libraries/File.class.php:344 libraries/File.class.php:432 #: libraries/File.class.php:569 libraries/File.class.php:708 -#: libraries/messages.inc.php:1201 +#: libraries/messages.inc.php:1197 msgid "Unknown error in file upload." msgstr "ファイルのアップロード中に予期しないエラーが発生しました。" -#: libraries/File.class.php:414 libraries/messages.inc.php:1198 +#: libraries/File.class.php:414 libraries/messages.inc.php:1194 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "アップロードしたファイルは php.ini に指定されている upload_max_filesize ディ" "レクティブの値を超えています。" -#: libraries/File.class.php:417 libraries/messages.inc.php:1197 +#: libraries/File.class.php:417 libraries/messages.inc.php:1193 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -1386,57 +1386,57 @@ msgstr "" "アップロードしたファイルは HTML フォームに指定されている MAX_FILE_SIZE ディレ" "クティブの値を超えています。" -#: libraries/File.class.php:420 libraries/messages.inc.php:1200 +#: libraries/File.class.php:420 libraries/messages.inc.php:1196 msgid "The uploaded file was only partially uploaded." msgstr "アップロードしたファイルは一部分しかアップロードできませんでした。" -#: libraries/File.class.php:423 libraries/messages.inc.php:1199 +#: libraries/File.class.php:423 libraries/messages.inc.php:1195 msgid "Missing a temporary folder." msgstr "一時フォルダが見つかりません。" -#: libraries/File.class.php:426 libraries/messages.inc.php:1195 +#: libraries/File.class.php:426 libraries/messages.inc.php:1191 msgid "Failed to write file to disk." msgstr "ファイルをディスクに書き込めません。" -#: libraries/File.class.php:429 libraries/messages.inc.php:1196 +#: libraries/File.class.php:429 libraries/messages.inc.php:1192 msgid "File upload stopped by extension." msgstr "拡張のせいでファイルのアップロードが中断されました。" -#: libraries/File.class.php:908 libraries/messages.inc.php:319 +#: libraries/File.class.php:908 libraries/messages.inc.php:315 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "" "アップロードされたファイルの移動に失敗しました。FAQ 1.11 をご覧ください。" -#: libraries/Index.class.php:428 libraries/messages.inc.php:554 +#: libraries/Index.class.php:428 libraries/messages.inc.php:550 #: tbl_relation.php:529 msgid "No index defined!" msgstr "インデックスが定義されていません!" -#: libraries/Index.class.php:433 libraries/messages.inc.php:411 +#: libraries/Index.class.php:433 libraries/messages.inc.php:407 #: server_databases.php:132 tbl_tracking.php:316 msgid "Indexes" msgstr "インデックスサイズ" -#: libraries/Index.class.php:444 libraries/messages.inc.php:1186 +#: libraries/Index.class.php:444 libraries/messages.inc.php:1182 #: 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:475 tbl_tracking.php:322 msgid "Unique" msgstr "ユニーク" -#: libraries/Index.class.php:445 libraries/messages.inc.php:596 +#: libraries/Index.class.php:445 libraries/messages.inc.php:592 #: tbl_tracking.php:323 msgid "Packed" msgstr "圧縮" -#: libraries/Index.class.php:447 libraries/messages.inc.php:131 +#: libraries/Index.class.php:447 libraries/messages.inc.php:127 #: tbl_tracking.php:325 msgid "Cardinality" msgstr "一意な値の数" -#: libraries/Index.class.php:450 libraries/messages.inc.php:162 +#: libraries/Index.class.php:450 libraries/messages.inc.php:158 #: tbl_tracking.php:279 tbl_tracking.php:328 msgid "Comment" msgstr "コメント" @@ -1444,22 +1444,22 @@ msgstr "コメント" #: libraries/Index.class.php:466 libraries/common.lib.php:616 #: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:280 pdf_pages.php:280 +#: libraries/messages.inc.php:276 pdf_pages.php:280 #: setup/frames/index.inc.php:124 setup/lib/messages.inc.php:352 #: tbl_row_action.php:69 msgid "Edit" msgstr "編集" -#: libraries/Index.class.php:472 libraries/messages.inc.php:666 +#: libraries/Index.class.php:472 libraries/messages.inc.php:662 msgid "The primary key has been dropped" msgstr "主キーを削除しました" -#: libraries/Index.class.php:476 libraries/messages.inc.php:413 +#: libraries/Index.class.php:476 libraries/messages.inc.php:409 #, php-format msgid "Index %s has been dropped" msgstr "インデックス %s を削除しました" -#: libraries/Index.class.php:576 libraries/messages.inc.php:412 +#: libraries/Index.class.php:576 libraries/messages.inc.php:408 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -1468,7 +1468,7 @@ msgstr "" "インデックス %1$s と %2$s は同一のもののようです。一方は削除してもよいかもし" "れません。" -#: libraries/List_Database.class.php:431 libraries/messages.inc.php:218 +#: libraries/List_Database.class.php:431 libraries/messages.inc.php:214 #: libraries/server_links.inc.php:41 server_databases.php:88 #: server_privileges.php:1621 setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" @@ -1495,85 +1495,85 @@ msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." msgstr[0] "%1$d 行挿入しました。" -#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:549 +#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:545 msgid "" "There is no detailed status information available for this storage engine." msgstr "このストレージエンジンにはステータスの詳細情報はありません" -#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:291 +#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:287 #, php-format msgid "%s is available on this MySQL server." msgstr "%s は有効になっています" -#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:292 +#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:288 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s は無効になっています" -#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:294 +#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:290 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "この MySQL サーバは %s ストレージエンジンをサポートしていません" -#: libraries/Table.class.php:1019 libraries/messages.inc.php:443 +#: libraries/Table.class.php:1019 libraries/messages.inc.php:439 msgid "Invalid database" msgstr "不正なデータベースです" -#: libraries/Table.class.php:1033 libraries/messages.inc.php:450 +#: libraries/Table.class.php:1033 libraries/messages.inc.php:446 #: tbl_get_field.php:26 msgid "Invalid table name" msgstr "テーブル名が不正です" -#: libraries/Table.class.php:1048 libraries/messages.inc.php:301 +#: libraries/Table.class.php:1048 libraries/messages.inc.php:297 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "テーブルを %1$s から %2$s にリネームするときにエラーが発生しました" -#: libraries/Table.class.php:1132 libraries/messages.inc.php:754 +#: libraries/Table.class.php:1132 libraries/messages.inc.php:750 #, php-format msgid "Table %s has been renamed to %s" msgstr "テーブル %s を %s にリネームしました" -#: libraries/Theme.class.php:162 libraries/messages.inc.php:1099 +#: libraries/Theme.class.php:162 libraries/messages.inc.php:1095 #, php-format msgid "No valid image path for theme %s found!" msgstr "テーマ %s の画像パスが無効です!" -#: libraries/Theme.class.php:384 libraries/messages.inc.php:1097 +#: libraries/Theme.class.php:384 libraries/messages.inc.php:1093 msgid "No preview available." msgstr "プレビューは利用できません" -#: libraries/Theme.class.php:387 libraries/messages.inc.php:1089 +#: libraries/Theme.class.php:387 libraries/messages.inc.php:1085 msgid "take it" msgstr "これにする" -#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1096 +#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1092 #, php-format msgid "Default theme %s not found!" msgstr "デフォルトテーマ %s が見つかりません!" -#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1098 +#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1094 #, php-format msgid "Theme %s not found!" msgstr "テーマ %s が見つかりません!" -#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1100 +#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1096 #, php-format msgid "Theme path not found for theme %s!" msgstr "テーマ %s のテーマパスが見つかりません!" -#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1101 +#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1097 #: test/theme.php:161 themes.php:21 themes.php:41 msgid "Theme / Style" msgstr "テーマ / スタイル" -#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:172 +#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:168 msgid "Cannot connect: invalid settings." msgstr "接続できません: 設定が無効です" #: libraries/auth/config.auth.lib.php:92 #: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65 -#: libraries/messages.inc.php:1238 test/theme.php:152 +#: libraries/messages.inc.php:1234 test/theme.php:152 #, php-format msgid "Welcome to %s" msgstr "%s へようこそ" @@ -1598,105 +1598,105 @@ msgstr "" "ユーザ名、パスワードが MySQL サーバの管理者から与えられた情報と一致するか確認" "してください" -#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:488 +#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:484 msgid "Log in" msgstr "ログイン" #: libraries/auth/cookie.auth.lib.php:246 -#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:659 +#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:655 #: libraries/navigation_header.inc.php:93 #: libraries/navigation_header.inc.php:95 msgid "phpMyAdmin documentation" msgstr "phpMyAdmin のドキュメント" #: libraries/auth/cookie.auth.lib.php:258 -#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:492 +#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:488 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:493 +#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:489 msgid "Server:" msgstr "サーバ" -#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:494 +#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:490 msgid "Username:" msgstr "ユーザ名:" -#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:491 +#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:487 msgid "Password:" msgstr "パスワード:" -#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:854 +#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:850 msgid "Server Choice" msgstr "サーバの選択" #: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 -#: libraries/messages.inc.php:177 +#: libraries/messages.inc.php:173 msgid "Cookies must be enabled past this point." msgstr "クッキーを有効にしてください" #: libraries/auth/cookie.auth.lib.php:671 -#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:489 +#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:485 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" #: libraries/auth/cookie.auth.lib.php:675 -#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:544 +#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:540 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "%s 秒以上操作をしませんでした。ログインしなおしてください" #: libraries/auth/cookie.auth.lib.php:685 #: libraries/auth/cookie.auth.lib.php:687 -#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:126 +#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:122 msgid "Cannot log in to the MySQL server" msgstr "MySQL サーバにログインできません" -#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1245 +#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1241 msgid "Wrong username/password. Access denied." msgstr "" "ユーザ名ないしパスワードが間違っています。
アクセスは拒否されました" #: libraries/auth/swekey/swekey.auth.lib.php:118 -#: libraries/messages.inc.php:1057 +#: libraries/messages.inc.php:1053 #, php-format msgid "File %s does not contain any key id" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:157 #: libraries/auth/swekey/swekey.auth.lib.php:180 -#: libraries/messages.inc.php:1056 +#: libraries/messages.inc.php:1052 msgid "Hardware authentication failed" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:166 -#: libraries/messages.inc.php:1058 +#: libraries/messages.inc.php:1054 msgid "No valid authentication key plugged" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:202 -#: libraries/messages.inc.php:1055 +#: libraries/messages.inc.php:1051 msgid "Authenticating..." msgstr "" -#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1230 +#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1226 msgid "View image" msgstr "" -#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:652 +#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:648 msgid "Play audio" msgstr "" -#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1232 +#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1228 msgid "View video" msgstr "" -#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:269 +#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:265 msgid "Download file" msgstr "" -#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:128 +#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:124 msgid "" "Couldn't load the iconv or recode extension needed for charset conversion. " "Either configure PHP to enable these extensions or disable charset " @@ -1708,7 +1708,7 @@ msgstr "" #: libraries/charset_conversion.lib.php:79 #: libraries/charset_conversion.lib.php:90 -#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:130 +#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:126 msgid "" "Couldn't use the iconv, libiconv, or recode_string functions, although the " "necessary extensions appear to be loaded. Check your PHP configuration." @@ -1716,7 +1716,7 @@ msgstr "" "必要な拡張はロードされているようですが、iconv や libiconv、recode_string の関" "数を利用できません。PHP の設定を確認してください" -#: libraries/common.inc.php:583 libraries/messages.inc.php:170 +#: libraries/common.inc.php:583 libraries/messages.inc.php:166 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!" @@ -1750,22 +1750,22 @@ msgstr "" msgid "Invalid server index: %s" msgstr "サーバのインデックスが不正です: \"%s\"" -#: libraries/common.inc.php:636 libraries/messages.inc.php:448 +#: libraries/common.inc.php:636 libraries/messages.inc.php:444 #, 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/messages.inc.php:856 libraries/select_server.lib.php:41 +#: libraries/messages.inc.php:852 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/messages.inc.php:437 +#: libraries/common.inc.php:823 libraries/messages.inc.php:433 msgid "Invalid authentication method set in configuration:" msgstr "設定ファイルに無効な認証方法が指定されています:" -#: libraries/common.lib.php:147 libraries/messages.inc.php:499 +#: libraries/common.lib.php:147 libraries/messages.inc.php:495 #, php-format msgid "Max: %s%s" msgstr "最長: %s%s" @@ -1785,7 +1785,7 @@ msgstr "en" #: libraries/common.lib.php:428 libraries/common.lib.php:430 #: libraries/common.lib.php:432 libraries/common.lib.php:448 #: libraries/common.lib.php:450 libraries/dbg/setup.php:25 -#: libraries/display_export.lib.php:164 libraries/messages.inc.php:267 +#: libraries/display_export.lib.php:164 libraries/messages.inc.php:263 #: libraries/relation.lib.php:97 libraries/sql_query_form.lib.php:451 #: libraries/sql_query_form.lib.php:454 main.php:229 pdf_pages.php:37 #: pdf_pages.php:43 pdf_pages.php:49 pdf_pages.php:54 @@ -1795,55 +1795,55 @@ msgstr "ドキュメント" #: libraries/common.lib.php:581 libraries/core.lib.php:234 #: libraries/core.lib.php:263 libraries/import.lib.php:134 -#: libraries/messages.inc.php:297 pdf_schema.php:32 pdf_schema.php:232 +#: libraries/messages.inc.php:293 pdf_schema.php:32 pdf_schema.php:232 #: tbl_change.php:1027 tbl_operations.php:213 tbl_relation.php:290 #: view_operations.php:62 msgid "Error" msgstr "エラー" #: libraries/common.lib.php:595 libraries/header_printview.inc.php:61 -#: libraries/messages.inc.php:1023 server_processlist.php:60 +#: libraries/messages.inc.php:1019 server_processlist.php:60 #: server_status.php:247 msgid "SQL query" msgstr "実行した SQL" -#: libraries/common.lib.php:634 libraries/messages.inc.php:538 +#: libraries/common.lib.php:634 libraries/messages.inc.php:534 msgid "MySQL said: " msgstr "MySQLのメッセージ: " -#: libraries/common.lib.php:667 libraries/messages.inc.php:76 +#: libraries/common.lib.php:667 libraries/messages.inc.php:72 #: pdf_schema.php:241 user_password.php:115 msgid "Back" msgstr "戻る" -#: libraries/common.lib.php:1177 libraries/messages.inc.php:309 +#: libraries/common.lib.php:1177 libraries/messages.inc.php:305 #: setup/lib/messages.inc.php:353 msgid "Explain SQL" msgstr "EXPLAIN で確認" -#: libraries/common.lib.php:1180 libraries/messages.inc.php:551 +#: libraries/common.lib.php:1180 libraries/messages.inc.php:547 msgid "Skip Explain SQL" msgstr "SQL の EXPLAIN 解析をスキップ" -#: libraries/common.lib.php:1212 libraries/messages.inc.php:563 +#: libraries/common.lib.php:1212 libraries/messages.inc.php:559 msgid "Without PHP Code" msgstr "PHP コードを省略" -#: libraries/common.lib.php:1215 libraries/messages.inc.php:649 +#: libraries/common.lib.php:1215 libraries/messages.inc.php:645 #: setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "PHP コードの作成" -#: libraries/common.lib.php:1233 libraries/messages.inc.php:737 +#: libraries/common.lib.php:1233 libraries/messages.inc.php:733 #: server_status.php:341 setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "再描画" -#: libraries/common.lib.php:1242 libraries/messages.inc.php:575 +#: libraries/common.lib.php:1242 libraries/messages.inc.php:571 msgid "Skip Validate SQL" msgstr "SQL の検証をスキップ" -#: libraries/common.lib.php:1245 libraries/messages.inc.php:1220 +#: libraries/common.lib.php:1245 libraries/messages.inc.php:1216 #: setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "SQL の検証" @@ -1859,11 +1859,11 @@ msgid "Inline" msgstr "エンジン" #: libraries/common.lib.php:1332 libraries/common.lib.php:1347 -#: libraries/messages.inc.php:713 +#: libraries/messages.inc.php:709 msgid "Profiling" msgstr "プロファイリング" -#: libraries/common.lib.php:1351 libraries/messages.inc.php:1108 +#: libraries/common.lib.php:1351 libraries/messages.inc.php:1104 #: libraries/tbl_triggers.lib.php:28 server_processlist.php:58 msgid "Time" msgstr "時間" @@ -1897,46 +1897,56 @@ msgstr "PiB" msgid "EiB" msgstr "EiB" +#. l10n: Thousands separator +#: libraries/common.lib.php:1417 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: libraries/common.lib.php:1419 +msgid "." +msgstr "." + #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1584 +#: libraries/common.lib.php:1596 #: libraries/transformations/text_plain__dateformat.inc.php:28 msgid "%B %d, %Y at %I:%M %p" msgstr "%Y 年 %B %d 日 %H:%M" -#: libraries/common.lib.php:1886 +#: libraries/common.lib.php:1898 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s 日 %s 時間 %s 分 %s 秒" -#: libraries/common.lib.php:2301 libraries/common.lib.php:2304 -#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:664 +#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:660 #: server_status.php:608 msgid "Begin" msgstr "先頭" -#: libraries/common.lib.php:2302 libraries/common.lib.php:2305 -#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:665 +#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:661 #: server_binlog.php:168 server_binlog.php:170 msgid "Previous" msgstr "前" -#: libraries/common.lib.php:2333 libraries/common.lib.php:2336 -#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:289 +#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:285 msgid "End" msgstr "最後" -#: libraries/common.lib.php:2409 libraries/messages.inc.php:455 +#: libraries/common.lib.php:2421 libraries/messages.inc.php:451 #, php-format msgid "Jump to database "%s"." msgstr ""%s" データベースに移動" -#: libraries/common.lib.php:2429 libraries/messages.inc.php:461 +#: libraries/common.lib.php:2441 libraries/messages.inc.php:457 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "%s の機能には既知のバグがあります。%s をご覧ください" #: libraries/core.lib.php:286 libraries/dbg/setup.php:22 -#: libraries/messages.inc.php:127 +#: libraries/messages.inc.php:123 #, php-format msgid "" "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " @@ -1946,116 +1956,116 @@ msgstr "" "ん。PHP の設定を確認してください" #: libraries/db_events.inc.php:20 libraries/db_events.inc.php:22 -#: libraries/export/sql.php:415 libraries/messages.inc.php:306 +#: libraries/export/sql.php:415 libraries/messages.inc.php:302 msgid "Events" msgstr "イベント" #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 -#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:541 +#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:537 #: libraries/tbl_triggers.lib.php:27 setup/frames/index.inc.php:112 msgid "Name" msgstr "名前" -#: libraries/db_links.inc.php:45 libraries/messages.inc.php:216 +#: libraries/db_links.inc.php:45 libraries/messages.inc.php:212 #, php-format msgid "Database %s has been dropped." msgstr "データベース %s を削除しました" #: libraries/db_links.inc.php:57 libraries/db_links.inc.php:58 -#: libraries/db_links.inc.php:59 libraries/messages.inc.php:234 +#: libraries/db_links.inc.php:59 libraries/messages.inc.php:230 msgid "Database seems to be empty!" msgstr "データベースが空のようです!" -#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1025 +#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1021 #: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60 #: querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1152 +#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1148 #: libraries/tbl_links.inc.php:69 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:86 libraries/messages.inc.php:719 +#: libraries/db_links.inc.php:86 libraries/messages.inc.php:715 msgid "Query" msgstr "クエリ" -#: libraries/db_links.inc.php:91 libraries/messages.inc.php:253 +#: libraries/db_links.inc.php:91 libraries/messages.inc.php:249 msgid "Designer" msgstr "デザイナ" -#: libraries/db_links.inc.php:98 libraries/messages.inc.php:397 +#: libraries/db_links.inc.php:98 libraries/messages.inc.php:393 #: libraries/server_links.inc.php:88 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:104 libraries/messages.inc.php:587 +#: libraries/db_links.inc.php:104 libraries/messages.inc.php:583 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" msgstr "操作" -#: libraries/db_links.inc.php:111 libraries/messages.inc.php:709 +#: libraries/db_links.inc.php:111 libraries/messages.inc.php:705 #: libraries/server_links.inc.php:66 server_privileges.php:72 #: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117 msgid "Privileges" msgstr "特権" #: libraries/db_routines.inc.php:30 libraries/db_routines.inc.php:32 -#: libraries/messages.inc.php:812 +#: libraries/messages.inc.php:808 msgid "Routines" msgstr "ルーチン" -#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:811 +#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:807 msgid "Return type" msgstr "返り値の種類" #: libraries/db_structure.lib.php:57 libraries/display_tbl.lib.php:1848 -#: libraries/messages.inc.php:65 +#: libraries/messages.inc.php:61 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "正確な数字とは限りません。FAQ 3.11 をご覧ください" -#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:593 +#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:589 #: server_databases.php:142 tbl_printview.php:336 tbl_structure.php:683 msgid "Overhead" msgstr "オーバーヘッド" #: libraries/dbi/mysql.dbi.lib.php:112 libraries/dbi/mysqli.dbi.lib.php:124 -#: libraries/messages.inc.php:176 +#: libraries/messages.inc.php:172 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "設定ファイルに定義されている管理ユーザ(controluser)での接続に失敗しました" #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 -#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:855 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:851 msgid "The server is not responding" msgstr "サーバが応答しません" #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:1010 +#: libraries/messages.inc.php:1006 msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "(あるいはローカルの MySQL サーバのソケットが正しく設定されていません)" -#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:255 +#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:251 #: tbl_structure.php:609 msgid "Details..." msgstr "詳細..." -#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:143 +#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:139 #: main.php:91 user_password.php:111 user_password.php:129 msgid "Change password" msgstr "パスワードを変更する" -#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:561 +#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:557 #: libraries/replication_gui.lib.php:341 server_privileges.php:768 msgid "No Password" msgstr "パスワードなし" -#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:610 +#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:606 #: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60 #: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335 #: libraries/replication_gui.lib.php:345 server_privileges.php:757 @@ -2064,13 +2074,13 @@ msgstr "パスワードなし" msgid "Password" msgstr "パスワード" -#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:806 +#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:802 #: libraries/replication_gui.lib.php:349 libraries/replication_gui.lib.php:352 #: server_privileges.php:776 server_privileges.php:779 msgid "Re-type" msgstr "もう一度入力してください" -#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:608 +#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:604 msgid "Password Hashing" msgstr "パスワードハッシュ" @@ -2080,91 +2090,91 @@ msgstr "パスワードハッシュ" msgid "MySQL 4.0 compatible" msgstr "MySQL 4.0 互換" -#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:353 +#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:349 #: libraries/replication_gui.lib.php:356 server_privileges.php:783 msgid "Generate Password" msgstr "パスワードを生成する" -#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:352 +#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:348 #: libraries/replication_gui.lib.php:359 server_privileges.php:786 msgid "Generate" msgstr "生成する" #: libraries/display_create_database.lib.php:22 -#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:189 +#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:185 msgid "Create new database" msgstr "新規データベースを作成する" -#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:185 +#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:181 msgid "Create" msgstr "作成" -#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:564 +#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:560 #: server_privileges.php:74 server_privileges.php:1388 #: server_replication.php:35 msgid "No Privileges" msgstr "特権なし" -#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:445 +#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:441 msgid "Table must have at least one field." msgstr "テーブルには最低ひとつのフィールドが必要です" -#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:190 +#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:186 #, php-format msgid "Create table on database %s" msgstr "データベース %s に新しいテーブルを作成する" -#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:577 +#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:573 msgid "Number of fields" msgstr "フィールド数" -#: libraries/display_export.lib.php:42 libraries/messages.inc.php:124 +#: libraries/display_export.lib.php:42 libraries/messages.inc.php:120 msgid "Could not load export plugins, please check your installation!" msgstr "" "エクスポートプラグインをロードできません。正しくインストールされているか確認" "してください!" -#: libraries/display_export.lib.php:107 libraries/messages.inc.php:277 +#: libraries/display_export.lib.php:107 libraries/messages.inc.php:273 #, php-format msgid "Dump %s row(s) starting at record # %s" msgstr "%s 行をダンプします(開始行: %s)" -#: libraries/display_export.lib.php:115 libraries/messages.inc.php:274 +#: libraries/display_export.lib.php:115 libraries/messages.inc.php:270 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:125 libraries/messages.inc.php:852 +#: libraries/display_export.lib.php:125 libraries/messages.inc.php:848 #: setup/lib/messages.inc.php:82 msgid "Save as file" msgstr "ファイルに保存する" -#: libraries/display_export.lib.php:134 libraries/messages.inc.php:828 +#: libraries/display_export.lib.php:134 libraries/messages.inc.php:824 #, php-format msgid "Save on server in %s directory" msgstr "サーバ上のディレクトリ %s に保存する" -#: libraries/display_export.lib.php:142 libraries/messages.inc.php:594 +#: libraries/display_export.lib.php:142 libraries/messages.inc.php:590 #: setup/lib/messages.inc.php:90 msgid "Overwrite existing file(s)" msgstr "既存のファイルは上書き" -#: libraries/display_export.lib.php:148 libraries/messages.inc.php:330 +#: libraries/display_export.lib.php:148 libraries/messages.inc.php:326 msgid "File name template" msgstr "ファイル名のテンプレート" -#: libraries/display_export.lib.php:152 libraries/messages.inc.php:327 +#: libraries/display_export.lib.php:152 libraries/messages.inc.php:323 msgid "server name" msgstr "サーバ名" -#: libraries/display_export.lib.php:155 libraries/messages.inc.php:326 +#: libraries/display_export.lib.php:155 libraries/messages.inc.php:322 msgid "database name" msgstr "データベース名" -#: libraries/display_export.lib.php:158 libraries/messages.inc.php:328 +#: libraries/display_export.lib.php:158 libraries/messages.inc.php:324 msgid "table name" msgstr "テーブル名" -#: libraries/display_export.lib.php:162 libraries/messages.inc.php:329 +#: libraries/display_export.lib.php:162 libraries/messages.inc.php:325 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2175,24 +2185,24 @@ msgstr "" "式文字列を利用できます。また、次の変換も行われます。%3$s それ以外のテキストは" "修正されません" -#: libraries/display_export.lib.php:202 libraries/messages.inc.php:331 +#: libraries/display_export.lib.php:202 libraries/messages.inc.php:327 msgid "remember template" msgstr "テンプレートを記憶させる" #: libraries/display_export.lib.php:210 libraries/display_import.lib.php:178 -#: libraries/display_import.lib.php:191 libraries/messages.inc.php:145 +#: libraries/display_import.lib.php:191 libraries/messages.inc.php:141 #: libraries/sql_query_form.lib.php:549 msgid "Character set of the file:" msgstr "ファイルの文字セット:" -#: libraries/display_export.lib.php:235 libraries/messages.inc.php:166 +#: libraries/display_export.lib.php:235 libraries/messages.inc.php:162 #: setup/lib/messages.inc.php:84 msgid "Compression" 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/messages.inc.php:558 +#: libraries/export/sql.php:868 libraries/messages.inc.php:554 #: libraries/tbl_properties.inc.php:575 server_privileges.php:1836 #: server_processlist.php:75 msgid "None" @@ -2216,67 +2226,67 @@ msgstr "\"gzip 形式\"" msgid "bzipped" msgstr "\"bzip 形式\"" -#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1018 +#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1014 msgid "SQL compatibility mode" msgstr "SQL互換モード" -#: libraries/display_import.lib.php:67 libraries/messages.inc.php:398 +#: libraries/display_import.lib.php:67 libraries/messages.inc.php:394 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " "browsers." msgstr "" -#: libraries/display_import.lib.php:77 libraries/messages.inc.php:406 +#: libraries/display_import.lib.php:77 libraries/messages.inc.php:402 msgid "The file is being processed, please be patient." msgstr "" -#: libraries/display_import.lib.php:99 libraries/messages.inc.php:408 +#: libraries/display_import.lib.php:99 libraries/messages.inc.php:404 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." msgstr "" -#: libraries/display_import.lib.php:126 libraries/messages.inc.php:333 +#: libraries/display_import.lib.php:126 libraries/messages.inc.php:329 msgid "File to import" msgstr "インポートするファイル" -#: libraries/display_import.lib.php:137 libraries/messages.inc.php:486 +#: libraries/display_import.lib.php:137 libraries/messages.inc.php:482 #: libraries/sql_query_form.lib.php:524 msgid "Location of the text file" msgstr "テキストファイルの位置" -#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1203 +#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1199 msgid "File uploads are not allowed on this server." msgstr "このサーバではファイルのアップロードはできません" -#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1235 +#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1231 #: libraries/sql_query_form.lib.php:533 tbl_change.php:1028 msgid "The directory you set for upload work cannot be reached" msgstr "指定したアップロードディレクトリが利用できません" -#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1236 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1232 #: libraries/sql_query_form.lib.php:536 tbl_change.php:1031 msgid "web server upload directory" msgstr "ウェブサーバ上のアップロードディレクトリ" -#: libraries/display_import.lib.php:212 libraries/messages.inc.php:167 +#: libraries/display_import.lib.php:212 libraries/messages.inc.php:163 #, php-format msgid "Imported file compression will be automatically detected from: %s" msgstr "インポートしたファイルの圧縮方法は次の中から自動検出されます: %s" -#: libraries/display_import.lib.php:219 libraries/messages.inc.php:600 +#: libraries/display_import.lib.php:219 libraries/messages.inc.php:596 msgid "Partial import" msgstr "部分インポート" -#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1105 +#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1101 #, php-format msgid "" "Previous import timed out, after resubmitting will continue from position %d." msgstr "" "直前のインポートはタイムアウトしました。再送信すると位置 %d から再開されます" -#: libraries/display_import.lib.php:232 libraries/messages.inc.php:51 +#: libraries/display_import.lib.php:232 libraries/messages.inc.php:47 msgid "" "Allow the interruption of an import in case the script detects it is close " "to the PHP timeout limit. This might be good way to import large files, " @@ -2286,177 +2296,177 @@ msgstr "" "大きなファイルをインポートする場合には便利ですが、トランザクションが壊れるこ" "ともあります" -#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1004 +#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1000 #: setup/lib/messages.inc.php:161 msgid "Number of records (queries) to skip from start" msgstr "先頭から数えたスキップするレコード(クエリ)の数" -#: libraries/display_import.lib.php:255 libraries/messages.inc.php:396 +#: libraries/display_import.lib.php:255 libraries/messages.inc.php:392 #: setup/lib/messages.inc.php:160 msgid "Format of imported file" msgstr "インポートするファイルの形式" #: libraries/display_select_lang.lib.php:45 -#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:465 +#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:461 #: setup/frames/index.inc.php:70 msgid "Language" msgstr "言語" -#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:447 +#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:443 #, php-format msgid "%d is not valid row number." msgstr "%d は不正な行番号です" -#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:814 +#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:810 msgid "row(s) starting from record #" msgstr "開始行" -#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:817 +#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:813 msgid "horizontal" msgstr "水平" -#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:816 +#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:812 msgid "horizontal (rotated headers)" msgstr "水平 (ヘッダも回転)" -#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:819 +#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:815 msgid "vertical" msgstr "垂直" -#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:818 +#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:814 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "モード: %s (%s セルごとにヘッダを表示)" -#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:495 +#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:491 msgid "This operation could take a long time. Proceed anyway?" msgstr "この作業には時間がかかることがあります。続行しますか?" -#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1012 +#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1008 msgid "Sort by key" msgstr "キーでソート" #: libraries/display_tbl.lib.php:555 libraries/import.lib.php:1082 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:591 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:587 #: tbl_select.php:267 tbl_structure.php:754 msgid "Options" msgstr "オプション" #: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:570 -#: libraries/messages.inc.php:601 +#: libraries/messages.inc.php:597 msgid "Partial Texts" msgstr "部分テキスト" #: libraries/display_tbl.lib.php:561 libraries/display_tbl.lib.php:574 -#: libraries/messages.inc.php:346 +#: libraries/messages.inc.php:342 msgid "Full Texts" msgstr "全文" -#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:739 +#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:735 msgid "Relational key" msgstr "リレーションキー" -#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:738 +#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:734 msgid "Relational display field" msgstr "リレーション表示フィールド" -#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:872 +#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:868 msgid "Show binary contents" msgstr "" -#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:873 +#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:869 msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:871 +#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:867 msgid "Show binary contents as HEX" msgstr "" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:375 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:371 #: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320 msgid "Hide" msgstr "隠す" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:508 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:504 #: libraries/tbl_properties.inc.php:144 transformation_overview.php:47 msgid "Browser transformation" msgstr "ブラウザ変換機能" #: libraries/display_tbl.lib.php:1126 libraries/display_tbl.lib.php:1130 -#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:308 +#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:304 msgid "Execute bookmarked query" msgstr "ブックマークされたクエリを実行する" #: libraries/display_tbl.lib.php:1145 libraries/display_tbl.lib.php:1157 -#: libraries/messages.inc.php:244 +#: libraries/messages.inc.php:240 msgid "The row has been deleted" msgstr "行を削除しました" #: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056 -#: libraries/messages.inc.php:460 server_processlist.php:71 +#: libraries/messages.inc.php:456 server_processlist.php:71 #: tbl_row_action.php:64 msgid "Kill" msgstr "停止" -#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:849 +#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:845 msgid "in query" msgstr "行/クエリ" -#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:881 +#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:877 msgid "Showing rows" msgstr "表示中の列" -#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1113 +#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1109 msgid "total" msgstr "合計" -#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:727 +#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:723 #: sql.php:524 #, php-format msgid "Query took %01.4f sec" msgstr "クエリの実行時間 %01.4f 秒" -#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:135 +#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:131 #: 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:471 msgid "Change" msgstr "変更" -#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:724 +#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:720 msgid "Query results operations" msgstr "クエリ結果操作" -#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:671 +#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:667 msgid "Print view (with full texts)" msgstr "印刷用画面 (全テキストを含む)" -#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:482 +#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:478 msgid "Link not found" msgstr "リンク先が見つかりません" -#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1224 +#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1220 #: main.php:228 msgid "Version information" msgstr "バージョン情報" -#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:423 +#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:419 msgid "Data home directory" msgstr "データのホームディレクトリ" -#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:424 +#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:420 msgid "The common part of the directory path for all InnoDB data files." msgstr "すべての InnoDB データファイルに共通するディレクトリパス" -#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:422 +#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:418 msgid "Data files" msgstr "データファイル" -#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:418 +#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:414 msgid "Autoextend increment" msgstr "自動拡張時に追加されるテーブルの大きさ" -#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:419 +#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:415 msgid "" " The increment size for extending the size of an autoextending tablespace " "when it becomes full." @@ -2464,11 +2474,11 @@ msgstr "" "スペースがいっぱいになったときに自動的にテーブルを拡張する場合に追加される" "テーブルの大きさ" -#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:420 +#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:416 msgid "Buffer pool size" msgstr "バッファプールの大きさ" -#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:421 +#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:417 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." @@ -2476,87 +2486,87 @@ msgstr "" "InnoDB がテーブルのデータやインデックスをキャッシュするのに使うメモリバッファ" "量" -#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:112 +#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:108 msgid "Buffer Pool" msgstr "バッファプール" -#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:426 +#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:422 #: server_status.php:306 msgid "InnoDB Status" msgstr "InnoDB ステータス" -#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:113 +#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:109 msgid "Buffer Pool Usage" msgstr "バッファプールの使用量" -#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1114 +#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1110 #: server_databases.php:137 server_databases.php:305 server_status.php:414 #: server_status.php:475 server_status.php:496 tbl_printview.php:351 #: tbl_structure.php:697 msgid "Total" msgstr "合計" -#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:425 +#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:421 msgid "pages" msgstr "ページ" -#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:343 +#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:339 msgid "Free pages" msgstr "フリーページ数" -#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:259 +#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:255 msgid "Dirty pages" msgstr "ダーティページ" -#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:230 +#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:226 msgid "Pages containing data" msgstr "データが含まれているページ数" -#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:598 +#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:594 msgid "Pages to be flushed" msgstr "フラッシュ待ちページ数" -#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:119 +#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:115 msgid "Busy pages" msgstr "ビジーなページ数" -#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:467 +#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:463 msgid "Latched pages" msgstr "ラッチされているページ" -#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:111 +#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:107 msgid "Buffer Pool Activity" msgstr "バッファプールの利用状況" -#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:731 +#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:727 msgid "Read requests" msgstr "読み込みリクエスト数" -#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1244 +#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1240 msgid "Write requests" msgstr "書き込みリクエスト数" -#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:115 +#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:111 msgid "Read misses" msgstr "読み込みミス" -#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:117 +#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:113 msgid "Write waits" msgstr "書き込み待ち" -#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:114 +#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:110 msgid "Read misses in %" msgstr "読み込みミス(%)" -#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:116 +#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:112 msgid "Write waits in %" msgstr "書き込み待ち(%)" -#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:522 +#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:518 msgid "Data pointer size" msgstr "データポインタのサイズ" -#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:523 +#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:519 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." @@ -2564,11 +2574,11 @@ msgstr "" "MAX_ROWS オプションを指定せずに MyISAM テーブルを作成するときに CREATE TABLE " "が使用するデフォルトのポインタサイズ (バイト単位)" -#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:528 +#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:524 msgid "Automatic recovery mode" msgstr "自動修復モード" -#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:529 +#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:525 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." @@ -2576,11 +2586,11 @@ msgstr "" "クラッシュした MyISAM テーブルを自動修復するときのモード (サーバ起動オプショ" "ン --myisam-recover で設定されるもの)" -#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:527 +#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:523 msgid "Maximum size for temporary sort files" msgstr "ソート用の一時ファイルの最大サイズ" -#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:526 +#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:522 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " @@ -2589,11 +2599,11 @@ msgstr "" "MyISAM インデックスを再作成するとき (REPAIR TABLE や ALTER TABLE、LOAD DATA " "INFILE の最中) に利用できる一時ファイルの最大サイズ" -#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:525 +#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:521 msgid "Maximum size for temporary files on index creation" msgstr "インデックス作成時に利用する一時ファイルの最大サイズ" -#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:524 +#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:520 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " @@ -2603,11 +2613,11 @@ msgstr "" "シュの差がここで指定した値以上に大きくなる場合は、キーキャッシュ法が使われま" "す" -#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:531 +#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:527 msgid "Repair threads" msgstr "スレッドの修復" -#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:530 +#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:526 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." @@ -2615,11 +2625,11 @@ msgstr "" "この値が 1 より大きい場合は MyISAM テーブルのインデックスも修復中にソートプロ" "セスによって (スレッドごとに) 同時作成されます" -#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:533 +#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:529 msgid "Sort buffer size" msgstr "ソートバッファのサイズ" -#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:532 +#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:528 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." @@ -2627,11 +2637,11 @@ msgstr "" "REPAIR TABLE の最中に MyISAM のインデックスをソートするとき、あるいは CREATE " "INDEX や ALTER TABLE でインデックスを作成するときに割り当てられるバッファ" -#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:620 +#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:616 msgid "Index cache size" msgstr "インデックスキャッシュの大きさ" -#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:619 +#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:615 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." @@ -2639,11 +2649,11 @@ msgstr "" "インデックスキャッシュに割り当てるメモリ量。デフォルト値は 32MB です。ここで" "割り当てたメモリはインデックスページのキャッシュにのみ利用されます。" -#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:630 +#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:626 msgid "Record cache size" msgstr "レコードキャッシュの大きさ" -#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:629 +#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:625 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " @@ -2653,11 +2663,11 @@ msgstr "" "量。デフォルト値は 32MB です。このメモリはハンドルデータファイル(.xtd)や列ポ" "インタファイル(.xtr)の変更をキャッシュするのに利用されます。" -#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:624 +#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:620 msgid "Log cache size" msgstr "ログキャッシュの大きさ" -#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:623 +#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:619 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." @@ -2665,11 +2675,11 @@ msgstr "" "トランザクションログデータをキャッシュするのに使うトランザクションログキャッ" "シュに割り当てるメモリ量。デフォルトは 16MB です。" -#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:628 +#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:624 msgid "Log file threshold" msgstr "ログファイルの閾値" -#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:627 +#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:623 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." @@ -2677,11 +2687,11 @@ msgstr "" "トランザクションログがどこまで増えたらロールオーバーして新しいログを作成する" "か。デフォルト値は 16MB です。" -#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:634 +#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:630 msgid "Transaction buffer size" msgstr "トランザクションバッファの大きさ" -#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:633 +#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:629 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." @@ -2689,11 +2699,11 @@ msgstr "" "グローバルトランザクションログバッファの大きさ(このエンジンはこの大きさのバッ" "ファを2つ割り当てます)。デフォルトは 1MB です。" -#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:611 +#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:607 msgid "Checkpoint frequency" msgstr "チェックポイント頻度" -#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:612 +#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:608 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." @@ -2701,11 +2711,11 @@ msgstr "" "チェックポイントを実行する前にトランザクションログに書き込むデータ量。デフォ" "ルト値は 24MB です。" -#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:615 +#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:611 msgid "Data log threshold" msgstr "データログの閾値" -#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:616 +#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:612 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -2717,11 +2727,11 @@ msgstr "" "で、この変数の値を大きくするとデータベースに保存できるデータの総数を増やすこ" "とができます。" -#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:618 +#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:614 msgid "Garbage threshold" msgstr "ガベージ閾値" -#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:617 +#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:613 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." @@ -2729,11 +2739,11 @@ msgstr "" "データログファイルのガベージが何%になったら圧縮するか。1 から 99 までの値を" "とります。デフォルトは 50 です。" -#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:622 +#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:618 msgid "Log buffer size" msgstr "ログバッファの大きさ" -#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:621 +#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:617 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " @@ -2743,27 +2753,27 @@ msgstr "" "エンジンはスレッドごとにバッファをひとつ割り当てます(そのスレッドがデータログ" "を書き出す必要がある場合のみ)。" -#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:613 +#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:609 msgid "Data file grow size" msgstr "データファイルの増分" -#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:614 +#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:610 msgid "The grow size of the handle data (.xtd) files." msgstr "ハンドルデータファイル(.xtd)の増分。" -#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:632 +#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:628 msgid "Row file grow size" msgstr "列ファイルの増分" -#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:631 +#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:627 msgid "The grow size of the row pointer (.xtr) files." msgstr "列ポインタファイル(.xtr)の増分。" -#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:626 +#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:622 msgid "Log file count" msgstr "ログファイル数" -#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:625 +#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:621 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -2776,19 +2786,19 @@ msgstr "" #: libraries/export/htmlword.php:132 libraries/export/odt.php:168 #: libraries/export/sql.php:881 libraries/export/texytext.php:130 -#: libraries/messages.inc.php:275 +#: libraries/messages.inc.php:271 msgid "Dumping data for table" msgstr "テーブルのデータをダンプしています" #: libraries/export/htmlword.php:185 libraries/export/odt.php:238 #: libraries/export/sql.php:785 libraries/export/texytext.php:177 -#: libraries/messages.inc.php:1086 +#: libraries/messages.inc.php:1082 msgid "Table structure for table" msgstr "テーブルの構造" #: libraries/export/latex.php:125 libraries/export/sql.php:232 #: libraries/export/xml.php:102 libraries/header_printview.inc.php:57 -#: libraries/messages.inc.php:381 libraries/replication_gui.lib.php:63 +#: libraries/messages.inc.php:377 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:170 libraries/replication_gui.lib.php:265 #: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325 #: server_privileges.php:692 server_privileges.php:695 @@ -2800,183 +2810,183 @@ msgstr "ホスト" #: libraries/export/latex.php:130 libraries/export/sql.php:233 #: libraries/export/xml.php:107 libraries/header_printview.inc.php:59 -#: libraries/messages.inc.php:354 +#: libraries/messages.inc.php:350 msgid "Generation Time" msgstr "生成時間" #: libraries/export/latex.php:131 libraries/export/sql.php:235 -#: libraries/export/xml.php:108 libraries/messages.inc.php:864 main.php:186 +#: libraries/export/xml.php:108 libraries/messages.inc.php:860 main.php:186 msgid "Server version" msgstr "サーバのバージョン" #: libraries/export/latex.php:132 libraries/export/sql.php:236 -#: libraries/export/xml.php:109 libraries/messages.inc.php:651 +#: libraries/export/xml.php:109 libraries/messages.inc.php:647 msgid "PHP Version" msgstr "PHP のバージョン" #: libraries/export/latex.php:201 libraries/export/sql.php:868 -#: libraries/messages.inc.php:226 server_databases.php:127 +#: libraries/messages.inc.php:222 server_databases.php:127 #: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317 #: tbl_structure.php:666 msgid "Data" msgstr "データ" -#: libraries/export/odt.php:318 libraries/messages.inc.php:506 +#: libraries/export/odt.php:318 libraries/messages.inc.php:502 #: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "MIME タイプ" -#: libraries/export/sql.php:387 libraries/messages.inc.php:711 +#: libraries/export/sql.php:387 libraries/messages.inc.php:707 msgid "Procedures" msgstr "プロシジャ" -#: libraries/export/sql.php:401 libraries/messages.inc.php:348 +#: libraries/export/sql.php:401 libraries/messages.inc.php:344 msgid "Functions" msgstr "関数" -#: libraries/export/sql.php:618 libraries/messages.inc.php:174 +#: libraries/export/sql.php:618 libraries/messages.inc.php:170 msgid "Constraints for dumped tables" msgstr "ダンプしたテーブルの制約" -#: libraries/export/sql.php:627 libraries/messages.inc.php:175 +#: libraries/export/sql.php:627 libraries/messages.inc.php:171 msgid "Constraints for table" msgstr "テーブルの制約" -#: libraries/export/sql.php:727 libraries/messages.inc.php:512 +#: libraries/export/sql.php:727 libraries/messages.inc.php:508 msgid "MIME TYPES FOR TABLE" msgstr "MIME TYPES FOR TABLE" -#: libraries/export/sql.php:739 libraries/messages.inc.php:743 +#: libraries/export/sql.php:739 libraries/messages.inc.php:739 msgid "RELATIONS FOR TABLE" msgstr "RELATIONS FOR TABLE" -#: libraries/export/sql.php:796 libraries/messages.inc.php:1178 +#: libraries/export/sql.php:796 libraries/messages.inc.php:1174 #: libraries/tbl_triggers.lib.php:19 msgid "Triggers" msgstr "トリガ" -#: libraries/export/sql.php:808 libraries/messages.inc.php:1046 +#: libraries/export/sql.php:808 libraries/messages.inc.php:1042 msgid "Structure for view" msgstr "ビュー用の構造" -#: libraries/export/sql.php:817 libraries/messages.inc.php:1029 +#: libraries/export/sql.php:817 libraries/messages.inc.php:1025 msgid "Stand-in structure for view" msgstr "ビュー用の代替構造" #: libraries/footer.inc.php:184 libraries/footer.inc.php:195 -#: libraries/footer.inc.php:198 libraries/messages.inc.php:586 +#: libraries/footer.inc.php:198 libraries/messages.inc.php:582 msgid "Open new phpMyAdmin window" msgstr "別ウィンドウで開く" -#: libraries/header.inc.php:115 libraries/messages.inc.php:542 +#: libraries/header.inc.php:115 libraries/messages.inc.php:538 msgid "New table" msgstr "" #: libraries/header_printview.inc.php:50 libraries/header_printview.inc.php:55 -#: libraries/messages.inc.php:1024 +#: libraries/messages.inc.php:1020 msgid "SQL result" msgstr "SQL の結果" -#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:350 +#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:346 msgid "Generated by" msgstr "生成環境" #: libraries/header_printview.inc.php:63 libraries/import.lib.php:145 -#: libraries/messages.inc.php:820 navigation.php:652 navigation.php:674 +#: libraries/messages.inc.php:816 navigation.php:652 navigation.php:674 #: server_databases.php:122 tbl_printview.php:394 tbl_structure.php:366 #: tbl_structure.php:778 msgid "Rows" msgstr "行" -#: libraries/import.lib.php:150 libraries/messages.inc.php:285 sql.php:520 +#: libraries/import.lib.php:150 libraries/messages.inc.php:281 sql.php:520 #: tbl_change.php:181 tbl_get_field.php:35 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "返り値が空でした(行数0)" -#: libraries/import.lib.php:1078 libraries/messages.inc.php:399 +#: libraries/import.lib.php:1078 libraries/messages.inc.php:395 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1079 libraries/messages.inc.php:400 +#: libraries/import.lib.php:1079 libraries/messages.inc.php:396 msgid "View a structure`s contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1080 libraries/messages.inc.php:401 +#: libraries/import.lib.php:1080 libraries/messages.inc.php:397 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1081 libraries/messages.inc.php:402 +#: libraries/import.lib.php:1081 libraries/messages.inc.php:398 msgid "Edit its structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1084 libraries/messages.inc.php:362 +#: libraries/import.lib.php:1084 libraries/messages.inc.php:358 msgid "Go to database" msgstr "" #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:869 +#: libraries/messages.inc.php:865 msgid "settings" msgstr "" -#: libraries/import.lib.php:1106 libraries/messages.inc.php:363 +#: libraries/import.lib.php:1106 libraries/messages.inc.php:359 msgid "Go to table" msgstr "" -#: libraries/import.lib.php:1109 libraries/messages.inc.php:1047 +#: libraries/import.lib.php:1109 libraries/messages.inc.php:1043 msgid "structure" msgstr "" -#: libraries/import.lib.php:1115 libraries/messages.inc.php:364 +#: libraries/import.lib.php:1115 libraries/messages.inc.php:360 msgid "Go to view" msgstr "" #: libraries/import/csv.php:58 libraries/import/csv.php:70 #: libraries/import/csv.php:74 libraries/import/csv.php:78 -#: libraries/messages.inc.php:442 +#: libraries/messages.inc.php:438 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "CSV インポートのパラメータが不正です: %s" -#: libraries/import/csv.php:59 libraries/messages.inc.php:323 +#: libraries/import/csv.php:59 libraries/messages.inc.php:319 msgid "Fields terminated by" msgstr "フィールド区切り記号" -#: libraries/import/csv.php:71 libraries/messages.inc.php:320 +#: libraries/import/csv.php:71 libraries/messages.inc.php:316 msgid "Fields enclosed by" msgstr "フィールド囲み記号" -#: libraries/import/csv.php:75 libraries/messages.inc.php:321 +#: libraries/import/csv.php:75 libraries/messages.inc.php:317 msgid "Fields escaped by" msgstr "フィールドのエスケープ記号" -#: libraries/import/csv.php:79 libraries/messages.inc.php:481 +#: libraries/import/csv.php:79 libraries/messages.inc.php:477 msgid "Lines terminated by" msgstr "行の終端記号" -#: libraries/import/csv.php:119 libraries/messages.inc.php:439 +#: libraries/import/csv.php:119 libraries/messages.inc.php:435 #, php-format msgid "Invalid column (%s) specified!" msgstr "不正なカラム(%s)が指定されています!" #: libraries/import/csv.php:177 libraries/import/csv.php:424 -#: libraries/messages.inc.php:441 +#: libraries/messages.inc.php:437 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "CSV 入力の書式が不正です (行: %d)" -#: libraries/import/csv.php:312 libraries/messages.inc.php:440 +#: libraries/import/csv.php:312 libraries/messages.inc.php:436 #, php-format msgid "Invalid field count in CSV input on line %d." msgstr "CSV 入力のフィールド数が不正です (行: %d)" -#: libraries/import/ldi.php:55 libraries/messages.inc.php:446 +#: libraries/import/ldi.php:55 libraries/messages.inc.php:442 msgid "This plugin does not support compressed imports!" msgstr "このプラグインでは圧縮されたファイルのインポートはできません!" #: libraries/import/xml.php:74 libraries/import/xml.php:130 -#: libraries/messages.inc.php:1247 +#: libraries/messages.inc.php:1243 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -3007,565 +3017,555 @@ msgstr "全角カナへ変換する" msgid "ltr" msgstr "ltr" -#. l10n: Thousands separator -#: libraries/messages.inc.php:21 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: libraries/messages.inc.php:23 -msgid "." -msgstr "." - -#: libraries/messages.inc.php:25 server_status.php:461 +#: libraries/messages.inc.php:21 server_status.php:461 msgid "Aborted" msgstr "中断" -#: libraries/messages.inc.php:28 main.php:68 +#: libraries/messages.inc.php:24 main.php:68 msgid "Actions" msgstr "アクション" -#: libraries/messages.inc.php:34 libraries/tbl_properties.inc.php:780 +#: libraries/messages.inc.php:30 libraries/tbl_properties.inc.php:780 #: tbl_structure.php:543 #, php-format msgid "Add %s field(s)" msgstr "%s 個のフィールドを追加する" -#: libraries/messages.inc.php:35 +#: libraries/messages.inc.php:31 msgid "Add custom comment into header (\\n splits lines)" msgstr "ヘッダにカスタムコメントを追加 (\\n で改行)" -#: libraries/messages.inc.php:36 +#: libraries/messages.inc.php:32 msgid "Add into comments" msgstr "追加コメント" -#: libraries/messages.inc.php:37 tbl_structure.php:541 +#: libraries/messages.inc.php:33 tbl_structure.php:541 msgid "Add new field" msgstr "新規フィールドを追加する" -#: libraries/messages.inc.php:38 server_privileges.php:1886 +#: libraries/messages.inc.php:34 server_privileges.php:1886 msgid "Add privileges on the following database" msgstr "データベースに特権を追加" -#: libraries/messages.inc.php:39 server_privileges.php:1907 +#: libraries/messages.inc.php:35 server_privileges.php:1907 msgid "Add privileges on the following table" msgstr "テーブルに特権を追加" -#: libraries/messages.inc.php:40 tbl_select.php:288 +#: libraries/messages.inc.php:36 tbl_select.php:288 msgid "Add search conditions (body of the \"where\" clause):" msgstr "検索条件(\"where\"節の内容)を追加してください:" -#: libraries/messages.inc.php:41 tbl_indexes.php:251 +#: libraries/messages.inc.php:37 tbl_indexes.php:251 #, php-format msgid "Add to index  %s column(s)" msgstr "インデックスに %s  の列を追加しました" -#: libraries/messages.inc.php:42 server_privileges.php:1570 +#: libraries/messages.inc.php:38 server_privileges.php:1570 #: server_privileges.php:1594 server_privileges.php:1988 #: server_privileges.php:2177 msgid "Add a new User" msgstr "新しいユーザを追加する" -#: libraries/messages.inc.php:43 server_privileges.php:931 +#: libraries/messages.inc.php:39 server_privileges.php:931 msgid "You have added a new user." msgstr "新しいユーザを追加しました" -#: libraries/messages.inc.php:44 server_privileges.php:571 +#: libraries/messages.inc.php:40 server_privileges.php:571 msgid "Administration" msgstr "管理" -#: libraries/messages.inc.php:45 tbl_structure.php:557 +#: libraries/messages.inc.php:41 tbl_structure.php:557 #, php-format msgid "After %s" msgstr "指定カラムの後に %s" -#: libraries/messages.inc.php:46 tbl_change.php:1147 +#: libraries/messages.inc.php:42 tbl_change.php:1147 msgid "Go back to previous page" msgstr "前のページに戻る" -#: libraries/messages.inc.php:47 tbl_change.php:1148 +#: libraries/messages.inc.php:43 tbl_change.php:1148 msgid "Insert another new row" msgstr "新しいレコードを追加する" -#: libraries/messages.inc.php:48 tbl_change.php:1160 +#: libraries/messages.inc.php:44 tbl_change.php:1160 msgid "Edit next row" msgstr "次の行を編集する" -#: libraries/messages.inc.php:49 tbl_change.php:1152 +#: libraries/messages.inc.php:45 tbl_change.php:1152 msgid "Go back to this page" msgstr "このページに戻る" -#: libraries/messages.inc.php:50 querywindow.php:115 +#: libraries/messages.inc.php:46 querywindow.php:115 msgid "All" msgstr "全部" -#: libraries/messages.inc.php:53 tbl_operations.php:249 +#: libraries/messages.inc.php:49 tbl_operations.php:249 msgid "Alter table order by" msgstr "テーブルの並び順" -#: libraries/messages.inc.php:54 tbl_operations.php:660 +#: libraries/messages.inc.php:50 tbl_operations.php:660 msgid "Analyze" msgstr "分析" -#: libraries/messages.inc.php:57 +#: libraries/messages.inc.php:53 msgid "and" msgstr "" -#: libraries/messages.inc.php:59 pmd_general.php:87 +#: libraries/messages.inc.php:55 pmd_general.php:87 msgid "Angular links" msgstr "角リンク" -#: libraries/messages.inc.php:60 tbl_structure.php:401 tbl_structure.php:415 +#: libraries/messages.inc.php:56 tbl_structure.php:401 tbl_structure.php:415 #: tbl_structure.php:429 #, php-format msgid "An index has been added on %s" msgstr "%s にインデックスを追加しました" -#: libraries/messages.inc.php:61 server_privileges.php:1521 +#: libraries/messages.inc.php:57 server_privileges.php:1521 #: server_privileges.php:2123 msgid "Any" msgstr "すべて" -#: libraries/messages.inc.php:62 libraries/replication_gui.lib.php:298 +#: libraries/messages.inc.php:58 libraries/replication_gui.lib.php:298 #: server_privileges.php:725 msgid "Any host" msgstr "すべてのホスト" -#: libraries/messages.inc.php:63 libraries/replication_gui.lib.php:250 +#: libraries/messages.inc.php:59 libraries/replication_gui.lib.php:250 #: server_privileges.php:677 msgid "Any user" msgstr "すべてのユーザ" -#: libraries/messages.inc.php:64 server_synchronize.php:449 +#: libraries/messages.inc.php:60 server_synchronize.php:449 #: server_synchronize.php:894 msgid "Apply Selected Changes" msgstr "" -#: libraries/messages.inc.php:66 tbl_structure.php:386 +#: libraries/messages.inc.php:62 tbl_structure.php:386 #, php-format msgid "A primary key has been added on %s" msgstr "%s に主キーを追加しました" -#: libraries/messages.inc.php:67 libraries/mysql_charsets.lib.php:368 +#: libraries/messages.inc.php:63 libraries/mysql_charsets.lib.php:368 msgid "Arabic" msgstr "アラビア語" -#: libraries/messages.inc.php:68 libraries/mysql_charsets.lib.php:359 +#: libraries/messages.inc.php:64 libraries/mysql_charsets.lib.php:359 msgid "Armenian" msgstr "アルメニア語" -#: libraries/messages.inc.php:70 libraries/tbl_properties.inc.php:394 +#: libraries/messages.inc.php:66 libraries/tbl_properties.inc.php:394 msgid "As defined:" msgstr "ユーザ定義" -#: libraries/messages.inc.php:71 tbl_structure.php:556 +#: libraries/messages.inc.php:67 tbl_structure.php:556 msgid "At Beginning of Table" msgstr "テーブルの先頭" -#: libraries/messages.inc.php:72 tbl_structure.php:555 +#: libraries/messages.inc.php:68 tbl_structure.php:555 msgid "At End of Table" msgstr "テーブルの末尾" -#: libraries/messages.inc.php:73 libraries/tbl_properties.inc.php:108 +#: libraries/messages.inc.php:69 libraries/tbl_properties.inc.php:108 #: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:144 #: tbl_structure.php:180 msgid "Attributes" msgstr "属性" -#: libraries/messages.inc.php:74 pdf_pages.php:303 pdf_pages.php:306 +#: libraries/messages.inc.php:70 pdf_pages.php:303 pdf_pages.php:306 msgid "Automatic layout" msgstr "自動レイアウト" -#: libraries/messages.inc.php:77 libraries/mysql_charsets.lib.php:354 +#: libraries/messages.inc.php:73 libraries/mysql_charsets.lib.php:354 msgid "Baltic" msgstr "バルト諸語" -#: libraries/messages.inc.php:78 libraries/sqlparser.lib.php:175 +#: libraries/messages.inc.php:74 libraries/sqlparser.lib.php:175 msgid "BEGIN CUT" msgstr "BEGIN CUT" -#: libraries/messages.inc.php:79 libraries/sqlparser.lib.php:179 +#: libraries/messages.inc.php:75 libraries/sqlparser.lib.php:179 msgid "BEGIN RAW" msgstr "BEGIN RAW" -#: libraries/messages.inc.php:80 libraries/mysql_charsets.lib.php:201 +#: libraries/messages.inc.php:76 libraries/mysql_charsets.lib.php:201 #: libraries/mysql_charsets.lib.php:402 tbl_change.php:518 msgid "Binary" msgstr " バイナリ" -#: libraries/messages.inc.php:81 tbl_change.php:894 +#: libraries/messages.inc.php:77 tbl_change.php:894 msgid "Binary - do not edit" msgstr " バイナリ - 編集不可" -#: libraries/messages.inc.php:82 libraries/server_links.inc.php:76 +#: libraries/messages.inc.php:78 libraries/server_links.inc.php:76 #: server_binlog.php:110 server_status.php:253 test/theme.php:121 msgid "Binary log" msgstr "バイナリログ" -#: libraries/messages.inc.php:83 server_binlog.php:217 +#: libraries/messages.inc.php:79 server_binlog.php:217 msgid "Event type" msgstr "イベント種別" -#: libraries/messages.inc.php:84 server_binlog.php:220 +#: libraries/messages.inc.php:80 server_binlog.php:220 msgid "Information" msgstr "情報" -#: libraries/messages.inc.php:85 server_binlog.php:215 +#: libraries/messages.inc.php:81 server_binlog.php:215 msgid "Log name" msgstr "ログ名" -#: libraries/messages.inc.php:86 server_binlog.php:219 +#: libraries/messages.inc.php:82 server_binlog.php:219 msgid "Original position" msgstr "元の位置" -#: libraries/messages.inc.php:87 server_binlog.php:216 +#: libraries/messages.inc.php:83 server_binlog.php:216 msgid "Position" msgstr "位置" -#: libraries/messages.inc.php:88 libraries/replication_gui.lib.php:169 +#: libraries/messages.inc.php:84 libraries/replication_gui.lib.php:169 #: server_binlog.php:218 msgid "Server ID" msgstr "サーバ ID" -#: libraries/messages.inc.php:92 +#: libraries/messages.inc.php:88 msgctxt "$strBLOBRepositoryDisabled" msgid "Disabled" msgstr "" -#: libraries/messages.inc.php:95 +#: libraries/messages.inc.php:91 msgctxt "$strBLOBRepositoryEnabled" msgid "Enabled" msgstr "" -#: libraries/messages.inc.php:97 tbl_change.php:888 +#: libraries/messages.inc.php:93 tbl_change.php:888 msgid "Remove BLOB Repository Reference" msgstr "" -#: libraries/messages.inc.php:98 +#: libraries/messages.inc.php:94 msgctxt "$strBLOBRepositoryRepair" msgid "Repair" msgstr "" -#: libraries/messages.inc.php:99 tbl_change.php:987 +#: libraries/messages.inc.php:95 tbl_change.php:987 msgid "Upload to BLOB repository" msgstr "" -#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:359 +#: libraries/messages.inc.php:96 libraries/sql_query_form.lib.php:359 #: sql.php:677 msgid "Let every user access this bookmark" msgstr "すべてのユーザがこのブックマークを利用できるようにする" -#: libraries/messages.inc.php:103 sql.php:671 +#: libraries/messages.inc.php:99 sql.php:671 msgid "Label" msgstr "ラベル" -#: libraries/messages.inc.php:104 libraries/sql_query_form.lib.php:433 +#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:433 msgid "Bookmarked SQL query" msgstr "ブックマークされている SQL" -#: libraries/messages.inc.php:105 libraries/sql_query_form.lib.php:365 +#: libraries/messages.inc.php:101 libraries/sql_query_form.lib.php:365 msgid "Replace existing bookmark of same name" msgstr "同名のブックマークは差し替える" -#: libraries/messages.inc.php:106 libraries/sql_query_form.lib.php:352 +#: libraries/messages.inc.php:102 libraries/sql_query_form.lib.php:352 #: sql.php:665 sql.php:666 sql.php:683 msgid "Bookmark this SQL query" msgstr "この SQL をブックマークする" -#: libraries/messages.inc.php:107 libraries/sql_query_form.lib.php:466 +#: libraries/messages.inc.php:103 libraries/sql_query_form.lib.php:466 msgid "View only" msgstr "表示のみ" -#: libraries/messages.inc.php:109 tbl_structure.php:161 +#: libraries/messages.inc.php:105 tbl_structure.php:161 msgid "Browse distinct values" msgstr "重複している値を表示しない" -#: libraries/messages.inc.php:110 tbl_change.php:252 tbl_select.php:27 +#: libraries/messages.inc.php:106 tbl_change.php:252 tbl_select.php:27 #: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34 msgid "Browse foreign values" msgstr "参照されている値を表示する" -#: libraries/messages.inc.php:118 libraries/mysql_charsets.lib.php:213 +#: libraries/messages.inc.php:114 libraries/mysql_charsets.lib.php:213 msgid "Bulgarian" msgstr "ブルガリア語" -#: libraries/messages.inc.php:120 +#: libraries/messages.inc.php:116 msgid "\"bzipped\"" msgstr "\"bzip 形式\"" -#: libraries/messages.inc.php:122 +#: libraries/messages.inc.php:118 msgid "Calendar" msgstr "カレンダー" -#: libraries/messages.inc.php:129 tbl_indexes.php:75 +#: libraries/messages.inc.php:125 tbl_indexes.php:75 msgid "Can't rename index to PRIMARY!" msgstr "インデックス名を PRIMARY に変更することはできません!" -#: libraries/messages.inc.php:132 libraries/mysql_charsets.lib.php:223 +#: libraries/messages.inc.php:128 libraries/mysql_charsets.lib.php:223 #: libraries/mysql_charsets.lib.php:409 msgid "case-insensitive" msgstr "大文字小文字を区別しない" -#: libraries/messages.inc.php:133 libraries/mysql_charsets.lib.php:226 +#: libraries/messages.inc.php:129 libraries/mysql_charsets.lib.php:226 #: libraries/mysql_charsets.lib.php:411 msgid "case-sensitive" msgstr "大文字小文字を区別する" -#: libraries/messages.inc.php:134 libraries/mysql_charsets.lib.php:332 +#: libraries/messages.inc.php:130 libraries/mysql_charsets.lib.php:332 msgid "Central European" msgstr "中央ヨーロッパ諸語" -#: libraries/messages.inc.php:136 server_privileges.php:1969 +#: libraries/messages.inc.php:132 server_privileges.php:1969 msgid "... keep the old one." msgstr "元のユーザも残す" -#: libraries/messages.inc.php:137 server_privileges.php:1967 +#: libraries/messages.inc.php:133 server_privileges.php:1967 msgid "Create a new user with the same privileges and ..." msgstr "同じ特権を持つ新しいユーザを作る" -#: libraries/messages.inc.php:138 server_privileges.php:1972 +#: libraries/messages.inc.php:134 server_privileges.php:1972 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "ユーザテーブルから元のユーザを削除し、特権をリロードする" -#: libraries/messages.inc.php:139 server_privileges.php:1970 +#: libraries/messages.inc.php:135 server_privileges.php:1970 msgid " ... delete the old one from the user tables." msgstr "ユーザテーブルから元のユーザを削除する" -#: libraries/messages.inc.php:140 server_privileges.php:1971 +#: libraries/messages.inc.php:136 server_privileges.php:1971 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "元のユーザの特権をすべて無効にしてから削除する" -#: libraries/messages.inc.php:141 server_privileges.php:1964 +#: libraries/messages.inc.php:137 server_privileges.php:1964 msgid "Change Login Information / Copy User" msgstr "ログイン情報の変更 / ユーザの複製" -#: libraries/messages.inc.php:144 libraries/mysql_charsets.lib.php:107 +#: libraries/messages.inc.php:140 libraries/mysql_charsets.lib.php:107 msgid "Charset" msgstr "文字セット" -#: libraries/messages.inc.php:146 server_collations.php:40 +#: libraries/messages.inc.php:142 server_collations.php:40 msgid "Character Sets and Collations" msgstr "文字セットと照合順序" -#: libraries/messages.inc.php:147 libraries/server_links.inc.php:57 +#: libraries/messages.inc.php:143 libraries/server_links.inc.php:57 #: test/theme.php:109 msgid "Charsets" msgstr "文字セット" -#: libraries/messages.inc.php:149 tbl_operations.php:661 +#: libraries/messages.inc.php:145 tbl_operations.php:661 msgid "Check" msgstr "確認" -#: libraries/messages.inc.php:151 server_databases.php:293 +#: libraries/messages.inc.php:147 server_databases.php:293 #: server_databases.php:294 msgid "Check Privileges" msgstr "特権をチェックする" -#: libraries/messages.inc.php:152 server_databases.php:289 +#: libraries/messages.inc.php:148 server_databases.php:289 #, php-format msgid "Check privileges for database "%s"." msgstr "データベース "%s" の特権を確認してください" -#: libraries/messages.inc.php:154 pdf_pages.php:261 +#: libraries/messages.inc.php:150 pdf_pages.php:261 msgid "Please choose a page to edit" msgstr "編集するページを選択してください" -#: libraries/messages.inc.php:157 +#: libraries/messages.inc.php:153 msgid "Displaying Column Comments" msgstr "列コメント表示機能" -#: libraries/messages.inc.php:159 pdf_pages.php:483 view_create.php:148 +#: libraries/messages.inc.php:155 pdf_pages.php:483 view_create.php:148 msgid "Column names" msgstr "カラム名" -#: libraries/messages.inc.php:160 server_privileges.php:1685 +#: libraries/messages.inc.php:156 server_privileges.php:1685 msgid "Column-specific privileges" msgstr "このカラムに固有の特権" -#: libraries/messages.inc.php:164 +#: libraries/messages.inc.php:160 msgid "MySQL 4.0 compatible" msgstr "MySQL 4.0 互換" -#: libraries/messages.inc.php:165 +#: libraries/messages.inc.php:161 msgid "Complete inserts" msgstr "完全な INSERT 文を作成する" -#: libraries/messages.inc.php:168 +#: libraries/messages.inc.php:164 #, php-format msgid "Could not load default configuration from: \"%1$s\"" msgstr "デフォルトの設定を読み込めませんでした: \"%1$s\"" -#: libraries/messages.inc.php:169 main.php:306 +#: libraries/messages.inc.php:165 main.php:306 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: libraries/messages.inc.php:171 pdf_schema.php:672 +#: libraries/messages.inc.php:167 pdf_schema.php:672 #, php-format msgid "Please configure the coordinates for table %s" msgstr "テーブル %s の座標を設定してください" -#: libraries/messages.inc.php:173 server_status.php:433 +#: libraries/messages.inc.php:169 server_status.php:433 msgid "Connections" msgstr "接続" -#: libraries/messages.inc.php:179 tbl_operations.php:509 +#: libraries/messages.inc.php:175 tbl_operations.php:509 msgid "Copy table to (database.table):" msgstr "テーブルを(database.table)にコピーする:" -#: libraries/messages.inc.php:180 tbl_move_copy.php:58 +#: libraries/messages.inc.php:176 tbl_move_copy.php:58 #, php-format msgid "Table %s has been copied to %s." msgstr "テーブル %s を %s にコピーしました" -#: libraries/messages.inc.php:181 tbl_move_copy.php:48 +#: libraries/messages.inc.php:177 tbl_move_copy.php:48 msgid "Can't copy table to same one!" msgstr "同じテーブルにはコピーできません!" -#: libraries/messages.inc.php:182 server_synchronize.php:94 +#: libraries/messages.inc.php:178 server_synchronize.php:94 msgid "Could not connect to the source" msgstr "" -#: libraries/messages.inc.php:183 server_synchronize.php:97 +#: libraries/messages.inc.php:179 server_synchronize.php:97 msgid "Could not connect to the target" msgstr "" -#: libraries/messages.inc.php:184 server_processlist.php:24 +#: libraries/messages.inc.php:180 server_processlist.php:24 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "スレッド %s の終了に失敗しました。すでに閉じているようです" -#: libraries/messages.inc.php:187 +#: libraries/messages.inc.php:183 #, php-format msgid "Create an index on %s columns" msgstr " %s  のカラムにインデックスを作成する" -#: libraries/messages.inc.php:188 tbl_indexes.php:160 +#: libraries/messages.inc.php:184 tbl_indexes.php:160 msgid "Create a new index" msgstr "新しいインデックスを作成する" -#: libraries/messages.inc.php:191 pdf_pages.php:297 pmd_pdf.php:114 +#: libraries/messages.inc.php:187 pdf_pages.php:297 pmd_pdf.php:114 msgid "Create a page" msgstr "新しいページを作成する" -#: libraries/messages.inc.php:192 +#: libraries/messages.inc.php:188 msgid "Creation of PDFs" msgstr "PDF の作成" -#: libraries/messages.inc.php:193 pmd_general.php:74 pmd_general.php:306 +#: libraries/messages.inc.php:189 pmd_general.php:74 pmd_general.php:306 msgid "Create relation" msgstr "リレーションを作成" -#: libraries/messages.inc.php:194 pmd_general.php:71 +#: libraries/messages.inc.php:190 pmd_general.php:71 #: server_synchronize.php:429 server_synchronize.php:872 msgid "Create table" msgstr "テーブルを作成" -#: libraries/messages.inc.php:195 +#: libraries/messages.inc.php:191 msgctxt "$strCreateTableShort" msgid "Create table" msgstr "" -#: libraries/messages.inc.php:196 server_privileges.php:1994 +#: libraries/messages.inc.php:192 server_privileges.php:1994 msgid "Database for user" msgstr "ユーザ専用データベース" -#: libraries/messages.inc.php:197 server_privileges.php:1999 +#: libraries/messages.inc.php:193 server_privileges.php:1999 msgid "Create database with same name and grant all privileges" msgstr "同名のデータベースを作成してすべての特権を与える" -#: libraries/messages.inc.php:198 +#: libraries/messages.inc.php:194 msgctxt "$strCreateUserDatabaseNone" msgid "None" msgstr "" -#: libraries/messages.inc.php:199 server_privileges.php:2003 +#: libraries/messages.inc.php:195 server_privileges.php:2003 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: libraries/messages.inc.php:200 server_privileges.php:2000 +#: libraries/messages.inc.php:196 server_privileges.php:2000 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "ワイルドカード(ユーザ名_%)に該当するデータベースにすべての特権を与える" -#: libraries/messages.inc.php:201 +#: libraries/messages.inc.php:197 msgid "Creation/Update/Check dates" msgstr "作成/更新/検査日" -#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:229 +#: libraries/messages.inc.php:199 libraries/mysql_charsets.lib.php:229 msgid "Croatian" msgstr "クロアチア語" -#: libraries/messages.inc.php:204 +#: libraries/messages.inc.php:200 msgid "CSV" msgstr "CSV" -#: libraries/messages.inc.php:205 libraries/server_synchronize.lib.php:1343 +#: libraries/messages.inc.php:201 libraries/server_synchronize.lib.php:1343 #: libraries/server_synchronize.lib.php:1369 msgid "Current server" msgstr "" -#: libraries/messages.inc.php:206 main.php:159 +#: libraries/messages.inc.php:202 main.php:159 msgid "Custom color" msgstr "カスタムカラー" -#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:365 +#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:365 msgid "Cyrillic" msgstr "キリル諸語" -#: libraries/messages.inc.php:208 libraries/mysql_charsets.lib.php:232 +#: libraries/messages.inc.php:204 libraries/mysql_charsets.lib.php:232 msgid "Czech" msgstr "チェコ語" -#: libraries/messages.inc.php:209 libraries/mysql_charsets.lib.php:383 +#: libraries/messages.inc.php:205 libraries/mysql_charsets.lib.php:383 msgid "Czech-Slovak" msgstr "チェコのスロバキア語" -#: libraries/messages.inc.php:211 libraries/mysql_charsets.lib.php:235 +#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:235 msgid "Danish" msgstr "デンマーク語" -#: libraries/messages.inc.php:214 +#: libraries/messages.inc.php:210 msgid "Database export options" msgstr "データベースエクスポートオプション" -#: libraries/messages.inc.php:217 server_synchronize.php:122 +#: libraries/messages.inc.php:213 server_synchronize.php:122 #: server_synchronize.php:125 tbl_create.php:82 tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "" -#: libraries/messages.inc.php:219 server_databases.php:63 +#: libraries/messages.inc.php:215 server_databases.php:63 #, php-format msgid "%s databases have been dropped successfully." msgstr "データベース %s を正常に削除しました" -#: libraries/messages.inc.php:220 libraries/server_synchronize.lib.php:1341 +#: libraries/messages.inc.php:216 libraries/server_synchronize.lib.php:1341 #: server_synchronize.php:1110 msgid "Source database" msgstr "" -#: libraries/messages.inc.php:221 server_databases.php:88 +#: libraries/messages.inc.php:217 server_databases.php:88 msgid "Databases statistics" msgstr "データベースの統計" -#: libraries/messages.inc.php:222 server_databases.php:362 +#: libraries/messages.inc.php:218 server_databases.php:362 #: server_databases.php:363 msgid "Disable Statistics" msgstr "統計を無効にする" -#: libraries/messages.inc.php:223 server_databases.php:358 +#: libraries/messages.inc.php:219 server_databases.php:358 #: server_databases.php:359 msgid "Enable Statistics" msgstr "統計を有効にする" -#: libraries/messages.inc.php:224 server_databases.php:366 +#: libraries/messages.inc.php:220 server_databases.php:366 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -3573,30 +3573,30 @@ msgstr "" "注意: データベースの統計を有効にするとウェブサーバと MySQL サーバの間の通信量" "が激増することがあります" -#: libraries/messages.inc.php:225 libraries/server_synchronize.lib.php:1367 +#: libraries/messages.inc.php:221 libraries/server_synchronize.lib.php:1367 #: server_synchronize.php:1112 msgid "Target database" msgstr "" -#: libraries/messages.inc.php:228 server_synchronize.php:425 +#: libraries/messages.inc.php:224 server_synchronize.php:425 #: server_synchronize.php:868 msgid "Data Difference" msgstr "" -#: libraries/messages.inc.php:231 server_synchronize.php:272 +#: libraries/messages.inc.php:227 server_synchronize.php:272 msgid "Data Synchronization" msgstr "" -#: libraries/messages.inc.php:235 server_privileges.php:526 +#: libraries/messages.inc.php:231 server_privileges.php:526 #: server_privileges.php:1679 msgid "Database-specific privileges" msgstr "データベースに固有の特権" -#: libraries/messages.inc.php:237 server_privileges.php:2136 +#: libraries/messages.inc.php:233 server_privileges.php:2136 msgid "database-specific" msgstr "データベース固有" -#: libraries/messages.inc.php:240 libraries/tbl_properties.inc.php:106 +#: libraries/messages.inc.php:236 libraries/tbl_properties.inc.php:106 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" @@ -3604,32 +3604,32 @@ msgstr "" "デフォルト値にはひとつの値のみ入力してください。バックスラッシュによるエス" "ケープや引用符を含めることはできません。例: a" -#: libraries/messages.inc.php:241 tbl_operations.php:589 +#: libraries/messages.inc.php:237 tbl_operations.php:589 msgid "Defragment table" msgstr "テーブルのデフラグ" -#: libraries/messages.inc.php:242 +#: libraries/messages.inc.php:238 msgid "Use delayed inserts" msgstr "遅延インサートを使用する" -#: libraries/messages.inc.php:245 server_privileges.php:1243 +#: libraries/messages.inc.php:241 server_privileges.php:1243 msgid "No users selected for deleting!" msgstr "削除するユーザが選択されていません!" -#: libraries/messages.inc.php:246 pmd_general.php:372 +#: libraries/messages.inc.php:242 pmd_general.php:372 msgid "Delete relation" msgstr "リレーションを削除" -#: libraries/messages.inc.php:248 server_privileges.php:1232 +#: libraries/messages.inc.php:244 server_privileges.php:1232 #, php-format msgid "Deleting %s" msgstr "%s を削除中です" -#: libraries/messages.inc.php:249 libraries/sql_query_form.lib.php:388 +#: libraries/messages.inc.php:245 libraries/sql_query_form.lib.php:388 msgid "Delimiter" msgstr "デリミタ" -#: libraries/messages.inc.php:250 pdf_pages.php:506 +#: libraries/messages.inc.php:246 pdf_pages.php:506 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -3637,7 +3637,7 @@ msgstr "" "このページには存在しないテーブルへの参照があります。これらの参照を削除します" "か?" -#: libraries/messages.inc.php:254 pmd_help.php:29 +#: libraries/messages.inc.php:250 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 " @@ -3647,142 +3647,142 @@ msgstr "" "示するフィールドを選択する」というアイコンをクリックしてから適切なフィールド" "名をクリックください" -#: libraries/messages.inc.php:256 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:252 libraries/mysql_charsets.lib.php:247 msgid "dictionary" msgstr "辞書" -#: libraries/messages.inc.php:257 libraries/server_synchronize.lib.php:1348 +#: libraries/messages.inc.php:253 libraries/server_synchronize.lib.php:1348 msgid "Difference" msgstr "" -#: libraries/messages.inc.php:258 pmd_general.php:87 +#: libraries/messages.inc.php:254 pmd_general.php:87 msgid "Direct links" msgstr "直リンク" -#: libraries/messages.inc.php:261 +#: libraries/messages.inc.php:257 msgid "Disable foreign key checks" msgstr "外部キーのチェックを無効にする" -#: libraries/messages.inc.php:262 +#: libraries/messages.inc.php:258 msgid "Display Features" msgstr "表示機能" -#: libraries/messages.inc.php:263 tbl_select.php:301 +#: libraries/messages.inc.php:259 tbl_select.php:301 msgid "Display order:" msgstr "表示順:" -#: libraries/messages.inc.php:265 tbl_select.php:132 +#: libraries/messages.inc.php:261 tbl_select.php:132 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "\"query by example\"を実行 (ワイルドカード: \"%\")" -#: libraries/messages.inc.php:266 +#: libraries/messages.inc.php:262 msgid "DocSQL" msgstr "DocSQL" -#: libraries/messages.inc.php:268 +#: libraries/messages.inc.php:264 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/messages.inc.php:273 server_privileges.php:1579 +#: libraries/messages.inc.php:269 server_privileges.php:1579 #: server_privileges.php:1580 server_privileges.php:1581 msgid "Drop the databases that have the same names as the users." msgstr "ユーザと同名のデータベースを削除する" -#: libraries/messages.inc.php:278 tbl_printview.php:382 tbl_structure.php:743 +#: libraries/messages.inc.php:274 tbl_printview.php:382 tbl_structure.php:743 msgid "dynamic" msgstr "動的" -#: libraries/messages.inc.php:282 server_privileges.php:1324 +#: libraries/messages.inc.php:278 server_privileges.php:1324 #: server_privileges.php:1610 msgid "Edit Privileges" msgstr "特権を編集" -#: libraries/messages.inc.php:283 tbl_printview.php:341 tbl_structure.php:688 +#: libraries/messages.inc.php:279 tbl_printview.php:341 tbl_structure.php:688 msgid "Effective" msgstr "有効" -#: libraries/messages.inc.php:286 libraries/relation.lib.php:100 +#: libraries/messages.inc.php:282 libraries/relation.lib.php:100 msgid "Enabled" msgstr "有効" -#: libraries/messages.inc.php:287 +#: libraries/messages.inc.php:283 msgid "Enclose export in a transaction" msgstr "エクスポートをトランザクションで囲む" -#: libraries/messages.inc.php:288 libraries/sqlparser.lib.php:177 +#: libraries/messages.inc.php:284 libraries/sqlparser.lib.php:177 msgid "END CUT" msgstr "END CUT" -#: libraries/messages.inc.php:290 libraries/sqlparser.lib.php:183 +#: libraries/messages.inc.php:286 libraries/sqlparser.lib.php:183 msgid "END RAW" msgstr "END RAW" -#: libraries/messages.inc.php:293 libraries/server_links.inc.php:61 +#: libraries/messages.inc.php:289 libraries/server_links.inc.php:61 #: test/theme.php:113 msgid "Engines" msgstr "エンジン" -#: libraries/messages.inc.php:295 libraries/mysql_charsets.lib.php:238 +#: libraries/messages.inc.php:291 libraries/mysql_charsets.lib.php:238 msgid "English" msgstr "英語" -#: libraries/messages.inc.php:296 server_privileges.php:393 +#: libraries/messages.inc.php:292 server_privileges.php:393 #: server_privileges.php:535 server_privileges.php:1501 msgid " Note: MySQL privilege names are expressed in English " msgstr "注意: MySQL の特権名は英語で表示されます" -#: libraries/messages.inc.php:298 libraries/zip_extension.lib.php:49 +#: libraries/messages.inc.php:294 libraries/zip_extension.lib.php:49 #: libraries/zip_extension.lib.php:51 libraries/zip_extension.lib.php:66 msgid "Error in ZIP archive:" msgstr "ZIP アーカイブにエラーがあります:" -#: libraries/messages.inc.php:303 libraries/mysql_charsets.lib.php:241 +#: libraries/messages.inc.php:299 libraries/mysql_charsets.lib.php:241 msgid "Esperanto" msgstr "エスペラント語" -#: libraries/messages.inc.php:304 libraries/mysql_charsets.lib.php:244 +#: libraries/messages.inc.php:300 libraries/mysql_charsets.lib.php:244 msgid "Estonian" msgstr "エストニア語" -#: libraries/messages.inc.php:305 libraries/tbl_triggers.lib.php:29 +#: libraries/messages.inc.php:301 libraries/tbl_triggers.lib.php:29 msgid "Event" msgstr "イベント" -#: libraries/messages.inc.php:307 +#: libraries/messages.inc.php:303 msgid "Excel edition" msgstr "Excel のエディション" -#: libraries/messages.inc.php:311 pmd_pdf.php:85 +#: libraries/messages.inc.php:307 pmd_pdf.php:85 msgid "Export/Import to scale" msgstr "倍率にあわせたエクスポート/インポート" -#: libraries/messages.inc.php:313 +#: libraries/messages.inc.php:309 msgid "Extended inserts" msgstr "長い INSERT 文を作成する" -#: libraries/messages.inc.php:314 pdf_schema.php:1267 pdf_schema.php:1288 +#: libraries/messages.inc.php:310 pdf_schema.php:1267 pdf_schema.php:1288 #: tbl_printview.php:147 tbl_structure.php:183 tbl_tracking.php:278 msgid "Extra" msgstr "その他" -#: libraries/messages.inc.php:316 server_status.php:447 +#: libraries/messages.inc.php:312 server_status.php:447 msgid "Failed attempts" msgstr "失敗回数" -#: libraries/messages.inc.php:318 tbl_structure.php:375 +#: libraries/messages.inc.php:314 tbl_structure.php:375 #, php-format msgid "Field %s has been dropped" msgstr "フィールド %s を削除しました" -#: libraries/messages.inc.php:322 libraries/sql_query_form.lib.php:317 +#: libraries/messages.inc.php:318 libraries/sql_query_form.lib.php:317 msgid "Fields" msgstr "フィールド" -#: libraries/messages.inc.php:332 server_binlog.php:136 +#: libraries/messages.inc.php:328 server_binlog.php:136 msgid "Files" msgstr "ファイル" -#: libraries/messages.inc.php:334 server_privileges.php:1597 +#: libraries/messages.inc.php:330 server_privileges.php:1597 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -3795,219 +3795,219 @@ msgstr "" "特権の内容が一致しなくなることがありますので、作業を続ける前に %s特権リロー" "ド%s をしてください" -#: libraries/messages.inc.php:335 server_status.php:289 +#: libraries/messages.inc.php:331 server_status.php:289 msgid "Flush query cache" msgstr "クエリキャッシュをフラッシュする" -#: libraries/messages.inc.php:336 +#: libraries/messages.inc.php:332 msgid "Flush the table (\"FLUSH\")" msgstr "テーブルをフラッシュする(\"FLUSH\")" -#: libraries/messages.inc.php:337 server_status.php:271 +#: libraries/messages.inc.php:333 server_status.php:271 msgid "Flush (close) all tables" msgstr "すべてのテーブルをフラッシュする(閉じる)" -#: libraries/messages.inc.php:339 tbl_relation.php:279 +#: libraries/messages.inc.php:335 tbl_relation.php:279 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" "%1$s に外部キーを作成するときにエラーが発生しました (データ型を確認してくださ" "い)" -#: libraries/messages.inc.php:341 setup/lib/messages.inc.php:88 +#: libraries/messages.inc.php:337 setup/lib/messages.inc.php:88 #: tbl_printview.php:376 tbl_structure.php:738 msgid "Format" msgstr "フォーマット" -#: libraries/messages.inc.php:344 server_replication.php:325 +#: libraries/messages.inc.php:340 server_replication.php:325 msgid "Full start" msgstr "" -#: libraries/messages.inc.php:345 server_replication.php:325 +#: libraries/messages.inc.php:341 server_replication.php:325 msgid "Full stop" msgstr "" -#: libraries/messages.inc.php:347 tbl_change.php:282 tbl_change.php:320 +#: libraries/messages.inc.php:343 tbl_change.php:282 tbl_change.php:320 msgid "Function" msgstr "関数" -#: libraries/messages.inc.php:355 libraries/mysql_charsets.lib.php:377 +#: libraries/messages.inc.php:351 libraries/mysql_charsets.lib.php:377 msgid "Georgian" msgstr "グルジア語" -#: libraries/messages.inc.php:356 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:352 libraries/mysql_charsets.lib.php:247 #: libraries/mysql_charsets.lib.php:250 msgid "German" msgstr "ドイツ語" -#: libraries/messages.inc.php:357 themes.php:42 +#: libraries/messages.inc.php:353 themes.php:42 msgid "Get more themes!" msgstr "" -#: libraries/messages.inc.php:358 server_privileges.php:2134 +#: libraries/messages.inc.php:354 server_privileges.php:2134 msgid "global" msgstr "グローバル" -#: libraries/messages.inc.php:359 server_privileges.php:524 +#: libraries/messages.inc.php:355 server_privileges.php:524 #: server_privileges.php:1500 msgid "Global privileges" msgstr "グローバル特権" -#: libraries/messages.inc.php:360 server_variables.php:55 +#: libraries/messages.inc.php:356 server_variables.php:55 #: server_variables.php:89 msgid "Global value" msgstr "グローバル値" -#: libraries/messages.inc.php:365 server_privileges.php:1502 +#: libraries/messages.inc.php:361 server_privileges.php:1502 #: server_privileges.php:1684 server_privileges.php:2033 msgid "Grant" msgstr "権限委譲" -#: libraries/messages.inc.php:366 libraries/mysql_charsets.lib.php:380 +#: libraries/messages.inc.php:362 libraries/mysql_charsets.lib.php:380 msgid "Greek" msgstr "ギリシア語" -#: libraries/messages.inc.php:367 +#: libraries/messages.inc.php:363 msgid "\"gzipped\"" msgstr "\"gzip 形式\"" -#: libraries/messages.inc.php:369 server_status.php:250 +#: libraries/messages.inc.php:365 server_status.php:250 msgid "Handler" msgstr "ハンドラ" -#: libraries/messages.inc.php:370 server_synchronize.php:464 +#: libraries/messages.inc.php:366 server_synchronize.php:464 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: libraries/messages.inc.php:372 libraries/mysql_charsets.lib.php:374 +#: libraries/messages.inc.php:368 libraries/mysql_charsets.lib.php:374 msgid "Hebrew" msgstr "ヘブライ語" -#: libraries/messages.inc.php:373 pmd_general.php:83 +#: libraries/messages.inc.php:369 pmd_general.php:83 msgid "Help" msgstr "ヘルプ" -#: libraries/messages.inc.php:374 +#: libraries/messages.inc.php:370 msgid "Use hexadecimal for BLOB" msgstr "BLOBに16進数表記を利用する" -#: libraries/messages.inc.php:376 pmd_general.php:120 +#: libraries/messages.inc.php:372 pmd_general.php:120 msgid "Hide/Show all" msgstr "すべて隠す/表示" -#: libraries/messages.inc.php:377 pmd_general.php:124 +#: libraries/messages.inc.php:373 pmd_general.php:124 msgid "Hide/Show Tables with no relation" msgstr "リレーションのないテーブルを隠す/表示" -#: libraries/messages.inc.php:378 libraries/navigation_header.inc.php:54 +#: libraries/messages.inc.php:374 libraries/navigation_header.inc.php:54 #: libraries/navigation_header.inc.php:57 #: libraries/navigation_header.inc.php:58 msgid "Home" msgstr "メインページへ" -#: libraries/messages.inc.php:379 main.php:233 +#: libraries/messages.inc.php:375 main.php:233 msgid "Official Homepage" msgstr "phpMyAdmin のオフィシャルサイト" -#: libraries/messages.inc.php:382 libraries/replication_gui.lib.php:327 +#: libraries/messages.inc.php:378 libraries/replication_gui.lib.php:327 #: server_privileges.php:753 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/messages.inc.php:383 +#: libraries/messages.inc.php:379 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/messages.inc.php:384 libraries/mysql_charsets.lib.php:253 +#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:253 msgid "Hungarian" msgstr "ハンガリー語" -#: libraries/messages.inc.php:386 libraries/mysql_charsets.lib.php:256 +#: libraries/messages.inc.php:382 libraries/mysql_charsets.lib.php:256 msgid "Icelandic" msgstr "アイスランド語" -#: libraries/messages.inc.php:387 server_processlist.php:53 +#: libraries/messages.inc.php:383 server_processlist.php:53 msgid "ID" msgstr "ID" -#: libraries/messages.inc.php:388 libraries/mult_submits.inc.php:108 +#: libraries/messages.inc.php:384 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:479 msgid "Fulltext" msgstr "全文" -#: libraries/messages.inc.php:389 +#: libraries/messages.inc.php:385 msgid "Ignore duplicate rows" msgstr "重複している行を無視する" -#: libraries/messages.inc.php:390 tbl_change.php:302 tbl_indexes.php:200 +#: libraries/messages.inc.php:386 tbl_change.php:302 tbl_indexes.php:200 #: tbl_indexes.php:225 msgid "Ignore" msgstr "無視" -#: libraries/messages.inc.php:391 +#: libraries/messages.inc.php:387 msgid "Use ignore inserts" msgstr "INSERT IGNORE を使用する" -#: libraries/messages.inc.php:392 +#: libraries/messages.inc.php:388 msgid "Column names in first row" msgstr "" -#: libraries/messages.inc.php:393 +#: libraries/messages.inc.php:389 msgid "Do not import empty rows" msgstr "" -#: libraries/messages.inc.php:394 pmd_general.php:104 +#: libraries/messages.inc.php:390 pmd_general.php:104 msgid "Import/Export coordinates for PDF schema" msgstr "PDF スキーマの座標をインポート/エクスポートする" -#: libraries/messages.inc.php:395 querywindow.php:104 +#: libraries/messages.inc.php:391 querywindow.php:104 msgid "Import files" msgstr "インポートファイル" -#: libraries/messages.inc.php:403 +#: libraries/messages.inc.php:399 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/messages.inc.php:404 libraries/messages.inc.php:584 +#: libraries/messages.inc.php:400 libraries/messages.inc.php:580 msgid "Open Document Spreadsheet" msgstr "Openスプレッドシート" -#: libraries/messages.inc.php:405 +#: libraries/messages.inc.php:401 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/messages.inc.php:409 +#: libraries/messages.inc.php:405 msgid "Excel 97-2003 XLS Workbook" msgstr "" -#: libraries/messages.inc.php:410 +#: libraries/messages.inc.php:406 msgid "Excel 2007 XLSX Workbook" msgstr "" -#: libraries/messages.inc.php:414 libraries/mult_submits.inc.php:98 +#: libraries/messages.inc.php:410 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:476 tbl_structure.php:674 msgid "Index" msgstr "インデックス" -#: libraries/messages.inc.php:415 tbl_indexes.php:168 +#: libraries/messages.inc.php:411 tbl_indexes.php:168 msgid "Index name:" msgstr "インデックス名:" -#: libraries/messages.inc.php:416 tbl_indexes.php:174 +#: libraries/messages.inc.php:412 tbl_indexes.php:174 msgid "Index type:" msgstr "インデックスの種類:" -#: libraries/messages.inc.php:417 sql.php:639 +#: libraries/messages.inc.php:413 sql.php:639 #, php-format msgid "Problems with indexes of table `%s`" msgstr "テーブル `%s` のインデックスに問題があります" -#: libraries/messages.inc.php:427 main.php:266 +#: libraries/messages.inc.php:423 main.php:266 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -4019,164 +4019,164 @@ msgstr "" "ト設定で動作しているため不正アクセス可能な状態になっています。このセキュリ" "ティホールはかならず閉ざしてください" -#: libraries/messages.inc.php:428 tbl_change.php:1130 +#: libraries/messages.inc.php:424 tbl_change.php:1130 msgid "Insert as new row" msgstr "新しい行として挿入する" -#: libraries/messages.inc.php:429 sql.php:496 tbl_replace.php:386 +#: libraries/messages.inc.php:425 sql.php:496 tbl_replace.php:386 #, php-format msgid "Inserted row id: %1$d" msgstr "id %1$d の行を挿入しました" -#: libraries/messages.inc.php:430 tbl_change.php:1131 +#: libraries/messages.inc.php:426 tbl_change.php:1131 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/messages.inc.php:432 main.php:139 +#: libraries/messages.inc.php:428 main.php:139 msgid "Interface" msgstr "インタフェース" -#: libraries/messages.inc.php:433 tbl_relation.php:407 +#: libraries/messages.inc.php:429 tbl_relation.php:407 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" "対応する外部リレーションが存在する場合、内部リレーションは必要ありません。" -#: libraries/messages.inc.php:435 pdf_pages.php:303 +#: libraries/messages.inc.php:431 pdf_pages.php:303 msgid "Internal relations" msgstr "内部リレーション" -#: libraries/messages.inc.php:438 tbl_indexes.php:256 tbl_structure.php:590 +#: libraries/messages.inc.php:434 tbl_indexes.php:256 tbl_structure.php:590 #: tbl_structure.php:601 msgid "Column count has to be larger than zero." msgstr "カラム数は 0 より大きくなければいけません" -#: libraries/messages.inc.php:444 libraries/tbl_properties.inc.php:784 +#: libraries/messages.inc.php:440 libraries/tbl_properties.inc.php:784 #: tbl_structure.php:537 msgid "You have to add at least one field." msgstr "最低ひとつはフィールドを追加してください" -#: libraries/messages.inc.php:449 +#: libraries/messages.inc.php:445 #, php-format msgid "Invalid server index: \"%s\"" msgstr "サーバのインデックスが不正です: \"%s\"" -#: libraries/messages.inc.php:452 libraries/mysql_charsets.lib.php:259 +#: libraries/messages.inc.php:448 libraries/mysql_charsets.lib.php:259 #: libraries/mysql_charsets.lib.php:349 msgid "Japanese" msgstr "日本語" -#: libraries/messages.inc.php:453 main.php:331 +#: libraries/messages.inc.php:449 main.php:331 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: libraries/messages.inc.php:454 server_status.php:257 +#: libraries/messages.inc.php:450 server_status.php:257 msgid "Joins" msgstr "結合" -#: libraries/messages.inc.php:457 server_privileges.php:763 +#: libraries/messages.inc.php:453 server_privileges.php:763 msgid "Do not change the password" msgstr "パスワードは変更しない" -#: libraries/messages.inc.php:458 server_status.php:256 +#: libraries/messages.inc.php:454 server_status.php:256 msgid "Key cache" msgstr "キーキャッシュ" -#: libraries/messages.inc.php:462 libraries/mysql_charsets.lib.php:268 +#: libraries/messages.inc.php:458 libraries/mysql_charsets.lib.php:268 #: libraries/mysql_charsets.lib.php:371 msgid "Korean" msgstr "韓国語" -#: libraries/messages.inc.php:466 libraries/select_lang.lib.php:480 +#: libraries/messages.inc.php:462 libraries/select_lang.lib.php:480 #: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492 #, php-format msgid "Unknown language: %1$s." msgstr "言語ファイルが登録されていません: %1$s" -#: libraries/messages.inc.php:468 +#: libraries/messages.inc.php:464 msgid "Table caption" msgstr "テーブルのキャプション" -#: libraries/messages.inc.php:469 +#: libraries/messages.inc.php:465 msgid "Content of table __TABLE__" msgstr "テーブル __TABLE__ の内容" -#: libraries/messages.inc.php:470 +#: libraries/messages.inc.php:466 msgid "Continued table caption" msgstr "テーブルのキャプション(続き)" -#: libraries/messages.inc.php:471 +#: libraries/messages.inc.php:467 msgid "(continued)" msgstr "(続き)" -#: libraries/messages.inc.php:472 +#: libraries/messages.inc.php:468 msgid "Include table caption" msgstr "テーブルのキャプションを含める" -#: libraries/messages.inc.php:473 +#: libraries/messages.inc.php:469 msgid "Label key" msgstr "ラベルキー" -#: libraries/messages.inc.php:474 +#: libraries/messages.inc.php:470 msgid "LaTeX" msgstr "LaTeX" -#: libraries/messages.inc.php:475 +#: libraries/messages.inc.php:471 msgid "Structure of table __TABLE__" msgstr "テーブル __TABLE__ の構造" -#: libraries/messages.inc.php:476 libraries/mysql_charsets.lib.php:262 +#: libraries/messages.inc.php:472 libraries/mysql_charsets.lib.php:262 msgid "Latvian" msgstr "ラトビア語" -#: libraries/messages.inc.php:477 +#: libraries/messages.inc.php:473 msgid "CSV using LOAD DATA" msgstr "LOAD DATA する CSV" -#: libraries/messages.inc.php:478 +#: libraries/messages.inc.php:474 msgid "Use LOCAL keyword" msgstr "LOCAL キーワードを使用する" -#: libraries/messages.inc.php:479 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:475 libraries/tbl_properties.inc.php:105 msgid "Length/Values" msgstr "長さ/値" -#: libraries/messages.inc.php:480 tbl_select.php:295 +#: libraries/messages.inc.php:476 tbl_select.php:295 msgid "Number of rows per page" msgstr "ページあたりの行数" -#: libraries/messages.inc.php:484 libraries/mysql_charsets.lib.php:265 +#: libraries/messages.inc.php:480 libraries/mysql_charsets.lib.php:265 msgid "Lithuanian" msgstr "リトアニア語" -#: libraries/messages.inc.php:485 libraries/replication_gui.lib.php:302 +#: libraries/messages.inc.php:481 libraries/replication_gui.lib.php:302 #: server_privileges.php:729 msgid "Local" msgstr "ローカル" -#: libraries/messages.inc.php:487 server_privileges.php:669 +#: libraries/messages.inc.php:483 server_privileges.php:669 msgid "Login Information" msgstr "ログイン情報" -#: libraries/messages.inc.php:490 libraries/navigation_header.inc.php:67 +#: libraries/messages.inc.php:486 libraries/navigation_header.inc.php:67 #: libraries/navigation_header.inc.php:70 #: libraries/navigation_header.inc.php:71 main.php:99 msgid "Log out" msgstr "ログアウト" -#: libraries/messages.inc.php:497 server_status.php:440 +#: libraries/messages.inc.php:493 server_status.php:440 msgid "max. concurrent connections" msgstr "最大同時接続数" -#: libraries/messages.inc.php:498 +#: libraries/messages.inc.php:494 msgid "Maximal length of created query" msgstr "作成するクエリの最大長" -#: libraries/messages.inc.php:500 main.php:282 +#: libraries/messages.inc.php:496 main.php:282 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -4186,7 +4186,7 @@ msgstr "" "いるようですが、mbstring 拡張がないと phpMyAdmin は文字列を正しく分割できない" "ため予期しない結果になることがあります" -#: libraries/messages.inc.php:501 main.php:274 +#: libraries/messages.inc.php:497 main.php:274 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -4195,24 +4195,24 @@ msgstr "" "PHP の設定で mbstring.func_overload が有効になっています。phpMyAdmin はこのオ" "プションに対応していないため、データが破壊されることがあります!" -#: libraries/messages.inc.php:502 +#: libraries/messages.inc.php:498 msgid "MediaWiki Table" msgstr "" -#: libraries/messages.inc.php:503 transformation_overview.php:25 +#: libraries/messages.inc.php:499 transformation_overview.php:25 msgid "Available MIME types" msgstr "利用できる MIME タイプ" -#: libraries/messages.inc.php:504 transformation_overview.php:43 +#: libraries/messages.inc.php:500 transformation_overview.php:43 msgid "Available transformations" msgstr "利用できる変換機能" -#: libraries/messages.inc.php:505 +#: libraries/messages.inc.php:501 msgctxt "$strMIME_description" msgid "Description" msgstr "説明" -#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:580 +#: libraries/messages.inc.php:503 libraries/tbl_properties.inc.php:580 #: transformation_overview.php:60 #, php-format msgid "" @@ -4222,7 +4222,7 @@ msgstr "" "この変換機能には説明がありません。
%s の動作については作者にご確認くださ" "い" -#: libraries/messages.inc.php:509 libraries/tbl_properties.inc.php:137 +#: libraries/messages.inc.php:505 libraries/tbl_properties.inc.php:137 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -4231,7 +4231,7 @@ msgstr "" "利用可能な変換オプションや MIME タイプの変換の一覧については %s変換機能の説" "明%s をご覧ください" -#: libraries/messages.inc.php:510 libraries/tbl_properties.inc.php:146 +#: libraries/messages.inc.php:506 libraries/tbl_properties.inc.php:146 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -4242,56 +4242,56 @@ msgstr "" "ングルクォート (\"'\") を値に含める必要がある場合は ( \\\\xyz や a\\'b のよう" "に) バックスラッシュでエスケープしてください" -#: libraries/messages.inc.php:511 libraries/tbl_properties.inc.php:145 +#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:145 msgid "Transformation options" msgstr "変換オプション" -#: libraries/messages.inc.php:513 transformation_overview.php:38 +#: libraries/messages.inc.php:509 transformation_overview.php:38 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "イタリック表示されている MIME タイプには個別の変換関数はありません" -#: libraries/messages.inc.php:515 tbl_indexes.php:162 +#: libraries/messages.inc.php:511 tbl_indexes.php:162 msgid "Modify an index" msgstr "インデックスを修正する" -#: libraries/messages.inc.php:517 pmd_general.php:108 +#: libraries/messages.inc.php:513 pmd_general.php:108 msgid "Move Menu" msgstr "メニューを移動する" -#: libraries/messages.inc.php:518 tbl_operations.php:276 +#: libraries/messages.inc.php:514 tbl_operations.php:276 msgid "Move table to (database.table):" msgstr "テーブルの移動先(database.table):" -#: libraries/messages.inc.php:519 tbl_move_copy.php:56 +#: libraries/messages.inc.php:515 tbl_move_copy.php:56 #, php-format msgid "Table %s has been moved to %s." msgstr "テーブル %s を %s に移動しました" -#: libraries/messages.inc.php:520 tbl_move_copy.php:46 +#: libraries/messages.inc.php:516 tbl_move_copy.php:46 msgid "Can't move table to same one!" msgstr "同じテーブルには移動できません!" -#: libraries/messages.inc.php:521 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:517 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 #: libraries/mysql_charsets.lib.php:332 libraries/mysql_charsets.lib.php:354 #: libraries/mysql_charsets.lib.php:365 msgid "multilingual" msgstr "多言語" -#: libraries/messages.inc.php:534 main.php:193 +#: libraries/messages.inc.php:530 main.php:193 msgid "MySQL charset" msgstr "MySQL の文字セット" -#: libraries/messages.inc.php:535 main.php:211 +#: libraries/messages.inc.php:531 main.php:211 msgid "MySQL client version" msgstr "MySQL クライアントのバージョン" -#: libraries/messages.inc.php:536 main.php:125 +#: libraries/messages.inc.php:532 main.php:125 msgid "MySQL connection collation" msgstr "MySQL 接続の照合順序" -#: libraries/messages.inc.php:537 main.php:346 +#: libraries/messages.inc.php:533 main.php:346 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -4300,345 +4300,345 @@ msgstr "" "お使いの PHP MySQL ライブラリのバージョン %s が MySQL サーバのバージョン %s " "と異なります。これは予期しない不具合を起こす可能性があります。" -#: libraries/messages.inc.php:539 server_status.php:294 +#: libraries/messages.inc.php:535 server_status.php:294 msgid "Show processes" msgstr "MySQL プロセスの表示" -#: libraries/messages.inc.php:545 navigation.php:210 server_databases.php:371 +#: libraries/messages.inc.php:541 navigation.php:210 server_databases.php:371 #: server_synchronize.php:1191 msgid "No databases" msgstr "データベースが存在しません" -#: libraries/messages.inc.php:546 server_databases.php:52 +#: libraries/messages.inc.php:542 server_databases.php:52 msgid "No databases selected." msgstr "データベースが選択されていません" -#: libraries/messages.inc.php:548 libraries/relation.lib.php:1173 +#: libraries/messages.inc.php:544 libraries/relation.lib.php:1173 msgid "no description" msgstr "説明がありません" -#: libraries/messages.inc.php:552 libraries/zip_extension.lib.php:26 +#: libraries/messages.inc.php:548 libraries/zip_extension.lib.php:26 msgid "No files found inside ZIP archive!" msgstr "ZIP アーカイブにファイルが含まれていません!" -#: libraries/messages.inc.php:555 tbl_indexes.php:91 +#: libraries/messages.inc.php:551 tbl_indexes.php:91 msgid "No index parts defined!" msgstr "インデックス部分が定義されていません!" -#: libraries/messages.inc.php:556 libraries/mult_submits.inc.php:435 +#: libraries/messages.inc.php:552 libraries/mult_submits.inc.php:435 #: tbl_replace.php:331 msgid "No change" msgstr "変更なし" -#: libraries/messages.inc.php:557 +#: libraries/messages.inc.php:553 msgctxt "$strNoneDefault" msgid "None" msgstr "" -#: libraries/messages.inc.php:560 libraries/plugin_interface.lib.php:312 +#: libraries/messages.inc.php:556 libraries/plugin_interface.lib.php:312 msgid "This format has no options" msgstr "この書式にはオプションはありません" -#: libraries/messages.inc.php:565 user_password.php:54 +#: libraries/messages.inc.php:561 user_password.php:54 msgid "You don't have sufficient privileges to be here right now!" msgstr "特権不足でアクセスできません!" -#: libraries/messages.inc.php:566 tbl_row_action.php:29 +#: libraries/messages.inc.php:562 tbl_row_action.php:29 msgid "No rows selected" msgstr "行が選択されていません" -#: libraries/messages.inc.php:569 themes.php:32 +#: libraries/messages.inc.php:565 themes.php:32 #, php-format msgid "" "No themes support; please check your configuration and/or your themes in " "directory %s." msgstr "テーマは利用できません。設定やテーマディレクトリ %s を確認してください" -#: libraries/messages.inc.php:571 libraries/relation.lib.php:95 +#: libraries/messages.inc.php:567 libraries/relation.lib.php:95 msgid "not OK" msgstr "Not OK" -#: libraries/messages.inc.php:572 server_synchronize.php:400 +#: libraries/messages.inc.php:568 server_synchronize.php:400 #: server_synchronize.php:839 msgid "not present" msgstr "" -#: libraries/messages.inc.php:573 pdf_pages.php:36 pdf_pages.php:42 +#: libraries/messages.inc.php:569 pdf_pages.php:36 pdf_pages.php:42 #: pdf_pages.php:48 pdf_pages.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "" "テーブル %s が見つかりません。あるいは %s には設定されていません" -#: libraries/messages.inc.php:574 server_privileges.php:804 +#: libraries/messages.inc.php:570 server_privileges.php:804 #: server_privileges.php:2166 msgid "No user(s) found." msgstr "ユーザが存在しません" -#: libraries/messages.inc.php:578 pmd_general.php:164 +#: libraries/messages.inc.php:574 pmd_general.php:164 msgid "Number of tables" msgstr "テーブル数" -#: libraries/messages.inc.php:581 server_databases.php:117 +#: libraries/messages.inc.php:577 server_databases.php:117 #: server_status.php:260 setup/lib/messages.inc.php:117 msgid "Tables" msgstr "テーブル" -#: libraries/messages.inc.php:583 libraries/relation.lib.php:99 +#: libraries/messages.inc.php:579 libraries/relation.lib.php:99 #: pmd_general.php:340 msgid "OK" msgstr "OK" -#: libraries/messages.inc.php:585 +#: libraries/messages.inc.php:581 msgid "Open Document Text" msgstr "Openテキスト" -#: libraries/messages.inc.php:588 tbl_select.php:138 +#: libraries/messages.inc.php:584 tbl_select.php:138 msgid "Operator" msgstr "演算子" -#: libraries/messages.inc.php:589 tbl_operations.php:662 +#: libraries/messages.inc.php:585 tbl_operations.php:662 msgid "Optimize" msgstr "最適化" -#: libraries/messages.inc.php:602 libraries/tbl_properties.inc.php:755 +#: libraries/messages.inc.php:598 libraries/tbl_properties.inc.php:755 msgid "PARTITION definition" msgstr "パーティションの定義" -#: libraries/messages.inc.php:603 tbl_structure.php:757 +#: libraries/messages.inc.php:599 tbl_structure.php:757 msgid "partitioned" msgstr "パーティション有り" -#: libraries/messages.inc.php:604 tbl_operations.php:649 +#: libraries/messages.inc.php:600 tbl_operations.php:649 msgid "Partition maintenance" msgstr "パーティション管理" -#: libraries/messages.inc.php:605 tbl_operations.php:657 +#: libraries/messages.inc.php:601 tbl_operations.php:657 #, php-format msgid "Partition %s" msgstr "パーティション %s" -#: libraries/messages.inc.php:606 server_privileges.php:1212 +#: libraries/messages.inc.php:602 server_privileges.php:1212 #, php-format msgid "The password for %s was changed successfully." msgstr "%s のパスワードは正しく変更されました" -#: libraries/messages.inc.php:635 +#: libraries/messages.inc.php:631 #, php-format msgid "Schema of the \"%s\" database - Page %s" msgstr "データベース %s のスキーマ - ページ %s" -#: libraries/messages.inc.php:636 +#: libraries/messages.inc.php:632 #, php-format msgid "The \"%s\" table doesn't exist!" msgstr "\"%s\" テーブルは存在しません!" -#: libraries/messages.inc.php:637 pdf_schema.php:1013 +#: libraries/messages.inc.php:633 pdf_schema.php:1013 msgid "No tables" msgstr "テーブルがありません" -#: libraries/messages.inc.php:638 pmd_pdf.php:63 +#: libraries/messages.inc.php:634 pmd_pdf.php:63 msgid "Page has been created" msgstr "" -#: libraries/messages.inc.php:639 pmd_pdf.php:65 +#: libraries/messages.inc.php:635 pmd_pdf.php:65 msgid "Page creation failed" msgstr "" -#: libraries/messages.inc.php:640 +#: libraries/messages.inc.php:636 msgid "PDF" msgstr "PDF" -#: libraries/messages.inc.php:641 +#: libraries/messages.inc.php:637 msgid "(Generates a report containing the data of a single table)" msgstr "(ひとつのテーブルのデータを含むレポートを生成します)" -#: libraries/messages.inc.php:642 +#: libraries/messages.inc.php:638 msgid "Report title" msgstr "レポートのタイトル" -#: libraries/messages.inc.php:643 server_status.php:389 server_status.php:434 +#: libraries/messages.inc.php:639 server_status.php:389 server_status.php:434 #: server_status.php:497 server_status.php:555 msgid "per hour" msgstr "/時" -#: libraries/messages.inc.php:644 server_status.php:498 +#: libraries/messages.inc.php:640 server_status.php:498 msgid "per minute" msgstr "/分" -#: libraries/messages.inc.php:645 server_status.php:499 +#: libraries/messages.inc.php:641 server_status.php:499 msgid "per second" msgstr "/秒" -#: libraries/messages.inc.php:646 libraries/mysql_charsets.lib.php:271 +#: libraries/messages.inc.php:642 libraries/mysql_charsets.lib.php:271 msgid "Persian" msgstr "ペルシア語" -#: libraries/messages.inc.php:647 libraries/mysql_charsets.lib.php:250 +#: libraries/messages.inc.php:643 libraries/mysql_charsets.lib.php:250 msgid "phone book" msgstr "電話帳" -#: libraries/messages.inc.php:648 +#: libraries/messages.inc.php:644 msgid "PHP array" msgstr "" -#: libraries/messages.inc.php:650 main.php:213 +#: libraries/messages.inc.php:646 main.php:213 msgid "PHP extension" msgstr "PHP 拡張" -#: libraries/messages.inc.php:654 libraries/relation.lib.php:163 +#: libraries/messages.inc.php:650 libraries/relation.lib.php:163 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/messages.inc.php:655 libraries/relation.lib.php:159 +#: libraries/messages.inc.php:651 libraries/relation.lib.php:159 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/messages.inc.php:656 libraries/relation.lib.php:161 +#: libraries/messages.inc.php:652 libraries/relation.lib.php:161 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" -#: libraries/messages.inc.php:657 libraries/relation.lib.php:162 +#: libraries/messages.inc.php:653 libraries/relation.lib.php:162 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/messages.inc.php:658 libraries/relation.lib.php:164 +#: libraries/messages.inc.php:654 libraries/relation.lib.php:164 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/messages.inc.php:661 libraries/mysql_charsets.lib.php:274 +#: libraries/messages.inc.php:657 libraries/mysql_charsets.lib.php:274 msgid "Polish" msgstr "ポーランド語" -#: libraries/messages.inc.php:662 libraries/replication_gui.lib.php:67 +#: libraries/messages.inc.php:658 libraries/replication_gui.lib.php:67 #: server_synchronize.php:1163 msgid "Port" msgstr "" -#: libraries/messages.inc.php:667 tbl_indexes.php:67 +#: libraries/messages.inc.php:663 tbl_indexes.php:67 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "主キーの名前は PRIMARY でなければなりません!" -#: libraries/messages.inc.php:668 tbl_indexes.php:184 +#: libraries/messages.inc.php:664 tbl_indexes.php:184 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" "(主キーはかならず \"PRIMARY\" という名前でなければなりません。また主キー以外" "に \"PRIMARY\" という名前を使ってはなりません!)" -#: libraries/messages.inc.php:669 libraries/mult_submits.inc.php:76 +#: libraries/messages.inc.php:665 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:474 msgid "Primary" msgstr "主" -#: libraries/messages.inc.php:673 server_privileges.php:227 +#: libraries/messages.inc.php:669 server_privileges.php:227 msgid "Includes all privileges except GRANT." msgstr "GRANT 以外のすべての特権を付与する" -#: libraries/messages.inc.php:674 server_privileges.php:153 +#: libraries/messages.inc.php:670 server_privileges.php:153 #: server_privileges.php:476 msgid "Allows altering the structure of existing tables." msgstr "既存のテーブル構造の変更を許可する" -#: libraries/messages.inc.php:675 server_privileges.php:169 +#: libraries/messages.inc.php:671 server_privileges.php:169 #: server_privileges.php:482 msgid "Allows altering and dropping stored routines." msgstr "ストアドルーチンの修正と削除を許可する" -#: libraries/messages.inc.php:676 server_privileges.php:145 +#: libraries/messages.inc.php:672 server_privileges.php:145 #: server_privileges.php:475 msgid "Allows creating new databases and tables." msgstr "新しいデータベースやテーブルの作成を許可する" -#: libraries/messages.inc.php:677 server_privileges.php:168 +#: libraries/messages.inc.php:673 server_privileges.php:168 #: server_privileges.php:481 msgid "Allows creating stored routines." msgstr "ストアドルーチンの作成を許可する" -#: libraries/messages.inc.php:678 server_privileges.php:475 +#: libraries/messages.inc.php:674 server_privileges.php:475 msgid "Allows creating new tables." msgstr "新しいテーブルの作成を許可する" -#: libraries/messages.inc.php:679 server_privileges.php:156 +#: libraries/messages.inc.php:675 server_privileges.php:156 #: server_privileges.php:479 msgid "Allows creating temporary tables." msgstr "一時テーブルの作成を許可する" -#: libraries/messages.inc.php:680 server_privileges.php:170 +#: libraries/messages.inc.php:676 server_privileges.php:170 #: server_privileges.php:515 msgid "Allows creating, dropping and renaming user accounts." msgstr "ユーザアカウントの作成・削除・リネームを許可する" -#: libraries/messages.inc.php:681 server_privileges.php:160 +#: libraries/messages.inc.php:677 server_privileges.php:160 #: server_privileges.php:164 server_privileges.php:487 #: server_privileges.php:491 msgid "Allows creating new views." msgstr "新しいビューの作成を許可する" -#: libraries/messages.inc.php:682 server_privileges.php:144 +#: libraries/messages.inc.php:678 server_privileges.php:144 #: server_privileges.php:467 msgid "Allows deleting data." msgstr "データの削除を許可する" -#: libraries/messages.inc.php:683 server_privileges.php:146 +#: libraries/messages.inc.php:679 server_privileges.php:146 #: server_privileges.php:478 msgid "Allows dropping databases and tables." msgstr "データベースとテーブルの削除を許可す" -#: libraries/messages.inc.php:684 server_privileges.php:478 +#: libraries/messages.inc.php:680 server_privileges.php:478 msgid "Allows dropping tables." msgstr "テーブルの削除を許可する" -#: libraries/messages.inc.php:685 server_privileges.php:161 +#: libraries/messages.inc.php:681 server_privileges.php:161 #: server_privileges.php:495 msgid "Allows to set up events for the event scheduler" msgstr "イベントスケジューラにイベントを設定できるようにする" -#: libraries/messages.inc.php:686 server_privileges.php:171 +#: libraries/messages.inc.php:682 server_privileges.php:171 #: server_privileges.php:483 msgid "Allows executing stored routines." msgstr "ストアドルーチンの実行を許可する" -#: libraries/messages.inc.php:687 server_privileges.php:150 +#: libraries/messages.inc.php:683 server_privileges.php:150 #: server_privileges.php:470 msgid "Allows importing data from and exporting data into files." msgstr "データのインポート、エクスポートを許可する" -#: libraries/messages.inc.php:688 server_privileges.php:501 +#: libraries/messages.inc.php:684 server_privileges.php:501 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "特権テーブルのリロードなしのユーザ・特権の追加を許可する" -#: libraries/messages.inc.php:689 server_privileges.php:152 +#: libraries/messages.inc.php:685 server_privileges.php:152 #: server_privileges.php:477 msgid "Allows creating and dropping indexes." msgstr "インデックスの作成、削除を許可する" -#: libraries/messages.inc.php:690 server_privileges.php:142 +#: libraries/messages.inc.php:686 server_privileges.php:142 #: server_privileges.php:403 server_privileges.php:465 msgid "Allows inserting and replacing data." msgstr "データの挿入、置換を許可する" -#: libraries/messages.inc.php:691 server_privileges.php:157 +#: libraries/messages.inc.php:687 server_privileges.php:157 #: server_privileges.php:510 msgid "Allows locking tables for the current thread." msgstr "現在のスレッドのテーブルロックを許可する" -#: libraries/messages.inc.php:692 server_privileges.php:607 +#: libraries/messages.inc.php:688 server_privileges.php:607 #: server_privileges.php:609 msgid "Limits the number of new connections the user may open per hour." msgstr "単位時間内に可能な新規接続回数を制限する" -#: libraries/messages.inc.php:693 server_privileges.php:595 +#: libraries/messages.inc.php:689 server_privileges.php:595 #: server_privileges.php:597 msgid "Limits the number of queries the user may send to the server per hour." msgstr "単位時間内にサーバに送信可能なクエリ数を制限する" -#: libraries/messages.inc.php:694 server_privileges.php:601 +#: libraries/messages.inc.php:690 server_privileges.php:601 #: server_privileges.php:603 msgid "" "Limits the number of commands that change any table or database the user may " @@ -4646,57 +4646,57 @@ msgid "" msgstr "" "単位時間内に実行可能なテーブルないしデータベースの編集コマンド数を制限する" -#: libraries/messages.inc.php:695 server_privileges.php:613 +#: libraries/messages.inc.php:691 server_privileges.php:613 #: server_privileges.php:615 msgid "Limits the number of simultaneous connections the user may have." msgstr "ユーザの同時接続数を制限する" -#: libraries/messages.inc.php:696 server_privileges.php:149 +#: libraries/messages.inc.php:692 server_privileges.php:149 #: server_privileges.php:505 msgid "Allows viewing processes of all users" msgstr "全ユーザのプロセスを閲覧できるようにする" -#: libraries/messages.inc.php:697 server_privileges.php:151 +#: libraries/messages.inc.php:693 server_privileges.php:151 #: server_privileges.php:409 server_privileges.php:511 msgid "Has no effect in this MySQL version." msgstr "このバージョンの MySQL では無効です" -#: libraries/messages.inc.php:698 server_privileges.php:147 +#: libraries/messages.inc.php:694 server_privileges.php:147 #: server_privileges.php:506 msgid "Allows reloading server settings and flushing the server's caches." msgstr "サーバ設定のリロード、サーバキャッシュのフラッシュを許可する" -#: libraries/messages.inc.php:699 server_privileges.php:159 +#: libraries/messages.inc.php:695 server_privileges.php:159 #: server_privileges.php:513 msgid "Allows the user to ask where the slaves / masters are." msgstr "スレーブ/マスターの照会を許可する" -#: libraries/messages.inc.php:700 server_privileges.php:158 +#: libraries/messages.inc.php:696 server_privileges.php:158 #: server_privileges.php:514 msgid "Needed for the replication slaves." msgstr "レプリケーションスレーブでは有効にする必要があります" -#: libraries/messages.inc.php:701 server_privileges.php:141 +#: libraries/messages.inc.php:697 server_privileges.php:141 #: server_privileges.php:400 server_privileges.php:464 msgid "Allows reading data." msgstr "データの読み込みを許可する" -#: libraries/messages.inc.php:702 server_privileges.php:154 +#: libraries/messages.inc.php:698 server_privileges.php:154 #: server_privileges.php:508 msgid "Gives access to the complete list of databases." msgstr "データベース総一覧へのアクセスを許可する" -#: libraries/messages.inc.php:703 server_privileges.php:165 +#: libraries/messages.inc.php:699 server_privileges.php:165 #: server_privileges.php:167 server_privileges.php:480 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "SHOW CREATE VIEW クエリの実行を許可する" -#: libraries/messages.inc.php:704 server_privileges.php:148 +#: libraries/messages.inc.php:700 server_privileges.php:148 #: server_privileges.php:507 msgid "Allows shutting down the server." msgstr "サーバのシャットダウンを許可する" -#: libraries/messages.inc.php:705 server_privileges.php:155 +#: libraries/messages.inc.php:701 server_privileges.php:155 #: server_privileges.php:504 msgid "" "Allows connecting, even if maximum number of connections is reached; " @@ -4707,55 +4707,55 @@ msgstr "" "ザのスレッドを停止するといった管理操作をする場合はたいていこの設定が必要にな" "ります" -#: libraries/messages.inc.php:706 server_privileges.php:162 +#: libraries/messages.inc.php:702 server_privileges.php:162 #: server_privileges.php:496 msgid "Allows creating and dropping triggers" msgstr "トリガの作成・削除を許可する" -#: libraries/messages.inc.php:707 server_privileges.php:143 +#: libraries/messages.inc.php:703 server_privileges.php:143 #: server_privileges.php:406 server_privileges.php:466 msgid "Allows changing data." msgstr "データの修正を許可する" -#: libraries/messages.inc.php:708 server_privileges.php:221 +#: libraries/messages.inc.php:704 server_privileges.php:221 msgid "No privileges." msgstr "特権はありません" -#: libraries/messages.inc.php:710 server_privileges.php:1296 +#: libraries/messages.inc.php:706 server_privileges.php:1296 msgid "The privileges were reloaded successfully." msgstr "特権を正常にリロードしました" -#: libraries/messages.inc.php:712 libraries/server_links.inc.php:80 +#: libraries/messages.inc.php:708 libraries/server_links.inc.php:80 msgid "Processes" msgstr "プロセス" -#: libraries/messages.inc.php:714 main.php:187 +#: libraries/messages.inc.php:710 main.php:187 msgid "Protocol version" msgstr "プロトコルバージョン" -#: libraries/messages.inc.php:715 +#: libraries/messages.inc.php:711 msgid "Put fields names in the first row" msgstr "1 行目にフィールド名を追加する" -#: libraries/messages.inc.php:720 server_synchronize.php:1003 +#: libraries/messages.inc.php:716 server_synchronize.php:1003 msgid "The following queries have been executed:" msgstr "" -#: libraries/messages.inc.php:721 server_status.php:251 +#: libraries/messages.inc.php:717 server_status.php:251 msgid "Query cache" msgstr "クエリキャッシュ" -#: libraries/messages.inc.php:722 libraries/navigation_header.inc.php:80 +#: libraries/messages.inc.php:718 libraries/navigation_header.inc.php:80 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 setup/lib/messages.inc.php:122 msgid "Query window" msgstr "クエリウィンドウ" -#: libraries/messages.inc.php:725 querywindow.php:109 querywindow.php:217 +#: libraries/messages.inc.php:721 querywindow.php:109 querywindow.php:217 msgid "SQL history" msgstr "SQL 履歴" -#: libraries/messages.inc.php:726 server_status.php:490 +#: libraries/messages.inc.php:722 server_status.php:490 #, php-format msgid "" "Query statistics: Since its startup, %s queries have been sent to the " @@ -4763,135 +4763,135 @@ msgid "" msgstr "" "クエリ統計: 起動時から数えて %s 個のクエリをサーバに送信しました" -#: libraries/messages.inc.php:728 server_status.php:554 +#: libraries/messages.inc.php:724 server_status.php:554 msgid "Query type" msgstr "クエリ種別" -#: libraries/messages.inc.php:729 libraries/sql_query_form.lib.php:381 +#: libraries/messages.inc.php:725 libraries/sql_query_form.lib.php:381 msgid "Do not overwrite this query from outside the window" msgstr "他のウィンドウからクエリを上書きすることはできません" -#: libraries/messages.inc.php:732 tbl_operations.php:663 +#: libraries/messages.inc.php:728 tbl_operations.php:663 msgid "Rebuild" msgstr "再構築" -#: libraries/messages.inc.php:733 server_status.php:394 +#: libraries/messages.inc.php:729 server_status.php:394 msgid "Received" msgstr "受信済" -#: libraries/messages.inc.php:734 pmd_pdf.php:89 +#: libraries/messages.inc.php:730 pmd_pdf.php:89 msgid "recommended" msgstr "推奨" -#: libraries/messages.inc.php:736 tbl_operations.php:702 +#: libraries/messages.inc.php:732 tbl_operations.php:702 msgid "Check referential integrity:" msgstr "参照整合性の確認:" -#: libraries/messages.inc.php:740 pdf_schema.php:1032 pdf_schema.php:1141 +#: libraries/messages.inc.php:736 pdf_schema.php:1032 pdf_schema.php:1141 msgid "Relational schema" msgstr "リレーショナルスキーマ" -#: libraries/messages.inc.php:744 tbl_relation.php:399 +#: libraries/messages.inc.php:740 tbl_relation.php:399 msgid "Relations" msgstr "リレーション" -#: libraries/messages.inc.php:745 tbl_structure.php:507 tbl_structure.php:509 +#: libraries/messages.inc.php:741 tbl_structure.php:507 tbl_structure.php:509 msgid "Relation view" msgstr "リレーションビュー" -#: libraries/messages.inc.php:746 server_privileges.php:1246 +#: libraries/messages.inc.php:742 server_privileges.php:1246 msgid "Reloading the privileges" msgstr "特権をリロードしています" -#: libraries/messages.inc.php:747 navigation.php:66 navigation.php:67 +#: libraries/messages.inc.php:743 navigation.php:66 navigation.php:67 #: navigation.php:70 msgid "Reload navigation frame" msgstr "" -#: libraries/messages.inc.php:748 pmd_general.php:80 +#: libraries/messages.inc.php:744 pmd_general.php:80 msgid "Reload" msgstr "リロード" -#: libraries/messages.inc.php:749 libraries/server_synchronize.lib.php:1345 +#: libraries/messages.inc.php:745 libraries/server_synchronize.lib.php:1345 #: libraries/server_synchronize.lib.php:1371 msgid "Remote server" msgstr "" -#: libraries/messages.inc.php:750 +#: libraries/messages.inc.php:746 msgid "Remove CRLF characters within fields" msgstr "" -#: libraries/messages.inc.php:751 tbl_operations.php:676 +#: libraries/messages.inc.php:747 tbl_operations.php:676 msgid "Remove partitioning" msgstr "パーティションを削除" -#: libraries/messages.inc.php:752 server_privileges.php:1575 +#: libraries/messages.inc.php:748 server_privileges.php:1575 msgid "Remove selected users" msgstr "選択したユーザを削除する" -#: libraries/messages.inc.php:755 tbl_operations.php:338 +#: libraries/messages.inc.php:751 tbl_operations.php:338 msgid "Rename table to" msgstr "リネーム後のテーブル名" -#: libraries/messages.inc.php:756 view_operations.php:93 +#: libraries/messages.inc.php:752 view_operations.php:93 msgid "Rename view to" msgstr "" -#: libraries/messages.inc.php:757 tbl_operations.php:664 +#: libraries/messages.inc.php:753 tbl_operations.php:664 msgid "Repair" msgstr "修復" -#: libraries/messages.inc.php:759 +#: libraries/messages.inc.php:755 msgid "Replace NULL by" msgstr "NULL の代替文字列" -#: libraries/messages.inc.php:760 +#: libraries/messages.inc.php:756 msgid "Replace table data with file" msgstr "テーブルデータを差し替えるファイル" -#: libraries/messages.inc.php:761 server_replication.php:228 +#: libraries/messages.inc.php:757 server_replication.php:228 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: libraries/messages.inc.php:762 libraries/replication_gui.lib.php:236 +#: libraries/messages.inc.php:758 libraries/replication_gui.lib.php:236 #: server_replication.php:194 msgid "Add slave replication user" msgstr "" -#: libraries/messages.inc.php:763 server_replication.php:74 +#: libraries/messages.inc.php:759 server_replication.php:74 #, php-format msgid "Master server changed succesfully to %s" msgstr "" -#: libraries/messages.inc.php:764 server_replication.php:182 +#: libraries/messages.inc.php:760 server_replication.php:182 msgid "This server is configured as master in a replication process." msgstr "" -#: libraries/messages.inc.php:765 server_replication.php:322 +#: libraries/messages.inc.php:761 server_replication.php:322 msgid "Control slave:" msgstr "" -#: libraries/messages.inc.php:766 server_replication.php:65 +#: libraries/messages.inc.php:762 server_replication.php:65 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: libraries/messages.inc.php:767 server_replication.php:58 +#: libraries/messages.inc.php:763 server_replication.php:58 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: libraries/messages.inc.php:768 server_replication.php:221 +#: libraries/messages.inc.php:764 server_replication.php:221 msgid "Replicate all databases; Ignore:" msgstr "" -#: libraries/messages.inc.php:769 server_replication.php:222 +#: libraries/messages.inc.php:765 server_replication.php:222 msgid "Ignore all databases; Replicate:" msgstr "" -#: libraries/messages.inc.php:770 server_replication.php:218 +#: libraries/messages.inc.php:766 server_replication.php:218 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -4900,120 +4900,120 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: libraries/messages.inc.php:771 server_replication.php:217 +#: libraries/messages.inc.php:767 server_replication.php:217 msgid "Master configuration" msgstr "" -#: libraries/messages.inc.php:772 server_replication.php:181 +#: libraries/messages.inc.php:768 server_replication.php:181 #: server_replication.php:209 msgid "Master replication" msgstr "" -#: libraries/messages.inc.php:774 server_replication.php:230 +#: libraries/messages.inc.php:770 server_replication.php:230 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: libraries/messages.inc.php:775 server_replication.php:225 +#: libraries/messages.inc.php:771 server_replication.php:225 msgid "Please select databases:" msgstr "" -#: libraries/messages.inc.php:776 server_replication.php:210 +#: libraries/messages.inc.php:772 server_replication.php:210 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:188 +#: libraries/messages.inc.php:773 libraries/replication_gui.lib.php:188 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/messages.inc.php:778 server_replication.php:187 +#: libraries/messages.inc.php:774 server_replication.php:187 msgid "Show connected slaves" msgstr "" -#: libraries/messages.inc.php:779 libraries/messages.inc.php:885 +#: libraries/messages.inc.php:775 libraries/messages.inc.php:881 #: server_replication.php:184 server_status.php:281 msgid "Show master status" msgstr "" -#: libraries/messages.inc.php:780 server_replication.php:334 +#: libraries/messages.inc.php:776 server_replication.php:334 msgid "Skipping error(s) might lead into unsynchronized master and slave!" msgstr "" -#: libraries/messages.inc.php:781 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:51 #: server_replication.php:347 msgid "Change or reconfigure master server" msgstr "" -#: libraries/messages.inc.php:782 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:778 libraries/replication_gui.lib.php:51 msgid "Slave configuration" msgstr "" -#: libraries/messages.inc.php:783 server_replication.php:305 +#: libraries/messages.inc.php:779 server_replication.php:305 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: libraries/messages.inc.php:784 server_replication.php:332 +#: libraries/messages.inc.php:780 server_replication.php:332 msgid "Error management:" msgstr "" -#: libraries/messages.inc.php:785 server_replication.php:328 +#: libraries/messages.inc.php:781 server_replication.php:328 #, php-format msgid "IO Thread %s only" msgstr "" -#: libraries/messages.inc.php:786 server_replication.php:296 +#: libraries/messages.inc.php:782 server_replication.php:296 msgid "Slave IO Thread not running!" msgstr "" -#: libraries/messages.inc.php:787 server_replication.php:355 +#: libraries/messages.inc.php:783 server_replication.php:355 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/messages.inc.php:788 server_replication.php:326 +#: libraries/messages.inc.php:784 server_replication.php:326 msgid "Reset slave" msgstr "" -#: libraries/messages.inc.php:789 server_replication.php:308 +#: libraries/messages.inc.php:785 server_replication.php:308 msgid "See slave status table" msgstr "" -#: libraries/messages.inc.php:790 server_replication.php:336 +#: libraries/messages.inc.php:786 server_replication.php:336 msgid "Skip current error" msgstr "" -#: libraries/messages.inc.php:791 server_replication.php:340 +#: libraries/messages.inc.php:787 server_replication.php:340 msgid "errors." msgstr "" -#: libraries/messages.inc.php:792 server_replication.php:337 +#: libraries/messages.inc.php:788 server_replication.php:337 msgid "Skip next" msgstr "" -#: libraries/messages.inc.php:793 server_replication.php:248 +#: libraries/messages.inc.php:789 server_replication.php:248 msgid "Slave replication" msgstr "" -#: libraries/messages.inc.php:794 server_replication.php:293 +#: libraries/messages.inc.php:790 server_replication.php:293 msgid "Slave SQL Thread not running!" msgstr "" -#: libraries/messages.inc.php:795 server_replication.php:327 +#: libraries/messages.inc.php:791 server_replication.php:327 #, php-format msgid "SQL Thread %s only" msgstr "" -#: libraries/messages.inc.php:796 +#: libraries/messages.inc.php:792 #, php-format msgid "" "This MySQL server works as %s in replication process. For further " @@ -5021,159 +5021,159 @@ msgid "" "\"#replication\">replication section." msgstr "" -#: libraries/messages.inc.php:797 +#: libraries/messages.inc.php:793 msgid "Master status" msgstr "" -#: libraries/messages.inc.php:798 server_status.php:721 +#: libraries/messages.inc.php:794 server_status.php:721 msgid "Replication status" msgstr "" -#: libraries/messages.inc.php:799 +#: libraries/messages.inc.php:795 msgid "Slave status" msgstr "" -#: libraries/messages.inc.php:800 server_replication.php:311 +#: libraries/messages.inc.php:796 server_replication.php:311 msgid "Synchronize databases with master" msgstr "" -#: libraries/messages.inc.php:801 server_replication.php:71 +#: libraries/messages.inc.php:797 server_replication.php:71 msgid "Unable to change master" msgstr "" -#: libraries/messages.inc.php:802 server_replication.php:51 +#: libraries/messages.inc.php:798 server_replication.php:51 msgid "Unknown error" msgstr "" -#: libraries/messages.inc.php:803 main.php:163 pdf_pages.php:344 +#: libraries/messages.inc.php:799 main.php:163 pdf_pages.php:344 #: setup/lib/FormDisplay.tpl.php:216 tbl_change.php:1175 msgid "Reset" msgstr "リセット" -#: libraries/messages.inc.php:804 server_privileges.php:591 +#: libraries/messages.inc.php:800 server_privileges.php:591 msgid "Resource limits" msgstr "リソースの制限" -#: libraries/messages.inc.php:805 tbl_change.php:1209 +#: libraries/messages.inc.php:801 tbl_change.php:1209 #, php-format msgid "Restart insertion with %s rows" msgstr "%s 行から挿入を再開する" -#: libraries/messages.inc.php:807 server_privileges.php:1578 +#: libraries/messages.inc.php:803 server_privileges.php:1578 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "特権をすべて取り消してユーザを削除する" -#: libraries/messages.inc.php:808 server_privileges.php:1176 +#: libraries/messages.inc.php:804 server_privileges.php:1176 #, php-format msgid "You have revoked the privileges for %s" msgstr "%s の特権を取り消しました" -#: libraries/messages.inc.php:809 server_privileges.php:1333 +#: libraries/messages.inc.php:805 server_privileges.php:1333 msgid "Revoke" msgstr "取り消し" -#: libraries/messages.inc.php:810 libraries/mysql_charsets.lib.php:280 +#: libraries/messages.inc.php:806 libraries/mysql_charsets.lib.php:280 msgid "Romanian" msgstr "ルーマニア語" -#: libraries/messages.inc.php:813 tbl_printview.php:404 tbl_structure.php:786 +#: libraries/messages.inc.php:809 tbl_printview.php:404 tbl_structure.php:786 msgid "Row length" msgstr "行の長さ" -#: libraries/messages.inc.php:815 tbl_printview.php:414 tbl_structure.php:794 +#: libraries/messages.inc.php:811 tbl_printview.php:414 tbl_structure.php:794 msgid " Row size " msgstr " 行のサイズ " -#: libraries/messages.inc.php:821 tbl_printview.php:366 tbl_structure.php:726 +#: libraries/messages.inc.php:817 tbl_printview.php:366 tbl_structure.php:726 msgid "Row Statistics" msgstr "行の統計" -#: libraries/messages.inc.php:822 +#: libraries/messages.inc.php:818 #, php-format msgid "running on %s" msgstr "実行環境: %s" -#: libraries/messages.inc.php:824 libraries/sql_query_form.lib.php:223 +#: libraries/messages.inc.php:820 libraries/sql_query_form.lib.php:223 #, php-format msgid "Run SQL query/queries on server %s" msgstr "サーバ %s 上でクエリを実行する" -#: libraries/messages.inc.php:825 libraries/sql_query_form.lib.php:240 +#: libraries/messages.inc.php:821 libraries/sql_query_form.lib.php:240 #: libraries/sql_query_form.lib.php:265 #, php-format msgid "Run SQL query/queries on database %s" msgstr "データベース %s 上でクエリを実行する" -#: libraries/messages.inc.php:826 libraries/mysql_charsets.lib.php:337 +#: libraries/messages.inc.php:822 libraries/mysql_charsets.lib.php:337 msgid "Russian" msgstr "ロシア語" -#: libraries/messages.inc.php:829 pmd_general.php:68 +#: libraries/messages.inc.php:825 pmd_general.php:68 msgid "Save position" msgstr "位置を保存" -#: libraries/messages.inc.php:830 libraries/tbl_properties.inc.php:776 +#: libraries/messages.inc.php:826 libraries/tbl_properties.inc.php:776 #: pdf_pages.php:484 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:214 setup/lib/FormDisplay.tpl.php:215 #: tbl_change.php:1126 tbl_indexes.php:248 tbl_relation.php:566 msgid "Save" msgstr "保存する" -#: libraries/messages.inc.php:831 +#: libraries/messages.inc.php:827 msgid "The scale factor is too small to fit the schema on one page" msgstr "倍率が小さすぎるためスキーマが 1 ページに収まりません" -#: libraries/messages.inc.php:843 main.php:298 +#: libraries/messages.inc.php:839 main.php:298 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "設定ファイルが秘密のパスフレーズ (blowfish_secret) を必要とするようになりまし" "た" -#: libraries/messages.inc.php:844 navigation.php:353 navigation.php:516 +#: libraries/messages.inc.php:840 navigation.php:353 navigation.php:516 msgid "Please select a database" msgstr "データベースを選択してください" -#: libraries/messages.inc.php:846 server_binlog.php:120 +#: libraries/messages.inc.php:842 server_binlog.php:120 msgid "Select binary log to view" msgstr "表示するバイナリログを選択してください" -#: libraries/messages.inc.php:847 tbl_select.php:270 +#: libraries/messages.inc.php:843 tbl_select.php:270 msgid "Select fields (at least one):" msgstr "フィールドを選択してください(最低1つ):" -#: libraries/messages.inc.php:851 pdf_pages.php:320 +#: libraries/messages.inc.php:847 pdf_pages.php:320 msgid "Select Tables" msgstr "テーブルを選択してください" -#: libraries/messages.inc.php:853 server_status.php:404 +#: libraries/messages.inc.php:849 server_status.php:404 msgid "Sent" msgstr "送信済" -#: libraries/messages.inc.php:857 libraries/select_server.lib.php:45 +#: libraries/messages.inc.php:853 libraries/select_server.lib.php:45 #: setup/frames/index.inc.php:97 setup/lib/messages.inc.php:115 msgid "Servers" msgstr "サーバ" -#: libraries/messages.inc.php:858 server_status.php:255 +#: libraries/messages.inc.php:854 server_status.php:255 msgid "Delayed inserts" msgstr "遅延インサート" -#: libraries/messages.inc.php:859 server_status.php:46 +#: libraries/messages.inc.php:855 server_status.php:46 msgid "Runtime Information" msgstr "ランタイム情報" -#: libraries/messages.inc.php:860 server_status.php:350 +#: libraries/messages.inc.php:856 server_status.php:350 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "この MySQL サーバの稼働時間: %s (起動時刻: %s)" -#: libraries/messages.inc.php:861 libraries/server_links.inc.php:53 +#: libraries/messages.inc.php:857 libraries/server_links.inc.php:53 #: server_engines.php:112 server_engines.php:116 server_status.php:304 #: test/theme.php:105 msgid "Variables" msgstr "変数" -#: libraries/messages.inc.php:862 server_status.php:383 +#: libraries/messages.inc.php:858 server_status.php:383 msgid "" "Server traffic: These tables show the network traffic statistics of " "this MySQL server since its startup." @@ -5181,11 +5181,11 @@ msgstr "" "サーバトラフィック: これらの表は MySQL サーバ起動以後のネットワークト" "ラフィックの統計です" -#: libraries/messages.inc.php:863 server_variables.php:35 +#: libraries/messages.inc.php:859 server_variables.php:35 msgid "Server variables and settings" msgstr "サーバ変数と設定値" -#: libraries/messages.inc.php:865 main.php:290 +#: libraries/messages.inc.php:861 main.php:290 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -5193,7 +5193,7 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: libraries/messages.inc.php:866 +#: libraries/messages.inc.php:862 msgid "" "Cannot start session without errors, please check errors given in your PHP " "and/or webserver log file and configure your PHP installation properly." @@ -5201,11 +5201,11 @@ msgstr "" "エラーが出たためセッションを開始できませんでした。PHP やウェブサーバのログ" "ファイルに出ているエラーを確認して、PHP を正しく設定してください。" -#: libraries/messages.inc.php:867 server_variables.php:55 +#: libraries/messages.inc.php:863 server_variables.php:55 msgid "Session value" msgstr "セッション値" -#: libraries/messages.inc.php:868 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:864 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 " @@ -5216,44 +5216,44 @@ msgstr "" "バックスラッシュ(\"\\\")やシングルクォート(\"'\")を含める必要がある場合は " "( \\\\xyz や a\\'b のように) その前にバックスラッシュを付けてください" -#: libraries/messages.inc.php:876 server_binlog.php:192 server_binlog.php:195 +#: libraries/messages.inc.php:872 server_binlog.php:192 server_binlog.php:195 #: server_processlist.php:49 server_processlist.php:51 msgid "Show Full Queries" msgstr "クエリ全体を表示" -#: libraries/messages.inc.php:878 pmd_general.php:64 +#: libraries/messages.inc.php:874 pmd_general.php:64 msgid "Show/Hide left menu" msgstr "左側のメニューを表示する/隠す" -#: libraries/messages.inc.php:880 sql.php:513 +#: libraries/messages.inc.php:876 sql.php:513 msgid "Showing as PHP code" msgstr "PHP コードとして表示" -#: libraries/messages.inc.php:882 sql.php:516 tbl_replace.php:360 +#: libraries/messages.inc.php:878 sql.php:516 tbl_replace.php:360 msgid "Showing SQL query" msgstr "SQL クエリを表示" -#: libraries/messages.inc.php:883 tbl_change.php:1132 +#: libraries/messages.inc.php:879 tbl_change.php:1132 msgid "Show insert query" msgstr "" -#: libraries/messages.inc.php:886 server_status.php:273 +#: libraries/messages.inc.php:882 server_status.php:273 msgid "Show open tables" msgstr "開いているテーブルを表示する" -#: libraries/messages.inc.php:887 main.php:219 +#: libraries/messages.inc.php:883 main.php:219 msgid "Show PHP information" msgstr "PHP 情報" -#: libraries/messages.inc.php:889 server_status.php:278 +#: libraries/messages.inc.php:885 server_status.php:278 msgid "Show slave hosts" msgstr "スレーブホストを表示する" -#: libraries/messages.inc.php:890 server_status.php:284 +#: libraries/messages.inc.php:886 server_status.php:284 msgid "Show slave status" msgstr "スレーブの状態を表示する" -#: libraries/messages.inc.php:891 +#: libraries/messages.inc.php:887 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -5262,11 +5262,11 @@ msgstr "" "一時バイナリログキャッシュを利用したものの binlog_cache_size の値を超過したた" "め一時ファイルにステートメントを保存したトランザクション数" -#: libraries/messages.inc.php:892 +#: libraries/messages.inc.php:888 msgid "The number of transactions that used the temporary binary log cache." msgstr "一時バイナリログキャッシュを使用したトランザクション数" -#: libraries/messages.inc.php:893 +#: libraries/messages.inc.php:889 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -5277,24 +5277,24 @@ msgstr "" "Created_tmp_disk_tables の値が大きい場合は tmp_table_size の値を増やしてディ" "スク上ではなくメモリ上に一時テーブルを構築した方がよいかもしれません" -#: libraries/messages.inc.php:894 +#: libraries/messages.inc.php:890 msgid "How many temporary files mysqld has created." msgstr "mysqld が生成した一時ファイル数" -#: libraries/messages.inc.php:895 +#: libraries/messages.inc.php:891 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "ステートメント実行中にサーバが自動生成したメモリ上の一時テーブル数" -#: libraries/messages.inc.php:896 +#: libraries/messages.inc.php:892 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" "何らかのエラー (たぶんキーの重複) が発生したため INSERT DELAYED された行数" -#: libraries/messages.inc.php:897 +#: libraries/messages.inc.php:893 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -5302,23 +5302,23 @@ msgstr "" "使用中の INSERT DELAYED ハンドラのスレッド数。INSERT DELAYED を適用するテーブ" "ルの数だけ固有のスレッドが用意されます" -#: libraries/messages.inc.php:898 +#: libraries/messages.inc.php:894 msgid "The number of INSERT DELAYED rows written." msgstr "INSERT DELAYED で書き込まれた行数" -#: libraries/messages.inc.php:899 +#: libraries/messages.inc.php:895 msgid "The number of executed FLUSH statements." msgstr "FLUSH 文の実行回数" -#: libraries/messages.inc.php:900 +#: libraries/messages.inc.php:896 msgid "The number of internal COMMIT statements." msgstr "内部で COMMIT 文を実行した回数" -#: libraries/messages.inc.php:901 +#: libraries/messages.inc.php:897 msgid "The number of times a row was deleted from a table." msgstr "テーブルから行を削除した回数" -#: libraries/messages.inc.php:902 +#: libraries/messages.inc.php:898 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -5328,7 +5328,7 @@ msgstr "" "ての情報を持っているか問い合わせることができます。これを開示と言いますが、" "Handler_discover はその開示されたタイムテーブルの数です" -#: libraries/messages.inc.php:903 +#: libraries/messages.inc.php:899 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -5338,7 +5338,7 @@ msgstr "" "もインデックスのフルスキャンを実行しているものと思われます。例えば SELECT " "col1 FROM foo を実行した場合 (col1 はインデックスに含まれているものとします)" -#: libraries/messages.inc.php:904 +#: libraries/messages.inc.php:900 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -5346,7 +5346,7 @@ msgstr "" "キーに基づいて行を読み込んだリクエストの数。この値が高い場合はクエリとテーブ" "ルが適切にインデックスされているものと考えられます" -#: libraries/messages.inc.php:905 +#: libraries/messages.inc.php:901 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -5355,7 +5355,7 @@ msgstr "" "キーの順序通りに次の行を読み込んだリクエストの数。この値はインデックス列のク" "エリに範囲指定をしているか、インデックススキャンを行っているときに増加します" -#: libraries/messages.inc.php:906 +#: libraries/messages.inc.php:902 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -5363,7 +5363,7 @@ msgstr "" "キーの順序通りに前の行を読み込んだリクエストの数。この読み込みは主に ORDER " "BY ... DESC の最適化に利用されます" -#: libraries/messages.inc.php:907 +#: libraries/messages.inc.php:903 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -5375,7 +5375,7 @@ msgstr "" "キャンしなければならないクエリを大量に行っているか、結合の際のキーの使い方に" "不適切なところがあります" -#: libraries/messages.inc.php:908 +#: libraries/messages.inc.php:904 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -5386,36 +5386,36 @@ msgstr "" "キャンを大量に実行しているためです。一般にこれはテーブルのインデックスが不適" "切か、クエリがインデックスを利用するように書かれていないことを意味します" -#: libraries/messages.inc.php:909 +#: libraries/messages.inc.php:905 msgid "The number of internal ROLLBACK statements." msgstr "内部で ROLLBACK 文を実行した回数" -#: libraries/messages.inc.php:910 +#: libraries/messages.inc.php:906 msgid "The number of requests to update a row in a table." msgstr "テーブル内の行を更新したリクエストの数" -#: libraries/messages.inc.php:911 +#: libraries/messages.inc.php:907 msgid "The number of requests to insert a row in a table." msgstr "テーブル内に行を挿入したリクエストの数" -#: libraries/messages.inc.php:912 +#: libraries/messages.inc.php:908 msgid "The number of pages containing data (dirty or clean)." msgstr "" "データが含まれるページの数 (ダーティページ、クリーンページの別を問わず)" -#: libraries/messages.inc.php:913 +#: libraries/messages.inc.php:909 msgid "The number of pages currently dirty." msgstr "現在のダーティページの数" -#: libraries/messages.inc.php:914 +#: libraries/messages.inc.php:910 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "フラッシュリクエストを受けたバッファプールのページ数" -#: libraries/messages.inc.php:915 +#: libraries/messages.inc.php:911 msgid "The number of free pages." msgstr "空きページ数" -#: libraries/messages.inc.php:916 +#: libraries/messages.inc.php:912 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -5425,7 +5425,7 @@ msgstr "" "るいは書き込んでいるページ、あるいは他の何らかの理由でフラッシュしたり削除し" "たりできなくなっているページの数です" -#: libraries/messages.inc.php:917 +#: libraries/messages.inc.php:913 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -5437,11 +5437,11 @@ msgstr "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_dataという式でも計算" "できます" -#: libraries/messages.inc.php:918 +#: libraries/messages.inc.php:914 msgid "Total size of buffer pool, in pages." msgstr "ページのバッファプールサイズの合計" -#: libraries/messages.inc.php:919 +#: libraries/messages.inc.php:915 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -5449,7 +5449,7 @@ msgstr "" "InnoDBが開始したランダム読み込みの回数。これはクエリがテーブルの大部分をラン" "ダムな順番でスキャンするときに発生します" -#: libraries/messages.inc.php:920 +#: libraries/messages.inc.php:916 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -5457,11 +5457,11 @@ msgstr "" "InnoDBが開始したシーケンシャル読み込みの回数。これはInnoDBがシーケンシャルな" "フルテーブルスキャンを行うときに発生します" -#: libraries/messages.inc.php:921 +#: libraries/messages.inc.php:917 msgid "The number of logical read requests InnoDB has done." msgstr "InnoDB が実行した論理読み込みリクエストの数" -#: libraries/messages.inc.php:922 +#: libraries/messages.inc.php:918 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -5469,7 +5469,7 @@ msgstr "" "InnoDB がバッファプールの内容を利用できず、シングルページ読み込みを行わなけれ" "ばならなかった論理読み込みの回数" -#: libraries/messages.inc.php:923 +#: libraries/messages.inc.php:919 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -5483,51 +5483,51 @@ msgstr "" "そのウェイトの回数をカウントするものです。バッファプールの値が適切に設定され" "ていれば、この値は小さいはずです" -#: libraries/messages.inc.php:924 +#: libraries/messages.inc.php:920 msgid "The number writes done to the InnoDB buffer pool." msgstr "InnoDB バッファプールへの書き込み回数" -#: libraries/messages.inc.php:925 +#: libraries/messages.inc.php:921 msgid "The number of fsync() operations so far." msgstr "これまでに fsync() を実行した回数" -#: libraries/messages.inc.php:926 +#: libraries/messages.inc.php:922 msgid "The current number of pending fsync() operations." msgstr "現在保留されている fsync() の回数" -#: libraries/messages.inc.php:927 +#: libraries/messages.inc.php:923 msgid "The current number of pending reads." msgstr "現在保留されている読み込みの数" -#: libraries/messages.inc.php:928 +#: libraries/messages.inc.php:924 msgid "The current number of pending writes." msgstr "現在保留されている書き込みの数" -#: libraries/messages.inc.php:929 +#: libraries/messages.inc.php:925 msgid "The amount of data read so far, in bytes." msgstr "これまでのデータ読み込み量 (単位:バイト)" -#: libraries/messages.inc.php:930 +#: libraries/messages.inc.php:926 msgid "The total number of data reads." msgstr "データ読み込み回数の合計" -#: libraries/messages.inc.php:931 +#: libraries/messages.inc.php:927 msgid "The total number of data writes." msgstr "データ書き込み回数の合計" -#: libraries/messages.inc.php:932 +#: libraries/messages.inc.php:928 msgid "The amount of data written so far, in bytes." msgstr "これまでのデータの書き込み量 (単位:バイト)" -#: libraries/messages.inc.php:933 +#: libraries/messages.inc.php:929 msgid "The number of pages that have been written for doublewrite operations." msgstr "二重書き込みの実行回数と二重書き込みが発生したページ数" -#: libraries/messages.inc.php:934 +#: libraries/messages.inc.php:930 msgid "The number of doublewrite operations that have been performed." msgstr "二重書き込みの実行回数と二重書き込みが発生したページ数" -#: libraries/messages.inc.php:935 +#: libraries/messages.inc.php:931 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -5535,35 +5535,35 @@ msgstr "" "ログバッファが小さすぎてフラッシュしないと作業を続行できなくなったために発生" "したウェイトの回数" -#: libraries/messages.inc.php:936 +#: libraries/messages.inc.php:932 msgid "The number of log write requests." msgstr "ログ書き込みリクエストの数" -#: libraries/messages.inc.php:937 +#: libraries/messages.inc.php:933 msgid "The number of physical writes to the log file." msgstr "ログファイルへの物理書き込みの回数" -#: libraries/messages.inc.php:938 +#: libraries/messages.inc.php:934 msgid "The number of fsync() writes done to the log file." msgstr "ログファイルへの fsync 書き込みの回数" -#: libraries/messages.inc.php:939 +#: libraries/messages.inc.php:935 msgid "The number of pending log file fsyncs." msgstr "保留中のログファイルへの fsync 回数" -#: libraries/messages.inc.php:940 +#: libraries/messages.inc.php:936 msgid "Pending log file writes." msgstr "保留中のログファイルへの書き込み回数" -#: libraries/messages.inc.php:941 +#: libraries/messages.inc.php:937 msgid "The number of bytes written to the log file." msgstr "ログファイルに書き込んだバイト数" -#: libraries/messages.inc.php:942 +#: libraries/messages.inc.php:938 msgid "The number of pages created." msgstr "作成されたページ数" -#: libraries/messages.inc.php:943 +#: libraries/messages.inc.php:939 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -5571,51 +5571,51 @@ msgstr "" "コンパイル時の InnoDB のページサイズ (デフォルト:16KB)。多くの値がページ単位" "で計算されますが、この値を使えば簡単にバイト単位に変換できます" -#: libraries/messages.inc.php:944 +#: libraries/messages.inc.php:940 msgid "The number of pages read." msgstr "読み込んだページ数" -#: libraries/messages.inc.php:945 +#: libraries/messages.inc.php:941 msgid "The number of pages written." msgstr "書き込んだページ数" -#: libraries/messages.inc.php:946 +#: libraries/messages.inc.php:942 msgid "The number of row locks currently being waited for." msgstr "現在待機中の行ロックの数" -#: libraries/messages.inc.php:947 +#: libraries/messages.inc.php:943 msgid "The average time to acquire a row lock, in milliseconds." msgstr "行ロック取得に要する平均時間 (単位:ミリ秒)" -#: libraries/messages.inc.php:948 +#: libraries/messages.inc.php:944 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "行ロック取得に要した時間の合計 (単位:ミリ秒)" -#: libraries/messages.inc.php:949 +#: libraries/messages.inc.php:945 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "行ロック取得に要した時間の最大値 (単位:ミリ秒)" -#: libraries/messages.inc.php:950 +#: libraries/messages.inc.php:946 msgid "The number of times a row lock had to be waited for." msgstr "行ロック取得時に待機した回数" -#: libraries/messages.inc.php:951 +#: libraries/messages.inc.php:947 msgid "The number of rows deleted from InnoDB tables." msgstr "InnoDB テーブルから削除した行数" -#: libraries/messages.inc.php:952 +#: libraries/messages.inc.php:948 msgid "The number of rows inserted in InnoDB tables." msgstr "InnoDB テーブルに挿入した行数" -#: libraries/messages.inc.php:953 +#: libraries/messages.inc.php:949 msgid "The number of rows read from InnoDB tables." msgstr "InnoDB テーブルから読み込んだ行数" -#: libraries/messages.inc.php:954 +#: libraries/messages.inc.php:950 msgid "The number of rows updated in InnoDB tables." msgstr "InnoDB テーブルで更新された行数" -#: libraries/messages.inc.php:955 +#: libraries/messages.inc.php:951 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -5623,7 +5623,7 @@ msgstr "" "変更されてからディスクにフラッシュされていないキーキャッシュのキーブロックの" "数。以前は Not_flushed_key_blocks でした" -#: libraries/messages.inc.php:956 +#: libraries/messages.inc.php:952 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -5631,7 +5631,7 @@ msgstr "" "キーキャッシュの未使用ブロックの数。キーキャッシュの使用率を調べるときに使え" "ます" -#: libraries/messages.inc.php:957 +#: libraries/messages.inc.php:953 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -5640,11 +5640,11 @@ msgstr "" "キーキャッシュの使用済みブロックの数。この値はこれまで一度に使用されたブロッ" "クの最大数です" -#: libraries/messages.inc.php:958 +#: libraries/messages.inc.php:954 msgid "The number of requests to read a key block from the cache." msgstr "キャッシュからキーブロックを読み込んだリクエストの数" -#: libraries/messages.inc.php:959 +#: libraries/messages.inc.php:955 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -5654,15 +5654,15 @@ msgstr "" "く key_buffer_size が小さすぎるためです。キャッシュミスの割合は Key_reads/" "Key_read_requests で計算できます" -#: libraries/messages.inc.php:960 +#: libraries/messages.inc.php:956 msgid "The number of requests to write a key block to the cache." msgstr "キャッシュにキーブロックを書き込んだリクエストの数" -#: libraries/messages.inc.php:961 +#: libraries/messages.inc.php:957 msgid "The number of physical writes of a key block to disk." msgstr "ディスクにキーブロックを物理書き込みした回数" -#: libraries/messages.inc.php:962 +#: libraries/messages.inc.php:958 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -5672,11 +5672,11 @@ msgstr "" "クエリのプランを変えたときにコストがどう変わるか比較するときに便利です。デ" "フォルト値の 0 はまだ一度もクエリをコンパイルしていないという意味です" -#: libraries/messages.inc.php:963 +#: libraries/messages.inc.php:959 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "INSERT DELAYED キューの中で書き込まれるのを待っている行数" -#: libraries/messages.inc.php:964 +#: libraries/messages.inc.php:960 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -5684,35 +5684,35 @@ msgstr "" "開いているテーブルの数。開いているテーブルが多い場合はおそらくテーブルキャッ" "シュの値が小さすぎます" -#: libraries/messages.inc.php:965 +#: libraries/messages.inc.php:961 msgid "The number of files that are open." msgstr "開いているファイルの数" -#: libraries/messages.inc.php:966 +#: libraries/messages.inc.php:962 msgid "The number of streams that are open (used mainly for logging)." msgstr "開いているストリームの数 (主にログの記録用です)" -#: libraries/messages.inc.php:967 +#: libraries/messages.inc.php:963 msgid "The number of tables that are open." msgstr "開いているテーブルの数" -#: libraries/messages.inc.php:968 +#: libraries/messages.inc.php:964 msgid "The number of free memory blocks in query cache." msgstr "クエリキャッシュ内の空きメモリブロックの数" -#: libraries/messages.inc.php:969 +#: libraries/messages.inc.php:965 msgid "The amount of free memory for query cache." msgstr "クエリキャッシュの空きメモリ量" -#: libraries/messages.inc.php:970 +#: libraries/messages.inc.php:966 msgid "The number of cache hits." msgstr "キャッシュのヒット数" -#: libraries/messages.inc.php:971 +#: libraries/messages.inc.php:967 msgid "The number of queries added to the cache." msgstr "キャッシュに追加されたクエリの数" -#: libraries/messages.inc.php:972 +#: libraries/messages.inc.php:968 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -5724,7 +5724,7 @@ msgstr "" "エリキャッシュは最後に使われた時刻が最も古いものから削除する(LRU)戦略に従って" "削除するクエリを決めます" -#: libraries/messages.inc.php:973 +#: libraries/messages.inc.php:969 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -5732,24 +5732,24 @@ msgstr "" "キャッシュされなかった (キャッシュできないか query_cache_type の設定でキャッ" "シュしないことになっている) クエリの数" -#: libraries/messages.inc.php:974 +#: libraries/messages.inc.php:970 msgid "The number of queries registered in the cache." msgstr "キャッシュに登録されているクエリの数" -#: libraries/messages.inc.php:975 +#: libraries/messages.inc.php:971 msgid "The total number of blocks in the query cache." msgstr "クエリキャッシュの総ブロック数" -#: libraries/messages.inc.php:976 +#: libraries/messages.inc.php:972 msgctxt "$strShowStatusReset" msgid "Reset" msgstr "リセット" -#: libraries/messages.inc.php:977 +#: libraries/messages.inc.php:973 msgid "The status of failsafe replication (not yet implemented)." msgstr "フェイルセーフレプリケーションの状態 (未実装)" -#: libraries/messages.inc.php:978 +#: libraries/messages.inc.php:974 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -5757,11 +5757,11 @@ msgstr "" "インデックスを利用しなかった結合の数。この値が 0 でない場合はテーブルのイン" "デックスをよく確認してください" -#: libraries/messages.inc.php:979 +#: libraries/messages.inc.php:975 msgid "The number of joins that used a range search on a reference table." msgstr "参照テーブルで範囲検索をした結合の数" -#: libraries/messages.inc.php:980 +#: libraries/messages.inc.php:976 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -5769,7 +5769,7 @@ msgstr "" "キーが指定されていなかったため一行ずつキーが使われているか確認した結合の数" "(0 でない場合はテーブルのインデックスをよく確認してください)" -#: libraries/messages.inc.php:981 +#: libraries/messages.inc.php:977 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -5777,15 +5777,15 @@ msgstr "" "最初のテーブルで範囲指定された結合の数 (この値は大きくてもふつう問題ありませ" "ん)" -#: libraries/messages.inc.php:982 +#: libraries/messages.inc.php:978 msgid "The number of joins that did a full scan of the first table." msgstr "最初のテーブルをフルスキャンした結合の数" -#: libraries/messages.inc.php:983 +#: libraries/messages.inc.php:979 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "スレーブの SQL スレッドが現在開いている一時テーブルの数" -#: libraries/messages.inc.php:984 +#: libraries/messages.inc.php:980 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -5793,22 +5793,22 @@ msgstr "" "レプリケーションスレーブの SQL スレッドがトランザクションを再試行した回数(起" "動時からの合計)" -#: libraries/messages.inc.php:985 +#: libraries/messages.inc.php:981 msgid "This is ON if this server is a slave that is connected to a master." msgstr "このサーバがマスターに接続するスレーブである場合は ON になります" -#: libraries/messages.inc.php:986 +#: libraries/messages.inc.php:982 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "slow_launch_time で指定された秒数以上に作成時間がかかったスレッドの数" -#: libraries/messages.inc.php:987 +#: libraries/messages.inc.php:983 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "long_query_time で指定された秒数以上に時間のかかったクエリの数" -#: libraries/messages.inc.php:988 +#: libraries/messages.inc.php:984 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -5817,23 +5817,23 @@ msgstr "" "ソートアルゴリズムが実行しなければならなかったマージの回数。この値が高い場合" "は sort_buffer_size システム変数の値を増やした方がよいでしょう" -#: libraries/messages.inc.php:989 +#: libraries/messages.inc.php:985 msgid "The number of sorts that were done with ranges." msgstr "範囲指定付きでソートが行われた回数" -#: libraries/messages.inc.php:990 +#: libraries/messages.inc.php:986 msgid "The number of sorted rows." msgstr "ソート済の行数" -#: libraries/messages.inc.php:991 +#: libraries/messages.inc.php:987 msgid "The number of sorts that were done by scanning the table." msgstr "テーブルをスキャンしたときに実行されたソートの回数" -#: libraries/messages.inc.php:992 +#: libraries/messages.inc.php:988 msgid "The number of times that a table lock was acquired immediately." msgstr "テーブルロックをすぐに取得できた回数" -#: libraries/messages.inc.php:993 +#: libraries/messages.inc.php:989 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -5844,7 +5844,7 @@ msgstr "" "フォーマンスに問題が生じている場合は、まずクエリを最適化してください。それで" "もだめならテーブルを分割するか、レプリケーションを利用してください" -#: libraries/messages.inc.php:994 +#: libraries/messages.inc.php:990 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -5854,11 +5854,11 @@ msgstr "" "Connections で計算できます。この値が赤くなっている場合は thread_cache_size を" "大きくしてください" -#: libraries/messages.inc.php:995 +#: libraries/messages.inc.php:991 msgid "The number of currently open connections." msgstr "現在開いている接続の数" -#: libraries/messages.inc.php:996 +#: libraries/messages.inc.php:992 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -5869,74 +5869,74 @@ msgstr "" "thread_cache_size の値を増やした方がよいかもしれません (スレッドの実装に問題" "がない場合はふつうあまりパフォーマンスは向上しません)" -#: libraries/messages.inc.php:997 +#: libraries/messages.inc.php:993 msgid "The number of threads that are not sleeping." msgstr "スリープしていないスレッドの数" -#: libraries/messages.inc.php:999 tbl_printview.php:75 +#: libraries/messages.inc.php:995 tbl_printview.php:75 msgid "Show tables" msgstr "テーブルを表示する" -#: libraries/messages.inc.php:1000 libraries/sql_query_form.lib.php:396 +#: libraries/messages.inc.php:996 libraries/sql_query_form.lib.php:396 msgid " Show this query here again " msgstr " 実行したクエリをここに表示する" -#: libraries/messages.inc.php:1001 libraries/mysql_charsets.lib.php:217 +#: libraries/messages.inc.php:997 libraries/mysql_charsets.lib.php:217 #: libraries/mysql_charsets.lib.php:342 msgid "Simplified Chinese" msgstr "簡体字中国語" -#: libraries/messages.inc.php:1002 tbl_operations.php:258 +#: libraries/messages.inc.php:998 tbl_operations.php:258 msgid "(singly)" msgstr "(1 回)" -#: libraries/messages.inc.php:1005 libraries/replication_gui.lib.php:52 +#: libraries/messages.inc.php:1001 libraries/replication_gui.lib.php:52 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" msgstr "" -#: libraries/messages.inc.php:1006 libraries/mysql_charsets.lib.php:283 +#: libraries/messages.inc.php:1002 libraries/mysql_charsets.lib.php:283 msgid "Slovak" msgstr "スロバキア語" -#: libraries/messages.inc.php:1007 libraries/mysql_charsets.lib.php:286 +#: libraries/messages.inc.php:1003 libraries/mysql_charsets.lib.php:286 msgid "Slovenian" msgstr "スロベニア語" -#: libraries/messages.inc.php:1008 pmd_general.php:95 +#: libraries/messages.inc.php:1004 pmd_general.php:95 msgid "Small/Big All" msgstr "すべてを大きく/小さく" -#: libraries/messages.inc.php:1009 pmd_general.php:91 +#: libraries/messages.inc.php:1005 pmd_general.php:91 msgid "Snap to grid" msgstr "グリッドにあわせる" -#: libraries/messages.inc.php:1011 server_synchronize.php:1167 +#: libraries/messages.inc.php:1007 server_synchronize.php:1167 msgid "Socket" msgstr "" -#: libraries/messages.inc.php:1013 server_status.php:259 +#: libraries/messages.inc.php:1009 server_status.php:259 msgid "Sorting" msgstr "ソート中" -#: libraries/messages.inc.php:1015 tbl_printview.php:310 tbl_structure.php:657 +#: libraries/messages.inc.php:1011 tbl_printview.php:310 tbl_structure.php:657 msgid "Space usage" msgstr "ディスク使用量" -#: libraries/messages.inc.php:1016 libraries/mysql_charsets.lib.php:289 +#: libraries/messages.inc.php:1012 libraries/mysql_charsets.lib.php:289 msgid "Spanish" msgstr "スペイン語" -#: libraries/messages.inc.php:1019 +#: libraries/messages.inc.php:1015 msgid "Export type" msgstr "エクスポート形式" -#: libraries/messages.inc.php:1020 +#: libraries/messages.inc.php:1016 msgid "Export time in UTC" msgstr "" -#: libraries/messages.inc.php:1021 libraries/sqlparser.lib.php:173 +#: libraries/messages.inc.php:1017 libraries/sqlparser.lib.php:173 msgid "" "There is a chance that you may have found a bug in the SQL parser. Please " "examine your query closely, and check that the quotes are correct and not " @@ -5958,7 +5958,7 @@ msgstr "" "に絞り込んでから、以下の「CUT」セクションにデータを添えてバグ報告を送ってくだ" "さい:" -#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:137 +#: libraries/messages.inc.php:1018 libraries/sqlparser.lib.php:137 msgid "" "There seems to be an error in your SQL query. The MySQL server error output " "below, if there is any, may also help you in diagnosing the problem" @@ -5966,33 +5966,33 @@ msgstr "" "SQL にエラーがあるようです。下に MySQL サーバのエラー出力が出ているようなら問" "題の解析に役立つかもしれません" -#: libraries/messages.inc.php:1026 libraries/sqlparser.lib.php:495 +#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:495 msgid "Invalid Identifer" msgstr "不正な識別子です" -#: libraries/messages.inc.php:1027 libraries/sqlparser.lib.php:344 +#: libraries/messages.inc.php:1023 libraries/sqlparser.lib.php:344 msgid "Unclosed quote" msgstr "引用符が閉じていません" -#: libraries/messages.inc.php:1028 libraries/sqlparser.lib.php:612 +#: libraries/messages.inc.php:1024 libraries/sqlparser.lib.php:612 msgid "Unknown Punctuation String" msgstr "無効な句読点文字です" -#: libraries/messages.inc.php:1030 server_replication.php:327 +#: libraries/messages.inc.php:1026 server_replication.php:327 #: server_replication.php:328 #, fuzzy msgid "Start" msgstr "土" -#: libraries/messages.inc.php:1033 tbl_printview.php:369 tbl_structure.php:729 +#: libraries/messages.inc.php:1029 tbl_printview.php:369 tbl_structure.php:729 msgid "Statements" msgstr "ステートメント" -#: libraries/messages.inc.php:1034 tbl_printview.php:380 tbl_structure.php:741 +#: libraries/messages.inc.php:1030 tbl_printview.php:380 tbl_structure.php:741 msgid "static" msgstr "" -#: libraries/messages.inc.php:1035 server_status.php:388 +#: libraries/messages.inc.php:1031 server_status.php:388 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -6000,42 +6000,42 @@ msgstr "" "処理が集中するサーバではバイトカウンタが超過することがあるため、MySQL サーバ" "が報告してくる統計は不正確なことがあります" -#: libraries/messages.inc.php:1038 server_replication.php:327 +#: libraries/messages.inc.php:1034 server_replication.php:327 #: server_replication.php:328 msgid "Stop" msgstr "" -#: libraries/messages.inc.php:1039 server_engines.php:49 +#: libraries/messages.inc.php:1035 server_engines.php:49 msgid "Storage Engines" msgstr "ストレージエンジン" -#: libraries/messages.inc.php:1040 libraries/tbl_properties.inc.php:726 +#: libraries/messages.inc.php:1036 libraries/tbl_properties.inc.php:726 #: server_engines.php:58 tbl_operations.php:353 msgid "Storage Engine" msgstr "ストレージエンジン" -#: libraries/messages.inc.php:1042 +#: libraries/messages.inc.php:1038 msgid "CSV for MS Excel" msgstr "MS Excel 用の CSV" -#: libraries/messages.inc.php:1044 tbl_structure.php:516 tbl_structure.php:518 +#: libraries/messages.inc.php:1040 tbl_structure.php:516 tbl_structure.php:518 msgid "Propose table structure" msgstr "テーブル構造を確認する" -#: libraries/messages.inc.php:1045 server_synchronize.php:424 +#: libraries/messages.inc.php:1041 server_synchronize.php:424 #: server_synchronize.php:867 msgid "Structure Difference" msgstr "" -#: libraries/messages.inc.php:1049 server_synchronize.php:265 +#: libraries/messages.inc.php:1045 server_synchronize.php:265 msgid "Structure Synchronization" msgstr "" -#: libraries/messages.inc.php:1050 libraries/sql_query_form.lib.php:462 +#: libraries/messages.inc.php:1046 libraries/sql_query_form.lib.php:462 msgid "Submit" msgstr "実行する" -#: libraries/messages.inc.php:1052 main.php:358 +#: libraries/messages.inc.php:1048 main.php:358 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -6044,160 +6044,160 @@ msgstr "" "Suhosin が稼働しているため問題が発生する可能性があります。詳しくは%sドキュメ" "ント%sをご覧ください。" -#: libraries/messages.inc.php:1054 libraries/mysql_charsets.lib.php:295 +#: libraries/messages.inc.php:1050 libraries/mysql_charsets.lib.php:295 #: libraries/mysql_charsets.lib.php:392 msgid "Swedish" msgstr "スウェーデン語" -#: libraries/messages.inc.php:1060 tbl_operations.php:556 +#: libraries/messages.inc.php:1056 tbl_operations.php:556 msgid "Switch to copied table" msgstr "コピーしたテーブルに切り替える" -#: libraries/messages.inc.php:1061 server_synchronize.php:1213 +#: libraries/messages.inc.php:1057 server_synchronize.php:1213 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." msgstr "" -#: libraries/messages.inc.php:1062 server_synchronize.php:451 +#: libraries/messages.inc.php:1058 server_synchronize.php:451 #: server_synchronize.php:896 msgid "Synchronize Databases" msgstr "" -#: libraries/messages.inc.php:1063 libraries/server_links.inc.php:92 +#: libraries/messages.inc.php:1059 libraries/server_links.inc.php:92 #: server_synchronize.php:1092 server_synchronize.php:1100 msgid "Synchronize" msgstr "" -#: libraries/messages.inc.php:1065 server_synchronize.php:430 +#: libraries/messages.inc.php:1061 server_synchronize.php:430 #: server_synchronize.php:873 msgid "Add column(s)" msgstr "" -#: libraries/messages.inc.php:1066 tbl_create.php:62 +#: libraries/messages.inc.php:1062 tbl_create.php:62 #, php-format msgid "Table %s already exists!" msgstr "テーブル %s は既に存在します!" -#: libraries/messages.inc.php:1067 server_synchronize.php:432 +#: libraries/messages.inc.php:1063 server_synchronize.php:432 #: server_synchronize.php:875 msgid "Alter column(s)" msgstr "" -#: libraries/messages.inc.php:1068 tbl_addfield.php:189 tbl_alter.php:103 +#: libraries/messages.inc.php:1064 tbl_addfield.php:189 tbl_alter.php:103 #: tbl_indexes.php:98 #, php-format msgid "Table %1$s has been altered successfully" msgstr "テーブル %1$s を変更しました" -#: libraries/messages.inc.php:1069 server_synchronize.php:434 +#: libraries/messages.inc.php:1065 server_synchronize.php:434 #: server_synchronize.php:877 msgid "Apply index(s)" msgstr "" -#: libraries/messages.inc.php:1071 server_synchronize.php:446 +#: libraries/messages.inc.php:1067 server_synchronize.php:446 #: server_synchronize.php:890 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: libraries/messages.inc.php:1072 tbl_move_copy.php:82 +#: libraries/messages.inc.php:1068 tbl_move_copy.php:82 msgid "The table name is empty!" msgstr "テーブル名が空です!" -#: libraries/messages.inc.php:1073 tbl_create.php:249 +#: libraries/messages.inc.php:1069 tbl_create.php:249 #, php-format msgid "Table %1$s has been created." msgstr "テーブル %1$s を作成しました。" -#: libraries/messages.inc.php:1076 tbl_operations.php:628 +#: libraries/messages.inc.php:1072 tbl_operations.php:628 #, php-format msgid "Table %s has been flushed" msgstr "テーブル %s をフラッシュしました" -#: libraries/messages.inc.php:1077 server_synchronize.php:436 +#: libraries/messages.inc.php:1073 server_synchronize.php:436 #: server_synchronize.php:879 msgid "Insert row(s)" msgstr "" -#: libraries/messages.inc.php:1078 libraries/tbl_links.inc.php:107 +#: libraries/messages.inc.php:1074 libraries/tbl_links.inc.php:107 #: libraries/tbl_links.inc.php:140 libraries/tbl_links.inc.php:141 msgid "Table seems to be empty!" msgstr "テーブルが空のようです!" -#: libraries/messages.inc.php:1079 tbl_operations.php:568 +#: libraries/messages.inc.php:1075 tbl_operations.php:568 msgid "Table maintenance" msgstr "テーブル管理" -#: libraries/messages.inc.php:1080 libraries/tbl_properties.inc.php:618 +#: libraries/messages.inc.php:1076 libraries/tbl_properties.inc.php:618 #: server_synchronize.php:428 server_synchronize.php:871 msgid "Table name" msgstr "テーブル名" -#: libraries/messages.inc.php:1081 pdf_schema.php:1116 +#: libraries/messages.inc.php:1077 pdf_schema.php:1116 msgid "Table of contents" msgstr "テーブルの内容" -#: libraries/messages.inc.php:1082 tbl_operations.php:334 +#: libraries/messages.inc.php:1078 tbl_operations.php:334 msgid "Table options" msgstr "テーブルオプション" -#: libraries/messages.inc.php:1083 server_synchronize.php:431 +#: libraries/messages.inc.php:1079 server_synchronize.php:431 #: server_synchronize.php:874 msgid "Remove column(s)" msgstr "" -#: libraries/messages.inc.php:1084 server_synchronize.php:433 +#: libraries/messages.inc.php:1080 server_synchronize.php:433 #: server_synchronize.php:876 msgid "Remove index(s)" msgstr "" -#: libraries/messages.inc.php:1088 server_synchronize.php:435 +#: libraries/messages.inc.php:1084 server_synchronize.php:435 #: server_synchronize.php:878 msgid "Update row(s)" msgstr "" -#: libraries/messages.inc.php:1090 server_synchronize.php:942 +#: libraries/messages.inc.php:1086 server_synchronize.php:942 msgid "Target database has been synchronized with source database" msgstr "" -#: libraries/messages.inc.php:1091 server_privileges.php:392 +#: libraries/messages.inc.php:1087 server_privileges.php:392 #: server_privileges.php:527 server_privileges.php:1679 #: server_privileges.php:1685 msgid "Table-specific privileges" msgstr "テーブル固有の特権" -#: libraries/messages.inc.php:1092 server_status.php:254 +#: libraries/messages.inc.php:1088 server_status.php:254 msgid "Temporary data" msgstr "一時データ" -#: libraries/messages.inc.php:1093 tbl_change.php:728 +#: libraries/messages.inc.php:1089 tbl_change.php:728 msgid " Because of its length,
this field might not be editable " msgstr " 長さによってはこのフィールドを
修正できなくなる場合もあります" -#: libraries/messages.inc.php:1094 +#: libraries/messages.inc.php:1090 msgid "Texy! text" msgstr "Texy! テキスト" -#: libraries/messages.inc.php:1095 libraries/mysql_charsets.lib.php:298 +#: libraries/messages.inc.php:1091 libraries/mysql_charsets.lib.php:298 #: libraries/mysql_charsets.lib.php:395 msgid "Thai" msgstr "タイ語" -#: libraries/messages.inc.php:1102 libraries/replication_gui.lib.php:308 +#: libraries/messages.inc.php:1098 libraries/replication_gui.lib.php:308 #: server_privileges.php:734 msgid "This Host" msgstr "このホスト" -#: libraries/messages.inc.php:1103 server_status.php:252 +#: libraries/messages.inc.php:1099 server_status.php:252 msgid "Threads" msgstr "スレッド" -#: libraries/messages.inc.php:1104 server_processlist.php:22 +#: libraries/messages.inc.php:1100 server_processlist.php:22 #, php-format msgid "Thread %s was successfully killed." msgstr "スレッド %s は正常終了しました" -#: libraries/messages.inc.php:1106 +#: libraries/messages.inc.php:1102 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -6205,181 +6205,181 @@ msgstr "" "ただし、最後に実行したときはまったくデータを解析できませんでした。ふつうは " "PHP の時間制限を伸ばさない限りこのデータのインポートはできません" -#: libraries/messages.inc.php:1109 pmd_pdf.php:94 +#: libraries/messages.inc.php:1105 pmd_pdf.php:94 msgid "to/from page" msgstr "開始/終了ページ" -#: libraries/messages.inc.php:1110 pdf_pages.php:343 +#: libraries/messages.inc.php:1106 pdf_pages.php:343 msgid "Toggle scratchboard" msgstr "スクラッチボードを切り替える" -#: libraries/messages.inc.php:1111 pmd_general.php:99 +#: libraries/messages.inc.php:1107 pmd_general.php:99 msgid "Toggle small/big" msgstr "大小を切り替える" -#: libraries/messages.inc.php:1112 pmd_help.php:27 +#: libraries/messages.inc.php:1108 pmd_help.php:27 msgid "To select relation, click :" msgstr "リレーションを選択します:" -#: libraries/messages.inc.php:1115 libraries/tbl_links.inc.php:149 +#: libraries/messages.inc.php:1111 libraries/tbl_links.inc.php:149 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" -#: libraries/messages.inc.php:1116 tbl_tracking.php:655 +#: libraries/messages.inc.php:1112 tbl_tracking.php:655 msgid "Activate now" msgstr "" -#: libraries/messages.inc.php:1117 tbl_tracking.php:653 +#: libraries/messages.inc.php:1113 tbl_tracking.php:653 #, php-format msgid "Activate tracking for %s.%s" msgstr "" -#: libraries/messages.inc.php:1118 tbl_tracking.php:221 +#: libraries/messages.inc.php:1114 tbl_tracking.php:221 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/messages.inc.php:1119 tbl_tracking.php:688 +#: libraries/messages.inc.php:1115 tbl_tracking.php:688 msgid "Create version" msgstr "" -#: libraries/messages.inc.php:1120 tbl_tracking.php:668 +#: libraries/messages.inc.php:1116 tbl_tracking.php:668 #, php-format msgid "Create version %s of %s.%s" msgstr "" -#: libraries/messages.inc.php:1122 tbl_tracking.php:412 +#: libraries/messages.inc.php:1118 tbl_tracking.php:412 msgid "Data definition statement" msgstr "" -#: libraries/messages.inc.php:1123 tbl_tracking.php:463 +#: libraries/messages.inc.php:1119 tbl_tracking.php:463 msgid "Data manipulation statement" msgstr "" -#: libraries/messages.inc.php:1124 tbl_tracking.php:410 tbl_tracking.php:461 +#: libraries/messages.inc.php:1120 tbl_tracking.php:410 tbl_tracking.php:461 msgid "Date" msgstr "" -#: libraries/messages.inc.php:1125 tbl_tracking.php:642 +#: libraries/messages.inc.php:1121 tbl_tracking.php:642 msgid "Deactivate now" msgstr "" -#: libraries/messages.inc.php:1126 tbl_tracking.php:640 +#: libraries/messages.inc.php:1122 tbl_tracking.php:640 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "" -#: libraries/messages.inc.php:1127 tbl_tracking.php:521 +#: libraries/messages.inc.php:1123 tbl_tracking.php:521 #, php-format msgid "Export as %s" msgstr "" -#: libraries/messages.inc.php:1130 tbl_tracking.php:251 tbl_tracking.php:379 +#: libraries/messages.inc.php:1126 tbl_tracking.php:251 tbl_tracking.php:379 msgid "Close" msgstr "" -#: libraries/messages.inc.php:1131 tbl_tracking.php:114 +#: libraries/messages.inc.php:1127 tbl_tracking.php:114 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/messages.inc.php:1133 tbl_tracking.php:397 tbl_tracking.php:504 +#: libraries/messages.inc.php:1129 tbl_tracking.php:397 tbl_tracking.php:504 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "" -#: libraries/messages.inc.php:1134 tbl_tracking.php:561 +#: libraries/messages.inc.php:1130 tbl_tracking.php:561 msgid "Show versions" msgstr "" -#: libraries/messages.inc.php:1135 tbl_tracking.php:507 +#: libraries/messages.inc.php:1131 tbl_tracking.php:507 msgid "SQL dump (file download)" msgstr "" -#: libraries/messages.inc.php:1136 tbl_tracking.php:508 +#: libraries/messages.inc.php:1132 tbl_tracking.php:508 msgid "SQL dump" msgstr "" -#: libraries/messages.inc.php:1137 tbl_tracking.php:213 +#: libraries/messages.inc.php:1133 tbl_tracking.php:213 msgid "SQL statements executed." msgstr "" -#: libraries/messages.inc.php:1138 +#: libraries/messages.inc.php:1134 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/messages.inc.php:1139 tbl_tracking.php:509 +#: libraries/messages.inc.php:1135 tbl_tracking.php:509 msgid "SQL execution" msgstr "" -#: libraries/messages.inc.php:1140 tbl_tracking.php:230 +#: libraries/messages.inc.php:1136 tbl_tracking.php:230 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/messages.inc.php:1141 tbl_tracking.php:381 +#: libraries/messages.inc.php:1137 tbl_tracking.php:381 msgid "Tracking statements" msgstr "" -#: libraries/messages.inc.php:1148 tbl_tracking.php:593 +#: libraries/messages.inc.php:1144 tbl_tracking.php:593 msgid "Version" msgstr "" -#: libraries/messages.inc.php:1149 tbl_tracking.php:672 +#: libraries/messages.inc.php:1145 tbl_tracking.php:672 msgid "Track these data definition statements:" msgstr "" -#: libraries/messages.inc.php:1150 tbl_tracking.php:680 +#: libraries/messages.inc.php:1146 tbl_tracking.php:680 msgid "Track these data manipulation statements:" msgstr "" -#: libraries/messages.inc.php:1155 tbl_tracking.php:411 tbl_tracking.php:462 +#: libraries/messages.inc.php:1151 tbl_tracking.php:411 tbl_tracking.php:462 msgid "Username" msgstr "" -#: libraries/messages.inc.php:1156 tbl_tracking.php:203 +#: libraries/messages.inc.php:1152 tbl_tracking.php:203 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "" -#: libraries/messages.inc.php:1157 tbl_tracking.php:187 +#: libraries/messages.inc.php:1153 tbl_tracking.php:187 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "" -#: libraries/messages.inc.php:1158 tbl_tracking.php:195 +#: libraries/messages.inc.php:1154 tbl_tracking.php:195 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "" -#: libraries/messages.inc.php:1159 tbl_tracking.php:262 +#: libraries/messages.inc.php:1155 tbl_tracking.php:262 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/messages.inc.php:1161 tbl_tracking.php:220 +#: libraries/messages.inc.php:1157 tbl_tracking.php:220 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/messages.inc.php:1162 libraries/mysql_charsets.lib.php:219 +#: libraries/messages.inc.php:1158 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:362 msgid "Traditional Chinese" msgstr "繁体字中国語" -#: libraries/messages.inc.php:1163 libraries/mysql_charsets.lib.php:292 +#: libraries/messages.inc.php:1159 libraries/mysql_charsets.lib.php:292 msgid "Traditional Spanish" msgstr "スペイン語 (伝統表記)" -#: libraries/messages.inc.php:1164 server_status.php:388 +#: libraries/messages.inc.php:1160 server_status.php:388 msgid "Traffic" msgstr "トラフィック" -#: libraries/messages.inc.php:1165 server_status.php:261 +#: libraries/messages.inc.php:1161 server_status.php:261 msgid "Transaction coordinator" msgstr "トランザクションコーディネータ" -#: libraries/messages.inc.php:1166 +#: libraries/messages.inc.php:1162 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 " @@ -6391,7 +6391,7 @@ msgstr "" "ションにファイル名を保持しているフィールドの名前を渡すこともできます。2 つ目" "のオプションを使う場合は 1 つ目のオプションは空文字列にする必要があります" -#: libraries/messages.inc.php:1167 +#: libraries/messages.inc.php:1163 msgid "" "Displays hexadecimal representation of data. Optional first parameter " "specifies how often space will be added (defaults to 2 nibbles)." @@ -6399,7 +6399,7 @@ msgstr "" "データを 16 進数で表記します。オプションとして最初のパラメータにスペースを追" "加する頻度を指定することもできます (デフォルトは 2 ニブルごとです)" -#: libraries/messages.inc.php:1168 +#: libraries/messages.inc.php:1164 msgid "" "Displays a clickable thumbnail. The options are the maximum width and height " "in pixels. The original aspect ratio is preserved." @@ -6407,15 +6407,15 @@ msgstr "" "クリック可能なサムネイルを表示します; オプションとして幅と高さの最大値をピク" "セル単位で指定できます。アスペクト比はそのまま維持されます" -#: libraries/messages.inc.php:1169 +#: libraries/messages.inc.php:1165 msgid "Displays a link to download this image." msgstr "この画像をダウンロードするためのリンクを表示します" -#: libraries/messages.inc.php:1170 +#: libraries/messages.inc.php:1166 msgid "See image/jpeg: inline" msgstr "image/jpeg: inlineをご覧ください" -#: libraries/messages.inc.php:1171 +#: libraries/messages.inc.php:1167 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 " @@ -6434,7 +6434,7 @@ msgstr "" "す。\"local\" の場合は PHP の strftime() 関数の説明をご覧ください。\"utc\" の" "場合は gmdate() を利用します" -#: libraries/messages.inc.php:1172 +#: libraries/messages.inc.php:1168 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 " @@ -6457,7 +6457,7 @@ msgstr "" "です)。4 つ目のオプションが 1 に設定されている場合は禁則処理をせず出力全体が " "1 行に収まるようにします (デフォルトは 1 です)" -#: libraries/messages.inc.php:1173 +#: libraries/messages.inc.php:1169 msgid "" "Displays the contents of the field as-is, without running it through " "htmlspecialchars(). That is, the field is assumed to contain valid HTML." @@ -6465,7 +6465,7 @@ msgstr "" "フィールドの内容をそのまま、htmlspecialchars()を通さずに表示します。この場" "合、フィールドには正しい HTML が含まれているものと仮定します" -#: libraries/messages.inc.php:1174 +#: libraries/messages.inc.php:1170 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 " @@ -6475,7 +6475,7 @@ msgstr "" "オプションは \"http://domain.com/\" のようなURLの先頭部分です。2 つ目と3 つ目" "のオプションには幅と高さをピクセル単位で指定します" -#: libraries/messages.inc.php:1175 +#: libraries/messages.inc.php:1171 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 " @@ -6485,11 +6485,11 @@ msgstr "" "ションは \"http://domain.com/\" のような URL の先頭部分、2 つ目のオプションは" "リンクのタイトルです" -#: libraries/messages.inc.php:1176 +#: libraries/messages.inc.php:1172 msgid "Formats text as SQL query with syntax highlighting." msgstr "テキストの内容を SQL クエリとみなし、構文ハイライト表示します" -#: libraries/messages.inc.php:1177 +#: libraries/messages.inc.php:1173 msgid "" "Displays a part of a string. The first option is the number of characters to " "skip from the beginning of the string (Default 0). The second option is the " @@ -6502,69 +6502,69 @@ msgstr "" "字数です (デフォルトは文字列の末尾までです)。3 つ目のオプションは文字列を切り" "詰めるときに前/後に補う省略記号です (デフォルトは ... です)" -#: libraries/messages.inc.php:1179 server_binlog.php:183 server_binlog.php:186 +#: libraries/messages.inc.php:1175 server_binlog.php:183 server_binlog.php:186 #: server_processlist.php:49 server_processlist.php:51 msgid "Truncate Shown Queries" msgstr "クエリの表示を切り詰める" -#: libraries/messages.inc.php:1180 libraries/mysql_charsets.lib.php:301 +#: libraries/messages.inc.php:1176 libraries/mysql_charsets.lib.php:301 #: libraries/mysql_charsets.lib.php:389 msgid "Turkish" msgstr "トルコ語" -#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:304 +#: libraries/messages.inc.php:1179 libraries/mysql_charsets.lib.php:304 #: libraries/mysql_charsets.lib.php:386 msgid "Ukrainian" msgstr "ウクライナ語" -#: libraries/messages.inc.php:1185 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:1181 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 msgid "Unicode" msgstr "UNICODE" -#: libraries/messages.inc.php:1187 libraries/mysql_charsets.lib.php:398 +#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:398 #: libraries/mysql_charsets.lib.php:405 msgid "unknown" msgstr "不明" -#: libraries/messages.inc.php:1190 server_privileges.php:1152 +#: libraries/messages.inc.php:1186 server_privileges.php:1152 #, php-format msgid "You have updated the privileges for %s." msgstr "%s の特権を更新しました" -#: libraries/messages.inc.php:1191 user_password.php:112 +#: libraries/messages.inc.php:1187 user_password.php:112 msgid "The profile has been updated." msgstr "プロファイルを更新しました" -#: libraries/messages.inc.php:1193 libraries/relation.lib.php:138 +#: libraries/messages.inc.php:1189 libraries/relation.lib.php:138 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "column_comments テーブルの更新方法についてはドキュメントをご覧ください" -#: libraries/messages.inc.php:1194 +#: libraries/messages.inc.php:1190 #, php-format msgid "You should upgrade to %s %s or later." msgstr "%s を %s 以降にアップグレードしてください" -#: libraries/messages.inc.php:1204 tbl_printview.php:314 tbl_structure.php:661 +#: libraries/messages.inc.php:1200 tbl_printview.php:314 tbl_structure.php:661 msgid "Usage" msgstr "使用量" -#: libraries/messages.inc.php:1205 +#: libraries/messages.inc.php:1201 msgid "Enclose table and field names with backquotes" msgstr "テーブル名やフィールド名を逆クォートで囲む" -#: libraries/messages.inc.php:1206 libraries/replication_gui.lib.php:314 +#: libraries/messages.inc.php:1202 libraries/replication_gui.lib.php:314 #: server_privileges.php:740 msgid "Use Host Table" msgstr "ホストテーブルを使う" -#: libraries/messages.inc.php:1207 server_privileges.php:848 +#: libraries/messages.inc.php:1203 server_privileges.php:848 #, php-format msgid "The user %s already exists!" msgstr "ユーザ %s は既に存在します!" -#: libraries/messages.inc.php:1209 libraries/replication_gui.lib.php:55 +#: libraries/messages.inc.php:1205 libraries/replication_gui.lib.php:55 #: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245 #: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255 #: server_privileges.php:672 server_privileges.php:675 @@ -6572,37 +6572,37 @@ msgstr "ユーザ %s は既に存在します!" msgid "User name" msgstr "ユーザ名" -#: libraries/messages.inc.php:1210 server_privileges.php:1645 +#: libraries/messages.inc.php:1206 server_privileges.php:1645 msgid "The selected user was not found in the privilege table." msgstr "特権テーブルには選択したユーザがいません" -#: libraries/messages.inc.php:1211 server_privileges.php:1365 +#: libraries/messages.inc.php:1207 server_privileges.php:1365 msgid "User overview" msgstr "ユーザ概略" -#: libraries/messages.inc.php:1212 server_privileges.php:1261 +#: libraries/messages.inc.php:1208 server_privileges.php:1261 msgid "The selected users have been deleted successfully." msgstr "選択したユーザを正しく削除しました" -#: libraries/messages.inc.php:1213 server_privileges.php:2026 +#: libraries/messages.inc.php:1209 server_privileges.php:2026 #, php-format msgid "Users having access to "%s"" msgstr ""%s" にアクセスできるユーザ" -#: libraries/messages.inc.php:1214 main.php:189 server_privileges.php:1350 +#: libraries/messages.inc.php:1210 main.php:189 server_privileges.php:1350 #: server_privileges.php:1497 server_privileges.php:1611 #: server_privileges.php:2029 server_processlist.php:54 msgid "User" msgstr "ユーザ" -#: libraries/messages.inc.php:1215 tbl_change.php:1171 +#: libraries/messages.inc.php:1211 tbl_change.php:1171 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "次の値に移動するときは TAB キーを使ってください。CTRL+カーソルキーを使うと自" "由に移動できます" -#: libraries/messages.inc.php:1217 libraries/replication_gui.lib.php:251 +#: libraries/messages.inc.php:1213 libraries/replication_gui.lib.php:251 #: libraries/replication_gui.lib.php:319 libraries/replication_gui.lib.php:342 #: server_privileges.php:678 server_privileges.php:745 #: server_privileges.php:769 server_privileges.php:1889 @@ -6610,7 +6610,7 @@ msgstr "" msgid "Use text field" msgstr "テキストフィールドの値を利用する" -#: libraries/messages.inc.php:1221 libraries/sqlvalidator.lib.php:68 +#: libraries/messages.inc.php:1217 libraries/sqlvalidator.lib.php:68 #, php-format msgid "" "The SQL validator could not be initialized. Please check if you have " @@ -6619,84 +6619,84 @@ msgstr "" "SQL の検証機能を初期化できません。%sドキュメント%s の記載通りに必要な PHP 拡" "張がインストールされているか確認してください" -#: libraries/messages.inc.php:1222 libraries/replication_gui.lib.php:111 +#: libraries/messages.inc.php:1218 libraries/replication_gui.lib.php:111 #: server_status.php:627 tbl_change.php:324 tbl_printview.php:370 #: tbl_select.php:139 tbl_structure.php:730 msgid "Value" msgstr "値" -#: libraries/messages.inc.php:1223 libraries/replication_gui.lib.php:110 +#: libraries/messages.inc.php:1219 libraries/replication_gui.lib.php:110 #: libraries/sql_query_form.lib.php:445 server_status.php:626 #: server_variables.php:52 msgid "Variable" msgstr "変数" -#: libraries/messages.inc.php:1225 server_export.php:21 +#: libraries/messages.inc.php:1221 server_export.php:21 msgid "View dump (schema) of databases" msgstr "データベースのダンプ(スキーマ)表示" -#: libraries/messages.inc.php:1227 tbl_export.php:23 +#: libraries/messages.inc.php:1223 tbl_export.php:23 msgid "View dump (schema) of table" msgstr "テーブルのダンプ(スキーマ)表示" -#: libraries/messages.inc.php:1231 view_create.php:142 +#: libraries/messages.inc.php:1227 view_create.php:142 msgid "VIEW name" msgstr "VIEW の名前" -#: libraries/messages.inc.php:1237 main.php:205 +#: libraries/messages.inc.php:1233 main.php:205 msgid "Web server" msgstr "Web サーバ" -#: libraries/messages.inc.php:1239 libraries/mysql_charsets.lib.php:277 +#: libraries/messages.inc.php:1235 libraries/mysql_charsets.lib.php:277 #: libraries/mysql_charsets.lib.php:325 msgid "West European" msgstr "西ヨーロッパ諸語" -#: libraries/messages.inc.php:1240 main.php:230 +#: libraries/messages.inc.php:1236 main.php:230 msgid "Wiki" msgstr "Wiki" -#: libraries/messages.inc.php:1241 server_privileges.php:2138 +#: libraries/messages.inc.php:1237 server_privileges.php:2138 msgid "wildcard" msgstr "ワイルドカード" -#: libraries/messages.inc.php:1248 +#: libraries/messages.inc.php:1244 msgid "Export contents" msgstr "" -#: libraries/messages.inc.php:1249 +#: libraries/messages.inc.php:1245 msgid "Export functions" msgstr "" -#: libraries/messages.inc.php:1250 +#: libraries/messages.inc.php:1246 msgid "Export procedures" msgstr "" -#: libraries/messages.inc.php:1251 +#: libraries/messages.inc.php:1247 msgid "Export Structure Schemas (recommended)" msgstr "" -#: libraries/messages.inc.php:1252 +#: libraries/messages.inc.php:1248 msgid "Export tables" msgstr "" -#: libraries/messages.inc.php:1253 +#: libraries/messages.inc.php:1249 msgid "Export triggers" msgstr "" -#: libraries/messages.inc.php:1254 +#: libraries/messages.inc.php:1250 msgid "Export views" msgstr "" -#: libraries/messages.inc.php:1255 +#: libraries/messages.inc.php:1251 msgid "XML" msgstr "XML" -#: libraries/messages.inc.php:1259 server_privileges.php:592 +#: libraries/messages.inc.php:1255 server_privileges.php:592 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "注意: オプションを 0 (ゼロ)に設定すると制限を解除します" -#: libraries/messages.inc.php:1260 +#: libraries/messages.inc.php:1256 msgid "\"zipped\"" msgstr "\"zip 形式\"" diff --git a/po/ka.po b/po/ka.po index dbdb59759..54a7236b9 100644 --- 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-05-13 11:25+0200\n" +"POT-Creation-Date: 2010-05-13 11:30+0200\n" "PO-Revision-Date: 2010-03-12 09:14+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: georgian \n" @@ -13,19 +13,19 @@ msgstr "" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:38 browse_foreigners.php:59 -#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:870 +#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:866 #: server_privileges.php:1475 msgid "Show all" msgstr "ყველას ჩვენება" #: browse_foreigners.php:82 db_operations.php:648 -#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:394 -#: libraries/export/pdf.php:147 libraries/messages.inc.php:597 +#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394 +#: libraries/export/pdf.php:147 libraries/messages.inc.php:593 #: pdf_schema.php:283 pdf_schema.php:1123 pdf_schema.php:1139 msgid "Page number:" msgstr "გვერდის ნომერი:" -#: browse_foreigners.php:132 libraries/messages.inc.php:1242 +#: browse_foreigners.php:132 libraries/messages.inc.php:1238 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -38,7 +38,7 @@ 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/db_links.inc.php:75 -#: libraries/messages.inc.php:841 libraries/tbl_links.inc.php:63 +#: libraries/messages.inc.php:837 libraries/tbl_links.inc.php:63 msgid "Search" msgstr "ძებნა" @@ -47,12 +47,12 @@ msgstr "ძებნა" #: db_search.php:362 db_structure.php:567 js/messages.php:48 #: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2267 +#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 #: 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 #: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614 -#: libraries/messages.inc.php:361 libraries/replication_gui.lib.php:73 +#: libraries/messages.inc.php:357 libraries/replication_gui.lib.php:73 #: libraries/replication_gui.lib.php:365 libraries/select_server.lib.php:104 #: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477 #: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782 @@ -72,33 +72,33 @@ msgid "Go" msgstr "გადასვლა" #: browse_foreigners.php:168 browse_foreigners.php:172 -#: libraries/Index.class.php:442 libraries/messages.inc.php:459 +#: libraries/Index.class.php:442 libraries/messages.inc.php:455 #: tbl_tracking.php:320 msgid "Keyname" msgstr "Keyname" #: browse_foreigners.php:169 browse_foreigners.php:171 -#: libraries/messages.inc.php:252 server_collations.php:55 +#: libraries/messages.inc.php:248 server_collations.php:55 #: server_collations.php:67 server_engines.php:59 server_status.php:628 msgid "Description" msgstr "აღწერილობა" #: browse_foreigners.php:247 browse_foreigners.php:256 #: browse_foreigners.php:268 browse_foreigners.php:276 -#: libraries/messages.inc.php:1218 +#: libraries/messages.inc.php:1214 msgid "Use this value" msgstr "გამოიყენე ეს ველი" -#: db_create.php:46 libraries/messages.inc.php:215 +#: db_create.php:46 libraries/messages.inc.php:211 #, php-format msgid "Database %1$s has been created." msgstr "შეიქმნა მონაცემთა ბაზა %1$s." -#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:232 +#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:228 msgid "Database comment: " msgstr "მონაცემთა ბაზის კომენტარი: " -#: db_datadict.php:165 libraries/messages.inc.php:1070 +#: db_datadict.php:165 libraries/messages.inc.php:1066 #: libraries/tbl_properties.inc.php:724 pdf_schema.php:1236 #: tbl_operations.php:345 tbl_printview.php:130 msgid "Table comments" @@ -107,7 +107,7 @@ msgstr "ცხრილის კომენტარები" #: db_datadict.php:174 db_qbe.php:174 libraries/Index.class.php:446 #: libraries/export/htmlword.php:244 libraries/export/latex.php:360 #: libraries/export/odt.php:294 libraries/export/texytext.php:233 -#: libraries/messages.inc.php:317 libraries/tbl_properties.inc.php:99 +#: libraries/messages.inc.php:313 libraries/tbl_properties.inc.php:99 #: libraries/tbl_properties.inc.php:275 pdf_schema.php:1262 #: pdf_schema.php:1283 tbl_change.php:308 tbl_indexes.php:189 #: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135 @@ -119,7 +119,7 @@ msgstr "ველი" #: libraries/db_events.inc.php:31 libraries/db_routines.inc.php:42 #: 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/messages.inc.php:1181 +#: libraries/export/texytext.php:234 libraries/messages.inc.php:1177 #: libraries/tbl_properties.inc.php:100 pdf_schema.php:1263 #: pdf_schema.php:1284 server_privileges.php:2031 tbl_change.php:287 #: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313 @@ -131,7 +131,7 @@ msgstr "ტიპი" #: db_datadict.php:177 libraries/Index.class.php:449 #: libraries/export/htmlword.php:246 libraries/export/latex.php:360 #: libraries/export/odt.php:300 libraries/export/texytext.php:235 -#: libraries/messages.inc.php:576 libraries/tbl_properties.inc.php:109 +#: libraries/messages.inc.php:572 libraries/tbl_properties.inc.php:109 #: pdf_schema.php:1265 pdf_schema.php:1286 tbl_change.php:323 #: tbl_printview.php:145 tbl_structure.php:181 tbl_tracking.php:276 #: tbl_tracking.php:327 @@ -140,7 +140,7 @@ msgstr "ნული" #: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 -#: libraries/export/texytext.php:236 libraries/messages.inc.php:238 +#: libraries/export/texytext.php:236 libraries/messages.inc.php:234 #: libraries/tbl_properties.inc.php:106 pdf_schema.php:1266 #: pdf_schema.php:1287 tbl_printview.php:146 tbl_structure.php:182 #: tbl_tracking.php:277 @@ -149,14 +149,14 @@ msgstr "ნაგულისხმები" #: db_datadict.php:182 libraries/export/htmlword.php:249 #: libraries/export/latex.php:362 libraries/export/odt.php:307 -#: libraries/export/texytext.php:238 libraries/messages.inc.php:483 +#: libraries/export/texytext.php:238 libraries/messages.inc.php:479 #: pdf_schema.php:1268 pdf_schema.php:1289 tbl_printview.php:150 msgid "Links to" msgstr "Links to" #: db_datadict.php:184 db_printview.php:112 libraries/export/htmlword.php:252 #: libraries/export/latex.php:365 libraries/export/odt.php:312 -#: libraries/export/texytext.php:241 libraries/messages.inc.php:163 +#: libraries/export/texytext.php:241 libraries/messages.inc.php:159 #: libraries/tbl_properties.inc.php:130 pdf_schema.php:1279 #: pdf_schema.php:1290 tbl_printview.php:152 msgid "Comments" @@ -165,7 +165,7 @@ msgstr "კომენტარები" #: db_datadict.php:267 libraries/Index.class.php:359 #: 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/messages.inc.php:559 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:555 #: libraries/mult_submits.inc.php:263 pdf_schema.php:1344 #: server_privileges.php:1529 server_privileges.php:1540 #: server_privileges.php:1850 server_privileges.php:1855 @@ -177,7 +177,7 @@ msgstr "არა" #: db_datadict.php:267 libraries/Index.class.php:360 #: libraries/Index.class.php:385 libraries/export/htmlword.php:322 #: libraries/export/latex.php:430 libraries/export/odt.php:368 -#: libraries/export/texytext.php:311 libraries/messages.inc.php:1257 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:1253 #: libraries/mult_submits.inc.php:45 libraries/mult_submits.inc.php:50 #: libraries/mult_submits.inc.php:55 libraries/mult_submits.inc.php:60 #: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:101 @@ -191,108 +191,108 @@ msgstr "არა" msgid "Yes" msgstr "დიახ" -#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:670 +#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:666 #: tbl_printview.php:498 msgid "Print" msgstr "დაბეჭდვა" -#: db_export.php:29 libraries/messages.inc.php:1226 +#: db_export.php:29 libraries/messages.inc.php:1222 msgid "View dump (schema) of database" msgstr "View dump (schema) of database" #: db_export.php:33 db_printview.php:96 db_qbe.php:102 db_structure.php:51 -#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:568 +#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:564 #: navigation.php:346 msgid "No tables found in database." msgstr "No tables found in database." -#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:845 +#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:841 #: server_export.php:27 msgid "Select All" msgstr "ყველას მონიშნვა" -#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1188 +#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1184 #: server_export.php:29 msgid "Unselect All" msgstr "მონიშნვის მოხსნა" -#: db_operations.php:38 libraries/messages.inc.php:213 tbl_create.php:54 +#: db_operations.php:38 libraries/messages.inc.php:209 tbl_create.php:54 msgid "The database name is empty!" msgstr "მონაცემთა ბაზა ცარიელია!" -#: db_operations.php:236 libraries/messages.inc.php:753 +#: db_operations.php:236 libraries/messages.inc.php:749 #, php-format msgid "Database %s has been renamed to %s" msgstr "Database %s has been renamed to %s" -#: db_operations.php:240 libraries/messages.inc.php:178 +#: db_operations.php:240 libraries/messages.inc.php:174 #, php-format msgid "Database %s has been copied to %s" msgstr "Database %s has been copied to %s" -#: db_operations.php:410 libraries/messages.inc.php:236 +#: db_operations.php:410 libraries/messages.inc.php:232 msgid "Rename database to" msgstr "Rename database to" -#: db_operations.php:415 libraries/messages.inc.php:161 +#: db_operations.php:415 libraries/messages.inc.php:157 #: server_processlist.php:57 msgid "Command" msgstr "ბრძანება" -#: db_operations.php:425 libraries/messages.inc.php:58 tbl_change.php:1143 +#: db_operations.php:425 libraries/messages.inc.php:54 tbl_change.php:1143 msgid "and then" msgstr "და შემდეგ" -#: db_operations.php:451 libraries/messages.inc.php:233 +#: db_operations.php:451 libraries/messages.inc.php:229 msgid "Copy database to" msgstr "Copy database to" -#: db_operations.php:458 libraries/messages.inc.php:1043 +#: db_operations.php:458 libraries/messages.inc.php:1039 #: tbl_operations.php:526 tbl_tracking.php:388 msgid "Structure only" msgstr "მხოლოდ სტრუქტურა" -#: db_operations.php:459 libraries/messages.inc.php:1041 +#: db_operations.php:459 libraries/messages.inc.php:1037 #: tbl_operations.php:527 tbl_tracking.php:390 msgid "Structure and data" msgstr "სტრუქტურა და მონაცემები" -#: db_operations.php:460 libraries/messages.inc.php:229 tbl_operations.php:528 +#: db_operations.php:460 libraries/messages.inc.php:225 tbl_operations.php:528 #: tbl_tracking.php:389 msgid "Data only" msgstr "მხოლოდ მონაცემები" -#: db_operations.php:468 libraries/messages.inc.php:186 +#: db_operations.php:468 libraries/messages.inc.php:182 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE before copying" #: db_operations.php:471 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 -#: libraries/export/sql.php:82 libraries/messages.inc.php:30 +#: libraries/export/sql.php:82 libraries/messages.inc.php:26 #: tbl_operations.php:534 #, php-format msgid "Add %s" msgstr "Add %s" -#: db_operations.php:475 libraries/messages.inc.php:29 tbl_operations.php:297 +#: db_operations.php:475 libraries/messages.inc.php:25 tbl_operations.php:297 #: tbl_operations.php:536 msgid "Add AUTO_INCREMENT value" msgstr "Add AUTO_INCREMENT value" -#: db_operations.php:479 libraries/messages.inc.php:31 tbl_operations.php:543 +#: db_operations.php:479 libraries/messages.inc.php:27 tbl_operations.php:543 msgid "Add constraints" msgstr "Add constraints" -#: db_operations.php:492 libraries/messages.inc.php:1059 +#: db_operations.php:492 libraries/messages.inc.php:1055 msgid "Switch to copied database" msgstr "Switch to copied database" -#: db_operations.php:533 libraries/messages.inc.php:89 +#: db_operations.php:533 libraries/messages.inc.php:85 msgid "BLOB Repository" msgstr "BLOB რეპოზიტორია" #: db_operations.php:536 db_tracking.php:76 libraries/common.lib.php:1350 -#: libraries/messages.inc.php:1037 libraries/server_links.inc.php:49 +#: libraries/messages.inc.php:1033 libraries/server_links.inc.php:49 #: server_processlist.php:59 tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "მდგომარეობა" @@ -304,11 +304,11 @@ msgctxt "BLOB repository" msgid "Enabled" msgstr "ჩართულია" -#: db_operations.php:548 libraries/messages.inc.php:93 +#: db_operations.php:548 libraries/messages.inc.php:89 msgid "Disable" msgstr "გათიშვა" -#: db_operations.php:558 libraries/messages.inc.php:90 +#: db_operations.php:558 libraries/messages.inc.php:86 msgid "Damaged" msgstr "დაზიანებული" @@ -326,12 +326,12 @@ msgctxt "BLOB repository" msgid "Disabled" msgstr "გათიშულია" -#: db_operations.php:574 libraries/messages.inc.php:96 +#: db_operations.php:574 libraries/messages.inc.php:92 msgid "Enable" msgstr "ჩართვა" #: db_operations.php:598 libraries/Index.class.php:448 -#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:158 +#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:154 #: 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:361 @@ -340,7 +340,7 @@ msgstr "ჩართვა" msgid "Collation" msgstr "კოლაცია" -#: db_operations.php:609 libraries/messages.inc.php:742 main.php:316 +#: db_operations.php:609 libraries/messages.inc.php:738 main.php:316 #: pdf_schema.php:34 #, php-format msgid "" @@ -350,58 +350,58 @@ msgstr "" "The additional features for working with linked tables have been " "deactivated. To find out why click %shere%s." -#: db_operations.php:645 libraries/messages.inc.php:264 pdf_pages.php:528 +#: db_operations.php:645 libraries/messages.inc.php:260 pdf_pages.php:528 msgid "Display PDF schema" msgstr "PDF სქემის ჩვენება" -#: db_operations.php:661 libraries/messages.inc.php:877 pdf_pages.php:529 +#: db_operations.php:661 libraries/messages.inc.php:873 pdf_pages.php:529 msgid "Show grid" msgstr "Show grid" -#: db_operations.php:664 libraries/messages.inc.php:874 pdf_pages.php:530 +#: db_operations.php:664 libraries/messages.inc.php:870 pdf_pages.php:530 msgid "Show color" msgstr "ფერის ჩვენება" -#: db_operations.php:666 libraries/messages.inc.php:998 pdf_pages.php:531 +#: db_operations.php:666 libraries/messages.inc.php:994 pdf_pages.php:531 msgid "Show dimension of tables" msgstr "Show dimension of tables" -#: db_operations.php:669 libraries/messages.inc.php:52 pdf_pages.php:532 +#: db_operations.php:669 libraries/messages.inc.php:48 pdf_pages.php:532 msgid "Display all tables with the same width" msgstr "Display all tables with the same width" -#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:227 +#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:223 #: pdf_pages.php:533 msgid "Data Dictionary" msgstr "მონაცემების ლექსიკონი" -#: db_operations.php:674 libraries/messages.inc.php:884 pdf_pages.php:534 +#: db_operations.php:674 libraries/messages.inc.php:880 pdf_pages.php:534 msgid "Only show keys" msgstr "Only show keys" -#: db_operations.php:676 libraries/messages.inc.php:875 pdf_pages.php:535 +#: db_operations.php:676 libraries/messages.inc.php:871 pdf_pages.php:535 msgid "Data Dictionary Format" msgstr "Data Dictionary Format" -#: db_operations.php:678 libraries/messages.inc.php:464 pdf_pages.php:537 +#: db_operations.php:678 libraries/messages.inc.php:460 pdf_pages.php:537 msgid "Landscape" msgstr "ლანდშაფტური" -#: db_operations.php:679 libraries/messages.inc.php:663 pdf_pages.php:538 +#: db_operations.php:679 libraries/messages.inc.php:659 pdf_pages.php:538 msgid "Portrait" msgstr "პორტრეტული" -#: db_operations.php:682 libraries/messages.inc.php:599 pdf_pages.php:541 +#: db_operations.php:682 libraries/messages.inc.php:595 pdf_pages.php:541 msgid "Paper size" msgstr "გვერდის ზომა" -#: db_operations.php:706 libraries/messages.inc.php:281 +#: db_operations.php:706 libraries/messages.inc.php:277 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 libraries/messages.inc.php:1087 +#: libraries/header.inc.php:126 libraries/messages.inc.php:1083 #: pdf_pages.php:405 server_privileges.php:1626 server_privileges.php:1682 #: server_privileges.php:1946 server_synchronize.php:423 #: server_synchronize.php:866 tbl_tracking.php:592 test/theme.php:75 @@ -409,176 +409,176 @@ msgid "Table" msgstr "ცხრილი" #: db_printview.php:105 libraries/db_structure.lib.php:56 -#: libraries/messages.inc.php:735 +#: libraries/messages.inc.php:731 msgid "Records" msgstr "ჩანაწერები" #: db_printview.php:109 libraries/db_structure.lib.php:67 -#: libraries/messages.inc.php:1003 tbl_indexes.php:190 +#: libraries/messages.inc.php:999 tbl_indexes.php:190 msgid "Size" msgstr "ზომა" #: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 -#: libraries/export/sql.php:899 libraries/messages.inc.php:436 +#: libraries/export/sql.php:899 libraries/messages.inc.php:432 msgid "in use" msgstr "in use" #: db_printview.php:187 libraries/db_info.inc.php:88 -#: libraries/export/sql.php:514 libraries/messages.inc.php:1032 +#: libraries/export/sql.php:514 libraries/messages.inc.php:1028 #: pdf_schema.php:1241 tbl_printview.php:434 tbl_structure.php:810 msgid "Creation" msgstr "შეიქმნა" #: db_printview.php:196 libraries/db_info.inc.php:93 -#: libraries/export/sql.php:519 libraries/messages.inc.php:1036 +#: libraries/export/sql.php:519 libraries/messages.inc.php:1032 #: pdf_schema.php:1246 tbl_printview.php:444 tbl_structure.php:818 msgid "Last update" msgstr "უკანასკნელი განახლება" #: db_printview.php:205 libraries/db_info.inc.php:98 -#: libraries/export/sql.php:524 libraries/messages.inc.php:1031 +#: libraries/export/sql.php:524 libraries/messages.inc.php:1027 #: pdf_schema.php:1251 tbl_printview.php:454 tbl_structure.php:826 msgid "Last check" msgstr "Last check" -#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1085 +#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1081 #, php-format msgid "%s table(s)" msgstr "%s table(s)" #: db_qbe.php:29 libraries/display_tbl.lib.php:1981 -#: libraries/messages.inc.php:1051 libraries/sql_query_form.lib.php:140 +#: libraries/messages.inc.php:1047 libraries/sql_query_form.lib.php:140 #: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131 #: view_operations.php:62 msgid "Your SQL query has been executed successfully" msgstr "Your SQL query has been executed successfully" -#: db_qbe.php:42 libraries/messages.inc.php:371 +#: db_qbe.php:42 libraries/messages.inc.php:367 msgid "You have to choose at least one column to display" msgstr "You have to choose at least one column to display" #: db_qbe.php:200 libraries/db_structure.lib.php:104 -#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1014 +#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1010 msgid "Sort" msgstr "დალაგება" #: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111 #: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828 -#: libraries/messages.inc.php:69 server_databases.php:170 +#: libraries/messages.inc.php:65 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314 msgid "Ascending" msgstr "ზრდადობით" #: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119 #: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825 -#: libraries/messages.inc.php:251 server_databases.php:170 +#: libraries/messages.inc.php:247 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315 msgid "Descending" msgstr "კლებადობით" #: db_qbe.php:264 db_tracking.php:78 libraries/display_tbl.lib.php:308 -#: libraries/messages.inc.php:888 tbl_change.php:277 tbl_tracking.php:597 +#: libraries/messages.inc.php:884 tbl_change.php:277 tbl_tracking.php:597 msgid "Show" msgstr "ჩვენება" -#: db_qbe.php:300 libraries/messages.inc.php:202 +#: db_qbe.php:300 libraries/messages.inc.php:198 msgid "Criteria" msgstr "კრიტერია" #: db_qbe.php:353 db_qbe.php:435 db_qbe.php:527 db_qbe.php:558 -#: libraries/messages.inc.php:718 +#: libraries/messages.inc.php:714 msgid "Ins" msgstr "Ins" #: db_qbe.php:357 db_qbe.php:439 db_qbe.php:524 db_qbe.php:555 -#: libraries/messages.inc.php:56 +#: libraries/messages.inc.php:52 msgid "And" msgstr "და" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:529 db_qbe.php:560 -#: libraries/messages.inc.php:717 +#: libraries/messages.inc.php:713 msgid "Del" 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/messages.inc.php:592 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:588 #: libraries/tbl_properties.inc.php:779 server_privileges.php:258 #: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288 msgid "Or" msgstr "ან" -#: db_qbe.php:507 libraries/messages.inc.php:516 +#: db_qbe.php:507 libraries/messages.inc.php:512 msgid "Modify" msgstr "შეცვლა" -#: db_qbe.php:584 libraries/messages.inc.php:33 +#: db_qbe.php:584 libraries/messages.inc.php:29 msgid "Add/Delete Criteria Row" msgstr "Add/Delete Criteria Row" -#: db_qbe.php:596 libraries/messages.inc.php:32 +#: db_qbe.php:596 libraries/messages.inc.php:28 msgid "Add/Delete Field Columns" msgstr "ველის სვეტების დამატება/წაშლა" -#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1192 +#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1188 msgid "Update Query" msgstr "მოთხოვნის განახლება" -#: db_qbe.php:617 libraries/messages.inc.php:1216 +#: db_qbe.php:617 libraries/messages.inc.php:1212 msgid "Use Tables" msgstr "გამოიყენე ცხრილები" -#: db_qbe.php:640 libraries/messages.inc.php:723 +#: db_qbe.php:640 libraries/messages.inc.php:719 #, php-format msgid "SQL query on database %s:" msgstr "SQL query on database %s:" -#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:823 +#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:819 msgid "Submit Query" msgstr "მოთხოვნის გაგზავნა" #: db_search.php:68 libraries/auth/config.auth.lib.php:84 #: libraries/auth/config.auth.lib.php:103 #: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52 -#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:26 +#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:22 msgid "Access denied" msgstr "წვდომა აკრძალულია" -#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:836 +#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:832 msgid "at least one of the words" msgstr "ერთი სიტყვა მაინც" -#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:837 +#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:833 msgid "all words" msgstr "ყველა სიტყვა" -#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:838 +#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:834 msgid "the exact phrase" msgstr "ზუსტი ფრაზა" -#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:839 +#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:835 msgid "as regular expression" msgstr "რეგულარული გამოსახულება" -#: db_search.php:242 libraries/messages.inc.php:840 +#: db_search.php:242 libraries/messages.inc.php:836 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Search results for \"%s\" %s:" -#: db_search.php:260 libraries/messages.inc.php:579 +#: db_search.php:260 libraries/messages.inc.php:575 #, php-format msgid "%s match(es) inside table %s" 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/messages.inc.php:108 +#: db_structure.php:105 libraries/messages.inc.php:104 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468 msgid "Browse" msgstr "არჩევა" #: db_search.php:272 libraries/display_tbl.lib.php:1165 -#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:243 +#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:239 #: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406 #: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377 #: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216 @@ -586,45 +586,45 @@ msgstr "არჩევა" msgid "Delete" msgstr "წაშლა" -#: db_search.php:285 libraries/messages.inc.php:580 +#: db_search.php:285 libraries/messages.inc.php:576 #, php-format msgid "Total: %s match(es)" msgstr "Total: %s match(es)" -#: db_search.php:299 libraries/messages.inc.php:832 +#: db_search.php:299 libraries/messages.inc.php:828 msgid "Search in database" msgstr "მონაცემთა ბაზაში ძებნა" -#: db_search.php:302 libraries/messages.inc.php:835 +#: db_search.php:302 libraries/messages.inc.php:831 msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgstr "Word(s) or value(s) to search for (wildcard: \"%\"):" -#: db_search.php:307 libraries/messages.inc.php:842 +#: db_search.php:307 libraries/messages.inc.php:838 msgid "Find:" msgstr "იპოვე:" -#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1017 +#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1013 msgid "Words are separated by a space character (\" \")." msgstr "Words are separated by a space character (\" \")." -#: db_search.php:325 libraries/messages.inc.php:834 +#: db_search.php:325 libraries/messages.inc.php:830 msgid "Inside table(s):" msgstr "ცხრილ(ებ)ში:" -#: db_search.php:355 libraries/messages.inc.php:833 +#: db_search.php:355 libraries/messages.inc.php:829 msgid "Inside field:" 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/messages.inc.php:431 libraries/sql_query_form.lib.php:334 +#: libraries/messages.inc.php:427 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/db_links.inc.php:63 libraries/export/latex.php:337 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:1048 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:1044 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 #: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269 msgid "Structure" @@ -633,8 +633,8 @@ 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:1642 -#: libraries/db_links.inc.php:100 libraries/messages.inc.php:272 +#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/db_links.inc.php:100 libraries/messages.inc.php:268 #: 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 @@ -644,40 +644,40 @@ 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:1641 -#: libraries/messages.inc.php:284 libraries/mult_submits.inc.php:39 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: libraries/messages.inc.php:280 libraries/mult_submits.inc.php:39 #: libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "ცარიელი" -#: db_structure.php:316 libraries/messages.inc.php:1075 +#: db_structure.php:316 libraries/messages.inc.php:1071 #: libraries/tbl_links.inc.php:100 #, php-format msgid "Table %s has been emptied" msgstr "Table %s has been emptied" -#: db_structure.php:326 libraries/messages.inc.php:1229 +#: db_structure.php:326 libraries/messages.inc.php:1225 #: 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/messages.inc.php:1074 +#: db_structure.php:326 libraries/messages.inc.php:1070 #: libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "Table %s has been dropped" -#: db_structure.php:333 libraries/messages.inc.php:1128 +#: db_structure.php:333 libraries/messages.inc.php:1124 msgid "Tracking is active." msgstr "" -#: db_structure.php:335 libraries/messages.inc.php:1129 +#: db_structure.php:335 libraries/messages.inc.php:1125 msgid "Tracking is not active." msgstr "" #: db_structure.php:420 libraries/display_tbl.lib.php:1944 -#: libraries/messages.inc.php:1228 +#: libraries/messages.inc.php:1224 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -687,83 +687,83 @@ msgstr "" "s." #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 -#: libraries/messages.inc.php:1233 libraries/tbl_info.inc.php:66 +#: libraries/messages.inc.php:1229 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/messages.inc.php:773 libraries/server_links.inc.php:70 +#: libraries/messages.inc.php:769 libraries/server_links.inc.php:70 #: server_replication.php:33 server_replication.php:164 server_status.php:258 msgid "Replication" msgstr "რეპლიკაცია" -#: db_structure.php:489 libraries/messages.inc.php:1053 +#: db_structure.php:489 libraries/messages.inc.php:1049 msgid "Sum" msgstr "ჯამი" #: db_structure.php:496 libraries/StorageEngine.class.php:356 -#: libraries/messages.inc.php:239 +#: libraries/messages.inc.php:235 #, 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 #: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086 -#: libraries/messages.inc.php:1243 libraries/mult_submits.inc.php:16 +#: libraries/messages.inc.php:1239 libraries/mult_submits.inc.php:16 #: server_databases.php:346 server_databases.php:351 #: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465 msgid "With selected:" msgstr "With selected:" #: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: libraries/messages.inc.php:148 server_databases.php:348 +#: libraries/messages.inc.php:144 server_databases.php:348 #: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459 msgid "Check All" msgstr "ყველას შემოწმება" #: db_structure.php:531 libraries/display_tbl.lib.php:2077 -#: libraries/messages.inc.php:1184 libraries/replication_gui.lib.php:33 +#: libraries/messages.inc.php:1180 libraries/replication_gui.lib.php:33 #: server_databases.php:350 server_privileges.php:533 #: server_privileges.php:1564 tbl_structure.php:463 msgid "Uncheck All" msgstr "მონიშნვის მოხსნა ყველასთვის" -#: db_structure.php:536 libraries/messages.inc.php:150 +#: db_structure.php:536 libraries/messages.inc.php:146 msgid "Check tables having overhead" msgstr "Check tables having overhead" #: db_structure.php:547 db_structure.php:548 db_structure.php:599 -#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:672 +#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:668 #: libraries/mult_submits.inc.php:28 tbl_structure.php:493 #: tbl_structure.php:495 msgid "Print view" msgstr "ხედის ამობეჭდვა" -#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:153 +#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:149 #: libraries/mult_submits.inc.php:42 tbl_operations.php:579 msgid "Check table" msgstr "ცხრილის შემოწმება" -#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:590 +#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:586 #: libraries/mult_submits.inc.php:47 tbl_operations.php:619 #: tbl_structure.php:710 tbl_structure.php:712 msgid "Optimize table" msgstr "ცხრილის ოპტიმიზება" -#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:758 +#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:754 #: libraries/mult_submits.inc.php:52 tbl_operations.php:609 msgid "Repair table" msgstr "ცხრილის აღდგენა" -#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:55 +#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:51 #: libraries/mult_submits.inc.php:57 tbl_operations.php:599 msgid "Analyze table" msgstr "Analyze table" #: db_structure.php:557 db_structure.php:558 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/messages.inc.php:310 +#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:306 #: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84 #: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109 #: server_privileges.php:1341 setup/frames/menu.inc.php:22 @@ -771,7 +771,7 @@ msgstr "Analyze table" msgid "Export" msgstr "ექსპორტი" -#: db_tracking.php:66 libraries/messages.inc.php:1151 +#: db_tracking.php:66 libraries/messages.inc.php:1147 #, fuzzy msgid "Tracked tables" msgstr "დაბლოკილი ცხრილების გამოტოვება" @@ -780,7 +780,7 @@ msgstr "დაბლოკილი ცხრილების გამოტ #: 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/header_printview.inc.php:58 libraries/messages.inc.php:212 +#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:208 #: navigation.php:233 server_databases.php:169 server_privileges.php:1621 #: server_privileges.php:1682 server_privileges.php:1940 #: server_processlist.php:56 server_synchronize.php:1179 @@ -788,100 +788,100 @@ msgstr "დაბლოკილი ცხრილების გამოტ msgid "Database" msgstr "მონაცემთა ბაზა" -#: db_tracking.php:73 libraries/messages.inc.php:1146 +#: db_tracking.php:73 libraries/messages.inc.php:1142 #, fuzzy msgid "Last version" msgstr "Create relation" -#: db_tracking.php:74 libraries/messages.inc.php:1145 tbl_tracking.php:594 +#: db_tracking.php:74 libraries/messages.inc.php:1141 tbl_tracking.php:594 #, fuzzy msgid "Created" msgstr "შექმნა" -#: db_tracking.php:75 libraries/messages.inc.php:1147 tbl_tracking.php:595 +#: db_tracking.php:75 libraries/messages.inc.php:1143 tbl_tracking.php:595 msgid "Updated" msgstr "" #: db_tracking.php:77 libraries/Index.class.php:440 -#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:27 +#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:23 #: server_databases.php:203 server_privileges.php:1503 #: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187 msgid "Action" msgstr "მოქმედება" -#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:247 +#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:243 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:106 libraries/messages.inc.php:1142 tbl_tracking.php:548 +#: db_tracking.php:106 libraries/messages.inc.php:1138 tbl_tracking.php:548 #: tbl_tracking.php:606 tbl_tracking.php:613 msgid "active" msgstr "" -#: db_tracking.php:108 libraries/messages.inc.php:1143 tbl_tracking.php:550 +#: db_tracking.php:108 libraries/messages.inc.php:1139 tbl_tracking.php:550 #: tbl_tracking.php:608 tbl_tracking.php:610 msgid "not active" msgstr "" -#: db_tracking.php:121 libraries/messages.inc.php:1160 +#: db_tracking.php:121 libraries/messages.inc.php:1156 #, fuzzy msgid "Versions" msgstr "სპარსული" -#: db_tracking.php:122 libraries/messages.inc.php:1132 tbl_tracking.php:379 +#: db_tracking.php:122 libraries/messages.inc.php:1128 tbl_tracking.php:379 #: tbl_tracking.php:624 msgid "Tracking report" msgstr "" -#: db_tracking.php:123 libraries/messages.inc.php:1144 tbl_tracking.php:251 +#: db_tracking.php:123 libraries/messages.inc.php:1140 tbl_tracking.php:251 #: tbl_tracking.php:624 #, fuzzy msgid "Structure snapshot" msgstr "მხოლოდ სტრუქტურა" -#: db_tracking.php:152 libraries/messages.inc.php:1154 +#: db_tracking.php:152 libraries/messages.inc.php:1150 #, fuzzy msgid "Untracked tables" msgstr "დაბლოკილი ცხრილების გამოტოვება" -#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1153 +#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1149 #: tbl_structure.php:529 tbl_structure.php:531 #, fuzzy msgid "Track table" msgstr "ცხრილის შემოწმება" -#: db_tracking.php:200 libraries/messages.inc.php:1121 +#: db_tracking.php:200 libraries/messages.inc.php:1117 #, fuzzy msgid "Database Log" msgstr "მონაცემთა ბაზა" -#: export.php:62 libraries/messages.inc.php:312 +#: export.php:62 libraries/messages.inc.php:308 msgid "Selected export type has to be saved in file!" msgstr "Selected export type has to be saved in file!" -#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:567 +#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:563 #, php-format msgid "Insufficient space to save the file %s." msgstr "Insufficient space to save the file %s." -#: export.php:294 libraries/messages.inc.php:324 +#: export.php:294 libraries/messages.inc.php:320 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "" "File %s already exists on server, change filename or check overwrite option." -#: export.php:298 export.php:302 libraries/messages.inc.php:562 +#: export.php:298 export.php:302 libraries/messages.inc.php:558 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "The web server does not have permission to save the file %s." -#: export.php:629 libraries/messages.inc.php:276 +#: export.php:629 libraries/messages.inc.php:272 #, php-format msgid "Dump has been saved to file %s." msgstr "Dump has been saved to file %s." -#: import.php:60 libraries/messages.inc.php:1202 +#: import.php:60 libraries/messages.inc.php:1198 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation%" @@ -891,14 +891,14 @@ msgstr "" "s for ways to workaround this limit." #: import.php:279 import.php:332 libraries/File.class.php:849 -#: libraries/File.class.php:961 libraries/messages.inc.php:325 +#: libraries/File.class.php:961 libraries/messages.inc.php:321 msgid "File could not be read" msgstr "ფაილის წაკითხვა ვერ მოხერხდა" #: import.php:287 import.php:296 import.php:315 import.php:324 #: libraries/File.class.php:1031 libraries/File.class.php:1039 #: libraries/File.class.php:1055 libraries/File.class.php:1063 -#: libraries/messages.inc.php:1189 +#: libraries/messages.inc.php:1185 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -907,7 +907,7 @@ msgstr "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." -#: import.php:337 libraries/messages.inc.php:547 +#: import.php:337 libraries/messages.inc.php:543 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -918,29 +918,29 @@ msgstr "" "[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." #: import.php:372 libraries/display_import.lib.php:24 -#: libraries/messages.inc.php:125 +#: libraries/messages.inc.php:121 msgid "Could not load import plugins, please check your installation!" msgstr "Could not load import plugins, please check your installation!" -#: import.php:397 libraries/messages.inc.php:102 +#: import.php:397 libraries/messages.inc.php:98 msgid "The bookmark has been deleted." msgstr "The bookmark has been deleted." -#: import.php:401 libraries/messages.inc.php:879 +#: import.php:401 libraries/messages.inc.php:875 msgid "Showing bookmark" msgstr "Showing bookmark" -#: import.php:403 libraries/messages.inc.php:101 +#: import.php:403 libraries/messages.inc.php:97 #, php-format msgid "Bookmark %s created" msgstr "Bookmark %s created" -#: import.php:409 import.php:415 libraries/messages.inc.php:407 +#: import.php:409 import.php:415 libraries/messages.inc.php:403 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Import has been successfully finished, %d queries executed." -#: import.php:424 libraries/messages.inc.php:1107 +#: import.php:424 libraries/messages.inc.php:1103 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -948,11 +948,11 @@ msgstr "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." -#: index.php:190 libraries/messages.inc.php:553 +#: index.php:190 libraries/messages.inc.php:549 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin is more friendly with a frames-capable browser." -#: js/messages.php:25 libraries/messages.inc.php:155 +#: js/messages.php:25 libraries/messages.inc.php:151 #: server_synchronize.php:345 server_synchronize.php:357 #: server_synchronize.php:373 server_synchronize.php:380 #: server_synchronize.php:739 server_synchronize.php:767 @@ -960,116 +960,116 @@ msgstr "phpMyAdmin is more friendly with a frames-capable browser." msgid "Click to select" msgstr "" -#: js/messages.php:26 libraries/messages.inc.php:156 +#: js/messages.php:26 libraries/messages.inc.php:152 msgid "Click to unselect" msgstr "" #: js/messages.php:27 libraries/import.lib.php:103 -#: libraries/messages.inc.php:550 sql.php:89 +#: libraries/messages.inc.php:546 sql.php:89 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" statements are disabled." -#: js/messages.php:30 libraries/messages.inc.php:270 +#: js/messages.php:30 libraries/messages.inc.php:266 #: libraries/mult_submits.inc.php:258 sql.php:188 msgid "Do you really want to " msgstr "ნამდვილად გსურთ " -#: js/messages.php:31 libraries/messages.inc.php:271 +#: js/messages.php:31 libraries/messages.inc.php:267 #: libraries/mult_submits.inc.php:258 sql.php:172 msgid "You are about to DESTROY a complete database!" msgstr "You are about to DESTROY a complete database!" -#: js/messages.php:34 libraries/messages.inc.php:94 +#: js/messages.php:34 libraries/messages.inc.php:90 msgid "You are about to DISABLE a BLOB Repository!" msgstr "You are about to DISABLE a BLOB Repository!" -#: js/messages.php:35 libraries/messages.inc.php:91 +#: js/messages.php:35 libraries/messages.inc.php:87 #, php-format msgid "Are you sure you want to disable all BLOB references for database %s?" msgstr "Are you sure you want to disable all BLOB references for database %s?" -#: js/messages.php:38 libraries/messages.inc.php:342 +#: js/messages.php:38 libraries/messages.inc.php:338 msgid "Missing value in the form!" msgstr "Missing value in the form!" -#: js/messages.php:39 libraries/messages.inc.php:570 +#: js/messages.php:39 libraries/messages.inc.php:566 msgid "This is not a number!" msgstr "ეს არ არის რიცხვი!" -#: js/messages.php:42 libraries/messages.inc.php:380 +#: js/messages.php:42 libraries/messages.inc.php:376 msgid "The host name is empty!" msgstr "ჰოსტის სახელი არაა შეყვანილი!" -#: js/messages.php:43 libraries/messages.inc.php:1208 +#: js/messages.php:43 libraries/messages.inc.php:1204 msgid "The user name is empty!" msgstr "მომხმარებლის სახელი ცარიელია!" -#: js/messages.php:44 libraries/messages.inc.php:607 +#: js/messages.php:44 libraries/messages.inc.php:603 #: server_privileges.php:1197 user_password.php:70 msgid "The password is empty!" msgstr "პაროლი ცარიელია!" -#: js/messages.php:45 libraries/messages.inc.php:609 +#: js/messages.php:45 libraries/messages.inc.php:605 #: server_privileges.php:1195 user_password.php:73 msgid "The passwords aren't the same!" msgstr "პაროლები არ ემთხვევა!" -#: js/messages.php:49 libraries/messages.inc.php:123 pmd_general.php:342 +#: js/messages.php:49 libraries/messages.inc.php:119 pmd_general.php:342 #: pmd_general.php:379 msgid "Cancel" msgstr "გაუქმება" -#: js/messages.php:52 libraries/messages.inc.php:514 +#: js/messages.php:52 libraries/messages.inc.php:510 msgid "Modifications have been saved" msgstr "ცვლილებები შენახულია" -#: js/messages.php:53 libraries/messages.inc.php:741 +#: js/messages.php:53 libraries/messages.inc.php:737 msgid "Relation deleted" msgstr "Relation deleted" -#: js/messages.php:54 libraries/messages.inc.php:340 +#: js/messages.php:54 libraries/messages.inc.php:336 msgid "FOREIGN KEY relation added" msgstr "FOREIGN KEY relation added" -#: js/messages.php:55 libraries/messages.inc.php:434 +#: js/messages.php:55 libraries/messages.inc.php:430 msgid "Internal relation added" msgstr "Internal relation added" -#: js/messages.php:56 libraries/messages.inc.php:299 +#: js/messages.php:56 libraries/messages.inc.php:295 msgid "Error: Relation not added." msgstr "Error: Relation not added." -#: js/messages.php:57 libraries/messages.inc.php:300 +#: js/messages.php:57 libraries/messages.inc.php:296 msgid "Error: relation already exists." msgstr "Error: relation already exists." -#: js/messages.php:58 libraries/messages.inc.php:302 +#: js/messages.php:58 libraries/messages.inc.php:298 msgid "Error saving coordinates for Designer." msgstr "Error saving coordinates for Designer." -#: js/messages.php:59 libraries/messages.inc.php:351 +#: js/messages.php:59 libraries/messages.inc.php:347 #: libraries/relation.lib.php:107 msgid "General relation features" msgstr "General relation features" -#: js/messages.php:59 libraries/messages.inc.php:260 +#: js/messages.php:59 libraries/messages.inc.php:256 #: libraries/relation.lib.php:101 libraries/relation.lib.php:108 msgid "Disabled" msgstr "გათიშულია" -#: js/messages.php:60 libraries/messages.inc.php:850 +#: js/messages.php:60 libraries/messages.inc.php:846 msgid "Select referenced key" msgstr "Select referenced key" -#: js/messages.php:61 libraries/messages.inc.php:848 +#: js/messages.php:61 libraries/messages.inc.php:844 msgid "Select Foreign Key" msgstr "Select Foreign Key" -#: js/messages.php:62 libraries/messages.inc.php:653 +#: js/messages.php:62 libraries/messages.inc.php:649 msgid "Please select the primary key or a unique key" msgstr "Please select the primary key or a unique key" -#: js/messages.php:63 libraries/messages.inc.php:142 pmd_general.php:77 +#: js/messages.php:63 libraries/messages.inc.php:138 pmd_general.php:77 #: tbl_relation.php:548 msgid "Choose field to display" msgstr "აირჩიეთ საჩვენებელი ველი" @@ -1089,9 +1089,9 @@ msgid "Prev" msgstr "წინა" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2332 -#: libraries/common.lib.php:2335 libraries/display_tbl.lib.php:338 -#: libraries/messages.inc.php:543 server_binlog.php:205 server_binlog.php:207 +#: js/messages.php:77 libraries/common.lib.php:2344 +#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: libraries/messages.inc.php:539 server_binlog.php:205 server_binlog.php:207 #: tbl_printview.php:424 tbl_structure.php:802 msgid "Next" msgstr "შემდეგი" @@ -1166,27 +1166,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1543 +#: js/messages.php:97 libraries/common.lib.php:1555 msgid "Jan" msgstr "იან" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1545 +#: js/messages.php:99 libraries/common.lib.php:1557 msgid "Feb" msgstr "თებ" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1547 +#: js/messages.php:101 libraries/common.lib.php:1559 msgid "Mar" msgstr "მარ" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1549 +#: js/messages.php:103 libraries/common.lib.php:1561 msgid "Apr" msgstr "აპრ" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1551 +#: js/messages.php:105 libraries/common.lib.php:1563 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1194,37 +1194,37 @@ msgid "May" msgstr "მაი" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1553 +#: js/messages.php:107 libraries/common.lib.php:1565 msgid "Jun" msgstr "ივნ" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1555 +#: js/messages.php:109 libraries/common.lib.php:1567 msgid "Jul" msgstr "ივლ" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1557 +#: js/messages.php:111 libraries/common.lib.php:1569 msgid "Aug" msgstr "აგვ" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1559 +#: js/messages.php:113 libraries/common.lib.php:1571 msgid "Sep" msgstr "სექ" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1561 +#: js/messages.php:115 libraries/common.lib.php:1573 msgid "Oct" msgstr "ოქტ" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1563 +#: js/messages.php:117 libraries/common.lib.php:1575 msgid "Nov" msgstr "ნოე" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1565 +#: js/messages.php:119 libraries/common.lib.php:1577 msgid "Dec" msgstr "დეკ" @@ -1265,37 +1265,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1568 +#: js/messages.php:132 libraries/common.lib.php:1580 msgid "Sun" msgstr "კვი" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1570 +#: js/messages.php:134 libraries/common.lib.php:1582 msgid "Mon" msgstr "ორშ" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1572 +#: js/messages.php:136 libraries/common.lib.php:1584 msgid "Tue" msgstr "სამ" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1574 +#: js/messages.php:138 libraries/common.lib.php:1586 msgid "Wed" msgstr "ოთხ" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1576 +#: js/messages.php:140 libraries/common.lib.php:1588 msgid "Thu" msgstr "ხუთ" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1578 +#: js/messages.php:142 libraries/common.lib.php:1590 msgid "Fri" msgstr "პარ" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1580 +#: js/messages.php:144 libraries/common.lib.php:1592 msgid "Sat" msgstr "შაბ" @@ -1371,22 +1371,22 @@ msgstr "in use" msgid "Second" msgstr "წამში" -#: libraries/Config.class.php:1015 libraries/messages.inc.php:338 +#: libraries/Config.class.php:1015 libraries/messages.inc.php:334 msgid "Font size" msgstr "შრიფტის ზომა" #: libraries/File.class.php:344 libraries/File.class.php:432 #: libraries/File.class.php:569 libraries/File.class.php:708 -#: libraries/messages.inc.php:1201 +#: libraries/messages.inc.php:1197 msgid "Unknown error in file upload." msgstr "Unknown error in file upload." -#: libraries/File.class.php:414 libraries/messages.inc.php:1198 +#: libraries/File.class.php:414 libraries/messages.inc.php:1194 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "The uploaded file exceeds the upload_max_filesize directive in php.ini." -#: libraries/File.class.php:417 libraries/messages.inc.php:1197 +#: libraries/File.class.php:417 libraries/messages.inc.php:1193 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -1394,23 +1394,23 @@ msgstr "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." -#: libraries/File.class.php:420 libraries/messages.inc.php:1200 +#: libraries/File.class.php:420 libraries/messages.inc.php:1196 msgid "The uploaded file was only partially uploaded." msgstr "The uploaded file was only partially uploaded." -#: libraries/File.class.php:423 libraries/messages.inc.php:1199 +#: libraries/File.class.php:423 libraries/messages.inc.php:1195 msgid "Missing a temporary folder." msgstr "Missing a temporary folder." -#: libraries/File.class.php:426 libraries/messages.inc.php:1195 +#: libraries/File.class.php:426 libraries/messages.inc.php:1191 msgid "Failed to write file to disk." msgstr "Failed to write file to disk." -#: libraries/File.class.php:429 libraries/messages.inc.php:1196 +#: libraries/File.class.php:429 libraries/messages.inc.php:1192 msgid "File upload stopped by extension." msgstr "File upload stopped by extension." -#: libraries/File.class.php:908 libraries/messages.inc.php:319 +#: libraries/File.class.php:908 libraries/messages.inc.php:315 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -1418,34 +1418,34 @@ msgstr "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" -#: libraries/Index.class.php:428 libraries/messages.inc.php:554 +#: libraries/Index.class.php:428 libraries/messages.inc.php:550 #: tbl_relation.php:529 msgid "No index defined!" msgstr "ინდექსი არაა განსაზღვრული!" -#: libraries/Index.class.php:433 libraries/messages.inc.php:411 +#: libraries/Index.class.php:433 libraries/messages.inc.php:407 #: server_databases.php:132 tbl_tracking.php:316 msgid "Indexes" msgstr "ინდექსები" -#: libraries/Index.class.php:444 libraries/messages.inc.php:1186 +#: libraries/Index.class.php:444 libraries/messages.inc.php:1182 #: 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:475 tbl_tracking.php:322 msgid "Unique" msgstr "უნიკალური" -#: libraries/Index.class.php:445 libraries/messages.inc.php:596 +#: libraries/Index.class.php:445 libraries/messages.inc.php:592 #: tbl_tracking.php:323 msgid "Packed" msgstr "შეკუმშული" -#: libraries/Index.class.php:447 libraries/messages.inc.php:131 +#: libraries/Index.class.php:447 libraries/messages.inc.php:127 #: tbl_tracking.php:325 msgid "Cardinality" msgstr "Cardinality" -#: libraries/Index.class.php:450 libraries/messages.inc.php:162 +#: libraries/Index.class.php:450 libraries/messages.inc.php:158 #: tbl_tracking.php:279 tbl_tracking.php:328 msgid "Comment" msgstr "კომენტარი" @@ -1453,22 +1453,22 @@ msgstr "კომენტარი" #: libraries/Index.class.php:466 libraries/common.lib.php:616 #: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:280 pdf_pages.php:280 +#: libraries/messages.inc.php:276 pdf_pages.php:280 #: setup/frames/index.inc.php:124 setup/lib/messages.inc.php:352 #: tbl_row_action.php:69 msgid "Edit" msgstr "რედაქტირება" -#: libraries/Index.class.php:472 libraries/messages.inc.php:666 +#: libraries/Index.class.php:472 libraries/messages.inc.php:662 msgid "The primary key has been dropped" msgstr "The primary key has been dropped" -#: libraries/Index.class.php:476 libraries/messages.inc.php:413 +#: libraries/Index.class.php:476 libraries/messages.inc.php:409 #, php-format msgid "Index %s has been dropped" msgstr "Index %s has been dropped" -#: libraries/Index.class.php:576 libraries/messages.inc.php:412 +#: libraries/Index.class.php:576 libraries/messages.inc.php:408 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -1477,7 +1477,7 @@ 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/messages.inc.php:218 +#: libraries/List_Database.class.php:431 libraries/messages.inc.php:214 #: libraries/server_links.inc.php:41 server_databases.php:88 #: server_privileges.php:1621 setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" @@ -1507,86 +1507,86 @@ msgid_plural "%1$d rows inserted." msgstr[0] "ჩაისვა %1$d სტრიქონი." msgstr[1] "ჩაისვა %1$d სტრიქონი." -#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:549 +#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:545 msgid "" "There is no detailed status information available for this storage engine." msgstr "" "There is no detailed status information available for this storage engine." -#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:291 +#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:287 #, php-format msgid "%s is available on this MySQL server." msgstr "%s ხელმისაწვდომია ამ MySQL სერვერზე." -#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:292 +#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:288 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s გათიშულია ამ MySQL სერვერზე." -#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:294 +#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:290 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "ამ MySQL სერვერს არ აქვს %s ძრავის მხარდაჭერა." -#: libraries/Table.class.php:1019 libraries/messages.inc.php:443 +#: libraries/Table.class.php:1019 libraries/messages.inc.php:439 msgid "Invalid database" msgstr "არასწორი მონაცემთა ბაზა" -#: libraries/Table.class.php:1033 libraries/messages.inc.php:450 +#: libraries/Table.class.php:1033 libraries/messages.inc.php:446 #: tbl_get_field.php:26 msgid "Invalid table name" msgstr "ცხრილის არასწორი სახელი" -#: libraries/Table.class.php:1048 libraries/messages.inc.php:301 +#: libraries/Table.class.php:1048 libraries/messages.inc.php:297 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "Error renaming table %1$s to %2$s" -#: libraries/Table.class.php:1132 libraries/messages.inc.php:754 +#: libraries/Table.class.php:1132 libraries/messages.inc.php:750 #, php-format msgid "Table %s has been renamed to %s" msgstr "Table %s has been renamed to %s" -#: libraries/Theme.class.php:162 libraries/messages.inc.php:1099 +#: libraries/Theme.class.php:162 libraries/messages.inc.php:1095 #, php-format msgid "No valid image path for theme %s found!" msgstr "No valid image path for theme %s found!" -#: libraries/Theme.class.php:384 libraries/messages.inc.php:1097 +#: libraries/Theme.class.php:384 libraries/messages.inc.php:1093 msgid "No preview available." msgstr "No preview available." -#: libraries/Theme.class.php:387 libraries/messages.inc.php:1089 +#: libraries/Theme.class.php:387 libraries/messages.inc.php:1085 msgid "take it" msgstr "take it" -#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1096 +#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1092 #, php-format msgid "Default theme %s not found!" msgstr "Default theme %s not found!" -#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1098 +#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1094 #, php-format msgid "Theme %s not found!" msgstr "Theme %s not found!" -#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1100 +#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1096 #, php-format msgid "Theme path not found for theme %s!" msgstr "Theme path not found for theme %s!" -#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1101 +#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1097 #: test/theme.php:161 themes.php:21 themes.php:41 msgid "Theme / Style" msgstr "თემა / სტიპი" -#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:172 +#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:168 msgid "Cannot connect: invalid settings." msgstr "დაკავშირება შეუძლებელია: პარამეტრები არასწორია." #: libraries/auth/config.auth.lib.php:92 #: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65 -#: libraries/messages.inc.php:1238 test/theme.php:152 +#: libraries/messages.inc.php:1234 test/theme.php:152 #, php-format msgid "Welcome to %s" msgstr "მოგესალმებათ %s" @@ -1612,104 +1612,104 @@ msgstr "" "configuration and make sure that they correspond to the information given by " "the administrator of the MySQL server." -#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:488 +#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:484 msgid "Log in" msgstr "შესვლა" #: libraries/auth/cookie.auth.lib.php:246 -#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:659 +#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:655 #: libraries/navigation_header.inc.php:93 #: libraries/navigation_header.inc.php:95 msgid "phpMyAdmin documentation" msgstr "phpMyAdmin-ის დოკუმენტაცია" #: libraries/auth/cookie.auth.lib.php:258 -#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:492 +#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:488 msgid "You can enter hostname/IP address and port separated by space." msgstr "You can enter hostname/IP address and port separated by space." -#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:493 +#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:489 msgid "Server:" msgstr "სერვერი:" -#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:494 +#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:490 msgid "Username:" msgstr "მომხმარებელი:" -#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:491 +#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:487 msgid "Password:" msgstr "პაროლი:" -#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:854 +#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:850 msgid "Server Choice" msgstr "სერვერის არჩევა" #: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 -#: libraries/messages.inc.php:177 +#: libraries/messages.inc.php:173 msgid "Cookies must be enabled past this point." msgstr "Cookies must be enabled past this point." #: libraries/auth/cookie.auth.lib.php:671 -#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:489 +#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:485 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" #: libraries/auth/cookie.auth.lib.php:675 -#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:544 +#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:540 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "No activity within %s seconds; please log in again" #: libraries/auth/cookie.auth.lib.php:685 #: libraries/auth/cookie.auth.lib.php:687 -#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:126 +#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:122 msgid "Cannot log in to the MySQL server" msgstr "MySQL სერვერზე შესვლა შეუძლებელია" -#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1245 +#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1241 msgid "Wrong username/password. Access denied." msgstr "Wrong username/password. Access denied." #: libraries/auth/swekey/swekey.auth.lib.php:118 -#: libraries/messages.inc.php:1057 +#: libraries/messages.inc.php:1053 #, php-format msgid "File %s does not contain any key id" msgstr "File %s does not contain any key id" #: libraries/auth/swekey/swekey.auth.lib.php:157 #: libraries/auth/swekey/swekey.auth.lib.php:180 -#: libraries/messages.inc.php:1056 +#: libraries/messages.inc.php:1052 msgid "Hardware authentication failed" msgstr "Hardware authentication failed" #: libraries/auth/swekey/swekey.auth.lib.php:166 -#: libraries/messages.inc.php:1058 +#: libraries/messages.inc.php:1054 msgid "No valid authentication key plugged" msgstr "No valid authentication key plugged" #: libraries/auth/swekey/swekey.auth.lib.php:202 -#: libraries/messages.inc.php:1055 +#: libraries/messages.inc.php:1051 msgid "Authenticating..." msgstr "ავთენტიფიკაცია..." -#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1230 +#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1226 msgid "View image" msgstr "გამოსახულების ჩვენება" -#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:652 +#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:648 msgid "Play audio" msgstr "ხმის დაკვრა" -#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1232 +#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1228 msgid "View video" msgstr "ვიდეოს ჩვენება" -#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:269 +#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:265 msgid "Download file" msgstr "ფაილის ჩამოტვირთვა" -#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:128 +#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:124 msgid "" "Couldn't load the iconv or recode extension needed for charset conversion. " "Either configure PHP to enable these extensions or disable charset " @@ -1721,7 +1721,7 @@ msgstr "" #: libraries/charset_conversion.lib.php:79 #: libraries/charset_conversion.lib.php:90 -#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:130 +#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:126 msgid "" "Couldn't use the iconv, libiconv, or recode_string functions, although the " "necessary extensions appear to be loaded. Check your PHP configuration." @@ -1729,7 +1729,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/messages.inc.php:170 +#: libraries/common.inc.php:583 libraries/messages.inc.php:166 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!" @@ -1765,22 +1765,22 @@ msgstr "" msgid "Invalid server index: %s" msgstr "Invalid server index: \"%s\"" -#: libraries/common.inc.php:636 libraries/messages.inc.php:448 +#: libraries/common.inc.php:636 libraries/messages.inc.php:444 #, 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/messages.inc.php:856 libraries/select_server.lib.php:41 +#: libraries/messages.inc.php:852 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/messages.inc.php:437 +#: libraries/common.inc.php:823 libraries/messages.inc.php:433 msgid "Invalid authentication method set in configuration:" msgstr "Invalid authentication method set in configuration:" -#: libraries/common.lib.php:147 libraries/messages.inc.php:499 +#: libraries/common.lib.php:147 libraries/messages.inc.php:495 #, php-format msgid "Max: %s%s" msgstr "მაქს: %s%s" @@ -1801,7 +1801,7 @@ msgstr "ka" #: libraries/common.lib.php:428 libraries/common.lib.php:430 #: libraries/common.lib.php:432 libraries/common.lib.php:448 #: libraries/common.lib.php:450 libraries/dbg/setup.php:25 -#: libraries/display_export.lib.php:164 libraries/messages.inc.php:267 +#: libraries/display_export.lib.php:164 libraries/messages.inc.php:263 #: libraries/relation.lib.php:97 libraries/sql_query_form.lib.php:451 #: libraries/sql_query_form.lib.php:454 main.php:229 pdf_pages.php:37 #: pdf_pages.php:43 pdf_pages.php:49 pdf_pages.php:54 @@ -1811,55 +1811,55 @@ msgstr "დოკუმენტაცია" #: libraries/common.lib.php:581 libraries/core.lib.php:234 #: libraries/core.lib.php:263 libraries/import.lib.php:134 -#: libraries/messages.inc.php:297 pdf_schema.php:32 pdf_schema.php:232 +#: libraries/messages.inc.php:293 pdf_schema.php:32 pdf_schema.php:232 #: tbl_change.php:1027 tbl_operations.php:213 tbl_relation.php:290 #: view_operations.php:62 msgid "Error" msgstr "შეცდომა" #: libraries/common.lib.php:595 libraries/header_printview.inc.php:61 -#: libraries/messages.inc.php:1023 server_processlist.php:60 +#: libraries/messages.inc.php:1019 server_processlist.php:60 #: server_status.php:247 msgid "SQL query" msgstr "SQL მოთხოვნა" -#: libraries/common.lib.php:634 libraries/messages.inc.php:538 +#: libraries/common.lib.php:634 libraries/messages.inc.php:534 msgid "MySQL said: " msgstr "MySQL-მა თქვა: " -#: libraries/common.lib.php:667 libraries/messages.inc.php:76 +#: libraries/common.lib.php:667 libraries/messages.inc.php:72 #: pdf_schema.php:241 user_password.php:115 msgid "Back" msgstr "უკან" -#: libraries/common.lib.php:1177 libraries/messages.inc.php:309 +#: libraries/common.lib.php:1177 libraries/messages.inc.php:305 #: setup/lib/messages.inc.php:353 msgid "Explain SQL" msgstr "SQL-ის ახსნა" -#: libraries/common.lib.php:1180 libraries/messages.inc.php:551 +#: libraries/common.lib.php:1180 libraries/messages.inc.php:547 msgid "Skip Explain SQL" msgstr "Skip Explain SQL" -#: libraries/common.lib.php:1212 libraries/messages.inc.php:563 +#: libraries/common.lib.php:1212 libraries/messages.inc.php:559 msgid "Without PHP Code" msgstr "PHP კოდის გარეშე" -#: libraries/common.lib.php:1215 libraries/messages.inc.php:649 +#: libraries/common.lib.php:1215 libraries/messages.inc.php:645 #: setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "PHP კოდის შექმნა" -#: libraries/common.lib.php:1233 libraries/messages.inc.php:737 +#: libraries/common.lib.php:1233 libraries/messages.inc.php:733 #: server_status.php:341 setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "განახლება" -#: libraries/common.lib.php:1242 libraries/messages.inc.php:575 +#: libraries/common.lib.php:1242 libraries/messages.inc.php:571 msgid "Skip Validate SQL" msgstr "Skip Validate SQL" -#: libraries/common.lib.php:1245 libraries/messages.inc.php:1220 +#: libraries/common.lib.php:1245 libraries/messages.inc.php:1216 #: setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "Validate SQL" @@ -1875,11 +1875,11 @@ msgid "Inline" msgstr "ძრავები" #: libraries/common.lib.php:1332 libraries/common.lib.php:1347 -#: libraries/messages.inc.php:713 +#: libraries/messages.inc.php:709 msgid "Profiling" msgstr "Profiling" -#: libraries/common.lib.php:1351 libraries/messages.inc.php:1108 +#: libraries/common.lib.php:1351 libraries/messages.inc.php:1104 #: libraries/tbl_triggers.lib.php:28 server_processlist.php:58 msgid "Time" msgstr "დრო" @@ -1913,46 +1913,56 @@ msgstr "PiB" msgid "EiB" msgstr "EiB" +#. l10n: Thousands separator +#: libraries/common.lib.php:1417 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: libraries/common.lib.php:1419 +msgid "." +msgstr "." + #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1584 +#: libraries/common.lib.php:1596 #: libraries/transformations/text_plain__dateformat.inc.php:28 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y, %I:%M %p" -#: libraries/common.lib.php:1886 +#: libraries/common.lib.php:1898 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s დღე, %s საათი, %s წუთი და %s წამი" -#: libraries/common.lib.php:2301 libraries/common.lib.php:2304 -#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:664 +#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:660 #: server_status.php:608 msgid "Begin" msgstr "დასაწყისი" -#: libraries/common.lib.php:2302 libraries/common.lib.php:2305 -#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:665 +#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:661 #: server_binlog.php:168 server_binlog.php:170 msgid "Previous" msgstr "წინა" -#: libraries/common.lib.php:2333 libraries/common.lib.php:2336 -#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:289 +#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:285 msgid "End" msgstr "დასასრული" -#: libraries/common.lib.php:2409 libraries/messages.inc.php:455 +#: libraries/common.lib.php:2421 libraries/messages.inc.php:451 #, php-format msgid "Jump to database "%s"." msgstr "Jump to database "%s"." -#: libraries/common.lib.php:2429 libraries/messages.inc.php:461 +#: libraries/common.lib.php:2441 libraries/messages.inc.php:457 #, 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/core.lib.php:286 libraries/dbg/setup.php:22 -#: libraries/messages.inc.php:127 +#: libraries/messages.inc.php:123 #, php-format msgid "" "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " @@ -1962,74 +1972,74 @@ msgstr "" "შეუძლებელია. გთხოვთ შეამოწმოთ PHP-ის კონფიგურაცია." #: libraries/db_events.inc.php:20 libraries/db_events.inc.php:22 -#: libraries/export/sql.php:415 libraries/messages.inc.php:306 +#: libraries/export/sql.php:415 libraries/messages.inc.php:302 msgid "Events" msgstr "მოვლენები" #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 -#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:541 +#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:537 #: libraries/tbl_triggers.lib.php:27 setup/frames/index.inc.php:112 msgid "Name" msgstr "სახელი" -#: libraries/db_links.inc.php:45 libraries/messages.inc.php:216 +#: libraries/db_links.inc.php:45 libraries/messages.inc.php:212 #, php-format msgid "Database %s has been dropped." msgstr "Database %s has been dropped." #: libraries/db_links.inc.php:57 libraries/db_links.inc.php:58 -#: libraries/db_links.inc.php:59 libraries/messages.inc.php:234 +#: libraries/db_links.inc.php:59 libraries/messages.inc.php:230 msgid "Database seems to be empty!" msgstr "Database seems to be empty!" -#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1025 +#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1021 #: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60 #: querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1152 +#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1148 #: libraries/tbl_links.inc.php:69 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:86 libraries/messages.inc.php:719 +#: libraries/db_links.inc.php:86 libraries/messages.inc.php:715 msgid "Query" msgstr "მოთხოვნა" -#: libraries/db_links.inc.php:91 libraries/messages.inc.php:253 +#: libraries/db_links.inc.php:91 libraries/messages.inc.php:249 msgid "Designer" msgstr "შემქნელი" -#: libraries/db_links.inc.php:98 libraries/messages.inc.php:397 +#: libraries/db_links.inc.php:98 libraries/messages.inc.php:393 #: libraries/server_links.inc.php:88 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:104 libraries/messages.inc.php:587 +#: libraries/db_links.inc.php:104 libraries/messages.inc.php:583 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" msgstr "მოქმედებები" -#: libraries/db_links.inc.php:111 libraries/messages.inc.php:709 +#: libraries/db_links.inc.php:111 libraries/messages.inc.php:705 #: libraries/server_links.inc.php:66 server_privileges.php:72 #: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117 msgid "Privileges" msgstr "პრივილეგიები" #: libraries/db_routines.inc.php:30 libraries/db_routines.inc.php:32 -#: libraries/messages.inc.php:812 +#: libraries/messages.inc.php:808 msgid "Routines" msgstr "Routines" -#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:811 +#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:807 msgid "Return type" msgstr "Return type" #: libraries/db_structure.lib.php:57 libraries/display_tbl.lib.php:1848 -#: libraries/messages.inc.php:65 +#: libraries/messages.inc.php:61 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -2037,42 +2047,42 @@ msgstr "" "შეიძლება იყოს მიახლოებითი. იხილეთ [a@./Documentation." "html#faq3_11@Documentation]FAQ 3.11[/a]" -#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:593 +#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:589 #: server_databases.php:142 tbl_printview.php:336 tbl_structure.php:683 msgid "Overhead" msgstr "Overhead" #: libraries/dbi/mysql.dbi.lib.php:112 libraries/dbi/mysqli.dbi.lib.php:124 -#: libraries/messages.inc.php:176 +#: libraries/messages.inc.php:172 msgid "Connection for controluser as defined in your configuration failed." msgstr "Connection for controluser as defined in your configuration failed." #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 -#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:855 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:851 msgid "The server is not responding" msgstr "სერვერი არ პასუხობს" #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:1010 +#: libraries/messages.inc.php:1006 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 libraries/messages.inc.php:255 +#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:251 #: tbl_structure.php:609 msgid "Details..." msgstr "დეტალები..." -#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:143 +#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:139 #: main.php:91 user_password.php:111 user_password.php:129 msgid "Change password" msgstr "პაროლის შეცვლა" -#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:561 +#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:557 #: libraries/replication_gui.lib.php:341 server_privileges.php:768 msgid "No Password" msgstr "პაროლი არაა" -#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:610 +#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:606 #: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60 #: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335 #: libraries/replication_gui.lib.php:345 server_privileges.php:757 @@ -2081,13 +2091,13 @@ msgstr "პაროლი არაა" msgid "Password" msgstr "პაროლი" -#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:806 +#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:802 #: libraries/replication_gui.lib.php:349 libraries/replication_gui.lib.php:352 #: server_privileges.php:776 server_privileges.php:779 msgid "Re-type" msgstr "Re-type" -#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:608 +#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:604 msgid "Password Hashing" msgstr "Password Hashing" @@ -2097,89 +2107,89 @@ msgstr "Password Hashing" msgid "MySQL 4.0 compatible" msgstr "MySQL 4.0-თან თავსებადი" -#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:353 +#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:349 #: libraries/replication_gui.lib.php:356 server_privileges.php:783 msgid "Generate Password" msgstr "პაროლის დაგენერირება" -#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:352 +#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:348 #: libraries/replication_gui.lib.php:359 server_privileges.php:786 msgid "Generate" msgstr "დაგენერირება" #: libraries/display_create_database.lib.php:22 -#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:189 +#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:185 msgid "Create new database" msgstr "ახალი მონაცემთა ბაზის შექმნა" -#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:185 +#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:181 msgid "Create" msgstr "შექმნა" -#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:564 +#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:560 #: server_privileges.php:74 server_privileges.php:1388 #: server_replication.php:35 msgid "No Privileges" msgstr "პრივილეგიები არაა" -#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:445 +#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:441 msgid "Table must have at least one field." msgstr "Table must have at least one field." -#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:190 +#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:186 #, php-format msgid "Create table on database %s" msgstr "Create new table on database %s" -#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:577 +#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:573 msgid "Number of fields" msgstr "ველების რაოდენობა" -#: libraries/display_export.lib.php:42 libraries/messages.inc.php:124 +#: libraries/display_export.lib.php:42 libraries/messages.inc.php:120 msgid "Could not load export plugins, please check your installation!" msgstr "Could not load export plugins, please check your installation!" -#: libraries/display_export.lib.php:107 libraries/messages.inc.php:277 +#: libraries/display_export.lib.php:107 libraries/messages.inc.php:273 #, php-format msgid "Dump %s row(s) starting at record # %s" msgstr "Dump %s row(s) starting at record # %s." -#: libraries/display_export.lib.php:115 libraries/messages.inc.php:274 +#: libraries/display_export.lib.php:115 libraries/messages.inc.php:270 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:125 libraries/messages.inc.php:852 +#: libraries/display_export.lib.php:125 libraries/messages.inc.php:848 #: setup/lib/messages.inc.php:82 msgid "Save as file" msgstr "ფაილის სახის შენახვა" -#: libraries/display_export.lib.php:134 libraries/messages.inc.php:828 +#: libraries/display_export.lib.php:134 libraries/messages.inc.php:824 #, php-format msgid "Save on server in %s directory" msgstr "სერვერის %s დირექტორიაში შენახვა" -#: libraries/display_export.lib.php:142 libraries/messages.inc.php:594 +#: libraries/display_export.lib.php:142 libraries/messages.inc.php:590 #: setup/lib/messages.inc.php:90 msgid "Overwrite existing file(s)" msgstr "Overwrite existing file(s)" -#: libraries/display_export.lib.php:148 libraries/messages.inc.php:330 +#: libraries/display_export.lib.php:148 libraries/messages.inc.php:326 msgid "File name template" msgstr "File name template" -#: libraries/display_export.lib.php:152 libraries/messages.inc.php:327 +#: libraries/display_export.lib.php:152 libraries/messages.inc.php:323 msgid "server name" msgstr "სერვერის სახელი" -#: libraries/display_export.lib.php:155 libraries/messages.inc.php:326 +#: libraries/display_export.lib.php:155 libraries/messages.inc.php:322 msgid "database name" msgstr "მონაცემთა ბაზა" -#: libraries/display_export.lib.php:158 libraries/messages.inc.php:328 +#: libraries/display_export.lib.php:158 libraries/messages.inc.php:324 msgid "table name" msgstr "ცხრილის სახელი" -#: libraries/display_export.lib.php:162 libraries/messages.inc.php:329 +#: libraries/display_export.lib.php:162 libraries/messages.inc.php:325 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2190,24 +2200,24 @@ msgstr "" "formatting strings. Additionally the following transformations will happen: %" "3$s. Other text will be kept as is." -#: libraries/display_export.lib.php:202 libraries/messages.inc.php:331 +#: libraries/display_export.lib.php:202 libraries/messages.inc.php:327 msgid "remember template" msgstr "remember template" #: libraries/display_export.lib.php:210 libraries/display_import.lib.php:178 -#: libraries/display_import.lib.php:191 libraries/messages.inc.php:145 +#: libraries/display_import.lib.php:191 libraries/messages.inc.php:141 #: libraries/sql_query_form.lib.php:549 msgid "Character set of the file:" msgstr "სიმბოლოთა ნაკრები ფაილისთვის:" -#: libraries/display_export.lib.php:235 libraries/messages.inc.php:166 +#: libraries/display_export.lib.php:235 libraries/messages.inc.php:162 #: setup/lib/messages.inc.php:84 msgid "Compression" 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/messages.inc.php:558 +#: libraries/export/sql.php:868 libraries/messages.inc.php:554 #: libraries/tbl_properties.inc.php:575 server_privileges.php:1836 #: server_processlist.php:75 msgid "None" @@ -2231,67 +2241,67 @@ msgstr "\"gzip-ით დაარქივებული\"" msgid "bzipped" msgstr "\"bzip-ით დაარქივებული\"" -#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1018 +#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1014 msgid "SQL compatibility mode" msgstr "SQL compatibility mode" -#: libraries/display_import.lib.php:67 libraries/messages.inc.php:398 +#: libraries/display_import.lib.php:67 libraries/messages.inc.php:394 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " "browsers." msgstr "" -#: libraries/display_import.lib.php:77 libraries/messages.inc.php:406 +#: libraries/display_import.lib.php:77 libraries/messages.inc.php:402 msgid "The file is being processed, please be patient." msgstr "" -#: libraries/display_import.lib.php:99 libraries/messages.inc.php:408 +#: libraries/display_import.lib.php:99 libraries/messages.inc.php:404 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." msgstr "" -#: libraries/display_import.lib.php:126 libraries/messages.inc.php:333 +#: libraries/display_import.lib.php:126 libraries/messages.inc.php:329 msgid "File to import" msgstr "შემოსატანი ფაილი" -#: libraries/display_import.lib.php:137 libraries/messages.inc.php:486 +#: libraries/display_import.lib.php:137 libraries/messages.inc.php:482 #: libraries/sql_query_form.lib.php:524 msgid "Location of the text file" msgstr "Location of the text file" -#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1203 +#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1199 msgid "File uploads are not allowed on this server." msgstr "File uploads are not allowed on this server." -#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1235 +#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1231 #: libraries/sql_query_form.lib.php:533 tbl_change.php:1028 msgid "The directory you set for upload work cannot be reached" msgstr "The directory you set for upload work cannot be reached" -#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1236 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1232 #: libraries/sql_query_form.lib.php:536 tbl_change.php:1031 msgid "web server upload directory" msgstr "web server upload directory" -#: libraries/display_import.lib.php:212 libraries/messages.inc.php:167 +#: libraries/display_import.lib.php:212 libraries/messages.inc.php:163 #, php-format msgid "Imported file compression will be automatically detected from: %s" msgstr "Imported file compression will be automatically detected from: %s" -#: libraries/display_import.lib.php:219 libraries/messages.inc.php:600 +#: libraries/display_import.lib.php:219 libraries/messages.inc.php:596 msgid "Partial import" msgstr "Partial import" -#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1105 +#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1101 #, php-format msgid "" "Previous import timed out, after resubmitting will continue from position %d." msgstr "" "Previous import timed out, after resubmitting will continue from position %d." -#: libraries/display_import.lib.php:232 libraries/messages.inc.php:51 +#: libraries/display_import.lib.php:232 libraries/messages.inc.php:47 msgid "" "Allow the interruption of an import in case the script detects it is close " "to the PHP timeout limit. This might be good way to import large files, " @@ -2301,178 +2311,178 @@ msgstr "" "to the PHP timeout limit. This might be good way to import large files, " "however it can break transactions." -#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1004 +#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1000 #: setup/lib/messages.inc.php:161 msgid "Number of records (queries) to skip from start" msgstr "Number of records (queries) to skip from start" -#: libraries/display_import.lib.php:255 libraries/messages.inc.php:396 +#: libraries/display_import.lib.php:255 libraries/messages.inc.php:392 #: setup/lib/messages.inc.php:160 msgid "Format of imported file" msgstr "შემოტანილი ფაილების ფორმატი" #: libraries/display_select_lang.lib.php:45 -#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:465 +#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:461 #: setup/frames/index.inc.php:70 msgid "Language" msgstr "ენა" -#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:447 +#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:443 #, php-format msgid "%d is not valid row number." msgstr "%d is not valid row number." -#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:814 +#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:810 msgid "row(s) starting from record #" msgstr "row(s) starting from record #" -#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:817 +#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:813 msgid "horizontal" msgstr "ჰორიზონტალური" -#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:816 +#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:812 msgid "horizontal (rotated headers)" msgstr "horizontal (rotated headers)" -#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:819 +#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:815 msgid "vertical" msgstr "ვერტიკალური" -#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:818 +#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:814 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "in %s mode and repeat headers after %s cells" -#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:495 +#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:491 msgid "This operation could take a long time. Proceed anyway?" msgstr "This operation could take a long time. Proceed anyway?" -#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1012 +#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1008 msgid "Sort by key" msgstr "Sort by key" #: libraries/display_tbl.lib.php:555 libraries/import.lib.php:1082 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:591 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:587 #: tbl_select.php:267 tbl_structure.php:754 msgid "Options" msgstr "პარამეტრები" #: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:570 -#: libraries/messages.inc.php:601 +#: libraries/messages.inc.php:597 msgid "Partial Texts" msgstr "Partial Texts" #: libraries/display_tbl.lib.php:561 libraries/display_tbl.lib.php:574 -#: libraries/messages.inc.php:346 +#: libraries/messages.inc.php:342 msgid "Full Texts" msgstr "Full Texts" -#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:739 +#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:735 msgid "Relational key" msgstr "Relational key" -#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:738 +#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:734 msgid "Relational display field" msgstr "Relational display field" -#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:872 +#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:868 msgid "Show binary contents" msgstr "ორობითი შიგთავსის ჩვენება" -#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:873 +#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:869 msgid "Show BLOB contents" msgstr "Show BLOB contents" -#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:871 +#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:867 #, fuzzy msgid "Show binary contents as HEX" msgstr "ორობითი შიგთავსის ჩვენება" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:375 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:371 #: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320 msgid "Hide" msgstr "დამალვა" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:508 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:504 #: libraries/tbl_properties.inc.php:144 transformation_overview.php:47 msgid "Browser transformation" msgstr "ინფორმაცია ბრაუზერის შესახებ" #: libraries/display_tbl.lib.php:1126 libraries/display_tbl.lib.php:1130 -#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:308 +#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:304 msgid "Execute bookmarked query" msgstr "ჩანიშნული მოთხოვნის გაშვება" #: libraries/display_tbl.lib.php:1145 libraries/display_tbl.lib.php:1157 -#: libraries/messages.inc.php:244 +#: libraries/messages.inc.php:240 msgid "The row has been deleted" msgstr "სტრიქონი წაიშალა" #: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056 -#: libraries/messages.inc.php:460 server_processlist.php:71 +#: libraries/messages.inc.php:456 server_processlist.php:71 #: tbl_row_action.php:64 msgid "Kill" msgstr "Kill" -#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:849 +#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:845 msgid "in query" msgstr "მოთხოვნაში" -#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:881 +#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:877 msgid "Showing rows" msgstr "Showing rows" -#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1113 +#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1109 msgid "total" msgstr "სულ" -#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:727 +#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:723 #: sql.php:524 #, php-format msgid "Query took %01.4f sec" msgstr "მოთხოვნას დასჭირდა %01.4f წმ" -#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:135 +#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:131 #: 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:471 msgid "Change" msgstr "შეცვლა" -#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:724 +#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:720 msgid "Query results operations" msgstr "Query results operations" -#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:671 +#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:667 msgid "Print view (with full texts)" msgstr "ხედის ამობეჭდვა (სრული ტექსტებით)" -#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:482 +#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:478 msgid "Link not found" msgstr "ბმული ვერ მოიძებნა" -#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1224 +#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1220 #: main.php:228 msgid "Version information" msgstr "ინფორმაცია ვერსიის შესახებ" -#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:423 +#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:419 msgid "Data home directory" msgstr "Data home directory" -#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:424 +#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:420 msgid "The common part of the directory path for all InnoDB data files." msgstr "The common part of the directory path for all InnoDB data files." -#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:422 +#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:418 msgid "Data files" msgstr "მონაცემთა ფაილები" -#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:418 +#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:414 msgid "Autoextend increment" msgstr "Autoextend increment" -#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:419 +#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:415 msgid "" " The increment size for extending the size of an autoextending tablespace " "when it becomes full." @@ -2480,11 +2490,11 @@ msgstr "" " The increment size for extending the size of an autoextending tablespace " "when it becomes full." -#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:420 +#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:416 msgid "Buffer pool size" msgstr "Buffer pool size" -#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:421 +#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:417 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." @@ -2492,87 +2502,87 @@ msgstr "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." -#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:112 +#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:108 msgid "Buffer Pool" msgstr "Buffer Pool" -#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:426 +#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:422 #: server_status.php:306 msgid "InnoDB Status" msgstr "InnoDB-ის მდგომარეობა" -#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:113 +#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:109 msgid "Buffer Pool Usage" msgstr "Buffer Pool Usage" -#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1114 +#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1110 #: server_databases.php:137 server_databases.php:305 server_status.php:414 #: server_status.php:475 server_status.php:496 tbl_printview.php:351 #: tbl_structure.php:697 msgid "Total" msgstr "სულ" -#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:425 +#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:421 msgid "pages" msgstr "pages" -#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:343 +#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:339 msgid "Free pages" msgstr "Free pages" -#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:259 +#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:255 msgid "Dirty pages" msgstr "Dirty pages" -#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:230 +#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:226 msgid "Pages containing data" msgstr "Pages containing data" -#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:598 +#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:594 msgid "Pages to be flushed" msgstr "Pages to be flushed" -#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:119 +#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:115 msgid "Busy pages" msgstr "Busy pages" -#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:467 +#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:463 msgid "Latched pages" msgstr "Latched pages" -#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:111 +#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:107 msgid "Buffer Pool Activity" msgstr "Buffer Pool Activity" -#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:731 +#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:727 msgid "Read requests" msgstr "მოთხოვნების წაკითხვა" -#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1244 +#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1240 msgid "Write requests" msgstr "Write requests" -#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:115 +#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:111 msgid "Read misses" msgstr "Read misses" -#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:117 +#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:113 msgid "Write waits" msgstr "Write waits" -#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:114 +#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:110 msgid "Read misses in %" msgstr "Read misses in %" -#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:116 +#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:112 msgid "Write waits in %" msgstr "Write waits in %" -#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:522 +#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:518 msgid "Data pointer size" msgstr "Data pointer size" -#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:523 +#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:519 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." @@ -2580,11 +2590,11 @@ msgstr "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." -#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:528 +#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:524 msgid "Automatic recovery mode" msgstr "Automatic recovery mode" -#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:529 +#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:525 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." @@ -2592,11 +2602,11 @@ msgstr "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." -#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:527 +#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:523 msgid "Maximum size for temporary sort files" msgstr "Maximum size for temporary sort files" -#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:526 +#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:522 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " @@ -2606,11 +2616,11 @@ msgstr "" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " "INFILE)." -#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:525 +#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:521 msgid "Maximum size for temporary files on index creation" msgstr "Maximum size for temporary files on index creation" -#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:524 +#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:520 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " @@ -2620,11 +2630,11 @@ msgstr "" "than using the key cache by the amount specified here, prefer the key cache " "method." -#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:531 +#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:527 msgid "Repair threads" msgstr "Repair threads" -#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:530 +#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:526 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." @@ -2632,11 +2642,11 @@ msgstr "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." -#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:533 +#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:529 msgid "Sort buffer size" msgstr "Sort buffer size" -#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:532 +#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:528 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." @@ -2644,11 +2654,11 @@ msgstr "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." -#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:620 +#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:616 msgid "Index cache size" msgstr "Index cache size" -#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:619 +#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:615 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." @@ -2656,11 +2666,11 @@ msgstr "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." -#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:630 +#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:626 msgid "Record cache size" msgstr "Record cache size" -#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:629 +#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:625 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " @@ -2670,11 +2680,11 @@ msgstr "" "table data. The default value is 32MB. This memory is used to cache changes " "to the handle data (.xtd) and row pointer (.xtr) files." -#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:624 +#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:620 msgid "Log cache size" msgstr "Log cache size" -#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:623 +#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:619 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." @@ -2682,11 +2692,11 @@ msgstr "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." -#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:628 +#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:624 msgid "Log file threshold" msgstr "Log file threshold" -#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:627 +#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:623 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." @@ -2694,11 +2704,11 @@ msgstr "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." -#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:634 +#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:630 msgid "Transaction buffer size" msgstr "ტრანზაქციის ბუფერის ზომა" -#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:633 +#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:629 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." @@ -2706,11 +2716,11 @@ msgstr "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." -#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:611 +#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:607 msgid "Checkpoint frequency" msgstr "Checkpoint frequency" -#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:612 +#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:608 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." @@ -2718,11 +2728,11 @@ msgstr "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." -#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:615 +#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:611 msgid "Data log threshold" msgstr "Data log threshold" -#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:616 +#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:612 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -2734,11 +2744,11 @@ msgstr "" "value of this variable can be increased to increase the total amount of data " "that can be stored in the database." -#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:618 +#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:614 msgid "Garbage threshold" msgstr "Garbage threshold" -#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:617 +#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:613 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." @@ -2746,11 +2756,11 @@ msgstr "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." -#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:622 +#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:618 msgid "Log buffer size" msgstr "Log buffer size" -#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:621 +#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:617 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " @@ -2760,27 +2770,27 @@ msgstr "" "The engine allocates one buffer per thread, but only if the thread is " "required to write a data log." -#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:613 +#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:609 msgid "Data file grow size" msgstr "Data file grow size" -#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:614 +#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:610 msgid "The grow size of the handle data (.xtd) files." msgstr "The grow size of the handle data (.xtd) files." -#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:632 +#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:628 msgid "Row file grow size" msgstr "Row file grow size" -#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:631 +#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:627 msgid "The grow size of the row pointer (.xtr) files." msgstr "The grow size of the row pointer (.xtr) files." -#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:626 +#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:622 msgid "Log file count" msgstr "Log file count" -#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:625 +#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:621 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -2794,19 +2804,19 @@ msgstr "" #: libraries/export/htmlword.php:132 libraries/export/odt.php:168 #: libraries/export/sql.php:881 libraries/export/texytext.php:130 -#: libraries/messages.inc.php:275 +#: libraries/messages.inc.php:271 msgid "Dumping data for table" msgstr "Dumping data for table" #: libraries/export/htmlword.php:185 libraries/export/odt.php:238 #: libraries/export/sql.php:785 libraries/export/texytext.php:177 -#: libraries/messages.inc.php:1086 +#: libraries/messages.inc.php:1082 msgid "Table structure for table" msgstr "Table structure for table" #: libraries/export/latex.php:125 libraries/export/sql.php:232 #: libraries/export/xml.php:102 libraries/header_printview.inc.php:57 -#: libraries/messages.inc.php:381 libraries/replication_gui.lib.php:63 +#: libraries/messages.inc.php:377 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:170 libraries/replication_gui.lib.php:265 #: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325 #: server_privileges.php:692 server_privileges.php:695 @@ -2818,187 +2828,187 @@ msgstr "ჰოსტი" #: libraries/export/latex.php:130 libraries/export/sql.php:233 #: libraries/export/xml.php:107 libraries/header_printview.inc.php:59 -#: libraries/messages.inc.php:354 +#: libraries/messages.inc.php:350 msgid "Generation Time" msgstr "დაგენერირების დრო" #: libraries/export/latex.php:131 libraries/export/sql.php:235 -#: libraries/export/xml.php:108 libraries/messages.inc.php:864 main.php:186 +#: libraries/export/xml.php:108 libraries/messages.inc.php:860 main.php:186 msgid "Server version" msgstr "სერვერის ვერსია" #: libraries/export/latex.php:132 libraries/export/sql.php:236 -#: libraries/export/xml.php:109 libraries/messages.inc.php:651 +#: libraries/export/xml.php:109 libraries/messages.inc.php:647 msgid "PHP Version" msgstr "PHP-ის ვერსია" #: libraries/export/latex.php:201 libraries/export/sql.php:868 -#: libraries/messages.inc.php:226 server_databases.php:127 +#: libraries/messages.inc.php:222 server_databases.php:127 #: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317 #: tbl_structure.php:666 msgid "Data" msgstr "მონაცემები" -#: libraries/export/odt.php:318 libraries/messages.inc.php:506 +#: libraries/export/odt.php:318 libraries/messages.inc.php:502 #: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "MIME-ის ტიპი" -#: libraries/export/sql.php:387 libraries/messages.inc.php:711 +#: libraries/export/sql.php:387 libraries/messages.inc.php:707 msgid "Procedures" msgstr "პროცედურები" -#: libraries/export/sql.php:401 libraries/messages.inc.php:348 +#: libraries/export/sql.php:401 libraries/messages.inc.php:344 msgid "Functions" msgstr "ფუნქციები" -#: libraries/export/sql.php:618 libraries/messages.inc.php:174 +#: libraries/export/sql.php:618 libraries/messages.inc.php:170 msgid "Constraints for dumped tables" msgstr "Constraints for dumped tables" -#: libraries/export/sql.php:627 libraries/messages.inc.php:175 +#: libraries/export/sql.php:627 libraries/messages.inc.php:171 msgid "Constraints for table" msgstr "Constraints for table" -#: libraries/export/sql.php:727 libraries/messages.inc.php:512 +#: libraries/export/sql.php:727 libraries/messages.inc.php:508 msgid "MIME TYPES FOR TABLE" msgstr "MIME TYPES FOR TABLE" -#: libraries/export/sql.php:739 libraries/messages.inc.php:743 +#: libraries/export/sql.php:739 libraries/messages.inc.php:739 msgid "RELATIONS FOR TABLE" msgstr "RELATIONS FOR TABLE" -#: libraries/export/sql.php:796 libraries/messages.inc.php:1178 +#: libraries/export/sql.php:796 libraries/messages.inc.php:1174 #: libraries/tbl_triggers.lib.php:19 msgid "Triggers" msgstr "ტრიგერები" -#: libraries/export/sql.php:808 libraries/messages.inc.php:1046 +#: libraries/export/sql.php:808 libraries/messages.inc.php:1042 msgid "Structure for view" msgstr "სტრუქტურა ხედისათვის" -#: libraries/export/sql.php:817 libraries/messages.inc.php:1029 +#: libraries/export/sql.php:817 libraries/messages.inc.php:1025 msgid "Stand-in structure for view" msgstr "Stand-in structure for view" #: libraries/footer.inc.php:184 libraries/footer.inc.php:195 -#: libraries/footer.inc.php:198 libraries/messages.inc.php:586 +#: libraries/footer.inc.php:198 libraries/messages.inc.php:582 msgid "Open new phpMyAdmin window" msgstr "phpMyAdmin-ის ახალი ფანჯრის გახსნა" -#: libraries/header.inc.php:115 libraries/messages.inc.php:542 +#: libraries/header.inc.php:115 libraries/messages.inc.php:538 #, fuzzy msgid "New table" msgstr "ცხრილები არაა" #: libraries/header_printview.inc.php:50 libraries/header_printview.inc.php:55 -#: libraries/messages.inc.php:1024 +#: libraries/messages.inc.php:1020 msgid "SQL result" msgstr "SQL-ის შედეგი" -#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:350 +#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:346 msgid "Generated by" msgstr "Generated by" #: libraries/header_printview.inc.php:63 libraries/import.lib.php:145 -#: libraries/messages.inc.php:820 navigation.php:652 navigation.php:674 +#: libraries/messages.inc.php:816 navigation.php:652 navigation.php:674 #: server_databases.php:122 tbl_printview.php:394 tbl_structure.php:366 #: tbl_structure.php:778 msgid "Rows" msgstr "სტრიქონები" -#: libraries/import.lib.php:150 libraries/messages.inc.php:285 sql.php:520 +#: libraries/import.lib.php:150 libraries/messages.inc.php:281 sql.php:520 #: tbl_change.php:181 tbl_get_field.php:35 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL returned an empty result set (i.e. zero rows)." -#: libraries/import.lib.php:1078 libraries/messages.inc.php:399 +#: libraries/import.lib.php:1078 libraries/messages.inc.php:395 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1079 libraries/messages.inc.php:400 +#: libraries/import.lib.php:1079 libraries/messages.inc.php:396 msgid "View a structure`s contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1080 libraries/messages.inc.php:401 +#: libraries/import.lib.php:1080 libraries/messages.inc.php:397 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1081 libraries/messages.inc.php:402 +#: libraries/import.lib.php:1081 libraries/messages.inc.php:398 msgid "Edit its structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1084 libraries/messages.inc.php:362 +#: libraries/import.lib.php:1084 libraries/messages.inc.php:358 #, fuzzy msgid "Go to database" msgstr "მონაცემთა ბაზები არაა" #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:869 +#: libraries/messages.inc.php:865 msgid "settings" msgstr "" -#: libraries/import.lib.php:1106 libraries/messages.inc.php:363 +#: libraries/import.lib.php:1106 libraries/messages.inc.php:359 #, fuzzy msgid "Go to table" msgstr "მონაცემთა ბაზები არაა" -#: libraries/import.lib.php:1109 libraries/messages.inc.php:1047 +#: libraries/import.lib.php:1109 libraries/messages.inc.php:1043 #, fuzzy msgid "structure" msgstr "სტრუქტურა" -#: libraries/import.lib.php:1115 libraries/messages.inc.php:364 +#: libraries/import.lib.php:1115 libraries/messages.inc.php:360 msgid "Go to view" msgstr "" #: libraries/import/csv.php:58 libraries/import/csv.php:70 #: libraries/import/csv.php:74 libraries/import/csv.php:78 -#: libraries/messages.inc.php:442 +#: libraries/messages.inc.php:438 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "Invalid parameter for CSV import: %s" -#: libraries/import/csv.php:59 libraries/messages.inc.php:323 +#: libraries/import/csv.php:59 libraries/messages.inc.php:319 msgid "Fields terminated by" msgstr "Fields terminated by" -#: libraries/import/csv.php:71 libraries/messages.inc.php:320 +#: libraries/import/csv.php:71 libraries/messages.inc.php:316 msgid "Fields enclosed by" msgstr "Fields enclosed by" -#: libraries/import/csv.php:75 libraries/messages.inc.php:321 +#: libraries/import/csv.php:75 libraries/messages.inc.php:317 msgid "Fields escaped by" msgstr "Fields escaped by" -#: libraries/import/csv.php:79 libraries/messages.inc.php:481 +#: libraries/import/csv.php:79 libraries/messages.inc.php:477 msgid "Lines terminated by" msgstr "Lines terminated by" -#: libraries/import/csv.php:119 libraries/messages.inc.php:439 +#: libraries/import/csv.php:119 libraries/messages.inc.php:435 #, php-format msgid "Invalid column (%s) specified!" msgstr "Invalid column (%s) specified!" #: libraries/import/csv.php:177 libraries/import/csv.php:424 -#: libraries/messages.inc.php:441 +#: libraries/messages.inc.php:437 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "Invalid format of CSV input on line %d." -#: libraries/import/csv.php:312 libraries/messages.inc.php:440 +#: libraries/import/csv.php:312 libraries/messages.inc.php:436 #, php-format msgid "Invalid field count in CSV input on line %d." msgstr "Invalid field count in CSV input on line %d." -#: libraries/import/ldi.php:55 libraries/messages.inc.php:446 +#: libraries/import/ldi.php:55 libraries/messages.inc.php:442 msgid "This plugin does not support compressed imports!" msgstr "This plugin does not support compressed imports!" #: libraries/import/xml.php:74 libraries/import/xml.php:130 -#: libraries/messages.inc.php:1247 +#: libraries/messages.inc.php:1243 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -3029,327 +3039,317 @@ msgstr "" msgid "ltr" msgstr "ltr" -#. l10n: Thousands separator -#: libraries/messages.inc.php:21 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: libraries/messages.inc.php:23 -msgid "." -msgstr "." - -#: libraries/messages.inc.php:25 server_status.php:461 +#: libraries/messages.inc.php:21 server_status.php:461 msgid "Aborted" msgstr "შეწყვეტილია" -#: libraries/messages.inc.php:28 main.php:68 +#: libraries/messages.inc.php:24 main.php:68 msgid "Actions" msgstr "მოქმედებები" -#: libraries/messages.inc.php:34 libraries/tbl_properties.inc.php:780 +#: libraries/messages.inc.php:30 libraries/tbl_properties.inc.php:780 #: tbl_structure.php:543 #, php-format msgid "Add %s field(s)" msgstr "%s ველის დამატება" -#: libraries/messages.inc.php:35 +#: libraries/messages.inc.php:31 msgid "Add custom comment into header (\\n splits lines)" msgstr "Add custom comment into header (\\n splits lines)" -#: libraries/messages.inc.php:36 +#: libraries/messages.inc.php:32 msgid "Add into comments" msgstr "კომენტარებში დამატება" -#: libraries/messages.inc.php:37 tbl_structure.php:541 +#: libraries/messages.inc.php:33 tbl_structure.php:541 msgid "Add new field" msgstr "ახალი ველის დამატება" -#: libraries/messages.inc.php:38 server_privileges.php:1886 +#: libraries/messages.inc.php:34 server_privileges.php:1886 msgid "Add privileges on the following database" msgstr "პრივილეგიების დამატება შემდეგი მონაცემთა ბაზისათვის" -#: libraries/messages.inc.php:39 server_privileges.php:1907 +#: libraries/messages.inc.php:35 server_privileges.php:1907 msgid "Add privileges on the following table" msgstr "პრივილეგიების დამატება შემდეგი ცხრილისათვის" -#: libraries/messages.inc.php:40 tbl_select.php:288 +#: libraries/messages.inc.php:36 tbl_select.php:288 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Add search conditions (body of the \"where\" clause):" -#: libraries/messages.inc.php:41 tbl_indexes.php:251 +#: libraries/messages.inc.php:37 tbl_indexes.php:251 #, php-format msgid "Add to index  %s column(s)" msgstr "Add to index  %s column(s)" -#: libraries/messages.inc.php:42 server_privileges.php:1570 +#: libraries/messages.inc.php:38 server_privileges.php:1570 #: server_privileges.php:1594 server_privileges.php:1988 #: server_privileges.php:2177 msgid "Add a new User" msgstr "ახალი მომხმარებლის დამატება" -#: libraries/messages.inc.php:43 server_privileges.php:931 +#: libraries/messages.inc.php:39 server_privileges.php:931 msgid "You have added a new user." msgstr "თქვენ დაამატეთ ახალი მომხმარებელი." -#: libraries/messages.inc.php:44 server_privileges.php:571 +#: libraries/messages.inc.php:40 server_privileges.php:571 msgid "Administration" msgstr "ადმინისტრირება" -#: libraries/messages.inc.php:45 tbl_structure.php:557 +#: libraries/messages.inc.php:41 tbl_structure.php:557 #, php-format msgid "After %s" msgstr "After %s" -#: libraries/messages.inc.php:46 tbl_change.php:1147 +#: libraries/messages.inc.php:42 tbl_change.php:1147 msgid "Go back to previous page" msgstr "წინა გვერდზე დაბრუნება" -#: libraries/messages.inc.php:47 tbl_change.php:1148 +#: libraries/messages.inc.php:43 tbl_change.php:1148 msgid "Insert another new row" msgstr "სხვა ახალი სტრიქონის დამატება" -#: libraries/messages.inc.php:48 tbl_change.php:1160 +#: libraries/messages.inc.php:44 tbl_change.php:1160 msgid "Edit next row" msgstr "შემდეგი სტრიქონის რედაქტირება" -#: libraries/messages.inc.php:49 tbl_change.php:1152 +#: libraries/messages.inc.php:45 tbl_change.php:1152 msgid "Go back to this page" msgstr "ამ გვერდზე დაბრუნება" -#: libraries/messages.inc.php:50 querywindow.php:115 +#: libraries/messages.inc.php:46 querywindow.php:115 msgid "All" msgstr "ყველა" -#: libraries/messages.inc.php:53 tbl_operations.php:249 +#: libraries/messages.inc.php:49 tbl_operations.php:249 msgid "Alter table order by" msgstr "Alter table order by" -#: libraries/messages.inc.php:54 tbl_operations.php:660 +#: libraries/messages.inc.php:50 tbl_operations.php:660 msgid "Analyze" msgstr "Analyze" -#: libraries/messages.inc.php:57 +#: libraries/messages.inc.php:53 #, fuzzy msgid "and" msgstr "და" -#: libraries/messages.inc.php:59 pmd_general.php:87 +#: libraries/messages.inc.php:55 pmd_general.php:87 msgid "Angular links" msgstr "Angular links" -#: libraries/messages.inc.php:60 tbl_structure.php:401 tbl_structure.php:415 +#: libraries/messages.inc.php:56 tbl_structure.php:401 tbl_structure.php:415 #: tbl_structure.php:429 #, php-format msgid "An index has been added on %s" msgstr "An index has been added on %s" -#: libraries/messages.inc.php:61 server_privileges.php:1521 +#: libraries/messages.inc.php:57 server_privileges.php:1521 #: server_privileges.php:2123 msgid "Any" msgstr "ნებისმიერი" -#: libraries/messages.inc.php:62 libraries/replication_gui.lib.php:298 +#: libraries/messages.inc.php:58 libraries/replication_gui.lib.php:298 #: server_privileges.php:725 msgid "Any host" msgstr "ნებისმიერი ჰოსტი" -#: libraries/messages.inc.php:63 libraries/replication_gui.lib.php:250 +#: libraries/messages.inc.php:59 libraries/replication_gui.lib.php:250 #: server_privileges.php:677 msgid "Any user" msgstr "ნებისმიერი მომხმარებელი" -#: libraries/messages.inc.php:64 server_synchronize.php:449 +#: libraries/messages.inc.php:60 server_synchronize.php:449 #: server_synchronize.php:894 msgid "Apply Selected Changes" msgstr "" -#: libraries/messages.inc.php:66 tbl_structure.php:386 +#: libraries/messages.inc.php:62 tbl_structure.php:386 #, php-format msgid "A primary key has been added on %s" msgstr "A primary key has been added on %s" -#: libraries/messages.inc.php:67 libraries/mysql_charsets.lib.php:368 +#: libraries/messages.inc.php:63 libraries/mysql_charsets.lib.php:368 msgid "Arabic" msgstr "არაბული" -#: libraries/messages.inc.php:68 libraries/mysql_charsets.lib.php:359 +#: libraries/messages.inc.php:64 libraries/mysql_charsets.lib.php:359 msgid "Armenian" msgstr "სომხური" -#: libraries/messages.inc.php:70 libraries/tbl_properties.inc.php:394 +#: libraries/messages.inc.php:66 libraries/tbl_properties.inc.php:394 msgid "As defined:" msgstr "As defined:" -#: libraries/messages.inc.php:71 tbl_structure.php:556 +#: libraries/messages.inc.php:67 tbl_structure.php:556 msgid "At Beginning of Table" msgstr "ცხრილის დასაწყისში" -#: libraries/messages.inc.php:72 tbl_structure.php:555 +#: libraries/messages.inc.php:68 tbl_structure.php:555 msgid "At End of Table" msgstr "ცხრილის ბოლოშო" -#: libraries/messages.inc.php:73 libraries/tbl_properties.inc.php:108 +#: libraries/messages.inc.php:69 libraries/tbl_properties.inc.php:108 #: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:144 #: tbl_structure.php:180 msgid "Attributes" msgstr "ატრიბუტები" -#: libraries/messages.inc.php:74 pdf_pages.php:303 pdf_pages.php:306 +#: libraries/messages.inc.php:70 pdf_pages.php:303 pdf_pages.php:306 msgid "Automatic layout" msgstr "ავტომატური განლაგება" -#: libraries/messages.inc.php:77 libraries/mysql_charsets.lib.php:354 +#: libraries/messages.inc.php:73 libraries/mysql_charsets.lib.php:354 msgid "Baltic" msgstr "ბალტიური" -#: libraries/messages.inc.php:78 libraries/sqlparser.lib.php:175 +#: libraries/messages.inc.php:74 libraries/sqlparser.lib.php:175 msgid "BEGIN CUT" msgstr "BEGIN CUT" -#: libraries/messages.inc.php:79 libraries/sqlparser.lib.php:179 +#: libraries/messages.inc.php:75 libraries/sqlparser.lib.php:179 msgid "BEGIN RAW" msgstr "BEGIN RAW" -#: libraries/messages.inc.php:80 libraries/mysql_charsets.lib.php:201 +#: libraries/messages.inc.php:76 libraries/mysql_charsets.lib.php:201 #: libraries/mysql_charsets.lib.php:402 tbl_change.php:518 msgid "Binary" msgstr "ბინარული" -#: libraries/messages.inc.php:81 tbl_change.php:894 +#: libraries/messages.inc.php:77 tbl_change.php:894 msgid "Binary - do not edit" msgstr "Binary - do not edit" -#: libraries/messages.inc.php:82 libraries/server_links.inc.php:76 +#: libraries/messages.inc.php:78 libraries/server_links.inc.php:76 #: server_binlog.php:110 server_status.php:253 test/theme.php:121 msgid "Binary log" msgstr "ბინარული ჟურნალი" -#: libraries/messages.inc.php:83 server_binlog.php:217 +#: libraries/messages.inc.php:79 server_binlog.php:217 msgid "Event type" msgstr "მოვლენის ტიპი" -#: libraries/messages.inc.php:84 server_binlog.php:220 +#: libraries/messages.inc.php:80 server_binlog.php:220 msgid "Information" msgstr "ინფორმაცია" -#: libraries/messages.inc.php:85 server_binlog.php:215 +#: libraries/messages.inc.php:81 server_binlog.php:215 msgid "Log name" msgstr "ჟურნალის სახელი" -#: libraries/messages.inc.php:86 server_binlog.php:219 +#: libraries/messages.inc.php:82 server_binlog.php:219 msgid "Original position" msgstr "საწყისი მდებარეობა" -#: libraries/messages.inc.php:87 server_binlog.php:216 +#: libraries/messages.inc.php:83 server_binlog.php:216 msgid "Position" msgstr "მდებარეობა" -#: libraries/messages.inc.php:88 libraries/replication_gui.lib.php:169 +#: libraries/messages.inc.php:84 libraries/replication_gui.lib.php:169 #: server_binlog.php:218 msgid "Server ID" msgstr "სერვერის ID" -#: libraries/messages.inc.php:92 +#: libraries/messages.inc.php:88 #, fuzzy msgctxt "$strBLOBRepositoryDisabled" msgid "Disabled" msgstr "გათიშულია" -#: libraries/messages.inc.php:95 +#: libraries/messages.inc.php:91 #, fuzzy msgctxt "$strBLOBRepositoryEnabled" msgid "Enabled" msgstr "ჩართულია" -#: libraries/messages.inc.php:97 tbl_change.php:888 +#: libraries/messages.inc.php:93 tbl_change.php:888 msgid "Remove BLOB Repository Reference" msgstr "Remove BLOB Repository Reference" -#: libraries/messages.inc.php:98 +#: libraries/messages.inc.php:94 #, fuzzy msgctxt "$strBLOBRepositoryRepair" msgid "Repair" msgstr "აღდგენა" -#: libraries/messages.inc.php:99 tbl_change.php:987 +#: libraries/messages.inc.php:95 tbl_change.php:987 msgid "Upload to BLOB repository" msgstr "Upload to BLOB repository" -#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:359 +#: libraries/messages.inc.php:96 libraries/sql_query_form.lib.php:359 #: sql.php:677 msgid "Let every user access this bookmark" msgstr "Let every user access this bookmark" -#: libraries/messages.inc.php:103 sql.php:671 +#: libraries/messages.inc.php:99 sql.php:671 msgid "Label" msgstr "Label" -#: libraries/messages.inc.php:104 libraries/sql_query_form.lib.php:433 +#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:433 msgid "Bookmarked SQL query" msgstr "Bookmarked SQL query" -#: libraries/messages.inc.php:105 libraries/sql_query_form.lib.php:365 +#: libraries/messages.inc.php:101 libraries/sql_query_form.lib.php:365 msgid "Replace existing bookmark of same name" msgstr "Replace existing bookmark of same name" -#: libraries/messages.inc.php:106 libraries/sql_query_form.lib.php:352 +#: libraries/messages.inc.php:102 libraries/sql_query_form.lib.php:352 #: sql.php:665 sql.php:666 sql.php:683 msgid "Bookmark this SQL query" msgstr "Bookmark this SQL query" -#: libraries/messages.inc.php:107 libraries/sql_query_form.lib.php:466 +#: libraries/messages.inc.php:103 libraries/sql_query_form.lib.php:466 msgid "View only" msgstr "View only" -#: libraries/messages.inc.php:109 tbl_structure.php:161 +#: libraries/messages.inc.php:105 tbl_structure.php:161 msgid "Browse distinct values" msgstr "Browse distinct values" -#: libraries/messages.inc.php:110 tbl_change.php:252 tbl_select.php:27 +#: libraries/messages.inc.php:106 tbl_change.php:252 tbl_select.php:27 #: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34 msgid "Browse foreign values" msgstr "Browse foreign values" -#: libraries/messages.inc.php:118 libraries/mysql_charsets.lib.php:213 +#: libraries/messages.inc.php:114 libraries/mysql_charsets.lib.php:213 msgid "Bulgarian" msgstr "ბულგარული" -#: libraries/messages.inc.php:120 +#: libraries/messages.inc.php:116 msgid "\"bzipped\"" msgstr "\"bzip-ით დაარქივებული\"" -#: libraries/messages.inc.php:122 +#: libraries/messages.inc.php:118 msgid "Calendar" msgstr "კალენდარი" -#: libraries/messages.inc.php:129 tbl_indexes.php:75 +#: libraries/messages.inc.php:125 tbl_indexes.php:75 msgid "Can't rename index to PRIMARY!" msgstr "Can't rename index to PRIMARY!" -#: libraries/messages.inc.php:132 libraries/mysql_charsets.lib.php:223 +#: libraries/messages.inc.php:128 libraries/mysql_charsets.lib.php:223 #: libraries/mysql_charsets.lib.php:409 msgid "case-insensitive" msgstr "case-insensitive" -#: libraries/messages.inc.php:133 libraries/mysql_charsets.lib.php:226 +#: libraries/messages.inc.php:129 libraries/mysql_charsets.lib.php:226 #: libraries/mysql_charsets.lib.php:411 msgid "case-sensitive" msgstr "case-sensitive" -#: libraries/messages.inc.php:134 libraries/mysql_charsets.lib.php:332 +#: libraries/messages.inc.php:130 libraries/mysql_charsets.lib.php:332 msgid "Central European" msgstr "Central European" -#: libraries/messages.inc.php:136 server_privileges.php:1969 +#: libraries/messages.inc.php:132 server_privileges.php:1969 msgid "... keep the old one." msgstr "... ძველის შენახვა." -#: libraries/messages.inc.php:137 server_privileges.php:1967 +#: libraries/messages.inc.php:133 server_privileges.php:1967 msgid "Create a new user with the same privileges and ..." msgstr "იგივე პრივილეგიების მქონე ახალი მომხმარებლის შექმნა და ..." -#: libraries/messages.inc.php:138 server_privileges.php:1972 +#: libraries/messages.inc.php:134 server_privileges.php:1972 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -3357,251 +3357,251 @@ msgstr "" " ... ძველი მომხმარებლის მომხმარებლების სიიდან წაშლა და შემდეგ პრივილეგიების " "გადატვირთვა." -#: libraries/messages.inc.php:139 server_privileges.php:1970 +#: libraries/messages.inc.php:135 server_privileges.php:1970 msgid " ... delete the old one from the user tables." msgstr " ... ძველი მომხმარებლის მომხმარებლების ცხრილიდან წაშლა." -#: libraries/messages.inc.php:140 server_privileges.php:1971 +#: libraries/messages.inc.php:136 server_privileges.php:1971 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "" " ... revoke all active privileges from the old one and delete it afterwards." -#: libraries/messages.inc.php:141 server_privileges.php:1964 +#: libraries/messages.inc.php:137 server_privileges.php:1964 msgid "Change Login Information / Copy User" msgstr "Change Login Information / Copy User" -#: libraries/messages.inc.php:144 libraries/mysql_charsets.lib.php:107 +#: libraries/messages.inc.php:140 libraries/mysql_charsets.lib.php:107 msgid "Charset" msgstr "სიმბოლოთა ნაკრები" -#: libraries/messages.inc.php:146 server_collations.php:40 +#: libraries/messages.inc.php:142 server_collations.php:40 msgid "Character Sets and Collations" msgstr "სიმბოლოთა ნაკრებები და კოლაციები" -#: libraries/messages.inc.php:147 libraries/server_links.inc.php:57 +#: libraries/messages.inc.php:143 libraries/server_links.inc.php:57 #: test/theme.php:109 msgid "Charsets" msgstr "სიმბოლოთა ნაკრებები" -#: libraries/messages.inc.php:149 tbl_operations.php:661 +#: libraries/messages.inc.php:145 tbl_operations.php:661 msgid "Check" msgstr "შემოწმება" -#: libraries/messages.inc.php:151 server_databases.php:293 +#: libraries/messages.inc.php:147 server_databases.php:293 #: server_databases.php:294 msgid "Check Privileges" msgstr "პრივილეგიების შემოწმება" -#: libraries/messages.inc.php:152 server_databases.php:289 +#: libraries/messages.inc.php:148 server_databases.php:289 #, php-format msgid "Check privileges for database "%s"." msgstr "Check privileges for database "%s"." -#: libraries/messages.inc.php:154 pdf_pages.php:261 +#: libraries/messages.inc.php:150 pdf_pages.php:261 msgid "Please choose a page to edit" msgstr "გთხოვთ აირჩიოთ დასარედაქტირებელი გვერდი" -#: libraries/messages.inc.php:157 +#: libraries/messages.inc.php:153 msgid "Displaying Column Comments" msgstr "Displaying Column Comments" -#: libraries/messages.inc.php:159 pdf_pages.php:483 view_create.php:148 +#: libraries/messages.inc.php:155 pdf_pages.php:483 view_create.php:148 msgid "Column names" msgstr "სვეტების სახელები" -#: libraries/messages.inc.php:160 server_privileges.php:1685 +#: libraries/messages.inc.php:156 server_privileges.php:1685 msgid "Column-specific privileges" msgstr "Column-specific privileges" -#: libraries/messages.inc.php:164 +#: libraries/messages.inc.php:160 msgid "MySQL 4.0 compatible" msgstr "MySQL 4.0-თან თავსებადი" -#: libraries/messages.inc.php:165 +#: libraries/messages.inc.php:161 msgid "Complete inserts" msgstr "სრული ჩასმები" -#: libraries/messages.inc.php:168 +#: libraries/messages.inc.php:164 #, php-format msgid "Could not load default configuration from: \"%1$s\"" msgstr "Could not load default configuration from: \"%1$s\"" -#: libraries/messages.inc.php:169 main.php:306 +#: libraries/messages.inc.php:165 main.php:306 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: libraries/messages.inc.php:171 pdf_schema.php:672 +#: libraries/messages.inc.php:167 pdf_schema.php:672 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Please configure the coordinates for table %s" -#: libraries/messages.inc.php:173 server_status.php:433 +#: libraries/messages.inc.php:169 server_status.php:433 msgid "Connections" msgstr "კავშირები" -#: libraries/messages.inc.php:179 tbl_operations.php:509 +#: libraries/messages.inc.php:175 tbl_operations.php:509 msgid "Copy table to (database.table):" msgstr "Copy table to (database.table):" -#: libraries/messages.inc.php:180 tbl_move_copy.php:58 +#: libraries/messages.inc.php:176 tbl_move_copy.php:58 #, php-format msgid "Table %s has been copied to %s." msgstr "Table %s has been copied to %s." -#: libraries/messages.inc.php:181 tbl_move_copy.php:48 +#: libraries/messages.inc.php:177 tbl_move_copy.php:48 msgid "Can't copy table to same one!" msgstr "Can't copy table to same one!" -#: libraries/messages.inc.php:182 server_synchronize.php:94 +#: libraries/messages.inc.php:178 server_synchronize.php:94 #, fuzzy msgid "Could not connect to the source" msgstr "MySQL სერვერთან დაკავშირება ვერ მოხერხდა" -#: libraries/messages.inc.php:183 server_synchronize.php:97 +#: libraries/messages.inc.php:179 server_synchronize.php:97 #, fuzzy msgid "Could not connect to the target" msgstr "MySQL სერვერთან დაკავშირება ვერ მოხერხდა" -#: libraries/messages.inc.php:184 server_processlist.php:24 +#: libraries/messages.inc.php:180 server_processlist.php:24 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." -#: libraries/messages.inc.php:187 +#: libraries/messages.inc.php:183 #, php-format msgid "Create an index on %s columns" msgstr "Create an index on %s columns" -#: libraries/messages.inc.php:188 tbl_indexes.php:160 +#: libraries/messages.inc.php:184 tbl_indexes.php:160 msgid "Create a new index" msgstr "ახალი ინდექსის შექმნა" -#: libraries/messages.inc.php:191 pdf_pages.php:297 pmd_pdf.php:114 +#: libraries/messages.inc.php:187 pdf_pages.php:297 pmd_pdf.php:114 msgid "Create a page" msgstr "ახალი გვერდის შექმნა" -#: libraries/messages.inc.php:192 +#: libraries/messages.inc.php:188 msgid "Creation of PDFs" msgstr "PDF-ების შექმნა" -#: libraries/messages.inc.php:193 pmd_general.php:74 pmd_general.php:306 +#: libraries/messages.inc.php:189 pmd_general.php:74 pmd_general.php:306 msgid "Create relation" msgstr "Create relation" -#: libraries/messages.inc.php:194 pmd_general.php:71 +#: libraries/messages.inc.php:190 pmd_general.php:71 #: server_synchronize.php:429 server_synchronize.php:872 msgid "Create table" msgstr "ცხრილის შექმნა" -#: libraries/messages.inc.php:195 +#: libraries/messages.inc.php:191 #, fuzzy msgctxt "$strCreateTableShort" msgid "Create table" msgstr "ცხრილის შექმნა" -#: libraries/messages.inc.php:196 server_privileges.php:1994 +#: libraries/messages.inc.php:192 server_privileges.php:1994 msgid "Database for user" msgstr "მონაცემთა ბაზა მომხმარებლისთვის" -#: libraries/messages.inc.php:197 server_privileges.php:1999 +#: libraries/messages.inc.php:193 server_privileges.php:1999 msgid "Create database with same name and grant all privileges" msgstr "" "იგივე სახელის მქონე მონაცემთა ბაზის შექმნა და ყველა პრივილეგიის მინიჭება" -#: libraries/messages.inc.php:198 +#: libraries/messages.inc.php:194 #, fuzzy msgctxt "$strCreateUserDatabaseNone" msgid "None" msgstr "არაა" -#: libraries/messages.inc.php:199 server_privileges.php:2003 +#: libraries/messages.inc.php:195 server_privileges.php:2003 #, php-format msgid "Grant all privileges on database "%s"" msgstr "ყველა პრივილეგიის მინიჭება მონაცემთა ბაზისთვის "%s"" -#: libraries/messages.inc.php:200 server_privileges.php:2000 +#: libraries/messages.inc.php:196 server_privileges.php:2000 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Grant all privileges on wildcard name (username\\_%)" -#: libraries/messages.inc.php:201 +#: libraries/messages.inc.php:197 msgid "Creation/Update/Check dates" msgstr "Creation/Update/Check dates" -#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:229 +#: libraries/messages.inc.php:199 libraries/mysql_charsets.lib.php:229 msgid "Croatian" msgstr "ხორვატული" -#: libraries/messages.inc.php:204 +#: libraries/messages.inc.php:200 msgid "CSV" msgstr "CSV" -#: libraries/messages.inc.php:205 libraries/server_synchronize.lib.php:1343 +#: libraries/messages.inc.php:201 libraries/server_synchronize.lib.php:1343 #: libraries/server_synchronize.lib.php:1369 msgid "Current server" msgstr "" -#: libraries/messages.inc.php:206 main.php:159 +#: libraries/messages.inc.php:202 main.php:159 msgid "Custom color" msgstr "Custom color" -#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:365 +#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:365 msgid "Cyrillic" msgstr "კირილიცა" -#: libraries/messages.inc.php:208 libraries/mysql_charsets.lib.php:232 +#: libraries/messages.inc.php:204 libraries/mysql_charsets.lib.php:232 msgid "Czech" msgstr "ჩეხური" -#: libraries/messages.inc.php:209 libraries/mysql_charsets.lib.php:383 +#: libraries/messages.inc.php:205 libraries/mysql_charsets.lib.php:383 msgid "Czech-Slovak" msgstr "ჩეხოსლოვალური" -#: libraries/messages.inc.php:211 libraries/mysql_charsets.lib.php:235 +#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:235 msgid "Danish" msgstr "დანიური" -#: libraries/messages.inc.php:214 +#: libraries/messages.inc.php:210 msgid "Database export options" msgstr "მონაცემთა ბაზის ექსპორტის პარამეტრები" -#: libraries/messages.inc.php:217 server_synchronize.php:122 +#: libraries/messages.inc.php:213 server_synchronize.php:122 #: server_synchronize.php:125 tbl_create.php:82 tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "" -#: libraries/messages.inc.php:219 server_databases.php:63 +#: libraries/messages.inc.php:215 server_databases.php:63 #, php-format msgid "%s databases have been dropped successfully." msgstr "%s databases have been dropped successfully." -#: libraries/messages.inc.php:220 libraries/server_synchronize.lib.php:1341 +#: libraries/messages.inc.php:216 libraries/server_synchronize.lib.php:1341 #: server_synchronize.php:1110 #, fuzzy msgid "Source database" msgstr "მონაცემთა ბაზაში ძებნა" -#: libraries/messages.inc.php:221 server_databases.php:88 +#: libraries/messages.inc.php:217 server_databases.php:88 msgid "Databases statistics" msgstr "მონაცემთა ბაზების სტატისტიკა" -#: libraries/messages.inc.php:222 server_databases.php:362 +#: libraries/messages.inc.php:218 server_databases.php:362 #: server_databases.php:363 msgid "Disable Statistics" msgstr "სტატისტიკის გათიშვა" -#: libraries/messages.inc.php:223 server_databases.php:358 +#: libraries/messages.inc.php:219 server_databases.php:358 #: server_databases.php:359 msgid "Enable Statistics" msgstr "სტატისტიკის ჩართვა" -#: libraries/messages.inc.php:224 server_databases.php:366 +#: libraries/messages.inc.php:220 server_databases.php:366 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -3609,32 +3609,32 @@ msgstr "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." -#: libraries/messages.inc.php:225 libraries/server_synchronize.lib.php:1367 +#: libraries/messages.inc.php:221 libraries/server_synchronize.lib.php:1367 #: server_synchronize.php:1112 #, fuzzy msgid "Target database" msgstr "მონაცემთა ბაზაში ძებნა" -#: libraries/messages.inc.php:228 server_synchronize.php:425 +#: libraries/messages.inc.php:224 server_synchronize.php:425 #: server_synchronize.php:868 #, fuzzy msgid "Data Difference" msgstr "სტრუქტურა ხედისათვის" -#: libraries/messages.inc.php:231 server_synchronize.php:272 +#: libraries/messages.inc.php:227 server_synchronize.php:272 msgid "Data Synchronization" msgstr "" -#: libraries/messages.inc.php:235 server_privileges.php:526 +#: libraries/messages.inc.php:231 server_privileges.php:526 #: server_privileges.php:1679 msgid "Database-specific privileges" msgstr "Database-specific privileges" -#: libraries/messages.inc.php:237 server_privileges.php:2136 +#: libraries/messages.inc.php:233 server_privileges.php:2136 msgid "database-specific" msgstr "database-specific" -#: libraries/messages.inc.php:240 libraries/tbl_properties.inc.php:106 +#: libraries/messages.inc.php:236 libraries/tbl_properties.inc.php:106 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" @@ -3642,32 +3642,32 @@ msgstr "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" -#: libraries/messages.inc.php:241 tbl_operations.php:589 +#: libraries/messages.inc.php:237 tbl_operations.php:589 msgid "Defragment table" msgstr "Defragment table" -#: libraries/messages.inc.php:242 +#: libraries/messages.inc.php:238 msgid "Use delayed inserts" msgstr "Use delayed inserts" -#: libraries/messages.inc.php:245 server_privileges.php:1243 +#: libraries/messages.inc.php:241 server_privileges.php:1243 msgid "No users selected for deleting!" msgstr "No users selected for deleting!" -#: libraries/messages.inc.php:246 pmd_general.php:372 +#: libraries/messages.inc.php:242 pmd_general.php:372 msgid "Delete relation" msgstr "Delete relation" -#: libraries/messages.inc.php:248 server_privileges.php:1232 +#: libraries/messages.inc.php:244 server_privileges.php:1232 #, php-format msgid "Deleting %s" msgstr "%s-ის წაშლა" -#: libraries/messages.inc.php:249 libraries/sql_query_form.lib.php:388 +#: libraries/messages.inc.php:245 libraries/sql_query_form.lib.php:388 msgid "Delimiter" msgstr "გამყოფი" -#: libraries/messages.inc.php:250 pdf_pages.php:506 +#: libraries/messages.inc.php:246 pdf_pages.php:506 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -3675,7 +3675,7 @@ msgstr "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" -#: libraries/messages.inc.php:254 pmd_help.php:29 +#: libraries/messages.inc.php:250 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 " @@ -3685,142 +3685,142 @@ msgstr "" "field, click the \"Choose field to display\" icon, then click on the " "appropriate field name." -#: libraries/messages.inc.php:256 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:252 libraries/mysql_charsets.lib.php:247 msgid "dictionary" msgstr "ლექსიკონი" -#: libraries/messages.inc.php:257 libraries/server_synchronize.lib.php:1348 +#: libraries/messages.inc.php:253 libraries/server_synchronize.lib.php:1348 msgid "Difference" msgstr "" -#: libraries/messages.inc.php:258 pmd_general.php:87 +#: libraries/messages.inc.php:254 pmd_general.php:87 msgid "Direct links" msgstr "პირდაპირი ბმულები" -#: libraries/messages.inc.php:261 +#: libraries/messages.inc.php:257 msgid "Disable foreign key checks" msgstr "Disable foreign key checks" -#: libraries/messages.inc.php:262 +#: libraries/messages.inc.php:258 msgid "Display Features" msgstr "Display Features" -#: libraries/messages.inc.php:263 tbl_select.php:301 +#: libraries/messages.inc.php:259 tbl_select.php:301 msgid "Display order:" msgstr "Display order:" -#: libraries/messages.inc.php:265 tbl_select.php:132 +#: libraries/messages.inc.php:261 tbl_select.php:132 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Do a \"query by example\" (wildcard: \"%\")" -#: libraries/messages.inc.php:266 +#: libraries/messages.inc.php:262 msgid "DocSQL" msgstr "DocSQL" -#: libraries/messages.inc.php:268 +#: libraries/messages.inc.php:264 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/messages.inc.php:273 server_privileges.php:1579 +#: libraries/messages.inc.php:269 server_privileges.php:1579 #: server_privileges.php:1580 server_privileges.php:1581 msgid "Drop the databases that have the same names as the users." msgstr "Drop the databases that have the same names as the users." -#: libraries/messages.inc.php:278 tbl_printview.php:382 tbl_structure.php:743 +#: libraries/messages.inc.php:274 tbl_printview.php:382 tbl_structure.php:743 msgid "dynamic" msgstr "დინამიური" -#: libraries/messages.inc.php:282 server_privileges.php:1324 +#: libraries/messages.inc.php:278 server_privileges.php:1324 #: server_privileges.php:1610 msgid "Edit Privileges" msgstr "პრივილეგიების რედაქტირება" -#: libraries/messages.inc.php:283 tbl_printview.php:341 tbl_structure.php:688 +#: libraries/messages.inc.php:279 tbl_printview.php:341 tbl_structure.php:688 msgid "Effective" msgstr "ეფექტური" -#: libraries/messages.inc.php:286 libraries/relation.lib.php:100 +#: libraries/messages.inc.php:282 libraries/relation.lib.php:100 msgid "Enabled" msgstr "ჩართულია" -#: libraries/messages.inc.php:287 +#: libraries/messages.inc.php:283 msgid "Enclose export in a transaction" msgstr "Enclose export in a transaction" -#: libraries/messages.inc.php:288 libraries/sqlparser.lib.php:177 +#: libraries/messages.inc.php:284 libraries/sqlparser.lib.php:177 msgid "END CUT" msgstr "END CUT" -#: libraries/messages.inc.php:290 libraries/sqlparser.lib.php:183 +#: libraries/messages.inc.php:286 libraries/sqlparser.lib.php:183 msgid "END RAW" msgstr "END RAW" -#: libraries/messages.inc.php:293 libraries/server_links.inc.php:61 +#: libraries/messages.inc.php:289 libraries/server_links.inc.php:61 #: test/theme.php:113 msgid "Engines" msgstr "ძრავები" -#: libraries/messages.inc.php:295 libraries/mysql_charsets.lib.php:238 +#: libraries/messages.inc.php:291 libraries/mysql_charsets.lib.php:238 msgid "English" msgstr "ინგლისური" -#: libraries/messages.inc.php:296 server_privileges.php:393 +#: libraries/messages.inc.php:292 server_privileges.php:393 #: server_privileges.php:535 server_privileges.php:1501 msgid " Note: MySQL privilege names are expressed in English " msgstr " Note: MySQL privilege names are expressed in English " -#: libraries/messages.inc.php:298 libraries/zip_extension.lib.php:49 +#: libraries/messages.inc.php:294 libraries/zip_extension.lib.php:49 #: libraries/zip_extension.lib.php:51 libraries/zip_extension.lib.php:66 msgid "Error in ZIP archive:" msgstr "შეცდომა ZIP არქივში:" -#: libraries/messages.inc.php:303 libraries/mysql_charsets.lib.php:241 +#: libraries/messages.inc.php:299 libraries/mysql_charsets.lib.php:241 msgid "Esperanto" msgstr "ესპერანტო" -#: libraries/messages.inc.php:304 libraries/mysql_charsets.lib.php:244 +#: libraries/messages.inc.php:300 libraries/mysql_charsets.lib.php:244 msgid "Estonian" msgstr "ესტონური" -#: libraries/messages.inc.php:305 libraries/tbl_triggers.lib.php:29 +#: libraries/messages.inc.php:301 libraries/tbl_triggers.lib.php:29 msgid "Event" msgstr "მოვლენა" -#: libraries/messages.inc.php:307 +#: libraries/messages.inc.php:303 msgid "Excel edition" msgstr "Excel edition" -#: libraries/messages.inc.php:311 pmd_pdf.php:85 +#: libraries/messages.inc.php:307 pmd_pdf.php:85 msgid "Export/Import to scale" msgstr "Export/Import to scale" -#: libraries/messages.inc.php:313 +#: libraries/messages.inc.php:309 msgid "Extended inserts" msgstr "Extended inserts" -#: libraries/messages.inc.php:314 pdf_schema.php:1267 pdf_schema.php:1288 +#: libraries/messages.inc.php:310 pdf_schema.php:1267 pdf_schema.php:1288 #: tbl_printview.php:147 tbl_structure.php:183 tbl_tracking.php:278 msgid "Extra" msgstr "ექსტრა" -#: libraries/messages.inc.php:316 server_status.php:447 +#: libraries/messages.inc.php:312 server_status.php:447 msgid "Failed attempts" msgstr "Failed attempts" -#: libraries/messages.inc.php:318 tbl_structure.php:375 +#: libraries/messages.inc.php:314 tbl_structure.php:375 #, php-format msgid "Field %s has been dropped" msgstr "Field %s has been dropped" -#: libraries/messages.inc.php:322 libraries/sql_query_form.lib.php:317 +#: libraries/messages.inc.php:318 libraries/sql_query_form.lib.php:317 msgid "Fields" msgstr "ველები" -#: libraries/messages.inc.php:332 server_binlog.php:136 +#: libraries/messages.inc.php:328 server_binlog.php:136 msgid "Files" msgstr "ფაილები" -#: libraries/messages.inc.php:334 server_privileges.php:1597 +#: libraries/messages.inc.php:330 server_privileges.php:1597 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -3833,219 +3833,219 @@ msgstr "" "server uses, if they have been changed manually. In this case, you should %" "sreload the privileges%s before you continue." -#: libraries/messages.inc.php:335 server_status.php:289 +#: libraries/messages.inc.php:331 server_status.php:289 msgid "Flush query cache" msgstr "Flush query cache" -#: libraries/messages.inc.php:336 +#: libraries/messages.inc.php:332 msgid "Flush the table (\"FLUSH\")" msgstr "Flush the table (\"FLUSH\")" -#: libraries/messages.inc.php:337 server_status.php:271 +#: libraries/messages.inc.php:333 server_status.php:271 msgid "Flush (close) all tables" msgstr "Flush (close) all tables" -#: libraries/messages.inc.php:339 tbl_relation.php:279 +#: libraries/messages.inc.php:335 tbl_relation.php:279 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "Error creating foreign key on %1$s (check data types)" -#: libraries/messages.inc.php:341 setup/lib/messages.inc.php:88 +#: libraries/messages.inc.php:337 setup/lib/messages.inc.php:88 #: tbl_printview.php:376 tbl_structure.php:738 msgid "Format" msgstr "ფორმატი" -#: libraries/messages.inc.php:344 server_replication.php:325 +#: libraries/messages.inc.php:340 server_replication.php:325 #, fuzzy msgid "Full start" msgstr "Fulltext" -#: libraries/messages.inc.php:345 server_replication.php:325 +#: libraries/messages.inc.php:341 server_replication.php:325 #, fuzzy msgid "Full stop" msgstr "Fulltext" -#: libraries/messages.inc.php:347 tbl_change.php:282 tbl_change.php:320 +#: libraries/messages.inc.php:343 tbl_change.php:282 tbl_change.php:320 msgid "Function" msgstr "ფუნქცია" -#: libraries/messages.inc.php:355 libraries/mysql_charsets.lib.php:377 +#: libraries/messages.inc.php:351 libraries/mysql_charsets.lib.php:377 msgid "Georgian" msgstr "ქართული" -#: libraries/messages.inc.php:356 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:352 libraries/mysql_charsets.lib.php:247 #: libraries/mysql_charsets.lib.php:250 msgid "German" msgstr "გერმანული" -#: libraries/messages.inc.php:357 themes.php:42 +#: libraries/messages.inc.php:353 themes.php:42 msgid "Get more themes!" msgstr "" -#: libraries/messages.inc.php:358 server_privileges.php:2134 +#: libraries/messages.inc.php:354 server_privileges.php:2134 msgid "global" msgstr "გლობალულრი" -#: libraries/messages.inc.php:359 server_privileges.php:524 +#: libraries/messages.inc.php:355 server_privileges.php:524 #: server_privileges.php:1500 msgid "Global privileges" msgstr "გლობალური პრივილეგიები" -#: libraries/messages.inc.php:360 server_variables.php:55 +#: libraries/messages.inc.php:356 server_variables.php:55 #: server_variables.php:89 msgid "Global value" msgstr "გლობალური მნიშვნელობა" -#: libraries/messages.inc.php:365 server_privileges.php:1502 +#: libraries/messages.inc.php:361 server_privileges.php:1502 #: server_privileges.php:1684 server_privileges.php:2033 msgid "Grant" msgstr "Grant" -#: libraries/messages.inc.php:366 libraries/mysql_charsets.lib.php:380 +#: libraries/messages.inc.php:362 libraries/mysql_charsets.lib.php:380 msgid "Greek" msgstr "ბერძნული" -#: libraries/messages.inc.php:367 +#: libraries/messages.inc.php:363 msgid "\"gzipped\"" msgstr "\"gzip-ით დაარქივებული\"" -#: libraries/messages.inc.php:369 server_status.php:250 +#: libraries/messages.inc.php:365 server_status.php:250 msgid "Handler" msgstr "Handler" -#: libraries/messages.inc.php:370 server_synchronize.php:464 +#: libraries/messages.inc.php:366 server_synchronize.php:464 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: libraries/messages.inc.php:372 libraries/mysql_charsets.lib.php:374 +#: libraries/messages.inc.php:368 libraries/mysql_charsets.lib.php:374 msgid "Hebrew" msgstr "ებრაული" -#: libraries/messages.inc.php:373 pmd_general.php:83 +#: libraries/messages.inc.php:369 pmd_general.php:83 msgid "Help" msgstr "დახმარება" -#: libraries/messages.inc.php:374 +#: libraries/messages.inc.php:370 msgid "Use hexadecimal for BLOB" msgstr "Use hexadecimal for BLOB" -#: libraries/messages.inc.php:376 pmd_general.php:120 +#: libraries/messages.inc.php:372 pmd_general.php:120 msgid "Hide/Show all" msgstr "ყველას დამალვა/ჩვენება" -#: libraries/messages.inc.php:377 pmd_general.php:124 +#: libraries/messages.inc.php:373 pmd_general.php:124 msgid "Hide/Show Tables with no relation" msgstr "Hide/Show Tables with no relation" -#: libraries/messages.inc.php:378 libraries/navigation_header.inc.php:54 +#: libraries/messages.inc.php:374 libraries/navigation_header.inc.php:54 #: libraries/navigation_header.inc.php:57 #: libraries/navigation_header.inc.php:58 msgid "Home" msgstr "სახლი" -#: libraries/messages.inc.php:379 main.php:233 +#: libraries/messages.inc.php:375 main.php:233 msgid "Official Homepage" msgstr "ოფიციალური ვებგვერდი" -#: libraries/messages.inc.php:382 libraries/replication_gui.lib.php:327 +#: libraries/messages.inc.php:378 libraries/replication_gui.lib.php:327 #: server_privileges.php:753 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/messages.inc.php:383 +#: libraries/messages.inc.php:379 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/messages.inc.php:384 libraries/mysql_charsets.lib.php:253 +#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:253 msgid "Hungarian" msgstr "უნგრული" -#: libraries/messages.inc.php:386 libraries/mysql_charsets.lib.php:256 +#: libraries/messages.inc.php:382 libraries/mysql_charsets.lib.php:256 msgid "Icelandic" msgstr "ისლანდიური" -#: libraries/messages.inc.php:387 server_processlist.php:53 +#: libraries/messages.inc.php:383 server_processlist.php:53 msgid "ID" msgstr "ID" -#: libraries/messages.inc.php:388 libraries/mult_submits.inc.php:108 +#: libraries/messages.inc.php:384 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:479 msgid "Fulltext" msgstr "Fulltext" -#: libraries/messages.inc.php:389 +#: libraries/messages.inc.php:385 msgid "Ignore duplicate rows" msgstr "Ignore duplicate rows" -#: libraries/messages.inc.php:390 tbl_change.php:302 tbl_indexes.php:200 +#: libraries/messages.inc.php:386 tbl_change.php:302 tbl_indexes.php:200 #: tbl_indexes.php:225 msgid "Ignore" msgstr "იგნორირება" -#: libraries/messages.inc.php:391 +#: libraries/messages.inc.php:387 msgid "Use ignore inserts" msgstr "Use ignore inserts" -#: libraries/messages.inc.php:392 +#: libraries/messages.inc.php:388 msgid "Column names in first row" msgstr "" -#: libraries/messages.inc.php:393 +#: libraries/messages.inc.php:389 msgid "Do not import empty rows" msgstr "" -#: libraries/messages.inc.php:394 pmd_general.php:104 +#: libraries/messages.inc.php:390 pmd_general.php:104 msgid "Import/Export coordinates for PDF schema" msgstr "Import/Export coordinates for PDF schema" -#: libraries/messages.inc.php:395 querywindow.php:104 +#: libraries/messages.inc.php:391 querywindow.php:104 msgid "Import files" msgstr "ფაილების შემოტანა" -#: libraries/messages.inc.php:403 +#: libraries/messages.inc.php:399 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/messages.inc.php:404 libraries/messages.inc.php:584 +#: libraries/messages.inc.php:400 libraries/messages.inc.php:580 msgid "Open Document Spreadsheet" msgstr "Open Document Spreadsheet" -#: libraries/messages.inc.php:405 +#: libraries/messages.inc.php:401 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/messages.inc.php:409 +#: libraries/messages.inc.php:405 msgid "Excel 97-2003 XLS Workbook" msgstr "" -#: libraries/messages.inc.php:410 +#: libraries/messages.inc.php:406 msgid "Excel 2007 XLSX Workbook" msgstr "" -#: libraries/messages.inc.php:414 libraries/mult_submits.inc.php:98 +#: libraries/messages.inc.php:410 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:476 tbl_structure.php:674 msgid "Index" msgstr "ინდექსი" -#: libraries/messages.inc.php:415 tbl_indexes.php:168 +#: libraries/messages.inc.php:411 tbl_indexes.php:168 msgid "Index name:" msgstr "ინდექსის სახელი:" -#: libraries/messages.inc.php:416 tbl_indexes.php:174 +#: libraries/messages.inc.php:412 tbl_indexes.php:174 msgid "Index type:" msgstr "ინდექსის ტიპი:" -#: libraries/messages.inc.php:417 sql.php:639 +#: libraries/messages.inc.php:413 sql.php:639 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problems with indexes of table `%s`" -#: libraries/messages.inc.php:427 main.php:266 +#: libraries/messages.inc.php:423 main.php:266 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -4057,24 +4057,24 @@ msgstr "" "running with this default, is open to intrusion, and you really should fix " "this security hole by setting a password for user 'root'." -#: libraries/messages.inc.php:428 tbl_change.php:1130 +#: libraries/messages.inc.php:424 tbl_change.php:1130 msgid "Insert as new row" msgstr "ახალი სტრიქონის ჩამატება" -#: libraries/messages.inc.php:429 sql.php:496 tbl_replace.php:386 +#: libraries/messages.inc.php:425 sql.php:496 tbl_replace.php:386 #, php-format msgid "Inserted row id: %1$d" msgstr "ჩამატებული სტრიქონის id: %1$d" -#: libraries/messages.inc.php:430 tbl_change.php:1131 +#: libraries/messages.inc.php:426 tbl_change.php:1131 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/messages.inc.php:432 main.php:139 +#: libraries/messages.inc.php:428 main.php:139 msgid "Interface" msgstr "ინტერფეისი" -#: libraries/messages.inc.php:433 tbl_relation.php:407 +#: libraries/messages.inc.php:429 tbl_relation.php:407 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -4082,140 +4082,140 @@ msgstr "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." -#: libraries/messages.inc.php:435 pdf_pages.php:303 +#: libraries/messages.inc.php:431 pdf_pages.php:303 msgid "Internal relations" msgstr "Internal relations" -#: libraries/messages.inc.php:438 tbl_indexes.php:256 tbl_structure.php:590 +#: libraries/messages.inc.php:434 tbl_indexes.php:256 tbl_structure.php:590 #: tbl_structure.php:601 msgid "Column count has to be larger than zero." msgstr "Column count has to be larger than zero." -#: libraries/messages.inc.php:444 libraries/tbl_properties.inc.php:784 +#: libraries/messages.inc.php:440 libraries/tbl_properties.inc.php:784 #: tbl_structure.php:537 msgid "You have to add at least one field." msgstr "You have to add at least one field." -#: libraries/messages.inc.php:449 +#: libraries/messages.inc.php:445 #, php-format msgid "Invalid server index: \"%s\"" msgstr "Invalid server index: \"%s\"" -#: libraries/messages.inc.php:452 libraries/mysql_charsets.lib.php:259 +#: libraries/messages.inc.php:448 libraries/mysql_charsets.lib.php:259 #: libraries/mysql_charsets.lib.php:349 msgid "Japanese" msgstr "იაპონური" -#: libraries/messages.inc.php:453 main.php:331 +#: libraries/messages.inc.php:449 main.php:331 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: libraries/messages.inc.php:454 server_status.php:257 +#: libraries/messages.inc.php:450 server_status.php:257 msgid "Joins" msgstr "Joins" -#: libraries/messages.inc.php:457 server_privileges.php:763 +#: libraries/messages.inc.php:453 server_privileges.php:763 msgid "Do not change the password" msgstr "არ შეცვალო პაროლი" -#: libraries/messages.inc.php:458 server_status.php:256 +#: libraries/messages.inc.php:454 server_status.php:256 msgid "Key cache" msgstr "Key cache" -#: libraries/messages.inc.php:462 libraries/mysql_charsets.lib.php:268 +#: libraries/messages.inc.php:458 libraries/mysql_charsets.lib.php:268 #: libraries/mysql_charsets.lib.php:371 msgid "Korean" msgstr "კორეული" -#: libraries/messages.inc.php:466 libraries/select_lang.lib.php:480 +#: libraries/messages.inc.php:462 libraries/select_lang.lib.php:480 #: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492 #, php-format msgid "Unknown language: %1$s." msgstr "უცნობი ენა: %1$s." -#: libraries/messages.inc.php:468 +#: libraries/messages.inc.php:464 msgid "Table caption" msgstr "Table caption" -#: libraries/messages.inc.php:469 +#: libraries/messages.inc.php:465 msgid "Content of table __TABLE__" msgstr "Content of table __TABLE__" -#: libraries/messages.inc.php:470 +#: libraries/messages.inc.php:466 msgid "Continued table caption" msgstr "Continued table caption" -#: libraries/messages.inc.php:471 +#: libraries/messages.inc.php:467 msgid "(continued)" msgstr "(გაგრძელება)" -#: libraries/messages.inc.php:472 +#: libraries/messages.inc.php:468 msgid "Include table caption" msgstr "Include table caption" -#: libraries/messages.inc.php:473 +#: libraries/messages.inc.php:469 msgid "Label key" msgstr "Label key" -#: libraries/messages.inc.php:474 +#: libraries/messages.inc.php:470 msgid "LaTeX" msgstr "LaTeX" -#: libraries/messages.inc.php:475 +#: libraries/messages.inc.php:471 msgid "Structure of table __TABLE__" msgstr "Structure of table __TABLE__" -#: libraries/messages.inc.php:476 libraries/mysql_charsets.lib.php:262 +#: libraries/messages.inc.php:472 libraries/mysql_charsets.lib.php:262 msgid "Latvian" msgstr "ლატვიური" -#: libraries/messages.inc.php:477 +#: libraries/messages.inc.php:473 msgid "CSV using LOAD DATA" msgstr "CSV using LOAD DATA" -#: libraries/messages.inc.php:478 +#: libraries/messages.inc.php:474 msgid "Use LOCAL keyword" msgstr "Use LOCAL keyword" -#: libraries/messages.inc.php:479 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:475 libraries/tbl_properties.inc.php:105 msgid "Length/Values" msgstr "Length/Values" -#: libraries/messages.inc.php:480 tbl_select.php:295 +#: libraries/messages.inc.php:476 tbl_select.php:295 msgid "Number of rows per page" msgstr "Number of rows per page" -#: libraries/messages.inc.php:484 libraries/mysql_charsets.lib.php:265 +#: libraries/messages.inc.php:480 libraries/mysql_charsets.lib.php:265 msgid "Lithuanian" msgstr "ლიტვური" -#: libraries/messages.inc.php:485 libraries/replication_gui.lib.php:302 +#: libraries/messages.inc.php:481 libraries/replication_gui.lib.php:302 #: server_privileges.php:729 msgid "Local" msgstr "ლოკალური" -#: libraries/messages.inc.php:487 server_privileges.php:669 +#: libraries/messages.inc.php:483 server_privileges.php:669 msgid "Login Information" msgstr "Login Information" -#: libraries/messages.inc.php:490 libraries/navigation_header.inc.php:67 +#: libraries/messages.inc.php:486 libraries/navigation_header.inc.php:67 #: libraries/navigation_header.inc.php:70 #: libraries/navigation_header.inc.php:71 main.php:99 msgid "Log out" msgstr "გამოსვლა" -#: libraries/messages.inc.php:497 server_status.php:440 +#: libraries/messages.inc.php:493 server_status.php:440 msgid "max. concurrent connections" msgstr "max. concurrent connections" -#: libraries/messages.inc.php:498 +#: libraries/messages.inc.php:494 msgid "Maximal length of created query" msgstr "Maximal length of created query" -#: libraries/messages.inc.php:500 main.php:282 +#: libraries/messages.inc.php:496 main.php:282 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -4226,7 +4226,7 @@ msgstr "" "არ შეუძლია სტრიქონების სწორად დაყოფა რის გამოც შეიძლება მიიღოთ მოულოდნელი " "შედეგი." -#: libraries/messages.inc.php:501 main.php:274 +#: libraries/messages.inc.php:497 main.php:274 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -4236,24 +4236,24 @@ msgstr "" "პარამეტრი არაა თავსებადი phpMyAdmin-თან და შეიძლება გამოიწვიოს მონაცემების " "დაზიანება!" -#: libraries/messages.inc.php:502 +#: libraries/messages.inc.php:498 msgid "MediaWiki Table" msgstr "" -#: libraries/messages.inc.php:503 transformation_overview.php:25 +#: libraries/messages.inc.php:499 transformation_overview.php:25 msgid "Available MIME types" msgstr "MIME-ის ხელმისაწვდომი ტიპები" -#: libraries/messages.inc.php:504 transformation_overview.php:43 +#: libraries/messages.inc.php:500 transformation_overview.php:43 msgid "Available transformations" msgstr "ხელმისაწვდომი გარდაქმნები" -#: libraries/messages.inc.php:505 +#: libraries/messages.inc.php:501 msgctxt "$strMIME_description" msgid "Description" msgstr "აღწერილობა" -#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:580 +#: libraries/messages.inc.php:503 libraries/tbl_properties.inc.php:580 #: transformation_overview.php:60 #, php-format msgid "" @@ -4263,7 +4263,7 @@ msgstr "" "No description is available for this transformation.
Please ask the " "author what %s does." -#: libraries/messages.inc.php:509 libraries/tbl_properties.inc.php:137 +#: libraries/messages.inc.php:505 libraries/tbl_properties.inc.php:137 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -4272,7 +4272,7 @@ msgstr "" "For a list of available transformation options and their MIME type " "transformations, click on %stransformation descriptions%s" -#: libraries/messages.inc.php:510 libraries/tbl_properties.inc.php:146 +#: libraries/messages.inc.php:506 libraries/tbl_properties.inc.php:146 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -4284,57 +4284,57 @@ msgstr "" "quote (\"'\") amongst those values, precede it with a backslash (for example " "'\\\\xyz' or 'a\\'b')." -#: libraries/messages.inc.php:511 libraries/tbl_properties.inc.php:145 +#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:145 msgid "Transformation options" msgstr "გარდაქმნის პარამეტრები" -#: libraries/messages.inc.php:513 transformation_overview.php:38 +#: libraries/messages.inc.php:509 transformation_overview.php:38 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "" "MIME types printed in italics do not have a separate transformation function" -#: libraries/messages.inc.php:515 tbl_indexes.php:162 +#: libraries/messages.inc.php:511 tbl_indexes.php:162 msgid "Modify an index" msgstr "ინდექსის შეცვლა" -#: libraries/messages.inc.php:517 pmd_general.php:108 +#: libraries/messages.inc.php:513 pmd_general.php:108 msgid "Move Menu" msgstr "მენიუს გადატანა" -#: libraries/messages.inc.php:518 tbl_operations.php:276 +#: libraries/messages.inc.php:514 tbl_operations.php:276 msgid "Move table to (database.table):" msgstr "Move table to (database.table):" -#: libraries/messages.inc.php:519 tbl_move_copy.php:56 +#: libraries/messages.inc.php:515 tbl_move_copy.php:56 #, php-format msgid "Table %s has been moved to %s." msgstr "Table %s has been moved to %s." -#: libraries/messages.inc.php:520 tbl_move_copy.php:46 +#: libraries/messages.inc.php:516 tbl_move_copy.php:46 msgid "Can't move table to same one!" msgstr "Can't move table to same one!" -#: libraries/messages.inc.php:521 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:517 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 #: libraries/mysql_charsets.lib.php:332 libraries/mysql_charsets.lib.php:354 #: libraries/mysql_charsets.lib.php:365 msgid "multilingual" msgstr "მრავალენოვანი" -#: libraries/messages.inc.php:534 main.php:193 +#: libraries/messages.inc.php:530 main.php:193 msgid "MySQL charset" msgstr "MySQL-ის სიმბოლოთა ნაკრები" -#: libraries/messages.inc.php:535 main.php:211 +#: libraries/messages.inc.php:531 main.php:211 msgid "MySQL client version" msgstr "MySQL-ის კლიენტის ვერსია" -#: libraries/messages.inc.php:536 main.php:125 +#: libraries/messages.inc.php:532 main.php:125 msgid "MySQL connection collation" msgstr "MySQL კავშირის კოლაცია" -#: libraries/messages.inc.php:537 main.php:346 +#: libraries/messages.inc.php:533 main.php:346 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -4343,55 +4343,55 @@ msgstr "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." -#: libraries/messages.inc.php:539 server_status.php:294 +#: libraries/messages.inc.php:535 server_status.php:294 msgid "Show processes" msgstr "პროცესების ჩვენება" -#: libraries/messages.inc.php:545 navigation.php:210 server_databases.php:371 +#: libraries/messages.inc.php:541 navigation.php:210 server_databases.php:371 #: server_synchronize.php:1191 msgid "No databases" msgstr "მონაცემთა ბაზები არაა" -#: libraries/messages.inc.php:546 server_databases.php:52 +#: libraries/messages.inc.php:542 server_databases.php:52 msgid "No databases selected." msgstr "No databases selected." -#: libraries/messages.inc.php:548 libraries/relation.lib.php:1173 +#: libraries/messages.inc.php:544 libraries/relation.lib.php:1173 msgid "no description" msgstr "no description" -#: libraries/messages.inc.php:552 libraries/zip_extension.lib.php:26 +#: libraries/messages.inc.php:548 libraries/zip_extension.lib.php:26 msgid "No files found inside ZIP archive!" msgstr "ZIP არქივში ფაილების პოვნა ვერ მოხერხდა!" -#: libraries/messages.inc.php:555 tbl_indexes.php:91 +#: libraries/messages.inc.php:551 tbl_indexes.php:91 msgid "No index parts defined!" msgstr "No index parts defined!" -#: libraries/messages.inc.php:556 libraries/mult_submits.inc.php:435 +#: libraries/messages.inc.php:552 libraries/mult_submits.inc.php:435 #: tbl_replace.php:331 msgid "No change" msgstr "ცვლილების გარეშე" -#: libraries/messages.inc.php:557 +#: libraries/messages.inc.php:553 #, fuzzy msgctxt "$strNoneDefault" msgid "None" msgstr "არაა" -#: libraries/messages.inc.php:560 libraries/plugin_interface.lib.php:312 +#: libraries/messages.inc.php:556 libraries/plugin_interface.lib.php:312 msgid "This format has no options" msgstr "ამ ფორმატს არ აქვს პარამეტრები" -#: libraries/messages.inc.php:565 user_password.php:54 +#: libraries/messages.inc.php:561 user_password.php:54 msgid "You don't have sufficient privileges to be here right now!" msgstr "You don't have sufficient privileges to be here right now!" -#: libraries/messages.inc.php:566 tbl_row_action.php:29 +#: libraries/messages.inc.php:562 tbl_row_action.php:29 msgid "No rows selected" msgstr "No rows selected" -#: libraries/messages.inc.php:569 themes.php:32 +#: libraries/messages.inc.php:565 themes.php:32 #, php-format msgid "" "No themes support; please check your configuration and/or your themes in " @@ -4400,292 +4400,292 @@ msgstr "" "No themes support; please check your configuration and/or your themes in " "directory %s." -#: libraries/messages.inc.php:571 libraries/relation.lib.php:95 +#: libraries/messages.inc.php:567 libraries/relation.lib.php:95 msgid "not OK" msgstr "not OK" -#: libraries/messages.inc.php:572 server_synchronize.php:400 +#: libraries/messages.inc.php:568 server_synchronize.php:400 #: server_synchronize.php:839 msgid "not present" msgstr "" -#: libraries/messages.inc.php:573 pdf_pages.php:36 pdf_pages.php:42 +#: libraries/messages.inc.php:569 pdf_pages.php:36 pdf_pages.php:42 #: pdf_pages.php:48 pdf_pages.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "%s table not found or not set in %s" -#: libraries/messages.inc.php:574 server_privileges.php:804 +#: libraries/messages.inc.php:570 server_privileges.php:804 #: server_privileges.php:2166 msgid "No user(s) found." msgstr "მომხმარებლ(ებ)ის პოვნა ვერ მოხერხდა." -#: libraries/messages.inc.php:578 pmd_general.php:164 +#: libraries/messages.inc.php:574 pmd_general.php:164 msgid "Number of tables" msgstr "ცხრილების რაოდენობა" -#: libraries/messages.inc.php:581 server_databases.php:117 +#: libraries/messages.inc.php:577 server_databases.php:117 #: server_status.php:260 setup/lib/messages.inc.php:117 msgid "Tables" msgstr "ცხრილები" -#: libraries/messages.inc.php:583 libraries/relation.lib.php:99 +#: libraries/messages.inc.php:579 libraries/relation.lib.php:99 #: pmd_general.php:340 msgid "OK" msgstr "OK" -#: libraries/messages.inc.php:585 +#: libraries/messages.inc.php:581 msgid "Open Document Text" msgstr "Open Document Text" -#: libraries/messages.inc.php:588 tbl_select.php:138 +#: libraries/messages.inc.php:584 tbl_select.php:138 msgid "Operator" msgstr "ოპერატორი" -#: libraries/messages.inc.php:589 tbl_operations.php:662 +#: libraries/messages.inc.php:585 tbl_operations.php:662 msgid "Optimize" msgstr "ოპტიმიზება" -#: libraries/messages.inc.php:602 libraries/tbl_properties.inc.php:755 +#: libraries/messages.inc.php:598 libraries/tbl_properties.inc.php:755 msgid "PARTITION definition" msgstr "PARTITION definition" -#: libraries/messages.inc.php:603 tbl_structure.php:757 +#: libraries/messages.inc.php:599 tbl_structure.php:757 msgid "partitioned" msgstr "დაყოფილი" -#: libraries/messages.inc.php:604 tbl_operations.php:649 +#: libraries/messages.inc.php:600 tbl_operations.php:649 msgid "Partition maintenance" msgstr "Partition maintenance" -#: libraries/messages.inc.php:605 tbl_operations.php:657 +#: libraries/messages.inc.php:601 tbl_operations.php:657 #, php-format msgid "Partition %s" msgstr "დანაყოფი %s" -#: libraries/messages.inc.php:606 server_privileges.php:1212 +#: libraries/messages.inc.php:602 server_privileges.php:1212 #, php-format msgid "The password for %s was changed successfully." msgstr "The password for %s was changed successfully." -#: libraries/messages.inc.php:635 +#: libraries/messages.inc.php:631 #, php-format msgid "Schema of the \"%s\" database - Page %s" msgstr "Schema of the \"%s\" database - Page %s" -#: libraries/messages.inc.php:636 +#: libraries/messages.inc.php:632 #, php-format msgid "The \"%s\" table doesn't exist!" msgstr "ცხრილი \"%s\" არ არსებობს!" -#: libraries/messages.inc.php:637 pdf_schema.php:1013 +#: libraries/messages.inc.php:633 pdf_schema.php:1013 msgid "No tables" msgstr "ცხრილები არაა" -#: libraries/messages.inc.php:638 pmd_pdf.php:63 +#: libraries/messages.inc.php:634 pmd_pdf.php:63 #, fuzzy msgid "Page has been created" msgstr "Table %1$s has been created." -#: libraries/messages.inc.php:639 pmd_pdf.php:65 +#: libraries/messages.inc.php:635 pmd_pdf.php:65 msgid "Page creation failed" msgstr "" -#: libraries/messages.inc.php:640 +#: libraries/messages.inc.php:636 msgid "PDF" msgstr "PDF" -#: libraries/messages.inc.php:641 +#: libraries/messages.inc.php:637 msgid "(Generates a report containing the data of a single table)" msgstr "(Generates a report containing the data of a single table)" -#: libraries/messages.inc.php:642 +#: libraries/messages.inc.php:638 msgid "Report title" msgstr "Report title" -#: libraries/messages.inc.php:643 server_status.php:389 server_status.php:434 +#: libraries/messages.inc.php:639 server_status.php:389 server_status.php:434 #: server_status.php:497 server_status.php:555 msgid "per hour" msgstr "საათში" -#: libraries/messages.inc.php:644 server_status.php:498 +#: libraries/messages.inc.php:640 server_status.php:498 msgid "per minute" msgstr "წუთში" -#: libraries/messages.inc.php:645 server_status.php:499 +#: libraries/messages.inc.php:641 server_status.php:499 msgid "per second" msgstr "წამში" -#: libraries/messages.inc.php:646 libraries/mysql_charsets.lib.php:271 +#: libraries/messages.inc.php:642 libraries/mysql_charsets.lib.php:271 msgid "Persian" msgstr "სპარსული" -#: libraries/messages.inc.php:647 libraries/mysql_charsets.lib.php:250 +#: libraries/messages.inc.php:643 libraries/mysql_charsets.lib.php:250 msgid "phone book" msgstr "სატელეფონო წიგნი" -#: libraries/messages.inc.php:648 +#: libraries/messages.inc.php:644 msgid "PHP array" msgstr "" -#: libraries/messages.inc.php:650 main.php:213 +#: libraries/messages.inc.php:646 main.php:213 msgid "PHP extension" msgstr "PHP-ის გაფართოება" -#: libraries/messages.inc.php:654 libraries/relation.lib.php:163 +#: libraries/messages.inc.php:650 libraries/relation.lib.php:163 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/messages.inc.php:655 libraries/relation.lib.php:159 +#: libraries/messages.inc.php:651 libraries/relation.lib.php:159 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/messages.inc.php:656 libraries/relation.lib.php:161 +#: libraries/messages.inc.php:652 libraries/relation.lib.php:161 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" -#: libraries/messages.inc.php:657 libraries/relation.lib.php:162 +#: libraries/messages.inc.php:653 libraries/relation.lib.php:162 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/messages.inc.php:658 libraries/relation.lib.php:164 +#: libraries/messages.inc.php:654 libraries/relation.lib.php:164 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/messages.inc.php:661 libraries/mysql_charsets.lib.php:274 +#: libraries/messages.inc.php:657 libraries/mysql_charsets.lib.php:274 msgid "Polish" msgstr "პოლონური" -#: libraries/messages.inc.php:662 libraries/replication_gui.lib.php:67 +#: libraries/messages.inc.php:658 libraries/replication_gui.lib.php:67 #: server_synchronize.php:1163 #, fuzzy msgid "Port" msgstr "დალაგება" -#: libraries/messages.inc.php:667 tbl_indexes.php:67 +#: libraries/messages.inc.php:663 tbl_indexes.php:67 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "The name of the primary key must be \"PRIMARY\"!" -#: libraries/messages.inc.php:668 tbl_indexes.php:184 +#: libraries/messages.inc.php:664 tbl_indexes.php:184 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" "(\"PRIMARY\" must be the name of and only of a primary key!)" -#: libraries/messages.inc.php:669 libraries/mult_submits.inc.php:76 +#: libraries/messages.inc.php:665 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:474 msgid "Primary" msgstr "პირველადი" -#: libraries/messages.inc.php:673 server_privileges.php:227 +#: libraries/messages.inc.php:669 server_privileges.php:227 msgid "Includes all privileges except GRANT." msgstr "შეიცავს ყველა პრივილეგიას GRANT-ის გამოკლებით." -#: libraries/messages.inc.php:674 server_privileges.php:153 +#: libraries/messages.inc.php:670 server_privileges.php:153 #: server_privileges.php:476 msgid "Allows altering the structure of existing tables." msgstr "Allows altering the structure of existing tables." -#: libraries/messages.inc.php:675 server_privileges.php:169 +#: libraries/messages.inc.php:671 server_privileges.php:169 #: server_privileges.php:482 msgid "Allows altering and dropping stored routines." msgstr "Allows altering and dropping stored routines." -#: libraries/messages.inc.php:676 server_privileges.php:145 +#: libraries/messages.inc.php:672 server_privileges.php:145 #: server_privileges.php:475 msgid "Allows creating new databases and tables." msgstr "Allows creating new databases and tables." -#: libraries/messages.inc.php:677 server_privileges.php:168 +#: libraries/messages.inc.php:673 server_privileges.php:168 #: server_privileges.php:481 msgid "Allows creating stored routines." msgstr "Allows creating stored routines." -#: libraries/messages.inc.php:678 server_privileges.php:475 +#: libraries/messages.inc.php:674 server_privileges.php:475 msgid "Allows creating new tables." msgstr "Allows creating new tables." -#: libraries/messages.inc.php:679 server_privileges.php:156 +#: libraries/messages.inc.php:675 server_privileges.php:156 #: server_privileges.php:479 msgid "Allows creating temporary tables." msgstr "Allows creating temporary tables." -#: libraries/messages.inc.php:680 server_privileges.php:170 +#: libraries/messages.inc.php:676 server_privileges.php:170 #: server_privileges.php:515 msgid "Allows creating, dropping and renaming user accounts." msgstr "Allows creating, dropping and renaming user accounts." -#: libraries/messages.inc.php:681 server_privileges.php:160 +#: libraries/messages.inc.php:677 server_privileges.php:160 #: server_privileges.php:164 server_privileges.php:487 #: server_privileges.php:491 msgid "Allows creating new views." msgstr "Allows creating new views." -#: libraries/messages.inc.php:682 server_privileges.php:144 +#: libraries/messages.inc.php:678 server_privileges.php:144 #: server_privileges.php:467 msgid "Allows deleting data." msgstr "Allows deleting data." -#: libraries/messages.inc.php:683 server_privileges.php:146 +#: libraries/messages.inc.php:679 server_privileges.php:146 #: server_privileges.php:478 msgid "Allows dropping databases and tables." msgstr "Allows dropping databases and tables." -#: libraries/messages.inc.php:684 server_privileges.php:478 +#: libraries/messages.inc.php:680 server_privileges.php:478 msgid "Allows dropping tables." msgstr "Allows dropping tables." -#: libraries/messages.inc.php:685 server_privileges.php:161 +#: libraries/messages.inc.php:681 server_privileges.php:161 #: server_privileges.php:495 msgid "Allows to set up events for the event scheduler" msgstr "Allows to set up events for the event scheduler" -#: libraries/messages.inc.php:686 server_privileges.php:171 +#: libraries/messages.inc.php:682 server_privileges.php:171 #: server_privileges.php:483 msgid "Allows executing stored routines." msgstr "Allows executing stored routines." -#: libraries/messages.inc.php:687 server_privileges.php:150 +#: libraries/messages.inc.php:683 server_privileges.php:150 #: server_privileges.php:470 msgid "Allows importing data from and exporting data into files." msgstr "Allows importing data from and exporting data into files." -#: libraries/messages.inc.php:688 server_privileges.php:501 +#: libraries/messages.inc.php:684 server_privileges.php:501 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Allows adding users and privileges without reloading the privilege tables." -#: libraries/messages.inc.php:689 server_privileges.php:152 +#: libraries/messages.inc.php:685 server_privileges.php:152 #: server_privileges.php:477 msgid "Allows creating and dropping indexes." msgstr "Allows creating and dropping indexes." -#: libraries/messages.inc.php:690 server_privileges.php:142 +#: libraries/messages.inc.php:686 server_privileges.php:142 #: server_privileges.php:403 server_privileges.php:465 msgid "Allows inserting and replacing data." msgstr "Allows inserting and replacing data." -#: libraries/messages.inc.php:691 server_privileges.php:157 +#: libraries/messages.inc.php:687 server_privileges.php:157 #: server_privileges.php:510 msgid "Allows locking tables for the current thread." msgstr "Allows locking tables for the current thread." -#: libraries/messages.inc.php:692 server_privileges.php:607 +#: libraries/messages.inc.php:688 server_privileges.php:607 #: server_privileges.php:609 msgid "Limits the number of new connections the user may open per hour." msgstr "Limits the number of new connections the user may open per hour." -#: libraries/messages.inc.php:693 server_privileges.php:595 +#: libraries/messages.inc.php:689 server_privileges.php:595 #: server_privileges.php:597 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Limits the number of queries the user may send to the server per hour." -#: libraries/messages.inc.php:694 server_privileges.php:601 +#: libraries/messages.inc.php:690 server_privileges.php:601 #: server_privileges.php:603 msgid "" "Limits the number of commands that change any table or database the user may " @@ -4694,57 +4694,57 @@ msgstr "" "Limits the number of commands that change any table or database the user may " "execute per hour." -#: libraries/messages.inc.php:695 server_privileges.php:613 +#: libraries/messages.inc.php:691 server_privileges.php:613 #: server_privileges.php:615 msgid "Limits the number of simultaneous connections the user may have." msgstr "Limits the number of simultaneous connections the user may have." -#: libraries/messages.inc.php:696 server_privileges.php:149 +#: libraries/messages.inc.php:692 server_privileges.php:149 #: server_privileges.php:505 msgid "Allows viewing processes of all users" msgstr "Allows viewing processes of all users" -#: libraries/messages.inc.php:697 server_privileges.php:151 +#: libraries/messages.inc.php:693 server_privileges.php:151 #: server_privileges.php:409 server_privileges.php:511 msgid "Has no effect in this MySQL version." msgstr "Has no effect in this MySQL version." -#: libraries/messages.inc.php:698 server_privileges.php:147 +#: libraries/messages.inc.php:694 server_privileges.php:147 #: server_privileges.php:506 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Allows reloading server settings and flushing the server's caches." -#: libraries/messages.inc.php:699 server_privileges.php:159 +#: libraries/messages.inc.php:695 server_privileges.php:159 #: server_privileges.php:513 msgid "Allows the user to ask where the slaves / masters are." msgstr "Allows the user to ask where the slaves / masters are." -#: libraries/messages.inc.php:700 server_privileges.php:158 +#: libraries/messages.inc.php:696 server_privileges.php:158 #: server_privileges.php:514 msgid "Needed for the replication slaves." msgstr "Needed for the replication slaves." -#: libraries/messages.inc.php:701 server_privileges.php:141 +#: libraries/messages.inc.php:697 server_privileges.php:141 #: server_privileges.php:400 server_privileges.php:464 msgid "Allows reading data." msgstr "Allows reading data." -#: libraries/messages.inc.php:702 server_privileges.php:154 +#: libraries/messages.inc.php:698 server_privileges.php:154 #: server_privileges.php:508 msgid "Gives access to the complete list of databases." msgstr "Gives access to the complete list of databases." -#: libraries/messages.inc.php:703 server_privileges.php:165 +#: libraries/messages.inc.php:699 server_privileges.php:165 #: server_privileges.php:167 server_privileges.php:480 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Allows performing SHOW CREATE VIEW queries." -#: libraries/messages.inc.php:704 server_privileges.php:148 +#: libraries/messages.inc.php:700 server_privileges.php:148 #: server_privileges.php:507 msgid "Allows shutting down the server." msgstr "Allows shutting down the server." -#: libraries/messages.inc.php:705 server_privileges.php:155 +#: libraries/messages.inc.php:701 server_privileges.php:155 #: server_privileges.php:504 msgid "" "Allows connecting, even if maximum number of connections is reached; " @@ -4755,55 +4755,55 @@ msgstr "" "required for most administrative operations like setting global variables or " "killing threads of other users." -#: libraries/messages.inc.php:706 server_privileges.php:162 +#: libraries/messages.inc.php:702 server_privileges.php:162 #: server_privileges.php:496 msgid "Allows creating and dropping triggers" msgstr "Allows creating and dropping triggers" -#: libraries/messages.inc.php:707 server_privileges.php:143 +#: libraries/messages.inc.php:703 server_privileges.php:143 #: server_privileges.php:406 server_privileges.php:466 msgid "Allows changing data." msgstr "Allows changing data." -#: libraries/messages.inc.php:708 server_privileges.php:221 +#: libraries/messages.inc.php:704 server_privileges.php:221 msgid "No privileges." msgstr "პრივილეგიები არაა." -#: libraries/messages.inc.php:710 server_privileges.php:1296 +#: libraries/messages.inc.php:706 server_privileges.php:1296 msgid "The privileges were reloaded successfully." msgstr "The privileges were reloaded successfully." -#: libraries/messages.inc.php:712 libraries/server_links.inc.php:80 +#: libraries/messages.inc.php:708 libraries/server_links.inc.php:80 msgid "Processes" msgstr "პროცესები" -#: libraries/messages.inc.php:714 main.php:187 +#: libraries/messages.inc.php:710 main.php:187 msgid "Protocol version" msgstr "ოქმის ვერსია" -#: libraries/messages.inc.php:715 +#: libraries/messages.inc.php:711 msgid "Put fields names in the first row" msgstr "Put fields names in the first row" -#: libraries/messages.inc.php:720 server_synchronize.php:1003 +#: libraries/messages.inc.php:716 server_synchronize.php:1003 msgid "The following queries have been executed:" msgstr "" -#: libraries/messages.inc.php:721 server_status.php:251 +#: libraries/messages.inc.php:717 server_status.php:251 msgid "Query cache" msgstr "Query cache" -#: libraries/messages.inc.php:722 libraries/navigation_header.inc.php:80 +#: libraries/messages.inc.php:718 libraries/navigation_header.inc.php:80 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 setup/lib/messages.inc.php:122 msgid "Query window" msgstr "Query window" -#: libraries/messages.inc.php:725 querywindow.php:109 querywindow.php:217 +#: libraries/messages.inc.php:721 querywindow.php:109 querywindow.php:217 msgid "SQL history" msgstr "SQL history" -#: libraries/messages.inc.php:726 server_status.php:490 +#: libraries/messages.inc.php:722 server_status.php:490 #, php-format msgid "" "Query statistics: Since its startup, %s queries have been sent to the " @@ -4812,139 +4812,139 @@ msgstr "" "Query statistics: Since its startup, %s queries have been sent to the " "server." -#: libraries/messages.inc.php:728 server_status.php:554 +#: libraries/messages.inc.php:724 server_status.php:554 msgid "Query type" msgstr "მოთხოვნის ტიპი" -#: libraries/messages.inc.php:729 libraries/sql_query_form.lib.php:381 +#: libraries/messages.inc.php:725 libraries/sql_query_form.lib.php:381 msgid "Do not overwrite this query from outside the window" msgstr "Do not overwrite this query from outside the window" -#: libraries/messages.inc.php:732 tbl_operations.php:663 +#: libraries/messages.inc.php:728 tbl_operations.php:663 msgid "Rebuild" msgstr "Rebuild" -#: libraries/messages.inc.php:733 server_status.php:394 +#: libraries/messages.inc.php:729 server_status.php:394 msgid "Received" msgstr "მიღებულია" -#: libraries/messages.inc.php:734 pmd_pdf.php:89 +#: libraries/messages.inc.php:730 pmd_pdf.php:89 msgid "recommended" msgstr "რეკომენდებული" -#: libraries/messages.inc.php:736 tbl_operations.php:702 +#: libraries/messages.inc.php:732 tbl_operations.php:702 msgid "Check referential integrity:" msgstr "Check referential integrity:" -#: libraries/messages.inc.php:740 pdf_schema.php:1032 pdf_schema.php:1141 +#: libraries/messages.inc.php:736 pdf_schema.php:1032 pdf_schema.php:1141 msgid "Relational schema" msgstr "Relational schema" -#: libraries/messages.inc.php:744 tbl_relation.php:399 +#: libraries/messages.inc.php:740 tbl_relation.php:399 msgid "Relations" msgstr "Relations" -#: libraries/messages.inc.php:745 tbl_structure.php:507 tbl_structure.php:509 +#: libraries/messages.inc.php:741 tbl_structure.php:507 tbl_structure.php:509 msgid "Relation view" msgstr "Relation view" -#: libraries/messages.inc.php:746 server_privileges.php:1246 +#: libraries/messages.inc.php:742 server_privileges.php:1246 msgid "Reloading the privileges" msgstr "Reloading the privileges" -#: libraries/messages.inc.php:747 navigation.php:66 navigation.php:67 +#: libraries/messages.inc.php:743 navigation.php:66 navigation.php:67 #: navigation.php:70 #, fuzzy msgid "Reload navigation frame" msgstr "Customize navigation frame" -#: libraries/messages.inc.php:748 pmd_general.php:80 +#: libraries/messages.inc.php:744 pmd_general.php:80 msgid "Reload" msgstr "გადატვირთვა" -#: libraries/messages.inc.php:749 libraries/server_synchronize.lib.php:1345 +#: libraries/messages.inc.php:745 libraries/server_synchronize.lib.php:1345 #: libraries/server_synchronize.lib.php:1371 #, fuzzy msgid "Remote server" msgstr "ახალი სერვერი" -#: libraries/messages.inc.php:750 +#: libraries/messages.inc.php:746 msgid "Remove CRLF characters within fields" msgstr "" -#: libraries/messages.inc.php:751 tbl_operations.php:676 +#: libraries/messages.inc.php:747 tbl_operations.php:676 msgid "Remove partitioning" msgstr "Remove partitioning" -#: libraries/messages.inc.php:752 server_privileges.php:1575 +#: libraries/messages.inc.php:748 server_privileges.php:1575 msgid "Remove selected users" msgstr "Remove selected users" -#: libraries/messages.inc.php:755 tbl_operations.php:338 +#: libraries/messages.inc.php:751 tbl_operations.php:338 msgid "Rename table to" msgstr "Rename table to" -#: libraries/messages.inc.php:756 view_operations.php:93 +#: libraries/messages.inc.php:752 view_operations.php:93 #, fuzzy msgid "Rename view to" msgstr "Rename table to" -#: libraries/messages.inc.php:757 tbl_operations.php:664 +#: libraries/messages.inc.php:753 tbl_operations.php:664 msgid "Repair" msgstr "აღდგენა" -#: libraries/messages.inc.php:759 +#: libraries/messages.inc.php:755 msgid "Replace NULL by" msgstr "Replace NULL by" -#: libraries/messages.inc.php:760 +#: libraries/messages.inc.php:756 msgid "Replace table data with file" msgstr "Replace table data with file" -#: libraries/messages.inc.php:761 server_replication.php:228 +#: libraries/messages.inc.php:757 server_replication.php:228 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: libraries/messages.inc.php:762 libraries/replication_gui.lib.php:236 +#: libraries/messages.inc.php:758 libraries/replication_gui.lib.php:236 #: server_replication.php:194 msgid "Add slave replication user" msgstr "" -#: libraries/messages.inc.php:763 server_replication.php:74 +#: libraries/messages.inc.php:759 server_replication.php:74 #, php-format msgid "Master server changed succesfully to %s" msgstr "" -#: libraries/messages.inc.php:764 server_replication.php:182 +#: libraries/messages.inc.php:760 server_replication.php:182 msgid "This server is configured as master in a replication process." msgstr "" -#: libraries/messages.inc.php:765 server_replication.php:322 +#: libraries/messages.inc.php:761 server_replication.php:322 #, fuzzy msgid "Control slave:" msgstr "Control user" -#: libraries/messages.inc.php:766 server_replication.php:65 +#: libraries/messages.inc.php:762 server_replication.php:65 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: libraries/messages.inc.php:767 server_replication.php:58 +#: libraries/messages.inc.php:763 server_replication.php:58 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: libraries/messages.inc.php:768 server_replication.php:221 +#: libraries/messages.inc.php:764 server_replication.php:221 msgid "Replicate all databases; Ignore:" msgstr "" -#: libraries/messages.inc.php:769 server_replication.php:222 +#: libraries/messages.inc.php:765 server_replication.php:222 msgid "Ignore all databases; Replicate:" msgstr "" -#: libraries/messages.inc.php:770 server_replication.php:218 +#: libraries/messages.inc.php:766 server_replication.php:218 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -4953,126 +4953,126 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: libraries/messages.inc.php:771 server_replication.php:217 +#: libraries/messages.inc.php:767 server_replication.php:217 #, fuzzy msgid "Master configuration" msgstr "სერვერის კონფიგურაცია" -#: libraries/messages.inc.php:772 server_replication.php:181 +#: libraries/messages.inc.php:768 server_replication.php:181 #: server_replication.php:209 #, fuzzy msgid "Master replication" msgstr "სერვერის კონფიგურაცია" -#: libraries/messages.inc.php:774 server_replication.php:230 +#: libraries/messages.inc.php:770 server_replication.php:230 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: libraries/messages.inc.php:775 server_replication.php:225 +#: libraries/messages.inc.php:771 server_replication.php:225 #, fuzzy msgid "Please select databases:" msgstr "გთხოვთ აირჩიოთ მონაცემთა ბაზა" -#: libraries/messages.inc.php:776 server_replication.php:210 +#: libraries/messages.inc.php:772 server_replication.php:210 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:188 +#: libraries/messages.inc.php:773 libraries/replication_gui.lib.php:188 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/messages.inc.php:778 server_replication.php:187 +#: libraries/messages.inc.php:774 server_replication.php:187 msgid "Show connected slaves" msgstr "" -#: libraries/messages.inc.php:779 libraries/messages.inc.php:885 +#: libraries/messages.inc.php:775 libraries/messages.inc.php:881 #: server_replication.php:184 server_status.php:281 #, fuzzy msgid "Show master status" msgstr "Show slave status" -#: libraries/messages.inc.php:780 server_replication.php:334 +#: libraries/messages.inc.php:776 server_replication.php:334 msgid "Skipping error(s) might lead into unsynchronized master and slave!" msgstr "" -#: libraries/messages.inc.php:781 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:51 #: server_replication.php:347 msgid "Change or reconfigure master server" msgstr "" -#: libraries/messages.inc.php:782 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:778 libraries/replication_gui.lib.php:51 #, fuzzy msgid "Slave configuration" msgstr "სერვერის კონფიგურაცია" -#: libraries/messages.inc.php:783 server_replication.php:305 +#: libraries/messages.inc.php:779 server_replication.php:305 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: libraries/messages.inc.php:784 server_replication.php:332 +#: libraries/messages.inc.php:780 server_replication.php:332 msgid "Error management:" msgstr "" -#: libraries/messages.inc.php:785 server_replication.php:328 +#: libraries/messages.inc.php:781 server_replication.php:328 #, php-format msgid "IO Thread %s only" msgstr "" -#: libraries/messages.inc.php:786 server_replication.php:296 +#: libraries/messages.inc.php:782 server_replication.php:296 msgid "Slave IO Thread not running!" msgstr "" -#: libraries/messages.inc.php:787 server_replication.php:355 +#: libraries/messages.inc.php:783 server_replication.php:355 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/messages.inc.php:788 server_replication.php:326 +#: libraries/messages.inc.php:784 server_replication.php:326 msgid "Reset slave" msgstr "" -#: libraries/messages.inc.php:789 server_replication.php:308 +#: libraries/messages.inc.php:785 server_replication.php:308 msgid "See slave status table" msgstr "" -#: libraries/messages.inc.php:790 server_replication.php:336 +#: libraries/messages.inc.php:786 server_replication.php:336 msgid "Skip current error" msgstr "" -#: libraries/messages.inc.php:791 server_replication.php:340 +#: libraries/messages.inc.php:787 server_replication.php:340 msgid "errors." msgstr "" -#: libraries/messages.inc.php:792 server_replication.php:337 +#: libraries/messages.inc.php:788 server_replication.php:337 msgid "Skip next" msgstr "" -#: libraries/messages.inc.php:793 server_replication.php:248 +#: libraries/messages.inc.php:789 server_replication.php:248 #, fuzzy msgid "Slave replication" msgstr "სერვერის კონფიგურაცია" -#: libraries/messages.inc.php:794 server_replication.php:293 +#: libraries/messages.inc.php:790 server_replication.php:293 msgid "Slave SQL Thread not running!" msgstr "" -#: libraries/messages.inc.php:795 server_replication.php:327 +#: libraries/messages.inc.php:791 server_replication.php:327 #, php-format msgid "SQL Thread %s only" msgstr "" -#: libraries/messages.inc.php:796 +#: libraries/messages.inc.php:792 #, php-format msgid "" "This MySQL server works as %s in replication process. For further " @@ -5080,162 +5080,162 @@ msgid "" "\"#replication\">replication section." msgstr "" -#: libraries/messages.inc.php:797 +#: libraries/messages.inc.php:793 #, fuzzy msgid "Master status" msgstr "Show slave status" -#: libraries/messages.inc.php:798 server_status.php:721 +#: libraries/messages.inc.php:794 server_status.php:721 #, fuzzy msgid "Replication status" msgstr "რეპლიკაცია" -#: libraries/messages.inc.php:799 +#: libraries/messages.inc.php:795 #, fuzzy msgid "Slave status" msgstr "Show slave status" -#: libraries/messages.inc.php:800 server_replication.php:311 +#: libraries/messages.inc.php:796 server_replication.php:311 msgid "Synchronize databases with master" msgstr "" -#: libraries/messages.inc.php:801 server_replication.php:71 +#: libraries/messages.inc.php:797 server_replication.php:71 msgid "Unable to change master" msgstr "" -#: libraries/messages.inc.php:802 server_replication.php:51 +#: libraries/messages.inc.php:798 server_replication.php:51 msgid "Unknown error" msgstr "" -#: libraries/messages.inc.php:803 main.php:163 pdf_pages.php:344 +#: libraries/messages.inc.php:799 main.php:163 pdf_pages.php:344 #: setup/lib/FormDisplay.tpl.php:216 tbl_change.php:1175 msgid "Reset" msgstr "დაბრუნება" -#: libraries/messages.inc.php:804 server_privileges.php:591 +#: libraries/messages.inc.php:800 server_privileges.php:591 msgid "Resource limits" msgstr "Resource limits" -#: libraries/messages.inc.php:805 tbl_change.php:1209 +#: libraries/messages.inc.php:801 tbl_change.php:1209 #, php-format msgid "Restart insertion with %s rows" msgstr "Restart insertion with %s rows" -#: libraries/messages.inc.php:807 server_privileges.php:1578 +#: libraries/messages.inc.php:803 server_privileges.php:1578 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Revoke all active privileges from the users and delete them afterwards." -#: libraries/messages.inc.php:808 server_privileges.php:1176 +#: libraries/messages.inc.php:804 server_privileges.php:1176 #, php-format msgid "You have revoked the privileges for %s" msgstr "You have revoked the privileges for %s" -#: libraries/messages.inc.php:809 server_privileges.php:1333 +#: libraries/messages.inc.php:805 server_privileges.php:1333 msgid "Revoke" msgstr "Revoke" -#: libraries/messages.inc.php:810 libraries/mysql_charsets.lib.php:280 +#: libraries/messages.inc.php:806 libraries/mysql_charsets.lib.php:280 msgid "Romanian" msgstr "რუმინული" -#: libraries/messages.inc.php:813 tbl_printview.php:404 tbl_structure.php:786 +#: libraries/messages.inc.php:809 tbl_printview.php:404 tbl_structure.php:786 msgid "Row length" msgstr "სტრიქონის სიგრძე" -#: libraries/messages.inc.php:815 tbl_printview.php:414 tbl_structure.php:794 +#: libraries/messages.inc.php:811 tbl_printview.php:414 tbl_structure.php:794 msgid " Row size " msgstr " სტრიქონის ზომა " -#: libraries/messages.inc.php:821 tbl_printview.php:366 tbl_structure.php:726 +#: libraries/messages.inc.php:817 tbl_printview.php:366 tbl_structure.php:726 msgid "Row Statistics" msgstr "Row Statistics" -#: libraries/messages.inc.php:822 +#: libraries/messages.inc.php:818 #, php-format msgid "running on %s" msgstr "გაშვებულია სერვერზე %s" -#: libraries/messages.inc.php:824 libraries/sql_query_form.lib.php:223 +#: libraries/messages.inc.php:820 libraries/sql_query_form.lib.php:223 #, php-format msgid "Run SQL query/queries on server %s" msgstr "Run SQL query/queries on server %s" -#: libraries/messages.inc.php:825 libraries/sql_query_form.lib.php:240 +#: libraries/messages.inc.php:821 libraries/sql_query_form.lib.php:240 #: libraries/sql_query_form.lib.php:265 #, php-format msgid "Run SQL query/queries on database %s" msgstr "Run SQL query/queries on database %s" -#: libraries/messages.inc.php:826 libraries/mysql_charsets.lib.php:337 +#: libraries/messages.inc.php:822 libraries/mysql_charsets.lib.php:337 msgid "Russian" msgstr "რუსული" -#: libraries/messages.inc.php:829 pmd_general.php:68 +#: libraries/messages.inc.php:825 pmd_general.php:68 msgid "Save position" msgstr "მდებარეობის შენახვა" -#: libraries/messages.inc.php:830 libraries/tbl_properties.inc.php:776 +#: libraries/messages.inc.php:826 libraries/tbl_properties.inc.php:776 #: pdf_pages.php:484 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:214 setup/lib/FormDisplay.tpl.php:215 #: tbl_change.php:1126 tbl_indexes.php:248 tbl_relation.php:566 msgid "Save" msgstr "შენახვა" -#: libraries/messages.inc.php:831 +#: libraries/messages.inc.php:827 msgid "The scale factor is too small to fit the schema on one page" msgstr "The scale factor is too small to fit the schema on one page" -#: libraries/messages.inc.php:843 main.php:298 +#: libraries/messages.inc.php:839 main.php:298 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "The configuration file now needs a secret passphrase (blowfish_secret)." -#: libraries/messages.inc.php:844 navigation.php:353 navigation.php:516 +#: libraries/messages.inc.php:840 navigation.php:353 navigation.php:516 msgid "Please select a database" msgstr "გთხოვთ აირჩიოთ მონაცემთა ბაზა" -#: libraries/messages.inc.php:846 server_binlog.php:120 +#: libraries/messages.inc.php:842 server_binlog.php:120 msgid "Select binary log to view" msgstr "აირჩიეთ საჩვენებელი ორობითი ჟურნალი" -#: libraries/messages.inc.php:847 tbl_select.php:270 +#: libraries/messages.inc.php:843 tbl_select.php:270 msgid "Select fields (at least one):" msgstr "Select fields (at least one):" -#: libraries/messages.inc.php:851 pdf_pages.php:320 +#: libraries/messages.inc.php:847 pdf_pages.php:320 msgid "Select Tables" msgstr "ცხრილების არჩევა" -#: libraries/messages.inc.php:853 server_status.php:404 +#: libraries/messages.inc.php:849 server_status.php:404 msgid "Sent" msgstr "გაიგზავნა" -#: libraries/messages.inc.php:857 libraries/select_server.lib.php:45 +#: libraries/messages.inc.php:853 libraries/select_server.lib.php:45 #: setup/frames/index.inc.php:97 setup/lib/messages.inc.php:115 msgid "Servers" msgstr "სერვერები" -#: libraries/messages.inc.php:858 server_status.php:255 +#: libraries/messages.inc.php:854 server_status.php:255 msgid "Delayed inserts" msgstr "Delayed inserts" -#: libraries/messages.inc.php:859 server_status.php:46 +#: libraries/messages.inc.php:855 server_status.php:46 msgid "Runtime Information" msgstr "Runtime Information" -#: libraries/messages.inc.php:860 server_status.php:350 +#: libraries/messages.inc.php:856 server_status.php:350 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "MySQL სერვერის მუშაობის პერიოდი - %s. გაშვების დრო - %s." -#: libraries/messages.inc.php:861 libraries/server_links.inc.php:53 +#: libraries/messages.inc.php:857 libraries/server_links.inc.php:53 #: server_engines.php:112 server_engines.php:116 server_status.php:304 #: test/theme.php:105 msgid "Variables" msgstr "ცვლადები" -#: libraries/messages.inc.php:862 server_status.php:383 +#: libraries/messages.inc.php:858 server_status.php:383 msgid "" "Server traffic: These tables show the network traffic statistics of " "this MySQL server since its startup." @@ -5243,11 +5243,11 @@ msgstr "" "Server traffic: These tables show the network traffic statistics of " "this MySQL server since its startup." -#: libraries/messages.inc.php:863 server_variables.php:35 +#: libraries/messages.inc.php:859 server_variables.php:35 msgid "Server variables and settings" msgstr "სერვერის ცვლადები და პარამეტრები" -#: libraries/messages.inc.php:865 main.php:290 +#: libraries/messages.inc.php:861 main.php:290 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -5259,7 +5259,7 @@ msgstr "" "validity configured in phpMyAdmin, because of this, your login will expire " "sooner than configured in phpMyAdmin." -#: libraries/messages.inc.php:866 +#: libraries/messages.inc.php:862 msgid "" "Cannot start session without errors, please check errors given in your PHP " "and/or webserver log file and configure your PHP installation properly." @@ -5267,11 +5267,11 @@ msgstr "" "Cannot start session without errors, please check errors given in your PHP " "and/or webserver log file and configure your PHP installation properly." -#: libraries/messages.inc.php:867 server_variables.php:55 +#: libraries/messages.inc.php:863 server_variables.php:55 msgid "Session value" msgstr "სესიის მნიშვნელობა" -#: libraries/messages.inc.php:868 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:864 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 " @@ -5283,45 +5283,45 @@ msgstr "" "a single quote (\"'\") amongst those values, precede it with a backslash " "(for example '\\\\xyz' or 'a\\'b')." -#: libraries/messages.inc.php:876 server_binlog.php:192 server_binlog.php:195 +#: libraries/messages.inc.php:872 server_binlog.php:192 server_binlog.php:195 #: server_processlist.php:49 server_processlist.php:51 msgid "Show Full Queries" msgstr "Show Full Queries" -#: libraries/messages.inc.php:878 pmd_general.php:64 +#: libraries/messages.inc.php:874 pmd_general.php:64 msgid "Show/Hide left menu" msgstr "Show/Hide left menu" -#: libraries/messages.inc.php:880 sql.php:513 +#: libraries/messages.inc.php:876 sql.php:513 msgid "Showing as PHP code" msgstr "PHP კოდის სახით ჩვენება" -#: libraries/messages.inc.php:882 sql.php:516 tbl_replace.php:360 +#: libraries/messages.inc.php:878 sql.php:516 tbl_replace.php:360 msgid "Showing SQL query" msgstr "Showing SQL query" -#: libraries/messages.inc.php:883 tbl_change.php:1132 +#: libraries/messages.inc.php:879 tbl_change.php:1132 #, fuzzy msgid "Show insert query" msgstr "Showing SQL query" -#: libraries/messages.inc.php:886 server_status.php:273 +#: libraries/messages.inc.php:882 server_status.php:273 msgid "Show open tables" msgstr "Show open tables" -#: libraries/messages.inc.php:887 main.php:219 +#: libraries/messages.inc.php:883 main.php:219 msgid "Show PHP information" msgstr "PHP-ის ინფორმაციის ჩვენება" -#: libraries/messages.inc.php:889 server_status.php:278 +#: libraries/messages.inc.php:885 server_status.php:278 msgid "Show slave hosts" msgstr "Show slave hosts" -#: libraries/messages.inc.php:890 server_status.php:284 +#: libraries/messages.inc.php:886 server_status.php:284 msgid "Show slave status" msgstr "Show slave status" -#: libraries/messages.inc.php:891 +#: libraries/messages.inc.php:887 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -5331,11 +5331,11 @@ msgstr "" "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." -#: libraries/messages.inc.php:892 +#: libraries/messages.inc.php:888 msgid "The number of transactions that used the temporary binary log cache." msgstr "The number of transactions that used the temporary binary log cache." -#: libraries/messages.inc.php:893 +#: libraries/messages.inc.php:889 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -5347,11 +5347,11 @@ msgstr "" "to increase the tmp_table_size value to cause temporary tables to be memory-" "based instead of disk-based." -#: libraries/messages.inc.php:894 +#: libraries/messages.inc.php:890 msgid "How many temporary files mysqld has created." msgstr "How many temporary files mysqld has created." -#: libraries/messages.inc.php:895 +#: libraries/messages.inc.php:891 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -5359,7 +5359,7 @@ msgstr "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." -#: libraries/messages.inc.php:896 +#: libraries/messages.inc.php:892 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -5367,7 +5367,7 @@ msgstr "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." -#: libraries/messages.inc.php:897 +#: libraries/messages.inc.php:893 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -5375,23 +5375,23 @@ msgstr "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." -#: libraries/messages.inc.php:898 +#: libraries/messages.inc.php:894 msgid "The number of INSERT DELAYED rows written." msgstr "The number of INSERT DELAYED rows written." -#: libraries/messages.inc.php:899 +#: libraries/messages.inc.php:895 msgid "The number of executed FLUSH statements." msgstr "The number of executed FLUSH statements." -#: libraries/messages.inc.php:900 +#: libraries/messages.inc.php:896 msgid "The number of internal COMMIT statements." msgstr "The number of internal COMMIT statements." -#: libraries/messages.inc.php:901 +#: libraries/messages.inc.php:897 msgid "The number of times a row was deleted from a table." msgstr "The number of times a row was deleted from a table." -#: libraries/messages.inc.php:902 +#: libraries/messages.inc.php:898 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -5401,96 +5401,96 @@ msgstr "" "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." +#: libraries/messages.inc.php:899 +msgid "" +"The number of times the first entry was read from an index. If this is high, " +"it suggests that the server is doing a lot of full index scans; for example, " +"SELECT col1 FROM foo, assuming that col1 is indexed." +msgstr "" +"The number of times the first entry was read from an index. If this is high, " +"it suggests that the server is doing a lot of full index scans; for example, " +"SELECT col1 FROM foo, assuming that col1 is indexed." + +#: libraries/messages.inc.php:900 +msgid "" +"The number of requests to read a row based on a key. If this is high, it is " +"a good indication that your queries and tables are properly indexed." +msgstr "" +"The number of requests to read a row based on a key. If this is high, it is " +"a good indication that your queries and tables are properly indexed." + +#: libraries/messages.inc.php:901 +msgid "" +"The number of requests to read the next row in key order. This is " +"incremented if you are querying an index column with a range constraint or " +"if you are doing an index scan." +msgstr "" +"The number of requests to read the next row in key order. This is " +"incremented if you are querying an index column with a range constraint or " +"if you are doing an index scan." + +#: libraries/messages.inc.php:902 +msgid "" +"The number of requests to read the previous row in key order. This read " +"method is mainly used to optimize ORDER BY ... DESC." +msgstr "" +"The number of requests to read the previous row in key order. This read " +"method is mainly used to optimize ORDER BY ... DESC." + #: libraries/messages.inc.php:903 msgid "" -"The number of times the first entry was read from an index. If this is high, " -"it suggests that the server is doing a lot of full index scans; for example, " -"SELECT col1 FROM foo, assuming that col1 is indexed." +"The number of requests to read a row based on a fixed position. This is high " +"if you are doing a lot of queries that require sorting of the result. You " +"probably have a lot of queries that require MySQL to scan whole tables or " +"you have joins that don't use keys properly." msgstr "" -"The number of times the first entry was read from an index. If this is high, " -"it suggests that the server is doing a lot of full index scans; for example, " -"SELECT col1 FROM foo, assuming that col1 is indexed." +"The number of requests to read a row based on a fixed position. This is high " +"if you are doing a lot of queries that require sorting of the result. You " +"probably have a lot of queries that require MySQL to scan whole tables or " +"you have joins that don't use keys properly." #: libraries/messages.inc.php:904 msgid "" -"The number of requests to read a row based on a key. If this is high, it is " -"a good indication that your queries and tables are properly indexed." +"The number of requests to read the next row in the data file. This is high " +"if you are doing a lot of table scans. Generally this suggests that your " +"tables are not properly indexed or that your queries are not written to take " +"advantage of the indexes you have." msgstr "" -"The number of requests to read a row based on a key. If this is high, it is " -"a good indication that your queries and tables are properly indexed." +"The number of requests to read the next row in the data file. This is high " +"if you are doing a lot of table scans. Generally this suggests that your " +"tables are not properly indexed or that your queries are not written to take " +"advantage of the indexes you have." #: libraries/messages.inc.php:905 -msgid "" -"The number of requests to read the next row in key order. This is " -"incremented if you are querying an index column with a range constraint or " -"if you are doing an index scan." -msgstr "" -"The number of requests to read the next row in key order. This is " -"incremented if you are querying an index column with a range constraint or " -"if you are doing an index scan." - -#: libraries/messages.inc.php:906 -msgid "" -"The number of requests to read the previous row in key order. This read " -"method is mainly used to optimize ORDER BY ... DESC." -msgstr "" -"The number of requests to read the previous row in key order. This read " -"method is mainly used to optimize ORDER BY ... DESC." - -#: libraries/messages.inc.php:907 -msgid "" -"The number of requests to read a row based on a fixed position. This is high " -"if you are doing a lot of queries that require sorting of the result. You " -"probably have a lot of queries that require MySQL to scan whole tables or " -"you have joins that don't use keys properly." -msgstr "" -"The number of requests to read a row based on a fixed position. This is high " -"if you are doing a lot of queries that require sorting of the result. You " -"probably have a lot of queries that require MySQL to scan whole tables or " -"you have joins that don't use keys properly." - -#: libraries/messages.inc.php:908 -msgid "" -"The number of requests to read the next row in the data file. This is high " -"if you are doing a lot of table scans. Generally this suggests that your " -"tables are not properly indexed or that your queries are not written to take " -"advantage of the indexes you have." -msgstr "" -"The number of requests to read the next row in the data file. This is high " -"if you are doing a lot of table scans. Generally this suggests that your " -"tables are not properly indexed or that your queries are not written to take " -"advantage of the indexes you have." - -#: libraries/messages.inc.php:909 msgid "The number of internal ROLLBACK statements." msgstr "The number of internal ROLLBACK statements." -#: libraries/messages.inc.php:910 +#: libraries/messages.inc.php:906 msgid "The number of requests to update a row in a table." msgstr "The number of requests to update a row in a table." -#: libraries/messages.inc.php:911 +#: libraries/messages.inc.php:907 msgid "The number of requests to insert a row in a table." msgstr "The number of requests to insert a row in a table." -#: libraries/messages.inc.php:912 +#: libraries/messages.inc.php:908 msgid "The number of pages containing data (dirty or clean)." msgstr "The number of pages containing data (dirty or clean)." -#: libraries/messages.inc.php:913 +#: libraries/messages.inc.php:909 msgid "The number of pages currently dirty." msgstr "The number of pages currently dirty." -#: libraries/messages.inc.php:914 +#: libraries/messages.inc.php:910 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" "The number of buffer pool pages that have been requested to be flushed." -#: libraries/messages.inc.php:915 +#: libraries/messages.inc.php:911 msgid "The number of free pages." msgstr "The number of free pages." -#: libraries/messages.inc.php:916 +#: libraries/messages.inc.php:912 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -5500,7 +5500,7 @@ msgstr "" "being read or written or that can't be flushed or removed for some other " "reason." -#: libraries/messages.inc.php:917 +#: libraries/messages.inc.php:913 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -5512,11 +5512,11 @@ msgstr "" "be calculated as Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: libraries/messages.inc.php:918 +#: libraries/messages.inc.php:914 msgid "Total size of buffer pool, in pages." msgstr "Total size of buffer pool, in pages." -#: libraries/messages.inc.php:919 +#: libraries/messages.inc.php:915 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -5524,7 +5524,7 @@ msgstr "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." -#: libraries/messages.inc.php:920 +#: libraries/messages.inc.php:916 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -5532,11 +5532,11 @@ msgstr "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." -#: libraries/messages.inc.php:921 +#: libraries/messages.inc.php:917 msgid "The number of logical read requests InnoDB has done." msgstr "The number of logical read requests InnoDB has done." -#: libraries/messages.inc.php:922 +#: libraries/messages.inc.php:918 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -5544,7 +5544,7 @@ msgstr "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." -#: libraries/messages.inc.php:923 +#: libraries/messages.inc.php:919 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -5558,51 +5558,51 @@ msgstr "" "counter counts instances of these waits. If the buffer pool size was set " "properly, this value should be small." -#: libraries/messages.inc.php:924 +#: libraries/messages.inc.php:920 msgid "The number writes done to the InnoDB buffer pool." msgstr "The number writes done to the InnoDB buffer pool." -#: libraries/messages.inc.php:925 +#: libraries/messages.inc.php:921 msgid "The number of fsync() operations so far." msgstr "The number of fsync() operations so far." -#: libraries/messages.inc.php:926 +#: libraries/messages.inc.php:922 msgid "The current number of pending fsync() operations." msgstr "The current number of pending fsync() operations." -#: libraries/messages.inc.php:927 +#: libraries/messages.inc.php:923 msgid "The current number of pending reads." msgstr "The current number of pending reads." -#: libraries/messages.inc.php:928 +#: libraries/messages.inc.php:924 msgid "The current number of pending writes." msgstr "The current number of pending writes." -#: libraries/messages.inc.php:929 +#: libraries/messages.inc.php:925 msgid "The amount of data read so far, in bytes." msgstr "The amount of data read so far, in bytes." -#: libraries/messages.inc.php:930 +#: libraries/messages.inc.php:926 msgid "The total number of data reads." msgstr "The total number of data reads." -#: libraries/messages.inc.php:931 +#: libraries/messages.inc.php:927 msgid "The total number of data writes." msgstr "The total number of data writes." -#: libraries/messages.inc.php:932 +#: libraries/messages.inc.php:928 msgid "The amount of data written so far, in bytes." msgstr "The amount of data written so far, in bytes." -#: libraries/messages.inc.php:933 +#: libraries/messages.inc.php:929 msgid "The number of pages that have been written for doublewrite operations." msgstr "The number of pages that have been written for doublewrite operations." -#: libraries/messages.inc.php:934 +#: libraries/messages.inc.php:930 msgid "The number of doublewrite operations that have been performed." msgstr "The number of doublewrite operations that have been performed." -#: libraries/messages.inc.php:935 +#: libraries/messages.inc.php:931 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -5610,35 +5610,35 @@ msgstr "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." -#: libraries/messages.inc.php:936 +#: libraries/messages.inc.php:932 msgid "The number of log write requests." msgstr "The number of log write requests." -#: libraries/messages.inc.php:937 +#: libraries/messages.inc.php:933 msgid "The number of physical writes to the log file." msgstr "The number of physical writes to the log file." -#: libraries/messages.inc.php:938 +#: libraries/messages.inc.php:934 msgid "The number of fsync() writes done to the log file." msgstr "The number of fsync() writes done to the log file." -#: libraries/messages.inc.php:939 +#: libraries/messages.inc.php:935 msgid "The number of pending log file fsyncs." msgstr "The number of pending log file fsyncs." -#: libraries/messages.inc.php:940 +#: libraries/messages.inc.php:936 msgid "Pending log file writes." msgstr "Pending log file writes." -#: libraries/messages.inc.php:941 +#: libraries/messages.inc.php:937 msgid "The number of bytes written to the log file." msgstr "The number of bytes written to the log file." -#: libraries/messages.inc.php:942 +#: libraries/messages.inc.php:938 msgid "The number of pages created." msgstr "The number of pages created." -#: libraries/messages.inc.php:943 +#: libraries/messages.inc.php:939 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -5646,51 +5646,51 @@ msgstr "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." -#: libraries/messages.inc.php:944 +#: libraries/messages.inc.php:940 msgid "The number of pages read." msgstr "The number of pages read." -#: libraries/messages.inc.php:945 +#: libraries/messages.inc.php:941 msgid "The number of pages written." msgstr "The number of pages written." -#: libraries/messages.inc.php:946 +#: libraries/messages.inc.php:942 msgid "The number of row locks currently being waited for." msgstr "The number of row locks currently being waited for." -#: libraries/messages.inc.php:947 +#: libraries/messages.inc.php:943 msgid "The average time to acquire a row lock, in milliseconds." msgstr "The average time to acquire a row lock, in milliseconds." -#: libraries/messages.inc.php:948 +#: libraries/messages.inc.php:944 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "The total time spent in acquiring row locks, in milliseconds." -#: libraries/messages.inc.php:949 +#: libraries/messages.inc.php:945 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "The maximum time to acquire a row lock, in milliseconds." -#: libraries/messages.inc.php:950 +#: libraries/messages.inc.php:946 msgid "The number of times a row lock had to be waited for." msgstr "The number of times a row lock had to be waited for." -#: libraries/messages.inc.php:951 +#: libraries/messages.inc.php:947 msgid "The number of rows deleted from InnoDB tables." msgstr "The number of rows deleted from InnoDB tables." -#: libraries/messages.inc.php:952 +#: libraries/messages.inc.php:948 msgid "The number of rows inserted in InnoDB tables." msgstr "The number of rows inserted in InnoDB tables." -#: libraries/messages.inc.php:953 +#: libraries/messages.inc.php:949 msgid "The number of rows read from InnoDB tables." msgstr "The number of rows read from InnoDB tables." -#: libraries/messages.inc.php:954 +#: libraries/messages.inc.php:950 msgid "The number of rows updated in InnoDB tables." msgstr "The number of rows updated in InnoDB tables." -#: libraries/messages.inc.php:955 +#: libraries/messages.inc.php:951 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -5698,7 +5698,7 @@ msgstr "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." -#: libraries/messages.inc.php:956 +#: libraries/messages.inc.php:952 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -5706,7 +5706,7 @@ msgstr "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." -#: libraries/messages.inc.php:957 +#: libraries/messages.inc.php:953 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -5716,11 +5716,11 @@ msgstr "" "that indicates the maximum number of blocks that have ever been in use at " "one time." -#: libraries/messages.inc.php:958 +#: libraries/messages.inc.php:954 msgid "The number of requests to read a key block from the cache." msgstr "The number of requests to read a key block from the cache." -#: libraries/messages.inc.php:959 +#: libraries/messages.inc.php:955 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -5730,15 +5730,15 @@ msgstr "" "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." -#: libraries/messages.inc.php:960 +#: libraries/messages.inc.php:956 msgid "The number of requests to write a key block to the cache." msgstr "The number of requests to write a key block to the cache." -#: libraries/messages.inc.php:961 +#: libraries/messages.inc.php:957 msgid "The number of physical writes of a key block to disk." msgstr "The number of physical writes of a key block to disk." -#: libraries/messages.inc.php:962 +#: libraries/messages.inc.php:958 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -5748,11 +5748,11 @@ msgstr "" "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." -#: libraries/messages.inc.php:963 +#: libraries/messages.inc.php:959 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "The number of rows waiting to be written in INSERT DELAYED queues." -#: libraries/messages.inc.php:964 +#: libraries/messages.inc.php:960 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -5760,35 +5760,35 @@ msgstr "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." -#: libraries/messages.inc.php:965 +#: libraries/messages.inc.php:961 msgid "The number of files that are open." msgstr "The number of files that are open." -#: libraries/messages.inc.php:966 +#: libraries/messages.inc.php:962 msgid "The number of streams that are open (used mainly for logging)." msgstr "The number of streams that are open (used mainly for logging)." -#: libraries/messages.inc.php:967 +#: libraries/messages.inc.php:963 msgid "The number of tables that are open." msgstr "The number of tables that are open." -#: libraries/messages.inc.php:968 +#: libraries/messages.inc.php:964 msgid "The number of free memory blocks in query cache." msgstr "The number of free memory blocks in query cache." -#: libraries/messages.inc.php:969 +#: libraries/messages.inc.php:965 msgid "The amount of free memory for query cache." msgstr "The amount of free memory for query cache." -#: libraries/messages.inc.php:970 +#: libraries/messages.inc.php:966 msgid "The number of cache hits." msgstr "The number of cache hits." -#: libraries/messages.inc.php:971 +#: libraries/messages.inc.php:967 msgid "The number of queries added to the cache." msgstr "The number of queries added to the cache." -#: libraries/messages.inc.php:972 +#: libraries/messages.inc.php:968 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -5800,7 +5800,7 @@ msgstr "" "cache size. The query cache uses a least recently used (LRU) strategy to " "decide which queries to remove from the cache." -#: libraries/messages.inc.php:973 +#: libraries/messages.inc.php:969 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -5808,24 +5808,24 @@ msgstr "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." -#: libraries/messages.inc.php:974 +#: libraries/messages.inc.php:970 msgid "The number of queries registered in the cache." msgstr "The number of queries registered in the cache." -#: libraries/messages.inc.php:975 +#: libraries/messages.inc.php:971 msgid "The total number of blocks in the query cache." msgstr "The total number of blocks in the query cache." -#: libraries/messages.inc.php:976 +#: libraries/messages.inc.php:972 msgctxt "$strShowStatusReset" msgid "Reset" msgstr "Reset" -#: libraries/messages.inc.php:977 +#: libraries/messages.inc.php:973 msgid "The status of failsafe replication (not yet implemented)." msgstr "The status of failsafe replication (not yet implemented)." -#: libraries/messages.inc.php:978 +#: libraries/messages.inc.php:974 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -5833,11 +5833,11 @@ msgstr "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." -#: libraries/messages.inc.php:979 +#: libraries/messages.inc.php:975 msgid "The number of joins that used a range search on a reference table." msgstr "The number of joins that used a range search on a reference table." -#: libraries/messages.inc.php:980 +#: libraries/messages.inc.php:976 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -5845,7 +5845,7 @@ msgstr "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" -#: libraries/messages.inc.php:981 +#: libraries/messages.inc.php:977 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -5853,15 +5853,15 @@ msgstr "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" -#: libraries/messages.inc.php:982 +#: libraries/messages.inc.php:978 msgid "The number of joins that did a full scan of the first table." msgstr "The number of joins that did a full scan of the first table." -#: libraries/messages.inc.php:983 +#: libraries/messages.inc.php:979 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "The number of temporary tables currently open by the slave SQL thread." -#: libraries/messages.inc.php:984 +#: libraries/messages.inc.php:980 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -5869,11 +5869,11 @@ msgstr "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." -#: libraries/messages.inc.php:985 +#: libraries/messages.inc.php:981 msgid "This is ON if this server is a slave that is connected to a master." msgstr "This is ON if this server is a slave that is connected to a master." -#: libraries/messages.inc.php:986 +#: libraries/messages.inc.php:982 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -5881,13 +5881,13 @@ msgstr "" "The number of threads that have taken more than slow_launch_time seconds to " "create." -#: libraries/messages.inc.php:987 +#: libraries/messages.inc.php:983 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "The number of queries that have taken more than long_query_time seconds." -#: libraries/messages.inc.php:988 +#: libraries/messages.inc.php:984 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -5897,23 +5897,23 @@ msgstr "" "is large, you should consider increasing the value of the sort_buffer_size " "system variable." -#: libraries/messages.inc.php:989 +#: libraries/messages.inc.php:985 msgid "The number of sorts that were done with ranges." msgstr "The number of sorts that were done with ranges." -#: libraries/messages.inc.php:990 +#: libraries/messages.inc.php:986 msgid "The number of sorted rows." msgstr "The number of sorted rows." -#: libraries/messages.inc.php:991 +#: libraries/messages.inc.php:987 msgid "The number of sorts that were done by scanning the table." msgstr "The number of sorts that were done by scanning the table." -#: libraries/messages.inc.php:992 +#: libraries/messages.inc.php:988 msgid "The number of times that a table lock was acquired immediately." msgstr "The number of times that a table lock was acquired immediately." -#: libraries/messages.inc.php:993 +#: libraries/messages.inc.php:989 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -5925,7 +5925,7 @@ msgstr "" "should first optimize your queries, and then either split your table or " "tables or use replication." -#: libraries/messages.inc.php:994 +#: libraries/messages.inc.php:990 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -5935,11 +5935,11 @@ msgstr "" "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." -#: libraries/messages.inc.php:995 +#: libraries/messages.inc.php:991 msgid "The number of currently open connections." msgstr "The number of currently open connections." -#: libraries/messages.inc.php:996 +#: libraries/messages.inc.php:992 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -5951,74 +5951,74 @@ msgstr "" "doesn't give a notable performance improvement if you have a good thread " "implementation.)" -#: libraries/messages.inc.php:997 +#: libraries/messages.inc.php:993 msgid "The number of threads that are not sleeping." msgstr "The number of threads that are not sleeping." -#: libraries/messages.inc.php:999 tbl_printview.php:75 +#: libraries/messages.inc.php:995 tbl_printview.php:75 msgid "Show tables" msgstr "ცხრილების ჩვენება" -#: libraries/messages.inc.php:1000 libraries/sql_query_form.lib.php:396 +#: libraries/messages.inc.php:996 libraries/sql_query_form.lib.php:396 msgid " Show this query here again " msgstr " Show this query here again " -#: libraries/messages.inc.php:1001 libraries/mysql_charsets.lib.php:217 +#: libraries/messages.inc.php:997 libraries/mysql_charsets.lib.php:217 #: libraries/mysql_charsets.lib.php:342 msgid "Simplified Chinese" msgstr "Simplified Chinese" -#: libraries/messages.inc.php:1002 tbl_operations.php:258 +#: libraries/messages.inc.php:998 tbl_operations.php:258 msgid "(singly)" msgstr "(singly)" -#: libraries/messages.inc.php:1005 libraries/replication_gui.lib.php:52 +#: libraries/messages.inc.php:1001 libraries/replication_gui.lib.php:52 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" msgstr "" -#: libraries/messages.inc.php:1006 libraries/mysql_charsets.lib.php:283 +#: libraries/messages.inc.php:1002 libraries/mysql_charsets.lib.php:283 msgid "Slovak" msgstr "სლოვაკური" -#: libraries/messages.inc.php:1007 libraries/mysql_charsets.lib.php:286 +#: libraries/messages.inc.php:1003 libraries/mysql_charsets.lib.php:286 msgid "Slovenian" msgstr "სლოვენური" -#: libraries/messages.inc.php:1008 pmd_general.php:95 +#: libraries/messages.inc.php:1004 pmd_general.php:95 msgid "Small/Big All" msgstr "Small/Big All" -#: libraries/messages.inc.php:1009 pmd_general.php:91 +#: libraries/messages.inc.php:1005 pmd_general.php:91 msgid "Snap to grid" msgstr "Snap to grid" -#: libraries/messages.inc.php:1011 server_synchronize.php:1167 +#: libraries/messages.inc.php:1007 server_synchronize.php:1167 msgid "Socket" msgstr "" -#: libraries/messages.inc.php:1013 server_status.php:259 +#: libraries/messages.inc.php:1009 server_status.php:259 msgid "Sorting" msgstr "დალაგება" -#: libraries/messages.inc.php:1015 tbl_printview.php:310 tbl_structure.php:657 +#: libraries/messages.inc.php:1011 tbl_printview.php:310 tbl_structure.php:657 msgid "Space usage" msgstr "ადგილის გამოყენება" -#: libraries/messages.inc.php:1016 libraries/mysql_charsets.lib.php:289 +#: libraries/messages.inc.php:1012 libraries/mysql_charsets.lib.php:289 msgid "Spanish" msgstr "ესპანური" -#: libraries/messages.inc.php:1019 +#: libraries/messages.inc.php:1015 msgid "Export type" msgstr "Export type" -#: libraries/messages.inc.php:1020 +#: libraries/messages.inc.php:1016 msgid "Export time in UTC" msgstr "" -#: libraries/messages.inc.php:1021 libraries/sqlparser.lib.php:173 +#: libraries/messages.inc.php:1017 libraries/sqlparser.lib.php:173 msgid "" "There is a chance that you may have found a bug in the SQL parser. Please " "examine your query closely, and check that the quotes are correct and not " @@ -6040,7 +6040,7 @@ msgstr "" "please reduce your SQL query input to the single query that causes problems, " "and submit a bug report with the data chunk in the CUT section below:" -#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:137 +#: libraries/messages.inc.php:1018 libraries/sqlparser.lib.php:137 msgid "" "There seems to be an error in your SQL query. The MySQL server error output " "below, if there is any, may also help you in diagnosing the problem" @@ -6048,33 +6048,33 @@ msgstr "" "There seems to be an error in your SQL query. The MySQL server error output " "below, if there is any, may also help you in diagnosing the problem" -#: libraries/messages.inc.php:1026 libraries/sqlparser.lib.php:495 +#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:495 msgid "Invalid Identifer" msgstr "Invalid Identifer" -#: libraries/messages.inc.php:1027 libraries/sqlparser.lib.php:344 +#: libraries/messages.inc.php:1023 libraries/sqlparser.lib.php:344 msgid "Unclosed quote" msgstr "Unclosed quote" -#: libraries/messages.inc.php:1028 libraries/sqlparser.lib.php:612 +#: libraries/messages.inc.php:1024 libraries/sqlparser.lib.php:612 msgid "Unknown Punctuation String" msgstr "Unknown Punctuation String" -#: libraries/messages.inc.php:1030 server_replication.php:327 +#: libraries/messages.inc.php:1026 server_replication.php:327 #: server_replication.php:328 #, fuzzy msgid "Start" msgstr "Startup" -#: libraries/messages.inc.php:1033 tbl_printview.php:369 tbl_structure.php:729 +#: libraries/messages.inc.php:1029 tbl_printview.php:369 tbl_structure.php:729 msgid "Statements" msgstr "Statements" -#: libraries/messages.inc.php:1034 tbl_printview.php:380 tbl_structure.php:741 +#: libraries/messages.inc.php:1030 tbl_printview.php:380 tbl_structure.php:741 msgid "static" msgstr "სტატიკური" -#: libraries/messages.inc.php:1035 server_status.php:388 +#: libraries/messages.inc.php:1031 server_status.php:388 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -6082,43 +6082,43 @@ msgstr "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." -#: libraries/messages.inc.php:1038 server_replication.php:327 +#: libraries/messages.inc.php:1034 server_replication.php:327 #: server_replication.php:328 msgid "Stop" msgstr "" -#: libraries/messages.inc.php:1039 server_engines.php:49 +#: libraries/messages.inc.php:1035 server_engines.php:49 msgid "Storage Engines" msgstr "Storage Engines" -#: libraries/messages.inc.php:1040 libraries/tbl_properties.inc.php:726 +#: libraries/messages.inc.php:1036 libraries/tbl_properties.inc.php:726 #: server_engines.php:58 tbl_operations.php:353 msgid "Storage Engine" msgstr "Storage Engine" -#: libraries/messages.inc.php:1042 +#: libraries/messages.inc.php:1038 msgid "CSV for MS Excel" msgstr "CSV MS Excel-თვის" -#: libraries/messages.inc.php:1044 tbl_structure.php:516 tbl_structure.php:518 +#: libraries/messages.inc.php:1040 tbl_structure.php:516 tbl_structure.php:518 msgid "Propose table structure" msgstr "ცხრილის სტრუქტურის შეთავაზება" -#: libraries/messages.inc.php:1045 server_synchronize.php:424 +#: libraries/messages.inc.php:1041 server_synchronize.php:424 #: server_synchronize.php:867 #, fuzzy msgid "Structure Difference" msgstr "სტრუქტურა ხედისათვის" -#: libraries/messages.inc.php:1049 server_synchronize.php:265 +#: libraries/messages.inc.php:1045 server_synchronize.php:265 msgid "Structure Synchronization" msgstr "" -#: libraries/messages.inc.php:1050 libraries/sql_query_form.lib.php:462 +#: libraries/messages.inc.php:1046 libraries/sql_query_form.lib.php:462 msgid "Submit" msgstr "Submit" -#: libraries/messages.inc.php:1052 main.php:358 +#: libraries/messages.inc.php:1048 main.php:358 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -6127,160 +6127,160 @@ msgstr "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " "issues." -#: libraries/messages.inc.php:1054 libraries/mysql_charsets.lib.php:295 +#: libraries/messages.inc.php:1050 libraries/mysql_charsets.lib.php:295 #: libraries/mysql_charsets.lib.php:392 msgid "Swedish" msgstr "შვედური" -#: libraries/messages.inc.php:1060 tbl_operations.php:556 +#: libraries/messages.inc.php:1056 tbl_operations.php:556 msgid "Switch to copied table" msgstr "Switch to copied table" -#: libraries/messages.inc.php:1061 server_synchronize.php:1213 +#: libraries/messages.inc.php:1057 server_synchronize.php:1213 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." msgstr "" -#: libraries/messages.inc.php:1062 server_synchronize.php:451 +#: libraries/messages.inc.php:1058 server_synchronize.php:451 #: server_synchronize.php:896 msgid "Synchronize Databases" msgstr "" -#: libraries/messages.inc.php:1063 libraries/server_links.inc.php:92 +#: libraries/messages.inc.php:1059 libraries/server_links.inc.php:92 #: server_synchronize.php:1092 server_synchronize.php:1100 msgid "Synchronize" msgstr "" -#: libraries/messages.inc.php:1065 server_synchronize.php:430 +#: libraries/messages.inc.php:1061 server_synchronize.php:430 #: server_synchronize.php:873 msgid "Add column(s)" msgstr "" -#: libraries/messages.inc.php:1066 tbl_create.php:62 +#: libraries/messages.inc.php:1062 tbl_create.php:62 #, php-format msgid "Table %s already exists!" msgstr "ცხრილი %s უკვე არსებობს!" -#: libraries/messages.inc.php:1067 server_synchronize.php:432 +#: libraries/messages.inc.php:1063 server_synchronize.php:432 #: server_synchronize.php:875 msgid "Alter column(s)" msgstr "" -#: libraries/messages.inc.php:1068 tbl_addfield.php:189 tbl_alter.php:103 +#: libraries/messages.inc.php:1064 tbl_addfield.php:189 tbl_alter.php:103 #: tbl_indexes.php:98 #, php-format msgid "Table %1$s has been altered successfully" msgstr "Table %1$s has been altered successfully" -#: libraries/messages.inc.php:1069 server_synchronize.php:434 +#: libraries/messages.inc.php:1065 server_synchronize.php:434 #: server_synchronize.php:877 msgid "Apply index(s)" msgstr "" -#: libraries/messages.inc.php:1071 server_synchronize.php:446 +#: libraries/messages.inc.php:1067 server_synchronize.php:446 #: server_synchronize.php:890 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: libraries/messages.inc.php:1072 tbl_move_copy.php:82 +#: libraries/messages.inc.php:1068 tbl_move_copy.php:82 msgid "The table name is empty!" msgstr "ცხრილის სახელი ცარიელია!" -#: libraries/messages.inc.php:1073 tbl_create.php:249 +#: libraries/messages.inc.php:1069 tbl_create.php:249 #, php-format msgid "Table %1$s has been created." msgstr "Table %1$s has been created." -#: libraries/messages.inc.php:1076 tbl_operations.php:628 +#: libraries/messages.inc.php:1072 tbl_operations.php:628 #, php-format msgid "Table %s has been flushed" msgstr "Table %s has been flushed" -#: libraries/messages.inc.php:1077 server_synchronize.php:436 +#: libraries/messages.inc.php:1073 server_synchronize.php:436 #: server_synchronize.php:879 msgid "Insert row(s)" msgstr "" -#: libraries/messages.inc.php:1078 libraries/tbl_links.inc.php:107 +#: libraries/messages.inc.php:1074 libraries/tbl_links.inc.php:107 #: libraries/tbl_links.inc.php:140 libraries/tbl_links.inc.php:141 msgid "Table seems to be empty!" msgstr "როგორც ჩანს ცხრილი ცარიელია!" -#: libraries/messages.inc.php:1079 tbl_operations.php:568 +#: libraries/messages.inc.php:1075 tbl_operations.php:568 msgid "Table maintenance" msgstr "Table maintenance" -#: libraries/messages.inc.php:1080 libraries/tbl_properties.inc.php:618 +#: libraries/messages.inc.php:1076 libraries/tbl_properties.inc.php:618 #: server_synchronize.php:428 server_synchronize.php:871 msgid "Table name" msgstr "ცხრილის სახელი" -#: libraries/messages.inc.php:1081 pdf_schema.php:1116 +#: libraries/messages.inc.php:1077 pdf_schema.php:1116 msgid "Table of contents" msgstr "Table of contents" -#: libraries/messages.inc.php:1082 tbl_operations.php:334 +#: libraries/messages.inc.php:1078 tbl_operations.php:334 msgid "Table options" msgstr "ცხრილის პარამეტრები" -#: libraries/messages.inc.php:1083 server_synchronize.php:431 +#: libraries/messages.inc.php:1079 server_synchronize.php:431 #: server_synchronize.php:874 msgid "Remove column(s)" msgstr "" -#: libraries/messages.inc.php:1084 server_synchronize.php:433 +#: libraries/messages.inc.php:1080 server_synchronize.php:433 #: server_synchronize.php:876 msgid "Remove index(s)" msgstr "" -#: libraries/messages.inc.php:1088 server_synchronize.php:435 +#: libraries/messages.inc.php:1084 server_synchronize.php:435 #: server_synchronize.php:878 msgid "Update row(s)" msgstr "" -#: libraries/messages.inc.php:1090 server_synchronize.php:942 +#: libraries/messages.inc.php:1086 server_synchronize.php:942 msgid "Target database has been synchronized with source database" msgstr "" -#: libraries/messages.inc.php:1091 server_privileges.php:392 +#: libraries/messages.inc.php:1087 server_privileges.php:392 #: server_privileges.php:527 server_privileges.php:1679 #: server_privileges.php:1685 msgid "Table-specific privileges" msgstr "Table-specific privileges" -#: libraries/messages.inc.php:1092 server_status.php:254 +#: libraries/messages.inc.php:1088 server_status.php:254 msgid "Temporary data" msgstr "დროებითი მონაცემები" -#: libraries/messages.inc.php:1093 tbl_change.php:728 +#: libraries/messages.inc.php:1089 tbl_change.php:728 msgid " Because of its length,
this field might not be editable " msgstr " Because of its length,
this field might not be editable " -#: libraries/messages.inc.php:1094 +#: libraries/messages.inc.php:1090 msgid "Texy! text" msgstr "Texy! text" -#: libraries/messages.inc.php:1095 libraries/mysql_charsets.lib.php:298 +#: libraries/messages.inc.php:1091 libraries/mysql_charsets.lib.php:298 #: libraries/mysql_charsets.lib.php:395 msgid "Thai" msgstr "Thai" -#: libraries/messages.inc.php:1102 libraries/replication_gui.lib.php:308 +#: libraries/messages.inc.php:1098 libraries/replication_gui.lib.php:308 #: server_privileges.php:734 msgid "This Host" msgstr "ეს ჰოსტი" -#: libraries/messages.inc.php:1103 server_status.php:252 +#: libraries/messages.inc.php:1099 server_status.php:252 msgid "Threads" msgstr "Threads" -#: libraries/messages.inc.php:1104 server_processlist.php:22 +#: libraries/messages.inc.php:1100 server_processlist.php:22 #, php-format msgid "Thread %s was successfully killed." msgstr "Thread %s was successfully killed." -#: libraries/messages.inc.php:1106 +#: libraries/messages.inc.php:1102 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -6288,185 +6288,185 @@ msgstr "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." -#: libraries/messages.inc.php:1109 pmd_pdf.php:94 +#: libraries/messages.inc.php:1105 pmd_pdf.php:94 msgid "to/from page" msgstr "to/from page" -#: libraries/messages.inc.php:1110 pdf_pages.php:343 +#: libraries/messages.inc.php:1106 pdf_pages.php:343 msgid "Toggle scratchboard" msgstr "Toggle scratchboard" -#: libraries/messages.inc.php:1111 pmd_general.php:99 +#: libraries/messages.inc.php:1107 pmd_general.php:99 msgid "Toggle small/big" msgstr "Toggle small/big" -#: libraries/messages.inc.php:1112 pmd_help.php:27 +#: libraries/messages.inc.php:1108 pmd_help.php:27 msgid "To select relation, click :" msgstr "To select relation, click :" -#: libraries/messages.inc.php:1115 libraries/tbl_links.inc.php:149 +#: libraries/messages.inc.php:1111 libraries/tbl_links.inc.php:149 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" -#: libraries/messages.inc.php:1116 tbl_tracking.php:655 +#: libraries/messages.inc.php:1112 tbl_tracking.php:655 msgid "Activate now" msgstr "" -#: libraries/messages.inc.php:1117 tbl_tracking.php:653 +#: libraries/messages.inc.php:1113 tbl_tracking.php:653 #, php-format msgid "Activate tracking for %s.%s" msgstr "" -#: libraries/messages.inc.php:1118 tbl_tracking.php:221 +#: libraries/messages.inc.php:1114 tbl_tracking.php:221 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/messages.inc.php:1119 tbl_tracking.php:688 +#: libraries/messages.inc.php:1115 tbl_tracking.php:688 #, fuzzy msgid "Create version" msgstr "Create relation" -#: libraries/messages.inc.php:1120 tbl_tracking.php:668 +#: libraries/messages.inc.php:1116 tbl_tracking.php:668 #, php-format msgid "Create version %s of %s.%s" msgstr "" -#: libraries/messages.inc.php:1122 tbl_tracking.php:412 +#: libraries/messages.inc.php:1118 tbl_tracking.php:412 msgid "Data definition statement" msgstr "" -#: libraries/messages.inc.php:1123 tbl_tracking.php:463 +#: libraries/messages.inc.php:1119 tbl_tracking.php:463 msgid "Data manipulation statement" msgstr "" -#: libraries/messages.inc.php:1124 tbl_tracking.php:410 tbl_tracking.php:461 +#: libraries/messages.inc.php:1120 tbl_tracking.php:410 tbl_tracking.php:461 #, fuzzy msgid "Date" msgstr "მონაცემები" -#: libraries/messages.inc.php:1125 tbl_tracking.php:642 +#: libraries/messages.inc.php:1121 tbl_tracking.php:642 msgid "Deactivate now" msgstr "" -#: libraries/messages.inc.php:1126 tbl_tracking.php:640 +#: libraries/messages.inc.php:1122 tbl_tracking.php:640 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "" -#: libraries/messages.inc.php:1127 tbl_tracking.php:521 +#: libraries/messages.inc.php:1123 tbl_tracking.php:521 #, fuzzy, php-format msgid "Export as %s" msgstr "Export defaults" -#: libraries/messages.inc.php:1130 tbl_tracking.php:251 tbl_tracking.php:379 +#: libraries/messages.inc.php:1126 tbl_tracking.php:251 tbl_tracking.php:379 msgid "Close" msgstr "" -#: libraries/messages.inc.php:1131 tbl_tracking.php:114 +#: libraries/messages.inc.php:1127 tbl_tracking.php:114 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/messages.inc.php:1133 tbl_tracking.php:397 tbl_tracking.php:504 +#: libraries/messages.inc.php:1129 tbl_tracking.php:397 tbl_tracking.php:504 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "" -#: libraries/messages.inc.php:1134 tbl_tracking.php:561 +#: libraries/messages.inc.php:1130 tbl_tracking.php:561 msgid "Show versions" msgstr "" -#: libraries/messages.inc.php:1135 tbl_tracking.php:507 +#: libraries/messages.inc.php:1131 tbl_tracking.php:507 msgid "SQL dump (file download)" msgstr "" -#: libraries/messages.inc.php:1136 tbl_tracking.php:508 +#: libraries/messages.inc.php:1132 tbl_tracking.php:508 msgid "SQL dump" msgstr "" -#: libraries/messages.inc.php:1137 tbl_tracking.php:213 +#: libraries/messages.inc.php:1133 tbl_tracking.php:213 msgid "SQL statements executed." msgstr "" -#: libraries/messages.inc.php:1138 +#: libraries/messages.inc.php:1134 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/messages.inc.php:1139 tbl_tracking.php:509 +#: libraries/messages.inc.php:1135 tbl_tracking.php:509 msgid "SQL execution" msgstr "" -#: libraries/messages.inc.php:1140 tbl_tracking.php:230 +#: libraries/messages.inc.php:1136 tbl_tracking.php:230 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/messages.inc.php:1141 tbl_tracking.php:381 +#: libraries/messages.inc.php:1137 tbl_tracking.php:381 msgid "Tracking statements" msgstr "" -#: libraries/messages.inc.php:1148 tbl_tracking.php:593 +#: libraries/messages.inc.php:1144 tbl_tracking.php:593 #, fuzzy msgid "Version" msgstr "სპარსული" -#: libraries/messages.inc.php:1149 tbl_tracking.php:672 +#: libraries/messages.inc.php:1145 tbl_tracking.php:672 msgid "Track these data definition statements:" msgstr "" -#: libraries/messages.inc.php:1150 tbl_tracking.php:680 +#: libraries/messages.inc.php:1146 tbl_tracking.php:680 msgid "Track these data manipulation statements:" msgstr "" -#: libraries/messages.inc.php:1155 tbl_tracking.php:411 tbl_tracking.php:462 +#: libraries/messages.inc.php:1151 tbl_tracking.php:411 tbl_tracking.php:462 #, fuzzy msgid "Username" msgstr "მომხმარებელი:" -#: libraries/messages.inc.php:1156 tbl_tracking.php:203 +#: libraries/messages.inc.php:1152 tbl_tracking.php:203 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "" -#: libraries/messages.inc.php:1157 tbl_tracking.php:187 +#: libraries/messages.inc.php:1153 tbl_tracking.php:187 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "" -#: libraries/messages.inc.php:1158 tbl_tracking.php:195 +#: libraries/messages.inc.php:1154 tbl_tracking.php:195 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "" -#: libraries/messages.inc.php:1159 tbl_tracking.php:262 +#: libraries/messages.inc.php:1155 tbl_tracking.php:262 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/messages.inc.php:1161 tbl_tracking.php:220 +#: libraries/messages.inc.php:1157 tbl_tracking.php:220 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/messages.inc.php:1162 libraries/mysql_charsets.lib.php:219 +#: libraries/messages.inc.php:1158 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:362 msgid "Traditional Chinese" msgstr "ტრადიციული ჩინური" -#: libraries/messages.inc.php:1163 libraries/mysql_charsets.lib.php:292 +#: libraries/messages.inc.php:1159 libraries/mysql_charsets.lib.php:292 msgid "Traditional Spanish" msgstr "ტრადიციული ესპანური" -#: libraries/messages.inc.php:1164 server_status.php:388 +#: libraries/messages.inc.php:1160 server_status.php:388 msgid "Traffic" msgstr "ტრაფიკი" -#: libraries/messages.inc.php:1165 server_status.php:261 +#: libraries/messages.inc.php:1161 server_status.php:261 msgid "Transaction coordinator" msgstr "Transaction coordinator" -#: libraries/messages.inc.php:1166 +#: libraries/messages.inc.php:1162 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 " @@ -6478,7 +6478,7 @@ msgstr "" "of a field which contains the filename. If you use the second option, you " "need to set the first option to the empty string." -#: libraries/messages.inc.php:1167 +#: libraries/messages.inc.php:1163 msgid "" "Displays hexadecimal representation of data. Optional first parameter " "specifies how often space will be added (defaults to 2 nibbles)." @@ -6486,7 +6486,7 @@ msgstr "" "Displays hexadecimal representation of data. Optional first parameter " "specifies how often space will be added (defaults to 2 nibbles)." -#: libraries/messages.inc.php:1168 +#: libraries/messages.inc.php:1164 msgid "" "Displays a clickable thumbnail. The options are the maximum width and height " "in pixels. The original aspect ratio is preserved." @@ -6494,91 +6494,91 @@ msgstr "" "Displays a clickable thumbnail. The options are the maximum width and height " "in pixels. The original aspect ratio is preserved." -#: libraries/messages.inc.php:1169 +#: libraries/messages.inc.php:1165 msgid "Displays a link to download this image." msgstr "Displays a link to download this image." -#: libraries/messages.inc.php:1170 +#: libraries/messages.inc.php:1166 msgid "See image/jpeg: inline" msgstr "See image/jpeg: inline" +#: libraries/messages.inc.php:1167 +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." +msgstr "" +"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." + +#: libraries/messages.inc.php:1168 +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)." +msgstr "" +"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)." + +#: libraries/messages.inc.php:1169 +msgid "" +"Displays the contents of the field as-is, without running it through " +"htmlspecialchars(). That is, the field is assumed to contain valid HTML." +msgstr "" +"Displays the contents of the field as-is, without running it through " +"htmlspecialchars(). That is, the field is assumed to contain valid HTML." + +#: libraries/messages.inc.php:1170 +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." +msgstr "" +"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." + #: libraries/messages.inc.php:1171 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." +"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." msgstr "" -"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." +"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." #: libraries/messages.inc.php:1172 -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)." -msgstr "" -"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)." - -#: libraries/messages.inc.php:1173 -msgid "" -"Displays the contents of the field as-is, without running it through " -"htmlspecialchars(). That is, the field is assumed to contain valid HTML." -msgstr "" -"Displays the contents of the field as-is, without running it through " -"htmlspecialchars(). That is, the field is assumed to contain valid HTML." - -#: libraries/messages.inc.php:1174 -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." -msgstr "" -"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." - -#: libraries/messages.inc.php:1175 -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." -msgstr "" -"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." - -#: libraries/messages.inc.php:1176 msgid "Formats text as SQL query with syntax highlighting." msgstr "Formats text as SQL query with syntax highlighting." -#: libraries/messages.inc.php:1177 +#: libraries/messages.inc.php:1173 msgid "" "Displays a part of a string. The first option is the number of characters to " "skip from the beginning of the string (Default 0). The second option is the " @@ -6592,70 +6592,70 @@ msgstr "" "option is the string to append and/or prepend when truncation occurs " "(Default: \"...\")." -#: libraries/messages.inc.php:1179 server_binlog.php:183 server_binlog.php:186 +#: libraries/messages.inc.php:1175 server_binlog.php:183 server_binlog.php:186 #: server_processlist.php:49 server_processlist.php:51 msgid "Truncate Shown Queries" msgstr "Truncate Shown Queries" -#: libraries/messages.inc.php:1180 libraries/mysql_charsets.lib.php:301 +#: libraries/messages.inc.php:1176 libraries/mysql_charsets.lib.php:301 #: libraries/mysql_charsets.lib.php:389 msgid "Turkish" msgstr "თურქული" -#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:304 +#: libraries/messages.inc.php:1179 libraries/mysql_charsets.lib.php:304 #: libraries/mysql_charsets.lib.php:386 msgid "Ukrainian" msgstr "უკრაინული" -#: libraries/messages.inc.php:1185 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:1181 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 msgid "Unicode" msgstr "უნიკოდი" -#: libraries/messages.inc.php:1187 libraries/mysql_charsets.lib.php:398 +#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:398 #: libraries/mysql_charsets.lib.php:405 msgid "unknown" msgstr "უცნობი" -#: libraries/messages.inc.php:1190 server_privileges.php:1152 +#: libraries/messages.inc.php:1186 server_privileges.php:1152 #, php-format msgid "You have updated the privileges for %s." msgstr "You have updated the privileges for %s." -#: libraries/messages.inc.php:1191 user_password.php:112 +#: libraries/messages.inc.php:1187 user_password.php:112 msgid "The profile has been updated." msgstr "პროფილი განახლდა." -#: libraries/messages.inc.php:1193 libraries/relation.lib.php:138 +#: libraries/messages.inc.php:1189 libraries/relation.lib.php:138 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "Please see the documentation on how to update your column_comments table" -#: libraries/messages.inc.php:1194 +#: libraries/messages.inc.php:1190 #, php-format msgid "You should upgrade to %s %s or later." msgstr "You should upgrade to %s %s or later." -#: libraries/messages.inc.php:1204 tbl_printview.php:314 tbl_structure.php:661 +#: libraries/messages.inc.php:1200 tbl_printview.php:314 tbl_structure.php:661 msgid "Usage" msgstr "გამოყენება" -#: libraries/messages.inc.php:1205 +#: libraries/messages.inc.php:1201 msgid "Enclose table and field names with backquotes" msgstr "Enclose table and field names with backquotes" -#: libraries/messages.inc.php:1206 libraries/replication_gui.lib.php:314 +#: libraries/messages.inc.php:1202 libraries/replication_gui.lib.php:314 #: server_privileges.php:740 msgid "Use Host Table" msgstr "Use Host Table" -#: libraries/messages.inc.php:1207 server_privileges.php:848 +#: libraries/messages.inc.php:1203 server_privileges.php:848 #, php-format msgid "The user %s already exists!" msgstr "მომხმარებელი %s უკვე არსებობს!" -#: libraries/messages.inc.php:1209 libraries/replication_gui.lib.php:55 +#: libraries/messages.inc.php:1205 libraries/replication_gui.lib.php:55 #: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245 #: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255 #: server_privileges.php:672 server_privileges.php:675 @@ -6663,36 +6663,36 @@ msgstr "მომხმარებელი %s უკვე არსებო msgid "User name" msgstr "მომხმარებლის სახელი" -#: libraries/messages.inc.php:1210 server_privileges.php:1645 +#: libraries/messages.inc.php:1206 server_privileges.php:1645 msgid "The selected user was not found in the privilege table." msgstr "The selected user was not found in the privilege table." -#: libraries/messages.inc.php:1211 server_privileges.php:1365 +#: libraries/messages.inc.php:1207 server_privileges.php:1365 msgid "User overview" msgstr "მომხმარებლის მიმოხილვა" -#: libraries/messages.inc.php:1212 server_privileges.php:1261 +#: libraries/messages.inc.php:1208 server_privileges.php:1261 msgid "The selected users have been deleted successfully." msgstr "The selected users have been deleted successfully." -#: libraries/messages.inc.php:1213 server_privileges.php:2026 +#: libraries/messages.inc.php:1209 server_privileges.php:2026 #, php-format msgid "Users having access to "%s"" msgstr "Users having access to "%s"" -#: libraries/messages.inc.php:1214 main.php:189 server_privileges.php:1350 +#: libraries/messages.inc.php:1210 main.php:189 server_privileges.php:1350 #: server_privileges.php:1497 server_privileges.php:1611 #: server_privileges.php:2029 server_processlist.php:54 msgid "User" msgstr "მომხმარებელი" -#: libraries/messages.inc.php:1215 tbl_change.php:1171 +#: libraries/messages.inc.php:1211 tbl_change.php:1171 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" -#: libraries/messages.inc.php:1217 libraries/replication_gui.lib.php:251 +#: libraries/messages.inc.php:1213 libraries/replication_gui.lib.php:251 #: libraries/replication_gui.lib.php:319 libraries/replication_gui.lib.php:342 #: server_privileges.php:678 server_privileges.php:745 #: server_privileges.php:769 server_privileges.php:1889 @@ -6700,7 +6700,7 @@ msgstr "" msgid "Use text field" msgstr "გამოიყენე ტექსტური ველი" -#: libraries/messages.inc.php:1221 libraries/sqlvalidator.lib.php:68 +#: libraries/messages.inc.php:1217 libraries/sqlvalidator.lib.php:68 #, php-format msgid "" "The SQL validator could not be initialized. Please check if you have " @@ -6709,89 +6709,89 @@ msgstr "" "The SQL validator could not be initialized. Please check if you have " "installed the necessary PHP extensions as described in the %sdocumentation%s." -#: libraries/messages.inc.php:1222 libraries/replication_gui.lib.php:111 +#: libraries/messages.inc.php:1218 libraries/replication_gui.lib.php:111 #: server_status.php:627 tbl_change.php:324 tbl_printview.php:370 #: tbl_select.php:139 tbl_structure.php:730 msgid "Value" msgstr "მნიშვნელობა" -#: libraries/messages.inc.php:1223 libraries/replication_gui.lib.php:110 +#: libraries/messages.inc.php:1219 libraries/replication_gui.lib.php:110 #: libraries/sql_query_form.lib.php:445 server_status.php:626 #: server_variables.php:52 msgid "Variable" msgstr "ცვლადი" -#: libraries/messages.inc.php:1225 server_export.php:21 +#: libraries/messages.inc.php:1221 server_export.php:21 msgid "View dump (schema) of databases" msgstr "View dump (schema) of databases" -#: libraries/messages.inc.php:1227 tbl_export.php:23 +#: libraries/messages.inc.php:1223 tbl_export.php:23 msgid "View dump (schema) of table" msgstr "View dump (schema) of table" -#: libraries/messages.inc.php:1231 view_create.php:142 +#: libraries/messages.inc.php:1227 view_create.php:142 msgid "VIEW name" msgstr "VIEW name" -#: libraries/messages.inc.php:1237 main.php:205 +#: libraries/messages.inc.php:1233 main.php:205 msgid "Web server" msgstr "ვებ სერვერი" -#: libraries/messages.inc.php:1239 libraries/mysql_charsets.lib.php:277 +#: libraries/messages.inc.php:1235 libraries/mysql_charsets.lib.php:277 #: libraries/mysql_charsets.lib.php:325 msgid "West European" msgstr "West European" -#: libraries/messages.inc.php:1240 main.php:230 +#: libraries/messages.inc.php:1236 main.php:230 msgid "Wiki" msgstr "ვიკი" -#: libraries/messages.inc.php:1241 server_privileges.php:2138 +#: libraries/messages.inc.php:1237 server_privileges.php:2138 msgid "wildcard" msgstr "wildcard" -#: libraries/messages.inc.php:1248 +#: libraries/messages.inc.php:1244 #, fuzzy msgid "Export contents" msgstr "Export defaults" -#: libraries/messages.inc.php:1249 +#: libraries/messages.inc.php:1245 #, fuzzy msgid "Export functions" msgstr "Export defaults" -#: libraries/messages.inc.php:1250 +#: libraries/messages.inc.php:1246 msgid "Export procedures" msgstr "" -#: libraries/messages.inc.php:1251 +#: libraries/messages.inc.php:1247 msgid "Export Structure Schemas (recommended)" msgstr "" -#: libraries/messages.inc.php:1252 +#: libraries/messages.inc.php:1248 #, fuzzy msgid "Export tables" msgstr "Export type" -#: libraries/messages.inc.php:1253 +#: libraries/messages.inc.php:1249 #, fuzzy msgid "Export triggers" msgstr "Export type" -#: libraries/messages.inc.php:1254 +#: libraries/messages.inc.php:1250 #, fuzzy msgid "Export views" msgstr "Export defaults" -#: libraries/messages.inc.php:1255 +#: libraries/messages.inc.php:1251 msgid "XML" msgstr "XML" -#: libraries/messages.inc.php:1259 server_privileges.php:592 +#: libraries/messages.inc.php:1255 server_privileges.php:592 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Note: Setting these options to 0 (zero) removes the limit." -#: libraries/messages.inc.php:1260 +#: libraries/messages.inc.php:1256 msgid "\"zipped\"" msgstr "\"zip-ით შეკუმშული\"" diff --git a/po/ko.po b/po/ko.po index 979790643..4f645b65b 100644 --- a/po/ko.po +++ b/po/ko.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-05-13 11:25+0200\n" +"POT-Creation-Date: 2010-05-13 11:30+0200\n" "PO-Revision-Date: 2010-03-12 09:16+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: korean \n" @@ -13,19 +13,19 @@ msgstr "" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:38 browse_foreigners.php:59 -#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:870 +#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:866 #: server_privileges.php:1475 msgid "Show all" msgstr "모두 보기" #: browse_foreigners.php:82 db_operations.php:648 -#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:394 -#: libraries/export/pdf.php:147 libraries/messages.inc.php:597 +#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394 +#: libraries/export/pdf.php:147 libraries/messages.inc.php:593 #: pdf_schema.php:283 pdf_schema.php:1123 pdf_schema.php:1139 msgid "Page number:" msgstr "페이지:" -#: browse_foreigners.php:132 libraries/messages.inc.php:1242 +#: browse_foreigners.php:132 libraries/messages.inc.php:1238 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -35,7 +35,7 @@ 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/db_links.inc.php:75 -#: libraries/messages.inc.php:841 libraries/tbl_links.inc.php:63 +#: libraries/messages.inc.php:837 libraries/tbl_links.inc.php:63 msgid "Search" msgstr "검색" @@ -44,12 +44,12 @@ msgstr "검색" #: db_search.php:362 db_structure.php:567 js/messages.php:48 #: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2267 +#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 #: 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 #: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614 -#: libraries/messages.inc.php:361 libraries/replication_gui.lib.php:73 +#: libraries/messages.inc.php:357 libraries/replication_gui.lib.php:73 #: libraries/replication_gui.lib.php:365 libraries/select_server.lib.php:104 #: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477 #: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782 @@ -69,13 +69,13 @@ msgid "Go" msgstr "실행" #: browse_foreigners.php:168 browse_foreigners.php:172 -#: libraries/Index.class.php:442 libraries/messages.inc.php:459 +#: libraries/Index.class.php:442 libraries/messages.inc.php:455 #: tbl_tracking.php:320 msgid "Keyname" msgstr "키 이름" #: browse_foreigners.php:169 browse_foreigners.php:171 -#: libraries/messages.inc.php:252 server_collations.php:55 +#: libraries/messages.inc.php:248 server_collations.php:55 #: server_collations.php:67 server_engines.php:59 server_status.php:628 #, fuzzy msgid "Description" @@ -83,21 +83,21 @@ msgstr "설명이 없습니다" #: browse_foreigners.php:247 browse_foreigners.php:256 #: browse_foreigners.php:268 browse_foreigners.php:276 -#: libraries/messages.inc.php:1218 +#: libraries/messages.inc.php:1214 msgid "Use this value" msgstr "" -#: db_create.php:46 libraries/messages.inc.php:215 +#: db_create.php:46 libraries/messages.inc.php:211 #, fuzzy, php-format msgid "Database %1$s has been created." msgstr "데이터베이스 %s 를 제거했습니다." -#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:232 +#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:228 #, fuzzy msgid "Database comment: " msgstr "테이블 설명" -#: db_datadict.php:165 libraries/messages.inc.php:1070 +#: db_datadict.php:165 libraries/messages.inc.php:1066 #: libraries/tbl_properties.inc.php:724 pdf_schema.php:1236 #: tbl_operations.php:345 tbl_printview.php:130 msgid "Table comments" @@ -106,7 +106,7 @@ msgstr "테이블 설명" #: db_datadict.php:174 db_qbe.php:174 libraries/Index.class.php:446 #: libraries/export/htmlword.php:244 libraries/export/latex.php:360 #: libraries/export/odt.php:294 libraries/export/texytext.php:233 -#: libraries/messages.inc.php:317 libraries/tbl_properties.inc.php:99 +#: libraries/messages.inc.php:313 libraries/tbl_properties.inc.php:99 #: libraries/tbl_properties.inc.php:275 pdf_schema.php:1262 #: pdf_schema.php:1283 tbl_change.php:308 tbl_indexes.php:189 #: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135 @@ -118,7 +118,7 @@ msgstr "필드" #: libraries/db_events.inc.php:31 libraries/db_routines.inc.php:42 #: 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/messages.inc.php:1181 +#: libraries/export/texytext.php:234 libraries/messages.inc.php:1177 #: libraries/tbl_properties.inc.php:100 pdf_schema.php:1263 #: pdf_schema.php:1284 server_privileges.php:2031 tbl_change.php:287 #: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313 @@ -130,7 +130,7 @@ msgstr "종류" #: db_datadict.php:177 libraries/Index.class.php:449 #: libraries/export/htmlword.php:246 libraries/export/latex.php:360 #: libraries/export/odt.php:300 libraries/export/texytext.php:235 -#: libraries/messages.inc.php:576 libraries/tbl_properties.inc.php:109 +#: libraries/messages.inc.php:572 libraries/tbl_properties.inc.php:109 #: pdf_schema.php:1265 pdf_schema.php:1286 tbl_change.php:323 #: tbl_printview.php:145 tbl_structure.php:181 tbl_tracking.php:276 #: tbl_tracking.php:327 @@ -139,7 +139,7 @@ msgstr "Null" #: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 -#: libraries/export/texytext.php:236 libraries/messages.inc.php:238 +#: libraries/export/texytext.php:236 libraries/messages.inc.php:234 #: libraries/tbl_properties.inc.php:106 pdf_schema.php:1266 #: pdf_schema.php:1287 tbl_printview.php:146 tbl_structure.php:182 #: tbl_tracking.php:277 @@ -148,14 +148,14 @@ msgstr "기본값" #: db_datadict.php:182 libraries/export/htmlword.php:249 #: libraries/export/latex.php:362 libraries/export/odt.php:307 -#: libraries/export/texytext.php:238 libraries/messages.inc.php:483 +#: libraries/export/texytext.php:238 libraries/messages.inc.php:479 #: pdf_schema.php:1268 pdf_schema.php:1289 tbl_printview.php:150 msgid "Links to" msgstr "" #: db_datadict.php:184 db_printview.php:112 libraries/export/htmlword.php:252 #: libraries/export/latex.php:365 libraries/export/odt.php:312 -#: libraries/export/texytext.php:241 libraries/messages.inc.php:163 +#: libraries/export/texytext.php:241 libraries/messages.inc.php:159 #: libraries/tbl_properties.inc.php:130 pdf_schema.php:1279 #: pdf_schema.php:1290 tbl_printview.php:152 msgid "Comments" @@ -164,7 +164,7 @@ msgstr "설명(코멘트)" #: db_datadict.php:267 libraries/Index.class.php:359 #: 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/messages.inc.php:559 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:555 #: libraries/mult_submits.inc.php:263 pdf_schema.php:1344 #: server_privileges.php:1529 server_privileges.php:1540 #: server_privileges.php:1850 server_privileges.php:1855 @@ -176,7 +176,7 @@ msgstr " 아니오 " #: db_datadict.php:267 libraries/Index.class.php:360 #: libraries/Index.class.php:385 libraries/export/htmlword.php:322 #: libraries/export/latex.php:430 libraries/export/odt.php:368 -#: libraries/export/texytext.php:311 libraries/messages.inc.php:1257 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:1253 #: libraries/mult_submits.inc.php:45 libraries/mult_submits.inc.php:50 #: libraries/mult_submits.inc.php:55 libraries/mult_submits.inc.php:60 #: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:101 @@ -190,113 +190,113 @@ msgstr " 아니오 " msgid "Yes" msgstr " 예 " -#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:670 +#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:666 #: tbl_printview.php:498 msgid "Print" msgstr "인쇄" -#: db_export.php:29 libraries/messages.inc.php:1226 +#: db_export.php:29 libraries/messages.inc.php:1222 msgid "View dump (schema) of database" msgstr "데이터베이스의 덤프(스키마) 데이터 보기" #: db_export.php:33 db_printview.php:96 db_qbe.php:102 db_structure.php:51 -#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:568 +#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:564 #: navigation.php:346 msgid "No tables found in database." msgstr "데이터베이스에 테이블이 없습니다." -#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:845 +#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:841 #: server_export.php:27 msgid "Select All" msgstr "모두 선택" -#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1188 +#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1184 #: server_export.php:29 msgid "Unselect All" msgstr "모두 선택안함" -#: db_operations.php:38 libraries/messages.inc.php:213 tbl_create.php:54 +#: db_operations.php:38 libraries/messages.inc.php:209 tbl_create.php:54 #, fuzzy msgid "The database name is empty!" msgstr "테이블명이 없습니다!" -#: db_operations.php:236 libraries/messages.inc.php:753 +#: db_operations.php:236 libraries/messages.inc.php:749 #, fuzzy, php-format msgid "Database %s has been renamed to %s" msgstr "테이블 %s을(를) %s(으)로 변경하였습니다." -#: db_operations.php:240 libraries/messages.inc.php:178 +#: db_operations.php:240 libraries/messages.inc.php:174 #, fuzzy, php-format msgid "Database %s has been copied to %s" msgstr "%s 테이블이 %s 으로 복사되었습니다." -#: db_operations.php:410 libraries/messages.inc.php:236 +#: db_operations.php:410 libraries/messages.inc.php:232 #, fuzzy msgid "Rename database to" msgstr "테이블 이름 바꾸기" -#: db_operations.php:415 libraries/messages.inc.php:161 +#: db_operations.php:415 libraries/messages.inc.php:157 #: server_processlist.php:57 #, fuzzy msgid "Command" msgstr "설명(코멘트)" -#: db_operations.php:425 libraries/messages.inc.php:58 tbl_change.php:1143 +#: db_operations.php:425 libraries/messages.inc.php:54 tbl_change.php:1143 msgid "and then" msgstr "" -#: db_operations.php:451 libraries/messages.inc.php:233 +#: db_operations.php:451 libraries/messages.inc.php:229 #, fuzzy msgid "Copy database to" msgstr "데이터베이스가 없습니다" -#: db_operations.php:458 libraries/messages.inc.php:1043 +#: db_operations.php:458 libraries/messages.inc.php:1039 #: tbl_operations.php:526 tbl_tracking.php:388 msgid "Structure only" msgstr "구조만" -#: db_operations.php:459 libraries/messages.inc.php:1041 +#: db_operations.php:459 libraries/messages.inc.php:1037 #: tbl_operations.php:527 tbl_tracking.php:390 msgid "Structure and data" msgstr "구조와 데이터 모두" -#: db_operations.php:460 libraries/messages.inc.php:229 tbl_operations.php:528 +#: db_operations.php:460 libraries/messages.inc.php:225 tbl_operations.php:528 #: tbl_tracking.php:389 msgid "Data only" msgstr "데이터만" -#: db_operations.php:468 libraries/messages.inc.php:186 +#: db_operations.php:468 libraries/messages.inc.php:182 msgid "CREATE DATABASE before copying" msgstr "" #: db_operations.php:471 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 -#: libraries/export/sql.php:82 libraries/messages.inc.php:30 +#: libraries/export/sql.php:82 libraries/messages.inc.php:26 #: tbl_operations.php:534 #, php-format msgid "Add %s" msgstr "" -#: db_operations.php:475 libraries/messages.inc.php:29 tbl_operations.php:297 +#: db_operations.php:475 libraries/messages.inc.php:25 tbl_operations.php:297 #: tbl_operations.php:536 msgid "Add AUTO_INCREMENT value" msgstr "" -#: db_operations.php:479 libraries/messages.inc.php:31 tbl_operations.php:543 +#: db_operations.php:479 libraries/messages.inc.php:27 tbl_operations.php:543 msgid "Add constraints" msgstr "" -#: db_operations.php:492 libraries/messages.inc.php:1059 +#: db_operations.php:492 libraries/messages.inc.php:1055 #, fuzzy msgid "Switch to copied database" msgstr "복사한 테이블로 옮겨감" -#: db_operations.php:533 libraries/messages.inc.php:89 +#: db_operations.php:533 libraries/messages.inc.php:85 msgid "BLOB Repository" msgstr "" #: db_operations.php:536 db_tracking.php:76 libraries/common.lib.php:1350 -#: libraries/messages.inc.php:1037 libraries/server_links.inc.php:49 +#: libraries/messages.inc.php:1033 libraries/server_links.inc.php:49 #: server_processlist.php:59 tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "상태" @@ -308,12 +308,12 @@ msgctxt "BLOB repository" msgid "Enabled" msgstr "사용가능" -#: db_operations.php:548 libraries/messages.inc.php:93 +#: db_operations.php:548 libraries/messages.inc.php:89 #, fuzzy msgid "Disable" msgstr "사용불가" -#: db_operations.php:558 libraries/messages.inc.php:90 +#: db_operations.php:558 libraries/messages.inc.php:86 msgid "Damaged" msgstr "" @@ -330,13 +330,13 @@ msgctxt "BLOB repository" msgid "Disabled" msgstr "사용불가" -#: db_operations.php:574 libraries/messages.inc.php:96 +#: db_operations.php:574 libraries/messages.inc.php:92 #, fuzzy msgid "Enable" msgstr "사용가능" #: db_operations.php:598 libraries/Index.class.php:448 -#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:158 +#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:154 #: 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:361 @@ -346,7 +346,7 @@ msgstr "사용가능" msgid "Collation" msgstr "생성" -#: db_operations.php:609 libraries/messages.inc.php:742 main.php:316 +#: db_operations.php:609 libraries/messages.inc.php:738 main.php:316 #: pdf_schema.php:34 #, php-format msgid "" @@ -356,59 +356,59 @@ msgstr "" "linked Tables에서 작동하는 부가기능이 사용되지 않습니다. 이유를 알려면 %s여기" "를 클릭%s하십시오." -#: db_operations.php:645 libraries/messages.inc.php:264 pdf_pages.php:528 +#: db_operations.php:645 libraries/messages.inc.php:260 pdf_pages.php:528 msgid "Display PDF schema" msgstr "" -#: db_operations.php:661 libraries/messages.inc.php:877 pdf_pages.php:529 +#: db_operations.php:661 libraries/messages.inc.php:873 pdf_pages.php:529 msgid "Show grid" msgstr "grid 보기" -#: db_operations.php:664 libraries/messages.inc.php:874 pdf_pages.php:530 +#: db_operations.php:664 libraries/messages.inc.php:870 pdf_pages.php:530 msgid "Show color" msgstr "색깔 보기" -#: db_operations.php:666 libraries/messages.inc.php:998 pdf_pages.php:531 +#: db_operations.php:666 libraries/messages.inc.php:994 pdf_pages.php:531 msgid "Show dimension of tables" msgstr "" -#: db_operations.php:669 libraries/messages.inc.php:52 pdf_pages.php:532 +#: db_operations.php:669 libraries/messages.inc.php:48 pdf_pages.php:532 msgid "Display all tables with the same width" msgstr "모든 테이블을 같은 너비로 출력할까요?" -#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:227 +#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:223 #: pdf_pages.php:533 msgid "Data Dictionary" msgstr "데이터 사전 (전체 구조보기)" -#: db_operations.php:674 libraries/messages.inc.php:884 pdf_pages.php:534 +#: db_operations.php:674 libraries/messages.inc.php:880 pdf_pages.php:534 msgid "Only show keys" msgstr "" -#: db_operations.php:676 libraries/messages.inc.php:875 pdf_pages.php:535 +#: db_operations.php:676 libraries/messages.inc.php:871 pdf_pages.php:535 #, fuzzy msgid "Data Dictionary Format" msgstr "데이터 사전 (전체 구조보기)" -#: db_operations.php:678 libraries/messages.inc.php:464 pdf_pages.php:537 +#: db_operations.php:678 libraries/messages.inc.php:460 pdf_pages.php:537 msgid "Landscape" msgstr "" -#: db_operations.php:679 libraries/messages.inc.php:663 pdf_pages.php:538 +#: db_operations.php:679 libraries/messages.inc.php:659 pdf_pages.php:538 msgid "Portrait" msgstr "" -#: db_operations.php:682 libraries/messages.inc.php:599 pdf_pages.php:541 +#: db_operations.php:682 libraries/messages.inc.php:595 pdf_pages.php:541 msgid "Paper size" msgstr "" -#: db_operations.php:706 libraries/messages.inc.php:281 +#: db_operations.php:706 libraries/messages.inc.php:277 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 libraries/messages.inc.php:1087 +#: libraries/header.inc.php:126 libraries/messages.inc.php:1083 #: pdf_pages.php:405 server_privileges.php:1626 server_privileges.php:1682 #: server_privileges.php:1946 server_synchronize.php:423 #: server_synchronize.php:866 tbl_tracking.php:592 test/theme.php:75 @@ -416,176 +416,176 @@ msgid "Table" msgstr "테이블 " #: db_printview.php:105 libraries/db_structure.lib.php:56 -#: libraries/messages.inc.php:735 +#: libraries/messages.inc.php:731 msgid "Records" msgstr "레코드수" #: db_printview.php:109 libraries/db_structure.lib.php:67 -#: libraries/messages.inc.php:1003 tbl_indexes.php:190 +#: libraries/messages.inc.php:999 tbl_indexes.php:190 msgid "Size" msgstr "크기" #: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 -#: libraries/export/sql.php:899 libraries/messages.inc.php:436 +#: libraries/export/sql.php:899 libraries/messages.inc.php:432 msgid "in use" msgstr "사용중" #: db_printview.php:187 libraries/db_info.inc.php:88 -#: libraries/export/sql.php:514 libraries/messages.inc.php:1032 +#: libraries/export/sql.php:514 libraries/messages.inc.php:1028 #: pdf_schema.php:1241 tbl_printview.php:434 tbl_structure.php:810 msgid "Creation" msgstr "생성" #: db_printview.php:196 libraries/db_info.inc.php:93 -#: libraries/export/sql.php:519 libraries/messages.inc.php:1036 +#: libraries/export/sql.php:519 libraries/messages.inc.php:1032 #: pdf_schema.php:1246 tbl_printview.php:444 tbl_structure.php:818 msgid "Last update" msgstr "업데이트" #: db_printview.php:205 libraries/db_info.inc.php:98 -#: libraries/export/sql.php:524 libraries/messages.inc.php:1031 +#: libraries/export/sql.php:524 libraries/messages.inc.php:1027 #: pdf_schema.php:1251 tbl_printview.php:454 tbl_structure.php:826 msgid "Last check" msgstr "검사" -#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1085 +#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1081 #, php-format msgid "%s table(s)" msgstr "테이블 %s 개" #: db_qbe.php:29 libraries/display_tbl.lib.php:1981 -#: libraries/messages.inc.php:1051 libraries/sql_query_form.lib.php:140 +#: libraries/messages.inc.php:1047 libraries/sql_query_form.lib.php:140 #: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131 #: view_operations.php:62 msgid "Your SQL query has been executed successfully" msgstr "SQL 질의가 바르게 실행되었습니다." -#: db_qbe.php:42 libraries/messages.inc.php:371 +#: db_qbe.php:42 libraries/messages.inc.php:367 msgid "You have to choose at least one column to display" msgstr "출력하려면 적어도 1개 이상의 열(칼럼)을 선택해야 합니다." #: db_qbe.php:200 libraries/db_structure.lib.php:104 -#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1014 +#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1010 msgid "Sort" msgstr "정렬" #: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111 #: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828 -#: libraries/messages.inc.php:69 server_databases.php:170 +#: libraries/messages.inc.php:65 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314 msgid "Ascending" msgstr "오름차순" #: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119 #: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825 -#: libraries/messages.inc.php:251 server_databases.php:170 +#: libraries/messages.inc.php:247 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315 msgid "Descending" msgstr "내림차순(역순)" #: db_qbe.php:264 db_tracking.php:78 libraries/display_tbl.lib.php:308 -#: libraries/messages.inc.php:888 tbl_change.php:277 tbl_tracking.php:597 +#: libraries/messages.inc.php:884 tbl_change.php:277 tbl_tracking.php:597 msgid "Show" msgstr "보기" -#: db_qbe.php:300 libraries/messages.inc.php:202 +#: db_qbe.php:300 libraries/messages.inc.php:198 msgid "Criteria" msgstr "Criteria" #: db_qbe.php:353 db_qbe.php:435 db_qbe.php:527 db_qbe.php:558 -#: libraries/messages.inc.php:718 +#: libraries/messages.inc.php:714 msgid "Ins" msgstr "삽입" #: db_qbe.php:357 db_qbe.php:439 db_qbe.php:524 db_qbe.php:555 -#: libraries/messages.inc.php:56 +#: libraries/messages.inc.php:52 msgid "And" msgstr "그리고" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:529 db_qbe.php:560 -#: libraries/messages.inc.php:717 +#: libraries/messages.inc.php:713 msgid "Del" msgstr "삭제" #: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553 -#: libraries/display_import.lib.php:166 libraries/messages.inc.php:592 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:588 #: libraries/tbl_properties.inc.php:779 server_privileges.php:258 #: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288 msgid "Or" msgstr "또는" -#: db_qbe.php:507 libraries/messages.inc.php:516 +#: db_qbe.php:507 libraries/messages.inc.php:512 msgid "Modify" msgstr "수정" -#: db_qbe.php:584 libraries/messages.inc.php:33 +#: db_qbe.php:584 libraries/messages.inc.php:29 msgid "Add/Delete Criteria Row" msgstr "Criteria 행(레코드) 추가/삭제" -#: db_qbe.php:596 libraries/messages.inc.php:32 +#: db_qbe.php:596 libraries/messages.inc.php:28 msgid "Add/Delete Field Columns" msgstr "열(칼럼) 추가/삭제" -#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1192 +#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1188 msgid "Update Query" msgstr "질의 업데이트" -#: db_qbe.php:617 libraries/messages.inc.php:1216 +#: db_qbe.php:617 libraries/messages.inc.php:1212 msgid "Use Tables" msgstr "사용할 테이블" -#: db_qbe.php:640 libraries/messages.inc.php:723 +#: db_qbe.php:640 libraries/messages.inc.php:719 #, php-format msgid "SQL query on database %s:" msgstr "데이터베이스 %s에 SQL 질의:" -#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:823 +#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:819 msgid "Submit Query" msgstr "질의 실행" #: db_search.php:68 libraries/auth/config.auth.lib.php:84 #: libraries/auth/config.auth.lib.php:103 #: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52 -#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:26 +#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:22 msgid "Access denied" msgstr "접근이 거부되었습니다." -#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:836 +#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:832 msgid "at least one of the words" msgstr "아무 단어나" -#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:837 +#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:833 msgid "all words" msgstr "모든 단어" -#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:838 +#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:834 msgid "the exact phrase" msgstr "정확한 문구" -#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:839 +#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:835 msgid "as regular expression" msgstr "정규표현식" -#: db_search.php:242 libraries/messages.inc.php:840 +#: db_search.php:242 libraries/messages.inc.php:836 #, php-format msgid "Search results for \"%s\" %s:" msgstr "" -#: db_search.php:260 libraries/messages.inc.php:579 +#: db_search.php:260 libraries/messages.inc.php:575 #, php-format msgid "%s match(es) inside table %s" 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/messages.inc.php:108 +#: db_structure.php:105 libraries/messages.inc.php:104 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468 msgid "Browse" msgstr "보기" #: db_search.php:272 libraries/display_tbl.lib.php:1165 -#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:243 +#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:239 #: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406 #: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377 #: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216 @@ -593,45 +593,45 @@ msgstr "보기" msgid "Delete" msgstr "삭제" -#: db_search.php:285 libraries/messages.inc.php:580 +#: db_search.php:285 libraries/messages.inc.php:576 #, php-format msgid "Total: %s match(es)" msgstr "" -#: db_search.php:299 libraries/messages.inc.php:832 +#: db_search.php:299 libraries/messages.inc.php:828 msgid "Search in database" msgstr "데이터베이스 검색" -#: db_search.php:302 libraries/messages.inc.php:835 +#: db_search.php:302 libraries/messages.inc.php:831 msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgstr "찾을 단어, 값 (와일드카드: \"%\"):" -#: db_search.php:307 libraries/messages.inc.php:842 +#: db_search.php:307 libraries/messages.inc.php:838 msgid "Find:" msgstr "찾는 방식:" -#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1017 +#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1013 msgid "Words are separated by a space character (\" \")." msgstr "단어는 스페이스(\" \")로 구분됩니다." -#: db_search.php:325 libraries/messages.inc.php:834 +#: db_search.php:325 libraries/messages.inc.php:830 msgid "Inside table(s):" msgstr "찾을 테이블:" -#: db_search.php:355 libraries/messages.inc.php:833 +#: db_search.php:355 libraries/messages.inc.php:829 msgid "Inside field:" 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/messages.inc.php:431 libraries/sql_query_form.lib.php:334 +#: libraries/messages.inc.php:427 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/db_links.inc.php:63 libraries/export/latex.php:337 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:1048 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:1044 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 #: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269 msgid "Structure" @@ -640,8 +640,8 @@ 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:1642 -#: libraries/db_links.inc.php:100 libraries/messages.inc.php:272 +#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/db_links.inc.php:100 libraries/messages.inc.php:268 #: 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 @@ -651,40 +651,40 @@ 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:1641 -#: libraries/messages.inc.php:284 libraries/mult_submits.inc.php:39 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: libraries/messages.inc.php:280 libraries/mult_submits.inc.php:39 #: libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "비우기" -#: db_structure.php:316 libraries/messages.inc.php:1075 +#: db_structure.php:316 libraries/messages.inc.php:1071 #: libraries/tbl_links.inc.php:100 #, php-format msgid "Table %s has been emptied" msgstr "테이블 %s 을 비웠습니다" -#: db_structure.php:326 libraries/messages.inc.php:1229 +#: db_structure.php:326 libraries/messages.inc.php:1225 #: libraries/tbl_links.inc.php:133 #, fuzzy, php-format msgid "View %s has been dropped" msgstr "필드 %s 를 제거했습니다" -#: db_structure.php:326 libraries/messages.inc.php:1074 +#: db_structure.php:326 libraries/messages.inc.php:1070 #: libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "테이블 %s 을 제거했습니다." -#: db_structure.php:333 libraries/messages.inc.php:1128 +#: db_structure.php:333 libraries/messages.inc.php:1124 msgid "Tracking is active." msgstr "" -#: db_structure.php:335 libraries/messages.inc.php:1129 +#: db_structure.php:335 libraries/messages.inc.php:1125 msgid "Tracking is not active." msgstr "" #: db_structure.php:420 libraries/display_tbl.lib.php:1944 -#: libraries/messages.inc.php:1228 +#: libraries/messages.inc.php:1224 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -692,83 +692,83 @@ msgid "" msgstr "" #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 -#: libraries/messages.inc.php:1233 libraries/tbl_info.inc.php:66 +#: libraries/messages.inc.php:1229 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/messages.inc.php:773 libraries/server_links.inc.php:70 +#: libraries/messages.inc.php:769 libraries/server_links.inc.php:70 #: server_replication.php:33 server_replication.php:164 server_status.php:258 msgid "Replication" msgstr "" -#: db_structure.php:489 libraries/messages.inc.php:1053 +#: db_structure.php:489 libraries/messages.inc.php:1049 msgid "Sum" msgstr "계" #: db_structure.php:496 libraries/StorageEngine.class.php:356 -#: libraries/messages.inc.php:239 +#: libraries/messages.inc.php:235 #, 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 #: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086 -#: libraries/messages.inc.php:1243 libraries/mult_submits.inc.php:16 +#: libraries/messages.inc.php:1239 libraries/mult_submits.inc.php:16 #: server_databases.php:346 server_databases.php:351 #: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465 msgid "With selected:" msgstr "선택한 것을:" #: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: libraries/messages.inc.php:148 server_databases.php:348 +#: libraries/messages.inc.php:144 server_databases.php:348 #: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459 msgid "Check All" msgstr "모두 체크" #: db_structure.php:531 libraries/display_tbl.lib.php:2077 -#: libraries/messages.inc.php:1184 libraries/replication_gui.lib.php:33 +#: libraries/messages.inc.php:1180 libraries/replication_gui.lib.php:33 #: server_databases.php:350 server_privileges.php:533 #: server_privileges.php:1564 tbl_structure.php:463 msgid "Uncheck All" msgstr "모두 체크안함" -#: db_structure.php:536 libraries/messages.inc.php:150 +#: db_structure.php:536 libraries/messages.inc.php:146 msgid "Check tables having overhead" msgstr "" #: db_structure.php:547 db_structure.php:548 db_structure.php:599 -#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:672 +#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:668 #: libraries/mult_submits.inc.php:28 tbl_structure.php:493 #: tbl_structure.php:495 msgid "Print view" msgstr "인쇄용 보기" -#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:153 +#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:149 #: libraries/mult_submits.inc.php:42 tbl_operations.php:579 msgid "Check table" msgstr "테이블 검사" -#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:590 +#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:586 #: libraries/mult_submits.inc.php:47 tbl_operations.php:619 #: tbl_structure.php:710 tbl_structure.php:712 msgid "Optimize table" msgstr "테이블 최적화" -#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:758 +#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:754 #: libraries/mult_submits.inc.php:52 tbl_operations.php:609 msgid "Repair table" msgstr "테이블 복구" -#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:55 +#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:51 #: libraries/mult_submits.inc.php:57 tbl_operations.php:599 msgid "Analyze table" msgstr "테이블 분석" #: db_structure.php:557 db_structure.php:558 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/messages.inc.php:310 +#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:306 #: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84 #: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109 #: server_privileges.php:1341 setup/frames/menu.inc.php:22 @@ -776,7 +776,7 @@ msgstr "테이블 분석" msgid "Export" msgstr "내보내기" -#: db_tracking.php:66 libraries/messages.inc.php:1151 +#: db_tracking.php:66 libraries/messages.inc.php:1147 msgid "Tracked tables" msgstr "" @@ -784,7 +784,7 @@ msgstr "" #: 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/header_printview.inc.php:58 libraries/messages.inc.php:212 +#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:208 #: navigation.php:233 server_databases.php:169 server_privileges.php:1621 #: server_privileges.php:1682 server_privileges.php:1940 #: server_processlist.php:56 server_synchronize.php:1179 @@ -792,97 +792,97 @@ msgstr "" msgid "Database" msgstr "데이터베이스" -#: db_tracking.php:73 libraries/messages.inc.php:1146 +#: db_tracking.php:73 libraries/messages.inc.php:1142 msgid "Last version" msgstr "" -#: db_tracking.php:74 libraries/messages.inc.php:1145 tbl_tracking.php:594 +#: db_tracking.php:74 libraries/messages.inc.php:1141 tbl_tracking.php:594 #, fuzzy msgid "Created" msgstr " 만들기 " -#: db_tracking.php:75 libraries/messages.inc.php:1147 tbl_tracking.php:595 +#: db_tracking.php:75 libraries/messages.inc.php:1143 tbl_tracking.php:595 msgid "Updated" msgstr "" #: db_tracking.php:77 libraries/Index.class.php:440 -#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:27 +#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:23 #: server_databases.php:203 server_privileges.php:1503 #: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187 msgid "Action" msgstr "실행" -#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:247 +#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:243 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:106 libraries/messages.inc.php:1142 tbl_tracking.php:548 +#: db_tracking.php:106 libraries/messages.inc.php:1138 tbl_tracking.php:548 #: tbl_tracking.php:606 tbl_tracking.php:613 msgid "active" msgstr "" -#: db_tracking.php:108 libraries/messages.inc.php:1143 tbl_tracking.php:550 +#: db_tracking.php:108 libraries/messages.inc.php:1139 tbl_tracking.php:550 #: tbl_tracking.php:608 tbl_tracking.php:610 msgid "not active" msgstr "" -#: db_tracking.php:121 libraries/messages.inc.php:1160 +#: db_tracking.php:121 libraries/messages.inc.php:1156 #, fuzzy msgid "Versions" msgstr "테이블 작업" -#: db_tracking.php:122 libraries/messages.inc.php:1132 tbl_tracking.php:379 +#: db_tracking.php:122 libraries/messages.inc.php:1128 tbl_tracking.php:379 #: tbl_tracking.php:624 msgid "Tracking report" msgstr "" -#: db_tracking.php:123 libraries/messages.inc.php:1144 tbl_tracking.php:251 +#: db_tracking.php:123 libraries/messages.inc.php:1140 tbl_tracking.php:251 #: tbl_tracking.php:624 #, fuzzy msgid "Structure snapshot" msgstr "구조만" -#: db_tracking.php:152 libraries/messages.inc.php:1154 +#: db_tracking.php:152 libraries/messages.inc.php:1150 msgid "Untracked tables" msgstr "" -#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1153 +#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1149 #: tbl_structure.php:529 tbl_structure.php:531 #, fuzzy msgid "Track table" msgstr "테이블 검사" -#: db_tracking.php:200 libraries/messages.inc.php:1121 +#: db_tracking.php:200 libraries/messages.inc.php:1117 #, fuzzy msgid "Database Log" msgstr "데이터베이스" -#: export.php:62 libraries/messages.inc.php:312 +#: export.php:62 libraries/messages.inc.php:308 msgid "Selected export type has to be saved in file!" msgstr "" -#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:567 +#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:563 #, php-format msgid "Insufficient space to save the file %s." msgstr "" -#: export.php:294 libraries/messages.inc.php:324 +#: export.php:294 libraries/messages.inc.php:320 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "" -#: export.php:298 export.php:302 libraries/messages.inc.php:562 +#: export.php:298 export.php:302 libraries/messages.inc.php:558 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "" -#: export.php:629 libraries/messages.inc.php:276 +#: export.php:629 libraries/messages.inc.php:272 #, php-format msgid "Dump has been saved to file %s." msgstr "" -#: import.php:60 libraries/messages.inc.php:1202 +#: import.php:60 libraries/messages.inc.php:1198 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation%" @@ -890,21 +890,21 @@ msgid "" msgstr "" #: import.php:279 import.php:332 libraries/File.class.php:849 -#: libraries/File.class.php:961 libraries/messages.inc.php:325 +#: libraries/File.class.php:961 libraries/messages.inc.php:321 msgid "File could not be read" msgstr "파일을 읽을 수 없습니다" #: import.php:287 import.php:296 import.php:315 import.php:324 #: libraries/File.class.php:1031 libraries/File.class.php:1039 #: libraries/File.class.php:1055 libraries/File.class.php:1063 -#: libraries/messages.inc.php:1189 +#: libraries/messages.inc.php:1185 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." msgstr "" -#: import.php:337 libraries/messages.inc.php:547 +#: import.php:337 libraries/messages.inc.php:543 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -912,39 +912,39 @@ msgid "" msgstr "" #: import.php:372 libraries/display_import.lib.php:24 -#: libraries/messages.inc.php:125 +#: libraries/messages.inc.php:121 msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:397 libraries/messages.inc.php:102 +#: import.php:397 libraries/messages.inc.php:98 msgid "The bookmark has been deleted." msgstr "북마크를 제거했습니다." -#: import.php:401 libraries/messages.inc.php:879 +#: import.php:401 libraries/messages.inc.php:875 msgid "Showing bookmark" msgstr "" -#: import.php:403 libraries/messages.inc.php:101 +#: import.php:403 libraries/messages.inc.php:97 #, php-format msgid "Bookmark %s created" msgstr "" -#: import.php:409 import.php:415 libraries/messages.inc.php:407 +#: import.php:409 import.php:415 libraries/messages.inc.php:403 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" -#: import.php:424 libraries/messages.inc.php:1107 +#: import.php:424 libraries/messages.inc.php:1103 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: index.php:190 libraries/messages.inc.php:553 +#: index.php:190 libraries/messages.inc.php:549 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin 은 프레임을 지원하는 브라우저에서 잘 보입니다." -#: js/messages.php:25 libraries/messages.inc.php:155 +#: js/messages.php:25 libraries/messages.inc.php:151 #: server_synchronize.php:345 server_synchronize.php:357 #: server_synchronize.php:373 server_synchronize.php:380 #: server_synchronize.php:739 server_synchronize.php:767 @@ -952,116 +952,116 @@ msgstr "phpMyAdmin 은 프레임을 지원하는 브라우저에서 잘 msgid "Click to select" msgstr "" -#: js/messages.php:26 libraries/messages.inc.php:156 +#: js/messages.php:26 libraries/messages.inc.php:152 msgid "Click to unselect" msgstr "" #: js/messages.php:27 libraries/import.lib.php:103 -#: libraries/messages.inc.php:550 sql.php:89 +#: libraries/messages.inc.php:546 sql.php:89 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" 구문은 허락되지 않습니다." -#: js/messages.php:30 libraries/messages.inc.php:270 +#: js/messages.php:30 libraries/messages.inc.php:266 #: libraries/mult_submits.inc.php:258 sql.php:188 msgid "Do you really want to " msgstr "정말로 다음을 실행하시겠습니까? " -#: js/messages.php:31 libraries/messages.inc.php:271 +#: js/messages.php:31 libraries/messages.inc.php:267 #: libraries/mult_submits.inc.php:258 sql.php:172 msgid "You are about to DESTROY a complete database!" msgstr "" -#: js/messages.php:34 libraries/messages.inc.php:94 +#: js/messages.php:34 libraries/messages.inc.php:90 msgid "You are about to DISABLE a BLOB Repository!" msgstr "" -#: js/messages.php:35 libraries/messages.inc.php:91 +#: js/messages.php:35 libraries/messages.inc.php:87 #, php-format msgid "Are you sure you want to disable all BLOB references for database %s?" msgstr "" -#: js/messages.php:38 libraries/messages.inc.php:342 +#: js/messages.php:38 libraries/messages.inc.php:338 msgid "Missing value in the form!" msgstr "Missing value in the form !" -#: js/messages.php:39 libraries/messages.inc.php:570 +#: js/messages.php:39 libraries/messages.inc.php:566 msgid "This is not a number!" msgstr "은 숫자(번호)가 아닙니다!" -#: js/messages.php:42 libraries/messages.inc.php:380 +#: js/messages.php:42 libraries/messages.inc.php:376 msgid "The host name is empty!" msgstr "호스트명이 없습니다!" -#: js/messages.php:43 libraries/messages.inc.php:1208 +#: js/messages.php:43 libraries/messages.inc.php:1204 msgid "The user name is empty!" msgstr "사용자명이 없습니다!" -#: js/messages.php:44 libraries/messages.inc.php:607 +#: js/messages.php:44 libraries/messages.inc.php:603 #: server_privileges.php:1197 user_password.php:70 msgid "The password is empty!" msgstr "암호가 비었습니다!" -#: js/messages.php:45 libraries/messages.inc.php:609 +#: js/messages.php:45 libraries/messages.inc.php:605 #: server_privileges.php:1195 user_password.php:73 msgid "The passwords aren't the same!" msgstr "암호가 동일하지 않습니다!" -#: js/messages.php:49 libraries/messages.inc.php:123 pmd_general.php:342 +#: js/messages.php:49 libraries/messages.inc.php:119 pmd_general.php:342 #: pmd_general.php:379 msgid "Cancel" msgstr "" -#: js/messages.php:52 libraries/messages.inc.php:514 +#: js/messages.php:52 libraries/messages.inc.php:510 msgid "Modifications have been saved" msgstr "수정된 내용이 저장되었습니다." -#: js/messages.php:53 libraries/messages.inc.php:741 +#: js/messages.php:53 libraries/messages.inc.php:737 msgid "Relation deleted" msgstr "" -#: js/messages.php:54 libraries/messages.inc.php:340 +#: js/messages.php:54 libraries/messages.inc.php:336 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:55 libraries/messages.inc.php:434 +#: js/messages.php:55 libraries/messages.inc.php:430 msgid "Internal relation added" msgstr "" -#: js/messages.php:56 libraries/messages.inc.php:299 +#: js/messages.php:56 libraries/messages.inc.php:295 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:57 libraries/messages.inc.php:300 +#: js/messages.php:57 libraries/messages.inc.php:296 msgid "Error: relation already exists." msgstr "" -#: js/messages.php:58 libraries/messages.inc.php:302 +#: js/messages.php:58 libraries/messages.inc.php:298 msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:59 libraries/messages.inc.php:351 +#: js/messages.php:59 libraries/messages.inc.php:347 #: libraries/relation.lib.php:107 msgid "General relation features" msgstr "" -#: js/messages.php:59 libraries/messages.inc.php:260 +#: js/messages.php:59 libraries/messages.inc.php:256 #: libraries/relation.lib.php:101 libraries/relation.lib.php:108 msgid "Disabled" msgstr "사용불가" -#: js/messages.php:60 libraries/messages.inc.php:850 +#: js/messages.php:60 libraries/messages.inc.php:846 msgid "Select referenced key" msgstr "" -#: js/messages.php:61 libraries/messages.inc.php:848 +#: js/messages.php:61 libraries/messages.inc.php:844 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:62 libraries/messages.inc.php:653 +#: js/messages.php:62 libraries/messages.inc.php:649 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:63 libraries/messages.inc.php:142 pmd_general.php:77 +#: js/messages.php:63 libraries/messages.inc.php:138 pmd_general.php:77 #: tbl_relation.php:548 msgid "Choose field to display" msgstr "출력할 필드 선택" @@ -1081,9 +1081,9 @@ msgid "Prev" msgstr "이전" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2332 -#: libraries/common.lib.php:2335 libraries/display_tbl.lib.php:338 -#: libraries/messages.inc.php:543 server_binlog.php:205 server_binlog.php:207 +#: js/messages.php:77 libraries/common.lib.php:2344 +#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: libraries/messages.inc.php:539 server_binlog.php:205 server_binlog.php:207 #: tbl_printview.php:424 tbl_structure.php:802 msgid "Next" msgstr "다음" @@ -1158,27 +1158,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1543 +#: js/messages.php:97 libraries/common.lib.php:1555 msgid "Jan" msgstr "해오름달" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1545 +#: js/messages.php:99 libraries/common.lib.php:1557 msgid "Feb" msgstr "시샘달" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1547 +#: js/messages.php:101 libraries/common.lib.php:1559 msgid "Mar" msgstr "물오름달" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1549 +#: js/messages.php:103 libraries/common.lib.php:1561 msgid "Apr" msgstr "잎새달" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1551 +#: js/messages.php:105 libraries/common.lib.php:1563 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1186,37 +1186,37 @@ msgid "May" msgstr "푸른달" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1553 +#: js/messages.php:107 libraries/common.lib.php:1565 msgid "Jun" msgstr "누리달" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1555 +#: js/messages.php:109 libraries/common.lib.php:1567 msgid "Jul" msgstr "견우직녀달" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1557 +#: js/messages.php:111 libraries/common.lib.php:1569 msgid "Aug" msgstr "타오름달" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1559 +#: js/messages.php:113 libraries/common.lib.php:1571 msgid "Sep" msgstr "열매달" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1561 +#: js/messages.php:115 libraries/common.lib.php:1573 msgid "Oct" msgstr "하늘연달" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1563 +#: js/messages.php:117 libraries/common.lib.php:1575 msgid "Nov" msgstr "미틈달" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1565 +#: js/messages.php:119 libraries/common.lib.php:1577 msgid "Dec" msgstr "매듭달" @@ -1257,37 +1257,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1568 +#: js/messages.php:132 libraries/common.lib.php:1580 msgid "Sun" msgstr "일" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1570 +#: js/messages.php:134 libraries/common.lib.php:1582 msgid "Mon" msgstr "월" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1572 +#: js/messages.php:136 libraries/common.lib.php:1584 msgid "Tue" msgstr "화" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1574 +#: js/messages.php:138 libraries/common.lib.php:1586 msgid "Wed" msgstr "수" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1576 +#: js/messages.php:140 libraries/common.lib.php:1588 msgid "Thu" msgstr "목" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1578 +#: js/messages.php:142 libraries/common.lib.php:1590 msgid "Fri" msgstr "금" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1580 +#: js/messages.php:144 libraries/common.lib.php:1592 msgid "Sat" msgstr "토" @@ -1361,76 +1361,76 @@ msgstr "사용중" msgid "Second" msgstr "레코드수" -#: libraries/Config.class.php:1015 libraries/messages.inc.php:338 +#: libraries/Config.class.php:1015 libraries/messages.inc.php:334 msgid "Font size" msgstr "" #: libraries/File.class.php:344 libraries/File.class.php:432 #: libraries/File.class.php:569 libraries/File.class.php:708 -#: libraries/messages.inc.php:1201 +#: libraries/messages.inc.php:1197 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.class.php:414 libraries/messages.inc.php:1198 +#: libraries/File.class.php:414 libraries/messages.inc.php:1194 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:417 libraries/messages.inc.php:1197 +#: libraries/File.class.php:417 libraries/messages.inc.php:1193 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:420 libraries/messages.inc.php:1200 +#: libraries/File.class.php:420 libraries/messages.inc.php:1196 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:423 libraries/messages.inc.php:1199 +#: libraries/File.class.php:423 libraries/messages.inc.php:1195 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:426 libraries/messages.inc.php:1195 +#: libraries/File.class.php:426 libraries/messages.inc.php:1191 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:429 libraries/messages.inc.php:1196 +#: libraries/File.class.php:429 libraries/messages.inc.php:1192 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:908 libraries/messages.inc.php:319 +#: libraries/File.class.php:908 libraries/messages.inc.php:315 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "" -#: libraries/Index.class.php:428 libraries/messages.inc.php:554 +#: libraries/Index.class.php:428 libraries/messages.inc.php:550 #: tbl_relation.php:529 msgid "No index defined!" msgstr "인덱스가 설정되지 않았습니다!" -#: libraries/Index.class.php:433 libraries/messages.inc.php:411 +#: libraries/Index.class.php:433 libraries/messages.inc.php:407 #: server_databases.php:132 tbl_tracking.php:316 msgid "Indexes" msgstr "인덱스" -#: libraries/Index.class.php:444 libraries/messages.inc.php:1186 +#: libraries/Index.class.php:444 libraries/messages.inc.php:1182 #: 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:475 tbl_tracking.php:322 msgid "Unique" msgstr "고유값" -#: libraries/Index.class.php:445 libraries/messages.inc.php:596 +#: libraries/Index.class.php:445 libraries/messages.inc.php:592 #: tbl_tracking.php:323 msgid "Packed" msgstr "" -#: libraries/Index.class.php:447 libraries/messages.inc.php:131 +#: libraries/Index.class.php:447 libraries/messages.inc.php:127 #: tbl_tracking.php:325 msgid "Cardinality" msgstr "Cardinality" -#: libraries/Index.class.php:450 libraries/messages.inc.php:162 +#: libraries/Index.class.php:450 libraries/messages.inc.php:158 #: tbl_tracking.php:279 tbl_tracking.php:328 #, fuzzy msgid "Comment" @@ -1439,29 +1439,29 @@ msgstr "설명(코멘트)" #: libraries/Index.class.php:466 libraries/common.lib.php:616 #: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:280 pdf_pages.php:280 +#: libraries/messages.inc.php:276 pdf_pages.php:280 #: setup/frames/index.inc.php:124 setup/lib/messages.inc.php:352 #: tbl_row_action.php:69 msgid "Edit" msgstr "수정" -#: libraries/Index.class.php:472 libraries/messages.inc.php:666 +#: libraries/Index.class.php:472 libraries/messages.inc.php:662 msgid "The primary key has been dropped" msgstr "기본 키를 제거했습니다" -#: libraries/Index.class.php:476 libraries/messages.inc.php:413 +#: libraries/Index.class.php:476 libraries/messages.inc.php:409 #, php-format msgid "Index %s has been dropped" msgstr "인덱스 %s 를 제거했습니다" -#: libraries/Index.class.php:576 libraries/messages.inc.php:412 +#: libraries/Index.class.php:576 libraries/messages.inc.php:408 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "" -#: libraries/List_Database.class.php:431 libraries/messages.inc.php:218 +#: libraries/List_Database.class.php:431 libraries/messages.inc.php:214 #: libraries/server_links.inc.php:41 server_databases.php:88 #: server_privileges.php:1621 setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" @@ -1488,85 +1488,85 @@ msgid_plural "%1$d rows inserted." msgstr[0] "" msgstr[1] "" -#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:549 +#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:545 msgid "" "There is no detailed status information available for this storage engine." msgstr "" -#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:291 +#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:287 #, php-format msgid "%s is available on this MySQL server." msgstr "" -#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:292 +#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:288 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "" -#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:294 +#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:290 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "" -#: libraries/Table.class.php:1019 libraries/messages.inc.php:443 +#: libraries/Table.class.php:1019 libraries/messages.inc.php:439 msgid "Invalid database" msgstr "" -#: libraries/Table.class.php:1033 libraries/messages.inc.php:450 +#: libraries/Table.class.php:1033 libraries/messages.inc.php:446 #: tbl_get_field.php:26 msgid "Invalid table name" msgstr "" -#: libraries/Table.class.php:1048 libraries/messages.inc.php:301 +#: libraries/Table.class.php:1048 libraries/messages.inc.php:297 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "" -#: libraries/Table.class.php:1132 libraries/messages.inc.php:754 +#: libraries/Table.class.php:1132 libraries/messages.inc.php:750 #, php-format msgid "Table %s has been renamed to %s" msgstr "테이블 %s을(를) %s(으)로 변경하였습니다." -#: libraries/Theme.class.php:162 libraries/messages.inc.php:1099 +#: libraries/Theme.class.php:162 libraries/messages.inc.php:1095 #, php-format msgid "No valid image path for theme %s found!" msgstr "" -#: libraries/Theme.class.php:384 libraries/messages.inc.php:1097 +#: libraries/Theme.class.php:384 libraries/messages.inc.php:1093 msgid "No preview available." msgstr "" -#: libraries/Theme.class.php:387 libraries/messages.inc.php:1089 +#: libraries/Theme.class.php:387 libraries/messages.inc.php:1085 msgid "take it" msgstr "" -#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1096 +#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1092 #, php-format msgid "Default theme %s not found!" msgstr "" -#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1098 +#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1094 #, php-format msgid "Theme %s not found!" msgstr "" -#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1100 +#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1096 #, php-format msgid "Theme path not found for theme %s!" msgstr "" -#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1101 +#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1097 #: test/theme.php:161 themes.php:21 themes.php:41 msgid "Theme / Style" msgstr "" -#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:172 +#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:168 msgid "Cannot connect: invalid settings." msgstr "" #: libraries/auth/config.auth.lib.php:92 #: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65 -#: libraries/messages.inc.php:1238 test/theme.php:152 +#: libraries/messages.inc.php:1234 test/theme.php:152 #, php-format msgid "Welcome to %s" msgstr "%s에 오셨습니다" @@ -1586,105 +1586,105 @@ msgid "" "the administrator of the MySQL server." msgstr "" -#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:488 +#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:484 msgid "Log in" msgstr "로그인" #: libraries/auth/cookie.auth.lib.php:246 -#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:659 +#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:655 #: libraries/navigation_header.inc.php:93 #: libraries/navigation_header.inc.php:95 msgid "phpMyAdmin documentation" msgstr "phpMyAdmin 설명서" #: libraries/auth/cookie.auth.lib.php:258 -#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:492 +#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:488 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:493 +#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:489 #, fuzzy msgid "Server:" msgstr "서버" -#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:494 +#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:490 msgid "Username:" msgstr "사용자명:" -#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:491 +#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:487 msgid "Password:" msgstr "암호:" -#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:854 +#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:850 msgid "Server Choice" msgstr "서버 선택" #: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 -#: libraries/messages.inc.php:177 +#: libraries/messages.inc.php:173 msgid "Cookies must be enabled past this point." msgstr "쿠키 사용이 가능해야 합니다 past this point." #: libraries/auth/cookie.auth.lib.php:671 -#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:489 +#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:485 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" #: libraries/auth/cookie.auth.lib.php:675 -#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:544 +#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:540 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" #: libraries/auth/cookie.auth.lib.php:685 #: libraries/auth/cookie.auth.lib.php:687 -#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:126 +#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:122 msgid "Cannot log in to the MySQL server" msgstr "MySQL 서버에 로그인할 수 없습니다" -#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1245 +#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1241 msgid "Wrong username/password. Access denied." msgstr "사용자명/암호가 틀렸습니다. 접근이 거부되었습니다." #: libraries/auth/swekey/swekey.auth.lib.php:118 -#: libraries/messages.inc.php:1057 +#: libraries/messages.inc.php:1053 #, php-format msgid "File %s does not contain any key id" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:157 #: libraries/auth/swekey/swekey.auth.lib.php:180 -#: libraries/messages.inc.php:1056 +#: libraries/messages.inc.php:1052 msgid "Hardware authentication failed" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:166 -#: libraries/messages.inc.php:1058 +#: libraries/messages.inc.php:1054 msgid "No valid authentication key plugged" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:202 -#: libraries/messages.inc.php:1055 +#: libraries/messages.inc.php:1051 msgid "Authenticating..." msgstr "" -#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1230 +#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1226 msgid "View image" msgstr "" -#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:652 +#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:648 msgid "Play audio" msgstr "" -#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1232 +#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1228 msgid "View video" msgstr "" -#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:269 +#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:265 msgid "Download file" msgstr "" -#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:128 +#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:124 msgid "" "Couldn't load the iconv or recode extension needed for charset conversion. " "Either configure PHP to enable these extensions or disable charset " @@ -1693,13 +1693,13 @@ msgstr "" #: libraries/charset_conversion.lib.php:79 #: libraries/charset_conversion.lib.php:90 -#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:130 +#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:126 msgid "" "Couldn't use the iconv, libiconv, or recode_string functions, although the " "necessary extensions appear to be loaded. Check your PHP configuration." msgstr "" -#: libraries/common.inc.php:583 libraries/messages.inc.php:170 +#: libraries/common.inc.php:583 libraries/messages.inc.php:166 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!" @@ -1730,22 +1730,22 @@ msgstr "환경설정 파일에서 $cfg['PmaAbsoluteUri'] 주소를 기 msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:636 libraries/messages.inc.php:448 +#: libraries/common.inc.php:636 libraries/messages.inc.php:444 #, 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/messages.inc.php:856 libraries/select_server.lib.php:41 +#: libraries/messages.inc.php:852 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/messages.inc.php:437 +#: libraries/common.inc.php:823 libraries/messages.inc.php:433 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.lib.php:147 libraries/messages.inc.php:499 +#: libraries/common.lib.php:147 libraries/messages.inc.php:495 #, php-format msgid "Max: %s%s" msgstr "" @@ -1767,7 +1767,7 @@ msgstr "보냄" #: libraries/common.lib.php:428 libraries/common.lib.php:430 #: libraries/common.lib.php:432 libraries/common.lib.php:448 #: libraries/common.lib.php:450 libraries/dbg/setup.php:25 -#: libraries/display_export.lib.php:164 libraries/messages.inc.php:267 +#: libraries/display_export.lib.php:164 libraries/messages.inc.php:263 #: libraries/relation.lib.php:97 libraries/sql_query_form.lib.php:451 #: libraries/sql_query_form.lib.php:454 main.php:229 pdf_pages.php:37 #: pdf_pages.php:43 pdf_pages.php:49 pdf_pages.php:54 @@ -1777,56 +1777,56 @@ msgstr "도움말" #: libraries/common.lib.php:581 libraries/core.lib.php:234 #: libraries/core.lib.php:263 libraries/import.lib.php:134 -#: libraries/messages.inc.php:297 pdf_schema.php:32 pdf_schema.php:232 +#: libraries/messages.inc.php:293 pdf_schema.php:32 pdf_schema.php:232 #: tbl_change.php:1027 tbl_operations.php:213 tbl_relation.php:290 #: view_operations.php:62 msgid "Error" msgstr "오류" #: libraries/common.lib.php:595 libraries/header_printview.inc.php:61 -#: libraries/messages.inc.php:1023 server_processlist.php:60 +#: libraries/messages.inc.php:1019 server_processlist.php:60 #: server_status.php:247 msgid "SQL query" msgstr "SQL 질의" -#: libraries/common.lib.php:634 libraries/messages.inc.php:538 +#: libraries/common.lib.php:634 libraries/messages.inc.php:534 msgid "MySQL said: " msgstr "MySQL 메시지: " -#: libraries/common.lib.php:667 libraries/messages.inc.php:76 +#: libraries/common.lib.php:667 libraries/messages.inc.php:72 #: pdf_schema.php:241 user_password.php:115 msgid "Back" msgstr "뒤로" -#: libraries/common.lib.php:1177 libraries/messages.inc.php:309 +#: libraries/common.lib.php:1177 libraries/messages.inc.php:305 #: setup/lib/messages.inc.php:353 msgid "Explain SQL" msgstr "SQL 해석" -#: libraries/common.lib.php:1180 libraries/messages.inc.php:551 +#: libraries/common.lib.php:1180 libraries/messages.inc.php:547 msgid "Skip Explain SQL" msgstr "해석(EXPLAIN) 생략" -#: libraries/common.lib.php:1212 libraries/messages.inc.php:563 +#: libraries/common.lib.php:1212 libraries/messages.inc.php:559 msgid "Without PHP Code" msgstr "PHP 코드 없이 보기" -#: libraries/common.lib.php:1215 libraries/messages.inc.php:649 +#: libraries/common.lib.php:1215 libraries/messages.inc.php:645 #: setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "PHP 코드 보기" -#: libraries/common.lib.php:1233 libraries/messages.inc.php:737 +#: libraries/common.lib.php:1233 libraries/messages.inc.php:733 #: server_status.php:341 setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "" -#: libraries/common.lib.php:1242 libraries/messages.inc.php:575 +#: libraries/common.lib.php:1242 libraries/messages.inc.php:571 #, fuzzy msgid "Skip Validate SQL" msgstr "SQL 검사" -#: libraries/common.lib.php:1245 libraries/messages.inc.php:1220 +#: libraries/common.lib.php:1245 libraries/messages.inc.php:1216 #: setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "SQL 검사" @@ -1840,11 +1840,11 @@ msgid "Inline" msgstr "" #: libraries/common.lib.php:1332 libraries/common.lib.php:1347 -#: libraries/messages.inc.php:713 +#: libraries/messages.inc.php:709 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1351 libraries/messages.inc.php:1108 +#: libraries/common.lib.php:1351 libraries/messages.inc.php:1104 #: libraries/tbl_triggers.lib.php:28 server_processlist.php:58 msgid "Time" msgstr "시간" @@ -1878,46 +1878,56 @@ msgstr "PB" msgid "EiB" msgstr "EB" +#. l10n: Thousands separator +#: libraries/common.lib.php:1417 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: libraries/common.lib.php:1419 +msgid "." +msgstr "." + #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1584 +#: libraries/common.lib.php:1596 #: libraries/transformations/text_plain__dateformat.inc.php:28 msgid "%B %d, %Y at %I:%M %p" msgstr "%y-%m-%d %H:%M " -#: libraries/common.lib.php:1886 +#: libraries/common.lib.php:1898 #, 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:2301 libraries/common.lib.php:2304 -#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:664 +#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:660 #: server_status.php:608 msgid "Begin" msgstr "처음" -#: libraries/common.lib.php:2302 libraries/common.lib.php:2305 -#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:665 +#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:661 #: server_binlog.php:168 server_binlog.php:170 msgid "Previous" msgstr "이전" -#: libraries/common.lib.php:2333 libraries/common.lib.php:2336 -#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:289 +#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:285 msgid "End" msgstr "마지막" -#: libraries/common.lib.php:2409 libraries/messages.inc.php:455 +#: libraries/common.lib.php:2421 libraries/messages.inc.php:451 #, php-format msgid "Jump to database "%s"." msgstr "데이터베이스 "%s" 로 이동." -#: libraries/common.lib.php:2429 libraries/messages.inc.php:461 +#: libraries/common.lib.php:2441 libraries/messages.inc.php:457 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/core.lib.php:286 libraries/dbg/setup.php:22 -#: libraries/messages.inc.php:127 +#: libraries/messages.inc.php:123 #, php-format msgid "" "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " @@ -1925,116 +1935,116 @@ msgid "" msgstr " %s 확장모듈을 불러올 수 없습니다.
PHP 환경설정을 검사하십시오." #: libraries/db_events.inc.php:20 libraries/db_events.inc.php:22 -#: libraries/export/sql.php:415 libraries/messages.inc.php:306 +#: libraries/export/sql.php:415 libraries/messages.inc.php:302 msgid "Events" msgstr "" #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 -#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:541 +#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:537 #: libraries/tbl_triggers.lib.php:27 setup/frames/index.inc.php:112 msgid "Name" msgstr "이름" -#: libraries/db_links.inc.php:45 libraries/messages.inc.php:216 +#: libraries/db_links.inc.php:45 libraries/messages.inc.php:212 #, php-format msgid "Database %s has been dropped." msgstr "데이터베이스 %s 를 제거했습니다." #: libraries/db_links.inc.php:57 libraries/db_links.inc.php:58 -#: libraries/db_links.inc.php:59 libraries/messages.inc.php:234 +#: libraries/db_links.inc.php:59 libraries/messages.inc.php:230 msgid "Database seems to be empty!" msgstr "" -#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1025 +#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1021 #: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60 #: querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1152 +#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1148 #: libraries/tbl_links.inc.php:69 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:86 libraries/messages.inc.php:719 +#: libraries/db_links.inc.php:86 libraries/messages.inc.php:715 msgid "Query" msgstr "질의 마법사" -#: libraries/db_links.inc.php:91 libraries/messages.inc.php:253 +#: libraries/db_links.inc.php:91 libraries/messages.inc.php:249 msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:98 libraries/messages.inc.php:397 +#: libraries/db_links.inc.php:98 libraries/messages.inc.php:393 #: libraries/server_links.inc.php:88 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:104 libraries/messages.inc.php:587 +#: libraries/db_links.inc.php:104 libraries/messages.inc.php:583 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" msgstr "테이블 작업" -#: libraries/db_links.inc.php:111 libraries/messages.inc.php:709 +#: libraries/db_links.inc.php:111 libraries/messages.inc.php:705 #: libraries/server_links.inc.php:66 server_privileges.php:72 #: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117 msgid "Privileges" msgstr "사용권한" #: libraries/db_routines.inc.php:30 libraries/db_routines.inc.php:32 -#: libraries/messages.inc.php:812 +#: libraries/messages.inc.php:808 msgid "Routines" msgstr "" -#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:811 +#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:807 msgid "Return type" msgstr "" #: libraries/db_structure.lib.php:57 libraries/display_tbl.lib.php:1848 -#: libraries/messages.inc.php:65 +#: libraries/messages.inc.php:61 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "" -#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:593 +#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:589 #: server_databases.php:142 tbl_printview.php:336 tbl_structure.php:683 msgid "Overhead" msgstr "부담" #: libraries/dbi/mysql.dbi.lib.php:112 libraries/dbi/mysqli.dbi.lib.php:124 -#: libraries/messages.inc.php:176 +#: libraries/messages.inc.php:172 msgid "Connection for controluser as defined in your configuration failed." msgstr "" #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 -#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:855 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:851 msgid "The server is not responding" msgstr "" #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:1010 +#: libraries/messages.inc.php:1006 msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "" -#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:255 +#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:251 #: tbl_structure.php:609 msgid "Details..." msgstr "" -#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:143 +#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:139 #: main.php:91 user_password.php:111 user_password.php:129 msgid "Change password" msgstr "암호 변경" -#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:561 +#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:557 #: libraries/replication_gui.lib.php:341 server_privileges.php:768 msgid "No Password" msgstr "암호 없음" -#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:610 +#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:606 #: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60 #: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335 #: libraries/replication_gui.lib.php:345 server_privileges.php:757 @@ -2043,13 +2053,13 @@ msgstr "암호 없음" msgid "Password" msgstr "암호" -#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:806 +#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:802 #: libraries/replication_gui.lib.php:349 libraries/replication_gui.lib.php:352 #: server_privileges.php:776 server_privileges.php:779 msgid "Re-type" msgstr "재입력" -#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:608 +#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:604 msgid "Password Hashing" msgstr "" @@ -2057,90 +2067,90 @@ msgstr "" msgid "MySQL 4.0 compatible" msgstr "" -#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:353 +#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:349 #: libraries/replication_gui.lib.php:356 server_privileges.php:783 msgid "Generate Password" msgstr "" -#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:352 +#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:348 #: libraries/replication_gui.lib.php:359 server_privileges.php:786 msgid "Generate" msgstr "" #: libraries/display_create_database.lib.php:22 -#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:189 +#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:185 msgid "Create new database" msgstr "새 데이터베이스 만들기" -#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:185 +#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:181 msgid "Create" msgstr " 만들기 " -#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:564 +#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:560 #: server_privileges.php:74 server_privileges.php:1388 #: server_replication.php:35 msgid "No Privileges" msgstr "권한 없음" -#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:445 +#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:441 msgid "Table must have at least one field." msgstr "" -#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:190 +#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:186 #, php-format msgid "Create table on database %s" msgstr "데이터베이스 %s에 새로운 테이블을 만듭니다." -#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:577 +#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:573 msgid "Number of fields" msgstr "" -#: libraries/display_export.lib.php:42 libraries/messages.inc.php:124 +#: libraries/display_export.lib.php:42 libraries/messages.inc.php:120 msgid "Could not load export plugins, please check your installation!" msgstr "" -#: libraries/display_export.lib.php:107 libraries/messages.inc.php:277 +#: libraries/display_export.lib.php:107 libraries/messages.inc.php:273 #, php-format msgid "Dump %s row(s) starting at record # %s" msgstr "%s개의 행(레코드)을 덤프 (%s번째 레코드부터)." -#: libraries/display_export.lib.php:115 libraries/messages.inc.php:274 +#: libraries/display_export.lib.php:115 libraries/messages.inc.php:270 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:125 libraries/messages.inc.php:852 +#: libraries/display_export.lib.php:125 libraries/messages.inc.php:848 #: setup/lib/messages.inc.php:82 msgid "Save as file" msgstr "파일로 저장" -#: libraries/display_export.lib.php:134 libraries/messages.inc.php:828 +#: libraries/display_export.lib.php:134 libraries/messages.inc.php:824 #, fuzzy, php-format msgid "Save on server in %s directory" msgstr "웹서버 업로드 디렉토리" -#: libraries/display_export.lib.php:142 libraries/messages.inc.php:594 +#: libraries/display_export.lib.php:142 libraries/messages.inc.php:590 #: setup/lib/messages.inc.php:90 msgid "Overwrite existing file(s)" msgstr "" -#: libraries/display_export.lib.php:148 libraries/messages.inc.php:330 +#: libraries/display_export.lib.php:148 libraries/messages.inc.php:326 msgid "File name template" msgstr "파일명 템플릿" -#: libraries/display_export.lib.php:152 libraries/messages.inc.php:327 +#: libraries/display_export.lib.php:152 libraries/messages.inc.php:323 #, fuzzy msgid "server name" msgstr "사용자명" -#: libraries/display_export.lib.php:155 libraries/messages.inc.php:326 +#: libraries/display_export.lib.php:155 libraries/messages.inc.php:322 msgid "database name" msgstr "" -#: libraries/display_export.lib.php:158 libraries/messages.inc.php:328 +#: libraries/display_export.lib.php:158 libraries/messages.inc.php:324 msgid "table name" msgstr "" -#: libraries/display_export.lib.php:162 libraries/messages.inc.php:329 +#: libraries/display_export.lib.php:162 libraries/messages.inc.php:325 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2148,24 +2158,24 @@ msgid "" "3$s. Other text will be kept as is." msgstr "" -#: libraries/display_export.lib.php:202 libraries/messages.inc.php:331 +#: libraries/display_export.lib.php:202 libraries/messages.inc.php:327 msgid "remember template" msgstr "템플릿 기억" #: libraries/display_export.lib.php:210 libraries/display_import.lib.php:178 -#: libraries/display_import.lib.php:191 libraries/messages.inc.php:145 +#: libraries/display_import.lib.php:191 libraries/messages.inc.php:141 #: libraries/sql_query_form.lib.php:549 msgid "Character set of the file:" msgstr "파일 문자셋:" -#: libraries/display_export.lib.php:235 libraries/messages.inc.php:166 +#: libraries/display_export.lib.php:235 libraries/messages.inc.php:162 #: setup/lib/messages.inc.php:84 msgid "Compression" 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/messages.inc.php:558 +#: libraries/export/sql.php:868 libraries/messages.inc.php:554 #: libraries/tbl_properties.inc.php:575 server_privileges.php:1836 #: server_processlist.php:75 msgid "None" @@ -2189,466 +2199,466 @@ msgstr "gz 압축" msgid "bzipped" msgstr "\"bz 압축\"" -#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1018 +#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1014 msgid "SQL compatibility mode" msgstr "" -#: libraries/display_import.lib.php:67 libraries/messages.inc.php:398 +#: libraries/display_import.lib.php:67 libraries/messages.inc.php:394 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " "browsers." msgstr "" -#: libraries/display_import.lib.php:77 libraries/messages.inc.php:406 +#: libraries/display_import.lib.php:77 libraries/messages.inc.php:402 msgid "The file is being processed, please be patient." msgstr "" -#: libraries/display_import.lib.php:99 libraries/messages.inc.php:408 +#: libraries/display_import.lib.php:99 libraries/messages.inc.php:404 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." msgstr "" -#: libraries/display_import.lib.php:126 libraries/messages.inc.php:333 +#: libraries/display_import.lib.php:126 libraries/messages.inc.php:329 msgid "File to import" msgstr "" -#: libraries/display_import.lib.php:137 libraries/messages.inc.php:486 +#: libraries/display_import.lib.php:137 libraries/messages.inc.php:482 #: libraries/sql_query_form.lib.php:524 msgid "Location of the text file" msgstr "SQL 텍스트파일의 위치" -#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1203 +#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1199 msgid "File uploads are not allowed on this server." msgstr "" -#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1235 +#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1231 #: libraries/sql_query_form.lib.php:533 tbl_change.php:1028 msgid "The directory you set for upload work cannot be reached" msgstr "업로드 디렉토리에 접근할 수 없습니다" -#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1236 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1232 #: libraries/sql_query_form.lib.php:536 tbl_change.php:1031 msgid "web server upload directory" msgstr "웹서버 업로드 디렉토리" -#: libraries/display_import.lib.php:212 libraries/messages.inc.php:167 +#: libraries/display_import.lib.php:212 libraries/messages.inc.php:163 #, php-format msgid "Imported file compression will be automatically detected from: %s" msgstr "" -#: libraries/display_import.lib.php:219 libraries/messages.inc.php:600 +#: libraries/display_import.lib.php:219 libraries/messages.inc.php:596 msgid "Partial import" msgstr "" -#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1105 +#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1101 #, php-format msgid "" "Previous import timed out, after resubmitting will continue from position %d." msgstr "" -#: libraries/display_import.lib.php:232 libraries/messages.inc.php:51 +#: libraries/display_import.lib.php:232 libraries/messages.inc.php:47 msgid "" "Allow the interruption of an import in case the script detects it is close " "to the PHP timeout limit. This might be good way to import large files, " "however it can break transactions." msgstr "" -#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1004 +#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1000 #: setup/lib/messages.inc.php:161 msgid "Number of records (queries) to skip from start" msgstr "" -#: libraries/display_import.lib.php:255 libraries/messages.inc.php:396 +#: libraries/display_import.lib.php:255 libraries/messages.inc.php:392 #: setup/lib/messages.inc.php:160 msgid "Format of imported file" msgstr "" #: libraries/display_select_lang.lib.php:45 -#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:465 +#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:461 #: setup/frames/index.inc.php:70 msgid "Language" msgstr "" -#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:447 +#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:443 #, php-format msgid "%d is not valid row number." msgstr "" -#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:814 +#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:810 msgid "row(s) starting from record #" msgstr "행. 시작(행)위치" -#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:817 +#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:813 msgid "horizontal" msgstr "수평(가로)" -#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:816 +#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:812 msgid "horizontal (rotated headers)" msgstr "수평 (rotated headers)" -#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:819 +#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:815 msgid "vertical" msgstr "수직(세로)" -#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:818 +#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:814 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr " %s 정렬 (%s 칸이 넘으면 헤더 반복)" -#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:495 +#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:491 msgid "This operation could take a long time. Proceed anyway?" msgstr "" -#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1012 +#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1008 msgid "Sort by key" msgstr "" #: libraries/display_tbl.lib.php:555 libraries/import.lib.php:1082 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:591 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:587 #: tbl_select.php:267 tbl_structure.php:754 #, fuzzy msgid "Options" msgstr "테이블 작업" #: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:570 -#: libraries/messages.inc.php:601 +#: libraries/messages.inc.php:597 msgid "Partial Texts" msgstr "Partial Texts" #: libraries/display_tbl.lib.php:561 libraries/display_tbl.lib.php:574 -#: libraries/messages.inc.php:346 +#: libraries/messages.inc.php:342 msgid "Full Texts" msgstr "Full Texts" -#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:739 +#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:735 msgid "Relational key" msgstr "" -#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:738 +#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:734 msgid "Relational display field" msgstr "" -#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:872 +#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:868 msgid "Show binary contents" msgstr "" -#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:873 +#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:869 msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:871 +#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:867 msgid "Show binary contents as HEX" msgstr "" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:375 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:371 #: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320 msgid "Hide" msgstr "" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:508 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:504 #: libraries/tbl_properties.inc.php:144 transformation_overview.php:47 msgid "Browser transformation" msgstr "" #: libraries/display_tbl.lib.php:1126 libraries/display_tbl.lib.php:1130 -#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:308 +#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:304 msgid "Execute bookmarked query" msgstr "" #: libraries/display_tbl.lib.php:1145 libraries/display_tbl.lib.php:1157 -#: libraries/messages.inc.php:244 +#: libraries/messages.inc.php:240 msgid "The row has been deleted" msgstr "선택한 줄(레코드)을 삭제 하였습니다." #: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056 -#: libraries/messages.inc.php:460 server_processlist.php:71 +#: libraries/messages.inc.php:456 server_processlist.php:71 #: tbl_row_action.php:64 msgid "Kill" msgstr "Kill" -#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:849 +#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:845 msgid "in query" msgstr "질의(in query)" -#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:881 +#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:877 msgid "Showing rows" msgstr "행(레코드) 보기" -#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1113 +#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1109 msgid "total" msgstr "합계" -#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:727 +#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:723 #: sql.php:524 #, php-format msgid "Query took %01.4f sec" msgstr "질의 실행시간 %01.4f 초" -#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:135 +#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:131 #: 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:471 msgid "Change" msgstr "변경" -#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:724 +#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:720 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:671 +#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:667 msgid "Print view (with full texts)" msgstr "" -#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:482 +#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:478 msgid "Link not found" msgstr "" -#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1224 +#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1220 #: main.php:228 #, fuzzy msgid "Version information" msgstr "로그인 정보" -#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:423 +#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:419 msgid "Data home directory" msgstr "" -#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:424 +#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:420 msgid "The common part of the directory path for all InnoDB data files." msgstr "" -#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:422 +#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:418 #, fuzzy msgid "Data files" msgstr "데이터만" -#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:418 +#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:414 msgid "Autoextend increment" msgstr "" -#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:419 +#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:415 msgid "" " The increment size for extending the size of an autoextending tablespace " "when it becomes full." msgstr "" -#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:420 +#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:416 msgid "Buffer pool size" msgstr "" -#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:421 +#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:417 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." msgstr "" -#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:112 +#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:108 msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:426 +#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:422 #: server_status.php:306 msgid "InnoDB Status" msgstr "" -#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:113 +#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:109 msgid "Buffer Pool Usage" msgstr "" -#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1114 +#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1110 #: server_databases.php:137 server_databases.php:305 server_status.php:414 #: server_status.php:475 server_status.php:496 tbl_printview.php:351 #: tbl_structure.php:697 msgid "Total" msgstr "전체 사용량" -#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:425 +#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:421 msgid "pages" msgstr "" -#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:343 +#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:339 msgid "Free pages" msgstr "" -#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:259 +#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:255 msgid "Dirty pages" msgstr "" -#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:230 +#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:226 msgid "Pages containing data" msgstr "" -#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:598 +#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:594 #, fuzzy msgid "Pages to be flushed" msgstr "테이블 %s 을 닫았습니다(캐시 삭제)" -#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:119 +#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:115 msgid "Busy pages" msgstr "" -#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:467 +#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:463 msgid "Latched pages" msgstr "" -#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:111 +#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:107 msgid "Buffer Pool Activity" msgstr "" -#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:731 +#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:727 msgid "Read requests" msgstr "" -#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1244 +#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1240 msgid "Write requests" msgstr "" -#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:115 +#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:111 msgid "Read misses" msgstr "" -#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:117 +#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:113 msgid "Write waits" msgstr "" -#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:114 +#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:110 msgid "Read misses in %" msgstr "" -#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:116 +#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:112 msgid "Write waits in %" msgstr "" -#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:522 +#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:518 msgid "Data pointer size" msgstr "" -#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:523 +#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:519 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." msgstr "" -#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:528 +#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:524 msgid "Automatic recovery mode" msgstr "" -#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:529 +#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:525 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." msgstr "" -#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:527 +#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:523 msgid "Maximum size for temporary sort files" msgstr "" -#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:526 +#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:522 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " "INFILE)." msgstr "" -#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:525 +#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:521 msgid "Maximum size for temporary files on index creation" msgstr "" -#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:524 +#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:520 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " "method." msgstr "" -#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:531 +#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:527 msgid "Repair threads" msgstr "" -#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:530 +#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:526 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." msgstr "" -#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:533 +#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:529 msgid "Sort buffer size" msgstr "" -#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:532 +#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:528 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." msgstr "" -#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:620 +#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:616 msgid "Index cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:619 +#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:615 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." msgstr "" -#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:630 +#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:626 msgid "Record cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:629 +#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:625 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " "to the handle data (.xtd) and row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:624 +#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:620 msgid "Log cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:623 +#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:619 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:628 +#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:624 msgid "Log file threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:627 +#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:623 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:634 +#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:630 msgid "Transaction buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:633 +#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:629 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." msgstr "" -#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:611 +#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:607 msgid "Checkpoint frequency" msgstr "" -#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:612 +#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:608 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." msgstr "" -#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:615 +#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:611 msgid "Data log threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:616 +#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:612 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -2656,48 +2666,48 @@ msgid "" "that can be stored in the database." msgstr "" -#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:618 +#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:614 msgid "Garbage threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:617 +#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:613 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." msgstr "" -#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:622 +#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:618 msgid "Log buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:621 +#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:617 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " "required to write a data log." msgstr "" -#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:613 +#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:609 msgid "Data file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:614 +#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:610 msgid "The grow size of the handle data (.xtd) files." msgstr "" -#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:632 +#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:628 msgid "Row file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:631 +#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:627 msgid "The grow size of the row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:626 +#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:622 msgid "Log file count" msgstr "" -#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:625 +#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:621 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -2707,19 +2717,19 @@ msgstr "" #: libraries/export/htmlword.php:132 libraries/export/odt.php:168 #: libraries/export/sql.php:881 libraries/export/texytext.php:130 -#: libraries/messages.inc.php:275 +#: libraries/messages.inc.php:271 msgid "Dumping data for table" msgstr "테이블의 덤프 데이터" #: libraries/export/htmlword.php:185 libraries/export/odt.php:238 #: libraries/export/sql.php:785 libraries/export/texytext.php:177 -#: libraries/messages.inc.php:1086 +#: libraries/messages.inc.php:1082 msgid "Table structure for table" msgstr "테이블 구조" #: libraries/export/latex.php:125 libraries/export/sql.php:232 #: libraries/export/xml.php:102 libraries/header_printview.inc.php:57 -#: libraries/messages.inc.php:381 libraries/replication_gui.lib.php:63 +#: libraries/messages.inc.php:377 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:170 libraries/replication_gui.lib.php:265 #: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325 #: server_privileges.php:692 server_privileges.php:695 @@ -2731,189 +2741,189 @@ msgstr "호스트" #: libraries/export/latex.php:130 libraries/export/sql.php:233 #: libraries/export/xml.php:107 libraries/header_printview.inc.php:59 -#: libraries/messages.inc.php:354 +#: libraries/messages.inc.php:350 msgid "Generation Time" msgstr "처리한 시간" #: libraries/export/latex.php:131 libraries/export/sql.php:235 -#: libraries/export/xml.php:108 libraries/messages.inc.php:864 main.php:186 +#: libraries/export/xml.php:108 libraries/messages.inc.php:860 main.php:186 msgid "Server version" msgstr "서버 버전" #: libraries/export/latex.php:132 libraries/export/sql.php:236 -#: libraries/export/xml.php:109 libraries/messages.inc.php:651 +#: libraries/export/xml.php:109 libraries/messages.inc.php:647 msgid "PHP Version" msgstr "PHP 버전" #: libraries/export/latex.php:201 libraries/export/sql.php:868 -#: libraries/messages.inc.php:226 server_databases.php:127 +#: libraries/messages.inc.php:222 server_databases.php:127 #: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317 #: tbl_structure.php:666 msgid "Data" msgstr "데이터" -#: libraries/export/odt.php:318 libraries/messages.inc.php:506 +#: libraries/export/odt.php:318 libraries/messages.inc.php:502 #: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "" -#: libraries/export/sql.php:387 libraries/messages.inc.php:711 +#: libraries/export/sql.php:387 libraries/messages.inc.php:707 #, fuzzy msgid "Procedures" msgstr "프로세스 목록" -#: libraries/export/sql.php:401 libraries/messages.inc.php:348 +#: libraries/export/sql.php:401 libraries/messages.inc.php:344 #, fuzzy msgid "Functions" msgstr "함수" -#: libraries/export/sql.php:618 libraries/messages.inc.php:174 +#: libraries/export/sql.php:618 libraries/messages.inc.php:170 msgid "Constraints for dumped tables" msgstr "" -#: libraries/export/sql.php:627 libraries/messages.inc.php:175 +#: libraries/export/sql.php:627 libraries/messages.inc.php:171 msgid "Constraints for table" msgstr "" -#: libraries/export/sql.php:727 libraries/messages.inc.php:512 +#: libraries/export/sql.php:727 libraries/messages.inc.php:508 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/export/sql.php:739 libraries/messages.inc.php:743 +#: libraries/export/sql.php:739 libraries/messages.inc.php:739 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/export/sql.php:796 libraries/messages.inc.php:1178 +#: libraries/export/sql.php:796 libraries/messages.inc.php:1174 #: libraries/tbl_triggers.lib.php:19 msgid "Triggers" msgstr "" -#: libraries/export/sql.php:808 libraries/messages.inc.php:1046 +#: libraries/export/sql.php:808 libraries/messages.inc.php:1042 #, fuzzy msgid "Structure for view" msgstr "구조만" -#: libraries/export/sql.php:817 libraries/messages.inc.php:1029 +#: libraries/export/sql.php:817 libraries/messages.inc.php:1025 msgid "Stand-in structure for view" msgstr "" #: libraries/footer.inc.php:184 libraries/footer.inc.php:195 -#: libraries/footer.inc.php:198 libraries/messages.inc.php:586 +#: libraries/footer.inc.php:198 libraries/messages.inc.php:582 msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/header.inc.php:115 libraries/messages.inc.php:542 +#: libraries/header.inc.php:115 libraries/messages.inc.php:538 #, fuzzy msgid "New table" msgstr "테이블이 없습니다" #: libraries/header_printview.inc.php:50 libraries/header_printview.inc.php:55 -#: libraries/messages.inc.php:1024 +#: libraries/messages.inc.php:1020 msgid "SQL result" msgstr "SQL 결과" -#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:350 +#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:346 msgid "Generated by" msgstr "" #: libraries/header_printview.inc.php:63 libraries/import.lib.php:145 -#: libraries/messages.inc.php:820 navigation.php:652 navigation.php:674 +#: libraries/messages.inc.php:816 navigation.php:652 navigation.php:674 #: server_databases.php:122 tbl_printview.php:394 tbl_structure.php:366 #: tbl_structure.php:778 msgid "Rows" msgstr "행(레코드)" -#: libraries/import.lib.php:150 libraries/messages.inc.php:285 sql.php:520 +#: libraries/import.lib.php:150 libraries/messages.inc.php:281 sql.php:520 #: tbl_change.php:181 tbl_get_field.php:35 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "결과값이 없습니다. (빈 레코드 리턴.)" -#: libraries/import.lib.php:1078 libraries/messages.inc.php:399 +#: libraries/import.lib.php:1078 libraries/messages.inc.php:395 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1079 libraries/messages.inc.php:400 +#: libraries/import.lib.php:1079 libraries/messages.inc.php:396 msgid "View a structure`s contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1080 libraries/messages.inc.php:401 +#: libraries/import.lib.php:1080 libraries/messages.inc.php:397 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1081 libraries/messages.inc.php:402 +#: libraries/import.lib.php:1081 libraries/messages.inc.php:398 msgid "Edit its structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1084 libraries/messages.inc.php:362 +#: libraries/import.lib.php:1084 libraries/messages.inc.php:358 #, fuzzy msgid "Go to database" msgstr "데이터베이스가 없습니다" #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:869 +#: libraries/messages.inc.php:865 msgid "settings" msgstr "" -#: libraries/import.lib.php:1106 libraries/messages.inc.php:363 +#: libraries/import.lib.php:1106 libraries/messages.inc.php:359 msgid "Go to table" msgstr "" -#: libraries/import.lib.php:1109 libraries/messages.inc.php:1047 +#: libraries/import.lib.php:1109 libraries/messages.inc.php:1043 #, fuzzy msgid "structure" msgstr "구조" -#: libraries/import.lib.php:1115 libraries/messages.inc.php:364 +#: libraries/import.lib.php:1115 libraries/messages.inc.php:360 msgid "Go to view" msgstr "" #: libraries/import/csv.php:58 libraries/import/csv.php:70 #: libraries/import/csv.php:74 libraries/import/csv.php:78 -#: libraries/messages.inc.php:442 +#: libraries/messages.inc.php:438 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "" -#: libraries/import/csv.php:59 libraries/messages.inc.php:323 +#: libraries/import/csv.php:59 libraries/messages.inc.php:319 msgid "Fields terminated by" msgstr "필드 구분자 " -#: libraries/import/csv.php:71 libraries/messages.inc.php:320 +#: libraries/import/csv.php:71 libraries/messages.inc.php:316 msgid "Fields enclosed by" msgstr "필드 감싸기" -#: libraries/import/csv.php:75 libraries/messages.inc.php:321 +#: libraries/import/csv.php:75 libraries/messages.inc.php:317 msgid "Fields escaped by" msgstr "필드 특수문자(escape) 처리" -#: libraries/import/csv.php:79 libraries/messages.inc.php:481 +#: libraries/import/csv.php:79 libraries/messages.inc.php:477 msgid "Lines terminated by" msgstr "줄(열) 구분자" -#: libraries/import/csv.php:119 libraries/messages.inc.php:439 +#: libraries/import/csv.php:119 libraries/messages.inc.php:435 #, php-format msgid "Invalid column (%s) specified!" msgstr "" #: libraries/import/csv.php:177 libraries/import/csv.php:424 -#: libraries/messages.inc.php:441 +#: libraries/messages.inc.php:437 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/import/csv.php:312 libraries/messages.inc.php:440 +#: libraries/import/csv.php:312 libraries/messages.inc.php:436 #, php-format msgid "Invalid field count in CSV input on line %d." msgstr "" -#: libraries/import/ldi.php:55 libraries/messages.inc.php:446 +#: libraries/import/ldi.php:55 libraries/messages.inc.php:442 msgid "This plugin does not support compressed imports!" msgstr "" #: libraries/import/xml.php:74 libraries/import/xml.php:130 -#: libraries/messages.inc.php:1247 +#: libraries/messages.inc.php:1243 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -2942,796 +2952,786 @@ msgstr "" msgid "ltr" msgstr "ltr" -#. l10n: Thousands separator -#: libraries/messages.inc.php:21 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: libraries/messages.inc.php:23 -msgid "." -msgstr "." - -#: libraries/messages.inc.php:25 server_status.php:461 +#: libraries/messages.inc.php:21 server_status.php:461 msgid "Aborted" msgstr "" -#: libraries/messages.inc.php:28 main.php:68 +#: libraries/messages.inc.php:24 main.php:68 #, fuzzy msgid "Actions" msgstr "실행" -#: libraries/messages.inc.php:34 libraries/tbl_properties.inc.php:780 +#: libraries/messages.inc.php:30 libraries/tbl_properties.inc.php:780 #: tbl_structure.php:543 #, fuzzy, php-format msgid "Add %s field(s)" msgstr "필드 추가하기" -#: libraries/messages.inc.php:35 +#: libraries/messages.inc.php:31 msgid "Add custom comment into header (\\n splits lines)" msgstr "" -#: libraries/messages.inc.php:36 +#: libraries/messages.inc.php:32 msgid "Add into comments" msgstr "" -#: libraries/messages.inc.php:37 tbl_structure.php:541 +#: libraries/messages.inc.php:33 tbl_structure.php:541 msgid "Add new field" msgstr "필드 추가하기" -#: libraries/messages.inc.php:38 server_privileges.php:1886 +#: libraries/messages.inc.php:34 server_privileges.php:1886 msgid "Add privileges on the following database" msgstr "다음 데이터베이스에 권한 추가하기" -#: libraries/messages.inc.php:39 server_privileges.php:1907 +#: libraries/messages.inc.php:35 server_privileges.php:1907 msgid "Add privileges on the following table" msgstr "다음 테이블에 권한 추가하기" -#: libraries/messages.inc.php:40 tbl_select.php:288 +#: libraries/messages.inc.php:36 tbl_select.php:288 msgid "Add search conditions (body of the \"where\" clause):" msgstr "검색 조건 추가 (\"where\" 조건):" -#: libraries/messages.inc.php:41 tbl_indexes.php:251 +#: libraries/messages.inc.php:37 tbl_indexes.php:251 #, php-format msgid "Add to index  %s column(s)" msgstr "%s개 열(칼럼)에 인덱스 추가" -#: libraries/messages.inc.php:42 server_privileges.php:1570 +#: libraries/messages.inc.php:38 server_privileges.php:1570 #: server_privileges.php:1594 server_privileges.php:1988 #: server_privileges.php:2177 msgid "Add a new User" msgstr "새 사용자 추가" -#: libraries/messages.inc.php:43 server_privileges.php:931 +#: libraries/messages.inc.php:39 server_privileges.php:931 msgid "You have added a new user." msgstr "새 사용자를 추가했습니다." -#: libraries/messages.inc.php:44 server_privileges.php:571 +#: libraries/messages.inc.php:40 server_privileges.php:571 msgid "Administration" msgstr "" -#: libraries/messages.inc.php:45 tbl_structure.php:557 +#: libraries/messages.inc.php:41 tbl_structure.php:557 #, php-format msgid "After %s" msgstr "%s 다음에" -#: libraries/messages.inc.php:46 tbl_change.php:1147 +#: libraries/messages.inc.php:42 tbl_change.php:1147 msgid "Go back to previous page" msgstr "되돌아가기" -#: libraries/messages.inc.php:47 tbl_change.php:1148 +#: libraries/messages.inc.php:43 tbl_change.php:1148 msgid "Insert another new row" msgstr "새 행(레코드) 삽입하기" -#: libraries/messages.inc.php:48 tbl_change.php:1160 +#: libraries/messages.inc.php:44 tbl_change.php:1160 msgid "Edit next row" msgstr "" -#: libraries/messages.inc.php:49 tbl_change.php:1152 +#: libraries/messages.inc.php:45 tbl_change.php:1152 #, fuzzy msgid "Go back to this page" msgstr "되돌아가기" -#: libraries/messages.inc.php:50 querywindow.php:115 +#: libraries/messages.inc.php:46 querywindow.php:115 msgid "All" msgstr "All" -#: libraries/messages.inc.php:53 tbl_operations.php:249 +#: libraries/messages.inc.php:49 tbl_operations.php:249 msgid "Alter table order by" msgstr "다음 순서대로 테이블 정렬(변경)" -#: libraries/messages.inc.php:54 tbl_operations.php:660 +#: libraries/messages.inc.php:50 tbl_operations.php:660 msgid "Analyze" msgstr "" -#: libraries/messages.inc.php:57 +#: libraries/messages.inc.php:53 #, fuzzy msgid "and" msgstr "그리고" -#: libraries/messages.inc.php:59 pmd_general.php:87 +#: libraries/messages.inc.php:55 pmd_general.php:87 msgid "Angular links" msgstr "" -#: libraries/messages.inc.php:60 tbl_structure.php:401 tbl_structure.php:415 +#: libraries/messages.inc.php:56 tbl_structure.php:401 tbl_structure.php:415 #: tbl_structure.php:429 #, php-format msgid "An index has been added on %s" msgstr "%s 에 인덱스가 걸렸습니다" -#: libraries/messages.inc.php:61 server_privileges.php:1521 +#: libraries/messages.inc.php:57 server_privileges.php:1521 #: server_privileges.php:2123 msgid "Any" msgstr "Any" -#: libraries/messages.inc.php:62 libraries/replication_gui.lib.php:298 +#: libraries/messages.inc.php:58 libraries/replication_gui.lib.php:298 #: server_privileges.php:725 msgid "Any host" msgstr "아무데서나" -#: libraries/messages.inc.php:63 libraries/replication_gui.lib.php:250 +#: libraries/messages.inc.php:59 libraries/replication_gui.lib.php:250 #: server_privileges.php:677 msgid "Any user" msgstr "아무나" -#: libraries/messages.inc.php:64 server_synchronize.php:449 +#: libraries/messages.inc.php:60 server_synchronize.php:449 #: server_synchronize.php:894 msgid "Apply Selected Changes" msgstr "" -#: libraries/messages.inc.php:66 tbl_structure.php:386 +#: libraries/messages.inc.php:62 tbl_structure.php:386 #, php-format msgid "A primary key has been added on %s" msgstr " %s에 기본 키가 추가되었습니다" -#: libraries/messages.inc.php:67 libraries/mysql_charsets.lib.php:368 +#: libraries/messages.inc.php:63 libraries/mysql_charsets.lib.php:368 msgid "Arabic" msgstr "" -#: libraries/messages.inc.php:68 libraries/mysql_charsets.lib.php:359 +#: libraries/messages.inc.php:64 libraries/mysql_charsets.lib.php:359 msgid "Armenian" msgstr "" -#: libraries/messages.inc.php:70 libraries/tbl_properties.inc.php:394 +#: libraries/messages.inc.php:66 libraries/tbl_properties.inc.php:394 msgid "As defined:" msgstr "" -#: libraries/messages.inc.php:71 tbl_structure.php:556 +#: libraries/messages.inc.php:67 tbl_structure.php:556 msgid "At Beginning of Table" msgstr "테이블의 처음" -#: libraries/messages.inc.php:72 tbl_structure.php:555 +#: libraries/messages.inc.php:68 tbl_structure.php:555 msgid "At End of Table" msgstr "테이블의 마지막" -#: libraries/messages.inc.php:73 libraries/tbl_properties.inc.php:108 +#: libraries/messages.inc.php:69 libraries/tbl_properties.inc.php:108 #: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:144 #: tbl_structure.php:180 msgid "Attributes" msgstr "보기" -#: libraries/messages.inc.php:74 pdf_pages.php:303 pdf_pages.php:306 +#: libraries/messages.inc.php:70 pdf_pages.php:303 pdf_pages.php:306 msgid "Automatic layout" msgstr "" -#: libraries/messages.inc.php:77 libraries/mysql_charsets.lib.php:354 +#: libraries/messages.inc.php:73 libraries/mysql_charsets.lib.php:354 msgid "Baltic" msgstr "" -#: libraries/messages.inc.php:78 libraries/sqlparser.lib.php:175 +#: libraries/messages.inc.php:74 libraries/sqlparser.lib.php:175 msgid "BEGIN CUT" msgstr "" -#: libraries/messages.inc.php:79 libraries/sqlparser.lib.php:179 +#: libraries/messages.inc.php:75 libraries/sqlparser.lib.php:179 msgid "BEGIN RAW" msgstr "" -#: libraries/messages.inc.php:80 libraries/mysql_charsets.lib.php:201 +#: libraries/messages.inc.php:76 libraries/mysql_charsets.lib.php:201 #: libraries/mysql_charsets.lib.php:402 tbl_change.php:518 msgid "Binary" msgstr "바이너리" -#: libraries/messages.inc.php:81 tbl_change.php:894 +#: libraries/messages.inc.php:77 tbl_change.php:894 msgid "Binary - do not edit" msgstr " 바이너리 - 편집 금지 " -#: libraries/messages.inc.php:82 libraries/server_links.inc.php:76 +#: libraries/messages.inc.php:78 libraries/server_links.inc.php:76 #: server_binlog.php:110 server_status.php:253 test/theme.php:121 #, fuzzy msgid "Binary log" msgstr "바이너리" -#: libraries/messages.inc.php:83 server_binlog.php:217 +#: libraries/messages.inc.php:79 server_binlog.php:217 #, fuzzy msgid "Event type" msgstr "질의 종류" -#: libraries/messages.inc.php:84 server_binlog.php:220 +#: libraries/messages.inc.php:80 server_binlog.php:220 #, fuzzy msgid "Information" msgstr "로그인 정보" -#: libraries/messages.inc.php:85 server_binlog.php:215 +#: libraries/messages.inc.php:81 server_binlog.php:215 msgid "Log name" msgstr "" -#: libraries/messages.inc.php:86 server_binlog.php:219 +#: libraries/messages.inc.php:82 server_binlog.php:219 msgid "Original position" msgstr "" -#: libraries/messages.inc.php:87 server_binlog.php:216 +#: libraries/messages.inc.php:83 server_binlog.php:216 msgid "Position" msgstr "" -#: libraries/messages.inc.php:88 libraries/replication_gui.lib.php:169 +#: libraries/messages.inc.php:84 libraries/replication_gui.lib.php:169 #: server_binlog.php:218 #, fuzzy msgid "Server ID" msgstr "서버" -#: libraries/messages.inc.php:92 +#: libraries/messages.inc.php:88 #, fuzzy msgctxt "$strBLOBRepositoryDisabled" msgid "Disabled" msgstr "사용불가" -#: libraries/messages.inc.php:95 +#: libraries/messages.inc.php:91 #, fuzzy msgctxt "$strBLOBRepositoryEnabled" msgid "Enabled" msgstr "사용가능" -#: libraries/messages.inc.php:97 tbl_change.php:888 +#: libraries/messages.inc.php:93 tbl_change.php:888 msgid "Remove BLOB Repository Reference" msgstr "" -#: libraries/messages.inc.php:98 +#: libraries/messages.inc.php:94 #, fuzzy msgctxt "$strBLOBRepositoryRepair" msgid "Repair" msgstr "테이블 복구" -#: libraries/messages.inc.php:99 tbl_change.php:987 +#: libraries/messages.inc.php:95 tbl_change.php:987 msgid "Upload to BLOB repository" msgstr "" -#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:359 +#: libraries/messages.inc.php:96 libraries/sql_query_form.lib.php:359 #: sql.php:677 msgid "Let every user access this bookmark" msgstr "" -#: libraries/messages.inc.php:103 sql.php:671 +#: libraries/messages.inc.php:99 sql.php:671 msgid "Label" msgstr "Label" -#: libraries/messages.inc.php:104 libraries/sql_query_form.lib.php:433 +#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:433 msgid "Bookmarked SQL query" msgstr "북마크된 SQL 질의" -#: libraries/messages.inc.php:105 libraries/sql_query_form.lib.php:365 +#: libraries/messages.inc.php:101 libraries/sql_query_form.lib.php:365 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/messages.inc.php:106 libraries/sql_query_form.lib.php:352 +#: libraries/messages.inc.php:102 libraries/sql_query_form.lib.php:352 #: sql.php:665 sql.php:666 sql.php:683 msgid "Bookmark this SQL query" msgstr "이 SQL 질의를 북마크함" -#: libraries/messages.inc.php:107 libraries/sql_query_form.lib.php:466 +#: libraries/messages.inc.php:103 libraries/sql_query_form.lib.php:466 msgid "View only" msgstr "View only" -#: libraries/messages.inc.php:109 tbl_structure.php:161 +#: libraries/messages.inc.php:105 tbl_structure.php:161 msgid "Browse distinct values" msgstr "" -#: libraries/messages.inc.php:110 tbl_change.php:252 tbl_select.php:27 +#: libraries/messages.inc.php:106 tbl_change.php:252 tbl_select.php:27 #: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34 msgid "Browse foreign values" msgstr "" -#: libraries/messages.inc.php:118 libraries/mysql_charsets.lib.php:213 +#: libraries/messages.inc.php:114 libraries/mysql_charsets.lib.php:213 msgid "Bulgarian" msgstr "" -#: libraries/messages.inc.php:120 +#: libraries/messages.inc.php:116 msgid "\"bzipped\"" msgstr "\"bz 압축\"" -#: libraries/messages.inc.php:122 +#: libraries/messages.inc.php:118 msgid "Calendar" msgstr "" -#: libraries/messages.inc.php:129 tbl_indexes.php:75 +#: libraries/messages.inc.php:125 tbl_indexes.php:75 msgid "Can't rename index to PRIMARY!" msgstr "인덱스 이름을 기본 키로 바꿀 수 없습니다!" -#: libraries/messages.inc.php:132 libraries/mysql_charsets.lib.php:223 +#: libraries/messages.inc.php:128 libraries/mysql_charsets.lib.php:223 #: libraries/mysql_charsets.lib.php:409 msgid "case-insensitive" msgstr "" -#: libraries/messages.inc.php:133 libraries/mysql_charsets.lib.php:226 +#: libraries/messages.inc.php:129 libraries/mysql_charsets.lib.php:226 #: libraries/mysql_charsets.lib.php:411 msgid "case-sensitive" msgstr "" -#: libraries/messages.inc.php:134 libraries/mysql_charsets.lib.php:332 +#: libraries/messages.inc.php:130 libraries/mysql_charsets.lib.php:332 msgid "Central European" msgstr "" -#: libraries/messages.inc.php:136 server_privileges.php:1969 +#: libraries/messages.inc.php:132 server_privileges.php:1969 msgid "... keep the old one." msgstr "" -#: libraries/messages.inc.php:137 server_privileges.php:1967 +#: libraries/messages.inc.php:133 server_privileges.php:1967 msgid "Create a new user with the same privileges and ..." msgstr "" -#: libraries/messages.inc.php:138 server_privileges.php:1972 +#: libraries/messages.inc.php:134 server_privileges.php:1972 #, fuzzy msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "사용자를 삭제하고 사용권한을 갱신함." -#: libraries/messages.inc.php:139 server_privileges.php:1970 +#: libraries/messages.inc.php:135 server_privileges.php:1970 #, fuzzy msgid " ... delete the old one from the user tables." msgstr "권한 테이블에서 사용자를 삭제하기만 함." -#: libraries/messages.inc.php:140 server_privileges.php:1971 +#: libraries/messages.inc.php:136 server_privileges.php:1971 #, fuzzy msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "모든 활성화된 권한을 박탈하고 사용자를 삭제함." -#: libraries/messages.inc.php:141 server_privileges.php:1964 +#: libraries/messages.inc.php:137 server_privileges.php:1964 msgid "Change Login Information / Copy User" msgstr "" -#: libraries/messages.inc.php:144 libraries/mysql_charsets.lib.php:107 +#: libraries/messages.inc.php:140 libraries/mysql_charsets.lib.php:107 msgid "Charset" msgstr "" -#: libraries/messages.inc.php:146 server_collations.php:40 +#: libraries/messages.inc.php:142 server_collations.php:40 msgid "Character Sets and Collations" msgstr "" -#: libraries/messages.inc.php:147 libraries/server_links.inc.php:57 +#: libraries/messages.inc.php:143 libraries/server_links.inc.php:57 #: test/theme.php:109 msgid "Charsets" msgstr "" -#: libraries/messages.inc.php:149 tbl_operations.php:661 +#: libraries/messages.inc.php:145 tbl_operations.php:661 msgid "Check" msgstr "" -#: libraries/messages.inc.php:151 server_databases.php:293 +#: libraries/messages.inc.php:147 server_databases.php:293 #: server_databases.php:294 msgid "Check Privileges" msgstr "사용권한 보기" -#: libraries/messages.inc.php:152 server_databases.php:289 +#: libraries/messages.inc.php:148 server_databases.php:289 #, php-format msgid "Check privileges for database "%s"." msgstr "데이터베이스 "%s" 에 대한 사용권한 검사." -#: libraries/messages.inc.php:154 pdf_pages.php:261 +#: libraries/messages.inc.php:150 pdf_pages.php:261 msgid "Please choose a page to edit" msgstr "편집할 페이지를 선택하세요" -#: libraries/messages.inc.php:157 +#: libraries/messages.inc.php:153 msgid "Displaying Column Comments" msgstr "열(칼럼) 설명(코멘트) 출력하기" -#: libraries/messages.inc.php:159 pdf_pages.php:483 view_create.php:148 +#: libraries/messages.inc.php:155 pdf_pages.php:483 view_create.php:148 msgid "Column names" msgstr "열(칼럼) 이름" -#: libraries/messages.inc.php:160 server_privileges.php:1685 +#: libraries/messages.inc.php:156 server_privileges.php:1685 msgid "Column-specific privileges" msgstr "열(칼럼)에 관한 권한" -#: libraries/messages.inc.php:164 +#: libraries/messages.inc.php:160 msgid "MySQL 4.0 compatible" msgstr "" -#: libraries/messages.inc.php:165 +#: libraries/messages.inc.php:161 msgid "Complete inserts" msgstr "완전한 INSERT문 작성" -#: libraries/messages.inc.php:168 +#: libraries/messages.inc.php:164 #, php-format msgid "Could not load default configuration from: \"%1$s\"" msgstr "" -#: libraries/messages.inc.php:169 main.php:306 +#: libraries/messages.inc.php:165 main.php:306 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: libraries/messages.inc.php:171 pdf_schema.php:672 +#: libraries/messages.inc.php:167 pdf_schema.php:672 #, php-format msgid "Please configure the coordinates for table %s" msgstr "" -#: libraries/messages.inc.php:173 server_status.php:433 +#: libraries/messages.inc.php:169 server_status.php:433 msgid "Connections" msgstr "연결 수" -#: libraries/messages.inc.php:179 tbl_operations.php:509 +#: libraries/messages.inc.php:175 tbl_operations.php:509 msgid "Copy table to (database.table):" msgstr "테이블 복사 (데이터베이스명.테이블명):" -#: libraries/messages.inc.php:180 tbl_move_copy.php:58 +#: libraries/messages.inc.php:176 tbl_move_copy.php:58 #, php-format msgid "Table %s has been copied to %s." msgstr "%s 테이블이 %s 으로 복사되었습니다." -#: libraries/messages.inc.php:181 tbl_move_copy.php:48 +#: libraries/messages.inc.php:177 tbl_move_copy.php:48 msgid "Can't copy table to same one!" msgstr "" -#: libraries/messages.inc.php:182 server_synchronize.php:94 +#: libraries/messages.inc.php:178 server_synchronize.php:94 msgid "Could not connect to the source" msgstr "" -#: libraries/messages.inc.php:183 server_synchronize.php:97 +#: libraries/messages.inc.php:179 server_synchronize.php:97 msgid "Could not connect to the target" msgstr "" -#: libraries/messages.inc.php:184 server_processlist.php:24 +#: libraries/messages.inc.php:180 server_processlist.php:24 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: libraries/messages.inc.php:187 +#: libraries/messages.inc.php:183 #, php-format msgid "Create an index on %s columns" msgstr "%s 개 열(칼럼)에 인덱스 만들기 " -#: libraries/messages.inc.php:188 tbl_indexes.php:160 +#: libraries/messages.inc.php:184 tbl_indexes.php:160 msgid "Create a new index" msgstr "새 인덱스 만들기" -#: libraries/messages.inc.php:191 pdf_pages.php:297 pmd_pdf.php:114 +#: libraries/messages.inc.php:187 pdf_pages.php:297 pmd_pdf.php:114 msgid "Create a page" msgstr "새 페이지 만들기" -#: libraries/messages.inc.php:192 +#: libraries/messages.inc.php:188 msgid "Creation of PDFs" msgstr "" -#: libraries/messages.inc.php:193 pmd_general.php:74 pmd_general.php:306 +#: libraries/messages.inc.php:189 pmd_general.php:74 pmd_general.php:306 msgid "Create relation" msgstr "" -#: libraries/messages.inc.php:194 pmd_general.php:71 +#: libraries/messages.inc.php:190 pmd_general.php:71 #: server_synchronize.php:429 server_synchronize.php:872 #, fuzzy msgid "Create table" msgstr "새 페이지 만들기" -#: libraries/messages.inc.php:195 +#: libraries/messages.inc.php:191 #, fuzzy msgctxt "$strCreateTableShort" msgid "Create table" msgstr "새 페이지 만들기" -#: libraries/messages.inc.php:196 server_privileges.php:1994 +#: libraries/messages.inc.php:192 server_privileges.php:1994 msgid "Database for user" msgstr "" -#: libraries/messages.inc.php:197 server_privileges.php:1999 +#: libraries/messages.inc.php:193 server_privileges.php:1999 msgid "Create database with same name and grant all privileges" msgstr "" -#: libraries/messages.inc.php:198 +#: libraries/messages.inc.php:194 #, fuzzy msgctxt "$strCreateUserDatabaseNone" msgid "None" msgstr "없음" -#: libraries/messages.inc.php:199 server_privileges.php:2003 +#: libraries/messages.inc.php:195 server_privileges.php:2003 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "데이터베이스 "%s" 에 대한 사용권한 검사." -#: libraries/messages.inc.php:200 server_privileges.php:2000 +#: libraries/messages.inc.php:196 server_privileges.php:2000 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: libraries/messages.inc.php:201 +#: libraries/messages.inc.php:197 msgid "Creation/Update/Check dates" msgstr "" -#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:229 +#: libraries/messages.inc.php:199 libraries/mysql_charsets.lib.php:229 #, fuzzy msgid "Croatian" msgstr "생성" -#: libraries/messages.inc.php:204 +#: libraries/messages.inc.php:200 msgid "CSV" msgstr "CSV 데이터" -#: libraries/messages.inc.php:205 libraries/server_synchronize.lib.php:1343 +#: libraries/messages.inc.php:201 libraries/server_synchronize.lib.php:1343 #: libraries/server_synchronize.lib.php:1369 msgid "Current server" msgstr "" -#: libraries/messages.inc.php:206 main.php:159 +#: libraries/messages.inc.php:202 main.php:159 msgid "Custom color" msgstr "" -#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:365 +#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:365 msgid "Cyrillic" msgstr "" -#: libraries/messages.inc.php:208 libraries/mysql_charsets.lib.php:232 +#: libraries/messages.inc.php:204 libraries/mysql_charsets.lib.php:232 msgid "Czech" msgstr "" -#: libraries/messages.inc.php:209 libraries/mysql_charsets.lib.php:383 +#: libraries/messages.inc.php:205 libraries/mysql_charsets.lib.php:383 msgid "Czech-Slovak" msgstr "" -#: libraries/messages.inc.php:211 libraries/mysql_charsets.lib.php:235 +#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:235 msgid "Danish" msgstr "" -#: libraries/messages.inc.php:214 +#: libraries/messages.inc.php:210 msgid "Database export options" msgstr "" -#: libraries/messages.inc.php:217 server_synchronize.php:122 +#: libraries/messages.inc.php:213 server_synchronize.php:122 #: server_synchronize.php:125 tbl_create.php:82 tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "" -#: libraries/messages.inc.php:219 server_databases.php:63 +#: libraries/messages.inc.php:215 server_databases.php:63 #, php-format msgid "%s databases have been dropped successfully." msgstr "%s 데이터베이스를 삭제했습니다." -#: libraries/messages.inc.php:220 libraries/server_synchronize.lib.php:1341 +#: libraries/messages.inc.php:216 libraries/server_synchronize.lib.php:1341 #: server_synchronize.php:1110 #, fuzzy msgid "Source database" msgstr "데이터베이스 검색" -#: libraries/messages.inc.php:221 server_databases.php:88 +#: libraries/messages.inc.php:217 server_databases.php:88 msgid "Databases statistics" msgstr "데이터베이스 사용량 통계" -#: libraries/messages.inc.php:222 server_databases.php:362 +#: libraries/messages.inc.php:218 server_databases.php:362 #: server_databases.php:363 msgid "Disable Statistics" msgstr "통계 숨기기" -#: libraries/messages.inc.php:223 server_databases.php:358 +#: libraries/messages.inc.php:219 server_databases.php:358 #: server_databases.php:359 msgid "Enable Statistics" msgstr "통계 보기" -#: libraries/messages.inc.php:224 server_databases.php:366 +#: libraries/messages.inc.php:220 server_databases.php:366 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." msgstr "" "주의: 데이터베이스 통계 보기는 웹서버와 MySQL 서버 사이에 큰 부하를 줍니다." -#: libraries/messages.inc.php:225 libraries/server_synchronize.lib.php:1367 +#: libraries/messages.inc.php:221 libraries/server_synchronize.lib.php:1367 #: server_synchronize.php:1112 #, fuzzy msgid "Target database" msgstr "데이터베이스 검색" -#: libraries/messages.inc.php:228 server_synchronize.php:425 +#: libraries/messages.inc.php:224 server_synchronize.php:425 #: server_synchronize.php:868 msgid "Data Difference" msgstr "" -#: libraries/messages.inc.php:231 server_synchronize.php:272 +#: libraries/messages.inc.php:227 server_synchronize.php:272 msgid "Data Synchronization" msgstr "" -#: libraries/messages.inc.php:235 server_privileges.php:526 +#: libraries/messages.inc.php:231 server_privileges.php:526 #: server_privileges.php:1679 msgid "Database-specific privileges" msgstr "데이터베이스에 관한 권한" -#: libraries/messages.inc.php:237 server_privileges.php:2136 +#: libraries/messages.inc.php:233 server_privileges.php:2136 msgid "database-specific" msgstr "" -#: libraries/messages.inc.php:240 libraries/tbl_properties.inc.php:106 +#: libraries/messages.inc.php:236 libraries/tbl_properties.inc.php:106 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" msgstr "기본값에는, 역슬래시나 따옴표 없이 단 하나의 값을 넣으십시오. (예: a)" -#: libraries/messages.inc.php:241 tbl_operations.php:589 +#: libraries/messages.inc.php:237 tbl_operations.php:589 msgid "Defragment table" msgstr "" -#: libraries/messages.inc.php:242 +#: libraries/messages.inc.php:238 msgid "Use delayed inserts" msgstr "" -#: libraries/messages.inc.php:245 server_privileges.php:1243 +#: libraries/messages.inc.php:241 server_privileges.php:1243 msgid "No users selected for deleting!" msgstr "" -#: libraries/messages.inc.php:246 pmd_general.php:372 +#: libraries/messages.inc.php:242 pmd_general.php:372 msgid "Delete relation" msgstr "" -#: libraries/messages.inc.php:248 server_privileges.php:1232 +#: libraries/messages.inc.php:244 server_privileges.php:1232 #, php-format msgid "Deleting %s" msgstr " %s 을 삭제합니다" -#: libraries/messages.inc.php:249 libraries/sql_query_form.lib.php:388 +#: libraries/messages.inc.php:245 libraries/sql_query_form.lib.php:388 msgid "Delimiter" msgstr "" -#: libraries/messages.inc.php:250 pdf_pages.php:506 +#: libraries/messages.inc.php:246 pdf_pages.php:506 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" msgstr "" -#: libraries/messages.inc.php:254 pmd_help.php:29 +#: libraries/messages.inc.php:250 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." msgstr "" -#: libraries/messages.inc.php:256 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:252 libraries/mysql_charsets.lib.php:247 #, fuzzy msgid "dictionary" msgstr "데이터 사전 (전체 구조보기)" -#: libraries/messages.inc.php:257 libraries/server_synchronize.lib.php:1348 +#: libraries/messages.inc.php:253 libraries/server_synchronize.lib.php:1348 msgid "Difference" msgstr "" -#: libraries/messages.inc.php:258 pmd_general.php:87 +#: libraries/messages.inc.php:254 pmd_general.php:87 msgid "Direct links" msgstr "" -#: libraries/messages.inc.php:261 +#: libraries/messages.inc.php:257 msgid "Disable foreign key checks" msgstr "" -#: libraries/messages.inc.php:262 +#: libraries/messages.inc.php:258 msgid "Display Features" msgstr "" -#: libraries/messages.inc.php:263 tbl_select.php:301 +#: libraries/messages.inc.php:259 tbl_select.php:301 msgid "Display order:" msgstr "출력 순서:" -#: libraries/messages.inc.php:265 tbl_select.php:132 +#: libraries/messages.inc.php:261 tbl_select.php:132 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "다음으로 질의를 만들기 (와일드카드: \"%\")" -#: libraries/messages.inc.php:266 +#: libraries/messages.inc.php:262 msgid "DocSQL" msgstr "" -#: libraries/messages.inc.php:268 +#: libraries/messages.inc.php:264 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/messages.inc.php:273 server_privileges.php:1579 +#: libraries/messages.inc.php:269 server_privileges.php:1579 #: server_privileges.php:1580 server_privileges.php:1581 msgid "Drop the databases that have the same names as the users." msgstr "사용자명과 같은 이름의 데이터베이스를 삭제" -#: libraries/messages.inc.php:278 tbl_printview.php:382 tbl_structure.php:743 +#: libraries/messages.inc.php:274 tbl_printview.php:382 tbl_structure.php:743 msgid "dynamic" msgstr "동적(다이내믹)" -#: libraries/messages.inc.php:282 server_privileges.php:1324 +#: libraries/messages.inc.php:278 server_privileges.php:1324 #: server_privileges.php:1610 msgid "Edit Privileges" msgstr "권한 수정" -#: libraries/messages.inc.php:283 tbl_printview.php:341 tbl_structure.php:688 +#: libraries/messages.inc.php:279 tbl_printview.php:341 tbl_structure.php:688 msgid "Effective" msgstr "실제량" -#: libraries/messages.inc.php:286 libraries/relation.lib.php:100 +#: libraries/messages.inc.php:282 libraries/relation.lib.php:100 msgid "Enabled" msgstr "사용가능" -#: libraries/messages.inc.php:287 +#: libraries/messages.inc.php:283 msgid "Enclose export in a transaction" msgstr "" -#: libraries/messages.inc.php:288 libraries/sqlparser.lib.php:177 +#: libraries/messages.inc.php:284 libraries/sqlparser.lib.php:177 msgid "END CUT" msgstr "" -#: libraries/messages.inc.php:290 libraries/sqlparser.lib.php:183 +#: libraries/messages.inc.php:286 libraries/sqlparser.lib.php:183 msgid "END RAW" msgstr "" -#: libraries/messages.inc.php:293 libraries/server_links.inc.php:61 +#: libraries/messages.inc.php:289 libraries/server_links.inc.php:61 #: test/theme.php:113 msgid "Engines" msgstr "" -#: libraries/messages.inc.php:295 libraries/mysql_charsets.lib.php:238 +#: libraries/messages.inc.php:291 libraries/mysql_charsets.lib.php:238 msgid "English" msgstr "" -#: libraries/messages.inc.php:296 server_privileges.php:393 +#: libraries/messages.inc.php:292 server_privileges.php:393 #: server_privileges.php:535 server_privileges.php:1501 msgid " Note: MySQL privilege names are expressed in English " msgstr " 주의: MySQL 권한 이름은 영어로 표기되어야 합니다. " -#: libraries/messages.inc.php:298 libraries/zip_extension.lib.php:49 +#: libraries/messages.inc.php:294 libraries/zip_extension.lib.php:49 #: libraries/zip_extension.lib.php:51 libraries/zip_extension.lib.php:66 msgid "Error in ZIP archive:" msgstr "" -#: libraries/messages.inc.php:303 libraries/mysql_charsets.lib.php:241 +#: libraries/messages.inc.php:299 libraries/mysql_charsets.lib.php:241 msgid "Esperanto" msgstr "" -#: libraries/messages.inc.php:304 libraries/mysql_charsets.lib.php:244 +#: libraries/messages.inc.php:300 libraries/mysql_charsets.lib.php:244 msgid "Estonian" msgstr "" -#: libraries/messages.inc.php:305 libraries/tbl_triggers.lib.php:29 +#: libraries/messages.inc.php:301 libraries/tbl_triggers.lib.php:29 #, fuzzy msgid "Event" msgstr "보냄" -#: libraries/messages.inc.php:307 +#: libraries/messages.inc.php:303 msgid "Excel edition" msgstr "" -#: libraries/messages.inc.php:311 pmd_pdf.php:85 +#: libraries/messages.inc.php:307 pmd_pdf.php:85 msgid "Export/Import to scale" msgstr "" -#: libraries/messages.inc.php:313 +#: libraries/messages.inc.php:309 msgid "Extended inserts" msgstr "확장된 inserts" -#: libraries/messages.inc.php:314 pdf_schema.php:1267 pdf_schema.php:1288 +#: libraries/messages.inc.php:310 pdf_schema.php:1267 pdf_schema.php:1288 #: tbl_printview.php:147 tbl_structure.php:183 tbl_tracking.php:278 msgid "Extra" msgstr "추가" -#: libraries/messages.inc.php:316 server_status.php:447 +#: libraries/messages.inc.php:312 server_status.php:447 msgid "Failed attempts" msgstr "실패한 시도" -#: libraries/messages.inc.php:318 tbl_structure.php:375 +#: libraries/messages.inc.php:314 tbl_structure.php:375 #, php-format msgid "Field %s has been dropped" msgstr "필드 %s 를 제거했습니다" -#: libraries/messages.inc.php:322 libraries/sql_query_form.lib.php:317 +#: libraries/messages.inc.php:318 libraries/sql_query_form.lib.php:317 msgid "Fields" msgstr "필드" -#: libraries/messages.inc.php:332 server_binlog.php:136 +#: libraries/messages.inc.php:328 server_binlog.php:136 #, fuzzy msgid "Files" msgstr "필드" -#: libraries/messages.inc.php:334 server_privileges.php:1597 +#: libraries/messages.inc.php:330 server_privileges.php:1597 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -3740,220 +3740,220 @@ msgid "" "sreload the privileges%s before you continue." msgstr "" -#: libraries/messages.inc.php:335 server_status.php:289 +#: libraries/messages.inc.php:331 server_status.php:289 msgid "Flush query cache" msgstr "" -#: libraries/messages.inc.php:336 +#: libraries/messages.inc.php:332 msgid "Flush the table (\"FLUSH\")" msgstr "테이블 닫기(캐시 삭제)" -#: libraries/messages.inc.php:337 server_status.php:271 +#: libraries/messages.inc.php:333 server_status.php:271 msgid "Flush (close) all tables" msgstr "" -#: libraries/messages.inc.php:339 tbl_relation.php:279 +#: libraries/messages.inc.php:335 tbl_relation.php:279 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" -#: libraries/messages.inc.php:341 setup/lib/messages.inc.php:88 +#: libraries/messages.inc.php:337 setup/lib/messages.inc.php:88 #: tbl_printview.php:376 tbl_structure.php:738 msgid "Format" msgstr "Format" -#: libraries/messages.inc.php:344 server_replication.php:325 +#: libraries/messages.inc.php:340 server_replication.php:325 #, fuzzy msgid "Full start" msgstr "Fulltext" -#: libraries/messages.inc.php:345 server_replication.php:325 +#: libraries/messages.inc.php:341 server_replication.php:325 msgid "Full stop" msgstr "" -#: libraries/messages.inc.php:347 tbl_change.php:282 tbl_change.php:320 +#: libraries/messages.inc.php:343 tbl_change.php:282 tbl_change.php:320 msgid "Function" msgstr "함수" -#: libraries/messages.inc.php:355 libraries/mysql_charsets.lib.php:377 +#: libraries/messages.inc.php:351 libraries/mysql_charsets.lib.php:377 msgid "Georgian" msgstr "" -#: libraries/messages.inc.php:356 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:352 libraries/mysql_charsets.lib.php:247 #: libraries/mysql_charsets.lib.php:250 msgid "German" msgstr "" -#: libraries/messages.inc.php:357 themes.php:42 +#: libraries/messages.inc.php:353 themes.php:42 msgid "Get more themes!" msgstr "" -#: libraries/messages.inc.php:358 server_privileges.php:2134 +#: libraries/messages.inc.php:354 server_privileges.php:2134 msgid "global" msgstr "" -#: libraries/messages.inc.php:359 server_privileges.php:524 +#: libraries/messages.inc.php:355 server_privileges.php:524 #: server_privileges.php:1500 msgid "Global privileges" msgstr "전체적 권한" -#: libraries/messages.inc.php:360 server_variables.php:55 +#: libraries/messages.inc.php:356 server_variables.php:55 #: server_variables.php:89 msgid "Global value" msgstr "" -#: libraries/messages.inc.php:365 server_privileges.php:1502 +#: libraries/messages.inc.php:361 server_privileges.php:1502 #: server_privileges.php:1684 server_privileges.php:2033 #, fuzzy msgid "Grant" msgstr "인쇄" -#: libraries/messages.inc.php:366 libraries/mysql_charsets.lib.php:380 +#: libraries/messages.inc.php:362 libraries/mysql_charsets.lib.php:380 msgid "Greek" msgstr "" -#: libraries/messages.inc.php:367 +#: libraries/messages.inc.php:363 msgid "\"gzipped\"" msgstr "gz 압축" -#: libraries/messages.inc.php:369 server_status.php:250 +#: libraries/messages.inc.php:365 server_status.php:250 msgid "Handler" msgstr "" -#: libraries/messages.inc.php:370 server_synchronize.php:464 +#: libraries/messages.inc.php:366 server_synchronize.php:464 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: libraries/messages.inc.php:372 libraries/mysql_charsets.lib.php:374 +#: libraries/messages.inc.php:368 libraries/mysql_charsets.lib.php:374 msgid "Hebrew" msgstr "" -#: libraries/messages.inc.php:373 pmd_general.php:83 +#: libraries/messages.inc.php:369 pmd_general.php:83 msgid "Help" msgstr "" -#: libraries/messages.inc.php:374 +#: libraries/messages.inc.php:370 msgid "Use hexadecimal for BLOB" msgstr "" -#: libraries/messages.inc.php:376 pmd_general.php:120 +#: libraries/messages.inc.php:372 pmd_general.php:120 #, fuzzy msgid "Hide/Show all" msgstr "모두 보기" -#: libraries/messages.inc.php:377 pmd_general.php:124 +#: libraries/messages.inc.php:373 pmd_general.php:124 msgid "Hide/Show Tables with no relation" msgstr "" -#: libraries/messages.inc.php:378 libraries/navigation_header.inc.php:54 +#: libraries/messages.inc.php:374 libraries/navigation_header.inc.php:54 #: libraries/navigation_header.inc.php:57 #: libraries/navigation_header.inc.php:58 msgid "Home" msgstr "시작페이지" -#: libraries/messages.inc.php:379 main.php:233 +#: libraries/messages.inc.php:375 main.php:233 msgid "Official Homepage" msgstr "phpMyAdmin 공식 홈" -#: libraries/messages.inc.php:382 libraries/replication_gui.lib.php:327 +#: libraries/messages.inc.php:378 libraries/replication_gui.lib.php:327 #: server_privileges.php:753 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/messages.inc.php:383 +#: libraries/messages.inc.php:379 msgid "Microsoft Word 2000" msgstr "" -#: libraries/messages.inc.php:384 libraries/mysql_charsets.lib.php:253 +#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:253 msgid "Hungarian" msgstr "" -#: libraries/messages.inc.php:386 libraries/mysql_charsets.lib.php:256 +#: libraries/messages.inc.php:382 libraries/mysql_charsets.lib.php:256 msgid "Icelandic" msgstr "" -#: libraries/messages.inc.php:387 server_processlist.php:53 +#: libraries/messages.inc.php:383 server_processlist.php:53 msgid "ID" msgstr "" -#: libraries/messages.inc.php:388 libraries/mult_submits.inc.php:108 +#: libraries/messages.inc.php:384 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:479 msgid "Fulltext" msgstr "Fulltext" -#: libraries/messages.inc.php:389 +#: libraries/messages.inc.php:385 msgid "Ignore duplicate rows" msgstr "" -#: libraries/messages.inc.php:390 tbl_change.php:302 tbl_indexes.php:200 +#: libraries/messages.inc.php:386 tbl_change.php:302 tbl_indexes.php:200 #: tbl_indexes.php:225 msgid "Ignore" msgstr "Ignore" -#: libraries/messages.inc.php:391 +#: libraries/messages.inc.php:387 msgid "Use ignore inserts" msgstr "" -#: libraries/messages.inc.php:392 +#: libraries/messages.inc.php:388 msgid "Column names in first row" msgstr "" -#: libraries/messages.inc.php:393 +#: libraries/messages.inc.php:389 msgid "Do not import empty rows" msgstr "" -#: libraries/messages.inc.php:394 pmd_general.php:104 +#: libraries/messages.inc.php:390 pmd_general.php:104 msgid "Import/Export coordinates for PDF schema" msgstr "" -#: libraries/messages.inc.php:395 querywindow.php:104 +#: libraries/messages.inc.php:391 querywindow.php:104 msgid "Import files" msgstr "파일 가져오기" -#: libraries/messages.inc.php:403 +#: libraries/messages.inc.php:399 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/messages.inc.php:404 libraries/messages.inc.php:584 +#: libraries/messages.inc.php:400 libraries/messages.inc.php:580 msgid "Open Document Spreadsheet" msgstr "" -#: libraries/messages.inc.php:405 +#: libraries/messages.inc.php:401 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/messages.inc.php:409 +#: libraries/messages.inc.php:405 msgid "Excel 97-2003 XLS Workbook" msgstr "" -#: libraries/messages.inc.php:410 +#: libraries/messages.inc.php:406 msgid "Excel 2007 XLSX Workbook" msgstr "" -#: libraries/messages.inc.php:414 libraries/mult_submits.inc.php:98 +#: libraries/messages.inc.php:410 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:476 tbl_structure.php:674 msgid "Index" msgstr "인덱스" -#: libraries/messages.inc.php:415 tbl_indexes.php:168 +#: libraries/messages.inc.php:411 tbl_indexes.php:168 msgid "Index name:" msgstr "인덱스 이름:" -#: libraries/messages.inc.php:416 tbl_indexes.php:174 +#: libraries/messages.inc.php:412 tbl_indexes.php:174 msgid "Index type:" msgstr "인덱스 종류:" -#: libraries/messages.inc.php:417 sql.php:639 +#: libraries/messages.inc.php:413 sql.php:639 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: libraries/messages.inc.php:427 main.php:266 +#: libraries/messages.inc.php:423 main.php:266 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -3964,196 +3964,196 @@ msgstr "" "가 작동한다면 누구나 침입할 수 있으므로, 이 보안상 허점을 수정하시기 바랍니" "다." -#: libraries/messages.inc.php:428 tbl_change.php:1130 +#: libraries/messages.inc.php:424 tbl_change.php:1130 msgid "Insert as new row" msgstr "새 열을 삽입합니다" -#: libraries/messages.inc.php:429 sql.php:496 tbl_replace.php:386 +#: libraries/messages.inc.php:425 sql.php:496 tbl_replace.php:386 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: libraries/messages.inc.php:430 tbl_change.php:1131 +#: libraries/messages.inc.php:426 tbl_change.php:1131 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/messages.inc.php:432 main.php:139 +#: libraries/messages.inc.php:428 main.php:139 msgid "Interface" msgstr "" -#: libraries/messages.inc.php:433 tbl_relation.php:407 +#: libraries/messages.inc.php:429 tbl_relation.php:407 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: libraries/messages.inc.php:435 pdf_pages.php:303 +#: libraries/messages.inc.php:431 pdf_pages.php:303 msgid "Internal relations" msgstr "" -#: libraries/messages.inc.php:438 tbl_indexes.php:256 tbl_structure.php:590 +#: libraries/messages.inc.php:434 tbl_indexes.php:256 tbl_structure.php:590 #: tbl_structure.php:601 msgid "Column count has to be larger than zero." msgstr "" -#: libraries/messages.inc.php:444 libraries/tbl_properties.inc.php:784 +#: libraries/messages.inc.php:440 libraries/tbl_properties.inc.php:784 #: tbl_structure.php:537 msgid "You have to add at least one field." msgstr "" -#: libraries/messages.inc.php:449 +#: libraries/messages.inc.php:445 #, php-format msgid "Invalid server index: \"%s\"" msgstr "" -#: libraries/messages.inc.php:452 libraries/mysql_charsets.lib.php:259 +#: libraries/messages.inc.php:448 libraries/mysql_charsets.lib.php:259 #: libraries/mysql_charsets.lib.php:349 msgid "Japanese" msgstr "" -#: libraries/messages.inc.php:453 main.php:331 +#: libraries/messages.inc.php:449 main.php:331 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: libraries/messages.inc.php:454 server_status.php:257 +#: libraries/messages.inc.php:450 server_status.php:257 msgid "Joins" msgstr "" -#: libraries/messages.inc.php:457 server_privileges.php:763 +#: libraries/messages.inc.php:453 server_privileges.php:763 msgid "Do not change the password" msgstr "암호를 변경하지 않음" -#: libraries/messages.inc.php:458 server_status.php:256 +#: libraries/messages.inc.php:454 server_status.php:256 msgid "Key cache" msgstr "" -#: libraries/messages.inc.php:462 libraries/mysql_charsets.lib.php:268 +#: libraries/messages.inc.php:458 libraries/mysql_charsets.lib.php:268 #: libraries/mysql_charsets.lib.php:371 msgid "Korean" msgstr "" -#: libraries/messages.inc.php:466 libraries/select_lang.lib.php:480 +#: libraries/messages.inc.php:462 libraries/select_lang.lib.php:480 #: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492 #, php-format msgid "Unknown language: %1$s." msgstr "" -#: libraries/messages.inc.php:468 +#: libraries/messages.inc.php:464 msgid "Table caption" msgstr "" -#: libraries/messages.inc.php:469 +#: libraries/messages.inc.php:465 msgid "Content of table __TABLE__" msgstr "" -#: libraries/messages.inc.php:470 +#: libraries/messages.inc.php:466 msgid "Continued table caption" msgstr "" -#: libraries/messages.inc.php:471 +#: libraries/messages.inc.php:467 msgid "(continued)" msgstr "" -#: libraries/messages.inc.php:472 +#: libraries/messages.inc.php:468 msgid "Include table caption" msgstr "" -#: libraries/messages.inc.php:473 +#: libraries/messages.inc.php:469 msgid "Label key" msgstr "" -#: libraries/messages.inc.php:474 +#: libraries/messages.inc.php:470 #, fuzzy msgid "LaTeX" msgstr "Label" -#: libraries/messages.inc.php:475 +#: libraries/messages.inc.php:471 msgid "Structure of table __TABLE__" msgstr "" -#: libraries/messages.inc.php:476 libraries/mysql_charsets.lib.php:262 +#: libraries/messages.inc.php:472 libraries/mysql_charsets.lib.php:262 msgid "Latvian" msgstr "" -#: libraries/messages.inc.php:477 +#: libraries/messages.inc.php:473 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/messages.inc.php:478 +#: libraries/messages.inc.php:474 msgid "Use LOCAL keyword" msgstr "" -#: libraries/messages.inc.php:479 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:475 libraries/tbl_properties.inc.php:105 msgid "Length/Values" msgstr "길이/값*" -#: libraries/messages.inc.php:480 tbl_select.php:295 +#: libraries/messages.inc.php:476 tbl_select.php:295 msgid "Number of rows per page" msgstr "페이지당 레코드 수" -#: libraries/messages.inc.php:484 libraries/mysql_charsets.lib.php:265 +#: libraries/messages.inc.php:480 libraries/mysql_charsets.lib.php:265 msgid "Lithuanian" msgstr "" -#: libraries/messages.inc.php:485 libraries/replication_gui.lib.php:302 +#: libraries/messages.inc.php:481 libraries/replication_gui.lib.php:302 #: server_privileges.php:729 msgid "Local" msgstr "Local" -#: libraries/messages.inc.php:487 server_privileges.php:669 +#: libraries/messages.inc.php:483 server_privileges.php:669 msgid "Login Information" msgstr "로그인 정보" -#: libraries/messages.inc.php:490 libraries/navigation_header.inc.php:67 +#: libraries/messages.inc.php:486 libraries/navigation_header.inc.php:67 #: libraries/navigation_header.inc.php:70 #: libraries/navigation_header.inc.php:71 main.php:99 msgid "Log out" msgstr "로그아웃" -#: libraries/messages.inc.php:497 server_status.php:440 +#: libraries/messages.inc.php:493 server_status.php:440 msgid "max. concurrent connections" msgstr "" -#: libraries/messages.inc.php:498 +#: libraries/messages.inc.php:494 msgid "Maximal length of created query" msgstr "" -#: libraries/messages.inc.php:500 main.php:282 +#: libraries/messages.inc.php:496 main.php:282 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " "split strings correctly and it may result in unexpected results." msgstr "" -#: libraries/messages.inc.php:501 main.php:274 +#: libraries/messages.inc.php:497 main.php:274 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " "corrupted!" msgstr "" -#: libraries/messages.inc.php:502 +#: libraries/messages.inc.php:498 msgid "MediaWiki Table" msgstr "" -#: libraries/messages.inc.php:503 transformation_overview.php:25 +#: libraries/messages.inc.php:499 transformation_overview.php:25 msgid "Available MIME types" msgstr "" -#: libraries/messages.inc.php:504 transformation_overview.php:43 +#: libraries/messages.inc.php:500 transformation_overview.php:43 msgid "Available transformations" msgstr "" -#: libraries/messages.inc.php:505 +#: libraries/messages.inc.php:501 #, fuzzy msgctxt "$strMIME_description" msgid "Description" msgstr "설명이 없습니다" -#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:580 +#: libraries/messages.inc.php:503 libraries/tbl_properties.inc.php:580 #: transformation_overview.php:60 #, php-format msgid "" @@ -4161,14 +4161,14 @@ msgid "" "author what %s does." msgstr "" -#: libraries/messages.inc.php:509 libraries/tbl_properties.inc.php:137 +#: libraries/messages.inc.php:505 libraries/tbl_properties.inc.php:137 #, php-format msgid "" "For a list of available transformation options and their MIME type " "transformations, click on %stransformation descriptions%s" msgstr "" -#: libraries/messages.inc.php:510 libraries/tbl_properties.inc.php:146 +#: libraries/messages.inc.php:506 libraries/tbl_properties.inc.php:146 #, fuzzy msgid "" "Please enter the values for transformation options using this format: 'a', " @@ -4180,407 +4180,407 @@ msgstr "" "오: 'a','b','c'...
여기에 역슬래시(\\)나 작은 따옴표(')를 넣어야 한다" "면, 그 앞에 역슬래시를 사용하십시오. (예: '\\\\xyz' 또는 'a\\'b')." -#: libraries/messages.inc.php:511 libraries/tbl_properties.inc.php:145 +#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:145 msgid "Transformation options" msgstr "" -#: libraries/messages.inc.php:513 transformation_overview.php:38 +#: libraries/messages.inc.php:509 transformation_overview.php:38 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "" -#: libraries/messages.inc.php:515 tbl_indexes.php:162 +#: libraries/messages.inc.php:511 tbl_indexes.php:162 msgid "Modify an index" msgstr "인덱스 수정" -#: libraries/messages.inc.php:517 pmd_general.php:108 +#: libraries/messages.inc.php:513 pmd_general.php:108 msgid "Move Menu" msgstr "" -#: libraries/messages.inc.php:518 tbl_operations.php:276 +#: libraries/messages.inc.php:514 tbl_operations.php:276 msgid "Move table to (database.table):" msgstr "테이블 이동 (데이터베이스명.테이블명):" -#: libraries/messages.inc.php:519 tbl_move_copy.php:56 +#: libraries/messages.inc.php:515 tbl_move_copy.php:56 #, php-format msgid "Table %s has been moved to %s." msgstr "테이블 %s 을 %s 로 옮겼습니다." -#: libraries/messages.inc.php:520 tbl_move_copy.php:46 +#: libraries/messages.inc.php:516 tbl_move_copy.php:46 msgid "Can't move table to same one!" msgstr "" -#: libraries/messages.inc.php:521 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:517 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 #: libraries/mysql_charsets.lib.php:332 libraries/mysql_charsets.lib.php:354 #: libraries/mysql_charsets.lib.php:365 msgid "multilingual" msgstr "" -#: libraries/messages.inc.php:534 main.php:193 +#: libraries/messages.inc.php:530 main.php:193 msgid "MySQL charset" msgstr "MySQL 문자셋" -#: libraries/messages.inc.php:535 main.php:211 +#: libraries/messages.inc.php:531 main.php:211 msgid "MySQL client version" msgstr "" -#: libraries/messages.inc.php:536 main.php:125 +#: libraries/messages.inc.php:532 main.php:125 msgid "MySQL connection collation" msgstr "" -#: libraries/messages.inc.php:537 main.php:346 +#: libraries/messages.inc.php:533 main.php:346 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: libraries/messages.inc.php:539 server_status.php:294 +#: libraries/messages.inc.php:535 server_status.php:294 msgid "Show processes" msgstr "MySQL 프로세스 보기" -#: libraries/messages.inc.php:545 navigation.php:210 server_databases.php:371 +#: libraries/messages.inc.php:541 navigation.php:210 server_databases.php:371 #: server_synchronize.php:1191 msgid "No databases" msgstr "데이터베이스가 없습니다" -#: libraries/messages.inc.php:546 server_databases.php:52 +#: libraries/messages.inc.php:542 server_databases.php:52 msgid "No databases selected." msgstr "데이터베이스를 선택하지 않았습니다." -#: libraries/messages.inc.php:548 libraries/relation.lib.php:1173 +#: libraries/messages.inc.php:544 libraries/relation.lib.php:1173 msgid "no description" msgstr "설명이 없습니다" -#: libraries/messages.inc.php:552 libraries/zip_extension.lib.php:26 +#: libraries/messages.inc.php:548 libraries/zip_extension.lib.php:26 msgid "No files found inside ZIP archive!" msgstr "" -#: libraries/messages.inc.php:555 tbl_indexes.php:91 +#: libraries/messages.inc.php:551 tbl_indexes.php:91 msgid "No index parts defined!" msgstr "No index parts defined!" -#: libraries/messages.inc.php:556 libraries/mult_submits.inc.php:435 +#: libraries/messages.inc.php:552 libraries/mult_submits.inc.php:435 #: tbl_replace.php:331 msgid "No change" msgstr "변화 없음" -#: libraries/messages.inc.php:557 +#: libraries/messages.inc.php:553 #, fuzzy msgctxt "$strNoneDefault" msgid "None" msgstr "없음" -#: libraries/messages.inc.php:560 libraries/plugin_interface.lib.php:312 +#: libraries/messages.inc.php:556 libraries/plugin_interface.lib.php:312 msgid "This format has no options" msgstr "" -#: libraries/messages.inc.php:565 user_password.php:54 +#: libraries/messages.inc.php:561 user_password.php:54 msgid "You don't have sufficient privileges to be here right now!" msgstr "어떻게 들어오셨어요? 지금 여기 있을 권한이 없습니다!" -#: libraries/messages.inc.php:566 tbl_row_action.php:29 +#: libraries/messages.inc.php:562 tbl_row_action.php:29 msgid "No rows selected" msgstr "" -#: libraries/messages.inc.php:569 themes.php:32 +#: libraries/messages.inc.php:565 themes.php:32 #, php-format msgid "" "No themes support; please check your configuration and/or your themes in " "directory %s." msgstr "" -#: libraries/messages.inc.php:571 libraries/relation.lib.php:95 +#: libraries/messages.inc.php:567 libraries/relation.lib.php:95 msgid "not OK" msgstr "" -#: libraries/messages.inc.php:572 server_synchronize.php:400 +#: libraries/messages.inc.php:568 server_synchronize.php:400 #: server_synchronize.php:839 msgid "not present" msgstr "" -#: libraries/messages.inc.php:573 pdf_pages.php:36 pdf_pages.php:42 +#: libraries/messages.inc.php:569 pdf_pages.php:36 pdf_pages.php:42 #: pdf_pages.php:48 pdf_pages.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "" -#: libraries/messages.inc.php:574 server_privileges.php:804 +#: libraries/messages.inc.php:570 server_privileges.php:804 #: server_privileges.php:2166 msgid "No user(s) found." msgstr "사용자가 없습니다." -#: libraries/messages.inc.php:578 pmd_general.php:164 +#: libraries/messages.inc.php:574 pmd_general.php:164 msgid "Number of tables" msgstr "" -#: libraries/messages.inc.php:581 server_databases.php:117 +#: libraries/messages.inc.php:577 server_databases.php:117 #: server_status.php:260 setup/lib/messages.inc.php:117 msgid "Tables" msgstr "테이블 수" -#: libraries/messages.inc.php:583 libraries/relation.lib.php:99 +#: libraries/messages.inc.php:579 libraries/relation.lib.php:99 #: pmd_general.php:340 msgid "OK" msgstr "" -#: libraries/messages.inc.php:585 +#: libraries/messages.inc.php:581 msgid "Open Document Text" msgstr "" -#: libraries/messages.inc.php:588 tbl_select.php:138 +#: libraries/messages.inc.php:584 tbl_select.php:138 #, fuzzy msgid "Operator" msgstr "테이블 작업" -#: libraries/messages.inc.php:589 tbl_operations.php:662 +#: libraries/messages.inc.php:585 tbl_operations.php:662 msgid "Optimize" msgstr "" -#: libraries/messages.inc.php:602 libraries/tbl_properties.inc.php:755 +#: libraries/messages.inc.php:598 libraries/tbl_properties.inc.php:755 msgid "PARTITION definition" msgstr "" -#: libraries/messages.inc.php:603 tbl_structure.php:757 +#: libraries/messages.inc.php:599 tbl_structure.php:757 msgid "partitioned" msgstr "" -#: libraries/messages.inc.php:604 tbl_operations.php:649 +#: libraries/messages.inc.php:600 tbl_operations.php:649 #, fuzzy msgid "Partition maintenance" msgstr "테이블 유지보수" -#: libraries/messages.inc.php:605 tbl_operations.php:657 +#: libraries/messages.inc.php:601 tbl_operations.php:657 #, php-format msgid "Partition %s" msgstr "" -#: libraries/messages.inc.php:606 server_privileges.php:1212 +#: libraries/messages.inc.php:602 server_privileges.php:1212 #, php-format msgid "The password for %s was changed successfully." msgstr "%s 의 암호가 바뀌었습니다." -#: libraries/messages.inc.php:635 +#: libraries/messages.inc.php:631 #, php-format msgid "Schema of the \"%s\" database - Page %s" msgstr "\"%s\" 데이터베이스의 스킴(윤곽) - 페이지 %s" -#: libraries/messages.inc.php:636 +#: libraries/messages.inc.php:632 #, php-format msgid "The \"%s\" table doesn't exist!" msgstr "\"%s\" 테이블이 존재하지 않습니다!" -#: libraries/messages.inc.php:637 pdf_schema.php:1013 +#: libraries/messages.inc.php:633 pdf_schema.php:1013 msgid "No tables" msgstr "테이블이 없습니다" -#: libraries/messages.inc.php:638 pmd_pdf.php:63 +#: libraries/messages.inc.php:634 pmd_pdf.php:63 #, fuzzy msgid "Page has been created" msgstr "테이블 %s 을 제거했습니다." -#: libraries/messages.inc.php:639 pmd_pdf.php:65 +#: libraries/messages.inc.php:635 pmd_pdf.php:65 msgid "Page creation failed" msgstr "" -#: libraries/messages.inc.php:640 +#: libraries/messages.inc.php:636 msgid "PDF" msgstr "" -#: libraries/messages.inc.php:641 +#: libraries/messages.inc.php:637 msgid "(Generates a report containing the data of a single table)" msgstr "" -#: libraries/messages.inc.php:642 +#: libraries/messages.inc.php:638 msgid "Report title" msgstr "" -#: libraries/messages.inc.php:643 server_status.php:389 server_status.php:434 +#: libraries/messages.inc.php:639 server_status.php:389 server_status.php:434 #: server_status.php:497 server_status.php:555 msgid "per hour" msgstr "" -#: libraries/messages.inc.php:644 server_status.php:498 +#: libraries/messages.inc.php:640 server_status.php:498 msgid "per minute" msgstr "" -#: libraries/messages.inc.php:645 server_status.php:499 +#: libraries/messages.inc.php:641 server_status.php:499 msgid "per second" msgstr "" -#: libraries/messages.inc.php:646 libraries/mysql_charsets.lib.php:271 +#: libraries/messages.inc.php:642 libraries/mysql_charsets.lib.php:271 msgid "Persian" msgstr "" -#: libraries/messages.inc.php:647 libraries/mysql_charsets.lib.php:250 +#: libraries/messages.inc.php:643 libraries/mysql_charsets.lib.php:250 msgid "phone book" msgstr "" -#: libraries/messages.inc.php:648 +#: libraries/messages.inc.php:644 msgid "PHP array" msgstr "" -#: libraries/messages.inc.php:650 main.php:213 +#: libraries/messages.inc.php:646 main.php:213 #, fuzzy msgid "PHP extension" msgstr "PHP 버전" -#: libraries/messages.inc.php:654 libraries/relation.lib.php:163 +#: libraries/messages.inc.php:650 libraries/relation.lib.php:163 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/messages.inc.php:655 libraries/relation.lib.php:159 +#: libraries/messages.inc.php:651 libraries/relation.lib.php:159 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/messages.inc.php:656 libraries/relation.lib.php:161 +#: libraries/messages.inc.php:652 libraries/relation.lib.php:161 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" -#: libraries/messages.inc.php:657 libraries/relation.lib.php:162 +#: libraries/messages.inc.php:653 libraries/relation.lib.php:162 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/messages.inc.php:658 libraries/relation.lib.php:164 +#: libraries/messages.inc.php:654 libraries/relation.lib.php:164 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/messages.inc.php:661 libraries/mysql_charsets.lib.php:274 +#: libraries/messages.inc.php:657 libraries/mysql_charsets.lib.php:274 msgid "Polish" msgstr "" -#: libraries/messages.inc.php:662 libraries/replication_gui.lib.php:67 +#: libraries/messages.inc.php:658 libraries/replication_gui.lib.php:67 #: server_synchronize.php:1163 #, fuzzy msgid "Port" msgstr "정렬" -#: libraries/messages.inc.php:667 tbl_indexes.php:67 +#: libraries/messages.inc.php:663 tbl_indexes.php:67 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "기본 키의 이름은 반드시 PRIMARY여야 합니다!" -#: libraries/messages.inc.php:668 tbl_indexes.php:184 +#: libraries/messages.inc.php:664 tbl_indexes.php:184 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "(\"PRIMARY\"는 기본 키만의 유일한 이름입니다!)" -#: libraries/messages.inc.php:669 libraries/mult_submits.inc.php:76 +#: libraries/messages.inc.php:665 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:474 msgid "Primary" msgstr "기본" -#: libraries/messages.inc.php:673 server_privileges.php:227 +#: libraries/messages.inc.php:669 server_privileges.php:227 msgid "Includes all privileges except GRANT." msgstr "GRANT 이외의 모든 권한을 포함함." -#: libraries/messages.inc.php:674 server_privileges.php:153 +#: libraries/messages.inc.php:670 server_privileges.php:153 #: server_privileges.php:476 msgid "Allows altering the structure of existing tables." msgstr "테이블 구조 변경 허용." -#: libraries/messages.inc.php:675 server_privileges.php:169 +#: libraries/messages.inc.php:671 server_privileges.php:169 #: server_privileges.php:482 #, fuzzy msgid "Allows altering and dropping stored routines." msgstr "인덱스 생성 및 삭제 허용." -#: libraries/messages.inc.php:676 server_privileges.php:145 +#: libraries/messages.inc.php:672 server_privileges.php:145 #: server_privileges.php:475 msgid "Allows creating new databases and tables." msgstr "DB 및 테이블 생성 허용." -#: libraries/messages.inc.php:677 server_privileges.php:168 +#: libraries/messages.inc.php:673 server_privileges.php:168 #: server_privileges.php:481 #, fuzzy msgid "Allows creating stored routines." msgstr "테이블 생성 허용." -#: libraries/messages.inc.php:678 server_privileges.php:475 +#: libraries/messages.inc.php:674 server_privileges.php:475 msgid "Allows creating new tables." msgstr "테이블 생성 허용." -#: libraries/messages.inc.php:679 server_privileges.php:156 +#: libraries/messages.inc.php:675 server_privileges.php:156 #: server_privileges.php:479 msgid "Allows creating temporary tables." msgstr "임시테이블 생성 허용." -#: libraries/messages.inc.php:680 server_privileges.php:170 +#: libraries/messages.inc.php:676 server_privileges.php:170 #: server_privileges.php:515 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: libraries/messages.inc.php:681 server_privileges.php:160 +#: libraries/messages.inc.php:677 server_privileges.php:160 #: server_privileges.php:164 server_privileges.php:487 #: server_privileges.php:491 #, fuzzy msgid "Allows creating new views." msgstr "테이블 생성 허용." -#: libraries/messages.inc.php:682 server_privileges.php:144 +#: libraries/messages.inc.php:678 server_privileges.php:144 #: server_privileges.php:467 msgid "Allows deleting data." msgstr "데이터 삭제 허용." -#: libraries/messages.inc.php:683 server_privileges.php:146 +#: libraries/messages.inc.php:679 server_privileges.php:146 #: server_privileges.php:478 msgid "Allows dropping databases and tables." msgstr "DB 및 테이블 삭제 허용." -#: libraries/messages.inc.php:684 server_privileges.php:478 +#: libraries/messages.inc.php:680 server_privileges.php:478 msgid "Allows dropping tables." msgstr "테이블 삭제 허용." -#: libraries/messages.inc.php:685 server_privileges.php:161 +#: libraries/messages.inc.php:681 server_privileges.php:161 #: server_privileges.php:495 msgid "Allows to set up events for the event scheduler" msgstr "" -#: libraries/messages.inc.php:686 server_privileges.php:171 +#: libraries/messages.inc.php:682 server_privileges.php:171 #: server_privileges.php:483 msgid "Allows executing stored routines." msgstr "" -#: libraries/messages.inc.php:687 server_privileges.php:150 +#: libraries/messages.inc.php:683 server_privileges.php:150 #: server_privileges.php:470 msgid "Allows importing data from and exporting data into files." msgstr "데이터를 파일에서 가져오기 및 파일로 내보내기 허용." -#: libraries/messages.inc.php:688 server_privileges.php:501 +#: libraries/messages.inc.php:684 server_privileges.php:501 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "권한 테이블을 갱신하지 않고 사용자와 권한 추가하기 허용." -#: libraries/messages.inc.php:689 server_privileges.php:152 +#: libraries/messages.inc.php:685 server_privileges.php:152 #: server_privileges.php:477 msgid "Allows creating and dropping indexes." msgstr "인덱스 생성 및 삭제 허용." -#: libraries/messages.inc.php:690 server_privileges.php:142 +#: libraries/messages.inc.php:686 server_privileges.php:142 #: server_privileges.php:403 server_privileges.php:465 msgid "Allows inserting and replacing data." msgstr "데이터 추가(insert) 및 변경(replace) 허용." -#: libraries/messages.inc.php:691 server_privileges.php:157 +#: libraries/messages.inc.php:687 server_privileges.php:157 #: server_privileges.php:510 msgid "Allows locking tables for the current thread." msgstr "현재 쓰레드에 대한 테이블 잠금(lock) 허용." -#: libraries/messages.inc.php:692 server_privileges.php:607 +#: libraries/messages.inc.php:688 server_privileges.php:607 #: server_privileges.php:609 msgid "Limits the number of new connections the user may open per hour." msgstr "Limits the number of new connections the user may open per hour." -#: libraries/messages.inc.php:693 server_privileges.php:595 +#: libraries/messages.inc.php:689 server_privileges.php:595 #: server_privileges.php:597 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Limits the number of queries the user may send to the server per hour." -#: libraries/messages.inc.php:694 server_privileges.php:601 +#: libraries/messages.inc.php:690 server_privileges.php:601 #: server_privileges.php:603 msgid "" "Limits the number of commands that change any table or database the user may " @@ -4589,58 +4589,58 @@ msgstr "" "Limits the number of commands that change any table or database the user may " "execute per hour." -#: libraries/messages.inc.php:695 server_privileges.php:613 +#: libraries/messages.inc.php:691 server_privileges.php:613 #: server_privileges.php:615 #, fuzzy msgid "Limits the number of simultaneous connections the user may have." msgstr "Limits the number of new connections the user may open per hour." -#: libraries/messages.inc.php:696 server_privileges.php:149 +#: libraries/messages.inc.php:692 server_privileges.php:149 #: server_privileges.php:505 msgid "Allows viewing processes of all users" msgstr "" -#: libraries/messages.inc.php:697 server_privileges.php:151 +#: libraries/messages.inc.php:693 server_privileges.php:151 #: server_privileges.php:409 server_privileges.php:511 msgid "Has no effect in this MySQL version." msgstr "이 버전의 MySQL에는 소용이 없습니다." -#: libraries/messages.inc.php:698 server_privileges.php:147 +#: libraries/messages.inc.php:694 server_privileges.php:147 #: server_privileges.php:506 msgid "Allows reloading server settings and flushing the server's caches." msgstr "캐시를 비우고 서버를 재시동하는 것을 허용." -#: libraries/messages.inc.php:699 server_privileges.php:159 +#: libraries/messages.inc.php:695 server_privileges.php:159 #: server_privileges.php:513 msgid "Allows the user to ask where the slaves / masters are." msgstr "" -#: libraries/messages.inc.php:700 server_privileges.php:158 +#: libraries/messages.inc.php:696 server_privileges.php:158 #: server_privileges.php:514 msgid "Needed for the replication slaves." msgstr "복제서버(replication slaves)에 필요합니다." -#: libraries/messages.inc.php:701 server_privileges.php:141 +#: libraries/messages.inc.php:697 server_privileges.php:141 #: server_privileges.php:400 server_privileges.php:464 msgid "Allows reading data." msgstr "데이터 읽기 허용." -#: libraries/messages.inc.php:702 server_privileges.php:154 +#: libraries/messages.inc.php:698 server_privileges.php:154 #: server_privileges.php:508 msgid "Gives access to the complete list of databases." msgstr "전체 데이터베이스 목록 접근을 허용" -#: libraries/messages.inc.php:703 server_privileges.php:165 +#: libraries/messages.inc.php:699 server_privileges.php:165 #: server_privileges.php:167 server_privileges.php:480 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: libraries/messages.inc.php:704 server_privileges.php:148 +#: libraries/messages.inc.php:700 server_privileges.php:148 #: server_privileges.php:507 msgid "Allows shutting down the server." msgstr "서버 종료 허용." -#: libraries/messages.inc.php:705 server_privileges.php:155 +#: libraries/messages.inc.php:701 server_privileges.php:155 #: server_privileges.php:504 msgid "" "Allows connecting, even if maximum number of connections is reached; " @@ -4648,195 +4648,195 @@ msgid "" "killing threads of other users." msgstr "" -#: libraries/messages.inc.php:706 server_privileges.php:162 +#: libraries/messages.inc.php:702 server_privileges.php:162 #: server_privileges.php:496 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "인덱스 생성 및 삭제 허용." -#: libraries/messages.inc.php:707 server_privileges.php:143 +#: libraries/messages.inc.php:703 server_privileges.php:143 #: server_privileges.php:406 server_privileges.php:466 msgid "Allows changing data." msgstr "데이터 변경 허용." -#: libraries/messages.inc.php:708 server_privileges.php:221 +#: libraries/messages.inc.php:704 server_privileges.php:221 msgid "No privileges." msgstr "권한 없음." -#: libraries/messages.inc.php:710 server_privileges.php:1296 +#: libraries/messages.inc.php:706 server_privileges.php:1296 msgid "The privileges were reloaded successfully." msgstr "권한을 다시 로딩했습니다." -#: libraries/messages.inc.php:712 libraries/server_links.inc.php:80 +#: libraries/messages.inc.php:708 libraries/server_links.inc.php:80 msgid "Processes" msgstr "프로세스 목록" -#: libraries/messages.inc.php:714 main.php:187 +#: libraries/messages.inc.php:710 main.php:187 msgid "Protocol version" msgstr "" -#: libraries/messages.inc.php:715 +#: libraries/messages.inc.php:711 msgid "Put fields names in the first row" msgstr "맨처음에 필드 이름을 출력" -#: libraries/messages.inc.php:720 server_synchronize.php:1003 +#: libraries/messages.inc.php:716 server_synchronize.php:1003 msgid "The following queries have been executed:" msgstr "" -#: libraries/messages.inc.php:721 server_status.php:251 +#: libraries/messages.inc.php:717 server_status.php:251 #, fuzzy msgid "Query cache" msgstr "질의 종류" -#: libraries/messages.inc.php:722 libraries/navigation_header.inc.php:80 +#: libraries/messages.inc.php:718 libraries/navigation_header.inc.php:80 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 setup/lib/messages.inc.php:122 msgid "Query window" msgstr "질의 창" -#: libraries/messages.inc.php:725 querywindow.php:109 querywindow.php:217 +#: libraries/messages.inc.php:721 querywindow.php:109 querywindow.php:217 msgid "SQL history" msgstr "SQL 내력(히스토리)" -#: libraries/messages.inc.php:726 server_status.php:490 +#: libraries/messages.inc.php:722 server_status.php:490 #, php-format msgid "" "Query statistics: Since its startup, %s queries have been sent to the " "server." msgstr "SQL 질의 통계: 이 서버에 %s 번의 질의가 보내졌습니다." -#: libraries/messages.inc.php:728 server_status.php:554 +#: libraries/messages.inc.php:724 server_status.php:554 msgid "Query type" msgstr "질의 종류" -#: libraries/messages.inc.php:729 libraries/sql_query_form.lib.php:381 +#: libraries/messages.inc.php:725 libraries/sql_query_form.lib.php:381 msgid "Do not overwrite this query from outside the window" msgstr "" -#: libraries/messages.inc.php:732 tbl_operations.php:663 +#: libraries/messages.inc.php:728 tbl_operations.php:663 msgid "Rebuild" msgstr "" -#: libraries/messages.inc.php:733 server_status.php:394 +#: libraries/messages.inc.php:729 server_status.php:394 msgid "Received" msgstr "받음" -#: libraries/messages.inc.php:734 pmd_pdf.php:89 +#: libraries/messages.inc.php:730 pmd_pdf.php:89 msgid "recommended" msgstr "" -#: libraries/messages.inc.php:736 tbl_operations.php:702 +#: libraries/messages.inc.php:732 tbl_operations.php:702 msgid "Check referential integrity:" msgstr "referential 무결성 검사:" -#: libraries/messages.inc.php:740 pdf_schema.php:1032 pdf_schema.php:1141 +#: libraries/messages.inc.php:736 pdf_schema.php:1032 pdf_schema.php:1141 msgid "Relational schema" msgstr "" -#: libraries/messages.inc.php:744 tbl_relation.php:399 +#: libraries/messages.inc.php:740 tbl_relation.php:399 #, fuzzy msgid "Relations" msgstr "테이블 작업" -#: libraries/messages.inc.php:745 tbl_structure.php:507 tbl_structure.php:509 +#: libraries/messages.inc.php:741 tbl_structure.php:507 tbl_structure.php:509 msgid "Relation view" msgstr "" -#: libraries/messages.inc.php:746 server_privileges.php:1246 +#: libraries/messages.inc.php:742 server_privileges.php:1246 msgid "Reloading the privileges" msgstr "사용권한을 갱신합니다(Reloading the privileges)" -#: libraries/messages.inc.php:747 navigation.php:66 navigation.php:67 +#: libraries/messages.inc.php:743 navigation.php:66 navigation.php:67 #: navigation.php:70 msgid "Reload navigation frame" msgstr "" -#: libraries/messages.inc.php:748 pmd_general.php:80 +#: libraries/messages.inc.php:744 pmd_general.php:80 msgid "Reload" msgstr "" -#: libraries/messages.inc.php:749 libraries/server_synchronize.lib.php:1345 +#: libraries/messages.inc.php:745 libraries/server_synchronize.lib.php:1345 #: libraries/server_synchronize.lib.php:1371 msgid "Remote server" msgstr "" -#: libraries/messages.inc.php:750 +#: libraries/messages.inc.php:746 msgid "Remove CRLF characters within fields" msgstr "" -#: libraries/messages.inc.php:751 tbl_operations.php:676 +#: libraries/messages.inc.php:747 tbl_operations.php:676 msgid "Remove partitioning" msgstr "" -#: libraries/messages.inc.php:752 server_privileges.php:1575 +#: libraries/messages.inc.php:748 server_privileges.php:1575 msgid "Remove selected users" msgstr "선택한 사용자를 삭제" -#: libraries/messages.inc.php:755 tbl_operations.php:338 +#: libraries/messages.inc.php:751 tbl_operations.php:338 msgid "Rename table to" msgstr "테이블 이름 바꾸기" -#: libraries/messages.inc.php:756 view_operations.php:93 +#: libraries/messages.inc.php:752 view_operations.php:93 #, fuzzy msgid "Rename view to" msgstr "테이블 이름 바꾸기" -#: libraries/messages.inc.php:757 tbl_operations.php:664 +#: libraries/messages.inc.php:753 tbl_operations.php:664 #, fuzzy msgid "Repair" msgstr "테이블 복구" -#: libraries/messages.inc.php:759 +#: libraries/messages.inc.php:755 msgid "Replace NULL by" msgstr "" -#: libraries/messages.inc.php:760 +#: libraries/messages.inc.php:756 msgid "Replace table data with file" msgstr "파일로 테이블 대치하기" -#: libraries/messages.inc.php:761 server_replication.php:228 +#: libraries/messages.inc.php:757 server_replication.php:228 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: libraries/messages.inc.php:762 libraries/replication_gui.lib.php:236 +#: libraries/messages.inc.php:758 libraries/replication_gui.lib.php:236 #: server_replication.php:194 msgid "Add slave replication user" msgstr "" -#: libraries/messages.inc.php:763 server_replication.php:74 +#: libraries/messages.inc.php:759 server_replication.php:74 #, php-format msgid "Master server changed succesfully to %s" msgstr "" -#: libraries/messages.inc.php:764 server_replication.php:182 +#: libraries/messages.inc.php:760 server_replication.php:182 msgid "This server is configured as master in a replication process." msgstr "" -#: libraries/messages.inc.php:765 server_replication.php:322 +#: libraries/messages.inc.php:761 server_replication.php:322 msgid "Control slave:" msgstr "" -#: libraries/messages.inc.php:766 server_replication.php:65 +#: libraries/messages.inc.php:762 server_replication.php:65 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: libraries/messages.inc.php:767 server_replication.php:58 +#: libraries/messages.inc.php:763 server_replication.php:58 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: libraries/messages.inc.php:768 server_replication.php:221 +#: libraries/messages.inc.php:764 server_replication.php:221 msgid "Replicate all databases; Ignore:" msgstr "" -#: libraries/messages.inc.php:769 server_replication.php:222 +#: libraries/messages.inc.php:765 server_replication.php:222 msgid "Ignore all databases; Replicate:" msgstr "" -#: libraries/messages.inc.php:770 server_replication.php:218 +#: libraries/messages.inc.php:766 server_replication.php:218 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -4845,121 +4845,121 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: libraries/messages.inc.php:771 server_replication.php:217 +#: libraries/messages.inc.php:767 server_replication.php:217 msgid "Master configuration" msgstr "" -#: libraries/messages.inc.php:772 server_replication.php:181 +#: libraries/messages.inc.php:768 server_replication.php:181 #: server_replication.php:209 msgid "Master replication" msgstr "" -#: libraries/messages.inc.php:774 server_replication.php:230 +#: libraries/messages.inc.php:770 server_replication.php:230 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: libraries/messages.inc.php:775 server_replication.php:225 +#: libraries/messages.inc.php:771 server_replication.php:225 #, fuzzy msgid "Please select databases:" msgstr "데이터베이스를 선택하세요" -#: libraries/messages.inc.php:776 server_replication.php:210 +#: libraries/messages.inc.php:772 server_replication.php:210 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:188 +#: libraries/messages.inc.php:773 libraries/replication_gui.lib.php:188 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/messages.inc.php:778 server_replication.php:187 +#: libraries/messages.inc.php:774 server_replication.php:187 msgid "Show connected slaves" msgstr "" -#: libraries/messages.inc.php:779 libraries/messages.inc.php:885 +#: libraries/messages.inc.php:775 libraries/messages.inc.php:881 #: server_replication.php:184 server_status.php:281 msgid "Show master status" msgstr "" -#: libraries/messages.inc.php:780 server_replication.php:334 +#: libraries/messages.inc.php:776 server_replication.php:334 msgid "Skipping error(s) might lead into unsynchronized master and slave!" msgstr "" -#: libraries/messages.inc.php:781 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:51 #: server_replication.php:347 msgid "Change or reconfigure master server" msgstr "" -#: libraries/messages.inc.php:782 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:778 libraries/replication_gui.lib.php:51 msgid "Slave configuration" msgstr "" -#: libraries/messages.inc.php:783 server_replication.php:305 +#: libraries/messages.inc.php:779 server_replication.php:305 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: libraries/messages.inc.php:784 server_replication.php:332 +#: libraries/messages.inc.php:780 server_replication.php:332 msgid "Error management:" msgstr "" -#: libraries/messages.inc.php:785 server_replication.php:328 +#: libraries/messages.inc.php:781 server_replication.php:328 #, php-format msgid "IO Thread %s only" msgstr "" -#: libraries/messages.inc.php:786 server_replication.php:296 +#: libraries/messages.inc.php:782 server_replication.php:296 msgid "Slave IO Thread not running!" msgstr "" -#: libraries/messages.inc.php:787 server_replication.php:355 +#: libraries/messages.inc.php:783 server_replication.php:355 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/messages.inc.php:788 server_replication.php:326 +#: libraries/messages.inc.php:784 server_replication.php:326 msgid "Reset slave" msgstr "" -#: libraries/messages.inc.php:789 server_replication.php:308 +#: libraries/messages.inc.php:785 server_replication.php:308 msgid "See slave status table" msgstr "" -#: libraries/messages.inc.php:790 server_replication.php:336 +#: libraries/messages.inc.php:786 server_replication.php:336 msgid "Skip current error" msgstr "" -#: libraries/messages.inc.php:791 server_replication.php:340 +#: libraries/messages.inc.php:787 server_replication.php:340 msgid "errors." msgstr "" -#: libraries/messages.inc.php:792 server_replication.php:337 +#: libraries/messages.inc.php:788 server_replication.php:337 msgid "Skip next" msgstr "" -#: libraries/messages.inc.php:793 server_replication.php:248 +#: libraries/messages.inc.php:789 server_replication.php:248 msgid "Slave replication" msgstr "" -#: libraries/messages.inc.php:794 server_replication.php:293 +#: libraries/messages.inc.php:790 server_replication.php:293 msgid "Slave SQL Thread not running!" msgstr "" -#: libraries/messages.inc.php:795 server_replication.php:327 +#: libraries/messages.inc.php:791 server_replication.php:327 #, php-format msgid "SQL Thread %s only" msgstr "" -#: libraries/messages.inc.php:796 +#: libraries/messages.inc.php:792 #, php-format msgid "" "This MySQL server works as %s in replication process. For further " @@ -4967,161 +4967,161 @@ msgid "" "\"#replication\">replication section." msgstr "" -#: libraries/messages.inc.php:797 +#: libraries/messages.inc.php:793 msgid "Master status" msgstr "" -#: libraries/messages.inc.php:798 server_status.php:721 +#: libraries/messages.inc.php:794 server_status.php:721 msgid "Replication status" msgstr "" -#: libraries/messages.inc.php:799 +#: libraries/messages.inc.php:795 msgid "Slave status" msgstr "" -#: libraries/messages.inc.php:800 server_replication.php:311 +#: libraries/messages.inc.php:796 server_replication.php:311 msgid "Synchronize databases with master" msgstr "" -#: libraries/messages.inc.php:801 server_replication.php:71 +#: libraries/messages.inc.php:797 server_replication.php:71 msgid "Unable to change master" msgstr "" -#: libraries/messages.inc.php:802 server_replication.php:51 +#: libraries/messages.inc.php:798 server_replication.php:51 msgid "Unknown error" msgstr "" -#: libraries/messages.inc.php:803 main.php:163 pdf_pages.php:344 +#: libraries/messages.inc.php:799 main.php:163 pdf_pages.php:344 #: setup/lib/FormDisplay.tpl.php:216 tbl_change.php:1175 msgid "Reset" msgstr "리세트" -#: libraries/messages.inc.php:804 server_privileges.php:591 +#: libraries/messages.inc.php:800 server_privileges.php:591 msgid "Resource limits" msgstr "리소스 제한" -#: libraries/messages.inc.php:805 tbl_change.php:1209 +#: libraries/messages.inc.php:801 tbl_change.php:1209 #, php-format msgid "Restart insertion with %s rows" msgstr "" -#: libraries/messages.inc.php:807 server_privileges.php:1578 +#: libraries/messages.inc.php:803 server_privileges.php:1578 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "모든 활성화된 권한을 박탈하고 사용자를 삭제함." -#: libraries/messages.inc.php:808 server_privileges.php:1176 +#: libraries/messages.inc.php:804 server_privileges.php:1176 #, php-format msgid "You have revoked the privileges for %s" msgstr "%s의 권한을 제거했습니다." -#: libraries/messages.inc.php:809 server_privileges.php:1333 +#: libraries/messages.inc.php:805 server_privileges.php:1333 msgid "Revoke" msgstr "제거" -#: libraries/messages.inc.php:810 libraries/mysql_charsets.lib.php:280 +#: libraries/messages.inc.php:806 libraries/mysql_charsets.lib.php:280 msgid "Romanian" msgstr "" -#: libraries/messages.inc.php:813 tbl_printview.php:404 tbl_structure.php:786 +#: libraries/messages.inc.php:809 tbl_printview.php:404 tbl_structure.php:786 msgid "Row length" msgstr "행 길이" -#: libraries/messages.inc.php:815 tbl_printview.php:414 tbl_structure.php:794 +#: libraries/messages.inc.php:811 tbl_printview.php:414 tbl_structure.php:794 msgid " Row size " msgstr " Row size " -#: libraries/messages.inc.php:821 tbl_printview.php:366 tbl_structure.php:726 +#: libraries/messages.inc.php:817 tbl_printview.php:366 tbl_structure.php:726 msgid "Row Statistics" msgstr "행(레코드) 통계" -#: libraries/messages.inc.php:822 +#: libraries/messages.inc.php:818 #, php-format msgid "running on %s" msgstr "입니다. (%s)" -#: libraries/messages.inc.php:824 libraries/sql_query_form.lib.php:223 +#: libraries/messages.inc.php:820 libraries/sql_query_form.lib.php:223 #, fuzzy, php-format msgid "Run SQL query/queries on server %s" msgstr "데이터베이스 %s에 SQL 질의를 실행" -#: libraries/messages.inc.php:825 libraries/sql_query_form.lib.php:240 +#: libraries/messages.inc.php:821 libraries/sql_query_form.lib.php:240 #: libraries/sql_query_form.lib.php:265 #, php-format msgid "Run SQL query/queries on database %s" msgstr "데이터베이스 %s에 SQL 질의를 실행" -#: libraries/messages.inc.php:826 libraries/mysql_charsets.lib.php:337 +#: libraries/messages.inc.php:822 libraries/mysql_charsets.lib.php:337 msgid "Russian" msgstr "" -#: libraries/messages.inc.php:829 pmd_general.php:68 +#: libraries/messages.inc.php:825 pmd_general.php:68 msgid "Save position" msgstr "" -#: libraries/messages.inc.php:830 libraries/tbl_properties.inc.php:776 +#: libraries/messages.inc.php:826 libraries/tbl_properties.inc.php:776 #: pdf_pages.php:484 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:214 setup/lib/FormDisplay.tpl.php:215 #: tbl_change.php:1126 tbl_indexes.php:248 tbl_relation.php:566 msgid "Save" msgstr "저장" -#: libraries/messages.inc.php:831 +#: libraries/messages.inc.php:827 msgid "The scale factor is too small to fit the schema on one page" msgstr "" -#: libraries/messages.inc.php:843 main.php:298 +#: libraries/messages.inc.php:839 main.php:298 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" -#: libraries/messages.inc.php:844 navigation.php:353 navigation.php:516 +#: libraries/messages.inc.php:840 navigation.php:353 navigation.php:516 msgid "Please select a database" msgstr "데이터베이스를 선택하세요" -#: libraries/messages.inc.php:846 server_binlog.php:120 +#: libraries/messages.inc.php:842 server_binlog.php:120 msgid "Select binary log to view" msgstr "" -#: libraries/messages.inc.php:847 tbl_select.php:270 +#: libraries/messages.inc.php:843 tbl_select.php:270 msgid "Select fields (at least one):" msgstr "필드 선택 (하나 이상):" -#: libraries/messages.inc.php:851 pdf_pages.php:320 +#: libraries/messages.inc.php:847 pdf_pages.php:320 #, fuzzy msgid "Select Tables" msgstr "모두 선택" -#: libraries/messages.inc.php:853 server_status.php:404 +#: libraries/messages.inc.php:849 server_status.php:404 msgid "Sent" msgstr "보냄" -#: libraries/messages.inc.php:857 libraries/select_server.lib.php:45 +#: libraries/messages.inc.php:853 libraries/select_server.lib.php:45 #: setup/frames/index.inc.php:97 setup/lib/messages.inc.php:115 #, fuzzy msgid "Servers" msgstr "서버" -#: libraries/messages.inc.php:858 server_status.php:255 +#: libraries/messages.inc.php:854 server_status.php:255 #, fuzzy msgid "Delayed inserts" msgstr "확장된 inserts" -#: libraries/messages.inc.php:859 server_status.php:46 +#: libraries/messages.inc.php:855 server_status.php:46 msgid "Runtime Information" msgstr "런타임 정보" -#: libraries/messages.inc.php:860 server_status.php:350 +#: libraries/messages.inc.php:856 server_status.php:350 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "" "이 MySQL 서버는 %s 동안 구동되었습니다.
구동 시작날짜는 %s 입니다." -#: libraries/messages.inc.php:861 libraries/server_links.inc.php:53 +#: libraries/messages.inc.php:857 libraries/server_links.inc.php:53 #: server_engines.php:112 server_engines.php:116 server_status.php:304 #: test/theme.php:105 msgid "Variables" msgstr "환경설정값" -#: libraries/messages.inc.php:862 server_status.php:383 +#: libraries/messages.inc.php:858 server_status.php:383 msgid "" "Server traffic: These tables show the network traffic statistics of " "this MySQL server since its startup." @@ -5129,11 +5129,11 @@ msgstr "" "서버 소통량: 이 테이블은 MySQL서버가 구동된 이래의 네트웍 부하 상태를 " "보여줍니다." -#: libraries/messages.inc.php:863 server_variables.php:35 +#: libraries/messages.inc.php:859 server_variables.php:35 msgid "Server variables and settings" msgstr "서버의 환경설정" -#: libraries/messages.inc.php:865 main.php:290 +#: libraries/messages.inc.php:861 main.php:290 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -5141,17 +5141,17 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: libraries/messages.inc.php:866 +#: libraries/messages.inc.php:862 msgid "" "Cannot start session without errors, please check errors given in your PHP " "and/or webserver log file and configure your PHP installation properly." msgstr "" -#: libraries/messages.inc.php:867 server_variables.php:55 +#: libraries/messages.inc.php:863 server_variables.php:55 msgid "Session value" msgstr "세션 값" -#: libraries/messages.inc.php:868 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:864 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 " @@ -5162,56 +5162,56 @@ msgstr "" "오: 'a','b','c'...
여기에 역슬래시(\\)나 작은 따옴표(')를 넣어야 한다" "면, 그 앞에 역슬래시를 사용하십시오. (예: '\\\\xyz' 또는 'a\\'b')." -#: libraries/messages.inc.php:876 server_binlog.php:192 server_binlog.php:195 +#: libraries/messages.inc.php:872 server_binlog.php:192 server_binlog.php:195 #: server_processlist.php:49 server_processlist.php:51 msgid "Show Full Queries" msgstr "" -#: libraries/messages.inc.php:878 pmd_general.php:64 +#: libraries/messages.inc.php:874 pmd_general.php:64 msgid "Show/Hide left menu" msgstr "" -#: libraries/messages.inc.php:880 sql.php:513 +#: libraries/messages.inc.php:876 sql.php:513 msgid "Showing as PHP code" msgstr "" -#: libraries/messages.inc.php:882 sql.php:516 tbl_replace.php:360 +#: libraries/messages.inc.php:878 sql.php:516 tbl_replace.php:360 msgid "Showing SQL query" msgstr "" -#: libraries/messages.inc.php:883 tbl_change.php:1132 +#: libraries/messages.inc.php:879 tbl_change.php:1132 msgid "Show insert query" msgstr "" -#: libraries/messages.inc.php:886 server_status.php:273 +#: libraries/messages.inc.php:882 server_status.php:273 #, fuzzy msgid "Show open tables" msgstr "테이블 보기" -#: libraries/messages.inc.php:887 main.php:219 +#: libraries/messages.inc.php:883 main.php:219 msgid "Show PHP information" msgstr "PHP 정보 보기" -#: libraries/messages.inc.php:889 server_status.php:278 +#: libraries/messages.inc.php:885 server_status.php:278 msgid "Show slave hosts" msgstr "" -#: libraries/messages.inc.php:890 server_status.php:284 +#: libraries/messages.inc.php:886 server_status.php:284 msgid "Show slave status" msgstr "" -#: libraries/messages.inc.php:891 +#: libraries/messages.inc.php:887 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/messages.inc.php:892 +#: libraries/messages.inc.php:888 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/messages.inc.php:893 +#: libraries/messages.inc.php:889 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -5219,78 +5219,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/messages.inc.php:894 +#: libraries/messages.inc.php:890 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/messages.inc.php:895 +#: libraries/messages.inc.php:891 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/messages.inc.php:896 +#: libraries/messages.inc.php:892 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/messages.inc.php:897 +#: libraries/messages.inc.php:893 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/messages.inc.php:898 +#: libraries/messages.inc.php:894 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/messages.inc.php:899 +#: libraries/messages.inc.php:895 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/messages.inc.php:900 +#: libraries/messages.inc.php:896 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/messages.inc.php:901 +#: libraries/messages.inc.php:897 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/messages.inc.php:902 +#: libraries/messages.inc.php:898 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/messages.inc.php:903 +#: libraries/messages.inc.php:899 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/messages.inc.php:904 +#: libraries/messages.inc.php:900 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: libraries/messages.inc.php:905 +#: libraries/messages.inc.php:901 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/messages.inc.php:906 +#: libraries/messages.inc.php:902 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: libraries/messages.inc.php:907 +#: libraries/messages.inc.php:903 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -5298,7 +5298,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/messages.inc.php:908 +#: libraries/messages.inc.php:904 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -5306,42 +5306,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/messages.inc.php:909 +#: libraries/messages.inc.php:905 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/messages.inc.php:910 +#: libraries/messages.inc.php:906 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/messages.inc.php:911 +#: libraries/messages.inc.php:907 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/messages.inc.php:912 +#: libraries/messages.inc.php:908 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/messages.inc.php:913 +#: libraries/messages.inc.php:909 msgid "The number of pages currently dirty." msgstr "" -#: libraries/messages.inc.php:914 +#: libraries/messages.inc.php:910 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/messages.inc.php:915 +#: libraries/messages.inc.php:911 msgid "The number of free pages." msgstr "" -#: libraries/messages.inc.php:916 +#: libraries/messages.inc.php:912 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/messages.inc.php:917 +#: libraries/messages.inc.php:913 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -5349,33 +5349,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/messages.inc.php:918 +#: libraries/messages.inc.php:914 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/messages.inc.php:919 +#: libraries/messages.inc.php:915 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/messages.inc.php:920 +#: libraries/messages.inc.php:916 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/messages.inc.php:921 +#: libraries/messages.inc.php:917 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/messages.inc.php:922 +#: libraries/messages.inc.php:918 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/messages.inc.php:923 +#: libraries/messages.inc.php:919 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -5384,218 +5384,218 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/messages.inc.php:924 +#: libraries/messages.inc.php:920 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/messages.inc.php:925 +#: libraries/messages.inc.php:921 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/messages.inc.php:926 +#: libraries/messages.inc.php:922 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/messages.inc.php:927 +#: libraries/messages.inc.php:923 msgid "The current number of pending reads." msgstr "" -#: libraries/messages.inc.php:928 +#: libraries/messages.inc.php:924 msgid "The current number of pending writes." msgstr "" -#: libraries/messages.inc.php:929 +#: libraries/messages.inc.php:925 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/messages.inc.php:930 +#: libraries/messages.inc.php:926 msgid "The total number of data reads." msgstr "" -#: libraries/messages.inc.php:931 +#: libraries/messages.inc.php:927 msgid "The total number of data writes." msgstr "" -#: libraries/messages.inc.php:932 +#: libraries/messages.inc.php:928 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/messages.inc.php:933 +#: libraries/messages.inc.php:929 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/messages.inc.php:934 +#: libraries/messages.inc.php:930 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/messages.inc.php:935 +#: libraries/messages.inc.php:931 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/messages.inc.php:936 +#: libraries/messages.inc.php:932 msgid "The number of log write requests." msgstr "" -#: libraries/messages.inc.php:937 +#: libraries/messages.inc.php:933 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/messages.inc.php:938 +#: libraries/messages.inc.php:934 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/messages.inc.php:939 +#: libraries/messages.inc.php:935 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/messages.inc.php:940 +#: libraries/messages.inc.php:936 msgid "Pending log file writes." msgstr "" -#: libraries/messages.inc.php:941 +#: libraries/messages.inc.php:937 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/messages.inc.php:942 +#: libraries/messages.inc.php:938 msgid "The number of pages created." msgstr "" -#: libraries/messages.inc.php:943 +#: libraries/messages.inc.php:939 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: libraries/messages.inc.php:944 +#: libraries/messages.inc.php:940 msgid "The number of pages read." msgstr "" -#: libraries/messages.inc.php:945 +#: libraries/messages.inc.php:941 msgid "The number of pages written." msgstr "" -#: libraries/messages.inc.php:946 +#: libraries/messages.inc.php:942 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/messages.inc.php:947 +#: libraries/messages.inc.php:943 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/messages.inc.php:948 +#: libraries/messages.inc.php:944 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/messages.inc.php:949 +#: libraries/messages.inc.php:945 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/messages.inc.php:950 +#: libraries/messages.inc.php:946 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/messages.inc.php:951 +#: libraries/messages.inc.php:947 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/messages.inc.php:952 +#: libraries/messages.inc.php:948 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/messages.inc.php:953 +#: libraries/messages.inc.php:949 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/messages.inc.php:954 +#: libraries/messages.inc.php:950 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/messages.inc.php:955 +#: libraries/messages.inc.php:951 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/messages.inc.php:956 +#: libraries/messages.inc.php:952 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: libraries/messages.inc.php:957 +#: libraries/messages.inc.php:953 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/messages.inc.php:958 +#: libraries/messages.inc.php:954 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/messages.inc.php:959 +#: libraries/messages.inc.php:955 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/messages.inc.php:960 +#: libraries/messages.inc.php:956 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/messages.inc.php:961 +#: libraries/messages.inc.php:957 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/messages.inc.php:962 +#: libraries/messages.inc.php:958 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/messages.inc.php:963 +#: libraries/messages.inc.php:959 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/messages.inc.php:964 +#: libraries/messages.inc.php:960 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/messages.inc.php:965 +#: libraries/messages.inc.php:961 msgid "The number of files that are open." msgstr "" -#: libraries/messages.inc.php:966 +#: libraries/messages.inc.php:962 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/messages.inc.php:967 +#: libraries/messages.inc.php:963 msgid "The number of tables that are open." msgstr "" -#: libraries/messages.inc.php:968 +#: libraries/messages.inc.php:964 msgid "The number of free memory blocks in query cache." msgstr "" -#: libraries/messages.inc.php:969 +#: libraries/messages.inc.php:965 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/messages.inc.php:970 +#: libraries/messages.inc.php:966 msgid "The number of cache hits." msgstr "" -#: libraries/messages.inc.php:971 +#: libraries/messages.inc.php:967 msgid "The number of queries added to the cache." msgstr "" -#: libraries/messages.inc.php:972 +#: libraries/messages.inc.php:968 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -5603,105 +5603,105 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/messages.inc.php:973 +#: libraries/messages.inc.php:969 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/messages.inc.php:974 +#: libraries/messages.inc.php:970 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/messages.inc.php:975 +#: libraries/messages.inc.php:971 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/messages.inc.php:976 +#: libraries/messages.inc.php:972 #, fuzzy msgctxt "$strShowStatusReset" msgid "Reset" msgstr "리세트" -#: libraries/messages.inc.php:977 +#: libraries/messages.inc.php:973 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/messages.inc.php:978 +#: libraries/messages.inc.php:974 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: libraries/messages.inc.php:979 +#: libraries/messages.inc.php:975 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/messages.inc.php:980 +#: libraries/messages.inc.php:976 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: libraries/messages.inc.php:981 +#: libraries/messages.inc.php:977 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/messages.inc.php:982 +#: libraries/messages.inc.php:978 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/messages.inc.php:983 +#: libraries/messages.inc.php:979 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/messages.inc.php:984 +#: libraries/messages.inc.php:980 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/messages.inc.php:985 +#: libraries/messages.inc.php:981 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/messages.inc.php:986 +#: libraries/messages.inc.php:982 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/messages.inc.php:987 +#: libraries/messages.inc.php:983 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/messages.inc.php:988 +#: libraries/messages.inc.php:984 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/messages.inc.php:989 +#: libraries/messages.inc.php:985 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/messages.inc.php:990 +#: libraries/messages.inc.php:986 msgid "The number of sorted rows." msgstr "" -#: libraries/messages.inc.php:991 +#: libraries/messages.inc.php:987 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/messages.inc.php:992 +#: libraries/messages.inc.php:988 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/messages.inc.php:993 +#: libraries/messages.inc.php:989 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -5709,18 +5709,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/messages.inc.php:994 +#: libraries/messages.inc.php:990 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/messages.inc.php:995 +#: libraries/messages.inc.php:991 msgid "The number of currently open connections." msgstr "" -#: libraries/messages.inc.php:996 +#: libraries/messages.inc.php:992 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -5728,74 +5728,74 @@ msgid "" "implementation.)" msgstr "" -#: libraries/messages.inc.php:997 +#: libraries/messages.inc.php:993 msgid "The number of threads that are not sleeping." msgstr "" -#: libraries/messages.inc.php:999 tbl_printview.php:75 +#: libraries/messages.inc.php:995 tbl_printview.php:75 msgid "Show tables" msgstr "테이블 보기" -#: libraries/messages.inc.php:1000 libraries/sql_query_form.lib.php:396 +#: libraries/messages.inc.php:996 libraries/sql_query_form.lib.php:396 msgid " Show this query here again " msgstr " 이 질의를 다시 보여줌 " -#: libraries/messages.inc.php:1001 libraries/mysql_charsets.lib.php:217 +#: libraries/messages.inc.php:997 libraries/mysql_charsets.lib.php:217 #: libraries/mysql_charsets.lib.php:342 msgid "Simplified Chinese" msgstr "" -#: libraries/messages.inc.php:1002 tbl_operations.php:258 +#: libraries/messages.inc.php:998 tbl_operations.php:258 msgid "(singly)" msgstr "(단독으로)" -#: libraries/messages.inc.php:1005 libraries/replication_gui.lib.php:52 +#: libraries/messages.inc.php:1001 libraries/replication_gui.lib.php:52 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" msgstr "" -#: libraries/messages.inc.php:1006 libraries/mysql_charsets.lib.php:283 +#: libraries/messages.inc.php:1002 libraries/mysql_charsets.lib.php:283 msgid "Slovak" msgstr "" -#: libraries/messages.inc.php:1007 libraries/mysql_charsets.lib.php:286 +#: libraries/messages.inc.php:1003 libraries/mysql_charsets.lib.php:286 msgid "Slovenian" msgstr "" -#: libraries/messages.inc.php:1008 pmd_general.php:95 +#: libraries/messages.inc.php:1004 pmd_general.php:95 msgid "Small/Big All" msgstr "" -#: libraries/messages.inc.php:1009 pmd_general.php:91 +#: libraries/messages.inc.php:1005 pmd_general.php:91 msgid "Snap to grid" msgstr "" -#: libraries/messages.inc.php:1011 server_synchronize.php:1167 +#: libraries/messages.inc.php:1007 server_synchronize.php:1167 msgid "Socket" msgstr "" -#: libraries/messages.inc.php:1013 server_status.php:259 +#: libraries/messages.inc.php:1009 server_status.php:259 msgid "Sorting" msgstr "" -#: libraries/messages.inc.php:1015 tbl_printview.php:310 tbl_structure.php:657 +#: libraries/messages.inc.php:1011 tbl_printview.php:310 tbl_structure.php:657 msgid "Space usage" msgstr "공간 사용량" -#: libraries/messages.inc.php:1016 libraries/mysql_charsets.lib.php:289 +#: libraries/messages.inc.php:1012 libraries/mysql_charsets.lib.php:289 msgid "Spanish" msgstr "" -#: libraries/messages.inc.php:1019 +#: libraries/messages.inc.php:1015 msgid "Export type" msgstr "" -#: libraries/messages.inc.php:1020 +#: libraries/messages.inc.php:1016 msgid "Export time in UTC" msgstr "" -#: libraries/messages.inc.php:1021 libraries/sqlparser.lib.php:173 +#: libraries/messages.inc.php:1017 libraries/sqlparser.lib.php:173 msgid "" "There is a chance that you may have found a bug in the SQL parser. Please " "examine your query closely, and check that the quotes are correct and not " @@ -5808,7 +5808,7 @@ msgid "" "and submit a bug report with the data chunk in the CUT section below:" msgstr "" -#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:137 +#: libraries/messages.inc.php:1018 libraries/sqlparser.lib.php:137 msgid "" "There seems to be an error in your SQL query. The MySQL server error output " "below, if there is any, may also help you in diagnosing the problem" @@ -5816,419 +5816,419 @@ msgstr "" "SQL 질의문에 에러가 있습니다. MySQL 서버가 다음과 같은 에러를 출력했습니다. " "이것이 문제를 진단하는데 도움이 될 것입니다." -#: libraries/messages.inc.php:1026 libraries/sqlparser.lib.php:495 +#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:495 msgid "Invalid Identifer" msgstr "잘못된 식별자(Identifer)" -#: libraries/messages.inc.php:1027 libraries/sqlparser.lib.php:344 +#: libraries/messages.inc.php:1023 libraries/sqlparser.lib.php:344 msgid "Unclosed quote" msgstr "따옴표(quote)가 닫히지 않았음" -#: libraries/messages.inc.php:1028 libraries/sqlparser.lib.php:612 +#: libraries/messages.inc.php:1024 libraries/sqlparser.lib.php:612 msgid "Unknown Punctuation String" msgstr "" -#: libraries/messages.inc.php:1030 server_replication.php:327 +#: libraries/messages.inc.php:1026 server_replication.php:327 #: server_replication.php:328 #, fuzzy msgid "Start" msgstr "토" -#: libraries/messages.inc.php:1033 tbl_printview.php:369 tbl_structure.php:729 +#: libraries/messages.inc.php:1029 tbl_printview.php:369 tbl_structure.php:729 msgid "Statements" msgstr "명세" -#: libraries/messages.inc.php:1034 tbl_printview.php:380 tbl_structure.php:741 +#: libraries/messages.inc.php:1030 tbl_printview.php:380 tbl_structure.php:741 msgid "static" msgstr "" -#: libraries/messages.inc.php:1035 server_status.php:388 +#: libraries/messages.inc.php:1031 server_status.php:388 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: libraries/messages.inc.php:1038 server_replication.php:327 +#: libraries/messages.inc.php:1034 server_replication.php:327 #: server_replication.php:328 msgid "Stop" msgstr "" -#: libraries/messages.inc.php:1039 server_engines.php:49 +#: libraries/messages.inc.php:1035 server_engines.php:49 msgid "Storage Engines" msgstr "" -#: libraries/messages.inc.php:1040 libraries/tbl_properties.inc.php:726 +#: libraries/messages.inc.php:1036 libraries/tbl_properties.inc.php:726 #: server_engines.php:58 tbl_operations.php:353 msgid "Storage Engine" msgstr "" -#: libraries/messages.inc.php:1042 +#: libraries/messages.inc.php:1038 msgid "CSV for MS Excel" msgstr "MS엑셀 CSV 데이터" -#: libraries/messages.inc.php:1044 tbl_structure.php:516 tbl_structure.php:518 +#: libraries/messages.inc.php:1040 tbl_structure.php:516 tbl_structure.php:518 msgid "Propose table structure" msgstr "제안하는 테이블 구조" -#: libraries/messages.inc.php:1045 server_synchronize.php:424 +#: libraries/messages.inc.php:1041 server_synchronize.php:424 #: server_synchronize.php:867 msgid "Structure Difference" msgstr "" -#: libraries/messages.inc.php:1049 server_synchronize.php:265 +#: libraries/messages.inc.php:1045 server_synchronize.php:265 msgid "Structure Synchronization" msgstr "" -#: libraries/messages.inc.php:1050 libraries/sql_query_form.lib.php:462 +#: libraries/messages.inc.php:1046 libraries/sql_query_form.lib.php:462 msgid "Submit" msgstr "확인" -#: libraries/messages.inc.php:1052 main.php:358 +#: libraries/messages.inc.php:1048 main.php:358 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " "issues." msgstr "" -#: libraries/messages.inc.php:1054 libraries/mysql_charsets.lib.php:295 +#: libraries/messages.inc.php:1050 libraries/mysql_charsets.lib.php:295 #: libraries/mysql_charsets.lib.php:392 msgid "Swedish" msgstr "" -#: libraries/messages.inc.php:1060 tbl_operations.php:556 +#: libraries/messages.inc.php:1056 tbl_operations.php:556 msgid "Switch to copied table" msgstr "복사한 테이블로 옮겨감" -#: libraries/messages.inc.php:1061 server_synchronize.php:1213 +#: libraries/messages.inc.php:1057 server_synchronize.php:1213 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." msgstr "" -#: libraries/messages.inc.php:1062 server_synchronize.php:451 +#: libraries/messages.inc.php:1058 server_synchronize.php:451 #: server_synchronize.php:896 msgid "Synchronize Databases" msgstr "" -#: libraries/messages.inc.php:1063 libraries/server_links.inc.php:92 +#: libraries/messages.inc.php:1059 libraries/server_links.inc.php:92 #: server_synchronize.php:1092 server_synchronize.php:1100 msgid "Synchronize" msgstr "" -#: libraries/messages.inc.php:1065 server_synchronize.php:430 +#: libraries/messages.inc.php:1061 server_synchronize.php:430 #: server_synchronize.php:873 msgid "Add column(s)" msgstr "" -#: libraries/messages.inc.php:1066 tbl_create.php:62 +#: libraries/messages.inc.php:1062 tbl_create.php:62 #, fuzzy, php-format msgid "Table %s already exists!" msgstr "사용자 %s 가 이미 존재합니다!" -#: libraries/messages.inc.php:1067 server_synchronize.php:432 +#: libraries/messages.inc.php:1063 server_synchronize.php:432 #: server_synchronize.php:875 msgid "Alter column(s)" msgstr "" -#: libraries/messages.inc.php:1068 tbl_addfield.php:189 tbl_alter.php:103 +#: libraries/messages.inc.php:1064 tbl_addfield.php:189 tbl_alter.php:103 #: tbl_indexes.php:98 #, fuzzy, php-format msgid "Table %1$s has been altered successfully" msgstr "선택한 사용자들을 삭제했습니다." -#: libraries/messages.inc.php:1069 server_synchronize.php:434 +#: libraries/messages.inc.php:1065 server_synchronize.php:434 #: server_synchronize.php:877 msgid "Apply index(s)" msgstr "" -#: libraries/messages.inc.php:1071 server_synchronize.php:446 +#: libraries/messages.inc.php:1067 server_synchronize.php:446 #: server_synchronize.php:890 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: libraries/messages.inc.php:1072 tbl_move_copy.php:82 +#: libraries/messages.inc.php:1068 tbl_move_copy.php:82 msgid "The table name is empty!" msgstr "테이블명이 없습니다!" -#: libraries/messages.inc.php:1073 tbl_create.php:249 +#: libraries/messages.inc.php:1069 tbl_create.php:249 #, fuzzy, php-format msgid "Table %1$s has been created." msgstr "테이블 %s 을 제거했습니다." -#: libraries/messages.inc.php:1076 tbl_operations.php:628 +#: libraries/messages.inc.php:1072 tbl_operations.php:628 #, php-format msgid "Table %s has been flushed" msgstr "테이블 %s 을 닫았습니다(캐시 삭제)" -#: libraries/messages.inc.php:1077 server_synchronize.php:436 +#: libraries/messages.inc.php:1073 server_synchronize.php:436 #: server_synchronize.php:879 msgid "Insert row(s)" msgstr "" -#: libraries/messages.inc.php:1078 libraries/tbl_links.inc.php:107 +#: libraries/messages.inc.php:1074 libraries/tbl_links.inc.php:107 #: libraries/tbl_links.inc.php:140 libraries/tbl_links.inc.php:141 msgid "Table seems to be empty!" msgstr "" -#: libraries/messages.inc.php:1079 tbl_operations.php:568 +#: libraries/messages.inc.php:1075 tbl_operations.php:568 msgid "Table maintenance" msgstr "테이블 유지보수" -#: libraries/messages.inc.php:1080 libraries/tbl_properties.inc.php:618 +#: libraries/messages.inc.php:1076 libraries/tbl_properties.inc.php:618 #: server_synchronize.php:428 server_synchronize.php:871 msgid "Table name" msgstr "" -#: libraries/messages.inc.php:1081 pdf_schema.php:1116 +#: libraries/messages.inc.php:1077 pdf_schema.php:1116 #, fuzzy msgid "Table of contents" msgstr "테이블 설명" -#: libraries/messages.inc.php:1082 tbl_operations.php:334 +#: libraries/messages.inc.php:1078 tbl_operations.php:334 msgid "Table options" msgstr "" -#: libraries/messages.inc.php:1083 server_synchronize.php:431 +#: libraries/messages.inc.php:1079 server_synchronize.php:431 #: server_synchronize.php:874 msgid "Remove column(s)" msgstr "" -#: libraries/messages.inc.php:1084 server_synchronize.php:433 +#: libraries/messages.inc.php:1080 server_synchronize.php:433 #: server_synchronize.php:876 msgid "Remove index(s)" msgstr "" -#: libraries/messages.inc.php:1088 server_synchronize.php:435 +#: libraries/messages.inc.php:1084 server_synchronize.php:435 #: server_synchronize.php:878 msgid "Update row(s)" msgstr "" -#: libraries/messages.inc.php:1090 server_synchronize.php:942 +#: libraries/messages.inc.php:1086 server_synchronize.php:942 msgid "Target database has been synchronized with source database" msgstr "" -#: libraries/messages.inc.php:1091 server_privileges.php:392 +#: libraries/messages.inc.php:1087 server_privileges.php:392 #: server_privileges.php:527 server_privileges.php:1679 #: server_privileges.php:1685 msgid "Table-specific privileges" msgstr "테이블에 관한 권한" -#: libraries/messages.inc.php:1092 server_status.php:254 +#: libraries/messages.inc.php:1088 server_status.php:254 msgid "Temporary data" msgstr "" -#: libraries/messages.inc.php:1093 tbl_change.php:728 +#: libraries/messages.inc.php:1089 tbl_change.php:728 msgid " Because of its length,
this field might not be editable " msgstr " 필드의 길이 때문에,
이 필드를 편집할 수 없습니다 " -#: libraries/messages.inc.php:1094 +#: libraries/messages.inc.php:1090 msgid "Texy! text" msgstr "" -#: libraries/messages.inc.php:1095 libraries/mysql_charsets.lib.php:298 +#: libraries/messages.inc.php:1091 libraries/mysql_charsets.lib.php:298 #: libraries/mysql_charsets.lib.php:395 msgid "Thai" msgstr "" -#: libraries/messages.inc.php:1102 libraries/replication_gui.lib.php:308 +#: libraries/messages.inc.php:1098 libraries/replication_gui.lib.php:308 #: server_privileges.php:734 msgid "This Host" msgstr "" -#: libraries/messages.inc.php:1103 server_status.php:252 +#: libraries/messages.inc.php:1099 server_status.php:252 msgid "Threads" msgstr "" -#: libraries/messages.inc.php:1104 server_processlist.php:22 +#: libraries/messages.inc.php:1100 server_processlist.php:22 #, php-format msgid "Thread %s was successfully killed." msgstr "쓰레드 %s 를 죽였습니다." -#: libraries/messages.inc.php:1106 +#: libraries/messages.inc.php:1102 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." msgstr "" -#: libraries/messages.inc.php:1109 pmd_pdf.php:94 +#: libraries/messages.inc.php:1105 pmd_pdf.php:94 msgid "to/from page" msgstr "" -#: libraries/messages.inc.php:1110 pdf_pages.php:343 +#: libraries/messages.inc.php:1106 pdf_pages.php:343 msgid "Toggle scratchboard" msgstr "" -#: libraries/messages.inc.php:1111 pmd_general.php:99 +#: libraries/messages.inc.php:1107 pmd_general.php:99 msgid "Toggle small/big" msgstr "" -#: libraries/messages.inc.php:1112 pmd_help.php:27 +#: libraries/messages.inc.php:1108 pmd_help.php:27 msgid "To select relation, click :" msgstr "" -#: libraries/messages.inc.php:1115 libraries/tbl_links.inc.php:149 +#: libraries/messages.inc.php:1111 libraries/tbl_links.inc.php:149 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" -#: libraries/messages.inc.php:1116 tbl_tracking.php:655 +#: libraries/messages.inc.php:1112 tbl_tracking.php:655 msgid "Activate now" msgstr "" -#: libraries/messages.inc.php:1117 tbl_tracking.php:653 +#: libraries/messages.inc.php:1113 tbl_tracking.php:653 #, php-format msgid "Activate tracking for %s.%s" msgstr "" -#: libraries/messages.inc.php:1118 tbl_tracking.php:221 +#: libraries/messages.inc.php:1114 tbl_tracking.php:221 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/messages.inc.php:1119 tbl_tracking.php:688 +#: libraries/messages.inc.php:1115 tbl_tracking.php:688 #, fuzzy msgid "Create version" msgstr "서버 버전" -#: libraries/messages.inc.php:1120 tbl_tracking.php:668 +#: libraries/messages.inc.php:1116 tbl_tracking.php:668 #, php-format msgid "Create version %s of %s.%s" msgstr "" -#: libraries/messages.inc.php:1122 tbl_tracking.php:412 +#: libraries/messages.inc.php:1118 tbl_tracking.php:412 msgid "Data definition statement" msgstr "" -#: libraries/messages.inc.php:1123 tbl_tracking.php:463 +#: libraries/messages.inc.php:1119 tbl_tracking.php:463 msgid "Data manipulation statement" msgstr "" -#: libraries/messages.inc.php:1124 tbl_tracking.php:410 tbl_tracking.php:461 +#: libraries/messages.inc.php:1120 tbl_tracking.php:410 tbl_tracking.php:461 #, fuzzy msgid "Date" msgstr "데이터" -#: libraries/messages.inc.php:1125 tbl_tracking.php:642 +#: libraries/messages.inc.php:1121 tbl_tracking.php:642 msgid "Deactivate now" msgstr "" -#: libraries/messages.inc.php:1126 tbl_tracking.php:640 +#: libraries/messages.inc.php:1122 tbl_tracking.php:640 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "" -#: libraries/messages.inc.php:1127 tbl_tracking.php:521 +#: libraries/messages.inc.php:1123 tbl_tracking.php:521 #, php-format msgid "Export as %s" msgstr "" -#: libraries/messages.inc.php:1130 tbl_tracking.php:251 tbl_tracking.php:379 +#: libraries/messages.inc.php:1126 tbl_tracking.php:251 tbl_tracking.php:379 msgid "Close" msgstr "" -#: libraries/messages.inc.php:1131 tbl_tracking.php:114 +#: libraries/messages.inc.php:1127 tbl_tracking.php:114 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/messages.inc.php:1133 tbl_tracking.php:397 tbl_tracking.php:504 +#: libraries/messages.inc.php:1129 tbl_tracking.php:397 tbl_tracking.php:504 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "" -#: libraries/messages.inc.php:1134 tbl_tracking.php:561 +#: libraries/messages.inc.php:1130 tbl_tracking.php:561 msgid "Show versions" msgstr "" -#: libraries/messages.inc.php:1135 tbl_tracking.php:507 +#: libraries/messages.inc.php:1131 tbl_tracking.php:507 msgid "SQL dump (file download)" msgstr "" -#: libraries/messages.inc.php:1136 tbl_tracking.php:508 +#: libraries/messages.inc.php:1132 tbl_tracking.php:508 msgid "SQL dump" msgstr "" -#: libraries/messages.inc.php:1137 tbl_tracking.php:213 +#: libraries/messages.inc.php:1133 tbl_tracking.php:213 msgid "SQL statements executed." msgstr "" -#: libraries/messages.inc.php:1138 +#: libraries/messages.inc.php:1134 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/messages.inc.php:1139 tbl_tracking.php:509 +#: libraries/messages.inc.php:1135 tbl_tracking.php:509 msgid "SQL execution" msgstr "" -#: libraries/messages.inc.php:1140 tbl_tracking.php:230 +#: libraries/messages.inc.php:1136 tbl_tracking.php:230 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/messages.inc.php:1141 tbl_tracking.php:381 +#: libraries/messages.inc.php:1137 tbl_tracking.php:381 msgid "Tracking statements" msgstr "" -#: libraries/messages.inc.php:1148 tbl_tracking.php:593 +#: libraries/messages.inc.php:1144 tbl_tracking.php:593 #, fuzzy msgid "Version" msgstr "PHP 버전" -#: libraries/messages.inc.php:1149 tbl_tracking.php:672 +#: libraries/messages.inc.php:1145 tbl_tracking.php:672 msgid "Track these data definition statements:" msgstr "" -#: libraries/messages.inc.php:1150 tbl_tracking.php:680 +#: libraries/messages.inc.php:1146 tbl_tracking.php:680 msgid "Track these data manipulation statements:" msgstr "" -#: libraries/messages.inc.php:1155 tbl_tracking.php:411 tbl_tracking.php:462 +#: libraries/messages.inc.php:1151 tbl_tracking.php:411 tbl_tracking.php:462 #, fuzzy msgid "Username" msgstr "사용자명:" -#: libraries/messages.inc.php:1156 tbl_tracking.php:203 +#: libraries/messages.inc.php:1152 tbl_tracking.php:203 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "" -#: libraries/messages.inc.php:1157 tbl_tracking.php:187 +#: libraries/messages.inc.php:1153 tbl_tracking.php:187 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "" -#: libraries/messages.inc.php:1158 tbl_tracking.php:195 +#: libraries/messages.inc.php:1154 tbl_tracking.php:195 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "" -#: libraries/messages.inc.php:1159 tbl_tracking.php:262 +#: libraries/messages.inc.php:1155 tbl_tracking.php:262 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/messages.inc.php:1161 tbl_tracking.php:220 +#: libraries/messages.inc.php:1157 tbl_tracking.php:220 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/messages.inc.php:1162 libraries/mysql_charsets.lib.php:219 +#: libraries/messages.inc.php:1158 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:362 msgid "Traditional Chinese" msgstr "" -#: libraries/messages.inc.php:1163 libraries/mysql_charsets.lib.php:292 +#: libraries/messages.inc.php:1159 libraries/mysql_charsets.lib.php:292 msgid "Traditional Spanish" msgstr "" -#: libraries/messages.inc.php:1164 server_status.php:388 +#: libraries/messages.inc.php:1160 server_status.php:388 msgid "Traffic" msgstr "소통량" -#: libraries/messages.inc.php:1165 server_status.php:261 +#: libraries/messages.inc.php:1161 server_status.php:261 msgid "Transaction coordinator" msgstr "" -#: libraries/messages.inc.php:1166 +#: libraries/messages.inc.php:1162 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 " @@ -6236,27 +6236,27 @@ msgid "" "need to set the first option to the empty string." msgstr "" -#: libraries/messages.inc.php:1167 +#: libraries/messages.inc.php:1163 msgid "" "Displays hexadecimal representation of data. Optional first parameter " "specifies how often space will be added (defaults to 2 nibbles)." msgstr "" -#: libraries/messages.inc.php:1168 +#: libraries/messages.inc.php:1164 msgid "" "Displays a clickable thumbnail. The options are the maximum width and height " "in pixels. The original aspect ratio is preserved." msgstr "" -#: libraries/messages.inc.php:1169 +#: libraries/messages.inc.php:1165 msgid "Displays a link to download this image." msgstr "" -#: libraries/messages.inc.php:1170 +#: libraries/messages.inc.php:1166 msgid "See image/jpeg: inline" msgstr "" -#: libraries/messages.inc.php:1171 +#: libraries/messages.inc.php:1167 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 " @@ -6268,7 +6268,7 @@ msgid "" "gmdate() function." msgstr "" -#: libraries/messages.inc.php:1172 +#: libraries/messages.inc.php:1168 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 " @@ -6282,31 +6282,31 @@ msgid "" "(Default 1)." msgstr "" -#: libraries/messages.inc.php:1173 +#: libraries/messages.inc.php:1169 msgid "" "Displays the contents of the field as-is, without running it through " "htmlspecialchars(). That is, the field is assumed to contain valid HTML." msgstr "" -#: libraries/messages.inc.php:1174 +#: libraries/messages.inc.php:1170 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." msgstr "" -#: libraries/messages.inc.php:1175 +#: libraries/messages.inc.php:1171 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." msgstr "" -#: libraries/messages.inc.php:1176 +#: libraries/messages.inc.php:1172 msgid "Formats text as SQL query with syntax highlighting." msgstr "" -#: libraries/messages.inc.php:1177 +#: libraries/messages.inc.php:1173 msgid "" "Displays a part of a string. The first option is the number of characters to " "skip from the beginning of the string (Default 0). The second option is the " @@ -6315,69 +6315,69 @@ msgid "" "(Default: \"...\")." msgstr "" -#: libraries/messages.inc.php:1179 server_binlog.php:183 server_binlog.php:186 +#: libraries/messages.inc.php:1175 server_binlog.php:183 server_binlog.php:186 #: server_processlist.php:49 server_processlist.php:51 msgid "Truncate Shown Queries" msgstr "" -#: libraries/messages.inc.php:1180 libraries/mysql_charsets.lib.php:301 +#: libraries/messages.inc.php:1176 libraries/mysql_charsets.lib.php:301 #: libraries/mysql_charsets.lib.php:389 msgid "Turkish" msgstr "" -#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:304 +#: libraries/messages.inc.php:1179 libraries/mysql_charsets.lib.php:304 #: libraries/mysql_charsets.lib.php:386 msgid "Ukrainian" msgstr "" -#: libraries/messages.inc.php:1185 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:1181 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 msgid "Unicode" msgstr "" -#: libraries/messages.inc.php:1187 libraries/mysql_charsets.lib.php:398 +#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:398 #: libraries/mysql_charsets.lib.php:405 msgid "unknown" msgstr "" -#: libraries/messages.inc.php:1190 server_privileges.php:1152 +#: libraries/messages.inc.php:1186 server_privileges.php:1152 #, php-format msgid "You have updated the privileges for %s." msgstr "%s 의 권한을 업데이트했습니다." -#: libraries/messages.inc.php:1191 user_password.php:112 +#: libraries/messages.inc.php:1187 user_password.php:112 msgid "The profile has been updated." msgstr "프로파일을 업데이트했습니다." -#: libraries/messages.inc.php:1193 libraries/relation.lib.php:138 +#: libraries/messages.inc.php:1189 libraries/relation.lib.php:138 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" -#: libraries/messages.inc.php:1194 +#: libraries/messages.inc.php:1190 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/messages.inc.php:1204 tbl_printview.php:314 tbl_structure.php:661 +#: libraries/messages.inc.php:1200 tbl_printview.php:314 tbl_structure.php:661 msgid "Usage" msgstr "사용법(량)" -#: libraries/messages.inc.php:1205 +#: libraries/messages.inc.php:1201 msgid "Enclose table and field names with backquotes" msgstr "테이블, 필드명에 백쿼터(`) 사용" -#: libraries/messages.inc.php:1206 libraries/replication_gui.lib.php:314 +#: libraries/messages.inc.php:1202 libraries/replication_gui.lib.php:314 #: server_privileges.php:740 msgid "Use Host Table" msgstr "" -#: libraries/messages.inc.php:1207 server_privileges.php:848 +#: libraries/messages.inc.php:1203 server_privileges.php:848 #, php-format msgid "The user %s already exists!" msgstr "사용자 %s 가 이미 존재합니다!" -#: libraries/messages.inc.php:1209 libraries/replication_gui.lib.php:55 +#: libraries/messages.inc.php:1205 libraries/replication_gui.lib.php:55 #: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245 #: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255 #: server_privileges.php:672 server_privileges.php:675 @@ -6385,35 +6385,35 @@ msgstr "사용자 %s 가 이미 존재합니다!" msgid "User name" msgstr "사용자명" -#: libraries/messages.inc.php:1210 server_privileges.php:1645 +#: libraries/messages.inc.php:1206 server_privileges.php:1645 msgid "The selected user was not found in the privilege table." msgstr "선택한 사용자는 사용권한 테이블에 존재하지 않습니다." -#: libraries/messages.inc.php:1211 server_privileges.php:1365 +#: libraries/messages.inc.php:1207 server_privileges.php:1365 msgid "User overview" msgstr "사용자 개요" -#: libraries/messages.inc.php:1212 server_privileges.php:1261 +#: libraries/messages.inc.php:1208 server_privileges.php:1261 msgid "The selected users have been deleted successfully." msgstr "선택한 사용자들을 삭제했습니다." -#: libraries/messages.inc.php:1213 server_privileges.php:2026 +#: libraries/messages.inc.php:1209 server_privileges.php:2026 #, php-format msgid "Users having access to "%s"" msgstr ""%s" 에 접근할 수 있는 사용자들" -#: libraries/messages.inc.php:1214 main.php:189 server_privileges.php:1350 +#: libraries/messages.inc.php:1210 main.php:189 server_privileges.php:1350 #: server_privileges.php:1497 server_privileges.php:1611 #: server_privileges.php:2029 server_processlist.php:54 msgid "User" msgstr "사용자" -#: libraries/messages.inc.php:1215 tbl_change.php:1171 +#: libraries/messages.inc.php:1211 tbl_change.php:1171 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/messages.inc.php:1217 libraries/replication_gui.lib.php:251 +#: libraries/messages.inc.php:1213 libraries/replication_gui.lib.php:251 #: libraries/replication_gui.lib.php:319 libraries/replication_gui.lib.php:342 #: server_privileges.php:678 server_privileges.php:745 #: server_privileges.php:769 server_privileges.php:1889 @@ -6421,7 +6421,7 @@ msgstr "" msgid "Use text field" msgstr "" -#: libraries/messages.inc.php:1221 libraries/sqlvalidator.lib.php:68 +#: libraries/messages.inc.php:1217 libraries/sqlvalidator.lib.php:68 #, php-format msgid "" "The SQL validator could not be initialized. Please check if you have " @@ -6430,86 +6430,86 @@ msgstr "" "SQL 검사기가 초기화되지 않았습니다. %s문서%s에서 설명한 php 확장모듈을 설치했" "는지 확인해보십시오." -#: libraries/messages.inc.php:1222 libraries/replication_gui.lib.php:111 +#: libraries/messages.inc.php:1218 libraries/replication_gui.lib.php:111 #: server_status.php:627 tbl_change.php:324 tbl_printview.php:370 #: tbl_select.php:139 tbl_structure.php:730 msgid "Value" msgstr "값" -#: libraries/messages.inc.php:1223 libraries/replication_gui.lib.php:110 +#: libraries/messages.inc.php:1219 libraries/replication_gui.lib.php:110 #: libraries/sql_query_form.lib.php:445 server_status.php:626 #: server_variables.php:52 msgid "Variable" msgstr "변수" -#: libraries/messages.inc.php:1225 server_export.php:21 +#: libraries/messages.inc.php:1221 server_export.php:21 #, fuzzy msgid "View dump (schema) of databases" msgstr "데이터베이스의 덤프(스키마) 데이터 보기" -#: libraries/messages.inc.php:1227 tbl_export.php:23 +#: libraries/messages.inc.php:1223 tbl_export.php:23 msgid "View dump (schema) of table" msgstr "테이블의 덤프(스키마) 데이터 보기" -#: libraries/messages.inc.php:1231 view_create.php:142 +#: libraries/messages.inc.php:1227 view_create.php:142 msgid "VIEW name" msgstr "" -#: libraries/messages.inc.php:1237 main.php:205 +#: libraries/messages.inc.php:1233 main.php:205 msgid "Web server" msgstr "" -#: libraries/messages.inc.php:1239 libraries/mysql_charsets.lib.php:277 +#: libraries/messages.inc.php:1235 libraries/mysql_charsets.lib.php:277 #: libraries/mysql_charsets.lib.php:325 msgid "West European" msgstr "" -#: libraries/messages.inc.php:1240 main.php:230 +#: libraries/messages.inc.php:1236 main.php:230 msgid "Wiki" msgstr "" -#: libraries/messages.inc.php:1241 server_privileges.php:2138 +#: libraries/messages.inc.php:1237 server_privileges.php:2138 msgid "wildcard" msgstr "" -#: libraries/messages.inc.php:1248 +#: libraries/messages.inc.php:1244 msgid "Export contents" msgstr "" -#: libraries/messages.inc.php:1249 +#: libraries/messages.inc.php:1245 msgid "Export functions" msgstr "" -#: libraries/messages.inc.php:1250 +#: libraries/messages.inc.php:1246 msgid "Export procedures" msgstr "" -#: libraries/messages.inc.php:1251 +#: libraries/messages.inc.php:1247 msgid "Export Structure Schemas (recommended)" msgstr "" -#: libraries/messages.inc.php:1252 +#: libraries/messages.inc.php:1248 #, fuzzy msgid "Export tables" msgstr "테이블이 없습니다" -#: libraries/messages.inc.php:1253 +#: libraries/messages.inc.php:1249 msgid "Export triggers" msgstr "" -#: libraries/messages.inc.php:1254 +#: libraries/messages.inc.php:1250 msgid "Export views" msgstr "" -#: libraries/messages.inc.php:1255 +#: libraries/messages.inc.php:1251 msgid "XML" msgstr "" -#: libraries/messages.inc.php:1259 server_privileges.php:592 +#: libraries/messages.inc.php:1255 server_privileges.php:592 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "주의: 이 옵션을 0으로 하면 제한이 없어집니다." -#: libraries/messages.inc.php:1260 +#: libraries/messages.inc.php:1256 msgid "\"zipped\"" msgstr "zip 압축" diff --git a/po/lt.po b/po/lt.po index 7907a8728..90d751c35 100644 --- 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-05-13 11:25+0200\n" +"POT-Creation-Date: 2010-05-13 11:30+0200\n" "PO-Revision-Date: 2010-04-16 19:52+0200\n" "Last-Translator: Rytis \n" "Language-Team: lithuanian \n" @@ -16,19 +16,19 @@ msgstr "" "X-Generator: Pootle 2.0.1\n" #: browse_foreigners.php:38 browse_foreigners.php:59 -#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:870 +#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:866 #: server_privileges.php:1475 msgid "Show all" msgstr "Rodyti viską" #: browse_foreigners.php:82 db_operations.php:648 -#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:394 -#: libraries/export/pdf.php:147 libraries/messages.inc.php:597 +#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394 +#: libraries/export/pdf.php:147 libraries/messages.inc.php:593 #: pdf_schema.php:283 pdf_schema.php:1123 pdf_schema.php:1139 msgid "Page number:" msgstr "Puslapis:" -#: browse_foreigners.php:132 libraries/messages.inc.php:1242 +#: browse_foreigners.php:132 libraries/messages.inc.php:1238 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -40,7 +40,7 @@ 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/db_links.inc.php:75 -#: libraries/messages.inc.php:841 libraries/tbl_links.inc.php:63 +#: libraries/messages.inc.php:837 libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Paieška" @@ -49,12 +49,12 @@ msgstr "Paieška" #: db_search.php:362 db_structure.php:567 js/messages.php:48 #: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2267 +#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 #: 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 #: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614 -#: libraries/messages.inc.php:361 libraries/replication_gui.lib.php:73 +#: libraries/messages.inc.php:357 libraries/replication_gui.lib.php:73 #: libraries/replication_gui.lib.php:365 libraries/select_server.lib.php:104 #: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477 #: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782 @@ -74,33 +74,33 @@ msgid "Go" msgstr "Vykdyti" #: browse_foreigners.php:168 browse_foreigners.php:172 -#: libraries/Index.class.php:442 libraries/messages.inc.php:459 +#: libraries/Index.class.php:442 libraries/messages.inc.php:455 #: tbl_tracking.php:320 msgid "Keyname" msgstr "Raktinis žodis" #: browse_foreigners.php:169 browse_foreigners.php:171 -#: libraries/messages.inc.php:252 server_collations.php:55 +#: libraries/messages.inc.php:248 server_collations.php:55 #: server_collations.php:67 server_engines.php:59 server_status.php:628 msgid "Description" msgstr "Paaiškinimas" #: browse_foreigners.php:247 browse_foreigners.php:256 #: browse_foreigners.php:268 browse_foreigners.php:276 -#: libraries/messages.inc.php:1218 +#: libraries/messages.inc.php:1214 msgid "Use this value" msgstr "Naudokite šią reikšmę" -#: db_create.php:46 libraries/messages.inc.php:215 +#: db_create.php:46 libraries/messages.inc.php:211 #, php-format msgid "Database %1$s has been created." msgstr "Duomenų bazė %1$s sukurta." -#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:232 +#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:228 msgid "Database comment: " msgstr "Duombazės komantaras: " -#: db_datadict.php:165 libraries/messages.inc.php:1070 +#: db_datadict.php:165 libraries/messages.inc.php:1066 #: libraries/tbl_properties.inc.php:724 pdf_schema.php:1236 #: tbl_operations.php:345 tbl_printview.php:130 msgid "Table comments" @@ -109,7 +109,7 @@ msgstr "Lentelės komentarai" #: db_datadict.php:174 db_qbe.php:174 libraries/Index.class.php:446 #: libraries/export/htmlword.php:244 libraries/export/latex.php:360 #: libraries/export/odt.php:294 libraries/export/texytext.php:233 -#: libraries/messages.inc.php:317 libraries/tbl_properties.inc.php:99 +#: libraries/messages.inc.php:313 libraries/tbl_properties.inc.php:99 #: libraries/tbl_properties.inc.php:275 pdf_schema.php:1262 #: pdf_schema.php:1283 tbl_change.php:308 tbl_indexes.php:189 #: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135 @@ -121,7 +121,7 @@ msgstr "Laukas" #: libraries/db_events.inc.php:31 libraries/db_routines.inc.php:42 #: 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/messages.inc.php:1181 +#: libraries/export/texytext.php:234 libraries/messages.inc.php:1177 #: libraries/tbl_properties.inc.php:100 pdf_schema.php:1263 #: pdf_schema.php:1284 server_privileges.php:2031 tbl_change.php:287 #: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313 @@ -133,7 +133,7 @@ msgstr "Tipas" #: db_datadict.php:177 libraries/Index.class.php:449 #: libraries/export/htmlword.php:246 libraries/export/latex.php:360 #: libraries/export/odt.php:300 libraries/export/texytext.php:235 -#: libraries/messages.inc.php:576 libraries/tbl_properties.inc.php:109 +#: libraries/messages.inc.php:572 libraries/tbl_properties.inc.php:109 #: pdf_schema.php:1265 pdf_schema.php:1286 tbl_change.php:323 #: tbl_printview.php:145 tbl_structure.php:181 tbl_tracking.php:276 #: tbl_tracking.php:327 @@ -142,7 +142,7 @@ msgstr "Null" #: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 -#: libraries/export/texytext.php:236 libraries/messages.inc.php:238 +#: libraries/export/texytext.php:236 libraries/messages.inc.php:234 #: libraries/tbl_properties.inc.php:106 pdf_schema.php:1266 #: pdf_schema.php:1287 tbl_printview.php:146 tbl_structure.php:182 #: tbl_tracking.php:277 @@ -151,14 +151,14 @@ msgstr "Nutylint" #: db_datadict.php:182 libraries/export/htmlword.php:249 #: libraries/export/latex.php:362 libraries/export/odt.php:307 -#: libraries/export/texytext.php:238 libraries/messages.inc.php:483 +#: libraries/export/texytext.php:238 libraries/messages.inc.php:479 #: pdf_schema.php:1268 pdf_schema.php:1289 tbl_printview.php:150 msgid "Links to" msgstr "Sąryšis su" #: db_datadict.php:184 db_printview.php:112 libraries/export/htmlword.php:252 #: libraries/export/latex.php:365 libraries/export/odt.php:312 -#: libraries/export/texytext.php:241 libraries/messages.inc.php:163 +#: libraries/export/texytext.php:241 libraries/messages.inc.php:159 #: libraries/tbl_properties.inc.php:130 pdf_schema.php:1279 #: pdf_schema.php:1290 tbl_printview.php:152 msgid "Comments" @@ -167,7 +167,7 @@ msgstr "Komentarai" #: db_datadict.php:267 libraries/Index.class.php:359 #: 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/messages.inc.php:559 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:555 #: libraries/mult_submits.inc.php:263 pdf_schema.php:1344 #: server_privileges.php:1529 server_privileges.php:1540 #: server_privileges.php:1850 server_privileges.php:1855 @@ -179,7 +179,7 @@ msgstr "Ne" #: db_datadict.php:267 libraries/Index.class.php:360 #: libraries/Index.class.php:385 libraries/export/htmlword.php:322 #: libraries/export/latex.php:430 libraries/export/odt.php:368 -#: libraries/export/texytext.php:311 libraries/messages.inc.php:1257 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:1253 #: libraries/mult_submits.inc.php:45 libraries/mult_submits.inc.php:50 #: libraries/mult_submits.inc.php:55 libraries/mult_submits.inc.php:60 #: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:101 @@ -193,108 +193,108 @@ msgstr "Ne" msgid "Yes" msgstr "Taip" -#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:670 +#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:666 #: tbl_printview.php:498 msgid "Print" msgstr "Spausdinti" -#: db_export.php:29 libraries/messages.inc.php:1226 +#: db_export.php:29 libraries/messages.inc.php:1222 msgid "View dump (schema) of database" msgstr "Sukurti, peržiūrėti duombazės atvaizdį" #: db_export.php:33 db_printview.php:96 db_qbe.php:102 db_structure.php:51 -#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:568 +#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:564 #: navigation.php:346 msgid "No tables found in database." msgstr "Duombazėje nerasta lentelių." -#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:845 +#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:841 #: server_export.php:27 msgid "Select All" msgstr "Pažymėti visus" -#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1188 +#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1184 #: server_export.php:29 msgid "Unselect All" msgstr "Atžymėti visus" -#: db_operations.php:38 libraries/messages.inc.php:213 tbl_create.php:54 +#: db_operations.php:38 libraries/messages.inc.php:209 tbl_create.php:54 msgid "The database name is empty!" msgstr "Nenurodytas duombazės vardas!" -#: db_operations.php:236 libraries/messages.inc.php:753 +#: db_operations.php:236 libraries/messages.inc.php:749 #, php-format msgid "Database %s has been renamed to %s" msgstr "Duombazė %s pervadinta į %s" -#: db_operations.php:240 libraries/messages.inc.php:178 +#: db_operations.php:240 libraries/messages.inc.php:174 #, php-format msgid "Database %s has been copied to %s" msgstr "Duombazė %s buvo nukopijuota į %s" -#: db_operations.php:410 libraries/messages.inc.php:236 +#: db_operations.php:410 libraries/messages.inc.php:232 msgid "Rename database to" msgstr "Pervadinti duombazę į" -#: db_operations.php:415 libraries/messages.inc.php:161 +#: db_operations.php:415 libraries/messages.inc.php:157 #: server_processlist.php:57 msgid "Command" msgstr "Komanda" -#: db_operations.php:425 libraries/messages.inc.php:58 tbl_change.php:1143 +#: db_operations.php:425 libraries/messages.inc.php:54 tbl_change.php:1143 msgid "and then" msgstr "ir tada" -#: db_operations.php:451 libraries/messages.inc.php:233 +#: db_operations.php:451 libraries/messages.inc.php:229 msgid "Copy database to" msgstr "Kopijuoti duombazę į" -#: db_operations.php:458 libraries/messages.inc.php:1043 +#: db_operations.php:458 libraries/messages.inc.php:1039 #: tbl_operations.php:526 tbl_tracking.php:388 msgid "Structure only" msgstr "Tik struktūra" -#: db_operations.php:459 libraries/messages.inc.php:1041 +#: db_operations.php:459 libraries/messages.inc.php:1037 #: tbl_operations.php:527 tbl_tracking.php:390 msgid "Structure and data" msgstr "Struktūra ir duomenys" -#: db_operations.php:460 libraries/messages.inc.php:229 tbl_operations.php:528 +#: db_operations.php:460 libraries/messages.inc.php:225 tbl_operations.php:528 #: tbl_tracking.php:389 msgid "Data only" msgstr "Tik duomenys" -#: db_operations.php:468 libraries/messages.inc.php:186 +#: db_operations.php:468 libraries/messages.inc.php:182 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE prieš kopijuojant" #: db_operations.php:471 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 -#: libraries/export/sql.php:82 libraries/messages.inc.php:30 +#: libraries/export/sql.php:82 libraries/messages.inc.php:26 #: tbl_operations.php:534 #, php-format msgid "Add %s" msgstr "Pridėti %s" -#: db_operations.php:475 libraries/messages.inc.php:29 tbl_operations.php:297 +#: db_operations.php:475 libraries/messages.inc.php:25 tbl_operations.php:297 #: tbl_operations.php:536 msgid "Add AUTO_INCREMENT value" msgstr "Pridėti AUTO_INCREMENT reikšmę" -#: db_operations.php:479 libraries/messages.inc.php:31 tbl_operations.php:543 +#: db_operations.php:479 libraries/messages.inc.php:27 tbl_operations.php:543 msgid "Add constraints" msgstr "Pridėti apribojimą" -#: db_operations.php:492 libraries/messages.inc.php:1059 +#: db_operations.php:492 libraries/messages.inc.php:1055 msgid "Switch to copied database" msgstr "Pereiti į nukopijuotą duombazę" -#: db_operations.php:533 libraries/messages.inc.php:89 +#: db_operations.php:533 libraries/messages.inc.php:85 msgid "BLOB Repository" msgstr "BLOB saugykla" #: db_operations.php:536 db_tracking.php:76 libraries/common.lib.php:1350 -#: libraries/messages.inc.php:1037 libraries/server_links.inc.php:49 +#: libraries/messages.inc.php:1033 libraries/server_links.inc.php:49 #: server_processlist.php:59 tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "Statusas" @@ -306,11 +306,11 @@ msgctxt "BLOB repository" msgid "Enabled" msgstr "Įjungta" -#: db_operations.php:548 libraries/messages.inc.php:93 +#: db_operations.php:548 libraries/messages.inc.php:89 msgid "Disable" msgstr "Išjungti" -#: db_operations.php:558 libraries/messages.inc.php:90 +#: db_operations.php:558 libraries/messages.inc.php:86 msgid "Damaged" msgstr "Pažeista" @@ -328,12 +328,12 @@ msgctxt "BLOB repository" msgid "Disabled" msgstr "Išjungta" -#: db_operations.php:574 libraries/messages.inc.php:96 +#: db_operations.php:574 libraries/messages.inc.php:92 msgid "Enable" msgstr "Įjungti" #: db_operations.php:598 libraries/Index.class.php:448 -#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:158 +#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:154 #: 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:361 @@ -342,7 +342,7 @@ msgstr "Įjungti" msgid "Collation" msgstr "Palyginimas" -#: db_operations.php:609 libraries/messages.inc.php:742 main.php:316 +#: db_operations.php:609 libraries/messages.inc.php:738 main.php:316 #: pdf_schema.php:34 #, php-format msgid "" @@ -352,58 +352,58 @@ msgstr "" "Nėra PMA lentelių, kurios leidžia dirbti su jungtinėmis MySQL lentelėmis. %" "sPaaiškinimas%s." -#: db_operations.php:645 libraries/messages.inc.php:264 pdf_pages.php:528 +#: db_operations.php:645 libraries/messages.inc.php:260 pdf_pages.php:528 msgid "Display PDF schema" msgstr "Rodyti PDF vaizdą" -#: db_operations.php:661 libraries/messages.inc.php:877 pdf_pages.php:529 +#: db_operations.php:661 libraries/messages.inc.php:873 pdf_pages.php:529 msgid "Show grid" msgstr "Rodyti tinklelį" -#: db_operations.php:664 libraries/messages.inc.php:874 pdf_pages.php:530 +#: db_operations.php:664 libraries/messages.inc.php:870 pdf_pages.php:530 msgid "Show color" msgstr "Rodyti spalvą" -#: db_operations.php:666 libraries/messages.inc.php:998 pdf_pages.php:531 +#: db_operations.php:666 libraries/messages.inc.php:994 pdf_pages.php:531 msgid "Show dimension of tables" msgstr "Rodyti lentelių dydžius" -#: db_operations.php:669 libraries/messages.inc.php:52 pdf_pages.php:532 +#: db_operations.php:669 libraries/messages.inc.php:48 pdf_pages.php:532 msgid "Display all tables with the same width" msgstr "rodyti visas lenteles vienodo pločio?" -#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:227 +#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:223 #: pdf_pages.php:533 msgid "Data Dictionary" msgstr "Duomenų žodynas" -#: db_operations.php:674 libraries/messages.inc.php:884 pdf_pages.php:534 +#: db_operations.php:674 libraries/messages.inc.php:880 pdf_pages.php:534 msgid "Only show keys" msgstr "" -#: db_operations.php:676 libraries/messages.inc.php:875 pdf_pages.php:535 +#: db_operations.php:676 libraries/messages.inc.php:871 pdf_pages.php:535 msgid "Data Dictionary Format" msgstr "Duomenų žodyno formatas" -#: db_operations.php:678 libraries/messages.inc.php:464 pdf_pages.php:537 +#: db_operations.php:678 libraries/messages.inc.php:460 pdf_pages.php:537 msgid "Landscape" msgstr "Peizažinis" -#: db_operations.php:679 libraries/messages.inc.php:663 pdf_pages.php:538 +#: db_operations.php:679 libraries/messages.inc.php:659 pdf_pages.php:538 msgid "Portrait" msgstr "Portretinis" -#: db_operations.php:682 libraries/messages.inc.php:599 pdf_pages.php:541 +#: db_operations.php:682 libraries/messages.inc.php:595 pdf_pages.php:541 msgid "Paper size" msgstr "Lapo dydis" -#: db_operations.php:706 libraries/messages.inc.php:281 +#: db_operations.php:706 libraries/messages.inc.php:277 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 libraries/messages.inc.php:1087 +#: libraries/header.inc.php:126 libraries/messages.inc.php:1083 #: pdf_pages.php:405 server_privileges.php:1626 server_privileges.php:1682 #: server_privileges.php:1946 server_synchronize.php:423 #: server_synchronize.php:866 tbl_tracking.php:592 test/theme.php:75 @@ -411,176 +411,176 @@ msgid "Table" msgstr "Lentelė" #: db_printview.php:105 libraries/db_structure.lib.php:56 -#: libraries/messages.inc.php:735 +#: libraries/messages.inc.php:731 msgid "Records" msgstr "Viso įrašų:" #: db_printview.php:109 libraries/db_structure.lib.php:67 -#: libraries/messages.inc.php:1003 tbl_indexes.php:190 +#: libraries/messages.inc.php:999 tbl_indexes.php:190 msgid "Size" msgstr "Dydis" #: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 -#: libraries/export/sql.php:899 libraries/messages.inc.php:436 +#: libraries/export/sql.php:899 libraries/messages.inc.php:432 msgid "in use" msgstr "šiuo metu naudojama" #: db_printview.php:187 libraries/db_info.inc.php:88 -#: libraries/export/sql.php:514 libraries/messages.inc.php:1032 +#: libraries/export/sql.php:514 libraries/messages.inc.php:1028 #: pdf_schema.php:1241 tbl_printview.php:434 tbl_structure.php:810 msgid "Creation" msgstr "Sukurta" #: db_printview.php:196 libraries/db_info.inc.php:93 -#: libraries/export/sql.php:519 libraries/messages.inc.php:1036 +#: libraries/export/sql.php:519 libraries/messages.inc.php:1032 #: pdf_schema.php:1246 tbl_printview.php:444 tbl_structure.php:818 msgid "Last update" msgstr "Paskutinis atnaujinimas" #: db_printview.php:205 libraries/db_info.inc.php:98 -#: libraries/export/sql.php:524 libraries/messages.inc.php:1031 +#: libraries/export/sql.php:524 libraries/messages.inc.php:1027 #: pdf_schema.php:1251 tbl_printview.php:454 tbl_structure.php:826 msgid "Last check" msgstr "Paskutinis patikrinimas" -#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1085 +#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1081 #, php-format msgid "%s table(s)" msgstr "%s lentelė(s)" #: db_qbe.php:29 libraries/display_tbl.lib.php:1981 -#: libraries/messages.inc.php:1051 libraries/sql_query_form.lib.php:140 +#: libraries/messages.inc.php:1047 libraries/sql_query_form.lib.php:140 #: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131 #: view_operations.php:62 msgid "Your SQL query has been executed successfully" msgstr "Jūsų SQL užklausa sėkmingai įvykdyta" -#: db_qbe.php:42 libraries/messages.inc.php:371 +#: db_qbe.php:42 libraries/messages.inc.php:367 msgid "You have to choose at least one column to display" msgstr "Pasirinkite bent vieną stulpelį išvedimui" #: db_qbe.php:200 libraries/db_structure.lib.php:104 -#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1014 +#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1010 msgid "Sort" msgstr "Rūšiuoti" #: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111 #: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828 -#: libraries/messages.inc.php:69 server_databases.php:170 +#: libraries/messages.inc.php:65 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314 msgid "Ascending" msgstr "Didėjimo tvarka" #: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119 #: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825 -#: libraries/messages.inc.php:251 server_databases.php:170 +#: libraries/messages.inc.php:247 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315 msgid "Descending" msgstr "Mažėjimo tvarka" #: db_qbe.php:264 db_tracking.php:78 libraries/display_tbl.lib.php:308 -#: libraries/messages.inc.php:888 tbl_change.php:277 tbl_tracking.php:597 +#: libraries/messages.inc.php:884 tbl_change.php:277 tbl_tracking.php:597 msgid "Show" msgstr "Rodyti" -#: db_qbe.php:300 libraries/messages.inc.php:202 +#: db_qbe.php:300 libraries/messages.inc.php:198 msgid "Criteria" msgstr "Kriterijai" #: db_qbe.php:353 db_qbe.php:435 db_qbe.php:527 db_qbe.php:558 -#: libraries/messages.inc.php:718 +#: libraries/messages.inc.php:714 msgid "Ins" msgstr "Įterpiant" #: db_qbe.php:357 db_qbe.php:439 db_qbe.php:524 db_qbe.php:555 -#: libraries/messages.inc.php:56 +#: libraries/messages.inc.php:52 msgid "And" msgstr "IR" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:529 db_qbe.php:560 -#: libraries/messages.inc.php:717 +#: libraries/messages.inc.php:713 msgid "Del" 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/messages.inc.php:592 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:588 #: libraries/tbl_properties.inc.php:779 server_privileges.php:258 #: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288 msgid "Or" msgstr "Arba" -#: db_qbe.php:507 libraries/messages.inc.php:516 +#: db_qbe.php:507 libraries/messages.inc.php:512 msgid "Modify" msgstr "Keisti" -#: db_qbe.php:584 libraries/messages.inc.php:33 +#: db_qbe.php:584 libraries/messages.inc.php:29 msgid "Add/Delete Criteria Row" msgstr "Įterpti/Trinti požymio eilutę(es)" -#: db_qbe.php:596 libraries/messages.inc.php:32 +#: db_qbe.php:596 libraries/messages.inc.php:28 msgid "Add/Delete Field Columns" msgstr "Įterpti/trinti laukus" -#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1192 +#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1188 msgid "Update Query" msgstr "Atnaujinti užklausą" -#: db_qbe.php:617 libraries/messages.inc.php:1216 +#: db_qbe.php:617 libraries/messages.inc.php:1212 msgid "Use Tables" msgstr "Naudoti lenteles" -#: db_qbe.php:640 libraries/messages.inc.php:723 +#: db_qbe.php:640 libraries/messages.inc.php:719 #, php-format msgid "SQL query on database %s:" msgstr "SQL-užklausa duombazėje %s:" -#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:823 +#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:819 msgid "Submit Query" msgstr "Vykdyti užklausą" #: db_search.php:68 libraries/auth/config.auth.lib.php:84 #: libraries/auth/config.auth.lib.php:103 #: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52 -#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:26 +#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:22 msgid "Access denied" msgstr "Priėjimas uždraustas" -#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:836 +#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:832 msgid "at least one of the words" msgstr "bent vienas iš žodžių" -#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:837 +#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:833 msgid "all words" msgstr "visi žodžiai" -#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:838 +#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:834 msgid "the exact phrase" msgstr "ištisa frazė" -#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:839 +#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:835 msgid "as regular expression" msgstr "kaip reguliarųjį išsireiškimą" -#: db_search.php:242 libraries/messages.inc.php:840 +#: db_search.php:242 libraries/messages.inc.php:836 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Paieškos rezultatai frazei \"%s\" %s:" -#: db_search.php:260 libraries/messages.inc.php:579 +#: db_search.php:260 libraries/messages.inc.php:575 #, php-format msgid "%s match(es) inside table %s" 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/messages.inc.php:108 +#: db_structure.php:105 libraries/messages.inc.php:104 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468 msgid "Browse" msgstr "Peržiūrėti" #: db_search.php:272 libraries/display_tbl.lib.php:1165 -#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:243 +#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:239 #: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406 #: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377 #: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216 @@ -588,45 +588,45 @@ msgstr "Peržiūrėti" msgid "Delete" msgstr "Trinti" -#: db_search.php:285 libraries/messages.inc.php:580 +#: db_search.php:285 libraries/messages.inc.php:576 #, php-format msgid "Total: %s match(es)" msgstr "Viso: %s atitikmuo(enys)" -#: db_search.php:299 libraries/messages.inc.php:832 +#: db_search.php:299 libraries/messages.inc.php:828 msgid "Search in database" msgstr "Paieška duombazėje" -#: db_search.php:302 libraries/messages.inc.php:835 +#: db_search.php:302 libraries/messages.inc.php:831 msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgstr "Paieškos žodis(iai) arba reikšmė(ės) (pakaitos simbolis: \"%\"):" -#: db_search.php:307 libraries/messages.inc.php:842 +#: db_search.php:307 libraries/messages.inc.php:838 msgid "Find:" msgstr "Rasti:" -#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1017 +#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1013 msgid "Words are separated by a space character (\" \")." msgstr "Žodžiai atskirti tarpo simboliu (\" \")." -#: db_search.php:325 libraries/messages.inc.php:834 +#: db_search.php:325 libraries/messages.inc.php:830 msgid "Inside table(s):" msgstr "Lentelės(ių) viduje:" -#: db_search.php:355 libraries/messages.inc.php:833 +#: db_search.php:355 libraries/messages.inc.php:829 msgid "Inside field:" 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/messages.inc.php:431 libraries/sql_query_form.lib.php:334 +#: libraries/messages.inc.php:427 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/db_links.inc.php:63 libraries/export/latex.php:337 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:1048 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:1044 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 #: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269 msgid "Structure" @@ -635,8 +635,8 @@ 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:1642 -#: libraries/db_links.inc.php:100 libraries/messages.inc.php:272 +#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/db_links.inc.php:100 libraries/messages.inc.php:268 #: 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 @@ -646,40 +646,40 @@ 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:1641 -#: libraries/messages.inc.php:284 libraries/mult_submits.inc.php:39 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: libraries/messages.inc.php:280 libraries/mult_submits.inc.php:39 #: libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Išvalyti" -#: db_structure.php:316 libraries/messages.inc.php:1075 +#: db_structure.php:316 libraries/messages.inc.php:1071 #: libraries/tbl_links.inc.php:100 #, php-format msgid "Table %s has been emptied" msgstr "Lentelės reikšmės %s ištuštintos" -#: db_structure.php:326 libraries/messages.inc.php:1229 +#: db_structure.php:326 libraries/messages.inc.php:1225 #: 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/messages.inc.php:1074 +#: db_structure.php:326 libraries/messages.inc.php:1070 #: libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "Lentelė %s panaikinta" -#: db_structure.php:333 libraries/messages.inc.php:1128 +#: db_structure.php:333 libraries/messages.inc.php:1124 msgid "Tracking is active." msgstr "" -#: db_structure.php:335 libraries/messages.inc.php:1129 +#: db_structure.php:335 libraries/messages.inc.php:1125 msgid "Tracking is not active." msgstr "" #: db_structure.php:420 libraries/display_tbl.lib.php:1944 -#: libraries/messages.inc.php:1228 +#: libraries/messages.inc.php:1224 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -687,83 +687,83 @@ msgid "" msgstr "" #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 -#: libraries/messages.inc.php:1233 libraries/tbl_info.inc.php:66 +#: libraries/messages.inc.php:1229 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/messages.inc.php:773 libraries/server_links.inc.php:70 +#: libraries/messages.inc.php:769 libraries/server_links.inc.php:70 #: server_replication.php:33 server_replication.php:164 server_status.php:258 msgid "Replication" msgstr "Replikacija" -#: db_structure.php:489 libraries/messages.inc.php:1053 +#: db_structure.php:489 libraries/messages.inc.php:1049 msgid "Sum" msgstr "Sumos" #: db_structure.php:496 libraries/StorageEngine.class.php:356 -#: libraries/messages.inc.php:239 +#: libraries/messages.inc.php:235 #, 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 #: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086 -#: libraries/messages.inc.php:1243 libraries/mult_submits.inc.php:16 +#: libraries/messages.inc.php:1239 libraries/mult_submits.inc.php:16 #: server_databases.php:346 server_databases.php:351 #: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465 msgid "With selected:" msgstr "Pasirinktus:" #: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: libraries/messages.inc.php:148 server_databases.php:348 +#: libraries/messages.inc.php:144 server_databases.php:348 #: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459 msgid "Check All" msgstr "Pažymėti visus" #: db_structure.php:531 libraries/display_tbl.lib.php:2077 -#: libraries/messages.inc.php:1184 libraries/replication_gui.lib.php:33 +#: libraries/messages.inc.php:1180 libraries/replication_gui.lib.php:33 #: server_databases.php:350 server_privileges.php:533 #: server_privileges.php:1564 tbl_structure.php:463 msgid "Uncheck All" msgstr "Atžymėti visus" -#: db_structure.php:536 libraries/messages.inc.php:150 +#: db_structure.php:536 libraries/messages.inc.php:146 msgid "Check tables having overhead" msgstr "Pažymėti turinčias perteklių" #: db_structure.php:547 db_structure.php:548 db_structure.php:599 -#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:672 +#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:668 #: libraries/mult_submits.inc.php:28 tbl_structure.php:493 #: tbl_structure.php:495 msgid "Print view" msgstr "Spausdinti struktūrą" -#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:153 +#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:149 #: libraries/mult_submits.inc.php:42 tbl_operations.php:579 msgid "Check table" msgstr "Patikrinti lentelę" -#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:590 +#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:586 #: libraries/mult_submits.inc.php:47 tbl_operations.php:619 #: tbl_structure.php:710 tbl_structure.php:712 msgid "Optimize table" msgstr "Optimizuoti" -#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:758 +#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:754 #: libraries/mult_submits.inc.php:52 tbl_operations.php:609 msgid "Repair table" msgstr "Redaguoti" -#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:55 +#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:51 #: libraries/mult_submits.inc.php:57 tbl_operations.php:599 msgid "Analyze table" msgstr "Analizuoti lentelę" #: db_structure.php:557 db_structure.php:558 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/messages.inc.php:310 +#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:306 #: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84 #: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109 #: server_privileges.php:1341 setup/frames/menu.inc.php:22 @@ -771,7 +771,7 @@ msgstr "Analizuoti lentelę" msgid "Export" msgstr "Eksportuoti" -#: db_tracking.php:66 libraries/messages.inc.php:1151 +#: db_tracking.php:66 libraries/messages.inc.php:1147 #, fuzzy msgid "Tracked tables" msgstr "Patikrinti lentelę" @@ -780,7 +780,7 @@ msgstr "Patikrinti lentelę" #: 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/header_printview.inc.php:58 libraries/messages.inc.php:212 +#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:208 #: navigation.php:233 server_databases.php:169 server_privileges.php:1621 #: server_privileges.php:1682 server_privileges.php:1940 #: server_processlist.php:56 server_synchronize.php:1179 @@ -788,80 +788,80 @@ msgstr "Patikrinti lentelę" msgid "Database" msgstr "Duombazė" -#: db_tracking.php:73 libraries/messages.inc.php:1146 +#: db_tracking.php:73 libraries/messages.inc.php:1142 msgid "Last version" msgstr "Paskutinė versija" -#: db_tracking.php:74 libraries/messages.inc.php:1145 tbl_tracking.php:594 +#: db_tracking.php:74 libraries/messages.inc.php:1141 tbl_tracking.php:594 msgid "Created" msgstr "Sukurta" -#: db_tracking.php:75 libraries/messages.inc.php:1147 tbl_tracking.php:595 +#: db_tracking.php:75 libraries/messages.inc.php:1143 tbl_tracking.php:595 msgid "Updated" msgstr "Atnaujinta" #: db_tracking.php:77 libraries/Index.class.php:440 -#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:27 +#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:23 #: server_databases.php:203 server_privileges.php:1503 #: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187 msgid "Action" msgstr "Veiksmas" -#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:247 +#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:243 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:106 libraries/messages.inc.php:1142 tbl_tracking.php:548 +#: db_tracking.php:106 libraries/messages.inc.php:1138 tbl_tracking.php:548 #: tbl_tracking.php:606 tbl_tracking.php:613 msgid "active" msgstr "" -#: db_tracking.php:108 libraries/messages.inc.php:1143 tbl_tracking.php:550 +#: db_tracking.php:108 libraries/messages.inc.php:1139 tbl_tracking.php:550 #: tbl_tracking.php:608 tbl_tracking.php:610 msgid "not active" msgstr "" -#: db_tracking.php:121 libraries/messages.inc.php:1160 +#: db_tracking.php:121 libraries/messages.inc.php:1156 msgid "Versions" msgstr "Versijos" -#: db_tracking.php:122 libraries/messages.inc.php:1132 tbl_tracking.php:379 +#: db_tracking.php:122 libraries/messages.inc.php:1128 tbl_tracking.php:379 #: tbl_tracking.php:624 msgid "Tracking report" msgstr "" -#: db_tracking.php:123 libraries/messages.inc.php:1144 tbl_tracking.php:251 +#: db_tracking.php:123 libraries/messages.inc.php:1140 tbl_tracking.php:251 #: tbl_tracking.php:624 #, fuzzy msgid "Structure snapshot" msgstr "Tik struktūra" -#: db_tracking.php:152 libraries/messages.inc.php:1154 +#: db_tracking.php:152 libraries/messages.inc.php:1150 #, fuzzy msgid "Untracked tables" msgstr "Patikrinti lentelę" -#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1153 +#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1149 #: tbl_structure.php:529 tbl_structure.php:531 #, fuzzy msgid "Track table" msgstr "Patikrinti lentelę" -#: db_tracking.php:200 libraries/messages.inc.php:1121 +#: db_tracking.php:200 libraries/messages.inc.php:1117 #, fuzzy msgid "Database Log" msgstr "Duombazė" -#: export.php:62 libraries/messages.inc.php:312 +#: export.php:62 libraries/messages.inc.php:308 msgid "Selected export type has to be saved in file!" msgstr "" -#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:567 +#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:563 #, php-format msgid "Insufficient space to save the file %s." msgstr "Nėra pakankamai vietos išsaugoti failui %s." -#: export.php:294 libraries/messages.inc.php:324 +#: export.php:294 libraries/messages.inc.php:320 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -869,17 +869,17 @@ msgstr "" "Failas pavadinimu %s jau yra darbinėje stotyje, pakeiskite norimą pavadinimą " "arba pasirinkite nustatymą leidžiantį perrašyti esamus failus." -#: export.php:298 export.php:302 libraries/messages.inc.php:562 +#: export.php:298 export.php:302 libraries/messages.inc.php:558 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Nėra teisių išsaugoti failui %s." -#: export.php:629 libraries/messages.inc.php:276 +#: export.php:629 libraries/messages.inc.php:272 #, php-format msgid "Dump has been saved to file %s." msgstr "Duombazės atvaizdis išsaugotas faile %s." -#: import.php:60 libraries/messages.inc.php:1202 +#: import.php:60 libraries/messages.inc.php:1198 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation%" @@ -887,21 +887,21 @@ msgid "" msgstr "" #: import.php:279 import.php:332 libraries/File.class.php:849 -#: libraries/File.class.php:961 libraries/messages.inc.php:325 +#: libraries/File.class.php:961 libraries/messages.inc.php:321 msgid "File could not be read" msgstr "Negalima perskaityti failo" #: import.php:287 import.php:296 import.php:315 import.php:324 #: libraries/File.class.php:1031 libraries/File.class.php:1039 #: libraries/File.class.php:1055 libraries/File.class.php:1063 -#: libraries/messages.inc.php:1189 +#: libraries/messages.inc.php:1185 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." msgstr "" -#: import.php:337 libraries/messages.inc.php:547 +#: import.php:337 libraries/messages.inc.php:543 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -909,40 +909,40 @@ msgid "" msgstr "" #: import.php:372 libraries/display_import.lib.php:24 -#: libraries/messages.inc.php:125 +#: libraries/messages.inc.php:121 msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:397 libraries/messages.inc.php:102 +#: import.php:397 libraries/messages.inc.php:98 msgid "The bookmark has been deleted." msgstr "Nuoroda ištrinta." -#: import.php:401 libraries/messages.inc.php:879 +#: import.php:401 libraries/messages.inc.php:875 msgid "Showing bookmark" msgstr "" -#: import.php:403 libraries/messages.inc.php:101 +#: import.php:403 libraries/messages.inc.php:97 #, php-format msgid "Bookmark %s created" msgstr "Žymė %s sukurta" -#: import.php:409 import.php:415 libraries/messages.inc.php:407 +#: import.php:409 import.php:415 libraries/messages.inc.php:403 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" -#: import.php:424 libraries/messages.inc.php:1107 +#: import.php:424 libraries/messages.inc.php:1103 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: index.php:190 libraries/messages.inc.php:553 +#: index.php:190 libraries/messages.inc.php:549 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" "phpMyAdmin draugiškesnis su rėmelius palaikančiomis naršyklėmis." -#: js/messages.php:25 libraries/messages.inc.php:155 +#: js/messages.php:25 libraries/messages.inc.php:151 #: server_synchronize.php:345 server_synchronize.php:357 #: server_synchronize.php:373 server_synchronize.php:380 #: server_synchronize.php:739 server_synchronize.php:767 @@ -950,118 +950,118 @@ msgstr "" msgid "Click to select" msgstr "Spustelėkite pažymėjimui" -#: js/messages.php:26 libraries/messages.inc.php:156 +#: js/messages.php:26 libraries/messages.inc.php:152 msgid "Click to unselect" msgstr "Spustelėkite atžymėjimui" #: js/messages.php:27 libraries/import.lib.php:103 -#: libraries/messages.inc.php:550 sql.php:89 +#: libraries/messages.inc.php:546 sql.php:89 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" komandos įvykdyti negalima." -#: js/messages.php:30 libraries/messages.inc.php:270 +#: js/messages.php:30 libraries/messages.inc.php:266 #: libraries/mult_submits.inc.php:258 sql.php:188 msgid "Do you really want to " msgstr "Ar TIKRAI norite " -#: js/messages.php:31 libraries/messages.inc.php:271 +#: js/messages.php:31 libraries/messages.inc.php:267 #: libraries/mult_submits.inc.php:258 sql.php:172 msgid "You are about to DESTROY a complete database!" msgstr "Jūs ruošiatės SUNAIKINTI visą duombazę!" -#: js/messages.php:34 libraries/messages.inc.php:94 +#: js/messages.php:34 libraries/messages.inc.php:90 msgid "You are about to DISABLE a BLOB Repository!" msgstr "Jūs ruošiatės IŠJUNGTI BLOB saugyklą!" -#: js/messages.php:35 libraries/messages.inc.php:91 +#: js/messages.php:35 libraries/messages.inc.php:87 #, php-format msgid "Are you sure you want to disable all BLOB references for database %s?" msgstr "" -#: js/messages.php:38 libraries/messages.inc.php:342 +#: js/messages.php:38 libraries/messages.inc.php:338 msgid "Missing value in the form!" msgstr "Trūksta reikšmės formoje !" -#: js/messages.php:39 libraries/messages.inc.php:570 +#: js/messages.php:39 libraries/messages.inc.php:566 msgid "This is not a number!" msgstr "Įveskite skaičių!" -#: js/messages.php:42 libraries/messages.inc.php:380 +#: js/messages.php:42 libraries/messages.inc.php:376 msgid "The host name is empty!" msgstr "Tuščias prisijungimo adresas!" -#: js/messages.php:43 libraries/messages.inc.php:1208 +#: js/messages.php:43 libraries/messages.inc.php:1204 msgid "The user name is empty!" msgstr "Tuščias vartotojo vardas!" -#: js/messages.php:44 libraries/messages.inc.php:607 +#: js/messages.php:44 libraries/messages.inc.php:603 #: server_privileges.php:1197 user_password.php:70 msgid "The password is empty!" msgstr "Tuščias slaptažodis!" -#: js/messages.php:45 libraries/messages.inc.php:609 +#: js/messages.php:45 libraries/messages.inc.php:605 #: server_privileges.php:1195 user_password.php:73 msgid "The passwords aren't the same!" msgstr "Slaptažodžiai nesutampa!" -#: js/messages.php:49 libraries/messages.inc.php:123 pmd_general.php:342 +#: js/messages.php:49 libraries/messages.inc.php:119 pmd_general.php:342 #: pmd_general.php:379 msgid "Cancel" msgstr "Atšaukti" -#: js/messages.php:52 libraries/messages.inc.php:514 +#: js/messages.php:52 libraries/messages.inc.php:510 msgid "Modifications have been saved" msgstr "Pakeitimai išsaugoti" -#: js/messages.php:53 libraries/messages.inc.php:741 +#: js/messages.php:53 libraries/messages.inc.php:737 #, fuzzy msgid "Relation deleted" msgstr "Peržiūrėti sąryšius" -#: js/messages.php:54 libraries/messages.inc.php:340 +#: js/messages.php:54 libraries/messages.inc.php:336 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:55 libraries/messages.inc.php:434 +#: js/messages.php:55 libraries/messages.inc.php:430 #, fuzzy msgid "Internal relation added" msgstr "Vidiniai sąryšiai" -#: js/messages.php:56 libraries/messages.inc.php:299 +#: js/messages.php:56 libraries/messages.inc.php:295 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:57 libraries/messages.inc.php:300 +#: js/messages.php:57 libraries/messages.inc.php:296 msgid "Error: relation already exists." msgstr "" -#: js/messages.php:58 libraries/messages.inc.php:302 +#: js/messages.php:58 libraries/messages.inc.php:298 msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:59 libraries/messages.inc.php:351 +#: js/messages.php:59 libraries/messages.inc.php:347 #: libraries/relation.lib.php:107 msgid "General relation features" msgstr "Pagrindinės sąryšių sąvybės" -#: js/messages.php:59 libraries/messages.inc.php:260 +#: js/messages.php:59 libraries/messages.inc.php:256 #: libraries/relation.lib.php:101 libraries/relation.lib.php:108 msgid "Disabled" msgstr "Išjungta" -#: js/messages.php:60 libraries/messages.inc.php:850 +#: js/messages.php:60 libraries/messages.inc.php:846 msgid "Select referenced key" msgstr "" -#: js/messages.php:61 libraries/messages.inc.php:848 +#: js/messages.php:61 libraries/messages.inc.php:844 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:62 libraries/messages.inc.php:653 +#: js/messages.php:62 libraries/messages.inc.php:649 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:63 libraries/messages.inc.php:142 pmd_general.php:77 +#: js/messages.php:63 libraries/messages.inc.php:138 pmd_general.php:77 #: tbl_relation.php:548 msgid "Choose field to display" msgstr "Pasirinkite lauką, kurį norite peržiūrėti" @@ -1081,9 +1081,9 @@ msgid "Prev" msgstr "Praėjęs" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2332 -#: libraries/common.lib.php:2335 libraries/display_tbl.lib.php:338 -#: libraries/messages.inc.php:543 server_binlog.php:205 server_binlog.php:207 +#: js/messages.php:77 libraries/common.lib.php:2344 +#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: libraries/messages.inc.php:539 server_binlog.php:205 server_binlog.php:207 #: tbl_printview.php:424 tbl_structure.php:802 msgid "Next" msgstr "Sekantis" @@ -1158,27 +1158,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1543 +#: js/messages.php:97 libraries/common.lib.php:1555 msgid "Jan" msgstr "sausio" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1545 +#: js/messages.php:99 libraries/common.lib.php:1557 msgid "Feb" msgstr "vasario" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1547 +#: js/messages.php:101 libraries/common.lib.php:1559 msgid "Mar" msgstr "kovo" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1549 +#: js/messages.php:103 libraries/common.lib.php:1561 msgid "Apr" msgstr "balandžio" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1551 +#: js/messages.php:105 libraries/common.lib.php:1563 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1186,37 +1186,37 @@ msgid "May" msgstr "gegužės" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1553 +#: js/messages.php:107 libraries/common.lib.php:1565 msgid "Jun" msgstr "birželio" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1555 +#: js/messages.php:109 libraries/common.lib.php:1567 msgid "Jul" msgstr "liepos" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1557 +#: js/messages.php:111 libraries/common.lib.php:1569 msgid "Aug" msgstr "rugpjūčio" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1559 +#: js/messages.php:113 libraries/common.lib.php:1571 msgid "Sep" msgstr "rugsėjo" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1561 +#: js/messages.php:115 libraries/common.lib.php:1573 msgid "Oct" msgstr "spalio" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1563 +#: js/messages.php:117 libraries/common.lib.php:1575 msgid "Nov" msgstr "lapkričio" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1565 +#: js/messages.php:119 libraries/common.lib.php:1577 msgid "Dec" msgstr "gruodžio" @@ -1257,37 +1257,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1568 +#: js/messages.php:132 libraries/common.lib.php:1580 msgid "Sun" msgstr "Sekmadienis" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1570 +#: js/messages.php:134 libraries/common.lib.php:1582 msgid "Mon" msgstr "Pirmadienis" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1572 +#: js/messages.php:136 libraries/common.lib.php:1584 msgid "Tue" msgstr "Antradienis" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1574 +#: js/messages.php:138 libraries/common.lib.php:1586 msgid "Wed" msgstr "Trečiadienis" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1576 +#: js/messages.php:140 libraries/common.lib.php:1588 msgid "Thu" msgstr "Ketvirtadienis" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1578 +#: js/messages.php:142 libraries/common.lib.php:1590 msgid "Fri" msgstr "Penktadienis" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1580 +#: js/messages.php:144 libraries/common.lib.php:1592 msgid "Sat" msgstr "Šeštadienis" @@ -1363,77 +1363,77 @@ msgstr "šiuo metu naudojama" msgid "Second" msgstr "per sekundę" -#: libraries/Config.class.php:1015 libraries/messages.inc.php:338 +#: libraries/Config.class.php:1015 libraries/messages.inc.php:334 msgid "Font size" msgstr "Šrifto dydis" #: libraries/File.class.php:344 libraries/File.class.php:432 #: libraries/File.class.php:569 libraries/File.class.php:708 -#: libraries/messages.inc.php:1201 +#: libraries/messages.inc.php:1197 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.class.php:414 libraries/messages.inc.php:1198 +#: libraries/File.class.php:414 libraries/messages.inc.php:1194 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:417 libraries/messages.inc.php:1197 +#: libraries/File.class.php:417 libraries/messages.inc.php:1193 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:420 libraries/messages.inc.php:1200 +#: libraries/File.class.php:420 libraries/messages.inc.php:1196 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:423 libraries/messages.inc.php:1199 +#: libraries/File.class.php:423 libraries/messages.inc.php:1195 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:426 libraries/messages.inc.php:1195 +#: libraries/File.class.php:426 libraries/messages.inc.php:1191 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:429 libraries/messages.inc.php:1196 +#: libraries/File.class.php:429 libraries/messages.inc.php:1192 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:908 libraries/messages.inc.php:319 +#: libraries/File.class.php:908 libraries/messages.inc.php:315 #, fuzzy msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "Gali būti apytikslis. Žiūrėkite DUK 3.11" -#: libraries/Index.class.php:428 libraries/messages.inc.php:554 +#: libraries/Index.class.php:428 libraries/messages.inc.php:550 #: tbl_relation.php:529 msgid "No index defined!" msgstr "Neaprašyti indeksai!" -#: libraries/Index.class.php:433 libraries/messages.inc.php:411 +#: libraries/Index.class.php:433 libraries/messages.inc.php:407 #: server_databases.php:132 tbl_tracking.php:316 msgid "Indexes" msgstr "Indeksai" -#: libraries/Index.class.php:444 libraries/messages.inc.php:1186 +#: libraries/Index.class.php:444 libraries/messages.inc.php:1182 #: 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:475 tbl_tracking.php:322 msgid "Unique" msgstr "Unikalus" -#: libraries/Index.class.php:445 libraries/messages.inc.php:596 +#: libraries/Index.class.php:445 libraries/messages.inc.php:592 #: tbl_tracking.php:323 msgid "Packed" msgstr "Suspausta" -#: libraries/Index.class.php:447 libraries/messages.inc.php:131 +#: libraries/Index.class.php:447 libraries/messages.inc.php:127 #: tbl_tracking.php:325 msgid "Cardinality" msgstr "Elementų skaičius" -#: libraries/Index.class.php:450 libraries/messages.inc.php:162 +#: libraries/Index.class.php:450 libraries/messages.inc.php:158 #: tbl_tracking.php:279 tbl_tracking.php:328 msgid "Comment" msgstr "Komentaras" @@ -1441,29 +1441,29 @@ msgstr "Komentaras" #: libraries/Index.class.php:466 libraries/common.lib.php:616 #: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:280 pdf_pages.php:280 +#: libraries/messages.inc.php:276 pdf_pages.php:280 #: setup/frames/index.inc.php:124 setup/lib/messages.inc.php:352 #: tbl_row_action.php:69 msgid "Edit" msgstr "Redaguoti" -#: libraries/Index.class.php:472 libraries/messages.inc.php:666 +#: libraries/Index.class.php:472 libraries/messages.inc.php:662 msgid "The primary key has been dropped" msgstr "Panaikintas pirminis raktas" -#: libraries/Index.class.php:476 libraries/messages.inc.php:413 +#: libraries/Index.class.php:476 libraries/messages.inc.php:409 #, php-format msgid "Index %s has been dropped" msgstr "Indeksas %s panaikintas" -#: libraries/Index.class.php:576 libraries/messages.inc.php:412 +#: libraries/Index.class.php:576 libraries/messages.inc.php:408 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "" -#: libraries/List_Database.class.php:431 libraries/messages.inc.php:218 +#: libraries/List_Database.class.php:431 libraries/messages.inc.php:214 #: libraries/server_links.inc.php:41 server_databases.php:88 #: server_privileges.php:1621 setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" @@ -1493,86 +1493,86 @@ msgstr[0] "Įterpta %1$d eilutė." msgstr[1] "Įterptos %1$d eilutės." msgstr[2] "Įterpta %1$d eilučių." -#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:549 +#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:545 msgid "" "There is no detailed status information available for this storage engine." msgstr "Apie šio Saugojimo Variklio būseną nėra išsamios informacijos." -#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:291 +#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:287 #, php-format msgid "%s is available on this MySQL server." msgstr "%s nėra galimas šiame MySQL serveryje." -#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:292 +#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:288 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s šiame MySQL serveryje yra išjungtas." -#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:294 +#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:290 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "Šis MySQL serveris nepalaiko %s saugojimo variklio." -#: libraries/Table.class.php:1019 libraries/messages.inc.php:443 +#: libraries/Table.class.php:1019 libraries/messages.inc.php:439 #, fuzzy msgid "Invalid database" msgstr "Neteisingas lentelės vardas" -#: libraries/Table.class.php:1033 libraries/messages.inc.php:450 +#: libraries/Table.class.php:1033 libraries/messages.inc.php:446 #: tbl_get_field.php:26 msgid "Invalid table name" msgstr "Neteisingas lentelės vardas" -#: libraries/Table.class.php:1048 libraries/messages.inc.php:301 +#: libraries/Table.class.php:1048 libraries/messages.inc.php:297 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "" -#: libraries/Table.class.php:1132 libraries/messages.inc.php:754 +#: libraries/Table.class.php:1132 libraries/messages.inc.php:750 #, php-format msgid "Table %s has been renamed to %s" msgstr "Lentelė %s pervadinta į %s" -#: libraries/Theme.class.php:162 libraries/messages.inc.php:1099 +#: libraries/Theme.class.php:162 libraries/messages.inc.php:1095 #, php-format msgid "No valid image path for theme %s found!" msgstr "" -#: libraries/Theme.class.php:384 libraries/messages.inc.php:1097 +#: libraries/Theme.class.php:384 libraries/messages.inc.php:1093 msgid "No preview available." msgstr "" -#: libraries/Theme.class.php:387 libraries/messages.inc.php:1089 +#: libraries/Theme.class.php:387 libraries/messages.inc.php:1085 msgid "take it" msgstr "pasirinkti" -#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1096 +#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1092 #, php-format msgid "Default theme %s not found!" msgstr "Standartinė tema %s nerasta!" -#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1098 +#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1094 #, php-format msgid "Theme %s not found!" msgstr "Tema %s nerasta!" -#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1100 +#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1096 #, php-format msgid "Theme path not found for theme %s!" msgstr "" -#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1101 +#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1097 #: test/theme.php:161 themes.php:21 themes.php:41 msgid "Theme / Style" msgstr "Tema / Stilius" -#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:172 +#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:168 msgid "Cannot connect: invalid settings." msgstr "Neįmanoma prisijungti: neteisingi duomenys." #: libraries/auth/config.auth.lib.php:92 #: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65 -#: libraries/messages.inc.php:1238 test/theme.php:152 +#: libraries/messages.inc.php:1234 test/theme.php:152 #, php-format msgid "Welcome to %s" msgstr "Jūs naudojate %s" @@ -1598,51 +1598,51 @@ msgstr "" "stoties adresą, prisijungimo vardą ir slaptažodį) ir įsitikinkite ar jie " "sutampa su duomenimis gautais iš darbinės stoties administratoriaus." -#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:488 +#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:484 msgid "Log in" msgstr "Prisijungti" #: libraries/auth/cookie.auth.lib.php:246 -#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:659 +#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:655 #: libraries/navigation_header.inc.php:93 #: libraries/navigation_header.inc.php:95 msgid "phpMyAdmin documentation" msgstr "phpMyAdmin'o dokumentacija" #: libraries/auth/cookie.auth.lib.php:258 -#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:492 +#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:488 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:493 +#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:489 msgid "Server:" msgstr "Darbinė stotis" -#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:494 +#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:490 msgid "Username:" msgstr "Vartotojo vardas:" -#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:491 +#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:487 msgid "Password:" msgstr "Slaptažodis:" -#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:854 +#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:850 msgid "Server Choice" msgstr "Pasirinkti serverį" #: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 -#: libraries/messages.inc.php:177 +#: libraries/messages.inc.php:173 msgid "Cookies must be enabled past this point." msgstr "Sausainėliai(Cookies) turi būti priimami." #: libraries/auth/cookie.auth.lib.php:671 -#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:489 +#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:485 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" #: libraries/auth/cookie.auth.lib.php:675 -#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:544 +#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:540 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" @@ -1651,53 +1651,53 @@ msgstr "" #: libraries/auth/cookie.auth.lib.php:685 #: libraries/auth/cookie.auth.lib.php:687 -#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:126 +#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:122 msgid "Cannot log in to the MySQL server" msgstr "Nepavyksta prisijungti prie MySQL darbinės stoties" -#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1245 +#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1241 msgid "Wrong username/password. Access denied." msgstr "Neteisingas vartotojo vardas arba slaptažodis. Priėjimas uždraustas." #: libraries/auth/swekey/swekey.auth.lib.php:118 -#: libraries/messages.inc.php:1057 +#: libraries/messages.inc.php:1053 #, php-format msgid "File %s does not contain any key id" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:157 #: libraries/auth/swekey/swekey.auth.lib.php:180 -#: libraries/messages.inc.php:1056 +#: libraries/messages.inc.php:1052 msgid "Hardware authentication failed" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:166 -#: libraries/messages.inc.php:1058 +#: libraries/messages.inc.php:1054 msgid "No valid authentication key plugged" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:202 -#: libraries/messages.inc.php:1055 +#: libraries/messages.inc.php:1051 msgid "Authenticating..." msgstr "" -#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1230 +#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1226 msgid "View image" msgstr "Žiūrėti paveikslėlį" -#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:652 +#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:648 msgid "Play audio" msgstr "Groti garsą" -#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1232 +#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1228 msgid "View video" msgstr "Žiūrėti video" -#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:269 +#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:265 msgid "Download file" msgstr "Atsisiųsti failą" -#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:128 +#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:124 msgid "" "Couldn't load the iconv or recode extension needed for charset conversion. " "Either configure PHP to enable these extensions or disable charset " @@ -1709,7 +1709,7 @@ msgstr "" #: libraries/charset_conversion.lib.php:79 #: libraries/charset_conversion.lib.php:90 -#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:130 +#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:126 msgid "" "Couldn't use the iconv, libiconv, or recode_string functions, although the " "necessary extensions appear to be loaded. Check your PHP configuration." @@ -1718,7 +1718,7 @@ msgstr "" "libiconv arba recode_string funkcijomis. Pasitkrinkite PHP " "parinktis. " -#: libraries/common.inc.php:583 libraries/messages.inc.php:170 +#: libraries/common.inc.php:583 libraries/messages.inc.php:166 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!" @@ -1752,22 +1752,22 @@ msgstr "" msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:636 libraries/messages.inc.php:448 +#: libraries/common.inc.php:636 libraries/messages.inc.php:444 #, 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/messages.inc.php:856 libraries/select_server.lib.php:41 +#: libraries/messages.inc.php:852 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/messages.inc.php:437 +#: libraries/common.inc.php:823 libraries/messages.inc.php:433 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.lib.php:147 libraries/messages.inc.php:499 +#: libraries/common.lib.php:147 libraries/messages.inc.php:495 #, php-format msgid "Max: %s%s" msgstr "Didžiausias dydis: %s%s" @@ -1787,7 +1787,7 @@ msgstr "en" #: libraries/common.lib.php:428 libraries/common.lib.php:430 #: libraries/common.lib.php:432 libraries/common.lib.php:448 #: libraries/common.lib.php:450 libraries/dbg/setup.php:25 -#: libraries/display_export.lib.php:164 libraries/messages.inc.php:267 +#: libraries/display_export.lib.php:164 libraries/messages.inc.php:263 #: libraries/relation.lib.php:97 libraries/sql_query_form.lib.php:451 #: libraries/sql_query_form.lib.php:454 main.php:229 pdf_pages.php:37 #: pdf_pages.php:43 pdf_pages.php:49 pdf_pages.php:54 @@ -1797,55 +1797,55 @@ msgstr "?" #: libraries/common.lib.php:581 libraries/core.lib.php:234 #: libraries/core.lib.php:263 libraries/import.lib.php:134 -#: libraries/messages.inc.php:297 pdf_schema.php:32 pdf_schema.php:232 +#: libraries/messages.inc.php:293 pdf_schema.php:32 pdf_schema.php:232 #: tbl_change.php:1027 tbl_operations.php:213 tbl_relation.php:290 #: view_operations.php:62 msgid "Error" msgstr "Klaida" #: libraries/common.lib.php:595 libraries/header_printview.inc.php:61 -#: libraries/messages.inc.php:1023 server_processlist.php:60 +#: libraries/messages.inc.php:1019 server_processlist.php:60 #: server_status.php:247 msgid "SQL query" msgstr "SQL užklausa" -#: libraries/common.lib.php:634 libraries/messages.inc.php:538 +#: libraries/common.lib.php:634 libraries/messages.inc.php:534 msgid "MySQL said: " msgstr "MySQL atsakymas: " -#: libraries/common.lib.php:667 libraries/messages.inc.php:76 +#: libraries/common.lib.php:667 libraries/messages.inc.php:72 #: pdf_schema.php:241 user_password.php:115 msgid "Back" msgstr "Atgal" -#: libraries/common.lib.php:1177 libraries/messages.inc.php:309 +#: libraries/common.lib.php:1177 libraries/messages.inc.php:305 #: setup/lib/messages.inc.php:353 msgid "Explain SQL" msgstr "Paaiškinti" -#: libraries/common.lib.php:1180 libraries/messages.inc.php:551 +#: libraries/common.lib.php:1180 libraries/messages.inc.php:547 msgid "Skip Explain SQL" msgstr "Praleisti SQL užklausos aiškinimą" -#: libraries/common.lib.php:1212 libraries/messages.inc.php:563 +#: libraries/common.lib.php:1212 libraries/messages.inc.php:559 msgid "Without PHP Code" msgstr "be PHP kodo" -#: libraries/common.lib.php:1215 libraries/messages.inc.php:649 +#: libraries/common.lib.php:1215 libraries/messages.inc.php:645 #: setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "PHP kodas" -#: libraries/common.lib.php:1233 libraries/messages.inc.php:737 +#: libraries/common.lib.php:1233 libraries/messages.inc.php:733 #: server_status.php:341 setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "Atnaujinti" -#: libraries/common.lib.php:1242 libraries/messages.inc.php:575 +#: libraries/common.lib.php:1242 libraries/messages.inc.php:571 msgid "Skip Validate SQL" msgstr "Praleisti SQL užklausos tikrinimą" -#: libraries/common.lib.php:1245 libraries/messages.inc.php:1220 +#: libraries/common.lib.php:1245 libraries/messages.inc.php:1216 #: setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "Patikrinti SQL užklausą" @@ -1859,11 +1859,11 @@ msgid "Inline" msgstr "" #: libraries/common.lib.php:1332 libraries/common.lib.php:1347 -#: libraries/messages.inc.php:713 +#: libraries/messages.inc.php:709 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1351 libraries/messages.inc.php:1108 +#: libraries/common.lib.php:1351 libraries/messages.inc.php:1104 #: libraries/tbl_triggers.lib.php:28 server_processlist.php:58 msgid "Time" msgstr "Laikas" @@ -1897,46 +1897,56 @@ msgstr "PiB" msgid "EiB" msgstr "EiB" +#. l10n: Thousands separator +#: libraries/common.lib.php:1417 +msgid "," +msgstr " " + +#. l10n: Decimal separator +#: libraries/common.lib.php:1419 +msgid "." +msgstr "," + #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1584 +#: libraries/common.lib.php:1596 #: libraries/transformations/text_plain__dateformat.inc.php:28 msgid "%B %d, %Y at %I:%M %p" msgstr "%Y m. %B %d d. %H:%M" -#: libraries/common.lib.php:1886 +#: libraries/common.lib.php:1898 #, 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:2301 libraries/common.lib.php:2304 -#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:664 +#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:660 #: server_status.php:608 msgid "Begin" msgstr "Pradžia" -#: libraries/common.lib.php:2302 libraries/common.lib.php:2305 -#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:665 +#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:661 #: server_binlog.php:168 server_binlog.php:170 msgid "Previous" msgstr "Praėjęs" -#: libraries/common.lib.php:2333 libraries/common.lib.php:2336 -#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:289 +#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:285 msgid "End" msgstr "Pabaiga" -#: libraries/common.lib.php:2409 libraries/messages.inc.php:455 +#: libraries/common.lib.php:2421 libraries/messages.inc.php:451 #, php-format msgid "Jump to database "%s"." msgstr "Pereiti į "%s" duombazę." -#: libraries/common.lib.php:2429 libraries/messages.inc.php:461 +#: libraries/common.lib.php:2441 libraries/messages.inc.php:457 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/core.lib.php:286 libraries/dbg/setup.php:22 -#: libraries/messages.inc.php:127 +#: libraries/messages.inc.php:123 #, php-format msgid "" "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " @@ -1946,116 +1956,116 @@ msgstr "" "plėtinio. Patikrinkite PHP nustatymus." #: libraries/db_events.inc.php:20 libraries/db_events.inc.php:22 -#: libraries/export/sql.php:415 libraries/messages.inc.php:306 +#: libraries/export/sql.php:415 libraries/messages.inc.php:302 msgid "Events" msgstr "Įvykiai" #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 -#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:541 +#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:537 #: libraries/tbl_triggers.lib.php:27 setup/frames/index.inc.php:112 msgid "Name" msgstr "Pavadinimas" -#: libraries/db_links.inc.php:45 libraries/messages.inc.php:216 +#: libraries/db_links.inc.php:45 libraries/messages.inc.php:212 #, php-format msgid "Database %s has been dropped." msgstr "Duombazė %s ištrinta." #: libraries/db_links.inc.php:57 libraries/db_links.inc.php:58 -#: libraries/db_links.inc.php:59 libraries/messages.inc.php:234 +#: libraries/db_links.inc.php:59 libraries/messages.inc.php:230 #, fuzzy msgid "Database seems to be empty!" msgstr "Lentelė atrodo tuščia!" -#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1025 +#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1021 #: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60 #: querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1152 +#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1148 #: libraries/tbl_links.inc.php:69 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:86 libraries/messages.inc.php:719 +#: libraries/db_links.inc.php:86 libraries/messages.inc.php:715 msgid "Query" msgstr "SQL užklausa" -#: libraries/db_links.inc.php:91 libraries/messages.inc.php:253 +#: libraries/db_links.inc.php:91 libraries/messages.inc.php:249 msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:98 libraries/messages.inc.php:397 +#: libraries/db_links.inc.php:98 libraries/messages.inc.php:393 #: libraries/server_links.inc.php:88 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:104 libraries/messages.inc.php:587 +#: libraries/db_links.inc.php:104 libraries/messages.inc.php:583 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" msgstr "Veiksmai" -#: libraries/db_links.inc.php:111 libraries/messages.inc.php:709 +#: libraries/db_links.inc.php:111 libraries/messages.inc.php:705 #: libraries/server_links.inc.php:66 server_privileges.php:72 #: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117 msgid "Privileges" msgstr "Privilegijos" #: libraries/db_routines.inc.php:30 libraries/db_routines.inc.php:32 -#: libraries/messages.inc.php:812 +#: libraries/messages.inc.php:808 msgid "Routines" msgstr "" -#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:811 +#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:807 msgid "Return type" msgstr "" #: libraries/db_structure.lib.php:57 libraries/display_tbl.lib.php:1848 -#: libraries/messages.inc.php:65 +#: libraries/messages.inc.php:61 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "Gali būti apytikslis. Žiūrėkite DUK 3.11" -#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:593 +#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:589 #: server_databases.php:142 tbl_printview.php:336 tbl_structure.php:683 msgid "Overhead" msgstr "Perteklius" #: libraries/dbi/mysql.dbi.lib.php:112 libraries/dbi/mysqli.dbi.lib.php:124 -#: libraries/messages.inc.php:176 +#: libraries/messages.inc.php:172 msgid "Connection for controluser as defined in your configuration failed." msgstr "" #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 -#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:855 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:851 msgid "The server is not responding" msgstr "Serveris neatsako" #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:1010 +#: libraries/messages.inc.php:1006 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 libraries/messages.inc.php:255 +#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:251 #: tbl_structure.php:609 msgid "Details..." msgstr "Detalės..." -#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:143 +#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:139 #: main.php:91 user_password.php:111 user_password.php:129 msgid "Change password" msgstr "Pakeisti slaptažodį" -#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:561 +#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:557 #: libraries/replication_gui.lib.php:341 server_privileges.php:768 msgid "No Password" msgstr "Nėra slaptažodžio" -#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:610 +#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:606 #: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60 #: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335 #: libraries/replication_gui.lib.php:345 server_privileges.php:757 @@ -2064,13 +2074,13 @@ msgstr "Nėra slaptažodžio" msgid "Password" msgstr "Slaptažodis" -#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:806 +#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:802 #: libraries/replication_gui.lib.php:349 libraries/replication_gui.lib.php:352 #: server_privileges.php:776 server_privileges.php:779 msgid "Re-type" msgstr "Įveskite dar kartą" -#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:608 +#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:604 msgid "Password Hashing" msgstr "Slaptažodžių Hešavimas" @@ -2080,89 +2090,89 @@ msgstr "Slaptažodžių Hešavimas" msgid "MySQL 4.0 compatible" msgstr "Suderinamas sy MySQL 4.0" -#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:353 +#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:349 #: libraries/replication_gui.lib.php:356 server_privileges.php:783 msgid "Generate Password" msgstr "Generuoti Slaiptažodį" -#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:352 +#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:348 #: libraries/replication_gui.lib.php:359 server_privileges.php:786 msgid "Generate" msgstr "Generuoti" #: libraries/display_create_database.lib.php:22 -#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:189 +#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:185 msgid "Create new database" msgstr "Sukurti naują duombazę" -#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:185 +#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:181 msgid "Create" msgstr "Sukurti" -#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:564 +#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:560 #: server_privileges.php:74 server_privileges.php:1388 #: server_replication.php:35 msgid "No Privileges" msgstr "Nėra privilegijų" -#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:445 +#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:441 msgid "Table must have at least one field." msgstr "" -#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:190 +#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:186 #, php-format msgid "Create table on database %s" msgstr "Sukurti naują lentelę duombazėje %s" -#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:577 +#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:573 msgid "Number of fields" msgstr "Laukų skaičius" -#: libraries/display_export.lib.php:42 libraries/messages.inc.php:124 +#: libraries/display_export.lib.php:42 libraries/messages.inc.php:120 msgid "Could not load export plugins, please check your installation!" msgstr "" -#: libraries/display_export.lib.php:107 libraries/messages.inc.php:277 +#: libraries/display_export.lib.php:107 libraries/messages.inc.php:273 #, php-format msgid "Dump %s row(s) starting at record # %s" msgstr "Išvesti %s eilučių pradedant nuo %s eilutės." -#: libraries/display_export.lib.php:115 libraries/messages.inc.php:274 +#: libraries/display_export.lib.php:115 libraries/messages.inc.php:270 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:125 libraries/messages.inc.php:852 +#: libraries/display_export.lib.php:125 libraries/messages.inc.php:848 #: setup/lib/messages.inc.php:82 msgid "Save as file" msgstr "Išsaugoti į failą" -#: libraries/display_export.lib.php:134 libraries/messages.inc.php:828 +#: libraries/display_export.lib.php:134 libraries/messages.inc.php:824 #, php-format msgid "Save on server in %s directory" msgstr "Išsaugoti serveryje, kataloge pavadinimu %s" -#: libraries/display_export.lib.php:142 libraries/messages.inc.php:594 +#: libraries/display_export.lib.php:142 libraries/messages.inc.php:590 #: setup/lib/messages.inc.php:90 msgid "Overwrite existing file(s)" msgstr "Perrašyti esamus failus" -#: libraries/display_export.lib.php:148 libraries/messages.inc.php:330 +#: libraries/display_export.lib.php:148 libraries/messages.inc.php:326 msgid "File name template" msgstr "Failo pavadinimo šablonas" -#: libraries/display_export.lib.php:152 libraries/messages.inc.php:327 +#: libraries/display_export.lib.php:152 libraries/messages.inc.php:323 msgid "server name" msgstr "serverio vardas" -#: libraries/display_export.lib.php:155 libraries/messages.inc.php:326 +#: libraries/display_export.lib.php:155 libraries/messages.inc.php:322 msgid "database name" msgstr "duomenų bazės vardas" -#: libraries/display_export.lib.php:158 libraries/messages.inc.php:328 +#: libraries/display_export.lib.php:158 libraries/messages.inc.php:324 msgid "table name" msgstr "lentelės vardas" -#: libraries/display_export.lib.php:162 libraries/messages.inc.php:329 +#: libraries/display_export.lib.php:162 libraries/messages.inc.php:325 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2173,24 +2183,24 @@ msgstr "" "laiko formatavimo eilutes. Taip pat pakeičiamos šios eilutės: %3$s. Kitas " "tekstas bus paliktas kaip yra." -#: libraries/display_export.lib.php:202 libraries/messages.inc.php:331 +#: libraries/display_export.lib.php:202 libraries/messages.inc.php:327 msgid "remember template" msgstr "atsiminti šabloną" #: libraries/display_export.lib.php:210 libraries/display_import.lib.php:178 -#: libraries/display_import.lib.php:191 libraries/messages.inc.php:145 +#: libraries/display_import.lib.php:191 libraries/messages.inc.php:141 #: libraries/sql_query_form.lib.php:549 msgid "Character set of the file:" msgstr "Simbolių koduotė faile:" -#: libraries/display_export.lib.php:235 libraries/messages.inc.php:166 +#: libraries/display_export.lib.php:235 libraries/messages.inc.php:162 #: setup/lib/messages.inc.php:84 msgid "Compression" 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/messages.inc.php:558 +#: libraries/export/sql.php:868 libraries/messages.inc.php:554 #: libraries/tbl_properties.inc.php:575 server_privileges.php:1836 #: server_processlist.php:75 msgid "None" @@ -2214,66 +2224,66 @@ msgstr "\"gzipped\"" msgid "bzipped" msgstr "\"bzip\"" -#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1018 +#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1014 msgid "SQL compatibility mode" msgstr "SQL suderinamumas" -#: libraries/display_import.lib.php:67 libraries/messages.inc.php:398 +#: libraries/display_import.lib.php:67 libraries/messages.inc.php:394 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " "browsers." msgstr "" -#: libraries/display_import.lib.php:77 libraries/messages.inc.php:406 +#: libraries/display_import.lib.php:77 libraries/messages.inc.php:402 msgid "The file is being processed, please be patient." msgstr "" -#: libraries/display_import.lib.php:99 libraries/messages.inc.php:408 +#: libraries/display_import.lib.php:99 libraries/messages.inc.php:404 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." msgstr "" -#: libraries/display_import.lib.php:126 libraries/messages.inc.php:333 +#: libraries/display_import.lib.php:126 libraries/messages.inc.php:329 msgid "File to import" msgstr "Failas importavimui" -#: libraries/display_import.lib.php:137 libraries/messages.inc.php:486 +#: libraries/display_import.lib.php:137 libraries/messages.inc.php:482 #: libraries/sql_query_form.lib.php:524 msgid "Location of the text file" msgstr "Tekstiniai SQL užklausų failai" -#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1203 +#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1199 msgid "File uploads are not allowed on this server." msgstr "" -#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1235 +#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1231 #: libraries/sql_query_form.lib.php:533 tbl_change.php:1028 msgid "The directory you set for upload work cannot be reached" msgstr "Nepasiekimas nurodytas www-serverio katalogas atsiuntimams." -#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1236 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1232 #: libraries/sql_query_form.lib.php:536 tbl_change.php:1031 msgid "web server upload directory" msgstr "web serverio katalogas atsiuntimams" -#: libraries/display_import.lib.php:212 libraries/messages.inc.php:167 +#: libraries/display_import.lib.php:212 libraries/messages.inc.php:163 #, php-format msgid "Imported file compression will be automatically detected from: %s" msgstr "Importuoto failo suspaudimo tipas bus automatiškai nustatytas iš: %s" -#: libraries/display_import.lib.php:219 libraries/messages.inc.php:600 +#: libraries/display_import.lib.php:219 libraries/messages.inc.php:596 msgid "Partial import" msgstr "Dalinis įkėlimas" -#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1105 +#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1101 #, php-format msgid "" "Previous import timed out, after resubmitting will continue from position %d." msgstr "" -#: libraries/display_import.lib.php:232 libraries/messages.inc.php:51 +#: libraries/display_import.lib.php:232 libraries/messages.inc.php:47 msgid "" "Allow the interruption of an import in case the script detects it is close " "to the PHP timeout limit. This might be good way to import large files, " @@ -2283,288 +2293,288 @@ msgstr "" "limito. Gali būti naudinga importuojant didelius failus, tačiau gali " "sugadinti transakcijas." -#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1004 +#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1000 #: setup/lib/messages.inc.php:161 msgid "Number of records (queries) to skip from start" msgstr "Praleisti įrašų(užklausų) skaičių nuo pradžios" -#: libraries/display_import.lib.php:255 libraries/messages.inc.php:396 +#: libraries/display_import.lib.php:255 libraries/messages.inc.php:392 #: setup/lib/messages.inc.php:160 msgid "Format of imported file" msgstr "Įkelto failo formatas" #: libraries/display_select_lang.lib.php:45 -#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:465 +#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:461 #: setup/frames/index.inc.php:70 msgid "Language" msgstr "Kalba" -#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:447 +#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:443 #, php-format msgid "%d is not valid row number." msgstr "" -#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:814 +#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:810 msgid "row(s) starting from record #" msgstr "eilučių pradedant nuo" -#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:817 +#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:813 msgid "horizontal" msgstr "horizontaliai" -#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:816 +#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:812 msgid "horizontal (rotated headers)" msgstr "horizontalūs (pasukti pavadinimai)" -#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:819 +#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:815 msgid "vertical" msgstr "vertikaliai" -#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:818 +#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:814 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "išdėstant %s pakartoti antraštes kas %s įrašų" -#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:495 +#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:491 msgid "This operation could take a long time. Proceed anyway?" msgstr "Operacija gali užtrukti. Tęsti?" -#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1012 +#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1008 msgid "Sort by key" msgstr "Rūšiuoti pagal raktą" #: libraries/display_tbl.lib.php:555 libraries/import.lib.php:1082 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:591 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:587 #: tbl_select.php:267 tbl_structure.php:754 msgid "Options" msgstr "Nustatymai" #: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:570 -#: libraries/messages.inc.php:601 +#: libraries/messages.inc.php:597 msgid "Partial Texts" msgstr "Tekstus rodyti dalinai" #: libraries/display_tbl.lib.php:561 libraries/display_tbl.lib.php:574 -#: libraries/messages.inc.php:346 +#: libraries/messages.inc.php:342 msgid "Full Texts" msgstr "Tekstus rodyti pilnai" -#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:739 +#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:735 #, fuzzy msgid "Relational key" msgstr "Ryšių schema" -#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:738 +#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:734 msgid "Relational display field" msgstr "" -#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:872 +#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:868 msgid "Show binary contents" msgstr "" -#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:873 +#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:869 msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:871 +#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:867 msgid "Show binary contents as HEX" msgstr "" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:375 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:371 #: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320 msgid "Hide" msgstr "Paslėpti" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:508 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:504 #: libraries/tbl_properties.inc.php:144 transformation_overview.php:47 msgid "Browser transformation" msgstr "Naršyklės transformacija" #: libraries/display_tbl.lib.php:1126 libraries/display_tbl.lib.php:1130 -#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:308 +#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:304 msgid "Execute bookmarked query" msgstr "Įvykdyti išsaugotą užklausą" #: libraries/display_tbl.lib.php:1145 libraries/display_tbl.lib.php:1157 -#: libraries/messages.inc.php:244 +#: libraries/messages.inc.php:240 msgid "The row has been deleted" msgstr "Eilutė ištrinta" #: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056 -#: libraries/messages.inc.php:460 server_processlist.php:71 +#: libraries/messages.inc.php:456 server_processlist.php:71 #: tbl_row_action.php:64 msgid "Kill" msgstr "Stabdyti procesą" -#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:849 +#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:845 msgid "in query" msgstr "užklausą vykdoma" -#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:881 +#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:877 msgid "Showing rows" msgstr "Rodomi įrašai" -#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1113 +#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1109 msgid "total" msgstr " iš viso " -#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:727 +#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:723 #: sql.php:524 #, php-format msgid "Query took %01.4f sec" msgstr "Užklausa užtruko %01.4f sek." -#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:135 +#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:131 #: 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:471 msgid "Change" msgstr "Redaguoti" -#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:724 +#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:720 msgid "Query results operations" msgstr "Veiksmai su užklausos rezultatais" -#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:671 +#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:667 msgid "Print view (with full texts)" msgstr "Spausdinti rezultatus (su pilnais tekstais)" -#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:482 +#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:478 msgid "Link not found" msgstr "Sąryšis nerastas" -#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1224 +#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1220 #: main.php:228 msgid "Version information" msgstr "Versijos informacija" -#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:423 +#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:419 msgid "Data home directory" msgstr "" -#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:424 +#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:420 msgid "The common part of the directory path for all InnoDB data files." msgstr "Bendra direktorijų kelio dalis visiems InnoDB duomenų failams." -#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:422 +#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:418 msgid "Data files" msgstr "Duomenų failai" -#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:418 +#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:414 msgid "Autoextend increment" msgstr "" -#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:419 +#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:415 msgid "" " The increment size for extending the size of an autoextending tablespace " "when it becomes full." msgstr "" -#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:420 +#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:416 msgid "Buffer pool size" msgstr "Buferio pool'o dydis" -#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:421 +#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:417 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." msgstr "" -#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:112 +#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:108 msgid "Buffer Pool" msgstr "Buferio Pool'as" -#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:426 +#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:422 #: server_status.php:306 msgid "InnoDB Status" msgstr "InnoDB būsena" -#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:113 +#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:109 msgid "Buffer Pool Usage" msgstr "Buferio Pool'o naudojimas" -#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1114 +#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1110 #: server_databases.php:137 server_databases.php:305 server_status.php:414 #: server_status.php:475 server_status.php:496 tbl_printview.php:351 #: tbl_structure.php:697 msgid "Total" msgstr "Viso" -#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:425 +#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:421 msgid "pages" msgstr "puslapiai" -#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:343 +#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:339 msgid "Free pages" msgstr "Tušti puslapiai" -#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:259 +#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:255 #, fuzzy msgid "Dirty pages" msgstr "Tušti puslapiai" -#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:230 +#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:226 msgid "Pages containing data" msgstr "Puslapiai su duomenimis" -#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:598 +#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:594 #, fuzzy msgid "Pages to be flushed" msgstr "Lentelės buferis %s išvalytas" -#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:119 +#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:115 #, fuzzy msgid "Busy pages" msgstr "Tušti puslapiai" -#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:467 +#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:463 msgid "Latched pages" msgstr "" -#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:111 +#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:107 #, fuzzy msgid "Buffer Pool Activity" msgstr "Buferio pool'o dydis" -#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:731 +#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:727 msgid "Read requests" msgstr "Read užklausos" -#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1244 +#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1240 msgid "Write requests" msgstr "Write užklausos" -#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:115 +#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:111 msgid "Read misses" msgstr "" -#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:117 +#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:113 msgid "Write waits" msgstr "" -#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:114 +#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:110 msgid "Read misses in %" msgstr "" -#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:116 +#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:112 msgid "Write waits in %" msgstr "" -#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:522 +#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:518 msgid "Data pointer size" msgstr "" -#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:523 +#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:519 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." msgstr "" -#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:528 +#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:524 msgid "Automatic recovery mode" msgstr "Automatinio atstatymo režimas" -#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:529 +#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:525 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." @@ -2572,11 +2582,11 @@ msgstr "" "Režimas, skirtas automatiniam nusprogusių MyISAM lentelių atstatymui, kuris " "nurodomas per --myisam-recover serverio startavimo parametrą." -#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:527 +#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:523 msgid "Maximum size for temporary sort files" msgstr "Maksimalus laikinų rūšiavimo failų dydis" -#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:526 +#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:522 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " @@ -2585,22 +2595,22 @@ msgstr "" "Maksimalus MySQL'ui leistinas laikinų failų dydis perkuriant MyISAM indeksus " "(vykdant REPAIR TABLE, ALTER TABLE arba LOAD DATA INFILE)." -#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:525 +#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:521 msgid "Maximum size for temporary files on index creation" msgstr "Maksimalus laikinų failų dydis kuriant indeksus" -#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:524 +#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:520 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " "method." msgstr "" -#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:531 +#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:527 msgid "Repair threads" msgstr "" -#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:530 +#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:526 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." @@ -2608,83 +2618,83 @@ msgstr "" "Jei ši reikšmė yra didesnė už 1, vykdant Repair, rūšiavimo procesas MyISAM " "lentelių indeksus kuria lygegrečiai (kiekvieną indeksą savo gijoje)." -#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:533 +#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:529 msgid "Sort buffer size" msgstr "Rūšiavimo buferio dydis" -#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:532 +#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:528 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." msgstr "" -#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:620 +#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:616 msgid "Index cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:619 +#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:615 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." msgstr "" -#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:630 +#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:626 msgid "Record cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:629 +#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:625 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " "to the handle data (.xtd) and row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:624 +#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:620 #, fuzzy msgid "Log cache size" msgstr "Rūšiavimo buferio dydis" -#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:623 +#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:619 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:628 +#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:624 msgid "Log file threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:627 +#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:623 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:634 +#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:630 msgid "Transaction buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:633 +#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:629 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." msgstr "" -#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:611 +#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:607 msgid "Checkpoint frequency" msgstr "" -#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:612 +#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:608 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." msgstr "" -#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:615 +#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:611 msgid "Data log threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:616 +#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:612 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -2692,49 +2702,49 @@ msgid "" "that can be stored in the database." msgstr "" -#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:618 +#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:614 msgid "Garbage threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:617 +#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:613 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." msgstr "" -#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:622 +#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:618 #, fuzzy msgid "Log buffer size" msgstr "Rūšiavimo buferio dydis" -#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:621 +#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:617 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " "required to write a data log." msgstr "" -#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:613 +#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:609 msgid "Data file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:614 +#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:610 msgid "The grow size of the handle data (.xtd) files." msgstr "" -#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:632 +#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:628 msgid "Row file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:631 +#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:627 msgid "The grow size of the row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:626 +#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:622 msgid "Log file count" msgstr "" -#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:625 +#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:621 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -2744,19 +2754,19 @@ msgstr "" #: libraries/export/htmlword.php:132 libraries/export/odt.php:168 #: libraries/export/sql.php:881 libraries/export/texytext.php:130 -#: libraries/messages.inc.php:275 +#: libraries/messages.inc.php:271 msgid "Dumping data for table" msgstr "Sukurta duomenų kopija lentelei" #: libraries/export/htmlword.php:185 libraries/export/odt.php:238 #: libraries/export/sql.php:785 libraries/export/texytext.php:177 -#: libraries/messages.inc.php:1086 +#: libraries/messages.inc.php:1082 msgid "Table structure for table" msgstr "Sukurta duomenų struktūra lentelei" #: libraries/export/latex.php:125 libraries/export/sql.php:232 #: libraries/export/xml.php:102 libraries/header_printview.inc.php:57 -#: libraries/messages.inc.php:381 libraries/replication_gui.lib.php:63 +#: libraries/messages.inc.php:377 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:170 libraries/replication_gui.lib.php:265 #: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325 #: server_privileges.php:692 server_privileges.php:695 @@ -2768,187 +2778,187 @@ msgstr "Darbinė stotis" #: libraries/export/latex.php:130 libraries/export/sql.php:233 #: libraries/export/xml.php:107 libraries/header_printview.inc.php:59 -#: libraries/messages.inc.php:354 +#: libraries/messages.inc.php:350 msgid "Generation Time" msgstr "Atlikimo laikas" #: libraries/export/latex.php:131 libraries/export/sql.php:235 -#: libraries/export/xml.php:108 libraries/messages.inc.php:864 main.php:186 +#: libraries/export/xml.php:108 libraries/messages.inc.php:860 main.php:186 msgid "Server version" msgstr "Serverio versija" #: libraries/export/latex.php:132 libraries/export/sql.php:236 -#: libraries/export/xml.php:109 libraries/messages.inc.php:651 +#: libraries/export/xml.php:109 libraries/messages.inc.php:647 msgid "PHP Version" msgstr "PHP versija" #: libraries/export/latex.php:201 libraries/export/sql.php:868 -#: libraries/messages.inc.php:226 server_databases.php:127 +#: libraries/messages.inc.php:222 server_databases.php:127 #: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317 #: tbl_structure.php:666 msgid "Data" msgstr "Duomenys" -#: libraries/export/odt.php:318 libraries/messages.inc.php:506 +#: libraries/export/odt.php:318 libraries/messages.inc.php:502 #: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "MIME tipai" -#: libraries/export/sql.php:387 libraries/messages.inc.php:711 +#: libraries/export/sql.php:387 libraries/messages.inc.php:707 msgid "Procedures" msgstr "Procedūros" -#: libraries/export/sql.php:401 libraries/messages.inc.php:348 +#: libraries/export/sql.php:401 libraries/messages.inc.php:344 msgid "Functions" msgstr "Funkcijos" -#: libraries/export/sql.php:618 libraries/messages.inc.php:174 +#: libraries/export/sql.php:618 libraries/messages.inc.php:170 msgid "Constraints for dumped tables" msgstr "Apribojimai eksportuotom lentelėm" -#: libraries/export/sql.php:627 libraries/messages.inc.php:175 +#: libraries/export/sql.php:627 libraries/messages.inc.php:171 msgid "Constraints for table" msgstr "Apribojimai lentelei" -#: libraries/export/sql.php:727 libraries/messages.inc.php:512 +#: libraries/export/sql.php:727 libraries/messages.inc.php:508 msgid "MIME TYPES FOR TABLE" msgstr "MIME tipai lentelei" -#: libraries/export/sql.php:739 libraries/messages.inc.php:743 +#: libraries/export/sql.php:739 libraries/messages.inc.php:739 msgid "RELATIONS FOR TABLE" msgstr "RELATIONS FOR TABLE" -#: libraries/export/sql.php:796 libraries/messages.inc.php:1178 +#: libraries/export/sql.php:796 libraries/messages.inc.php:1174 #: libraries/tbl_triggers.lib.php:19 msgid "Triggers" msgstr "" -#: libraries/export/sql.php:808 libraries/messages.inc.php:1046 +#: libraries/export/sql.php:808 libraries/messages.inc.php:1042 #, fuzzy msgid "Structure for view" msgstr "Tik struktūra" -#: libraries/export/sql.php:817 libraries/messages.inc.php:1029 +#: libraries/export/sql.php:817 libraries/messages.inc.php:1025 #, fuzzy msgid "Stand-in structure for view" msgstr "Tik struktūra" #: libraries/footer.inc.php:184 libraries/footer.inc.php:195 -#: libraries/footer.inc.php:198 libraries/messages.inc.php:586 +#: libraries/footer.inc.php:198 libraries/messages.inc.php:582 msgid "Open new phpMyAdmin window" msgstr "Atverti naują phpMyAdmin langą" -#: libraries/header.inc.php:115 libraries/messages.inc.php:542 +#: libraries/header.inc.php:115 libraries/messages.inc.php:538 #, fuzzy msgid "New table" msgstr "No tables" #: libraries/header_printview.inc.php:50 libraries/header_printview.inc.php:55 -#: libraries/messages.inc.php:1024 +#: libraries/messages.inc.php:1020 msgid "SQL result" msgstr "SQL rezultatas" -#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:350 +#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:346 msgid "Generated by" msgstr "Generavo:" #: libraries/header_printview.inc.php:63 libraries/import.lib.php:145 -#: libraries/messages.inc.php:820 navigation.php:652 navigation.php:674 +#: libraries/messages.inc.php:816 navigation.php:652 navigation.php:674 #: server_databases.php:122 tbl_printview.php:394 tbl_structure.php:366 #: tbl_structure.php:778 msgid "Rows" msgstr "Eilutės" -#: libraries/import.lib.php:150 libraries/messages.inc.php:285 sql.php:520 +#: libraries/import.lib.php:150 libraries/messages.inc.php:281 sql.php:520 #: tbl_change.php:181 tbl_get_field.php:35 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL gražino tuščią rezultatų rinkinį (nėra eilučių)." -#: libraries/import.lib.php:1078 libraries/messages.inc.php:399 +#: libraries/import.lib.php:1078 libraries/messages.inc.php:395 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1079 libraries/messages.inc.php:400 +#: libraries/import.lib.php:1079 libraries/messages.inc.php:396 msgid "View a structure`s contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1080 libraries/messages.inc.php:401 +#: libraries/import.lib.php:1080 libraries/messages.inc.php:397 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1081 libraries/messages.inc.php:402 +#: libraries/import.lib.php:1081 libraries/messages.inc.php:398 msgid "Edit its structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1084 libraries/messages.inc.php:362 +#: libraries/import.lib.php:1084 libraries/messages.inc.php:358 msgid "Go to database" msgstr "Eiti į duomenų bazę" #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:869 +#: libraries/messages.inc.php:865 msgid "settings" msgstr "nustatymai" -#: libraries/import.lib.php:1106 libraries/messages.inc.php:363 +#: libraries/import.lib.php:1106 libraries/messages.inc.php:359 msgid "Go to table" msgstr "Eiti į lentelę" -#: libraries/import.lib.php:1109 libraries/messages.inc.php:1047 +#: libraries/import.lib.php:1109 libraries/messages.inc.php:1043 #, fuzzy msgid "structure" msgstr "Struktūra" -#: libraries/import.lib.php:1115 libraries/messages.inc.php:364 +#: libraries/import.lib.php:1115 libraries/messages.inc.php:360 msgid "Go to view" msgstr "" #: libraries/import/csv.php:58 libraries/import/csv.php:70 #: libraries/import/csv.php:74 libraries/import/csv.php:78 -#: libraries/messages.inc.php:442 +#: libraries/messages.inc.php:438 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "" -#: libraries/import/csv.php:59 libraries/messages.inc.php:323 +#: libraries/import/csv.php:59 libraries/messages.inc.php:319 msgid "Fields terminated by" msgstr "Laukų pabaigos žymė" -#: libraries/import/csv.php:71 libraries/messages.inc.php:320 +#: libraries/import/csv.php:71 libraries/messages.inc.php:316 msgid "Fields enclosed by" msgstr "Laukų reikšmės apskliaustos simboliais" -#: libraries/import/csv.php:75 libraries/messages.inc.php:321 +#: libraries/import/csv.php:75 libraries/messages.inc.php:317 msgid "Fields escaped by" msgstr "Laukų reikšmės baigiasi simboliu" -#: libraries/import/csv.php:79 libraries/messages.inc.php:481 +#: libraries/import/csv.php:79 libraries/messages.inc.php:477 msgid "Lines terminated by" msgstr "Eilutės pabaigos žymė" -#: libraries/import/csv.php:119 libraries/messages.inc.php:439 +#: libraries/import/csv.php:119 libraries/messages.inc.php:435 #, php-format msgid "Invalid column (%s) specified!" msgstr "" #: libraries/import/csv.php:177 libraries/import/csv.php:424 -#: libraries/messages.inc.php:441 +#: libraries/messages.inc.php:437 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/import/csv.php:312 libraries/messages.inc.php:440 +#: libraries/import/csv.php:312 libraries/messages.inc.php:436 #, php-format msgid "Invalid field count in CSV input on line %d." msgstr "" -#: libraries/import/ldi.php:55 libraries/messages.inc.php:446 +#: libraries/import/ldi.php:55 libraries/messages.inc.php:442 msgid "This plugin does not support compressed imports!" msgstr "" #: libraries/import/xml.php:74 libraries/import/xml.php:130 -#: libraries/messages.inc.php:1247 +#: libraries/messages.inc.php:1243 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -2978,323 +2988,313 @@ msgstr "" msgid "ltr" msgstr "ltr" -#. l10n: Thousands separator -#: libraries/messages.inc.php:21 -msgid "," -msgstr " " - -#. l10n: Decimal separator -#: libraries/messages.inc.php:23 -msgid "." -msgstr "," - -#: libraries/messages.inc.php:25 server_status.php:461 +#: libraries/messages.inc.php:21 server_status.php:461 msgid "Aborted" msgstr "Nutraukta" -#: libraries/messages.inc.php:28 main.php:68 +#: libraries/messages.inc.php:24 main.php:68 msgid "Actions" msgstr "Veiksmai" -#: libraries/messages.inc.php:34 libraries/tbl_properties.inc.php:780 +#: libraries/messages.inc.php:30 libraries/tbl_properties.inc.php:780 #: tbl_structure.php:543 #, php-format msgid "Add %s field(s)" msgstr "Pridėti %s lauką(-us)" -#: libraries/messages.inc.php:35 +#: libraries/messages.inc.php:31 msgid "Add custom comment into header (\\n splits lines)" msgstr "Įterpti savo komentarą į header sritį (eilučių skirtukas \\n )" -#: libraries/messages.inc.php:36 +#: libraries/messages.inc.php:32 msgid "Add into comments" msgstr "Pridėti į komentarus" -#: libraries/messages.inc.php:37 tbl_structure.php:541 +#: libraries/messages.inc.php:33 tbl_structure.php:541 msgid "Add new field" msgstr "Įterpti naują laukelį(ius)" -#: libraries/messages.inc.php:38 server_privileges.php:1886 +#: libraries/messages.inc.php:34 server_privileges.php:1886 msgid "Add privileges on the following database" msgstr "Sukurti privilegijas šiai duombazei" -#: libraries/messages.inc.php:39 server_privileges.php:1907 +#: libraries/messages.inc.php:35 server_privileges.php:1907 msgid "Add privileges on the following table" msgstr "Sukurti privilegijas šiai lentelei" -#: libraries/messages.inc.php:40 tbl_select.php:288 +#: libraries/messages.inc.php:36 tbl_select.php:288 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Įterpkite paieškos sąlygas į \"where\" sakinį:" -#: libraries/messages.inc.php:41 tbl_indexes.php:251 +#: libraries/messages.inc.php:37 tbl_indexes.php:251 #, php-format msgid "Add to index  %s column(s)" msgstr "Įterpti indeksui papildomus  %s stulpelį(ius)" -#: libraries/messages.inc.php:42 server_privileges.php:1570 +#: libraries/messages.inc.php:38 server_privileges.php:1570 #: server_privileges.php:1594 server_privileges.php:1988 #: server_privileges.php:2177 msgid "Add a new User" msgstr "Sukurti naują vartotoją" -#: libraries/messages.inc.php:43 server_privileges.php:931 +#: libraries/messages.inc.php:39 server_privileges.php:931 msgid "You have added a new user." msgstr "Jūs sukūrėte naują vartotoją." -#: libraries/messages.inc.php:44 server_privileges.php:571 +#: libraries/messages.inc.php:40 server_privileges.php:571 msgid "Administration" msgstr "Administracija" -#: libraries/messages.inc.php:45 tbl_structure.php:557 +#: libraries/messages.inc.php:41 tbl_structure.php:557 #, php-format msgid "After %s" msgstr "Po %s" -#: libraries/messages.inc.php:46 tbl_change.php:1147 +#: libraries/messages.inc.php:42 tbl_change.php:1147 msgid "Go back to previous page" msgstr "Sugrįžti į buvusį puslapį" -#: libraries/messages.inc.php:47 tbl_change.php:1148 +#: libraries/messages.inc.php:43 tbl_change.php:1148 msgid "Insert another new row" msgstr "Įterpti kitą naują eilutę" -#: libraries/messages.inc.php:48 tbl_change.php:1160 +#: libraries/messages.inc.php:44 tbl_change.php:1160 msgid "Edit next row" msgstr "Redaguoti kitą įrašą" -#: libraries/messages.inc.php:49 tbl_change.php:1152 +#: libraries/messages.inc.php:45 tbl_change.php:1152 msgid "Go back to this page" msgstr "Grįžti atgal į šį puslapį" -#: libraries/messages.inc.php:50 querywindow.php:115 +#: libraries/messages.inc.php:46 querywindow.php:115 msgid "All" msgstr "Viską" -#: libraries/messages.inc.php:53 tbl_operations.php:249 +#: libraries/messages.inc.php:49 tbl_operations.php:249 msgid "Alter table order by" msgstr "Pakeisti lentelės rikiavimą pagal:" -#: libraries/messages.inc.php:54 tbl_operations.php:660 +#: libraries/messages.inc.php:50 tbl_operations.php:660 msgid "Analyze" msgstr "Analizuoti" -#: libraries/messages.inc.php:57 +#: libraries/messages.inc.php:53 msgid "and" msgstr "ir" -#: libraries/messages.inc.php:59 pmd_general.php:87 +#: libraries/messages.inc.php:55 pmd_general.php:87 msgid "Angular links" msgstr "" -#: libraries/messages.inc.php:60 tbl_structure.php:401 tbl_structure.php:415 +#: libraries/messages.inc.php:56 tbl_structure.php:401 tbl_structure.php:415 #: tbl_structure.php:429 #, php-format msgid "An index has been added on %s" msgstr "Indeksas sukurtas %s stulpeliui" -#: libraries/messages.inc.php:61 server_privileges.php:1521 +#: libraries/messages.inc.php:57 server_privileges.php:1521 #: server_privileges.php:2123 msgid "Any" msgstr "Bet kurį(ią)" -#: libraries/messages.inc.php:62 libraries/replication_gui.lib.php:298 +#: libraries/messages.inc.php:58 libraries/replication_gui.lib.php:298 #: server_privileges.php:725 msgid "Any host" msgstr "Bet kurį prisijungimo adresą" -#: libraries/messages.inc.php:63 libraries/replication_gui.lib.php:250 +#: libraries/messages.inc.php:59 libraries/replication_gui.lib.php:250 #: server_privileges.php:677 msgid "Any user" msgstr "Bet kurį vartotoją" -#: libraries/messages.inc.php:64 server_synchronize.php:449 +#: libraries/messages.inc.php:60 server_synchronize.php:449 #: server_synchronize.php:894 msgid "Apply Selected Changes" msgstr "Įrašyti pakeitimus" -#: libraries/messages.inc.php:66 tbl_structure.php:386 +#: libraries/messages.inc.php:62 tbl_structure.php:386 #, php-format msgid "A primary key has been added on %s" msgstr "Stulpeliui %s sukurtas PIRMINIS raktas" -#: libraries/messages.inc.php:67 libraries/mysql_charsets.lib.php:368 +#: libraries/messages.inc.php:63 libraries/mysql_charsets.lib.php:368 msgid "Arabic" msgstr "Arabų" -#: libraries/messages.inc.php:68 libraries/mysql_charsets.lib.php:359 +#: libraries/messages.inc.php:64 libraries/mysql_charsets.lib.php:359 msgid "Armenian" msgstr "Armėnų" -#: libraries/messages.inc.php:70 libraries/tbl_properties.inc.php:394 +#: libraries/messages.inc.php:66 libraries/tbl_properties.inc.php:394 msgid "As defined:" msgstr "Kaip nurodyta:" -#: libraries/messages.inc.php:71 tbl_structure.php:556 +#: libraries/messages.inc.php:67 tbl_structure.php:556 msgid "At Beginning of Table" msgstr "Lentelės pradžioje" -#: libraries/messages.inc.php:72 tbl_structure.php:555 +#: libraries/messages.inc.php:68 tbl_structure.php:555 msgid "At End of Table" msgstr "Lentelės pabaigoje" -#: libraries/messages.inc.php:73 libraries/tbl_properties.inc.php:108 +#: libraries/messages.inc.php:69 libraries/tbl_properties.inc.php:108 #: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:144 #: tbl_structure.php:180 msgid "Attributes" msgstr "Atributai" -#: libraries/messages.inc.php:74 pdf_pages.php:303 pdf_pages.php:306 +#: libraries/messages.inc.php:70 pdf_pages.php:303 pdf_pages.php:306 msgid "Automatic layout" msgstr "Automatinis išdėstymas" -#: libraries/messages.inc.php:77 libraries/mysql_charsets.lib.php:354 +#: libraries/messages.inc.php:73 libraries/mysql_charsets.lib.php:354 msgid "Baltic" msgstr "Baltų" -#: libraries/messages.inc.php:78 libraries/sqlparser.lib.php:175 +#: libraries/messages.inc.php:74 libraries/sqlparser.lib.php:175 msgid "BEGIN CUT" msgstr "KIRPIMO PRADŽIA" -#: libraries/messages.inc.php:79 libraries/sqlparser.lib.php:179 +#: libraries/messages.inc.php:75 libraries/sqlparser.lib.php:179 msgid "BEGIN RAW" msgstr "RAW PRADŽIA" -#: libraries/messages.inc.php:80 libraries/mysql_charsets.lib.php:201 +#: libraries/messages.inc.php:76 libraries/mysql_charsets.lib.php:201 #: libraries/mysql_charsets.lib.php:402 tbl_change.php:518 msgid "Binary" msgstr "Dvejetainis" -#: libraries/messages.inc.php:81 tbl_change.php:894 +#: libraries/messages.inc.php:77 tbl_change.php:894 msgid "Binary - do not edit" msgstr "Dvejetainis - nekeisti" -#: libraries/messages.inc.php:82 libraries/server_links.inc.php:76 +#: libraries/messages.inc.php:78 libraries/server_links.inc.php:76 #: server_binlog.php:110 server_status.php:253 test/theme.php:121 msgid "Binary log" msgstr "Binarinis logas" -#: libraries/messages.inc.php:83 server_binlog.php:217 +#: libraries/messages.inc.php:79 server_binlog.php:217 msgid "Event type" msgstr "Įvykio tipas" -#: libraries/messages.inc.php:84 server_binlog.php:220 +#: libraries/messages.inc.php:80 server_binlog.php:220 msgid "Information" msgstr "Informacija" -#: libraries/messages.inc.php:85 server_binlog.php:215 +#: libraries/messages.inc.php:81 server_binlog.php:215 msgid "Log name" msgstr "Logo pavadinimas" -#: libraries/messages.inc.php:86 server_binlog.php:219 +#: libraries/messages.inc.php:82 server_binlog.php:219 msgid "Original position" msgstr "Pirminė padėtis" -#: libraries/messages.inc.php:87 server_binlog.php:216 +#: libraries/messages.inc.php:83 server_binlog.php:216 msgid "Position" msgstr "Padėtis" -#: libraries/messages.inc.php:88 libraries/replication_gui.lib.php:169 +#: libraries/messages.inc.php:84 libraries/replication_gui.lib.php:169 #: server_binlog.php:218 msgid "Server ID" msgstr "Serverio ID" -#: libraries/messages.inc.php:92 +#: libraries/messages.inc.php:88 msgctxt "$strBLOBRepositoryDisabled" msgid "Disabled" msgstr "Išjungta" -#: libraries/messages.inc.php:95 +#: libraries/messages.inc.php:91 msgctxt "$strBLOBRepositoryEnabled" msgid "Enabled" msgstr "Įjungta" -#: libraries/messages.inc.php:97 tbl_change.php:888 +#: libraries/messages.inc.php:93 tbl_change.php:888 msgid "Remove BLOB Repository Reference" msgstr "" -#: libraries/messages.inc.php:98 +#: libraries/messages.inc.php:94 msgctxt "$strBLOBRepositoryRepair" msgid "Repair" msgstr "Taisyti" -#: libraries/messages.inc.php:99 tbl_change.php:987 +#: libraries/messages.inc.php:95 tbl_change.php:987 msgid "Upload to BLOB repository" msgstr "" -#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:359 +#: libraries/messages.inc.php:96 libraries/sql_query_form.lib.php:359 #: sql.php:677 msgid "Let every user access this bookmark" msgstr "Leisti kitiems vartotojams naudotis šia žyme" -#: libraries/messages.inc.php:103 sql.php:671 +#: libraries/messages.inc.php:99 sql.php:671 msgid "Label" msgstr "Nuorodos Antraštė" -#: libraries/messages.inc.php:104 libraries/sql_query_form.lib.php:433 +#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:433 msgid "Bookmarked SQL query" msgstr "Sukurti nuoroda SQL-užklausai" -#: libraries/messages.inc.php:105 libraries/sql_query_form.lib.php:365 +#: libraries/messages.inc.php:101 libraries/sql_query_form.lib.php:365 msgid "Replace existing bookmark of same name" msgstr "Pakeisti jau egzistuojančią žymę tuo pačiu vardu" -#: libraries/messages.inc.php:106 libraries/sql_query_form.lib.php:352 +#: libraries/messages.inc.php:102 libraries/sql_query_form.lib.php:352 #: sql.php:665 sql.php:666 sql.php:683 msgid "Bookmark this SQL query" msgstr "Sukurti nuorodą" -#: libraries/messages.inc.php:107 libraries/sql_query_form.lib.php:466 +#: libraries/messages.inc.php:103 libraries/sql_query_form.lib.php:466 msgid "View only" msgstr "Peržiūra" -#: libraries/messages.inc.php:109 tbl_structure.php:161 +#: libraries/messages.inc.php:105 tbl_structure.php:161 msgid "Browse distinct values" msgstr "Peržiūrėti skirtingas reikšmes" -#: libraries/messages.inc.php:110 tbl_change.php:252 tbl_select.php:27 +#: libraries/messages.inc.php:106 tbl_change.php:252 tbl_select.php:27 #: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34 msgid "Browse foreign values" msgstr "Naršyti išorines reikšmes" -#: libraries/messages.inc.php:118 libraries/mysql_charsets.lib.php:213 +#: libraries/messages.inc.php:114 libraries/mysql_charsets.lib.php:213 msgid "Bulgarian" msgstr "Bulgarų" -#: libraries/messages.inc.php:120 +#: libraries/messages.inc.php:116 msgid "\"bzipped\"" msgstr "\"bzip\"" -#: libraries/messages.inc.php:122 +#: libraries/messages.inc.php:118 msgid "Calendar" msgstr "Kalendorius" -#: libraries/messages.inc.php:129 tbl_indexes.php:75 +#: libraries/messages.inc.php:125 tbl_indexes.php:75 msgid "Can't rename index to PRIMARY!" msgstr "Indeksą pervadinti PIRMINIU nepavyko!" -#: libraries/messages.inc.php:132 libraries/mysql_charsets.lib.php:223 +#: libraries/messages.inc.php:128 libraries/mysql_charsets.lib.php:223 #: libraries/mysql_charsets.lib.php:409 msgid "case-insensitive" msgstr "simbolių registras nesvarbus" -#: libraries/messages.inc.php:133 libraries/mysql_charsets.lib.php:226 +#: libraries/messages.inc.php:129 libraries/mysql_charsets.lib.php:226 #: libraries/mysql_charsets.lib.php:411 msgid "case-sensitive" msgstr "simbolių registras svarbus" -#: libraries/messages.inc.php:134 libraries/mysql_charsets.lib.php:332 +#: libraries/messages.inc.php:130 libraries/mysql_charsets.lib.php:332 msgid "Central European" msgstr "Centrinės Europos" -#: libraries/messages.inc.php:136 server_privileges.php:1969 +#: libraries/messages.inc.php:132 server_privileges.php:1969 msgid "... keep the old one." msgstr "... palikti seną vartotoją." -#: libraries/messages.inc.php:137 server_privileges.php:1967 +#: libraries/messages.inc.php:133 server_privileges.php:1967 msgid "Create a new user with the same privileges and ..." msgstr "Sukurti naują vartotoją su tom pačiom privilegijom ir ..." -#: libraries/messages.inc.php:138 server_privileges.php:1972 +#: libraries/messages.inc.php:134 server_privileges.php:1972 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -3302,252 +3302,252 @@ msgstr "" " ... pašalinti seną vartotoją iš vartotojų lentelės ir poto perkrauti " "privilegijas" -#: libraries/messages.inc.php:139 server_privileges.php:1970 +#: libraries/messages.inc.php:135 server_privileges.php:1970 msgid " ... delete the old one from the user tables." msgstr " ... pašalinti seną vartotoją iš vartotojų lentelės." -#: libraries/messages.inc.php:140 server_privileges.php:1971 +#: libraries/messages.inc.php:136 server_privileges.php:1971 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "" " ... panaikinti visas privilegijas iš seno vartotojo ir poto jį pašalinti." -#: libraries/messages.inc.php:141 server_privileges.php:1964 +#: libraries/messages.inc.php:137 server_privileges.php:1964 msgid "Change Login Information / Copy User" msgstr "Pakeisti prisijungimo informaciją / Kopijuoti vartotojo duomenis" -#: libraries/messages.inc.php:144 libraries/mysql_charsets.lib.php:107 +#: libraries/messages.inc.php:140 libraries/mysql_charsets.lib.php:107 msgid "Charset" msgstr "Koduotė" -#: libraries/messages.inc.php:146 server_collations.php:40 +#: libraries/messages.inc.php:142 server_collations.php:40 msgid "Character Sets and Collations" msgstr "Simbolių rinkiniai ir Palyginimai" -#: libraries/messages.inc.php:147 libraries/server_links.inc.php:57 +#: libraries/messages.inc.php:143 libraries/server_links.inc.php:57 #: test/theme.php:109 msgid "Charsets" msgstr "Koduotės" -#: libraries/messages.inc.php:149 tbl_operations.php:661 +#: libraries/messages.inc.php:145 tbl_operations.php:661 #, fuzzy msgid "Check" msgstr "Pažymėti" -#: libraries/messages.inc.php:151 server_databases.php:293 +#: libraries/messages.inc.php:147 server_databases.php:293 #: server_databases.php:294 msgid "Check Privileges" msgstr "Patikrinti privilegijas" -#: libraries/messages.inc.php:152 server_databases.php:289 +#: libraries/messages.inc.php:148 server_databases.php:289 #, php-format msgid "Check privileges for database "%s"." msgstr "Patikrinti duombazės "%s" privilegijas." -#: libraries/messages.inc.php:154 pdf_pages.php:261 +#: libraries/messages.inc.php:150 pdf_pages.php:261 msgid "Please choose a page to edit" msgstr "Pasirinkite puslapį redagavimui" -#: libraries/messages.inc.php:157 +#: libraries/messages.inc.php:153 msgid "Displaying Column Comments" msgstr "Stulpelių komentarų išvedimas" -#: libraries/messages.inc.php:159 pdf_pages.php:483 view_create.php:148 +#: libraries/messages.inc.php:155 pdf_pages.php:483 view_create.php:148 msgid "Column names" msgstr "Stulpelių vardai" -#: libraries/messages.inc.php:160 server_privileges.php:1685 +#: libraries/messages.inc.php:156 server_privileges.php:1685 msgid "Column-specific privileges" msgstr "Specifinės stulpelių privilegijos" -#: libraries/messages.inc.php:164 +#: libraries/messages.inc.php:160 msgid "MySQL 4.0 compatible" msgstr "Suderinamas sy MySQL 4.0" -#: libraries/messages.inc.php:165 +#: libraries/messages.inc.php:161 msgid "Complete inserts" msgstr "Visiškas įterpimas" -#: libraries/messages.inc.php:168 +#: libraries/messages.inc.php:164 #, php-format msgid "Could not load default configuration from: \"%1$s\"" msgstr "Nepavyko užkrauti nustatymų failo iš \"%1$s\"" -#: libraries/messages.inc.php:169 main.php:306 +#: libraries/messages.inc.php:165 main.php:306 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: libraries/messages.inc.php:171 pdf_schema.php:672 +#: libraries/messages.inc.php:167 pdf_schema.php:672 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Nustatykite lentelės %s koordinates" -#: libraries/messages.inc.php:173 server_status.php:433 +#: libraries/messages.inc.php:169 server_status.php:433 msgid "Connections" msgstr "Prisijungimai" -#: libraries/messages.inc.php:179 tbl_operations.php:509 +#: libraries/messages.inc.php:175 tbl_operations.php:509 msgid "Copy table to (database.table):" msgstr "Kopijuoti lentelė į (duombazė.lentelė):" -#: libraries/messages.inc.php:180 tbl_move_copy.php:58 +#: libraries/messages.inc.php:176 tbl_move_copy.php:58 #, php-format msgid "Table %s has been copied to %s." msgstr "Letelė %s nukopijuota į %s." -#: libraries/messages.inc.php:181 tbl_move_copy.php:48 +#: libraries/messages.inc.php:177 tbl_move_copy.php:48 msgid "Can't copy table to same one!" msgstr "Negalima kopijuoti lentelės į ją pačią!" -#: libraries/messages.inc.php:182 server_synchronize.php:94 +#: libraries/messages.inc.php:178 server_synchronize.php:94 #, fuzzy msgid "Could not connect to the source" msgstr "Nepavyko prisijungti prie MySQL serverio" -#: libraries/messages.inc.php:183 server_synchronize.php:97 +#: libraries/messages.inc.php:179 server_synchronize.php:97 #, fuzzy msgid "Could not connect to the target" msgstr "Nepavyko prisijungti prie MySQL serverio" -#: libraries/messages.inc.php:184 server_processlist.php:24 +#: libraries/messages.inc.php:180 server_processlist.php:24 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" "phpMyAdmin negalėjo išjungti %s proceso. Gali būti jog jis jau užbaigė darbą." -#: libraries/messages.inc.php:187 +#: libraries/messages.inc.php:183 #, php-format msgid "Create an index on %s columns" msgstr "Sukurti indeksą  %s stulpeliui(iams)" -#: libraries/messages.inc.php:188 tbl_indexes.php:160 +#: libraries/messages.inc.php:184 tbl_indexes.php:160 msgid "Create a new index" msgstr "Sukurti naują indeksą" -#: libraries/messages.inc.php:191 pdf_pages.php:297 pmd_pdf.php:114 +#: libraries/messages.inc.php:187 pdf_pages.php:297 pmd_pdf.php:114 msgid "Create a page" msgstr "Sukurti naują puslapį" -#: libraries/messages.inc.php:192 +#: libraries/messages.inc.php:188 msgid "Creation of PDFs" msgstr "PDF failo generavimas" -#: libraries/messages.inc.php:193 pmd_general.php:74 pmd_general.php:306 +#: libraries/messages.inc.php:189 pmd_general.php:74 pmd_general.php:306 #, fuzzy msgid "Create relation" msgstr "Paskutinė versija" -#: libraries/messages.inc.php:194 pmd_general.php:71 +#: libraries/messages.inc.php:190 pmd_general.php:71 #: server_synchronize.php:429 server_synchronize.php:872 msgid "Create table" msgstr "Sukurti lentelę" -#: libraries/messages.inc.php:195 +#: libraries/messages.inc.php:191 #, fuzzy msgctxt "$strCreateTableShort" msgid "Create table" msgstr "Sukurti lentelę" -#: libraries/messages.inc.php:196 server_privileges.php:1994 +#: libraries/messages.inc.php:192 server_privileges.php:1994 msgid "Database for user" msgstr "" -#: libraries/messages.inc.php:197 server_privileges.php:1999 +#: libraries/messages.inc.php:193 server_privileges.php:1999 msgid "Create database with same name and grant all privileges" msgstr "" -#: libraries/messages.inc.php:198 +#: libraries/messages.inc.php:194 #, fuzzy msgctxt "$strCreateUserDatabaseNone" msgid "None" msgstr "Nėra" -#: libraries/messages.inc.php:199 server_privileges.php:2003 +#: libraries/messages.inc.php:195 server_privileges.php:2003 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "Patikrinti duombazės "%s" privilegijas." -#: libraries/messages.inc.php:200 server_privileges.php:2000 +#: libraries/messages.inc.php:196 server_privileges.php:2000 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: libraries/messages.inc.php:201 +#: libraries/messages.inc.php:197 msgid "Creation/Update/Check dates" msgstr "Sukūrimo/Atnaujinimo/Peržiūros datos" -#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:229 +#: libraries/messages.inc.php:199 libraries/mysql_charsets.lib.php:229 msgid "Croatian" msgstr "Kroatų" -#: libraries/messages.inc.php:204 +#: libraries/messages.inc.php:200 msgid "CSV" msgstr "CSV" -#: libraries/messages.inc.php:205 libraries/server_synchronize.lib.php:1343 +#: libraries/messages.inc.php:201 libraries/server_synchronize.lib.php:1343 #: libraries/server_synchronize.lib.php:1369 msgid "Current server" msgstr "Dabartinis serveris" -#: libraries/messages.inc.php:206 main.php:159 +#: libraries/messages.inc.php:202 main.php:159 msgid "Custom color" msgstr "Pasirinkta spalva" -#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:365 +#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:365 msgid "Cyrillic" msgstr "Kirylica" -#: libraries/messages.inc.php:208 libraries/mysql_charsets.lib.php:232 +#: libraries/messages.inc.php:204 libraries/mysql_charsets.lib.php:232 msgid "Czech" msgstr "Čekų" -#: libraries/messages.inc.php:209 libraries/mysql_charsets.lib.php:383 +#: libraries/messages.inc.php:205 libraries/mysql_charsets.lib.php:383 msgid "Czech-Slovak" msgstr "Čekų-Slovakų" -#: libraries/messages.inc.php:211 libraries/mysql_charsets.lib.php:235 +#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:235 msgid "Danish" msgstr "Danų" -#: libraries/messages.inc.php:214 +#: libraries/messages.inc.php:210 msgid "Database export options" msgstr "Duombazės eksportavimo parinktys" -#: libraries/messages.inc.php:217 server_synchronize.php:122 +#: libraries/messages.inc.php:213 server_synchronize.php:122 #: server_synchronize.php:125 tbl_create.php:82 tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "'%s' duomenų bazė neegzistuoja." -#: libraries/messages.inc.php:219 server_databases.php:63 +#: libraries/messages.inc.php:215 server_databases.php:63 #, php-format msgid "%s databases have been dropped successfully." msgstr "Sėkmingai pašalintos %s duombazės." -#: libraries/messages.inc.php:220 libraries/server_synchronize.lib.php:1341 +#: libraries/messages.inc.php:216 libraries/server_synchronize.lib.php:1341 #: server_synchronize.php:1110 #, fuzzy msgid "Source database" msgstr "Eiti į duomenų bazę" -#: libraries/messages.inc.php:221 server_databases.php:88 +#: libraries/messages.inc.php:217 server_databases.php:88 msgid "Databases statistics" msgstr "Duombazių statistika" -#: libraries/messages.inc.php:222 server_databases.php:362 +#: libraries/messages.inc.php:218 server_databases.php:362 #: server_databases.php:363 msgid "Disable Statistics" msgstr "Leisti statistiką" -#: libraries/messages.inc.php:223 server_databases.php:358 +#: libraries/messages.inc.php:219 server_databases.php:358 #: server_databases.php:359 msgid "Enable Statistics" msgstr "Neleisti statistikos" -#: libraries/messages.inc.php:224 server_databases.php:366 +#: libraries/messages.inc.php:220 server_databases.php:366 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -3555,32 +3555,32 @@ msgstr "" "Pastaba: jeigu duombazės statistika įjungta - apkrovimas tarp www ir MySQL " "darbinių stočių, gali padidėti aukščiau normos." -#: libraries/messages.inc.php:225 libraries/server_synchronize.lib.php:1367 +#: libraries/messages.inc.php:221 libraries/server_synchronize.lib.php:1367 #: server_synchronize.php:1112 #, fuzzy msgid "Target database" msgstr "Paieška duombazėje" -#: libraries/messages.inc.php:228 server_synchronize.php:425 +#: libraries/messages.inc.php:224 server_synchronize.php:425 #: server_synchronize.php:868 #, fuzzy msgid "Data Difference" msgstr "Skirtumas" -#: libraries/messages.inc.php:231 server_synchronize.php:272 +#: libraries/messages.inc.php:227 server_synchronize.php:272 msgid "Data Synchronization" msgstr "Duomenų sinchronizacija" -#: libraries/messages.inc.php:235 server_privileges.php:526 +#: libraries/messages.inc.php:231 server_privileges.php:526 #: server_privileges.php:1679 msgid "Database-specific privileges" msgstr "Specifinės duombazių privilegijos" -#: libraries/messages.inc.php:237 server_privileges.php:2136 +#: libraries/messages.inc.php:233 server_privileges.php:2136 msgid "database-specific" msgstr "priklausantis nuo duombazės tipo" -#: libraries/messages.inc.php:240 libraries/tbl_properties.inc.php:106 +#: libraries/messages.inc.php:236 libraries/tbl_properties.inc.php:106 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" @@ -3588,32 +3588,32 @@ msgstr "" "Nenaudokite išskyrimo simbolių ar kabučiu, nurodydami reikšmę pagal " "nutylėjimą. Naudokitės šiuo formatu: a" -#: libraries/messages.inc.php:241 tbl_operations.php:589 +#: libraries/messages.inc.php:237 tbl_operations.php:589 msgid "Defragment table" msgstr "Defragmentuoti lentelę" -#: libraries/messages.inc.php:242 +#: libraries/messages.inc.php:238 msgid "Use delayed inserts" msgstr "Naudoti užlaikytus įterpimus" -#: libraries/messages.inc.php:245 server_privileges.php:1243 +#: libraries/messages.inc.php:241 server_privileges.php:1243 msgid "No users selected for deleting!" msgstr "Nepasirinta vartotojų trynimui!" -#: libraries/messages.inc.php:246 pmd_general.php:372 +#: libraries/messages.inc.php:242 pmd_general.php:372 msgid "Delete relation" msgstr "" -#: libraries/messages.inc.php:248 server_privileges.php:1232 +#: libraries/messages.inc.php:244 server_privileges.php:1232 #, php-format msgid "Deleting %s" msgstr "Šaliname: %s" -#: libraries/messages.inc.php:249 libraries/sql_query_form.lib.php:388 +#: libraries/messages.inc.php:245 libraries/sql_query_form.lib.php:388 msgid "Delimiter" msgstr "Skyriklis" -#: libraries/messages.inc.php:250 pdf_pages.php:506 +#: libraries/messages.inc.php:246 pdf_pages.php:506 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -3621,150 +3621,150 @@ msgstr "" "Šis puslapis turi nuorodų į lenteles, kurios jau neegzistuoja. Ar norite " "pašalinti šias nuorodas?" -#: libraries/messages.inc.php:254 pmd_help.php:29 +#: libraries/messages.inc.php:250 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." msgstr "" -#: libraries/messages.inc.php:256 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:252 libraries/mysql_charsets.lib.php:247 msgid "dictionary" msgstr "žodynas" -#: libraries/messages.inc.php:257 libraries/server_synchronize.lib.php:1348 +#: libraries/messages.inc.php:253 libraries/server_synchronize.lib.php:1348 msgid "Difference" msgstr "Skirtumas" -#: libraries/messages.inc.php:258 pmd_general.php:87 +#: libraries/messages.inc.php:254 pmd_general.php:87 msgid "Direct links" msgstr "" -#: libraries/messages.inc.php:261 +#: libraries/messages.inc.php:257 msgid "Disable foreign key checks" msgstr "Atsisakyti išorinių raktų tikrinimo" -#: libraries/messages.inc.php:262 +#: libraries/messages.inc.php:258 msgid "Display Features" msgstr "Išvedimo sąvybės" -#: libraries/messages.inc.php:263 tbl_select.php:301 +#: libraries/messages.inc.php:259 tbl_select.php:301 msgid "Display order:" msgstr "Atvaizdavimo tvarka:" -#: libraries/messages.inc.php:265 tbl_select.php:132 +#: libraries/messages.inc.php:261 tbl_select.php:132 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Vykdyti \"užklausą pagal pavyzdį\" (pakaitos simbolis: \"%\")" -#: libraries/messages.inc.php:266 +#: libraries/messages.inc.php:262 msgid "DocSQL" msgstr "" -#: libraries/messages.inc.php:268 +#: libraries/messages.inc.php:264 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/messages.inc.php:273 server_privileges.php:1579 +#: libraries/messages.inc.php:269 server_privileges.php:1579 #: server_privileges.php:1580 server_privileges.php:1581 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." -#: libraries/messages.inc.php:278 tbl_printview.php:382 tbl_structure.php:743 +#: libraries/messages.inc.php:274 tbl_printview.php:382 tbl_structure.php:743 msgid "dynamic" msgstr "dinaminis" -#: libraries/messages.inc.php:282 server_privileges.php:1324 +#: libraries/messages.inc.php:278 server_privileges.php:1324 #: server_privileges.php:1610 msgid "Edit Privileges" msgstr "Redaguoti privilegijas" -#: libraries/messages.inc.php:283 tbl_printview.php:341 tbl_structure.php:688 +#: libraries/messages.inc.php:279 tbl_printview.php:341 tbl_structure.php:688 msgid "Effective" msgstr "Efektyvus" -#: libraries/messages.inc.php:286 libraries/relation.lib.php:100 +#: libraries/messages.inc.php:282 libraries/relation.lib.php:100 msgid "Enabled" msgstr "Įjungta" -#: libraries/messages.inc.php:287 +#: libraries/messages.inc.php:283 msgid "Enclose export in a transaction" msgstr "Naudoti transakciją visam eksportui" -#: libraries/messages.inc.php:288 libraries/sqlparser.lib.php:177 +#: libraries/messages.inc.php:284 libraries/sqlparser.lib.php:177 msgid "END CUT" msgstr "KIRPIMO PABAIGA" -#: libraries/messages.inc.php:290 libraries/sqlparser.lib.php:183 +#: libraries/messages.inc.php:286 libraries/sqlparser.lib.php:183 msgid "END RAW" msgstr "RAW PABAIGA" -#: libraries/messages.inc.php:293 libraries/server_links.inc.php:61 +#: libraries/messages.inc.php:289 libraries/server_links.inc.php:61 #: test/theme.php:113 msgid "Engines" msgstr "Varikliai" -#: libraries/messages.inc.php:295 libraries/mysql_charsets.lib.php:238 +#: libraries/messages.inc.php:291 libraries/mysql_charsets.lib.php:238 msgid "English" msgstr "Anglų" -#: libraries/messages.inc.php:296 server_privileges.php:393 +#: libraries/messages.inc.php:292 server_privileges.php:393 #: server_privileges.php:535 server_privileges.php:1501 msgid " Note: MySQL privilege names are expressed in English " msgstr " Pastaba: MySQL privilegijų pavadinimai pateikiami anglų kalba" -#: libraries/messages.inc.php:298 libraries/zip_extension.lib.php:49 +#: libraries/messages.inc.php:294 libraries/zip_extension.lib.php:49 #: libraries/zip_extension.lib.php:51 libraries/zip_extension.lib.php:66 msgid "Error in ZIP archive:" msgstr "Klaida ZIP archyve:" -#: libraries/messages.inc.php:303 libraries/mysql_charsets.lib.php:241 +#: libraries/messages.inc.php:299 libraries/mysql_charsets.lib.php:241 msgid "Esperanto" msgstr "Esperanto" -#: libraries/messages.inc.php:304 libraries/mysql_charsets.lib.php:244 +#: libraries/messages.inc.php:300 libraries/mysql_charsets.lib.php:244 msgid "Estonian" msgstr "Estų" -#: libraries/messages.inc.php:305 libraries/tbl_triggers.lib.php:29 +#: libraries/messages.inc.php:301 libraries/tbl_triggers.lib.php:29 msgid "Event" msgstr "Įvykis" -#: libraries/messages.inc.php:307 +#: libraries/messages.inc.php:303 msgid "Excel edition" msgstr "Excel variantas" -#: libraries/messages.inc.php:311 pmd_pdf.php:85 +#: libraries/messages.inc.php:307 pmd_pdf.php:85 msgid "Export/Import to scale" msgstr "" -#: libraries/messages.inc.php:313 +#: libraries/messages.inc.php:309 msgid "Extended inserts" msgstr "Išplėstinis įterpimas" -#: libraries/messages.inc.php:314 pdf_schema.php:1267 pdf_schema.php:1288 +#: libraries/messages.inc.php:310 pdf_schema.php:1267 pdf_schema.php:1288 #: tbl_printview.php:147 tbl_structure.php:183 tbl_tracking.php:278 msgid "Extra" msgstr "Papildomai" -#: libraries/messages.inc.php:316 server_status.php:447 +#: libraries/messages.inc.php:312 server_status.php:447 msgid "Failed attempts" msgstr "Nepavykę bandymai" -#: libraries/messages.inc.php:318 tbl_structure.php:375 +#: libraries/messages.inc.php:314 tbl_structure.php:375 #, php-format msgid "Field %s has been dropped" msgstr "Laukas %s išmestas" -#: libraries/messages.inc.php:322 libraries/sql_query_form.lib.php:317 +#: libraries/messages.inc.php:318 libraries/sql_query_form.lib.php:317 msgid "Fields" msgstr "Lauką" -#: libraries/messages.inc.php:332 server_binlog.php:136 +#: libraries/messages.inc.php:328 server_binlog.php:136 msgid "Files" msgstr "Failai" -#: libraries/messages.inc.php:334 server_privileges.php:1597 +#: libraries/messages.inc.php:330 server_privileges.php:1597 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -3776,219 +3776,219 @@ msgstr "" "lentelės. Šiose lentelėse nurodytos teisės gali skirtis nuo nustatymų " "failuose nurodytų teisių. Todėl %sperkraukite teises%s, jeigu norite tęsti. " -#: libraries/messages.inc.php:335 server_status.php:289 +#: libraries/messages.inc.php:331 server_status.php:289 msgid "Flush query cache" msgstr "" -#: libraries/messages.inc.php:336 +#: libraries/messages.inc.php:332 msgid "Flush the table (\"FLUSH\")" msgstr "Išvalyti lentelę (\"FLUSH\")" -#: libraries/messages.inc.php:337 server_status.php:271 +#: libraries/messages.inc.php:333 server_status.php:271 msgid "Flush (close) all tables" msgstr "" -#: libraries/messages.inc.php:339 tbl_relation.php:279 +#: libraries/messages.inc.php:335 tbl_relation.php:279 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" -#: libraries/messages.inc.php:341 setup/lib/messages.inc.php:88 +#: libraries/messages.inc.php:337 setup/lib/messages.inc.php:88 #: tbl_printview.php:376 tbl_structure.php:738 msgid "Format" msgstr "Formatas" -#: libraries/messages.inc.php:344 server_replication.php:325 +#: libraries/messages.inc.php:340 server_replication.php:325 #, fuzzy msgid "Full start" msgstr "Fulltext" -#: libraries/messages.inc.php:345 server_replication.php:325 +#: libraries/messages.inc.php:341 server_replication.php:325 #, fuzzy msgid "Full stop" msgstr "Fulltext" -#: libraries/messages.inc.php:347 tbl_change.php:282 tbl_change.php:320 +#: libraries/messages.inc.php:343 tbl_change.php:282 tbl_change.php:320 msgid "Function" msgstr "Funkcija" -#: libraries/messages.inc.php:355 libraries/mysql_charsets.lib.php:377 +#: libraries/messages.inc.php:351 libraries/mysql_charsets.lib.php:377 msgid "Georgian" msgstr "Gruzinų" -#: libraries/messages.inc.php:356 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:352 libraries/mysql_charsets.lib.php:247 #: libraries/mysql_charsets.lib.php:250 msgid "German" msgstr "Vokiečių" -#: libraries/messages.inc.php:357 themes.php:42 +#: libraries/messages.inc.php:353 themes.php:42 msgid "Get more themes!" msgstr "Gauti daugiau išvaizdų!" -#: libraries/messages.inc.php:358 server_privileges.php:2134 +#: libraries/messages.inc.php:354 server_privileges.php:2134 msgid "global" msgstr "globalus" -#: libraries/messages.inc.php:359 server_privileges.php:524 +#: libraries/messages.inc.php:355 server_privileges.php:524 #: server_privileges.php:1500 msgid "Global privileges" msgstr "Globalios teisės" -#: libraries/messages.inc.php:360 server_variables.php:55 +#: libraries/messages.inc.php:356 server_variables.php:55 #: server_variables.php:89 msgid "Global value" msgstr "Globali reikšmė" -#: libraries/messages.inc.php:365 server_privileges.php:1502 +#: libraries/messages.inc.php:361 server_privileges.php:1502 #: server_privileges.php:1684 server_privileges.php:2033 msgid "Grant" msgstr "Suteikti" -#: libraries/messages.inc.php:366 libraries/mysql_charsets.lib.php:380 +#: libraries/messages.inc.php:362 libraries/mysql_charsets.lib.php:380 msgid "Greek" msgstr "Graikų" -#: libraries/messages.inc.php:367 +#: libraries/messages.inc.php:363 msgid "\"gzipped\"" msgstr "\"gzipped\"" -#: libraries/messages.inc.php:369 server_status.php:250 +#: libraries/messages.inc.php:365 server_status.php:250 msgid "Handler" msgstr "" -#: libraries/messages.inc.php:370 server_synchronize.php:464 +#: libraries/messages.inc.php:366 server_synchronize.php:464 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: libraries/messages.inc.php:372 libraries/mysql_charsets.lib.php:374 +#: libraries/messages.inc.php:368 libraries/mysql_charsets.lib.php:374 msgid "Hebrew" msgstr "Žydų" -#: libraries/messages.inc.php:373 pmd_general.php:83 +#: libraries/messages.inc.php:369 pmd_general.php:83 msgid "Help" msgstr "Pagalba" -#: libraries/messages.inc.php:374 +#: libraries/messages.inc.php:370 msgid "Use hexadecimal for BLOB" msgstr "" -#: libraries/messages.inc.php:376 pmd_general.php:120 +#: libraries/messages.inc.php:372 pmd_general.php:120 msgid "Hide/Show all" msgstr "Paslėpti/rodyti visus" -#: libraries/messages.inc.php:377 pmd_general.php:124 +#: libraries/messages.inc.php:373 pmd_general.php:124 msgid "Hide/Show Tables with no relation" msgstr "" -#: libraries/messages.inc.php:378 libraries/navigation_header.inc.php:54 +#: libraries/messages.inc.php:374 libraries/navigation_header.inc.php:54 #: libraries/navigation_header.inc.php:57 #: libraries/navigation_header.inc.php:58 msgid "Home" msgstr "Pradinis" -#: libraries/messages.inc.php:379 main.php:233 +#: libraries/messages.inc.php:375 main.php:233 msgid "Official Homepage" msgstr "Oficialus phpMyAdmin tinklapis" -#: libraries/messages.inc.php:382 libraries/replication_gui.lib.php:327 +#: libraries/messages.inc.php:378 libraries/replication_gui.lib.php:327 #: server_privileges.php:753 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/messages.inc.php:383 +#: libraries/messages.inc.php:379 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/messages.inc.php:384 libraries/mysql_charsets.lib.php:253 +#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:253 msgid "Hungarian" msgstr "Vengrų" -#: libraries/messages.inc.php:386 libraries/mysql_charsets.lib.php:256 +#: libraries/messages.inc.php:382 libraries/mysql_charsets.lib.php:256 msgid "Icelandic" msgstr "Islandų" -#: libraries/messages.inc.php:387 server_processlist.php:53 +#: libraries/messages.inc.php:383 server_processlist.php:53 msgid "ID" msgstr "ID" -#: libraries/messages.inc.php:388 libraries/mult_submits.inc.php:108 +#: libraries/messages.inc.php:384 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:479 msgid "Fulltext" msgstr "Fulltext" -#: libraries/messages.inc.php:389 +#: libraries/messages.inc.php:385 msgid "Ignore duplicate rows" msgstr "Ignoruoti pasikartojančias eilutes" -#: libraries/messages.inc.php:390 tbl_change.php:302 tbl_indexes.php:200 +#: libraries/messages.inc.php:386 tbl_change.php:302 tbl_indexes.php:200 #: tbl_indexes.php:225 msgid "Ignore" msgstr "Ignoruoti" -#: libraries/messages.inc.php:391 +#: libraries/messages.inc.php:387 msgid "Use ignore inserts" msgstr "Ignoruoti INSERT užklausas." -#: libraries/messages.inc.php:392 +#: libraries/messages.inc.php:388 msgid "Column names in first row" msgstr "" -#: libraries/messages.inc.php:393 +#: libraries/messages.inc.php:389 msgid "Do not import empty rows" msgstr "" -#: libraries/messages.inc.php:394 pmd_general.php:104 +#: libraries/messages.inc.php:390 pmd_general.php:104 msgid "Import/Export coordinates for PDF schema" msgstr "" -#: libraries/messages.inc.php:395 querywindow.php:104 +#: libraries/messages.inc.php:391 querywindow.php:104 msgid "Import files" msgstr "Importuoti failus" -#: libraries/messages.inc.php:403 +#: libraries/messages.inc.php:399 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/messages.inc.php:404 libraries/messages.inc.php:584 +#: libraries/messages.inc.php:400 libraries/messages.inc.php:580 msgid "Open Document Spreadsheet" msgstr "Open Document skaičiuoklė" -#: libraries/messages.inc.php:405 +#: libraries/messages.inc.php:401 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/messages.inc.php:409 +#: libraries/messages.inc.php:405 msgid "Excel 97-2003 XLS Workbook" msgstr "Excel 97-2003 XLS darbaknygė" -#: libraries/messages.inc.php:410 +#: libraries/messages.inc.php:406 msgid "Excel 2007 XLSX Workbook" msgstr "Excel 2007 XLSX darbaknygė" -#: libraries/messages.inc.php:414 libraries/mult_submits.inc.php:98 +#: libraries/messages.inc.php:410 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:476 tbl_structure.php:674 msgid "Index" msgstr "Indeksas" -#: libraries/messages.inc.php:415 tbl_indexes.php:168 +#: libraries/messages.inc.php:411 tbl_indexes.php:168 msgid "Index name:" msgstr "Indekso vardas :" -#: libraries/messages.inc.php:416 tbl_indexes.php:174 +#: libraries/messages.inc.php:412 tbl_indexes.php:174 msgid "Index type:" msgstr "Indekso tipas :" -#: libraries/messages.inc.php:417 sql.php:639 +#: libraries/messages.inc.php:413 sql.php:639 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Iškilo problemos su `%s` lentelės indeksais" -#: libraries/messages.inc.php:427 main.php:266 +#: libraries/messages.inc.php:423 main.php:266 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -4000,164 +4000,164 @@ msgstr "" "nesaugi, bei gali būti atvira įsilaužimams, todėl rekomenduojame pakeisti " "šias parinktis." -#: libraries/messages.inc.php:428 tbl_change.php:1130 +#: libraries/messages.inc.php:424 tbl_change.php:1130 msgid "Insert as new row" msgstr "Įterpti naują įrašą" -#: libraries/messages.inc.php:429 sql.php:496 tbl_replace.php:386 +#: libraries/messages.inc.php:425 sql.php:496 tbl_replace.php:386 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: libraries/messages.inc.php:430 tbl_change.php:1131 +#: libraries/messages.inc.php:426 tbl_change.php:1131 msgid "Insert as new row and ignore errors" msgstr "Įterpti kaip naują eilutę ir ignoruoti klaidas" -#: libraries/messages.inc.php:432 main.php:139 +#: libraries/messages.inc.php:428 main.php:139 msgid "Interface" msgstr "" -#: libraries/messages.inc.php:433 tbl_relation.php:407 +#: libraries/messages.inc.php:429 tbl_relation.php:407 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: libraries/messages.inc.php:435 pdf_pages.php:303 +#: libraries/messages.inc.php:431 pdf_pages.php:303 msgid "Internal relations" msgstr "Vidiniai sąryšiai" -#: libraries/messages.inc.php:438 tbl_indexes.php:256 tbl_structure.php:590 +#: libraries/messages.inc.php:434 tbl_indexes.php:256 tbl_structure.php:590 #: tbl_structure.php:601 msgid "Column count has to be larger than zero." msgstr "" -#: libraries/messages.inc.php:444 libraries/tbl_properties.inc.php:784 +#: libraries/messages.inc.php:440 libraries/tbl_properties.inc.php:784 #: tbl_structure.php:537 msgid "You have to add at least one field." msgstr "" -#: libraries/messages.inc.php:449 +#: libraries/messages.inc.php:445 #, php-format msgid "Invalid server index: \"%s\"" msgstr "" -#: libraries/messages.inc.php:452 libraries/mysql_charsets.lib.php:259 +#: libraries/messages.inc.php:448 libraries/mysql_charsets.lib.php:259 #: libraries/mysql_charsets.lib.php:349 msgid "Japanese" msgstr "Japonų" -#: libraries/messages.inc.php:453 main.php:331 +#: libraries/messages.inc.php:449 main.php:331 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: libraries/messages.inc.php:454 server_status.php:257 +#: libraries/messages.inc.php:450 server_status.php:257 msgid "Joins" msgstr "" -#: libraries/messages.inc.php:457 server_privileges.php:763 +#: libraries/messages.inc.php:453 server_privileges.php:763 msgid "Do not change the password" msgstr "Nekeisti slaptažodžio" -#: libraries/messages.inc.php:458 server_status.php:256 +#: libraries/messages.inc.php:454 server_status.php:256 #, fuzzy msgid "Key cache" msgstr "Užklausų saugykla" -#: libraries/messages.inc.php:462 libraries/mysql_charsets.lib.php:268 +#: libraries/messages.inc.php:458 libraries/mysql_charsets.lib.php:268 #: libraries/mysql_charsets.lib.php:371 msgid "Korean" msgstr "Korėjiečių" -#: libraries/messages.inc.php:466 libraries/select_lang.lib.php:480 +#: libraries/messages.inc.php:462 libraries/select_lang.lib.php:480 #: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492 #, php-format msgid "Unknown language: %1$s." msgstr "Nežinoma kalba: %1$s." -#: libraries/messages.inc.php:468 +#: libraries/messages.inc.php:464 msgid "Table caption" msgstr "Lentelės antraštė" -#: libraries/messages.inc.php:469 +#: libraries/messages.inc.php:465 msgid "Content of table __TABLE__" msgstr "Lentelės __TABLE__ turinys" -#: libraries/messages.inc.php:470 +#: libraries/messages.inc.php:466 msgid "Continued table caption" msgstr "Lentelės antraštė (tęsinys)" -#: libraries/messages.inc.php:471 +#: libraries/messages.inc.php:467 msgid "(continued)" msgstr "(tęsinys)" -#: libraries/messages.inc.php:472 +#: libraries/messages.inc.php:468 msgid "Include table caption" msgstr "Įterpti lentelės antraštę" -#: libraries/messages.inc.php:473 +#: libraries/messages.inc.php:469 msgid "Label key" msgstr "Pavadinimo raktas" -#: libraries/messages.inc.php:474 +#: libraries/messages.inc.php:470 msgid "LaTeX" msgstr "LaTeX" -#: libraries/messages.inc.php:475 +#: libraries/messages.inc.php:471 msgid "Structure of table __TABLE__" msgstr "Lentelės __TABLE__ struktūra" -#: libraries/messages.inc.php:476 libraries/mysql_charsets.lib.php:262 +#: libraries/messages.inc.php:472 libraries/mysql_charsets.lib.php:262 msgid "Latvian" msgstr "Latvių" -#: libraries/messages.inc.php:477 +#: libraries/messages.inc.php:473 msgid "CSV using LOAD DATA" msgstr "CSV naudojant LOAD DATA" -#: libraries/messages.inc.php:478 +#: libraries/messages.inc.php:474 msgid "Use LOCAL keyword" msgstr "" -#: libraries/messages.inc.php:479 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:475 libraries/tbl_properties.inc.php:105 msgid "Length/Values" msgstr "Ilgis/reikšmės*" -#: libraries/messages.inc.php:480 tbl_select.php:295 +#: libraries/messages.inc.php:476 tbl_select.php:295 msgid "Number of rows per page" msgstr "Eilučių skaičius puslapyje" -#: libraries/messages.inc.php:484 libraries/mysql_charsets.lib.php:265 +#: libraries/messages.inc.php:480 libraries/mysql_charsets.lib.php:265 msgid "Lithuanian" msgstr "Lietuvių" -#: libraries/messages.inc.php:485 libraries/replication_gui.lib.php:302 +#: libraries/messages.inc.php:481 libraries/replication_gui.lib.php:302 #: server_privileges.php:729 msgid "Local" msgstr "Lokali darbinė stotis" -#: libraries/messages.inc.php:487 server_privileges.php:669 +#: libraries/messages.inc.php:483 server_privileges.php:669 msgid "Login Information" msgstr "Prisijungimo informacija" -#: libraries/messages.inc.php:490 libraries/navigation_header.inc.php:67 +#: libraries/messages.inc.php:486 libraries/navigation_header.inc.php:67 #: libraries/navigation_header.inc.php:70 #: libraries/navigation_header.inc.php:71 main.php:99 msgid "Log out" msgstr "Atsijungti" -#: libraries/messages.inc.php:497 server_status.php:440 +#: libraries/messages.inc.php:493 server_status.php:440 msgid "max. concurrent connections" msgstr "" -#: libraries/messages.inc.php:498 +#: libraries/messages.inc.php:494 msgid "Maximal length of created query" msgstr "Didžiausias sukurtos užklausos ilgis" -#: libraries/messages.inc.php:500 main.php:282 +#: libraries/messages.inc.php:496 main.php:282 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -4167,7 +4167,7 @@ msgstr "" "simbolių kodaciją. Be mbstring plėtinio phpMyAdmin negali tesingai skaidyti " "stringų, todėl galite sulaukti netikėtų rezultatų." -#: libraries/messages.inc.php:501 main.php:274 +#: libraries/messages.inc.php:497 main.php:274 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -4176,24 +4176,24 @@ msgstr "" "Savo PHP konfigūracijoje Jūs įjungėte mbstring.func_overload. Šis nustatymas " "nėra suderinamas su phpMyAdmin ir gali pažeisti Jūsų duomenis!" -#: libraries/messages.inc.php:502 +#: libraries/messages.inc.php:498 msgid "MediaWiki Table" msgstr "" -#: libraries/messages.inc.php:503 transformation_overview.php:25 +#: libraries/messages.inc.php:499 transformation_overview.php:25 msgid "Available MIME types" msgstr "Galimi MIME-tipai" -#: libraries/messages.inc.php:504 transformation_overview.php:43 +#: libraries/messages.inc.php:500 transformation_overview.php:43 msgid "Available transformations" msgstr "Galimos transformacijos" -#: libraries/messages.inc.php:505 +#: libraries/messages.inc.php:501 msgctxt "$strMIME_description" msgid "Description" msgstr "Paaiškinimas" -#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:580 +#: libraries/messages.inc.php:503 libraries/tbl_properties.inc.php:580 #: transformation_overview.php:60 #, php-format msgid "" @@ -4202,7 +4202,7 @@ msgid "" msgstr "" "Ši transformacija neturi paaiškinimo.
Klauskite autoriaus ką %s daro." -#: libraries/messages.inc.php:509 libraries/tbl_properties.inc.php:137 +#: libraries/messages.inc.php:505 libraries/tbl_properties.inc.php:137 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -4211,7 +4211,7 @@ msgstr "" "Norėdami gauti pilną sąrašą galimų transformacijų ir jų MIME tipų " "transformacijų, spauskite %stransformacijos paaiškinimą%s" -#: libraries/messages.inc.php:510 libraries/tbl_properties.inc.php:146 +#: libraries/messages.inc.php:506 libraries/tbl_properties.inc.php:146 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -4224,113 +4224,113 @@ msgstr "" "(\"'\"), naudokite viršutinį vertikalų pasvirą brūkšnį prieš šiuos simbolius " "(pvz: '\\\\xyz' ar 'a\\'b')." -#: libraries/messages.inc.php:511 libraries/tbl_properties.inc.php:145 +#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:145 msgid "Transformation options" msgstr "Transformacijos nustatymai" -#: libraries/messages.inc.php:513 transformation_overview.php:38 +#: libraries/messages.inc.php:509 transformation_overview.php:38 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "" "MIME tipai atspausdinti pasvirusiu šriftu neturi atskirų transformacijos " "funkcijos." -#: libraries/messages.inc.php:515 tbl_indexes.php:162 +#: libraries/messages.inc.php:511 tbl_indexes.php:162 msgid "Modify an index" msgstr "Keisti indeksą" -#: libraries/messages.inc.php:517 pmd_general.php:108 +#: libraries/messages.inc.php:513 pmd_general.php:108 msgid "Move Menu" msgstr "" -#: libraries/messages.inc.php:518 tbl_operations.php:276 +#: libraries/messages.inc.php:514 tbl_operations.php:276 msgid "Move table to (database.table):" msgstr "Perkelti lentelė į (duombazė.lentelė):" -#: libraries/messages.inc.php:519 tbl_move_copy.php:56 +#: libraries/messages.inc.php:515 tbl_move_copy.php:56 #, php-format msgid "Table %s has been moved to %s." msgstr "Lentelė %s perkelta į %s." -#: libraries/messages.inc.php:520 tbl_move_copy.php:46 +#: libraries/messages.inc.php:516 tbl_move_copy.php:46 msgid "Can't move table to same one!" msgstr "Negalima perkelti lentelės į ją pačią!" -#: libraries/messages.inc.php:521 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:517 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 #: libraries/mysql_charsets.lib.php:332 libraries/mysql_charsets.lib.php:354 #: libraries/mysql_charsets.lib.php:365 msgid "multilingual" msgstr "daugiakalbis" -#: libraries/messages.inc.php:534 main.php:193 +#: libraries/messages.inc.php:530 main.php:193 msgid "MySQL charset" msgstr "MySQL koduotė" -#: libraries/messages.inc.php:535 main.php:211 +#: libraries/messages.inc.php:531 main.php:211 msgid "MySQL client version" msgstr "MySQL kliento versija" -#: libraries/messages.inc.php:536 main.php:125 +#: libraries/messages.inc.php:532 main.php:125 msgid "MySQL connection collation" msgstr "MySQL prisijungimo rūšiavimas" -#: libraries/messages.inc.php:537 main.php:346 +#: libraries/messages.inc.php:533 main.php:346 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: libraries/messages.inc.php:539 server_status.php:294 +#: libraries/messages.inc.php:535 server_status.php:294 msgid "Show processes" msgstr "Rodyti procesus" -#: libraries/messages.inc.php:545 navigation.php:210 server_databases.php:371 +#: libraries/messages.inc.php:541 navigation.php:210 server_databases.php:371 #: server_synchronize.php:1191 msgid "No databases" msgstr "Nėra duombazių" -#: libraries/messages.inc.php:546 server_databases.php:52 +#: libraries/messages.inc.php:542 server_databases.php:52 msgid "No databases selected." msgstr "Nepažymėjote duombazės." -#: libraries/messages.inc.php:548 libraries/relation.lib.php:1173 +#: libraries/messages.inc.php:544 libraries/relation.lib.php:1173 msgid "no description" msgstr "Aprašymo nėra" -#: libraries/messages.inc.php:552 libraries/zip_extension.lib.php:26 +#: libraries/messages.inc.php:548 libraries/zip_extension.lib.php:26 msgid "No files found inside ZIP archive!" msgstr "ZIP archyve nerasta failų!" -#: libraries/messages.inc.php:555 tbl_indexes.php:91 +#: libraries/messages.inc.php:551 tbl_indexes.php:91 msgid "No index parts defined!" msgstr "Neaprašytos indekso dalys!" -#: libraries/messages.inc.php:556 libraries/mult_submits.inc.php:435 +#: libraries/messages.inc.php:552 libraries/mult_submits.inc.php:435 #: tbl_replace.php:331 msgid "No change" msgstr "Nėra pakeitimų" -#: libraries/messages.inc.php:557 +#: libraries/messages.inc.php:553 #, fuzzy msgctxt "$strNoneDefault" msgid "None" msgstr "Nėra" -#: libraries/messages.inc.php:560 libraries/plugin_interface.lib.php:312 +#: libraries/messages.inc.php:556 libraries/plugin_interface.lib.php:312 msgid "This format has no options" msgstr "Šis formatas neturi nustatymų" -#: libraries/messages.inc.php:565 user_password.php:54 +#: libraries/messages.inc.php:561 user_password.php:54 msgid "You don't have sufficient privileges to be here right now!" msgstr "Neturite pakankamai teisių" -#: libraries/messages.inc.php:566 tbl_row_action.php:29 +#: libraries/messages.inc.php:562 tbl_row_action.php:29 msgid "No rows selected" msgstr "Nepasirinkti įrašai" -#: libraries/messages.inc.php:569 themes.php:32 +#: libraries/messages.inc.php:565 themes.php:32 #, php-format msgid "" "No themes support; please check your configuration and/or your themes in " @@ -4339,295 +4339,295 @@ msgstr "" "Temos nėra palaikomos, patikrinkite savo konfigūraciją ir/arba savo temų " "direktoriją %s." -#: libraries/messages.inc.php:571 libraries/relation.lib.php:95 +#: libraries/messages.inc.php:567 libraries/relation.lib.php:95 msgid "not OK" msgstr "Negerai" -#: libraries/messages.inc.php:572 server_synchronize.php:400 +#: libraries/messages.inc.php:568 server_synchronize.php:400 #: server_synchronize.php:839 msgid "not present" msgstr "" -#: libraries/messages.inc.php:573 pdf_pages.php:36 pdf_pages.php:42 +#: libraries/messages.inc.php:569 pdf_pages.php:36 pdf_pages.php:42 #: pdf_pages.php:48 pdf_pages.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "Lentelė %s nerasta arba nenurodyta %s faile" -#: libraries/messages.inc.php:574 server_privileges.php:804 +#: libraries/messages.inc.php:570 server_privileges.php:804 #: server_privileges.php:2166 msgid "No user(s) found." msgstr "Nerasta vartotojo(ų)." -#: libraries/messages.inc.php:578 pmd_general.php:164 +#: libraries/messages.inc.php:574 pmd_general.php:164 msgid "Number of tables" msgstr "Lentelių skaičius" -#: libraries/messages.inc.php:581 server_databases.php:117 +#: libraries/messages.inc.php:577 server_databases.php:117 #: server_status.php:260 setup/lib/messages.inc.php:117 msgid "Tables" msgstr "Lentelės" -#: libraries/messages.inc.php:583 libraries/relation.lib.php:99 +#: libraries/messages.inc.php:579 libraries/relation.lib.php:99 #: pmd_general.php:340 msgid "OK" msgstr "Gerai" -#: libraries/messages.inc.php:585 +#: libraries/messages.inc.php:581 msgid "Open Document Text" msgstr "Open Document tekstas" -#: libraries/messages.inc.php:588 tbl_select.php:138 +#: libraries/messages.inc.php:584 tbl_select.php:138 msgid "Operator" msgstr "Operatorius" -#: libraries/messages.inc.php:589 tbl_operations.php:662 +#: libraries/messages.inc.php:585 tbl_operations.php:662 msgid "Optimize" msgstr "Optimizuoti" -#: libraries/messages.inc.php:602 libraries/tbl_properties.inc.php:755 +#: libraries/messages.inc.php:598 libraries/tbl_properties.inc.php:755 msgid "PARTITION definition" msgstr "" -#: libraries/messages.inc.php:603 tbl_structure.php:757 +#: libraries/messages.inc.php:599 tbl_structure.php:757 msgid "partitioned" msgstr "" -#: libraries/messages.inc.php:604 tbl_operations.php:649 +#: libraries/messages.inc.php:600 tbl_operations.php:649 #, fuzzy msgid "Partition maintenance" msgstr "Lentelės diagnostika" -#: libraries/messages.inc.php:605 tbl_operations.php:657 +#: libraries/messages.inc.php:601 tbl_operations.php:657 #, php-format msgid "Partition %s" msgstr "" -#: libraries/messages.inc.php:606 server_privileges.php:1212 +#: libraries/messages.inc.php:602 server_privileges.php:1212 #, php-format msgid "The password for %s was changed successfully." msgstr "Vartotojo %s slaptažodis sėkmingai pakeistas." -#: libraries/messages.inc.php:635 +#: libraries/messages.inc.php:631 #, php-format msgid "Schema of the \"%s\" database - Page %s" msgstr "Duombazės \"%s\" schema - %s puslapis" -#: libraries/messages.inc.php:636 +#: libraries/messages.inc.php:632 #, php-format msgid "The \"%s\" table doesn't exist!" msgstr "Lentelė \"%s\" neegzistuoja!" -#: libraries/messages.inc.php:637 pdf_schema.php:1013 +#: libraries/messages.inc.php:633 pdf_schema.php:1013 msgid "No tables" msgstr "No tables" -#: libraries/messages.inc.php:638 pmd_pdf.php:63 +#: libraries/messages.inc.php:634 pmd_pdf.php:63 #, fuzzy msgid "Page has been created" msgstr "Duomenų bazė %1$s sukurta." -#: libraries/messages.inc.php:639 pmd_pdf.php:65 +#: libraries/messages.inc.php:635 pmd_pdf.php:65 msgid "Page creation failed" msgstr "" -#: libraries/messages.inc.php:640 +#: libraries/messages.inc.php:636 msgid "PDF" msgstr "PDF" -#: libraries/messages.inc.php:641 +#: libraries/messages.inc.php:637 msgid "(Generates a report containing the data of a single table)" msgstr "" -#: libraries/messages.inc.php:642 +#: libraries/messages.inc.php:638 msgid "Report title" msgstr "Ataskaitos antraštė" -#: libraries/messages.inc.php:643 server_status.php:389 server_status.php:434 +#: libraries/messages.inc.php:639 server_status.php:389 server_status.php:434 #: server_status.php:497 server_status.php:555 msgid "per hour" msgstr "per valandą" -#: libraries/messages.inc.php:644 server_status.php:498 +#: libraries/messages.inc.php:640 server_status.php:498 msgid "per minute" msgstr "per minutę" -#: libraries/messages.inc.php:645 server_status.php:499 +#: libraries/messages.inc.php:641 server_status.php:499 msgid "per second" msgstr "per sekundę" -#: libraries/messages.inc.php:646 libraries/mysql_charsets.lib.php:271 +#: libraries/messages.inc.php:642 libraries/mysql_charsets.lib.php:271 msgid "Persian" msgstr "Persų" -#: libraries/messages.inc.php:647 libraries/mysql_charsets.lib.php:250 +#: libraries/messages.inc.php:643 libraries/mysql_charsets.lib.php:250 msgid "phone book" msgstr "telefonų knyga" -#: libraries/messages.inc.php:648 +#: libraries/messages.inc.php:644 msgid "PHP array" msgstr "" -#: libraries/messages.inc.php:650 main.php:213 +#: libraries/messages.inc.php:646 main.php:213 msgid "PHP extension" msgstr "PHP plėtinys" -#: libraries/messages.inc.php:654 libraries/relation.lib.php:163 +#: libraries/messages.inc.php:650 libraries/relation.lib.php:163 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/messages.inc.php:655 libraries/relation.lib.php:159 +#: libraries/messages.inc.php:651 libraries/relation.lib.php:159 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/messages.inc.php:656 libraries/relation.lib.php:161 +#: libraries/messages.inc.php:652 libraries/relation.lib.php:161 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" -#: libraries/messages.inc.php:657 libraries/relation.lib.php:162 +#: libraries/messages.inc.php:653 libraries/relation.lib.php:162 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/messages.inc.php:658 libraries/relation.lib.php:164 +#: libraries/messages.inc.php:654 libraries/relation.lib.php:164 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/messages.inc.php:661 libraries/mysql_charsets.lib.php:274 +#: libraries/messages.inc.php:657 libraries/mysql_charsets.lib.php:274 msgid "Polish" msgstr "Lenkų" -#: libraries/messages.inc.php:662 libraries/replication_gui.lib.php:67 +#: libraries/messages.inc.php:658 libraries/replication_gui.lib.php:67 #: server_synchronize.php:1163 msgid "Port" msgstr "Jungtis" -#: libraries/messages.inc.php:667 tbl_indexes.php:67 +#: libraries/messages.inc.php:663 tbl_indexes.php:67 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Pirminio rakto pavadinimas turi būti \"PRIMARY\"!" -#: libraries/messages.inc.php:668 tbl_indexes.php:184 +#: libraries/messages.inc.php:664 tbl_indexes.php:184 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "(\"PRIMARY\" yra vienintelis pirminio rakto tipas!)" -#: libraries/messages.inc.php:669 libraries/mult_submits.inc.php:76 +#: libraries/messages.inc.php:665 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:474 msgid "Primary" msgstr "Pirminis" -#: libraries/messages.inc.php:673 server_privileges.php:227 +#: libraries/messages.inc.php:669 server_privileges.php:227 msgid "Includes all privileges except GRANT." msgstr "Įtraukti visas teises, išskyrus GRANT." -#: libraries/messages.inc.php:674 server_privileges.php:153 +#: libraries/messages.inc.php:670 server_privileges.php:153 #: server_privileges.php:476 msgid "Allows altering the structure of existing tables." msgstr "Leisti keisti jau egzistuojančių lenetelių struktūrą." -#: libraries/messages.inc.php:675 server_privileges.php:169 +#: libraries/messages.inc.php:671 server_privileges.php:169 #: server_privileges.php:482 #, fuzzy msgid "Allows altering and dropping stored routines." msgstr "Leisti įterpti ir modifikuoti indeksus." -#: libraries/messages.inc.php:676 server_privileges.php:145 +#: libraries/messages.inc.php:672 server_privileges.php:145 #: server_privileges.php:475 msgid "Allows creating new databases and tables." msgstr "Leisti kurti naujas duombazes ir lenteles." -#: libraries/messages.inc.php:677 server_privileges.php:168 +#: libraries/messages.inc.php:673 server_privileges.php:168 #: server_privileges.php:481 #, fuzzy msgid "Allows creating stored routines." msgstr "Leidžia sukurti naujus view'us." -#: libraries/messages.inc.php:678 server_privileges.php:475 +#: libraries/messages.inc.php:674 server_privileges.php:475 msgid "Allows creating new tables." msgstr "Leisti kurti naujas lenteles." -#: libraries/messages.inc.php:679 server_privileges.php:156 +#: libraries/messages.inc.php:675 server_privileges.php:156 #: server_privileges.php:479 msgid "Allows creating temporary tables." msgstr "Leisti kurti laikinas lenteles." -#: libraries/messages.inc.php:680 server_privileges.php:170 +#: libraries/messages.inc.php:676 server_privileges.php:170 #: server_privileges.php:515 msgid "Allows creating, dropping and renaming user accounts." msgstr "Leidžia kurti, šalinti ir pervadinti vartotojus." -#: libraries/messages.inc.php:681 server_privileges.php:160 +#: libraries/messages.inc.php:677 server_privileges.php:160 #: server_privileges.php:164 server_privileges.php:487 #: server_privileges.php:491 msgid "Allows creating new views." msgstr "Leidžia sukurti naujus view'us." -#: libraries/messages.inc.php:682 server_privileges.php:144 +#: libraries/messages.inc.php:678 server_privileges.php:144 #: server_privileges.php:467 msgid "Allows deleting data." msgstr "Leisti šalinti duomenis." -#: libraries/messages.inc.php:683 server_privileges.php:146 +#: libraries/messages.inc.php:679 server_privileges.php:146 #: server_privileges.php:478 msgid "Allows dropping databases and tables." msgstr "Leisti šalinti duombazes ir lenteles." -#: libraries/messages.inc.php:684 server_privileges.php:478 +#: libraries/messages.inc.php:680 server_privileges.php:478 msgid "Allows dropping tables." msgstr "Leisti šalinti lenteles." -#: libraries/messages.inc.php:685 server_privileges.php:161 +#: libraries/messages.inc.php:681 server_privileges.php:161 #: server_privileges.php:495 msgid "Allows to set up events for the event scheduler" msgstr "" -#: libraries/messages.inc.php:686 server_privileges.php:171 +#: libraries/messages.inc.php:682 server_privileges.php:171 #: server_privileges.php:483 #, fuzzy msgid "Allows executing stored routines." msgstr "Leidžia sukurti naujus view'us." -#: libraries/messages.inc.php:687 server_privileges.php:150 +#: libraries/messages.inc.php:683 server_privileges.php:150 #: server_privileges.php:470 msgid "Allows importing data from and exporting data into files." msgstr "Leisti įterpti ir eksportuoti duomenis iš failų." -#: libraries/messages.inc.php:688 server_privileges.php:501 +#: libraries/messages.inc.php:684 server_privileges.php:501 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Leisti įterpti naujus vartotojus, bei prisikirti privilegijas, neperkraunant " "privilegijų lentelės." -#: libraries/messages.inc.php:689 server_privileges.php:152 +#: libraries/messages.inc.php:685 server_privileges.php:152 #: server_privileges.php:477 msgid "Allows creating and dropping indexes." msgstr "Leisti įterpti ir modifikuoti indeksus." -#: libraries/messages.inc.php:690 server_privileges.php:142 +#: libraries/messages.inc.php:686 server_privileges.php:142 #: server_privileges.php:403 server_privileges.php:465 msgid "Allows inserting and replacing data." msgstr "Leisti įterpti ir modifikuoti duomenis." -#: libraries/messages.inc.php:691 server_privileges.php:157 +#: libraries/messages.inc.php:687 server_privileges.php:157 #: server_privileges.php:510 msgid "Allows locking tables for the current thread." msgstr "Leisti užrakinti lenteles procesų metu." -#: libraries/messages.inc.php:692 server_privileges.php:607 +#: libraries/messages.inc.php:688 server_privileges.php:607 #: server_privileges.php:609 msgid "Limits the number of new connections the user may open per hour." msgstr "Riboti prisijungimų kiekį per valandą." -#: libraries/messages.inc.php:693 server_privileges.php:595 +#: libraries/messages.inc.php:689 server_privileges.php:595 #: server_privileges.php:597 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Riboti užklausų kiekį per valandą" -#: libraries/messages.inc.php:694 server_privileges.php:601 +#: libraries/messages.inc.php:690 server_privileges.php:601 #: server_privileges.php:603 msgid "" "Limits the number of commands that change any table or database the user may " @@ -4636,60 +4636,60 @@ msgstr "" "Riboti komandų (kurios vienaip ar kitaip modifikuoja lenteles ar duombazes) " "kiekį per valandą." -#: libraries/messages.inc.php:695 server_privileges.php:613 +#: libraries/messages.inc.php:691 server_privileges.php:613 #: server_privileges.php:615 #, fuzzy msgid "Limits the number of simultaneous connections the user may have." msgstr "Riboti prisijungimų kiekį per valandą." -#: libraries/messages.inc.php:696 server_privileges.php:149 +#: libraries/messages.inc.php:692 server_privileges.php:149 #: server_privileges.php:505 msgid "Allows viewing processes of all users" msgstr "" -#: libraries/messages.inc.php:697 server_privileges.php:151 +#: libraries/messages.inc.php:693 server_privileges.php:151 #: server_privileges.php:409 server_privileges.php:511 msgid "Has no effect in this MySQL version." msgstr " Negalioja šioje MySQL versijoje." -#: libraries/messages.inc.php:698 server_privileges.php:147 +#: libraries/messages.inc.php:694 server_privileges.php:147 #: server_privileges.php:506 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Leisti perkrauti darbinę stotį, bei išvalyti laikinąją atmintį (cache)." -#: libraries/messages.inc.php:699 server_privileges.php:159 +#: libraries/messages.inc.php:695 server_privileges.php:159 #: server_privileges.php:513 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Leisti vartotojo užklausas dėl atstatymo master / slave darbinių stočių." -#: libraries/messages.inc.php:700 server_privileges.php:158 +#: libraries/messages.inc.php:696 server_privileges.php:158 #: server_privileges.php:514 msgid "Needed for the replication slaves." msgstr "Reikalinga atstatyti slave darbinei stočiai" -#: libraries/messages.inc.php:701 server_privileges.php:141 +#: libraries/messages.inc.php:697 server_privileges.php:141 #: server_privileges.php:400 server_privileges.php:464 msgid "Allows reading data." msgstr "Leisti skaityti duomenis." -#: libraries/messages.inc.php:702 server_privileges.php:154 +#: libraries/messages.inc.php:698 server_privileges.php:154 #: server_privileges.php:508 msgid "Gives access to the complete list of databases." msgstr "Suteikti prieigą prie visų duombazių." -#: libraries/messages.inc.php:703 server_privileges.php:165 +#: libraries/messages.inc.php:699 server_privileges.php:165 #: server_privileges.php:167 server_privileges.php:480 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Leidžia vykdyti SHOW CREATE VIEW užklausas." -#: libraries/messages.inc.php:704 server_privileges.php:148 +#: libraries/messages.inc.php:700 server_privileges.php:148 #: server_privileges.php:507 msgid "Allows shutting down the server." msgstr "Leisti išjungti serverį." -#: libraries/messages.inc.php:705 server_privileges.php:155 +#: libraries/messages.inc.php:701 server_privileges.php:155 #: server_privileges.php:504 msgid "" "Allows connecting, even if maximum number of connections is reached; " @@ -4700,56 +4700,56 @@ msgstr "" "administratoriaus darbų, tokių kaip globalių reikšmių modifikavimui ar " "vartotojų atjungimui." -#: libraries/messages.inc.php:706 server_privileges.php:162 +#: libraries/messages.inc.php:702 server_privileges.php:162 #: server_privileges.php:496 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "Leisti įterpti ir modifikuoti indeksus." -#: libraries/messages.inc.php:707 server_privileges.php:143 +#: libraries/messages.inc.php:703 server_privileges.php:143 #: server_privileges.php:406 server_privileges.php:466 msgid "Allows changing data." msgstr "Leisti modifikuoti duomenis." -#: libraries/messages.inc.php:708 server_privileges.php:221 +#: libraries/messages.inc.php:704 server_privileges.php:221 msgid "No privileges." msgstr "Be teisių." -#: libraries/messages.inc.php:710 server_privileges.php:1296 +#: libraries/messages.inc.php:706 server_privileges.php:1296 msgid "The privileges were reloaded successfully." msgstr "Teisės sėkmingai perkrautos." -#: libraries/messages.inc.php:712 libraries/server_links.inc.php:80 +#: libraries/messages.inc.php:708 libraries/server_links.inc.php:80 msgid "Processes" msgstr "Procesai" -#: libraries/messages.inc.php:714 main.php:187 +#: libraries/messages.inc.php:710 main.php:187 msgid "Protocol version" msgstr "Protokolo versija" -#: libraries/messages.inc.php:715 +#: libraries/messages.inc.php:711 msgid "Put fields names in the first row" msgstr "Stulpelių pavadinimus įrašyti pirmoje eilutėje" -#: libraries/messages.inc.php:720 server_synchronize.php:1003 +#: libraries/messages.inc.php:716 server_synchronize.php:1003 msgid "The following queries have been executed:" msgstr "" -#: libraries/messages.inc.php:721 server_status.php:251 +#: libraries/messages.inc.php:717 server_status.php:251 msgid "Query cache" msgstr "Užklausų saugykla" -#: libraries/messages.inc.php:722 libraries/navigation_header.inc.php:80 +#: libraries/messages.inc.php:718 libraries/navigation_header.inc.php:80 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 setup/lib/messages.inc.php:122 msgid "Query window" msgstr "Užklausų langas" -#: libraries/messages.inc.php:725 querywindow.php:109 querywindow.php:217 +#: libraries/messages.inc.php:721 querywindow.php:109 querywindow.php:217 msgid "SQL history" msgstr "SQL užklausų istorija" -#: libraries/messages.inc.php:726 server_status.php:490 +#: libraries/messages.inc.php:722 server_status.php:490 #, php-format msgid "" "Query statistics: Since its startup, %s queries have been sent to the " @@ -4758,136 +4758,136 @@ msgstr "" "Užklausų statistika: nuo paleidimo dienos buvo išsiųsta %s užklausų į " "serverį." -#: libraries/messages.inc.php:728 server_status.php:554 +#: libraries/messages.inc.php:724 server_status.php:554 msgid "Query type" msgstr "Užklausos tipas" -#: libraries/messages.inc.php:729 libraries/sql_query_form.lib.php:381 +#: libraries/messages.inc.php:725 libraries/sql_query_form.lib.php:381 msgid "Do not overwrite this query from outside the window" msgstr "Nekeisti šios užklausos už aktyvaus lango ribų." -#: libraries/messages.inc.php:732 tbl_operations.php:663 +#: libraries/messages.inc.php:728 tbl_operations.php:663 msgid "Rebuild" msgstr "" -#: libraries/messages.inc.php:733 server_status.php:394 +#: libraries/messages.inc.php:729 server_status.php:394 msgid "Received" msgstr "Gauta" -#: libraries/messages.inc.php:734 pmd_pdf.php:89 +#: libraries/messages.inc.php:730 pmd_pdf.php:89 msgid "recommended" msgstr "" -#: libraries/messages.inc.php:736 tbl_operations.php:702 +#: libraries/messages.inc.php:732 tbl_operations.php:702 msgid "Check referential integrity:" msgstr "Patikrinti sąryšių vientisumą:" -#: libraries/messages.inc.php:740 pdf_schema.php:1032 pdf_schema.php:1141 +#: libraries/messages.inc.php:736 pdf_schema.php:1032 pdf_schema.php:1141 msgid "Relational schema" msgstr "Ryšių schema" -#: libraries/messages.inc.php:744 tbl_relation.php:399 +#: libraries/messages.inc.php:740 tbl_relation.php:399 msgid "Relations" msgstr "Sąryšiai" -#: libraries/messages.inc.php:745 tbl_structure.php:507 tbl_structure.php:509 +#: libraries/messages.inc.php:741 tbl_structure.php:507 tbl_structure.php:509 msgid "Relation view" msgstr "Peržiūrėti sąryšius" -#: libraries/messages.inc.php:746 server_privileges.php:1246 +#: libraries/messages.inc.php:742 server_privileges.php:1246 msgid "Reloading the privileges" msgstr "Perkraunamos privilegijos" -#: libraries/messages.inc.php:747 navigation.php:66 navigation.php:67 +#: libraries/messages.inc.php:743 navigation.php:66 navigation.php:67 #: navigation.php:70 msgid "Reload navigation frame" msgstr "" -#: libraries/messages.inc.php:748 pmd_general.php:80 +#: libraries/messages.inc.php:744 pmd_general.php:80 msgid "Reload" msgstr "Perkrauti" -#: libraries/messages.inc.php:749 libraries/server_synchronize.lib.php:1345 +#: libraries/messages.inc.php:745 libraries/server_synchronize.lib.php:1345 #: libraries/server_synchronize.lib.php:1371 msgid "Remote server" msgstr "Nutolęs serveris" -#: libraries/messages.inc.php:750 +#: libraries/messages.inc.php:746 msgid "Remove CRLF characters within fields" msgstr "" -#: libraries/messages.inc.php:751 tbl_operations.php:676 +#: libraries/messages.inc.php:747 tbl_operations.php:676 msgid "Remove partitioning" msgstr "" -#: libraries/messages.inc.php:752 server_privileges.php:1575 +#: libraries/messages.inc.php:748 server_privileges.php:1575 msgid "Remove selected users" msgstr "Pašalinti pažymėtus vartotojus" -#: libraries/messages.inc.php:755 tbl_operations.php:338 +#: libraries/messages.inc.php:751 tbl_operations.php:338 msgid "Rename table to" msgstr "Pervadinti lentelę į" -#: libraries/messages.inc.php:756 view_operations.php:93 +#: libraries/messages.inc.php:752 view_operations.php:93 #, fuzzy msgid "Rename view to" msgstr "Pervadinti lentelę į" -#: libraries/messages.inc.php:757 tbl_operations.php:664 +#: libraries/messages.inc.php:753 tbl_operations.php:664 msgid "Repair" msgstr "Taisyti" -#: libraries/messages.inc.php:759 +#: libraries/messages.inc.php:755 msgid "Replace NULL by" msgstr "Pakeisti NULL į" -#: libraries/messages.inc.php:760 +#: libraries/messages.inc.php:756 msgid "Replace table data with file" msgstr "Pakeisti lentelės turinį failo duomenimis " -#: libraries/messages.inc.php:761 server_replication.php:228 +#: libraries/messages.inc.php:757 server_replication.php:228 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: libraries/messages.inc.php:762 libraries/replication_gui.lib.php:236 +#: libraries/messages.inc.php:758 libraries/replication_gui.lib.php:236 #: server_replication.php:194 msgid "Add slave replication user" msgstr "" -#: libraries/messages.inc.php:763 server_replication.php:74 +#: libraries/messages.inc.php:759 server_replication.php:74 #, php-format msgid "Master server changed succesfully to %s" msgstr "" -#: libraries/messages.inc.php:764 server_replication.php:182 +#: libraries/messages.inc.php:760 server_replication.php:182 msgid "This server is configured as master in a replication process." msgstr "" -#: libraries/messages.inc.php:765 server_replication.php:322 +#: libraries/messages.inc.php:761 server_replication.php:322 msgid "Control slave:" msgstr "" -#: libraries/messages.inc.php:766 server_replication.php:65 +#: libraries/messages.inc.php:762 server_replication.php:65 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: libraries/messages.inc.php:767 server_replication.php:58 +#: libraries/messages.inc.php:763 server_replication.php:58 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: libraries/messages.inc.php:768 server_replication.php:221 +#: libraries/messages.inc.php:764 server_replication.php:221 msgid "Replicate all databases; Ignore:" msgstr "" -#: libraries/messages.inc.php:769 server_replication.php:222 +#: libraries/messages.inc.php:765 server_replication.php:222 msgid "Ignore all databases; Replicate:" msgstr "" -#: libraries/messages.inc.php:770 server_replication.php:218 +#: libraries/messages.inc.php:766 server_replication.php:218 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -4896,125 +4896,125 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: libraries/messages.inc.php:771 server_replication.php:217 +#: libraries/messages.inc.php:767 server_replication.php:217 #, fuzzy msgid "Master configuration" msgstr "Serverio nustatymai" -#: libraries/messages.inc.php:772 server_replication.php:181 +#: libraries/messages.inc.php:768 server_replication.php:181 #: server_replication.php:209 #, fuzzy msgid "Master replication" msgstr "Serverio nustatymai" -#: libraries/messages.inc.php:774 server_replication.php:230 +#: libraries/messages.inc.php:770 server_replication.php:230 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: libraries/messages.inc.php:775 server_replication.php:225 +#: libraries/messages.inc.php:771 server_replication.php:225 #, fuzzy msgid "Please select databases:" msgstr "Pasirinkite duombazę" -#: libraries/messages.inc.php:776 server_replication.php:210 +#: libraries/messages.inc.php:772 server_replication.php:210 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:188 +#: libraries/messages.inc.php:773 libraries/replication_gui.lib.php:188 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/messages.inc.php:778 server_replication.php:187 +#: libraries/messages.inc.php:774 server_replication.php:187 msgid "Show connected slaves" msgstr "" -#: libraries/messages.inc.php:779 libraries/messages.inc.php:885 +#: libraries/messages.inc.php:775 libraries/messages.inc.php:881 #: server_replication.php:184 server_status.php:281 msgid "Show master status" msgstr "" -#: libraries/messages.inc.php:780 server_replication.php:334 +#: libraries/messages.inc.php:776 server_replication.php:334 msgid "Skipping error(s) might lead into unsynchronized master and slave!" msgstr "" -#: libraries/messages.inc.php:781 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:51 #: server_replication.php:347 msgid "Change or reconfigure master server" msgstr "" -#: libraries/messages.inc.php:782 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:778 libraries/replication_gui.lib.php:51 #, fuzzy msgid "Slave configuration" msgstr "Serverio nustatymai" -#: libraries/messages.inc.php:783 server_replication.php:305 +#: libraries/messages.inc.php:779 server_replication.php:305 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: libraries/messages.inc.php:784 server_replication.php:332 +#: libraries/messages.inc.php:780 server_replication.php:332 msgid "Error management:" msgstr "" -#: libraries/messages.inc.php:785 server_replication.php:328 +#: libraries/messages.inc.php:781 server_replication.php:328 #, php-format msgid "IO Thread %s only" msgstr "" -#: libraries/messages.inc.php:786 server_replication.php:296 +#: libraries/messages.inc.php:782 server_replication.php:296 msgid "Slave IO Thread not running!" msgstr "" -#: libraries/messages.inc.php:787 server_replication.php:355 +#: libraries/messages.inc.php:783 server_replication.php:355 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/messages.inc.php:788 server_replication.php:326 +#: libraries/messages.inc.php:784 server_replication.php:326 msgid "Reset slave" msgstr "" -#: libraries/messages.inc.php:789 server_replication.php:308 +#: libraries/messages.inc.php:785 server_replication.php:308 msgid "See slave status table" msgstr "" -#: libraries/messages.inc.php:790 server_replication.php:336 +#: libraries/messages.inc.php:786 server_replication.php:336 msgid "Skip current error" msgstr "Praleisti klaidą" -#: libraries/messages.inc.php:791 server_replication.php:340 +#: libraries/messages.inc.php:787 server_replication.php:340 msgid "errors." msgstr "" -#: libraries/messages.inc.php:792 server_replication.php:337 +#: libraries/messages.inc.php:788 server_replication.php:337 msgid "Skip next" msgstr "" -#: libraries/messages.inc.php:793 server_replication.php:248 +#: libraries/messages.inc.php:789 server_replication.php:248 #, fuzzy msgid "Slave replication" msgstr "Serverio nustatymai" -#: libraries/messages.inc.php:794 server_replication.php:293 +#: libraries/messages.inc.php:790 server_replication.php:293 msgid "Slave SQL Thread not running!" msgstr "" -#: libraries/messages.inc.php:795 server_replication.php:327 +#: libraries/messages.inc.php:791 server_replication.php:327 #, php-format msgid "SQL Thread %s only" msgstr "" -#: libraries/messages.inc.php:796 +#: libraries/messages.inc.php:792 #, php-format msgid "" "This MySQL server works as %s in replication process. For further " @@ -5022,160 +5022,160 @@ msgid "" "\"#replication\">replication section." msgstr "" -#: libraries/messages.inc.php:797 +#: libraries/messages.inc.php:793 msgid "Master status" msgstr "" -#: libraries/messages.inc.php:798 server_status.php:721 +#: libraries/messages.inc.php:794 server_status.php:721 msgid "Replication status" msgstr "Replikacijos būsena" -#: libraries/messages.inc.php:799 +#: libraries/messages.inc.php:795 msgid "Slave status" msgstr "" -#: libraries/messages.inc.php:800 server_replication.php:311 +#: libraries/messages.inc.php:796 server_replication.php:311 #, fuzzy msgid "Synchronize databases with master" msgstr "Sinchronizuoti duomenų bazes" -#: libraries/messages.inc.php:801 server_replication.php:71 +#: libraries/messages.inc.php:797 server_replication.php:71 msgid "Unable to change master" msgstr "" -#: libraries/messages.inc.php:802 server_replication.php:51 +#: libraries/messages.inc.php:798 server_replication.php:51 msgid "Unknown error" msgstr "Nežinoma klaida" -#: libraries/messages.inc.php:803 main.php:163 pdf_pages.php:344 +#: libraries/messages.inc.php:799 main.php:163 pdf_pages.php:344 #: setup/lib/FormDisplay.tpl.php:216 tbl_change.php:1175 msgid "Reset" msgstr "Atstatyti į pradinę būseną" -#: libraries/messages.inc.php:804 server_privileges.php:591 +#: libraries/messages.inc.php:800 server_privileges.php:591 msgid "Resource limits" msgstr "Išteklių apribojimai" -#: libraries/messages.inc.php:805 tbl_change.php:1209 +#: libraries/messages.inc.php:801 tbl_change.php:1209 #, php-format msgid "Restart insertion with %s rows" msgstr "" -#: libraries/messages.inc.php:807 server_privileges.php:1578 +#: libraries/messages.inc.php:803 server_privileges.php:1578 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Panaikinti visas aktyvias vartotojų privilegijas ir pašalinti vartotojus." -#: libraries/messages.inc.php:808 server_privileges.php:1176 +#: libraries/messages.inc.php:804 server_privileges.php:1176 #, php-format msgid "You have revoked the privileges for %s" msgstr "Jūs panaikinote privilegijas %s" -#: libraries/messages.inc.php:809 server_privileges.php:1333 +#: libraries/messages.inc.php:805 server_privileges.php:1333 msgid "Revoke" msgstr "Panaikinti" -#: libraries/messages.inc.php:810 libraries/mysql_charsets.lib.php:280 +#: libraries/messages.inc.php:806 libraries/mysql_charsets.lib.php:280 msgid "Romanian" msgstr "Rumunų" -#: libraries/messages.inc.php:813 tbl_printview.php:404 tbl_structure.php:786 +#: libraries/messages.inc.php:809 tbl_printview.php:404 tbl_structure.php:786 msgid "Row length" msgstr "Eilutės ilgis" -#: libraries/messages.inc.php:815 tbl_printview.php:414 tbl_structure.php:794 +#: libraries/messages.inc.php:811 tbl_printview.php:414 tbl_structure.php:794 msgid " Row size " msgstr "Eilutės dydis" -#: libraries/messages.inc.php:821 tbl_printview.php:366 tbl_structure.php:726 +#: libraries/messages.inc.php:817 tbl_printview.php:366 tbl_structure.php:726 msgid "Row Statistics" msgstr "Eilučių statistika" -#: libraries/messages.inc.php:822 +#: libraries/messages.inc.php:818 #, php-format msgid "running on %s" msgstr "adresu %s" -#: libraries/messages.inc.php:824 libraries/sql_query_form.lib.php:223 +#: libraries/messages.inc.php:820 libraries/sql_query_form.lib.php:223 #, fuzzy, php-format msgid "Run SQL query/queries on server %s" msgstr "Vykdyti SQL sakinius duombazėje %s" -#: libraries/messages.inc.php:825 libraries/sql_query_form.lib.php:240 +#: libraries/messages.inc.php:821 libraries/sql_query_form.lib.php:240 #: libraries/sql_query_form.lib.php:265 #, php-format msgid "Run SQL query/queries on database %s" msgstr "Vykdyti SQL sakinius duombazėje %s" -#: libraries/messages.inc.php:826 libraries/mysql_charsets.lib.php:337 +#: libraries/messages.inc.php:822 libraries/mysql_charsets.lib.php:337 msgid "Russian" msgstr "Rusų" -#: libraries/messages.inc.php:829 pmd_general.php:68 +#: libraries/messages.inc.php:825 pmd_general.php:68 msgid "Save position" msgstr "Išsaugoti vietą" -#: libraries/messages.inc.php:830 libraries/tbl_properties.inc.php:776 +#: libraries/messages.inc.php:826 libraries/tbl_properties.inc.php:776 #: pdf_pages.php:484 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:214 setup/lib/FormDisplay.tpl.php:215 #: tbl_change.php:1126 tbl_indexes.php:248 tbl_relation.php:566 msgid "Save" msgstr "Išsaugoti" -#: libraries/messages.inc.php:831 +#: libraries/messages.inc.php:827 msgid "The scale factor is too small to fit the schema on one page" msgstr "Dydžio matas yra per mažas norint sutalpinti vaizdą viename lape." -#: libraries/messages.inc.php:843 main.php:298 +#: libraries/messages.inc.php:839 main.php:298 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "Nustatymų faile nurodykite slaptą frazę (blowfish_secret)." -#: libraries/messages.inc.php:844 navigation.php:353 navigation.php:516 +#: libraries/messages.inc.php:840 navigation.php:353 navigation.php:516 msgid "Please select a database" msgstr "Pasirinkite duombazę" -#: libraries/messages.inc.php:846 server_binlog.php:120 +#: libraries/messages.inc.php:842 server_binlog.php:120 msgid "Select binary log to view" msgstr "Pasirinkite binarinį logą peržiūrai" -#: libraries/messages.inc.php:847 tbl_select.php:270 +#: libraries/messages.inc.php:843 tbl_select.php:270 msgid "Select fields (at least one):" msgstr "Pasirinkite laukus (nors vieną)" -#: libraries/messages.inc.php:851 pdf_pages.php:320 +#: libraries/messages.inc.php:847 pdf_pages.php:320 msgid "Select Tables" msgstr "Pasirinkite lenteles" -#: libraries/messages.inc.php:853 server_status.php:404 +#: libraries/messages.inc.php:849 server_status.php:404 msgid "Sent" msgstr "Siųsta" -#: libraries/messages.inc.php:857 libraries/select_server.lib.php:45 +#: libraries/messages.inc.php:853 libraries/select_server.lib.php:45 #: setup/frames/index.inc.php:97 setup/lib/messages.inc.php:115 msgid "Servers" msgstr "Serveriai" -#: libraries/messages.inc.php:858 server_status.php:255 +#: libraries/messages.inc.php:854 server_status.php:255 #, fuzzy msgid "Delayed inserts" msgstr "Naudoti užlaikytus įterpimus" -#: libraries/messages.inc.php:859 server_status.php:46 +#: libraries/messages.inc.php:855 server_status.php:46 msgid "Runtime Information" msgstr "Veikimo informacija" -#: libraries/messages.inc.php:860 server_status.php:350 +#: libraries/messages.inc.php:856 server_status.php:350 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "MySQL serverio veikimo trukmė: %s. Serveris pradėjo veikti: %s." -#: libraries/messages.inc.php:861 libraries/server_links.inc.php:53 +#: libraries/messages.inc.php:857 libraries/server_links.inc.php:53 #: server_engines.php:112 server_engines.php:116 server_status.php:304 #: test/theme.php:105 msgid "Variables" msgstr "Kintamieji" -#: libraries/messages.inc.php:862 server_status.php:383 +#: libraries/messages.inc.php:858 server_status.php:383 msgid "" "Server traffic: These tables show the network traffic statistics of " "this MySQL server since its startup." @@ -5183,11 +5183,11 @@ msgstr "" "Serverio apkrovimas: šiose lentelėse saugoma statistinė informacija " "apie MySQL serverio apkrovimą nuo paleidimo dienos." -#: libraries/messages.inc.php:863 server_variables.php:35 +#: libraries/messages.inc.php:859 server_variables.php:35 msgid "Server variables and settings" msgstr "Serverio kintamieji ir nustatymai" -#: libraries/messages.inc.php:865 main.php:290 +#: libraries/messages.inc.php:861 main.php:290 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -5195,17 +5195,17 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: libraries/messages.inc.php:866 +#: libraries/messages.inc.php:862 msgid "" "Cannot start session without errors, please check errors given in your PHP " "and/or webserver log file and configure your PHP installation properly." msgstr "" -#: libraries/messages.inc.php:867 server_variables.php:55 +#: libraries/messages.inc.php:863 server_variables.php:55 msgid "Session value" msgstr "Sesijos reikšmė" -#: libraries/messages.inc.php:868 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:864 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 " @@ -5218,57 +5218,57 @@ msgstr "" "šios simbolius reikia papildomo dešininio įžambaus brūkšnio (pavyzdžiui: '\\" "\\xyz' or 'a\\'b')." -#: libraries/messages.inc.php:876 server_binlog.php:192 server_binlog.php:195 +#: libraries/messages.inc.php:872 server_binlog.php:192 server_binlog.php:195 #: server_processlist.php:49 server_processlist.php:51 msgid "Show Full Queries" msgstr "Rodyti pilnas užklausas" -#: libraries/messages.inc.php:878 pmd_general.php:64 +#: libraries/messages.inc.php:874 pmd_general.php:64 msgid "Show/Hide left menu" msgstr "" -#: libraries/messages.inc.php:880 sql.php:513 +#: libraries/messages.inc.php:876 sql.php:513 msgid "Showing as PHP code" msgstr "Rodomas PHP kodas" -#: libraries/messages.inc.php:882 sql.php:516 tbl_replace.php:360 +#: libraries/messages.inc.php:878 sql.php:516 tbl_replace.php:360 msgid "Showing SQL query" msgstr "Rodoma SQL užklausa" -#: libraries/messages.inc.php:883 tbl_change.php:1132 +#: libraries/messages.inc.php:879 tbl_change.php:1132 #, fuzzy msgid "Show insert query" msgstr "Rodoma SQL užklausa" -#: libraries/messages.inc.php:886 server_status.php:273 +#: libraries/messages.inc.php:882 server_status.php:273 #, fuzzy msgid "Show open tables" msgstr "Rodyti lentelės" -#: libraries/messages.inc.php:887 main.php:219 +#: libraries/messages.inc.php:883 main.php:219 msgid "Show PHP information" msgstr "Rodyti PHP informaciją" -#: libraries/messages.inc.php:889 server_status.php:278 +#: libraries/messages.inc.php:885 server_status.php:278 msgid "Show slave hosts" msgstr "" -#: libraries/messages.inc.php:890 server_status.php:284 +#: libraries/messages.inc.php:886 server_status.php:284 msgid "Show slave status" msgstr "" -#: libraries/messages.inc.php:891 +#: libraries/messages.inc.php:887 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/messages.inc.php:892 +#: libraries/messages.inc.php:888 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/messages.inc.php:893 +#: libraries/messages.inc.php:889 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -5276,79 +5276,79 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/messages.inc.php:894 +#: libraries/messages.inc.php:890 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/messages.inc.php:895 +#: libraries/messages.inc.php:891 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/messages.inc.php:896 +#: libraries/messages.inc.php:892 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/messages.inc.php:897 +#: libraries/messages.inc.php:893 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/messages.inc.php:898 +#: libraries/messages.inc.php:894 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/messages.inc.php:899 +#: libraries/messages.inc.php:895 msgid "The number of executed FLUSH statements." msgstr "Įvykdytų FLUSH užklausų skaičius." -#: libraries/messages.inc.php:900 +#: libraries/messages.inc.php:896 #, fuzzy msgid "The number of internal COMMIT statements." msgstr "Įvykdytų FLUSH užklausų skaičius." -#: libraries/messages.inc.php:901 +#: libraries/messages.inc.php:897 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/messages.inc.php:902 +#: libraries/messages.inc.php:898 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/messages.inc.php:903 +#: libraries/messages.inc.php:899 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/messages.inc.php:904 +#: libraries/messages.inc.php:900 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: libraries/messages.inc.php:905 +#: libraries/messages.inc.php:901 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/messages.inc.php:906 +#: libraries/messages.inc.php:902 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: libraries/messages.inc.php:907 +#: libraries/messages.inc.php:903 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -5356,7 +5356,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/messages.inc.php:908 +#: libraries/messages.inc.php:904 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -5364,45 +5364,45 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/messages.inc.php:909 +#: libraries/messages.inc.php:905 #, fuzzy msgid "The number of internal ROLLBACK statements." msgstr "Įvykdytų FLUSH užklausų skaičius." -#: libraries/messages.inc.php:910 +#: libraries/messages.inc.php:906 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/messages.inc.php:911 +#: libraries/messages.inc.php:907 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/messages.inc.php:912 +#: libraries/messages.inc.php:908 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/messages.inc.php:913 +#: libraries/messages.inc.php:909 #, fuzzy msgid "The number of pages currently dirty." msgstr "Duomenų nuskaitymų skaičius." -#: libraries/messages.inc.php:914 +#: libraries/messages.inc.php:910 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/messages.inc.php:915 +#: libraries/messages.inc.php:911 #, fuzzy msgid "The number of free pages." msgstr "Įkeltų eilučių skaičius" -#: libraries/messages.inc.php:916 +#: libraries/messages.inc.php:912 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/messages.inc.php:917 +#: libraries/messages.inc.php:913 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -5410,33 +5410,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/messages.inc.php:918 +#: libraries/messages.inc.php:914 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/messages.inc.php:919 +#: libraries/messages.inc.php:915 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/messages.inc.php:920 +#: libraries/messages.inc.php:916 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/messages.inc.php:921 +#: libraries/messages.inc.php:917 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/messages.inc.php:922 +#: libraries/messages.inc.php:918 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/messages.inc.php:923 +#: libraries/messages.inc.php:919 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -5445,228 +5445,228 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/messages.inc.php:924 +#: libraries/messages.inc.php:920 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/messages.inc.php:925 +#: libraries/messages.inc.php:921 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/messages.inc.php:926 +#: libraries/messages.inc.php:922 #, fuzzy msgid "The current number of pending fsync() operations." msgstr "Duomenų nuskaitymų skaičius." -#: libraries/messages.inc.php:927 +#: libraries/messages.inc.php:923 #, fuzzy msgid "The current number of pending reads." msgstr "Duomenų nuskaitymų skaičius." -#: libraries/messages.inc.php:928 +#: libraries/messages.inc.php:924 #, fuzzy msgid "The current number of pending writes." msgstr "Duomenų įrašymų skaičius." -#: libraries/messages.inc.php:929 +#: libraries/messages.inc.php:925 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/messages.inc.php:930 +#: libraries/messages.inc.php:926 msgid "The total number of data reads." msgstr "Duomenų nuskaitymų skaičius." -#: libraries/messages.inc.php:931 +#: libraries/messages.inc.php:927 msgid "The total number of data writes." msgstr "Duomenų įrašymų skaičius." -#: libraries/messages.inc.php:932 +#: libraries/messages.inc.php:928 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/messages.inc.php:933 +#: libraries/messages.inc.php:929 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/messages.inc.php:934 +#: libraries/messages.inc.php:930 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/messages.inc.php:935 +#: libraries/messages.inc.php:931 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/messages.inc.php:936 +#: libraries/messages.inc.php:932 #, fuzzy msgid "The number of log write requests." msgstr "Įkeltų eilučių skaičius" -#: libraries/messages.inc.php:937 +#: libraries/messages.inc.php:933 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/messages.inc.php:938 +#: libraries/messages.inc.php:934 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/messages.inc.php:939 +#: libraries/messages.inc.php:935 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/messages.inc.php:940 +#: libraries/messages.inc.php:936 msgid "Pending log file writes." msgstr "" -#: libraries/messages.inc.php:941 +#: libraries/messages.inc.php:937 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/messages.inc.php:942 +#: libraries/messages.inc.php:938 #, fuzzy msgid "The number of pages created." msgstr "Duomenų nuskaitymų skaičius." -#: libraries/messages.inc.php:943 +#: libraries/messages.inc.php:939 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: libraries/messages.inc.php:944 +#: libraries/messages.inc.php:940 #, fuzzy msgid "The number of pages read." msgstr "Duomenų nuskaitymų skaičius." -#: libraries/messages.inc.php:945 +#: libraries/messages.inc.php:941 #, fuzzy msgid "The number of pages written." msgstr "Duomenų įrašymų skaičius." -#: libraries/messages.inc.php:946 +#: libraries/messages.inc.php:942 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/messages.inc.php:947 +#: libraries/messages.inc.php:943 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/messages.inc.php:948 +#: libraries/messages.inc.php:944 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/messages.inc.php:949 +#: libraries/messages.inc.php:945 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/messages.inc.php:950 +#: libraries/messages.inc.php:946 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/messages.inc.php:951 +#: libraries/messages.inc.php:947 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/messages.inc.php:952 +#: libraries/messages.inc.php:948 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/messages.inc.php:953 +#: libraries/messages.inc.php:949 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/messages.inc.php:954 +#: libraries/messages.inc.php:950 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/messages.inc.php:955 +#: libraries/messages.inc.php:951 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/messages.inc.php:956 +#: libraries/messages.inc.php:952 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: libraries/messages.inc.php:957 +#: libraries/messages.inc.php:953 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/messages.inc.php:958 +#: libraries/messages.inc.php:954 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/messages.inc.php:959 +#: libraries/messages.inc.php:955 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/messages.inc.php:960 +#: libraries/messages.inc.php:956 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/messages.inc.php:961 +#: libraries/messages.inc.php:957 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/messages.inc.php:962 +#: libraries/messages.inc.php:958 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/messages.inc.php:963 +#: libraries/messages.inc.php:959 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/messages.inc.php:964 +#: libraries/messages.inc.php:960 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/messages.inc.php:965 +#: libraries/messages.inc.php:961 #, fuzzy msgid "The number of files that are open." msgstr "Duomenų įrašymų skaičius." -#: libraries/messages.inc.php:966 +#: libraries/messages.inc.php:962 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/messages.inc.php:967 +#: libraries/messages.inc.php:963 #, fuzzy msgid "The number of tables that are open." msgstr "Duomenų įrašymų skaičius." -#: libraries/messages.inc.php:968 +#: libraries/messages.inc.php:964 msgid "The number of free memory blocks in query cache." msgstr "" -#: libraries/messages.inc.php:969 +#: libraries/messages.inc.php:965 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/messages.inc.php:970 +#: libraries/messages.inc.php:966 #, fuzzy msgid "The number of cache hits." msgstr "Įkeltų eilučių skaičius" -#: libraries/messages.inc.php:971 +#: libraries/messages.inc.php:967 msgid "The number of queries added to the cache." msgstr "" -#: libraries/messages.inc.php:972 +#: libraries/messages.inc.php:968 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -5674,106 +5674,106 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/messages.inc.php:973 +#: libraries/messages.inc.php:969 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/messages.inc.php:974 +#: libraries/messages.inc.php:970 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/messages.inc.php:975 +#: libraries/messages.inc.php:971 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/messages.inc.php:976 +#: libraries/messages.inc.php:972 #, fuzzy msgctxt "$strShowStatusReset" msgid "Reset" msgstr "Atstatyti į pradinę būseną" -#: libraries/messages.inc.php:977 +#: libraries/messages.inc.php:973 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/messages.inc.php:978 +#: libraries/messages.inc.php:974 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: libraries/messages.inc.php:979 +#: libraries/messages.inc.php:975 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/messages.inc.php:980 +#: libraries/messages.inc.php:976 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: libraries/messages.inc.php:981 +#: libraries/messages.inc.php:977 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/messages.inc.php:982 +#: libraries/messages.inc.php:978 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/messages.inc.php:983 +#: libraries/messages.inc.php:979 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/messages.inc.php:984 +#: libraries/messages.inc.php:980 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/messages.inc.php:985 +#: libraries/messages.inc.php:981 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/messages.inc.php:986 +#: libraries/messages.inc.php:982 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/messages.inc.php:987 +#: libraries/messages.inc.php:983 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/messages.inc.php:988 +#: libraries/messages.inc.php:984 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/messages.inc.php:989 +#: libraries/messages.inc.php:985 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/messages.inc.php:990 +#: libraries/messages.inc.php:986 #, fuzzy msgid "The number of sorted rows." msgstr "Įkeltų eilučių skaičius" -#: libraries/messages.inc.php:991 +#: libraries/messages.inc.php:987 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/messages.inc.php:992 +#: libraries/messages.inc.php:988 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/messages.inc.php:993 +#: libraries/messages.inc.php:989 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -5781,18 +5781,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/messages.inc.php:994 +#: libraries/messages.inc.php:990 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/messages.inc.php:995 +#: libraries/messages.inc.php:991 msgid "The number of currently open connections." msgstr "" -#: libraries/messages.inc.php:996 +#: libraries/messages.inc.php:992 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -5800,74 +5800,74 @@ msgid "" "implementation.)" msgstr "" -#: libraries/messages.inc.php:997 +#: libraries/messages.inc.php:993 msgid "The number of threads that are not sleeping." msgstr "" -#: libraries/messages.inc.php:999 tbl_printview.php:75 +#: libraries/messages.inc.php:995 tbl_printview.php:75 msgid "Show tables" msgstr "Rodyti lentelės" -#: libraries/messages.inc.php:1000 libraries/sql_query_form.lib.php:396 +#: libraries/messages.inc.php:996 libraries/sql_query_form.lib.php:396 msgid " Show this query here again " msgstr " Rodyti šią užklausą vėl " -#: libraries/messages.inc.php:1001 libraries/mysql_charsets.lib.php:217 +#: libraries/messages.inc.php:997 libraries/mysql_charsets.lib.php:217 #: libraries/mysql_charsets.lib.php:342 msgid "Simplified Chinese" msgstr "Supaprastinta Kiniečių" -#: libraries/messages.inc.php:1002 tbl_operations.php:258 +#: libraries/messages.inc.php:998 tbl_operations.php:258 msgid "(singly)" msgstr "(pavieniui)" -#: libraries/messages.inc.php:1005 libraries/replication_gui.lib.php:52 +#: libraries/messages.inc.php:1001 libraries/replication_gui.lib.php:52 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" msgstr "" -#: libraries/messages.inc.php:1006 libraries/mysql_charsets.lib.php:283 +#: libraries/messages.inc.php:1002 libraries/mysql_charsets.lib.php:283 msgid "Slovak" msgstr "Slovakų" -#: libraries/messages.inc.php:1007 libraries/mysql_charsets.lib.php:286 +#: libraries/messages.inc.php:1003 libraries/mysql_charsets.lib.php:286 msgid "Slovenian" msgstr "Slovėnų" -#: libraries/messages.inc.php:1008 pmd_general.php:95 +#: libraries/messages.inc.php:1004 pmd_general.php:95 msgid "Small/Big All" msgstr "" -#: libraries/messages.inc.php:1009 pmd_general.php:91 +#: libraries/messages.inc.php:1005 pmd_general.php:91 msgid "Snap to grid" msgstr "" -#: libraries/messages.inc.php:1011 server_synchronize.php:1167 +#: libraries/messages.inc.php:1007 server_synchronize.php:1167 msgid "Socket" msgstr "" -#: libraries/messages.inc.php:1013 server_status.php:259 +#: libraries/messages.inc.php:1009 server_status.php:259 msgid "Sorting" msgstr "Rūšiavimas" -#: libraries/messages.inc.php:1015 tbl_printview.php:310 tbl_structure.php:657 +#: libraries/messages.inc.php:1011 tbl_printview.php:310 tbl_structure.php:657 msgid "Space usage" msgstr "Vietos naudojimas" -#: libraries/messages.inc.php:1016 libraries/mysql_charsets.lib.php:289 +#: libraries/messages.inc.php:1012 libraries/mysql_charsets.lib.php:289 msgid "Spanish" msgstr "Ispanų" -#: libraries/messages.inc.php:1019 +#: libraries/messages.inc.php:1015 msgid "Export type" msgstr "Eksporto tipas" -#: libraries/messages.inc.php:1020 +#: libraries/messages.inc.php:1016 msgid "Export time in UTC" msgstr "" -#: libraries/messages.inc.php:1021 libraries/sqlparser.lib.php:173 +#: libraries/messages.inc.php:1017 libraries/sqlparser.lib.php:173 msgid "" "There is a chance that you may have found a bug in the SQL parser. Please " "examine your query closely, and check that the quotes are correct and not " @@ -5889,7 +5889,7 @@ msgstr "" "supaprastinite savo SQL užklausą ir perduodamų duomenų kiekį užklausoje ir " "praneškite apie klaidą programos kūrėjams su žemiau pateikiama informacija:" -#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:137 +#: libraries/messages.inc.php:1018 libraries/sqlparser.lib.php:137 msgid "" "There seems to be an error in your SQL query. The MySQL server error output " "below, if there is any, may also help you in diagnosing the problem" @@ -5897,421 +5897,421 @@ msgstr "" "Klaida SQL užklausoje. Žemiau išvestas MySQL serverio pranešimas (jeigu toks " "yra), turėtų padėti Jums nustatyti klaidos priežastį" -#: libraries/messages.inc.php:1026 libraries/sqlparser.lib.php:495 +#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:495 msgid "Invalid Identifer" msgstr "Klaidingas vardas" -#: libraries/messages.inc.php:1027 libraries/sqlparser.lib.php:344 +#: libraries/messages.inc.php:1023 libraries/sqlparser.lib.php:344 msgid "Unclosed quote" msgstr "Trūksta uždaromosios kabutės" -#: libraries/messages.inc.php:1028 libraries/sqlparser.lib.php:612 +#: libraries/messages.inc.php:1024 libraries/sqlparser.lib.php:612 msgid "Unknown Punctuation String" msgstr "Klaidinga skyryba" -#: libraries/messages.inc.php:1030 server_replication.php:327 +#: libraries/messages.inc.php:1026 server_replication.php:327 #: server_replication.php:328 #, fuzzy msgid "Start" msgstr "Šeštadienis" -#: libraries/messages.inc.php:1033 tbl_printview.php:369 tbl_structure.php:729 +#: libraries/messages.inc.php:1029 tbl_printview.php:369 tbl_structure.php:729 msgid "Statements" msgstr "Parametrai" -#: libraries/messages.inc.php:1034 tbl_printview.php:380 tbl_structure.php:741 +#: libraries/messages.inc.php:1030 tbl_printview.php:380 tbl_structure.php:741 msgid "static" msgstr "" -#: libraries/messages.inc.php:1035 server_status.php:388 +#: libraries/messages.inc.php:1031 server_status.php:388 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: libraries/messages.inc.php:1038 server_replication.php:327 +#: libraries/messages.inc.php:1034 server_replication.php:327 #: server_replication.php:328 msgid "Stop" msgstr "" -#: libraries/messages.inc.php:1039 server_engines.php:49 +#: libraries/messages.inc.php:1035 server_engines.php:49 msgid "Storage Engines" msgstr "Saugojimo varikliai" -#: libraries/messages.inc.php:1040 libraries/tbl_properties.inc.php:726 +#: libraries/messages.inc.php:1036 libraries/tbl_properties.inc.php:726 #: server_engines.php:58 tbl_operations.php:353 msgid "Storage Engine" msgstr "Saugojimo variklis" -#: libraries/messages.inc.php:1042 +#: libraries/messages.inc.php:1038 msgid "CSV for MS Excel" msgstr "Duomenys ekselio CSV formatu" -#: libraries/messages.inc.php:1044 tbl_structure.php:516 tbl_structure.php:518 +#: libraries/messages.inc.php:1040 tbl_structure.php:516 tbl_structure.php:518 msgid "Propose table structure" msgstr "Analizuoti lentelės struktūrą" -#: libraries/messages.inc.php:1045 server_synchronize.php:424 +#: libraries/messages.inc.php:1041 server_synchronize.php:424 #: server_synchronize.php:867 #, fuzzy msgid "Structure Difference" msgstr "Skirtumas" -#: libraries/messages.inc.php:1049 server_synchronize.php:265 +#: libraries/messages.inc.php:1045 server_synchronize.php:265 #, fuzzy msgid "Structure Synchronization" msgstr "Duomenų sinchronizacija" -#: libraries/messages.inc.php:1050 libraries/sql_query_form.lib.php:462 +#: libraries/messages.inc.php:1046 libraries/sql_query_form.lib.php:462 msgid "Submit" msgstr "Siųsti" -#: libraries/messages.inc.php:1052 main.php:358 +#: libraries/messages.inc.php:1048 main.php:358 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " "issues." msgstr "" -#: libraries/messages.inc.php:1054 libraries/mysql_charsets.lib.php:295 +#: libraries/messages.inc.php:1050 libraries/mysql_charsets.lib.php:295 #: libraries/mysql_charsets.lib.php:392 msgid "Swedish" msgstr "Švedų" -#: libraries/messages.inc.php:1060 tbl_operations.php:556 +#: libraries/messages.inc.php:1056 tbl_operations.php:556 msgid "Switch to copied table" msgstr "Pereiti į lentelės kopiją" -#: libraries/messages.inc.php:1061 server_synchronize.php:1213 +#: libraries/messages.inc.php:1057 server_synchronize.php:1213 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." msgstr "" -#: libraries/messages.inc.php:1062 server_synchronize.php:451 +#: libraries/messages.inc.php:1058 server_synchronize.php:451 #: server_synchronize.php:896 msgid "Synchronize Databases" msgstr "Sinchronizuoti duomenų bazes" -#: libraries/messages.inc.php:1063 libraries/server_links.inc.php:92 +#: libraries/messages.inc.php:1059 libraries/server_links.inc.php:92 #: server_synchronize.php:1092 server_synchronize.php:1100 msgid "Synchronize" msgstr "Sinchronizuoti" -#: libraries/messages.inc.php:1065 server_synchronize.php:430 +#: libraries/messages.inc.php:1061 server_synchronize.php:430 #: server_synchronize.php:873 msgid "Add column(s)" msgstr "Pridėti stulpelį(-ius)" -#: libraries/messages.inc.php:1066 tbl_create.php:62 +#: libraries/messages.inc.php:1062 tbl_create.php:62 #, php-format msgid "Table %s already exists!" msgstr "Lentelė %s jau yra!" -#: libraries/messages.inc.php:1067 server_synchronize.php:432 +#: libraries/messages.inc.php:1063 server_synchronize.php:432 #: server_synchronize.php:875 msgid "Alter column(s)" msgstr "Pakeisti stulpelį(-ius)" -#: libraries/messages.inc.php:1068 tbl_addfield.php:189 tbl_alter.php:103 +#: libraries/messages.inc.php:1064 tbl_addfield.php:189 tbl_alter.php:103 #: tbl_indexes.php:98 #, php-format msgid "Table %1$s has been altered successfully" msgstr "Lentelė %1$s sėkmingai pakeista" -#: libraries/messages.inc.php:1069 server_synchronize.php:434 +#: libraries/messages.inc.php:1065 server_synchronize.php:434 #: server_synchronize.php:877 #, fuzzy msgid "Apply index(s)" msgstr "Keisti indeksą(-us)" -#: libraries/messages.inc.php:1071 server_synchronize.php:446 +#: libraries/messages.inc.php:1067 server_synchronize.php:446 #: server_synchronize.php:890 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: libraries/messages.inc.php:1072 tbl_move_copy.php:82 +#: libraries/messages.inc.php:1068 tbl_move_copy.php:82 msgid "The table name is empty!" msgstr "Tuščias lentelės vardas!" -#: libraries/messages.inc.php:1073 tbl_create.php:249 +#: libraries/messages.inc.php:1069 tbl_create.php:249 #, fuzzy, php-format msgid "Table %1$s has been created." msgstr "Duomenų bazė %1$s sukurta." -#: libraries/messages.inc.php:1076 tbl_operations.php:628 +#: libraries/messages.inc.php:1072 tbl_operations.php:628 #, php-format msgid "Table %s has been flushed" msgstr "Lentelės buferis %s išvalytas" -#: libraries/messages.inc.php:1077 server_synchronize.php:436 +#: libraries/messages.inc.php:1073 server_synchronize.php:436 #: server_synchronize.php:879 msgid "Insert row(s)" msgstr "Įterpti eilutę(-es)" -#: libraries/messages.inc.php:1078 libraries/tbl_links.inc.php:107 +#: libraries/messages.inc.php:1074 libraries/tbl_links.inc.php:107 #: libraries/tbl_links.inc.php:140 libraries/tbl_links.inc.php:141 msgid "Table seems to be empty!" msgstr "Lentelė atrodo tuščia!" -#: libraries/messages.inc.php:1079 tbl_operations.php:568 +#: libraries/messages.inc.php:1075 tbl_operations.php:568 msgid "Table maintenance" msgstr "Lentelės diagnostika" -#: libraries/messages.inc.php:1080 libraries/tbl_properties.inc.php:618 +#: libraries/messages.inc.php:1076 libraries/tbl_properties.inc.php:618 #: server_synchronize.php:428 server_synchronize.php:871 msgid "Table name" msgstr "Lentelės vardas" -#: libraries/messages.inc.php:1081 pdf_schema.php:1116 +#: libraries/messages.inc.php:1077 pdf_schema.php:1116 msgid "Table of contents" msgstr "Turinys" -#: libraries/messages.inc.php:1082 tbl_operations.php:334 +#: libraries/messages.inc.php:1078 tbl_operations.php:334 msgid "Table options" msgstr "Lentelės parinktys" -#: libraries/messages.inc.php:1083 server_synchronize.php:431 +#: libraries/messages.inc.php:1079 server_synchronize.php:431 #: server_synchronize.php:874 #, fuzzy msgid "Remove column(s)" msgstr "Pridėti stulpelį(-ius)" -#: libraries/messages.inc.php:1084 server_synchronize.php:433 +#: libraries/messages.inc.php:1080 server_synchronize.php:433 #: server_synchronize.php:876 #, fuzzy msgid "Remove index(s)" msgstr "Keisti indeksą(-us)" -#: libraries/messages.inc.php:1088 server_synchronize.php:435 +#: libraries/messages.inc.php:1084 server_synchronize.php:435 #: server_synchronize.php:878 msgid "Update row(s)" msgstr "" -#: libraries/messages.inc.php:1090 server_synchronize.php:942 +#: libraries/messages.inc.php:1086 server_synchronize.php:942 msgid "Target database has been synchronized with source database" msgstr "" -#: libraries/messages.inc.php:1091 server_privileges.php:392 +#: libraries/messages.inc.php:1087 server_privileges.php:392 #: server_privileges.php:527 server_privileges.php:1679 #: server_privileges.php:1685 msgid "Table-specific privileges" msgstr "Specifinės lentelių privilegijos" -#: libraries/messages.inc.php:1092 server_status.php:254 +#: libraries/messages.inc.php:1088 server_status.php:254 msgid "Temporary data" msgstr "" -#: libraries/messages.inc.php:1093 tbl_change.php:728 +#: libraries/messages.inc.php:1089 tbl_change.php:728 msgid " Because of its length,
this field might not be editable " msgstr " Tai yra jo ilgis,
šis laukelis neredaguojamas " -#: libraries/messages.inc.php:1094 +#: libraries/messages.inc.php:1090 msgid "Texy! text" msgstr "" -#: libraries/messages.inc.php:1095 libraries/mysql_charsets.lib.php:298 +#: libraries/messages.inc.php:1091 libraries/mysql_charsets.lib.php:298 #: libraries/mysql_charsets.lib.php:395 msgid "Thai" msgstr "Tailando" -#: libraries/messages.inc.php:1102 libraries/replication_gui.lib.php:308 +#: libraries/messages.inc.php:1098 libraries/replication_gui.lib.php:308 #: server_privileges.php:734 msgid "This Host" msgstr "Dabartinis serveris" -#: libraries/messages.inc.php:1103 server_status.php:252 +#: libraries/messages.inc.php:1099 server_status.php:252 msgid "Threads" msgstr "" -#: libraries/messages.inc.php:1104 server_processlist.php:22 +#: libraries/messages.inc.php:1100 server_processlist.php:22 #, php-format msgid "Thread %s was successfully killed." msgstr "%s buvo sėkmingai išjungtas." -#: libraries/messages.inc.php:1106 +#: libraries/messages.inc.php:1102 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." msgstr "" -#: libraries/messages.inc.php:1109 pmd_pdf.php:94 +#: libraries/messages.inc.php:1105 pmd_pdf.php:94 msgid "to/from page" msgstr "" -#: libraries/messages.inc.php:1110 pdf_pages.php:343 +#: libraries/messages.inc.php:1106 pdf_pages.php:343 msgid "Toggle scratchboard" msgstr "įjungti scratchboard" -#: libraries/messages.inc.php:1111 pmd_general.php:99 +#: libraries/messages.inc.php:1107 pmd_general.php:99 msgid "Toggle small/big" msgstr "" -#: libraries/messages.inc.php:1112 pmd_help.php:27 +#: libraries/messages.inc.php:1108 pmd_help.php:27 msgid "To select relation, click :" msgstr "" -#: libraries/messages.inc.php:1115 libraries/tbl_links.inc.php:149 +#: libraries/messages.inc.php:1111 libraries/tbl_links.inc.php:149 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" -#: libraries/messages.inc.php:1116 tbl_tracking.php:655 +#: libraries/messages.inc.php:1112 tbl_tracking.php:655 msgid "Activate now" msgstr "" -#: libraries/messages.inc.php:1117 tbl_tracking.php:653 +#: libraries/messages.inc.php:1113 tbl_tracking.php:653 #, php-format msgid "Activate tracking for %s.%s" msgstr "" -#: libraries/messages.inc.php:1118 tbl_tracking.php:221 +#: libraries/messages.inc.php:1114 tbl_tracking.php:221 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/messages.inc.php:1119 tbl_tracking.php:688 +#: libraries/messages.inc.php:1115 tbl_tracking.php:688 #, fuzzy msgid "Create version" msgstr "Paskutinė versija" -#: libraries/messages.inc.php:1120 tbl_tracking.php:668 +#: libraries/messages.inc.php:1116 tbl_tracking.php:668 #, php-format msgid "Create version %s of %s.%s" msgstr "" -#: libraries/messages.inc.php:1122 tbl_tracking.php:412 +#: libraries/messages.inc.php:1118 tbl_tracking.php:412 msgid "Data definition statement" msgstr "" -#: libraries/messages.inc.php:1123 tbl_tracking.php:463 +#: libraries/messages.inc.php:1119 tbl_tracking.php:463 msgid "Data manipulation statement" msgstr "" -#: libraries/messages.inc.php:1124 tbl_tracking.php:410 tbl_tracking.php:461 +#: libraries/messages.inc.php:1120 tbl_tracking.php:410 tbl_tracking.php:461 msgid "Date" msgstr "Data" -#: libraries/messages.inc.php:1125 tbl_tracking.php:642 +#: libraries/messages.inc.php:1121 tbl_tracking.php:642 msgid "Deactivate now" msgstr "" -#: libraries/messages.inc.php:1126 tbl_tracking.php:640 +#: libraries/messages.inc.php:1122 tbl_tracking.php:640 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "" -#: libraries/messages.inc.php:1127 tbl_tracking.php:521 +#: libraries/messages.inc.php:1123 tbl_tracking.php:521 #, fuzzy, php-format msgid "Export as %s" msgstr "Eksportuoti lenteles" -#: libraries/messages.inc.php:1130 tbl_tracking.php:251 tbl_tracking.php:379 +#: libraries/messages.inc.php:1126 tbl_tracking.php:251 tbl_tracking.php:379 msgid "Close" msgstr "Uždaryti" -#: libraries/messages.inc.php:1131 tbl_tracking.php:114 +#: libraries/messages.inc.php:1127 tbl_tracking.php:114 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/messages.inc.php:1133 tbl_tracking.php:397 tbl_tracking.php:504 +#: libraries/messages.inc.php:1129 tbl_tracking.php:397 tbl_tracking.php:504 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "" -#: libraries/messages.inc.php:1134 tbl_tracking.php:561 +#: libraries/messages.inc.php:1130 tbl_tracking.php:561 #, fuzzy msgid "Show versions" msgstr "Paskutinė versija" -#: libraries/messages.inc.php:1135 tbl_tracking.php:507 +#: libraries/messages.inc.php:1131 tbl_tracking.php:507 msgid "SQL dump (file download)" msgstr "" -#: libraries/messages.inc.php:1136 tbl_tracking.php:508 +#: libraries/messages.inc.php:1132 tbl_tracking.php:508 msgid "SQL dump" msgstr "" -#: libraries/messages.inc.php:1137 tbl_tracking.php:213 +#: libraries/messages.inc.php:1133 tbl_tracking.php:213 msgid "SQL statements executed." msgstr "SQL užklausos įvykdytos." -#: libraries/messages.inc.php:1138 +#: libraries/messages.inc.php:1134 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/messages.inc.php:1139 tbl_tracking.php:509 +#: libraries/messages.inc.php:1135 tbl_tracking.php:509 msgid "SQL execution" msgstr "SQL vykdymas" -#: libraries/messages.inc.php:1140 tbl_tracking.php:230 +#: libraries/messages.inc.php:1136 tbl_tracking.php:230 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/messages.inc.php:1141 tbl_tracking.php:381 +#: libraries/messages.inc.php:1137 tbl_tracking.php:381 msgid "Tracking statements" msgstr "" -#: libraries/messages.inc.php:1148 tbl_tracking.php:593 +#: libraries/messages.inc.php:1144 tbl_tracking.php:593 msgid "Version" msgstr "Versija" -#: libraries/messages.inc.php:1149 tbl_tracking.php:672 +#: libraries/messages.inc.php:1145 tbl_tracking.php:672 msgid "Track these data definition statements:" msgstr "" -#: libraries/messages.inc.php:1150 tbl_tracking.php:680 +#: libraries/messages.inc.php:1146 tbl_tracking.php:680 msgid "Track these data manipulation statements:" msgstr "" -#: libraries/messages.inc.php:1155 tbl_tracking.php:411 tbl_tracking.php:462 +#: libraries/messages.inc.php:1151 tbl_tracking.php:411 tbl_tracking.php:462 msgid "Username" msgstr "Vartotojo vardas" -#: libraries/messages.inc.php:1156 tbl_tracking.php:203 +#: libraries/messages.inc.php:1152 tbl_tracking.php:203 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "" -#: libraries/messages.inc.php:1157 tbl_tracking.php:187 +#: libraries/messages.inc.php:1153 tbl_tracking.php:187 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "" -#: libraries/messages.inc.php:1158 tbl_tracking.php:195 +#: libraries/messages.inc.php:1154 tbl_tracking.php:195 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "" -#: libraries/messages.inc.php:1159 tbl_tracking.php:262 +#: libraries/messages.inc.php:1155 tbl_tracking.php:262 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/messages.inc.php:1161 tbl_tracking.php:220 +#: libraries/messages.inc.php:1157 tbl_tracking.php:220 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/messages.inc.php:1162 libraries/mysql_charsets.lib.php:219 +#: libraries/messages.inc.php:1158 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:362 msgid "Traditional Chinese" msgstr "Tradicinė Kiniečių" -#: libraries/messages.inc.php:1163 libraries/mysql_charsets.lib.php:292 +#: libraries/messages.inc.php:1159 libraries/mysql_charsets.lib.php:292 msgid "Traditional Spanish" msgstr "Tradicinė ispanų" -#: libraries/messages.inc.php:1164 server_status.php:388 +#: libraries/messages.inc.php:1160 server_status.php:388 msgid "Traffic" msgstr "Apkrovimas" -#: libraries/messages.inc.php:1165 server_status.php:261 +#: libraries/messages.inc.php:1161 server_status.php:261 msgid "Transaction coordinator" msgstr "" -#: libraries/messages.inc.php:1166 +#: libraries/messages.inc.php:1162 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 " @@ -6323,13 +6323,13 @@ msgstr "" "lentelės eilutės lauko turinčio failą pavadinimas. Jeigu pateiksite antrą " "parametrą, ištrinkite pirmojo parametro reikšmę." -#: libraries/messages.inc.php:1167 +#: libraries/messages.inc.php:1163 msgid "" "Displays hexadecimal representation of data. Optional first parameter " "specifies how often space will be added (defaults to 2 nibbles)." msgstr "" -#: libraries/messages.inc.php:1168 +#: libraries/messages.inc.php:1164 msgid "" "Displays a clickable thumbnail. The options are the maximum width and height " "in pixels. The original aspect ratio is preserved." @@ -6337,16 +6337,16 @@ msgstr "" "Parodo aktyvų mažinį; nustatymai: plotis,aukštis pikseliais (išsaugo " "originalų santykį)" -#: libraries/messages.inc.php:1169 +#: libraries/messages.inc.php:1165 msgid "Displays a link to download this image." msgstr "" "Išvedama nuoroda į šį paveikslėlį (tiesioginis blob atsisiuntimas ir pan.)." -#: libraries/messages.inc.php:1170 +#: libraries/messages.inc.php:1166 msgid "See image/jpeg: inline" msgstr "Žr. image/jpeg: vidų" -#: libraries/messages.inc.php:1171 +#: libraries/messages.inc.php:1167 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 " @@ -6358,7 +6358,7 @@ msgid "" "gmdate() function." msgstr "" -#: libraries/messages.inc.php:1172 +#: libraries/messages.inc.php:1168 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 " @@ -6383,13 +6383,13 @@ msgstr "" "atributą NOWRAP, tam kad išvedama būtų atvaizduota be perkėlimų į kitas " "eilutes (nutylint: reikšmė lygi 1)." -#: libraries/messages.inc.php:1173 +#: libraries/messages.inc.php:1169 msgid "" "Displays the contents of the field as-is, without running it through " "htmlspecialchars(). That is, the field is assumed to contain valid HTML." msgstr "Išsaugo originalų lauko apipavidalinimą. Nevykdomas išvengimas." -#: libraries/messages.inc.php:1174 +#: libraries/messages.inc.php:1170 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 " @@ -6399,7 +6399,7 @@ msgstr "" "argumentai: prefiksas (pvz \"http://domain.com/\"), plotis (pikseliais), " "aukštis (pikseliais)." -#: libraries/messages.inc.php:1175 +#: libraries/messages.inc.php:1171 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 " @@ -6408,11 +6408,11 @@ msgstr "" "Gražinama nuoroda į įvedimo lauke įrašytą failo pavadinimą; argumentai: " "prefiksas (pvz \"http://domain.com/\"), nuorodos pavadinimas." -#: libraries/messages.inc.php:1176 +#: libraries/messages.inc.php:1172 msgid "Formats text as SQL query with syntax highlighting." msgstr "" -#: libraries/messages.inc.php:1177 +#: libraries/messages.inc.php:1173 msgid "" "Displays a part of a string. The first option is the number of characters to " "skip from the beginning of the string (Default 0). The second option is the " @@ -6426,71 +6426,71 @@ msgstr "" "parametras nurodo kurios raidės bus prijungtos prie išvedimo teksto " "(nutylint: ...)." -#: libraries/messages.inc.php:1179 server_binlog.php:183 server_binlog.php:186 +#: libraries/messages.inc.php:1175 server_binlog.php:183 server_binlog.php:186 #: server_processlist.php:49 server_processlist.php:51 msgid "Truncate Shown Queries" msgstr "Trumpinti rodomas užklausas" -#: libraries/messages.inc.php:1180 libraries/mysql_charsets.lib.php:301 +#: libraries/messages.inc.php:1176 libraries/mysql_charsets.lib.php:301 #: libraries/mysql_charsets.lib.php:389 msgid "Turkish" msgstr "Turkų" -#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:304 +#: libraries/messages.inc.php:1179 libraries/mysql_charsets.lib.php:304 #: libraries/mysql_charsets.lib.php:386 msgid "Ukrainian" msgstr "Ukrainiečių" -#: libraries/messages.inc.php:1185 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:1181 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 msgid "Unicode" msgstr "Unicodas" -#: libraries/messages.inc.php:1187 libraries/mysql_charsets.lib.php:398 +#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:398 #: libraries/mysql_charsets.lib.php:405 msgid "unknown" msgstr "nežinoma" -#: libraries/messages.inc.php:1190 server_privileges.php:1152 +#: libraries/messages.inc.php:1186 server_privileges.php:1152 #, php-format msgid "You have updated the privileges for %s." msgstr "Jūs pakeitėte privilegijas %s." -#: libraries/messages.inc.php:1191 user_password.php:112 +#: libraries/messages.inc.php:1187 user_password.php:112 msgid "The profile has been updated." msgstr "Profilis papildytas." -#: libraries/messages.inc.php:1193 libraries/relation.lib.php:138 +#: libraries/messages.inc.php:1189 libraries/relation.lib.php:138 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "Informaciją, kaip atnaujinti Column_comments lentelę, galite rasti " "dokumentacijoje." -#: libraries/messages.inc.php:1194 +#: libraries/messages.inc.php:1190 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Rekomenduojame atnaujint %s iki %s ar vėlesnės versijos." -#: libraries/messages.inc.php:1204 tbl_printview.php:314 tbl_structure.php:661 +#: libraries/messages.inc.php:1200 tbl_printview.php:314 tbl_structure.php:661 msgid "Usage" msgstr "Išnaudota" -#: libraries/messages.inc.php:1205 +#: libraries/messages.inc.php:1201 msgid "Enclose table and field names with backquotes" msgstr "Lentelių ir laukų vardams naudoti šias kabutes ` `" -#: libraries/messages.inc.php:1206 libraries/replication_gui.lib.php:314 +#: libraries/messages.inc.php:1202 libraries/replication_gui.lib.php:314 #: server_privileges.php:740 msgid "Use Host Table" msgstr "Naudoti Host lentelę" -#: libraries/messages.inc.php:1207 server_privileges.php:848 +#: libraries/messages.inc.php:1203 server_privileges.php:848 #, php-format msgid "The user %s already exists!" msgstr "Vartotojas %s jau yra!" -#: libraries/messages.inc.php:1209 libraries/replication_gui.lib.php:55 +#: libraries/messages.inc.php:1205 libraries/replication_gui.lib.php:55 #: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245 #: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255 #: server_privileges.php:672 server_privileges.php:675 @@ -6498,36 +6498,36 @@ msgstr "Vartotojas %s jau yra!" msgid "User name" msgstr "Vartotojo vardas" -#: libraries/messages.inc.php:1210 server_privileges.php:1645 +#: libraries/messages.inc.php:1206 server_privileges.php:1645 msgid "The selected user was not found in the privilege table." msgstr "Privilegijų lentelėje pasirinktas vartotojas nerastas." -#: libraries/messages.inc.php:1211 server_privileges.php:1365 +#: libraries/messages.inc.php:1207 server_privileges.php:1365 msgid "User overview" msgstr "Vartotojų peržiūra" -#: libraries/messages.inc.php:1212 server_privileges.php:1261 +#: libraries/messages.inc.php:1208 server_privileges.php:1261 msgid "The selected users have been deleted successfully." msgstr "Pažymėti vartotojai sėkmingai pašalinti." -#: libraries/messages.inc.php:1213 server_privileges.php:2026 +#: libraries/messages.inc.php:1209 server_privileges.php:2026 #, php-format msgid "Users having access to "%s"" msgstr "Vartotojai turintys priėjimą prie "%s"" -#: libraries/messages.inc.php:1214 main.php:189 server_privileges.php:1350 +#: libraries/messages.inc.php:1210 main.php:189 server_privileges.php:1350 #: server_privileges.php:1497 server_privileges.php:1611 #: server_privileges.php:2029 server_processlist.php:54 msgid "User" msgstr "Vartotojas" -#: libraries/messages.inc.php:1215 tbl_change.php:1171 +#: libraries/messages.inc.php:1211 tbl_change.php:1171 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Šokinėjimui tarp reikšmių naudokite TAB mygtuką arba naudokite CTRL+rodyklės" -#: libraries/messages.inc.php:1217 libraries/replication_gui.lib.php:251 +#: libraries/messages.inc.php:1213 libraries/replication_gui.lib.php:251 #: libraries/replication_gui.lib.php:319 libraries/replication_gui.lib.php:342 #: server_privileges.php:678 server_privileges.php:745 #: server_privileges.php:769 server_privileges.php:1889 @@ -6535,7 +6535,7 @@ msgstr "" msgid "Use text field" msgstr "Naudokite teksto įvedimo lauką" -#: libraries/messages.inc.php:1221 libraries/sqlvalidator.lib.php:68 +#: libraries/messages.inc.php:1217 libraries/sqlvalidator.lib.php:68 #, php-format msgid "" "The SQL validator could not be initialized. Please check if you have " @@ -6544,87 +6544,87 @@ msgstr "" "Neveikia SQL interpretatorius. Prašome patikrinkite ar yra suinstaliuoti " "visi privalomi php moduliai, nurodyti %sdokumentacijoje%s." -#: libraries/messages.inc.php:1222 libraries/replication_gui.lib.php:111 +#: libraries/messages.inc.php:1218 libraries/replication_gui.lib.php:111 #: server_status.php:627 tbl_change.php:324 tbl_printview.php:370 #: tbl_select.php:139 tbl_structure.php:730 msgid "Value" msgstr "Reikšmė" -#: libraries/messages.inc.php:1223 libraries/replication_gui.lib.php:110 +#: libraries/messages.inc.php:1219 libraries/replication_gui.lib.php:110 #: libraries/sql_query_form.lib.php:445 server_status.php:626 #: server_variables.php:52 msgid "Variable" msgstr "Kintamasis" -#: libraries/messages.inc.php:1225 server_export.php:21 +#: libraries/messages.inc.php:1221 server_export.php:21 msgid "View dump (schema) of databases" msgstr "Peržiūrėti duombazių išrašą" -#: libraries/messages.inc.php:1227 tbl_export.php:23 +#: libraries/messages.inc.php:1223 tbl_export.php:23 msgid "View dump (schema) of table" msgstr "Peržiūrėti lentelės struktūros atvaizdį" -#: libraries/messages.inc.php:1231 view_create.php:142 +#: libraries/messages.inc.php:1227 view_create.php:142 msgid "VIEW name" msgstr "" -#: libraries/messages.inc.php:1237 main.php:205 +#: libraries/messages.inc.php:1233 main.php:205 msgid "Web server" msgstr "Interneto serveris" -#: libraries/messages.inc.php:1239 libraries/mysql_charsets.lib.php:277 +#: libraries/messages.inc.php:1235 libraries/mysql_charsets.lib.php:277 #: libraries/mysql_charsets.lib.php:325 msgid "West European" msgstr "Vakarų Europos" -#: libraries/messages.inc.php:1240 main.php:230 +#: libraries/messages.inc.php:1236 main.php:230 msgid "Wiki" msgstr "Wiki" -#: libraries/messages.inc.php:1241 server_privileges.php:2138 +#: libraries/messages.inc.php:1237 server_privileges.php:2138 msgid "wildcard" msgstr "pakaitos simbolis" -#: libraries/messages.inc.php:1248 +#: libraries/messages.inc.php:1244 #, fuzzy msgid "Export contents" msgstr "Eksportuoti funkcijas" -#: libraries/messages.inc.php:1249 +#: libraries/messages.inc.php:1245 msgid "Export functions" msgstr "Eksportuoti funkcijas" -#: libraries/messages.inc.php:1250 +#: libraries/messages.inc.php:1246 msgid "Export procedures" msgstr "Eksportuoti procedūras" -#: libraries/messages.inc.php:1251 +#: libraries/messages.inc.php:1247 msgid "Export Structure Schemas (recommended)" msgstr "" -#: libraries/messages.inc.php:1252 +#: libraries/messages.inc.php:1248 msgid "Export tables" msgstr "Eksportuoti lenteles" -#: libraries/messages.inc.php:1253 +#: libraries/messages.inc.php:1249 #, fuzzy msgid "Export triggers" msgstr "Eksportuoti lenteles" -#: libraries/messages.inc.php:1254 +#: libraries/messages.inc.php:1250 #, fuzzy msgid "Export views" msgstr "Eksportuoti lenteles" -#: libraries/messages.inc.php:1255 +#: libraries/messages.inc.php:1251 msgid "XML" msgstr "XML" -#: libraries/messages.inc.php:1259 server_privileges.php:592 +#: libraries/messages.inc.php:1255 server_privileges.php:592 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Pastaba: nėra jokių apribojimų jeigu reikšmė nurodyta lygi 0 (nuliui)." -#: libraries/messages.inc.php:1260 +#: libraries/messages.inc.php:1256 msgid "\"zipped\"" msgstr "\"zip\"" diff --git a/po/lv.po b/po/lv.po index f0141d8bd..1e93fcaff 100644 --- 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-05-13 11:25+0200\n" +"POT-Creation-Date: 2010-05-13 11:30+0200\n" "PO-Revision-Date: 2010-03-12 09:16+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: latvian \n" @@ -13,19 +13,19 @@ msgstr "" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:38 browse_foreigners.php:59 -#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:870 +#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:866 #: server_privileges.php:1475 msgid "Show all" msgstr "Rādīt visu" #: browse_foreigners.php:82 db_operations.php:648 -#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:394 -#: libraries/export/pdf.php:147 libraries/messages.inc.php:597 +#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394 +#: libraries/export/pdf.php:147 libraries/messages.inc.php:593 #: pdf_schema.php:283 pdf_schema.php:1123 pdf_schema.php:1139 msgid "Page number:" msgstr "Lapas numurs:" -#: browse_foreigners.php:132 libraries/messages.inc.php:1242 +#: browse_foreigners.php:132 libraries/messages.inc.php:1238 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -38,7 +38,7 @@ 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/db_links.inc.php:75 -#: libraries/messages.inc.php:841 libraries/tbl_links.inc.php:63 +#: libraries/messages.inc.php:837 libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Meklēt" @@ -47,12 +47,12 @@ msgstr "Meklēt" #: db_search.php:362 db_structure.php:567 js/messages.php:48 #: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2267 +#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 #: 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 #: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614 -#: libraries/messages.inc.php:361 libraries/replication_gui.lib.php:73 +#: libraries/messages.inc.php:357 libraries/replication_gui.lib.php:73 #: libraries/replication_gui.lib.php:365 libraries/select_server.lib.php:104 #: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477 #: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782 @@ -72,33 +72,33 @@ msgid "Go" msgstr "Aiziet!" #: browse_foreigners.php:168 browse_foreigners.php:172 -#: libraries/Index.class.php:442 libraries/messages.inc.php:459 +#: libraries/Index.class.php:442 libraries/messages.inc.php:455 #: tbl_tracking.php:320 msgid "Keyname" msgstr "Atslēgas nosaukums" #: browse_foreigners.php:169 browse_foreigners.php:171 -#: libraries/messages.inc.php:252 server_collations.php:55 +#: libraries/messages.inc.php:248 server_collations.php:55 #: server_collations.php:67 server_engines.php:59 server_status.php:628 msgid "Description" msgstr "Apraksts" #: browse_foreigners.php:247 browse_foreigners.php:256 #: browse_foreigners.php:268 browse_foreigners.php:276 -#: libraries/messages.inc.php:1218 +#: libraries/messages.inc.php:1214 msgid "Use this value" msgstr "Lietot šo vērtību" -#: db_create.php:46 libraries/messages.inc.php:215 +#: db_create.php:46 libraries/messages.inc.php:211 #, fuzzy, php-format msgid "Database %1$s has been created." msgstr "Datubāze %s tika izdzēsta." -#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:232 +#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:228 msgid "Database comment: " msgstr "Datubāzes komentārs: " -#: db_datadict.php:165 libraries/messages.inc.php:1070 +#: db_datadict.php:165 libraries/messages.inc.php:1066 #: libraries/tbl_properties.inc.php:724 pdf_schema.php:1236 #: tbl_operations.php:345 tbl_printview.php:130 msgid "Table comments" @@ -107,7 +107,7 @@ msgstr "Komentārs tabulai" #: db_datadict.php:174 db_qbe.php:174 libraries/Index.class.php:446 #: libraries/export/htmlword.php:244 libraries/export/latex.php:360 #: libraries/export/odt.php:294 libraries/export/texytext.php:233 -#: libraries/messages.inc.php:317 libraries/tbl_properties.inc.php:99 +#: libraries/messages.inc.php:313 libraries/tbl_properties.inc.php:99 #: libraries/tbl_properties.inc.php:275 pdf_schema.php:1262 #: pdf_schema.php:1283 tbl_change.php:308 tbl_indexes.php:189 #: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135 @@ -119,7 +119,7 @@ msgstr "Lauks" #: libraries/db_events.inc.php:31 libraries/db_routines.inc.php:42 #: 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/messages.inc.php:1181 +#: libraries/export/texytext.php:234 libraries/messages.inc.php:1177 #: libraries/tbl_properties.inc.php:100 pdf_schema.php:1263 #: pdf_schema.php:1284 server_privileges.php:2031 tbl_change.php:287 #: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313 @@ -131,7 +131,7 @@ msgstr "Tips" #: db_datadict.php:177 libraries/Index.class.php:449 #: libraries/export/htmlword.php:246 libraries/export/latex.php:360 #: libraries/export/odt.php:300 libraries/export/texytext.php:235 -#: libraries/messages.inc.php:576 libraries/tbl_properties.inc.php:109 +#: libraries/messages.inc.php:572 libraries/tbl_properties.inc.php:109 #: pdf_schema.php:1265 pdf_schema.php:1286 tbl_change.php:323 #: tbl_printview.php:145 tbl_structure.php:181 tbl_tracking.php:276 #: tbl_tracking.php:327 @@ -140,7 +140,7 @@ msgstr "Nulle" #: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 -#: libraries/export/texytext.php:236 libraries/messages.inc.php:238 +#: libraries/export/texytext.php:236 libraries/messages.inc.php:234 #: libraries/tbl_properties.inc.php:106 pdf_schema.php:1266 #: pdf_schema.php:1287 tbl_printview.php:146 tbl_structure.php:182 #: tbl_tracking.php:277 @@ -149,14 +149,14 @@ msgstr "Noklusēts" #: db_datadict.php:182 libraries/export/htmlword.php:249 #: libraries/export/latex.php:362 libraries/export/odt.php:307 -#: libraries/export/texytext.php:238 libraries/messages.inc.php:483 +#: libraries/export/texytext.php:238 libraries/messages.inc.php:479 #: pdf_schema.php:1268 pdf_schema.php:1289 tbl_printview.php:150 msgid "Links to" msgstr "Linki uz" #: db_datadict.php:184 db_printview.php:112 libraries/export/htmlword.php:252 #: libraries/export/latex.php:365 libraries/export/odt.php:312 -#: libraries/export/texytext.php:241 libraries/messages.inc.php:163 +#: libraries/export/texytext.php:241 libraries/messages.inc.php:159 #: libraries/tbl_properties.inc.php:130 pdf_schema.php:1279 #: pdf_schema.php:1290 tbl_printview.php:152 msgid "Comments" @@ -165,7 +165,7 @@ msgstr "Komentāri" #: db_datadict.php:267 libraries/Index.class.php:359 #: 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/messages.inc.php:559 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:555 #: libraries/mult_submits.inc.php:263 pdf_schema.php:1344 #: server_privileges.php:1529 server_privileges.php:1540 #: server_privileges.php:1850 server_privileges.php:1855 @@ -177,7 +177,7 @@ msgstr "Nē" #: db_datadict.php:267 libraries/Index.class.php:360 #: libraries/Index.class.php:385 libraries/export/htmlword.php:322 #: libraries/export/latex.php:430 libraries/export/odt.php:368 -#: libraries/export/texytext.php:311 libraries/messages.inc.php:1257 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:1253 #: libraries/mult_submits.inc.php:45 libraries/mult_submits.inc.php:50 #: libraries/mult_submits.inc.php:55 libraries/mult_submits.inc.php:60 #: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:101 @@ -191,108 +191,108 @@ msgstr "Nē" msgid "Yes" msgstr "Jā" -#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:670 +#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:666 #: tbl_printview.php:498 msgid "Print" msgstr "Drukāt" -#: db_export.php:29 libraries/messages.inc.php:1226 +#: db_export.php:29 libraries/messages.inc.php:1222 msgid "View dump (schema) of database" msgstr "Apskatīt datubāzes dampu (shēmu)" #: db_export.php:33 db_printview.php:96 db_qbe.php:102 db_structure.php:51 -#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:568 +#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:564 #: navigation.php:346 msgid "No tables found in database." msgstr "Tabulas nav atrastas šajā datubāzē." -#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:845 +#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:841 #: server_export.php:27 msgid "Select All" msgstr "Iezīmēt visu" -#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1188 +#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1184 #: server_export.php:29 msgid "Unselect All" msgstr "Neiezīmēt neko" -#: db_operations.php:38 libraries/messages.inc.php:213 tbl_create.php:54 +#: db_operations.php:38 libraries/messages.inc.php:209 tbl_create.php:54 msgid "The database name is empty!" msgstr "Datubāzes nosaukums ir tukšs!" -#: db_operations.php:236 libraries/messages.inc.php:753 +#: db_operations.php:236 libraries/messages.inc.php:749 #, php-format msgid "Database %s has been renamed to %s" msgstr "Datubāze %s tika pārsaukta par %s" -#: db_operations.php:240 libraries/messages.inc.php:178 +#: db_operations.php:240 libraries/messages.inc.php:174 #, php-format msgid "Database %s has been copied to %s" msgstr "Datubāze %s tika pārkopēta uz %s" -#: db_operations.php:410 libraries/messages.inc.php:236 +#: db_operations.php:410 libraries/messages.inc.php:232 msgid "Rename database to" msgstr "Pārsaukt datubāzi par" -#: db_operations.php:415 libraries/messages.inc.php:161 +#: db_operations.php:415 libraries/messages.inc.php:157 #: server_processlist.php:57 msgid "Command" msgstr "Komanda" -#: db_operations.php:425 libraries/messages.inc.php:58 tbl_change.php:1143 +#: db_operations.php:425 libraries/messages.inc.php:54 tbl_change.php:1143 msgid "and then" msgstr "" -#: db_operations.php:451 libraries/messages.inc.php:233 +#: db_operations.php:451 libraries/messages.inc.php:229 msgid "Copy database to" msgstr "Kopēt datubāzi uz" -#: db_operations.php:458 libraries/messages.inc.php:1043 +#: db_operations.php:458 libraries/messages.inc.php:1039 #: tbl_operations.php:526 tbl_tracking.php:388 msgid "Structure only" msgstr "Tikai struktūra" -#: db_operations.php:459 libraries/messages.inc.php:1041 +#: db_operations.php:459 libraries/messages.inc.php:1037 #: tbl_operations.php:527 tbl_tracking.php:390 msgid "Structure and data" msgstr "Struktūra un dati" -#: db_operations.php:460 libraries/messages.inc.php:229 tbl_operations.php:528 +#: db_operations.php:460 libraries/messages.inc.php:225 tbl_operations.php:528 #: tbl_tracking.php:389 msgid "Data only" msgstr "Tikai dati" -#: db_operations.php:468 libraries/messages.inc.php:186 +#: db_operations.php:468 libraries/messages.inc.php:182 msgid "CREATE DATABASE before copying" msgstr "" #: db_operations.php:471 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 -#: libraries/export/sql.php:82 libraries/messages.inc.php:30 +#: libraries/export/sql.php:82 libraries/messages.inc.php:26 #: tbl_operations.php:534 #, php-format msgid "Add %s" msgstr "" -#: db_operations.php:475 libraries/messages.inc.php:29 tbl_operations.php:297 +#: db_operations.php:475 libraries/messages.inc.php:25 tbl_operations.php:297 #: tbl_operations.php:536 msgid "Add AUTO_INCREMENT value" msgstr "Pievienot AUTO_INCREMENT vērtību" -#: db_operations.php:479 libraries/messages.inc.php:31 tbl_operations.php:543 +#: db_operations.php:479 libraries/messages.inc.php:27 tbl_operations.php:543 msgid "Add constraints" msgstr "Pievienot ierobežojumus" -#: db_operations.php:492 libraries/messages.inc.php:1059 +#: db_operations.php:492 libraries/messages.inc.php:1055 msgid "Switch to copied database" msgstr "Pārslēgties uz nokopēto datubāzi" -#: db_operations.php:533 libraries/messages.inc.php:89 +#: db_operations.php:533 libraries/messages.inc.php:85 msgid "BLOB Repository" msgstr "" #: db_operations.php:536 db_tracking.php:76 libraries/common.lib.php:1350 -#: libraries/messages.inc.php:1037 libraries/server_links.inc.php:49 +#: libraries/messages.inc.php:1033 libraries/server_links.inc.php:49 #: server_processlist.php:59 tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "Statuss" @@ -304,12 +304,12 @@ msgctxt "BLOB repository" msgid "Enabled" msgstr "Ieslēgts" -#: db_operations.php:548 libraries/messages.inc.php:93 +#: db_operations.php:548 libraries/messages.inc.php:89 #, fuzzy msgid "Disable" msgstr "Izslēgts" -#: db_operations.php:558 libraries/messages.inc.php:90 +#: db_operations.php:558 libraries/messages.inc.php:86 msgid "Damaged" msgstr "" @@ -326,13 +326,13 @@ msgctxt "BLOB repository" msgid "Disabled" msgstr "Izslēgts" -#: db_operations.php:574 libraries/messages.inc.php:96 +#: db_operations.php:574 libraries/messages.inc.php:92 #, fuzzy msgid "Enable" msgstr "Ieslēgts" #: db_operations.php:598 libraries/Index.class.php:448 -#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:158 +#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:154 #: 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:361 @@ -341,7 +341,7 @@ msgstr "Ieslēgts" msgid "Collation" msgstr "Izkārtojumi" -#: db_operations.php:609 libraries/messages.inc.php:742 main.php:316 +#: db_operations.php:609 libraries/messages.inc.php:738 main.php:316 #: pdf_schema.php:34 #, php-format msgid "" @@ -351,58 +351,58 @@ 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:645 libraries/messages.inc.php:264 pdf_pages.php:528 +#: db_operations.php:645 libraries/messages.inc.php:260 pdf_pages.php:528 msgid "Display PDF schema" msgstr "Rādīt PDF shēmu" -#: db_operations.php:661 libraries/messages.inc.php:877 pdf_pages.php:529 +#: db_operations.php:661 libraries/messages.inc.php:873 pdf_pages.php:529 msgid "Show grid" msgstr "Rādīt režģi" -#: db_operations.php:664 libraries/messages.inc.php:874 pdf_pages.php:530 +#: db_operations.php:664 libraries/messages.inc.php:870 pdf_pages.php:530 msgid "Show color" msgstr "Rādīt krāsas" -#: db_operations.php:666 libraries/messages.inc.php:998 pdf_pages.php:531 +#: db_operations.php:666 libraries/messages.inc.php:994 pdf_pages.php:531 msgid "Show dimension of tables" msgstr "Rādit tabulu izmērus" -#: db_operations.php:669 libraries/messages.inc.php:52 pdf_pages.php:532 +#: db_operations.php:669 libraries/messages.inc.php:48 pdf_pages.php:532 msgid "Display all tables with the same width" msgstr "rādīt visas tabulas vienadā platumā?" -#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:227 +#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:223 #: pdf_pages.php:533 msgid "Data Dictionary" msgstr "Datu vārdnīca" -#: db_operations.php:674 libraries/messages.inc.php:884 pdf_pages.php:534 +#: db_operations.php:674 libraries/messages.inc.php:880 pdf_pages.php:534 msgid "Only show keys" msgstr "" -#: db_operations.php:676 libraries/messages.inc.php:875 pdf_pages.php:535 +#: db_operations.php:676 libraries/messages.inc.php:871 pdf_pages.php:535 msgid "Data Dictionary Format" msgstr "Datu vārdnīcas formats" -#: db_operations.php:678 libraries/messages.inc.php:464 pdf_pages.php:537 +#: db_operations.php:678 libraries/messages.inc.php:460 pdf_pages.php:537 msgid "Landscape" msgstr "Ainava" -#: db_operations.php:679 libraries/messages.inc.php:663 pdf_pages.php:538 +#: db_operations.php:679 libraries/messages.inc.php:659 pdf_pages.php:538 msgid "Portrait" msgstr "Portrets" -#: db_operations.php:682 libraries/messages.inc.php:599 pdf_pages.php:541 +#: db_operations.php:682 libraries/messages.inc.php:595 pdf_pages.php:541 msgid "Paper size" msgstr "Papīra izmērs" -#: db_operations.php:706 libraries/messages.inc.php:281 +#: db_operations.php:706 libraries/messages.inc.php:277 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 libraries/messages.inc.php:1087 +#: libraries/header.inc.php:126 libraries/messages.inc.php:1083 #: pdf_pages.php:405 server_privileges.php:1626 server_privileges.php:1682 #: server_privileges.php:1946 server_synchronize.php:423 #: server_synchronize.php:866 tbl_tracking.php:592 test/theme.php:75 @@ -410,176 +410,176 @@ msgid "Table" msgstr "Tabula" #: db_printview.php:105 libraries/db_structure.lib.php:56 -#: libraries/messages.inc.php:735 +#: libraries/messages.inc.php:731 msgid "Records" msgstr "Ieraksti" #: db_printview.php:109 libraries/db_structure.lib.php:67 -#: libraries/messages.inc.php:1003 tbl_indexes.php:190 +#: libraries/messages.inc.php:999 tbl_indexes.php:190 msgid "Size" msgstr "Izmērs" #: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 -#: libraries/export/sql.php:899 libraries/messages.inc.php:436 +#: libraries/export/sql.php:899 libraries/messages.inc.php:432 msgid "in use" msgstr "lietošanā" #: db_printview.php:187 libraries/db_info.inc.php:88 -#: libraries/export/sql.php:514 libraries/messages.inc.php:1032 +#: libraries/export/sql.php:514 libraries/messages.inc.php:1028 #: pdf_schema.php:1241 tbl_printview.php:434 tbl_structure.php:810 msgid "Creation" msgstr "Izveidošana" #: db_printview.php:196 libraries/db_info.inc.php:93 -#: libraries/export/sql.php:519 libraries/messages.inc.php:1036 +#: libraries/export/sql.php:519 libraries/messages.inc.php:1032 #: pdf_schema.php:1246 tbl_printview.php:444 tbl_structure.php:818 msgid "Last update" msgstr "Pēdējā atjaunošana" #: db_printview.php:205 libraries/db_info.inc.php:98 -#: libraries/export/sql.php:524 libraries/messages.inc.php:1031 +#: libraries/export/sql.php:524 libraries/messages.inc.php:1027 #: pdf_schema.php:1251 tbl_printview.php:454 tbl_structure.php:826 msgid "Last check" msgstr "Pēdējā pārbaude" -#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1085 +#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1081 #, php-format msgid "%s table(s)" msgstr "%s tabula(s)" #: db_qbe.php:29 libraries/display_tbl.lib.php:1981 -#: libraries/messages.inc.php:1051 libraries/sql_query_form.lib.php:140 +#: libraries/messages.inc.php:1047 libraries/sql_query_form.lib.php:140 #: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131 #: view_operations.php:62 msgid "Your SQL query has been executed successfully" msgstr "Jūsu SQL vaicājums tika veiksmīgi izpildīts" -#: db_qbe.php:42 libraries/messages.inc.php:371 +#: db_qbe.php:42 libraries/messages.inc.php:367 msgid "You have to choose at least one column to display" msgstr "Izvēlieties vismaz vienu kolonnu attēlošanai" #: db_qbe.php:200 libraries/db_structure.lib.php:104 -#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1014 +#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1010 msgid "Sort" msgstr "Kārtošana" #: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111 #: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828 -#: libraries/messages.inc.php:69 server_databases.php:170 +#: libraries/messages.inc.php:65 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314 msgid "Ascending" msgstr "Augošā secībā" #: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119 #: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825 -#: libraries/messages.inc.php:251 server_databases.php:170 +#: libraries/messages.inc.php:247 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315 msgid "Descending" msgstr "Dilstošā secībā" #: db_qbe.php:264 db_tracking.php:78 libraries/display_tbl.lib.php:308 -#: libraries/messages.inc.php:888 tbl_change.php:277 tbl_tracking.php:597 +#: libraries/messages.inc.php:884 tbl_change.php:277 tbl_tracking.php:597 msgid "Show" msgstr "Rādīt" -#: db_qbe.php:300 libraries/messages.inc.php:202 +#: db_qbe.php:300 libraries/messages.inc.php:198 msgid "Criteria" msgstr "Kritērijs" #: db_qbe.php:353 db_qbe.php:435 db_qbe.php:527 db_qbe.php:558 -#: libraries/messages.inc.php:718 +#: libraries/messages.inc.php:714 msgid "Ins" msgstr "Ielikt" #: db_qbe.php:357 db_qbe.php:439 db_qbe.php:524 db_qbe.php:555 -#: libraries/messages.inc.php:56 +#: libraries/messages.inc.php:52 msgid "And" msgstr "Un" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:529 db_qbe.php:560 -#: libraries/messages.inc.php:717 +#: libraries/messages.inc.php:713 msgid "Del" 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/messages.inc.php:592 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:588 #: libraries/tbl_properties.inc.php:779 server_privileges.php:258 #: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288 msgid "Or" msgstr "Vai" -#: db_qbe.php:507 libraries/messages.inc.php:516 +#: db_qbe.php:507 libraries/messages.inc.php:512 msgid "Modify" msgstr "Labot" -#: db_qbe.php:584 libraries/messages.inc.php:33 +#: db_qbe.php:584 libraries/messages.inc.php:29 msgid "Add/Delete Criteria Row" msgstr "Pievienot/Dzēst ierakstu" -#: db_qbe.php:596 libraries/messages.inc.php:32 +#: db_qbe.php:596 libraries/messages.inc.php:28 msgid "Add/Delete Field Columns" msgstr "Pievienot/Dzēst laukus (kolonnas)" -#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1192 +#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1188 msgid "Update Query" msgstr "Atjaunot vaicājumu" -#: db_qbe.php:617 libraries/messages.inc.php:1216 +#: db_qbe.php:617 libraries/messages.inc.php:1212 msgid "Use Tables" msgstr "Lietot tabulas" -#: db_qbe.php:640 libraries/messages.inc.php:723 +#: db_qbe.php:640 libraries/messages.inc.php:719 #, php-format msgid "SQL query on database %s:" msgstr "SQL vaicājums uz datubāzes %s:" -#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:823 +#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:819 msgid "Submit Query" msgstr "Izpildīt vaicājumu" #: db_search.php:68 libraries/auth/config.auth.lib.php:84 #: libraries/auth/config.auth.lib.php:103 #: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52 -#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:26 +#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:22 msgid "Access denied" msgstr "Pieeja aizliegta" -#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:836 +#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:832 msgid "at least one of the words" msgstr "kaut viens no vārdiem" -#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:837 +#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:833 msgid "all words" msgstr "visi vārdi" -#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:838 +#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:834 msgid "the exact phrase" msgstr "precīza frāze" -#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:839 +#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:835 msgid "as regular expression" msgstr "kā regulārā izteiksme" -#: db_search.php:242 libraries/messages.inc.php:840 +#: db_search.php:242 libraries/messages.inc.php:836 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Meklēšanas rezultāti \"%s\" %s:" -#: db_search.php:260 libraries/messages.inc.php:579 +#: db_search.php:260 libraries/messages.inc.php:575 #, php-format msgid "%s match(es) inside table %s" 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/messages.inc.php:108 +#: db_structure.php:105 libraries/messages.inc.php:104 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468 msgid "Browse" msgstr "Apskatīt" #: db_search.php:272 libraries/display_tbl.lib.php:1165 -#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:243 +#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:239 #: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406 #: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377 #: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216 @@ -587,45 +587,45 @@ msgstr "Apskatīt" msgid "Delete" msgstr "Dzēst" -#: db_search.php:285 libraries/messages.inc.php:580 +#: db_search.php:285 libraries/messages.inc.php:576 #, php-format msgid "Total: %s match(es)" msgstr "Kopumā: %s rezultāti" -#: db_search.php:299 libraries/messages.inc.php:832 +#: db_search.php:299 libraries/messages.inc.php:828 msgid "Search in database" msgstr "Meklēt datubāzē" -#: db_search.php:302 libraries/messages.inc.php:835 +#: db_search.php:302 libraries/messages.inc.php:831 msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgstr "Vārdi vai vērtības meklēšanai (aizstājējzīme: \"%\"):" -#: db_search.php:307 libraries/messages.inc.php:842 +#: db_search.php:307 libraries/messages.inc.php:838 msgid "Find:" msgstr "Atrast:" -#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1017 +#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1013 msgid "Words are separated by a space character (\" \")." msgstr "Vārdi ir atdalīti ar tukšumu (\" \")." -#: db_search.php:325 libraries/messages.inc.php:834 +#: db_search.php:325 libraries/messages.inc.php:830 msgid "Inside table(s):" msgstr "Tabulā(s):" -#: db_search.php:355 libraries/messages.inc.php:833 +#: db_search.php:355 libraries/messages.inc.php:829 msgid "Inside field:" 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/messages.inc.php:431 libraries/sql_query_form.lib.php:334 +#: libraries/messages.inc.php:427 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/db_links.inc.php:63 libraries/export/latex.php:337 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:1048 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:1044 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 #: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269 msgid "Structure" @@ -634,8 +634,8 @@ 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:1642 -#: libraries/db_links.inc.php:100 libraries/messages.inc.php:272 +#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/db_links.inc.php:100 libraries/messages.inc.php:268 #: 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 @@ -645,40 +645,40 @@ 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:1641 -#: libraries/messages.inc.php:284 libraries/mult_submits.inc.php:39 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: libraries/messages.inc.php:280 libraries/mult_submits.inc.php:39 #: libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Iztukšot" -#: db_structure.php:316 libraries/messages.inc.php:1075 +#: db_structure.php:316 libraries/messages.inc.php:1071 #: libraries/tbl_links.inc.php:100 #, php-format msgid "Table %s has been emptied" msgstr "Tabula %s tika iztukšota" -#: db_structure.php:326 libraries/messages.inc.php:1229 +#: db_structure.php:326 libraries/messages.inc.php:1225 #: 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/messages.inc.php:1074 +#: db_structure.php:326 libraries/messages.inc.php:1070 #: libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "Tabula %s tika izdzēsta" -#: db_structure.php:333 libraries/messages.inc.php:1128 +#: db_structure.php:333 libraries/messages.inc.php:1124 msgid "Tracking is active." msgstr "" -#: db_structure.php:335 libraries/messages.inc.php:1129 +#: db_structure.php:335 libraries/messages.inc.php:1125 msgid "Tracking is not active." msgstr "" #: db_structure.php:420 libraries/display_tbl.lib.php:1944 -#: libraries/messages.inc.php:1228 +#: libraries/messages.inc.php:1224 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -686,84 +686,84 @@ msgid "" msgstr "" #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 -#: libraries/messages.inc.php:1233 libraries/tbl_info.inc.php:66 +#: libraries/messages.inc.php:1229 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/messages.inc.php:773 libraries/server_links.inc.php:70 +#: libraries/messages.inc.php:769 libraries/server_links.inc.php:70 #: server_replication.php:33 server_replication.php:164 server_status.php:258 #, fuzzy msgid "Replication" msgstr "Relācijas" -#: db_structure.php:489 libraries/messages.inc.php:1053 +#: db_structure.php:489 libraries/messages.inc.php:1049 msgid "Sum" msgstr "Kopumā" #: db_structure.php:496 libraries/StorageEngine.class.php:356 -#: libraries/messages.inc.php:239 +#: libraries/messages.inc.php:235 #, 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 #: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086 -#: libraries/messages.inc.php:1243 libraries/mult_submits.inc.php:16 +#: libraries/messages.inc.php:1239 libraries/mult_submits.inc.php:16 #: server_databases.php:346 server_databases.php:351 #: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465 msgid "With selected:" msgstr "Ar iezīmēto:" #: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: libraries/messages.inc.php:148 server_databases.php:348 +#: libraries/messages.inc.php:144 server_databases.php:348 #: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459 msgid "Check All" msgstr "Iezīmēt visu" #: db_structure.php:531 libraries/display_tbl.lib.php:2077 -#: libraries/messages.inc.php:1184 libraries/replication_gui.lib.php:33 +#: libraries/messages.inc.php:1180 libraries/replication_gui.lib.php:33 #: server_databases.php:350 server_privileges.php:533 #: server_privileges.php:1564 tbl_structure.php:463 msgid "Uncheck All" msgstr "Neiezīmēt neko" -#: db_structure.php:536 libraries/messages.inc.php:150 +#: db_structure.php:536 libraries/messages.inc.php:146 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 -#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:672 +#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:668 #: libraries/mult_submits.inc.php:28 tbl_structure.php:493 #: tbl_structure.php:495 msgid "Print view" msgstr "Izdrukas versija" -#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:153 +#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:149 #: libraries/mult_submits.inc.php:42 tbl_operations.php:579 msgid "Check table" msgstr "Pārbaudīt tabulu" -#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:590 +#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:586 #: libraries/mult_submits.inc.php:47 tbl_operations.php:619 #: tbl_structure.php:710 tbl_structure.php:712 msgid "Optimize table" msgstr "Optimizēt tabulu" -#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:758 +#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:754 #: libraries/mult_submits.inc.php:52 tbl_operations.php:609 msgid "Repair table" msgstr "Restaurēt tabulu" -#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:55 +#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:51 #: libraries/mult_submits.inc.php:57 tbl_operations.php:599 msgid "Analyze table" msgstr "Analizēt tabulu" #: db_structure.php:557 db_structure.php:558 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/messages.inc.php:310 +#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:306 #: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84 #: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109 #: server_privileges.php:1341 setup/frames/menu.inc.php:22 @@ -771,7 +771,7 @@ msgstr "Analizēt tabulu" msgid "Export" msgstr "Eksports" -#: db_tracking.php:66 libraries/messages.inc.php:1151 +#: db_tracking.php:66 libraries/messages.inc.php:1147 msgid "Tracked tables" msgstr "" @@ -779,7 +779,7 @@ msgstr "" #: 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/header_printview.inc.php:58 libraries/messages.inc.php:212 +#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:208 #: navigation.php:233 server_databases.php:169 server_privileges.php:1621 #: server_privileges.php:1682 server_privileges.php:1940 #: server_processlist.php:56 server_synchronize.php:1179 @@ -787,81 +787,81 @@ msgstr "" msgid "Database" msgstr "Datubāze" -#: db_tracking.php:73 libraries/messages.inc.php:1146 +#: db_tracking.php:73 libraries/messages.inc.php:1142 msgid "Last version" msgstr "" -#: db_tracking.php:74 libraries/messages.inc.php:1145 tbl_tracking.php:594 +#: db_tracking.php:74 libraries/messages.inc.php:1141 tbl_tracking.php:594 #, fuzzy msgid "Created" msgstr "Izveidot" -#: db_tracking.php:75 libraries/messages.inc.php:1147 tbl_tracking.php:595 +#: db_tracking.php:75 libraries/messages.inc.php:1143 tbl_tracking.php:595 msgid "Updated" msgstr "" #: db_tracking.php:77 libraries/Index.class.php:440 -#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:27 +#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:23 #: server_databases.php:203 server_privileges.php:1503 #: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187 msgid "Action" msgstr "Darbība" -#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:247 +#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:243 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:106 libraries/messages.inc.php:1142 tbl_tracking.php:548 +#: db_tracking.php:106 libraries/messages.inc.php:1138 tbl_tracking.php:548 #: tbl_tracking.php:606 tbl_tracking.php:613 msgid "active" msgstr "" -#: db_tracking.php:108 libraries/messages.inc.php:1143 tbl_tracking.php:550 +#: db_tracking.php:108 libraries/messages.inc.php:1139 tbl_tracking.php:550 #: tbl_tracking.php:608 tbl_tracking.php:610 msgid "not active" msgstr "" -#: db_tracking.php:121 libraries/messages.inc.php:1160 +#: db_tracking.php:121 libraries/messages.inc.php:1156 #, fuzzy msgid "Versions" msgstr "Persiešu" -#: db_tracking.php:122 libraries/messages.inc.php:1132 tbl_tracking.php:379 +#: db_tracking.php:122 libraries/messages.inc.php:1128 tbl_tracking.php:379 #: tbl_tracking.php:624 msgid "Tracking report" msgstr "" -#: db_tracking.php:123 libraries/messages.inc.php:1144 tbl_tracking.php:251 +#: db_tracking.php:123 libraries/messages.inc.php:1140 tbl_tracking.php:251 #: tbl_tracking.php:624 #, fuzzy msgid "Structure snapshot" msgstr "Tikai struktūra" -#: db_tracking.php:152 libraries/messages.inc.php:1154 +#: db_tracking.php:152 libraries/messages.inc.php:1150 msgid "Untracked tables" msgstr "" -#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1153 +#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1149 #: tbl_structure.php:529 tbl_structure.php:531 #, fuzzy msgid "Track table" msgstr "Pārbaudīt tabulu" -#: db_tracking.php:200 libraries/messages.inc.php:1121 +#: db_tracking.php:200 libraries/messages.inc.php:1117 #, fuzzy msgid "Database Log" msgstr "Datubāze" -#: export.php:62 libraries/messages.inc.php:312 +#: export.php:62 libraries/messages.inc.php:308 msgid "Selected export type has to be saved in file!" msgstr "" -#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:567 +#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:563 #, php-format msgid "Insufficient space to save the file %s." msgstr "Nepietiek vietas, lai saglabātu failu %s." -#: export.php:294 libraries/messages.inc.php:324 +#: export.php:294 libraries/messages.inc.php:320 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -869,17 +869,17 @@ msgstr "" "Fails %s jau eksistē uz servera. Lūdzu nomainiet faila nosaukumu vai " "atzīmējiet failu pārrakstīšanas opciju." -#: export.php:298 export.php:302 libraries/messages.inc.php:562 +#: export.php:298 export.php:302 libraries/messages.inc.php:558 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Web serverim nav tiesību rakstīt failā %s." -#: export.php:629 libraries/messages.inc.php:276 +#: export.php:629 libraries/messages.inc.php:272 #, php-format msgid "Dump has been saved to file %s." msgstr "Damps tika saglabāts failā %s." -#: import.php:60 libraries/messages.inc.php:1202 +#: import.php:60 libraries/messages.inc.php:1198 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation%" @@ -887,21 +887,21 @@ msgid "" msgstr "" #: import.php:279 import.php:332 libraries/File.class.php:849 -#: libraries/File.class.php:961 libraries/messages.inc.php:325 +#: libraries/File.class.php:961 libraries/messages.inc.php:321 msgid "File could not be read" msgstr "Nevar nolasīt failu" #: import.php:287 import.php:296 import.php:315 import.php:324 #: libraries/File.class.php:1031 libraries/File.class.php:1039 #: libraries/File.class.php:1055 libraries/File.class.php:1063 -#: libraries/messages.inc.php:1189 +#: libraries/messages.inc.php:1185 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." msgstr "" -#: import.php:337 libraries/messages.inc.php:547 +#: import.php:337 libraries/messages.inc.php:543 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -909,40 +909,40 @@ msgid "" msgstr "" #: import.php:372 libraries/display_import.lib.php:24 -#: libraries/messages.inc.php:125 +#: libraries/messages.inc.php:121 msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:397 libraries/messages.inc.php:102 +#: import.php:397 libraries/messages.inc.php:98 msgid "The bookmark has been deleted." msgstr "Ieraksts tika dzēsts." -#: import.php:401 libraries/messages.inc.php:879 +#: import.php:401 libraries/messages.inc.php:875 msgid "Showing bookmark" msgstr "" -#: import.php:403 libraries/messages.inc.php:101 +#: import.php:403 libraries/messages.inc.php:97 #, php-format msgid "Bookmark %s created" msgstr "" -#: import.php:409 import.php:415 libraries/messages.inc.php:407 +#: import.php:409 import.php:415 libraries/messages.inc.php:403 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" -#: import.php:424 libraries/messages.inc.php:1107 +#: import.php:424 libraries/messages.inc.php:1103 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: index.php:190 libraries/messages.inc.php:553 +#: index.php:190 libraries/messages.inc.php:549 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" "phpMyAdmin ir vairāk draudzīgs freimu atbalstošām pārlūkprogrammām." -#: js/messages.php:25 libraries/messages.inc.php:155 +#: js/messages.php:25 libraries/messages.inc.php:151 #: server_synchronize.php:345 server_synchronize.php:357 #: server_synchronize.php:373 server_synchronize.php:380 #: server_synchronize.php:739 server_synchronize.php:767 @@ -950,118 +950,118 @@ msgstr "" msgid "Click to select" msgstr "" -#: js/messages.php:26 libraries/messages.inc.php:156 +#: js/messages.php:26 libraries/messages.inc.php:152 msgid "Click to unselect" msgstr "" #: js/messages.php:27 libraries/import.lib.php:103 -#: libraries/messages.inc.php:550 sql.php:89 +#: libraries/messages.inc.php:546 sql.php:89 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" komanda ir aizliegta." -#: js/messages.php:30 libraries/messages.inc.php:270 +#: js/messages.php:30 libraries/messages.inc.php:266 #: libraries/mult_submits.inc.php:258 sql.php:188 msgid "Do you really want to " msgstr "Vai Jūs tiešām gribat " -#: js/messages.php:31 libraries/messages.inc.php:271 +#: js/messages.php:31 libraries/messages.inc.php:267 #: libraries/mult_submits.inc.php:258 sql.php:172 msgid "You are about to DESTROY a complete database!" msgstr "Jūs taisaties LIKVIDĒT veselu datubāzi!" -#: js/messages.php:34 libraries/messages.inc.php:94 +#: js/messages.php:34 libraries/messages.inc.php:90 msgid "You are about to DISABLE a BLOB Repository!" msgstr "" -#: js/messages.php:35 libraries/messages.inc.php:91 +#: js/messages.php:35 libraries/messages.inc.php:87 #, php-format msgid "Are you sure you want to disable all BLOB references for database %s?" msgstr "" -#: js/messages.php:38 libraries/messages.inc.php:342 +#: js/messages.php:38 libraries/messages.inc.php:338 msgid "Missing value in the form!" msgstr "Formā trūkst vērtību!" -#: js/messages.php:39 libraries/messages.inc.php:570 +#: js/messages.php:39 libraries/messages.inc.php:566 msgid "This is not a number!" msgstr "Tas nav numurs!" -#: js/messages.php:42 libraries/messages.inc.php:380 +#: js/messages.php:42 libraries/messages.inc.php:376 msgid "The host name is empty!" msgstr "Hosts nav norādīts!" -#: js/messages.php:43 libraries/messages.inc.php:1208 +#: js/messages.php:43 libraries/messages.inc.php:1204 msgid "The user name is empty!" msgstr "Lietotāja vārds nav norādīts!" -#: js/messages.php:44 libraries/messages.inc.php:607 +#: js/messages.php:44 libraries/messages.inc.php:603 #: server_privileges.php:1197 user_password.php:70 msgid "The password is empty!" msgstr "Parole nav norādīta!" -#: js/messages.php:45 libraries/messages.inc.php:609 +#: js/messages.php:45 libraries/messages.inc.php:605 #: server_privileges.php:1195 user_password.php:73 msgid "The passwords aren't the same!" msgstr "Paroles nesakrīt!" -#: js/messages.php:49 libraries/messages.inc.php:123 pmd_general.php:342 +#: js/messages.php:49 libraries/messages.inc.php:119 pmd_general.php:342 #: pmd_general.php:379 msgid "Cancel" msgstr "" -#: js/messages.php:52 libraries/messages.inc.php:514 +#: js/messages.php:52 libraries/messages.inc.php:510 msgid "Modifications have been saved" msgstr "Labojumi tika saglabāti" -#: js/messages.php:53 libraries/messages.inc.php:741 +#: js/messages.php:53 libraries/messages.inc.php:737 #, fuzzy msgid "Relation deleted" msgstr "Relāciju pārskats" -#: js/messages.php:54 libraries/messages.inc.php:340 +#: js/messages.php:54 libraries/messages.inc.php:336 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:55 libraries/messages.inc.php:434 +#: js/messages.php:55 libraries/messages.inc.php:430 #, fuzzy msgid "Internal relation added" msgstr "Iekšējās relācijas" -#: js/messages.php:56 libraries/messages.inc.php:299 +#: js/messages.php:56 libraries/messages.inc.php:295 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:57 libraries/messages.inc.php:300 +#: js/messages.php:57 libraries/messages.inc.php:296 msgid "Error: relation already exists." msgstr "" -#: js/messages.php:58 libraries/messages.inc.php:302 +#: js/messages.php:58 libraries/messages.inc.php:298 msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:59 libraries/messages.inc.php:351 +#: js/messages.php:59 libraries/messages.inc.php:347 #: libraries/relation.lib.php:107 msgid "General relation features" msgstr "Galvenās relāciju īpašības" -#: js/messages.php:59 libraries/messages.inc.php:260 +#: js/messages.php:59 libraries/messages.inc.php:256 #: libraries/relation.lib.php:101 libraries/relation.lib.php:108 msgid "Disabled" msgstr "Izslēgts" -#: js/messages.php:60 libraries/messages.inc.php:850 +#: js/messages.php:60 libraries/messages.inc.php:846 msgid "Select referenced key" msgstr "" -#: js/messages.php:61 libraries/messages.inc.php:848 +#: js/messages.php:61 libraries/messages.inc.php:844 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:62 libraries/messages.inc.php:653 +#: js/messages.php:62 libraries/messages.inc.php:649 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:63 libraries/messages.inc.php:142 pmd_general.php:77 +#: js/messages.php:63 libraries/messages.inc.php:138 pmd_general.php:77 #: tbl_relation.php:548 msgid "Choose field to display" msgstr "Izvēlieties, kuru lauku rādīt" @@ -1081,9 +1081,9 @@ msgid "Prev" msgstr "Iepriekšējie" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2332 -#: libraries/common.lib.php:2335 libraries/display_tbl.lib.php:338 -#: libraries/messages.inc.php:543 server_binlog.php:205 server_binlog.php:207 +#: js/messages.php:77 libraries/common.lib.php:2344 +#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: libraries/messages.inc.php:539 server_binlog.php:205 server_binlog.php:207 #: tbl_printview.php:424 tbl_structure.php:802 msgid "Next" msgstr "Nākamie" @@ -1158,27 +1158,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1543 +#: js/messages.php:97 libraries/common.lib.php:1555 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1545 +#: js/messages.php:99 libraries/common.lib.php:1557 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1547 +#: js/messages.php:101 libraries/common.lib.php:1559 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1549 +#: js/messages.php:103 libraries/common.lib.php:1561 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1551 +#: js/messages.php:105 libraries/common.lib.php:1563 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1186,37 +1186,37 @@ msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1553 +#: js/messages.php:107 libraries/common.lib.php:1565 msgid "Jun" msgstr "Jūn" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1555 +#: js/messages.php:109 libraries/common.lib.php:1567 msgid "Jul" msgstr "Jūl" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1557 +#: js/messages.php:111 libraries/common.lib.php:1569 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1559 +#: js/messages.php:113 libraries/common.lib.php:1571 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1561 +#: js/messages.php:115 libraries/common.lib.php:1573 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1563 +#: js/messages.php:117 libraries/common.lib.php:1575 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1565 +#: js/messages.php:119 libraries/common.lib.php:1577 msgid "Dec" msgstr "Dec" @@ -1257,37 +1257,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1568 +#: js/messages.php:132 libraries/common.lib.php:1580 msgid "Sun" msgstr "Sv" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1570 +#: js/messages.php:134 libraries/common.lib.php:1582 msgid "Mon" msgstr "P" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1572 +#: js/messages.php:136 libraries/common.lib.php:1584 msgid "Tue" msgstr "O" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1574 +#: js/messages.php:138 libraries/common.lib.php:1586 msgid "Wed" msgstr "T" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1576 +#: js/messages.php:140 libraries/common.lib.php:1588 msgid "Thu" msgstr "C" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1578 +#: js/messages.php:142 libraries/common.lib.php:1590 msgid "Fri" msgstr "Pk" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1580 +#: js/messages.php:144 libraries/common.lib.php:1592 msgid "Sat" msgstr "S" @@ -1361,77 +1361,77 @@ msgstr "lietošanā" msgid "Second" msgstr "sekundē" -#: libraries/Config.class.php:1015 libraries/messages.inc.php:338 +#: libraries/Config.class.php:1015 libraries/messages.inc.php:334 msgid "Font size" msgstr "" #: libraries/File.class.php:344 libraries/File.class.php:432 #: libraries/File.class.php:569 libraries/File.class.php:708 -#: libraries/messages.inc.php:1201 +#: libraries/messages.inc.php:1197 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.class.php:414 libraries/messages.inc.php:1198 +#: libraries/File.class.php:414 libraries/messages.inc.php:1194 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:417 libraries/messages.inc.php:1197 +#: libraries/File.class.php:417 libraries/messages.inc.php:1193 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:420 libraries/messages.inc.php:1200 +#: libraries/File.class.php:420 libraries/messages.inc.php:1196 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:423 libraries/messages.inc.php:1199 +#: libraries/File.class.php:423 libraries/messages.inc.php:1195 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:426 libraries/messages.inc.php:1195 +#: libraries/File.class.php:426 libraries/messages.inc.php:1191 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:429 libraries/messages.inc.php:1196 +#: libraries/File.class.php:429 libraries/messages.inc.php:1192 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:908 libraries/messages.inc.php:319 +#: libraries/File.class.php:908 libraries/messages.inc.php:315 #, fuzzy msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "Var būt aptuvens skaits. Skatīt FAQ 3.11" -#: libraries/Index.class.php:428 libraries/messages.inc.php:554 +#: libraries/Index.class.php:428 libraries/messages.inc.php:550 #: tbl_relation.php:529 msgid "No index defined!" msgstr "Nav definēti indeksi!" -#: libraries/Index.class.php:433 libraries/messages.inc.php:411 +#: libraries/Index.class.php:433 libraries/messages.inc.php:407 #: server_databases.php:132 tbl_tracking.php:316 msgid "Indexes" msgstr "Indeksi" -#: libraries/Index.class.php:444 libraries/messages.inc.php:1186 +#: libraries/Index.class.php:444 libraries/messages.inc.php:1182 #: 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:475 tbl_tracking.php:322 msgid "Unique" msgstr "Unikālais" -#: libraries/Index.class.php:445 libraries/messages.inc.php:596 +#: libraries/Index.class.php:445 libraries/messages.inc.php:592 #: tbl_tracking.php:323 msgid "Packed" msgstr "" -#: libraries/Index.class.php:447 libraries/messages.inc.php:131 +#: libraries/Index.class.php:447 libraries/messages.inc.php:127 #: tbl_tracking.php:325 msgid "Cardinality" msgstr "Kardinalitāte" -#: libraries/Index.class.php:450 libraries/messages.inc.php:162 +#: libraries/Index.class.php:450 libraries/messages.inc.php:158 #: tbl_tracking.php:279 tbl_tracking.php:328 #, fuzzy msgid "Comment" @@ -1440,29 +1440,29 @@ msgstr "Komentāri" #: libraries/Index.class.php:466 libraries/common.lib.php:616 #: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:280 pdf_pages.php:280 +#: libraries/messages.inc.php:276 pdf_pages.php:280 #: setup/frames/index.inc.php:124 setup/lib/messages.inc.php:352 #: tbl_row_action.php:69 msgid "Edit" msgstr "Labot" -#: libraries/Index.class.php:472 libraries/messages.inc.php:666 +#: libraries/Index.class.php:472 libraries/messages.inc.php:662 msgid "The primary key has been dropped" msgstr "Primārā atslēga tika izdzēsta" -#: libraries/Index.class.php:476 libraries/messages.inc.php:413 +#: libraries/Index.class.php:476 libraries/messages.inc.php:409 #, php-format msgid "Index %s has been dropped" msgstr "Indekss %s tika izdzēsts" -#: libraries/Index.class.php:576 libraries/messages.inc.php:412 +#: libraries/Index.class.php:576 libraries/messages.inc.php:408 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "" -#: libraries/List_Database.class.php:431 libraries/messages.inc.php:218 +#: libraries/List_Database.class.php:431 libraries/messages.inc.php:214 #: libraries/server_links.inc.php:41 server_databases.php:88 #: server_privileges.php:1621 setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" @@ -1491,85 +1491,85 @@ msgid_plural "%1$d rows inserted." msgstr[0] "Rindas nav iezīmētas" msgstr[1] "Rindas nav iezīmētas" -#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:549 +#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:545 msgid "" "There is no detailed status information available for this storage engine." msgstr "" -#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:291 +#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:287 #, php-format msgid "%s is available on this MySQL server." msgstr "" -#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:292 +#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:288 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "" -#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:294 +#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:290 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "" -#: libraries/Table.class.php:1019 libraries/messages.inc.php:443 +#: libraries/Table.class.php:1019 libraries/messages.inc.php:439 msgid "Invalid database" msgstr "" -#: libraries/Table.class.php:1033 libraries/messages.inc.php:450 +#: libraries/Table.class.php:1033 libraries/messages.inc.php:446 #: tbl_get_field.php:26 msgid "Invalid table name" msgstr "" -#: libraries/Table.class.php:1048 libraries/messages.inc.php:301 +#: libraries/Table.class.php:1048 libraries/messages.inc.php:297 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "" -#: libraries/Table.class.php:1132 libraries/messages.inc.php:754 +#: libraries/Table.class.php:1132 libraries/messages.inc.php:750 #, php-format msgid "Table %s has been renamed to %s" msgstr "Tabula %s tika pārsaukta par %s" -#: libraries/Theme.class.php:162 libraries/messages.inc.php:1099 +#: libraries/Theme.class.php:162 libraries/messages.inc.php:1095 #, php-format msgid "No valid image path for theme %s found!" msgstr "" -#: libraries/Theme.class.php:384 libraries/messages.inc.php:1097 +#: libraries/Theme.class.php:384 libraries/messages.inc.php:1093 msgid "No preview available." msgstr "" -#: libraries/Theme.class.php:387 libraries/messages.inc.php:1089 +#: libraries/Theme.class.php:387 libraries/messages.inc.php:1085 msgid "take it" msgstr "izmantot šo stilu" -#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1096 +#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1092 #, php-format msgid "Default theme %s not found!" msgstr "" -#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1098 +#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1094 #, php-format msgid "Theme %s not found!" msgstr "" -#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1100 +#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1096 #, php-format msgid "Theme path not found for theme %s!" msgstr "" -#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1101 +#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1097 #: test/theme.php:161 themes.php:21 themes.php:41 msgid "Theme / Style" msgstr "Tēma / Stils" -#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:172 +#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:168 msgid "Cannot connect: invalid settings." msgstr "Nevar pieslēgties: kļūda konfigurācijā." #: libraries/auth/config.auth.lib.php:92 #: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65 -#: libraries/messages.inc.php:1238 test/theme.php:152 +#: libraries/messages.inc.php:1234 test/theme.php:152 #, php-format msgid "Welcome to %s" msgstr "Laipni lūgti %s" @@ -1593,51 +1593,51 @@ msgstr "" "failā, un pārliecinieties, ka tie atbilst informācijai, ko Jums deva MySQL " "servera administrators." -#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:488 +#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:484 msgid "Log in" msgstr "Ieiet" #: libraries/auth/cookie.auth.lib.php:246 -#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:659 +#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:655 #: libraries/navigation_header.inc.php:93 #: libraries/navigation_header.inc.php:95 msgid "phpMyAdmin documentation" msgstr "phpMyAdmin dokumentācija" #: libraries/auth/cookie.auth.lib.php:258 -#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:492 +#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:488 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:493 +#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:489 msgid "Server:" msgstr "Serveris" -#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:494 +#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:490 msgid "Username:" msgstr "Lietotājvārds:" -#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:491 +#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:487 msgid "Password:" msgstr "Parole:" -#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:854 +#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:850 msgid "Server Choice" msgstr "Servera izvēle" #: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 -#: libraries/messages.inc.php:177 +#: libraries/messages.inc.php:173 msgid "Cookies must be enabled past this point." msgstr "\"Cookies\" ir jābūt atļautiem aiz šī punkta." #: libraries/auth/cookie.auth.lib.php:671 -#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:489 +#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:485 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" #: libraries/auth/cookie.auth.lib.php:675 -#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:544 +#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:540 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" @@ -1645,53 +1645,53 @@ msgstr "" #: libraries/auth/cookie.auth.lib.php:685 #: libraries/auth/cookie.auth.lib.php:687 -#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:126 +#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:122 msgid "Cannot log in to the MySQL server" msgstr "Nevar pieslēgties MySQL serverim" -#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1245 +#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1241 msgid "Wrong username/password. Access denied." msgstr "Kļūdains lietotājvārds/parole. Pieeja aizliegta." #: libraries/auth/swekey/swekey.auth.lib.php:118 -#: libraries/messages.inc.php:1057 +#: libraries/messages.inc.php:1053 #, php-format msgid "File %s does not contain any key id" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:157 #: libraries/auth/swekey/swekey.auth.lib.php:180 -#: libraries/messages.inc.php:1056 +#: libraries/messages.inc.php:1052 msgid "Hardware authentication failed" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:166 -#: libraries/messages.inc.php:1058 +#: libraries/messages.inc.php:1054 msgid "No valid authentication key plugged" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:202 -#: libraries/messages.inc.php:1055 +#: libraries/messages.inc.php:1051 msgid "Authenticating..." msgstr "" -#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1230 +#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1226 msgid "View image" msgstr "" -#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:652 +#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:648 msgid "Play audio" msgstr "" -#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1232 +#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1228 msgid "View video" msgstr "" -#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:269 +#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:265 msgid "Download file" msgstr "" -#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:128 +#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:124 msgid "" "Couldn't load the iconv or recode extension needed for charset conversion. " "Either configure PHP to enable these extensions or disable charset " @@ -1704,7 +1704,7 @@ msgstr "" #: libraries/charset_conversion.lib.php:79 #: libraries/charset_conversion.lib.php:90 -#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:130 +#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:126 msgid "" "Couldn't use the iconv, libiconv, or recode_string functions, although the " "necessary extensions appear to be loaded. Check your PHP configuration." @@ -1712,7 +1712,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/messages.inc.php:170 +#: libraries/common.inc.php:583 libraries/messages.inc.php:166 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!" @@ -1745,22 +1745,22 @@ msgstr "" msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:636 libraries/messages.inc.php:448 +#: libraries/common.inc.php:636 libraries/messages.inc.php:444 #, 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/messages.inc.php:856 libraries/select_server.lib.php:41 +#: libraries/messages.inc.php:852 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/messages.inc.php:437 +#: libraries/common.inc.php:823 libraries/messages.inc.php:433 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.lib.php:147 libraries/messages.inc.php:499 +#: libraries/common.lib.php:147 libraries/messages.inc.php:495 #, php-format msgid "Max: %s%s" msgstr "Maksimālais izmērs: %s%s" @@ -1782,7 +1782,7 @@ msgstr "Nosūtīts" #: libraries/common.lib.php:428 libraries/common.lib.php:430 #: libraries/common.lib.php:432 libraries/common.lib.php:448 #: libraries/common.lib.php:450 libraries/dbg/setup.php:25 -#: libraries/display_export.lib.php:164 libraries/messages.inc.php:267 +#: libraries/display_export.lib.php:164 libraries/messages.inc.php:263 #: libraries/relation.lib.php:97 libraries/sql_query_form.lib.php:451 #: libraries/sql_query_form.lib.php:454 main.php:229 pdf_pages.php:37 #: pdf_pages.php:43 pdf_pages.php:49 pdf_pages.php:54 @@ -1792,55 +1792,55 @@ msgstr "Dokumentācija" #: libraries/common.lib.php:581 libraries/core.lib.php:234 #: libraries/core.lib.php:263 libraries/import.lib.php:134 -#: libraries/messages.inc.php:297 pdf_schema.php:32 pdf_schema.php:232 +#: libraries/messages.inc.php:293 pdf_schema.php:32 pdf_schema.php:232 #: tbl_change.php:1027 tbl_operations.php:213 tbl_relation.php:290 #: view_operations.php:62 msgid "Error" msgstr "Kļūda" #: libraries/common.lib.php:595 libraries/header_printview.inc.php:61 -#: libraries/messages.inc.php:1023 server_processlist.php:60 +#: libraries/messages.inc.php:1019 server_processlist.php:60 #: server_status.php:247 msgid "SQL query" msgstr "SQL vaicājums" -#: libraries/common.lib.php:634 libraries/messages.inc.php:538 +#: libraries/common.lib.php:634 libraries/messages.inc.php:534 msgid "MySQL said: " msgstr "MySQL teica: " -#: libraries/common.lib.php:667 libraries/messages.inc.php:76 +#: libraries/common.lib.php:667 libraries/messages.inc.php:72 #: pdf_schema.php:241 user_password.php:115 msgid "Back" msgstr "Atpakaļ" -#: libraries/common.lib.php:1177 libraries/messages.inc.php:309 +#: libraries/common.lib.php:1177 libraries/messages.inc.php:305 #: setup/lib/messages.inc.php:353 msgid "Explain SQL" msgstr "Izskaidrot SQL" -#: libraries/common.lib.php:1180 libraries/messages.inc.php:551 +#: libraries/common.lib.php:1180 libraries/messages.inc.php:547 msgid "Skip Explain SQL" msgstr "Neizskaidrot SQL" -#: libraries/common.lib.php:1212 libraries/messages.inc.php:563 +#: libraries/common.lib.php:1212 libraries/messages.inc.php:559 msgid "Without PHP Code" msgstr "Bez PHP koda" -#: libraries/common.lib.php:1215 libraries/messages.inc.php:649 +#: libraries/common.lib.php:1215 libraries/messages.inc.php:645 #: setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "Izveidot PHP kodu" -#: libraries/common.lib.php:1233 libraries/messages.inc.php:737 +#: libraries/common.lib.php:1233 libraries/messages.inc.php:733 #: server_status.php:341 setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "Atjaunot" -#: libraries/common.lib.php:1242 libraries/messages.inc.php:575 +#: libraries/common.lib.php:1242 libraries/messages.inc.php:571 msgid "Skip Validate SQL" msgstr "Nepārbaudīt SQL" -#: libraries/common.lib.php:1245 libraries/messages.inc.php:1220 +#: libraries/common.lib.php:1245 libraries/messages.inc.php:1216 #: setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "Pārbaudīt SQL" @@ -1854,11 +1854,11 @@ msgid "Inline" msgstr "" #: libraries/common.lib.php:1332 libraries/common.lib.php:1347 -#: libraries/messages.inc.php:713 +#: libraries/messages.inc.php:709 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1351 libraries/messages.inc.php:1108 +#: libraries/common.lib.php:1351 libraries/messages.inc.php:1104 #: libraries/tbl_triggers.lib.php:28 server_processlist.php:58 msgid "Time" msgstr "Laiks" @@ -1892,46 +1892,56 @@ msgstr "PB" msgid "EiB" msgstr "EB" +#. l10n: Thousands separator +#: libraries/common.lib.php:1417 +msgid "," +msgstr " " + +#. l10n: Decimal separator +#: libraries/common.lib.php:1419 +msgid "." +msgstr "." + #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1584 +#: libraries/common.lib.php:1596 #: libraries/transformations/text_plain__dateformat.inc.php:28 msgid "%B %d, %Y at %I:%M %p" msgstr "%d.%m.%Y %H:%M" -#: libraries/common.lib.php:1886 +#: libraries/common.lib.php:1898 #, 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:2301 libraries/common.lib.php:2304 -#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:664 +#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:660 #: server_status.php:608 msgid "Begin" msgstr "Sākums" -#: libraries/common.lib.php:2302 libraries/common.lib.php:2305 -#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:665 +#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:661 #: server_binlog.php:168 server_binlog.php:170 msgid "Previous" msgstr "Iepriekšējie" -#: libraries/common.lib.php:2333 libraries/common.lib.php:2336 -#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:289 +#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:285 msgid "End" msgstr "Beigas" -#: libraries/common.lib.php:2409 libraries/messages.inc.php:455 +#: libraries/common.lib.php:2421 libraries/messages.inc.php:451 #, php-format msgid "Jump to database "%s"." msgstr "pāriet pie datubāzes "%s"." -#: libraries/common.lib.php:2429 libraries/messages.inc.php:461 +#: libraries/common.lib.php:2441 libraries/messages.inc.php:457 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/core.lib.php:286 libraries/dbg/setup.php:22 -#: libraries/messages.inc.php:127 +#: libraries/messages.inc.php:123 #, php-format msgid "" "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " @@ -1940,116 +1950,116 @@ msgstr "" "nevar ielādēt paplašinājumu %s,
lūdzu pārbaudiet PHP konfigurāciju" #: libraries/db_events.inc.php:20 libraries/db_events.inc.php:22 -#: libraries/export/sql.php:415 libraries/messages.inc.php:306 +#: libraries/export/sql.php:415 libraries/messages.inc.php:302 msgid "Events" msgstr "" #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 -#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:541 +#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:537 #: libraries/tbl_triggers.lib.php:27 setup/frames/index.inc.php:112 msgid "Name" msgstr "Nosaukums" -#: libraries/db_links.inc.php:45 libraries/messages.inc.php:216 +#: libraries/db_links.inc.php:45 libraries/messages.inc.php:212 #, php-format msgid "Database %s has been dropped." msgstr "Datubāze %s tika izdzēsta." #: libraries/db_links.inc.php:57 libraries/db_links.inc.php:58 -#: libraries/db_links.inc.php:59 libraries/messages.inc.php:234 +#: libraries/db_links.inc.php:59 libraries/messages.inc.php:230 msgid "Database seems to be empty!" msgstr "" -#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1025 +#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1021 #: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60 #: querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1152 +#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1148 #: libraries/tbl_links.inc.php:69 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:86 libraries/messages.inc.php:719 +#: libraries/db_links.inc.php:86 libraries/messages.inc.php:715 msgid "Query" msgstr "Vaicājums pēc parauga" -#: libraries/db_links.inc.php:91 libraries/messages.inc.php:253 +#: libraries/db_links.inc.php:91 libraries/messages.inc.php:249 msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:98 libraries/messages.inc.php:397 +#: libraries/db_links.inc.php:98 libraries/messages.inc.php:393 #: libraries/server_links.inc.php:88 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:104 libraries/messages.inc.php:587 +#: libraries/db_links.inc.php:104 libraries/messages.inc.php:583 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" msgstr "Darbības" -#: libraries/db_links.inc.php:111 libraries/messages.inc.php:709 +#: libraries/db_links.inc.php:111 libraries/messages.inc.php:705 #: libraries/server_links.inc.php:66 server_privileges.php:72 #: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117 msgid "Privileges" msgstr "Privilēģijas" #: libraries/db_routines.inc.php:30 libraries/db_routines.inc.php:32 -#: libraries/messages.inc.php:812 +#: libraries/messages.inc.php:808 msgid "Routines" msgstr "" -#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:811 +#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:807 msgid "Return type" msgstr "" #: libraries/db_structure.lib.php:57 libraries/display_tbl.lib.php:1848 -#: libraries/messages.inc.php:65 +#: libraries/messages.inc.php:61 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "Var būt aptuvens skaits. Skatīt FAQ 3.11" -#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:593 +#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:589 #: server_databases.php:142 tbl_printview.php:336 tbl_structure.php:683 msgid "Overhead" msgstr "Pārtēriņš" #: libraries/dbi/mysql.dbi.lib.php:112 libraries/dbi/mysqli.dbi.lib.php:124 -#: libraries/messages.inc.php:176 +#: libraries/messages.inc.php:172 msgid "Connection for controluser as defined in your configuration failed." msgstr "" #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 -#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:855 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:851 msgid "The server is not responding" msgstr "Serveris neatbild" #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:1010 +#: libraries/messages.inc.php:1006 msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "" -#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:255 +#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:251 #: tbl_structure.php:609 msgid "Details..." msgstr "" -#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:143 +#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:139 #: main.php:91 user_password.php:111 user_password.php:129 msgid "Change password" msgstr "Mainīt paroli" -#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:561 +#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:557 #: libraries/replication_gui.lib.php:341 server_privileges.php:768 msgid "No Password" msgstr "Nav paroles" -#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:610 +#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:606 #: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60 #: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335 #: libraries/replication_gui.lib.php:345 server_privileges.php:757 @@ -2058,13 +2068,13 @@ msgstr "Nav paroles" msgid "Password" msgstr "Parole" -#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:806 +#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:802 #: libraries/replication_gui.lib.php:349 libraries/replication_gui.lib.php:352 #: server_privileges.php:776 server_privileges.php:779 msgid "Re-type" msgstr "Atkārtojiet" -#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:608 +#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:604 msgid "Password Hashing" msgstr "Paroles jaukšana" @@ -2074,91 +2084,91 @@ msgstr "Paroles jaukšana" msgid "MySQL 4.0 compatible" msgstr "MySQL 4.0 savietojams" -#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:353 +#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:349 #: libraries/replication_gui.lib.php:356 server_privileges.php:783 msgid "Generate Password" msgstr "" -#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:352 +#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:348 #: libraries/replication_gui.lib.php:359 server_privileges.php:786 #, fuzzy msgid "Generate" msgstr "Uzģenerēja" #: libraries/display_create_database.lib.php:22 -#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:189 +#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:185 msgid "Create new database" msgstr "Izveidot jaunu datubāzi" -#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:185 +#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:181 msgid "Create" msgstr "Izveidot" -#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:564 +#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:560 #: server_privileges.php:74 server_privileges.php:1388 #: server_replication.php:35 msgid "No Privileges" msgstr "Nav privilēģiju" -#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:445 +#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:441 msgid "Table must have at least one field." msgstr "" -#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:190 +#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:186 #, php-format msgid "Create table on database %s" msgstr "Izveidot jaunu tabulu datubāzē %s" -#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:577 +#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:573 msgid "Number of fields" msgstr "" -#: libraries/display_export.lib.php:42 libraries/messages.inc.php:124 +#: libraries/display_export.lib.php:42 libraries/messages.inc.php:120 msgid "Could not load export plugins, please check your installation!" msgstr "" -#: libraries/display_export.lib.php:107 libraries/messages.inc.php:277 +#: libraries/display_export.lib.php:107 libraries/messages.inc.php:273 #, php-format msgid "Dump %s row(s) starting at record # %s" msgstr "Saglabāt %s rindas, sākot ar %s." -#: libraries/display_export.lib.php:115 libraries/messages.inc.php:274 +#: libraries/display_export.lib.php:115 libraries/messages.inc.php:270 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:125 libraries/messages.inc.php:852 +#: libraries/display_export.lib.php:125 libraries/messages.inc.php:848 #: setup/lib/messages.inc.php:82 msgid "Save as file" msgstr "Saglabāt kā failu" -#: libraries/display_export.lib.php:134 libraries/messages.inc.php:828 +#: libraries/display_export.lib.php:134 libraries/messages.inc.php:824 #, php-format msgid "Save on server in %s directory" msgstr "Saglabāt uz servera direktorijā %s" -#: libraries/display_export.lib.php:142 libraries/messages.inc.php:594 +#: libraries/display_export.lib.php:142 libraries/messages.inc.php:590 #: setup/lib/messages.inc.php:90 msgid "Overwrite existing file(s)" msgstr "Pārrakstīt eksistējošos failus" -#: libraries/display_export.lib.php:148 libraries/messages.inc.php:330 +#: libraries/display_export.lib.php:148 libraries/messages.inc.php:326 msgid "File name template" msgstr "Faila nosaukuma šablons" -#: libraries/display_export.lib.php:152 libraries/messages.inc.php:327 +#: libraries/display_export.lib.php:152 libraries/messages.inc.php:323 #, fuzzy msgid "server name" msgstr "Lietotājvārds" -#: libraries/display_export.lib.php:155 libraries/messages.inc.php:326 +#: libraries/display_export.lib.php:155 libraries/messages.inc.php:322 msgid "database name" msgstr "" -#: libraries/display_export.lib.php:158 libraries/messages.inc.php:328 +#: libraries/display_export.lib.php:158 libraries/messages.inc.php:324 msgid "table name" msgstr "" -#: libraries/display_export.lib.php:162 libraries/messages.inc.php:329 +#: libraries/display_export.lib.php:162 libraries/messages.inc.php:325 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2166,24 +2176,24 @@ msgid "" "3$s. Other text will be kept as is." msgstr "" -#: libraries/display_export.lib.php:202 libraries/messages.inc.php:331 +#: libraries/display_export.lib.php:202 libraries/messages.inc.php:327 msgid "remember template" msgstr "atcerēties šablonu" #: libraries/display_export.lib.php:210 libraries/display_import.lib.php:178 -#: libraries/display_import.lib.php:191 libraries/messages.inc.php:145 +#: libraries/display_import.lib.php:191 libraries/messages.inc.php:141 #: libraries/sql_query_form.lib.php:549 msgid "Character set of the file:" msgstr "Tabulas kodējums:" -#: libraries/display_export.lib.php:235 libraries/messages.inc.php:166 +#: libraries/display_export.lib.php:235 libraries/messages.inc.php:162 #: setup/lib/messages.inc.php:84 msgid "Compression" 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/messages.inc.php:558 +#: libraries/export/sql.php:868 libraries/messages.inc.php:554 #: libraries/tbl_properties.inc.php:575 server_privileges.php:1836 #: server_processlist.php:75 msgid "None" @@ -2207,467 +2217,467 @@ msgstr "Arhivēts ar gzip" msgid "bzipped" msgstr "Arhivēts ar bzip" -#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1018 +#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1014 msgid "SQL compatibility mode" msgstr "" -#: libraries/display_import.lib.php:67 libraries/messages.inc.php:398 +#: libraries/display_import.lib.php:67 libraries/messages.inc.php:394 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " "browsers." msgstr "" -#: libraries/display_import.lib.php:77 libraries/messages.inc.php:406 +#: libraries/display_import.lib.php:77 libraries/messages.inc.php:402 msgid "The file is being processed, please be patient." msgstr "" -#: libraries/display_import.lib.php:99 libraries/messages.inc.php:408 +#: libraries/display_import.lib.php:99 libraries/messages.inc.php:404 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." msgstr "" -#: libraries/display_import.lib.php:126 libraries/messages.inc.php:333 +#: libraries/display_import.lib.php:126 libraries/messages.inc.php:329 msgid "File to import" msgstr "" -#: libraries/display_import.lib.php:137 libraries/messages.inc.php:486 +#: libraries/display_import.lib.php:137 libraries/messages.inc.php:482 #: libraries/sql_query_form.lib.php:524 msgid "Location of the text file" msgstr "Teksta faila atrašanās vieta" -#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1203 +#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1199 msgid "File uploads are not allowed on this server." msgstr "" -#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1235 +#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1231 #: libraries/sql_query_form.lib.php:533 tbl_change.php:1028 msgid "The directory you set for upload work cannot be reached" msgstr "Direktoija, kuru norādijāt augšupielādei, nav pieejama" -#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1236 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1232 #: libraries/sql_query_form.lib.php:536 tbl_change.php:1031 msgid "web server upload directory" msgstr "web servera augšupielādes direktorija" -#: libraries/display_import.lib.php:212 libraries/messages.inc.php:167 +#: libraries/display_import.lib.php:212 libraries/messages.inc.php:163 #, php-format msgid "Imported file compression will be automatically detected from: %s" msgstr "" -#: libraries/display_import.lib.php:219 libraries/messages.inc.php:600 +#: libraries/display_import.lib.php:219 libraries/messages.inc.php:596 msgid "Partial import" msgstr "" -#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1105 +#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1101 #, php-format msgid "" "Previous import timed out, after resubmitting will continue from position %d." msgstr "" -#: libraries/display_import.lib.php:232 libraries/messages.inc.php:51 +#: libraries/display_import.lib.php:232 libraries/messages.inc.php:47 msgid "" "Allow the interruption of an import in case the script detects it is close " "to the PHP timeout limit. This might be good way to import large files, " "however it can break transactions." msgstr "" -#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1004 +#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1000 #: setup/lib/messages.inc.php:161 msgid "Number of records (queries) to skip from start" msgstr "" -#: libraries/display_import.lib.php:255 libraries/messages.inc.php:396 +#: libraries/display_import.lib.php:255 libraries/messages.inc.php:392 #: setup/lib/messages.inc.php:160 msgid "Format of imported file" msgstr "" #: libraries/display_select_lang.lib.php:45 -#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:465 +#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:461 #: setup/frames/index.inc.php:70 msgid "Language" msgstr "" -#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:447 +#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:443 #, php-format msgid "%d is not valid row number." msgstr "" -#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:814 +#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:810 msgid "row(s) starting from record #" msgstr "rindas sākot no" -#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:817 +#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:813 msgid "horizontal" msgstr "horizontālā" -#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:816 +#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:812 msgid "horizontal (rotated headers)" msgstr "horizontālā (pagriezti virsraksti)" -#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:819 +#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:815 msgid "vertical" msgstr "vertikālā" -#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:818 +#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:814 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "%s skatā un atkārtot virsrakstus ik pēc %s rindām" -#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:495 +#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:491 msgid "This operation could take a long time. Proceed anyway?" msgstr "" -#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1012 +#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1008 msgid "Sort by key" msgstr "Kārtot pēc atslēgas" #: libraries/display_tbl.lib.php:555 libraries/import.lib.php:1082 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:591 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:587 #: tbl_select.php:267 tbl_structure.php:754 #, fuzzy msgid "Options" msgstr "Darbības" #: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:570 -#: libraries/messages.inc.php:601 +#: libraries/messages.inc.php:597 msgid "Partial Texts" msgstr "Daļēji teksti" #: libraries/display_tbl.lib.php:561 libraries/display_tbl.lib.php:574 -#: libraries/messages.inc.php:346 +#: libraries/messages.inc.php:342 msgid "Full Texts" msgstr "Pilni teksti" -#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:739 +#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:735 #, fuzzy msgid "Relational key" msgstr "Relāciju shēma" -#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:738 +#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:734 msgid "Relational display field" msgstr "" -#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:872 +#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:868 msgid "Show binary contents" msgstr "" -#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:873 +#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:869 msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:871 +#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:867 msgid "Show binary contents as HEX" msgstr "" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:375 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:371 #: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320 msgid "Hide" msgstr "" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:508 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:504 #: libraries/tbl_properties.inc.php:144 transformation_overview.php:47 msgid "Browser transformation" msgstr "Pārlūkprogrammas transformācija" #: libraries/display_tbl.lib.php:1126 libraries/display_tbl.lib.php:1130 -#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:308 +#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:304 msgid "Execute bookmarked query" msgstr "Izpildīt iegrāmatoto vaicājumu" #: libraries/display_tbl.lib.php:1145 libraries/display_tbl.lib.php:1157 -#: libraries/messages.inc.php:244 +#: libraries/messages.inc.php:240 msgid "The row has been deleted" msgstr "Ieraksts tika dzēsts" #: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056 -#: libraries/messages.inc.php:460 server_processlist.php:71 +#: libraries/messages.inc.php:456 server_processlist.php:71 #: tbl_row_action.php:64 msgid "Kill" msgstr "Nogalināt" -#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:849 +#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:845 msgid "in query" msgstr "vaicājumā" -#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:881 +#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:877 msgid "Showing rows" msgstr "Parādu rindas" -#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1113 +#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1109 msgid "total" msgstr "kopā" -#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:727 +#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:723 #: sql.php:524 #, php-format msgid "Query took %01.4f sec" msgstr "Vaicājums ilga %01.4f s" -#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:135 +#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:131 #: 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:471 msgid "Change" msgstr "Labot" -#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:724 +#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:720 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:671 +#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:667 msgid "Print view (with full texts)" msgstr "Drukas skats (ar pilniem tekstiem)" -#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:482 +#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:478 msgid "Link not found" msgstr "Links nav atrasts" -#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1224 +#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1220 #: main.php:228 #, fuzzy msgid "Version information" msgstr "Piekļuves informācija" -#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:423 +#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:419 msgid "Data home directory" msgstr "" -#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:424 +#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:420 msgid "The common part of the directory path for all InnoDB data files." msgstr "" -#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:422 +#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:418 #, fuzzy msgid "Data files" msgstr "Tikai dati" -#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:418 +#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:414 msgid "Autoextend increment" msgstr "" -#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:419 +#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:415 msgid "" " The increment size for extending the size of an autoextending tablespace " "when it becomes full." msgstr "" -#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:420 +#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:416 msgid "Buffer pool size" msgstr "" -#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:421 +#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:417 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." msgstr "" -#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:112 +#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:108 msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:426 +#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:422 #: server_status.php:306 msgid "InnoDB Status" msgstr "InnoDB statuss" -#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:113 +#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:109 msgid "Buffer Pool Usage" msgstr "" -#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1114 +#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1110 #: server_databases.php:137 server_databases.php:305 server_status.php:414 #: server_status.php:475 server_status.php:496 tbl_printview.php:351 #: tbl_structure.php:697 msgid "Total" msgstr "Kopā" -#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:425 +#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:421 msgid "pages" msgstr "" -#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:343 +#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:339 msgid "Free pages" msgstr "" -#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:259 +#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:255 msgid "Dirty pages" msgstr "" -#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:230 +#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:226 msgid "Pages containing data" msgstr "" -#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:598 +#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:594 #, fuzzy msgid "Pages to be flushed" msgstr "Tabula %s tika atsvaidzināta" -#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:119 +#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:115 msgid "Busy pages" msgstr "" -#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:467 +#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:463 msgid "Latched pages" msgstr "" -#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:111 +#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:107 msgid "Buffer Pool Activity" msgstr "" -#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:731 +#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:727 msgid "Read requests" msgstr "" -#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1244 +#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1240 msgid "Write requests" msgstr "" -#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:115 +#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:111 msgid "Read misses" msgstr "" -#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:117 +#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:113 msgid "Write waits" msgstr "" -#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:114 +#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:110 msgid "Read misses in %" msgstr "" -#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:116 +#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:112 msgid "Write waits in %" msgstr "" -#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:522 +#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:518 msgid "Data pointer size" msgstr "" -#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:523 +#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:519 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." msgstr "" -#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:528 +#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:524 msgid "Automatic recovery mode" msgstr "" -#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:529 +#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:525 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." msgstr "" -#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:527 +#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:523 msgid "Maximum size for temporary sort files" msgstr "" -#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:526 +#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:522 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " "INFILE)." msgstr "" -#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:525 +#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:521 msgid "Maximum size for temporary files on index creation" msgstr "" -#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:524 +#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:520 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " "method." msgstr "" -#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:531 +#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:527 msgid "Repair threads" msgstr "" -#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:530 +#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:526 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." msgstr "" -#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:533 +#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:529 msgid "Sort buffer size" msgstr "" -#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:532 +#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:528 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." msgstr "" -#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:620 +#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:616 msgid "Index cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:619 +#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:615 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." msgstr "" -#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:630 +#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:626 msgid "Record cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:629 +#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:625 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " "to the handle data (.xtd) and row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:624 +#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:620 msgid "Log cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:623 +#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:619 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:628 +#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:624 msgid "Log file threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:627 +#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:623 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:634 +#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:630 msgid "Transaction buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:633 +#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:629 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." msgstr "" -#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:611 +#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:607 msgid "Checkpoint frequency" msgstr "" -#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:612 +#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:608 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." msgstr "" -#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:615 +#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:611 msgid "Data log threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:616 +#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:612 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -2675,48 +2685,48 @@ msgid "" "that can be stored in the database." msgstr "" -#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:618 +#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:614 msgid "Garbage threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:617 +#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:613 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." msgstr "" -#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:622 +#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:618 msgid "Log buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:621 +#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:617 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " "required to write a data log." msgstr "" -#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:613 +#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:609 msgid "Data file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:614 +#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:610 msgid "The grow size of the handle data (.xtd) files." msgstr "" -#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:632 +#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:628 msgid "Row file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:631 +#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:627 msgid "The grow size of the row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:626 +#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:622 msgid "Log file count" msgstr "" -#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:625 +#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:621 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -2726,19 +2736,19 @@ msgstr "" #: libraries/export/htmlword.php:132 libraries/export/odt.php:168 #: libraries/export/sql.php:881 libraries/export/texytext.php:130 -#: libraries/messages.inc.php:275 +#: libraries/messages.inc.php:271 msgid "Dumping data for table" msgstr "Dati tabulai" #: libraries/export/htmlword.php:185 libraries/export/odt.php:238 #: libraries/export/sql.php:785 libraries/export/texytext.php:177 -#: libraries/messages.inc.php:1086 +#: libraries/messages.inc.php:1082 msgid "Table structure for table" msgstr "Tabulas struktūra tabulai" #: libraries/export/latex.php:125 libraries/export/sql.php:232 #: libraries/export/xml.php:102 libraries/header_printview.inc.php:57 -#: libraries/messages.inc.php:381 libraries/replication_gui.lib.php:63 +#: libraries/messages.inc.php:377 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:170 libraries/replication_gui.lib.php:265 #: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325 #: server_privileges.php:692 server_privileges.php:695 @@ -2750,189 +2760,189 @@ msgstr "Hosts" #: libraries/export/latex.php:130 libraries/export/sql.php:233 #: libraries/export/xml.php:107 libraries/header_printview.inc.php:59 -#: libraries/messages.inc.php:354 +#: libraries/messages.inc.php:350 msgid "Generation Time" msgstr "Izveidošanas laiks" #: libraries/export/latex.php:131 libraries/export/sql.php:235 -#: libraries/export/xml.php:108 libraries/messages.inc.php:864 main.php:186 +#: libraries/export/xml.php:108 libraries/messages.inc.php:860 main.php:186 msgid "Server version" msgstr "Servera versija" #: libraries/export/latex.php:132 libraries/export/sql.php:236 -#: libraries/export/xml.php:109 libraries/messages.inc.php:651 +#: libraries/export/xml.php:109 libraries/messages.inc.php:647 msgid "PHP Version" msgstr "PHP Versija" #: libraries/export/latex.php:201 libraries/export/sql.php:868 -#: libraries/messages.inc.php:226 server_databases.php:127 +#: libraries/messages.inc.php:222 server_databases.php:127 #: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317 #: tbl_structure.php:666 msgid "Data" msgstr "Dati" -#: libraries/export/odt.php:318 libraries/messages.inc.php:506 +#: libraries/export/odt.php:318 libraries/messages.inc.php:502 #: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "MIME tips" -#: libraries/export/sql.php:387 libraries/messages.inc.php:711 +#: libraries/export/sql.php:387 libraries/messages.inc.php:707 #, fuzzy msgid "Procedures" msgstr "Procesi" -#: libraries/export/sql.php:401 libraries/messages.inc.php:348 +#: libraries/export/sql.php:401 libraries/messages.inc.php:344 #, fuzzy msgid "Functions" msgstr "Funkcija" -#: libraries/export/sql.php:618 libraries/messages.inc.php:174 +#: libraries/export/sql.php:618 libraries/messages.inc.php:170 msgid "Constraints for dumped tables" msgstr "Ierobežojumi izmestām tabulām" -#: libraries/export/sql.php:627 libraries/messages.inc.php:175 +#: libraries/export/sql.php:627 libraries/messages.inc.php:171 msgid "Constraints for table" msgstr "Ierobežojumi tabulai" -#: libraries/export/sql.php:727 libraries/messages.inc.php:512 +#: libraries/export/sql.php:727 libraries/messages.inc.php:508 msgid "MIME TYPES FOR TABLE" msgstr "MIME TIPI TABULAI" -#: libraries/export/sql.php:739 libraries/messages.inc.php:743 +#: libraries/export/sql.php:739 libraries/messages.inc.php:739 msgid "RELATIONS FOR TABLE" msgstr "RELĀCIJAS TABULAI" -#: libraries/export/sql.php:796 libraries/messages.inc.php:1178 +#: libraries/export/sql.php:796 libraries/messages.inc.php:1174 #: libraries/tbl_triggers.lib.php:19 msgid "Triggers" msgstr "" -#: libraries/export/sql.php:808 libraries/messages.inc.php:1046 +#: libraries/export/sql.php:808 libraries/messages.inc.php:1042 #, fuzzy msgid "Structure for view" msgstr "Tikai struktūra" -#: libraries/export/sql.php:817 libraries/messages.inc.php:1029 +#: libraries/export/sql.php:817 libraries/messages.inc.php:1025 msgid "Stand-in structure for view" msgstr "" #: libraries/footer.inc.php:184 libraries/footer.inc.php:195 -#: libraries/footer.inc.php:198 libraries/messages.inc.php:586 +#: libraries/footer.inc.php:198 libraries/messages.inc.php:582 msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/header.inc.php:115 libraries/messages.inc.php:542 +#: libraries/header.inc.php:115 libraries/messages.inc.php:538 #, fuzzy msgid "New table" msgstr "Nav tabulu" #: libraries/header_printview.inc.php:50 libraries/header_printview.inc.php:55 -#: libraries/messages.inc.php:1024 +#: libraries/messages.inc.php:1020 msgid "SQL result" msgstr "SQL rezultāts" -#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:350 +#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:346 msgid "Generated by" msgstr "Uzģenerēja" #: libraries/header_printview.inc.php:63 libraries/import.lib.php:145 -#: libraries/messages.inc.php:820 navigation.php:652 navigation.php:674 +#: libraries/messages.inc.php:816 navigation.php:652 navigation.php:674 #: server_databases.php:122 tbl_printview.php:394 tbl_structure.php:366 #: tbl_structure.php:778 msgid "Rows" msgstr "Rindas" -#: libraries/import.lib.php:150 libraries/messages.inc.php:285 sql.php:520 +#: libraries/import.lib.php:150 libraries/messages.inc.php:281 sql.php:520 #: tbl_change.php:181 tbl_get_field.php:35 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL atgrieza tukšo rezultātu (0 rindas)." -#: libraries/import.lib.php:1078 libraries/messages.inc.php:399 +#: libraries/import.lib.php:1078 libraries/messages.inc.php:395 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1079 libraries/messages.inc.php:400 +#: libraries/import.lib.php:1079 libraries/messages.inc.php:396 msgid "View a structure`s contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1080 libraries/messages.inc.php:401 +#: libraries/import.lib.php:1080 libraries/messages.inc.php:397 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1081 libraries/messages.inc.php:402 +#: libraries/import.lib.php:1081 libraries/messages.inc.php:398 msgid "Edit its structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1084 libraries/messages.inc.php:362 +#: libraries/import.lib.php:1084 libraries/messages.inc.php:358 #, fuzzy msgid "Go to database" msgstr "Nav datubāzu" #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:869 +#: libraries/messages.inc.php:865 msgid "settings" msgstr "" -#: libraries/import.lib.php:1106 libraries/messages.inc.php:363 +#: libraries/import.lib.php:1106 libraries/messages.inc.php:359 msgid "Go to table" msgstr "" -#: libraries/import.lib.php:1109 libraries/messages.inc.php:1047 +#: libraries/import.lib.php:1109 libraries/messages.inc.php:1043 #, fuzzy msgid "structure" msgstr "Struktūra" -#: libraries/import.lib.php:1115 libraries/messages.inc.php:364 +#: libraries/import.lib.php:1115 libraries/messages.inc.php:360 msgid "Go to view" msgstr "" #: libraries/import/csv.php:58 libraries/import/csv.php:70 #: libraries/import/csv.php:74 libraries/import/csv.php:78 -#: libraries/messages.inc.php:442 +#: libraries/messages.inc.php:438 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "" -#: libraries/import/csv.php:59 libraries/messages.inc.php:323 +#: libraries/import/csv.php:59 libraries/messages.inc.php:319 msgid "Fields terminated by" msgstr "Lauki atdalīti ar" -#: libraries/import/csv.php:71 libraries/messages.inc.php:320 +#: libraries/import/csv.php:71 libraries/messages.inc.php:316 msgid "Fields enclosed by" msgstr "Lauki iekļauti iekš" -#: libraries/import/csv.php:75 libraries/messages.inc.php:321 +#: libraries/import/csv.php:75 libraries/messages.inc.php:317 msgid "Fields escaped by" msgstr "Glābjoša (escape) rakstzīme ir" -#: libraries/import/csv.php:79 libraries/messages.inc.php:481 +#: libraries/import/csv.php:79 libraries/messages.inc.php:477 msgid "Lines terminated by" msgstr "Rindas atdalītas ar" -#: libraries/import/csv.php:119 libraries/messages.inc.php:439 +#: libraries/import/csv.php:119 libraries/messages.inc.php:435 #, php-format msgid "Invalid column (%s) specified!" msgstr "" #: libraries/import/csv.php:177 libraries/import/csv.php:424 -#: libraries/messages.inc.php:441 +#: libraries/messages.inc.php:437 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/import/csv.php:312 libraries/messages.inc.php:440 +#: libraries/import/csv.php:312 libraries/messages.inc.php:436 #, php-format msgid "Invalid field count in CSV input on line %d." msgstr "" -#: libraries/import/ldi.php:55 libraries/messages.inc.php:446 +#: libraries/import/ldi.php:55 libraries/messages.inc.php:442 msgid "This plugin does not support compressed imports!" msgstr "" #: libraries/import/xml.php:74 libraries/import/xml.php:130 -#: libraries/messages.inc.php:1247 +#: libraries/messages.inc.php:1243 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -2961,329 +2971,319 @@ msgstr "" msgid "ltr" msgstr "ltr" -#. l10n: Thousands separator -#: libraries/messages.inc.php:21 -msgid "," -msgstr " " - -#. l10n: Decimal separator -#: libraries/messages.inc.php:23 -msgid "." -msgstr "." - -#: libraries/messages.inc.php:25 server_status.php:461 +#: libraries/messages.inc.php:21 server_status.php:461 msgid "Aborted" msgstr "Pārtraukts" -#: libraries/messages.inc.php:28 main.php:68 +#: libraries/messages.inc.php:24 main.php:68 #, fuzzy msgid "Actions" msgstr "Darbība" -#: libraries/messages.inc.php:34 libraries/tbl_properties.inc.php:780 +#: libraries/messages.inc.php:30 libraries/tbl_properties.inc.php:780 #: tbl_structure.php:543 #, php-format msgid "Add %s field(s)" msgstr "Pievienot %s lauku(s)" -#: libraries/messages.inc.php:35 +#: libraries/messages.inc.php:31 msgid "Add custom comment into header (\\n splits lines)" msgstr "Ievietot virsrakstā komentāru (\\n atdala rindas)" -#: libraries/messages.inc.php:36 +#: libraries/messages.inc.php:32 msgid "Add into comments" msgstr "Pievienot komentāros" -#: libraries/messages.inc.php:37 tbl_structure.php:541 +#: libraries/messages.inc.php:33 tbl_structure.php:541 msgid "Add new field" msgstr "Pievienot jaunu lauku" -#: libraries/messages.inc.php:38 server_privileges.php:1886 +#: libraries/messages.inc.php:34 server_privileges.php:1886 msgid "Add privileges on the following database" msgstr "Pievienot privilēģijas uz sekojošo datubāzi" -#: libraries/messages.inc.php:39 server_privileges.php:1907 +#: libraries/messages.inc.php:35 server_privileges.php:1907 msgid "Add privileges on the following table" msgstr "Pievienot privilēģijas uz sekojošo tabulu" -#: libraries/messages.inc.php:40 tbl_select.php:288 +#: libraries/messages.inc.php:36 tbl_select.php:288 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Pievienot meklēšanas nosacījumus (\"where\" izteiksmes ķermenis):" -#: libraries/messages.inc.php:41 tbl_indexes.php:251 +#: libraries/messages.inc.php:37 tbl_indexes.php:251 #, php-format msgid "Add to index  %s column(s)" msgstr "Pievienot indeksam  %s kolonn(u/as)" -#: libraries/messages.inc.php:42 server_privileges.php:1570 +#: libraries/messages.inc.php:38 server_privileges.php:1570 #: server_privileges.php:1594 server_privileges.php:1988 #: server_privileges.php:2177 msgid "Add a new User" msgstr "Pievienot jaunu lietotāju" -#: libraries/messages.inc.php:43 server_privileges.php:931 +#: libraries/messages.inc.php:39 server_privileges.php:931 msgid "You have added a new user." msgstr "Jūs pievienojāt jaunu lietotāju." -#: libraries/messages.inc.php:44 server_privileges.php:571 +#: libraries/messages.inc.php:40 server_privileges.php:571 msgid "Administration" msgstr "Administrācija" -#: libraries/messages.inc.php:45 tbl_structure.php:557 +#: libraries/messages.inc.php:41 tbl_structure.php:557 #, php-format msgid "After %s" msgstr "Pēc %s" -#: libraries/messages.inc.php:46 tbl_change.php:1147 +#: libraries/messages.inc.php:42 tbl_change.php:1147 msgid "Go back to previous page" msgstr "Atgriezties atpakaļ iepriekšējā lapā" -#: libraries/messages.inc.php:47 tbl_change.php:1148 +#: libraries/messages.inc.php:43 tbl_change.php:1148 msgid "Insert another new row" msgstr "Ievietot vēl vienu rindu" -#: libraries/messages.inc.php:48 tbl_change.php:1160 +#: libraries/messages.inc.php:44 tbl_change.php:1160 msgid "Edit next row" msgstr "" -#: libraries/messages.inc.php:49 tbl_change.php:1152 +#: libraries/messages.inc.php:45 tbl_change.php:1152 msgid "Go back to this page" msgstr "Atgriezties šajā lapā" -#: libraries/messages.inc.php:50 querywindow.php:115 +#: libraries/messages.inc.php:46 querywindow.php:115 msgid "All" msgstr "Visi" -#: libraries/messages.inc.php:53 tbl_operations.php:249 +#: libraries/messages.inc.php:49 tbl_operations.php:249 msgid "Alter table order by" msgstr "Mainīt datu kārtošanas laukus" -#: libraries/messages.inc.php:54 tbl_operations.php:660 +#: libraries/messages.inc.php:50 tbl_operations.php:660 msgid "Analyze" msgstr "" -#: libraries/messages.inc.php:57 +#: libraries/messages.inc.php:53 #, fuzzy msgid "and" msgstr "Un" -#: libraries/messages.inc.php:59 pmd_general.php:87 +#: libraries/messages.inc.php:55 pmd_general.php:87 msgid "Angular links" msgstr "" -#: libraries/messages.inc.php:60 tbl_structure.php:401 tbl_structure.php:415 +#: libraries/messages.inc.php:56 tbl_structure.php:401 tbl_structure.php:415 #: tbl_structure.php:429 #, php-format msgid "An index has been added on %s" msgstr "Indekss tieka pievienots uz %s" -#: libraries/messages.inc.php:61 server_privileges.php:1521 +#: libraries/messages.inc.php:57 server_privileges.php:1521 #: server_privileges.php:2123 msgid "Any" msgstr "Jebkurš" -#: libraries/messages.inc.php:62 libraries/replication_gui.lib.php:298 +#: libraries/messages.inc.php:58 libraries/replication_gui.lib.php:298 #: server_privileges.php:725 msgid "Any host" msgstr "Jebkurš hosts" -#: libraries/messages.inc.php:63 libraries/replication_gui.lib.php:250 +#: libraries/messages.inc.php:59 libraries/replication_gui.lib.php:250 #: server_privileges.php:677 msgid "Any user" msgstr "Jebkurš lietotājs" -#: libraries/messages.inc.php:64 server_synchronize.php:449 +#: libraries/messages.inc.php:60 server_synchronize.php:449 #: server_synchronize.php:894 msgid "Apply Selected Changes" msgstr "" -#: libraries/messages.inc.php:66 tbl_structure.php:386 +#: libraries/messages.inc.php:62 tbl_structure.php:386 #, php-format msgid "A primary key has been added on %s" msgstr "Primārā atslēga pievienota uz lauka %s" -#: libraries/messages.inc.php:67 libraries/mysql_charsets.lib.php:368 +#: libraries/messages.inc.php:63 libraries/mysql_charsets.lib.php:368 msgid "Arabic" msgstr "Arābu" -#: libraries/messages.inc.php:68 libraries/mysql_charsets.lib.php:359 +#: libraries/messages.inc.php:64 libraries/mysql_charsets.lib.php:359 msgid "Armenian" msgstr "Armēņu" -#: libraries/messages.inc.php:70 libraries/tbl_properties.inc.php:394 +#: libraries/messages.inc.php:66 libraries/tbl_properties.inc.php:394 msgid "As defined:" msgstr "" -#: libraries/messages.inc.php:71 tbl_structure.php:556 +#: libraries/messages.inc.php:67 tbl_structure.php:556 msgid "At Beginning of Table" msgstr "Tabulas sākumā" -#: libraries/messages.inc.php:72 tbl_structure.php:555 +#: libraries/messages.inc.php:68 tbl_structure.php:555 msgid "At End of Table" msgstr "Tabulas beigās" -#: libraries/messages.inc.php:73 libraries/tbl_properties.inc.php:108 +#: libraries/messages.inc.php:69 libraries/tbl_properties.inc.php:108 #: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:144 #: tbl_structure.php:180 msgid "Attributes" msgstr "Atribūti" -#: libraries/messages.inc.php:74 pdf_pages.php:303 pdf_pages.php:306 +#: libraries/messages.inc.php:70 pdf_pages.php:303 pdf_pages.php:306 msgid "Automatic layout" msgstr "Automātiskais izvietojums" -#: libraries/messages.inc.php:77 libraries/mysql_charsets.lib.php:354 +#: libraries/messages.inc.php:73 libraries/mysql_charsets.lib.php:354 msgid "Baltic" msgstr "Baltijas" -#: libraries/messages.inc.php:78 libraries/sqlparser.lib.php:175 +#: libraries/messages.inc.php:74 libraries/sqlparser.lib.php:175 msgid "BEGIN CUT" msgstr "IZGRIEZT NO ŠĪS VIETAS" -#: libraries/messages.inc.php:79 libraries/sqlparser.lib.php:179 +#: libraries/messages.inc.php:75 libraries/sqlparser.lib.php:179 msgid "BEGIN RAW" msgstr "RINDAS SĀKUMS" -#: libraries/messages.inc.php:80 libraries/mysql_charsets.lib.php:201 +#: libraries/messages.inc.php:76 libraries/mysql_charsets.lib.php:201 #: libraries/mysql_charsets.lib.php:402 tbl_change.php:518 msgid "Binary" msgstr "Binārais" -#: libraries/messages.inc.php:81 tbl_change.php:894 +#: libraries/messages.inc.php:77 tbl_change.php:894 msgid "Binary - do not edit" msgstr "Binārais - netiek labots" -#: libraries/messages.inc.php:82 libraries/server_links.inc.php:76 +#: libraries/messages.inc.php:78 libraries/server_links.inc.php:76 #: server_binlog.php:110 server_status.php:253 test/theme.php:121 msgid "Binary log" msgstr "Binārais log-fails" -#: libraries/messages.inc.php:83 server_binlog.php:217 +#: libraries/messages.inc.php:79 server_binlog.php:217 msgid "Event type" msgstr "Notikuma tips" -#: libraries/messages.inc.php:84 server_binlog.php:220 +#: libraries/messages.inc.php:80 server_binlog.php:220 msgid "Information" msgstr "Informācija" -#: libraries/messages.inc.php:85 server_binlog.php:215 +#: libraries/messages.inc.php:81 server_binlog.php:215 msgid "Log name" msgstr "Log-faila nosaukums" -#: libraries/messages.inc.php:86 server_binlog.php:219 +#: libraries/messages.inc.php:82 server_binlog.php:219 msgid "Original position" msgstr "Oriģinālā pozīcija" -#: libraries/messages.inc.php:87 server_binlog.php:216 +#: libraries/messages.inc.php:83 server_binlog.php:216 msgid "Position" msgstr "Pozīcija" -#: libraries/messages.inc.php:88 libraries/replication_gui.lib.php:169 +#: libraries/messages.inc.php:84 libraries/replication_gui.lib.php:169 #: server_binlog.php:218 msgid "Server ID" msgstr "Servera ID" -#: libraries/messages.inc.php:92 +#: libraries/messages.inc.php:88 #, fuzzy msgctxt "$strBLOBRepositoryDisabled" msgid "Disabled" msgstr "Izslēgts" -#: libraries/messages.inc.php:95 +#: libraries/messages.inc.php:91 #, fuzzy msgctxt "$strBLOBRepositoryEnabled" msgid "Enabled" msgstr "Ieslēgts" -#: libraries/messages.inc.php:97 tbl_change.php:888 +#: libraries/messages.inc.php:93 tbl_change.php:888 msgid "Remove BLOB Repository Reference" msgstr "" -#: libraries/messages.inc.php:98 +#: libraries/messages.inc.php:94 #, fuzzy msgctxt "$strBLOBRepositoryRepair" msgid "Repair" msgstr "Restaurēt tabulu" -#: libraries/messages.inc.php:99 tbl_change.php:987 +#: libraries/messages.inc.php:95 tbl_change.php:987 msgid "Upload to BLOB repository" msgstr "" -#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:359 +#: libraries/messages.inc.php:96 libraries/sql_query_form.lib.php:359 #: sql.php:677 msgid "Let every user access this bookmark" msgstr "Dot ikvienam lietotājam pieeju šai grāmatzīmei" -#: libraries/messages.inc.php:103 sql.php:671 +#: libraries/messages.inc.php:99 sql.php:671 msgid "Label" msgstr "Nosaukums" -#: libraries/messages.inc.php:104 libraries/sql_query_form.lib.php:433 +#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:433 msgid "Bookmarked SQL query" msgstr "Saglabātie SQL vaicājumi" -#: libraries/messages.inc.php:105 libraries/sql_query_form.lib.php:365 +#: libraries/messages.inc.php:101 libraries/sql_query_form.lib.php:365 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/messages.inc.php:106 libraries/sql_query_form.lib.php:352 +#: libraries/messages.inc.php:102 libraries/sql_query_form.lib.php:352 #: sql.php:665 sql.php:666 sql.php:683 msgid "Bookmark this SQL query" msgstr "Saglabāt šo SQL vaicājumu" -#: libraries/messages.inc.php:107 libraries/sql_query_form.lib.php:466 +#: libraries/messages.inc.php:103 libraries/sql_query_form.lib.php:466 msgid "View only" msgstr "Tikai apskatīt" -#: libraries/messages.inc.php:109 tbl_structure.php:161 +#: libraries/messages.inc.php:105 tbl_structure.php:161 #, fuzzy msgid "Browse distinct values" msgstr "Pārlūkot ārējās vērtības" -#: libraries/messages.inc.php:110 tbl_change.php:252 tbl_select.php:27 +#: libraries/messages.inc.php:106 tbl_change.php:252 tbl_select.php:27 #: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34 msgid "Browse foreign values" msgstr "Pārlūkot ārējās vērtības" -#: libraries/messages.inc.php:118 libraries/mysql_charsets.lib.php:213 +#: libraries/messages.inc.php:114 libraries/mysql_charsets.lib.php:213 msgid "Bulgarian" msgstr "Bulgāru" -#: libraries/messages.inc.php:120 +#: libraries/messages.inc.php:116 msgid "\"bzipped\"" msgstr "Arhivēts ar bzip" -#: libraries/messages.inc.php:122 +#: libraries/messages.inc.php:118 msgid "Calendar" msgstr "Kalendārs" -#: libraries/messages.inc.php:129 tbl_indexes.php:75 +#: libraries/messages.inc.php:125 tbl_indexes.php:75 msgid "Can't rename index to PRIMARY!" msgstr "Nevar pārsaukt indeksu par PRIMARY!" -#: libraries/messages.inc.php:132 libraries/mysql_charsets.lib.php:223 +#: libraries/messages.inc.php:128 libraries/mysql_charsets.lib.php:223 #: libraries/mysql_charsets.lib.php:409 msgid "case-insensitive" msgstr "reģistrnejūtīgs" -#: libraries/messages.inc.php:133 libraries/mysql_charsets.lib.php:226 +#: libraries/messages.inc.php:129 libraries/mysql_charsets.lib.php:226 #: libraries/mysql_charsets.lib.php:411 msgid "case-sensitive" msgstr "reģistrjūtīgs" -#: libraries/messages.inc.php:134 libraries/mysql_charsets.lib.php:332 +#: libraries/messages.inc.php:130 libraries/mysql_charsets.lib.php:332 msgid "Central European" msgstr "Centrāleiropas" -#: libraries/messages.inc.php:136 server_privileges.php:1969 +#: libraries/messages.inc.php:132 server_privileges.php:1969 msgid "... keep the old one." msgstr "... paturēt veco lietotāju." -#: libraries/messages.inc.php:137 server_privileges.php:1967 +#: libraries/messages.inc.php:133 server_privileges.php:1967 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 ..." -#: libraries/messages.inc.php:138 server_privileges.php:1972 +#: libraries/messages.inc.php:134 server_privileges.php:1972 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -3291,116 +3291,116 @@ msgstr "" " ... dzēst veco lietotāju no lietotāju tabulas, un pēc tam pārlādēt " "privilēģijas." -#: libraries/messages.inc.php:139 server_privileges.php:1970 +#: libraries/messages.inc.php:135 server_privileges.php:1970 msgid " ... delete the old one from the user tables." msgstr " ... dzēst veco lietotāju no lietotāju tabulas." -#: libraries/messages.inc.php:140 server_privileges.php:1971 +#: libraries/messages.inc.php:136 server_privileges.php:1971 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "" " ... atņemt vecajam lietotājam visas aktīvās privilēģijas, un pēc tam dzēst " "viņu." -#: libraries/messages.inc.php:141 server_privileges.php:1964 +#: libraries/messages.inc.php:137 server_privileges.php:1964 msgid "Change Login Information / Copy User" msgstr "Mainīt piekļuves informāciju / Klonēt lietotāju" -#: libraries/messages.inc.php:144 libraries/mysql_charsets.lib.php:107 +#: libraries/messages.inc.php:140 libraries/mysql_charsets.lib.php:107 msgid "Charset" msgstr "Kodējums" -#: libraries/messages.inc.php:146 server_collations.php:40 +#: libraries/messages.inc.php:142 server_collations.php:40 msgid "Character Sets and Collations" msgstr "Rakstzīmju kodējumi un izkārtojumi" -#: libraries/messages.inc.php:147 libraries/server_links.inc.php:57 +#: libraries/messages.inc.php:143 libraries/server_links.inc.php:57 #: test/theme.php:109 msgid "Charsets" msgstr "Rakstzīmju kodējumi" -#: libraries/messages.inc.php:149 tbl_operations.php:661 +#: libraries/messages.inc.php:145 tbl_operations.php:661 #, fuzzy msgid "Check" msgstr "Čehu" -#: libraries/messages.inc.php:151 server_databases.php:293 +#: libraries/messages.inc.php:147 server_databases.php:293 #: server_databases.php:294 msgid "Check Privileges" msgstr "Pārbaudīt privilēģijas" -#: libraries/messages.inc.php:152 server_databases.php:289 +#: libraries/messages.inc.php:148 server_databases.php:289 #, php-format msgid "Check privileges for database "%s"." msgstr "Pārbaudīt privilēģijas uz datubāzi "%s"." -#: libraries/messages.inc.php:154 pdf_pages.php:261 +#: libraries/messages.inc.php:150 pdf_pages.php:261 msgid "Please choose a page to edit" msgstr "Izvēlieties lapu redigēšanai" -#: libraries/messages.inc.php:157 +#: libraries/messages.inc.php:153 msgid "Displaying Column Comments" msgstr "Rādu kolonnu komentārus" -#: libraries/messages.inc.php:159 pdf_pages.php:483 view_create.php:148 +#: libraries/messages.inc.php:155 pdf_pages.php:483 view_create.php:148 msgid "Column names" msgstr "Kolonnu nosaukumi" -#: libraries/messages.inc.php:160 server_privileges.php:1685 +#: libraries/messages.inc.php:156 server_privileges.php:1685 msgid "Column-specific privileges" msgstr "Kolonnu specifiskās privilēģijas" -#: libraries/messages.inc.php:164 +#: libraries/messages.inc.php:160 msgid "MySQL 4.0 compatible" msgstr "MySQL 4.0 savietojams" -#: libraries/messages.inc.php:165 +#: libraries/messages.inc.php:161 msgid "Complete inserts" msgstr "Pilnas INSERT izteiksmes" -#: libraries/messages.inc.php:168 +#: libraries/messages.inc.php:164 #, php-format msgid "Could not load default configuration from: \"%1$s\"" msgstr "" -#: libraries/messages.inc.php:169 main.php:306 +#: libraries/messages.inc.php:165 main.php:306 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: libraries/messages.inc.php:171 pdf_schema.php:672 +#: libraries/messages.inc.php:167 pdf_schema.php:672 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Lūdzu konfigurējiet koordinātes tabulai %s" -#: libraries/messages.inc.php:173 server_status.php:433 +#: libraries/messages.inc.php:169 server_status.php:433 msgid "Connections" msgstr "Konekcijas" -#: libraries/messages.inc.php:179 tbl_operations.php:509 +#: libraries/messages.inc.php:175 tbl_operations.php:509 msgid "Copy table to (database.table):" msgstr "Kopēt tabulu uz (datubāze.tabula):" -#: libraries/messages.inc.php:180 tbl_move_copy.php:58 +#: libraries/messages.inc.php:176 tbl_move_copy.php:58 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabula %s tika pārkopēta uz %s." -#: libraries/messages.inc.php:181 tbl_move_copy.php:48 +#: libraries/messages.inc.php:177 tbl_move_copy.php:48 msgid "Can't copy table to same one!" msgstr "Nevar nokopēt tabulu uz viņu pašu!" -#: libraries/messages.inc.php:182 server_synchronize.php:94 +#: libraries/messages.inc.php:178 server_synchronize.php:94 msgid "Could not connect to the source" msgstr "" -#: libraries/messages.inc.php:183 server_synchronize.php:97 +#: libraries/messages.inc.php:179 server_synchronize.php:97 msgid "Could not connect to the target" msgstr "" -#: libraries/messages.inc.php:184 server_processlist.php:24 +#: libraries/messages.inc.php:180 server_processlist.php:24 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -3408,135 +3408,135 @@ msgstr "" "phpMyAdmin nevarēja nogalināt procesu %s. Iespējams, ka tas jau agrāk tika " "izbeigts." -#: libraries/messages.inc.php:187 +#: libraries/messages.inc.php:183 #, php-format msgid "Create an index on %s columns" msgstr "Izveidot indeksu uz %s laukiem" -#: libraries/messages.inc.php:188 tbl_indexes.php:160 +#: libraries/messages.inc.php:184 tbl_indexes.php:160 msgid "Create a new index" msgstr "Izveidot jaunu indeksu" -#: libraries/messages.inc.php:191 pdf_pages.php:297 pmd_pdf.php:114 +#: libraries/messages.inc.php:187 pdf_pages.php:297 pmd_pdf.php:114 msgid "Create a page" msgstr "Izveidot jaunu lapu" -#: libraries/messages.inc.php:192 +#: libraries/messages.inc.php:188 msgid "Creation of PDFs" msgstr "PDF failu izveide" -#: libraries/messages.inc.php:193 pmd_general.php:74 pmd_general.php:306 +#: libraries/messages.inc.php:189 pmd_general.php:74 pmd_general.php:306 msgid "Create relation" msgstr "" -#: libraries/messages.inc.php:194 pmd_general.php:71 +#: libraries/messages.inc.php:190 pmd_general.php:71 #: server_synchronize.php:429 server_synchronize.php:872 #, fuzzy msgid "Create table" msgstr "Izveidot jaunu lapu" -#: libraries/messages.inc.php:195 +#: libraries/messages.inc.php:191 #, fuzzy msgctxt "$strCreateTableShort" msgid "Create table" msgstr "Izveidot jaunu lapu" -#: libraries/messages.inc.php:196 server_privileges.php:1994 +#: libraries/messages.inc.php:192 server_privileges.php:1994 msgid "Database for user" msgstr "" -#: libraries/messages.inc.php:197 server_privileges.php:1999 +#: libraries/messages.inc.php:193 server_privileges.php:1999 msgid "Create database with same name and grant all privileges" msgstr "" -#: libraries/messages.inc.php:198 +#: libraries/messages.inc.php:194 #, fuzzy msgctxt "$strCreateUserDatabaseNone" msgid "None" msgstr "Nav" -#: libraries/messages.inc.php:199 server_privileges.php:2003 +#: libraries/messages.inc.php:195 server_privileges.php:2003 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "Pārbaudīt privilēģijas uz datubāzi "%s"." -#: libraries/messages.inc.php:200 server_privileges.php:2000 +#: libraries/messages.inc.php:196 server_privileges.php:2000 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: libraries/messages.inc.php:201 +#: libraries/messages.inc.php:197 msgid "Creation/Update/Check dates" msgstr "Izveidošanas/Atjaunošanas/Piekļuves datumi" -#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:229 +#: libraries/messages.inc.php:199 libraries/mysql_charsets.lib.php:229 msgid "Croatian" msgstr "Horvātu" -#: libraries/messages.inc.php:204 +#: libraries/messages.inc.php:200 msgid "CSV" msgstr "CSV dati" -#: libraries/messages.inc.php:205 libraries/server_synchronize.lib.php:1343 +#: libraries/messages.inc.php:201 libraries/server_synchronize.lib.php:1343 #: libraries/server_synchronize.lib.php:1369 msgid "Current server" msgstr "" -#: libraries/messages.inc.php:206 main.php:159 +#: libraries/messages.inc.php:202 main.php:159 msgid "Custom color" msgstr "" -#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:365 +#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:365 msgid "Cyrillic" msgstr "Kirilisks" -#: libraries/messages.inc.php:208 libraries/mysql_charsets.lib.php:232 +#: libraries/messages.inc.php:204 libraries/mysql_charsets.lib.php:232 msgid "Czech" msgstr "Čehu" -#: libraries/messages.inc.php:209 libraries/mysql_charsets.lib.php:383 +#: libraries/messages.inc.php:205 libraries/mysql_charsets.lib.php:383 msgid "Czech-Slovak" msgstr "Čehu-Slovāku" -#: libraries/messages.inc.php:211 libraries/mysql_charsets.lib.php:235 +#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:235 msgid "Danish" msgstr "Dāņu" -#: libraries/messages.inc.php:214 +#: libraries/messages.inc.php:210 msgid "Database export options" msgstr "Datubāzu eksporta opcijas" -#: libraries/messages.inc.php:217 server_synchronize.php:122 +#: libraries/messages.inc.php:213 server_synchronize.php:122 #: server_synchronize.php:125 tbl_create.php:82 tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "" -#: libraries/messages.inc.php:219 server_databases.php:63 +#: libraries/messages.inc.php:215 server_databases.php:63 #, php-format msgid "%s databases have been dropped successfully." msgstr "%s datubāzes tika veiksmīgi dzēstas." -#: libraries/messages.inc.php:220 libraries/server_synchronize.lib.php:1341 +#: libraries/messages.inc.php:216 libraries/server_synchronize.lib.php:1341 #: server_synchronize.php:1110 #, fuzzy msgid "Source database" msgstr "Meklēt datubāzē" -#: libraries/messages.inc.php:221 server_databases.php:88 +#: libraries/messages.inc.php:217 server_databases.php:88 msgid "Databases statistics" msgstr "Datubāzu statistika" -#: libraries/messages.inc.php:222 server_databases.php:362 +#: libraries/messages.inc.php:218 server_databases.php:362 #: server_databases.php:363 msgid "Disable Statistics" msgstr "Izslēgt statistiku" -#: libraries/messages.inc.php:223 server_databases.php:358 +#: libraries/messages.inc.php:219 server_databases.php:358 #: server_databases.php:359 msgid "Enable Statistics" msgstr "Ieslēgt statistiku" -#: libraries/messages.inc.php:224 server_databases.php:366 +#: libraries/messages.inc.php:220 server_databases.php:366 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -3544,31 +3544,31 @@ msgstr "" "Piezīme: Datubāzes statistikas ieslēgšana šeit var izsaukt palielināto datu " "apmaiņu starp webserveri un MySQL serveri." -#: libraries/messages.inc.php:225 libraries/server_synchronize.lib.php:1367 +#: libraries/messages.inc.php:221 libraries/server_synchronize.lib.php:1367 #: server_synchronize.php:1112 #, fuzzy msgid "Target database" msgstr "Meklēt datubāzē" -#: libraries/messages.inc.php:228 server_synchronize.php:425 +#: libraries/messages.inc.php:224 server_synchronize.php:425 #: server_synchronize.php:868 msgid "Data Difference" msgstr "" -#: libraries/messages.inc.php:231 server_synchronize.php:272 +#: libraries/messages.inc.php:227 server_synchronize.php:272 msgid "Data Synchronization" msgstr "" -#: libraries/messages.inc.php:235 server_privileges.php:526 +#: libraries/messages.inc.php:231 server_privileges.php:526 #: server_privileges.php:1679 msgid "Database-specific privileges" msgstr "Datubāžu specifiskās privilēģijas" -#: libraries/messages.inc.php:237 server_privileges.php:2136 +#: libraries/messages.inc.php:233 server_privileges.php:2136 msgid "database-specific" msgstr "datubāzei specifisks" -#: libraries/messages.inc.php:240 libraries/tbl_properties.inc.php:106 +#: libraries/messages.inc.php:236 libraries/tbl_properties.inc.php:106 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" @@ -3576,32 +3576,32 @@ msgstr "" "Noklusētajām vērtībām, lūdzu ievadiet tikai pašu vertību, bez izsargāšanās " "ar atpakaļējo slīpsvītru vai pēdiņām, lietojot šo formatu: a" -#: libraries/messages.inc.php:241 tbl_operations.php:589 +#: libraries/messages.inc.php:237 tbl_operations.php:589 msgid "Defragment table" msgstr "Defragmentēt tabulu" -#: libraries/messages.inc.php:242 +#: libraries/messages.inc.php:238 msgid "Use delayed inserts" msgstr "Lietot aizturētos INSERT" -#: libraries/messages.inc.php:245 server_privileges.php:1243 +#: libraries/messages.inc.php:241 server_privileges.php:1243 msgid "No users selected for deleting!" msgstr "" -#: libraries/messages.inc.php:246 pmd_general.php:372 +#: libraries/messages.inc.php:242 pmd_general.php:372 msgid "Delete relation" msgstr "" -#: libraries/messages.inc.php:248 server_privileges.php:1232 +#: libraries/messages.inc.php:244 server_privileges.php:1232 #, php-format msgid "Deleting %s" msgstr "Dzēšam %s" -#: libraries/messages.inc.php:249 libraries/sql_query_form.lib.php:388 +#: libraries/messages.inc.php:245 libraries/sql_query_form.lib.php:388 msgid "Delimiter" msgstr "" -#: libraries/messages.inc.php:250 pdf_pages.php:506 +#: libraries/messages.inc.php:246 pdf_pages.php:506 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -3609,151 +3609,151 @@ msgstr "" "Tekošajā lapā ir atsauces uz tabulām, kas vairs neeksistē. Vai Jūs gribat " "dzēst šīs atsauces?" -#: libraries/messages.inc.php:254 pmd_help.php:29 +#: libraries/messages.inc.php:250 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." msgstr "" -#: libraries/messages.inc.php:256 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:252 libraries/mysql_charsets.lib.php:247 msgid "dictionary" msgstr "vārdnīca" -#: libraries/messages.inc.php:257 libraries/server_synchronize.lib.php:1348 +#: libraries/messages.inc.php:253 libraries/server_synchronize.lib.php:1348 msgid "Difference" msgstr "" -#: libraries/messages.inc.php:258 pmd_general.php:87 +#: libraries/messages.inc.php:254 pmd_general.php:87 msgid "Direct links" msgstr "" -#: libraries/messages.inc.php:261 +#: libraries/messages.inc.php:257 msgid "Disable foreign key checks" msgstr "Nepārbaudīt ārējās atslēgas" -#: libraries/messages.inc.php:262 +#: libraries/messages.inc.php:258 msgid "Display Features" msgstr "Rādīt iespējas" -#: libraries/messages.inc.php:263 tbl_select.php:301 +#: libraries/messages.inc.php:259 tbl_select.php:301 msgid "Display order:" msgstr "Attēlošanas secība:" -#: libraries/messages.inc.php:265 tbl_select.php:132 +#: libraries/messages.inc.php:261 tbl_select.php:132 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Izpildīt \"vaicājumu pēc parauga\" (aizstājējzīme: \"%\")" -#: libraries/messages.inc.php:266 +#: libraries/messages.inc.php:262 msgid "DocSQL" msgstr "" -#: libraries/messages.inc.php:268 +#: libraries/messages.inc.php:264 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/messages.inc.php:273 server_privileges.php:1579 +#: libraries/messages.inc.php:269 server_privileges.php:1579 #: server_privileges.php:1580 server_privileges.php:1581 msgid "Drop the databases that have the same names as the users." msgstr "Dzēst datubāzes, kurām ir tādi paši vārdi, kā lietotājiem." -#: libraries/messages.inc.php:278 tbl_printview.php:382 tbl_structure.php:743 +#: libraries/messages.inc.php:274 tbl_printview.php:382 tbl_structure.php:743 msgid "dynamic" msgstr "dinamisks" -#: libraries/messages.inc.php:282 server_privileges.php:1324 +#: libraries/messages.inc.php:278 server_privileges.php:1324 #: server_privileges.php:1610 msgid "Edit Privileges" msgstr "Mainīt privilēģijas" -#: libraries/messages.inc.php:283 tbl_printview.php:341 tbl_structure.php:688 +#: libraries/messages.inc.php:279 tbl_printview.php:341 tbl_structure.php:688 msgid "Effective" msgstr "Efektīvs" -#: libraries/messages.inc.php:286 libraries/relation.lib.php:100 +#: libraries/messages.inc.php:282 libraries/relation.lib.php:100 msgid "Enabled" msgstr "Ieslēgts" -#: libraries/messages.inc.php:287 +#: libraries/messages.inc.php:283 msgid "Enclose export in a transaction" msgstr "Iekļaut eksportu transakcijā" -#: libraries/messages.inc.php:288 libraries/sqlparser.lib.php:177 +#: libraries/messages.inc.php:284 libraries/sqlparser.lib.php:177 msgid "END CUT" msgstr "IZGRIEZT LĪDZ ŠAI VIETAI" -#: libraries/messages.inc.php:290 libraries/sqlparser.lib.php:183 +#: libraries/messages.inc.php:286 libraries/sqlparser.lib.php:183 msgid "END RAW" msgstr "RINDAS BEIGAS" -#: libraries/messages.inc.php:293 libraries/server_links.inc.php:61 +#: libraries/messages.inc.php:289 libraries/server_links.inc.php:61 #: test/theme.php:113 msgid "Engines" msgstr "" -#: libraries/messages.inc.php:295 libraries/mysql_charsets.lib.php:238 +#: libraries/messages.inc.php:291 libraries/mysql_charsets.lib.php:238 msgid "English" msgstr "Angļu" -#: libraries/messages.inc.php:296 server_privileges.php:393 +#: libraries/messages.inc.php:292 server_privileges.php:393 #: server_privileges.php:535 server_privileges.php:1501 msgid " Note: MySQL privilege names are expressed in English " msgstr " Piezīme: MySQL privilēģiju apzīmējumi tiek rakstīti angļu valodā " -#: libraries/messages.inc.php:298 libraries/zip_extension.lib.php:49 +#: libraries/messages.inc.php:294 libraries/zip_extension.lib.php:49 #: libraries/zip_extension.lib.php:51 libraries/zip_extension.lib.php:66 msgid "Error in ZIP archive:" msgstr "" -#: libraries/messages.inc.php:303 libraries/mysql_charsets.lib.php:241 +#: libraries/messages.inc.php:299 libraries/mysql_charsets.lib.php:241 msgid "Esperanto" msgstr "" -#: libraries/messages.inc.php:304 libraries/mysql_charsets.lib.php:244 +#: libraries/messages.inc.php:300 libraries/mysql_charsets.lib.php:244 msgid "Estonian" msgstr "Igauņu" -#: libraries/messages.inc.php:305 libraries/tbl_triggers.lib.php:29 +#: libraries/messages.inc.php:301 libraries/tbl_triggers.lib.php:29 #, fuzzy msgid "Event" msgstr "Nosūtīts" -#: libraries/messages.inc.php:307 +#: libraries/messages.inc.php:303 msgid "Excel edition" msgstr "Excel redakcija" -#: libraries/messages.inc.php:311 pmd_pdf.php:85 +#: libraries/messages.inc.php:307 pmd_pdf.php:85 msgid "Export/Import to scale" msgstr "" -#: libraries/messages.inc.php:313 +#: libraries/messages.inc.php:309 msgid "Extended inserts" msgstr "Paplašinātas INSERT izteiksmes" -#: libraries/messages.inc.php:314 pdf_schema.php:1267 pdf_schema.php:1288 +#: libraries/messages.inc.php:310 pdf_schema.php:1267 pdf_schema.php:1288 #: tbl_printview.php:147 tbl_structure.php:183 tbl_tracking.php:278 msgid "Extra" msgstr "Ekstras" -#: libraries/messages.inc.php:316 server_status.php:447 +#: libraries/messages.inc.php:312 server_status.php:447 msgid "Failed attempts" msgstr "Neveiksmīgi mēģinājumi" -#: libraries/messages.inc.php:318 tbl_structure.php:375 +#: libraries/messages.inc.php:314 tbl_structure.php:375 #, php-format msgid "Field %s has been dropped" msgstr "Lauks %s tika izdzēsts" -#: libraries/messages.inc.php:322 libraries/sql_query_form.lib.php:317 +#: libraries/messages.inc.php:318 libraries/sql_query_form.lib.php:317 msgid "Fields" msgstr "Lauki" -#: libraries/messages.inc.php:332 server_binlog.php:136 +#: libraries/messages.inc.php:328 server_binlog.php:136 #, fuzzy msgid "Files" msgstr "Lauki" -#: libraries/messages.inc.php:334 server_privileges.php:1597 +#: libraries/messages.inc.php:330 server_privileges.php:1597 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -3766,219 +3766,219 @@ msgstr "" "lieto serveris, ja tur tika veikti labojumi. Šajā gadījumā ir nepieciešams %" "spārlādēt privilēģijas%s pirms Jūs turpināt." -#: libraries/messages.inc.php:335 server_status.php:289 +#: libraries/messages.inc.php:331 server_status.php:289 msgid "Flush query cache" msgstr "" -#: libraries/messages.inc.php:336 +#: libraries/messages.inc.php:332 msgid "Flush the table (\"FLUSH\")" msgstr "Atsvaidzināt tabulu (\"FLUSH\")" -#: libraries/messages.inc.php:337 server_status.php:271 +#: libraries/messages.inc.php:333 server_status.php:271 msgid "Flush (close) all tables" msgstr "" -#: libraries/messages.inc.php:339 tbl_relation.php:279 +#: libraries/messages.inc.php:335 tbl_relation.php:279 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" -#: libraries/messages.inc.php:341 setup/lib/messages.inc.php:88 +#: libraries/messages.inc.php:337 setup/lib/messages.inc.php:88 #: tbl_printview.php:376 tbl_structure.php:738 msgid "Format" msgstr "Formats" -#: libraries/messages.inc.php:344 server_replication.php:325 +#: libraries/messages.inc.php:340 server_replication.php:325 #, fuzzy msgid "Full start" msgstr "Pilni teksti" -#: libraries/messages.inc.php:345 server_replication.php:325 +#: libraries/messages.inc.php:341 server_replication.php:325 msgid "Full stop" msgstr "" -#: libraries/messages.inc.php:347 tbl_change.php:282 tbl_change.php:320 +#: libraries/messages.inc.php:343 tbl_change.php:282 tbl_change.php:320 msgid "Function" msgstr "Funkcija" -#: libraries/messages.inc.php:355 libraries/mysql_charsets.lib.php:377 +#: libraries/messages.inc.php:351 libraries/mysql_charsets.lib.php:377 msgid "Georgian" msgstr "Gruzīnu" -#: libraries/messages.inc.php:356 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:352 libraries/mysql_charsets.lib.php:247 #: libraries/mysql_charsets.lib.php:250 msgid "German" msgstr "Vācu" -#: libraries/messages.inc.php:357 themes.php:42 +#: libraries/messages.inc.php:353 themes.php:42 msgid "Get more themes!" msgstr "" -#: libraries/messages.inc.php:358 server_privileges.php:2134 +#: libraries/messages.inc.php:354 server_privileges.php:2134 msgid "global" msgstr "globāls" -#: libraries/messages.inc.php:359 server_privileges.php:524 +#: libraries/messages.inc.php:355 server_privileges.php:524 #: server_privileges.php:1500 msgid "Global privileges" msgstr "Globālās privilēģijas" -#: libraries/messages.inc.php:360 server_variables.php:55 +#: libraries/messages.inc.php:356 server_variables.php:55 #: server_variables.php:89 msgid "Global value" msgstr "Globālā vērtība" -#: libraries/messages.inc.php:365 server_privileges.php:1502 +#: libraries/messages.inc.php:361 server_privileges.php:1502 #: server_privileges.php:1684 server_privileges.php:2033 msgid "Grant" msgstr "Piešķirt" -#: libraries/messages.inc.php:366 libraries/mysql_charsets.lib.php:380 +#: libraries/messages.inc.php:362 libraries/mysql_charsets.lib.php:380 msgid "Greek" msgstr "Grieķu" -#: libraries/messages.inc.php:367 +#: libraries/messages.inc.php:363 msgid "\"gzipped\"" msgstr "Arhivēts ar gzip" -#: libraries/messages.inc.php:369 server_status.php:250 +#: libraries/messages.inc.php:365 server_status.php:250 msgid "Handler" msgstr "" -#: libraries/messages.inc.php:370 server_synchronize.php:464 +#: libraries/messages.inc.php:366 server_synchronize.php:464 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: libraries/messages.inc.php:372 libraries/mysql_charsets.lib.php:374 +#: libraries/messages.inc.php:368 libraries/mysql_charsets.lib.php:374 msgid "Hebrew" msgstr "Ebreju" -#: libraries/messages.inc.php:373 pmd_general.php:83 +#: libraries/messages.inc.php:369 pmd_general.php:83 msgid "Help" msgstr "" -#: libraries/messages.inc.php:374 +#: libraries/messages.inc.php:370 msgid "Use hexadecimal for BLOB" msgstr "" -#: libraries/messages.inc.php:376 pmd_general.php:120 +#: libraries/messages.inc.php:372 pmd_general.php:120 #, fuzzy msgid "Hide/Show all" msgstr "Rādīt visu" -#: libraries/messages.inc.php:377 pmd_general.php:124 +#: libraries/messages.inc.php:373 pmd_general.php:124 msgid "Hide/Show Tables with no relation" msgstr "" -#: libraries/messages.inc.php:378 libraries/navigation_header.inc.php:54 +#: libraries/messages.inc.php:374 libraries/navigation_header.inc.php:54 #: libraries/navigation_header.inc.php:57 #: libraries/navigation_header.inc.php:58 msgid "Home" msgstr "Sākumlapa" -#: libraries/messages.inc.php:379 main.php:233 +#: libraries/messages.inc.php:375 main.php:233 msgid "Official Homepage" msgstr "Oficiālā phpMyAdmin mājaslapa" -#: libraries/messages.inc.php:382 libraries/replication_gui.lib.php:327 +#: libraries/messages.inc.php:378 libraries/replication_gui.lib.php:327 #: server_privileges.php:753 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/messages.inc.php:383 +#: libraries/messages.inc.php:379 msgid "Microsoft Word 2000" msgstr "" -#: libraries/messages.inc.php:384 libraries/mysql_charsets.lib.php:253 +#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:253 msgid "Hungarian" msgstr "Ungāru" -#: libraries/messages.inc.php:386 libraries/mysql_charsets.lib.php:256 +#: libraries/messages.inc.php:382 libraries/mysql_charsets.lib.php:256 msgid "Icelandic" msgstr "Islandiešu" -#: libraries/messages.inc.php:387 server_processlist.php:53 +#: libraries/messages.inc.php:383 server_processlist.php:53 msgid "ID" msgstr "ID" -#: libraries/messages.inc.php:388 libraries/mult_submits.inc.php:108 +#: libraries/messages.inc.php:384 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:479 msgid "Fulltext" msgstr "Pilni teksti" -#: libraries/messages.inc.php:389 +#: libraries/messages.inc.php:385 msgid "Ignore duplicate rows" msgstr "" -#: libraries/messages.inc.php:390 tbl_change.php:302 tbl_indexes.php:200 +#: libraries/messages.inc.php:386 tbl_change.php:302 tbl_indexes.php:200 #: tbl_indexes.php:225 msgid "Ignore" msgstr "Ignorēt" -#: libraries/messages.inc.php:391 +#: libraries/messages.inc.php:387 msgid "Use ignore inserts" msgstr "Lietot IGNORE INSERTS" -#: libraries/messages.inc.php:392 +#: libraries/messages.inc.php:388 msgid "Column names in first row" msgstr "" -#: libraries/messages.inc.php:393 +#: libraries/messages.inc.php:389 msgid "Do not import empty rows" msgstr "" -#: libraries/messages.inc.php:394 pmd_general.php:104 +#: libraries/messages.inc.php:390 pmd_general.php:104 msgid "Import/Export coordinates for PDF schema" msgstr "" -#: libraries/messages.inc.php:395 querywindow.php:104 +#: libraries/messages.inc.php:391 querywindow.php:104 msgid "Import files" msgstr "Importēt failus" -#: libraries/messages.inc.php:403 +#: libraries/messages.inc.php:399 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/messages.inc.php:404 libraries/messages.inc.php:584 +#: libraries/messages.inc.php:400 libraries/messages.inc.php:580 msgid "Open Document Spreadsheet" msgstr "" -#: libraries/messages.inc.php:405 +#: libraries/messages.inc.php:401 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/messages.inc.php:409 +#: libraries/messages.inc.php:405 msgid "Excel 97-2003 XLS Workbook" msgstr "" -#: libraries/messages.inc.php:410 +#: libraries/messages.inc.php:406 msgid "Excel 2007 XLSX Workbook" msgstr "" -#: libraries/messages.inc.php:414 libraries/mult_submits.inc.php:98 +#: libraries/messages.inc.php:410 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:476 tbl_structure.php:674 msgid "Index" msgstr "Indekss" -#: libraries/messages.inc.php:415 tbl_indexes.php:168 +#: libraries/messages.inc.php:411 tbl_indexes.php:168 msgid "Index name:" msgstr "Indeksa nosaukums :" -#: libraries/messages.inc.php:416 tbl_indexes.php:174 +#: libraries/messages.inc.php:412 tbl_indexes.php:174 msgid "Index type:" msgstr "Indeksa tips :" -#: libraries/messages.inc.php:417 sql.php:639 +#: libraries/messages.inc.php:413 sql.php:639 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problēmas ar indeksiem tabulā `%s`" -#: libraries/messages.inc.php:427 main.php:266 +#: libraries/messages.inc.php:423 main.php:266 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -3990,194 +3990,194 @@ msgstr "" "MySQL serveris strādā ar šo noklusēto variantu, ir atvērts uzbrukumiem, un " "Jums tiešām jāaiztaisa šis drošības caurums." -#: libraries/messages.inc.php:428 tbl_change.php:1130 +#: libraries/messages.inc.php:424 tbl_change.php:1130 msgid "Insert as new row" msgstr "Ievietot kā jaunu rindu" -#: libraries/messages.inc.php:429 sql.php:496 tbl_replace.php:386 +#: libraries/messages.inc.php:425 sql.php:496 tbl_replace.php:386 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: libraries/messages.inc.php:430 tbl_change.php:1131 +#: libraries/messages.inc.php:426 tbl_change.php:1131 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/messages.inc.php:432 main.php:139 +#: libraries/messages.inc.php:428 main.php:139 msgid "Interface" msgstr "" -#: libraries/messages.inc.php:433 tbl_relation.php:407 +#: libraries/messages.inc.php:429 tbl_relation.php:407 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: libraries/messages.inc.php:435 pdf_pages.php:303 +#: libraries/messages.inc.php:431 pdf_pages.php:303 msgid "Internal relations" msgstr "Iekšējās relācijas" -#: libraries/messages.inc.php:438 tbl_indexes.php:256 tbl_structure.php:590 +#: libraries/messages.inc.php:434 tbl_indexes.php:256 tbl_structure.php:590 #: tbl_structure.php:601 msgid "Column count has to be larger than zero." msgstr "" -#: libraries/messages.inc.php:444 libraries/tbl_properties.inc.php:784 +#: libraries/messages.inc.php:440 libraries/tbl_properties.inc.php:784 #: tbl_structure.php:537 msgid "You have to add at least one field." msgstr "" -#: libraries/messages.inc.php:449 +#: libraries/messages.inc.php:445 #, php-format msgid "Invalid server index: \"%s\"" msgstr "" -#: libraries/messages.inc.php:452 libraries/mysql_charsets.lib.php:259 +#: libraries/messages.inc.php:448 libraries/mysql_charsets.lib.php:259 #: libraries/mysql_charsets.lib.php:349 msgid "Japanese" msgstr "Japāņu" -#: libraries/messages.inc.php:453 main.php:331 +#: libraries/messages.inc.php:449 main.php:331 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: libraries/messages.inc.php:454 server_status.php:257 +#: libraries/messages.inc.php:450 server_status.php:257 msgid "Joins" msgstr "" -#: libraries/messages.inc.php:457 server_privileges.php:763 +#: libraries/messages.inc.php:453 server_privileges.php:763 msgid "Do not change the password" msgstr "Nemainīt paroli" -#: libraries/messages.inc.php:458 server_status.php:256 +#: libraries/messages.inc.php:454 server_status.php:256 msgid "Key cache" msgstr "" -#: libraries/messages.inc.php:462 libraries/mysql_charsets.lib.php:268 +#: libraries/messages.inc.php:458 libraries/mysql_charsets.lib.php:268 #: libraries/mysql_charsets.lib.php:371 msgid "Korean" msgstr "Korejiešu" -#: libraries/messages.inc.php:466 libraries/select_lang.lib.php:480 +#: libraries/messages.inc.php:462 libraries/select_lang.lib.php:480 #: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492 #, php-format msgid "Unknown language: %1$s." msgstr "" -#: libraries/messages.inc.php:468 +#: libraries/messages.inc.php:464 msgid "Table caption" msgstr "Tabulas virsraksts" -#: libraries/messages.inc.php:469 +#: libraries/messages.inc.php:465 msgid "Content of table __TABLE__" msgstr "Tabulas __TABLE__ saturs" -#: libraries/messages.inc.php:470 +#: libraries/messages.inc.php:466 msgid "Continued table caption" msgstr "Tabulas virsraksta turpinājums" -#: libraries/messages.inc.php:471 +#: libraries/messages.inc.php:467 msgid "(continued)" msgstr "(turpinājums)" -#: libraries/messages.inc.php:472 +#: libraries/messages.inc.php:468 msgid "Include table caption" msgstr "Iekļaut tabulas virsrakstu" -#: libraries/messages.inc.php:473 +#: libraries/messages.inc.php:469 msgid "Label key" msgstr "Etiķetes atslēga" -#: libraries/messages.inc.php:474 +#: libraries/messages.inc.php:470 msgid "LaTeX" msgstr "LaTeX" -#: libraries/messages.inc.php:475 +#: libraries/messages.inc.php:471 msgid "Structure of table __TABLE__" msgstr "Tabulas __TABLE__ struktūra" -#: libraries/messages.inc.php:476 libraries/mysql_charsets.lib.php:262 +#: libraries/messages.inc.php:472 libraries/mysql_charsets.lib.php:262 msgid "Latvian" msgstr "Latviešu" -#: libraries/messages.inc.php:477 +#: libraries/messages.inc.php:473 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/messages.inc.php:478 +#: libraries/messages.inc.php:474 msgid "Use LOCAL keyword" msgstr "" -#: libraries/messages.inc.php:479 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:475 libraries/tbl_properties.inc.php:105 msgid "Length/Values" msgstr "Garums/Vērtības*" -#: libraries/messages.inc.php:480 tbl_select.php:295 +#: libraries/messages.inc.php:476 tbl_select.php:295 msgid "Number of rows per page" msgstr "Rindu skaits vienā lapā" -#: libraries/messages.inc.php:484 libraries/mysql_charsets.lib.php:265 +#: libraries/messages.inc.php:480 libraries/mysql_charsets.lib.php:265 msgid "Lithuanian" msgstr "Lietuviešu" -#: libraries/messages.inc.php:485 libraries/replication_gui.lib.php:302 +#: libraries/messages.inc.php:481 libraries/replication_gui.lib.php:302 #: server_privileges.php:729 msgid "Local" msgstr "Lokāls" -#: libraries/messages.inc.php:487 server_privileges.php:669 +#: libraries/messages.inc.php:483 server_privileges.php:669 msgid "Login Information" msgstr "Piekļuves informācija" -#: libraries/messages.inc.php:490 libraries/navigation_header.inc.php:67 +#: libraries/messages.inc.php:486 libraries/navigation_header.inc.php:67 #: libraries/navigation_header.inc.php:70 #: libraries/navigation_header.inc.php:71 main.php:99 msgid "Log out" msgstr "Iziet" -#: libraries/messages.inc.php:497 server_status.php:440 +#: libraries/messages.inc.php:493 server_status.php:440 msgid "max. concurrent connections" msgstr "" -#: libraries/messages.inc.php:498 +#: libraries/messages.inc.php:494 msgid "Maximal length of created query" msgstr "" -#: libraries/messages.inc.php:500 main.php:282 +#: libraries/messages.inc.php:496 main.php:282 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " "split strings correctly and it may result in unexpected results." msgstr "" -#: libraries/messages.inc.php:501 main.php:274 +#: libraries/messages.inc.php:497 main.php:274 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " "corrupted!" msgstr "" -#: libraries/messages.inc.php:502 +#: libraries/messages.inc.php:498 msgid "MediaWiki Table" msgstr "" -#: libraries/messages.inc.php:503 transformation_overview.php:25 +#: libraries/messages.inc.php:499 transformation_overview.php:25 msgid "Available MIME types" msgstr "Pieejamie MIME tipi" -#: libraries/messages.inc.php:504 transformation_overview.php:43 +#: libraries/messages.inc.php:500 transformation_overview.php:43 msgid "Available transformations" msgstr "Pieejamās transformācijas" -#: libraries/messages.inc.php:505 +#: libraries/messages.inc.php:501 msgctxt "$strMIME_description" msgid "Description" msgstr "Apraksts" -#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:580 +#: libraries/messages.inc.php:503 libraries/tbl_properties.inc.php:580 #: transformation_overview.php:60 #, php-format msgid "" @@ -4185,7 +4185,7 @@ msgid "" "author what %s does." msgstr "Šai transformācijai nav apraksta.
Jautājiet autoram, ko %s dara." -#: libraries/messages.inc.php:509 libraries/tbl_properties.inc.php:137 +#: libraries/messages.inc.php:505 libraries/tbl_properties.inc.php:137 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -4194,7 +4194,7 @@ msgstr "" "Lai iegūtu pieejamo transformāciju opcijas un to MIME tipu transformācijas, " "uzklikšķiniet uz %stransformāciju apraksti%s" -#: libraries/messages.inc.php:510 libraries/tbl_properties.inc.php:146 +#: libraries/messages.inc.php:506 libraries/tbl_properties.inc.php:146 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -4206,113 +4206,113 @@ msgstr "" "vienkāršā pēdiņa (\"'\") starp šīm vērtībām, lieciet tās priekšā vēl vienu " "atpakaļējo slīpsvītru (piemēram '\\\\xyz' or 'a\\'b')." -#: libraries/messages.inc.php:511 libraries/tbl_properties.inc.php:145 +#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:145 msgid "Transformation options" msgstr "Transformācijas opcijas" -#: libraries/messages.inc.php:513 transformation_overview.php:38 +#: libraries/messages.inc.php:509 transformation_overview.php:38 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "" "MIME tipiem, kas parādīti slīprakstā, nav atsevišķas transformācijas " "funkcijas" -#: libraries/messages.inc.php:515 tbl_indexes.php:162 +#: libraries/messages.inc.php:511 tbl_indexes.php:162 msgid "Modify an index" msgstr "Labot indeksu" -#: libraries/messages.inc.php:517 pmd_general.php:108 +#: libraries/messages.inc.php:513 pmd_general.php:108 msgid "Move Menu" msgstr "" -#: libraries/messages.inc.php:518 tbl_operations.php:276 +#: libraries/messages.inc.php:514 tbl_operations.php:276 msgid "Move table to (database.table):" msgstr "Pārvietot tabulu uz (datubāze.tabula):" -#: libraries/messages.inc.php:519 tbl_move_copy.php:56 +#: libraries/messages.inc.php:515 tbl_move_copy.php:56 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabula %s tika pārvietota uz %s." -#: libraries/messages.inc.php:520 tbl_move_copy.php:46 +#: libraries/messages.inc.php:516 tbl_move_copy.php:46 msgid "Can't move table to same one!" msgstr "Nevar pārvietot tabulu uz viņu pašu!" -#: libraries/messages.inc.php:521 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:517 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 #: libraries/mysql_charsets.lib.php:332 libraries/mysql_charsets.lib.php:354 #: libraries/mysql_charsets.lib.php:365 msgid "multilingual" msgstr "daudzvalodu" -#: libraries/messages.inc.php:534 main.php:193 +#: libraries/messages.inc.php:530 main.php:193 msgid "MySQL charset" msgstr "MySQL kodējums" -#: libraries/messages.inc.php:535 main.php:211 +#: libraries/messages.inc.php:531 main.php:211 msgid "MySQL client version" msgstr "" -#: libraries/messages.inc.php:536 main.php:125 +#: libraries/messages.inc.php:532 main.php:125 msgid "MySQL connection collation" msgstr "MySQL konekcijas kārtošana" -#: libraries/messages.inc.php:537 main.php:346 +#: libraries/messages.inc.php:533 main.php:346 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: libraries/messages.inc.php:539 server_status.php:294 +#: libraries/messages.inc.php:535 server_status.php:294 msgid "Show processes" msgstr "Parādīt procesus" -#: libraries/messages.inc.php:545 navigation.php:210 server_databases.php:371 +#: libraries/messages.inc.php:541 navigation.php:210 server_databases.php:371 #: server_synchronize.php:1191 msgid "No databases" msgstr "Nav datubāzu" -#: libraries/messages.inc.php:546 server_databases.php:52 +#: libraries/messages.inc.php:542 server_databases.php:52 msgid "No databases selected." msgstr "Datubāze nav izvēlēta." -#: libraries/messages.inc.php:548 libraries/relation.lib.php:1173 +#: libraries/messages.inc.php:544 libraries/relation.lib.php:1173 msgid "no description" msgstr "Bez apraksta" -#: libraries/messages.inc.php:552 libraries/zip_extension.lib.php:26 +#: libraries/messages.inc.php:548 libraries/zip_extension.lib.php:26 msgid "No files found inside ZIP archive!" msgstr "" -#: libraries/messages.inc.php:555 tbl_indexes.php:91 +#: libraries/messages.inc.php:551 tbl_indexes.php:91 msgid "No index parts defined!" msgstr "Nav definēto indeksa daļu!" -#: libraries/messages.inc.php:556 libraries/mult_submits.inc.php:435 +#: libraries/messages.inc.php:552 libraries/mult_submits.inc.php:435 #: tbl_replace.php:331 msgid "No change" msgstr "Netika labots" -#: libraries/messages.inc.php:557 +#: libraries/messages.inc.php:553 #, fuzzy msgctxt "$strNoneDefault" msgid "None" msgstr "Nav" -#: libraries/messages.inc.php:560 libraries/plugin_interface.lib.php:312 +#: libraries/messages.inc.php:556 libraries/plugin_interface.lib.php:312 msgid "This format has no options" msgstr "Šim formātam nav opciju" -#: libraries/messages.inc.php:565 user_password.php:54 +#: libraries/messages.inc.php:561 user_password.php:54 msgid "You don't have sufficient privileges to be here right now!" msgstr "Jums nav pietiekoši tiesību, lai atrastos šeit tagad!" -#: libraries/messages.inc.php:566 tbl_row_action.php:29 +#: libraries/messages.inc.php:562 tbl_row_action.php:29 msgid "No rows selected" msgstr "Rindas nav iezīmētas" -#: libraries/messages.inc.php:569 themes.php:32 +#: libraries/messages.inc.php:565 themes.php:32 #, php-format msgid "" "No themes support; please check your configuration and/or your themes in " @@ -4321,301 +4321,301 @@ msgstr "" "Nav tēmu atbalsta, lūdzu pārbaudiet jūsu konfigurāciju un/vai Jūsu tēmas " "direktorijā %s." -#: libraries/messages.inc.php:571 libraries/relation.lib.php:95 +#: libraries/messages.inc.php:567 libraries/relation.lib.php:95 msgid "not OK" msgstr "nav OK" -#: libraries/messages.inc.php:572 server_synchronize.php:400 +#: libraries/messages.inc.php:568 server_synchronize.php:400 #: server_synchronize.php:839 msgid "not present" msgstr "" -#: libraries/messages.inc.php:573 pdf_pages.php:36 pdf_pages.php:42 +#: libraries/messages.inc.php:569 pdf_pages.php:36 pdf_pages.php:42 #: pdf_pages.php:48 pdf_pages.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "Tabula %s nav atrasta vai nav atzīmeta iekš %s" -#: libraries/messages.inc.php:574 server_privileges.php:804 +#: libraries/messages.inc.php:570 server_privileges.php:804 #: server_privileges.php:2166 msgid "No user(s) found." msgstr "Lietotāji netika atrasti." -#: libraries/messages.inc.php:578 pmd_general.php:164 +#: libraries/messages.inc.php:574 pmd_general.php:164 msgid "Number of tables" msgstr "" -#: libraries/messages.inc.php:581 server_databases.php:117 +#: libraries/messages.inc.php:577 server_databases.php:117 #: server_status.php:260 setup/lib/messages.inc.php:117 msgid "Tables" msgstr "Tabulas" -#: libraries/messages.inc.php:583 libraries/relation.lib.php:99 +#: libraries/messages.inc.php:579 libraries/relation.lib.php:99 #: pmd_general.php:340 msgid "OK" msgstr "Labi" -#: libraries/messages.inc.php:585 +#: libraries/messages.inc.php:581 msgid "Open Document Text" msgstr "" -#: libraries/messages.inc.php:588 tbl_select.php:138 +#: libraries/messages.inc.php:584 tbl_select.php:138 msgid "Operator" msgstr "Operators" -#: libraries/messages.inc.php:589 tbl_operations.php:662 +#: libraries/messages.inc.php:585 tbl_operations.php:662 msgid "Optimize" msgstr "" -#: libraries/messages.inc.php:602 libraries/tbl_properties.inc.php:755 +#: libraries/messages.inc.php:598 libraries/tbl_properties.inc.php:755 msgid "PARTITION definition" msgstr "" -#: libraries/messages.inc.php:603 tbl_structure.php:757 +#: libraries/messages.inc.php:599 tbl_structure.php:757 msgid "partitioned" msgstr "" -#: libraries/messages.inc.php:604 tbl_operations.php:649 +#: libraries/messages.inc.php:600 tbl_operations.php:649 #, fuzzy msgid "Partition maintenance" msgstr "Tabulas apkalpošana" -#: libraries/messages.inc.php:605 tbl_operations.php:657 +#: libraries/messages.inc.php:601 tbl_operations.php:657 #, php-format msgid "Partition %s" msgstr "" -#: libraries/messages.inc.php:606 server_privileges.php:1212 +#: libraries/messages.inc.php:602 server_privileges.php:1212 #, php-format msgid "The password for %s was changed successfully." msgstr "Lietotāja %s parole tika veiksmīgi mainīta." -#: libraries/messages.inc.php:635 +#: libraries/messages.inc.php:631 #, php-format msgid "Schema of the \"%s\" database - Page %s" msgstr "Datubāzes \"%s\" shēma, %s. lapa" -#: libraries/messages.inc.php:636 +#: libraries/messages.inc.php:632 #, php-format msgid "The \"%s\" table doesn't exist!" msgstr "Tabula \"%s\" neeksistē!" -#: libraries/messages.inc.php:637 pdf_schema.php:1013 +#: libraries/messages.inc.php:633 pdf_schema.php:1013 msgid "No tables" msgstr "Nav tabulu" -#: libraries/messages.inc.php:638 pmd_pdf.php:63 +#: libraries/messages.inc.php:634 pmd_pdf.php:63 #, fuzzy msgid "Page has been created" msgstr "Tabula %s tika izdzēsta" -#: libraries/messages.inc.php:639 pmd_pdf.php:65 +#: libraries/messages.inc.php:635 pmd_pdf.php:65 msgid "Page creation failed" msgstr "" -#: libraries/messages.inc.php:640 +#: libraries/messages.inc.php:636 msgid "PDF" msgstr "" -#: libraries/messages.inc.php:641 +#: libraries/messages.inc.php:637 msgid "(Generates a report containing the data of a single table)" msgstr "" -#: libraries/messages.inc.php:642 +#: libraries/messages.inc.php:638 msgid "Report title" msgstr "" -#: libraries/messages.inc.php:643 server_status.php:389 server_status.php:434 +#: libraries/messages.inc.php:639 server_status.php:389 server_status.php:434 #: server_status.php:497 server_status.php:555 msgid "per hour" msgstr "stundā" -#: libraries/messages.inc.php:644 server_status.php:498 +#: libraries/messages.inc.php:640 server_status.php:498 msgid "per minute" msgstr "minūtē" -#: libraries/messages.inc.php:645 server_status.php:499 +#: libraries/messages.inc.php:641 server_status.php:499 msgid "per second" msgstr "sekundē" -#: libraries/messages.inc.php:646 libraries/mysql_charsets.lib.php:271 +#: libraries/messages.inc.php:642 libraries/mysql_charsets.lib.php:271 msgid "Persian" msgstr "Persiešu" -#: libraries/messages.inc.php:647 libraries/mysql_charsets.lib.php:250 +#: libraries/messages.inc.php:643 libraries/mysql_charsets.lib.php:250 msgid "phone book" msgstr "telefonu grāmata" -#: libraries/messages.inc.php:648 +#: libraries/messages.inc.php:644 msgid "PHP array" msgstr "" -#: libraries/messages.inc.php:650 main.php:213 +#: libraries/messages.inc.php:646 main.php:213 #, fuzzy msgid "PHP extension" msgstr "PHP Versija" -#: libraries/messages.inc.php:654 libraries/relation.lib.php:163 +#: libraries/messages.inc.php:650 libraries/relation.lib.php:163 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/messages.inc.php:655 libraries/relation.lib.php:159 +#: libraries/messages.inc.php:651 libraries/relation.lib.php:159 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/messages.inc.php:656 libraries/relation.lib.php:161 +#: libraries/messages.inc.php:652 libraries/relation.lib.php:161 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" -#: libraries/messages.inc.php:657 libraries/relation.lib.php:162 +#: libraries/messages.inc.php:653 libraries/relation.lib.php:162 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/messages.inc.php:658 libraries/relation.lib.php:164 +#: libraries/messages.inc.php:654 libraries/relation.lib.php:164 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/messages.inc.php:661 libraries/mysql_charsets.lib.php:274 +#: libraries/messages.inc.php:657 libraries/mysql_charsets.lib.php:274 msgid "Polish" msgstr "Poļu" -#: libraries/messages.inc.php:662 libraries/replication_gui.lib.php:67 +#: libraries/messages.inc.php:658 libraries/replication_gui.lib.php:67 #: server_synchronize.php:1163 #, fuzzy msgid "Port" msgstr "Kārtošana" -#: libraries/messages.inc.php:667 tbl_indexes.php:67 +#: libraries/messages.inc.php:663 tbl_indexes.php:67 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Primārās atslēgas nosaukumam jābūt... PRIMARY!" -#: libraries/messages.inc.php:668 tbl_indexes.php:184 +#: libraries/messages.inc.php:664 tbl_indexes.php:184 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" "(\"PRIMARY\" jābūt tikai un vienīgi primārās atslēgas indeksa " "nosaukumam!)" -#: libraries/messages.inc.php:669 libraries/mult_submits.inc.php:76 +#: libraries/messages.inc.php:665 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:474 msgid "Primary" msgstr "Primārā" -#: libraries/messages.inc.php:673 server_privileges.php:227 +#: libraries/messages.inc.php:669 server_privileges.php:227 msgid "Includes all privileges except GRANT." msgstr "Iekļauj visas privilēģijas, izņemot GRANT." -#: libraries/messages.inc.php:674 server_privileges.php:153 +#: libraries/messages.inc.php:670 server_privileges.php:153 #: server_privileges.php:476 msgid "Allows altering the structure of existing tables." msgstr "Ļauj mainīt esošo tabulu struktūru." -#: libraries/messages.inc.php:675 server_privileges.php:169 +#: libraries/messages.inc.php:671 server_privileges.php:169 #: server_privileges.php:482 #, fuzzy msgid "Allows altering and dropping stored routines." msgstr "Ļauj veidot un dzēst indeksus." -#: libraries/messages.inc.php:676 server_privileges.php:145 +#: libraries/messages.inc.php:672 server_privileges.php:145 #: server_privileges.php:475 msgid "Allows creating new databases and tables." msgstr "Ļauj veidot jaunas datubāzes un tabulas." -#: libraries/messages.inc.php:677 server_privileges.php:168 +#: libraries/messages.inc.php:673 server_privileges.php:168 #: server_privileges.php:481 #, fuzzy msgid "Allows creating stored routines." msgstr "Ļauj veidot jaunas tabulas." -#: libraries/messages.inc.php:678 server_privileges.php:475 +#: libraries/messages.inc.php:674 server_privileges.php:475 msgid "Allows creating new tables." msgstr "Ļauj veidot jaunas tabulas." -#: libraries/messages.inc.php:679 server_privileges.php:156 +#: libraries/messages.inc.php:675 server_privileges.php:156 #: server_privileges.php:479 msgid "Allows creating temporary tables." msgstr "Ļauj veidot pagaidu tabulas." -#: libraries/messages.inc.php:680 server_privileges.php:170 +#: libraries/messages.inc.php:676 server_privileges.php:170 #: server_privileges.php:515 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: libraries/messages.inc.php:681 server_privileges.php:160 +#: libraries/messages.inc.php:677 server_privileges.php:160 #: server_privileges.php:164 server_privileges.php:487 #: server_privileges.php:491 #, fuzzy msgid "Allows creating new views." msgstr "Ļauj veidot jaunas tabulas." -#: libraries/messages.inc.php:682 server_privileges.php:144 +#: libraries/messages.inc.php:678 server_privileges.php:144 #: server_privileges.php:467 msgid "Allows deleting data." msgstr "Ļauj dzēst datus." -#: libraries/messages.inc.php:683 server_privileges.php:146 +#: libraries/messages.inc.php:679 server_privileges.php:146 #: server_privileges.php:478 msgid "Allows dropping databases and tables." msgstr "Ļauj dzēst datubāzes un tabulas." -#: libraries/messages.inc.php:684 server_privileges.php:478 +#: libraries/messages.inc.php:680 server_privileges.php:478 msgid "Allows dropping tables." msgstr "Ļauj dzēst tabulas." -#: libraries/messages.inc.php:685 server_privileges.php:161 +#: libraries/messages.inc.php:681 server_privileges.php:161 #: server_privileges.php:495 msgid "Allows to set up events for the event scheduler" msgstr "" -#: libraries/messages.inc.php:686 server_privileges.php:171 +#: libraries/messages.inc.php:682 server_privileges.php:171 #: server_privileges.php:483 msgid "Allows executing stored routines." msgstr "" -#: libraries/messages.inc.php:687 server_privileges.php:150 +#: libraries/messages.inc.php:683 server_privileges.php:150 #: server_privileges.php:470 msgid "Allows importing data from and exporting data into files." msgstr "Ļauj importēt/eksportēt datus no/uz failiem." -#: libraries/messages.inc.php:688 server_privileges.php:501 +#: libraries/messages.inc.php:684 server_privileges.php:501 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Ļauj pievienot lietotājus un privilēģijas bez privilēģiju tabulu " "pārlādēšanas." -#: libraries/messages.inc.php:689 server_privileges.php:152 +#: libraries/messages.inc.php:685 server_privileges.php:152 #: server_privileges.php:477 msgid "Allows creating and dropping indexes." msgstr "Ļauj veidot un dzēst indeksus." -#: libraries/messages.inc.php:690 server_privileges.php:142 +#: libraries/messages.inc.php:686 server_privileges.php:142 #: server_privileges.php:403 server_privileges.php:465 msgid "Allows inserting and replacing data." msgstr "Ļauj ievietot un mainīt datus." -#: libraries/messages.inc.php:691 server_privileges.php:157 +#: libraries/messages.inc.php:687 server_privileges.php:157 #: server_privileges.php:510 msgid "Allows locking tables for the current thread." msgstr "Ļauj bloķēt tabulas tekošajai darbībai." -#: libraries/messages.inc.php:692 server_privileges.php:607 +#: libraries/messages.inc.php:688 server_privileges.php:607 #: server_privileges.php:609 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Ierobežo jauno konekciju skaitu, ko lietotājs var atvērt stundas laikā." -#: libraries/messages.inc.php:693 server_privileges.php:595 +#: libraries/messages.inc.php:689 server_privileges.php:595 #: server_privileges.php:597 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Ierobežo vaicājumu skaitu, ko lietotājs var mosūtīt uz serveri stundas laikā." -#: libraries/messages.inc.php:694 server_privileges.php:601 +#: libraries/messages.inc.php:690 server_privileges.php:601 #: server_privileges.php:603 msgid "" "Limits the number of commands that change any table or database the user may " @@ -4624,60 +4624,60 @@ msgstr "" "Ierobežo komandu skaitu, kas maina kas maina tabulas vai datubāzes, ko " "lietotājs var izpildīt stundas laikā." -#: libraries/messages.inc.php:695 server_privileges.php:613 +#: libraries/messages.inc.php:691 server_privileges.php:613 #: server_privileges.php:615 #, fuzzy msgid "Limits the number of simultaneous connections the user may have." msgstr "" "Ierobežo jauno konekciju skaitu, ko lietotājs var atvērt stundas laikā." -#: libraries/messages.inc.php:696 server_privileges.php:149 +#: libraries/messages.inc.php:692 server_privileges.php:149 #: server_privileges.php:505 msgid "Allows viewing processes of all users" msgstr "" -#: libraries/messages.inc.php:697 server_privileges.php:151 +#: libraries/messages.inc.php:693 server_privileges.php:151 #: server_privileges.php:409 server_privileges.php:511 msgid "Has no effect in this MySQL version." msgstr "Nedarbojas šajā MySQL versijā." -#: libraries/messages.inc.php:698 server_privileges.php:147 +#: libraries/messages.inc.php:694 server_privileges.php:147 #: server_privileges.php:506 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Ļauj prlādēt servera iestādījumus un iztukšot servera kešu." -#: libraries/messages.inc.php:699 server_privileges.php:159 +#: libraries/messages.inc.php:695 server_privileges.php:159 #: server_privileges.php:513 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Dod lietotājam tiesības jautāt, kur ir replikācijas oriģināli / kopijas." -#: libraries/messages.inc.php:700 server_privileges.php:158 +#: libraries/messages.inc.php:696 server_privileges.php:158 #: server_privileges.php:514 msgid "Needed for the replication slaves." msgstr "Nepieciešams replikāciju kopijām." -#: libraries/messages.inc.php:701 server_privileges.php:141 +#: libraries/messages.inc.php:697 server_privileges.php:141 #: server_privileges.php:400 server_privileges.php:464 msgid "Allows reading data." msgstr "Ļauj lasīt datus." -#: libraries/messages.inc.php:702 server_privileges.php:154 +#: libraries/messages.inc.php:698 server_privileges.php:154 #: server_privileges.php:508 msgid "Gives access to the complete list of databases." msgstr "Dod pieeju pilnam datubāzu sarakstam." -#: libraries/messages.inc.php:703 server_privileges.php:165 +#: libraries/messages.inc.php:699 server_privileges.php:165 #: server_privileges.php:167 server_privileges.php:480 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: libraries/messages.inc.php:704 server_privileges.php:148 +#: libraries/messages.inc.php:700 server_privileges.php:148 #: server_privileges.php:507 msgid "Allows shutting down the server." msgstr "Ļauj apstādināt serveri." -#: libraries/messages.inc.php:705 server_privileges.php:155 +#: libraries/messages.inc.php:701 server_privileges.php:155 #: server_privileges.php:504 msgid "" "Allows connecting, even if maximum number of connections is reached; " @@ -4688,57 +4688,57 @@ msgstr "" "Nepieciešams vairumam administratīvo operāciju, kā globālo mainīgo maiņa vai " "citu lietotāju procesu nogalināšana." -#: libraries/messages.inc.php:706 server_privileges.php:162 +#: libraries/messages.inc.php:702 server_privileges.php:162 #: server_privileges.php:496 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "Ļauj veidot un dzēst indeksus." -#: libraries/messages.inc.php:707 server_privileges.php:143 +#: libraries/messages.inc.php:703 server_privileges.php:143 #: server_privileges.php:406 server_privileges.php:466 msgid "Allows changing data." msgstr "Ļauj mainīt datus." -#: libraries/messages.inc.php:708 server_privileges.php:221 +#: libraries/messages.inc.php:704 server_privileges.php:221 msgid "No privileges." msgstr "Nav privilēģiju." -#: libraries/messages.inc.php:710 server_privileges.php:1296 +#: libraries/messages.inc.php:706 server_privileges.php:1296 msgid "The privileges were reloaded successfully." msgstr "Privilēģijas tika veiksmīgi pārlādētas." -#: libraries/messages.inc.php:712 libraries/server_links.inc.php:80 +#: libraries/messages.inc.php:708 libraries/server_links.inc.php:80 msgid "Processes" msgstr "Procesi" -#: libraries/messages.inc.php:714 main.php:187 +#: libraries/messages.inc.php:710 main.php:187 msgid "Protocol version" msgstr "" -#: libraries/messages.inc.php:715 +#: libraries/messages.inc.php:711 msgid "Put fields names in the first row" msgstr "Likt kolonnu nosaukumus pirmajā rindā" -#: libraries/messages.inc.php:720 server_synchronize.php:1003 +#: libraries/messages.inc.php:716 server_synchronize.php:1003 msgid "The following queries have been executed:" msgstr "" -#: libraries/messages.inc.php:721 server_status.php:251 +#: libraries/messages.inc.php:717 server_status.php:251 #, fuzzy msgid "Query cache" msgstr "Vaicājuma tips" -#: libraries/messages.inc.php:722 libraries/navigation_header.inc.php:80 +#: libraries/messages.inc.php:718 libraries/navigation_header.inc.php:80 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 setup/lib/messages.inc.php:122 msgid "Query window" msgstr "Vaicājuma logs" -#: libraries/messages.inc.php:725 querywindow.php:109 querywindow.php:217 +#: libraries/messages.inc.php:721 querywindow.php:109 querywindow.php:217 msgid "SQL history" msgstr "SQL vēsture" -#: libraries/messages.inc.php:726 server_status.php:490 +#: libraries/messages.inc.php:722 server_status.php:490 #, php-format msgid "" "Query statistics: Since its startup, %s queries have been sent to the " @@ -4747,137 +4747,137 @@ msgstr "" "Pieprasījumu statistika: %s pieprasījumi tika nosūtīti uz serveri " "kopš tā palaišanās brīža." -#: libraries/messages.inc.php:728 server_status.php:554 +#: libraries/messages.inc.php:724 server_status.php:554 msgid "Query type" msgstr "Vaicājuma tips" -#: libraries/messages.inc.php:729 libraries/sql_query_form.lib.php:381 +#: libraries/messages.inc.php:725 libraries/sql_query_form.lib.php:381 msgid "Do not overwrite this query from outside the window" msgstr "Nepārrakstīt šo vaicājumu ārpus šī loga" -#: libraries/messages.inc.php:732 tbl_operations.php:663 +#: libraries/messages.inc.php:728 tbl_operations.php:663 msgid "Rebuild" msgstr "" -#: libraries/messages.inc.php:733 server_status.php:394 +#: libraries/messages.inc.php:729 server_status.php:394 msgid "Received" msgstr "Saņemts" -#: libraries/messages.inc.php:734 pmd_pdf.php:89 +#: libraries/messages.inc.php:730 pmd_pdf.php:89 msgid "recommended" msgstr "" -#: libraries/messages.inc.php:736 tbl_operations.php:702 +#: libraries/messages.inc.php:732 tbl_operations.php:702 msgid "Check referential integrity:" msgstr "Pārbaudīt referenciālo integritāti:" -#: libraries/messages.inc.php:740 pdf_schema.php:1032 pdf_schema.php:1141 +#: libraries/messages.inc.php:736 pdf_schema.php:1032 pdf_schema.php:1141 msgid "Relational schema" msgstr "Relāciju shēma" -#: libraries/messages.inc.php:744 tbl_relation.php:399 +#: libraries/messages.inc.php:740 tbl_relation.php:399 msgid "Relations" msgstr "Relācijas" -#: libraries/messages.inc.php:745 tbl_structure.php:507 tbl_structure.php:509 +#: libraries/messages.inc.php:741 tbl_structure.php:507 tbl_structure.php:509 msgid "Relation view" msgstr "Relāciju pārskats" -#: libraries/messages.inc.php:746 server_privileges.php:1246 +#: libraries/messages.inc.php:742 server_privileges.php:1246 msgid "Reloading the privileges" msgstr "Pārlādējam privilēģijas" -#: libraries/messages.inc.php:747 navigation.php:66 navigation.php:67 +#: libraries/messages.inc.php:743 navigation.php:66 navigation.php:67 #: navigation.php:70 msgid "Reload navigation frame" msgstr "" -#: libraries/messages.inc.php:748 pmd_general.php:80 +#: libraries/messages.inc.php:744 pmd_general.php:80 msgid "Reload" msgstr "" -#: libraries/messages.inc.php:749 libraries/server_synchronize.lib.php:1345 +#: libraries/messages.inc.php:745 libraries/server_synchronize.lib.php:1345 #: libraries/server_synchronize.lib.php:1371 msgid "Remote server" msgstr "" -#: libraries/messages.inc.php:750 +#: libraries/messages.inc.php:746 msgid "Remove CRLF characters within fields" msgstr "" -#: libraries/messages.inc.php:751 tbl_operations.php:676 +#: libraries/messages.inc.php:747 tbl_operations.php:676 msgid "Remove partitioning" msgstr "" -#: libraries/messages.inc.php:752 server_privileges.php:1575 +#: libraries/messages.inc.php:748 server_privileges.php:1575 msgid "Remove selected users" msgstr "Dzēst izvēlētos lietotājus" -#: libraries/messages.inc.php:755 tbl_operations.php:338 +#: libraries/messages.inc.php:751 tbl_operations.php:338 msgid "Rename table to" msgstr "Pārsaukt tabulu uz" -#: libraries/messages.inc.php:756 view_operations.php:93 +#: libraries/messages.inc.php:752 view_operations.php:93 #, fuzzy msgid "Rename view to" msgstr "Pārsaukt tabulu uz" -#: libraries/messages.inc.php:757 tbl_operations.php:664 +#: libraries/messages.inc.php:753 tbl_operations.php:664 #, fuzzy msgid "Repair" msgstr "Restaurēt tabulu" -#: libraries/messages.inc.php:759 +#: libraries/messages.inc.php:755 msgid "Replace NULL by" msgstr "Aizvietot NULL ar" -#: libraries/messages.inc.php:760 +#: libraries/messages.inc.php:756 msgid "Replace table data with file" msgstr "Aizvietot tabulas datus ar datiem no faila" -#: libraries/messages.inc.php:761 server_replication.php:228 +#: libraries/messages.inc.php:757 server_replication.php:228 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: libraries/messages.inc.php:762 libraries/replication_gui.lib.php:236 +#: libraries/messages.inc.php:758 libraries/replication_gui.lib.php:236 #: server_replication.php:194 msgid "Add slave replication user" msgstr "" -#: libraries/messages.inc.php:763 server_replication.php:74 +#: libraries/messages.inc.php:759 server_replication.php:74 #, php-format msgid "Master server changed succesfully to %s" msgstr "" -#: libraries/messages.inc.php:764 server_replication.php:182 +#: libraries/messages.inc.php:760 server_replication.php:182 msgid "This server is configured as master in a replication process." msgstr "" -#: libraries/messages.inc.php:765 server_replication.php:322 +#: libraries/messages.inc.php:761 server_replication.php:322 msgid "Control slave:" msgstr "" -#: libraries/messages.inc.php:766 server_replication.php:65 +#: libraries/messages.inc.php:762 server_replication.php:65 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: libraries/messages.inc.php:767 server_replication.php:58 +#: libraries/messages.inc.php:763 server_replication.php:58 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: libraries/messages.inc.php:768 server_replication.php:221 +#: libraries/messages.inc.php:764 server_replication.php:221 msgid "Replicate all databases; Ignore:" msgstr "" -#: libraries/messages.inc.php:769 server_replication.php:222 +#: libraries/messages.inc.php:765 server_replication.php:222 msgid "Ignore all databases; Replicate:" msgstr "" -#: libraries/messages.inc.php:770 server_replication.php:218 +#: libraries/messages.inc.php:766 server_replication.php:218 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -4886,121 +4886,121 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: libraries/messages.inc.php:771 server_replication.php:217 +#: libraries/messages.inc.php:767 server_replication.php:217 msgid "Master configuration" msgstr "" -#: libraries/messages.inc.php:772 server_replication.php:181 +#: libraries/messages.inc.php:768 server_replication.php:181 #: server_replication.php:209 msgid "Master replication" msgstr "" -#: libraries/messages.inc.php:774 server_replication.php:230 +#: libraries/messages.inc.php:770 server_replication.php:230 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: libraries/messages.inc.php:775 server_replication.php:225 +#: libraries/messages.inc.php:771 server_replication.php:225 #, fuzzy msgid "Please select databases:" msgstr "Lūdzu izvēlieties datubāzi" -#: libraries/messages.inc.php:776 server_replication.php:210 +#: libraries/messages.inc.php:772 server_replication.php:210 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:188 +#: libraries/messages.inc.php:773 libraries/replication_gui.lib.php:188 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/messages.inc.php:778 server_replication.php:187 +#: libraries/messages.inc.php:774 server_replication.php:187 msgid "Show connected slaves" msgstr "" -#: libraries/messages.inc.php:779 libraries/messages.inc.php:885 +#: libraries/messages.inc.php:775 libraries/messages.inc.php:881 #: server_replication.php:184 server_status.php:281 msgid "Show master status" msgstr "" -#: libraries/messages.inc.php:780 server_replication.php:334 +#: libraries/messages.inc.php:776 server_replication.php:334 msgid "Skipping error(s) might lead into unsynchronized master and slave!" msgstr "" -#: libraries/messages.inc.php:781 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:51 #: server_replication.php:347 msgid "Change or reconfigure master server" msgstr "" -#: libraries/messages.inc.php:782 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:778 libraries/replication_gui.lib.php:51 msgid "Slave configuration" msgstr "" -#: libraries/messages.inc.php:783 server_replication.php:305 +#: libraries/messages.inc.php:779 server_replication.php:305 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: libraries/messages.inc.php:784 server_replication.php:332 +#: libraries/messages.inc.php:780 server_replication.php:332 msgid "Error management:" msgstr "" -#: libraries/messages.inc.php:785 server_replication.php:328 +#: libraries/messages.inc.php:781 server_replication.php:328 #, php-format msgid "IO Thread %s only" msgstr "" -#: libraries/messages.inc.php:786 server_replication.php:296 +#: libraries/messages.inc.php:782 server_replication.php:296 msgid "Slave IO Thread not running!" msgstr "" -#: libraries/messages.inc.php:787 server_replication.php:355 +#: libraries/messages.inc.php:783 server_replication.php:355 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/messages.inc.php:788 server_replication.php:326 +#: libraries/messages.inc.php:784 server_replication.php:326 msgid "Reset slave" msgstr "" -#: libraries/messages.inc.php:789 server_replication.php:308 +#: libraries/messages.inc.php:785 server_replication.php:308 msgid "See slave status table" msgstr "" -#: libraries/messages.inc.php:790 server_replication.php:336 +#: libraries/messages.inc.php:786 server_replication.php:336 msgid "Skip current error" msgstr "" -#: libraries/messages.inc.php:791 server_replication.php:340 +#: libraries/messages.inc.php:787 server_replication.php:340 msgid "errors." msgstr "" -#: libraries/messages.inc.php:792 server_replication.php:337 +#: libraries/messages.inc.php:788 server_replication.php:337 msgid "Skip next" msgstr "" -#: libraries/messages.inc.php:793 server_replication.php:248 +#: libraries/messages.inc.php:789 server_replication.php:248 msgid "Slave replication" msgstr "" -#: libraries/messages.inc.php:794 server_replication.php:293 +#: libraries/messages.inc.php:790 server_replication.php:293 msgid "Slave SQL Thread not running!" msgstr "" -#: libraries/messages.inc.php:795 server_replication.php:327 +#: libraries/messages.inc.php:791 server_replication.php:327 #, php-format msgid "SQL Thread %s only" msgstr "" -#: libraries/messages.inc.php:796 +#: libraries/messages.inc.php:792 #, php-format msgid "" "This MySQL server works as %s in replication process. For further " @@ -5008,159 +5008,159 @@ msgid "" "\"#replication\">replication section." msgstr "" -#: libraries/messages.inc.php:797 +#: libraries/messages.inc.php:793 msgid "Master status" msgstr "" -#: libraries/messages.inc.php:798 server_status.php:721 +#: libraries/messages.inc.php:794 server_status.php:721 msgid "Replication status" msgstr "" -#: libraries/messages.inc.php:799 +#: libraries/messages.inc.php:795 msgid "Slave status" msgstr "" -#: libraries/messages.inc.php:800 server_replication.php:311 +#: libraries/messages.inc.php:796 server_replication.php:311 msgid "Synchronize databases with master" msgstr "" -#: libraries/messages.inc.php:801 server_replication.php:71 +#: libraries/messages.inc.php:797 server_replication.php:71 msgid "Unable to change master" msgstr "" -#: libraries/messages.inc.php:802 server_replication.php:51 +#: libraries/messages.inc.php:798 server_replication.php:51 msgid "Unknown error" msgstr "" -#: libraries/messages.inc.php:803 main.php:163 pdf_pages.php:344 +#: libraries/messages.inc.php:799 main.php:163 pdf_pages.php:344 #: setup/lib/FormDisplay.tpl.php:216 tbl_change.php:1175 msgid "Reset" msgstr "Atcelt" -#: libraries/messages.inc.php:804 server_privileges.php:591 +#: libraries/messages.inc.php:800 server_privileges.php:591 msgid "Resource limits" msgstr "Resursu ierobežojumi" -#: libraries/messages.inc.php:805 tbl_change.php:1209 +#: libraries/messages.inc.php:801 tbl_change.php:1209 #, php-format msgid "Restart insertion with %s rows" msgstr "" -#: libraries/messages.inc.php:807 server_privileges.php:1578 +#: libraries/messages.inc.php:803 server_privileges.php:1578 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Atņemt visas aktīvās privilēģijas lietotājiem, un pēc tam dzēst tos." -#: libraries/messages.inc.php:808 server_privileges.php:1176 +#: libraries/messages.inc.php:804 server_privileges.php:1176 #, php-format msgid "You have revoked the privileges for %s" msgstr "Jūs atņēmāt privilēgijas lietotājam %s" -#: libraries/messages.inc.php:809 server_privileges.php:1333 +#: libraries/messages.inc.php:805 server_privileges.php:1333 msgid "Revoke" msgstr "Atsaukt" -#: libraries/messages.inc.php:810 libraries/mysql_charsets.lib.php:280 +#: libraries/messages.inc.php:806 libraries/mysql_charsets.lib.php:280 msgid "Romanian" msgstr "Rumāņu" -#: libraries/messages.inc.php:813 tbl_printview.php:404 tbl_structure.php:786 +#: libraries/messages.inc.php:809 tbl_printview.php:404 tbl_structure.php:786 msgid "Row length" msgstr "Rindas garums" -#: libraries/messages.inc.php:815 tbl_printview.php:414 tbl_structure.php:794 +#: libraries/messages.inc.php:811 tbl_printview.php:414 tbl_structure.php:794 msgid " Row size " msgstr " Rindas izmērs " -#: libraries/messages.inc.php:821 tbl_printview.php:366 tbl_structure.php:726 +#: libraries/messages.inc.php:817 tbl_printview.php:366 tbl_structure.php:726 msgid "Row Statistics" msgstr "Rindas statistika" -#: libraries/messages.inc.php:822 +#: libraries/messages.inc.php:818 #, php-format msgid "running on %s" msgstr "atrodas uz %s" -#: libraries/messages.inc.php:824 libraries/sql_query_form.lib.php:223 +#: libraries/messages.inc.php:820 libraries/sql_query_form.lib.php:223 #, fuzzy, php-format msgid "Run SQL query/queries on server %s" msgstr "Izpildīt SQL vaicājumu(s) uz datubāzes %s" -#: libraries/messages.inc.php:825 libraries/sql_query_form.lib.php:240 +#: libraries/messages.inc.php:821 libraries/sql_query_form.lib.php:240 #: libraries/sql_query_form.lib.php:265 #, php-format msgid "Run SQL query/queries on database %s" msgstr "Izpildīt SQL vaicājumu(s) uz datubāzes %s" -#: libraries/messages.inc.php:826 libraries/mysql_charsets.lib.php:337 +#: libraries/messages.inc.php:822 libraries/mysql_charsets.lib.php:337 msgid "Russian" msgstr "Krievu" -#: libraries/messages.inc.php:829 pmd_general.php:68 +#: libraries/messages.inc.php:825 pmd_general.php:68 msgid "Save position" msgstr "" -#: libraries/messages.inc.php:830 libraries/tbl_properties.inc.php:776 +#: libraries/messages.inc.php:826 libraries/tbl_properties.inc.php:776 #: pdf_pages.php:484 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:214 setup/lib/FormDisplay.tpl.php:215 #: tbl_change.php:1126 tbl_indexes.php:248 tbl_relation.php:566 msgid "Save" msgstr "Saglabāt" -#: libraries/messages.inc.php:831 +#: libraries/messages.inc.php:827 msgid "The scale factor is too small to fit the schema on one page" msgstr "Mērogošanas faktors ir pārāk mazs, lai shēma ietilptu vienā lapā" -#: libraries/messages.inc.php:843 main.php:298 +#: libraries/messages.inc.php:839 main.php:298 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "Konfigurācijas fails tagad prasa slepeno paroli (blowfish_secret)." -#: libraries/messages.inc.php:844 navigation.php:353 navigation.php:516 +#: libraries/messages.inc.php:840 navigation.php:353 navigation.php:516 msgid "Please select a database" msgstr "Lūdzu izvēlieties datubāzi" -#: libraries/messages.inc.php:846 server_binlog.php:120 +#: libraries/messages.inc.php:842 server_binlog.php:120 msgid "Select binary log to view" msgstr "Izvēlieties bināro log-failu apskatei" -#: libraries/messages.inc.php:847 tbl_select.php:270 +#: libraries/messages.inc.php:843 tbl_select.php:270 msgid "Select fields (at least one):" msgstr "Izvēlieties laukus (kaut vienu):" -#: libraries/messages.inc.php:851 pdf_pages.php:320 +#: libraries/messages.inc.php:847 pdf_pages.php:320 msgid "Select Tables" msgstr "Izvēlieties tabulas" -#: libraries/messages.inc.php:853 server_status.php:404 +#: libraries/messages.inc.php:849 server_status.php:404 msgid "Sent" msgstr "Nosūtīts" -#: libraries/messages.inc.php:857 libraries/select_server.lib.php:45 +#: libraries/messages.inc.php:853 libraries/select_server.lib.php:45 #: setup/frames/index.inc.php:97 setup/lib/messages.inc.php:115 #, fuzzy msgid "Servers" msgstr "Serveris" -#: libraries/messages.inc.php:858 server_status.php:255 +#: libraries/messages.inc.php:854 server_status.php:255 #, fuzzy msgid "Delayed inserts" msgstr "Lietot aizturētos INSERT" -#: libraries/messages.inc.php:859 server_status.php:46 +#: libraries/messages.inc.php:855 server_status.php:46 msgid "Runtime Information" msgstr "Izpildes laika informācija" -#: libraries/messages.inc.php:860 server_status.php:350 +#: libraries/messages.inc.php:856 server_status.php:350 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Šis MySQL serveris strādā %s. Tas tika palaists %s." -#: libraries/messages.inc.php:861 libraries/server_links.inc.php:53 +#: libraries/messages.inc.php:857 libraries/server_links.inc.php:53 #: server_engines.php:112 server_engines.php:116 server_status.php:304 #: test/theme.php:105 msgid "Variables" msgstr "Mainīgie" -#: libraries/messages.inc.php:862 server_status.php:383 +#: libraries/messages.inc.php:858 server_status.php:383 msgid "" "Server traffic: These tables show the network traffic statistics of " "this MySQL server since its startup." @@ -5168,11 +5168,11 @@ msgstr "" "Servera trafiks: Šīs tabulas parāda šī MySQL servera tīkla trafika " "statistiku kopš tā palaišanas." -#: libraries/messages.inc.php:863 server_variables.php:35 +#: libraries/messages.inc.php:859 server_variables.php:35 msgid "Server variables and settings" msgstr "Servera mainīgie un konfigurācija" -#: libraries/messages.inc.php:865 main.php:290 +#: libraries/messages.inc.php:861 main.php:290 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -5180,17 +5180,17 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: libraries/messages.inc.php:866 +#: libraries/messages.inc.php:862 msgid "" "Cannot start session without errors, please check errors given in your PHP " "and/or webserver log file and configure your PHP installation properly." msgstr "" -#: libraries/messages.inc.php:867 server_variables.php:55 +#: libraries/messages.inc.php:863 server_variables.php:55 msgid "Session value" msgstr "Sesijas vērtība" -#: libraries/messages.inc.php:868 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:864 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 " @@ -5202,56 +5202,56 @@ msgstr "" "(\\) vai vienkāršo pēdiņu (') kādā no šīm vērtībām, lieciet tās priekšā " "atpakaļējo slīpsvītru (piemēram, '\\\\xyz' vai 'a\\'b')." -#: libraries/messages.inc.php:876 server_binlog.php:192 server_binlog.php:195 +#: libraries/messages.inc.php:872 server_binlog.php:192 server_binlog.php:195 #: server_processlist.php:49 server_processlist.php:51 msgid "Show Full Queries" msgstr "Rādīt pilnos vaicājumus" -#: libraries/messages.inc.php:878 pmd_general.php:64 +#: libraries/messages.inc.php:874 pmd_general.php:64 msgid "Show/Hide left menu" msgstr "" -#: libraries/messages.inc.php:880 sql.php:513 +#: libraries/messages.inc.php:876 sql.php:513 msgid "Showing as PHP code" msgstr "" -#: libraries/messages.inc.php:882 sql.php:516 tbl_replace.php:360 +#: libraries/messages.inc.php:878 sql.php:516 tbl_replace.php:360 msgid "Showing SQL query" msgstr "" -#: libraries/messages.inc.php:883 tbl_change.php:1132 +#: libraries/messages.inc.php:879 tbl_change.php:1132 msgid "Show insert query" msgstr "" -#: libraries/messages.inc.php:886 server_status.php:273 +#: libraries/messages.inc.php:882 server_status.php:273 #, fuzzy msgid "Show open tables" msgstr "Rādīt tabulas" -#: libraries/messages.inc.php:887 main.php:219 +#: libraries/messages.inc.php:883 main.php:219 msgid "Show PHP information" msgstr "Parādīt PHP informāciju" -#: libraries/messages.inc.php:889 server_status.php:278 +#: libraries/messages.inc.php:885 server_status.php:278 msgid "Show slave hosts" msgstr "" -#: libraries/messages.inc.php:890 server_status.php:284 +#: libraries/messages.inc.php:886 server_status.php:284 msgid "Show slave status" msgstr "" -#: libraries/messages.inc.php:891 +#: libraries/messages.inc.php:887 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/messages.inc.php:892 +#: libraries/messages.inc.php:888 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/messages.inc.php:893 +#: libraries/messages.inc.php:889 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -5259,78 +5259,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/messages.inc.php:894 +#: libraries/messages.inc.php:890 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/messages.inc.php:895 +#: libraries/messages.inc.php:891 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/messages.inc.php:896 +#: libraries/messages.inc.php:892 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/messages.inc.php:897 +#: libraries/messages.inc.php:893 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/messages.inc.php:898 +#: libraries/messages.inc.php:894 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/messages.inc.php:899 +#: libraries/messages.inc.php:895 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/messages.inc.php:900 +#: libraries/messages.inc.php:896 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/messages.inc.php:901 +#: libraries/messages.inc.php:897 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/messages.inc.php:902 +#: libraries/messages.inc.php:898 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/messages.inc.php:903 +#: libraries/messages.inc.php:899 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/messages.inc.php:904 +#: libraries/messages.inc.php:900 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: libraries/messages.inc.php:905 +#: libraries/messages.inc.php:901 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/messages.inc.php:906 +#: libraries/messages.inc.php:902 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: libraries/messages.inc.php:907 +#: libraries/messages.inc.php:903 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -5338,7 +5338,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/messages.inc.php:908 +#: libraries/messages.inc.php:904 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -5346,42 +5346,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/messages.inc.php:909 +#: libraries/messages.inc.php:905 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/messages.inc.php:910 +#: libraries/messages.inc.php:906 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/messages.inc.php:911 +#: libraries/messages.inc.php:907 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/messages.inc.php:912 +#: libraries/messages.inc.php:908 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/messages.inc.php:913 +#: libraries/messages.inc.php:909 msgid "The number of pages currently dirty." msgstr "" -#: libraries/messages.inc.php:914 +#: libraries/messages.inc.php:910 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/messages.inc.php:915 +#: libraries/messages.inc.php:911 msgid "The number of free pages." msgstr "" -#: libraries/messages.inc.php:916 +#: libraries/messages.inc.php:912 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/messages.inc.php:917 +#: libraries/messages.inc.php:913 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -5389,33 +5389,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/messages.inc.php:918 +#: libraries/messages.inc.php:914 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/messages.inc.php:919 +#: libraries/messages.inc.php:915 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/messages.inc.php:920 +#: libraries/messages.inc.php:916 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/messages.inc.php:921 +#: libraries/messages.inc.php:917 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/messages.inc.php:922 +#: libraries/messages.inc.php:918 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/messages.inc.php:923 +#: libraries/messages.inc.php:919 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -5424,218 +5424,218 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/messages.inc.php:924 +#: libraries/messages.inc.php:920 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/messages.inc.php:925 +#: libraries/messages.inc.php:921 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/messages.inc.php:926 +#: libraries/messages.inc.php:922 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/messages.inc.php:927 +#: libraries/messages.inc.php:923 msgid "The current number of pending reads." msgstr "" -#: libraries/messages.inc.php:928 +#: libraries/messages.inc.php:924 msgid "The current number of pending writes." msgstr "" -#: libraries/messages.inc.php:929 +#: libraries/messages.inc.php:925 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/messages.inc.php:930 +#: libraries/messages.inc.php:926 msgid "The total number of data reads." msgstr "" -#: libraries/messages.inc.php:931 +#: libraries/messages.inc.php:927 msgid "The total number of data writes." msgstr "" -#: libraries/messages.inc.php:932 +#: libraries/messages.inc.php:928 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/messages.inc.php:933 +#: libraries/messages.inc.php:929 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/messages.inc.php:934 +#: libraries/messages.inc.php:930 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/messages.inc.php:935 +#: libraries/messages.inc.php:931 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/messages.inc.php:936 +#: libraries/messages.inc.php:932 msgid "The number of log write requests." msgstr "" -#: libraries/messages.inc.php:937 +#: libraries/messages.inc.php:933 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/messages.inc.php:938 +#: libraries/messages.inc.php:934 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/messages.inc.php:939 +#: libraries/messages.inc.php:935 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/messages.inc.php:940 +#: libraries/messages.inc.php:936 msgid "Pending log file writes." msgstr "" -#: libraries/messages.inc.php:941 +#: libraries/messages.inc.php:937 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/messages.inc.php:942 +#: libraries/messages.inc.php:938 msgid "The number of pages created." msgstr "" -#: libraries/messages.inc.php:943 +#: libraries/messages.inc.php:939 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: libraries/messages.inc.php:944 +#: libraries/messages.inc.php:940 msgid "The number of pages read." msgstr "" -#: libraries/messages.inc.php:945 +#: libraries/messages.inc.php:941 msgid "The number of pages written." msgstr "" -#: libraries/messages.inc.php:946 +#: libraries/messages.inc.php:942 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/messages.inc.php:947 +#: libraries/messages.inc.php:943 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/messages.inc.php:948 +#: libraries/messages.inc.php:944 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/messages.inc.php:949 +#: libraries/messages.inc.php:945 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/messages.inc.php:950 +#: libraries/messages.inc.php:946 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/messages.inc.php:951 +#: libraries/messages.inc.php:947 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/messages.inc.php:952 +#: libraries/messages.inc.php:948 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/messages.inc.php:953 +#: libraries/messages.inc.php:949 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/messages.inc.php:954 +#: libraries/messages.inc.php:950 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/messages.inc.php:955 +#: libraries/messages.inc.php:951 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/messages.inc.php:956 +#: libraries/messages.inc.php:952 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: libraries/messages.inc.php:957 +#: libraries/messages.inc.php:953 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/messages.inc.php:958 +#: libraries/messages.inc.php:954 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/messages.inc.php:959 +#: libraries/messages.inc.php:955 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/messages.inc.php:960 +#: libraries/messages.inc.php:956 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/messages.inc.php:961 +#: libraries/messages.inc.php:957 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/messages.inc.php:962 +#: libraries/messages.inc.php:958 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/messages.inc.php:963 +#: libraries/messages.inc.php:959 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/messages.inc.php:964 +#: libraries/messages.inc.php:960 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/messages.inc.php:965 +#: libraries/messages.inc.php:961 msgid "The number of files that are open." msgstr "" -#: libraries/messages.inc.php:966 +#: libraries/messages.inc.php:962 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/messages.inc.php:967 +#: libraries/messages.inc.php:963 msgid "The number of tables that are open." msgstr "" -#: libraries/messages.inc.php:968 +#: libraries/messages.inc.php:964 msgid "The number of free memory blocks in query cache." msgstr "" -#: libraries/messages.inc.php:969 +#: libraries/messages.inc.php:965 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/messages.inc.php:970 +#: libraries/messages.inc.php:966 msgid "The number of cache hits." msgstr "" -#: libraries/messages.inc.php:971 +#: libraries/messages.inc.php:967 msgid "The number of queries added to the cache." msgstr "" -#: libraries/messages.inc.php:972 +#: libraries/messages.inc.php:968 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -5643,105 +5643,105 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/messages.inc.php:973 +#: libraries/messages.inc.php:969 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/messages.inc.php:974 +#: libraries/messages.inc.php:970 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/messages.inc.php:975 +#: libraries/messages.inc.php:971 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/messages.inc.php:976 +#: libraries/messages.inc.php:972 #, fuzzy msgctxt "$strShowStatusReset" msgid "Reset" msgstr "Atcelt" -#: libraries/messages.inc.php:977 +#: libraries/messages.inc.php:973 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/messages.inc.php:978 +#: libraries/messages.inc.php:974 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: libraries/messages.inc.php:979 +#: libraries/messages.inc.php:975 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/messages.inc.php:980 +#: libraries/messages.inc.php:976 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: libraries/messages.inc.php:981 +#: libraries/messages.inc.php:977 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/messages.inc.php:982 +#: libraries/messages.inc.php:978 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/messages.inc.php:983 +#: libraries/messages.inc.php:979 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/messages.inc.php:984 +#: libraries/messages.inc.php:980 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/messages.inc.php:985 +#: libraries/messages.inc.php:981 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/messages.inc.php:986 +#: libraries/messages.inc.php:982 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/messages.inc.php:987 +#: libraries/messages.inc.php:983 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/messages.inc.php:988 +#: libraries/messages.inc.php:984 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/messages.inc.php:989 +#: libraries/messages.inc.php:985 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/messages.inc.php:990 +#: libraries/messages.inc.php:986 msgid "The number of sorted rows." msgstr "" -#: libraries/messages.inc.php:991 +#: libraries/messages.inc.php:987 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/messages.inc.php:992 +#: libraries/messages.inc.php:988 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/messages.inc.php:993 +#: libraries/messages.inc.php:989 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -5749,18 +5749,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/messages.inc.php:994 +#: libraries/messages.inc.php:990 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/messages.inc.php:995 +#: libraries/messages.inc.php:991 msgid "The number of currently open connections." msgstr "" -#: libraries/messages.inc.php:996 +#: libraries/messages.inc.php:992 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -5768,74 +5768,74 @@ msgid "" "implementation.)" msgstr "" -#: libraries/messages.inc.php:997 +#: libraries/messages.inc.php:993 msgid "The number of threads that are not sleeping." msgstr "" -#: libraries/messages.inc.php:999 tbl_printview.php:75 +#: libraries/messages.inc.php:995 tbl_printview.php:75 msgid "Show tables" msgstr "Rādīt tabulas" -#: libraries/messages.inc.php:1000 libraries/sql_query_form.lib.php:396 +#: libraries/messages.inc.php:996 libraries/sql_query_form.lib.php:396 msgid " Show this query here again " msgstr " Rādīt šo vaicājumu šeit atkal " -#: libraries/messages.inc.php:1001 libraries/mysql_charsets.lib.php:217 +#: libraries/messages.inc.php:997 libraries/mysql_charsets.lib.php:217 #: libraries/mysql_charsets.lib.php:342 msgid "Simplified Chinese" msgstr "Vienkāršota ķīniešu" -#: libraries/messages.inc.php:1002 tbl_operations.php:258 +#: libraries/messages.inc.php:998 tbl_operations.php:258 msgid "(singly)" msgstr "(atsevišķi)" -#: libraries/messages.inc.php:1005 libraries/replication_gui.lib.php:52 +#: libraries/messages.inc.php:1001 libraries/replication_gui.lib.php:52 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" msgstr "" -#: libraries/messages.inc.php:1006 libraries/mysql_charsets.lib.php:283 +#: libraries/messages.inc.php:1002 libraries/mysql_charsets.lib.php:283 msgid "Slovak" msgstr "Slovāku" -#: libraries/messages.inc.php:1007 libraries/mysql_charsets.lib.php:286 +#: libraries/messages.inc.php:1003 libraries/mysql_charsets.lib.php:286 msgid "Slovenian" msgstr "Slovēņu" -#: libraries/messages.inc.php:1008 pmd_general.php:95 +#: libraries/messages.inc.php:1004 pmd_general.php:95 msgid "Small/Big All" msgstr "" -#: libraries/messages.inc.php:1009 pmd_general.php:91 +#: libraries/messages.inc.php:1005 pmd_general.php:91 msgid "Snap to grid" msgstr "" -#: libraries/messages.inc.php:1011 server_synchronize.php:1167 +#: libraries/messages.inc.php:1007 server_synchronize.php:1167 msgid "Socket" msgstr "" -#: libraries/messages.inc.php:1013 server_status.php:259 +#: libraries/messages.inc.php:1009 server_status.php:259 msgid "Sorting" msgstr "" -#: libraries/messages.inc.php:1015 tbl_printview.php:310 tbl_structure.php:657 +#: libraries/messages.inc.php:1011 tbl_printview.php:310 tbl_structure.php:657 msgid "Space usage" msgstr "Diska vietas lietošana" -#: libraries/messages.inc.php:1016 libraries/mysql_charsets.lib.php:289 +#: libraries/messages.inc.php:1012 libraries/mysql_charsets.lib.php:289 msgid "Spanish" msgstr "Spāņu" -#: libraries/messages.inc.php:1019 +#: libraries/messages.inc.php:1015 msgid "Export type" msgstr "Eksporta veids" -#: libraries/messages.inc.php:1020 +#: libraries/messages.inc.php:1016 msgid "Export time in UTC" msgstr "" -#: libraries/messages.inc.php:1021 libraries/sqlparser.lib.php:173 +#: libraries/messages.inc.php:1017 libraries/sqlparser.lib.php:173 msgid "" "There is a chance that you may have found a bug in the SQL parser. Please " "examine your query closely, and check that the quotes are correct and not " @@ -5858,7 +5858,7 @@ msgstr "" "problēmas, un atsūtiet mums ziņojumu par kļūdu, iekļaujot tajā datus no " "IZGRIEZT sekcijas zemāk:" -#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:137 +#: libraries/messages.inc.php:1018 libraries/sqlparser.lib.php:137 msgid "" "There seems to be an error in your SQL query. The MySQL server error output " "below, if there is any, may also help you in diagnosing the problem" @@ -5866,418 +5866,418 @@ msgstr "" "Izkatās, ka Jūsu SQL vaicajumā ir kļūda. MySQL servera kļūdas pazinojums " "zemāk, ja tāds ir, var arī palīdzet Jums diagnosticēt problēmu." -#: libraries/messages.inc.php:1026 libraries/sqlparser.lib.php:495 +#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:495 msgid "Invalid Identifer" msgstr "Nederīgs identifikators" -#: libraries/messages.inc.php:1027 libraries/sqlparser.lib.php:344 +#: libraries/messages.inc.php:1023 libraries/sqlparser.lib.php:344 msgid "Unclosed quote" msgstr "Neaizvērtas pēdiņas" -#: libraries/messages.inc.php:1028 libraries/sqlparser.lib.php:612 +#: libraries/messages.inc.php:1024 libraries/sqlparser.lib.php:612 msgid "Unknown Punctuation String" msgstr "Nezināmā punktuācijas zīme" -#: libraries/messages.inc.php:1030 server_replication.php:327 +#: libraries/messages.inc.php:1026 server_replication.php:327 #: server_replication.php:328 #, fuzzy msgid "Start" msgstr "S" -#: libraries/messages.inc.php:1033 tbl_printview.php:369 tbl_structure.php:729 +#: libraries/messages.inc.php:1029 tbl_printview.php:369 tbl_structure.php:729 msgid "Statements" msgstr "Parametrs" -#: libraries/messages.inc.php:1034 tbl_printview.php:380 tbl_structure.php:741 +#: libraries/messages.inc.php:1030 tbl_printview.php:380 tbl_structure.php:741 msgid "static" msgstr "" -#: libraries/messages.inc.php:1035 server_status.php:388 +#: libraries/messages.inc.php:1031 server_status.php:388 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: libraries/messages.inc.php:1038 server_replication.php:327 +#: libraries/messages.inc.php:1034 server_replication.php:327 #: server_replication.php:328 msgid "Stop" msgstr "" -#: libraries/messages.inc.php:1039 server_engines.php:49 +#: libraries/messages.inc.php:1035 server_engines.php:49 msgid "Storage Engines" msgstr "" -#: libraries/messages.inc.php:1040 libraries/tbl_properties.inc.php:726 +#: libraries/messages.inc.php:1036 libraries/tbl_properties.inc.php:726 #: server_engines.php:58 tbl_operations.php:353 msgid "Storage Engine" msgstr "" -#: libraries/messages.inc.php:1042 +#: libraries/messages.inc.php:1038 msgid "CSV for MS Excel" msgstr "CSV dati MS Excel formātā" -#: libraries/messages.inc.php:1044 tbl_structure.php:516 tbl_structure.php:518 +#: libraries/messages.inc.php:1040 tbl_structure.php:516 tbl_structure.php:518 msgid "Propose table structure" msgstr "Ieteikt tabulas sruktūru" -#: libraries/messages.inc.php:1045 server_synchronize.php:424 +#: libraries/messages.inc.php:1041 server_synchronize.php:424 #: server_synchronize.php:867 msgid "Structure Difference" msgstr "" -#: libraries/messages.inc.php:1049 server_synchronize.php:265 +#: libraries/messages.inc.php:1045 server_synchronize.php:265 msgid "Structure Synchronization" msgstr "" -#: libraries/messages.inc.php:1050 libraries/sql_query_form.lib.php:462 +#: libraries/messages.inc.php:1046 libraries/sql_query_form.lib.php:462 msgid "Submit" msgstr "Nosūtīt" -#: libraries/messages.inc.php:1052 main.php:358 +#: libraries/messages.inc.php:1048 main.php:358 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " "issues." msgstr "" -#: libraries/messages.inc.php:1054 libraries/mysql_charsets.lib.php:295 +#: libraries/messages.inc.php:1050 libraries/mysql_charsets.lib.php:295 #: libraries/mysql_charsets.lib.php:392 msgid "Swedish" msgstr "Zviedru" -#: libraries/messages.inc.php:1060 tbl_operations.php:556 +#: libraries/messages.inc.php:1056 tbl_operations.php:556 msgid "Switch to copied table" msgstr "Pārslēgties uz nokopēto tabulu" -#: libraries/messages.inc.php:1061 server_synchronize.php:1213 +#: libraries/messages.inc.php:1057 server_synchronize.php:1213 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." msgstr "" -#: libraries/messages.inc.php:1062 server_synchronize.php:451 +#: libraries/messages.inc.php:1058 server_synchronize.php:451 #: server_synchronize.php:896 msgid "Synchronize Databases" msgstr "" -#: libraries/messages.inc.php:1063 libraries/server_links.inc.php:92 +#: libraries/messages.inc.php:1059 libraries/server_links.inc.php:92 #: server_synchronize.php:1092 server_synchronize.php:1100 msgid "Synchronize" msgstr "" -#: libraries/messages.inc.php:1065 server_synchronize.php:430 +#: libraries/messages.inc.php:1061 server_synchronize.php:430 #: server_synchronize.php:873 msgid "Add column(s)" msgstr "" -#: libraries/messages.inc.php:1066 tbl_create.php:62 +#: libraries/messages.inc.php:1062 tbl_create.php:62 #, fuzzy, php-format msgid "Table %s already exists!" msgstr "Lietotājs %s jau eksistē!" -#: libraries/messages.inc.php:1067 server_synchronize.php:432 +#: libraries/messages.inc.php:1063 server_synchronize.php:432 #: server_synchronize.php:875 msgid "Alter column(s)" msgstr "" -#: libraries/messages.inc.php:1068 tbl_addfield.php:189 tbl_alter.php:103 +#: libraries/messages.inc.php:1064 tbl_addfield.php:189 tbl_alter.php:103 #: tbl_indexes.php:98 #, fuzzy, php-format msgid "Table %1$s has been altered successfully" msgstr "Izvēlētie lietotāji tika veiksmīgi dzēsti." -#: libraries/messages.inc.php:1069 server_synchronize.php:434 +#: libraries/messages.inc.php:1065 server_synchronize.php:434 #: server_synchronize.php:877 msgid "Apply index(s)" msgstr "" -#: libraries/messages.inc.php:1071 server_synchronize.php:446 +#: libraries/messages.inc.php:1067 server_synchronize.php:446 #: server_synchronize.php:890 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: libraries/messages.inc.php:1072 tbl_move_copy.php:82 +#: libraries/messages.inc.php:1068 tbl_move_copy.php:82 msgid "The table name is empty!" msgstr "Tabulas nosaukums nav norādīts!" -#: libraries/messages.inc.php:1073 tbl_create.php:249 +#: libraries/messages.inc.php:1069 tbl_create.php:249 #, fuzzy, php-format msgid "Table %1$s has been created." msgstr "Tabula %s tika izdzēsta" -#: libraries/messages.inc.php:1076 tbl_operations.php:628 +#: libraries/messages.inc.php:1072 tbl_operations.php:628 #, php-format msgid "Table %s has been flushed" msgstr "Tabula %s tika atsvaidzināta" -#: libraries/messages.inc.php:1077 server_synchronize.php:436 +#: libraries/messages.inc.php:1073 server_synchronize.php:436 #: server_synchronize.php:879 msgid "Insert row(s)" msgstr "" -#: libraries/messages.inc.php:1078 libraries/tbl_links.inc.php:107 +#: libraries/messages.inc.php:1074 libraries/tbl_links.inc.php:107 #: libraries/tbl_links.inc.php:140 libraries/tbl_links.inc.php:141 msgid "Table seems to be empty!" msgstr "" -#: libraries/messages.inc.php:1079 tbl_operations.php:568 +#: libraries/messages.inc.php:1075 tbl_operations.php:568 msgid "Table maintenance" msgstr "Tabulas apkalpošana" -#: libraries/messages.inc.php:1080 libraries/tbl_properties.inc.php:618 +#: libraries/messages.inc.php:1076 libraries/tbl_properties.inc.php:618 #: server_synchronize.php:428 server_synchronize.php:871 msgid "Table name" msgstr "" -#: libraries/messages.inc.php:1081 pdf_schema.php:1116 +#: libraries/messages.inc.php:1077 pdf_schema.php:1116 msgid "Table of contents" msgstr "Satura rādītājs" -#: libraries/messages.inc.php:1082 tbl_operations.php:334 +#: libraries/messages.inc.php:1078 tbl_operations.php:334 msgid "Table options" msgstr "Tabulas opcijas" -#: libraries/messages.inc.php:1083 server_synchronize.php:431 +#: libraries/messages.inc.php:1079 server_synchronize.php:431 #: server_synchronize.php:874 msgid "Remove column(s)" msgstr "" -#: libraries/messages.inc.php:1084 server_synchronize.php:433 +#: libraries/messages.inc.php:1080 server_synchronize.php:433 #: server_synchronize.php:876 msgid "Remove index(s)" msgstr "" -#: libraries/messages.inc.php:1088 server_synchronize.php:435 +#: libraries/messages.inc.php:1084 server_synchronize.php:435 #: server_synchronize.php:878 msgid "Update row(s)" msgstr "" -#: libraries/messages.inc.php:1090 server_synchronize.php:942 +#: libraries/messages.inc.php:1086 server_synchronize.php:942 msgid "Target database has been synchronized with source database" msgstr "" -#: libraries/messages.inc.php:1091 server_privileges.php:392 +#: libraries/messages.inc.php:1087 server_privileges.php:392 #: server_privileges.php:527 server_privileges.php:1679 #: server_privileges.php:1685 msgid "Table-specific privileges" msgstr "Tabulu specifiskās privilēģijas" -#: libraries/messages.inc.php:1092 server_status.php:254 +#: libraries/messages.inc.php:1088 server_status.php:254 msgid "Temporary data" msgstr "" -#: libraries/messages.inc.php:1093 tbl_change.php:728 +#: libraries/messages.inc.php:1089 tbl_change.php:728 msgid " Because of its length,
this field might not be editable " msgstr " Sava garuma dēļ,
šis lauks var būt nerediģējams " -#: libraries/messages.inc.php:1094 +#: libraries/messages.inc.php:1090 msgid "Texy! text" msgstr "" -#: libraries/messages.inc.php:1095 libraries/mysql_charsets.lib.php:298 +#: libraries/messages.inc.php:1091 libraries/mysql_charsets.lib.php:298 #: libraries/mysql_charsets.lib.php:395 msgid "Thai" msgstr "Taizemiešu" -#: libraries/messages.inc.php:1102 libraries/replication_gui.lib.php:308 +#: libraries/messages.inc.php:1098 libraries/replication_gui.lib.php:308 #: server_privileges.php:734 msgid "This Host" msgstr "Šis hosts" -#: libraries/messages.inc.php:1103 server_status.php:252 +#: libraries/messages.inc.php:1099 server_status.php:252 msgid "Threads" msgstr "" -#: libraries/messages.inc.php:1104 server_processlist.php:22 +#: libraries/messages.inc.php:1100 server_processlist.php:22 #, php-format msgid "Thread %s was successfully killed." msgstr "Process %s tika veiksmīgi nogalināts." -#: libraries/messages.inc.php:1106 +#: libraries/messages.inc.php:1102 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." msgstr "" -#: libraries/messages.inc.php:1109 pmd_pdf.php:94 +#: libraries/messages.inc.php:1105 pmd_pdf.php:94 msgid "to/from page" msgstr "" -#: libraries/messages.inc.php:1110 pdf_pages.php:343 +#: libraries/messages.inc.php:1106 pdf_pages.php:343 msgid "Toggle scratchboard" msgstr "parādīt/noslēpt piezīmju tafeli" -#: libraries/messages.inc.php:1111 pmd_general.php:99 +#: libraries/messages.inc.php:1107 pmd_general.php:99 msgid "Toggle small/big" msgstr "" -#: libraries/messages.inc.php:1112 pmd_help.php:27 +#: libraries/messages.inc.php:1108 pmd_help.php:27 msgid "To select relation, click :" msgstr "" -#: libraries/messages.inc.php:1115 libraries/tbl_links.inc.php:149 +#: libraries/messages.inc.php:1111 libraries/tbl_links.inc.php:149 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" -#: libraries/messages.inc.php:1116 tbl_tracking.php:655 +#: libraries/messages.inc.php:1112 tbl_tracking.php:655 msgid "Activate now" msgstr "" -#: libraries/messages.inc.php:1117 tbl_tracking.php:653 +#: libraries/messages.inc.php:1113 tbl_tracking.php:653 #, php-format msgid "Activate tracking for %s.%s" msgstr "" -#: libraries/messages.inc.php:1118 tbl_tracking.php:221 +#: libraries/messages.inc.php:1114 tbl_tracking.php:221 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/messages.inc.php:1119 tbl_tracking.php:688 +#: libraries/messages.inc.php:1115 tbl_tracking.php:688 #, fuzzy msgid "Create version" msgstr "Servera versija" -#: libraries/messages.inc.php:1120 tbl_tracking.php:668 +#: libraries/messages.inc.php:1116 tbl_tracking.php:668 #, php-format msgid "Create version %s of %s.%s" msgstr "" -#: libraries/messages.inc.php:1122 tbl_tracking.php:412 +#: libraries/messages.inc.php:1118 tbl_tracking.php:412 msgid "Data definition statement" msgstr "" -#: libraries/messages.inc.php:1123 tbl_tracking.php:463 +#: libraries/messages.inc.php:1119 tbl_tracking.php:463 msgid "Data manipulation statement" msgstr "" -#: libraries/messages.inc.php:1124 tbl_tracking.php:410 tbl_tracking.php:461 +#: libraries/messages.inc.php:1120 tbl_tracking.php:410 tbl_tracking.php:461 #, fuzzy msgid "Date" msgstr "Dati" -#: libraries/messages.inc.php:1125 tbl_tracking.php:642 +#: libraries/messages.inc.php:1121 tbl_tracking.php:642 msgid "Deactivate now" msgstr "" -#: libraries/messages.inc.php:1126 tbl_tracking.php:640 +#: libraries/messages.inc.php:1122 tbl_tracking.php:640 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "" -#: libraries/messages.inc.php:1127 tbl_tracking.php:521 +#: libraries/messages.inc.php:1123 tbl_tracking.php:521 #, php-format msgid "Export as %s" msgstr "" -#: libraries/messages.inc.php:1130 tbl_tracking.php:251 tbl_tracking.php:379 +#: libraries/messages.inc.php:1126 tbl_tracking.php:251 tbl_tracking.php:379 msgid "Close" msgstr "" -#: libraries/messages.inc.php:1131 tbl_tracking.php:114 +#: libraries/messages.inc.php:1127 tbl_tracking.php:114 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/messages.inc.php:1133 tbl_tracking.php:397 tbl_tracking.php:504 +#: libraries/messages.inc.php:1129 tbl_tracking.php:397 tbl_tracking.php:504 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "" -#: libraries/messages.inc.php:1134 tbl_tracking.php:561 +#: libraries/messages.inc.php:1130 tbl_tracking.php:561 msgid "Show versions" msgstr "" -#: libraries/messages.inc.php:1135 tbl_tracking.php:507 +#: libraries/messages.inc.php:1131 tbl_tracking.php:507 msgid "SQL dump (file download)" msgstr "" -#: libraries/messages.inc.php:1136 tbl_tracking.php:508 +#: libraries/messages.inc.php:1132 tbl_tracking.php:508 msgid "SQL dump" msgstr "" -#: libraries/messages.inc.php:1137 tbl_tracking.php:213 +#: libraries/messages.inc.php:1133 tbl_tracking.php:213 msgid "SQL statements executed." msgstr "" -#: libraries/messages.inc.php:1138 +#: libraries/messages.inc.php:1134 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/messages.inc.php:1139 tbl_tracking.php:509 +#: libraries/messages.inc.php:1135 tbl_tracking.php:509 msgid "SQL execution" msgstr "" -#: libraries/messages.inc.php:1140 tbl_tracking.php:230 +#: libraries/messages.inc.php:1136 tbl_tracking.php:230 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/messages.inc.php:1141 tbl_tracking.php:381 +#: libraries/messages.inc.php:1137 tbl_tracking.php:381 msgid "Tracking statements" msgstr "" -#: libraries/messages.inc.php:1148 tbl_tracking.php:593 +#: libraries/messages.inc.php:1144 tbl_tracking.php:593 #, fuzzy msgid "Version" msgstr "Persiešu" -#: libraries/messages.inc.php:1149 tbl_tracking.php:672 +#: libraries/messages.inc.php:1145 tbl_tracking.php:672 msgid "Track these data definition statements:" msgstr "" -#: libraries/messages.inc.php:1150 tbl_tracking.php:680 +#: libraries/messages.inc.php:1146 tbl_tracking.php:680 msgid "Track these data manipulation statements:" msgstr "" -#: libraries/messages.inc.php:1155 tbl_tracking.php:411 tbl_tracking.php:462 +#: libraries/messages.inc.php:1151 tbl_tracking.php:411 tbl_tracking.php:462 #, fuzzy msgid "Username" msgstr "Lietotājvārds:" -#: libraries/messages.inc.php:1156 tbl_tracking.php:203 +#: libraries/messages.inc.php:1152 tbl_tracking.php:203 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "" -#: libraries/messages.inc.php:1157 tbl_tracking.php:187 +#: libraries/messages.inc.php:1153 tbl_tracking.php:187 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "" -#: libraries/messages.inc.php:1158 tbl_tracking.php:195 +#: libraries/messages.inc.php:1154 tbl_tracking.php:195 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "" -#: libraries/messages.inc.php:1159 tbl_tracking.php:262 +#: libraries/messages.inc.php:1155 tbl_tracking.php:262 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/messages.inc.php:1161 tbl_tracking.php:220 +#: libraries/messages.inc.php:1157 tbl_tracking.php:220 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/messages.inc.php:1162 libraries/mysql_charsets.lib.php:219 +#: libraries/messages.inc.php:1158 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:362 msgid "Traditional Chinese" msgstr "Tradicionāla ķīniešu" -#: libraries/messages.inc.php:1163 libraries/mysql_charsets.lib.php:292 +#: libraries/messages.inc.php:1159 libraries/mysql_charsets.lib.php:292 msgid "Traditional Spanish" msgstr "Tradicionālā spāņu" -#: libraries/messages.inc.php:1164 server_status.php:388 +#: libraries/messages.inc.php:1160 server_status.php:388 msgid "Traffic" msgstr "Datu apmaiņa" -#: libraries/messages.inc.php:1165 server_status.php:261 +#: libraries/messages.inc.php:1161 server_status.php:261 msgid "Transaction coordinator" msgstr "" -#: libraries/messages.inc.php:1166 +#: libraries/messages.inc.php:1162 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 " @@ -6288,13 +6288,13 @@ msgstr "" "nosaukums. Otrā opcija ir iespējamais lauka nosaukums tabulas rindā, kas " "satur faula nosaukumu. Ja izmantojat otro opciju, pirmo atstājiet tukšo." -#: libraries/messages.inc.php:1167 +#: libraries/messages.inc.php:1163 msgid "" "Displays hexadecimal representation of data. Optional first parameter " "specifies how often space will be added (defaults to 2 nibbles)." msgstr "" -#: libraries/messages.inc.php:1168 +#: libraries/messages.inc.php:1164 msgid "" "Displays a clickable thumbnail. The options are the maximum width and height " "in pixels. The original aspect ratio is preserved." @@ -6302,15 +6302,15 @@ msgstr "" "Parāda klikšķināmo sīktēlu; opcijas: platums, augstums pikseļos (saglabājot " "oriģinālās proporcijas)" -#: libraries/messages.inc.php:1169 +#: libraries/messages.inc.php:1165 msgid "Displays a link to download this image." msgstr "Parāda linku uz šo attēlu (tieša blob lauka lajuplāde)." -#: libraries/messages.inc.php:1170 +#: libraries/messages.inc.php:1166 msgid "See image/jpeg: inline" msgstr "Skatīties image/jpeg: kā ierindotu attēlu" -#: libraries/messages.inc.php:1171 +#: libraries/messages.inc.php:1167 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 " @@ -6322,7 +6322,7 @@ msgid "" "gmdate() function." msgstr "" -#: libraries/messages.inc.php:1172 +#: libraries/messages.inc.php:1168 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 " @@ -6345,7 +6345,7 @@ msgstr "" "ir 1). Ceturtais parametrs, ja vienāds ar 1, liek NOWRAP parametru satura " "šūnai, tā kā izvade tiks attēlota bez pārformatēšanas. (noklusējums ir 1)" -#: libraries/messages.inc.php:1173 +#: libraries/messages.inc.php:1169 msgid "" "Displays the contents of the field as-is, without running it through " "htmlspecialchars(). That is, the field is assumed to contain valid HTML." @@ -6353,7 +6353,7 @@ msgstr "" "Saglabā lauka oriģinālo formatējumu. Speciālo rakstzīmju pasargāšana netiek " "veikta." -#: libraries/messages.inc.php:1174 +#: libraries/messages.inc.php:1170 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 " @@ -6363,7 +6363,7 @@ msgstr "" "prefikss, piemēram, \"http://domens.lv/\", otrā opcija ir platums pikseļos, " "trešā ir augstums." -#: libraries/messages.inc.php:1175 +#: libraries/messages.inc.php:1171 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 " @@ -6372,11 +6372,11 @@ msgstr "" "Parāda attēlu un linku, lauks satur faila nosauumu; pirmā opcija ir " "prefikss, piemēram, \"http://domens.lv/\", otrā opcija ir linka nosaukums." -#: libraries/messages.inc.php:1176 +#: libraries/messages.inc.php:1172 msgid "Formats text as SQL query with syntax highlighting." msgstr "" -#: libraries/messages.inc.php:1177 +#: libraries/messages.inc.php:1173 msgid "" "Displays a part of a string. The first option is the number of characters to " "skip from the beginning of the string (Default 0). The second option is the " @@ -6389,70 +6389,70 @@ msgstr "" "tukša, atgriež visu atlikušo tekstu. Trešā opcija nosaka rakstzīmes, kas " "tiks pievienotas apgrieztās virknes galā (noklusējums: ...) ." -#: libraries/messages.inc.php:1179 server_binlog.php:183 server_binlog.php:186 +#: libraries/messages.inc.php:1175 server_binlog.php:183 server_binlog.php:186 #: server_processlist.php:49 server_processlist.php:51 msgid "Truncate Shown Queries" msgstr "Ierobežot parādīto vaicājumu garumu" -#: libraries/messages.inc.php:1180 libraries/mysql_charsets.lib.php:301 +#: libraries/messages.inc.php:1176 libraries/mysql_charsets.lib.php:301 #: libraries/mysql_charsets.lib.php:389 msgid "Turkish" msgstr "Turku" -#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:304 +#: libraries/messages.inc.php:1179 libraries/mysql_charsets.lib.php:304 #: libraries/mysql_charsets.lib.php:386 msgid "Ukrainian" msgstr "Ukraiņu" -#: libraries/messages.inc.php:1185 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:1181 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 msgid "Unicode" msgstr "Unikods" -#: libraries/messages.inc.php:1187 libraries/mysql_charsets.lib.php:398 +#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:398 #: libraries/mysql_charsets.lib.php:405 msgid "unknown" msgstr "nazināma" -#: libraries/messages.inc.php:1190 server_privileges.php:1152 +#: libraries/messages.inc.php:1186 server_privileges.php:1152 #, php-format msgid "You have updated the privileges for %s." msgstr "Jūs modificējāt privilēģijas objektam %s." -#: libraries/messages.inc.php:1191 user_password.php:112 +#: libraries/messages.inc.php:1187 user_password.php:112 msgid "The profile has been updated." msgstr "Profils tika modificēts." -#: libraries/messages.inc.php:1193 libraries/relation.lib.php:138 +#: libraries/messages.inc.php:1189 libraries/relation.lib.php:138 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "Lūdzu skatieties dokumentāciju par to, kā atjaunot 'Column_comments' tabulu" -#: libraries/messages.inc.php:1194 +#: libraries/messages.inc.php:1190 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Jums ir jāuzliek %s %s vai jaunāks." -#: libraries/messages.inc.php:1204 tbl_printview.php:314 tbl_structure.php:661 +#: libraries/messages.inc.php:1200 tbl_printview.php:314 tbl_structure.php:661 msgid "Usage" msgstr "Aizņem" -#: libraries/messages.inc.php:1205 +#: libraries/messages.inc.php:1201 msgid "Enclose table and field names with backquotes" msgstr "Lietot apostrofa simbolu [`] tabulu un lauku nosaukumiem" -#: libraries/messages.inc.php:1206 libraries/replication_gui.lib.php:314 +#: libraries/messages.inc.php:1202 libraries/replication_gui.lib.php:314 #: server_privileges.php:740 msgid "Use Host Table" msgstr "Lietot hostu tabulu" -#: libraries/messages.inc.php:1207 server_privileges.php:848 +#: libraries/messages.inc.php:1203 server_privileges.php:848 #, php-format msgid "The user %s already exists!" msgstr "Lietotājs %s jau eksistē!" -#: libraries/messages.inc.php:1209 libraries/replication_gui.lib.php:55 +#: libraries/messages.inc.php:1205 libraries/replication_gui.lib.php:55 #: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245 #: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255 #: server_privileges.php:672 server_privileges.php:675 @@ -6460,37 +6460,37 @@ msgstr "Lietotājs %s jau eksistē!" msgid "User name" msgstr "Lietotājvārds" -#: libraries/messages.inc.php:1210 server_privileges.php:1645 +#: libraries/messages.inc.php:1206 server_privileges.php:1645 msgid "The selected user was not found in the privilege table." msgstr "Izvēlētais lietotājs nav atrasts privilēģiju tabulā." -#: libraries/messages.inc.php:1211 server_privileges.php:1365 +#: libraries/messages.inc.php:1207 server_privileges.php:1365 msgid "User overview" msgstr "Lietotāju pārskats" -#: libraries/messages.inc.php:1212 server_privileges.php:1261 +#: libraries/messages.inc.php:1208 server_privileges.php:1261 msgid "The selected users have been deleted successfully." msgstr "Izvēlētie lietotāji tika veiksmīgi dzēsti." -#: libraries/messages.inc.php:1213 server_privileges.php:2026 +#: libraries/messages.inc.php:1209 server_privileges.php:2026 #, php-format msgid "Users having access to "%s"" msgstr "Lietotāji, kam ir pieja datubāzei "%s"" -#: libraries/messages.inc.php:1214 main.php:189 server_privileges.php:1350 +#: libraries/messages.inc.php:1210 main.php:189 server_privileges.php:1350 #: server_privileges.php:1497 server_privileges.php:1611 #: server_privileges.php:2029 server_processlist.php:54 msgid "User" msgstr "Lietotājs" -#: libraries/messages.inc.php:1215 tbl_change.php:1171 +#: libraries/messages.inc.php:1211 tbl_change.php:1171 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Lietojiet TAB taustiņu, lai pārvietotos no vērtības līdz vērtībai, vai CTRL" "+bultiņas, lai pārvietotos jebkurā vietā" -#: libraries/messages.inc.php:1217 libraries/replication_gui.lib.php:251 +#: libraries/messages.inc.php:1213 libraries/replication_gui.lib.php:251 #: libraries/replication_gui.lib.php:319 libraries/replication_gui.lib.php:342 #: server_privileges.php:678 server_privileges.php:745 #: server_privileges.php:769 server_privileges.php:1889 @@ -6498,7 +6498,7 @@ msgstr "" msgid "Use text field" msgstr "Lietot teksta lauku" -#: libraries/messages.inc.php:1221 libraries/sqlvalidator.lib.php:68 +#: libraries/messages.inc.php:1217 libraries/sqlvalidator.lib.php:68 #, php-format msgid "" "The SQL validator could not be initialized. Please check if you have " @@ -6507,86 +6507,86 @@ msgstr "" "Nevar inicializēt SQL pārbaudītāju. Lūdzu pārbaudiet, vai esat uzinstalējuši " "nepieciešamos PHP paplašinājumus, kā aprakstīts %sdokumentācijā%s." -#: libraries/messages.inc.php:1222 libraries/replication_gui.lib.php:111 +#: libraries/messages.inc.php:1218 libraries/replication_gui.lib.php:111 #: server_status.php:627 tbl_change.php:324 tbl_printview.php:370 #: tbl_select.php:139 tbl_structure.php:730 msgid "Value" msgstr "Vērtība" -#: libraries/messages.inc.php:1223 libraries/replication_gui.lib.php:110 +#: libraries/messages.inc.php:1219 libraries/replication_gui.lib.php:110 #: libraries/sql_query_form.lib.php:445 server_status.php:626 #: server_variables.php:52 msgid "Variable" msgstr "Mainīgais" -#: libraries/messages.inc.php:1225 server_export.php:21 +#: libraries/messages.inc.php:1221 server_export.php:21 msgid "View dump (schema) of databases" msgstr "Apskatīt datubāzu dampu (shēmu)" -#: libraries/messages.inc.php:1227 tbl_export.php:23 +#: libraries/messages.inc.php:1223 tbl_export.php:23 msgid "View dump (schema) of table" msgstr "Apskatīt tabulas dampu (shēmu)" -#: libraries/messages.inc.php:1231 view_create.php:142 +#: libraries/messages.inc.php:1227 view_create.php:142 msgid "VIEW name" msgstr "" -#: libraries/messages.inc.php:1237 main.php:205 +#: libraries/messages.inc.php:1233 main.php:205 msgid "Web server" msgstr "" -#: libraries/messages.inc.php:1239 libraries/mysql_charsets.lib.php:277 +#: libraries/messages.inc.php:1235 libraries/mysql_charsets.lib.php:277 #: libraries/mysql_charsets.lib.php:325 msgid "West European" msgstr "Rietumeiropas" -#: libraries/messages.inc.php:1240 main.php:230 +#: libraries/messages.inc.php:1236 main.php:230 msgid "Wiki" msgstr "" -#: libraries/messages.inc.php:1241 server_privileges.php:2138 +#: libraries/messages.inc.php:1237 server_privileges.php:2138 msgid "wildcard" msgstr "aizstājējzīme" -#: libraries/messages.inc.php:1248 +#: libraries/messages.inc.php:1244 msgid "Export contents" msgstr "" -#: libraries/messages.inc.php:1249 +#: libraries/messages.inc.php:1245 msgid "Export functions" msgstr "" -#: libraries/messages.inc.php:1250 +#: libraries/messages.inc.php:1246 msgid "Export procedures" msgstr "" -#: libraries/messages.inc.php:1251 +#: libraries/messages.inc.php:1247 msgid "Export Structure Schemas (recommended)" msgstr "" -#: libraries/messages.inc.php:1252 +#: libraries/messages.inc.php:1248 #, fuzzy msgid "Export tables" msgstr "Eksporta veids" -#: libraries/messages.inc.php:1253 +#: libraries/messages.inc.php:1249 #, fuzzy msgid "Export triggers" msgstr "Eksporta veids" -#: libraries/messages.inc.php:1254 +#: libraries/messages.inc.php:1250 msgid "Export views" msgstr "" -#: libraries/messages.inc.php:1255 +#: libraries/messages.inc.php:1251 msgid "XML" msgstr "XML" -#: libraries/messages.inc.php:1259 server_privileges.php:592 +#: libraries/messages.inc.php:1255 server_privileges.php:592 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Piezīme: Šo opciju uzstādīšana uz 0 (nulli) atceļ ierobežojumus." -#: libraries/messages.inc.php:1260 +#: libraries/messages.inc.php:1256 msgid "\"zipped\"" msgstr "Arhivēts ar zip" diff --git a/po/mk.po b/po/mk.po index bfc5a3f31..952405edc 100644 --- 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-05-13 11:25+0200\n" +"POT-Creation-Date: 2010-05-13 11:30+0200\n" "PO-Revision-Date: 2010-03-12 09:16+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: macedonian_cyrillic \n" @@ -13,19 +13,19 @@ msgstr "" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:38 browse_foreigners.php:59 -#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:870 +#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:866 #: server_privileges.php:1475 msgid "Show all" msgstr "прикажи ги сите" #: browse_foreigners.php:82 db_operations.php:648 -#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:394 -#: libraries/export/pdf.php:147 libraries/messages.inc.php:597 +#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394 +#: libraries/export/pdf.php:147 libraries/messages.inc.php:593 #: pdf_schema.php:283 pdf_schema.php:1123 pdf_schema.php:1139 msgid "Page number:" msgstr "Број на страници:" -#: browse_foreigners.php:132 libraries/messages.inc.php:1242 +#: browse_foreigners.php:132 libraries/messages.inc.php:1238 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -38,7 +38,7 @@ 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/db_links.inc.php:75 -#: libraries/messages.inc.php:841 libraries/tbl_links.inc.php:63 +#: libraries/messages.inc.php:837 libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Пребарување" @@ -47,12 +47,12 @@ msgstr "Пребарување" #: db_search.php:362 db_structure.php:567 js/messages.php:48 #: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2267 +#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 #: 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 #: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614 -#: libraries/messages.inc.php:361 libraries/replication_gui.lib.php:73 +#: libraries/messages.inc.php:357 libraries/replication_gui.lib.php:73 #: libraries/replication_gui.lib.php:365 libraries/select_server.lib.php:104 #: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477 #: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782 @@ -72,33 +72,33 @@ msgid "Go" msgstr "OK" #: browse_foreigners.php:168 browse_foreigners.php:172 -#: libraries/Index.class.php:442 libraries/messages.inc.php:459 +#: libraries/Index.class.php:442 libraries/messages.inc.php:455 #: tbl_tracking.php:320 msgid "Keyname" msgstr "Име на клуч" #: browse_foreigners.php:169 browse_foreigners.php:171 -#: libraries/messages.inc.php:252 server_collations.php:55 +#: libraries/messages.inc.php:248 server_collations.php:55 #: server_collations.php:67 server_engines.php:59 server_status.php:628 msgid "Description" msgstr "Опис" #: browse_foreigners.php:247 browse_foreigners.php:256 #: browse_foreigners.php:268 browse_foreigners.php:276 -#: libraries/messages.inc.php:1218 +#: libraries/messages.inc.php:1214 msgid "Use this value" msgstr "Користи ја оваа вредност" -#: db_create.php:46 libraries/messages.inc.php:215 +#: db_create.php:46 libraries/messages.inc.php:211 #, fuzzy, php-format msgid "Database %1$s has been created." msgstr "Базата на податоци %s не е прифатена" -#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:232 +#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:228 msgid "Database comment: " msgstr "Коментар на базата на податоци:" -#: db_datadict.php:165 libraries/messages.inc.php:1070 +#: db_datadict.php:165 libraries/messages.inc.php:1066 #: libraries/tbl_properties.inc.php:724 pdf_schema.php:1236 #: tbl_operations.php:345 tbl_printview.php:130 msgid "Table comments" @@ -107,7 +107,7 @@ msgstr "Коментар на табелата" #: db_datadict.php:174 db_qbe.php:174 libraries/Index.class.php:446 #: libraries/export/htmlword.php:244 libraries/export/latex.php:360 #: libraries/export/odt.php:294 libraries/export/texytext.php:233 -#: libraries/messages.inc.php:317 libraries/tbl_properties.inc.php:99 +#: libraries/messages.inc.php:313 libraries/tbl_properties.inc.php:99 #: libraries/tbl_properties.inc.php:275 pdf_schema.php:1262 #: pdf_schema.php:1283 tbl_change.php:308 tbl_indexes.php:189 #: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135 @@ -119,7 +119,7 @@ msgstr "Поле" #: libraries/db_events.inc.php:31 libraries/db_routines.inc.php:42 #: 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/messages.inc.php:1181 +#: libraries/export/texytext.php:234 libraries/messages.inc.php:1177 #: libraries/tbl_properties.inc.php:100 pdf_schema.php:1263 #: pdf_schema.php:1284 server_privileges.php:2031 tbl_change.php:287 #: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313 @@ -131,7 +131,7 @@ msgstr "Тип" #: db_datadict.php:177 libraries/Index.class.php:449 #: libraries/export/htmlword.php:246 libraries/export/latex.php:360 #: libraries/export/odt.php:300 libraries/export/texytext.php:235 -#: libraries/messages.inc.php:576 libraries/tbl_properties.inc.php:109 +#: libraries/messages.inc.php:572 libraries/tbl_properties.inc.php:109 #: pdf_schema.php:1265 pdf_schema.php:1286 tbl_change.php:323 #: tbl_printview.php:145 tbl_structure.php:181 tbl_tracking.php:276 #: tbl_tracking.php:327 @@ -140,7 +140,7 @@ msgstr "Null" #: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 -#: libraries/export/texytext.php:236 libraries/messages.inc.php:238 +#: libraries/export/texytext.php:236 libraries/messages.inc.php:234 #: libraries/tbl_properties.inc.php:106 pdf_schema.php:1266 #: pdf_schema.php:1287 tbl_printview.php:146 tbl_structure.php:182 #: tbl_tracking.php:277 @@ -149,14 +149,14 @@ msgstr "Default" #: db_datadict.php:182 libraries/export/htmlword.php:249 #: libraries/export/latex.php:362 libraries/export/odt.php:307 -#: libraries/export/texytext.php:238 libraries/messages.inc.php:483 +#: libraries/export/texytext.php:238 libraries/messages.inc.php:479 #: pdf_schema.php:1268 pdf_schema.php:1289 tbl_printview.php:150 msgid "Links to" msgstr "Врски кон" #: db_datadict.php:184 db_printview.php:112 libraries/export/htmlword.php:252 #: libraries/export/latex.php:365 libraries/export/odt.php:312 -#: libraries/export/texytext.php:241 libraries/messages.inc.php:163 +#: libraries/export/texytext.php:241 libraries/messages.inc.php:159 #: libraries/tbl_properties.inc.php:130 pdf_schema.php:1279 #: pdf_schema.php:1290 tbl_printview.php:152 msgid "Comments" @@ -165,7 +165,7 @@ msgstr "Коментари" #: db_datadict.php:267 libraries/Index.class.php:359 #: 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/messages.inc.php:559 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:555 #: libraries/mult_submits.inc.php:263 pdf_schema.php:1344 #: server_privileges.php:1529 server_privileges.php:1540 #: server_privileges.php:1850 server_privileges.php:1855 @@ -177,7 +177,7 @@ msgstr "Не" #: db_datadict.php:267 libraries/Index.class.php:360 #: libraries/Index.class.php:385 libraries/export/htmlword.php:322 #: libraries/export/latex.php:430 libraries/export/odt.php:368 -#: libraries/export/texytext.php:311 libraries/messages.inc.php:1257 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:1253 #: libraries/mult_submits.inc.php:45 libraries/mult_submits.inc.php:50 #: libraries/mult_submits.inc.php:55 libraries/mult_submits.inc.php:60 #: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:101 @@ -191,108 +191,108 @@ msgstr "Не" msgid "Yes" msgstr "Да" -#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:670 +#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:666 #: tbl_printview.php:498 msgid "Print" msgstr "Печати" -#: db_export.php:29 libraries/messages.inc.php:1226 +#: db_export.php:29 libraries/messages.inc.php:1222 msgid "View dump (schema) of database" msgstr "Прикажи содржина (шема) на базата" #: db_export.php:33 db_printview.php:96 db_qbe.php:102 db_structure.php:51 -#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:568 +#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:564 #: navigation.php:346 msgid "No tables found in database." msgstr "Табелите не се пронајдени во базата на податоци." -#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:845 +#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:841 #: server_export.php:27 msgid "Select All" msgstr "избери се" -#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1188 +#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1184 #: server_export.php:29 msgid "Unselect All" msgstr "ништо" -#: db_operations.php:38 libraries/messages.inc.php:213 tbl_create.php:54 +#: db_operations.php:38 libraries/messages.inc.php:209 tbl_create.php:54 msgid "The database name is empty!" msgstr "Името на базата на податоци не е зададено!" -#: db_operations.php:236 libraries/messages.inc.php:753 +#: db_operations.php:236 libraries/messages.inc.php:749 #, php-format msgid "Database %s has been renamed to %s" msgstr "Базата на податоци %s е преименувана во %s" -#: db_operations.php:240 libraries/messages.inc.php:178 +#: db_operations.php:240 libraries/messages.inc.php:174 #, php-format msgid "Database %s has been copied to %s" msgstr "Базата на податоци %s е ископирана во %s" -#: db_operations.php:410 libraries/messages.inc.php:236 +#: db_operations.php:410 libraries/messages.inc.php:232 msgid "Rename database to" msgstr "Преименувај ја базата на податоци во" -#: db_operations.php:415 libraries/messages.inc.php:161 +#: db_operations.php:415 libraries/messages.inc.php:157 #: server_processlist.php:57 msgid "Command" msgstr "Наредба" -#: db_operations.php:425 libraries/messages.inc.php:58 tbl_change.php:1143 +#: db_operations.php:425 libraries/messages.inc.php:54 tbl_change.php:1143 msgid "and then" msgstr "" -#: db_operations.php:451 libraries/messages.inc.php:233 +#: db_operations.php:451 libraries/messages.inc.php:229 msgid "Copy database to" msgstr "Копирај ја базата на податоци во" -#: db_operations.php:458 libraries/messages.inc.php:1043 +#: db_operations.php:458 libraries/messages.inc.php:1039 #: tbl_operations.php:526 tbl_tracking.php:388 msgid "Structure only" msgstr "Само структура" -#: db_operations.php:459 libraries/messages.inc.php:1041 +#: db_operations.php:459 libraries/messages.inc.php:1037 #: tbl_operations.php:527 tbl_tracking.php:390 msgid "Structure and data" msgstr "Структура и податоци" -#: db_operations.php:460 libraries/messages.inc.php:229 tbl_operations.php:528 +#: db_operations.php:460 libraries/messages.inc.php:225 tbl_operations.php:528 #: tbl_tracking.php:389 msgid "Data only" msgstr "Само податоци" -#: db_operations.php:468 libraries/messages.inc.php:186 +#: db_operations.php:468 libraries/messages.inc.php:182 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE пред копирање" #: db_operations.php:471 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 -#: libraries/export/sql.php:82 libraries/messages.inc.php:30 +#: libraries/export/sql.php:82 libraries/messages.inc.php:26 #: tbl_operations.php:534 #, php-format msgid "Add %s" msgstr "" -#: db_operations.php:475 libraries/messages.inc.php:29 tbl_operations.php:297 +#: db_operations.php:475 libraries/messages.inc.php:25 tbl_operations.php:297 #: tbl_operations.php:536 msgid "Add AUTO_INCREMENT value" msgstr "Додади AUTO_INCREMENT вредност" -#: db_operations.php:479 libraries/messages.inc.php:31 tbl_operations.php:543 +#: db_operations.php:479 libraries/messages.inc.php:27 tbl_operations.php:543 msgid "Add constraints" msgstr "Додади ограничувања" -#: db_operations.php:492 libraries/messages.inc.php:1059 +#: db_operations.php:492 libraries/messages.inc.php:1055 msgid "Switch to copied database" msgstr "Префрли се на копираната база на податоци" -#: db_operations.php:533 libraries/messages.inc.php:89 +#: db_operations.php:533 libraries/messages.inc.php:85 msgid "BLOB Repository" msgstr "" #: db_operations.php:536 db_tracking.php:76 libraries/common.lib.php:1350 -#: libraries/messages.inc.php:1037 libraries/server_links.inc.php:49 +#: libraries/messages.inc.php:1033 libraries/server_links.inc.php:49 #: server_processlist.php:59 tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "Статус" @@ -304,12 +304,12 @@ msgctxt "BLOB repository" msgid "Enabled" msgstr "Овозможено" -#: db_operations.php:548 libraries/messages.inc.php:93 +#: db_operations.php:548 libraries/messages.inc.php:89 #, fuzzy msgid "Disable" msgstr "Оневозможено" -#: db_operations.php:558 libraries/messages.inc.php:90 +#: db_operations.php:558 libraries/messages.inc.php:86 msgid "Damaged" msgstr "" @@ -326,13 +326,13 @@ msgctxt "BLOB repository" msgid "Disabled" msgstr "Оневозможено" -#: db_operations.php:574 libraries/messages.inc.php:96 +#: db_operations.php:574 libraries/messages.inc.php:92 #, fuzzy msgid "Enable" msgstr "Овозможено" #: db_operations.php:598 libraries/Index.class.php:448 -#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:158 +#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:154 #: 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:361 @@ -341,7 +341,7 @@ msgstr "Овозможено" msgid "Collation" msgstr "Подредување" -#: db_operations.php:609 libraries/messages.inc.php:742 main.php:316 +#: db_operations.php:609 libraries/messages.inc.php:738 main.php:316 #: pdf_schema.php:34 #, php-format msgid "" @@ -351,58 +351,58 @@ msgstr "" "Дополнителните можности за работа со поврзаните табели се исклучени. За да " "дознаете зошто, кликнете %sовде%s." -#: db_operations.php:645 libraries/messages.inc.php:264 pdf_pages.php:528 +#: db_operations.php:645 libraries/messages.inc.php:260 pdf_pages.php:528 msgid "Display PDF schema" msgstr "Прикажи PDF шема" -#: db_operations.php:661 libraries/messages.inc.php:877 pdf_pages.php:529 +#: db_operations.php:661 libraries/messages.inc.php:873 pdf_pages.php:529 msgid "Show grid" msgstr "Прикажи мрежа" -#: db_operations.php:664 libraries/messages.inc.php:874 pdf_pages.php:530 +#: db_operations.php:664 libraries/messages.inc.php:870 pdf_pages.php:530 msgid "Show color" msgstr "Прикажи боја" -#: db_operations.php:666 libraries/messages.inc.php:998 pdf_pages.php:531 +#: db_operations.php:666 libraries/messages.inc.php:994 pdf_pages.php:531 msgid "Show dimension of tables" msgstr "Прикажи ги димензиите на табелите" -#: db_operations.php:669 libraries/messages.inc.php:52 pdf_pages.php:532 +#: db_operations.php:669 libraries/messages.inc.php:48 pdf_pages.php:532 msgid "Display all tables with the same width" msgstr "Приказ на сите табели со иста ширина?" -#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:227 +#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:223 #: pdf_pages.php:533 msgid "Data Dictionary" msgstr "Речник на податоци" -#: db_operations.php:674 libraries/messages.inc.php:884 pdf_pages.php:534 +#: db_operations.php:674 libraries/messages.inc.php:880 pdf_pages.php:534 msgid "Only show keys" msgstr "" -#: db_operations.php:676 libraries/messages.inc.php:875 pdf_pages.php:535 +#: db_operations.php:676 libraries/messages.inc.php:871 pdf_pages.php:535 msgid "Data Dictionary Format" msgstr "Формат на речникот на податоци" -#: db_operations.php:678 libraries/messages.inc.php:464 pdf_pages.php:537 +#: db_operations.php:678 libraries/messages.inc.php:460 pdf_pages.php:537 msgid "Landscape" msgstr "Легнато" -#: db_operations.php:679 libraries/messages.inc.php:663 pdf_pages.php:538 +#: db_operations.php:679 libraries/messages.inc.php:659 pdf_pages.php:538 msgid "Portrait" msgstr "Вертикално" -#: db_operations.php:682 libraries/messages.inc.php:599 pdf_pages.php:541 +#: db_operations.php:682 libraries/messages.inc.php:595 pdf_pages.php:541 msgid "Paper size" msgstr "Димензија на хартијата" -#: db_operations.php:706 libraries/messages.inc.php:281 +#: db_operations.php:706 libraries/messages.inc.php:277 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 libraries/messages.inc.php:1087 +#: libraries/header.inc.php:126 libraries/messages.inc.php:1083 #: pdf_pages.php:405 server_privileges.php:1626 server_privileges.php:1682 #: server_privileges.php:1946 server_synchronize.php:423 #: server_synchronize.php:866 tbl_tracking.php:592 test/theme.php:75 @@ -410,176 +410,176 @@ msgid "Table" msgstr "Табела" #: db_printview.php:105 libraries/db_structure.lib.php:56 -#: libraries/messages.inc.php:735 +#: libraries/messages.inc.php:731 msgid "Records" msgstr "Записи" #: db_printview.php:109 libraries/db_structure.lib.php:67 -#: libraries/messages.inc.php:1003 tbl_indexes.php:190 +#: libraries/messages.inc.php:999 tbl_indexes.php:190 msgid "Size" msgstr "Големина" #: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 -#: libraries/export/sql.php:899 libraries/messages.inc.php:436 +#: libraries/export/sql.php:899 libraries/messages.inc.php:432 msgid "in use" msgstr "се користи" #: db_printview.php:187 libraries/db_info.inc.php:88 -#: libraries/export/sql.php:514 libraries/messages.inc.php:1032 +#: libraries/export/sql.php:514 libraries/messages.inc.php:1028 #: pdf_schema.php:1241 tbl_printview.php:434 tbl_structure.php:810 msgid "Creation" msgstr "Направено" #: db_printview.php:196 libraries/db_info.inc.php:93 -#: libraries/export/sql.php:519 libraries/messages.inc.php:1036 +#: libraries/export/sql.php:519 libraries/messages.inc.php:1032 #: pdf_schema.php:1246 tbl_printview.php:444 tbl_structure.php:818 msgid "Last update" msgstr "Последна измена" #: db_printview.php:205 libraries/db_info.inc.php:98 -#: libraries/export/sql.php:524 libraries/messages.inc.php:1031 +#: libraries/export/sql.php:524 libraries/messages.inc.php:1027 #: pdf_schema.php:1251 tbl_printview.php:454 tbl_structure.php:826 msgid "Last check" msgstr "Последна проверка" -#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1085 +#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1081 #, php-format msgid "%s table(s)" msgstr "%s табела" #: db_qbe.php:29 libraries/display_tbl.lib.php:1981 -#: libraries/messages.inc.php:1051 libraries/sql_query_form.lib.php:140 +#: libraries/messages.inc.php:1047 libraries/sql_query_form.lib.php:140 #: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131 #: view_operations.php:62 msgid "Your SQL query has been executed successfully" msgstr "Вашиот SQL упит успешно е извршен" -#: db_qbe.php:42 libraries/messages.inc.php:371 +#: db_qbe.php:42 libraries/messages.inc.php:367 msgid "You have to choose at least one column to display" msgstr "Морате да изберете барем една колона за приказ" #: db_qbe.php:200 libraries/db_structure.lib.php:104 -#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1014 +#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1010 msgid "Sort" msgstr "Подредуваање" #: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111 #: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828 -#: libraries/messages.inc.php:69 server_databases.php:170 +#: libraries/messages.inc.php:65 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314 msgid "Ascending" msgstr "Растечки редослед" #: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119 #: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825 -#: libraries/messages.inc.php:251 server_databases.php:170 +#: libraries/messages.inc.php:247 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315 msgid "Descending" msgstr "Опаѓачки редослед" #: db_qbe.php:264 db_tracking.php:78 libraries/display_tbl.lib.php:308 -#: libraries/messages.inc.php:888 tbl_change.php:277 tbl_tracking.php:597 +#: libraries/messages.inc.php:884 tbl_change.php:277 tbl_tracking.php:597 msgid "Show" msgstr "Прикажи" -#: db_qbe.php:300 libraries/messages.inc.php:202 +#: db_qbe.php:300 libraries/messages.inc.php:198 msgid "Criteria" msgstr "Критериум" #: db_qbe.php:353 db_qbe.php:435 db_qbe.php:527 db_qbe.php:558 -#: libraries/messages.inc.php:718 +#: libraries/messages.inc.php:714 msgid "Ins" msgstr "Ins" #: db_qbe.php:357 db_qbe.php:439 db_qbe.php:524 db_qbe.php:555 -#: libraries/messages.inc.php:56 +#: libraries/messages.inc.php:52 msgid "And" msgstr "и" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:529 db_qbe.php:560 -#: libraries/messages.inc.php:717 +#: libraries/messages.inc.php:713 msgid "Del" 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/messages.inc.php:592 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:588 #: libraries/tbl_properties.inc.php:779 server_privileges.php:258 #: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288 msgid "Or" msgstr "или" -#: db_qbe.php:507 libraries/messages.inc.php:516 +#: db_qbe.php:507 libraries/messages.inc.php:512 msgid "Modify" msgstr "Промени" -#: db_qbe.php:584 libraries/messages.inc.php:33 +#: db_qbe.php:584 libraries/messages.inc.php:29 msgid "Add/Delete Criteria Row" msgstr "Додади/избриши поле за критериум" -#: db_qbe.php:596 libraries/messages.inc.php:32 +#: db_qbe.php:596 libraries/messages.inc.php:28 msgid "Add/Delete Field Columns" msgstr "Додади/избриши колона" -#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1192 +#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1188 msgid "Update Query" msgstr "Ажурирај" -#: db_qbe.php:617 libraries/messages.inc.php:1216 +#: db_qbe.php:617 libraries/messages.inc.php:1212 msgid "Use Tables" msgstr "Користи табели" -#: db_qbe.php:640 libraries/messages.inc.php:723 +#: db_qbe.php:640 libraries/messages.inc.php:719 #, php-format msgid "SQL query on database %s:" msgstr "SQL упит на базата на податоци %s:" -#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:823 +#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:819 msgid "Submit Query" msgstr "Изврши SQL" #: db_search.php:68 libraries/auth/config.auth.lib.php:84 #: libraries/auth/config.auth.lib.php:103 #: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52 -#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:26 +#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:22 msgid "Access denied" msgstr "Пристапот не е допуштен" -#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:836 +#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:832 msgid "at least one of the words" msgstr "барем еден од зборовите" -#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:837 +#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:833 msgid "all words" msgstr "сите зборови" -#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:838 +#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:834 msgid "the exact phrase" msgstr "точен израз" -#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:839 +#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:835 msgid "as regular expression" msgstr "како регуларен израз" -#: db_search.php:242 libraries/messages.inc.php:840 +#: db_search.php:242 libraries/messages.inc.php:836 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Резултати од пребарувањето за \"%s\" %s:" -#: db_search.php:260 libraries/messages.inc.php:579 +#: db_search.php:260 libraries/messages.inc.php:575 #, php-format msgid "%s match(es) inside table %s" 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/messages.inc.php:108 +#: db_structure.php:105 libraries/messages.inc.php:104 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468 msgid "Browse" msgstr "Преглед" #: db_search.php:272 libraries/display_tbl.lib.php:1165 -#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:243 +#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:239 #: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406 #: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377 #: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216 @@ -587,45 +587,45 @@ msgstr "Преглед" msgid "Delete" msgstr "избриши" -#: db_search.php:285 libraries/messages.inc.php:580 +#: db_search.php:285 libraries/messages.inc.php:576 #, php-format msgid "Total: %s match(es)" msgstr "вкупно: %s погодоци" -#: db_search.php:299 libraries/messages.inc.php:832 +#: db_search.php:299 libraries/messages.inc.php:828 msgid "Search in database" msgstr "Пребарување низ базата на податоци" -#: db_search.php:302 libraries/messages.inc.php:835 +#: db_search.php:302 libraries/messages.inc.php:831 msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgstr "Зборови или вредности кои се бараат (џокер знак \"%\"):" -#: db_search.php:307 libraries/messages.inc.php:842 +#: db_search.php:307 libraries/messages.inc.php:838 msgid "Find:" msgstr "Барај:" -#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1017 +#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1013 msgid "Words are separated by a space character (\" \")." msgstr "Зборовите се одвојуваат со празно место (\" \")." -#: db_search.php:325 libraries/messages.inc.php:834 +#: db_search.php:325 libraries/messages.inc.php:830 msgid "Inside table(s):" msgstr "во табела(и):" -#: db_search.php:355 libraries/messages.inc.php:833 +#: db_search.php:355 libraries/messages.inc.php:829 msgid "Inside field:" 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/messages.inc.php:431 libraries/sql_query_form.lib.php:334 +#: libraries/messages.inc.php:427 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/db_links.inc.php:63 libraries/export/latex.php:337 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:1048 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:1044 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 #: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269 msgid "Structure" @@ -634,8 +634,8 @@ 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:1642 -#: libraries/db_links.inc.php:100 libraries/messages.inc.php:272 +#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/db_links.inc.php:100 libraries/messages.inc.php:268 #: 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 @@ -645,40 +645,40 @@ 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:1641 -#: libraries/messages.inc.php:284 libraries/mult_submits.inc.php:39 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: libraries/messages.inc.php:280 libraries/mult_submits.inc.php:39 #: libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Испразни" -#: db_structure.php:316 libraries/messages.inc.php:1075 +#: db_structure.php:316 libraries/messages.inc.php:1071 #: libraries/tbl_links.inc.php:100 #, php-format msgid "Table %s has been emptied" msgstr "Табелата %s е испразнета" -#: db_structure.php:326 libraries/messages.inc.php:1229 +#: db_structure.php:326 libraries/messages.inc.php:1225 #: libraries/tbl_links.inc.php:133 #, php-format msgid "View %s has been dropped" msgstr "Прегледот %s е избришан" -#: db_structure.php:326 libraries/messages.inc.php:1074 +#: db_structure.php:326 libraries/messages.inc.php:1070 #: libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "Табелата %s е избришана" -#: db_structure.php:333 libraries/messages.inc.php:1128 +#: db_structure.php:333 libraries/messages.inc.php:1124 msgid "Tracking is active." msgstr "" -#: db_structure.php:335 libraries/messages.inc.php:1129 +#: db_structure.php:335 libraries/messages.inc.php:1125 msgid "Tracking is not active." msgstr "" #: db_structure.php:420 libraries/display_tbl.lib.php:1944 -#: libraries/messages.inc.php:1228 +#: libraries/messages.inc.php:1224 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -686,84 +686,84 @@ msgid "" msgstr "" #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 -#: libraries/messages.inc.php:1233 libraries/tbl_info.inc.php:66 +#: libraries/messages.inc.php:1229 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/messages.inc.php:773 libraries/server_links.inc.php:70 +#: libraries/messages.inc.php:769 libraries/server_links.inc.php:70 #: server_replication.php:33 server_replication.php:164 server_status.php:258 #, fuzzy msgid "Replication" msgstr "Релации" -#: db_structure.php:489 libraries/messages.inc.php:1053 +#: db_structure.php:489 libraries/messages.inc.php:1049 msgid "Sum" msgstr "Вкупно" #: db_structure.php:496 libraries/StorageEngine.class.php:356 -#: libraries/messages.inc.php:239 +#: libraries/messages.inc.php:235 #, 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 #: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086 -#: libraries/messages.inc.php:1243 libraries/mult_submits.inc.php:16 +#: libraries/messages.inc.php:1239 libraries/mult_submits.inc.php:16 #: server_databases.php:346 server_databases.php:351 #: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465 msgid "With selected:" msgstr "Обележаното:" #: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: libraries/messages.inc.php:148 server_databases.php:348 +#: libraries/messages.inc.php:144 server_databases.php:348 #: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459 msgid "Check All" msgstr "обележи ги сите" #: db_structure.php:531 libraries/display_tbl.lib.php:2077 -#: libraries/messages.inc.php:1184 libraries/replication_gui.lib.php:33 +#: libraries/messages.inc.php:1180 libraries/replication_gui.lib.php:33 #: server_databases.php:350 server_privileges.php:533 #: server_privileges.php:1564 tbl_structure.php:463 msgid "Uncheck All" msgstr "ниедно" -#: db_structure.php:536 libraries/messages.inc.php:150 +#: db_structure.php:536 libraries/messages.inc.php:146 msgid "Check tables having overhead" msgstr "табели кои имаат пречекорувања" #: db_structure.php:547 db_structure.php:548 db_structure.php:599 -#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:672 +#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:668 #: libraries/mult_submits.inc.php:28 tbl_structure.php:493 #: tbl_structure.php:495 msgid "Print view" msgstr "Преглед за печатење" -#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:153 +#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:149 #: libraries/mult_submits.inc.php:42 tbl_operations.php:579 msgid "Check table" msgstr "Проверка на табелата" -#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:590 +#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:586 #: libraries/mult_submits.inc.php:47 tbl_operations.php:619 #: tbl_structure.php:710 tbl_structure.php:712 msgid "Optimize table" msgstr "Оптимизација на табелата" -#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:758 +#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:754 #: libraries/mult_submits.inc.php:52 tbl_operations.php:609 msgid "Repair table" msgstr "Поправка на табелата" -#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:55 +#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:51 #: libraries/mult_submits.inc.php:57 tbl_operations.php:599 msgid "Analyze table" msgstr "Анализа на табелата" #: db_structure.php:557 db_structure.php:558 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/messages.inc.php:310 +#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:306 #: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84 #: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109 #: server_privileges.php:1341 setup/frames/menu.inc.php:22 @@ -771,7 +771,7 @@ msgstr "Анализа на табелата" msgid "Export" msgstr "Извоз" -#: db_tracking.php:66 libraries/messages.inc.php:1151 +#: db_tracking.php:66 libraries/messages.inc.php:1147 msgid "Tracked tables" msgstr "" @@ -779,7 +779,7 @@ msgstr "" #: 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/header_printview.inc.php:58 libraries/messages.inc.php:212 +#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:208 #: navigation.php:233 server_databases.php:169 server_privileges.php:1621 #: server_privileges.php:1682 server_privileges.php:1940 #: server_processlist.php:56 server_synchronize.php:1179 @@ -787,81 +787,81 @@ msgstr "" msgid "Database" msgstr "База на податоци" -#: db_tracking.php:73 libraries/messages.inc.php:1146 +#: db_tracking.php:73 libraries/messages.inc.php:1142 msgid "Last version" msgstr "" -#: db_tracking.php:74 libraries/messages.inc.php:1145 tbl_tracking.php:594 +#: db_tracking.php:74 libraries/messages.inc.php:1141 tbl_tracking.php:594 #, fuzzy msgid "Created" msgstr "Креирај" -#: db_tracking.php:75 libraries/messages.inc.php:1147 tbl_tracking.php:595 +#: db_tracking.php:75 libraries/messages.inc.php:1143 tbl_tracking.php:595 msgid "Updated" msgstr "" #: db_tracking.php:77 libraries/Index.class.php:440 -#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:27 +#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:23 #: server_databases.php:203 server_privileges.php:1503 #: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187 msgid "Action" msgstr "Акција" -#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:247 +#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:243 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:106 libraries/messages.inc.php:1142 tbl_tracking.php:548 +#: db_tracking.php:106 libraries/messages.inc.php:1138 tbl_tracking.php:548 #: tbl_tracking.php:606 tbl_tracking.php:613 msgid "active" msgstr "" -#: db_tracking.php:108 libraries/messages.inc.php:1143 tbl_tracking.php:550 +#: db_tracking.php:108 libraries/messages.inc.php:1139 tbl_tracking.php:550 #: tbl_tracking.php:608 tbl_tracking.php:610 msgid "not active" msgstr "" -#: db_tracking.php:121 libraries/messages.inc.php:1160 +#: db_tracking.php:121 libraries/messages.inc.php:1156 #, fuzzy msgid "Versions" msgstr "Персиски" -#: db_tracking.php:122 libraries/messages.inc.php:1132 tbl_tracking.php:379 +#: db_tracking.php:122 libraries/messages.inc.php:1128 tbl_tracking.php:379 #: tbl_tracking.php:624 msgid "Tracking report" msgstr "" -#: db_tracking.php:123 libraries/messages.inc.php:1144 tbl_tracking.php:251 +#: db_tracking.php:123 libraries/messages.inc.php:1140 tbl_tracking.php:251 #: tbl_tracking.php:624 #, fuzzy msgid "Structure snapshot" msgstr "Само структура" -#: db_tracking.php:152 libraries/messages.inc.php:1154 +#: db_tracking.php:152 libraries/messages.inc.php:1150 msgid "Untracked tables" msgstr "" -#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1153 +#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1149 #: tbl_structure.php:529 tbl_structure.php:531 #, fuzzy msgid "Track table" msgstr "Проверка на табелата" -#: db_tracking.php:200 libraries/messages.inc.php:1121 +#: db_tracking.php:200 libraries/messages.inc.php:1117 #, fuzzy msgid "Database Log" msgstr "База на податоци" -#: export.php:62 libraries/messages.inc.php:312 +#: export.php:62 libraries/messages.inc.php:308 msgid "Selected export type has to be saved in file!" msgstr "" -#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:567 +#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:563 #, php-format msgid "Insufficient space to save the file %s." msgstr "Нема доволно простор за снимање на податотеката %s." -#: export.php:294 libraries/messages.inc.php:324 +#: export.php:294 libraries/messages.inc.php:320 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -869,17 +869,17 @@ msgstr "" "Податотека %s постои на серверот, променете го името на податотеката или " "изберете опција за пишување врз неа." -#: export.php:298 export.php:302 libraries/messages.inc.php:562 +#: export.php:298 export.php:302 libraries/messages.inc.php:558 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "На веб серверот не му е допуштено да ја сочува податотеката %s." -#: export.php:629 libraries/messages.inc.php:276 +#: export.php:629 libraries/messages.inc.php:272 #, php-format msgid "Dump has been saved to file %s." msgstr "Содржината на базата на податоци е сочувана во податотеката %s." -#: import.php:60 libraries/messages.inc.php:1202 +#: import.php:60 libraries/messages.inc.php:1198 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation%" @@ -887,21 +887,21 @@ msgid "" msgstr "" #: import.php:279 import.php:332 libraries/File.class.php:849 -#: libraries/File.class.php:961 libraries/messages.inc.php:325 +#: libraries/File.class.php:961 libraries/messages.inc.php:321 msgid "File could not be read" msgstr "Податотеката не е можно да се прочита" #: import.php:287 import.php:296 import.php:315 import.php:324 #: libraries/File.class.php:1031 libraries/File.class.php:1039 #: libraries/File.class.php:1055 libraries/File.class.php:1063 -#: libraries/messages.inc.php:1189 +#: libraries/messages.inc.php:1185 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." msgstr "" -#: import.php:337 libraries/messages.inc.php:547 +#: import.php:337 libraries/messages.inc.php:543 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -909,39 +909,39 @@ msgid "" msgstr "" #: import.php:372 libraries/display_import.lib.php:24 -#: libraries/messages.inc.php:125 +#: libraries/messages.inc.php:121 msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:397 libraries/messages.inc.php:102 +#: import.php:397 libraries/messages.inc.php:98 msgid "The bookmark has been deleted." msgstr "Маркерот е избришан." -#: import.php:401 libraries/messages.inc.php:879 +#: import.php:401 libraries/messages.inc.php:875 msgid "Showing bookmark" msgstr "" -#: import.php:403 libraries/messages.inc.php:101 +#: import.php:403 libraries/messages.inc.php:97 #, php-format msgid "Bookmark %s created" msgstr "" -#: import.php:409 import.php:415 libraries/messages.inc.php:407 +#: import.php:409 import.php:415 libraries/messages.inc.php:403 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" -#: import.php:424 libraries/messages.inc.php:1107 +#: import.php:424 libraries/messages.inc.php:1103 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: index.php:190 libraries/messages.inc.php:553 +#: index.php:190 libraries/messages.inc.php:549 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin преферира веб прелистувачи кои подржуваат рамки." -#: js/messages.php:25 libraries/messages.inc.php:155 +#: js/messages.php:25 libraries/messages.inc.php:151 #: server_synchronize.php:345 server_synchronize.php:357 #: server_synchronize.php:373 server_synchronize.php:380 #: server_synchronize.php:739 server_synchronize.php:767 @@ -949,118 +949,118 @@ msgstr "phpMyAdmin преферира веб прелистувачи кои п msgid "Click to select" msgstr "" -#: js/messages.php:26 libraries/messages.inc.php:156 +#: js/messages.php:26 libraries/messages.inc.php:152 msgid "Click to unselect" msgstr "" #: js/messages.php:27 libraries/import.lib.php:103 -#: libraries/messages.inc.php:550 sql.php:89 +#: libraries/messages.inc.php:546 sql.php:89 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" командата е оневозможена." -#: js/messages.php:30 libraries/messages.inc.php:270 +#: js/messages.php:30 libraries/messages.inc.php:266 #: libraries/mult_submits.inc.php:258 sql.php:188 msgid "Do you really want to " msgstr "Дали навистина сакате да " -#: js/messages.php:31 libraries/messages.inc.php:271 +#: js/messages.php:31 libraries/messages.inc.php:267 #: libraries/mult_submits.inc.php:258 sql.php:172 msgid "You are about to DESTROY a complete database!" msgstr "Со ова ја БРИШЕТЕ комплетната база на податоци!" -#: js/messages.php:34 libraries/messages.inc.php:94 +#: js/messages.php:34 libraries/messages.inc.php:90 msgid "You are about to DISABLE a BLOB Repository!" msgstr "" -#: js/messages.php:35 libraries/messages.inc.php:91 +#: js/messages.php:35 libraries/messages.inc.php:87 #, php-format msgid "Are you sure you want to disable all BLOB references for database %s?" msgstr "" -#: js/messages.php:38 libraries/messages.inc.php:342 +#: js/messages.php:38 libraries/messages.inc.php:338 msgid "Missing value in the form!" msgstr "Недостасува вредност во образецот!" -#: js/messages.php:39 libraries/messages.inc.php:570 +#: js/messages.php:39 libraries/messages.inc.php:566 msgid "This is not a number!" msgstr "Ова не е број!" -#: js/messages.php:42 libraries/messages.inc.php:380 +#: js/messages.php:42 libraries/messages.inc.php:376 msgid "The host name is empty!" msgstr "Името на host-от е празно!" -#: js/messages.php:43 libraries/messages.inc.php:1208 +#: js/messages.php:43 libraries/messages.inc.php:1204 msgid "The user name is empty!" msgstr "Не е внесен назив на корисник!" -#: js/messages.php:44 libraries/messages.inc.php:607 +#: js/messages.php:44 libraries/messages.inc.php:603 #: server_privileges.php:1197 user_password.php:70 msgid "The password is empty!" msgstr "Лозинка е празна!" -#: js/messages.php:45 libraries/messages.inc.php:609 +#: js/messages.php:45 libraries/messages.inc.php:605 #: server_privileges.php:1195 user_password.php:73 msgid "The passwords aren't the same!" msgstr "Лозинките не се идентични!" -#: js/messages.php:49 libraries/messages.inc.php:123 pmd_general.php:342 +#: js/messages.php:49 libraries/messages.inc.php:119 pmd_general.php:342 #: pmd_general.php:379 msgid "Cancel" msgstr "" -#: js/messages.php:52 libraries/messages.inc.php:514 +#: js/messages.php:52 libraries/messages.inc.php:510 msgid "Modifications have been saved" msgstr "Измените се сочувани" -#: js/messages.php:53 libraries/messages.inc.php:741 +#: js/messages.php:53 libraries/messages.inc.php:737 #, fuzzy msgid "Relation deleted" msgstr "Релационен поглед" -#: js/messages.php:54 libraries/messages.inc.php:340 +#: js/messages.php:54 libraries/messages.inc.php:336 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:55 libraries/messages.inc.php:434 +#: js/messages.php:55 libraries/messages.inc.php:430 #, fuzzy msgid "Internal relation added" msgstr "Внатрешни релации" -#: js/messages.php:56 libraries/messages.inc.php:299 +#: js/messages.php:56 libraries/messages.inc.php:295 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:57 libraries/messages.inc.php:300 +#: js/messages.php:57 libraries/messages.inc.php:296 msgid "Error: relation already exists." msgstr "" -#: js/messages.php:58 libraries/messages.inc.php:302 +#: js/messages.php:58 libraries/messages.inc.php:298 msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:59 libraries/messages.inc.php:351 +#: js/messages.php:59 libraries/messages.inc.php:347 #: libraries/relation.lib.php:107 msgid "General relation features" msgstr "Општи особини на релациите" -#: js/messages.php:59 libraries/messages.inc.php:260 +#: js/messages.php:59 libraries/messages.inc.php:256 #: libraries/relation.lib.php:101 libraries/relation.lib.php:108 msgid "Disabled" msgstr "Оневозможено" -#: js/messages.php:60 libraries/messages.inc.php:850 +#: js/messages.php:60 libraries/messages.inc.php:846 msgid "Select referenced key" msgstr "" -#: js/messages.php:61 libraries/messages.inc.php:848 +#: js/messages.php:61 libraries/messages.inc.php:844 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:62 libraries/messages.inc.php:653 +#: js/messages.php:62 libraries/messages.inc.php:649 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:63 libraries/messages.inc.php:142 pmd_general.php:77 +#: js/messages.php:63 libraries/messages.inc.php:138 pmd_general.php:77 #: tbl_relation.php:548 msgid "Choose field to display" msgstr "Избери полиња за прикажување" @@ -1080,9 +1080,9 @@ msgid "Prev" msgstr "Претходна" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2332 -#: libraries/common.lib.php:2335 libraries/display_tbl.lib.php:338 -#: libraries/messages.inc.php:543 server_binlog.php:205 server_binlog.php:207 +#: js/messages.php:77 libraries/common.lib.php:2344 +#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: libraries/messages.inc.php:539 server_binlog.php:205 server_binlog.php:207 #: tbl_printview.php:424 tbl_structure.php:802 msgid "Next" msgstr "Следен" @@ -1157,27 +1157,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1543 +#: js/messages.php:97 libraries/common.lib.php:1555 msgid "Jan" msgstr "јан" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1545 +#: js/messages.php:99 libraries/common.lib.php:1557 msgid "Feb" msgstr "феб" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1547 +#: js/messages.php:101 libraries/common.lib.php:1559 msgid "Mar" msgstr "мар" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1549 +#: js/messages.php:103 libraries/common.lib.php:1561 msgid "Apr" msgstr "апр" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1551 +#: js/messages.php:105 libraries/common.lib.php:1563 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1185,37 +1185,37 @@ msgid "May" msgstr "мај" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1553 +#: js/messages.php:107 libraries/common.lib.php:1565 msgid "Jun" msgstr "јун" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1555 +#: js/messages.php:109 libraries/common.lib.php:1567 msgid "Jul" msgstr "јул" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1557 +#: js/messages.php:111 libraries/common.lib.php:1569 msgid "Aug" msgstr "авг" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1559 +#: js/messages.php:113 libraries/common.lib.php:1571 msgid "Sep" msgstr "сеп" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1561 +#: js/messages.php:115 libraries/common.lib.php:1573 msgid "Oct" msgstr "окт" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1563 +#: js/messages.php:117 libraries/common.lib.php:1575 msgid "Nov" msgstr "нов" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1565 +#: js/messages.php:119 libraries/common.lib.php:1577 msgid "Dec" msgstr "дек" @@ -1256,37 +1256,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1568 +#: js/messages.php:132 libraries/common.lib.php:1580 msgid "Sun" msgstr "Нед" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1570 +#: js/messages.php:134 libraries/common.lib.php:1582 msgid "Mon" msgstr "Пон" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1572 +#: js/messages.php:136 libraries/common.lib.php:1584 msgid "Tue" msgstr "Вто" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1574 +#: js/messages.php:138 libraries/common.lib.php:1586 msgid "Wed" msgstr "Сре" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1576 +#: js/messages.php:140 libraries/common.lib.php:1588 msgid "Thu" msgstr "Чет" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1578 +#: js/messages.php:142 libraries/common.lib.php:1590 msgid "Fri" msgstr "Пет" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1580 +#: js/messages.php:144 libraries/common.lib.php:1592 msgid "Sat" msgstr "Саб" @@ -1360,43 +1360,43 @@ msgstr "се користи" msgid "Second" msgstr "во секунда" -#: libraries/Config.class.php:1015 libraries/messages.inc.php:338 +#: libraries/Config.class.php:1015 libraries/messages.inc.php:334 msgid "Font size" msgstr "" #: libraries/File.class.php:344 libraries/File.class.php:432 #: libraries/File.class.php:569 libraries/File.class.php:708 -#: libraries/messages.inc.php:1201 +#: libraries/messages.inc.php:1197 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.class.php:414 libraries/messages.inc.php:1198 +#: libraries/File.class.php:414 libraries/messages.inc.php:1194 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:417 libraries/messages.inc.php:1197 +#: libraries/File.class.php:417 libraries/messages.inc.php:1193 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:420 libraries/messages.inc.php:1200 +#: libraries/File.class.php:420 libraries/messages.inc.php:1196 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:423 libraries/messages.inc.php:1199 +#: libraries/File.class.php:423 libraries/messages.inc.php:1195 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:426 libraries/messages.inc.php:1195 +#: libraries/File.class.php:426 libraries/messages.inc.php:1191 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:429 libraries/messages.inc.php:1196 +#: libraries/File.class.php:429 libraries/messages.inc.php:1192 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:908 libraries/messages.inc.php:319 +#: libraries/File.class.php:908 libraries/messages.inc.php:315 #, fuzzy msgid "" "Error moving the uploaded file, see [a@./Documentation." @@ -1405,34 +1405,34 @@ msgstr "" "Бројот на записи може да биде приближен. За подетални информации види FAQ " "3.11" -#: libraries/Index.class.php:428 libraries/messages.inc.php:554 +#: libraries/Index.class.php:428 libraries/messages.inc.php:550 #: tbl_relation.php:529 msgid "No index defined!" msgstr "Клучот не е дефиниран!" -#: libraries/Index.class.php:433 libraries/messages.inc.php:411 +#: libraries/Index.class.php:433 libraries/messages.inc.php:407 #: server_databases.php:132 tbl_tracking.php:316 msgid "Indexes" msgstr "Клучеви" -#: libraries/Index.class.php:444 libraries/messages.inc.php:1186 +#: libraries/Index.class.php:444 libraries/messages.inc.php:1182 #: 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:475 tbl_tracking.php:322 msgid "Unique" msgstr "Единствен" -#: libraries/Index.class.php:445 libraries/messages.inc.php:596 +#: libraries/Index.class.php:445 libraries/messages.inc.php:592 #: tbl_tracking.php:323 msgid "Packed" msgstr "" -#: libraries/Index.class.php:447 libraries/messages.inc.php:131 +#: libraries/Index.class.php:447 libraries/messages.inc.php:127 #: tbl_tracking.php:325 msgid "Cardinality" msgstr "Кардиналност" -#: libraries/Index.class.php:450 libraries/messages.inc.php:162 +#: libraries/Index.class.php:450 libraries/messages.inc.php:158 #: tbl_tracking.php:279 tbl_tracking.php:328 #, fuzzy msgid "Comment" @@ -1441,29 +1441,29 @@ msgstr "Коментари" #: libraries/Index.class.php:466 libraries/common.lib.php:616 #: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:280 pdf_pages.php:280 +#: libraries/messages.inc.php:276 pdf_pages.php:280 #: setup/frames/index.inc.php:124 setup/lib/messages.inc.php:352 #: tbl_row_action.php:69 msgid "Edit" msgstr "Промени" -#: libraries/Index.class.php:472 libraries/messages.inc.php:666 +#: libraries/Index.class.php:472 libraries/messages.inc.php:662 msgid "The primary key has been dropped" msgstr "Примарниот клуч е избришан" -#: libraries/Index.class.php:476 libraries/messages.inc.php:413 +#: libraries/Index.class.php:476 libraries/messages.inc.php:409 #, php-format msgid "Index %s has been dropped" msgstr "Клучот %s е избиршан" -#: libraries/Index.class.php:576 libraries/messages.inc.php:412 +#: libraries/Index.class.php:576 libraries/messages.inc.php:408 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "" -#: libraries/List_Database.class.php:431 libraries/messages.inc.php:218 +#: libraries/List_Database.class.php:431 libraries/messages.inc.php:214 #: libraries/server_links.inc.php:41 server_databases.php:88 #: server_privileges.php:1621 setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" @@ -1492,85 +1492,85 @@ msgid_plural "%1$d rows inserted." msgstr[0] "Нема селектирани записи" msgstr[1] "Нема селектирани записи" -#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:549 +#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:545 msgid "" "There is no detailed status information available for this storage engine." msgstr "Нема детални информации за статусот на овој вид на складиште." -#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:291 +#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:287 #, php-format msgid "%s is available on this MySQL server." msgstr "%s е достапен на овој MySQL сервер." -#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:292 +#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:288 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s е оневозможен на овој MySQL сервер." -#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:294 +#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:290 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "Овој MySQL сервер не подржува %s вид на складиште." -#: libraries/Table.class.php:1019 libraries/messages.inc.php:443 +#: libraries/Table.class.php:1019 libraries/messages.inc.php:439 msgid "Invalid database" msgstr "" -#: libraries/Table.class.php:1033 libraries/messages.inc.php:450 +#: libraries/Table.class.php:1033 libraries/messages.inc.php:446 #: tbl_get_field.php:26 msgid "Invalid table name" msgstr "" -#: libraries/Table.class.php:1048 libraries/messages.inc.php:301 +#: libraries/Table.class.php:1048 libraries/messages.inc.php:297 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "" -#: libraries/Table.class.php:1132 libraries/messages.inc.php:754 +#: libraries/Table.class.php:1132 libraries/messages.inc.php:750 #, php-format msgid "Table %s has been renamed to %s" msgstr "Табелата %s е преименувана во %s" -#: libraries/Theme.class.php:162 libraries/messages.inc.php:1099 +#: libraries/Theme.class.php:162 libraries/messages.inc.php:1095 #, php-format msgid "No valid image path for theme %s found!" msgstr "" -#: libraries/Theme.class.php:384 libraries/messages.inc.php:1097 +#: libraries/Theme.class.php:384 libraries/messages.inc.php:1093 msgid "No preview available." msgstr "" -#: libraries/Theme.class.php:387 libraries/messages.inc.php:1089 +#: libraries/Theme.class.php:387 libraries/messages.inc.php:1085 msgid "take it" msgstr "превземи" -#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1096 +#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1092 #, php-format msgid "Default theme %s not found!" msgstr "" -#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1098 +#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1094 #, php-format msgid "Theme %s not found!" msgstr "" -#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1100 +#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1096 #, php-format msgid "Theme path not found for theme %s!" msgstr "" -#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1101 +#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1097 #: test/theme.php:161 themes.php:21 themes.php:41 msgid "Theme / Style" msgstr "Тема / стил" -#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:172 +#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:168 msgid "Cannot connect: invalid settings." msgstr "Не може да се поврзам: лоши подесувања." #: libraries/auth/config.auth.lib.php:92 #: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65 -#: libraries/messages.inc.php:1238 test/theme.php:152 +#: libraries/messages.inc.php:1234 test/theme.php:152 #, php-format msgid "Welcome to %s" msgstr "%s Добредојдовте" @@ -1594,51 +1594,51 @@ msgstr "" "config.inc.php и уверите се дека одговараат на податоците кои сте ги добили " "од администраторот на MySQL серверот." -#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:488 +#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:484 msgid "Log in" msgstr "Најави се" #: libraries/auth/cookie.auth.lib.php:246 -#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:659 +#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:655 #: libraries/navigation_header.inc.php:93 #: libraries/navigation_header.inc.php:95 msgid "phpMyAdmin documentation" msgstr "phpMyAdmin документација" #: libraries/auth/cookie.auth.lib.php:258 -#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:492 +#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:488 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:493 +#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:489 msgid "Server:" msgstr "Сервер" -#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:494 +#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:490 msgid "Username:" msgstr "Корисничко име:" -#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:491 +#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:487 msgid "Password:" msgstr "Лозинка:" -#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:854 +#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:850 msgid "Server Choice" msgstr "Избор на сервер" #: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 -#: libraries/messages.inc.php:177 +#: libraries/messages.inc.php:173 msgid "Cookies must be enabled past this point." msgstr "вашиот веб прелистувач треба да допушти cookies" #: libraries/auth/cookie.auth.lib.php:671 -#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:489 +#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:485 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" #: libraries/auth/cookie.auth.lib.php:675 -#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:544 +#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:540 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" @@ -1647,53 +1647,53 @@ msgstr "" #: libraries/auth/cookie.auth.lib.php:685 #: libraries/auth/cookie.auth.lib.php:687 -#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:126 +#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:122 msgid "Cannot log in to the MySQL server" msgstr "Не можам да се пријавам на MySQL серверот" -#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1245 +#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1241 msgid "Wrong username/password. Access denied." msgstr "Погрешно корисничко име/лозинка. Пристапот не е допуштен." #: libraries/auth/swekey/swekey.auth.lib.php:118 -#: libraries/messages.inc.php:1057 +#: libraries/messages.inc.php:1053 #, php-format msgid "File %s does not contain any key id" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:157 #: libraries/auth/swekey/swekey.auth.lib.php:180 -#: libraries/messages.inc.php:1056 +#: libraries/messages.inc.php:1052 msgid "Hardware authentication failed" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:166 -#: libraries/messages.inc.php:1058 +#: libraries/messages.inc.php:1054 msgid "No valid authentication key plugged" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:202 -#: libraries/messages.inc.php:1055 +#: libraries/messages.inc.php:1051 msgid "Authenticating..." msgstr "" -#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1230 +#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1226 msgid "View image" msgstr "" -#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:652 +#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:648 msgid "Play audio" msgstr "" -#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1232 +#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1228 msgid "View video" msgstr "" -#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:269 +#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:265 msgid "Download file" msgstr "" -#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:128 +#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:124 msgid "" "Couldn't load the iconv or recode extension needed for charset conversion. " "Either configure PHP to enable these extensions or disable charset " @@ -1705,7 +1705,7 @@ msgstr "" #: libraries/charset_conversion.lib.php:79 #: libraries/charset_conversion.lib.php:90 -#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:130 +#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:126 msgid "" "Couldn't use the iconv, libiconv, or recode_string functions, although the " "necessary extensions appear to be loaded. Check your PHP configuration." @@ -1713,7 +1713,7 @@ msgstr "" "Не можам да ги користам iconv или libiconv или recode_string функциите иако " "екстензијата пријавува дека е вчитана. Проверите ја вашата PHP конфигурација." -#: libraries/common.inc.php:583 libraries/messages.inc.php:170 +#: libraries/common.inc.php:583 libraries/messages.inc.php:166 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!" @@ -1747,22 +1747,22 @@ msgstr "" msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:636 libraries/messages.inc.php:448 +#: libraries/common.inc.php:636 libraries/messages.inc.php:444 #, 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/messages.inc.php:856 libraries/select_server.lib.php:41 +#: libraries/messages.inc.php:852 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/messages.inc.php:437 +#: libraries/common.inc.php:823 libraries/messages.inc.php:433 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.lib.php:147 libraries/messages.inc.php:499 +#: libraries/common.lib.php:147 libraries/messages.inc.php:495 #, php-format msgid "Max: %s%s" msgstr "Максимална големина: %s%s" @@ -1784,7 +1784,7 @@ msgstr "Пратено" #: libraries/common.lib.php:428 libraries/common.lib.php:430 #: libraries/common.lib.php:432 libraries/common.lib.php:448 #: libraries/common.lib.php:450 libraries/dbg/setup.php:25 -#: libraries/display_export.lib.php:164 libraries/messages.inc.php:267 +#: libraries/display_export.lib.php:164 libraries/messages.inc.php:263 #: libraries/relation.lib.php:97 libraries/sql_query_form.lib.php:451 #: libraries/sql_query_form.lib.php:454 main.php:229 pdf_pages.php:37 #: pdf_pages.php:43 pdf_pages.php:49 pdf_pages.php:54 @@ -1794,55 +1794,55 @@ msgstr "Документација" #: libraries/common.lib.php:581 libraries/core.lib.php:234 #: libraries/core.lib.php:263 libraries/import.lib.php:134 -#: libraries/messages.inc.php:297 pdf_schema.php:32 pdf_schema.php:232 +#: libraries/messages.inc.php:293 pdf_schema.php:32 pdf_schema.php:232 #: tbl_change.php:1027 tbl_operations.php:213 tbl_relation.php:290 #: view_operations.php:62 msgid "Error" msgstr "Грешка" #: libraries/common.lib.php:595 libraries/header_printview.inc.php:61 -#: libraries/messages.inc.php:1023 server_processlist.php:60 +#: libraries/messages.inc.php:1019 server_processlist.php:60 #: server_status.php:247 msgid "SQL query" msgstr "SQL упит" -#: libraries/common.lib.php:634 libraries/messages.inc.php:538 +#: libraries/common.lib.php:634 libraries/messages.inc.php:534 msgid "MySQL said: " msgstr "MySQL порака: " -#: libraries/common.lib.php:667 libraries/messages.inc.php:76 +#: libraries/common.lib.php:667 libraries/messages.inc.php:72 #: pdf_schema.php:241 user_password.php:115 msgid "Back" msgstr "Назад" -#: libraries/common.lib.php:1177 libraries/messages.inc.php:309 +#: libraries/common.lib.php:1177 libraries/messages.inc.php:305 #: setup/lib/messages.inc.php:353 msgid "Explain SQL" msgstr "Објасни SQL" -#: libraries/common.lib.php:1180 libraries/messages.inc.php:551 +#: libraries/common.lib.php:1180 libraries/messages.inc.php:547 msgid "Skip Explain SQL" msgstr "Прескокни ги објаснувањата на SQL-от" -#: libraries/common.lib.php:1212 libraries/messages.inc.php:563 +#: libraries/common.lib.php:1212 libraries/messages.inc.php:559 msgid "Without PHP Code" msgstr "без PHP код" -#: libraries/common.lib.php:1215 libraries/messages.inc.php:649 +#: libraries/common.lib.php:1215 libraries/messages.inc.php:645 #: setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "Направи PHP код" -#: libraries/common.lib.php:1233 libraries/messages.inc.php:737 +#: libraries/common.lib.php:1233 libraries/messages.inc.php:733 #: server_status.php:341 setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "Освежи" -#: libraries/common.lib.php:1242 libraries/messages.inc.php:575 +#: libraries/common.lib.php:1242 libraries/messages.inc.php:571 msgid "Skip Validate SQL" msgstr "Прескокни ја проверката на SQL" -#: libraries/common.lib.php:1245 libraries/messages.inc.php:1220 +#: libraries/common.lib.php:1245 libraries/messages.inc.php:1216 #: setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "Провери SQL" @@ -1858,11 +1858,11 @@ msgid "Inline" msgstr "Складишта" #: libraries/common.lib.php:1332 libraries/common.lib.php:1347 -#: libraries/messages.inc.php:713 +#: libraries/messages.inc.php:709 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1351 libraries/messages.inc.php:1108 +#: libraries/common.lib.php:1351 libraries/messages.inc.php:1104 #: libraries/tbl_triggers.lib.php:28 server_processlist.php:58 msgid "Time" msgstr "Време" @@ -1896,46 +1896,56 @@ msgstr "PB" msgid "EiB" msgstr "EB" +#. l10n: Thousands separator +#: libraries/common.lib.php:1417 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: libraries/common.lib.php:1419 +msgid "." +msgstr "." + #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1584 +#: libraries/common.lib.php:1596 #: libraries/transformations/text_plain__dateformat.inc.php:28 msgid "%B %d, %Y at %I:%M %p" msgstr "%d. %B %Y. во %H:%M" -#: libraries/common.lib.php:1886 +#: libraries/common.lib.php:1898 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s денови, %s часови, %s минути и %s секунди" -#: libraries/common.lib.php:2301 libraries/common.lib.php:2304 -#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:664 +#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:660 #: server_status.php:608 msgid "Begin" msgstr "Почеток" -#: libraries/common.lib.php:2302 libraries/common.lib.php:2305 -#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:665 +#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:661 #: server_binlog.php:168 server_binlog.php:170 msgid "Previous" msgstr "Претходна" -#: libraries/common.lib.php:2333 libraries/common.lib.php:2336 -#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:289 +#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:285 msgid "End" msgstr "Крај" -#: libraries/common.lib.php:2409 libraries/messages.inc.php:455 +#: libraries/common.lib.php:2421 libraries/messages.inc.php:451 #, php-format msgid "Jump to database "%s"." msgstr "Премин на базата "%s"." -#: libraries/common.lib.php:2429 libraries/messages.inc.php:461 +#: libraries/common.lib.php:2441 libraries/messages.inc.php:457 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/core.lib.php:286 libraries/dbg/setup.php:22 -#: libraries/messages.inc.php:127 +#: libraries/messages.inc.php:123 #, php-format msgid "" "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " @@ -1945,75 +1955,75 @@ msgstr "" "конфигурацијата" #: libraries/db_events.inc.php:20 libraries/db_events.inc.php:22 -#: libraries/export/sql.php:415 libraries/messages.inc.php:306 +#: libraries/export/sql.php:415 libraries/messages.inc.php:302 msgid "Events" msgstr "" #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 -#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:541 +#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:537 #: libraries/tbl_triggers.lib.php:27 setup/frames/index.inc.php:112 msgid "Name" msgstr "Име" -#: libraries/db_links.inc.php:45 libraries/messages.inc.php:216 +#: libraries/db_links.inc.php:45 libraries/messages.inc.php:212 #, php-format msgid "Database %s has been dropped." msgstr "Базата на податоци %s не е прифатена" #: libraries/db_links.inc.php:57 libraries/db_links.inc.php:58 -#: libraries/db_links.inc.php:59 libraries/messages.inc.php:234 +#: libraries/db_links.inc.php:59 libraries/messages.inc.php:230 msgid "Database seems to be empty!" msgstr "" -#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1025 +#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1021 #: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60 #: querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1152 +#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1148 #: libraries/tbl_links.inc.php:69 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:86 libraries/messages.inc.php:719 +#: libraries/db_links.inc.php:86 libraries/messages.inc.php:715 msgid "Query" msgstr "Упит по пример" -#: libraries/db_links.inc.php:91 libraries/messages.inc.php:253 +#: libraries/db_links.inc.php:91 libraries/messages.inc.php:249 msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:98 libraries/messages.inc.php:397 +#: libraries/db_links.inc.php:98 libraries/messages.inc.php:393 #: libraries/server_links.inc.php:88 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:104 libraries/messages.inc.php:587 +#: libraries/db_links.inc.php:104 libraries/messages.inc.php:583 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" msgstr "Операции" -#: libraries/db_links.inc.php:111 libraries/messages.inc.php:709 +#: libraries/db_links.inc.php:111 libraries/messages.inc.php:705 #: libraries/server_links.inc.php:66 server_privileges.php:72 #: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117 msgid "Privileges" msgstr "Привилегии" #: libraries/db_routines.inc.php:30 libraries/db_routines.inc.php:32 -#: libraries/messages.inc.php:812 +#: libraries/messages.inc.php:808 msgid "Routines" msgstr "Рутини" -#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:811 +#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:807 msgid "Return type" msgstr "" #: libraries/db_structure.lib.php:57 libraries/display_tbl.lib.php:1848 -#: libraries/messages.inc.php:65 +#: libraries/messages.inc.php:61 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -2021,42 +2031,42 @@ msgstr "" "Бројот на записи може да биде приближен. За подетални информации види FAQ " "3.11" -#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:593 +#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:589 #: server_databases.php:142 tbl_printview.php:336 tbl_structure.php:683 msgid "Overhead" msgstr "Пречекорување" #: libraries/dbi/mysql.dbi.lib.php:112 libraries/dbi/mysqli.dbi.lib.php:124 -#: libraries/messages.inc.php:176 +#: libraries/messages.inc.php:172 msgid "Connection for controluser as defined in your configuration failed." msgstr "" #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 -#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:855 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:851 msgid "The server is not responding" msgstr "Серверот не одговара" #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:1010 +#: libraries/messages.inc.php:1006 msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "(или приклучокот со локалниот MySQL сервер не е исправно подесен)" -#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:255 +#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:251 #: tbl_structure.php:609 msgid "Details..." msgstr "" -#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:143 +#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:139 #: main.php:91 user_password.php:111 user_password.php:129 msgid "Change password" msgstr "Промена на лозинка" -#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:561 +#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:557 #: libraries/replication_gui.lib.php:341 server_privileges.php:768 msgid "No Password" msgstr "Нема лозинка" -#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:610 +#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:606 #: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60 #: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335 #: libraries/replication_gui.lib.php:345 server_privileges.php:757 @@ -2065,13 +2075,13 @@ msgstr "Нема лозинка" msgid "Password" msgstr "Лозинка" -#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:806 +#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:802 #: libraries/replication_gui.lib.php:349 libraries/replication_gui.lib.php:352 #: server_privileges.php:776 server_privileges.php:779 msgid "Re-type" msgstr "Повтори внес" -#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:608 +#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:604 msgid "Password Hashing" msgstr "Хеширање на лозинката" @@ -2081,90 +2091,90 @@ msgstr "Хеширање на лозинката" msgid "MySQL 4.0 compatible" msgstr "MySQL 4.0 компатибилно" -#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:353 +#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:349 #: libraries/replication_gui.lib.php:356 server_privileges.php:783 msgid "Generate Password" msgstr "Генерирање на лозинка" -#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:352 +#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:348 #: libraries/replication_gui.lib.php:359 server_privileges.php:786 msgid "Generate" msgstr "Генерирај" #: libraries/display_create_database.lib.php:22 -#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:189 +#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:185 msgid "Create new database" msgstr "Креирај нова база на податоци" -#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:185 +#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:181 msgid "Create" msgstr "Креирај" -#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:564 +#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:560 #: server_privileges.php:74 server_privileges.php:1388 #: server_replication.php:35 msgid "No Privileges" msgstr "Нема привилегии" -#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:445 +#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:441 msgid "Table must have at least one field." msgstr "" -#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:190 +#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:186 #, php-format msgid "Create table on database %s" msgstr "Креирај нова табела во базата на податоци %s" -#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:577 +#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:573 msgid "Number of fields" msgstr "" -#: libraries/display_export.lib.php:42 libraries/messages.inc.php:124 +#: libraries/display_export.lib.php:42 libraries/messages.inc.php:120 msgid "Could not load export plugins, please check your installation!" msgstr "" -#: libraries/display_export.lib.php:107 libraries/messages.inc.php:277 +#: libraries/display_export.lib.php:107 libraries/messages.inc.php:273 #, php-format msgid "Dump %s row(s) starting at record # %s" msgstr "Прикажи %s записи почнувајќи од запис %s." -#: libraries/display_export.lib.php:115 libraries/messages.inc.php:274 +#: libraries/display_export.lib.php:115 libraries/messages.inc.php:270 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:125 libraries/messages.inc.php:852 +#: libraries/display_export.lib.php:125 libraries/messages.inc.php:848 #: setup/lib/messages.inc.php:82 msgid "Save as file" msgstr "Сочувај како податотека" -#: libraries/display_export.lib.php:134 libraries/messages.inc.php:828 +#: libraries/display_export.lib.php:134 libraries/messages.inc.php:824 #, php-format msgid "Save on server in %s directory" msgstr "Сочувај на серверот во директориумот %s" -#: libraries/display_export.lib.php:142 libraries/messages.inc.php:594 +#: libraries/display_export.lib.php:142 libraries/messages.inc.php:590 #: setup/lib/messages.inc.php:90 msgid "Overwrite existing file(s)" msgstr "Препиши ги постоечките податотеки" -#: libraries/display_export.lib.php:148 libraries/messages.inc.php:330 +#: libraries/display_export.lib.php:148 libraries/messages.inc.php:326 msgid "File name template" msgstr "Шаблон на име на податотека" -#: libraries/display_export.lib.php:152 libraries/messages.inc.php:327 +#: libraries/display_export.lib.php:152 libraries/messages.inc.php:323 #, fuzzy msgid "server name" msgstr "Назив на корисник" -#: libraries/display_export.lib.php:155 libraries/messages.inc.php:326 +#: libraries/display_export.lib.php:155 libraries/messages.inc.php:322 msgid "database name" msgstr "" -#: libraries/display_export.lib.php:158 libraries/messages.inc.php:328 +#: libraries/display_export.lib.php:158 libraries/messages.inc.php:324 msgid "table name" msgstr "" -#: libraries/display_export.lib.php:162 libraries/messages.inc.php:329 +#: libraries/display_export.lib.php:162 libraries/messages.inc.php:325 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2172,24 +2182,24 @@ msgid "" "3$s. Other text will be kept as is." msgstr "" -#: libraries/display_export.lib.php:202 libraries/messages.inc.php:331 +#: libraries/display_export.lib.php:202 libraries/messages.inc.php:327 msgid "remember template" msgstr "запамти го шаблонот" #: libraries/display_export.lib.php:210 libraries/display_import.lib.php:178 -#: libraries/display_import.lib.php:191 libraries/messages.inc.php:145 +#: libraries/display_import.lib.php:191 libraries/messages.inc.php:141 #: libraries/sql_query_form.lib.php:549 msgid "Character set of the file:" msgstr "Кодна страна на податотеката:" -#: libraries/display_export.lib.php:235 libraries/messages.inc.php:166 +#: libraries/display_export.lib.php:235 libraries/messages.inc.php:162 #: setup/lib/messages.inc.php:84 msgid "Compression" 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/messages.inc.php:558 +#: libraries/export/sql.php:868 libraries/messages.inc.php:554 #: libraries/tbl_properties.inc.php:575 server_privileges.php:1836 #: server_processlist.php:75 msgid "None" @@ -2213,247 +2223,247 @@ msgstr "\"gzip\"" msgid "bzipped" msgstr "\"bzip\"" -#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1018 +#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1014 msgid "SQL compatibility mode" msgstr "" -#: libraries/display_import.lib.php:67 libraries/messages.inc.php:398 +#: libraries/display_import.lib.php:67 libraries/messages.inc.php:394 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " "browsers." msgstr "" -#: libraries/display_import.lib.php:77 libraries/messages.inc.php:406 +#: libraries/display_import.lib.php:77 libraries/messages.inc.php:402 msgid "The file is being processed, please be patient." msgstr "" -#: libraries/display_import.lib.php:99 libraries/messages.inc.php:408 +#: libraries/display_import.lib.php:99 libraries/messages.inc.php:404 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." msgstr "" -#: libraries/display_import.lib.php:126 libraries/messages.inc.php:333 +#: libraries/display_import.lib.php:126 libraries/messages.inc.php:329 msgid "File to import" msgstr "" -#: libraries/display_import.lib.php:137 libraries/messages.inc.php:486 +#: libraries/display_import.lib.php:137 libraries/messages.inc.php:482 #: libraries/sql_query_form.lib.php:524 msgid "Location of the text file" msgstr "Локација на текстуалната податотека" -#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1203 +#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1199 msgid "File uploads are not allowed on this server." msgstr "" -#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1235 +#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1231 #: libraries/sql_query_form.lib.php:533 tbl_change.php:1028 msgid "The directory you set for upload work cannot be reached" msgstr "Директориумот кој го избравте за праќање не е достапен" -#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1236 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1232 #: libraries/sql_query_form.lib.php:536 tbl_change.php:1031 msgid "web server upload directory" msgstr "директориум за праќање на веб серверот " -#: libraries/display_import.lib.php:212 libraries/messages.inc.php:167 +#: libraries/display_import.lib.php:212 libraries/messages.inc.php:163 #, php-format msgid "Imported file compression will be automatically detected from: %s" msgstr "" -#: libraries/display_import.lib.php:219 libraries/messages.inc.php:600 +#: libraries/display_import.lib.php:219 libraries/messages.inc.php:596 msgid "Partial import" msgstr "" -#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1105 +#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1101 #, php-format msgid "" "Previous import timed out, after resubmitting will continue from position %d." msgstr "" -#: libraries/display_import.lib.php:232 libraries/messages.inc.php:51 +#: libraries/display_import.lib.php:232 libraries/messages.inc.php:47 msgid "" "Allow the interruption of an import in case the script detects it is close " "to the PHP timeout limit. This might be good way to import large files, " "however it can break transactions." msgstr "" -#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1004 +#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1000 #: setup/lib/messages.inc.php:161 msgid "Number of records (queries) to skip from start" msgstr "" -#: libraries/display_import.lib.php:255 libraries/messages.inc.php:396 +#: libraries/display_import.lib.php:255 libraries/messages.inc.php:392 #: setup/lib/messages.inc.php:160 msgid "Format of imported file" msgstr "" #: libraries/display_select_lang.lib.php:45 -#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:465 +#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:461 #: setup/frames/index.inc.php:70 msgid "Language" msgstr "" -#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:447 +#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:443 #, php-format msgid "%d is not valid row number." msgstr "" -#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:814 +#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:810 msgid "row(s) starting from record #" msgstr " записи почнувајќи од записот" -#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:817 +#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:813 msgid "horizontal" msgstr "хоризонтален" -#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:816 +#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:812 msgid "horizontal (rotated headers)" msgstr "хоризонтален (ротирани заглавија)" -#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:819 +#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:815 msgid "vertical" msgstr "вертикален" -#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:818 +#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:814 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "во %s мод и повторувај заглавие после %s записа" -#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:495 +#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:491 msgid "This operation could take a long time. Proceed anyway?" msgstr "Оваа операција може да потрае. Да ли да продолжиме?" -#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1012 +#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1008 msgid "Sort by key" msgstr "Подредување по клуч" #: libraries/display_tbl.lib.php:555 libraries/import.lib.php:1082 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:591 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:587 #: tbl_select.php:267 tbl_structure.php:754 #, fuzzy msgid "Options" msgstr "Операции" #: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:570 -#: libraries/messages.inc.php:601 +#: libraries/messages.inc.php:597 msgid "Partial Texts" msgstr "Дел на текстот" #: libraries/display_tbl.lib.php:561 libraries/display_tbl.lib.php:574 -#: libraries/messages.inc.php:346 +#: libraries/messages.inc.php:342 msgid "Full Texts" msgstr "Полн текст" -#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:739 +#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:735 #, fuzzy msgid "Relational key" msgstr "Релациона шема" -#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:738 +#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:734 msgid "Relational display field" msgstr "" -#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:872 +#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:868 msgid "Show binary contents" msgstr "" -#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:873 +#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:869 msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:871 +#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:867 msgid "Show binary contents as HEX" msgstr "" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:375 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:371 #: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320 msgid "Hide" msgstr "" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:508 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:504 #: libraries/tbl_properties.inc.php:144 transformation_overview.php:47 msgid "Browser transformation" msgstr "Транформации на веб прелистувачот" #: libraries/display_tbl.lib.php:1126 libraries/display_tbl.lib.php:1130 -#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:308 +#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:304 msgid "Execute bookmarked query" msgstr "Изврши запамтен упит" #: libraries/display_tbl.lib.php:1145 libraries/display_tbl.lib.php:1157 -#: libraries/messages.inc.php:244 +#: libraries/messages.inc.php:240 msgid "The row has been deleted" msgstr "Записот е избришан" #: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056 -#: libraries/messages.inc.php:460 server_processlist.php:71 +#: libraries/messages.inc.php:456 server_processlist.php:71 #: tbl_row_action.php:64 msgid "Kill" msgstr "Прекини" -#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:849 +#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:845 msgid "in query" msgstr "во упитот" -#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:881 +#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:877 msgid "Showing rows" msgstr "Приказ на записи од " -#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1113 +#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1109 msgid "total" msgstr "вкупно" -#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:727 +#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:723 #: sql.php:524 #, php-format msgid "Query took %01.4f sec" msgstr "време на извршување на упитот %01.4f секунди" -#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:135 +#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:131 #: 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:471 msgid "Change" msgstr "Промени" -#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:724 +#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:720 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:671 +#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:667 msgid "Print view (with full texts)" msgstr "Преглед за печатење (целосен текст)" -#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:482 +#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:478 msgid "Link not found" msgstr "Врската не е пронајдена" -#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1224 +#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1220 #: main.php:228 msgid "Version information" msgstr "Информации за верзијата" -#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:423 +#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:419 msgid "Data home directory" msgstr "Основен директориум на податоците" -#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:424 +#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:420 msgid "The common part of the directory path for all InnoDB data files." msgstr "" "Заеднички дел на патеката до директроиумот за сите InnoDB датотеки со " "податоци." -#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:422 +#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:418 msgid "Data files" msgstr "Податотеки со податоци" -#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:418 +#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:414 msgid "Autoextend increment" msgstr "Чекор на автоматско проширување" -#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:419 +#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:415 msgid "" " The increment size for extending the size of an autoextending tablespace " "when it becomes full." @@ -2461,11 +2471,11 @@ msgstr "" " Големина на чекорот на проширување на големината на табелите кои автоматски " "се прошируваат кога ќе се наполнат." -#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:420 +#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:416 msgid "Buffer pool size" msgstr "Големина на баферот" -#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:421 +#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:417 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." @@ -2473,87 +2483,87 @@ msgstr "" "Големина на меморискиот бафер кој го користи InnoDB за кеширање на податоци " "и за индексите на своите табели." -#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:112 +#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:108 msgid "Buffer Pool" msgstr "Бафер" -#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:426 +#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:422 #: server_status.php:306 msgid "InnoDB Status" msgstr "InnoDB статус" -#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:113 +#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:109 msgid "Buffer Pool Usage" msgstr "Искористеност на баферот" -#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1114 +#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1110 #: server_databases.php:137 server_databases.php:305 server_status.php:414 #: server_status.php:475 server_status.php:496 tbl_printview.php:351 #: tbl_structure.php:697 msgid "Total" msgstr "Вкупно" -#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:425 +#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:421 msgid "pages" msgstr "страница" -#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:343 +#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:339 msgid "Free pages" msgstr "Слободни страници" -#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:259 +#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:255 msgid "Dirty pages" msgstr "Валкани страници" -#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:230 +#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:226 msgid "Pages containing data" msgstr "Страници со податоци" -#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:598 +#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:594 msgid "Pages to be flushed" msgstr "Страници кои треба да бидат ускладени" -#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:119 +#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:115 msgid "Busy pages" msgstr "Зафатени страници" -#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:467 +#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:463 msgid "Latched pages" msgstr "Заглавени страници" -#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:111 +#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:107 msgid "Buffer Pool Activity" msgstr "Активност на баферот" -#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:731 +#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:727 msgid "Read requests" msgstr "Барања за читање" -#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1244 +#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1240 msgid "Write requests" msgstr "Барање за упис" -#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:115 +#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:111 msgid "Read misses" msgstr "Промашувања при читање" -#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:117 +#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:113 msgid "Write waits" msgstr "Чекања на упис" -#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:114 +#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:110 msgid "Read misses in %" msgstr "Промашувања при читање во %" -#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:116 +#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:112 msgid "Write waits in %" msgstr "Чекања на упис во %" -#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:522 +#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:518 msgid "Data pointer size" msgstr "Големина на покажувачите на податоци" -#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:523 +#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:519 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." @@ -2561,11 +2571,11 @@ msgstr "" "Default големина на покажувачите во бајти, се користи при CREATE TABLE за " "MyISAM табелите кога не е зададена опцијата MAX_ROWS" -#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:528 +#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:524 msgid "Automatic recovery mode" msgstr "Режим на автоматско опоравување" -#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:529 +#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:525 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." @@ -2573,11 +2583,11 @@ msgstr "" "Режим на автоматско опоравување на оштетени MyISAM табели, подесен при " "стартовање на серверот со опцијата --myisam-recover." -#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:527 +#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:523 msgid "Maximum size for temporary sort files" msgstr "Максимална големина на привремените податотеки за подредување" -#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:526 +#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:522 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " @@ -2587,11 +2597,11 @@ msgstr "" "при повторно креирање на MyISAM индекси (во тек REPAIR TABLE, ALTER TABLE, " "или LOAD DATA INFILE операции)." -#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:525 +#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:521 msgid "Maximum size for temporary files on index creation" msgstr "Максимална голема на привремени податотеки при креирање на индекси" -#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:524 +#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:520 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " @@ -2601,11 +2611,11 @@ msgstr "" "индекси биде поголема отколку при користење на кешот за овде зададената " "вредност, користи го методот на кеширања на клучевите" -#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:531 +#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:527 msgid "Repair threads" msgstr "Нишки на поправка" -#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:530 +#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:526 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." @@ -2614,11 +2624,11 @@ msgstr "" "креираат (секој индекс во сопствена нишка) за време на процесот на поправка " "со подредување." -#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:533 +#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:529 msgid "Sort buffer size" msgstr "Големина на меѓупросторот за подредување" -#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:532 +#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:528 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." @@ -2627,72 +2637,72 @@ msgstr "" "операцијата REPAIR TABLE или при креирање на индекси со CREATE INDEX или " "ALTER TABLE." -#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:620 +#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:616 msgid "Index cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:619 +#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:615 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." msgstr "" -#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:630 +#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:626 msgid "Record cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:629 +#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:625 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " "to the handle data (.xtd) and row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:624 +#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:620 msgid "Log cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:623 +#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:619 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:628 +#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:624 msgid "Log file threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:627 +#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:623 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:634 +#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:630 msgid "Transaction buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:633 +#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:629 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." msgstr "" -#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:611 +#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:607 msgid "Checkpoint frequency" msgstr "" -#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:612 +#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:608 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." msgstr "" -#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:615 +#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:611 msgid "Data log threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:616 +#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:612 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -2700,49 +2710,49 @@ msgid "" "that can be stored in the database." msgstr "" -#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:618 +#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:614 msgid "Garbage threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:617 +#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:613 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." msgstr "" -#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:622 +#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:618 #, fuzzy msgid "Log buffer size" msgstr "Големина на меѓупросторот за подредување" -#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:621 +#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:617 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " "required to write a data log." msgstr "" -#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:613 +#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:609 msgid "Data file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:614 +#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:610 msgid "The grow size of the handle data (.xtd) files." msgstr "" -#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:632 +#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:628 msgid "Row file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:631 +#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:627 msgid "The grow size of the row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:626 +#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:622 msgid "Log file count" msgstr "" -#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:625 +#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:621 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -2752,19 +2762,19 @@ msgstr "" #: libraries/export/htmlword.php:132 libraries/export/odt.php:168 #: libraries/export/sql.php:881 libraries/export/texytext.php:130 -#: libraries/messages.inc.php:275 +#: libraries/messages.inc.php:271 msgid "Dumping data for table" msgstr "Приказ на податоци од табелата" #: libraries/export/htmlword.php:185 libraries/export/odt.php:238 #: libraries/export/sql.php:785 libraries/export/texytext.php:177 -#: libraries/messages.inc.php:1086 +#: libraries/messages.inc.php:1082 msgid "Table structure for table" msgstr "Структура на табелата" #: libraries/export/latex.php:125 libraries/export/sql.php:232 #: libraries/export/xml.php:102 libraries/header_printview.inc.php:57 -#: libraries/messages.inc.php:381 libraries/replication_gui.lib.php:63 +#: libraries/messages.inc.php:377 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:170 libraries/replication_gui.lib.php:265 #: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325 #: server_privileges.php:692 server_privileges.php:695 @@ -2776,188 +2786,188 @@ msgstr "Host" #: libraries/export/latex.php:130 libraries/export/sql.php:233 #: libraries/export/xml.php:107 libraries/header_printview.inc.php:59 -#: libraries/messages.inc.php:354 +#: libraries/messages.inc.php:350 msgid "Generation Time" msgstr "Време на креирање" #: libraries/export/latex.php:131 libraries/export/sql.php:235 -#: libraries/export/xml.php:108 libraries/messages.inc.php:864 main.php:186 +#: libraries/export/xml.php:108 libraries/messages.inc.php:860 main.php:186 msgid "Server version" msgstr "Верзија на серверот" #: libraries/export/latex.php:132 libraries/export/sql.php:236 -#: libraries/export/xml.php:109 libraries/messages.inc.php:651 +#: libraries/export/xml.php:109 libraries/messages.inc.php:647 msgid "PHP Version" msgstr "PHP верзија" #: libraries/export/latex.php:201 libraries/export/sql.php:868 -#: libraries/messages.inc.php:226 server_databases.php:127 +#: libraries/messages.inc.php:222 server_databases.php:127 #: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317 #: tbl_structure.php:666 msgid "Data" msgstr "Податоци" -#: libraries/export/odt.php:318 libraries/messages.inc.php:506 +#: libraries/export/odt.php:318 libraries/messages.inc.php:502 #: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "MIME-типови" -#: libraries/export/sql.php:387 libraries/messages.inc.php:711 +#: libraries/export/sql.php:387 libraries/messages.inc.php:707 msgid "Procedures" msgstr "" -#: libraries/export/sql.php:401 libraries/messages.inc.php:348 +#: libraries/export/sql.php:401 libraries/messages.inc.php:344 #, fuzzy msgid "Functions" msgstr "Функција" -#: libraries/export/sql.php:618 libraries/messages.inc.php:174 +#: libraries/export/sql.php:618 libraries/messages.inc.php:170 msgid "Constraints for dumped tables" msgstr "Ограничувања за извезените табели" -#: libraries/export/sql.php:627 libraries/messages.inc.php:175 +#: libraries/export/sql.php:627 libraries/messages.inc.php:171 msgid "Constraints for table" msgstr "Ограничувања за табелите" -#: libraries/export/sql.php:727 libraries/messages.inc.php:512 +#: libraries/export/sql.php:727 libraries/messages.inc.php:508 msgid "MIME TYPES FOR TABLE" msgstr "MIME ТИПОВИ ЗА ТАБЕЛА" -#: libraries/export/sql.php:739 libraries/messages.inc.php:743 +#: libraries/export/sql.php:739 libraries/messages.inc.php:739 msgid "RELATIONS FOR TABLE" msgstr "РЕЛАЦИИ НА ТАБЕЛИТЕ" -#: libraries/export/sql.php:796 libraries/messages.inc.php:1178 +#: libraries/export/sql.php:796 libraries/messages.inc.php:1174 #: libraries/tbl_triggers.lib.php:19 msgid "Triggers" msgstr "" -#: libraries/export/sql.php:808 libraries/messages.inc.php:1046 +#: libraries/export/sql.php:808 libraries/messages.inc.php:1042 #, fuzzy msgid "Structure for view" msgstr "Само структура" -#: libraries/export/sql.php:817 libraries/messages.inc.php:1029 +#: libraries/export/sql.php:817 libraries/messages.inc.php:1025 msgid "Stand-in structure for view" msgstr "" #: libraries/footer.inc.php:184 libraries/footer.inc.php:195 -#: libraries/footer.inc.php:198 libraries/messages.inc.php:586 +#: libraries/footer.inc.php:198 libraries/messages.inc.php:582 msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/header.inc.php:115 libraries/messages.inc.php:542 +#: libraries/header.inc.php:115 libraries/messages.inc.php:538 #, fuzzy msgid "New table" msgstr "Нема табела" #: libraries/header_printview.inc.php:50 libraries/header_printview.inc.php:55 -#: libraries/messages.inc.php:1024 +#: libraries/messages.inc.php:1020 msgid "SQL result" msgstr "SQL резултат" -#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:350 +#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:346 msgid "Generated by" msgstr "Генерирал" #: libraries/header_printview.inc.php:63 libraries/import.lib.php:145 -#: libraries/messages.inc.php:820 navigation.php:652 navigation.php:674 +#: libraries/messages.inc.php:816 navigation.php:652 navigation.php:674 #: server_databases.php:122 tbl_printview.php:394 tbl_structure.php:366 #: tbl_structure.php:778 msgid "Rows" msgstr "Записи" -#: libraries/import.lib.php:150 libraries/messages.inc.php:285 sql.php:520 +#: libraries/import.lib.php:150 libraries/messages.inc.php:281 sql.php:520 #: tbl_change.php:181 tbl_get_field.php:35 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL врати празен резултат (нула записи)." -#: libraries/import.lib.php:1078 libraries/messages.inc.php:399 +#: libraries/import.lib.php:1078 libraries/messages.inc.php:395 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1079 libraries/messages.inc.php:400 +#: libraries/import.lib.php:1079 libraries/messages.inc.php:396 msgid "View a structure`s contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1080 libraries/messages.inc.php:401 +#: libraries/import.lib.php:1080 libraries/messages.inc.php:397 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1081 libraries/messages.inc.php:402 +#: libraries/import.lib.php:1081 libraries/messages.inc.php:398 msgid "Edit its structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1084 libraries/messages.inc.php:362 +#: libraries/import.lib.php:1084 libraries/messages.inc.php:358 #, fuzzy msgid "Go to database" msgstr "Базата на податоци не постои" #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:869 +#: libraries/messages.inc.php:865 msgid "settings" msgstr "" -#: libraries/import.lib.php:1106 libraries/messages.inc.php:363 +#: libraries/import.lib.php:1106 libraries/messages.inc.php:359 msgid "Go to table" msgstr "" -#: libraries/import.lib.php:1109 libraries/messages.inc.php:1047 +#: libraries/import.lib.php:1109 libraries/messages.inc.php:1043 #, fuzzy msgid "structure" msgstr "Структура" -#: libraries/import.lib.php:1115 libraries/messages.inc.php:364 +#: libraries/import.lib.php:1115 libraries/messages.inc.php:360 msgid "Go to view" msgstr "" #: libraries/import/csv.php:58 libraries/import/csv.php:70 #: libraries/import/csv.php:74 libraries/import/csv.php:78 -#: libraries/messages.inc.php:442 +#: libraries/messages.inc.php:438 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "" -#: libraries/import/csv.php:59 libraries/messages.inc.php:323 +#: libraries/import/csv.php:59 libraries/messages.inc.php:319 msgid "Fields terminated by" msgstr "Полињата се ограничени со" -#: libraries/import/csv.php:71 libraries/messages.inc.php:320 +#: libraries/import/csv.php:71 libraries/messages.inc.php:316 msgid "Fields enclosed by" msgstr "Полињата се раздвоени со" -#: libraries/import/csv.php:75 libraries/messages.inc.php:321 +#: libraries/import/csv.php:75 libraries/messages.inc.php:317 msgid "Fields escaped by" msgstr "Escape карактер      " -#: libraries/import/csv.php:79 libraries/messages.inc.php:481 +#: libraries/import/csv.php:79 libraries/messages.inc.php:477 msgid "Lines terminated by" msgstr "Линиите се завршуваат со" -#: libraries/import/csv.php:119 libraries/messages.inc.php:439 +#: libraries/import/csv.php:119 libraries/messages.inc.php:435 #, php-format msgid "Invalid column (%s) specified!" msgstr "" #: libraries/import/csv.php:177 libraries/import/csv.php:424 -#: libraries/messages.inc.php:441 +#: libraries/messages.inc.php:437 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/import/csv.php:312 libraries/messages.inc.php:440 +#: libraries/import/csv.php:312 libraries/messages.inc.php:436 #, php-format msgid "Invalid field count in CSV input on line %d." msgstr "" -#: libraries/import/ldi.php:55 libraries/messages.inc.php:446 +#: libraries/import/ldi.php:55 libraries/messages.inc.php:442 msgid "This plugin does not support compressed imports!" msgstr "" #: libraries/import/xml.php:74 libraries/import/xml.php:130 -#: libraries/messages.inc.php:1247 +#: libraries/messages.inc.php:1243 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -2986,329 +2996,319 @@ msgstr "" msgid "ltr" msgstr "ltr" -#. l10n: Thousands separator -#: libraries/messages.inc.php:21 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: libraries/messages.inc.php:23 -msgid "." -msgstr "." - -#: libraries/messages.inc.php:25 server_status.php:461 +#: libraries/messages.inc.php:21 server_status.php:461 msgid "Aborted" msgstr "Прекинато" -#: libraries/messages.inc.php:28 main.php:68 +#: libraries/messages.inc.php:24 main.php:68 #, fuzzy msgid "Actions" msgstr "Акција" -#: libraries/messages.inc.php:34 libraries/tbl_properties.inc.php:780 +#: libraries/messages.inc.php:30 libraries/tbl_properties.inc.php:780 #: tbl_structure.php:543 #, php-format msgid "Add %s field(s)" msgstr "Додади %s полиња" -#: libraries/messages.inc.php:35 +#: libraries/messages.inc.php:31 msgid "Add custom comment into header (\\n splits lines)" msgstr "Додади коментар во заглавие (користи \\n за нов ред)" -#: libraries/messages.inc.php:36 +#: libraries/messages.inc.php:32 msgid "Add into comments" msgstr "Додади во коментарите" -#: libraries/messages.inc.php:37 tbl_structure.php:541 +#: libraries/messages.inc.php:33 tbl_structure.php:541 msgid "Add new field" msgstr "Додади ново поле" -#: libraries/messages.inc.php:38 server_privileges.php:1886 +#: libraries/messages.inc.php:34 server_privileges.php:1886 msgid "Add privileges on the following database" msgstr "Додади привилегии на следната база" -#: libraries/messages.inc.php:39 server_privileges.php:1907 +#: libraries/messages.inc.php:35 server_privileges.php:1907 msgid "Add privileges on the following table" msgstr "Додади привилегии на следната табела" -#: libraries/messages.inc.php:40 tbl_select.php:288 +#: libraries/messages.inc.php:36 tbl_select.php:288 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Додади услови за пребарување (делот \"WHERE\" од упитот):" -#: libraries/messages.inc.php:41 tbl_indexes.php:251 +#: libraries/messages.inc.php:37 tbl_indexes.php:251 #, php-format msgid "Add to index  %s column(s)" msgstr "Додади во клучот  %s колона(и)" -#: libraries/messages.inc.php:42 server_privileges.php:1570 +#: libraries/messages.inc.php:38 server_privileges.php:1570 #: server_privileges.php:1594 server_privileges.php:1988 #: server_privileges.php:2177 msgid "Add a new User" msgstr "Додади нов корисник" -#: libraries/messages.inc.php:43 server_privileges.php:931 +#: libraries/messages.inc.php:39 server_privileges.php:931 msgid "You have added a new user." msgstr "Додадовте нов корисник." -#: libraries/messages.inc.php:44 server_privileges.php:571 +#: libraries/messages.inc.php:40 server_privileges.php:571 msgid "Administration" msgstr "Администрација" -#: libraries/messages.inc.php:45 tbl_structure.php:557 +#: libraries/messages.inc.php:41 tbl_structure.php:557 #, php-format msgid "After %s" msgstr "после полето %s" -#: libraries/messages.inc.php:46 tbl_change.php:1147 +#: libraries/messages.inc.php:42 tbl_change.php:1147 msgid "Go back to previous page" msgstr "Назад на претходната страница" -#: libraries/messages.inc.php:47 tbl_change.php:1148 +#: libraries/messages.inc.php:43 tbl_change.php:1148 msgid "Insert another new row" msgstr "Додади уште еден нов запис" -#: libraries/messages.inc.php:48 tbl_change.php:1160 +#: libraries/messages.inc.php:44 tbl_change.php:1160 msgid "Edit next row" msgstr "Ажурирање на следниот запис" -#: libraries/messages.inc.php:49 tbl_change.php:1152 +#: libraries/messages.inc.php:45 tbl_change.php:1152 msgid "Go back to this page" msgstr "Врати се на оваа страница" -#: libraries/messages.inc.php:50 querywindow.php:115 +#: libraries/messages.inc.php:46 querywindow.php:115 msgid "All" msgstr "Се" -#: libraries/messages.inc.php:53 tbl_operations.php:249 +#: libraries/messages.inc.php:49 tbl_operations.php:249 msgid "Alter table order by" msgstr "Промени го редоследот во табелата" -#: libraries/messages.inc.php:54 tbl_operations.php:660 +#: libraries/messages.inc.php:50 tbl_operations.php:660 msgid "Analyze" msgstr "" -#: libraries/messages.inc.php:57 +#: libraries/messages.inc.php:53 #, fuzzy msgid "and" msgstr "и" -#: libraries/messages.inc.php:59 pmd_general.php:87 +#: libraries/messages.inc.php:55 pmd_general.php:87 msgid "Angular links" msgstr "" -#: libraries/messages.inc.php:60 tbl_structure.php:401 tbl_structure.php:415 +#: libraries/messages.inc.php:56 tbl_structure.php:401 tbl_structure.php:415 #: tbl_structure.php:429 #, php-format msgid "An index has been added on %s" msgstr "Клучот е додаден %s" -#: libraries/messages.inc.php:61 server_privileges.php:1521 +#: libraries/messages.inc.php:57 server_privileges.php:1521 #: server_privileges.php:2123 msgid "Any" msgstr "Било кој" -#: libraries/messages.inc.php:62 libraries/replication_gui.lib.php:298 +#: libraries/messages.inc.php:58 libraries/replication_gui.lib.php:298 #: server_privileges.php:725 msgid "Any host" msgstr "Било кој host" -#: libraries/messages.inc.php:63 libraries/replication_gui.lib.php:250 +#: libraries/messages.inc.php:59 libraries/replication_gui.lib.php:250 #: server_privileges.php:677 msgid "Any user" msgstr "Било кој корисник" -#: libraries/messages.inc.php:64 server_synchronize.php:449 +#: libraries/messages.inc.php:60 server_synchronize.php:449 #: server_synchronize.php:894 msgid "Apply Selected Changes" msgstr "" -#: libraries/messages.inc.php:66 tbl_structure.php:386 +#: libraries/messages.inc.php:62 tbl_structure.php:386 #, php-format msgid "A primary key has been added on %s" msgstr "Примарниот клуч %s е додаден" -#: libraries/messages.inc.php:67 libraries/mysql_charsets.lib.php:368 +#: libraries/messages.inc.php:63 libraries/mysql_charsets.lib.php:368 msgid "Arabic" msgstr "Арапски" -#: libraries/messages.inc.php:68 libraries/mysql_charsets.lib.php:359 +#: libraries/messages.inc.php:64 libraries/mysql_charsets.lib.php:359 msgid "Armenian" msgstr "Ерменски" -#: libraries/messages.inc.php:70 libraries/tbl_properties.inc.php:394 +#: libraries/messages.inc.php:66 libraries/tbl_properties.inc.php:394 msgid "As defined:" msgstr "" -#: libraries/messages.inc.php:71 tbl_structure.php:556 +#: libraries/messages.inc.php:67 tbl_structure.php:556 msgid "At Beginning of Table" msgstr "на почетокот од табелата" -#: libraries/messages.inc.php:72 tbl_structure.php:555 +#: libraries/messages.inc.php:68 tbl_structure.php:555 msgid "At End of Table" msgstr "на крајот од табелата" -#: libraries/messages.inc.php:73 libraries/tbl_properties.inc.php:108 +#: libraries/messages.inc.php:69 libraries/tbl_properties.inc.php:108 #: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:144 #: tbl_structure.php:180 msgid "Attributes" msgstr "Атрибути" -#: libraries/messages.inc.php:74 pdf_pages.php:303 pdf_pages.php:306 +#: libraries/messages.inc.php:70 pdf_pages.php:303 pdf_pages.php:306 msgid "Automatic layout" msgstr "Автоматски распоред" -#: libraries/messages.inc.php:77 libraries/mysql_charsets.lib.php:354 +#: libraries/messages.inc.php:73 libraries/mysql_charsets.lib.php:354 msgid "Baltic" msgstr "Балтички" -#: libraries/messages.inc.php:78 libraries/sqlparser.lib.php:175 +#: libraries/messages.inc.php:74 libraries/sqlparser.lib.php:175 msgid "BEGIN CUT" msgstr "ПОЧЕТОК ПРЕСЕК" -#: libraries/messages.inc.php:79 libraries/sqlparser.lib.php:179 +#: libraries/messages.inc.php:75 libraries/sqlparser.lib.php:179 msgid "BEGIN RAW" msgstr "ПОЧЕТОК СУРОВО" -#: libraries/messages.inc.php:80 libraries/mysql_charsets.lib.php:201 +#: libraries/messages.inc.php:76 libraries/mysql_charsets.lib.php:201 #: libraries/mysql_charsets.lib.php:402 tbl_change.php:518 msgid "Binary" msgstr "Бинарен" -#: libraries/messages.inc.php:81 tbl_change.php:894 +#: libraries/messages.inc.php:77 tbl_change.php:894 msgid "Binary - do not edit" msgstr "Бинарен - не менувај" -#: libraries/messages.inc.php:82 libraries/server_links.inc.php:76 +#: libraries/messages.inc.php:78 libraries/server_links.inc.php:76 #: server_binlog.php:110 server_status.php:253 test/theme.php:121 msgid "Binary log" msgstr "Бинарен дневник" -#: libraries/messages.inc.php:83 server_binlog.php:217 +#: libraries/messages.inc.php:79 server_binlog.php:217 msgid "Event type" msgstr "Вид на настан" -#: libraries/messages.inc.php:84 server_binlog.php:220 +#: libraries/messages.inc.php:80 server_binlog.php:220 msgid "Information" msgstr "Информации" -#: libraries/messages.inc.php:85 server_binlog.php:215 +#: libraries/messages.inc.php:81 server_binlog.php:215 msgid "Log name" msgstr "Назив на дневникот" -#: libraries/messages.inc.php:86 server_binlog.php:219 +#: libraries/messages.inc.php:82 server_binlog.php:219 msgid "Original position" msgstr "Оргинална позиција" -#: libraries/messages.inc.php:87 server_binlog.php:216 +#: libraries/messages.inc.php:83 server_binlog.php:216 msgid "Position" msgstr "Позиција" -#: libraries/messages.inc.php:88 libraries/replication_gui.lib.php:169 +#: libraries/messages.inc.php:84 libraries/replication_gui.lib.php:169 #: server_binlog.php:218 msgid "Server ID" msgstr "ID на серверот" -#: libraries/messages.inc.php:92 +#: libraries/messages.inc.php:88 #, fuzzy msgctxt "$strBLOBRepositoryDisabled" msgid "Disabled" msgstr "Оневозможено" -#: libraries/messages.inc.php:95 +#: libraries/messages.inc.php:91 #, fuzzy msgctxt "$strBLOBRepositoryEnabled" msgid "Enabled" msgstr "Овозможено" -#: libraries/messages.inc.php:97 tbl_change.php:888 +#: libraries/messages.inc.php:93 tbl_change.php:888 msgid "Remove BLOB Repository Reference" msgstr "" -#: libraries/messages.inc.php:98 +#: libraries/messages.inc.php:94 #, fuzzy msgctxt "$strBLOBRepositoryRepair" msgid "Repair" msgstr "Поправка на табелата" -#: libraries/messages.inc.php:99 tbl_change.php:987 +#: libraries/messages.inc.php:95 tbl_change.php:987 msgid "Upload to BLOB repository" msgstr "" -#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:359 +#: libraries/messages.inc.php:96 libraries/sql_query_form.lib.php:359 #: sql.php:677 msgid "Let every user access this bookmark" msgstr "дади дозвола на секој корисник да пристапува на овој упит." -#: libraries/messages.inc.php:103 sql.php:671 +#: libraries/messages.inc.php:99 sql.php:671 msgid "Label" msgstr "Назив" -#: libraries/messages.inc.php:104 libraries/sql_query_form.lib.php:433 +#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:433 msgid "Bookmarked SQL query" msgstr "Запамтен SQL упит" -#: libraries/messages.inc.php:105 libraries/sql_query_form.lib.php:365 +#: libraries/messages.inc.php:101 libraries/sql_query_form.lib.php:365 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/messages.inc.php:106 libraries/sql_query_form.lib.php:352 +#: libraries/messages.inc.php:102 libraries/sql_query_form.lib.php:352 #: sql.php:665 sql.php:666 sql.php:683 msgid "Bookmark this SQL query" msgstr "Запамти SQL упит" -#: libraries/messages.inc.php:107 libraries/sql_query_form.lib.php:466 +#: libraries/messages.inc.php:103 libraries/sql_query_form.lib.php:466 msgid "View only" msgstr "Види само" -#: libraries/messages.inc.php:109 tbl_structure.php:161 +#: libraries/messages.inc.php:105 tbl_structure.php:161 #, fuzzy msgid "Browse distinct values" msgstr "Прегледни ги надворешните вредности" -#: libraries/messages.inc.php:110 tbl_change.php:252 tbl_select.php:27 +#: libraries/messages.inc.php:106 tbl_change.php:252 tbl_select.php:27 #: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34 msgid "Browse foreign values" msgstr "Прегледни ги надворешните вредности" -#: libraries/messages.inc.php:118 libraries/mysql_charsets.lib.php:213 +#: libraries/messages.inc.php:114 libraries/mysql_charsets.lib.php:213 msgid "Bulgarian" msgstr "Бугарски" -#: libraries/messages.inc.php:120 +#: libraries/messages.inc.php:116 msgid "\"bzipped\"" msgstr "\"bzip\"" -#: libraries/messages.inc.php:122 +#: libraries/messages.inc.php:118 msgid "Calendar" msgstr "Календар" -#: libraries/messages.inc.php:129 tbl_indexes.php:75 +#: libraries/messages.inc.php:125 tbl_indexes.php:75 msgid "Can't rename index to PRIMARY!" msgstr "Не можам да го променам клучот во PRIMARY (примарен) !" -#: libraries/messages.inc.php:132 libraries/mysql_charsets.lib.php:223 +#: libraries/messages.inc.php:128 libraries/mysql_charsets.lib.php:223 #: libraries/mysql_charsets.lib.php:409 msgid "case-insensitive" msgstr "Не разликува мали и големи букви" -#: libraries/messages.inc.php:133 libraries/mysql_charsets.lib.php:226 +#: libraries/messages.inc.php:129 libraries/mysql_charsets.lib.php:226 #: libraries/mysql_charsets.lib.php:411 msgid "case-sensitive" msgstr "Разликува мали и големи букви" -#: libraries/messages.inc.php:134 libraries/mysql_charsets.lib.php:332 +#: libraries/messages.inc.php:130 libraries/mysql_charsets.lib.php:332 msgid "Central European" msgstr "Централноевропски" -#: libraries/messages.inc.php:136 server_privileges.php:1969 +#: libraries/messages.inc.php:132 server_privileges.php:1969 msgid "... keep the old one." msgstr "... сочувај го стариот." -#: libraries/messages.inc.php:137 server_privileges.php:1967 +#: libraries/messages.inc.php:133 server_privileges.php:1967 msgid "Create a new user with the same privileges and ..." msgstr "Направи нов корисник со исти привилегии и ..." -#: libraries/messages.inc.php:138 server_privileges.php:1972 +#: libraries/messages.inc.php:134 server_privileges.php:1972 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -3316,249 +3316,249 @@ msgstr "" " ... избриши го стариот корисник од табелата на корисници а потоа повторно " "вчитај ги привилегиите." -#: libraries/messages.inc.php:139 server_privileges.php:1970 +#: libraries/messages.inc.php:135 server_privileges.php:1970 msgid " ... delete the old one from the user tables." msgstr " ... избриши ги старите од табелата на корисници." -#: libraries/messages.inc.php:140 server_privileges.php:1971 +#: libraries/messages.inc.php:136 server_privileges.php:1971 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr " ... прво одземи ги сите привилегии на корисниците а потоа избриши ги." -#: libraries/messages.inc.php:141 server_privileges.php:1964 +#: libraries/messages.inc.php:137 server_privileges.php:1964 msgid "Change Login Information / Copy User" msgstr "Промени ги информациите за најавувањето / Копирај го корисникот" -#: libraries/messages.inc.php:144 libraries/mysql_charsets.lib.php:107 +#: libraries/messages.inc.php:140 libraries/mysql_charsets.lib.php:107 msgid "Charset" msgstr "Кодна страна" -#: libraries/messages.inc.php:146 server_collations.php:40 +#: libraries/messages.inc.php:142 server_collations.php:40 msgid "Character Sets and Collations" msgstr "Кодни страници и подредување" -#: libraries/messages.inc.php:147 libraries/server_links.inc.php:57 +#: libraries/messages.inc.php:143 libraries/server_links.inc.php:57 #: test/theme.php:109 msgid "Charsets" msgstr "Кодни страници" -#: libraries/messages.inc.php:149 tbl_operations.php:661 +#: libraries/messages.inc.php:145 tbl_operations.php:661 #, fuzzy msgid "Check" msgstr "Чешки" -#: libraries/messages.inc.php:151 server_databases.php:293 +#: libraries/messages.inc.php:147 server_databases.php:293 #: server_databases.php:294 msgid "Check Privileges" msgstr "Провери привилегии" -#: libraries/messages.inc.php:152 server_databases.php:289 +#: libraries/messages.inc.php:148 server_databases.php:289 #, php-format msgid "Check privileges for database "%s"." msgstr "Провери привилегии за базата на податоци "%s"." -#: libraries/messages.inc.php:154 pdf_pages.php:261 +#: libraries/messages.inc.php:150 pdf_pages.php:261 msgid "Please choose a page to edit" msgstr "Изберете страница која менувате" -#: libraries/messages.inc.php:157 +#: libraries/messages.inc.php:153 msgid "Displaying Column Comments" msgstr "Прикажувам коментари на колоните" -#: libraries/messages.inc.php:159 pdf_pages.php:483 view_create.php:148 +#: libraries/messages.inc.php:155 pdf_pages.php:483 view_create.php:148 msgid "Column names" msgstr "Имиња на колони" -#: libraries/messages.inc.php:160 server_privileges.php:1685 +#: libraries/messages.inc.php:156 server_privileges.php:1685 msgid "Column-specific privileges" msgstr "Привилегии врзани за колоните" -#: libraries/messages.inc.php:164 +#: libraries/messages.inc.php:160 msgid "MySQL 4.0 compatible" msgstr "MySQL 4.0 компатибилно" -#: libraries/messages.inc.php:165 +#: libraries/messages.inc.php:161 msgid "Complete inserts" msgstr "Комплетен INSERT (со имиња на полињата)" -#: libraries/messages.inc.php:168 +#: libraries/messages.inc.php:164 #, php-format msgid "Could not load default configuration from: \"%1$s\"" msgstr "" -#: libraries/messages.inc.php:169 main.php:306 +#: libraries/messages.inc.php:165 main.php:306 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: libraries/messages.inc.php:171 pdf_schema.php:672 +#: libraries/messages.inc.php:167 pdf_schema.php:672 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Подесете ги координатите за табелата %s" -#: libraries/messages.inc.php:173 server_status.php:433 +#: libraries/messages.inc.php:169 server_status.php:433 msgid "Connections" msgstr "Конекции" -#: libraries/messages.inc.php:179 tbl_operations.php:509 +#: libraries/messages.inc.php:175 tbl_operations.php:509 msgid "Copy table to (database.table):" msgstr "Копирај ја табелата во (база.табела):" -#: libraries/messages.inc.php:180 tbl_move_copy.php:58 +#: libraries/messages.inc.php:176 tbl_move_copy.php:58 #, php-format msgid "Table %s has been copied to %s." msgstr "Табелата %s е копирана во %s." -#: libraries/messages.inc.php:181 tbl_move_copy.php:48 +#: libraries/messages.inc.php:177 tbl_move_copy.php:48 msgid "Can't copy table to same one!" msgstr "Не можам да ја копирам табелата во самата себе!" -#: libraries/messages.inc.php:182 server_synchronize.php:94 +#: libraries/messages.inc.php:178 server_synchronize.php:94 msgid "Could not connect to the source" msgstr "" -#: libraries/messages.inc.php:183 server_synchronize.php:97 +#: libraries/messages.inc.php:179 server_synchronize.php:97 msgid "Could not connect to the target" msgstr "" -#: libraries/messages.inc.php:184 server_processlist.php:24 +#: libraries/messages.inc.php:180 server_processlist.php:24 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" "phpMyAdmin не можеше да го прекине процесот %s. Веројатно веќе е затворен." -#: libraries/messages.inc.php:187 +#: libraries/messages.inc.php:183 #, php-format msgid "Create an index on %s columns" msgstr "Направи клуч на %s колони" -#: libraries/messages.inc.php:188 tbl_indexes.php:160 +#: libraries/messages.inc.php:184 tbl_indexes.php:160 msgid "Create a new index" msgstr "Креирај нов клуч" -#: libraries/messages.inc.php:191 pdf_pages.php:297 pmd_pdf.php:114 +#: libraries/messages.inc.php:187 pdf_pages.php:297 pmd_pdf.php:114 msgid "Create a page" msgstr "Направи нова страница" -#: libraries/messages.inc.php:192 +#: libraries/messages.inc.php:188 msgid "Creation of PDFs" msgstr "Креирање на PDF" -#: libraries/messages.inc.php:193 pmd_general.php:74 pmd_general.php:306 +#: libraries/messages.inc.php:189 pmd_general.php:74 pmd_general.php:306 msgid "Create relation" msgstr "" -#: libraries/messages.inc.php:194 pmd_general.php:71 +#: libraries/messages.inc.php:190 pmd_general.php:71 #: server_synchronize.php:429 server_synchronize.php:872 #, fuzzy msgid "Create table" msgstr "Направи нова страница" -#: libraries/messages.inc.php:195 +#: libraries/messages.inc.php:191 #, fuzzy msgctxt "$strCreateTableShort" msgid "Create table" msgstr "Направи нова страница" -#: libraries/messages.inc.php:196 server_privileges.php:1994 +#: libraries/messages.inc.php:192 server_privileges.php:1994 msgid "Database for user" msgstr "" -#: libraries/messages.inc.php:197 server_privileges.php:1999 +#: libraries/messages.inc.php:193 server_privileges.php:1999 msgid "Create database with same name and grant all privileges" msgstr "" -#: libraries/messages.inc.php:198 +#: libraries/messages.inc.php:194 #, fuzzy msgctxt "$strCreateUserDatabaseNone" msgid "None" msgstr "нема" -#: libraries/messages.inc.php:199 server_privileges.php:2003 +#: libraries/messages.inc.php:195 server_privileges.php:2003 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "Провери привилегии за базата на податоци "%s"." -#: libraries/messages.inc.php:200 server_privileges.php:2000 +#: libraries/messages.inc.php:196 server_privileges.php:2000 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: libraries/messages.inc.php:201 +#: libraries/messages.inc.php:197 msgid "Creation/Update/Check dates" msgstr "Датуми на креирање/ажурирање/проверка" -#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:229 +#: libraries/messages.inc.php:199 libraries/mysql_charsets.lib.php:229 msgid "Croatian" msgstr "Хрватски" -#: libraries/messages.inc.php:204 +#: libraries/messages.inc.php:200 msgid "CSV" msgstr "CSV формат" -#: libraries/messages.inc.php:205 libraries/server_synchronize.lib.php:1343 +#: libraries/messages.inc.php:201 libraries/server_synchronize.lib.php:1343 #: libraries/server_synchronize.lib.php:1369 msgid "Current server" msgstr "" -#: libraries/messages.inc.php:206 main.php:159 +#: libraries/messages.inc.php:202 main.php:159 msgid "Custom color" msgstr "" -#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:365 +#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:365 msgid "Cyrillic" msgstr "Кириличен" -#: libraries/messages.inc.php:208 libraries/mysql_charsets.lib.php:232 +#: libraries/messages.inc.php:204 libraries/mysql_charsets.lib.php:232 msgid "Czech" msgstr "Чешки" -#: libraries/messages.inc.php:209 libraries/mysql_charsets.lib.php:383 +#: libraries/messages.inc.php:205 libraries/mysql_charsets.lib.php:383 msgid "Czech-Slovak" msgstr "Чехословачки" -#: libraries/messages.inc.php:211 libraries/mysql_charsets.lib.php:235 +#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:235 msgid "Danish" msgstr "Дански" -#: libraries/messages.inc.php:214 +#: libraries/messages.inc.php:210 msgid "Database export options" msgstr "Опции за извоз на бази на податоци" -#: libraries/messages.inc.php:217 server_synchronize.php:122 +#: libraries/messages.inc.php:213 server_synchronize.php:122 #: server_synchronize.php:125 tbl_create.php:82 tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "" -#: libraries/messages.inc.php:219 server_databases.php:63 +#: libraries/messages.inc.php:215 server_databases.php:63 #, php-format msgid "%s databases have been dropped successfully." msgstr "%s базата на податоци успешно е избришана." -#: libraries/messages.inc.php:220 libraries/server_synchronize.lib.php:1341 +#: libraries/messages.inc.php:216 libraries/server_synchronize.lib.php:1341 #: server_synchronize.php:1110 #, fuzzy msgid "Source database" msgstr "Пребарување низ базата на податоци" -#: libraries/messages.inc.php:221 server_databases.php:88 +#: libraries/messages.inc.php:217 server_databases.php:88 msgid "Databases statistics" msgstr "Статистика на базата на податоци" -#: libraries/messages.inc.php:222 server_databases.php:362 +#: libraries/messages.inc.php:218 server_databases.php:362 #: server_databases.php:363 msgid "Disable Statistics" msgstr "Исклучи статистики" -#: libraries/messages.inc.php:223 server_databases.php:358 +#: libraries/messages.inc.php:219 server_databases.php:358 #: server_databases.php:359 msgid "Enable Statistics" msgstr "Вклучи статистики" -#: libraries/messages.inc.php:224 server_databases.php:366 +#: libraries/messages.inc.php:220 server_databases.php:366 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -3566,31 +3566,31 @@ msgstr "" "Напомена: вклучувањето на статистиките може да доведе до зголемување на " "сообраќајот помеѓу веб серверот и MySQL серверот." -#: libraries/messages.inc.php:225 libraries/server_synchronize.lib.php:1367 +#: libraries/messages.inc.php:221 libraries/server_synchronize.lib.php:1367 #: server_synchronize.php:1112 #, fuzzy msgid "Target database" msgstr "Пребарување низ базата на податоци" -#: libraries/messages.inc.php:228 server_synchronize.php:425 +#: libraries/messages.inc.php:224 server_synchronize.php:425 #: server_synchronize.php:868 msgid "Data Difference" msgstr "" -#: libraries/messages.inc.php:231 server_synchronize.php:272 +#: libraries/messages.inc.php:227 server_synchronize.php:272 msgid "Data Synchronization" msgstr "" -#: libraries/messages.inc.php:235 server_privileges.php:526 +#: libraries/messages.inc.php:231 server_privileges.php:526 #: server_privileges.php:1679 msgid "Database-specific privileges" msgstr "Привилегии во врска со базата на податоци" -#: libraries/messages.inc.php:237 server_privileges.php:2136 +#: libraries/messages.inc.php:233 server_privileges.php:2136 msgid "database-specific" msgstr "Специфично за базата на податоци" -#: libraries/messages.inc.php:240 libraries/tbl_properties.inc.php:106 +#: libraries/messages.inc.php:236 libraries/tbl_properties.inc.php:106 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" @@ -3598,32 +3598,32 @@ msgstr "" "За default вредност, внесете само една вредност, без коси црти или наводници " "во следниов облик: а" -#: libraries/messages.inc.php:241 tbl_operations.php:589 +#: libraries/messages.inc.php:237 tbl_operations.php:589 msgid "Defragment table" msgstr "Дефрагментирај ја табелата" -#: libraries/messages.inc.php:242 +#: libraries/messages.inc.php:238 msgid "Use delayed inserts" msgstr "Користи одложен внес" -#: libraries/messages.inc.php:245 server_privileges.php:1243 +#: libraries/messages.inc.php:241 server_privileges.php:1243 msgid "No users selected for deleting!" msgstr "" -#: libraries/messages.inc.php:246 pmd_general.php:372 +#: libraries/messages.inc.php:242 pmd_general.php:372 msgid "Delete relation" msgstr "" -#: libraries/messages.inc.php:248 server_privileges.php:1232 +#: libraries/messages.inc.php:244 server_privileges.php:1232 #, php-format msgid "Deleting %s" msgstr "Бришам %s" -#: libraries/messages.inc.php:249 libraries/sql_query_form.lib.php:388 +#: libraries/messages.inc.php:245 libraries/sql_query_form.lib.php:388 msgid "Delimiter" msgstr "" -#: libraries/messages.inc.php:250 pdf_pages.php:506 +#: libraries/messages.inc.php:246 pdf_pages.php:506 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -3631,153 +3631,153 @@ msgstr "" "Актуелната страница има референци кон табели кои не постојат. Сакате ли да " "ги избиршете тие референци?" -#: libraries/messages.inc.php:254 pmd_help.php:29 +#: libraries/messages.inc.php:250 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." msgstr "" -#: libraries/messages.inc.php:256 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:252 libraries/mysql_charsets.lib.php:247 msgid "dictionary" msgstr "речник" -#: libraries/messages.inc.php:257 libraries/server_synchronize.lib.php:1348 +#: libraries/messages.inc.php:253 libraries/server_synchronize.lib.php:1348 msgid "Difference" msgstr "" -#: libraries/messages.inc.php:258 pmd_general.php:87 +#: libraries/messages.inc.php:254 pmd_general.php:87 msgid "Direct links" msgstr "" -#: libraries/messages.inc.php:261 +#: libraries/messages.inc.php:257 msgid "Disable foreign key checks" msgstr "Исклучи проверка на надворешни клучеви" -#: libraries/messages.inc.php:262 +#: libraries/messages.inc.php:258 msgid "Display Features" msgstr "Прикажи својства" -#: libraries/messages.inc.php:263 tbl_select.php:301 +#: libraries/messages.inc.php:259 tbl_select.php:301 msgid "Display order:" msgstr "Редослед на приказ:" -#: libraries/messages.inc.php:265 tbl_select.php:132 +#: libraries/messages.inc.php:261 tbl_select.php:132 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Направи \"упит по пример\" (џокер знак: \"%\")" -#: libraries/messages.inc.php:266 +#: libraries/messages.inc.php:262 msgid "DocSQL" msgstr "" -#: libraries/messages.inc.php:268 +#: libraries/messages.inc.php:264 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/messages.inc.php:273 server_privileges.php:1579 +#: libraries/messages.inc.php:269 server_privileges.php:1579 #: server_privileges.php:1580 server_privileges.php:1581 msgid "Drop the databases that have the same names as the users." msgstr "" "Избриши ги базите на податоци кои се именувани исто како и корисниците." -#: libraries/messages.inc.php:278 tbl_printview.php:382 tbl_structure.php:743 +#: libraries/messages.inc.php:274 tbl_printview.php:382 tbl_structure.php:743 msgid "dynamic" msgstr "динамички" -#: libraries/messages.inc.php:282 server_privileges.php:1324 +#: libraries/messages.inc.php:278 server_privileges.php:1324 #: server_privileges.php:1610 msgid "Edit Privileges" msgstr "Промена на привилегии" -#: libraries/messages.inc.php:283 tbl_printview.php:341 tbl_structure.php:688 +#: libraries/messages.inc.php:279 tbl_printview.php:341 tbl_structure.php:688 msgid "Effective" msgstr "Ефективни" -#: libraries/messages.inc.php:286 libraries/relation.lib.php:100 +#: libraries/messages.inc.php:282 libraries/relation.lib.php:100 msgid "Enabled" msgstr "Овозможено" -#: libraries/messages.inc.php:287 +#: libraries/messages.inc.php:283 msgid "Enclose export in a transaction" msgstr "Изврши извоз во трансакција" -#: libraries/messages.inc.php:288 libraries/sqlparser.lib.php:177 +#: libraries/messages.inc.php:284 libraries/sqlparser.lib.php:177 msgid "END CUT" msgstr "КРАЈ ПРЕСЕК" -#: libraries/messages.inc.php:290 libraries/sqlparser.lib.php:183 +#: libraries/messages.inc.php:286 libraries/sqlparser.lib.php:183 msgid "END RAW" msgstr "КРАЈ СУРОВО" -#: libraries/messages.inc.php:293 libraries/server_links.inc.php:61 +#: libraries/messages.inc.php:289 libraries/server_links.inc.php:61 #: test/theme.php:113 msgid "Engines" msgstr "Складишта" -#: libraries/messages.inc.php:295 libraries/mysql_charsets.lib.php:238 +#: libraries/messages.inc.php:291 libraries/mysql_charsets.lib.php:238 msgid "English" msgstr "Англиски" -#: libraries/messages.inc.php:296 server_privileges.php:393 +#: libraries/messages.inc.php:292 server_privileges.php:393 #: server_privileges.php:535 server_privileges.php:1501 msgid " Note: MySQL privilege names are expressed in English " msgstr "" " Напомена: MySQL имињата на привилегите мора да бидат со латинични букви " -#: libraries/messages.inc.php:298 libraries/zip_extension.lib.php:49 +#: libraries/messages.inc.php:294 libraries/zip_extension.lib.php:49 #: libraries/zip_extension.lib.php:51 libraries/zip_extension.lib.php:66 msgid "Error in ZIP archive:" msgstr "" -#: libraries/messages.inc.php:303 libraries/mysql_charsets.lib.php:241 +#: libraries/messages.inc.php:299 libraries/mysql_charsets.lib.php:241 msgid "Esperanto" msgstr "" -#: libraries/messages.inc.php:304 libraries/mysql_charsets.lib.php:244 +#: libraries/messages.inc.php:300 libraries/mysql_charsets.lib.php:244 msgid "Estonian" msgstr "Естонски" -#: libraries/messages.inc.php:305 libraries/tbl_triggers.lib.php:29 +#: libraries/messages.inc.php:301 libraries/tbl_triggers.lib.php:29 #, fuzzy msgid "Event" msgstr "Пратено" -#: libraries/messages.inc.php:307 +#: libraries/messages.inc.php:303 msgid "Excel edition" msgstr "Excel издание" -#: libraries/messages.inc.php:311 pmd_pdf.php:85 +#: libraries/messages.inc.php:307 pmd_pdf.php:85 msgid "Export/Import to scale" msgstr "" -#: libraries/messages.inc.php:313 +#: libraries/messages.inc.php:309 msgid "Extended inserts" msgstr "Проширен INSERT" -#: libraries/messages.inc.php:314 pdf_schema.php:1267 pdf_schema.php:1288 +#: libraries/messages.inc.php:310 pdf_schema.php:1267 pdf_schema.php:1288 #: tbl_printview.php:147 tbl_structure.php:183 tbl_tracking.php:278 msgid "Extra" msgstr "Дополнително" -#: libraries/messages.inc.php:316 server_status.php:447 +#: libraries/messages.inc.php:312 server_status.php:447 msgid "Failed attempts" msgstr "Неуспешни обиди" -#: libraries/messages.inc.php:318 tbl_structure.php:375 +#: libraries/messages.inc.php:314 tbl_structure.php:375 #, php-format msgid "Field %s has been dropped" msgstr "Полето %s е избиршано" -#: libraries/messages.inc.php:322 libraries/sql_query_form.lib.php:317 +#: libraries/messages.inc.php:318 libraries/sql_query_form.lib.php:317 msgid "Fields" msgstr "Полиња" -#: libraries/messages.inc.php:332 server_binlog.php:136 +#: libraries/messages.inc.php:328 server_binlog.php:136 #, fuzzy msgid "Files" msgstr "Полиња" -#: libraries/messages.inc.php:334 server_privileges.php:1597 +#: libraries/messages.inc.php:330 server_privileges.php:1597 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -3791,219 +3791,219 @@ msgstr "" "измени. Во тој случај %sповторно вчитајте ги привилегиите%s пред да " "продолжите со работа." -#: libraries/messages.inc.php:335 server_status.php:289 +#: libraries/messages.inc.php:331 server_status.php:289 msgid "Flush query cache" msgstr "" -#: libraries/messages.inc.php:336 +#: libraries/messages.inc.php:332 msgid "Flush the table (\"FLUSH\")" msgstr "Освежување на табелата (\"FLUSH\")" -#: libraries/messages.inc.php:337 server_status.php:271 +#: libraries/messages.inc.php:333 server_status.php:271 msgid "Flush (close) all tables" msgstr "" -#: libraries/messages.inc.php:339 tbl_relation.php:279 +#: libraries/messages.inc.php:335 tbl_relation.php:279 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" -#: libraries/messages.inc.php:341 setup/lib/messages.inc.php:88 +#: libraries/messages.inc.php:337 setup/lib/messages.inc.php:88 #: tbl_printview.php:376 tbl_structure.php:738 msgid "Format" msgstr "Формат" -#: libraries/messages.inc.php:344 server_replication.php:325 +#: libraries/messages.inc.php:340 server_replication.php:325 #, fuzzy msgid "Full start" msgstr "Текст клуч" -#: libraries/messages.inc.php:345 server_replication.php:325 +#: libraries/messages.inc.php:341 server_replication.php:325 msgid "Full stop" msgstr "" -#: libraries/messages.inc.php:347 tbl_change.php:282 tbl_change.php:320 +#: libraries/messages.inc.php:343 tbl_change.php:282 tbl_change.php:320 msgid "Function" msgstr "Функција" -#: libraries/messages.inc.php:355 libraries/mysql_charsets.lib.php:377 +#: libraries/messages.inc.php:351 libraries/mysql_charsets.lib.php:377 msgid "Georgian" msgstr "Грузиски" -#: libraries/messages.inc.php:356 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:352 libraries/mysql_charsets.lib.php:247 #: libraries/mysql_charsets.lib.php:250 msgid "German" msgstr "Германски" -#: libraries/messages.inc.php:357 themes.php:42 +#: libraries/messages.inc.php:353 themes.php:42 msgid "Get more themes!" msgstr "" -#: libraries/messages.inc.php:358 server_privileges.php:2134 +#: libraries/messages.inc.php:354 server_privileges.php:2134 msgid "global" msgstr "глобално" -#: libraries/messages.inc.php:359 server_privileges.php:524 +#: libraries/messages.inc.php:355 server_privileges.php:524 #: server_privileges.php:1500 msgid "Global privileges" msgstr "Глобални привилегии" -#: libraries/messages.inc.php:360 server_variables.php:55 +#: libraries/messages.inc.php:356 server_variables.php:55 #: server_variables.php:89 msgid "Global value" msgstr "Глобална вредност" -#: libraries/messages.inc.php:365 server_privileges.php:1502 +#: libraries/messages.inc.php:361 server_privileges.php:1502 #: server_privileges.php:1684 server_privileges.php:2033 msgid "Grant" msgstr "Овозможи" -#: libraries/messages.inc.php:366 libraries/mysql_charsets.lib.php:380 +#: libraries/messages.inc.php:362 libraries/mysql_charsets.lib.php:380 msgid "Greek" msgstr "Грчки" -#: libraries/messages.inc.php:367 +#: libraries/messages.inc.php:363 msgid "\"gzipped\"" msgstr "\"gzip\"" -#: libraries/messages.inc.php:369 server_status.php:250 +#: libraries/messages.inc.php:365 server_status.php:250 msgid "Handler" msgstr "" -#: libraries/messages.inc.php:370 server_synchronize.php:464 +#: libraries/messages.inc.php:366 server_synchronize.php:464 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: libraries/messages.inc.php:372 libraries/mysql_charsets.lib.php:374 +#: libraries/messages.inc.php:368 libraries/mysql_charsets.lib.php:374 msgid "Hebrew" msgstr "Хебрејски" -#: libraries/messages.inc.php:373 pmd_general.php:83 +#: libraries/messages.inc.php:369 pmd_general.php:83 msgid "Help" msgstr "" -#: libraries/messages.inc.php:374 +#: libraries/messages.inc.php:370 msgid "Use hexadecimal for BLOB" msgstr "" -#: libraries/messages.inc.php:376 pmd_general.php:120 +#: libraries/messages.inc.php:372 pmd_general.php:120 #, fuzzy msgid "Hide/Show all" msgstr "прикажи ги сите" -#: libraries/messages.inc.php:377 pmd_general.php:124 +#: libraries/messages.inc.php:373 pmd_general.php:124 msgid "Hide/Show Tables with no relation" msgstr "" -#: libraries/messages.inc.php:378 libraries/navigation_header.inc.php:54 +#: libraries/messages.inc.php:374 libraries/navigation_header.inc.php:54 #: libraries/navigation_header.inc.php:57 #: libraries/navigation_header.inc.php:58 msgid "Home" msgstr "Почетна страница" -#: libraries/messages.inc.php:379 main.php:233 +#: libraries/messages.inc.php:375 main.php:233 msgid "Official Homepage" msgstr "официјален веб сајт на phpMyAdmin" -#: libraries/messages.inc.php:382 libraries/replication_gui.lib.php:327 +#: libraries/messages.inc.php:378 libraries/replication_gui.lib.php:327 #: server_privileges.php:753 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/messages.inc.php:383 +#: libraries/messages.inc.php:379 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/messages.inc.php:384 libraries/mysql_charsets.lib.php:253 +#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:253 msgid "Hungarian" msgstr "Унгарски" -#: libraries/messages.inc.php:386 libraries/mysql_charsets.lib.php:256 +#: libraries/messages.inc.php:382 libraries/mysql_charsets.lib.php:256 msgid "Icelandic" msgstr "Исландски" -#: libraries/messages.inc.php:387 server_processlist.php:53 +#: libraries/messages.inc.php:383 server_processlist.php:53 msgid "ID" msgstr "ID" -#: libraries/messages.inc.php:388 libraries/mult_submits.inc.php:108 +#: libraries/messages.inc.php:384 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:479 msgid "Fulltext" msgstr "Текст клуч" -#: libraries/messages.inc.php:389 +#: libraries/messages.inc.php:385 msgid "Ignore duplicate rows" msgstr "" -#: libraries/messages.inc.php:390 tbl_change.php:302 tbl_indexes.php:200 +#: libraries/messages.inc.php:386 tbl_change.php:302 tbl_indexes.php:200 #: tbl_indexes.php:225 msgid "Ignore" msgstr "Игнорирај" -#: libraries/messages.inc.php:391 +#: libraries/messages.inc.php:387 msgid "Use ignore inserts" msgstr "Игнорирај дупликати при внесување" -#: libraries/messages.inc.php:392 +#: libraries/messages.inc.php:388 msgid "Column names in first row" msgstr "" -#: libraries/messages.inc.php:393 +#: libraries/messages.inc.php:389 msgid "Do not import empty rows" msgstr "" -#: libraries/messages.inc.php:394 pmd_general.php:104 +#: libraries/messages.inc.php:390 pmd_general.php:104 msgid "Import/Export coordinates for PDF schema" msgstr "" -#: libraries/messages.inc.php:395 querywindow.php:104 +#: libraries/messages.inc.php:391 querywindow.php:104 msgid "Import files" msgstr "Увоз на податотека" -#: libraries/messages.inc.php:403 +#: libraries/messages.inc.php:399 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/messages.inc.php:404 libraries/messages.inc.php:584 +#: libraries/messages.inc.php:400 libraries/messages.inc.php:580 msgid "Open Document Spreadsheet" msgstr "" -#: libraries/messages.inc.php:405 +#: libraries/messages.inc.php:401 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/messages.inc.php:409 +#: libraries/messages.inc.php:405 msgid "Excel 97-2003 XLS Workbook" msgstr "" -#: libraries/messages.inc.php:410 +#: libraries/messages.inc.php:406 msgid "Excel 2007 XLSX Workbook" msgstr "" -#: libraries/messages.inc.php:414 libraries/mult_submits.inc.php:98 +#: libraries/messages.inc.php:410 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:476 tbl_structure.php:674 msgid "Index" msgstr "Клуч" -#: libraries/messages.inc.php:415 tbl_indexes.php:168 +#: libraries/messages.inc.php:411 tbl_indexes.php:168 msgid "Index name:" msgstr "Име на клуч :" -#: libraries/messages.inc.php:416 tbl_indexes.php:174 +#: libraries/messages.inc.php:412 tbl_indexes.php:174 msgid "Index type:" msgstr "Тип на клуч :" -#: libraries/messages.inc.php:417 sql.php:639 +#: libraries/messages.inc.php:413 sql.php:639 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Проблем при индексирање на табелата `%s`" -#: libraries/messages.inc.php:427 main.php:266 +#: libraries/messages.inc.php:423 main.php:266 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -4015,163 +4015,163 @@ msgstr "" "работи со овие подесувања, отворен е за упди, и навистина треба да го " "поправите овој сигурносен ризик." -#: libraries/messages.inc.php:428 tbl_change.php:1130 +#: libraries/messages.inc.php:424 tbl_change.php:1130 msgid "Insert as new row" msgstr "Внеси како нов запис" -#: libraries/messages.inc.php:429 sql.php:496 tbl_replace.php:386 +#: libraries/messages.inc.php:425 sql.php:496 tbl_replace.php:386 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: libraries/messages.inc.php:430 tbl_change.php:1131 +#: libraries/messages.inc.php:426 tbl_change.php:1131 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/messages.inc.php:432 main.php:139 +#: libraries/messages.inc.php:428 main.php:139 msgid "Interface" msgstr "" -#: libraries/messages.inc.php:433 tbl_relation.php:407 +#: libraries/messages.inc.php:429 tbl_relation.php:407 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: libraries/messages.inc.php:435 pdf_pages.php:303 +#: libraries/messages.inc.php:431 pdf_pages.php:303 msgid "Internal relations" msgstr "Внатрешни релации" -#: libraries/messages.inc.php:438 tbl_indexes.php:256 tbl_structure.php:590 +#: libraries/messages.inc.php:434 tbl_indexes.php:256 tbl_structure.php:590 #: tbl_structure.php:601 msgid "Column count has to be larger than zero." msgstr "" -#: libraries/messages.inc.php:444 libraries/tbl_properties.inc.php:784 +#: libraries/messages.inc.php:440 libraries/tbl_properties.inc.php:784 #: tbl_structure.php:537 msgid "You have to add at least one field." msgstr "" -#: libraries/messages.inc.php:449 +#: libraries/messages.inc.php:445 #, php-format msgid "Invalid server index: \"%s\"" msgstr "" -#: libraries/messages.inc.php:452 libraries/mysql_charsets.lib.php:259 +#: libraries/messages.inc.php:448 libraries/mysql_charsets.lib.php:259 #: libraries/mysql_charsets.lib.php:349 msgid "Japanese" msgstr "Јапонски" -#: libraries/messages.inc.php:453 main.php:331 +#: libraries/messages.inc.php:449 main.php:331 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: libraries/messages.inc.php:454 server_status.php:257 +#: libraries/messages.inc.php:450 server_status.php:257 msgid "Joins" msgstr "" -#: libraries/messages.inc.php:457 server_privileges.php:763 +#: libraries/messages.inc.php:453 server_privileges.php:763 msgid "Do not change the password" msgstr "Немој да ја менуваш лозинката" -#: libraries/messages.inc.php:458 server_status.php:256 +#: libraries/messages.inc.php:454 server_status.php:256 msgid "Key cache" msgstr "" -#: libraries/messages.inc.php:462 libraries/mysql_charsets.lib.php:268 +#: libraries/messages.inc.php:458 libraries/mysql_charsets.lib.php:268 #: libraries/mysql_charsets.lib.php:371 msgid "Korean" msgstr "Корејски" -#: libraries/messages.inc.php:466 libraries/select_lang.lib.php:480 +#: libraries/messages.inc.php:462 libraries/select_lang.lib.php:480 #: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492 #, php-format msgid "Unknown language: %1$s." msgstr "" -#: libraries/messages.inc.php:468 +#: libraries/messages.inc.php:464 msgid "Table caption" msgstr "Коментар на табела" -#: libraries/messages.inc.php:469 +#: libraries/messages.inc.php:465 msgid "Content of table __TABLE__" msgstr "Содржина на табелата __TABLE__" -#: libraries/messages.inc.php:470 +#: libraries/messages.inc.php:466 msgid "Continued table caption" msgstr "Продолжен коментар на табелите" -#: libraries/messages.inc.php:471 +#: libraries/messages.inc.php:467 msgid "(continued)" msgstr "(продолжува)" -#: libraries/messages.inc.php:472 +#: libraries/messages.inc.php:468 msgid "Include table caption" msgstr "Вклучи и коментар на табелата" -#: libraries/messages.inc.php:473 +#: libraries/messages.inc.php:469 msgid "Label key" msgstr "Ознака на клучот" -#: libraries/messages.inc.php:474 +#: libraries/messages.inc.php:470 msgid "LaTeX" msgstr "LaTeX" -#: libraries/messages.inc.php:475 +#: libraries/messages.inc.php:471 msgid "Structure of table __TABLE__" msgstr "Структура на табелата __TABLE__" -#: libraries/messages.inc.php:476 libraries/mysql_charsets.lib.php:262 +#: libraries/messages.inc.php:472 libraries/mysql_charsets.lib.php:262 msgid "Latvian" msgstr "Летонски" -#: libraries/messages.inc.php:477 +#: libraries/messages.inc.php:473 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/messages.inc.php:478 +#: libraries/messages.inc.php:474 msgid "Use LOCAL keyword" msgstr "" -#: libraries/messages.inc.php:479 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:475 libraries/tbl_properties.inc.php:105 msgid "Length/Values" msgstr "Должина/Вредност*" -#: libraries/messages.inc.php:480 tbl_select.php:295 +#: libraries/messages.inc.php:476 tbl_select.php:295 msgid "Number of rows per page" msgstr "Број на записи на страница" -#: libraries/messages.inc.php:484 libraries/mysql_charsets.lib.php:265 +#: libraries/messages.inc.php:480 libraries/mysql_charsets.lib.php:265 msgid "Lithuanian" msgstr "Литвански" -#: libraries/messages.inc.php:485 libraries/replication_gui.lib.php:302 +#: libraries/messages.inc.php:481 libraries/replication_gui.lib.php:302 #: server_privileges.php:729 msgid "Local" msgstr "Локален" -#: libraries/messages.inc.php:487 server_privileges.php:669 +#: libraries/messages.inc.php:483 server_privileges.php:669 msgid "Login Information" msgstr "Податоци за најавувањето" -#: libraries/messages.inc.php:490 libraries/navigation_header.inc.php:67 +#: libraries/messages.inc.php:486 libraries/navigation_header.inc.php:67 #: libraries/navigation_header.inc.php:70 #: libraries/navigation_header.inc.php:71 main.php:99 msgid "Log out" msgstr "Одјавување" -#: libraries/messages.inc.php:497 server_status.php:440 +#: libraries/messages.inc.php:493 server_status.php:440 msgid "max. concurrent connections" msgstr "" -#: libraries/messages.inc.php:498 +#: libraries/messages.inc.php:494 msgid "Maximal length of created query" msgstr "" -#: libraries/messages.inc.php:500 main.php:282 +#: libraries/messages.inc.php:496 main.php:282 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -4181,7 +4181,7 @@ msgstr "" "мултибајт каратер сет. Без mbstring екстензиите phpMyAdmin не може исправно " "да ги раздвојува стринговите и тоа може да доведе до неочекувани резултати." -#: libraries/messages.inc.php:501 main.php:274 +#: libraries/messages.inc.php:497 main.php:274 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -4191,24 +4191,24 @@ msgstr "" "опција не е компатибилна со phpMyAdmin и може да доведе до грешки во некои " "податоци!" -#: libraries/messages.inc.php:502 +#: libraries/messages.inc.php:498 msgid "MediaWiki Table" msgstr "" -#: libraries/messages.inc.php:503 transformation_overview.php:25 +#: libraries/messages.inc.php:499 transformation_overview.php:25 msgid "Available MIME types" msgstr "Достапни MIME-типови" -#: libraries/messages.inc.php:504 transformation_overview.php:43 +#: libraries/messages.inc.php:500 transformation_overview.php:43 msgid "Available transformations" msgstr "Достапни трансформации" -#: libraries/messages.inc.php:505 +#: libraries/messages.inc.php:501 msgctxt "$strMIME_description" msgid "Description" msgstr "Опис" -#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:580 +#: libraries/messages.inc.php:503 libraries/tbl_properties.inc.php:580 #: transformation_overview.php:60 #, php-format msgid "" @@ -4218,7 +4218,7 @@ msgstr "" "Нема опис за оваа трансформација.
Ве молиме прашајте го авторот што ја " "направил %s." -#: libraries/messages.inc.php:509 libraries/tbl_properties.inc.php:137 +#: libraries/messages.inc.php:505 libraries/tbl_properties.inc.php:137 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -4227,7 +4227,7 @@ msgstr "" "За листа на достапни опции на транформациите и нивните MIME-тип " "трансформации, кликнете на %sопис на трансформацијата%s" -#: libraries/messages.inc.php:510 libraries/tbl_properties.inc.php:146 +#: libraries/messages.inc.php:506 libraries/tbl_properties.inc.php:146 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -4239,112 +4239,112 @@ msgstr "" "или апостроф (\"'\") во тие вредности, ставете обратна коса црта пред нив " "(пример '\\\\xyz' или 'a\\'b')." -#: libraries/messages.inc.php:511 libraries/tbl_properties.inc.php:145 +#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:145 msgid "Transformation options" msgstr "Опции на трансформацијата" -#: libraries/messages.inc.php:513 transformation_overview.php:38 +#: libraries/messages.inc.php:509 transformation_overview.php:38 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "" "MIME-типовите прикажани во курзив немаат одвоене функции на трансформација." -#: libraries/messages.inc.php:515 tbl_indexes.php:162 +#: libraries/messages.inc.php:511 tbl_indexes.php:162 msgid "Modify an index" msgstr "Промени го клучот" -#: libraries/messages.inc.php:517 pmd_general.php:108 +#: libraries/messages.inc.php:513 pmd_general.php:108 msgid "Move Menu" msgstr "" -#: libraries/messages.inc.php:518 tbl_operations.php:276 +#: libraries/messages.inc.php:514 tbl_operations.php:276 msgid "Move table to (database.table):" msgstr "Премести ја табелата во (база.табела):" -#: libraries/messages.inc.php:519 tbl_move_copy.php:56 +#: libraries/messages.inc.php:515 tbl_move_copy.php:56 #, php-format msgid "Table %s has been moved to %s." msgstr "Табелата %s е преместена во %s." -#: libraries/messages.inc.php:520 tbl_move_copy.php:46 +#: libraries/messages.inc.php:516 tbl_move_copy.php:46 msgid "Can't move table to same one!" msgstr "Не може да ја преместам табелата во самата себе!" -#: libraries/messages.inc.php:521 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:517 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 #: libraries/mysql_charsets.lib.php:332 libraries/mysql_charsets.lib.php:354 #: libraries/mysql_charsets.lib.php:365 msgid "multilingual" msgstr "мултијазичен" -#: libraries/messages.inc.php:534 main.php:193 +#: libraries/messages.inc.php:530 main.php:193 msgid "MySQL charset" msgstr "MySQL множество на знаци" -#: libraries/messages.inc.php:535 main.php:211 +#: libraries/messages.inc.php:531 main.php:211 msgid "MySQL client version" msgstr "" -#: libraries/messages.inc.php:536 main.php:125 +#: libraries/messages.inc.php:532 main.php:125 msgid "MySQL connection collation" msgstr "Колација за MySQL врска" -#: libraries/messages.inc.php:537 main.php:346 +#: libraries/messages.inc.php:533 main.php:346 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: libraries/messages.inc.php:539 server_status.php:294 +#: libraries/messages.inc.php:535 server_status.php:294 msgid "Show processes" msgstr "Прикажи листа на процеси" -#: libraries/messages.inc.php:545 navigation.php:210 server_databases.php:371 +#: libraries/messages.inc.php:541 navigation.php:210 server_databases.php:371 #: server_synchronize.php:1191 msgid "No databases" msgstr "Базата на податоци не постои" -#: libraries/messages.inc.php:546 server_databases.php:52 +#: libraries/messages.inc.php:542 server_databases.php:52 msgid "No databases selected." msgstr "Не е избрана ни една база на податоци." -#: libraries/messages.inc.php:548 libraries/relation.lib.php:1173 +#: libraries/messages.inc.php:544 libraries/relation.lib.php:1173 msgid "no description" msgstr "нема опис" -#: libraries/messages.inc.php:552 libraries/zip_extension.lib.php:26 +#: libraries/messages.inc.php:548 libraries/zip_extension.lib.php:26 msgid "No files found inside ZIP archive!" msgstr "" -#: libraries/messages.inc.php:555 tbl_indexes.php:91 +#: libraries/messages.inc.php:551 tbl_indexes.php:91 msgid "No index parts defined!" msgstr "Делови од клучот не се дефинирани!" -#: libraries/messages.inc.php:556 libraries/mult_submits.inc.php:435 +#: libraries/messages.inc.php:552 libraries/mult_submits.inc.php:435 #: tbl_replace.php:331 msgid "No change" msgstr "Нема измени" -#: libraries/messages.inc.php:557 +#: libraries/messages.inc.php:553 #, fuzzy msgctxt "$strNoneDefault" msgid "None" msgstr "нема" -#: libraries/messages.inc.php:560 libraries/plugin_interface.lib.php:312 +#: libraries/messages.inc.php:556 libraries/plugin_interface.lib.php:312 msgid "This format has no options" msgstr "Не постојат опции за овој формат" -#: libraries/messages.inc.php:565 user_password.php:54 +#: libraries/messages.inc.php:561 user_password.php:54 msgid "You don't have sufficient privileges to be here right now!" msgstr "Немате право на пристап овде!" -#: libraries/messages.inc.php:566 tbl_row_action.php:29 +#: libraries/messages.inc.php:562 tbl_row_action.php:29 msgid "No rows selected" msgstr "Нема селектирани записи" -#: libraries/messages.inc.php:569 themes.php:32 +#: libraries/messages.inc.php:565 themes.php:32 #, php-format msgid "" "No themes support; please check your configuration and/or your themes in " @@ -4353,298 +4353,298 @@ msgstr "" "Нема подршка за теми, ве молиме проверете ја конфигурацијата и/или темите во " "директориумот %s." -#: libraries/messages.inc.php:571 libraries/relation.lib.php:95 +#: libraries/messages.inc.php:567 libraries/relation.lib.php:95 msgid "not OK" msgstr "не е како што треба" -#: libraries/messages.inc.php:572 server_synchronize.php:400 +#: libraries/messages.inc.php:568 server_synchronize.php:400 #: server_synchronize.php:839 msgid "not present" msgstr "" -#: libraries/messages.inc.php:573 pdf_pages.php:36 pdf_pages.php:42 +#: libraries/messages.inc.php:569 pdf_pages.php:36 pdf_pages.php:42 #: pdf_pages.php:48 pdf_pages.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "%s табелата не е пронајдена или не е поставена во %s" -#: libraries/messages.inc.php:574 server_privileges.php:804 +#: libraries/messages.inc.php:570 server_privileges.php:804 #: server_privileges.php:2166 msgid "No user(s) found." msgstr "Корисникот не е пронајден." -#: libraries/messages.inc.php:578 pmd_general.php:164 +#: libraries/messages.inc.php:574 pmd_general.php:164 msgid "Number of tables" msgstr "" -#: libraries/messages.inc.php:581 server_databases.php:117 +#: libraries/messages.inc.php:577 server_databases.php:117 #: server_status.php:260 setup/lib/messages.inc.php:117 msgid "Tables" msgstr "Табели" -#: libraries/messages.inc.php:583 libraries/relation.lib.php:99 +#: libraries/messages.inc.php:579 libraries/relation.lib.php:99 #: pmd_general.php:340 msgid "OK" msgstr "ОК" -#: libraries/messages.inc.php:585 +#: libraries/messages.inc.php:581 msgid "Open Document Text" msgstr "" -#: libraries/messages.inc.php:588 tbl_select.php:138 +#: libraries/messages.inc.php:584 tbl_select.php:138 msgid "Operator" msgstr "Оператор" -#: libraries/messages.inc.php:589 tbl_operations.php:662 +#: libraries/messages.inc.php:585 tbl_operations.php:662 msgid "Optimize" msgstr "" -#: libraries/messages.inc.php:602 libraries/tbl_properties.inc.php:755 +#: libraries/messages.inc.php:598 libraries/tbl_properties.inc.php:755 msgid "PARTITION definition" msgstr "" -#: libraries/messages.inc.php:603 tbl_structure.php:757 +#: libraries/messages.inc.php:599 tbl_structure.php:757 msgid "partitioned" msgstr "" -#: libraries/messages.inc.php:604 tbl_operations.php:649 +#: libraries/messages.inc.php:600 tbl_operations.php:649 #, fuzzy msgid "Partition maintenance" msgstr "Можете да извршите:" -#: libraries/messages.inc.php:605 tbl_operations.php:657 +#: libraries/messages.inc.php:601 tbl_operations.php:657 #, php-format msgid "Partition %s" msgstr "" -#: libraries/messages.inc.php:606 server_privileges.php:1212 +#: libraries/messages.inc.php:602 server_privileges.php:1212 #, php-format msgid "The password for %s was changed successfully." msgstr "Лозинката за %s успешно е променета." -#: libraries/messages.inc.php:635 +#: libraries/messages.inc.php:631 #, php-format msgid "Schema of the \"%s\" database - Page %s" msgstr "Шема на базата \"%s\" - Страница %s" -#: libraries/messages.inc.php:636 +#: libraries/messages.inc.php:632 #, php-format msgid "The \"%s\" table doesn't exist!" msgstr "Табелата \"%s\" не постои!" -#: libraries/messages.inc.php:637 pdf_schema.php:1013 +#: libraries/messages.inc.php:633 pdf_schema.php:1013 msgid "No tables" msgstr "Нема табела" -#: libraries/messages.inc.php:638 pmd_pdf.php:63 +#: libraries/messages.inc.php:634 pmd_pdf.php:63 #, fuzzy msgid "Page has been created" msgstr "Табелата %s е избришана" -#: libraries/messages.inc.php:639 pmd_pdf.php:65 +#: libraries/messages.inc.php:635 pmd_pdf.php:65 msgid "Page creation failed" msgstr "" -#: libraries/messages.inc.php:640 +#: libraries/messages.inc.php:636 msgid "PDF" msgstr "" -#: libraries/messages.inc.php:641 +#: libraries/messages.inc.php:637 msgid "(Generates a report containing the data of a single table)" msgstr "" -#: libraries/messages.inc.php:642 +#: libraries/messages.inc.php:638 msgid "Report title" msgstr "" -#: libraries/messages.inc.php:643 server_status.php:389 server_status.php:434 +#: libraries/messages.inc.php:639 server_status.php:389 server_status.php:434 #: server_status.php:497 server_status.php:555 msgid "per hour" msgstr "на час" -#: libraries/messages.inc.php:644 server_status.php:498 +#: libraries/messages.inc.php:640 server_status.php:498 msgid "per minute" msgstr "во минута" -#: libraries/messages.inc.php:645 server_status.php:499 +#: libraries/messages.inc.php:641 server_status.php:499 msgid "per second" msgstr "во секунда" -#: libraries/messages.inc.php:646 libraries/mysql_charsets.lib.php:271 +#: libraries/messages.inc.php:642 libraries/mysql_charsets.lib.php:271 msgid "Persian" msgstr "Персиски" -#: libraries/messages.inc.php:647 libraries/mysql_charsets.lib.php:250 +#: libraries/messages.inc.php:643 libraries/mysql_charsets.lib.php:250 msgid "phone book" msgstr "телефонски именик" -#: libraries/messages.inc.php:648 +#: libraries/messages.inc.php:644 msgid "PHP array" msgstr "" -#: libraries/messages.inc.php:650 main.php:213 +#: libraries/messages.inc.php:646 main.php:213 #, fuzzy msgid "PHP extension" msgstr "PHP верзија" -#: libraries/messages.inc.php:654 libraries/relation.lib.php:163 +#: libraries/messages.inc.php:650 libraries/relation.lib.php:163 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/messages.inc.php:655 libraries/relation.lib.php:159 +#: libraries/messages.inc.php:651 libraries/relation.lib.php:159 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/messages.inc.php:656 libraries/relation.lib.php:161 +#: libraries/messages.inc.php:652 libraries/relation.lib.php:161 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" -#: libraries/messages.inc.php:657 libraries/relation.lib.php:162 +#: libraries/messages.inc.php:653 libraries/relation.lib.php:162 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/messages.inc.php:658 libraries/relation.lib.php:164 +#: libraries/messages.inc.php:654 libraries/relation.lib.php:164 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/messages.inc.php:661 libraries/mysql_charsets.lib.php:274 +#: libraries/messages.inc.php:657 libraries/mysql_charsets.lib.php:274 msgid "Polish" msgstr "Полски" -#: libraries/messages.inc.php:662 libraries/replication_gui.lib.php:67 +#: libraries/messages.inc.php:658 libraries/replication_gui.lib.php:67 #: server_synchronize.php:1163 #, fuzzy msgid "Port" msgstr "Подредуваање" -#: libraries/messages.inc.php:667 tbl_indexes.php:67 +#: libraries/messages.inc.php:663 tbl_indexes.php:67 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Името на примарниот клуч мора да биде... PRIMARY!" -#: libraries/messages.inc.php:668 tbl_indexes.php:184 +#: libraries/messages.inc.php:664 tbl_indexes.php:184 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "(\"PRIMARY\" може да биде име само на примарниот клуч!)" -#: libraries/messages.inc.php:669 libraries/mult_submits.inc.php:76 +#: libraries/messages.inc.php:665 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:474 msgid "Primary" msgstr "Примарен" -#: libraries/messages.inc.php:673 server_privileges.php:227 +#: libraries/messages.inc.php:669 server_privileges.php:227 msgid "Includes all privileges except GRANT." msgstr "Ги вклучува сите привилегии освен GRANT." -#: libraries/messages.inc.php:674 server_privileges.php:153 +#: libraries/messages.inc.php:670 server_privileges.php:153 #: server_privileges.php:476 msgid "Allows altering the structure of existing tables." msgstr "Дозволува промена на структурата на постоечките табели." -#: libraries/messages.inc.php:675 server_privileges.php:169 +#: libraries/messages.inc.php:671 server_privileges.php:169 #: server_privileges.php:482 msgid "Allows altering and dropping stored routines." msgstr "Дозволува промена и бришење на stored рутини." -#: libraries/messages.inc.php:676 server_privileges.php:145 +#: libraries/messages.inc.php:672 server_privileges.php:145 #: server_privileges.php:475 msgid "Allows creating new databases and tables." msgstr "Дозволува креирање на нови бази на податоци и табели." -#: libraries/messages.inc.php:677 server_privileges.php:168 +#: libraries/messages.inc.php:673 server_privileges.php:168 #: server_privileges.php:481 msgid "Allows creating stored routines." msgstr "Дозволува креирање на stored рутини." -#: libraries/messages.inc.php:678 server_privileges.php:475 +#: libraries/messages.inc.php:674 server_privileges.php:475 msgid "Allows creating new tables." msgstr "Дозволува креирање на нови табела." -#: libraries/messages.inc.php:679 server_privileges.php:156 +#: libraries/messages.inc.php:675 server_privileges.php:156 #: server_privileges.php:479 msgid "Allows creating temporary tables." msgstr "Дозволува креирање на привремени табели..." -#: libraries/messages.inc.php:680 server_privileges.php:170 +#: libraries/messages.inc.php:676 server_privileges.php:170 #: server_privileges.php:515 msgid "Allows creating, dropping and renaming user accounts." msgstr "Дозволува креирање, бришење и преименување на корсиничките имиња." -#: libraries/messages.inc.php:681 server_privileges.php:160 +#: libraries/messages.inc.php:677 server_privileges.php:160 #: server_privileges.php:164 server_privileges.php:487 #: server_privileges.php:491 msgid "Allows creating new views." msgstr "Дозволува креирање на нови погледи." -#: libraries/messages.inc.php:682 server_privileges.php:144 +#: libraries/messages.inc.php:678 server_privileges.php:144 #: server_privileges.php:467 msgid "Allows deleting data." msgstr "Дозволува бришење на податоци." -#: libraries/messages.inc.php:683 server_privileges.php:146 +#: libraries/messages.inc.php:679 server_privileges.php:146 #: server_privileges.php:478 msgid "Allows dropping databases and tables." msgstr "Дозволува бришење на бази на податоци и табели." -#: libraries/messages.inc.php:684 server_privileges.php:478 +#: libraries/messages.inc.php:680 server_privileges.php:478 msgid "Allows dropping tables." msgstr "Дозволува бришење на табели." -#: libraries/messages.inc.php:685 server_privileges.php:161 +#: libraries/messages.inc.php:681 server_privileges.php:161 #: server_privileges.php:495 msgid "Allows to set up events for the event scheduler" msgstr "" -#: libraries/messages.inc.php:686 server_privileges.php:171 +#: libraries/messages.inc.php:682 server_privileges.php:171 #: server_privileges.php:483 msgid "Allows executing stored routines." msgstr "Дозволува извршување на stored рутини." -#: libraries/messages.inc.php:687 server_privileges.php:150 +#: libraries/messages.inc.php:683 server_privileges.php:150 #: server_privileges.php:470 msgid "Allows importing data from and exporting data into files." msgstr "Дозволува увоз на податоци и нивен извоз во податотеки." -#: libraries/messages.inc.php:688 server_privileges.php:501 +#: libraries/messages.inc.php:684 server_privileges.php:501 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Дозволува додавање на корисници и привилегии без повтроно вчитавање на " "табелата на привилегии." -#: libraries/messages.inc.php:689 server_privileges.php:152 +#: libraries/messages.inc.php:685 server_privileges.php:152 #: server_privileges.php:477 msgid "Allows creating and dropping indexes." msgstr "Дозволува креирање и бришење на клучева." -#: libraries/messages.inc.php:690 server_privileges.php:142 +#: libraries/messages.inc.php:686 server_privileges.php:142 #: server_privileges.php:403 server_privileges.php:465 msgid "Allows inserting and replacing data." msgstr "Дозволува вметнување и замена на података." -#: libraries/messages.inc.php:691 server_privileges.php:157 +#: libraries/messages.inc.php:687 server_privileges.php:157 #: server_privileges.php:510 msgid "Allows locking tables for the current thread." msgstr "Дозволува заклучување на табели на тековните процеси." -#: libraries/messages.inc.php:692 server_privileges.php:607 +#: libraries/messages.inc.php:688 server_privileges.php:607 #: server_privileges.php:609 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Го ограничува бројот на нови конекции кои корисникот може да ги отвори за " "еден час." -#: libraries/messages.inc.php:693 server_privileges.php:595 +#: libraries/messages.inc.php:689 server_privileges.php:595 #: server_privileges.php:597 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Го ограничува бројот на упити кои корисникот може да ги постави на серверот " "за еден час." -#: libraries/messages.inc.php:694 server_privileges.php:601 +#: libraries/messages.inc.php:690 server_privileges.php:601 #: server_privileges.php:603 msgid "" "Limits the number of commands that change any table or database the user may " @@ -4653,7 +4653,7 @@ msgstr "" "Го ограничува бројот на команди кои ги менуваат табелите или базите на " "податоци кои корисникот може да ги изврши за еден час." -#: libraries/messages.inc.php:695 server_privileges.php:613 +#: libraries/messages.inc.php:691 server_privileges.php:613 #: server_privileges.php:615 #, fuzzy msgid "Limits the number of simultaneous connections the user may have." @@ -4661,54 +4661,54 @@ msgstr "" "Го ограничува бројот на нови конекции кои корисникот може да ги отвори за " "еден час." -#: libraries/messages.inc.php:696 server_privileges.php:149 +#: libraries/messages.inc.php:692 server_privileges.php:149 #: server_privileges.php:505 msgid "Allows viewing processes of all users" msgstr "" -#: libraries/messages.inc.php:697 server_privileges.php:151 +#: libraries/messages.inc.php:693 server_privileges.php:151 #: server_privileges.php:409 server_privileges.php:511 msgid "Has no effect in this MySQL version." msgstr "Нема ефект во оваа верзији на MySQL." -#: libraries/messages.inc.php:698 server_privileges.php:147 +#: libraries/messages.inc.php:694 server_privileges.php:147 #: server_privileges.php:506 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Дозволува повтоно вчитување на подесувањата на серверот и празнење на кешот " "на серверот." -#: libraries/messages.inc.php:699 server_privileges.php:159 +#: libraries/messages.inc.php:695 server_privileges.php:159 #: server_privileges.php:513 msgid "Allows the user to ask where the slaves / masters are." msgstr "Дава права на кориснику да праша каде се главните/помошни сервери." -#: libraries/messages.inc.php:700 server_privileges.php:158 +#: libraries/messages.inc.php:696 server_privileges.php:158 #: server_privileges.php:514 msgid "Needed for the replication slaves." msgstr "Потребно заради помошните сервери за репликација." -#: libraries/messages.inc.php:701 server_privileges.php:141 +#: libraries/messages.inc.php:697 server_privileges.php:141 #: server_privileges.php:400 server_privileges.php:464 msgid "Allows reading data." msgstr "Дозволува читање на податоци." -#: libraries/messages.inc.php:702 server_privileges.php:154 +#: libraries/messages.inc.php:698 server_privileges.php:154 #: server_privileges.php:508 msgid "Gives access to the complete list of databases." msgstr "Дава пристап на комплетната листа на базите на податоци." -#: libraries/messages.inc.php:703 server_privileges.php:165 +#: libraries/messages.inc.php:699 server_privileges.php:165 #: server_privileges.php:167 server_privileges.php:480 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Дозволува извршување на SHOW CREATE VIEW упити." -#: libraries/messages.inc.php:704 server_privileges.php:148 +#: libraries/messages.inc.php:700 server_privileges.php:148 #: server_privileges.php:507 msgid "Allows shutting down the server." msgstr "Дозволува гасење на серверот." -#: libraries/messages.inc.php:705 server_privileges.php:155 +#: libraries/messages.inc.php:701 server_privileges.php:155 #: server_privileges.php:504 msgid "" "Allows connecting, even if maximum number of connections is reached; " @@ -4719,58 +4719,58 @@ msgstr "" "Неопходно за повеќето административни опции како што е подесување на " "глобални променливи или прекин на процеси наостанатите корисници." -#: libraries/messages.inc.php:706 server_privileges.php:162 +#: libraries/messages.inc.php:702 server_privileges.php:162 #: server_privileges.php:496 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "Дозволува креирање и бришење на клучева." -#: libraries/messages.inc.php:707 server_privileges.php:143 +#: libraries/messages.inc.php:703 server_privileges.php:143 #: server_privileges.php:406 server_privileges.php:466 msgid "Allows changing data." msgstr "Дозволува измена на податоци." -#: libraries/messages.inc.php:708 server_privileges.php:221 +#: libraries/messages.inc.php:704 server_privileges.php:221 msgid "No privileges." msgstr "Нема привилегии." -#: libraries/messages.inc.php:710 server_privileges.php:1296 +#: libraries/messages.inc.php:706 server_privileges.php:1296 msgid "The privileges were reloaded successfully." msgstr "Привилегиите се успешно вчитани." -#: libraries/messages.inc.php:712 libraries/server_links.inc.php:80 +#: libraries/messages.inc.php:708 libraries/server_links.inc.php:80 #, fuzzy msgid "Processes" msgstr "Листа на процеси" -#: libraries/messages.inc.php:714 main.php:187 +#: libraries/messages.inc.php:710 main.php:187 msgid "Protocol version" msgstr "" -#: libraries/messages.inc.php:715 +#: libraries/messages.inc.php:711 msgid "Put fields names in the first row" msgstr "Стави ги имињата на полињата во првата редица" -#: libraries/messages.inc.php:720 server_synchronize.php:1003 +#: libraries/messages.inc.php:716 server_synchronize.php:1003 msgid "The following queries have been executed:" msgstr "" -#: libraries/messages.inc.php:721 server_status.php:251 +#: libraries/messages.inc.php:717 server_status.php:251 #, fuzzy msgid "Query cache" msgstr "Вид на упит" -#: libraries/messages.inc.php:722 libraries/navigation_header.inc.php:80 +#: libraries/messages.inc.php:718 libraries/navigation_header.inc.php:80 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 setup/lib/messages.inc.php:122 msgid "Query window" msgstr "Прозорец за упити" -#: libraries/messages.inc.php:725 querywindow.php:109 querywindow.php:217 +#: libraries/messages.inc.php:721 querywindow.php:109 querywindow.php:217 msgid "SQL history" msgstr "SQL историја" -#: libraries/messages.inc.php:726 server_status.php:490 +#: libraries/messages.inc.php:722 server_status.php:490 #, php-format msgid "" "Query statistics: Since its startup, %s queries have been sent to the " @@ -4779,137 +4779,137 @@ msgstr "" "Статистики на упити: %s упити се поставени на серверот од времето на " "неговото стартување." -#: libraries/messages.inc.php:728 server_status.php:554 +#: libraries/messages.inc.php:724 server_status.php:554 msgid "Query type" msgstr "Вид на упит" -#: libraries/messages.inc.php:729 libraries/sql_query_form.lib.php:381 +#: libraries/messages.inc.php:725 libraries/sql_query_form.lib.php:381 msgid "Do not overwrite this query from outside the window" msgstr "Не го препишувај овој упит надвор од овој прозорец" -#: libraries/messages.inc.php:732 tbl_operations.php:663 +#: libraries/messages.inc.php:728 tbl_operations.php:663 msgid "Rebuild" msgstr "" -#: libraries/messages.inc.php:733 server_status.php:394 +#: libraries/messages.inc.php:729 server_status.php:394 msgid "Received" msgstr "Примено" -#: libraries/messages.inc.php:734 pmd_pdf.php:89 +#: libraries/messages.inc.php:730 pmd_pdf.php:89 msgid "recommended" msgstr "" -#: libraries/messages.inc.php:736 tbl_operations.php:702 +#: libraries/messages.inc.php:732 tbl_operations.php:702 msgid "Check referential integrity:" msgstr "Провери го референцијалниот интегритет:" -#: libraries/messages.inc.php:740 pdf_schema.php:1032 pdf_schema.php:1141 +#: libraries/messages.inc.php:736 pdf_schema.php:1032 pdf_schema.php:1141 msgid "Relational schema" msgstr "Релациона шема" -#: libraries/messages.inc.php:744 tbl_relation.php:399 +#: libraries/messages.inc.php:740 tbl_relation.php:399 msgid "Relations" msgstr "Релации" -#: libraries/messages.inc.php:745 tbl_structure.php:507 tbl_structure.php:509 +#: libraries/messages.inc.php:741 tbl_structure.php:507 tbl_structure.php:509 msgid "Relation view" msgstr "Релационен поглед" -#: libraries/messages.inc.php:746 server_privileges.php:1246 +#: libraries/messages.inc.php:742 server_privileges.php:1246 msgid "Reloading the privileges" msgstr "Повторно ги вчитувам привилегиите" -#: libraries/messages.inc.php:747 navigation.php:66 navigation.php:67 +#: libraries/messages.inc.php:743 navigation.php:66 navigation.php:67 #: navigation.php:70 msgid "Reload navigation frame" msgstr "" -#: libraries/messages.inc.php:748 pmd_general.php:80 +#: libraries/messages.inc.php:744 pmd_general.php:80 msgid "Reload" msgstr "" -#: libraries/messages.inc.php:749 libraries/server_synchronize.lib.php:1345 +#: libraries/messages.inc.php:745 libraries/server_synchronize.lib.php:1345 #: libraries/server_synchronize.lib.php:1371 msgid "Remote server" msgstr "" -#: libraries/messages.inc.php:750 +#: libraries/messages.inc.php:746 msgid "Remove CRLF characters within fields" msgstr "" -#: libraries/messages.inc.php:751 tbl_operations.php:676 +#: libraries/messages.inc.php:747 tbl_operations.php:676 msgid "Remove partitioning" msgstr "" -#: libraries/messages.inc.php:752 server_privileges.php:1575 +#: libraries/messages.inc.php:748 server_privileges.php:1575 msgid "Remove selected users" msgstr "Избриши ги селектираните корисници" -#: libraries/messages.inc.php:755 tbl_operations.php:338 +#: libraries/messages.inc.php:751 tbl_operations.php:338 msgid "Rename table to" msgstr "Промени го името на табелата во " -#: libraries/messages.inc.php:756 view_operations.php:93 +#: libraries/messages.inc.php:752 view_operations.php:93 #, fuzzy msgid "Rename view to" msgstr "Промени го името на табелата во " -#: libraries/messages.inc.php:757 tbl_operations.php:664 +#: libraries/messages.inc.php:753 tbl_operations.php:664 #, fuzzy msgid "Repair" msgstr "Поправка на табелата" -#: libraries/messages.inc.php:759 +#: libraries/messages.inc.php:755 msgid "Replace NULL by" msgstr "Замени NULL со" -#: libraries/messages.inc.php:760 +#: libraries/messages.inc.php:756 msgid "Replace table data with file" msgstr "Замени ги податоците во табелата со подаците од податотеката" -#: libraries/messages.inc.php:761 server_replication.php:228 +#: libraries/messages.inc.php:757 server_replication.php:228 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: libraries/messages.inc.php:762 libraries/replication_gui.lib.php:236 +#: libraries/messages.inc.php:758 libraries/replication_gui.lib.php:236 #: server_replication.php:194 msgid "Add slave replication user" msgstr "" -#: libraries/messages.inc.php:763 server_replication.php:74 +#: libraries/messages.inc.php:759 server_replication.php:74 #, php-format msgid "Master server changed succesfully to %s" msgstr "" -#: libraries/messages.inc.php:764 server_replication.php:182 +#: libraries/messages.inc.php:760 server_replication.php:182 msgid "This server is configured as master in a replication process." msgstr "" -#: libraries/messages.inc.php:765 server_replication.php:322 +#: libraries/messages.inc.php:761 server_replication.php:322 msgid "Control slave:" msgstr "" -#: libraries/messages.inc.php:766 server_replication.php:65 +#: libraries/messages.inc.php:762 server_replication.php:65 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: libraries/messages.inc.php:767 server_replication.php:58 +#: libraries/messages.inc.php:763 server_replication.php:58 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: libraries/messages.inc.php:768 server_replication.php:221 +#: libraries/messages.inc.php:764 server_replication.php:221 msgid "Replicate all databases; Ignore:" msgstr "" -#: libraries/messages.inc.php:769 server_replication.php:222 +#: libraries/messages.inc.php:765 server_replication.php:222 msgid "Ignore all databases; Replicate:" msgstr "" -#: libraries/messages.inc.php:770 server_replication.php:218 +#: libraries/messages.inc.php:766 server_replication.php:218 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -4918,121 +4918,121 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: libraries/messages.inc.php:771 server_replication.php:217 +#: libraries/messages.inc.php:767 server_replication.php:217 msgid "Master configuration" msgstr "" -#: libraries/messages.inc.php:772 server_replication.php:181 +#: libraries/messages.inc.php:768 server_replication.php:181 #: server_replication.php:209 msgid "Master replication" msgstr "" -#: libraries/messages.inc.php:774 server_replication.php:230 +#: libraries/messages.inc.php:770 server_replication.php:230 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: libraries/messages.inc.php:775 server_replication.php:225 +#: libraries/messages.inc.php:771 server_replication.php:225 #, fuzzy msgid "Please select databases:" msgstr "Изберете база на податоци" -#: libraries/messages.inc.php:776 server_replication.php:210 +#: libraries/messages.inc.php:772 server_replication.php:210 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:188 +#: libraries/messages.inc.php:773 libraries/replication_gui.lib.php:188 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/messages.inc.php:778 server_replication.php:187 +#: libraries/messages.inc.php:774 server_replication.php:187 msgid "Show connected slaves" msgstr "" -#: libraries/messages.inc.php:779 libraries/messages.inc.php:885 +#: libraries/messages.inc.php:775 libraries/messages.inc.php:881 #: server_replication.php:184 server_status.php:281 msgid "Show master status" msgstr "" -#: libraries/messages.inc.php:780 server_replication.php:334 +#: libraries/messages.inc.php:776 server_replication.php:334 msgid "Skipping error(s) might lead into unsynchronized master and slave!" msgstr "" -#: libraries/messages.inc.php:781 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:51 #: server_replication.php:347 msgid "Change or reconfigure master server" msgstr "" -#: libraries/messages.inc.php:782 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:778 libraries/replication_gui.lib.php:51 msgid "Slave configuration" msgstr "" -#: libraries/messages.inc.php:783 server_replication.php:305 +#: libraries/messages.inc.php:779 server_replication.php:305 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: libraries/messages.inc.php:784 server_replication.php:332 +#: libraries/messages.inc.php:780 server_replication.php:332 msgid "Error management:" msgstr "" -#: libraries/messages.inc.php:785 server_replication.php:328 +#: libraries/messages.inc.php:781 server_replication.php:328 #, php-format msgid "IO Thread %s only" msgstr "" -#: libraries/messages.inc.php:786 server_replication.php:296 +#: libraries/messages.inc.php:782 server_replication.php:296 msgid "Slave IO Thread not running!" msgstr "" -#: libraries/messages.inc.php:787 server_replication.php:355 +#: libraries/messages.inc.php:783 server_replication.php:355 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/messages.inc.php:788 server_replication.php:326 +#: libraries/messages.inc.php:784 server_replication.php:326 msgid "Reset slave" msgstr "" -#: libraries/messages.inc.php:789 server_replication.php:308 +#: libraries/messages.inc.php:785 server_replication.php:308 msgid "See slave status table" msgstr "" -#: libraries/messages.inc.php:790 server_replication.php:336 +#: libraries/messages.inc.php:786 server_replication.php:336 msgid "Skip current error" msgstr "" -#: libraries/messages.inc.php:791 server_replication.php:340 +#: libraries/messages.inc.php:787 server_replication.php:340 msgid "errors." msgstr "" -#: libraries/messages.inc.php:792 server_replication.php:337 +#: libraries/messages.inc.php:788 server_replication.php:337 msgid "Skip next" msgstr "" -#: libraries/messages.inc.php:793 server_replication.php:248 +#: libraries/messages.inc.php:789 server_replication.php:248 msgid "Slave replication" msgstr "" -#: libraries/messages.inc.php:794 server_replication.php:293 +#: libraries/messages.inc.php:790 server_replication.php:293 msgid "Slave SQL Thread not running!" msgstr "" -#: libraries/messages.inc.php:795 server_replication.php:327 +#: libraries/messages.inc.php:791 server_replication.php:327 #, php-format msgid "SQL Thread %s only" msgstr "" -#: libraries/messages.inc.php:796 +#: libraries/messages.inc.php:792 #, php-format msgid "" "This MySQL server works as %s in replication process. For further " @@ -5040,161 +5040,161 @@ msgid "" "\"#replication\">replication section." msgstr "" -#: libraries/messages.inc.php:797 +#: libraries/messages.inc.php:793 msgid "Master status" msgstr "" -#: libraries/messages.inc.php:798 server_status.php:721 +#: libraries/messages.inc.php:794 server_status.php:721 msgid "Replication status" msgstr "" -#: libraries/messages.inc.php:799 +#: libraries/messages.inc.php:795 msgid "Slave status" msgstr "" -#: libraries/messages.inc.php:800 server_replication.php:311 +#: libraries/messages.inc.php:796 server_replication.php:311 msgid "Synchronize databases with master" msgstr "" -#: libraries/messages.inc.php:801 server_replication.php:71 +#: libraries/messages.inc.php:797 server_replication.php:71 msgid "Unable to change master" msgstr "" -#: libraries/messages.inc.php:802 server_replication.php:51 +#: libraries/messages.inc.php:798 server_replication.php:51 msgid "Unknown error" msgstr "" -#: libraries/messages.inc.php:803 main.php:163 pdf_pages.php:344 +#: libraries/messages.inc.php:799 main.php:163 pdf_pages.php:344 #: setup/lib/FormDisplay.tpl.php:216 tbl_change.php:1175 msgid "Reset" msgstr "Поништи" -#: libraries/messages.inc.php:804 server_privileges.php:591 +#: libraries/messages.inc.php:800 server_privileges.php:591 msgid "Resource limits" msgstr "Ограничување на ресурси" -#: libraries/messages.inc.php:805 tbl_change.php:1209 +#: libraries/messages.inc.php:801 tbl_change.php:1209 #, php-format msgid "Restart insertion with %s rows" msgstr "" -#: libraries/messages.inc.php:807 server_privileges.php:1578 +#: libraries/messages.inc.php:803 server_privileges.php:1578 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Одземи ги сите привилегии на активните корисници а потоа избриши ги." -#: libraries/messages.inc.php:808 server_privileges.php:1176 +#: libraries/messages.inc.php:804 server_privileges.php:1176 #, php-format msgid "You have revoked the privileges for %s" msgstr "Ги забранивте привилегиите за %s" -#: libraries/messages.inc.php:809 server_privileges.php:1333 +#: libraries/messages.inc.php:805 server_privileges.php:1333 msgid "Revoke" msgstr "Забрани" -#: libraries/messages.inc.php:810 libraries/mysql_charsets.lib.php:280 +#: libraries/messages.inc.php:806 libraries/mysql_charsets.lib.php:280 msgid "Romanian" msgstr "Романски" -#: libraries/messages.inc.php:813 tbl_printview.php:404 tbl_structure.php:786 +#: libraries/messages.inc.php:809 tbl_printview.php:404 tbl_structure.php:786 msgid "Row length" msgstr "Должина на запис" -#: libraries/messages.inc.php:815 tbl_printview.php:414 tbl_structure.php:794 +#: libraries/messages.inc.php:811 tbl_printview.php:414 tbl_structure.php:794 msgid " Row size " msgstr "Големина на запис" -#: libraries/messages.inc.php:821 tbl_printview.php:366 tbl_structure.php:726 +#: libraries/messages.inc.php:817 tbl_printview.php:366 tbl_structure.php:726 msgid "Row Statistics" msgstr "Статистики за записите" -#: libraries/messages.inc.php:822 +#: libraries/messages.inc.php:818 #, php-format msgid "running on %s" msgstr "на серверот %s" -#: libraries/messages.inc.php:824 libraries/sql_query_form.lib.php:223 +#: libraries/messages.inc.php:820 libraries/sql_query_form.lib.php:223 #, fuzzy, php-format msgid "Run SQL query/queries on server %s" msgstr "Изврши SQL упит(и) на базата %s" -#: libraries/messages.inc.php:825 libraries/sql_query_form.lib.php:240 +#: libraries/messages.inc.php:821 libraries/sql_query_form.lib.php:240 #: libraries/sql_query_form.lib.php:265 #, php-format msgid "Run SQL query/queries on database %s" msgstr "Изврши SQL упит(и) на базата %s" -#: libraries/messages.inc.php:826 libraries/mysql_charsets.lib.php:337 +#: libraries/messages.inc.php:822 libraries/mysql_charsets.lib.php:337 msgid "Russian" msgstr "Руски" -#: libraries/messages.inc.php:829 pmd_general.php:68 +#: libraries/messages.inc.php:825 pmd_general.php:68 msgid "Save position" msgstr "" -#: libraries/messages.inc.php:830 libraries/tbl_properties.inc.php:776 +#: libraries/messages.inc.php:826 libraries/tbl_properties.inc.php:776 #: pdf_pages.php:484 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:214 setup/lib/FormDisplay.tpl.php:215 #: tbl_change.php:1126 tbl_indexes.php:248 tbl_relation.php:566 msgid "Save" msgstr "Сочувај" -#: libraries/messages.inc.php:831 +#: libraries/messages.inc.php:827 msgid "The scale factor is too small to fit the schema on one page" msgstr "" "Факторот на намалување е премал и шемата не може да ја собере на една " "страница" -#: libraries/messages.inc.php:843 main.php:298 +#: libraries/messages.inc.php:839 main.php:298 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "Конфигурациската податотека бара лозинка (blowfish_secret)." -#: libraries/messages.inc.php:844 navigation.php:353 navigation.php:516 +#: libraries/messages.inc.php:840 navigation.php:353 navigation.php:516 msgid "Please select a database" msgstr "Изберете база на податоци" -#: libraries/messages.inc.php:846 server_binlog.php:120 +#: libraries/messages.inc.php:842 server_binlog.php:120 msgid "Select binary log to view" msgstr "Изберете бинарен дневник за преглед" -#: libraries/messages.inc.php:847 tbl_select.php:270 +#: libraries/messages.inc.php:843 tbl_select.php:270 msgid "Select fields (at least one):" msgstr "Избери полиња (најмалку едно)" -#: libraries/messages.inc.php:851 pdf_pages.php:320 +#: libraries/messages.inc.php:847 pdf_pages.php:320 msgid "Select Tables" msgstr "Избери табели" -#: libraries/messages.inc.php:853 server_status.php:404 +#: libraries/messages.inc.php:849 server_status.php:404 msgid "Sent" msgstr "Пратено" -#: libraries/messages.inc.php:857 libraries/select_server.lib.php:45 +#: libraries/messages.inc.php:853 libraries/select_server.lib.php:45 #: setup/frames/index.inc.php:97 setup/lib/messages.inc.php:115 #, fuzzy msgid "Servers" msgstr "Сервер" -#: libraries/messages.inc.php:858 server_status.php:255 +#: libraries/messages.inc.php:854 server_status.php:255 #, fuzzy msgid "Delayed inserts" msgstr "Користи одложен внес" -#: libraries/messages.inc.php:859 server_status.php:46 +#: libraries/messages.inc.php:855 server_status.php:46 msgid "Runtime Information" msgstr "Информации за работата" -#: libraries/messages.inc.php:860 server_status.php:350 +#: libraries/messages.inc.php:856 server_status.php:350 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Овој MySQL сервер работи %s. Стартуван е на %s." -#: libraries/messages.inc.php:861 libraries/server_links.inc.php:53 +#: libraries/messages.inc.php:857 libraries/server_links.inc.php:53 #: server_engines.php:112 server_engines.php:116 server_status.php:304 #: test/theme.php:105 msgid "Variables" msgstr "Променливи" -#: libraries/messages.inc.php:862 server_status.php:383 +#: libraries/messages.inc.php:858 server_status.php:383 msgid "" "Server traffic: These tables show the network traffic statistics of " "this MySQL server since its startup." @@ -5202,11 +5202,11 @@ msgstr "" "Сообраќај на серверот: Во табелите прикажан е мрежниот сообраќај на " "овој MySQL сервер од моментот на неговото стартување." -#: libraries/messages.inc.php:863 server_variables.php:35 +#: libraries/messages.inc.php:859 server_variables.php:35 msgid "Server variables and settings" msgstr "Серверски променливи и подесувања" -#: libraries/messages.inc.php:865 main.php:290 +#: libraries/messages.inc.php:861 main.php:290 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -5214,17 +5214,17 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: libraries/messages.inc.php:866 +#: libraries/messages.inc.php:862 msgid "" "Cannot start session without errors, please check errors given in your PHP " "and/or webserver log file and configure your PHP installation properly." msgstr "" -#: libraries/messages.inc.php:867 server_variables.php:55 +#: libraries/messages.inc.php:863 server_variables.php:55 msgid "Session value" msgstr "Вредност на сесијата" -#: libraries/messages.inc.php:868 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:864 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 " @@ -5235,56 +5235,56 @@ msgstr "" "'a','b','c'...
Ако ви треба обратна коса црта (\"\\\") или апостроф " "(\"'\") користите ги во escap форма (пример '\\\\xyz' или 'a\\'b')." -#: libraries/messages.inc.php:876 server_binlog.php:192 server_binlog.php:195 +#: libraries/messages.inc.php:872 server_binlog.php:192 server_binlog.php:195 #: server_processlist.php:49 server_processlist.php:51 msgid "Show Full Queries" msgstr "Прикажи комплетни упити" -#: libraries/messages.inc.php:878 pmd_general.php:64 +#: libraries/messages.inc.php:874 pmd_general.php:64 msgid "Show/Hide left menu" msgstr "" -#: libraries/messages.inc.php:880 sql.php:513 +#: libraries/messages.inc.php:876 sql.php:513 msgid "Showing as PHP code" msgstr "" -#: libraries/messages.inc.php:882 sql.php:516 tbl_replace.php:360 +#: libraries/messages.inc.php:878 sql.php:516 tbl_replace.php:360 msgid "Showing SQL query" msgstr "" -#: libraries/messages.inc.php:883 tbl_change.php:1132 +#: libraries/messages.inc.php:879 tbl_change.php:1132 msgid "Show insert query" msgstr "" -#: libraries/messages.inc.php:886 server_status.php:273 +#: libraries/messages.inc.php:882 server_status.php:273 #, fuzzy msgid "Show open tables" msgstr "Прикажи табели" -#: libraries/messages.inc.php:887 main.php:219 +#: libraries/messages.inc.php:883 main.php:219 msgid "Show PHP information" msgstr "Прикажи информации за PHP" -#: libraries/messages.inc.php:889 server_status.php:278 +#: libraries/messages.inc.php:885 server_status.php:278 msgid "Show slave hosts" msgstr "" -#: libraries/messages.inc.php:890 server_status.php:284 +#: libraries/messages.inc.php:886 server_status.php:284 msgid "Show slave status" msgstr "" -#: libraries/messages.inc.php:891 +#: libraries/messages.inc.php:887 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/messages.inc.php:892 +#: libraries/messages.inc.php:888 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/messages.inc.php:893 +#: libraries/messages.inc.php:889 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -5292,78 +5292,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/messages.inc.php:894 +#: libraries/messages.inc.php:890 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/messages.inc.php:895 +#: libraries/messages.inc.php:891 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/messages.inc.php:896 +#: libraries/messages.inc.php:892 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/messages.inc.php:897 +#: libraries/messages.inc.php:893 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/messages.inc.php:898 +#: libraries/messages.inc.php:894 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/messages.inc.php:899 +#: libraries/messages.inc.php:895 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/messages.inc.php:900 +#: libraries/messages.inc.php:896 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/messages.inc.php:901 +#: libraries/messages.inc.php:897 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/messages.inc.php:902 +#: libraries/messages.inc.php:898 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/messages.inc.php:903 +#: libraries/messages.inc.php:899 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/messages.inc.php:904 +#: libraries/messages.inc.php:900 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: libraries/messages.inc.php:905 +#: libraries/messages.inc.php:901 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/messages.inc.php:906 +#: libraries/messages.inc.php:902 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: libraries/messages.inc.php:907 +#: libraries/messages.inc.php:903 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -5371,7 +5371,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/messages.inc.php:908 +#: libraries/messages.inc.php:904 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -5379,42 +5379,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/messages.inc.php:909 +#: libraries/messages.inc.php:905 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/messages.inc.php:910 +#: libraries/messages.inc.php:906 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/messages.inc.php:911 +#: libraries/messages.inc.php:907 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/messages.inc.php:912 +#: libraries/messages.inc.php:908 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/messages.inc.php:913 +#: libraries/messages.inc.php:909 msgid "The number of pages currently dirty." msgstr "" -#: libraries/messages.inc.php:914 +#: libraries/messages.inc.php:910 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/messages.inc.php:915 +#: libraries/messages.inc.php:911 msgid "The number of free pages." msgstr "" -#: libraries/messages.inc.php:916 +#: libraries/messages.inc.php:912 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/messages.inc.php:917 +#: libraries/messages.inc.php:913 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -5422,33 +5422,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/messages.inc.php:918 +#: libraries/messages.inc.php:914 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/messages.inc.php:919 +#: libraries/messages.inc.php:915 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/messages.inc.php:920 +#: libraries/messages.inc.php:916 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/messages.inc.php:921 +#: libraries/messages.inc.php:917 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/messages.inc.php:922 +#: libraries/messages.inc.php:918 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/messages.inc.php:923 +#: libraries/messages.inc.php:919 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -5457,218 +5457,218 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/messages.inc.php:924 +#: libraries/messages.inc.php:920 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/messages.inc.php:925 +#: libraries/messages.inc.php:921 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/messages.inc.php:926 +#: libraries/messages.inc.php:922 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/messages.inc.php:927 +#: libraries/messages.inc.php:923 msgid "The current number of pending reads." msgstr "" -#: libraries/messages.inc.php:928 +#: libraries/messages.inc.php:924 msgid "The current number of pending writes." msgstr "" -#: libraries/messages.inc.php:929 +#: libraries/messages.inc.php:925 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/messages.inc.php:930 +#: libraries/messages.inc.php:926 msgid "The total number of data reads." msgstr "" -#: libraries/messages.inc.php:931 +#: libraries/messages.inc.php:927 msgid "The total number of data writes." msgstr "" -#: libraries/messages.inc.php:932 +#: libraries/messages.inc.php:928 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/messages.inc.php:933 +#: libraries/messages.inc.php:929 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/messages.inc.php:934 +#: libraries/messages.inc.php:930 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/messages.inc.php:935 +#: libraries/messages.inc.php:931 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/messages.inc.php:936 +#: libraries/messages.inc.php:932 msgid "The number of log write requests." msgstr "" -#: libraries/messages.inc.php:937 +#: libraries/messages.inc.php:933 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/messages.inc.php:938 +#: libraries/messages.inc.php:934 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/messages.inc.php:939 +#: libraries/messages.inc.php:935 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/messages.inc.php:940 +#: libraries/messages.inc.php:936 msgid "Pending log file writes." msgstr "" -#: libraries/messages.inc.php:941 +#: libraries/messages.inc.php:937 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/messages.inc.php:942 +#: libraries/messages.inc.php:938 msgid "The number of pages created." msgstr "" -#: libraries/messages.inc.php:943 +#: libraries/messages.inc.php:939 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: libraries/messages.inc.php:944 +#: libraries/messages.inc.php:940 msgid "The number of pages read." msgstr "" -#: libraries/messages.inc.php:945 +#: libraries/messages.inc.php:941 msgid "The number of pages written." msgstr "" -#: libraries/messages.inc.php:946 +#: libraries/messages.inc.php:942 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/messages.inc.php:947 +#: libraries/messages.inc.php:943 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/messages.inc.php:948 +#: libraries/messages.inc.php:944 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/messages.inc.php:949 +#: libraries/messages.inc.php:945 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/messages.inc.php:950 +#: libraries/messages.inc.php:946 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/messages.inc.php:951 +#: libraries/messages.inc.php:947 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/messages.inc.php:952 +#: libraries/messages.inc.php:948 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/messages.inc.php:953 +#: libraries/messages.inc.php:949 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/messages.inc.php:954 +#: libraries/messages.inc.php:950 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/messages.inc.php:955 +#: libraries/messages.inc.php:951 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/messages.inc.php:956 +#: libraries/messages.inc.php:952 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: libraries/messages.inc.php:957 +#: libraries/messages.inc.php:953 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/messages.inc.php:958 +#: libraries/messages.inc.php:954 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/messages.inc.php:959 +#: libraries/messages.inc.php:955 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/messages.inc.php:960 +#: libraries/messages.inc.php:956 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/messages.inc.php:961 +#: libraries/messages.inc.php:957 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/messages.inc.php:962 +#: libraries/messages.inc.php:958 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/messages.inc.php:963 +#: libraries/messages.inc.php:959 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/messages.inc.php:964 +#: libraries/messages.inc.php:960 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/messages.inc.php:965 +#: libraries/messages.inc.php:961 msgid "The number of files that are open." msgstr "" -#: libraries/messages.inc.php:966 +#: libraries/messages.inc.php:962 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/messages.inc.php:967 +#: libraries/messages.inc.php:963 msgid "The number of tables that are open." msgstr "" -#: libraries/messages.inc.php:968 +#: libraries/messages.inc.php:964 msgid "The number of free memory blocks in query cache." msgstr "" -#: libraries/messages.inc.php:969 +#: libraries/messages.inc.php:965 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/messages.inc.php:970 +#: libraries/messages.inc.php:966 msgid "The number of cache hits." msgstr "" -#: libraries/messages.inc.php:971 +#: libraries/messages.inc.php:967 msgid "The number of queries added to the cache." msgstr "" -#: libraries/messages.inc.php:972 +#: libraries/messages.inc.php:968 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -5676,105 +5676,105 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/messages.inc.php:973 +#: libraries/messages.inc.php:969 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/messages.inc.php:974 +#: libraries/messages.inc.php:970 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/messages.inc.php:975 +#: libraries/messages.inc.php:971 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/messages.inc.php:976 +#: libraries/messages.inc.php:972 #, fuzzy msgctxt "$strShowStatusReset" msgid "Reset" msgstr "Поништи" -#: libraries/messages.inc.php:977 +#: libraries/messages.inc.php:973 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/messages.inc.php:978 +#: libraries/messages.inc.php:974 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: libraries/messages.inc.php:979 +#: libraries/messages.inc.php:975 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/messages.inc.php:980 +#: libraries/messages.inc.php:976 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: libraries/messages.inc.php:981 +#: libraries/messages.inc.php:977 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/messages.inc.php:982 +#: libraries/messages.inc.php:978 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/messages.inc.php:983 +#: libraries/messages.inc.php:979 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/messages.inc.php:984 +#: libraries/messages.inc.php:980 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/messages.inc.php:985 +#: libraries/messages.inc.php:981 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/messages.inc.php:986 +#: libraries/messages.inc.php:982 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/messages.inc.php:987 +#: libraries/messages.inc.php:983 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/messages.inc.php:988 +#: libraries/messages.inc.php:984 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/messages.inc.php:989 +#: libraries/messages.inc.php:985 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/messages.inc.php:990 +#: libraries/messages.inc.php:986 msgid "The number of sorted rows." msgstr "" -#: libraries/messages.inc.php:991 +#: libraries/messages.inc.php:987 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/messages.inc.php:992 +#: libraries/messages.inc.php:988 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/messages.inc.php:993 +#: libraries/messages.inc.php:989 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -5782,18 +5782,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/messages.inc.php:994 +#: libraries/messages.inc.php:990 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/messages.inc.php:995 +#: libraries/messages.inc.php:991 msgid "The number of currently open connections." msgstr "" -#: libraries/messages.inc.php:996 +#: libraries/messages.inc.php:992 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -5801,74 +5801,74 @@ msgid "" "implementation.)" msgstr "" -#: libraries/messages.inc.php:997 +#: libraries/messages.inc.php:993 msgid "The number of threads that are not sleeping." msgstr "" -#: libraries/messages.inc.php:999 tbl_printview.php:75 +#: libraries/messages.inc.php:995 tbl_printview.php:75 msgid "Show tables" msgstr "Прикажи табели" -#: libraries/messages.inc.php:1000 libraries/sql_query_form.lib.php:396 +#: libraries/messages.inc.php:996 libraries/sql_query_form.lib.php:396 msgid " Show this query here again " msgstr "Прикажи го повторно овој упит" -#: libraries/messages.inc.php:1001 libraries/mysql_charsets.lib.php:217 +#: libraries/messages.inc.php:997 libraries/mysql_charsets.lib.php:217 #: libraries/mysql_charsets.lib.php:342 msgid "Simplified Chinese" msgstr "Поедноставен кинески" -#: libraries/messages.inc.php:1002 tbl_operations.php:258 +#: libraries/messages.inc.php:998 tbl_operations.php:258 msgid "(singly)" msgstr "(по едно поле)" -#: libraries/messages.inc.php:1005 libraries/replication_gui.lib.php:52 +#: libraries/messages.inc.php:1001 libraries/replication_gui.lib.php:52 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" msgstr "" -#: libraries/messages.inc.php:1006 libraries/mysql_charsets.lib.php:283 +#: libraries/messages.inc.php:1002 libraries/mysql_charsets.lib.php:283 msgid "Slovak" msgstr "Словачки" -#: libraries/messages.inc.php:1007 libraries/mysql_charsets.lib.php:286 +#: libraries/messages.inc.php:1003 libraries/mysql_charsets.lib.php:286 msgid "Slovenian" msgstr "Словенечки" -#: libraries/messages.inc.php:1008 pmd_general.php:95 +#: libraries/messages.inc.php:1004 pmd_general.php:95 msgid "Small/Big All" msgstr "" -#: libraries/messages.inc.php:1009 pmd_general.php:91 +#: libraries/messages.inc.php:1005 pmd_general.php:91 msgid "Snap to grid" msgstr "" -#: libraries/messages.inc.php:1011 server_synchronize.php:1167 +#: libraries/messages.inc.php:1007 server_synchronize.php:1167 msgid "Socket" msgstr "" -#: libraries/messages.inc.php:1013 server_status.php:259 +#: libraries/messages.inc.php:1009 server_status.php:259 msgid "Sorting" msgstr "" -#: libraries/messages.inc.php:1015 tbl_printview.php:310 tbl_structure.php:657 +#: libraries/messages.inc.php:1011 tbl_printview.php:310 tbl_structure.php:657 msgid "Space usage" msgstr "Големина" -#: libraries/messages.inc.php:1016 libraries/mysql_charsets.lib.php:289 +#: libraries/messages.inc.php:1012 libraries/mysql_charsets.lib.php:289 msgid "Spanish" msgstr "Шпански" -#: libraries/messages.inc.php:1019 +#: libraries/messages.inc.php:1015 msgid "Export type" msgstr "Тип на извоз" -#: libraries/messages.inc.php:1020 +#: libraries/messages.inc.php:1016 msgid "Export time in UTC" msgstr "" -#: libraries/messages.inc.php:1021 libraries/sqlparser.lib.php:173 +#: libraries/messages.inc.php:1017 libraries/sqlparser.lib.php:173 msgid "" "There is a chance that you may have found a bug in the SQL parser. Please " "examine your query closely, and check that the quotes are correct and not " @@ -5890,7 +5890,7 @@ msgstr "" "својот SQL упит со извештајот за грешка и делот од кодот во долната РЕЗ " "секција до нас за да можеме да провериме за што се работи." -#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:137 +#: libraries/messages.inc.php:1018 libraries/sqlparser.lib.php:137 msgid "" "There seems to be an error in your SQL query. The MySQL server error output " "below, if there is any, may also help you in diagnosing the problem" @@ -5898,420 +5898,420 @@ msgstr "" "Изгледа дека има грешка во вашиот SQL упит. Еве ја пораката за грешката од " "MySQL серверот, која може да ви помогне во откривањето на проблемот" -#: libraries/messages.inc.php:1026 libraries/sqlparser.lib.php:495 +#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:495 msgid "Invalid Identifer" msgstr "Неисправен идентификатор" -#: libraries/messages.inc.php:1027 libraries/sqlparser.lib.php:344 +#: libraries/messages.inc.php:1023 libraries/sqlparser.lib.php:344 msgid "Unclosed quote" msgstr "Наводникот не е затворен" -#: libraries/messages.inc.php:1028 libraries/sqlparser.lib.php:612 +#: libraries/messages.inc.php:1024 libraries/sqlparser.lib.php:612 msgid "Unknown Punctuation String" msgstr "Непознат стринг за интерпункција" -#: libraries/messages.inc.php:1030 server_replication.php:327 +#: libraries/messages.inc.php:1026 server_replication.php:327 #: server_replication.php:328 #, fuzzy msgid "Start" msgstr "Саб" -#: libraries/messages.inc.php:1033 tbl_printview.php:369 tbl_structure.php:729 +#: libraries/messages.inc.php:1029 tbl_printview.php:369 tbl_structure.php:729 msgid "Statements" msgstr "Име" -#: libraries/messages.inc.php:1034 tbl_printview.php:380 tbl_structure.php:741 +#: libraries/messages.inc.php:1030 tbl_printview.php:380 tbl_structure.php:741 msgid "static" msgstr "" -#: libraries/messages.inc.php:1035 server_status.php:388 +#: libraries/messages.inc.php:1031 server_status.php:388 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: libraries/messages.inc.php:1038 server_replication.php:327 +#: libraries/messages.inc.php:1034 server_replication.php:327 #: server_replication.php:328 msgid "Stop" msgstr "" -#: libraries/messages.inc.php:1039 server_engines.php:49 +#: libraries/messages.inc.php:1035 server_engines.php:49 msgid "Storage Engines" msgstr "Видови на складишта" -#: libraries/messages.inc.php:1040 libraries/tbl_properties.inc.php:726 +#: libraries/messages.inc.php:1036 libraries/tbl_properties.inc.php:726 #: server_engines.php:58 tbl_operations.php:353 msgid "Storage Engine" msgstr "Вид на складиште" -#: libraries/messages.inc.php:1042 +#: libraries/messages.inc.php:1038 msgid "CSV for MS Excel" msgstr "CSV за MS Excel" -#: libraries/messages.inc.php:1044 tbl_structure.php:516 tbl_structure.php:518 +#: libraries/messages.inc.php:1040 tbl_structure.php:516 tbl_structure.php:518 msgid "Propose table structure" msgstr "Предложи структура на табелата" -#: libraries/messages.inc.php:1045 server_synchronize.php:424 +#: libraries/messages.inc.php:1041 server_synchronize.php:424 #: server_synchronize.php:867 msgid "Structure Difference" msgstr "" -#: libraries/messages.inc.php:1049 server_synchronize.php:265 +#: libraries/messages.inc.php:1045 server_synchronize.php:265 msgid "Structure Synchronization" msgstr "" -#: libraries/messages.inc.php:1050 libraries/sql_query_form.lib.php:462 +#: libraries/messages.inc.php:1046 libraries/sql_query_form.lib.php:462 msgid "Submit" msgstr "Испрати" -#: libraries/messages.inc.php:1052 main.php:358 +#: libraries/messages.inc.php:1048 main.php:358 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " "issues." msgstr "" -#: libraries/messages.inc.php:1054 libraries/mysql_charsets.lib.php:295 +#: libraries/messages.inc.php:1050 libraries/mysql_charsets.lib.php:295 #: libraries/mysql_charsets.lib.php:392 msgid "Swedish" msgstr "Шведски" -#: libraries/messages.inc.php:1060 tbl_operations.php:556 +#: libraries/messages.inc.php:1056 tbl_operations.php:556 msgid "Switch to copied table" msgstr "Премини на копираната табела" -#: libraries/messages.inc.php:1061 server_synchronize.php:1213 +#: libraries/messages.inc.php:1057 server_synchronize.php:1213 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." msgstr "" -#: libraries/messages.inc.php:1062 server_synchronize.php:451 +#: libraries/messages.inc.php:1058 server_synchronize.php:451 #: server_synchronize.php:896 msgid "Synchronize Databases" msgstr "" -#: libraries/messages.inc.php:1063 libraries/server_links.inc.php:92 +#: libraries/messages.inc.php:1059 libraries/server_links.inc.php:92 #: server_synchronize.php:1092 server_synchronize.php:1100 msgid "Synchronize" msgstr "" -#: libraries/messages.inc.php:1065 server_synchronize.php:430 +#: libraries/messages.inc.php:1061 server_synchronize.php:430 #: server_synchronize.php:873 msgid "Add column(s)" msgstr "" -#: libraries/messages.inc.php:1066 tbl_create.php:62 +#: libraries/messages.inc.php:1062 tbl_create.php:62 #, fuzzy, php-format msgid "Table %s already exists!" msgstr "Корисник %s веќе постои!" -#: libraries/messages.inc.php:1067 server_synchronize.php:432 +#: libraries/messages.inc.php:1063 server_synchronize.php:432 #: server_synchronize.php:875 msgid "Alter column(s)" msgstr "" -#: libraries/messages.inc.php:1068 tbl_addfield.php:189 tbl_alter.php:103 +#: libraries/messages.inc.php:1064 tbl_addfield.php:189 tbl_alter.php:103 #: tbl_indexes.php:98 #, fuzzy, php-format msgid "Table %1$s has been altered successfully" msgstr "Изабраните корисници успешно се избришани." -#: libraries/messages.inc.php:1069 server_synchronize.php:434 +#: libraries/messages.inc.php:1065 server_synchronize.php:434 #: server_synchronize.php:877 msgid "Apply index(s)" msgstr "" -#: libraries/messages.inc.php:1071 server_synchronize.php:446 +#: libraries/messages.inc.php:1067 server_synchronize.php:446 #: server_synchronize.php:890 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: libraries/messages.inc.php:1072 tbl_move_copy.php:82 +#: libraries/messages.inc.php:1068 tbl_move_copy.php:82 msgid "The table name is empty!" msgstr "Името на табелата е празно!" -#: libraries/messages.inc.php:1073 tbl_create.php:249 +#: libraries/messages.inc.php:1069 tbl_create.php:249 #, fuzzy, php-format msgid "Table %1$s has been created." msgstr "Табелата %s е избришана" -#: libraries/messages.inc.php:1076 tbl_operations.php:628 +#: libraries/messages.inc.php:1072 tbl_operations.php:628 #, php-format msgid "Table %s has been flushed" msgstr "Табелата %s е освежена" -#: libraries/messages.inc.php:1077 server_synchronize.php:436 +#: libraries/messages.inc.php:1073 server_synchronize.php:436 #: server_synchronize.php:879 msgid "Insert row(s)" msgstr "" -#: libraries/messages.inc.php:1078 libraries/tbl_links.inc.php:107 +#: libraries/messages.inc.php:1074 libraries/tbl_links.inc.php:107 #: libraries/tbl_links.inc.php:140 libraries/tbl_links.inc.php:141 msgid "Table seems to be empty!" msgstr "" -#: libraries/messages.inc.php:1079 tbl_operations.php:568 +#: libraries/messages.inc.php:1075 tbl_operations.php:568 msgid "Table maintenance" msgstr "Можете да извршите:" -#: libraries/messages.inc.php:1080 libraries/tbl_properties.inc.php:618 +#: libraries/messages.inc.php:1076 libraries/tbl_properties.inc.php:618 #: server_synchronize.php:428 server_synchronize.php:871 msgid "Table name" msgstr "" -#: libraries/messages.inc.php:1081 pdf_schema.php:1116 +#: libraries/messages.inc.php:1077 pdf_schema.php:1116 msgid "Table of contents" msgstr "Содржина" -#: libraries/messages.inc.php:1082 tbl_operations.php:334 +#: libraries/messages.inc.php:1078 tbl_operations.php:334 msgid "Table options" msgstr "Опции на табелата" -#: libraries/messages.inc.php:1083 server_synchronize.php:431 +#: libraries/messages.inc.php:1079 server_synchronize.php:431 #: server_synchronize.php:874 msgid "Remove column(s)" msgstr "" -#: libraries/messages.inc.php:1084 server_synchronize.php:433 +#: libraries/messages.inc.php:1080 server_synchronize.php:433 #: server_synchronize.php:876 msgid "Remove index(s)" msgstr "" -#: libraries/messages.inc.php:1088 server_synchronize.php:435 +#: libraries/messages.inc.php:1084 server_synchronize.php:435 #: server_synchronize.php:878 msgid "Update row(s)" msgstr "" -#: libraries/messages.inc.php:1090 server_synchronize.php:942 +#: libraries/messages.inc.php:1086 server_synchronize.php:942 msgid "Target database has been synchronized with source database" msgstr "" -#: libraries/messages.inc.php:1091 server_privileges.php:392 +#: libraries/messages.inc.php:1087 server_privileges.php:392 #: server_privileges.php:527 server_privileges.php:1679 #: server_privileges.php:1685 msgid "Table-specific privileges" msgstr "Привилегии поврзани со табелата" -#: libraries/messages.inc.php:1092 server_status.php:254 +#: libraries/messages.inc.php:1088 server_status.php:254 msgid "Temporary data" msgstr "" -#: libraries/messages.inc.php:1093 tbl_change.php:728 +#: libraries/messages.inc.php:1089 tbl_change.php:728 msgid " Because of its length,
this field might not be editable " msgstr "" "Поради големина на полето
можеби нема да може да ја менувате неговата " "содржина" -#: libraries/messages.inc.php:1094 +#: libraries/messages.inc.php:1090 msgid "Texy! text" msgstr "" -#: libraries/messages.inc.php:1095 libraries/mysql_charsets.lib.php:298 +#: libraries/messages.inc.php:1091 libraries/mysql_charsets.lib.php:298 #: libraries/mysql_charsets.lib.php:395 msgid "Thai" msgstr "Тајски" -#: libraries/messages.inc.php:1102 libraries/replication_gui.lib.php:308 +#: libraries/messages.inc.php:1098 libraries/replication_gui.lib.php:308 #: server_privileges.php:734 msgid "This Host" msgstr "Овој host" -#: libraries/messages.inc.php:1103 server_status.php:252 +#: libraries/messages.inc.php:1099 server_status.php:252 msgid "Threads" msgstr "" -#: libraries/messages.inc.php:1104 server_processlist.php:22 +#: libraries/messages.inc.php:1100 server_processlist.php:22 #, php-format msgid "Thread %s was successfully killed." msgstr "Процесот %s е успешно прекинат." -#: libraries/messages.inc.php:1106 +#: libraries/messages.inc.php:1102 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." msgstr "" -#: libraries/messages.inc.php:1109 pmd_pdf.php:94 +#: libraries/messages.inc.php:1105 pmd_pdf.php:94 msgid "to/from page" msgstr "" -#: libraries/messages.inc.php:1110 pdf_pages.php:343 +#: libraries/messages.inc.php:1106 pdf_pages.php:343 msgid "Toggle scratchboard" msgstr "Вклучи/исклучи работна табела" -#: libraries/messages.inc.php:1111 pmd_general.php:99 +#: libraries/messages.inc.php:1107 pmd_general.php:99 msgid "Toggle small/big" msgstr "" -#: libraries/messages.inc.php:1112 pmd_help.php:27 +#: libraries/messages.inc.php:1108 pmd_help.php:27 msgid "To select relation, click :" msgstr "" -#: libraries/messages.inc.php:1115 libraries/tbl_links.inc.php:149 +#: libraries/messages.inc.php:1111 libraries/tbl_links.inc.php:149 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" -#: libraries/messages.inc.php:1116 tbl_tracking.php:655 +#: libraries/messages.inc.php:1112 tbl_tracking.php:655 msgid "Activate now" msgstr "" -#: libraries/messages.inc.php:1117 tbl_tracking.php:653 +#: libraries/messages.inc.php:1113 tbl_tracking.php:653 #, php-format msgid "Activate tracking for %s.%s" msgstr "" -#: libraries/messages.inc.php:1118 tbl_tracking.php:221 +#: libraries/messages.inc.php:1114 tbl_tracking.php:221 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/messages.inc.php:1119 tbl_tracking.php:688 +#: libraries/messages.inc.php:1115 tbl_tracking.php:688 #, fuzzy msgid "Create version" msgstr "Верзија на серверот" -#: libraries/messages.inc.php:1120 tbl_tracking.php:668 +#: libraries/messages.inc.php:1116 tbl_tracking.php:668 #, php-format msgid "Create version %s of %s.%s" msgstr "" -#: libraries/messages.inc.php:1122 tbl_tracking.php:412 +#: libraries/messages.inc.php:1118 tbl_tracking.php:412 msgid "Data definition statement" msgstr "" -#: libraries/messages.inc.php:1123 tbl_tracking.php:463 +#: libraries/messages.inc.php:1119 tbl_tracking.php:463 msgid "Data manipulation statement" msgstr "" -#: libraries/messages.inc.php:1124 tbl_tracking.php:410 tbl_tracking.php:461 +#: libraries/messages.inc.php:1120 tbl_tracking.php:410 tbl_tracking.php:461 #, fuzzy msgid "Date" msgstr "Податоци" -#: libraries/messages.inc.php:1125 tbl_tracking.php:642 +#: libraries/messages.inc.php:1121 tbl_tracking.php:642 msgid "Deactivate now" msgstr "" -#: libraries/messages.inc.php:1126 tbl_tracking.php:640 +#: libraries/messages.inc.php:1122 tbl_tracking.php:640 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "" -#: libraries/messages.inc.php:1127 tbl_tracking.php:521 +#: libraries/messages.inc.php:1123 tbl_tracking.php:521 #, php-format msgid "Export as %s" msgstr "" -#: libraries/messages.inc.php:1130 tbl_tracking.php:251 tbl_tracking.php:379 +#: libraries/messages.inc.php:1126 tbl_tracking.php:251 tbl_tracking.php:379 msgid "Close" msgstr "" -#: libraries/messages.inc.php:1131 tbl_tracking.php:114 +#: libraries/messages.inc.php:1127 tbl_tracking.php:114 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/messages.inc.php:1133 tbl_tracking.php:397 tbl_tracking.php:504 +#: libraries/messages.inc.php:1129 tbl_tracking.php:397 tbl_tracking.php:504 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "" -#: libraries/messages.inc.php:1134 tbl_tracking.php:561 +#: libraries/messages.inc.php:1130 tbl_tracking.php:561 msgid "Show versions" msgstr "" -#: libraries/messages.inc.php:1135 tbl_tracking.php:507 +#: libraries/messages.inc.php:1131 tbl_tracking.php:507 msgid "SQL dump (file download)" msgstr "" -#: libraries/messages.inc.php:1136 tbl_tracking.php:508 +#: libraries/messages.inc.php:1132 tbl_tracking.php:508 msgid "SQL dump" msgstr "" -#: libraries/messages.inc.php:1137 tbl_tracking.php:213 +#: libraries/messages.inc.php:1133 tbl_tracking.php:213 msgid "SQL statements executed." msgstr "" -#: libraries/messages.inc.php:1138 +#: libraries/messages.inc.php:1134 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/messages.inc.php:1139 tbl_tracking.php:509 +#: libraries/messages.inc.php:1135 tbl_tracking.php:509 msgid "SQL execution" msgstr "" -#: libraries/messages.inc.php:1140 tbl_tracking.php:230 +#: libraries/messages.inc.php:1136 tbl_tracking.php:230 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/messages.inc.php:1141 tbl_tracking.php:381 +#: libraries/messages.inc.php:1137 tbl_tracking.php:381 msgid "Tracking statements" msgstr "" -#: libraries/messages.inc.php:1148 tbl_tracking.php:593 +#: libraries/messages.inc.php:1144 tbl_tracking.php:593 #, fuzzy msgid "Version" msgstr "Персиски" -#: libraries/messages.inc.php:1149 tbl_tracking.php:672 +#: libraries/messages.inc.php:1145 tbl_tracking.php:672 msgid "Track these data definition statements:" msgstr "" -#: libraries/messages.inc.php:1150 tbl_tracking.php:680 +#: libraries/messages.inc.php:1146 tbl_tracking.php:680 msgid "Track these data manipulation statements:" msgstr "" -#: libraries/messages.inc.php:1155 tbl_tracking.php:411 tbl_tracking.php:462 +#: libraries/messages.inc.php:1151 tbl_tracking.php:411 tbl_tracking.php:462 #, fuzzy msgid "Username" msgstr "Корисничко име:" -#: libraries/messages.inc.php:1156 tbl_tracking.php:203 +#: libraries/messages.inc.php:1152 tbl_tracking.php:203 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "" -#: libraries/messages.inc.php:1157 tbl_tracking.php:187 +#: libraries/messages.inc.php:1153 tbl_tracking.php:187 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "" -#: libraries/messages.inc.php:1158 tbl_tracking.php:195 +#: libraries/messages.inc.php:1154 tbl_tracking.php:195 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "" -#: libraries/messages.inc.php:1159 tbl_tracking.php:262 +#: libraries/messages.inc.php:1155 tbl_tracking.php:262 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/messages.inc.php:1161 tbl_tracking.php:220 +#: libraries/messages.inc.php:1157 tbl_tracking.php:220 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/messages.inc.php:1162 libraries/mysql_charsets.lib.php:219 +#: libraries/messages.inc.php:1158 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:362 msgid "Traditional Chinese" msgstr "Традиционален кинески" -#: libraries/messages.inc.php:1163 libraries/mysql_charsets.lib.php:292 +#: libraries/messages.inc.php:1159 libraries/mysql_charsets.lib.php:292 msgid "Traditional Spanish" msgstr "Традиционален шпански" -#: libraries/messages.inc.php:1164 server_status.php:388 +#: libraries/messages.inc.php:1160 server_status.php:388 msgid "Traffic" msgstr "Сообраќај" -#: libraries/messages.inc.php:1165 server_status.php:261 +#: libraries/messages.inc.php:1161 server_status.php:261 msgid "Transaction coordinator" msgstr "" -#: libraries/messages.inc.php:1166 +#: libraries/messages.inc.php:1162 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 " @@ -6323,13 +6323,13 @@ msgstr "" "кое го содржи името на податотеката. Ако ја зададете другата опција, првата " "мора да биде поставена на празен стринг" -#: libraries/messages.inc.php:1167 +#: libraries/messages.inc.php:1163 msgid "" "Displays hexadecimal representation of data. Optional first parameter " "specifies how often space will be added (defaults to 2 nibbles)." msgstr "" -#: libraries/messages.inc.php:1168 +#: libraries/messages.inc.php:1164 msgid "" "Displays a clickable thumbnail. The options are the maximum width and height " "in pixels. The original aspect ratio is preserved." @@ -6337,15 +6337,15 @@ msgstr "" "Прикажува намалена слика на која е можно да се кликне; опции: ширина, висина " "во пиксели (зачуван е оргиналнит однос)" -#: libraries/messages.inc.php:1169 +#: libraries/messages.inc.php:1165 msgid "Displays a link to download this image." msgstr "Прикажува врска кон оваа слика (пример директно превземање од BLOB)." -#: libraries/messages.inc.php:1170 +#: libraries/messages.inc.php:1166 msgid "See image/jpeg: inline" msgstr "Прикажи JPEG слики од страна" -#: libraries/messages.inc.php:1171 +#: libraries/messages.inc.php:1167 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 " @@ -6362,7 +6362,7 @@ msgstr "" "формат на датумот според параметрите који се достапни за PHP функцијата " "strftime()." -#: libraries/messages.inc.php:1172 +#: libraries/messages.inc.php:1168 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 " @@ -6387,13 +6387,13 @@ msgstr "" "постави на 1, NOWRAP ќе биде додадено на полето со содржина така да излезот " "ќе биде прикажан без измени. (default 1)." -#: libraries/messages.inc.php:1173 +#: libraries/messages.inc.php:1169 msgid "" "Displays the contents of the field as-is, without running it through " "htmlspecialchars(). That is, the field is assumed to contain valid HTML." msgstr "Го чува оригиналниот формат на полето. Escaping не се врши." -#: libraries/messages.inc.php:1174 +#: libraries/messages.inc.php:1170 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 " @@ -6403,7 +6403,7 @@ msgstr "" "опција е префикс како \"http://domain.com/\", другата опција е ширина во " "пиксели, а третата е висина." -#: libraries/messages.inc.php:1175 +#: libraries/messages.inc.php:1171 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 " @@ -6412,11 +6412,11 @@ msgstr "" "Прикажува линк, полето го содржи називот на податотеката; првата опција е " "префикс како \"http://domain.com/\", другата опција е наслов за линкот." -#: libraries/messages.inc.php:1176 +#: libraries/messages.inc.php:1172 msgid "Formats text as SQL query with syntax highlighting." msgstr "" -#: libraries/messages.inc.php:1177 +#: libraries/messages.inc.php:1173 msgid "" "Displays a part of a string. The first option is the number of characters to " "skip from the beginning of the string (Default 0). The second option is the " @@ -6429,72 +6429,72 @@ msgstr "" "вратени знаци (default: до крај на стрингот). Третата опција е стринг кој се " "додава кага ќе дојде до отсекување (default: ...) ." -#: libraries/messages.inc.php:1179 server_binlog.php:183 server_binlog.php:186 +#: libraries/messages.inc.php:1175 server_binlog.php:183 server_binlog.php:186 #: server_processlist.php:49 server_processlist.php:51 msgid "Truncate Shown Queries" msgstr "Прикажи скратени упити" -#: libraries/messages.inc.php:1180 libraries/mysql_charsets.lib.php:301 +#: libraries/messages.inc.php:1176 libraries/mysql_charsets.lib.php:301 #: libraries/mysql_charsets.lib.php:389 msgid "Turkish" msgstr "Турски" -#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:304 +#: libraries/messages.inc.php:1179 libraries/mysql_charsets.lib.php:304 #: libraries/mysql_charsets.lib.php:386 msgid "Ukrainian" msgstr "Украински" -#: libraries/messages.inc.php:1185 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:1181 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 msgid "Unicode" msgstr "Уникод" -#: libraries/messages.inc.php:1187 libraries/mysql_charsets.lib.php:398 +#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:398 #: libraries/mysql_charsets.lib.php:405 msgid "unknown" msgstr "непознат" -#: libraries/messages.inc.php:1190 server_privileges.php:1152 +#: libraries/messages.inc.php:1186 server_privileges.php:1152 #, php-format msgid "You have updated the privileges for %s." msgstr "Ги ажуриравте привилегиите за %s." -#: libraries/messages.inc.php:1191 user_password.php:112 +#: libraries/messages.inc.php:1187 user_password.php:112 msgid "The profile has been updated." msgstr "Профилот е променет" -#: libraries/messages.inc.php:1193 libraries/relation.lib.php:138 +#: libraries/messages.inc.php:1189 libraries/relation.lib.php:138 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "Ве молиме погледнете во документацијата за тоа како се ажурира табелата " "Column_comments" -#: libraries/messages.inc.php:1194 +#: libraries/messages.inc.php:1190 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" "Би требало да го надоградите вашиот %s сервер на верзија %s или понова." -#: libraries/messages.inc.php:1204 tbl_printview.php:314 tbl_structure.php:661 +#: libraries/messages.inc.php:1200 tbl_printview.php:314 tbl_structure.php:661 msgid "Usage" msgstr "Големина" -#: libraries/messages.inc.php:1205 +#: libraries/messages.inc.php:1201 msgid "Enclose table and field names with backquotes" msgstr "Името на полето стави го во '" -#: libraries/messages.inc.php:1206 libraries/replication_gui.lib.php:314 +#: libraries/messages.inc.php:1202 libraries/replication_gui.lib.php:314 #: server_privileges.php:740 msgid "Use Host Table" msgstr "Користи ја табелата на host-от" -#: libraries/messages.inc.php:1207 server_privileges.php:848 +#: libraries/messages.inc.php:1203 server_privileges.php:848 #, php-format msgid "The user %s already exists!" msgstr "Корисник %s веќе постои!" -#: libraries/messages.inc.php:1209 libraries/replication_gui.lib.php:55 +#: libraries/messages.inc.php:1205 libraries/replication_gui.lib.php:55 #: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245 #: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255 #: server_privileges.php:672 server_privileges.php:675 @@ -6502,37 +6502,37 @@ msgstr "Корисник %s веќе постои!" msgid "User name" msgstr "Назив на корисник" -#: libraries/messages.inc.php:1210 server_privileges.php:1645 +#: libraries/messages.inc.php:1206 server_privileges.php:1645 msgid "The selected user was not found in the privilege table." msgstr "Изабраниот корисник не е пронајден во табелата на привилегии." -#: libraries/messages.inc.php:1211 server_privileges.php:1365 +#: libraries/messages.inc.php:1207 server_privileges.php:1365 msgid "User overview" msgstr "Преглед на корисници" -#: libraries/messages.inc.php:1212 server_privileges.php:1261 +#: libraries/messages.inc.php:1208 server_privileges.php:1261 msgid "The selected users have been deleted successfully." msgstr "Изабраните корисници успешно се избришани." -#: libraries/messages.inc.php:1213 server_privileges.php:2026 +#: libraries/messages.inc.php:1209 server_privileges.php:2026 #, php-format msgid "Users having access to "%s"" msgstr "Корисници кои имаат пристап "%s"" -#: libraries/messages.inc.php:1214 main.php:189 server_privileges.php:1350 +#: libraries/messages.inc.php:1210 main.php:189 server_privileges.php:1350 #: server_privileges.php:1497 server_privileges.php:1611 #: server_privileges.php:2029 server_processlist.php:54 msgid "User" msgstr "Корисник" -#: libraries/messages.inc.php:1215 tbl_change.php:1171 +#: libraries/messages.inc.php:1211 tbl_change.php:1171 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Користете го TAB тастерот за движење од поле во поле, или CTRL+стрелка за " "слободно движење" -#: libraries/messages.inc.php:1217 libraries/replication_gui.lib.php:251 +#: libraries/messages.inc.php:1213 libraries/replication_gui.lib.php:251 #: libraries/replication_gui.lib.php:319 libraries/replication_gui.lib.php:342 #: server_privileges.php:678 server_privileges.php:745 #: server_privileges.php:769 server_privileges.php:1889 @@ -6540,7 +6540,7 @@ msgstr "" msgid "Use text field" msgstr "Користи текст поле" -#: libraries/messages.inc.php:1221 libraries/sqlvalidator.lib.php:68 +#: libraries/messages.inc.php:1217 libraries/sqlvalidator.lib.php:68 #, php-format msgid "" "The SQL validator could not be initialized. Please check if you have " @@ -6549,88 +6549,88 @@ msgstr "" "SQL валидаторот не можеше да биде стартуван. Проверете да ли се инсталирани " "неопходните PHP екстензии опишане во %sдокументацијата%s." -#: libraries/messages.inc.php:1222 libraries/replication_gui.lib.php:111 +#: libraries/messages.inc.php:1218 libraries/replication_gui.lib.php:111 #: server_status.php:627 tbl_change.php:324 tbl_printview.php:370 #: tbl_select.php:139 tbl_structure.php:730 msgid "Value" msgstr "Вредност" -#: libraries/messages.inc.php:1223 libraries/replication_gui.lib.php:110 +#: libraries/messages.inc.php:1219 libraries/replication_gui.lib.php:110 #: libraries/sql_query_form.lib.php:445 server_status.php:626 #: server_variables.php:52 msgid "Variable" msgstr "Променлива" -#: libraries/messages.inc.php:1225 server_export.php:21 +#: libraries/messages.inc.php:1221 server_export.php:21 msgid "View dump (schema) of databases" msgstr "Прикажи содржина (шема) на базите" -#: libraries/messages.inc.php:1227 tbl_export.php:23 +#: libraries/messages.inc.php:1223 tbl_export.php:23 msgid "View dump (schema) of table" msgstr "Прикажи содржина (шема) на табелите" -#: libraries/messages.inc.php:1231 view_create.php:142 +#: libraries/messages.inc.php:1227 view_create.php:142 msgid "VIEW name" msgstr "" -#: libraries/messages.inc.php:1237 main.php:205 +#: libraries/messages.inc.php:1233 main.php:205 msgid "Web server" msgstr "" -#: libraries/messages.inc.php:1239 libraries/mysql_charsets.lib.php:277 +#: libraries/messages.inc.php:1235 libraries/mysql_charsets.lib.php:277 #: libraries/mysql_charsets.lib.php:325 msgid "West European" msgstr "Западноевропски" -#: libraries/messages.inc.php:1240 main.php:230 +#: libraries/messages.inc.php:1236 main.php:230 msgid "Wiki" msgstr "" -#: libraries/messages.inc.php:1241 server_privileges.php:2138 +#: libraries/messages.inc.php:1237 server_privileges.php:2138 msgid "wildcard" msgstr "џокер" -#: libraries/messages.inc.php:1248 +#: libraries/messages.inc.php:1244 msgid "Export contents" msgstr "" -#: libraries/messages.inc.php:1249 +#: libraries/messages.inc.php:1245 msgid "Export functions" msgstr "" -#: libraries/messages.inc.php:1250 +#: libraries/messages.inc.php:1246 msgid "Export procedures" msgstr "" -#: libraries/messages.inc.php:1251 +#: libraries/messages.inc.php:1247 msgid "Export Structure Schemas (recommended)" msgstr "" -#: libraries/messages.inc.php:1252 +#: libraries/messages.inc.php:1248 #, fuzzy msgid "Export tables" msgstr "Тип на извоз" -#: libraries/messages.inc.php:1253 +#: libraries/messages.inc.php:1249 #, fuzzy msgid "Export triggers" msgstr "Тип на извоз" -#: libraries/messages.inc.php:1254 +#: libraries/messages.inc.php:1250 msgid "Export views" msgstr "" -#: libraries/messages.inc.php:1255 +#: libraries/messages.inc.php:1251 msgid "XML" msgstr "XML" -#: libraries/messages.inc.php:1259 server_privileges.php:592 +#: libraries/messages.inc.php:1255 server_privileges.php:592 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" "Напомена: Поставувањето на овие опции на 0 (нула) ги отстранува " "ограничувањата." -#: libraries/messages.inc.php:1260 +#: libraries/messages.inc.php:1256 msgid "\"zipped\"" msgstr "\"zip\"" diff --git a/po/mn.po b/po/mn.po index 24d6c7a20..18c07a682 100644 --- 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-05-13 11:25+0200\n" +"POT-Creation-Date: 2010-05-13 11:30+0200\n" "PO-Revision-Date: 2010-03-12 09:17+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: mongolian \n" @@ -13,19 +13,19 @@ msgstr "" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:38 browse_foreigners.php:59 -#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:870 +#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:866 #: server_privileges.php:1475 msgid "Show all" msgstr "Бүгдийг харах" #: browse_foreigners.php:82 db_operations.php:648 -#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:394 -#: libraries/export/pdf.php:147 libraries/messages.inc.php:597 +#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394 +#: libraries/export/pdf.php:147 libraries/messages.inc.php:593 #: pdf_schema.php:283 pdf_schema.php:1123 pdf_schema.php:1139 msgid "Page number:" msgstr "Хуудасны дугаар:" -#: browse_foreigners.php:132 libraries/messages.inc.php:1242 +#: browse_foreigners.php:132 libraries/messages.inc.php:1238 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -37,7 +37,7 @@ 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/db_links.inc.php:75 -#: libraries/messages.inc.php:841 libraries/tbl_links.inc.php:63 +#: libraries/messages.inc.php:837 libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Хайх" @@ -46,12 +46,12 @@ msgstr "Хайх" #: db_search.php:362 db_structure.php:567 js/messages.php:48 #: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2267 +#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 #: 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 #: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614 -#: libraries/messages.inc.php:361 libraries/replication_gui.lib.php:73 +#: libraries/messages.inc.php:357 libraries/replication_gui.lib.php:73 #: libraries/replication_gui.lib.php:365 libraries/select_server.lib.php:104 #: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477 #: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782 @@ -71,33 +71,33 @@ msgid "Go" msgstr "Яв" #: browse_foreigners.php:168 browse_foreigners.php:172 -#: libraries/Index.class.php:442 libraries/messages.inc.php:459 +#: libraries/Index.class.php:442 libraries/messages.inc.php:455 #: tbl_tracking.php:320 msgid "Keyname" msgstr "Түлхүүрийн нэр" #: browse_foreigners.php:169 browse_foreigners.php:171 -#: libraries/messages.inc.php:252 server_collations.php:55 +#: libraries/messages.inc.php:248 server_collations.php:55 #: server_collations.php:67 server_engines.php:59 server_status.php:628 msgid "Description" msgstr "Тайлбар" #: browse_foreigners.php:247 browse_foreigners.php:256 #: browse_foreigners.php:268 browse_foreigners.php:276 -#: libraries/messages.inc.php:1218 +#: libraries/messages.inc.php:1214 msgid "Use this value" msgstr "Уг утгыг хэрэглэх" -#: db_create.php:46 libraries/messages.inc.php:215 +#: db_create.php:46 libraries/messages.inc.php:211 #, php-format msgid "Database %1$s has been created." msgstr "" -#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:232 +#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:228 msgid "Database comment: " msgstr "ӨС-ийн тайлбар: " -#: db_datadict.php:165 libraries/messages.inc.php:1070 +#: db_datadict.php:165 libraries/messages.inc.php:1066 #: libraries/tbl_properties.inc.php:724 pdf_schema.php:1236 #: tbl_operations.php:345 tbl_printview.php:130 msgid "Table comments" @@ -106,7 +106,7 @@ msgstr "Хүснэгтийн тайлбар" #: db_datadict.php:174 db_qbe.php:174 libraries/Index.class.php:446 #: libraries/export/htmlword.php:244 libraries/export/latex.php:360 #: libraries/export/odt.php:294 libraries/export/texytext.php:233 -#: libraries/messages.inc.php:317 libraries/tbl_properties.inc.php:99 +#: libraries/messages.inc.php:313 libraries/tbl_properties.inc.php:99 #: libraries/tbl_properties.inc.php:275 pdf_schema.php:1262 #: pdf_schema.php:1283 tbl_change.php:308 tbl_indexes.php:189 #: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135 @@ -118,7 +118,7 @@ msgstr "Талбар" #: libraries/db_events.inc.php:31 libraries/db_routines.inc.php:42 #: 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/messages.inc.php:1181 +#: libraries/export/texytext.php:234 libraries/messages.inc.php:1177 #: libraries/tbl_properties.inc.php:100 pdf_schema.php:1263 #: pdf_schema.php:1284 server_privileges.php:2031 tbl_change.php:287 #: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313 @@ -130,7 +130,7 @@ msgstr "Төрөл" #: db_datadict.php:177 libraries/Index.class.php:449 #: libraries/export/htmlword.php:246 libraries/export/latex.php:360 #: libraries/export/odt.php:300 libraries/export/texytext.php:235 -#: libraries/messages.inc.php:576 libraries/tbl_properties.inc.php:109 +#: libraries/messages.inc.php:572 libraries/tbl_properties.inc.php:109 #: pdf_schema.php:1265 pdf_schema.php:1286 tbl_change.php:323 #: tbl_printview.php:145 tbl_structure.php:181 tbl_tracking.php:276 #: tbl_tracking.php:327 @@ -139,7 +139,7 @@ msgstr "Хоосон" #: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 -#: libraries/export/texytext.php:236 libraries/messages.inc.php:238 +#: libraries/export/texytext.php:236 libraries/messages.inc.php:234 #: libraries/tbl_properties.inc.php:106 pdf_schema.php:1266 #: pdf_schema.php:1287 tbl_printview.php:146 tbl_structure.php:182 #: tbl_tracking.php:277 @@ -148,14 +148,14 @@ msgstr "Анхдагч" #: db_datadict.php:182 libraries/export/htmlword.php:249 #: libraries/export/latex.php:362 libraries/export/odt.php:307 -#: libraries/export/texytext.php:238 libraries/messages.inc.php:483 +#: libraries/export/texytext.php:238 libraries/messages.inc.php:479 #: pdf_schema.php:1268 pdf_schema.php:1289 tbl_printview.php:150 msgid "Links to" msgstr "Холбоос" #: db_datadict.php:184 db_printview.php:112 libraries/export/htmlword.php:252 #: libraries/export/latex.php:365 libraries/export/odt.php:312 -#: libraries/export/texytext.php:241 libraries/messages.inc.php:163 +#: libraries/export/texytext.php:241 libraries/messages.inc.php:159 #: libraries/tbl_properties.inc.php:130 pdf_schema.php:1279 #: pdf_schema.php:1290 tbl_printview.php:152 msgid "Comments" @@ -164,7 +164,7 @@ msgstr "Тайлбар" #: db_datadict.php:267 libraries/Index.class.php:359 #: 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/messages.inc.php:559 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:555 #: libraries/mult_submits.inc.php:263 pdf_schema.php:1344 #: server_privileges.php:1529 server_privileges.php:1540 #: server_privileges.php:1850 server_privileges.php:1855 @@ -176,7 +176,7 @@ msgstr "Үгүй" #: db_datadict.php:267 libraries/Index.class.php:360 #: libraries/Index.class.php:385 libraries/export/htmlword.php:322 #: libraries/export/latex.php:430 libraries/export/odt.php:368 -#: libraries/export/texytext.php:311 libraries/messages.inc.php:1257 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:1253 #: libraries/mult_submits.inc.php:45 libraries/mult_submits.inc.php:50 #: libraries/mult_submits.inc.php:55 libraries/mult_submits.inc.php:60 #: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:101 @@ -190,108 +190,108 @@ msgstr "Үгүй" msgid "Yes" msgstr "Тийм" -#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:670 +#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:666 #: tbl_printview.php:498 msgid "Print" msgstr "Хэвлэх" -#: db_export.php:29 libraries/messages.inc.php:1226 +#: db_export.php:29 libraries/messages.inc.php:1222 msgid "View dump (schema) of database" msgstr "ӨС-ийн схем харах" #: db_export.php:33 db_printview.php:96 db_qbe.php:102 db_structure.php:51 -#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:568 +#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:564 #: navigation.php:346 msgid "No tables found in database." msgstr "ӨС-д хүснэгт олдсонгүй." -#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:845 +#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:841 #: server_export.php:27 msgid "Select All" msgstr "Бүгдийг сонгох" -#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1188 +#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1184 #: server_export.php:29 msgid "Unselect All" msgstr "Бүх сонгосныг болих" -#: db_operations.php:38 libraries/messages.inc.php:213 tbl_create.php:54 +#: db_operations.php:38 libraries/messages.inc.php:209 tbl_create.php:54 msgid "The database name is empty!" msgstr "Өгөгдлийн сангийн нэр хоосон!" -#: db_operations.php:236 libraries/messages.inc.php:753 +#: db_operations.php:236 libraries/messages.inc.php:749 #, php-format msgid "Database %s has been renamed to %s" msgstr "ӨС %s-н нэр нь %s-ээр солигджээ" -#: db_operations.php:240 libraries/messages.inc.php:178 +#: db_operations.php:240 libraries/messages.inc.php:174 #, php-format msgid "Database %s has been copied to %s" msgstr "ӨС %s нь %s руу хуулагдлаа" -#: db_operations.php:410 libraries/messages.inc.php:236 +#: db_operations.php:410 libraries/messages.inc.php:232 msgid "Rename database to" msgstr "Өгөгдлийн санг д.нэрлэх нь" -#: db_operations.php:415 libraries/messages.inc.php:161 +#: db_operations.php:415 libraries/messages.inc.php:157 #: server_processlist.php:57 msgid "Command" msgstr "Команд" -#: db_operations.php:425 libraries/messages.inc.php:58 tbl_change.php:1143 +#: db_operations.php:425 libraries/messages.inc.php:54 tbl_change.php:1143 msgid "and then" msgstr "ба тэгээд" -#: db_operations.php:451 libraries/messages.inc.php:233 +#: db_operations.php:451 libraries/messages.inc.php:229 msgid "Copy database to" msgstr "Өгөгдлийн сан хуулах нь" -#: db_operations.php:458 libraries/messages.inc.php:1043 +#: db_operations.php:458 libraries/messages.inc.php:1039 #: tbl_operations.php:526 tbl_tracking.php:388 msgid "Structure only" msgstr "Зөвхөн бүтэц" -#: db_operations.php:459 libraries/messages.inc.php:1041 +#: db_operations.php:459 libraries/messages.inc.php:1037 #: tbl_operations.php:527 tbl_tracking.php:390 msgid "Structure and data" msgstr "Бүтэц ба өгөгдөл" -#: db_operations.php:460 libraries/messages.inc.php:229 tbl_operations.php:528 +#: db_operations.php:460 libraries/messages.inc.php:225 tbl_operations.php:528 #: tbl_tracking.php:389 msgid "Data only" msgstr "Зөвхөн өгөгдөл" -#: db_operations.php:468 libraries/messages.inc.php:186 +#: db_operations.php:468 libraries/messages.inc.php:182 msgid "CREATE DATABASE before copying" msgstr "хуулахын өмнө CREATE DATABASE" #: db_operations.php:471 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 -#: libraries/export/sql.php:82 libraries/messages.inc.php:30 +#: libraries/export/sql.php:82 libraries/messages.inc.php:26 #: tbl_operations.php:534 #, php-format msgid "Add %s" msgstr "Нэмэх %s" -#: db_operations.php:475 libraries/messages.inc.php:29 tbl_operations.php:297 +#: db_operations.php:475 libraries/messages.inc.php:25 tbl_operations.php:297 #: tbl_operations.php:536 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT утга нэмэх" -#: db_operations.php:479 libraries/messages.inc.php:31 tbl_operations.php:543 +#: db_operations.php:479 libraries/messages.inc.php:27 tbl_operations.php:543 msgid "Add constraints" msgstr "Тогтмол нэмэх" -#: db_operations.php:492 libraries/messages.inc.php:1059 +#: db_operations.php:492 libraries/messages.inc.php:1055 msgid "Switch to copied database" msgstr "Хуулагдсан ӨС руу шилжих" -#: db_operations.php:533 libraries/messages.inc.php:89 +#: db_operations.php:533 libraries/messages.inc.php:85 msgid "BLOB Repository" msgstr "" #: db_operations.php:536 db_tracking.php:76 libraries/common.lib.php:1350 -#: libraries/messages.inc.php:1037 libraries/server_links.inc.php:49 +#: libraries/messages.inc.php:1033 libraries/server_links.inc.php:49 #: server_processlist.php:59 tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "Статус" @@ -303,11 +303,11 @@ msgctxt "BLOB repository" msgid "Enabled" msgstr "Нээлттэй" -#: db_operations.php:548 libraries/messages.inc.php:93 +#: db_operations.php:548 libraries/messages.inc.php:89 msgid "Disable" msgstr "" -#: db_operations.php:558 libraries/messages.inc.php:90 +#: db_operations.php:558 libraries/messages.inc.php:86 msgid "Damaged" msgstr "" @@ -325,12 +325,12 @@ msgctxt "BLOB repository" msgid "Disabled" msgstr "Хаагдсан" -#: db_operations.php:574 libraries/messages.inc.php:96 +#: db_operations.php:574 libraries/messages.inc.php:92 msgid "Enable" msgstr "" #: db_operations.php:598 libraries/Index.class.php:448 -#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:158 +#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:154 #: 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:361 @@ -339,7 +339,7 @@ msgstr "" msgid "Collation" msgstr "Жишилт" -#: db_operations.php:609 libraries/messages.inc.php:742 main.php:316 +#: db_operations.php:609 libraries/messages.inc.php:738 main.php:316 #: pdf_schema.php:34 #, php-format msgid "" @@ -349,58 +349,58 @@ msgstr "" "Холбогдсон хүснэгтүүдтэй ажиллах нэмэлт онцлогууд идэвхгүй болжээ. %sЭнд%s " "дарж шалгах." -#: db_operations.php:645 libraries/messages.inc.php:264 pdf_pages.php:528 +#: db_operations.php:645 libraries/messages.inc.php:260 pdf_pages.php:528 msgid "Display PDF schema" msgstr "PDF-схем харуулах" -#: db_operations.php:661 libraries/messages.inc.php:877 pdf_pages.php:529 +#: db_operations.php:661 libraries/messages.inc.php:873 pdf_pages.php:529 msgid "Show grid" msgstr "Тор харуулах" -#: db_operations.php:664 libraries/messages.inc.php:874 pdf_pages.php:530 +#: db_operations.php:664 libraries/messages.inc.php:870 pdf_pages.php:530 msgid "Show color" msgstr "Өнгө харах" -#: db_operations.php:666 libraries/messages.inc.php:998 pdf_pages.php:531 +#: db_operations.php:666 libraries/messages.inc.php:994 pdf_pages.php:531 msgid "Show dimension of tables" msgstr "Хүснэгтийн харьцаа харуулах" -#: db_operations.php:669 libraries/messages.inc.php:52 pdf_pages.php:532 +#: db_operations.php:669 libraries/messages.inc.php:48 pdf_pages.php:532 msgid "Display all tables with the same width" msgstr "бүх хүснэгтийг ижил өргөнөөр харуулах уу?" -#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:227 +#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:223 #: pdf_pages.php:533 msgid "Data Dictionary" msgstr "Өгөгдлийн толь" -#: db_operations.php:674 libraries/messages.inc.php:884 pdf_pages.php:534 +#: db_operations.php:674 libraries/messages.inc.php:880 pdf_pages.php:534 msgid "Only show keys" msgstr "" -#: db_operations.php:676 libraries/messages.inc.php:875 pdf_pages.php:535 +#: db_operations.php:676 libraries/messages.inc.php:871 pdf_pages.php:535 msgid "Data Dictionary Format" msgstr "Өгөгдлийн толийн тогтнол" -#: db_operations.php:678 libraries/messages.inc.php:464 pdf_pages.php:537 +#: db_operations.php:678 libraries/messages.inc.php:460 pdf_pages.php:537 msgid "Landscape" msgstr "Ландшафт" -#: db_operations.php:679 libraries/messages.inc.php:663 pdf_pages.php:538 +#: db_operations.php:679 libraries/messages.inc.php:659 pdf_pages.php:538 msgid "Portrait" msgstr "Дүрслэл" -#: db_operations.php:682 libraries/messages.inc.php:599 pdf_pages.php:541 +#: db_operations.php:682 libraries/messages.inc.php:595 pdf_pages.php:541 msgid "Paper size" msgstr "Цаасны хэмжээ" -#: db_operations.php:706 libraries/messages.inc.php:281 +#: db_operations.php:706 libraries/messages.inc.php:277 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 libraries/messages.inc.php:1087 +#: libraries/header.inc.php:126 libraries/messages.inc.php:1083 #: pdf_pages.php:405 server_privileges.php:1626 server_privileges.php:1682 #: server_privileges.php:1946 server_synchronize.php:423 #: server_synchronize.php:866 tbl_tracking.php:592 test/theme.php:75 @@ -408,176 +408,176 @@ msgid "Table" msgstr "Хүснэгт " #: db_printview.php:105 libraries/db_structure.lib.php:56 -#: libraries/messages.inc.php:735 +#: libraries/messages.inc.php:731 msgid "Records" msgstr "Бичлэгүүд" #: db_printview.php:109 libraries/db_structure.lib.php:67 -#: libraries/messages.inc.php:1003 tbl_indexes.php:190 +#: libraries/messages.inc.php:999 tbl_indexes.php:190 msgid "Size" msgstr "Хэмжээ" #: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 -#: libraries/export/sql.php:899 libraries/messages.inc.php:436 +#: libraries/export/sql.php:899 libraries/messages.inc.php:432 msgid "in use" msgstr "хэрэглэгдэж байна" #: db_printview.php:187 libraries/db_info.inc.php:88 -#: libraries/export/sql.php:514 libraries/messages.inc.php:1032 +#: libraries/export/sql.php:514 libraries/messages.inc.php:1028 #: pdf_schema.php:1241 tbl_printview.php:434 tbl_structure.php:810 msgid "Creation" msgstr "Үүсгэлт" #: db_printview.php:196 libraries/db_info.inc.php:93 -#: libraries/export/sql.php:519 libraries/messages.inc.php:1036 +#: libraries/export/sql.php:519 libraries/messages.inc.php:1032 #: pdf_schema.php:1246 tbl_printview.php:444 tbl_structure.php:818 msgid "Last update" msgstr "Сүүлийн шинэчлэл" #: db_printview.php:205 libraries/db_info.inc.php:98 -#: libraries/export/sql.php:524 libraries/messages.inc.php:1031 +#: libraries/export/sql.php:524 libraries/messages.inc.php:1027 #: pdf_schema.php:1251 tbl_printview.php:454 tbl_structure.php:826 msgid "Last check" msgstr "Сүүлийн шалгалт" -#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1085 +#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1081 #, php-format msgid "%s table(s)" msgstr "%s хүснэгт(үүд)" #: db_qbe.php:29 libraries/display_tbl.lib.php:1981 -#: libraries/messages.inc.php:1051 libraries/sql_query_form.lib.php:140 +#: libraries/messages.inc.php:1047 libraries/sql_query_form.lib.php:140 #: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131 #: view_operations.php:62 msgid "Your SQL query has been executed successfully" msgstr "Таны SQL-асуулт амжилттай ажиллав" -#: db_qbe.php:42 libraries/messages.inc.php:371 +#: db_qbe.php:42 libraries/messages.inc.php:367 msgid "You have to choose at least one column to display" msgstr "Харуулахын тулд ядаж нэг багана сонго" #: db_qbe.php:200 libraries/db_structure.lib.php:104 -#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1014 +#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1010 msgid "Sort" msgstr "Эрэмбэлэх" #: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111 #: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828 -#: libraries/messages.inc.php:69 server_databases.php:170 +#: libraries/messages.inc.php:65 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314 msgid "Ascending" msgstr "Өсөхөөр" #: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119 #: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825 -#: libraries/messages.inc.php:251 server_databases.php:170 +#: libraries/messages.inc.php:247 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315 msgid "Descending" msgstr "Буурахаар" #: db_qbe.php:264 db_tracking.php:78 libraries/display_tbl.lib.php:308 -#: libraries/messages.inc.php:888 tbl_change.php:277 tbl_tracking.php:597 +#: libraries/messages.inc.php:884 tbl_change.php:277 tbl_tracking.php:597 msgid "Show" msgstr "Харах" -#: db_qbe.php:300 libraries/messages.inc.php:202 +#: db_qbe.php:300 libraries/messages.inc.php:198 msgid "Criteria" msgstr "Хэмжүүр" #: db_qbe.php:353 db_qbe.php:435 db_qbe.php:527 db_qbe.php:558 -#: libraries/messages.inc.php:718 +#: libraries/messages.inc.php:714 msgid "Ins" msgstr "Оруулах" #: db_qbe.php:357 db_qbe.php:439 db_qbe.php:524 db_qbe.php:555 -#: libraries/messages.inc.php:56 +#: libraries/messages.inc.php:52 msgid "And" msgstr "БА" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:529 db_qbe.php:560 -#: libraries/messages.inc.php:717 +#: libraries/messages.inc.php:713 msgid "Del" msgstr "Устгах" #: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553 -#: libraries/display_import.lib.php:166 libraries/messages.inc.php:592 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:588 #: libraries/tbl_properties.inc.php:779 server_privileges.php:258 #: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288 msgid "Or" msgstr "Эсвэл" -#: db_qbe.php:507 libraries/messages.inc.php:516 +#: db_qbe.php:507 libraries/messages.inc.php:512 msgid "Modify" msgstr "Өөрчлөх" -#: db_qbe.php:584 libraries/messages.inc.php:33 +#: db_qbe.php:584 libraries/messages.inc.php:29 msgid "Add/Delete Criteria Row" msgstr "Мөр Нэмэх/устгах" -#: db_qbe.php:596 libraries/messages.inc.php:32 +#: db_qbe.php:596 libraries/messages.inc.php:28 msgid "Add/Delete Field Columns" msgstr "Багана нэмэх/устгах" -#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1192 +#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1188 msgid "Update Query" msgstr "Update асуулт" -#: db_qbe.php:617 libraries/messages.inc.php:1216 +#: db_qbe.php:617 libraries/messages.inc.php:1212 msgid "Use Tables" msgstr "Хүснэгт хэрэглэх" -#: db_qbe.php:640 libraries/messages.inc.php:723 +#: db_qbe.php:640 libraries/messages.inc.php:719 #, php-format msgid "SQL query on database %s:" msgstr "ӨС %s дахь SQL-асуулт:" -#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:823 +#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:819 msgid "Submit Query" msgstr "Асуултыг илгээх" #: db_search.php:68 libraries/auth/config.auth.lib.php:84 #: libraries/auth/config.auth.lib.php:103 #: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52 -#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:26 +#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:22 msgid "Access denied" msgstr "Хандах эрхгүй" -#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:836 +#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:832 msgid "at least one of the words" msgstr "Үгүүдийн ядаж нэгээр" -#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:837 +#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:833 msgid "all words" msgstr "бүх үг" -#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:838 +#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:834 msgid "the exact phrase" msgstr "яг цав өгүүлбэр" -#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:839 +#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:835 msgid "as regular expression" msgstr "as regular expression" -#: db_search.php:242 libraries/messages.inc.php:840 +#: db_search.php:242 libraries/messages.inc.php:836 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Хайлтын үр дүн \"%s\" %s:" -#: db_search.php:260 libraries/messages.inc.php:579 +#: db_search.php:260 libraries/messages.inc.php:575 #, php-format msgid "%s match(es) inside table %s" 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/messages.inc.php:108 +#: db_structure.php:105 libraries/messages.inc.php:104 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468 msgid "Browse" msgstr "Хөтлөх" #: db_search.php:272 libraries/display_tbl.lib.php:1165 -#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:243 +#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:239 #: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406 #: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377 #: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216 @@ -585,45 +585,45 @@ msgstr "Хөтлөх" msgid "Delete" msgstr "Устгах" -#: db_search.php:285 libraries/messages.inc.php:580 +#: db_search.php:285 libraries/messages.inc.php:576 #, php-format msgid "Total: %s match(es)" msgstr "Нийт: %s олдоц(ууд)" -#: db_search.php:299 libraries/messages.inc.php:832 +#: db_search.php:299 libraries/messages.inc.php:828 msgid "Search in database" msgstr "Өгөгдлийн санд хайх" -#: db_search.php:302 libraries/messages.inc.php:835 +#: db_search.php:302 libraries/messages.inc.php:831 msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgstr "Үг(үүд) ба утга(ууд) -ыг хайх (түлхүүр \"%\"):" -#: db_search.php:307 libraries/messages.inc.php:842 +#: db_search.php:307 libraries/messages.inc.php:838 msgid "Find:" msgstr "Хайх:" -#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1017 +#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1013 msgid "Words are separated by a space character (\" \")." msgstr "Їгнїїд хоосон зайгаар (\" \") хуваагдана." -#: db_search.php:325 libraries/messages.inc.php:834 +#: db_search.php:325 libraries/messages.inc.php:830 msgid "Inside table(s):" msgstr "Хүснэгт(үүд) дотор:" -#: db_search.php:355 libraries/messages.inc.php:833 +#: db_search.php:355 libraries/messages.inc.php:829 msgid "Inside field:" 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/messages.inc.php:431 libraries/sql_query_form.lib.php:334 +#: libraries/messages.inc.php:427 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/db_links.inc.php:63 libraries/export/latex.php:337 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:1048 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:1044 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 #: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269 msgid "Structure" @@ -632,8 +632,8 @@ 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:1642 -#: libraries/db_links.inc.php:100 libraries/messages.inc.php:272 +#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/db_links.inc.php:100 libraries/messages.inc.php:268 #: 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 @@ -643,40 +643,40 @@ 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:1641 -#: libraries/messages.inc.php:284 libraries/mult_submits.inc.php:39 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: libraries/messages.inc.php:280 libraries/mult_submits.inc.php:39 #: libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Хоосон" -#: db_structure.php:316 libraries/messages.inc.php:1075 +#: db_structure.php:316 libraries/messages.inc.php:1071 #: libraries/tbl_links.inc.php:100 #, php-format msgid "Table %s has been emptied" msgstr "Хүснэгт %s нь хоослогдлоо" -#: db_structure.php:326 libraries/messages.inc.php:1229 +#: db_structure.php:326 libraries/messages.inc.php:1225 #: libraries/tbl_links.inc.php:133 #, php-format msgid "View %s has been dropped" msgstr "Харц %s нь устгагдсан" -#: db_structure.php:326 libraries/messages.inc.php:1074 +#: db_structure.php:326 libraries/messages.inc.php:1070 #: libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "Хүснэгт %s нь устгагдлаа" -#: db_structure.php:333 libraries/messages.inc.php:1128 +#: db_structure.php:333 libraries/messages.inc.php:1124 msgid "Tracking is active." msgstr "" -#: db_structure.php:335 libraries/messages.inc.php:1129 +#: db_structure.php:335 libraries/messages.inc.php:1125 msgid "Tracking is not active." msgstr "" #: db_structure.php:420 libraries/display_tbl.lib.php:1944 -#: libraries/messages.inc.php:1228 +#: libraries/messages.inc.php:1224 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -684,83 +684,83 @@ msgid "" msgstr "" #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 -#: libraries/messages.inc.php:1233 libraries/tbl_info.inc.php:66 +#: libraries/messages.inc.php:1229 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/messages.inc.php:773 libraries/server_links.inc.php:70 +#: libraries/messages.inc.php:769 libraries/server_links.inc.php:70 #: server_replication.php:33 server_replication.php:164 server_status.php:258 msgid "Replication" msgstr "Олшруулалт" -#: db_structure.php:489 libraries/messages.inc.php:1053 +#: db_structure.php:489 libraries/messages.inc.php:1049 msgid "Sum" msgstr "Нийт" #: db_structure.php:496 libraries/StorageEngine.class.php:356 -#: libraries/messages.inc.php:239 +#: libraries/messages.inc.php:235 #, 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 #: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086 -#: libraries/messages.inc.php:1243 libraries/mult_submits.inc.php:16 +#: libraries/messages.inc.php:1239 libraries/mult_submits.inc.php:16 #: server_databases.php:346 server_databases.php:351 #: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465 msgid "With selected:" msgstr "Сонгогдсонтой:" #: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: libraries/messages.inc.php:148 server_databases.php:348 +#: libraries/messages.inc.php:144 server_databases.php:348 #: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459 msgid "Check All" msgstr "Бүгдийг чагтлах" #: db_structure.php:531 libraries/display_tbl.lib.php:2077 -#: libraries/messages.inc.php:1184 libraries/replication_gui.lib.php:33 +#: libraries/messages.inc.php:1180 libraries/replication_gui.lib.php:33 #: server_databases.php:350 server_privileges.php:533 #: server_privileges.php:1564 tbl_structure.php:463 msgid "Uncheck All" msgstr "Бүх чагтыг болих" -#: db_structure.php:536 libraries/messages.inc.php:150 +#: db_structure.php:536 libraries/messages.inc.php:146 msgid "Check tables having overhead" msgstr "Дээдхийг шалгах" #: db_structure.php:547 db_structure.php:548 db_structure.php:599 -#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:672 +#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:668 #: libraries/mult_submits.inc.php:28 tbl_structure.php:493 #: tbl_structure.php:495 msgid "Print view" msgstr "Хэвлэхээр харах" -#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:153 +#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:149 #: libraries/mult_submits.inc.php:42 tbl_operations.php:579 msgid "Check table" msgstr "Хүснэгт шалгах" -#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:590 +#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:586 #: libraries/mult_submits.inc.php:47 tbl_operations.php:619 #: tbl_structure.php:710 tbl_structure.php:712 msgid "Optimize table" msgstr "Хүснэгтийг зүгшрүүлэх" -#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:758 +#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:754 #: libraries/mult_submits.inc.php:52 tbl_operations.php:609 msgid "Repair table" msgstr "Хүснэгт засах" -#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:55 +#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:51 #: libraries/mult_submits.inc.php:57 tbl_operations.php:599 msgid "Analyze table" msgstr "Хүснэгтийг задлах" #: db_structure.php:557 db_structure.php:558 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/messages.inc.php:310 +#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:306 #: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84 #: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109 #: server_privileges.php:1341 setup/frames/menu.inc.php:22 @@ -768,7 +768,7 @@ msgstr "Хүснэгтийг задлах" msgid "Export" msgstr "Гаргах" -#: db_tracking.php:66 libraries/messages.inc.php:1151 +#: db_tracking.php:66 libraries/messages.inc.php:1147 msgid "Tracked tables" msgstr "" @@ -776,7 +776,7 @@ msgstr "" #: 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/header_printview.inc.php:58 libraries/messages.inc.php:212 +#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:208 #: navigation.php:233 server_databases.php:169 server_privileges.php:1621 #: server_privileges.php:1682 server_privileges.php:1940 #: server_processlist.php:56 server_synchronize.php:1179 @@ -784,93 +784,93 @@ msgstr "" msgid "Database" msgstr "ӨС" -#: db_tracking.php:73 libraries/messages.inc.php:1146 +#: db_tracking.php:73 libraries/messages.inc.php:1142 msgid "Last version" msgstr "" -#: db_tracking.php:74 libraries/messages.inc.php:1145 tbl_tracking.php:594 +#: db_tracking.php:74 libraries/messages.inc.php:1141 tbl_tracking.php:594 msgid "Created" msgstr "" -#: db_tracking.php:75 libraries/messages.inc.php:1147 tbl_tracking.php:595 +#: db_tracking.php:75 libraries/messages.inc.php:1143 tbl_tracking.php:595 msgid "Updated" msgstr "" #: db_tracking.php:77 libraries/Index.class.php:440 -#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:27 +#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:23 #: server_databases.php:203 server_privileges.php:1503 #: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187 msgid "Action" msgstr "Үйлдэл" -#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:247 +#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:243 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:106 libraries/messages.inc.php:1142 tbl_tracking.php:548 +#: db_tracking.php:106 libraries/messages.inc.php:1138 tbl_tracking.php:548 #: tbl_tracking.php:606 tbl_tracking.php:613 msgid "active" msgstr "" -#: db_tracking.php:108 libraries/messages.inc.php:1143 tbl_tracking.php:550 +#: db_tracking.php:108 libraries/messages.inc.php:1139 tbl_tracking.php:550 #: tbl_tracking.php:608 tbl_tracking.php:610 msgid "not active" msgstr "" -#: db_tracking.php:121 libraries/messages.inc.php:1160 +#: db_tracking.php:121 libraries/messages.inc.php:1156 msgid "Versions" msgstr "" -#: db_tracking.php:122 libraries/messages.inc.php:1132 tbl_tracking.php:379 +#: db_tracking.php:122 libraries/messages.inc.php:1128 tbl_tracking.php:379 #: tbl_tracking.php:624 msgid "Tracking report" msgstr "" -#: db_tracking.php:123 libraries/messages.inc.php:1144 tbl_tracking.php:251 +#: db_tracking.php:123 libraries/messages.inc.php:1140 tbl_tracking.php:251 #: tbl_tracking.php:624 msgid "Structure snapshot" msgstr "" -#: db_tracking.php:152 libraries/messages.inc.php:1154 +#: db_tracking.php:152 libraries/messages.inc.php:1150 msgid "Untracked tables" msgstr "" -#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1153 +#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1149 #: tbl_structure.php:529 tbl_structure.php:531 msgid "Track table" msgstr "" -#: db_tracking.php:200 libraries/messages.inc.php:1121 +#: db_tracking.php:200 libraries/messages.inc.php:1117 msgid "Database Log" msgstr "" -#: export.php:62 libraries/messages.inc.php:312 +#: export.php:62 libraries/messages.inc.php:308 msgid "Selected export type has to be saved in file!" msgstr "" -#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:567 +#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:563 #, php-format msgid "Insufficient space to save the file %s." msgstr "Файл %s-г хадгалах зай хүрэлцэхгүй байна." -#: export.php:294 libraries/messages.inc.php:324 +#: export.php:294 libraries/messages.inc.php:320 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "" "Файл %s нь сервэр дээр байна, нэрээ соль эсвэл давхарлах сонголтыг шалга." -#: export.php:298 export.php:302 libraries/messages.inc.php:562 +#: export.php:298 export.php:302 libraries/messages.inc.php:558 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Вэб-сервэр файл %s-г хадгалахад зөвшөөрөлгүй байна." -#: export.php:629 libraries/messages.inc.php:276 +#: export.php:629 libraries/messages.inc.php:272 #, php-format msgid "Dump has been saved to file %s." msgstr "Асгалт %s файлд хадгалагдсан." -#: import.php:60 libraries/messages.inc.php:1202 +#: import.php:60 libraries/messages.inc.php:1198 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation%" @@ -878,21 +878,21 @@ msgid "" msgstr "" #: import.php:279 import.php:332 libraries/File.class.php:849 -#: libraries/File.class.php:961 libraries/messages.inc.php:325 +#: libraries/File.class.php:961 libraries/messages.inc.php:321 msgid "File could not be read" msgstr "Файл уншигдахгүй байна" #: import.php:287 import.php:296 import.php:315 import.php:324 #: libraries/File.class.php:1031 libraries/File.class.php:1039 #: libraries/File.class.php:1055 libraries/File.class.php:1063 -#: libraries/messages.inc.php:1189 +#: libraries/messages.inc.php:1185 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." msgstr "" -#: import.php:337 libraries/messages.inc.php:547 +#: import.php:337 libraries/messages.inc.php:543 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -900,39 +900,39 @@ msgid "" msgstr "" #: import.php:372 libraries/display_import.lib.php:24 -#: libraries/messages.inc.php:125 +#: libraries/messages.inc.php:121 msgid "Could not load import plugins, please check your installation!" msgstr "Оруулах нэмэлтүүд дуудагдсангүй, суулгацаа шалгана уу!" -#: import.php:397 libraries/messages.inc.php:102 +#: import.php:397 libraries/messages.inc.php:98 msgid "The bookmark has been deleted." msgstr "Тэмдэглэгээ устгагдсан." -#: import.php:401 libraries/messages.inc.php:879 +#: import.php:401 libraries/messages.inc.php:875 msgid "Showing bookmark" msgstr "Тэмдэглэл харуулах" -#: import.php:403 libraries/messages.inc.php:101 +#: import.php:403 libraries/messages.inc.php:97 #, php-format msgid "Bookmark %s created" msgstr "Тэмдэглэл %s нь үүсгэгдлээ" -#: import.php:409 import.php:415 libraries/messages.inc.php:407 +#: import.php:409 import.php:415 libraries/messages.inc.php:403 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Оруулалт амжилттай дууслаа, %d асуудал ажиллав." -#: import.php:424 libraries/messages.inc.php:1107 +#: import.php:424 libraries/messages.inc.php:1103 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: index.php:190 libraries/messages.inc.php:553 +#: index.php:190 libraries/messages.inc.php:549 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin нь ямар ч хөтөч дээр фрейм гаргах чадвартай." -#: js/messages.php:25 libraries/messages.inc.php:155 +#: js/messages.php:25 libraries/messages.inc.php:151 #: server_synchronize.php:345 server_synchronize.php:357 #: server_synchronize.php:373 server_synchronize.php:380 #: server_synchronize.php:739 server_synchronize.php:767 @@ -940,116 +940,116 @@ msgstr "phpMyAdmin нь ямар ч хөтөч дээр фрейм гар msgid "Click to select" msgstr "" -#: js/messages.php:26 libraries/messages.inc.php:156 +#: js/messages.php:26 libraries/messages.inc.php:152 msgid "Click to unselect" msgstr "" #: js/messages.php:27 libraries/import.lib.php:103 -#: libraries/messages.inc.php:550 sql.php:89 +#: libraries/messages.inc.php:546 sql.php:89 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"ӨС устгах\" нь хаалттай." -#: js/messages.php:30 libraries/messages.inc.php:270 +#: js/messages.php:30 libraries/messages.inc.php:266 #: libraries/mult_submits.inc.php:258 sql.php:188 msgid "Do you really want to " msgstr "Та үнэхээр " -#: js/messages.php:31 libraries/messages.inc.php:271 +#: js/messages.php:31 libraries/messages.inc.php:267 #: libraries/mult_submits.inc.php:258 sql.php:172 msgid "You are about to DESTROY a complete database!" msgstr "Дүүрэн өгөгдлийн сан УСТГАХ тухай?" -#: js/messages.php:34 libraries/messages.inc.php:94 +#: js/messages.php:34 libraries/messages.inc.php:90 msgid "You are about to DISABLE a BLOB Repository!" msgstr "" -#: js/messages.php:35 libraries/messages.inc.php:91 +#: js/messages.php:35 libraries/messages.inc.php:87 #, php-format msgid "Are you sure you want to disable all BLOB references for database %s?" msgstr "" -#: js/messages.php:38 libraries/messages.inc.php:342 +#: js/messages.php:38 libraries/messages.inc.php:338 msgid "Missing value in the form!" msgstr "Форм дахь утгыг орхисон!" -#: js/messages.php:39 libraries/messages.inc.php:570 +#: js/messages.php:39 libraries/messages.inc.php:566 msgid "This is not a number!" msgstr "Энэ тоо биш!" -#: js/messages.php:42 libraries/messages.inc.php:380 +#: js/messages.php:42 libraries/messages.inc.php:376 msgid "The host name is empty!" msgstr "Хостын нэр хоосон!" -#: js/messages.php:43 libraries/messages.inc.php:1208 +#: js/messages.php:43 libraries/messages.inc.php:1204 msgid "The user name is empty!" msgstr "Хэрэглэгчийн нэр хоосон!" -#: js/messages.php:44 libraries/messages.inc.php:607 +#: js/messages.php:44 libraries/messages.inc.php:603 #: server_privileges.php:1197 user_password.php:70 msgid "The password is empty!" msgstr "Нууц үг хоосон байна!" -#: js/messages.php:45 libraries/messages.inc.php:609 +#: js/messages.php:45 libraries/messages.inc.php:605 #: server_privileges.php:1195 user_password.php:73 msgid "The passwords aren't the same!" msgstr "Нууц їгнїїд ялгаатай байна!" -#: js/messages.php:49 libraries/messages.inc.php:123 pmd_general.php:342 +#: js/messages.php:49 libraries/messages.inc.php:119 pmd_general.php:342 #: pmd_general.php:379 msgid "Cancel" msgstr "Болих" -#: js/messages.php:52 libraries/messages.inc.php:514 +#: js/messages.php:52 libraries/messages.inc.php:510 msgid "Modifications have been saved" msgstr "Өөрчлөлт хадгалагдав" -#: js/messages.php:53 libraries/messages.inc.php:741 +#: js/messages.php:53 libraries/messages.inc.php:737 msgid "Relation deleted" msgstr "Холбоо устав" -#: js/messages.php:54 libraries/messages.inc.php:340 +#: js/messages.php:54 libraries/messages.inc.php:336 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:55 libraries/messages.inc.php:434 +#: js/messages.php:55 libraries/messages.inc.php:430 msgid "Internal relation added" msgstr "Дотоод холбоо нэмэгдэв" -#: js/messages.php:56 libraries/messages.inc.php:299 +#: js/messages.php:56 libraries/messages.inc.php:295 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:57 libraries/messages.inc.php:300 +#: js/messages.php:57 libraries/messages.inc.php:296 msgid "Error: relation already exists." msgstr "" -#: js/messages.php:58 libraries/messages.inc.php:302 +#: js/messages.php:58 libraries/messages.inc.php:298 msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:59 libraries/messages.inc.php:351 +#: js/messages.php:59 libraries/messages.inc.php:347 #: libraries/relation.lib.php:107 msgid "General relation features" msgstr "Ерөнхий хамаатай онцлог" -#: js/messages.php:59 libraries/messages.inc.php:260 +#: js/messages.php:59 libraries/messages.inc.php:256 #: libraries/relation.lib.php:101 libraries/relation.lib.php:108 msgid "Disabled" msgstr "Хаагдсан" -#: js/messages.php:60 libraries/messages.inc.php:850 +#: js/messages.php:60 libraries/messages.inc.php:846 msgid "Select referenced key" msgstr "Хамаарагдсан түлхүүр сонгох" -#: js/messages.php:61 libraries/messages.inc.php:848 +#: js/messages.php:61 libraries/messages.inc.php:844 msgid "Select Foreign Key" msgstr "Гадаад түлхүүр сонгох" -#: js/messages.php:62 libraries/messages.inc.php:653 +#: js/messages.php:62 libraries/messages.inc.php:649 msgid "Please select the primary key or a unique key" msgstr "Үндсэн түлхүүр эсвэл орь ганц түлхүүр сонгон уу" -#: js/messages.php:63 libraries/messages.inc.php:142 pmd_general.php:77 +#: js/messages.php:63 libraries/messages.inc.php:138 pmd_general.php:77 #: tbl_relation.php:548 msgid "Choose field to display" msgstr "Харуулах талбарыг соль" @@ -1069,9 +1069,9 @@ msgid "Prev" msgstr "Өмнөх" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2332 -#: libraries/common.lib.php:2335 libraries/display_tbl.lib.php:338 -#: libraries/messages.inc.php:543 server_binlog.php:205 server_binlog.php:207 +#: js/messages.php:77 libraries/common.lib.php:2344 +#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: libraries/messages.inc.php:539 server_binlog.php:205 server_binlog.php:207 #: tbl_printview.php:424 tbl_structure.php:802 msgid "Next" msgstr "Цааш" @@ -1146,27 +1146,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1543 +#: js/messages.php:97 libraries/common.lib.php:1555 msgid "Jan" msgstr "1-р" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1545 +#: js/messages.php:99 libraries/common.lib.php:1557 msgid "Feb" msgstr "2-р" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1547 +#: js/messages.php:101 libraries/common.lib.php:1559 msgid "Mar" msgstr "3-р" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1549 +#: js/messages.php:103 libraries/common.lib.php:1561 msgid "Apr" msgstr "4-р" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1551 +#: js/messages.php:105 libraries/common.lib.php:1563 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1174,37 +1174,37 @@ msgid "May" msgstr "5-р" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1553 +#: js/messages.php:107 libraries/common.lib.php:1565 msgid "Jun" msgstr "6-р" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1555 +#: js/messages.php:109 libraries/common.lib.php:1567 msgid "Jul" msgstr "7-р" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1557 +#: js/messages.php:111 libraries/common.lib.php:1569 msgid "Aug" msgstr "8-р" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1559 +#: js/messages.php:113 libraries/common.lib.php:1571 msgid "Sep" msgstr "9-р" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1561 +#: js/messages.php:115 libraries/common.lib.php:1573 msgid "Oct" msgstr "10р" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1563 +#: js/messages.php:117 libraries/common.lib.php:1575 msgid "Nov" msgstr "11р" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1565 +#: js/messages.php:119 libraries/common.lib.php:1577 msgid "Dec" msgstr "12р" @@ -1245,37 +1245,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1568 +#: js/messages.php:132 libraries/common.lib.php:1580 msgid "Sun" msgstr "Ня" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1570 +#: js/messages.php:134 libraries/common.lib.php:1582 msgid "Mon" msgstr "Да" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1572 +#: js/messages.php:136 libraries/common.lib.php:1584 msgid "Tue" msgstr "Мя" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1574 +#: js/messages.php:138 libraries/common.lib.php:1586 msgid "Wed" msgstr "Лх" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1576 +#: js/messages.php:140 libraries/common.lib.php:1588 msgid "Thu" msgstr "Пү" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1578 +#: js/messages.php:142 libraries/common.lib.php:1590 msgid "Fri" msgstr "Ба" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1580 +#: js/messages.php:144 libraries/common.lib.php:1592 msgid "Sat" msgstr "Бя" @@ -1349,76 +1349,76 @@ msgstr "хэрэглэгдэж байна" msgid "Second" msgstr "секундэд" -#: libraries/Config.class.php:1015 libraries/messages.inc.php:338 +#: libraries/Config.class.php:1015 libraries/messages.inc.php:334 msgid "Font size" msgstr "Үсгийн хэмжээ" #: libraries/File.class.php:344 libraries/File.class.php:432 #: libraries/File.class.php:569 libraries/File.class.php:708 -#: libraries/messages.inc.php:1201 +#: libraries/messages.inc.php:1197 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.class.php:414 libraries/messages.inc.php:1198 +#: libraries/File.class.php:414 libraries/messages.inc.php:1194 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:417 libraries/messages.inc.php:1197 +#: libraries/File.class.php:417 libraries/messages.inc.php:1193 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:420 libraries/messages.inc.php:1200 +#: libraries/File.class.php:420 libraries/messages.inc.php:1196 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:423 libraries/messages.inc.php:1199 +#: libraries/File.class.php:423 libraries/messages.inc.php:1195 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:426 libraries/messages.inc.php:1195 +#: libraries/File.class.php:426 libraries/messages.inc.php:1191 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:429 libraries/messages.inc.php:1196 +#: libraries/File.class.php:429 libraries/messages.inc.php:1192 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:908 libraries/messages.inc.php:319 +#: libraries/File.class.php:908 libraries/messages.inc.php:315 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "" -#: libraries/Index.class.php:428 libraries/messages.inc.php:554 +#: libraries/Index.class.php:428 libraries/messages.inc.php:550 #: tbl_relation.php:529 msgid "No index defined!" msgstr "Индекс тодорхойлогдоогүй!" -#: libraries/Index.class.php:433 libraries/messages.inc.php:411 +#: libraries/Index.class.php:433 libraries/messages.inc.php:407 #: server_databases.php:132 tbl_tracking.php:316 msgid "Indexes" msgstr "Индексүүд" -#: libraries/Index.class.php:444 libraries/messages.inc.php:1186 +#: libraries/Index.class.php:444 libraries/messages.inc.php:1182 #: 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:475 tbl_tracking.php:322 msgid "Unique" msgstr "Үл давтагдах" -#: libraries/Index.class.php:445 libraries/messages.inc.php:596 +#: libraries/Index.class.php:445 libraries/messages.inc.php:592 #: tbl_tracking.php:323 msgid "Packed" msgstr "" -#: libraries/Index.class.php:447 libraries/messages.inc.php:131 +#: libraries/Index.class.php:447 libraries/messages.inc.php:127 #: tbl_tracking.php:325 msgid "Cardinality" msgstr "Ерөнхий" -#: libraries/Index.class.php:450 libraries/messages.inc.php:162 +#: libraries/Index.class.php:450 libraries/messages.inc.php:158 #: tbl_tracking.php:279 tbl_tracking.php:328 msgid "Comment" msgstr "" @@ -1426,29 +1426,29 @@ msgstr "" #: libraries/Index.class.php:466 libraries/common.lib.php:616 #: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:280 pdf_pages.php:280 +#: libraries/messages.inc.php:276 pdf_pages.php:280 #: setup/frames/index.inc.php:124 setup/lib/messages.inc.php:352 #: tbl_row_action.php:69 msgid "Edit" msgstr "Засах" -#: libraries/Index.class.php:472 libraries/messages.inc.php:666 +#: libraries/Index.class.php:472 libraries/messages.inc.php:662 msgid "The primary key has been dropped" msgstr "Үндсэн түлхүүр устгагдлаа" -#: libraries/Index.class.php:476 libraries/messages.inc.php:413 +#: libraries/Index.class.php:476 libraries/messages.inc.php:409 #, php-format msgid "Index %s has been dropped" msgstr "Индекс %s нь устгагдсан" -#: libraries/Index.class.php:576 libraries/messages.inc.php:412 +#: libraries/Index.class.php:576 libraries/messages.inc.php:408 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "" -#: libraries/List_Database.class.php:431 libraries/messages.inc.php:218 +#: libraries/List_Database.class.php:431 libraries/messages.inc.php:214 #: libraries/server_links.inc.php:41 server_databases.php:88 #: server_privileges.php:1621 setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" @@ -1477,85 +1477,85 @@ msgid_plural "%1$d rows inserted." msgstr[0] "Сонгогдсон мөргүй" msgstr[1] "Сонгогдсон мөргүй" -#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:549 +#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:545 msgid "" "There is no detailed status information available for this storage engine." msgstr "Энд уг агуулах хөдөлгүүрийн дэлгэрэнгүй төлвийн мэдээлэл алга." -#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:291 +#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:287 #, php-format msgid "%s is available on this MySQL server." msgstr "%s нь уг MySQL сервэрт идэвхтэй байна." -#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:292 +#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:288 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s нь уг MySQL сервэр дээр хаалттай байна." -#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:294 +#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:290 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "Энэ MySQL сервэр нь %s агуулах хөдөлгүүрийг дэмжихгүй." -#: libraries/Table.class.php:1019 libraries/messages.inc.php:443 +#: libraries/Table.class.php:1019 libraries/messages.inc.php:439 msgid "Invalid database" msgstr "Буруу өгөгдлийн сан" -#: libraries/Table.class.php:1033 libraries/messages.inc.php:450 +#: libraries/Table.class.php:1033 libraries/messages.inc.php:446 #: tbl_get_field.php:26 msgid "Invalid table name" msgstr "Хүснэгтийн буруу нэр" -#: libraries/Table.class.php:1048 libraries/messages.inc.php:301 +#: libraries/Table.class.php:1048 libraries/messages.inc.php:297 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "" -#: libraries/Table.class.php:1132 libraries/messages.inc.php:754 +#: libraries/Table.class.php:1132 libraries/messages.inc.php:750 #, php-format msgid "Table %s has been renamed to %s" msgstr "Хүснэгт %s-ын нэр %s болж өөрчлөгдлөө" -#: libraries/Theme.class.php:162 libraries/messages.inc.php:1099 +#: libraries/Theme.class.php:162 libraries/messages.inc.php:1095 #, php-format msgid "No valid image path for theme %s found!" msgstr "Сэдэв %s-д олдсон зургийн зам буруу байна!" -#: libraries/Theme.class.php:384 libraries/messages.inc.php:1097 +#: libraries/Theme.class.php:384 libraries/messages.inc.php:1093 msgid "No preview available." msgstr "Боломжит харагдац байхгүй байна." -#: libraries/Theme.class.php:387 libraries/messages.inc.php:1089 +#: libraries/Theme.class.php:387 libraries/messages.inc.php:1085 msgid "take it" msgstr "авах" -#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1096 +#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1092 #, php-format msgid "Default theme %s not found!" msgstr "Анхдагч сэдэв %s байхгүй байна!" -#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1098 +#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1094 #, php-format msgid "Theme %s not found!" msgstr "Сэдэв %s олдсонгүй!" -#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1100 +#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1096 #, php-format msgid "Theme path not found for theme %s!" msgstr "Сэдэв %s сэдвийн зам олдохгүй байна!" -#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1101 +#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1097 #: test/theme.php:161 themes.php:21 themes.php:41 msgid "Theme / Style" msgstr "Арьс / Загвар" -#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:172 +#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:168 msgid "Cannot connect: invalid settings." msgstr "Холбогдсонгүй: тохируулга буруу." #: libraries/auth/config.auth.lib.php:92 #: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65 -#: libraries/messages.inc.php:1238 test/theme.php:152 +#: libraries/messages.inc.php:1234 test/theme.php:152 #, php-format msgid "Welcome to %s" msgstr "%s-д тавтай морилно уу" @@ -1579,104 +1579,104 @@ msgstr "" "phpMyAdmin нь MySQL сервэр лүү холбогдох гэсэн ч, сервэр хүлээн авсангүй. " "config.inc.php дэх сервэр, хэрэглэгчийн нэр болон нууц үгээ шалга." -#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:488 +#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:484 msgid "Log in" msgstr "Нэвтрэх" #: libraries/auth/cookie.auth.lib.php:246 -#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:659 +#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:655 #: libraries/navigation_header.inc.php:93 #: libraries/navigation_header.inc.php:95 msgid "phpMyAdmin documentation" msgstr "phpMyAdmin баримтжилт" #: libraries/auth/cookie.auth.lib.php:258 -#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:492 +#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:488 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:493 +#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:489 msgid "Server:" msgstr "Сервэр" -#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:494 +#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:490 msgid "Username:" msgstr "Нэвтрэгч:" -#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:491 +#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:487 msgid "Password:" msgstr "Нууц үг:" -#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:854 +#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:850 msgid "Server Choice" msgstr "Сервэр сонго" #: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 -#: libraries/messages.inc.php:177 +#: libraries/messages.inc.php:173 msgid "Cookies must be enabled past this point." msgstr "Энэ газарт Cookies нээлттэй байх ёстой." #: libraries/auth/cookie.auth.lib.php:671 -#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:489 +#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:485 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" #: libraries/auth/cookie.auth.lib.php:675 -#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:544 +#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:540 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "%s секунд ба түүнээс их идэвхгүй байжээ, дахин нэвтэрнэ үү" #: libraries/auth/cookie.auth.lib.php:685 #: libraries/auth/cookie.auth.lib.php:687 -#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:126 +#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:122 msgid "Cannot log in to the MySQL server" msgstr "MySQL руу нэвтэрч чадсангүй" -#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1245 +#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1241 msgid "Wrong username/password. Access denied." msgstr "Нэвтрэгч/нууц үг буруу. Хандах боломжгүй" #: libraries/auth/swekey/swekey.auth.lib.php:118 -#: libraries/messages.inc.php:1057 +#: libraries/messages.inc.php:1053 #, php-format msgid "File %s does not contain any key id" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:157 #: libraries/auth/swekey/swekey.auth.lib.php:180 -#: libraries/messages.inc.php:1056 +#: libraries/messages.inc.php:1052 msgid "Hardware authentication failed" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:166 -#: libraries/messages.inc.php:1058 +#: libraries/messages.inc.php:1054 msgid "No valid authentication key plugged" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:202 -#: libraries/messages.inc.php:1055 +#: libraries/messages.inc.php:1051 msgid "Authenticating..." msgstr "" -#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1230 +#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1226 msgid "View image" msgstr "" -#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:652 +#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:648 msgid "Play audio" msgstr "" -#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1232 +#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1228 msgid "View video" msgstr "" -#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:269 +#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:265 msgid "Download file" msgstr "" -#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:128 +#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:124 msgid "" "Couldn't load the iconv or recode extension needed for charset conversion. " "Either configure PHP to enable these extensions or disable charset " @@ -1688,7 +1688,7 @@ msgstr "" #: libraries/charset_conversion.lib.php:79 #: libraries/charset_conversion.lib.php:90 -#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:130 +#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:126 msgid "" "Couldn't use the iconv, libiconv, or recode_string functions, although the " "necessary extensions appear to be loaded. Check your PHP configuration." @@ -1696,7 +1696,7 @@ msgstr "" "iconv, libiconv, recode_string өргөтгөлүүдийн алийг ч хэрэглэж чадсангүй " "(extension reports-д дуудагдах). Php тохиргоогоо шалга." -#: libraries/common.inc.php:583 libraries/messages.inc.php:170 +#: libraries/common.inc.php:583 libraries/messages.inc.php:166 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!" @@ -1730,22 +1730,22 @@ msgstr "" msgid "Invalid server index: %s" msgstr "Сервэрийн буруу индекс нь: \"%s\"" -#: libraries/common.inc.php:636 libraries/messages.inc.php:448 +#: libraries/common.inc.php:636 libraries/messages.inc.php:444 #, 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/messages.inc.php:856 libraries/select_server.lib.php:41 +#: libraries/messages.inc.php:852 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/messages.inc.php:437 +#: libraries/common.inc.php:823 libraries/messages.inc.php:433 msgid "Invalid authentication method set in configuration:" msgstr "Тохиргоонд сонгогдсон буруу зөвшөөрлийн арга:" -#: libraries/common.lib.php:147 libraries/messages.inc.php:499 +#: libraries/common.lib.php:147 libraries/messages.inc.php:495 #, php-format msgid "Max: %s%s" msgstr "ХИ хэмжээ: %s%s" @@ -1765,7 +1765,7 @@ msgstr "" #: libraries/common.lib.php:428 libraries/common.lib.php:430 #: libraries/common.lib.php:432 libraries/common.lib.php:448 #: libraries/common.lib.php:450 libraries/dbg/setup.php:25 -#: libraries/display_export.lib.php:164 libraries/messages.inc.php:267 +#: libraries/display_export.lib.php:164 libraries/messages.inc.php:263 #: libraries/relation.lib.php:97 libraries/sql_query_form.lib.php:451 #: libraries/sql_query_form.lib.php:454 main.php:229 pdf_pages.php:37 #: pdf_pages.php:43 pdf_pages.php:49 pdf_pages.php:54 @@ -1775,55 +1775,55 @@ msgstr "Баримт" #: libraries/common.lib.php:581 libraries/core.lib.php:234 #: libraries/core.lib.php:263 libraries/import.lib.php:134 -#: libraries/messages.inc.php:297 pdf_schema.php:32 pdf_schema.php:232 +#: libraries/messages.inc.php:293 pdf_schema.php:32 pdf_schema.php:232 #: tbl_change.php:1027 tbl_operations.php:213 tbl_relation.php:290 #: view_operations.php:62 msgid "Error" msgstr "Алдаа" #: libraries/common.lib.php:595 libraries/header_printview.inc.php:61 -#: libraries/messages.inc.php:1023 server_processlist.php:60 +#: libraries/messages.inc.php:1019 server_processlist.php:60 #: server_status.php:247 msgid "SQL query" msgstr "SQL-асуулт" -#: libraries/common.lib.php:634 libraries/messages.inc.php:538 +#: libraries/common.lib.php:634 libraries/messages.inc.php:534 msgid "MySQL said: " msgstr "MySQL хэлэх нь: " -#: libraries/common.lib.php:667 libraries/messages.inc.php:76 +#: libraries/common.lib.php:667 libraries/messages.inc.php:72 #: pdf_schema.php:241 user_password.php:115 msgid "Back" msgstr "Өмнөх" -#: libraries/common.lib.php:1177 libraries/messages.inc.php:309 +#: libraries/common.lib.php:1177 libraries/messages.inc.php:305 #: setup/lib/messages.inc.php:353 msgid "Explain SQL" msgstr "SQL тайлбар" -#: libraries/common.lib.php:1180 libraries/messages.inc.php:551 +#: libraries/common.lib.php:1180 libraries/messages.inc.php:547 msgid "Skip Explain SQL" msgstr "SQL тайлбарлахыг орхих" -#: libraries/common.lib.php:1212 libraries/messages.inc.php:563 +#: libraries/common.lib.php:1212 libraries/messages.inc.php:559 msgid "Without PHP Code" msgstr "PHP-кодгүй" -#: libraries/common.lib.php:1215 libraries/messages.inc.php:649 +#: libraries/common.lib.php:1215 libraries/messages.inc.php:645 #: setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "PHP-код үүсгэх" -#: libraries/common.lib.php:1233 libraries/messages.inc.php:737 +#: libraries/common.lib.php:1233 libraries/messages.inc.php:733 #: server_status.php:341 setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "Да.дуудах" -#: libraries/common.lib.php:1242 libraries/messages.inc.php:575 +#: libraries/common.lib.php:1242 libraries/messages.inc.php:571 msgid "Skip Validate SQL" msgstr "SQL шалгалтыг алгасах" -#: libraries/common.lib.php:1245 libraries/messages.inc.php:1220 +#: libraries/common.lib.php:1245 libraries/messages.inc.php:1216 #: setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "SQL-ийг батлах" @@ -1839,11 +1839,11 @@ msgid "Inline" msgstr "Хөдөлгүүрүүд" #: libraries/common.lib.php:1332 libraries/common.lib.php:1347 -#: libraries/messages.inc.php:713 +#: libraries/messages.inc.php:709 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1351 libraries/messages.inc.php:1108 +#: libraries/common.lib.php:1351 libraries/messages.inc.php:1104 #: libraries/tbl_triggers.lib.php:28 server_processlist.php:58 msgid "Time" msgstr "Цаг" @@ -1877,46 +1877,56 @@ msgstr "PB" msgid "EiB" msgstr "EB" +#. l10n: Thousands separator +#: libraries/common.lib.php:1417 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: libraries/common.lib.php:1419 +msgid "." +msgstr "." + #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1584 +#: libraries/common.lib.php:1596 #: libraries/transformations/text_plain__dateformat.inc.php:28 msgid "%B %d, %Y at %I:%M %p" msgstr "%Y оны %B сарын %d., %H:%M" -#: libraries/common.lib.php:1886 +#: libraries/common.lib.php:1898 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s өдөр, %s цаг, %s минут, %s секунд" -#: libraries/common.lib.php:2301 libraries/common.lib.php:2304 -#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:664 +#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:660 #: server_status.php:608 msgid "Begin" msgstr "Эхлэл" -#: libraries/common.lib.php:2302 libraries/common.lib.php:2305 -#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:665 +#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:661 #: server_binlog.php:168 server_binlog.php:170 msgid "Previous" msgstr "Өмнөх" -#: libraries/common.lib.php:2333 libraries/common.lib.php:2336 -#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:289 +#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:285 msgid "End" msgstr "Төгс" -#: libraries/common.lib.php:2409 libraries/messages.inc.php:455 +#: libraries/common.lib.php:2421 libraries/messages.inc.php:451 #, php-format msgid "Jump to database "%s"." msgstr ""%s" өгөгдлийн сан руу үсрэх." -#: libraries/common.lib.php:2429 libraries/messages.inc.php:461 +#: libraries/common.lib.php:2441 libraries/messages.inc.php:457 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/core.lib.php:286 libraries/dbg/setup.php:22 -#: libraries/messages.inc.php:127 +#: libraries/messages.inc.php:123 #, php-format msgid "" "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " @@ -1924,115 +1934,115 @@ msgid "" msgstr "%s өргөтгөлийг дуудаж чадсангүй,
PHP-ийн тохиргоог үз" #: libraries/db_events.inc.php:20 libraries/db_events.inc.php:22 -#: libraries/export/sql.php:415 libraries/messages.inc.php:306 +#: libraries/export/sql.php:415 libraries/messages.inc.php:302 msgid "Events" msgstr "" #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 -#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:541 +#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:537 #: libraries/tbl_triggers.lib.php:27 setup/frames/index.inc.php:112 msgid "Name" msgstr "Нэр" -#: libraries/db_links.inc.php:45 libraries/messages.inc.php:216 +#: libraries/db_links.inc.php:45 libraries/messages.inc.php:212 #, php-format msgid "Database %s has been dropped." msgstr "%s өгөгдлийн сан устгагдсан." #: libraries/db_links.inc.php:57 libraries/db_links.inc.php:58 -#: libraries/db_links.inc.php:59 libraries/messages.inc.php:234 +#: libraries/db_links.inc.php:59 libraries/messages.inc.php:230 msgid "Database seems to be empty!" msgstr "Өгөгдлийн сан хоосон санагдаж байна!" -#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1025 +#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1021 #: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60 #: querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1152 +#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1148 #: libraries/tbl_links.inc.php:69 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:86 libraries/messages.inc.php:719 +#: libraries/db_links.inc.php:86 libraries/messages.inc.php:715 msgid "Query" msgstr "Асуулт (Query)" -#: libraries/db_links.inc.php:91 libraries/messages.inc.php:253 +#: libraries/db_links.inc.php:91 libraries/messages.inc.php:249 msgid "Designer" msgstr "Дизайнч" -#: libraries/db_links.inc.php:98 libraries/messages.inc.php:397 +#: libraries/db_links.inc.php:98 libraries/messages.inc.php:393 #: libraries/server_links.inc.php:88 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:104 libraries/messages.inc.php:587 +#: libraries/db_links.inc.php:104 libraries/messages.inc.php:583 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" msgstr "Үйлдлүүд" -#: libraries/db_links.inc.php:111 libraries/messages.inc.php:709 +#: libraries/db_links.inc.php:111 libraries/messages.inc.php:705 #: libraries/server_links.inc.php:66 server_privileges.php:72 #: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117 msgid "Privileges" msgstr "Онцгой эрхүүд" #: libraries/db_routines.inc.php:30 libraries/db_routines.inc.php:32 -#: libraries/messages.inc.php:812 +#: libraries/messages.inc.php:808 msgid "Routines" msgstr "" -#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:811 +#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:807 msgid "Return type" msgstr "" #: libraries/db_structure.lib.php:57 libraries/display_tbl.lib.php:1848 -#: libraries/messages.inc.php:65 +#: libraries/messages.inc.php:61 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "May be approximate. See FAQ 3.11" -#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:593 +#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:589 #: server_databases.php:142 tbl_printview.php:336 tbl_structure.php:683 msgid "Overhead" msgstr "Толгой дээр" #: libraries/dbi/mysql.dbi.lib.php:112 libraries/dbi/mysqli.dbi.lib.php:124 -#: libraries/messages.inc.php:176 +#: libraries/messages.inc.php:172 msgid "Connection for controluser as defined in your configuration failed." msgstr "" #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 -#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:855 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:851 msgid "The server is not responding" msgstr "Сервэрээс хариу алга" #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:1010 +#: libraries/messages.inc.php:1006 msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "(эсвэл дотоод MySQL сервэрийн socket нь зөв тохируулагдаагүй)" -#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:255 +#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:251 #: tbl_structure.php:609 msgid "Details..." msgstr "" -#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:143 +#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:139 #: main.php:91 user_password.php:111 user_password.php:129 msgid "Change password" msgstr "Нууц үг солих" -#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:561 +#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:557 #: libraries/replication_gui.lib.php:341 server_privileges.php:768 msgid "No Password" msgstr "Нууц үггүй" -#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:610 +#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:606 #: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60 #: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335 #: libraries/replication_gui.lib.php:345 server_privileges.php:757 @@ -2041,13 +2051,13 @@ msgstr "Нууц үггүй" msgid "Password" msgstr "Нууц үг" -#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:806 +#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:802 #: libraries/replication_gui.lib.php:349 libraries/replication_gui.lib.php:352 #: server_privileges.php:776 server_privileges.php:779 msgid "Re-type" msgstr "Дахин бич" -#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:608 +#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:604 msgid "Password Hashing" msgstr "Нууц үг хувиргах" @@ -2057,89 +2067,89 @@ msgstr "Нууц үг хувиргах" msgid "MySQL 4.0 compatible" msgstr "MySQL 4.0 compatible" -#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:353 +#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:349 #: libraries/replication_gui.lib.php:356 server_privileges.php:783 msgid "Generate Password" msgstr "Нууц үг бий болгох" -#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:352 +#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:348 #: libraries/replication_gui.lib.php:359 server_privileges.php:786 msgid "Generate" msgstr "Бий болгох" #: libraries/display_create_database.lib.php:22 -#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:189 +#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:185 msgid "Create new database" msgstr "Шинэ ӨС үүсгэх" -#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:185 +#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:181 msgid "Create" msgstr "Үүсгэх" -#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:564 +#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:560 #: server_privileges.php:74 server_privileges.php:1388 #: server_replication.php:35 msgid "No Privileges" msgstr "Онцгой эрхгүй" -#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:445 +#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:441 msgid "Table must have at least one field." msgstr "Хүснэгт нь багадаа нэг талбартай байх хэрэгтэй." -#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:190 +#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:186 #, php-format msgid "Create table on database %s" msgstr "%s ӨС-д шинэ хүснэгт үүсгэх" -#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:577 +#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:573 msgid "Number of fields" msgstr "Талбаруудын тоо" -#: libraries/display_export.lib.php:42 libraries/messages.inc.php:124 +#: libraries/display_export.lib.php:42 libraries/messages.inc.php:120 msgid "Could not load export plugins, please check your installation!" msgstr "" -#: libraries/display_export.lib.php:107 libraries/messages.inc.php:277 +#: libraries/display_export.lib.php:107 libraries/messages.inc.php:273 #, php-format msgid "Dump %s row(s) starting at record # %s" msgstr "%s мөрүүдийг, %s-аас эхлэн устгах." -#: libraries/display_export.lib.php:115 libraries/messages.inc.php:274 +#: libraries/display_export.lib.php:115 libraries/messages.inc.php:270 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:125 libraries/messages.inc.php:852 +#: libraries/display_export.lib.php:125 libraries/messages.inc.php:848 #: setup/lib/messages.inc.php:82 msgid "Save as file" msgstr "Илгээх" -#: libraries/display_export.lib.php:134 libraries/messages.inc.php:828 +#: libraries/display_export.lib.php:134 libraries/messages.inc.php:824 #, php-format msgid "Save on server in %s directory" msgstr "Сервэр дээрх хадгалах хавтас %s" -#: libraries/display_export.lib.php:142 libraries/messages.inc.php:594 +#: libraries/display_export.lib.php:142 libraries/messages.inc.php:590 #: setup/lib/messages.inc.php:90 msgid "Overwrite existing file(s)" msgstr "Файл(ууд)-г дарж бичих" -#: libraries/display_export.lib.php:148 libraries/messages.inc.php:330 +#: libraries/display_export.lib.php:148 libraries/messages.inc.php:326 msgid "File name template" msgstr "Файлын нэрийн загвар" -#: libraries/display_export.lib.php:152 libraries/messages.inc.php:327 +#: libraries/display_export.lib.php:152 libraries/messages.inc.php:323 msgid "server name" msgstr "сервэрийн нэр" -#: libraries/display_export.lib.php:155 libraries/messages.inc.php:326 +#: libraries/display_export.lib.php:155 libraries/messages.inc.php:322 msgid "database name" msgstr "өгөгдлийн сангийн нэр" -#: libraries/display_export.lib.php:158 libraries/messages.inc.php:328 +#: libraries/display_export.lib.php:158 libraries/messages.inc.php:324 msgid "table name" msgstr "хүснэгтийн нэр" -#: libraries/display_export.lib.php:162 libraries/messages.inc.php:329 +#: libraries/display_export.lib.php:162 libraries/messages.inc.php:325 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2150,24 +2160,24 @@ msgstr "" "тогтнолын тэмдэгтийг хэрэглэж болно. Нэмэлтээр дараах хувиргалт байх болно: %" "3$s. Бусад бичвэрүүд үүн шиг хадгалагдана." -#: libraries/display_export.lib.php:202 libraries/messages.inc.php:331 +#: libraries/display_export.lib.php:202 libraries/messages.inc.php:327 msgid "remember template" msgstr "загварыг санах" #: libraries/display_export.lib.php:210 libraries/display_import.lib.php:178 -#: libraries/display_import.lib.php:191 libraries/messages.inc.php:145 +#: libraries/display_import.lib.php:191 libraries/messages.inc.php:141 #: libraries/sql_query_form.lib.php:549 msgid "Character set of the file:" msgstr "Файлын кодлол:" -#: libraries/display_export.lib.php:235 libraries/messages.inc.php:166 +#: libraries/display_export.lib.php:235 libraries/messages.inc.php:162 #: setup/lib/messages.inc.php:84 msgid "Compression" 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/messages.inc.php:558 +#: libraries/export/sql.php:868 libraries/messages.inc.php:554 #: libraries/tbl_properties.inc.php:575 server_privileges.php:1836 #: server_processlist.php:75 msgid "None" @@ -2191,66 +2201,66 @@ msgstr "gzip-ээр шахах" msgid "bzipped" msgstr "bzip-ээр шахагдсан" -#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1018 +#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1014 msgid "SQL compatibility mode" msgstr "SQL нийцтэй горим" -#: libraries/display_import.lib.php:67 libraries/messages.inc.php:398 +#: libraries/display_import.lib.php:67 libraries/messages.inc.php:394 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " "browsers." msgstr "" -#: libraries/display_import.lib.php:77 libraries/messages.inc.php:406 +#: libraries/display_import.lib.php:77 libraries/messages.inc.php:402 msgid "The file is being processed, please be patient." msgstr "" -#: libraries/display_import.lib.php:99 libraries/messages.inc.php:408 +#: libraries/display_import.lib.php:99 libraries/messages.inc.php:404 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." msgstr "" -#: libraries/display_import.lib.php:126 libraries/messages.inc.php:333 +#: libraries/display_import.lib.php:126 libraries/messages.inc.php:329 msgid "File to import" msgstr "Оруулах файл" -#: libraries/display_import.lib.php:137 libraries/messages.inc.php:486 +#: libraries/display_import.lib.php:137 libraries/messages.inc.php:482 #: libraries/sql_query_form.lib.php:524 msgid "Location of the text file" msgstr "Бичвэрфайлын байрлал" -#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1203 +#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1199 msgid "File uploads are not allowed on this server." msgstr "" -#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1235 +#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1231 #: libraries/sql_query_form.lib.php:533 tbl_change.php:1028 msgid "The directory you set for upload work cannot be reached" msgstr "Таны сонгосон хавтас \"upload\" хийгдэхгүй байна" -#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1236 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1232 #: libraries/sql_query_form.lib.php:536 tbl_change.php:1031 msgid "web server upload directory" msgstr "web-сервэр түлхэх хавтас" -#: libraries/display_import.lib.php:212 libraries/messages.inc.php:167 +#: libraries/display_import.lib.php:212 libraries/messages.inc.php:163 #, php-format msgid "Imported file compression will be automatically detected from: %s" msgstr "Оруулсан файлын шахалт нь автоматаар илрүүлэгдэх нь: %s" -#: libraries/display_import.lib.php:219 libraries/messages.inc.php:600 +#: libraries/display_import.lib.php:219 libraries/messages.inc.php:596 msgid "Partial import" msgstr "Хэсэгчлэн оруулах" -#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1105 +#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1101 #, php-format msgid "" "Previous import timed out, after resubmitting will continue from position %d." msgstr "" -#: libraries/display_import.lib.php:232 libraries/messages.inc.php:51 +#: libraries/display_import.lib.php:232 libraries/messages.inc.php:47 msgid "" "Allow the interruption of an import in case the script detects it is close " "to the PHP timeout limit. This might be good way to import large files, " @@ -2260,177 +2270,177 @@ msgstr "" "зөвшөөрөх. Магадгүй энэ нь том файлыг оруулахад боломжийн арга боловч, " "хэлэлцээрийг зогсоож чадна." -#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1004 +#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1000 #: setup/lib/messages.inc.php:161 msgid "Number of records (queries) to skip from start" msgstr "" -#: libraries/display_import.lib.php:255 libraries/messages.inc.php:396 +#: libraries/display_import.lib.php:255 libraries/messages.inc.php:392 #: setup/lib/messages.inc.php:160 msgid "Format of imported file" msgstr "Оруулсан файлын тогтнол" #: libraries/display_select_lang.lib.php:45 -#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:465 +#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:461 #: setup/frames/index.inc.php:70 msgid "Language" msgstr "Хэл" -#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:447 +#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:443 #, php-format msgid "%d is not valid row number." msgstr "%d нь мөрийн буруу дугаар байна." -#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:814 +#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:810 msgid "row(s) starting from record #" msgstr "мөрийн эхлэх буй дугаар" -#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:817 +#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:813 msgid "horizontal" msgstr "хөндлөн" -#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:816 +#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:812 msgid "horizontal (rotated headers)" msgstr "хөндлөн (эргүүлэгдсэн толгойнууд)" -#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:819 +#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:815 msgid "vertical" msgstr "босоо" -#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:818 +#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:814 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "Төлөв %s-д ба %s нїдний дараа толгойнуудыг давтах" -#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:495 +#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:491 msgid "This operation could take a long time. Proceed anyway?" msgstr "Энэ үйлдэл удах янзтай. Юутай ч үргэлжлүүлэх үү?" -#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1012 +#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1008 msgid "Sort by key" msgstr "Түлхүүрээр эрэмбэлэх" #: libraries/display_tbl.lib.php:555 libraries/import.lib.php:1082 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:591 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:587 #: tbl_select.php:267 tbl_structure.php:754 msgid "Options" msgstr "Сонголтууд" #: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:570 -#: libraries/messages.inc.php:601 +#: libraries/messages.inc.php:597 msgid "Partial Texts" msgstr "Бичвэрийн зарим хэсэг" #: libraries/display_tbl.lib.php:561 libraries/display_tbl.lib.php:574 -#: libraries/messages.inc.php:346 +#: libraries/messages.inc.php:342 msgid "Full Texts" msgstr "Бүтэн бичвэр" -#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:739 +#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:735 msgid "Relational key" msgstr "" -#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:738 +#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:734 msgid "Relational display field" msgstr "" -#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:872 +#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:868 msgid "Show binary contents" msgstr "" -#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:873 +#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:869 msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:871 +#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:867 msgid "Show binary contents as HEX" msgstr "" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:375 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:371 #: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320 msgid "Hide" msgstr "Нуух" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:508 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:504 #: libraries/tbl_properties.inc.php:144 transformation_overview.php:47 msgid "Browser transformation" msgstr "Хөтчийн өөрчлөл" #: libraries/display_tbl.lib.php:1126 libraries/display_tbl.lib.php:1130 -#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:308 +#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:304 msgid "Execute bookmarked query" msgstr "Тэмдэглэгдсэн асуулт ажиллуулах" #: libraries/display_tbl.lib.php:1145 libraries/display_tbl.lib.php:1157 -#: libraries/messages.inc.php:244 +#: libraries/messages.inc.php:240 msgid "The row has been deleted" msgstr "Мөр устгагдсан" #: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056 -#: libraries/messages.inc.php:460 server_processlist.php:71 +#: libraries/messages.inc.php:456 server_processlist.php:71 #: tbl_row_action.php:64 msgid "Kill" msgstr "Алах" -#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:849 +#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:845 msgid "in query" msgstr "асуултад" -#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:881 +#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:877 msgid "Showing rows" msgstr "Мөрүүдийг харуулж байна " -#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1113 +#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1109 msgid "total" msgstr "Нийт" -#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:727 +#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:723 #: sql.php:524 #, php-format msgid "Query took %01.4f sec" msgstr "Асуулт нь %01.4f сек авлаа" -#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:135 +#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:131 #: 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:471 msgid "Change" msgstr "Солих" -#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:724 +#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:720 msgid "Query results operations" msgstr "Асуудлын үр дүнгийн үйлдэл" -#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:671 +#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:667 msgid "Print view (with full texts)" msgstr "Хэвлэхээр харах (бүх бичвэртэй нь)" -#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:482 +#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:478 msgid "Link not found" msgstr "Холбоос олдсонгүй" -#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1224 +#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1220 #: main.php:228 msgid "Version information" msgstr "Хувилбарын мэдээлэл" -#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:423 +#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:419 msgid "Data home directory" msgstr "Өгөгдлийн үндсэн хавтас" -#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:424 +#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:420 msgid "The common part of the directory path for all InnoDB data files." msgstr "Бүх InnoDB өгөгдлийн файлын хавтсын замын үндсэн хэсэг." -#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:422 +#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:418 msgid "Data files" msgstr "Өгөгдлийн файлууд" -#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:418 +#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:414 msgid "Autoextend increment" msgstr "Авто нэмэгдэлт" -#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:419 +#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:415 msgid "" " The increment size for extending the size of an autoextending tablespace " "when it becomes full." @@ -2438,11 +2448,11 @@ msgstr "" " The increment size for extending the size of an autoextending tablespace " "when it becomes full." -#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:420 +#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:416 msgid "Buffer pool size" msgstr "Буффер pool хэмжээ" -#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:421 +#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:417 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." @@ -2450,87 +2460,87 @@ msgstr "" "Энэ хүснэгтийн кэш өгөгдөл, индекст хэрэглэх InnoDB санах ойн буфферийн " "хэмжээ." -#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:112 +#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:108 msgid "Buffer Pool" msgstr "Буффер Pool" -#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:426 +#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:422 #: server_status.php:306 msgid "InnoDB Status" msgstr "InnoDB байдал" -#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:113 +#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:109 msgid "Buffer Pool Usage" msgstr "Буффер Pool Хэрэглээ" -#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1114 +#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1110 #: server_databases.php:137 server_databases.php:305 server_status.php:414 #: server_status.php:475 server_status.php:496 tbl_printview.php:351 #: tbl_structure.php:697 msgid "Total" msgstr "Нийт" -#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:425 +#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:421 msgid "pages" msgstr "хуудсууд" -#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:343 +#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:339 msgid "Free pages" msgstr "Чөлөөт хуудсууд" -#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:259 +#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:255 msgid "Dirty pages" msgstr "Бохир хуудсууд" -#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:230 +#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:226 msgid "Pages containing data" msgstr "Хуудсуудын агуулсан өгөгдөл" -#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:598 +#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:594 msgid "Pages to be flushed" msgstr "Хуудсууд зайлагдсан" -#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:119 +#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:115 msgid "Busy pages" msgstr "Завгүй хуудсууд" -#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:467 +#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:463 msgid "Latched pages" msgstr "Latched хуудсууд" -#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:111 +#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:107 msgid "Buffer Pool Activity" msgstr "Буффер Pool Идэвхжил" -#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:731 +#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:727 msgid "Read requests" msgstr "Унших гуйлт" -#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1244 +#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1240 msgid "Write requests" msgstr "Бичих гуйлт" -#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:115 +#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:111 msgid "Read misses" msgstr "Уншилт алдагдсан" -#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:117 +#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:113 msgid "Write waits" msgstr "Бичихээр хүлээх" -#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:114 +#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:110 msgid "Read misses in %" msgstr "Уншилт алдсан нь %" -#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:116 +#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:112 msgid "Write waits in %" msgstr "Бичихээр хүлээгдэх нь %" -#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:522 +#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:518 msgid "Data pointer size" msgstr "Өгөгдөл заагчийн хэмжээ" -#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:523 +#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:519 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." @@ -2538,11 +2548,11 @@ msgstr "" "Анхдагч заагчийн хэмжээ байтаар илэрхийлэгдэх ба, CREATE TABLE -ээр MyISAM " "хүснэгтийг MAX_ROWS сонголт тодорхойлогдоогүй үед хэрэглэгдэнэ." -#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:528 +#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:524 msgid "Automatic recovery mode" msgstr "Авто сэргээх горим" -#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:529 +#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:525 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." @@ -2550,11 +2560,11 @@ msgstr "" "Горим нь эвдэрсэн MyISAM хүснэгтийг автоматаар засна, серверийн эхлэлийн --" "myisam-recover сонголтоор." -#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:527 +#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:523 msgid "Maximum size for temporary sort files" msgstr "Завсрын эрэмбэлэх файлын ХИ хэмжээ" -#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:526 +#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:522 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " @@ -2563,11 +2573,11 @@ msgstr "" "Завсрын MySQL файлын ХИ хэмжээ нь MyISAM индексийг да-үүсгэхэд (REPAIR " "TABLE, ALTER TABLE, болон LOAD DATA INFILE -ын үед) хэрэглэгдэнэ." -#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:525 +#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:521 msgid "Maximum size for temporary files on index creation" msgstr "Индекс үүсгэлт дэх завсрын файлын ХИ хэмжээ" -#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:524 +#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:520 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " @@ -2577,11 +2587,11 @@ msgstr "" "тодорхойлогдсон хэмжээгээр key cache хэрэглэх хэрэгтэй, key cache аргыг " "илүүд үзвэл." -#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:531 +#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:527 msgid "Repair threads" msgstr "Thread засах" -#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:530 +#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:526 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." @@ -2589,11 +2599,11 @@ msgstr "" "Хэрэв энэ утга нь 1 -ээс их байвал, эрэмбэлэх процессоор Засах үед MyISAM " "хүснэгтийн индексүүд нь зэрэгцээгээр (индекс бүрт өөрийн процесс) үүсгэгдсэн." -#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:533 +#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:529 msgid "Sort buffer size" msgstr "Буфферийн хэмжээг эрэмбэлэх" -#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:532 +#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:528 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." @@ -2601,72 +2611,72 @@ msgstr "" "REPAIR TABLE -ийн үед MyISAM индексийг эрэмбэлэх эсвэл CREATE INDEX болон " "ALTER TABLE -ээр индекс үүсгэх үед буффер хуваарилагдсан." -#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:620 +#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:616 msgid "Index cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:619 +#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:615 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." msgstr "" -#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:630 +#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:626 msgid "Record cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:629 +#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:625 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " "to the handle data (.xtd) and row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:624 +#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:620 msgid "Log cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:623 +#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:619 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:628 +#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:624 msgid "Log file threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:627 +#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:623 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:634 +#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:630 msgid "Transaction buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:633 +#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:629 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." msgstr "" -#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:611 +#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:607 msgid "Checkpoint frequency" msgstr "" -#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:612 +#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:608 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." msgstr "" -#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:615 +#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:611 msgid "Data log threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:616 +#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:612 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -2674,48 +2684,48 @@ msgid "" "that can be stored in the database." msgstr "" -#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:618 +#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:614 msgid "Garbage threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:617 +#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:613 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." msgstr "" -#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:622 +#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:618 msgid "Log buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:621 +#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:617 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " "required to write a data log." msgstr "" -#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:613 +#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:609 msgid "Data file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:614 +#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:610 msgid "The grow size of the handle data (.xtd) files." msgstr "" -#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:632 +#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:628 msgid "Row file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:631 +#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:627 msgid "The grow size of the row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:626 +#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:622 msgid "Log file count" msgstr "" -#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:625 +#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:621 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -2725,19 +2735,19 @@ msgstr "" #: libraries/export/htmlword.php:132 libraries/export/odt.php:168 #: libraries/export/sql.php:881 libraries/export/texytext.php:130 -#: libraries/messages.inc.php:275 +#: libraries/messages.inc.php:271 msgid "Dumping data for table" msgstr "Хүснэгтийн өгөгдлийг устгах" #: libraries/export/htmlword.php:185 libraries/export/odt.php:238 #: libraries/export/sql.php:785 libraries/export/texytext.php:177 -#: libraries/messages.inc.php:1086 +#: libraries/messages.inc.php:1082 msgid "Table structure for table" msgstr "Хүснэгтийн бүтэц" #: libraries/export/latex.php:125 libraries/export/sql.php:232 #: libraries/export/xml.php:102 libraries/header_printview.inc.php:57 -#: libraries/messages.inc.php:381 libraries/replication_gui.lib.php:63 +#: libraries/messages.inc.php:377 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:170 libraries/replication_gui.lib.php:265 #: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325 #: server_privileges.php:692 server_privileges.php:695 @@ -2749,183 +2759,183 @@ msgstr "Хост" #: libraries/export/latex.php:130 libraries/export/sql.php:233 #: libraries/export/xml.php:107 libraries/header_printview.inc.php:59 -#: libraries/messages.inc.php:354 +#: libraries/messages.inc.php:350 msgid "Generation Time" msgstr "Үүссэн цаг" #: libraries/export/latex.php:131 libraries/export/sql.php:235 -#: libraries/export/xml.php:108 libraries/messages.inc.php:864 main.php:186 +#: libraries/export/xml.php:108 libraries/messages.inc.php:860 main.php:186 msgid "Server version" msgstr "Сервэрийн хувилбар" #: libraries/export/latex.php:132 libraries/export/sql.php:236 -#: libraries/export/xml.php:109 libraries/messages.inc.php:651 +#: libraries/export/xml.php:109 libraries/messages.inc.php:647 msgid "PHP Version" msgstr "PHP хувилбар" #: libraries/export/latex.php:201 libraries/export/sql.php:868 -#: libraries/messages.inc.php:226 server_databases.php:127 +#: libraries/messages.inc.php:222 server_databases.php:127 #: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317 #: tbl_structure.php:666 msgid "Data" msgstr "Өгөгдөл" -#: libraries/export/odt.php:318 libraries/messages.inc.php:506 +#: libraries/export/odt.php:318 libraries/messages.inc.php:502 #: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "MIME-төрөл" -#: libraries/export/sql.php:387 libraries/messages.inc.php:711 +#: libraries/export/sql.php:387 libraries/messages.inc.php:707 msgid "Procedures" msgstr "Процедурүүд" -#: libraries/export/sql.php:401 libraries/messages.inc.php:348 +#: libraries/export/sql.php:401 libraries/messages.inc.php:344 msgid "Functions" msgstr "Функцүүд" -#: libraries/export/sql.php:618 libraries/messages.inc.php:174 +#: libraries/export/sql.php:618 libraries/messages.inc.php:170 msgid "Constraints for dumped tables" msgstr "Асгарсан хүснэгтийг хүчлэх" -#: libraries/export/sql.php:627 libraries/messages.inc.php:175 +#: libraries/export/sql.php:627 libraries/messages.inc.php:171 msgid "Constraints for table" msgstr "Constraints for table" -#: libraries/export/sql.php:727 libraries/messages.inc.php:512 +#: libraries/export/sql.php:727 libraries/messages.inc.php:508 msgid "MIME TYPES FOR TABLE" msgstr "Хүснэгтийн MIME-төрлүүд" -#: libraries/export/sql.php:739 libraries/messages.inc.php:743 +#: libraries/export/sql.php:739 libraries/messages.inc.php:739 msgid "RELATIONS FOR TABLE" msgstr "Хүснэгтийн хамаарал" -#: libraries/export/sql.php:796 libraries/messages.inc.php:1178 +#: libraries/export/sql.php:796 libraries/messages.inc.php:1174 #: libraries/tbl_triggers.lib.php:19 msgid "Triggers" msgstr "" -#: libraries/export/sql.php:808 libraries/messages.inc.php:1046 +#: libraries/export/sql.php:808 libraries/messages.inc.php:1042 msgid "Structure for view" msgstr "Харах бүтэц" -#: libraries/export/sql.php:817 libraries/messages.inc.php:1029 +#: libraries/export/sql.php:817 libraries/messages.inc.php:1025 msgid "Stand-in structure for view" msgstr "" #: libraries/footer.inc.php:184 libraries/footer.inc.php:195 -#: libraries/footer.inc.php:198 libraries/messages.inc.php:586 +#: libraries/footer.inc.php:198 libraries/messages.inc.php:582 msgid "Open new phpMyAdmin window" msgstr "Шинэ phpMyAdmin цонх нээх" -#: libraries/header.inc.php:115 libraries/messages.inc.php:542 +#: libraries/header.inc.php:115 libraries/messages.inc.php:538 msgid "New table" msgstr "" #: libraries/header_printview.inc.php:50 libraries/header_printview.inc.php:55 -#: libraries/messages.inc.php:1024 +#: libraries/messages.inc.php:1020 msgid "SQL result" msgstr "SQL-үр дүн" -#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:350 +#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:346 msgid "Generated by" msgstr "Үүсгэгч" #: libraries/header_printview.inc.php:63 libraries/import.lib.php:145 -#: libraries/messages.inc.php:820 navigation.php:652 navigation.php:674 +#: libraries/messages.inc.php:816 navigation.php:652 navigation.php:674 #: server_databases.php:122 tbl_printview.php:394 tbl_structure.php:366 #: tbl_structure.php:778 msgid "Rows" msgstr "Мөрүүд" -#: libraries/import.lib.php:150 libraries/messages.inc.php:285 sql.php:520 +#: libraries/import.lib.php:150 libraries/messages.inc.php:281 sql.php:520 #: tbl_change.php:181 tbl_get_field.php:35 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL хоосон үр дүн буцаалаа (тэг мөрүүд г.м.)." -#: libraries/import.lib.php:1078 libraries/messages.inc.php:399 +#: libraries/import.lib.php:1078 libraries/messages.inc.php:395 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1079 libraries/messages.inc.php:400 +#: libraries/import.lib.php:1079 libraries/messages.inc.php:396 msgid "View a structure`s contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1080 libraries/messages.inc.php:401 +#: libraries/import.lib.php:1080 libraries/messages.inc.php:397 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1081 libraries/messages.inc.php:402 +#: libraries/import.lib.php:1081 libraries/messages.inc.php:398 msgid "Edit its structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1084 libraries/messages.inc.php:362 +#: libraries/import.lib.php:1084 libraries/messages.inc.php:358 msgid "Go to database" msgstr "" #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:869 +#: libraries/messages.inc.php:865 msgid "settings" msgstr "" -#: libraries/import.lib.php:1106 libraries/messages.inc.php:363 +#: libraries/import.lib.php:1106 libraries/messages.inc.php:359 msgid "Go to table" msgstr "" -#: libraries/import.lib.php:1109 libraries/messages.inc.php:1047 +#: libraries/import.lib.php:1109 libraries/messages.inc.php:1043 msgid "structure" msgstr "" -#: libraries/import.lib.php:1115 libraries/messages.inc.php:364 +#: libraries/import.lib.php:1115 libraries/messages.inc.php:360 msgid "Go to view" msgstr "" #: libraries/import/csv.php:58 libraries/import/csv.php:70 #: libraries/import/csv.php:74 libraries/import/csv.php:78 -#: libraries/messages.inc.php:442 +#: libraries/messages.inc.php:438 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "CSV оруулалтад буруу параметр нь: %s" -#: libraries/import/csv.php:59 libraries/messages.inc.php:323 +#: libraries/import/csv.php:59 libraries/messages.inc.php:319 msgid "Fields terminated by" msgstr "Талбарыг төгсгөсөн" -#: libraries/import/csv.php:71 libraries/messages.inc.php:320 +#: libraries/import/csv.php:71 libraries/messages.inc.php:316 msgid "Fields enclosed by" msgstr "Талбарыг хаасан" -#: libraries/import/csv.php:75 libraries/messages.inc.php:321 +#: libraries/import/csv.php:75 libraries/messages.inc.php:317 msgid "Fields escaped by" msgstr "Талбарыг нээсэн" -#: libraries/import/csv.php:79 libraries/messages.inc.php:481 +#: libraries/import/csv.php:79 libraries/messages.inc.php:477 msgid "Lines terminated by" msgstr "Шугамыг төгсгөгч" -#: libraries/import/csv.php:119 libraries/messages.inc.php:439 +#: libraries/import/csv.php:119 libraries/messages.inc.php:435 #, php-format msgid "Invalid column (%s) specified!" msgstr "Буруу багана (%s) тодорхойлогдсон!" #: libraries/import/csv.php:177 libraries/import/csv.php:424 -#: libraries/messages.inc.php:441 +#: libraries/messages.inc.php:437 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "CSV оруулалтад %d мөрөнд буруу тогтнол байна." -#: libraries/import/csv.php:312 libraries/messages.inc.php:440 +#: libraries/import/csv.php:312 libraries/messages.inc.php:436 #, php-format msgid "Invalid field count in CSV input on line %d." msgstr "CSV оруулалтад %d мөрөнд буруу талбарын тоо байна." -#: libraries/import/ldi.php:55 libraries/messages.inc.php:446 +#: libraries/import/ldi.php:55 libraries/messages.inc.php:442 msgid "This plugin does not support compressed imports!" msgstr "Энэ нэмэлт нь шахагдсан оруулалтыг дэмжихгүй!" #: libraries/import/xml.php:74 libraries/import/xml.php:130 -#: libraries/messages.inc.php:1247 +#: libraries/messages.inc.php:1243 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -2954,323 +2964,313 @@ msgstr "" msgid "ltr" msgstr "ltr" -#. l10n: Thousands separator -#: libraries/messages.inc.php:21 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: libraries/messages.inc.php:23 -msgid "." -msgstr "." - -#: libraries/messages.inc.php:25 server_status.php:461 +#: libraries/messages.inc.php:21 server_status.php:461 msgid "Aborted" msgstr "Таслагдсан" -#: libraries/messages.inc.php:28 main.php:68 +#: libraries/messages.inc.php:24 main.php:68 msgid "Actions" msgstr "" -#: libraries/messages.inc.php:34 libraries/tbl_properties.inc.php:780 +#: libraries/messages.inc.php:30 libraries/tbl_properties.inc.php:780 #: tbl_structure.php:543 #, php-format msgid "Add %s field(s)" msgstr "%s талбар(ууд) нэмэх" -#: libraries/messages.inc.php:35 +#: libraries/messages.inc.php:31 msgid "Add custom comment into header (\\n splits lines)" msgstr "header-т тусгай тайлбар нэмэх (\\n –мөр шилжүүлнэ)" -#: libraries/messages.inc.php:36 +#: libraries/messages.inc.php:32 msgid "Add into comments" msgstr "Тайлбар нэмэх" -#: libraries/messages.inc.php:37 tbl_structure.php:541 +#: libraries/messages.inc.php:33 tbl_structure.php:541 msgid "Add new field" msgstr "Шинэ талбар нэмэх" -#: libraries/messages.inc.php:38 server_privileges.php:1886 +#: libraries/messages.inc.php:34 server_privileges.php:1886 msgid "Add privileges on the following database" msgstr "Дараах өгөгдлийн санд онцгой эрх нэмэх" -#: libraries/messages.inc.php:39 server_privileges.php:1907 +#: libraries/messages.inc.php:35 server_privileges.php:1907 msgid "Add privileges on the following table" msgstr "Дараах хүснэгтэд онцгой эрх нэмэх" -#: libraries/messages.inc.php:40 tbl_select.php:288 +#: libraries/messages.inc.php:36 tbl_select.php:288 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Хайлтын нөхцөл нэмэх(\"where\" хэсгийн бие):" -#: libraries/messages.inc.php:41 tbl_indexes.php:251 +#: libraries/messages.inc.php:37 tbl_indexes.php:251 #, php-format msgid "Add to index  %s column(s)" msgstr "Индекст нэмэх %s багана(ууд)" -#: libraries/messages.inc.php:42 server_privileges.php:1570 +#: libraries/messages.inc.php:38 server_privileges.php:1570 #: server_privileges.php:1594 server_privileges.php:1988 #: server_privileges.php:2177 msgid "Add a new User" msgstr "Шинэ хэрэглэгч нэмэх" -#: libraries/messages.inc.php:43 server_privileges.php:931 +#: libraries/messages.inc.php:39 server_privileges.php:931 msgid "You have added a new user." msgstr "Шинэ хэрэглэгч нэмэгдлээ." -#: libraries/messages.inc.php:44 server_privileges.php:571 +#: libraries/messages.inc.php:40 server_privileges.php:571 msgid "Administration" msgstr "Зохион байгуулалт" -#: libraries/messages.inc.php:45 tbl_structure.php:557 +#: libraries/messages.inc.php:41 tbl_structure.php:557 #, php-format msgid "After %s" msgstr "%s-ы дараа" -#: libraries/messages.inc.php:46 tbl_change.php:1147 +#: libraries/messages.inc.php:42 tbl_change.php:1147 msgid "Go back to previous page" msgstr "Буцах" -#: libraries/messages.inc.php:47 tbl_change.php:1148 +#: libraries/messages.inc.php:43 tbl_change.php:1148 msgid "Insert another new row" msgstr "Өөр шинэ мөр оруулах" -#: libraries/messages.inc.php:48 tbl_change.php:1160 +#: libraries/messages.inc.php:44 tbl_change.php:1160 msgid "Edit next row" msgstr "Дараагийн мөрийг засах" -#: libraries/messages.inc.php:49 tbl_change.php:1152 +#: libraries/messages.inc.php:45 tbl_change.php:1152 msgid "Go back to this page" msgstr "Энэ хуудас руу буцах" -#: libraries/messages.inc.php:50 querywindow.php:115 +#: libraries/messages.inc.php:46 querywindow.php:115 msgid "All" msgstr "Бүх" -#: libraries/messages.inc.php:53 tbl_operations.php:249 +#: libraries/messages.inc.php:49 tbl_operations.php:249 msgid "Alter table order by" msgstr "Хүснэгтийг эрэмбэлэлтээр өөрчлөх" -#: libraries/messages.inc.php:54 tbl_operations.php:660 +#: libraries/messages.inc.php:50 tbl_operations.php:660 msgid "Analyze" msgstr "" -#: libraries/messages.inc.php:57 +#: libraries/messages.inc.php:53 msgid "and" msgstr "" -#: libraries/messages.inc.php:59 pmd_general.php:87 +#: libraries/messages.inc.php:55 pmd_general.php:87 msgid "Angular links" msgstr "Шууд бус холбоос" -#: libraries/messages.inc.php:60 tbl_structure.php:401 tbl_structure.php:415 +#: libraries/messages.inc.php:56 tbl_structure.php:401 tbl_structure.php:415 #: tbl_structure.php:429 #, php-format msgid "An index has been added on %s" msgstr "%s-д индекс нэмэгдсэн байна" -#: libraries/messages.inc.php:61 server_privileges.php:1521 +#: libraries/messages.inc.php:57 server_privileges.php:1521 #: server_privileges.php:2123 msgid "Any" msgstr "Дурын" -#: libraries/messages.inc.php:62 libraries/replication_gui.lib.php:298 +#: libraries/messages.inc.php:58 libraries/replication_gui.lib.php:298 #: server_privileges.php:725 msgid "Any host" msgstr "Дурын хост" -#: libraries/messages.inc.php:63 libraries/replication_gui.lib.php:250 +#: libraries/messages.inc.php:59 libraries/replication_gui.lib.php:250 #: server_privileges.php:677 msgid "Any user" msgstr "Дурын хэрэглэгч" -#: libraries/messages.inc.php:64 server_synchronize.php:449 +#: libraries/messages.inc.php:60 server_synchronize.php:449 #: server_synchronize.php:894 msgid "Apply Selected Changes" msgstr "" -#: libraries/messages.inc.php:66 tbl_structure.php:386 +#: libraries/messages.inc.php:62 tbl_structure.php:386 #, php-format msgid "A primary key has been added on %s" msgstr "%s-д үндсэн түлхүүр нэмэгдлээ" -#: libraries/messages.inc.php:67 libraries/mysql_charsets.lib.php:368 +#: libraries/messages.inc.php:63 libraries/mysql_charsets.lib.php:368 msgid "Arabic" msgstr "Араб" -#: libraries/messages.inc.php:68 libraries/mysql_charsets.lib.php:359 +#: libraries/messages.inc.php:64 libraries/mysql_charsets.lib.php:359 msgid "Armenian" msgstr "Армян" -#: libraries/messages.inc.php:70 libraries/tbl_properties.inc.php:394 +#: libraries/messages.inc.php:66 libraries/tbl_properties.inc.php:394 msgid "As defined:" msgstr "" -#: libraries/messages.inc.php:71 tbl_structure.php:556 +#: libraries/messages.inc.php:67 tbl_structure.php:556 msgid "At Beginning of Table" msgstr "Хүснэгтийн эхэнд" -#: libraries/messages.inc.php:72 tbl_structure.php:555 +#: libraries/messages.inc.php:68 tbl_structure.php:555 msgid "At End of Table" msgstr "Хүснэгтийн төгсгөлд" -#: libraries/messages.inc.php:73 libraries/tbl_properties.inc.php:108 +#: libraries/messages.inc.php:69 libraries/tbl_properties.inc.php:108 #: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:144 #: tbl_structure.php:180 msgid "Attributes" msgstr "Атрибутууд" -#: libraries/messages.inc.php:74 pdf_pages.php:303 pdf_pages.php:306 +#: libraries/messages.inc.php:70 pdf_pages.php:303 pdf_pages.php:306 msgid "Automatic layout" msgstr "Автомат байрлал" -#: libraries/messages.inc.php:77 libraries/mysql_charsets.lib.php:354 +#: libraries/messages.inc.php:73 libraries/mysql_charsets.lib.php:354 msgid "Baltic" msgstr "Балти" -#: libraries/messages.inc.php:78 libraries/sqlparser.lib.php:175 +#: libraries/messages.inc.php:74 libraries/sqlparser.lib.php:175 msgid "BEGIN CUT" msgstr "BEGIN CUT" -#: libraries/messages.inc.php:79 libraries/sqlparser.lib.php:179 +#: libraries/messages.inc.php:75 libraries/sqlparser.lib.php:179 msgid "BEGIN RAW" msgstr "BEGIN RAW" -#: libraries/messages.inc.php:80 libraries/mysql_charsets.lib.php:201 +#: libraries/messages.inc.php:76 libraries/mysql_charsets.lib.php:201 #: libraries/mysql_charsets.lib.php:402 tbl_change.php:518 msgid "Binary" msgstr " Хоёртын " -#: libraries/messages.inc.php:81 tbl_change.php:894 +#: libraries/messages.inc.php:77 tbl_change.php:894 msgid "Binary - do not edit" msgstr " Хоёртын өгөгдөл - засагдахгүй " -#: libraries/messages.inc.php:82 libraries/server_links.inc.php:76 +#: libraries/messages.inc.php:78 libraries/server_links.inc.php:76 #: server_binlog.php:110 server_status.php:253 test/theme.php:121 msgid "Binary log" msgstr "Хоёртын log" -#: libraries/messages.inc.php:83 server_binlog.php:217 +#: libraries/messages.inc.php:79 server_binlog.php:217 msgid "Event type" msgstr "Хэрэг явдлын төрөл" -#: libraries/messages.inc.php:84 server_binlog.php:220 +#: libraries/messages.inc.php:80 server_binlog.php:220 msgid "Information" msgstr "Мэдээлэл" -#: libraries/messages.inc.php:85 server_binlog.php:215 +#: libraries/messages.inc.php:81 server_binlog.php:215 msgid "Log name" msgstr "Log нэр" -#: libraries/messages.inc.php:86 server_binlog.php:219 +#: libraries/messages.inc.php:82 server_binlog.php:219 msgid "Original position" msgstr "Жинхэнэ байрлал" -#: libraries/messages.inc.php:87 server_binlog.php:216 +#: libraries/messages.inc.php:83 server_binlog.php:216 msgid "Position" msgstr "Байрлал" -#: libraries/messages.inc.php:88 libraries/replication_gui.lib.php:169 +#: libraries/messages.inc.php:84 libraries/replication_gui.lib.php:169 #: server_binlog.php:218 msgid "Server ID" msgstr "Server ID" -#: libraries/messages.inc.php:92 +#: libraries/messages.inc.php:88 msgctxt "$strBLOBRepositoryDisabled" msgid "Disabled" msgstr "" -#: libraries/messages.inc.php:95 +#: libraries/messages.inc.php:91 msgctxt "$strBLOBRepositoryEnabled" msgid "Enabled" msgstr "" -#: libraries/messages.inc.php:97 tbl_change.php:888 +#: libraries/messages.inc.php:93 tbl_change.php:888 msgid "Remove BLOB Repository Reference" msgstr "" -#: libraries/messages.inc.php:98 +#: libraries/messages.inc.php:94 msgctxt "$strBLOBRepositoryRepair" msgid "Repair" msgstr "" -#: libraries/messages.inc.php:99 tbl_change.php:987 +#: libraries/messages.inc.php:95 tbl_change.php:987 msgid "Upload to BLOB repository" msgstr "" -#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:359 +#: libraries/messages.inc.php:96 libraries/sql_query_form.lib.php:359 #: sql.php:677 msgid "Let every user access this bookmark" msgstr "Энэ тэмдэглэгээг бүх хэрэглэгчид хандахыг зөвшөөрөх" -#: libraries/messages.inc.php:103 sql.php:671 +#: libraries/messages.inc.php:99 sql.php:671 msgid "Label" msgstr "Хаяг" -#: libraries/messages.inc.php:104 libraries/sql_query_form.lib.php:433 +#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:433 msgid "Bookmarked SQL query" msgstr "Тэмдэглэгдсэн SQL-асуулт" -#: libraries/messages.inc.php:105 libraries/sql_query_form.lib.php:365 +#: libraries/messages.inc.php:101 libraries/sql_query_form.lib.php:365 msgid "Replace existing bookmark of same name" msgstr "Өмнөх адил нэртэй тэмдэглэлийг солих" -#: libraries/messages.inc.php:106 libraries/sql_query_form.lib.php:352 +#: libraries/messages.inc.php:102 libraries/sql_query_form.lib.php:352 #: sql.php:665 sql.php:666 sql.php:683 msgid "Bookmark this SQL query" msgstr "Энэ SQL-асуулт-ыг тэмдэглэх" -#: libraries/messages.inc.php:107 libraries/sql_query_form.lib.php:466 +#: libraries/messages.inc.php:103 libraries/sql_query_form.lib.php:466 msgid "View only" msgstr "Зөвхөн харах" -#: libraries/messages.inc.php:109 tbl_structure.php:161 +#: libraries/messages.inc.php:105 tbl_structure.php:161 msgid "Browse distinct values" msgstr "Онцгой утгуудыг харах" -#: libraries/messages.inc.php:110 tbl_change.php:252 tbl_select.php:27 +#: libraries/messages.inc.php:106 tbl_change.php:252 tbl_select.php:27 #: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34 msgid "Browse foreign values" msgstr "Browse foreign values" -#: libraries/messages.inc.php:118 libraries/mysql_charsets.lib.php:213 +#: libraries/messages.inc.php:114 libraries/mysql_charsets.lib.php:213 msgid "Bulgarian" msgstr "Болгар" -#: libraries/messages.inc.php:120 +#: libraries/messages.inc.php:116 msgid "\"bzipped\"" msgstr "bzip-ээр шахагдсан" -#: libraries/messages.inc.php:122 +#: libraries/messages.inc.php:118 msgid "Calendar" msgstr "Цагалбар" -#: libraries/messages.inc.php:129 tbl_indexes.php:75 +#: libraries/messages.inc.php:125 tbl_indexes.php:75 msgid "Can't rename index to PRIMARY!" msgstr "Индексийг PRIMARY болгож чадсангүй!" -#: libraries/messages.inc.php:132 libraries/mysql_charsets.lib.php:223 +#: libraries/messages.inc.php:128 libraries/mysql_charsets.lib.php:223 #: libraries/mysql_charsets.lib.php:409 msgid "case-insensitive" msgstr "Том жижиг хамаагүй" -#: libraries/messages.inc.php:133 libraries/mysql_charsets.lib.php:226 +#: libraries/messages.inc.php:129 libraries/mysql_charsets.lib.php:226 #: libraries/mysql_charsets.lib.php:411 msgid "case-sensitive" msgstr "Том жижиг хамаатай " -#: libraries/messages.inc.php:134 libraries/mysql_charsets.lib.php:332 +#: libraries/messages.inc.php:130 libraries/mysql_charsets.lib.php:332 msgid "Central European" msgstr "Төв-Европ" -#: libraries/messages.inc.php:136 server_privileges.php:1969 +#: libraries/messages.inc.php:132 server_privileges.php:1969 msgid "... keep the old one." msgstr "... хуучныг үлдээх." -#: libraries/messages.inc.php:137 server_privileges.php:1967 +#: libraries/messages.inc.php:133 server_privileges.php:1967 msgid "Create a new user with the same privileges and ..." msgstr "Адил онцгой эрхтэй хэрэглэгч үүсгэх ба ..." -#: libraries/messages.inc.php:138 server_privileges.php:1972 +#: libraries/messages.inc.php:134 server_privileges.php:1972 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -3278,274 +3278,274 @@ msgstr "" " ... хэрэглэгчийн хүснэгтүүдээс нэгийг устгаад дараа нь онцгой эрхийг дахин " "дууд." -#: libraries/messages.inc.php:139 server_privileges.php:1970 +#: libraries/messages.inc.php:135 server_privileges.php:1970 msgid " ... delete the old one from the user tables." msgstr " ... хэрэглэгчийн хүснэгтүүдээс устгах." -#: libraries/messages.inc.php:140 server_privileges.php:1971 +#: libraries/messages.inc.php:136 server_privileges.php:1971 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr " ... хуучнаас бүх онцгой эрхийг хүчингүй болгоод дараа нь устга." -#: libraries/messages.inc.php:141 server_privileges.php:1964 +#: libraries/messages.inc.php:137 server_privileges.php:1964 msgid "Change Login Information / Copy User" msgstr "Нэвтрэх мэдээллийг солих/ Хэрэглэгч хуулах" -#: libraries/messages.inc.php:144 libraries/mysql_charsets.lib.php:107 +#: libraries/messages.inc.php:140 libraries/mysql_charsets.lib.php:107 msgid "Charset" msgstr "Кодлол" -#: libraries/messages.inc.php:146 server_collations.php:40 +#: libraries/messages.inc.php:142 server_collations.php:40 msgid "Character Sets and Collations" msgstr "Кодлол ба жишилт" -#: libraries/messages.inc.php:147 libraries/server_links.inc.php:57 +#: libraries/messages.inc.php:143 libraries/server_links.inc.php:57 #: test/theme.php:109 msgid "Charsets" msgstr "Кодлолууд" -#: libraries/messages.inc.php:149 tbl_operations.php:661 +#: libraries/messages.inc.php:145 tbl_operations.php:661 msgid "Check" msgstr "" -#: libraries/messages.inc.php:151 server_databases.php:293 +#: libraries/messages.inc.php:147 server_databases.php:293 #: server_databases.php:294 msgid "Check Privileges" msgstr "Онцгой эрх шалгах" -#: libraries/messages.inc.php:152 server_databases.php:289 +#: libraries/messages.inc.php:148 server_databases.php:289 #, php-format msgid "Check privileges for database "%s"." msgstr ""%s" өгөгдлийн сангийн онцгой эрх шалгах." -#: libraries/messages.inc.php:154 pdf_pages.php:261 +#: libraries/messages.inc.php:150 pdf_pages.php:261 msgid "Please choose a page to edit" msgstr "Засах Хуудсаа сонго" -#: libraries/messages.inc.php:157 +#: libraries/messages.inc.php:153 msgid "Displaying Column Comments" msgstr "Баганын тайлбарыг харуулж байна" -#: libraries/messages.inc.php:159 pdf_pages.php:483 view_create.php:148 +#: libraries/messages.inc.php:155 pdf_pages.php:483 view_create.php:148 msgid "Column names" msgstr "Баганын нэрс" -#: libraries/messages.inc.php:160 server_privileges.php:1685 +#: libraries/messages.inc.php:156 server_privileges.php:1685 msgid "Column-specific privileges" msgstr "Онцгой эрх, баганын эрх" -#: libraries/messages.inc.php:164 +#: libraries/messages.inc.php:160 msgid "MySQL 4.0 compatible" msgstr "MySQL 4.0 compatible" -#: libraries/messages.inc.php:165 +#: libraries/messages.inc.php:161 msgid "Complete inserts" msgstr "Оруулалтыг дуусгах" -#: libraries/messages.inc.php:168 +#: libraries/messages.inc.php:164 #, php-format msgid "Could not load default configuration from: \"%1$s\"" msgstr "Анхдагч тохиргоо дуудагдсангүй нь: \"%1$s\"" -#: libraries/messages.inc.php:169 main.php:306 +#: libraries/messages.inc.php:165 main.php:306 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: libraries/messages.inc.php:171 pdf_schema.php:672 +#: libraries/messages.inc.php:167 pdf_schema.php:672 #, php-format msgid "Please configure the coordinates for table %s" msgstr "%s хүснэгтийн координатыг тохируулна уу" -#: libraries/messages.inc.php:173 server_status.php:433 +#: libraries/messages.inc.php:169 server_status.php:433 msgid "Connections" msgstr "Холболт" -#: libraries/messages.inc.php:179 tbl_operations.php:509 +#: libraries/messages.inc.php:175 tbl_operations.php:509 msgid "Copy table to (database.table):" msgstr "Хүснэгт хуулах(өгөгдлийн сан.хүснэгт):" -#: libraries/messages.inc.php:180 tbl_move_copy.php:58 +#: libraries/messages.inc.php:176 tbl_move_copy.php:58 #, php-format msgid "Table %s has been copied to %s." msgstr "%s хүснэгт %s руу хуулагдлаа." -#: libraries/messages.inc.php:181 tbl_move_copy.php:48 +#: libraries/messages.inc.php:177 tbl_move_copy.php:48 msgid "Can't copy table to same one!" msgstr " Адил нэртэй хүснэгт рүү хуулж чадсангүй!" -#: libraries/messages.inc.php:182 server_synchronize.php:94 +#: libraries/messages.inc.php:178 server_synchronize.php:94 msgid "Could not connect to the source" msgstr "" -#: libraries/messages.inc.php:183 server_synchronize.php:97 +#: libraries/messages.inc.php:179 server_synchronize.php:97 msgid "Could not connect to the target" msgstr "" -#: libraries/messages.inc.php:184 server_processlist.php:24 +#: libraries/messages.inc.php:180 server_processlist.php:24 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" "phpMyAdmin нь thread %s-ийг хааж чадсангүй. Энэ аль хэдийн хаагдсан байна." -#: libraries/messages.inc.php:187 +#: libraries/messages.inc.php:183 #, php-format msgid "Create an index on %s columns" msgstr " %s багануудад индекс үүсгэх" -#: libraries/messages.inc.php:188 tbl_indexes.php:160 +#: libraries/messages.inc.php:184 tbl_indexes.php:160 msgid "Create a new index" msgstr "Шинэ индекс үүсгэх" -#: libraries/messages.inc.php:191 pdf_pages.php:297 pmd_pdf.php:114 +#: libraries/messages.inc.php:187 pdf_pages.php:297 pmd_pdf.php:114 msgid "Create a page" msgstr "Шинэ хуудас үүсгэх" -#: libraries/messages.inc.php:192 +#: libraries/messages.inc.php:188 msgid "Creation of PDFs" msgstr "PDF-схемийн үүсгэлт" -#: libraries/messages.inc.php:193 pmd_general.php:74 pmd_general.php:306 +#: libraries/messages.inc.php:189 pmd_general.php:74 pmd_general.php:306 msgid "Create relation" msgstr "Холбоо үүсгэх" -#: libraries/messages.inc.php:194 pmd_general.php:71 +#: libraries/messages.inc.php:190 pmd_general.php:71 #: server_synchronize.php:429 server_synchronize.php:872 msgid "Create table" msgstr "Хүснэгт үүсгэх" -#: libraries/messages.inc.php:195 +#: libraries/messages.inc.php:191 msgctxt "$strCreateTableShort" msgid "Create table" msgstr "" -#: libraries/messages.inc.php:196 server_privileges.php:1994 +#: libraries/messages.inc.php:192 server_privileges.php:1994 msgid "Database for user" msgstr "Хэрэглэгчийн өгөгдлийн сан" -#: libraries/messages.inc.php:197 server_privileges.php:1999 +#: libraries/messages.inc.php:193 server_privileges.php:1999 msgid "Create database with same name and grant all privileges" msgstr "" -#: libraries/messages.inc.php:198 +#: libraries/messages.inc.php:194 msgctxt "$strCreateUserDatabaseNone" msgid "None" msgstr "" -#: libraries/messages.inc.php:199 server_privileges.php:2003 +#: libraries/messages.inc.php:195 server_privileges.php:2003 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: libraries/messages.inc.php:200 server_privileges.php:2000 +#: libraries/messages.inc.php:196 server_privileges.php:2000 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: libraries/messages.inc.php:201 +#: libraries/messages.inc.php:197 msgid "Creation/Update/Check dates" msgstr "Үүсгэлт/Шинэчлэлт/Огноо шалгах" -#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:229 +#: libraries/messages.inc.php:199 libraries/mysql_charsets.lib.php:229 msgid "Croatian" msgstr "Хорват" -#: libraries/messages.inc.php:204 +#: libraries/messages.inc.php:200 msgid "CSV" msgstr "CSV" -#: libraries/messages.inc.php:205 libraries/server_synchronize.lib.php:1343 +#: libraries/messages.inc.php:201 libraries/server_synchronize.lib.php:1343 #: libraries/server_synchronize.lib.php:1369 msgid "Current server" msgstr "" -#: libraries/messages.inc.php:206 main.php:159 +#: libraries/messages.inc.php:202 main.php:159 msgid "Custom color" msgstr "" -#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:365 +#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:365 msgid "Cyrillic" msgstr "Кирилл" -#: libraries/messages.inc.php:208 libraries/mysql_charsets.lib.php:232 +#: libraries/messages.inc.php:204 libraries/mysql_charsets.lib.php:232 msgid "Czech" msgstr "Чех" -#: libraries/messages.inc.php:209 libraries/mysql_charsets.lib.php:383 +#: libraries/messages.inc.php:205 libraries/mysql_charsets.lib.php:383 msgid "Czech-Slovak" msgstr "Чехословак" -#: libraries/messages.inc.php:211 libraries/mysql_charsets.lib.php:235 +#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:235 msgid "Danish" msgstr "Дани" -#: libraries/messages.inc.php:214 +#: libraries/messages.inc.php:210 msgid "Database export options" msgstr "ӨС гаргах сонголтууд" -#: libraries/messages.inc.php:217 server_synchronize.php:122 +#: libraries/messages.inc.php:213 server_synchronize.php:122 #: server_synchronize.php:125 tbl_create.php:82 tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "" -#: libraries/messages.inc.php:219 server_databases.php:63 +#: libraries/messages.inc.php:215 server_databases.php:63 #, php-format msgid "%s databases have been dropped successfully." msgstr "%s ӨС амжилттай устгагдлаа." -#: libraries/messages.inc.php:220 libraries/server_synchronize.lib.php:1341 +#: libraries/messages.inc.php:216 libraries/server_synchronize.lib.php:1341 #: server_synchronize.php:1110 msgid "Source database" msgstr "" -#: libraries/messages.inc.php:221 server_databases.php:88 +#: libraries/messages.inc.php:217 server_databases.php:88 msgid "Databases statistics" msgstr "Өгөгдлийн сангийн статистик" -#: libraries/messages.inc.php:222 server_databases.php:362 +#: libraries/messages.inc.php:218 server_databases.php:362 #: server_databases.php:363 msgid "Disable Statistics" msgstr "Хаалттай статистик" -#: libraries/messages.inc.php:223 server_databases.php:358 +#: libraries/messages.inc.php:219 server_databases.php:358 #: server_databases.php:359 msgid "Enable Statistics" msgstr "Нээлттэй статистик" -#: libraries/messages.inc.php:224 server_databases.php:366 +#: libraries/messages.inc.php:220 server_databases.php:366 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." msgstr "" "Тэмдэглэл: Вэб сервэр, MySQL-ийн хоорондох өгөгдөл дамжуулах статистик." -#: libraries/messages.inc.php:225 libraries/server_synchronize.lib.php:1367 +#: libraries/messages.inc.php:221 libraries/server_synchronize.lib.php:1367 #: server_synchronize.php:1112 msgid "Target database" msgstr "" -#: libraries/messages.inc.php:228 server_synchronize.php:425 +#: libraries/messages.inc.php:224 server_synchronize.php:425 #: server_synchronize.php:868 msgid "Data Difference" msgstr "" -#: libraries/messages.inc.php:231 server_synchronize.php:272 +#: libraries/messages.inc.php:227 server_synchronize.php:272 msgid "Data Synchronization" msgstr "" -#: libraries/messages.inc.php:235 server_privileges.php:526 +#: libraries/messages.inc.php:231 server_privileges.php:526 #: server_privileges.php:1679 msgid "Database-specific privileges" msgstr " Онцгой эрх, өгөгдлийн сангийн эрх" -#: libraries/messages.inc.php:237 server_privileges.php:2136 +#: libraries/messages.inc.php:233 server_privileges.php:2136 msgid "database-specific" msgstr "Өгөгдлийн сангийн эрх" -#: libraries/messages.inc.php:240 libraries/tbl_properties.inc.php:106 +#: libraries/messages.inc.php:236 libraries/tbl_properties.inc.php:106 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" @@ -3553,32 +3553,32 @@ msgstr "" "Анхдагч утгаар энэ тогтнолыг ашиглан ташуу зураас, хашилтгүй ганц утга " "оруулна уу: a" -#: libraries/messages.inc.php:241 tbl_operations.php:589 +#: libraries/messages.inc.php:237 tbl_operations.php:589 msgid "Defragment table" msgstr "Хүснэгт янзлах" -#: libraries/messages.inc.php:242 +#: libraries/messages.inc.php:238 msgid "Use delayed inserts" msgstr "Давталттай оруулалт хэрэглэх" -#: libraries/messages.inc.php:245 server_privileges.php:1243 +#: libraries/messages.inc.php:241 server_privileges.php:1243 msgid "No users selected for deleting!" msgstr "Устгахаар хэрэглэгч сонгогдсонгүй!" -#: libraries/messages.inc.php:246 pmd_general.php:372 +#: libraries/messages.inc.php:242 pmd_general.php:372 msgid "Delete relation" msgstr "Холбоог устгах" -#: libraries/messages.inc.php:248 server_privileges.php:1232 +#: libraries/messages.inc.php:244 server_privileges.php:1232 #, php-format msgid "Deleting %s" msgstr "%s-г устгаж байна" -#: libraries/messages.inc.php:249 libraries/sql_query_form.lib.php:388 +#: libraries/messages.inc.php:245 libraries/sql_query_form.lib.php:388 msgid "Delimiter" msgstr "Зааглагч" -#: libraries/messages.inc.php:250 pdf_pages.php:506 +#: libraries/messages.inc.php:246 pdf_pages.php:506 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -3586,149 +3586,149 @@ msgstr "" "Хүснэгтийн лавлахтай хуудас нь удаан оршихгүй, Та эдгээр лавлахуудыг устгах " "уу?" -#: libraries/messages.inc.php:254 pmd_help.php:29 +#: libraries/messages.inc.php:250 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." msgstr "" -#: libraries/messages.inc.php:256 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:252 libraries/mysql_charsets.lib.php:247 msgid "dictionary" msgstr "толь" -#: libraries/messages.inc.php:257 libraries/server_synchronize.lib.php:1348 +#: libraries/messages.inc.php:253 libraries/server_synchronize.lib.php:1348 msgid "Difference" msgstr "" -#: libraries/messages.inc.php:258 pmd_general.php:87 +#: libraries/messages.inc.php:254 pmd_general.php:87 msgid "Direct links" msgstr "Шууд холбоос" -#: libraries/messages.inc.php:261 +#: libraries/messages.inc.php:257 msgid "Disable foreign key checks" msgstr "Гадаад түлхүүр шалгалтыг хаах" -#: libraries/messages.inc.php:262 +#: libraries/messages.inc.php:258 msgid "Display Features" msgstr "Онцлог харуулах" -#: libraries/messages.inc.php:263 tbl_select.php:301 +#: libraries/messages.inc.php:259 tbl_select.php:301 msgid "Display order:" msgstr "Харуулах эрэмбэ:" -#: libraries/messages.inc.php:265 tbl_select.php:132 +#: libraries/messages.inc.php:261 tbl_select.php:132 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "\"жишээ асуулт\" хийх (тэмдэгт: \"%\")" -#: libraries/messages.inc.php:266 +#: libraries/messages.inc.php:262 msgid "DocSQL" msgstr "DocSQL" -#: libraries/messages.inc.php:268 +#: libraries/messages.inc.php:264 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/messages.inc.php:273 server_privileges.php:1579 +#: libraries/messages.inc.php:269 server_privileges.php:1579 #: server_privileges.php:1580 server_privileges.php:1581 msgid "Drop the databases that have the same names as the users." msgstr "Хэрэглэгчтэй адил нэртэй өгөгдлийн санг устгах." -#: libraries/messages.inc.php:278 tbl_printview.php:382 tbl_structure.php:743 +#: libraries/messages.inc.php:274 tbl_printview.php:382 tbl_structure.php:743 msgid "dynamic" msgstr "динамик" -#: libraries/messages.inc.php:282 server_privileges.php:1324 +#: libraries/messages.inc.php:278 server_privileges.php:1324 #: server_privileges.php:1610 msgid "Edit Privileges" msgstr "Онцгой эрхүүдийг засах" -#: libraries/messages.inc.php:283 tbl_printview.php:341 tbl_structure.php:688 +#: libraries/messages.inc.php:279 tbl_printview.php:341 tbl_structure.php:688 msgid "Effective" msgstr "Эффекттэй" -#: libraries/messages.inc.php:286 libraries/relation.lib.php:100 +#: libraries/messages.inc.php:282 libraries/relation.lib.php:100 msgid "Enabled" msgstr "Нээлттэй" -#: libraries/messages.inc.php:287 +#: libraries/messages.inc.php:283 msgid "Enclose export in a transaction" msgstr "Хэлэлцээр дэх гаргалтыг хаах" -#: libraries/messages.inc.php:288 libraries/sqlparser.lib.php:177 +#: libraries/messages.inc.php:284 libraries/sqlparser.lib.php:177 msgid "END CUT" msgstr "END CUT" -#: libraries/messages.inc.php:290 libraries/sqlparser.lib.php:183 +#: libraries/messages.inc.php:286 libraries/sqlparser.lib.php:183 msgid "END RAW" msgstr "END RAW" -#: libraries/messages.inc.php:293 libraries/server_links.inc.php:61 +#: libraries/messages.inc.php:289 libraries/server_links.inc.php:61 #: test/theme.php:113 msgid "Engines" msgstr "Хөдөлгүүрүүд" -#: libraries/messages.inc.php:295 libraries/mysql_charsets.lib.php:238 +#: libraries/messages.inc.php:291 libraries/mysql_charsets.lib.php:238 msgid "English" msgstr "Англи" -#: libraries/messages.inc.php:296 server_privileges.php:393 +#: libraries/messages.inc.php:292 server_privileges.php:393 #: server_privileges.php:535 server_privileges.php:1501 msgid " Note: MySQL privilege names are expressed in English " msgstr " Тэмдэглэл: MySQL онцгой эрхийн нэр нь англиар илэрхийлэгдсэн " -#: libraries/messages.inc.php:298 libraries/zip_extension.lib.php:49 +#: libraries/messages.inc.php:294 libraries/zip_extension.lib.php:49 #: libraries/zip_extension.lib.php:51 libraries/zip_extension.lib.php:66 msgid "Error in ZIP archive:" msgstr "ZIP архивт байгаа алдаа:" -#: libraries/messages.inc.php:303 libraries/mysql_charsets.lib.php:241 +#: libraries/messages.inc.php:299 libraries/mysql_charsets.lib.php:241 msgid "Esperanto" msgstr "Есперанто" -#: libraries/messages.inc.php:304 libraries/mysql_charsets.lib.php:244 +#: libraries/messages.inc.php:300 libraries/mysql_charsets.lib.php:244 msgid "Estonian" msgstr "Эстони" -#: libraries/messages.inc.php:305 libraries/tbl_triggers.lib.php:29 +#: libraries/messages.inc.php:301 libraries/tbl_triggers.lib.php:29 msgid "Event" msgstr "Үзэгдэл" -#: libraries/messages.inc.php:307 +#: libraries/messages.inc.php:303 msgid "Excel edition" msgstr "Excel-засвар" -#: libraries/messages.inc.php:311 pmd_pdf.php:85 +#: libraries/messages.inc.php:307 pmd_pdf.php:85 msgid "Export/Import to scale" msgstr "Гаргах/Оруулах хэмжээс" -#: libraries/messages.inc.php:313 +#: libraries/messages.inc.php:309 msgid "Extended inserts" msgstr "Өргөтгөсөн оруулалт" -#: libraries/messages.inc.php:314 pdf_schema.php:1267 pdf_schema.php:1288 +#: libraries/messages.inc.php:310 pdf_schema.php:1267 pdf_schema.php:1288 #: tbl_printview.php:147 tbl_structure.php:183 tbl_tracking.php:278 msgid "Extra" msgstr "Нэмэлт" -#: libraries/messages.inc.php:316 server_status.php:447 +#: libraries/messages.inc.php:312 server_status.php:447 msgid "Failed attempts" msgstr "Бүтэлгүйтсэн оролдлого" -#: libraries/messages.inc.php:318 tbl_structure.php:375 +#: libraries/messages.inc.php:314 tbl_structure.php:375 #, php-format msgid "Field %s has been dropped" msgstr "Талбар %s устгагдсан" -#: libraries/messages.inc.php:322 libraries/sql_query_form.lib.php:317 +#: libraries/messages.inc.php:318 libraries/sql_query_form.lib.php:317 msgid "Fields" msgstr "Талбарууд" -#: libraries/messages.inc.php:332 server_binlog.php:136 +#: libraries/messages.inc.php:328 server_binlog.php:136 msgid "Files" msgstr "Файлууд" -#: libraries/messages.inc.php:334 server_privileges.php:1597 +#: libraries/messages.inc.php:330 server_privileges.php:1597 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -3741,217 +3741,217 @@ msgstr "" "агуулга нь сервэрт хэрэглэгдэж буйгаас өөр байна. Энэ тохиолдолд %sдахин " "дуудаж%s үргэлжлүүлнэ үү." -#: libraries/messages.inc.php:335 server_status.php:289 +#: libraries/messages.inc.php:331 server_status.php:289 msgid "Flush query cache" msgstr "Асуудлын утгыг цэвэрлэх" -#: libraries/messages.inc.php:336 +#: libraries/messages.inc.php:332 msgid "Flush the table (\"FLUSH\")" msgstr "Flush the table (\"FLUSH\")" -#: libraries/messages.inc.php:337 server_status.php:271 +#: libraries/messages.inc.php:333 server_status.php:271 msgid "Flush (close) all tables" msgstr "Бүх хүснэгтийг цэвэрлэх (хаах)" -#: libraries/messages.inc.php:339 tbl_relation.php:279 +#: libraries/messages.inc.php:335 tbl_relation.php:279 #, fuzzy, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "Гадаад түлхүүр үүсгэхэд алдаа гарлаа %1$s (өгөгдлийн төрлөө шалга)" -#: libraries/messages.inc.php:341 setup/lib/messages.inc.php:88 +#: libraries/messages.inc.php:337 setup/lib/messages.inc.php:88 #: tbl_printview.php:376 tbl_structure.php:738 msgid "Format" msgstr "Тогтнол" -#: libraries/messages.inc.php:344 server_replication.php:325 +#: libraries/messages.inc.php:340 server_replication.php:325 msgid "Full start" msgstr "" -#: libraries/messages.inc.php:345 server_replication.php:325 +#: libraries/messages.inc.php:341 server_replication.php:325 msgid "Full stop" msgstr "" -#: libraries/messages.inc.php:347 tbl_change.php:282 tbl_change.php:320 +#: libraries/messages.inc.php:343 tbl_change.php:282 tbl_change.php:320 msgid "Function" msgstr "Функц" -#: libraries/messages.inc.php:355 libraries/mysql_charsets.lib.php:377 +#: libraries/messages.inc.php:351 libraries/mysql_charsets.lib.php:377 msgid "Georgian" msgstr "Гүрж" -#: libraries/messages.inc.php:356 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:352 libraries/mysql_charsets.lib.php:247 #: libraries/mysql_charsets.lib.php:250 msgid "German" msgstr "Немец" -#: libraries/messages.inc.php:357 themes.php:42 +#: libraries/messages.inc.php:353 themes.php:42 msgid "Get more themes!" msgstr "" -#: libraries/messages.inc.php:358 server_privileges.php:2134 +#: libraries/messages.inc.php:354 server_privileges.php:2134 msgid "global" msgstr "global" -#: libraries/messages.inc.php:359 server_privileges.php:524 +#: libraries/messages.inc.php:355 server_privileges.php:524 #: server_privileges.php:1500 msgid "Global privileges" msgstr "Глобал онцгой эрх" -#: libraries/messages.inc.php:360 server_variables.php:55 +#: libraries/messages.inc.php:356 server_variables.php:55 #: server_variables.php:89 msgid "Global value" msgstr "Глобал утга" -#: libraries/messages.inc.php:365 server_privileges.php:1502 +#: libraries/messages.inc.php:361 server_privileges.php:1502 #: server_privileges.php:1684 server_privileges.php:2033 msgid "Grant" msgstr "Хандив" -#: libraries/messages.inc.php:366 libraries/mysql_charsets.lib.php:380 +#: libraries/messages.inc.php:362 libraries/mysql_charsets.lib.php:380 msgid "Greek" msgstr "Грек" -#: libraries/messages.inc.php:367 +#: libraries/messages.inc.php:363 msgid "\"gzipped\"" msgstr "gzip-ээр шахах" -#: libraries/messages.inc.php:369 server_status.php:250 +#: libraries/messages.inc.php:365 server_status.php:250 msgid "Handler" msgstr "Баригч" -#: libraries/messages.inc.php:370 server_synchronize.php:464 +#: libraries/messages.inc.php:366 server_synchronize.php:464 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: libraries/messages.inc.php:372 libraries/mysql_charsets.lib.php:374 +#: libraries/messages.inc.php:368 libraries/mysql_charsets.lib.php:374 msgid "Hebrew" msgstr "Иврей" -#: libraries/messages.inc.php:373 pmd_general.php:83 +#: libraries/messages.inc.php:369 pmd_general.php:83 msgid "Help" msgstr "Тусламж" -#: libraries/messages.inc.php:374 +#: libraries/messages.inc.php:370 msgid "Use hexadecimal for BLOB" msgstr "" -#: libraries/messages.inc.php:376 pmd_general.php:120 +#: libraries/messages.inc.php:372 pmd_general.php:120 msgid "Hide/Show all" msgstr "Нуух/Харуулах бүгдийг" -#: libraries/messages.inc.php:377 pmd_general.php:124 +#: libraries/messages.inc.php:373 pmd_general.php:124 msgid "Hide/Show Tables with no relation" msgstr "Нуух/Харуулах Холбоо байхгүй Хүснэгтүүд" -#: libraries/messages.inc.php:378 libraries/navigation_header.inc.php:54 +#: libraries/messages.inc.php:374 libraries/navigation_header.inc.php:54 #: libraries/navigation_header.inc.php:57 #: libraries/navigation_header.inc.php:58 msgid "Home" msgstr "Гэр" -#: libraries/messages.inc.php:379 main.php:233 +#: libraries/messages.inc.php:375 main.php:233 msgid "Official Homepage" msgstr "phpMyAdmin-ын албан ёсны вэб сайт" -#: libraries/messages.inc.php:382 libraries/replication_gui.lib.php:327 +#: libraries/messages.inc.php:378 libraries/replication_gui.lib.php:327 #: server_privileges.php:753 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/messages.inc.php:383 +#: libraries/messages.inc.php:379 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/messages.inc.php:384 libraries/mysql_charsets.lib.php:253 +#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:253 msgid "Hungarian" msgstr "Унгар" -#: libraries/messages.inc.php:386 libraries/mysql_charsets.lib.php:256 +#: libraries/messages.inc.php:382 libraries/mysql_charsets.lib.php:256 msgid "Icelandic" msgstr "Исланд" -#: libraries/messages.inc.php:387 server_processlist.php:53 +#: libraries/messages.inc.php:383 server_processlist.php:53 msgid "ID" msgstr "ID" -#: libraries/messages.inc.php:388 libraries/mult_submits.inc.php:108 +#: libraries/messages.inc.php:384 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:479 msgid "Fulltext" msgstr "Бүтэнбичвэр" -#: libraries/messages.inc.php:389 +#: libraries/messages.inc.php:385 msgid "Ignore duplicate rows" msgstr "Давхардсан мөрүүдийг алгасах" -#: libraries/messages.inc.php:390 tbl_change.php:302 tbl_indexes.php:200 +#: libraries/messages.inc.php:386 tbl_change.php:302 tbl_indexes.php:200 #: tbl_indexes.php:225 msgid "Ignore" msgstr "Үл тоох" -#: libraries/messages.inc.php:391 +#: libraries/messages.inc.php:387 msgid "Use ignore inserts" msgstr "Оруулалтыг үл тоох" -#: libraries/messages.inc.php:392 +#: libraries/messages.inc.php:388 msgid "Column names in first row" msgstr "" -#: libraries/messages.inc.php:393 +#: libraries/messages.inc.php:389 msgid "Do not import empty rows" msgstr "" -#: libraries/messages.inc.php:394 pmd_general.php:104 +#: libraries/messages.inc.php:390 pmd_general.php:104 msgid "Import/Export coordinates for PDF schema" msgstr "Оруулах/Гаргах PDF схемийн координат" -#: libraries/messages.inc.php:395 querywindow.php:104 +#: libraries/messages.inc.php:391 querywindow.php:104 msgid "Import files" msgstr "Файл оруулах" -#: libraries/messages.inc.php:403 +#: libraries/messages.inc.php:399 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/messages.inc.php:404 libraries/messages.inc.php:584 +#: libraries/messages.inc.php:400 libraries/messages.inc.php:580 msgid "Open Document Spreadsheet" msgstr "" -#: libraries/messages.inc.php:405 +#: libraries/messages.inc.php:401 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/messages.inc.php:409 +#: libraries/messages.inc.php:405 msgid "Excel 97-2003 XLS Workbook" msgstr "" -#: libraries/messages.inc.php:410 +#: libraries/messages.inc.php:406 msgid "Excel 2007 XLSX Workbook" msgstr "" -#: libraries/messages.inc.php:414 libraries/mult_submits.inc.php:98 +#: libraries/messages.inc.php:410 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:476 tbl_structure.php:674 msgid "Index" msgstr "Индекс" -#: libraries/messages.inc.php:415 tbl_indexes.php:168 +#: libraries/messages.inc.php:411 tbl_indexes.php:168 msgid "Index name:" msgstr "Индексийн нэр :" -#: libraries/messages.inc.php:416 tbl_indexes.php:174 +#: libraries/messages.inc.php:412 tbl_indexes.php:174 msgid "Index type:" msgstr "Индексийн төрөл :" -#: libraries/messages.inc.php:417 sql.php:639 +#: libraries/messages.inc.php:413 sql.php:639 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Хүснэгт `%s`-ийн индекс асуудалтай" -#: libraries/messages.inc.php:427 main.php:266 +#: libraries/messages.inc.php:423 main.php:266 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -3962,163 +3962,163 @@ msgstr "" "нууц үггүй) агуулжээ. Таны MySQL сервэр энэ анхдагчаар ажиллаж байгаа нь хэн " "ч урилгагүй орох боломжийг өгнө. Та хамгаалалтын асуудлаа засах хэрэгтэй" -#: libraries/messages.inc.php:428 tbl_change.php:1130 +#: libraries/messages.inc.php:424 tbl_change.php:1130 msgid "Insert as new row" msgstr "Шинэ мөр оруулаад" -#: libraries/messages.inc.php:429 sql.php:496 tbl_replace.php:386 +#: libraries/messages.inc.php:425 sql.php:496 tbl_replace.php:386 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: libraries/messages.inc.php:430 tbl_change.php:1131 +#: libraries/messages.inc.php:426 tbl_change.php:1131 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/messages.inc.php:432 main.php:139 +#: libraries/messages.inc.php:428 main.php:139 msgid "Interface" msgstr "" -#: libraries/messages.inc.php:433 tbl_relation.php:407 +#: libraries/messages.inc.php:429 tbl_relation.php:407 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: libraries/messages.inc.php:435 pdf_pages.php:303 +#: libraries/messages.inc.php:431 pdf_pages.php:303 msgid "Internal relations" msgstr "Дотоод хамаарал" -#: libraries/messages.inc.php:438 tbl_indexes.php:256 tbl_structure.php:590 +#: libraries/messages.inc.php:434 tbl_indexes.php:256 tbl_structure.php:590 #: tbl_structure.php:601 msgid "Column count has to be larger than zero." msgstr "Баганы тоо тэгээс их байна." -#: libraries/messages.inc.php:444 libraries/tbl_properties.inc.php:784 +#: libraries/messages.inc.php:440 libraries/tbl_properties.inc.php:784 #: tbl_structure.php:537 msgid "You have to add at least one field." msgstr "Та багадаа нэг талбар нэм." -#: libraries/messages.inc.php:449 +#: libraries/messages.inc.php:445 #, php-format msgid "Invalid server index: \"%s\"" msgstr "Сервэрийн буруу индекс нь: \"%s\"" -#: libraries/messages.inc.php:452 libraries/mysql_charsets.lib.php:259 +#: libraries/messages.inc.php:448 libraries/mysql_charsets.lib.php:259 #: libraries/mysql_charsets.lib.php:349 msgid "Japanese" msgstr "Япон" -#: libraries/messages.inc.php:453 main.php:331 +#: libraries/messages.inc.php:449 main.php:331 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: libraries/messages.inc.php:454 server_status.php:257 +#: libraries/messages.inc.php:450 server_status.php:257 msgid "Joins" msgstr "Нэгдэл" -#: libraries/messages.inc.php:457 server_privileges.php:763 +#: libraries/messages.inc.php:453 server_privileges.php:763 msgid "Do not change the password" msgstr "Нууц үгийг солихгүй" -#: libraries/messages.inc.php:458 server_status.php:256 +#: libraries/messages.inc.php:454 server_status.php:256 msgid "Key cache" msgstr "Түлхүүрийн нөөцлөл" -#: libraries/messages.inc.php:462 libraries/mysql_charsets.lib.php:268 +#: libraries/messages.inc.php:458 libraries/mysql_charsets.lib.php:268 #: libraries/mysql_charsets.lib.php:371 msgid "Korean" msgstr "Солонгос" -#: libraries/messages.inc.php:466 libraries/select_lang.lib.php:480 +#: libraries/messages.inc.php:462 libraries/select_lang.lib.php:480 #: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492 #, php-format msgid "Unknown language: %1$s." msgstr "Үл мэдэгдэх хэл: %1$s." -#: libraries/messages.inc.php:468 +#: libraries/messages.inc.php:464 msgid "Table caption" msgstr "Хүснэгтийн гарчиг" -#: libraries/messages.inc.php:469 +#: libraries/messages.inc.php:465 msgid "Content of table __TABLE__" msgstr "__TABLE__ хүснэгтийн агуулга" -#: libraries/messages.inc.php:470 +#: libraries/messages.inc.php:466 msgid "Continued table caption" msgstr "Үргэлжилсэн хүснэгтийн гарчиг" -#: libraries/messages.inc.php:471 +#: libraries/messages.inc.php:467 msgid "(continued)" msgstr "(үргэлжилнэ)" -#: libraries/messages.inc.php:472 +#: libraries/messages.inc.php:468 msgid "Include table caption" msgstr "Хүснэгтийн гарчиг холбогдсон" -#: libraries/messages.inc.php:473 +#: libraries/messages.inc.php:469 msgid "Label key" msgstr "Label key" -#: libraries/messages.inc.php:474 +#: libraries/messages.inc.php:470 msgid "LaTeX" msgstr "LaTeX" -#: libraries/messages.inc.php:475 +#: libraries/messages.inc.php:471 msgid "Structure of table __TABLE__" msgstr "__TABLE__ хүснэгтийн бүтэц" -#: libraries/messages.inc.php:476 libraries/mysql_charsets.lib.php:262 +#: libraries/messages.inc.php:472 libraries/mysql_charsets.lib.php:262 msgid "Latvian" msgstr "Латви" -#: libraries/messages.inc.php:477 +#: libraries/messages.inc.php:473 msgid "CSV using LOAD DATA" msgstr "CSV хэрэглэх нь LOAD DATA" -#: libraries/messages.inc.php:478 +#: libraries/messages.inc.php:474 msgid "Use LOCAL keyword" msgstr "LOCAL түлхүүр үг хэрэглэх" -#: libraries/messages.inc.php:479 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:475 libraries/tbl_properties.inc.php:105 msgid "Length/Values" msgstr "Урт/Утгууд*" -#: libraries/messages.inc.php:480 tbl_select.php:295 +#: libraries/messages.inc.php:476 tbl_select.php:295 msgid "Number of rows per page" msgstr "Хуудас дахь мөрийн тоо" -#: libraries/messages.inc.php:484 libraries/mysql_charsets.lib.php:265 +#: libraries/messages.inc.php:480 libraries/mysql_charsets.lib.php:265 msgid "Lithuanian" msgstr "Латви" -#: libraries/messages.inc.php:485 libraries/replication_gui.lib.php:302 +#: libraries/messages.inc.php:481 libraries/replication_gui.lib.php:302 #: server_privileges.php:729 msgid "Local" msgstr "Local" -#: libraries/messages.inc.php:487 server_privileges.php:669 +#: libraries/messages.inc.php:483 server_privileges.php:669 msgid "Login Information" msgstr "Нэвтрэх мэдээлэл" -#: libraries/messages.inc.php:490 libraries/navigation_header.inc.php:67 +#: libraries/messages.inc.php:486 libraries/navigation_header.inc.php:67 #: libraries/navigation_header.inc.php:70 #: libraries/navigation_header.inc.php:71 main.php:99 msgid "Log out" msgstr "Гарах" -#: libraries/messages.inc.php:497 server_status.php:440 +#: libraries/messages.inc.php:493 server_status.php:440 msgid "max. concurrent connections" msgstr "ХИ. давхацсан холболтууд" -#: libraries/messages.inc.php:498 +#: libraries/messages.inc.php:494 msgid "Maximal length of created query" msgstr "Үүсгэгдсэн асуудлын хамгийн их урт" -#: libraries/messages.inc.php:500 main.php:282 +#: libraries/messages.inc.php:496 main.php:282 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -4128,7 +4128,7 @@ msgstr "" "mbstring extension үгүйгээр phpMyAdmin нь тэмдэгт мөрийг зөв хувааж чадахгүй " "буюу буруу үр дүн гарч магадгүй." -#: libraries/messages.inc.php:501 main.php:274 +#: libraries/messages.inc.php:497 main.php:274 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -4137,24 +4137,24 @@ msgstr "" "Таны PHP тохируулгад mbstring.func_overload нээлттэй байна. Энэ сонголт " "phpMyAdmin -д бүрэн боломжгүй бөгөөд зарим өгөгдөл алдагдаж болзошгүй!" -#: libraries/messages.inc.php:502 +#: libraries/messages.inc.php:498 msgid "MediaWiki Table" msgstr "" -#: libraries/messages.inc.php:503 transformation_overview.php:25 +#: libraries/messages.inc.php:499 transformation_overview.php:25 msgid "Available MIME types" msgstr "Идэвхтэй MIME-төрлүүд" -#: libraries/messages.inc.php:504 transformation_overview.php:43 +#: libraries/messages.inc.php:500 transformation_overview.php:43 msgid "Available transformations" msgstr "Идэвхтэй өөрчлөлт" -#: libraries/messages.inc.php:505 +#: libraries/messages.inc.php:501 msgctxt "$strMIME_description" msgid "Description" msgstr "Тайлбар" -#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:580 +#: libraries/messages.inc.php:503 libraries/tbl_properties.inc.php:580 #: transformation_overview.php:60 #, php-format msgid "" @@ -4163,7 +4163,7 @@ msgid "" msgstr "" "Энэ өөрчлөлтөд Тайлбаргүй нь идэвхтэй.
%s-ын зохиогчийг асууна уу." -#: libraries/messages.inc.php:509 libraries/tbl_properties.inc.php:137 +#: libraries/messages.inc.php:505 libraries/tbl_properties.inc.php:137 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -4172,7 +4172,7 @@ msgstr "" "Боломжтой өөрчлөлийн сонголтуудын жагсаалт ба тэдгээр MIME-төрлийн " "өөрчлөлүүдийн тулд, %sөөрчлөлийн тайлбар%s -д дарах" -#: libraries/messages.inc.php:510 libraries/tbl_properties.inc.php:146 +#: libraries/messages.inc.php:506 libraries/tbl_properties.inc.php:146 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -4183,111 +4183,111 @@ msgstr "" "та буруу ташуу зургаас эсвэл дан хашилт тавихыг хүсвэл буруу ташуу зураасыг " "өмнө нь тавина уу. (Ж: '\\\\xyz' or 'a\\'b')." -#: libraries/messages.inc.php:511 libraries/tbl_properties.inc.php:145 +#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:145 msgid "Transformation options" msgstr "Өөрчлөлийн сонголтууд" -#: libraries/messages.inc.php:513 transformation_overview.php:38 +#: libraries/messages.inc.php:509 transformation_overview.php:38 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "" "MIME-types printed in italics do not have a seperate transformation function" -#: libraries/messages.inc.php:515 tbl_indexes.php:162 +#: libraries/messages.inc.php:511 tbl_indexes.php:162 msgid "Modify an index" msgstr "Өөрчлөх индекс" -#: libraries/messages.inc.php:517 pmd_general.php:108 +#: libraries/messages.inc.php:513 pmd_general.php:108 msgid "Move Menu" msgstr "Цэс зөөх" -#: libraries/messages.inc.php:518 tbl_operations.php:276 +#: libraries/messages.inc.php:514 tbl_operations.php:276 msgid "Move table to (database.table):" msgstr "Хүснэгтийг зөөх (өгөгдлийн сан.хүснэгт):" -#: libraries/messages.inc.php:519 tbl_move_copy.php:56 +#: libraries/messages.inc.php:515 tbl_move_copy.php:56 #, php-format msgid "Table %s has been moved to %s." msgstr "Хүснэгт %s нь %s руу зөөгдөв." -#: libraries/messages.inc.php:520 tbl_move_copy.php:46 +#: libraries/messages.inc.php:516 tbl_move_copy.php:46 msgid "Can't move table to same one!" msgstr "Адил нэр байсан тул хүснэгтийг зөөсөнгүй!" -#: libraries/messages.inc.php:521 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:517 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 #: libraries/mysql_charsets.lib.php:332 libraries/mysql_charsets.lib.php:354 #: libraries/mysql_charsets.lib.php:365 msgid "multilingual" msgstr "олонхэлийн" -#: libraries/messages.inc.php:534 main.php:193 +#: libraries/messages.inc.php:530 main.php:193 msgid "MySQL charset" msgstr "MySQL-кодлол" -#: libraries/messages.inc.php:535 main.php:211 +#: libraries/messages.inc.php:531 main.php:211 msgid "MySQL client version" msgstr "MySQL клиент хувилбар" -#: libraries/messages.inc.php:536 main.php:125 +#: libraries/messages.inc.php:532 main.php:125 msgid "MySQL connection collation" msgstr "MySQL холболтын кодлол" -#: libraries/messages.inc.php:537 main.php:346 +#: libraries/messages.inc.php:533 main.php:346 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: libraries/messages.inc.php:539 server_status.php:294 +#: libraries/messages.inc.php:535 server_status.php:294 msgid "Show processes" msgstr "Процесууд харах" -#: libraries/messages.inc.php:545 navigation.php:210 server_databases.php:371 +#: libraries/messages.inc.php:541 navigation.php:210 server_databases.php:371 #: server_synchronize.php:1191 msgid "No databases" msgstr "ӨС байхгүй" -#: libraries/messages.inc.php:546 server_databases.php:52 +#: libraries/messages.inc.php:542 server_databases.php:52 msgid "No databases selected." msgstr "ӨС сонгогдоогүй." -#: libraries/messages.inc.php:548 libraries/relation.lib.php:1173 +#: libraries/messages.inc.php:544 libraries/relation.lib.php:1173 msgid "no description" msgstr "тайлбаргүй" -#: libraries/messages.inc.php:552 libraries/zip_extension.lib.php:26 +#: libraries/messages.inc.php:548 libraries/zip_extension.lib.php:26 msgid "No files found inside ZIP archive!" msgstr "ZIP архив дотор файл байхгүй байна!" -#: libraries/messages.inc.php:555 tbl_indexes.php:91 +#: libraries/messages.inc.php:551 tbl_indexes.php:91 msgid "No index parts defined!" msgstr "Тодорхойлогдсон индексийн хэсэггүй!" -#: libraries/messages.inc.php:556 libraries/mult_submits.inc.php:435 +#: libraries/messages.inc.php:552 libraries/mult_submits.inc.php:435 #: tbl_replace.php:331 msgid "No change" msgstr "Солигдохгүй" -#: libraries/messages.inc.php:557 +#: libraries/messages.inc.php:553 msgctxt "$strNoneDefault" msgid "None" msgstr "" -#: libraries/messages.inc.php:560 libraries/plugin_interface.lib.php:312 +#: libraries/messages.inc.php:556 libraries/plugin_interface.lib.php:312 msgid "This format has no options" msgstr "Энэ тогтнол сонголтгүй" -#: libraries/messages.inc.php:565 user_password.php:54 +#: libraries/messages.inc.php:561 user_password.php:54 msgid "You don't have sufficient privileges to be here right now!" msgstr "Танд хангалттай эрх байхгүй!" -#: libraries/messages.inc.php:566 tbl_row_action.php:29 +#: libraries/messages.inc.php:562 tbl_row_action.php:29 msgid "No rows selected" msgstr "Сонгогдсон мөргүй" -#: libraries/messages.inc.php:569 themes.php:32 +#: libraries/messages.inc.php:565 themes.php:32 #, php-format msgid "" "No themes support; please check your configuration and/or your themes in " @@ -4296,291 +4296,291 @@ msgstr "" "Арьс боломжгүй, өөрийн тохиргоогоо шалга ба/эсвэл %s-т арьс байгаа эсэхийг " "хар." -#: libraries/messages.inc.php:571 libraries/relation.lib.php:95 +#: libraries/messages.inc.php:567 libraries/relation.lib.php:95 msgid "not OK" msgstr "Бэлэн биш" -#: libraries/messages.inc.php:572 server_synchronize.php:400 +#: libraries/messages.inc.php:568 server_synchronize.php:400 #: server_synchronize.php:839 msgid "not present" msgstr "" -#: libraries/messages.inc.php:573 pdf_pages.php:36 pdf_pages.php:42 +#: libraries/messages.inc.php:569 pdf_pages.php:36 pdf_pages.php:42 #: pdf_pages.php:48 pdf_pages.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "%s хүснэгт олдсонгүй эсвэл %s-д сонгогдоогүй" -#: libraries/messages.inc.php:574 server_privileges.php:804 +#: libraries/messages.inc.php:570 server_privileges.php:804 #: server_privileges.php:2166 msgid "No user(s) found." msgstr "Хэрэглэгч олдсонгүй." -#: libraries/messages.inc.php:578 pmd_general.php:164 +#: libraries/messages.inc.php:574 pmd_general.php:164 msgid "Number of tables" msgstr "Хүснэгтийн тоо" -#: libraries/messages.inc.php:581 server_databases.php:117 +#: libraries/messages.inc.php:577 server_databases.php:117 #: server_status.php:260 setup/lib/messages.inc.php:117 msgid "Tables" msgstr "Хүснэгт" -#: libraries/messages.inc.php:583 libraries/relation.lib.php:99 +#: libraries/messages.inc.php:579 libraries/relation.lib.php:99 #: pmd_general.php:340 msgid "OK" msgstr "Бэлэн" -#: libraries/messages.inc.php:585 +#: libraries/messages.inc.php:581 msgid "Open Document Text" msgstr "" -#: libraries/messages.inc.php:588 tbl_select.php:138 +#: libraries/messages.inc.php:584 tbl_select.php:138 msgid "Operator" msgstr "Оператор" -#: libraries/messages.inc.php:589 tbl_operations.php:662 +#: libraries/messages.inc.php:585 tbl_operations.php:662 msgid "Optimize" msgstr "" -#: libraries/messages.inc.php:602 libraries/tbl_properties.inc.php:755 +#: libraries/messages.inc.php:598 libraries/tbl_properties.inc.php:755 msgid "PARTITION definition" msgstr "" -#: libraries/messages.inc.php:603 tbl_structure.php:757 +#: libraries/messages.inc.php:599 tbl_structure.php:757 msgid "partitioned" msgstr "" -#: libraries/messages.inc.php:604 tbl_operations.php:649 +#: libraries/messages.inc.php:600 tbl_operations.php:649 msgid "Partition maintenance" msgstr "" -#: libraries/messages.inc.php:605 tbl_operations.php:657 +#: libraries/messages.inc.php:601 tbl_operations.php:657 #, php-format msgid "Partition %s" msgstr "" -#: libraries/messages.inc.php:606 server_privileges.php:1212 +#: libraries/messages.inc.php:602 server_privileges.php:1212 #, php-format msgid "The password for %s was changed successfully." msgstr "%s-ы нууц үг солигдлоо." -#: libraries/messages.inc.php:635 +#: libraries/messages.inc.php:631 #, php-format msgid "Schema of the \"%s\" database - Page %s" msgstr "\"%s\" өгөгдлийн сангийн схем - Хуудас %s" -#: libraries/messages.inc.php:636 +#: libraries/messages.inc.php:632 #, php-format msgid "The \"%s\" table doesn't exist!" msgstr "Хүснэгт \"%s\" байхгүй байна!" -#: libraries/messages.inc.php:637 pdf_schema.php:1013 +#: libraries/messages.inc.php:633 pdf_schema.php:1013 msgid "No tables" msgstr "Хүснэгт алга" -#: libraries/messages.inc.php:638 pmd_pdf.php:63 +#: libraries/messages.inc.php:634 pmd_pdf.php:63 msgid "Page has been created" msgstr "" -#: libraries/messages.inc.php:639 pmd_pdf.php:65 +#: libraries/messages.inc.php:635 pmd_pdf.php:65 msgid "Page creation failed" msgstr "" -#: libraries/messages.inc.php:640 +#: libraries/messages.inc.php:636 msgid "PDF" msgstr "PDF" -#: libraries/messages.inc.php:641 +#: libraries/messages.inc.php:637 msgid "(Generates a report containing the data of a single table)" msgstr "" -#: libraries/messages.inc.php:642 +#: libraries/messages.inc.php:638 msgid "Report title" msgstr "Тайлангийн гарчиг" -#: libraries/messages.inc.php:643 server_status.php:389 server_status.php:434 +#: libraries/messages.inc.php:639 server_status.php:389 server_status.php:434 #: server_status.php:497 server_status.php:555 msgid "per hour" msgstr "цагт" -#: libraries/messages.inc.php:644 server_status.php:498 +#: libraries/messages.inc.php:640 server_status.php:498 msgid "per minute" msgstr "минутад" -#: libraries/messages.inc.php:645 server_status.php:499 +#: libraries/messages.inc.php:641 server_status.php:499 msgid "per second" msgstr "секундэд" -#: libraries/messages.inc.php:646 libraries/mysql_charsets.lib.php:271 +#: libraries/messages.inc.php:642 libraries/mysql_charsets.lib.php:271 msgid "Persian" msgstr "Перс" -#: libraries/messages.inc.php:647 libraries/mysql_charsets.lib.php:250 +#: libraries/messages.inc.php:643 libraries/mysql_charsets.lib.php:250 msgid "phone book" msgstr "Утасны лавлах" -#: libraries/messages.inc.php:648 +#: libraries/messages.inc.php:644 msgid "PHP array" msgstr "" -#: libraries/messages.inc.php:650 main.php:213 +#: libraries/messages.inc.php:646 main.php:213 msgid "PHP extension" msgstr "" -#: libraries/messages.inc.php:654 libraries/relation.lib.php:163 +#: libraries/messages.inc.php:650 libraries/relation.lib.php:163 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/messages.inc.php:655 libraries/relation.lib.php:159 +#: libraries/messages.inc.php:651 libraries/relation.lib.php:159 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/messages.inc.php:656 libraries/relation.lib.php:161 +#: libraries/messages.inc.php:652 libraries/relation.lib.php:161 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" -#: libraries/messages.inc.php:657 libraries/relation.lib.php:162 +#: libraries/messages.inc.php:653 libraries/relation.lib.php:162 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/messages.inc.php:658 libraries/relation.lib.php:164 +#: libraries/messages.inc.php:654 libraries/relation.lib.php:164 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/messages.inc.php:661 libraries/mysql_charsets.lib.php:274 +#: libraries/messages.inc.php:657 libraries/mysql_charsets.lib.php:274 msgid "Polish" msgstr "Польш" -#: libraries/messages.inc.php:662 libraries/replication_gui.lib.php:67 +#: libraries/messages.inc.php:658 libraries/replication_gui.lib.php:67 #: server_synchronize.php:1163 msgid "Port" msgstr "" -#: libraries/messages.inc.php:667 tbl_indexes.php:67 +#: libraries/messages.inc.php:663 tbl_indexes.php:67 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Үндсэн түлхүүрийн нэр нь PRIMARY байх ёстой!" -#: libraries/messages.inc.php:668 tbl_indexes.php:184 +#: libraries/messages.inc.php:664 tbl_indexes.php:184 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" "(\"PRIMARY\" нь үндсэн түлхүүрийн нэр ба зөвхөн байх хэрэгтэй!)" -#: libraries/messages.inc.php:669 libraries/mult_submits.inc.php:76 +#: libraries/messages.inc.php:665 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:474 msgid "Primary" msgstr "Үндсэн" -#: libraries/messages.inc.php:673 server_privileges.php:227 +#: libraries/messages.inc.php:669 server_privileges.php:227 msgid "Includes all privileges except GRANT." msgstr "Includes all privileges except GRANT." -#: libraries/messages.inc.php:674 server_privileges.php:153 +#: libraries/messages.inc.php:670 server_privileges.php:153 #: server_privileges.php:476 msgid "Allows altering the structure of existing tables." msgstr "Байгаа хүснэгтийн бүтцийг өөрчлөхийг зөвшөөрөх." -#: libraries/messages.inc.php:675 server_privileges.php:169 +#: libraries/messages.inc.php:671 server_privileges.php:169 #: server_privileges.php:482 msgid "Allows altering and dropping stored routines." msgstr "Хадгалагдсан заншил устгах, өөрчлөхийг зөвшөөрөх." -#: libraries/messages.inc.php:676 server_privileges.php:145 +#: libraries/messages.inc.php:672 server_privileges.php:145 #: server_privileges.php:475 msgid "Allows creating new databases and tables." msgstr "Шинэ өгөгдлийн сан, хүснэгт үүсгэхийг зөвшөөрөх." -#: libraries/messages.inc.php:677 server_privileges.php:168 +#: libraries/messages.inc.php:673 server_privileges.php:168 #: server_privileges.php:481 msgid "Allows creating stored routines." msgstr "Хадгалагдсан заншил үүсгэхийг зөвшөөрөх." -#: libraries/messages.inc.php:678 server_privileges.php:475 +#: libraries/messages.inc.php:674 server_privileges.php:475 msgid "Allows creating new tables." msgstr "Шинэ хүснэгт үүсгэхийг зөвшөөрөх." -#: libraries/messages.inc.php:679 server_privileges.php:156 +#: libraries/messages.inc.php:675 server_privileges.php:156 #: server_privileges.php:479 msgid "Allows creating temporary tables." msgstr "Завсрын хүснэгт үүсгэхийг зөвшөөрөх." -#: libraries/messages.inc.php:680 server_privileges.php:170 +#: libraries/messages.inc.php:676 server_privileges.php:170 #: server_privileges.php:515 msgid "Allows creating, dropping and renaming user accounts." msgstr "Хэрэглэгчийн эрхийг үүсгэх, устгах, да.нэрлэхийг зөвшөөрөх." -#: libraries/messages.inc.php:681 server_privileges.php:160 +#: libraries/messages.inc.php:677 server_privileges.php:160 #: server_privileges.php:164 server_privileges.php:487 #: server_privileges.php:491 msgid "Allows creating new views." msgstr "Шинэ харц үүсгэхийг зөвшөөрөх." -#: libraries/messages.inc.php:682 server_privileges.php:144 +#: libraries/messages.inc.php:678 server_privileges.php:144 #: server_privileges.php:467 msgid "Allows deleting data." msgstr "Өгөгдөл устгахыг зөвшөөрөх." -#: libraries/messages.inc.php:683 server_privileges.php:146 +#: libraries/messages.inc.php:679 server_privileges.php:146 #: server_privileges.php:478 msgid "Allows dropping databases and tables." msgstr "ӨС, хүснэгт устгахыг зөвшөөрөх " -#: libraries/messages.inc.php:684 server_privileges.php:478 +#: libraries/messages.inc.php:680 server_privileges.php:478 msgid "Allows dropping tables." msgstr "Хүснэгт устгахыг зөвшөөрөх." -#: libraries/messages.inc.php:685 server_privileges.php:161 +#: libraries/messages.inc.php:681 server_privileges.php:161 #: server_privileges.php:495 msgid "Allows to set up events for the event scheduler" msgstr "" -#: libraries/messages.inc.php:686 server_privileges.php:171 +#: libraries/messages.inc.php:682 server_privileges.php:171 #: server_privileges.php:483 msgid "Allows executing stored routines." msgstr "Хадгалагдсан заншлыг ажиллуулахыг зөвшөөрөх." -#: libraries/messages.inc.php:687 server_privileges.php:150 +#: libraries/messages.inc.php:683 server_privileges.php:150 #: server_privileges.php:470 msgid "Allows importing data from and exporting data into files." msgstr "Өгөгдөл оруулах, файл руу гаргахыг зөвшөөрөх." -#: libraries/messages.inc.php:688 server_privileges.php:501 +#: libraries/messages.inc.php:684 server_privileges.php:501 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Хэрэглэгч болон онцгой эрхийг онцгой эрхийн хүснэгтийг дуудалгүй нэмэхийг " "зөвшөөрөх." -#: libraries/messages.inc.php:689 server_privileges.php:152 +#: libraries/messages.inc.php:685 server_privileges.php:152 #: server_privileges.php:477 msgid "Allows creating and dropping indexes." msgstr "Индекс үүсгэх, устгахыг зөвшөөрөх." -#: libraries/messages.inc.php:690 server_privileges.php:142 +#: libraries/messages.inc.php:686 server_privileges.php:142 #: server_privileges.php:403 server_privileges.php:465 msgid "Allows inserting and replacing data." msgstr "Өгөгдөл нэмэх, солихыг зөвшөөрөх." -#: libraries/messages.inc.php:691 server_privileges.php:157 +#: libraries/messages.inc.php:687 server_privileges.php:157 #: server_privileges.php:510 msgid "Allows locking tables for the current thread." msgstr "Тухайн процесст хүснэгт түгжихийг зөвшөөрөх." -#: libraries/messages.inc.php:692 server_privileges.php:607 +#: libraries/messages.inc.php:688 server_privileges.php:607 #: server_privileges.php:609 msgid "Limits the number of new connections the user may open per hour." msgstr "Цаг тутамд шинээр холбогдох хэрэглэгчийн тоог хязгаарлах." -#: libraries/messages.inc.php:693 server_privileges.php:595 +#: libraries/messages.inc.php:689 server_privileges.php:595 #: server_privileges.php:597 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Цаг тутамд хэрэглэгчийн асуулт (query) илгээхийг хязгаарлах." -#: libraries/messages.inc.php:694 server_privileges.php:601 +#: libraries/messages.inc.php:690 server_privileges.php:601 #: server_privileges.php:603 msgid "" "Limits the number of commands that change any table or database the user may " @@ -4589,57 +4589,57 @@ msgstr "" "Цаг тутамд хэрэглэгчийн хүснэгт эсвэл өгөгдлийн сан солих командыг " "хязгаарлах." -#: libraries/messages.inc.php:695 server_privileges.php:613 +#: libraries/messages.inc.php:691 server_privileges.php:613 #: server_privileges.php:615 msgid "Limits the number of simultaneous connections the user may have." msgstr "Хэрэглэгчдэд байх зэрэг холболтын хязгаарлах тоо." -#: libraries/messages.inc.php:696 server_privileges.php:149 +#: libraries/messages.inc.php:692 server_privileges.php:149 #: server_privileges.php:505 msgid "Allows viewing processes of all users" msgstr "" -#: libraries/messages.inc.php:697 server_privileges.php:151 +#: libraries/messages.inc.php:693 server_privileges.php:151 #: server_privileges.php:409 server_privileges.php:511 msgid "Has no effect in this MySQL version." msgstr "MySQL-ын энэ хувилбарт үйлчлэлгүй." -#: libraries/messages.inc.php:698 server_privileges.php:147 +#: libraries/messages.inc.php:694 server_privileges.php:147 #: server_privileges.php:506 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Сервэрийн тохиргоог дахин дуудахыг зөвшөөрөх." -#: libraries/messages.inc.php:699 server_privileges.php:159 +#: libraries/messages.inc.php:695 server_privileges.php:159 #: server_privileges.php:513 msgid "Allows the user to ask where the slaves / masters are." msgstr "Gives the right to the user to ask where the slaves / masters are." -#: libraries/messages.inc.php:700 server_privileges.php:158 +#: libraries/messages.inc.php:696 server_privileges.php:158 #: server_privileges.php:514 msgid "Needed for the replication slaves." msgstr "Needed for the replication slaves." -#: libraries/messages.inc.php:701 server_privileges.php:141 +#: libraries/messages.inc.php:697 server_privileges.php:141 #: server_privileges.php:400 server_privileges.php:464 msgid "Allows reading data." msgstr "Өгөгдөл уншихыг зөвшөөрөх." -#: libraries/messages.inc.php:702 server_privileges.php:154 +#: libraries/messages.inc.php:698 server_privileges.php:154 #: server_privileges.php:508 msgid "Gives access to the complete list of databases." msgstr "Өгөгдлийн сангийн бүрэн жагсаалт руу хандахыг өгөх." -#: libraries/messages.inc.php:703 server_privileges.php:165 +#: libraries/messages.inc.php:699 server_privileges.php:165 #: server_privileges.php:167 server_privileges.php:480 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "SHOW CREATE VIEW асуултыг хийхийг зөвшөөрөх." -#: libraries/messages.inc.php:704 server_privileges.php:148 +#: libraries/messages.inc.php:700 server_privileges.php:148 #: server_privileges.php:507 msgid "Allows shutting down the server." msgstr "Сервэрийг унтраахыг зөвшөөрөх." -#: libraries/messages.inc.php:705 server_privileges.php:155 +#: libraries/messages.inc.php:701 server_privileges.php:155 #: server_privileges.php:504 msgid "" "Allows connecting, even if maximum number of connections is reached; " @@ -4649,55 +4649,55 @@ msgstr "" "Хэрэв ХИ холболтын тоо гүйцсэн ч холбогдохыг зөвшөөрөх. Бусад хэрэглэгчийн " "процессыг үгүй хийх эсвэл глобал утгыг өөрчлөх шаардлагатай болно." -#: libraries/messages.inc.php:706 server_privileges.php:162 +#: libraries/messages.inc.php:702 server_privileges.php:162 #: server_privileges.php:496 msgid "Allows creating and dropping triggers" msgstr "" -#: libraries/messages.inc.php:707 server_privileges.php:143 +#: libraries/messages.inc.php:703 server_privileges.php:143 #: server_privileges.php:406 server_privileges.php:466 msgid "Allows changing data." msgstr "Өгөгдөл солихыг зөвшөөрөх." -#: libraries/messages.inc.php:708 server_privileges.php:221 +#: libraries/messages.inc.php:704 server_privileges.php:221 msgid "No privileges." msgstr "Онцгой эрхгүй." -#: libraries/messages.inc.php:710 server_privileges.php:1296 +#: libraries/messages.inc.php:706 server_privileges.php:1296 msgid "The privileges were reloaded successfully." msgstr "Онцгой эрхүүд дахин дуудагдлаа." -#: libraries/messages.inc.php:712 libraries/server_links.inc.php:80 +#: libraries/messages.inc.php:708 libraries/server_links.inc.php:80 msgid "Processes" msgstr "Процессууд" -#: libraries/messages.inc.php:714 main.php:187 +#: libraries/messages.inc.php:710 main.php:187 msgid "Protocol version" msgstr "Протоколын хувилбар" -#: libraries/messages.inc.php:715 +#: libraries/messages.inc.php:711 msgid "Put fields names in the first row" msgstr "Эхний мөрт талбаруудын нэрийг тавих" -#: libraries/messages.inc.php:720 server_synchronize.php:1003 +#: libraries/messages.inc.php:716 server_synchronize.php:1003 msgid "The following queries have been executed:" msgstr "" -#: libraries/messages.inc.php:721 server_status.php:251 +#: libraries/messages.inc.php:717 server_status.php:251 msgid "Query cache" msgstr "Асуудлын нөөцлөл" -#: libraries/messages.inc.php:722 libraries/navigation_header.inc.php:80 +#: libraries/messages.inc.php:718 libraries/navigation_header.inc.php:80 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 setup/lib/messages.inc.php:122 msgid "Query window" msgstr "Асуултын цонх" -#: libraries/messages.inc.php:725 querywindow.php:109 querywindow.php:217 +#: libraries/messages.inc.php:721 querywindow.php:109 querywindow.php:217 msgid "SQL history" msgstr "SQL түүх" -#: libraries/messages.inc.php:726 server_status.php:490 +#: libraries/messages.inc.php:722 server_status.php:490 #, php-format msgid "" "Query statistics: Since its startup, %s queries have been sent to the " @@ -4705,135 +4705,135 @@ msgid "" msgstr "" "Асуултын статистик: Эхэлснээс хойш, %s асуулт сервэр рүү илгээгдсэн." -#: libraries/messages.inc.php:728 server_status.php:554 +#: libraries/messages.inc.php:724 server_status.php:554 msgid "Query type" msgstr "Асуултын төрөл" -#: libraries/messages.inc.php:729 libraries/sql_query_form.lib.php:381 +#: libraries/messages.inc.php:725 libraries/sql_query_form.lib.php:381 msgid "Do not overwrite this query from outside the window" msgstr "Цонхны гаднаас энэ асуултыг давхарлахгүй байх" -#: libraries/messages.inc.php:732 tbl_operations.php:663 +#: libraries/messages.inc.php:728 tbl_operations.php:663 msgid "Rebuild" msgstr "" -#: libraries/messages.inc.php:733 server_status.php:394 +#: libraries/messages.inc.php:729 server_status.php:394 msgid "Received" msgstr "Ирсэн" -#: libraries/messages.inc.php:734 pmd_pdf.php:89 +#: libraries/messages.inc.php:730 pmd_pdf.php:89 msgid "recommended" msgstr "сайшаагдсан" -#: libraries/messages.inc.php:736 tbl_operations.php:702 +#: libraries/messages.inc.php:732 tbl_operations.php:702 msgid "Check referential integrity:" msgstr "Үнэн зөв өгөгдлийг шалгах:" -#: libraries/messages.inc.php:740 pdf_schema.php:1032 pdf_schema.php:1141 +#: libraries/messages.inc.php:736 pdf_schema.php:1032 pdf_schema.php:1141 msgid "Relational schema" msgstr "Хамааралтай схем" -#: libraries/messages.inc.php:744 tbl_relation.php:399 +#: libraries/messages.inc.php:740 tbl_relation.php:399 msgid "Relations" msgstr "Хамаарал" -#: libraries/messages.inc.php:745 tbl_structure.php:507 tbl_structure.php:509 +#: libraries/messages.inc.php:741 tbl_structure.php:507 tbl_structure.php:509 msgid "Relation view" msgstr "Хамаарал харах" -#: libraries/messages.inc.php:746 server_privileges.php:1246 +#: libraries/messages.inc.php:742 server_privileges.php:1246 msgid "Reloading the privileges" msgstr "Онцгой эрхийг дахин дуудаж байна" -#: libraries/messages.inc.php:747 navigation.php:66 navigation.php:67 +#: libraries/messages.inc.php:743 navigation.php:66 navigation.php:67 #: navigation.php:70 msgid "Reload navigation frame" msgstr "" -#: libraries/messages.inc.php:748 pmd_general.php:80 +#: libraries/messages.inc.php:744 pmd_general.php:80 msgid "Reload" msgstr "Да.дууд" -#: libraries/messages.inc.php:749 libraries/server_synchronize.lib.php:1345 +#: libraries/messages.inc.php:745 libraries/server_synchronize.lib.php:1345 #: libraries/server_synchronize.lib.php:1371 msgid "Remote server" msgstr "" -#: libraries/messages.inc.php:750 +#: libraries/messages.inc.php:746 msgid "Remove CRLF characters within fields" msgstr "" -#: libraries/messages.inc.php:751 tbl_operations.php:676 +#: libraries/messages.inc.php:747 tbl_operations.php:676 msgid "Remove partitioning" msgstr "" -#: libraries/messages.inc.php:752 server_privileges.php:1575 +#: libraries/messages.inc.php:748 server_privileges.php:1575 msgid "Remove selected users" msgstr "Сонгогдсон хэрэглэгчдийг хасах" -#: libraries/messages.inc.php:755 tbl_operations.php:338 +#: libraries/messages.inc.php:751 tbl_operations.php:338 msgid "Rename table to" msgstr "Хүснэгтийг да.нэрлэх" -#: libraries/messages.inc.php:756 view_operations.php:93 +#: libraries/messages.inc.php:752 view_operations.php:93 msgid "Rename view to" msgstr "" -#: libraries/messages.inc.php:757 tbl_operations.php:664 +#: libraries/messages.inc.php:753 tbl_operations.php:664 msgid "Repair" msgstr "" -#: libraries/messages.inc.php:759 +#: libraries/messages.inc.php:755 msgid "Replace NULL by" msgstr "NULL-ыг орлуулах нь" -#: libraries/messages.inc.php:760 +#: libraries/messages.inc.php:756 msgid "Replace table data with file" msgstr "Хүснэгтийн өгөгдлийг орлуулах файл" -#: libraries/messages.inc.php:761 server_replication.php:228 +#: libraries/messages.inc.php:757 server_replication.php:228 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: libraries/messages.inc.php:762 libraries/replication_gui.lib.php:236 +#: libraries/messages.inc.php:758 libraries/replication_gui.lib.php:236 #: server_replication.php:194 msgid "Add slave replication user" msgstr "" -#: libraries/messages.inc.php:763 server_replication.php:74 +#: libraries/messages.inc.php:759 server_replication.php:74 #, php-format msgid "Master server changed succesfully to %s" msgstr "" -#: libraries/messages.inc.php:764 server_replication.php:182 +#: libraries/messages.inc.php:760 server_replication.php:182 msgid "This server is configured as master in a replication process." msgstr "" -#: libraries/messages.inc.php:765 server_replication.php:322 +#: libraries/messages.inc.php:761 server_replication.php:322 msgid "Control slave:" msgstr "" -#: libraries/messages.inc.php:766 server_replication.php:65 +#: libraries/messages.inc.php:762 server_replication.php:65 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: libraries/messages.inc.php:767 server_replication.php:58 +#: libraries/messages.inc.php:763 server_replication.php:58 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: libraries/messages.inc.php:768 server_replication.php:221 +#: libraries/messages.inc.php:764 server_replication.php:221 msgid "Replicate all databases; Ignore:" msgstr "" -#: libraries/messages.inc.php:769 server_replication.php:222 +#: libraries/messages.inc.php:765 server_replication.php:222 msgid "Ignore all databases; Replicate:" msgstr "" -#: libraries/messages.inc.php:770 server_replication.php:218 +#: libraries/messages.inc.php:766 server_replication.php:218 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -4842,120 +4842,120 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: libraries/messages.inc.php:771 server_replication.php:217 +#: libraries/messages.inc.php:767 server_replication.php:217 msgid "Master configuration" msgstr "" -#: libraries/messages.inc.php:772 server_replication.php:181 +#: libraries/messages.inc.php:768 server_replication.php:181 #: server_replication.php:209 msgid "Master replication" msgstr "" -#: libraries/messages.inc.php:774 server_replication.php:230 +#: libraries/messages.inc.php:770 server_replication.php:230 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: libraries/messages.inc.php:775 server_replication.php:225 +#: libraries/messages.inc.php:771 server_replication.php:225 msgid "Please select databases:" msgstr "" -#: libraries/messages.inc.php:776 server_replication.php:210 +#: libraries/messages.inc.php:772 server_replication.php:210 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:188 +#: libraries/messages.inc.php:773 libraries/replication_gui.lib.php:188 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/messages.inc.php:778 server_replication.php:187 +#: libraries/messages.inc.php:774 server_replication.php:187 msgid "Show connected slaves" msgstr "" -#: libraries/messages.inc.php:779 libraries/messages.inc.php:885 +#: libraries/messages.inc.php:775 libraries/messages.inc.php:881 #: server_replication.php:184 server_status.php:281 msgid "Show master status" msgstr "" -#: libraries/messages.inc.php:780 server_replication.php:334 +#: libraries/messages.inc.php:776 server_replication.php:334 msgid "Skipping error(s) might lead into unsynchronized master and slave!" msgstr "" -#: libraries/messages.inc.php:781 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:51 #: server_replication.php:347 msgid "Change or reconfigure master server" msgstr "" -#: libraries/messages.inc.php:782 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:778 libraries/replication_gui.lib.php:51 msgid "Slave configuration" msgstr "" -#: libraries/messages.inc.php:783 server_replication.php:305 +#: libraries/messages.inc.php:779 server_replication.php:305 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: libraries/messages.inc.php:784 server_replication.php:332 +#: libraries/messages.inc.php:780 server_replication.php:332 msgid "Error management:" msgstr "" -#: libraries/messages.inc.php:785 server_replication.php:328 +#: libraries/messages.inc.php:781 server_replication.php:328 #, php-format msgid "IO Thread %s only" msgstr "" -#: libraries/messages.inc.php:786 server_replication.php:296 +#: libraries/messages.inc.php:782 server_replication.php:296 msgid "Slave IO Thread not running!" msgstr "" -#: libraries/messages.inc.php:787 server_replication.php:355 +#: libraries/messages.inc.php:783 server_replication.php:355 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/messages.inc.php:788 server_replication.php:326 +#: libraries/messages.inc.php:784 server_replication.php:326 msgid "Reset slave" msgstr "" -#: libraries/messages.inc.php:789 server_replication.php:308 +#: libraries/messages.inc.php:785 server_replication.php:308 msgid "See slave status table" msgstr "" -#: libraries/messages.inc.php:790 server_replication.php:336 +#: libraries/messages.inc.php:786 server_replication.php:336 msgid "Skip current error" msgstr "" -#: libraries/messages.inc.php:791 server_replication.php:340 +#: libraries/messages.inc.php:787 server_replication.php:340 msgid "errors." msgstr "" -#: libraries/messages.inc.php:792 server_replication.php:337 +#: libraries/messages.inc.php:788 server_replication.php:337 msgid "Skip next" msgstr "" -#: libraries/messages.inc.php:793 server_replication.php:248 +#: libraries/messages.inc.php:789 server_replication.php:248 msgid "Slave replication" msgstr "" -#: libraries/messages.inc.php:794 server_replication.php:293 +#: libraries/messages.inc.php:790 server_replication.php:293 msgid "Slave SQL Thread not running!" msgstr "" -#: libraries/messages.inc.php:795 server_replication.php:327 +#: libraries/messages.inc.php:791 server_replication.php:327 #, php-format msgid "SQL Thread %s only" msgstr "" -#: libraries/messages.inc.php:796 +#: libraries/messages.inc.php:792 #, php-format msgid "" "This MySQL server works as %s in replication process. For further " @@ -4963,159 +4963,159 @@ msgid "" "\"#replication\">replication section." msgstr "" -#: libraries/messages.inc.php:797 +#: libraries/messages.inc.php:793 msgid "Master status" msgstr "" -#: libraries/messages.inc.php:798 server_status.php:721 +#: libraries/messages.inc.php:794 server_status.php:721 msgid "Replication status" msgstr "" -#: libraries/messages.inc.php:799 +#: libraries/messages.inc.php:795 msgid "Slave status" msgstr "" -#: libraries/messages.inc.php:800 server_replication.php:311 +#: libraries/messages.inc.php:796 server_replication.php:311 msgid "Synchronize databases with master" msgstr "" -#: libraries/messages.inc.php:801 server_replication.php:71 +#: libraries/messages.inc.php:797 server_replication.php:71 msgid "Unable to change master" msgstr "" -#: libraries/messages.inc.php:802 server_replication.php:51 +#: libraries/messages.inc.php:798 server_replication.php:51 msgid "Unknown error" msgstr "" -#: libraries/messages.inc.php:803 main.php:163 pdf_pages.php:344 +#: libraries/messages.inc.php:799 main.php:163 pdf_pages.php:344 #: setup/lib/FormDisplay.tpl.php:216 tbl_change.php:1175 msgid "Reset" msgstr "Да.эхлэх" -#: libraries/messages.inc.php:804 server_privileges.php:591 +#: libraries/messages.inc.php:800 server_privileges.php:591 msgid "Resource limits" msgstr "Нөөцийн хязгаар" -#: libraries/messages.inc.php:805 tbl_change.php:1209 +#: libraries/messages.inc.php:801 tbl_change.php:1209 #, php-format msgid "Restart insertion with %s rows" msgstr "" -#: libraries/messages.inc.php:807 server_privileges.php:1578 +#: libraries/messages.inc.php:803 server_privileges.php:1578 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Устгахын төгсгөлд нь хэрэглэгчдээс идэвхтэй бүх онцгой эрхийг хүчингүй " "болгох." -#: libraries/messages.inc.php:808 server_privileges.php:1176 +#: libraries/messages.inc.php:804 server_privileges.php:1176 #, php-format msgid "You have revoked the privileges for %s" msgstr "Онцгой эрх %s -ыг хүчингүй болголоо" -#: libraries/messages.inc.php:809 server_privileges.php:1333 +#: libraries/messages.inc.php:805 server_privileges.php:1333 msgid "Revoke" msgstr "Хүчингүй" -#: libraries/messages.inc.php:810 libraries/mysql_charsets.lib.php:280 +#: libraries/messages.inc.php:806 libraries/mysql_charsets.lib.php:280 msgid "Romanian" msgstr "Румын" -#: libraries/messages.inc.php:813 tbl_printview.php:404 tbl_structure.php:786 +#: libraries/messages.inc.php:809 tbl_printview.php:404 tbl_structure.php:786 msgid "Row length" msgstr "Мөрийн урт" -#: libraries/messages.inc.php:815 tbl_printview.php:414 tbl_structure.php:794 +#: libraries/messages.inc.php:811 tbl_printview.php:414 tbl_structure.php:794 msgid " Row size " msgstr " Мөрийн хэмжээ " -#: libraries/messages.inc.php:821 tbl_printview.php:366 tbl_structure.php:726 +#: libraries/messages.inc.php:817 tbl_printview.php:366 tbl_structure.php:726 msgid "Row Statistics" msgstr "Мөрийн статистик" -#: libraries/messages.inc.php:822 +#: libraries/messages.inc.php:818 #, php-format msgid "running on %s" msgstr "%s дээр" -#: libraries/messages.inc.php:824 libraries/sql_query_form.lib.php:223 +#: libraries/messages.inc.php:820 libraries/sql_query_form.lib.php:223 #, php-format msgid "Run SQL query/queries on server %s" msgstr "%s сервэр дээр SQL асуудал/асуудлууд ажиллуулах" -#: libraries/messages.inc.php:825 libraries/sql_query_form.lib.php:240 +#: libraries/messages.inc.php:821 libraries/sql_query_form.lib.php:240 #: libraries/sql_query_form.lib.php:265 #, php-format msgid "Run SQL query/queries on database %s" msgstr "Өгөгдлийн сан %s дээрх SQL асуултыг ажиллуулах" -#: libraries/messages.inc.php:826 libraries/mysql_charsets.lib.php:337 +#: libraries/messages.inc.php:822 libraries/mysql_charsets.lib.php:337 msgid "Russian" msgstr "Орос" -#: libraries/messages.inc.php:829 pmd_general.php:68 +#: libraries/messages.inc.php:825 pmd_general.php:68 msgid "Save position" msgstr "Байрлал хадгалах" -#: libraries/messages.inc.php:830 libraries/tbl_properties.inc.php:776 +#: libraries/messages.inc.php:826 libraries/tbl_properties.inc.php:776 #: pdf_pages.php:484 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:214 setup/lib/FormDisplay.tpl.php:215 #: tbl_change.php:1126 tbl_indexes.php:248 tbl_relation.php:566 msgid "Save" msgstr "Хадгалах" -#: libraries/messages.inc.php:831 +#: libraries/messages.inc.php:827 msgid "The scale factor is too small to fit the schema on one page" msgstr "Хэт жижиг схемийг нэг хуудсанд дүүргэх" -#: libraries/messages.inc.php:843 main.php:298 +#: libraries/messages.inc.php:839 main.php:298 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "Тохиргооны файл одоо нууцлал шаардаж байна (blowfish_secret)." -#: libraries/messages.inc.php:844 navigation.php:353 navigation.php:516 +#: libraries/messages.inc.php:840 navigation.php:353 navigation.php:516 msgid "Please select a database" msgstr "Өгөгдлийн сан сонго" -#: libraries/messages.inc.php:846 server_binlog.php:120 +#: libraries/messages.inc.php:842 server_binlog.php:120 msgid "Select binary log to view" msgstr "Харах хоёртын log сонго" -#: libraries/messages.inc.php:847 tbl_select.php:270 +#: libraries/messages.inc.php:843 tbl_select.php:270 msgid "Select fields (at least one):" msgstr "Талбар сонгох (ядаж нэгийг):" -#: libraries/messages.inc.php:851 pdf_pages.php:320 +#: libraries/messages.inc.php:847 pdf_pages.php:320 msgid "Select Tables" msgstr "Хүснэгтүүд сонго" -#: libraries/messages.inc.php:853 server_status.php:404 +#: libraries/messages.inc.php:849 server_status.php:404 msgid "Sent" msgstr "Илгээгдэв" -#: libraries/messages.inc.php:857 libraries/select_server.lib.php:45 +#: libraries/messages.inc.php:853 libraries/select_server.lib.php:45 #: setup/frames/index.inc.php:97 setup/lib/messages.inc.php:115 msgid "Servers" msgstr "Сервэрүүд" -#: libraries/messages.inc.php:858 server_status.php:255 +#: libraries/messages.inc.php:854 server_status.php:255 msgid "Delayed inserts" msgstr "Давталттай оруулалт" -#: libraries/messages.inc.php:859 server_status.php:46 +#: libraries/messages.inc.php:855 server_status.php:46 msgid "Runtime Information" msgstr "Ажиллах үеийн мэдээлэл" -#: libraries/messages.inc.php:860 server_status.php:350 +#: libraries/messages.inc.php:856 server_status.php:350 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Энэ MySQL сервэр %s-д ажиллаж байна. Эхэлсэн нь %s." -#: libraries/messages.inc.php:861 libraries/server_links.inc.php:53 +#: libraries/messages.inc.php:857 libraries/server_links.inc.php:53 #: server_engines.php:112 server_engines.php:116 server_status.php:304 #: test/theme.php:105 msgid "Variables" msgstr "Утгууд" -#: libraries/messages.inc.php:862 server_status.php:383 +#: libraries/messages.inc.php:858 server_status.php:383 msgid "" "Server traffic: These tables show the network traffic statistics of " "this MySQL server since its startup." @@ -5123,11 +5123,11 @@ msgstr "" "Гуйвуулга: Эдгээр хүснэгтүүд нь MySQL сервэр эхэлсэн үеэс сүлжээний " "гуйвуулгыг харуулна." -#: libraries/messages.inc.php:863 server_variables.php:35 +#: libraries/messages.inc.php:859 server_variables.php:35 msgid "Server variables and settings" msgstr "Сервэрийн утгууд болон тохиргоонууд" -#: libraries/messages.inc.php:865 main.php:290 +#: libraries/messages.inc.php:861 main.php:290 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -5135,17 +5135,17 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: libraries/messages.inc.php:866 +#: libraries/messages.inc.php:862 msgid "" "Cannot start session without errors, please check errors given in your PHP " "and/or webserver log file and configure your PHP installation properly." msgstr "" -#: libraries/messages.inc.php:867 server_variables.php:55 +#: libraries/messages.inc.php:863 server_variables.php:55 msgid "Session value" msgstr "Сессон утга" -#: libraries/messages.inc.php:868 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:864 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 " @@ -5157,44 +5157,44 @@ msgstr "" "(\"'\") тавих шаардлагатай бол буруу ташуу зураасыг давхар хэрэглэ. (Ж: '\\" "\\xyz' эсвэл 'a\\'b')." -#: libraries/messages.inc.php:876 server_binlog.php:192 server_binlog.php:195 +#: libraries/messages.inc.php:872 server_binlog.php:192 server_binlog.php:195 #: server_processlist.php:49 server_processlist.php:51 msgid "Show Full Queries" msgstr "Бүтэн асуулт харуулах" -#: libraries/messages.inc.php:878 pmd_general.php:64 +#: libraries/messages.inc.php:874 pmd_general.php:64 msgid "Show/Hide left menu" msgstr "Харуулах/Нуух зүүн цэс" -#: libraries/messages.inc.php:880 sql.php:513 +#: libraries/messages.inc.php:876 sql.php:513 msgid "Showing as PHP code" msgstr "PHP кодоор харуулах" -#: libraries/messages.inc.php:882 sql.php:516 tbl_replace.php:360 +#: libraries/messages.inc.php:878 sql.php:516 tbl_replace.php:360 msgid "Showing SQL query" msgstr "SQL асуудал харуулах" -#: libraries/messages.inc.php:883 tbl_change.php:1132 +#: libraries/messages.inc.php:879 tbl_change.php:1132 msgid "Show insert query" msgstr "" -#: libraries/messages.inc.php:886 server_status.php:273 +#: libraries/messages.inc.php:882 server_status.php:273 msgid "Show open tables" msgstr "Нээлттэй хүснэгтүүдийг харуулах" -#: libraries/messages.inc.php:887 main.php:219 +#: libraries/messages.inc.php:883 main.php:219 msgid "Show PHP information" msgstr "PHP -ийн мэдээлэл харах" -#: libraries/messages.inc.php:889 server_status.php:278 +#: libraries/messages.inc.php:885 server_status.php:278 msgid "Show slave hosts" msgstr "Дагавар хостыг харуулах" -#: libraries/messages.inc.php:890 server_status.php:284 +#: libraries/messages.inc.php:886 server_status.php:284 msgid "Show slave status" msgstr "Дагавар төлвийг харуулах" -#: libraries/messages.inc.php:891 +#: libraries/messages.inc.php:887 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -5204,11 +5204,11 @@ msgstr "" "хэрэглэгдэх завсрын файлын утгаас хэтэрсэн хоёртын тэмдэглэлийн нөөцлөлд " "хэрэглэгдэх хэлэлцээрийн тоо." -#: libraries/messages.inc.php:892 +#: libraries/messages.inc.php:888 msgid "The number of transactions that used the temporary binary log cache." msgstr "Завсрын хоёртын тэмдэглэлийн нөөцөлөлт хэрэглэгдэх хэлэлцээрийн тоо." -#: libraries/messages.inc.php:893 +#: libraries/messages.inc.php:889 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -5220,11 +5220,11 @@ msgstr "" "оронд санах ойд суурилсан завсрын хүснэгтийн tmp хүснэгтийн хэмжээн утгыг " "нэмэгдүүлэхийг хүсэж байж болно." -#: libraries/messages.inc.php:894 +#: libraries/messages.inc.php:890 msgid "How many temporary files mysqld has created." msgstr "Хичнээн завсрын файл mysqld-д үүсгэгдэв." -#: libraries/messages.inc.php:895 +#: libraries/messages.inc.php:891 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -5232,7 +5232,7 @@ msgstr "" "Сервэрийн ажиллуулсан хэлэлцээрийн үед автоматаар үүссэн санах ойн " "хүснэгтүүдийн тоо." -#: libraries/messages.inc.php:896 +#: libraries/messages.inc.php:892 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -5240,7 +5240,7 @@ msgstr "" "Ижил алдаа өгөх (түлхүүр давхардсан байж болзошгүй) бүрт ДАВТАЛТТАЙ ОРУУЛАЛТ-" "аар бичигдсэн мөрүүдийн тоо." -#: libraries/messages.inc.php:897 +#: libraries/messages.inc.php:893 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -5248,23 +5248,23 @@ msgstr "" "Хэрэглэгдэж буй ДАВТАЛТТАЙ ОРУУЛАЛТ-ын thread баригчийн тоо. Ялгаатай " "хүснэгт бүр ДАВТАЛТТАЙ ОРУУЛАЛТ-д өөрийн thread-ийг хэрэглэнэ." -#: libraries/messages.inc.php:898 +#: libraries/messages.inc.php:894 msgid "The number of INSERT DELAYED rows written." msgstr "ДАВТАЛТТАЙ ОРУУЛАЛТ-аар бичигдсэн мөрийн тоо." -#: libraries/messages.inc.php:899 +#: libraries/messages.inc.php:895 msgid "The number of executed FLUSH statements." msgstr "ЦЭВЭРЛЭХ хэлэлцээрийн ажилласан тоо." -#: libraries/messages.inc.php:900 +#: libraries/messages.inc.php:896 msgid "The number of internal COMMIT statements." msgstr "дотоод COMMIT хэлэлцээриийн тоо." -#: libraries/messages.inc.php:901 +#: libraries/messages.inc.php:897 msgid "The number of times a row was deleted from a table." msgstr "Хүснэгтээс мөр устгасан тоо." -#: libraries/messages.inc.php:902 +#: libraries/messages.inc.php:898 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -5274,7 +5274,7 @@ msgstr "" "NDB Кластер хадгалуурын хөдөлгүүрийг асууж чадна. Үүнийг ололт гэж нэрлэнэ. " "Ололтын баригч нь ололт хийгдсэн хүснэгтийн хичнээн удааг илэрхийлэх тоо юм." -#: libraries/messages.inc.php:903 +#: libraries/messages.inc.php:899 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -5284,7 +5284,7 @@ msgstr "" "бүтэн индекс шалгалтыг энэ сервэр хийснийг илтгэнэ; Жишээлбэл, SELECT col1 " "FROM foo, энд col1 индекслэгдсэн байна." -#: libraries/messages.inc.php:904 +#: libraries/messages.inc.php:900 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -5292,7 +5292,7 @@ msgstr "" "Түлхүүрт суурилсан мөр унших хүсэлтийн тоо. Хэрэв энэ нь өндөр бол, таны " "асуудлууд болон хүснэгтүүд зөв индекслэгдсэнийг илтгэнэ." -#: libraries/messages.inc.php:905 +#: libraries/messages.inc.php:901 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -5302,7 +5302,7 @@ msgstr "" "та мужийн нөхцөлтэйгээр баганын индекс шаардах эсвэл индекс шалгалтыг хийхэд " "нэмэгдэж байдаг." -#: libraries/messages.inc.php:906 +#: libraries/messages.inc.php:902 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -5310,7 +5310,7 @@ msgstr "" "Түлхүүрийн дараалал дахь өмнөх мөрийг унших хүсэлтийн тоо. Энэ унших арга нь " "голчлон ORDER BY ... DESC-д хэрэглэгддэг." -#: libraries/messages.inc.php:907 +#: libraries/messages.inc.php:903 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -5322,7 +5322,7 @@ msgstr "" "Та магадгүй хүснэгтийг бүрэн шалгахыг MySQL-ээс цөөнгүй хүссэн эсвэл нэгдэлд " "түлхүүрийг зөв ашиглаагүй байх." -#: libraries/messages.inc.php:908 +#: libraries/messages.inc.php:904 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -5334,35 +5334,35 @@ msgstr "" "ерөнхийдөө, таны хүснэгтүүд зөв индекслэгдээгүй эсвэл индексүүд чинь " "асуудалд зөв бичигдээгүйг илтгэнэ." -#: libraries/messages.inc.php:909 +#: libraries/messages.inc.php:905 msgid "The number of internal ROLLBACK statements." msgstr "Дотоод ROLLBACK хэлэлцээрийн тоо." -#: libraries/messages.inc.php:910 +#: libraries/messages.inc.php:906 msgid "The number of requests to update a row in a table." msgstr "Хүснэгт дэх мөрийг шинэчлэх хүсэлтийн тоо." -#: libraries/messages.inc.php:911 +#: libraries/messages.inc.php:907 msgid "The number of requests to insert a row in a table." msgstr "Хүснэгтэд мөр оруулах хүсэлтийн тоо." -#: libraries/messages.inc.php:912 +#: libraries/messages.inc.php:908 msgid "The number of pages containing data (dirty or clean)." msgstr "Өгөгдөл агуулж буй (бохир, цэвэр) хуудсын тоо." -#: libraries/messages.inc.php:913 +#: libraries/messages.inc.php:909 msgid "The number of pages currently dirty." msgstr "Одоогоор бохир байгаа хуудсын тоо." -#: libraries/messages.inc.php:914 +#: libraries/messages.inc.php:910 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Цэвэрлэх хүсэлт дэх буфферийн хуудсын тоо." -#: libraries/messages.inc.php:915 +#: libraries/messages.inc.php:911 msgid "The number of free pages." msgstr "Чөлөөтэй байгаа хуудсуудын тоо." -#: libraries/messages.inc.php:916 +#: libraries/messages.inc.php:912 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -5372,7 +5372,7 @@ msgstr "" "одоогоор унших, бичих эсвэл цэвэрлэгдэж чадаагүй, мөн бусад шалгааны улмаас " "хасагдсан." -#: libraries/messages.inc.php:917 +#: libraries/messages.inc.php:913 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -5384,11 +5384,11 @@ msgstr "" "InndoDB буфферийн нөөцийн нийт хуудас - Innodb_буфферийн нөөцийн чөлөөт " "хуудас - Innodb_буфферийн нөөцийн хуудсын өгөгдөл зэргээс бодогддог." -#: libraries/messages.inc.php:918 +#: libraries/messages.inc.php:914 msgid "Total size of buffer pool, in pages." msgstr "Хуудас дахь буфферийн нөөцийн хэмжээ." -#: libraries/messages.inc.php:919 +#: libraries/messages.inc.php:915 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -5396,7 +5396,7 @@ msgstr "" "InnoDB үүсгэсэн \"санамсаргүй\" өмнөх уншилтын тоо. Замбараагүй " "эрэмбэлэгдсэн хүснэгтийн нилээд хувийг шалгасан асуудлыг илэрхийлнэ." -#: libraries/messages.inc.php:920 +#: libraries/messages.inc.php:916 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -5404,11 +5404,11 @@ msgstr "" "InnoDB үүсгэсэн дараалсан өмнөх уншилтын тоо. Хүснэгтийн дараалсан бүтэн " "шалгалтыг InnoDB хийснийг илэрхийлнэ." -#: libraries/messages.inc.php:921 +#: libraries/messages.inc.php:917 msgid "The number of logical read requests InnoDB has done." msgstr "InndoDB-ийн хийсэн логик уншилтын хүсэлтийн тоо." -#: libraries/messages.inc.php:922 +#: libraries/messages.inc.php:918 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -5416,7 +5416,7 @@ msgstr "" "InnoDB буфферийн нөөцөөс нийцэмжгүй ба ганц хуудас уншилт хийсэн логик " "уншилтын тоо." -#: libraries/messages.inc.php:923 +#: libraries/messages.inc.php:919 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -5425,218 +5425,218 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/messages.inc.php:924 +#: libraries/messages.inc.php:920 msgid "The number writes done to the InnoDB buffer pool." msgstr "InnoDB буфферийн нөөц рүү бичигдэж дууссан тоо." -#: libraries/messages.inc.php:925 +#: libraries/messages.inc.php:921 msgid "The number of fsync() operations so far." msgstr "fsync() үйлдлийн ойрхон хийгдсэн тоо." -#: libraries/messages.inc.php:926 +#: libraries/messages.inc.php:922 msgid "The current number of pending fsync() operations." msgstr "fsync() үйлдлийн хүлээгдэж буй тухайн тоо." -#: libraries/messages.inc.php:927 +#: libraries/messages.inc.php:923 msgid "The current number of pending reads." msgstr "Уншихаар хүлээгдэж буй тухайн тоо." -#: libraries/messages.inc.php:928 +#: libraries/messages.inc.php:924 msgid "The current number of pending writes." msgstr "Бичихээр хүлээгдэж буй тухайн тоо." -#: libraries/messages.inc.php:929 +#: libraries/messages.inc.php:925 msgid "The amount of data read so far, in bytes." msgstr "Өгөгдөл ойрхон уншсан дүн, байтаар." -#: libraries/messages.inc.php:930 +#: libraries/messages.inc.php:926 msgid "The total number of data reads." msgstr "Өгөгдөл уншилтийн нийт тоо." -#: libraries/messages.inc.php:931 +#: libraries/messages.inc.php:927 msgid "The total number of data writes." msgstr "Өгөгдөл бичилтийн нийт тоо." -#: libraries/messages.inc.php:932 +#: libraries/messages.inc.php:928 msgid "The amount of data written so far, in bytes." msgstr "Өгөгдөл ойрхон бичсэн дүн, байтаар." -#: libraries/messages.inc.php:933 +#: libraries/messages.inc.php:929 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/messages.inc.php:934 +#: libraries/messages.inc.php:930 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/messages.inc.php:935 +#: libraries/messages.inc.php:931 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/messages.inc.php:936 +#: libraries/messages.inc.php:932 msgid "The number of log write requests." msgstr "Тэмдэглэл бичих хүсэлтийн тоо." -#: libraries/messages.inc.php:937 +#: libraries/messages.inc.php:933 msgid "The number of physical writes to the log file." msgstr "Тэмдэглэлийн файлын физик бичилтийн тоо." -#: libraries/messages.inc.php:938 +#: libraries/messages.inc.php:934 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/messages.inc.php:939 +#: libraries/messages.inc.php:935 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/messages.inc.php:940 +#: libraries/messages.inc.php:936 msgid "Pending log file writes." msgstr "Тэмдэглэлийн файл руу бичих хүлээлт." -#: libraries/messages.inc.php:941 +#: libraries/messages.inc.php:937 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/messages.inc.php:942 +#: libraries/messages.inc.php:938 msgid "The number of pages created." msgstr "" -#: libraries/messages.inc.php:943 +#: libraries/messages.inc.php:939 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: libraries/messages.inc.php:944 +#: libraries/messages.inc.php:940 msgid "The number of pages read." msgstr "" -#: libraries/messages.inc.php:945 +#: libraries/messages.inc.php:941 msgid "The number of pages written." msgstr "" -#: libraries/messages.inc.php:946 +#: libraries/messages.inc.php:942 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/messages.inc.php:947 +#: libraries/messages.inc.php:943 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/messages.inc.php:948 +#: libraries/messages.inc.php:944 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/messages.inc.php:949 +#: libraries/messages.inc.php:945 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/messages.inc.php:950 +#: libraries/messages.inc.php:946 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/messages.inc.php:951 +#: libraries/messages.inc.php:947 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/messages.inc.php:952 +#: libraries/messages.inc.php:948 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/messages.inc.php:953 +#: libraries/messages.inc.php:949 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/messages.inc.php:954 +#: libraries/messages.inc.php:950 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/messages.inc.php:955 +#: libraries/messages.inc.php:951 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/messages.inc.php:956 +#: libraries/messages.inc.php:952 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: libraries/messages.inc.php:957 +#: libraries/messages.inc.php:953 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/messages.inc.php:958 +#: libraries/messages.inc.php:954 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/messages.inc.php:959 +#: libraries/messages.inc.php:955 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/messages.inc.php:960 +#: libraries/messages.inc.php:956 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/messages.inc.php:961 +#: libraries/messages.inc.php:957 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/messages.inc.php:962 +#: libraries/messages.inc.php:958 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/messages.inc.php:963 +#: libraries/messages.inc.php:959 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/messages.inc.php:964 +#: libraries/messages.inc.php:960 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/messages.inc.php:965 +#: libraries/messages.inc.php:961 msgid "The number of files that are open." msgstr "" -#: libraries/messages.inc.php:966 +#: libraries/messages.inc.php:962 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/messages.inc.php:967 +#: libraries/messages.inc.php:963 msgid "The number of tables that are open." msgstr "" -#: libraries/messages.inc.php:968 +#: libraries/messages.inc.php:964 msgid "The number of free memory blocks in query cache." msgstr "" -#: libraries/messages.inc.php:969 +#: libraries/messages.inc.php:965 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/messages.inc.php:970 +#: libraries/messages.inc.php:966 msgid "The number of cache hits." msgstr "" -#: libraries/messages.inc.php:971 +#: libraries/messages.inc.php:967 msgid "The number of queries added to the cache." msgstr "" -#: libraries/messages.inc.php:972 +#: libraries/messages.inc.php:968 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -5644,104 +5644,104 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/messages.inc.php:973 +#: libraries/messages.inc.php:969 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/messages.inc.php:974 +#: libraries/messages.inc.php:970 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/messages.inc.php:975 +#: libraries/messages.inc.php:971 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/messages.inc.php:976 +#: libraries/messages.inc.php:972 msgctxt "$strShowStatusReset" msgid "Reset" msgstr "Дахих" -#: libraries/messages.inc.php:977 +#: libraries/messages.inc.php:973 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/messages.inc.php:978 +#: libraries/messages.inc.php:974 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: libraries/messages.inc.php:979 +#: libraries/messages.inc.php:975 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/messages.inc.php:980 +#: libraries/messages.inc.php:976 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: libraries/messages.inc.php:981 +#: libraries/messages.inc.php:977 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/messages.inc.php:982 +#: libraries/messages.inc.php:978 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/messages.inc.php:983 +#: libraries/messages.inc.php:979 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/messages.inc.php:984 +#: libraries/messages.inc.php:980 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/messages.inc.php:985 +#: libraries/messages.inc.php:981 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/messages.inc.php:986 +#: libraries/messages.inc.php:982 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/messages.inc.php:987 +#: libraries/messages.inc.php:983 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/messages.inc.php:988 +#: libraries/messages.inc.php:984 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/messages.inc.php:989 +#: libraries/messages.inc.php:985 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/messages.inc.php:990 +#: libraries/messages.inc.php:986 msgid "The number of sorted rows." msgstr "Эрэмбэлэгдсэн мөрийн тоо." -#: libraries/messages.inc.php:991 +#: libraries/messages.inc.php:987 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/messages.inc.php:992 +#: libraries/messages.inc.php:988 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/messages.inc.php:993 +#: libraries/messages.inc.php:989 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -5749,18 +5749,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/messages.inc.php:994 +#: libraries/messages.inc.php:990 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/messages.inc.php:995 +#: libraries/messages.inc.php:991 msgid "The number of currently open connections." msgstr "" -#: libraries/messages.inc.php:996 +#: libraries/messages.inc.php:992 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -5768,74 +5768,74 @@ msgid "" "implementation.)" msgstr "" -#: libraries/messages.inc.php:997 +#: libraries/messages.inc.php:993 msgid "The number of threads that are not sleeping." msgstr "" -#: libraries/messages.inc.php:999 tbl_printview.php:75 +#: libraries/messages.inc.php:995 tbl_printview.php:75 msgid "Show tables" msgstr "Хүснэгтүүдийг харуулах" -#: libraries/messages.inc.php:1000 libraries/sql_query_form.lib.php:396 +#: libraries/messages.inc.php:996 libraries/sql_query_form.lib.php:396 msgid " Show this query here again " msgstr " Уг асуултыг энд дахин харуулах " -#: libraries/messages.inc.php:1001 libraries/mysql_charsets.lib.php:217 +#: libraries/messages.inc.php:997 libraries/mysql_charsets.lib.php:217 #: libraries/mysql_charsets.lib.php:342 msgid "Simplified Chinese" msgstr "Энгийн хятад" -#: libraries/messages.inc.php:1002 tbl_operations.php:258 +#: libraries/messages.inc.php:998 tbl_operations.php:258 msgid "(singly)" msgstr "(дан)" -#: libraries/messages.inc.php:1005 libraries/replication_gui.lib.php:52 +#: libraries/messages.inc.php:1001 libraries/replication_gui.lib.php:52 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" msgstr "" -#: libraries/messages.inc.php:1006 libraries/mysql_charsets.lib.php:283 +#: libraries/messages.inc.php:1002 libraries/mysql_charsets.lib.php:283 msgid "Slovak" msgstr "Словак" -#: libraries/messages.inc.php:1007 libraries/mysql_charsets.lib.php:286 +#: libraries/messages.inc.php:1003 libraries/mysql_charsets.lib.php:286 msgid "Slovenian" msgstr "Словени" -#: libraries/messages.inc.php:1008 pmd_general.php:95 +#: libraries/messages.inc.php:1004 pmd_general.php:95 msgid "Small/Big All" msgstr "Жижиш/Том Бүгдийг" -#: libraries/messages.inc.php:1009 pmd_general.php:91 +#: libraries/messages.inc.php:1005 pmd_general.php:91 msgid "Snap to grid" msgstr "" -#: libraries/messages.inc.php:1011 server_synchronize.php:1167 +#: libraries/messages.inc.php:1007 server_synchronize.php:1167 msgid "Socket" msgstr "" -#: libraries/messages.inc.php:1013 server_status.php:259 +#: libraries/messages.inc.php:1009 server_status.php:259 msgid "Sorting" msgstr "Эрэмбэлж байна" -#: libraries/messages.inc.php:1015 tbl_printview.php:310 tbl_structure.php:657 +#: libraries/messages.inc.php:1011 tbl_printview.php:310 tbl_structure.php:657 msgid "Space usage" msgstr "Ашиглалтын зай" -#: libraries/messages.inc.php:1016 libraries/mysql_charsets.lib.php:289 +#: libraries/messages.inc.php:1012 libraries/mysql_charsets.lib.php:289 msgid "Spanish" msgstr "Испани" -#: libraries/messages.inc.php:1019 +#: libraries/messages.inc.php:1015 msgid "Export type" msgstr "Гаргах төрөл" -#: libraries/messages.inc.php:1020 +#: libraries/messages.inc.php:1016 msgid "Export time in UTC" msgstr "" -#: libraries/messages.inc.php:1021 libraries/sqlparser.lib.php:173 +#: libraries/messages.inc.php:1017 libraries/sqlparser.lib.php:173 msgid "" "There is a chance that you may have found a bug in the SQL parser. Please " "examine your query closely, and check that the quotes are correct and not " @@ -5857,7 +5857,7 @@ msgstr "" "please reduce your SQL query input to the single query that causes problems, " "and submit a bug report with the data chunk in the CUT section below:" -#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:137 +#: libraries/messages.inc.php:1018 libraries/sqlparser.lib.php:137 msgid "" "There seems to be an error in your SQL query. The MySQL server error output " "below, if there is any, may also help you in diagnosing the problem" @@ -5865,413 +5865,413 @@ msgstr "" "There seems to be an error in your SQL query. The MySQL server error output " "below, if there is any, may also help you in diagnosing the problem" -#: libraries/messages.inc.php:1026 libraries/sqlparser.lib.php:495 +#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:495 msgid "Invalid Identifer" msgstr "Буруу тодорхойлогч" -#: libraries/messages.inc.php:1027 libraries/sqlparser.lib.php:344 +#: libraries/messages.inc.php:1023 libraries/sqlparser.lib.php:344 msgid "Unclosed quote" msgstr "Хаагдаагүй хашилт" -#: libraries/messages.inc.php:1028 libraries/sqlparser.lib.php:612 +#: libraries/messages.inc.php:1024 libraries/sqlparser.lib.php:612 msgid "Unknown Punctuation String" msgstr "Тэмдэгт мөрийн үл мэдэх цэг тэмдэглэл" -#: libraries/messages.inc.php:1030 server_replication.php:327 +#: libraries/messages.inc.php:1026 server_replication.php:327 #: server_replication.php:328 msgid "Start" msgstr "" -#: libraries/messages.inc.php:1033 tbl_printview.php:369 tbl_structure.php:729 +#: libraries/messages.inc.php:1029 tbl_printview.php:369 tbl_structure.php:729 msgid "Statements" msgstr "Баримтжуулал" -#: libraries/messages.inc.php:1034 tbl_printview.php:380 tbl_structure.php:741 +#: libraries/messages.inc.php:1030 tbl_printview.php:380 tbl_structure.php:741 msgid "static" msgstr "" -#: libraries/messages.inc.php:1035 server_status.php:388 +#: libraries/messages.inc.php:1031 server_status.php:388 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: libraries/messages.inc.php:1038 server_replication.php:327 +#: libraries/messages.inc.php:1034 server_replication.php:327 #: server_replication.php:328 msgid "Stop" msgstr "" -#: libraries/messages.inc.php:1039 server_engines.php:49 +#: libraries/messages.inc.php:1035 server_engines.php:49 msgid "Storage Engines" msgstr "Агуулах хөдөлгүүрүүд" -#: libraries/messages.inc.php:1040 libraries/tbl_properties.inc.php:726 +#: libraries/messages.inc.php:1036 libraries/tbl_properties.inc.php:726 #: server_engines.php:58 tbl_operations.php:353 msgid "Storage Engine" msgstr "Агуулах хөдөлгүүр" -#: libraries/messages.inc.php:1042 +#: libraries/messages.inc.php:1038 msgid "CSV for MS Excel" msgstr "CSV өгөгдлийг MS Excel-ээр" -#: libraries/messages.inc.php:1044 tbl_structure.php:516 tbl_structure.php:518 +#: libraries/messages.inc.php:1040 tbl_structure.php:516 tbl_structure.php:518 msgid "Propose table structure" msgstr "Хүснэгтийн бүтцийг таниулах" -#: libraries/messages.inc.php:1045 server_synchronize.php:424 +#: libraries/messages.inc.php:1041 server_synchronize.php:424 #: server_synchronize.php:867 msgid "Structure Difference" msgstr "" -#: libraries/messages.inc.php:1049 server_synchronize.php:265 +#: libraries/messages.inc.php:1045 server_synchronize.php:265 msgid "Structure Synchronization" msgstr "" -#: libraries/messages.inc.php:1050 libraries/sql_query_form.lib.php:462 +#: libraries/messages.inc.php:1046 libraries/sql_query_form.lib.php:462 msgid "Submit" msgstr "Илгээ" -#: libraries/messages.inc.php:1052 main.php:358 +#: libraries/messages.inc.php:1048 main.php:358 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " "issues." msgstr "" -#: libraries/messages.inc.php:1054 libraries/mysql_charsets.lib.php:295 +#: libraries/messages.inc.php:1050 libraries/mysql_charsets.lib.php:295 #: libraries/mysql_charsets.lib.php:392 msgid "Swedish" msgstr "Швед" -#: libraries/messages.inc.php:1060 tbl_operations.php:556 +#: libraries/messages.inc.php:1056 tbl_operations.php:556 msgid "Switch to copied table" msgstr "Хуулагдсан хүснэгт рүү шилжих" -#: libraries/messages.inc.php:1061 server_synchronize.php:1213 +#: libraries/messages.inc.php:1057 server_synchronize.php:1213 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." msgstr "" -#: libraries/messages.inc.php:1062 server_synchronize.php:451 +#: libraries/messages.inc.php:1058 server_synchronize.php:451 #: server_synchronize.php:896 msgid "Synchronize Databases" msgstr "" -#: libraries/messages.inc.php:1063 libraries/server_links.inc.php:92 +#: libraries/messages.inc.php:1059 libraries/server_links.inc.php:92 #: server_synchronize.php:1092 server_synchronize.php:1100 msgid "Synchronize" msgstr "" -#: libraries/messages.inc.php:1065 server_synchronize.php:430 +#: libraries/messages.inc.php:1061 server_synchronize.php:430 #: server_synchronize.php:873 msgid "Add column(s)" msgstr "" -#: libraries/messages.inc.php:1066 tbl_create.php:62 +#: libraries/messages.inc.php:1062 tbl_create.php:62 #, php-format msgid "Table %s already exists!" msgstr "Хүснэгт %s нь оршин байна!" -#: libraries/messages.inc.php:1067 server_synchronize.php:432 +#: libraries/messages.inc.php:1063 server_synchronize.php:432 #: server_synchronize.php:875 msgid "Alter column(s)" msgstr "" -#: libraries/messages.inc.php:1068 tbl_addfield.php:189 tbl_alter.php:103 +#: libraries/messages.inc.php:1064 tbl_addfield.php:189 tbl_alter.php:103 #: tbl_indexes.php:98 #, php-format msgid "Table %1$s has been altered successfully" msgstr "" -#: libraries/messages.inc.php:1069 server_synchronize.php:434 +#: libraries/messages.inc.php:1065 server_synchronize.php:434 #: server_synchronize.php:877 msgid "Apply index(s)" msgstr "" -#: libraries/messages.inc.php:1071 server_synchronize.php:446 +#: libraries/messages.inc.php:1067 server_synchronize.php:446 #: server_synchronize.php:890 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: libraries/messages.inc.php:1072 tbl_move_copy.php:82 +#: libraries/messages.inc.php:1068 tbl_move_copy.php:82 msgid "The table name is empty!" msgstr "Хүснэгтийн нэр хоосон байна!" -#: libraries/messages.inc.php:1073 tbl_create.php:249 +#: libraries/messages.inc.php:1069 tbl_create.php:249 #, php-format msgid "Table %1$s has been created." msgstr "" -#: libraries/messages.inc.php:1076 tbl_operations.php:628 +#: libraries/messages.inc.php:1072 tbl_operations.php:628 #, php-format msgid "Table %s has been flushed" msgstr "Хүснэгт %s нь flushed боллоо" -#: libraries/messages.inc.php:1077 server_synchronize.php:436 +#: libraries/messages.inc.php:1073 server_synchronize.php:436 #: server_synchronize.php:879 msgid "Insert row(s)" msgstr "" -#: libraries/messages.inc.php:1078 libraries/tbl_links.inc.php:107 +#: libraries/messages.inc.php:1074 libraries/tbl_links.inc.php:107 #: libraries/tbl_links.inc.php:140 libraries/tbl_links.inc.php:141 msgid "Table seems to be empty!" msgstr "Хүснэг хоосон үзэгдэж байна!" -#: libraries/messages.inc.php:1079 tbl_operations.php:568 +#: libraries/messages.inc.php:1075 tbl_operations.php:568 msgid "Table maintenance" msgstr "Хүснэгтийн ашиглалт" -#: libraries/messages.inc.php:1080 libraries/tbl_properties.inc.php:618 +#: libraries/messages.inc.php:1076 libraries/tbl_properties.inc.php:618 #: server_synchronize.php:428 server_synchronize.php:871 msgid "Table name" msgstr "Хүснэгтийн нэр" -#: libraries/messages.inc.php:1081 pdf_schema.php:1116 +#: libraries/messages.inc.php:1077 pdf_schema.php:1116 msgid "Table of contents" msgstr "Агуулгын хүснэгт" -#: libraries/messages.inc.php:1082 tbl_operations.php:334 +#: libraries/messages.inc.php:1078 tbl_operations.php:334 msgid "Table options" msgstr "Хүснэгтийн сонголтууд" -#: libraries/messages.inc.php:1083 server_synchronize.php:431 +#: libraries/messages.inc.php:1079 server_synchronize.php:431 #: server_synchronize.php:874 msgid "Remove column(s)" msgstr "" -#: libraries/messages.inc.php:1084 server_synchronize.php:433 +#: libraries/messages.inc.php:1080 server_synchronize.php:433 #: server_synchronize.php:876 msgid "Remove index(s)" msgstr "" -#: libraries/messages.inc.php:1088 server_synchronize.php:435 +#: libraries/messages.inc.php:1084 server_synchronize.php:435 #: server_synchronize.php:878 msgid "Update row(s)" msgstr "" -#: libraries/messages.inc.php:1090 server_synchronize.php:942 +#: libraries/messages.inc.php:1086 server_synchronize.php:942 msgid "Target database has been synchronized with source database" msgstr "" -#: libraries/messages.inc.php:1091 server_privileges.php:392 +#: libraries/messages.inc.php:1087 server_privileges.php:392 #: server_privileges.php:527 server_privileges.php:1679 #: server_privileges.php:1685 msgid "Table-specific privileges" msgstr " Хүснэгтийн тусгай онцгой эрхүүд" -#: libraries/messages.inc.php:1092 server_status.php:254 +#: libraries/messages.inc.php:1088 server_status.php:254 msgid "Temporary data" msgstr "Завсрын өгөгдөл" -#: libraries/messages.inc.php:1093 tbl_change.php:728 +#: libraries/messages.inc.php:1089 tbl_change.php:728 msgid " Because of its length,
this field might not be editable " msgstr " Яагаад гэвэл урт нь их,
энэ талбар засагдахгүй " -#: libraries/messages.inc.php:1094 +#: libraries/messages.inc.php:1090 msgid "Texy! text" msgstr "" -#: libraries/messages.inc.php:1095 libraries/mysql_charsets.lib.php:298 +#: libraries/messages.inc.php:1091 libraries/mysql_charsets.lib.php:298 #: libraries/mysql_charsets.lib.php:395 msgid "Thai" msgstr "Таи" -#: libraries/messages.inc.php:1102 libraries/replication_gui.lib.php:308 +#: libraries/messages.inc.php:1098 libraries/replication_gui.lib.php:308 #: server_privileges.php:734 msgid "This Host" msgstr "Энэ хост" -#: libraries/messages.inc.php:1103 server_status.php:252 +#: libraries/messages.inc.php:1099 server_status.php:252 msgid "Threads" msgstr "Thread-үүд" -#: libraries/messages.inc.php:1104 server_processlist.php:22 +#: libraries/messages.inc.php:1100 server_processlist.php:22 #, php-format msgid "Thread %s was successfully killed." msgstr "Thread %s нь устгагдав." -#: libraries/messages.inc.php:1106 +#: libraries/messages.inc.php:1102 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." msgstr "" -#: libraries/messages.inc.php:1109 pmd_pdf.php:94 +#: libraries/messages.inc.php:1105 pmd_pdf.php:94 msgid "to/from page" msgstr "хаанаас/хаашаа хуудас" -#: libraries/messages.inc.php:1110 pdf_pages.php:343 +#: libraries/messages.inc.php:1106 pdf_pages.php:343 msgid "Toggle scratchboard" msgstr "toggle scratchboard" -#: libraries/messages.inc.php:1111 pmd_general.php:99 +#: libraries/messages.inc.php:1107 pmd_general.php:99 msgid "Toggle small/big" msgstr "" -#: libraries/messages.inc.php:1112 pmd_help.php:27 +#: libraries/messages.inc.php:1108 pmd_help.php:27 msgid "To select relation, click :" msgstr "Холбоо сонгохдоо, дарах нь :" -#: libraries/messages.inc.php:1115 libraries/tbl_links.inc.php:149 +#: libraries/messages.inc.php:1111 libraries/tbl_links.inc.php:149 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" -#: libraries/messages.inc.php:1116 tbl_tracking.php:655 +#: libraries/messages.inc.php:1112 tbl_tracking.php:655 msgid "Activate now" msgstr "" -#: libraries/messages.inc.php:1117 tbl_tracking.php:653 +#: libraries/messages.inc.php:1113 tbl_tracking.php:653 #, php-format msgid "Activate tracking for %s.%s" msgstr "" -#: libraries/messages.inc.php:1118 tbl_tracking.php:221 +#: libraries/messages.inc.php:1114 tbl_tracking.php:221 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/messages.inc.php:1119 tbl_tracking.php:688 +#: libraries/messages.inc.php:1115 tbl_tracking.php:688 msgid "Create version" msgstr "" -#: libraries/messages.inc.php:1120 tbl_tracking.php:668 +#: libraries/messages.inc.php:1116 tbl_tracking.php:668 #, php-format msgid "Create version %s of %s.%s" msgstr "" -#: libraries/messages.inc.php:1122 tbl_tracking.php:412 +#: libraries/messages.inc.php:1118 tbl_tracking.php:412 msgid "Data definition statement" msgstr "" -#: libraries/messages.inc.php:1123 tbl_tracking.php:463 +#: libraries/messages.inc.php:1119 tbl_tracking.php:463 msgid "Data manipulation statement" msgstr "" -#: libraries/messages.inc.php:1124 tbl_tracking.php:410 tbl_tracking.php:461 +#: libraries/messages.inc.php:1120 tbl_tracking.php:410 tbl_tracking.php:461 msgid "Date" msgstr "" -#: libraries/messages.inc.php:1125 tbl_tracking.php:642 +#: libraries/messages.inc.php:1121 tbl_tracking.php:642 msgid "Deactivate now" msgstr "" -#: libraries/messages.inc.php:1126 tbl_tracking.php:640 +#: libraries/messages.inc.php:1122 tbl_tracking.php:640 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "" -#: libraries/messages.inc.php:1127 tbl_tracking.php:521 +#: libraries/messages.inc.php:1123 tbl_tracking.php:521 #, php-format msgid "Export as %s" msgstr "" -#: libraries/messages.inc.php:1130 tbl_tracking.php:251 tbl_tracking.php:379 +#: libraries/messages.inc.php:1126 tbl_tracking.php:251 tbl_tracking.php:379 msgid "Close" msgstr "" -#: libraries/messages.inc.php:1131 tbl_tracking.php:114 +#: libraries/messages.inc.php:1127 tbl_tracking.php:114 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/messages.inc.php:1133 tbl_tracking.php:397 tbl_tracking.php:504 +#: libraries/messages.inc.php:1129 tbl_tracking.php:397 tbl_tracking.php:504 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "" -#: libraries/messages.inc.php:1134 tbl_tracking.php:561 +#: libraries/messages.inc.php:1130 tbl_tracking.php:561 msgid "Show versions" msgstr "" -#: libraries/messages.inc.php:1135 tbl_tracking.php:507 +#: libraries/messages.inc.php:1131 tbl_tracking.php:507 msgid "SQL dump (file download)" msgstr "" -#: libraries/messages.inc.php:1136 tbl_tracking.php:508 +#: libraries/messages.inc.php:1132 tbl_tracking.php:508 msgid "SQL dump" msgstr "" -#: libraries/messages.inc.php:1137 tbl_tracking.php:213 +#: libraries/messages.inc.php:1133 tbl_tracking.php:213 msgid "SQL statements executed." msgstr "" -#: libraries/messages.inc.php:1138 +#: libraries/messages.inc.php:1134 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/messages.inc.php:1139 tbl_tracking.php:509 +#: libraries/messages.inc.php:1135 tbl_tracking.php:509 msgid "SQL execution" msgstr "" -#: libraries/messages.inc.php:1140 tbl_tracking.php:230 +#: libraries/messages.inc.php:1136 tbl_tracking.php:230 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/messages.inc.php:1141 tbl_tracking.php:381 +#: libraries/messages.inc.php:1137 tbl_tracking.php:381 msgid "Tracking statements" msgstr "" -#: libraries/messages.inc.php:1148 tbl_tracking.php:593 +#: libraries/messages.inc.php:1144 tbl_tracking.php:593 msgid "Version" msgstr "" -#: libraries/messages.inc.php:1149 tbl_tracking.php:672 +#: libraries/messages.inc.php:1145 tbl_tracking.php:672 msgid "Track these data definition statements:" msgstr "" -#: libraries/messages.inc.php:1150 tbl_tracking.php:680 +#: libraries/messages.inc.php:1146 tbl_tracking.php:680 msgid "Track these data manipulation statements:" msgstr "" -#: libraries/messages.inc.php:1155 tbl_tracking.php:411 tbl_tracking.php:462 +#: libraries/messages.inc.php:1151 tbl_tracking.php:411 tbl_tracking.php:462 msgid "Username" msgstr "" -#: libraries/messages.inc.php:1156 tbl_tracking.php:203 +#: libraries/messages.inc.php:1152 tbl_tracking.php:203 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "" -#: libraries/messages.inc.php:1157 tbl_tracking.php:187 +#: libraries/messages.inc.php:1153 tbl_tracking.php:187 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "" -#: libraries/messages.inc.php:1158 tbl_tracking.php:195 +#: libraries/messages.inc.php:1154 tbl_tracking.php:195 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "" -#: libraries/messages.inc.php:1159 tbl_tracking.php:262 +#: libraries/messages.inc.php:1155 tbl_tracking.php:262 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/messages.inc.php:1161 tbl_tracking.php:220 +#: libraries/messages.inc.php:1157 tbl_tracking.php:220 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/messages.inc.php:1162 libraries/mysql_charsets.lib.php:219 +#: libraries/messages.inc.php:1158 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:362 msgid "Traditional Chinese" msgstr "Уламжлалт хятд" -#: libraries/messages.inc.php:1163 libraries/mysql_charsets.lib.php:292 +#: libraries/messages.inc.php:1159 libraries/mysql_charsets.lib.php:292 msgid "Traditional Spanish" msgstr "Уламжлалт Испани" -#: libraries/messages.inc.php:1164 server_status.php:388 +#: libraries/messages.inc.php:1160 server_status.php:388 msgid "Traffic" msgstr "Гуйвуулга" -#: libraries/messages.inc.php:1165 server_status.php:261 +#: libraries/messages.inc.php:1161 server_status.php:261 msgid "Transaction coordinator" msgstr "Хэлэлцээр зохицуулагч" -#: libraries/messages.inc.php:1166 +#: libraries/messages.inc.php:1162 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 " @@ -6282,7 +6282,7 @@ msgstr "" "сонголт: Хоёртын файлын нэр. Хоёр дахь сонголт: Талбарын нэр. Хэрэв хоёр " "дахь сонголтод утга өгвөл эхний сонголтыг хоосон орхих хэрэгтэй" -#: libraries/messages.inc.php:1167 +#: libraries/messages.inc.php:1163 msgid "" "Displays hexadecimal representation of data. Optional first parameter " "specifies how often space will be added (defaults to 2 nibbles)." @@ -6290,7 +6290,7 @@ msgstr "" "Өгөгдлийн дүрслэлийг арван зургаатаар харуулах. Сонголтоор эхний параметр нь " "хэр их хоосон зай нэмэхийг тодорхойлно (анхдагчаар 2)." -#: libraries/messages.inc.php:1168 +#: libraries/messages.inc.php:1164 msgid "" "Displays a clickable thumbnail. The options are the maximum width and height " "in pixels. The original aspect ratio is preserved." @@ -6298,15 +6298,15 @@ msgstr "" "Дарагдхуйц эрхийхумс-ыг харуулж байна. сонголт: өргөн,өндөр цэгээр (эх " "хэмжээ нь хадгалагдана)" -#: libraries/messages.inc.php:1169 +#: libraries/messages.inc.php:1165 msgid "Displays a link to download this image." msgstr "Уг зургийн холбоосыг харуулж байна (direct blob download, i.e.)." -#: libraries/messages.inc.php:1170 +#: libraries/messages.inc.php:1166 msgid "See image/jpeg: inline" msgstr "See image/jpeg: inline" -#: libraries/messages.inc.php:1171 +#: libraries/messages.inc.php:1167 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 " @@ -6318,7 +6318,7 @@ msgid "" "gmdate() function." msgstr "" -#: libraries/messages.inc.php:1172 +#: libraries/messages.inc.php:1168 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 " @@ -6342,13 +6342,13 @@ msgstr "" "a NOWRAP to the content cell so that the whole output will be shown without " "reformatting (Default 1)" -#: libraries/messages.inc.php:1173 +#: libraries/messages.inc.php:1169 msgid "" "Displays the contents of the field as-is, without running it through " "htmlspecialchars(). That is, the field is assumed to contain valid HTML." msgstr "Талбарын жинхэнэ тогтнолыг хамгаалах. Өөр дуусна." -#: libraries/messages.inc.php:1174 +#: libraries/messages.inc.php:1170 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 " @@ -6358,7 +6358,7 @@ msgstr "" "сонголт - энэ нь өмнө нь тавигдах \"http://domain.com/\", хоёр дахь сонголт " "- өргөн цэгээр, гурав дахь - өндөр." -#: libraries/messages.inc.php:1175 +#: libraries/messages.inc.php:1171 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 " @@ -6367,11 +6367,11 @@ msgstr "" "Холбоос харуулж байна, талбар нь файлнэр агуулна; эхний сонголт - энэ нь " "өмнө нь тавигдах \"http://domain.com/\", хоёр дахь - холбоосын гарчгийг авна." -#: libraries/messages.inc.php:1176 +#: libraries/messages.inc.php:1172 msgid "Formats text as SQL query with syntax highlighting." msgstr "" -#: libraries/messages.inc.php:1177 +#: libraries/messages.inc.php:1173 msgid "" "Displays a part of a string. The first option is the number of characters to " "skip from the beginning of the string (Default 0). The second option is the " @@ -6385,70 +6385,70 @@ msgstr "" "defines which chars will be appended to the output when a substring is " "returned (Default: ...)." -#: libraries/messages.inc.php:1179 server_binlog.php:183 server_binlog.php:186 +#: libraries/messages.inc.php:1175 server_binlog.php:183 server_binlog.php:186 #: server_processlist.php:49 server_processlist.php:51 msgid "Truncate Shown Queries" msgstr "Truncate Shown Queries" -#: libraries/messages.inc.php:1180 libraries/mysql_charsets.lib.php:301 +#: libraries/messages.inc.php:1176 libraries/mysql_charsets.lib.php:301 #: libraries/mysql_charsets.lib.php:389 msgid "Turkish" msgstr "Турк" -#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:304 +#: libraries/messages.inc.php:1179 libraries/mysql_charsets.lib.php:304 #: libraries/mysql_charsets.lib.php:386 msgid "Ukrainian" msgstr "Украин" -#: libraries/messages.inc.php:1185 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:1181 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 msgid "Unicode" msgstr "Юникод" -#: libraries/messages.inc.php:1187 libraries/mysql_charsets.lib.php:398 +#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:398 #: libraries/mysql_charsets.lib.php:405 msgid "unknown" msgstr "үлмэдэх" -#: libraries/messages.inc.php:1190 server_privileges.php:1152 +#: libraries/messages.inc.php:1186 server_privileges.php:1152 #, fuzzy, php-format msgid "You have updated the privileges for %s." msgstr "Онцгой эрх шинэчлэгдлээ" -#: libraries/messages.inc.php:1191 user_password.php:112 +#: libraries/messages.inc.php:1187 user_password.php:112 msgid "The profile has been updated." msgstr "Профиль шинэчлэгдлээ." -#: libraries/messages.inc.php:1193 libraries/relation.lib.php:138 +#: libraries/messages.inc.php:1189 libraries/relation.lib.php:138 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "Column_comments Хүснэгтийн хэрхэн шинэчлэх талаар баримтжууллаас харна уу" -#: libraries/messages.inc.php:1194 +#: libraries/messages.inc.php:1190 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Та хувилбар %s -г %s -ээр сайжруулах хэрэгтэй эсвэл дараа." -#: libraries/messages.inc.php:1204 tbl_printview.php:314 tbl_structure.php:661 +#: libraries/messages.inc.php:1200 tbl_printview.php:314 tbl_structure.php:661 msgid "Usage" msgstr "Ашиглалт" -#: libraries/messages.inc.php:1205 +#: libraries/messages.inc.php:1201 msgid "Enclose table and field names with backquotes" msgstr "Хүснэгт ба талбарын нэрийг буруу хашилтаар хаах" -#: libraries/messages.inc.php:1206 libraries/replication_gui.lib.php:314 +#: libraries/messages.inc.php:1202 libraries/replication_gui.lib.php:314 #: server_privileges.php:740 msgid "Use Host Table" msgstr "Хост хүснэгт хэрэглэх" -#: libraries/messages.inc.php:1207 server_privileges.php:848 +#: libraries/messages.inc.php:1203 server_privileges.php:848 #, php-format msgid "The user %s already exists!" msgstr "Хэрэглэгч %s оршин байна!" -#: libraries/messages.inc.php:1209 libraries/replication_gui.lib.php:55 +#: libraries/messages.inc.php:1205 libraries/replication_gui.lib.php:55 #: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245 #: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255 #: server_privileges.php:672 server_privileges.php:675 @@ -6456,37 +6456,37 @@ msgstr "Хэрэглэгч %s оршин байна!" msgid "User name" msgstr "Хэрэглэгчийн нэр" -#: libraries/messages.inc.php:1210 server_privileges.php:1645 +#: libraries/messages.inc.php:1206 server_privileges.php:1645 msgid "The selected user was not found in the privilege table." msgstr "Сонгогдсон хэрэглэгч онцгой эрхийн хүснэгтэд алга байна." -#: libraries/messages.inc.php:1211 server_privileges.php:1365 +#: libraries/messages.inc.php:1207 server_privileges.php:1365 msgid "User overview" msgstr "User overview" -#: libraries/messages.inc.php:1212 server_privileges.php:1261 +#: libraries/messages.inc.php:1208 server_privileges.php:1261 msgid "The selected users have been deleted successfully." msgstr "Сонгогдсон хэрэглэгч устгагдлаа." -#: libraries/messages.inc.php:1213 server_privileges.php:2026 +#: libraries/messages.inc.php:1209 server_privileges.php:2026 #, php-format msgid "Users having access to "%s"" msgstr "Хэрэглэгчдийн хандсан нь "%s"" -#: libraries/messages.inc.php:1214 main.php:189 server_privileges.php:1350 +#: libraries/messages.inc.php:1210 main.php:189 server_privileges.php:1350 #: server_privileges.php:1497 server_privileges.php:1611 #: server_privileges.php:2029 server_processlist.php:54 msgid "User" msgstr "Хэрэглэгч" -#: libraries/messages.inc.php:1215 tbl_change.php:1171 +#: libraries/messages.inc.php:1211 tbl_change.php:1171 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "TAB товчийг хэрэглэн утгаас утгын хооронд шилжинэ, эсвэл CTRL+сумууд-аар " "зөөгдөнө" -#: libraries/messages.inc.php:1217 libraries/replication_gui.lib.php:251 +#: libraries/messages.inc.php:1213 libraries/replication_gui.lib.php:251 #: libraries/replication_gui.lib.php:319 libraries/replication_gui.lib.php:342 #: server_privileges.php:678 server_privileges.php:745 #: server_privileges.php:769 server_privileges.php:1889 @@ -6494,7 +6494,7 @@ msgstr "" msgid "Use text field" msgstr "Бичвэр талбар хэрэглэх" -#: libraries/messages.inc.php:1221 libraries/sqlvalidator.lib.php:68 +#: libraries/messages.inc.php:1217 libraries/sqlvalidator.lib.php:68 #, php-format msgid "" "The SQL validator could not be initialized. Please check if you have " @@ -6503,84 +6503,84 @@ msgstr "" "SQL баталгаажуулагч эхлэгдсэнгүй. Хэрэв PHP өргөтгөл суугдсан бол шалгана " "уу, %sбаримтжуулалд%s тодорхойлогдсон." -#: libraries/messages.inc.php:1222 libraries/replication_gui.lib.php:111 +#: libraries/messages.inc.php:1218 libraries/replication_gui.lib.php:111 #: server_status.php:627 tbl_change.php:324 tbl_printview.php:370 #: tbl_select.php:139 tbl_structure.php:730 msgid "Value" msgstr "Утга" -#: libraries/messages.inc.php:1223 libraries/replication_gui.lib.php:110 +#: libraries/messages.inc.php:1219 libraries/replication_gui.lib.php:110 #: libraries/sql_query_form.lib.php:445 server_status.php:626 #: server_variables.php:52 msgid "Variable" msgstr "Хувьсагч" -#: libraries/messages.inc.php:1225 server_export.php:21 +#: libraries/messages.inc.php:1221 server_export.php:21 msgid "View dump (schema) of databases" msgstr "ӨС-ийн схем харах" -#: libraries/messages.inc.php:1227 tbl_export.php:23 +#: libraries/messages.inc.php:1223 tbl_export.php:23 msgid "View dump (schema) of table" msgstr "Хүснэгтийн схем харах" -#: libraries/messages.inc.php:1231 view_create.php:142 +#: libraries/messages.inc.php:1227 view_create.php:142 msgid "VIEW name" msgstr "" -#: libraries/messages.inc.php:1237 main.php:205 +#: libraries/messages.inc.php:1233 main.php:205 msgid "Web server" msgstr "" -#: libraries/messages.inc.php:1239 libraries/mysql_charsets.lib.php:277 +#: libraries/messages.inc.php:1235 libraries/mysql_charsets.lib.php:277 #: libraries/mysql_charsets.lib.php:325 msgid "West European" msgstr "Баруун-Европ" -#: libraries/messages.inc.php:1240 main.php:230 +#: libraries/messages.inc.php:1236 main.php:230 msgid "Wiki" msgstr "" -#: libraries/messages.inc.php:1241 server_privileges.php:2138 +#: libraries/messages.inc.php:1237 server_privileges.php:2138 msgid "wildcard" msgstr "загвар" -#: libraries/messages.inc.php:1248 +#: libraries/messages.inc.php:1244 msgid "Export contents" msgstr "" -#: libraries/messages.inc.php:1249 +#: libraries/messages.inc.php:1245 msgid "Export functions" msgstr "" -#: libraries/messages.inc.php:1250 +#: libraries/messages.inc.php:1246 msgid "Export procedures" msgstr "" -#: libraries/messages.inc.php:1251 +#: libraries/messages.inc.php:1247 msgid "Export Structure Schemas (recommended)" msgstr "" -#: libraries/messages.inc.php:1252 +#: libraries/messages.inc.php:1248 msgid "Export tables" msgstr "" -#: libraries/messages.inc.php:1253 +#: libraries/messages.inc.php:1249 msgid "Export triggers" msgstr "" -#: libraries/messages.inc.php:1254 +#: libraries/messages.inc.php:1250 msgid "Export views" msgstr "" -#: libraries/messages.inc.php:1255 +#: libraries/messages.inc.php:1251 msgid "XML" msgstr "XML" -#: libraries/messages.inc.php:1259 server_privileges.php:592 +#: libraries/messages.inc.php:1255 server_privileges.php:592 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Тэмдэглэл: Тохируулгын сонголтыг 0 (тэг) болговол хязгаарыг хасна." -#: libraries/messages.inc.php:1260 +#: libraries/messages.inc.php:1256 msgid "\"zipped\"" msgstr "zip-ээр шахах" diff --git a/po/ms.po b/po/ms.po index 0be304b1b..45ae9657e 100644 --- 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-05-13 11:25+0200\n" +"POT-Creation-Date: 2010-05-13 11:30+0200\n" "PO-Revision-Date: 2010-03-12 09:17+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: malay \n" @@ -13,19 +13,19 @@ msgstr "" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:38 browse_foreigners.php:59 -#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:870 +#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:866 #: server_privileges.php:1475 msgid "Show all" msgstr "Papar semua" #: browse_foreigners.php:82 db_operations.php:648 -#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:394 -#: libraries/export/pdf.php:147 libraries/messages.inc.php:597 +#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394 +#: libraries/export/pdf.php:147 libraries/messages.inc.php:593 #: pdf_schema.php:283 pdf_schema.php:1123 pdf_schema.php:1139 msgid "Page number:" msgstr "Muka Surat:" -#: browse_foreigners.php:132 libraries/messages.inc.php:1242 +#: browse_foreigners.php:132 libraries/messages.inc.php:1238 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -35,7 +35,7 @@ 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/db_links.inc.php:75 -#: libraries/messages.inc.php:841 libraries/tbl_links.inc.php:63 +#: libraries/messages.inc.php:837 libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Cari" @@ -44,12 +44,12 @@ msgstr "Cari" #: db_search.php:362 db_structure.php:567 js/messages.php:48 #: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2267 +#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 #: 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 #: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614 -#: libraries/messages.inc.php:361 libraries/replication_gui.lib.php:73 +#: libraries/messages.inc.php:357 libraries/replication_gui.lib.php:73 #: libraries/replication_gui.lib.php:365 libraries/select_server.lib.php:104 #: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477 #: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782 @@ -69,13 +69,13 @@ msgid "Go" msgstr "Pergi" #: browse_foreigners.php:168 browse_foreigners.php:172 -#: libraries/Index.class.php:442 libraries/messages.inc.php:459 +#: libraries/Index.class.php:442 libraries/messages.inc.php:455 #: tbl_tracking.php:320 msgid "Keyname" msgstr "Nama Kekunci" #: browse_foreigners.php:169 browse_foreigners.php:171 -#: libraries/messages.inc.php:252 server_collations.php:55 +#: libraries/messages.inc.php:248 server_collations.php:55 #: server_collations.php:67 server_engines.php:59 server_status.php:628 #, fuzzy msgid "Description" @@ -83,21 +83,21 @@ msgstr "tiada keterangan" #: browse_foreigners.php:247 browse_foreigners.php:256 #: browse_foreigners.php:268 browse_foreigners.php:276 -#: libraries/messages.inc.php:1218 +#: libraries/messages.inc.php:1214 msgid "Use this value" msgstr "" -#: db_create.php:46 libraries/messages.inc.php:215 +#: db_create.php:46 libraries/messages.inc.php:211 #, fuzzy, php-format msgid "Database %1$s has been created." msgstr "angkalan data %s telah digugurkan." -#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:232 +#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:228 #, fuzzy msgid "Database comment: " msgstr "Komen jadual" -#: db_datadict.php:165 libraries/messages.inc.php:1070 +#: db_datadict.php:165 libraries/messages.inc.php:1066 #: libraries/tbl_properties.inc.php:724 pdf_schema.php:1236 #: tbl_operations.php:345 tbl_printview.php:130 msgid "Table comments" @@ -106,7 +106,7 @@ msgstr "Komen jadual" #: db_datadict.php:174 db_qbe.php:174 libraries/Index.class.php:446 #: libraries/export/htmlword.php:244 libraries/export/latex.php:360 #: libraries/export/odt.php:294 libraries/export/texytext.php:233 -#: libraries/messages.inc.php:317 libraries/tbl_properties.inc.php:99 +#: libraries/messages.inc.php:313 libraries/tbl_properties.inc.php:99 #: libraries/tbl_properties.inc.php:275 pdf_schema.php:1262 #: pdf_schema.php:1283 tbl_change.php:308 tbl_indexes.php:189 #: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135 @@ -118,7 +118,7 @@ msgstr "Medan" #: libraries/db_events.inc.php:31 libraries/db_routines.inc.php:42 #: 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/messages.inc.php:1181 +#: libraries/export/texytext.php:234 libraries/messages.inc.php:1177 #: libraries/tbl_properties.inc.php:100 pdf_schema.php:1263 #: pdf_schema.php:1284 server_privileges.php:2031 tbl_change.php:287 #: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313 @@ -130,7 +130,7 @@ msgstr "Jenis" #: db_datadict.php:177 libraries/Index.class.php:449 #: libraries/export/htmlword.php:246 libraries/export/latex.php:360 #: libraries/export/odt.php:300 libraries/export/texytext.php:235 -#: libraries/messages.inc.php:576 libraries/tbl_properties.inc.php:109 +#: libraries/messages.inc.php:572 libraries/tbl_properties.inc.php:109 #: pdf_schema.php:1265 pdf_schema.php:1286 tbl_change.php:323 #: tbl_printview.php:145 tbl_structure.php:181 tbl_tracking.php:276 #: tbl_tracking.php:327 @@ -139,7 +139,7 @@ msgstr "Null" #: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 -#: libraries/export/texytext.php:236 libraries/messages.inc.php:238 +#: libraries/export/texytext.php:236 libraries/messages.inc.php:234 #: libraries/tbl_properties.inc.php:106 pdf_schema.php:1266 #: pdf_schema.php:1287 tbl_printview.php:146 tbl_structure.php:182 #: tbl_tracking.php:277 @@ -148,14 +148,14 @@ msgstr "Asal" #: db_datadict.php:182 libraries/export/htmlword.php:249 #: libraries/export/latex.php:362 libraries/export/odt.php:307 -#: libraries/export/texytext.php:238 libraries/messages.inc.php:483 +#: libraries/export/texytext.php:238 libraries/messages.inc.php:479 #: pdf_schema.php:1268 pdf_schema.php:1289 tbl_printview.php:150 msgid "Links to" msgstr "Pautan ke" #: db_datadict.php:184 db_printview.php:112 libraries/export/htmlword.php:252 #: libraries/export/latex.php:365 libraries/export/odt.php:312 -#: libraries/export/texytext.php:241 libraries/messages.inc.php:163 +#: libraries/export/texytext.php:241 libraries/messages.inc.php:159 #: libraries/tbl_properties.inc.php:130 pdf_schema.php:1279 #: pdf_schema.php:1290 tbl_printview.php:152 msgid "Comments" @@ -164,7 +164,7 @@ msgstr "Komen" #: db_datadict.php:267 libraries/Index.class.php:359 #: 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/messages.inc.php:559 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:555 #: libraries/mult_submits.inc.php:263 pdf_schema.php:1344 #: server_privileges.php:1529 server_privileges.php:1540 #: server_privileges.php:1850 server_privileges.php:1855 @@ -176,7 +176,7 @@ msgstr "Tidak" #: db_datadict.php:267 libraries/Index.class.php:360 #: libraries/Index.class.php:385 libraries/export/htmlword.php:322 #: libraries/export/latex.php:430 libraries/export/odt.php:368 -#: libraries/export/texytext.php:311 libraries/messages.inc.php:1257 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:1253 #: libraries/mult_submits.inc.php:45 libraries/mult_submits.inc.php:50 #: libraries/mult_submits.inc.php:55 libraries/mult_submits.inc.php:60 #: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:101 @@ -190,111 +190,111 @@ msgstr "Tidak" msgid "Yes" msgstr "Ya" -#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:670 +#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:666 #: tbl_printview.php:498 msgid "Print" msgstr "Cetak" -#: db_export.php:29 libraries/messages.inc.php:1226 +#: db_export.php:29 libraries/messages.inc.php:1222 msgid "View dump (schema) of database" msgstr "Lihat longgokan (skema) pangkalan data" #: db_export.php:33 db_printview.php:96 db_qbe.php:102 db_structure.php:51 -#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:568 +#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:564 #: navigation.php:346 msgid "No tables found in database." msgstr "Tiada jadual dijumpai pada pangkalan data." -#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:845 +#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:841 #: server_export.php:27 msgid "Select All" msgstr "Sila pilih pangkalan data" -#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1188 +#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1184 #: server_export.php:29 msgid "Unselect All" msgstr "Nyahpilih Semua" -#: db_operations.php:38 libraries/messages.inc.php:213 tbl_create.php:54 +#: db_operations.php:38 libraries/messages.inc.php:209 tbl_create.php:54 #, fuzzy msgid "The database name is empty!" msgstr "Nama jadual adalah kosong" -#: db_operations.php:236 libraries/messages.inc.php:753 +#: db_operations.php:236 libraries/messages.inc.php:749 #, fuzzy, php-format msgid "Database %s has been renamed to %s" msgstr "Jadual %s telah ditukarnama ke %s" -#: db_operations.php:240 libraries/messages.inc.php:178 +#: db_operations.php:240 libraries/messages.inc.php:174 #, fuzzy, php-format msgid "Database %s has been copied to %s" msgstr "Jadual %s telah disalin ke %s." -#: db_operations.php:410 libraries/messages.inc.php:236 +#: db_operations.php:410 libraries/messages.inc.php:232 #, fuzzy msgid "Rename database to" msgstr "Tukarnama jadual ke" -#: db_operations.php:415 libraries/messages.inc.php:161 +#: db_operations.php:415 libraries/messages.inc.php:157 #: server_processlist.php:57 msgid "Command" msgstr "Arahan" -#: db_operations.php:425 libraries/messages.inc.php:58 tbl_change.php:1143 +#: db_operations.php:425 libraries/messages.inc.php:54 tbl_change.php:1143 msgid "and then" msgstr "" -#: db_operations.php:451 libraries/messages.inc.php:233 +#: db_operations.php:451 libraries/messages.inc.php:229 #, fuzzy msgid "Copy database to" msgstr "Tiada pangkalan data" -#: db_operations.php:458 libraries/messages.inc.php:1043 +#: db_operations.php:458 libraries/messages.inc.php:1039 #: tbl_operations.php:526 tbl_tracking.php:388 msgid "Structure only" msgstr "Struktur sahaja" -#: db_operations.php:459 libraries/messages.inc.php:1041 +#: db_operations.php:459 libraries/messages.inc.php:1037 #: tbl_operations.php:527 tbl_tracking.php:390 msgid "Structure and data" msgstr "Struktur dan data" -#: db_operations.php:460 libraries/messages.inc.php:229 tbl_operations.php:528 +#: db_operations.php:460 libraries/messages.inc.php:225 tbl_operations.php:528 #: tbl_tracking.php:389 msgid "Data only" msgstr "Data sahaja" -#: db_operations.php:468 libraries/messages.inc.php:186 +#: db_operations.php:468 libraries/messages.inc.php:182 msgid "CREATE DATABASE before copying" msgstr "" #: db_operations.php:471 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 -#: libraries/export/sql.php:82 libraries/messages.inc.php:30 +#: libraries/export/sql.php:82 libraries/messages.inc.php:26 #: tbl_operations.php:534 #, php-format msgid "Add %s" msgstr "" -#: db_operations.php:475 libraries/messages.inc.php:29 tbl_operations.php:297 +#: db_operations.php:475 libraries/messages.inc.php:25 tbl_operations.php:297 #: tbl_operations.php:536 msgid "Add AUTO_INCREMENT value" msgstr "" -#: db_operations.php:479 libraries/messages.inc.php:31 tbl_operations.php:543 +#: db_operations.php:479 libraries/messages.inc.php:27 tbl_operations.php:543 msgid "Add constraints" msgstr "" -#: db_operations.php:492 libraries/messages.inc.php:1059 +#: db_operations.php:492 libraries/messages.inc.php:1055 msgid "Switch to copied database" msgstr "" -#: db_operations.php:533 libraries/messages.inc.php:89 +#: db_operations.php:533 libraries/messages.inc.php:85 msgid "BLOB Repository" msgstr "" #: db_operations.php:536 db_tracking.php:76 libraries/common.lib.php:1350 -#: libraries/messages.inc.php:1037 libraries/server_links.inc.php:49 +#: libraries/messages.inc.php:1033 libraries/server_links.inc.php:49 #: server_processlist.php:59 tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "Status" @@ -306,12 +306,12 @@ msgctxt "BLOB repository" msgid "Enabled" msgstr "Membenarkan" -#: db_operations.php:548 libraries/messages.inc.php:93 +#: db_operations.php:548 libraries/messages.inc.php:89 #, fuzzy msgid "Disable" msgstr "Tidak Membenarkan" -#: db_operations.php:558 libraries/messages.inc.php:90 +#: db_operations.php:558 libraries/messages.inc.php:86 msgid "Damaged" msgstr "" @@ -328,13 +328,13 @@ msgctxt "BLOB repository" msgid "Disabled" msgstr "Tidak Membenarkan" -#: db_operations.php:574 libraries/messages.inc.php:96 +#: db_operations.php:574 libraries/messages.inc.php:92 #, fuzzy msgid "Enable" msgstr "Membenarkan" #: db_operations.php:598 libraries/Index.class.php:448 -#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:158 +#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:154 #: 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:361 @@ -343,7 +343,7 @@ msgstr "Membenarkan" msgid "Collation" msgstr "" -#: db_operations.php:609 libraries/messages.inc.php:742 main.php:316 +#: db_operations.php:609 libraries/messages.inc.php:738 main.php:316 #: pdf_schema.php:34 #, php-format msgid "" @@ -353,58 +353,58 @@ msgstr "" "Ciri-ciri tambahan ini adalah untuk bekerja dengan pautan jadual yang telah " "tidak diaktifkan. Untuk mengetahuinya klik %shere%s." -#: db_operations.php:645 libraries/messages.inc.php:264 pdf_pages.php:528 +#: db_operations.php:645 libraries/messages.inc.php:260 pdf_pages.php:528 msgid "Display PDF schema" msgstr "Papar Skema PDF" -#: db_operations.php:661 libraries/messages.inc.php:877 pdf_pages.php:529 +#: db_operations.php:661 libraries/messages.inc.php:873 pdf_pages.php:529 msgid "Show grid" msgstr "Papar grid" -#: db_operations.php:664 libraries/messages.inc.php:874 pdf_pages.php:530 +#: db_operations.php:664 libraries/messages.inc.php:870 pdf_pages.php:530 msgid "Show color" msgstr "Papar warna" -#: db_operations.php:666 libraries/messages.inc.php:998 pdf_pages.php:531 +#: db_operations.php:666 libraries/messages.inc.php:994 pdf_pages.php:531 msgid "Show dimension of tables" msgstr "Papar dimensi jadual" -#: db_operations.php:669 libraries/messages.inc.php:52 pdf_pages.php:532 +#: db_operations.php:669 libraries/messages.inc.php:48 pdf_pages.php:532 msgid "Display all tables with the same width" msgstr "paparkan semua Jadual dengan kelebaran yang sama?" -#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:227 +#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:223 #: pdf_pages.php:533 msgid "Data Dictionary" msgstr "Kamus Data" -#: db_operations.php:674 libraries/messages.inc.php:884 pdf_pages.php:534 +#: db_operations.php:674 libraries/messages.inc.php:880 pdf_pages.php:534 msgid "Only show keys" msgstr "" -#: db_operations.php:676 libraries/messages.inc.php:875 pdf_pages.php:535 +#: db_operations.php:676 libraries/messages.inc.php:871 pdf_pages.php:535 msgid "Data Dictionary Format" msgstr "Format Kamus Data" -#: db_operations.php:678 libraries/messages.inc.php:464 pdf_pages.php:537 +#: db_operations.php:678 libraries/messages.inc.php:460 pdf_pages.php:537 msgid "Landscape" msgstr "Menegak" -#: db_operations.php:679 libraries/messages.inc.php:663 pdf_pages.php:538 +#: db_operations.php:679 libraries/messages.inc.php:659 pdf_pages.php:538 msgid "Portrait" msgstr "Melintang" -#: db_operations.php:682 libraries/messages.inc.php:599 pdf_pages.php:541 +#: db_operations.php:682 libraries/messages.inc.php:595 pdf_pages.php:541 msgid "Paper size" msgstr "" -#: db_operations.php:706 libraries/messages.inc.php:281 +#: db_operations.php:706 libraries/messages.inc.php:277 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 libraries/messages.inc.php:1087 +#: libraries/header.inc.php:126 libraries/messages.inc.php:1083 #: pdf_pages.php:405 server_privileges.php:1626 server_privileges.php:1682 #: server_privileges.php:1946 server_synchronize.php:423 #: server_synchronize.php:866 tbl_tracking.php:592 test/theme.php:75 @@ -412,177 +412,177 @@ msgid "Table" msgstr "Jadual" #: db_printview.php:105 libraries/db_structure.lib.php:56 -#: libraries/messages.inc.php:735 +#: libraries/messages.inc.php:731 msgid "Records" msgstr "Rekod" #: db_printview.php:109 libraries/db_structure.lib.php:67 -#: libraries/messages.inc.php:1003 tbl_indexes.php:190 +#: libraries/messages.inc.php:999 tbl_indexes.php:190 msgid "Size" msgstr "Saiz" #: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 -#: libraries/export/sql.php:899 libraries/messages.inc.php:436 +#: libraries/export/sql.php:899 libraries/messages.inc.php:432 msgid "in use" msgstr "sedang digunakan" #: db_printview.php:187 libraries/db_info.inc.php:88 -#: libraries/export/sql.php:514 libraries/messages.inc.php:1032 +#: libraries/export/sql.php:514 libraries/messages.inc.php:1028 #: pdf_schema.php:1241 tbl_printview.php:434 tbl_structure.php:810 #, fuzzy msgid "Creation" msgstr "Cipta" #: db_printview.php:196 libraries/db_info.inc.php:93 -#: libraries/export/sql.php:519 libraries/messages.inc.php:1036 +#: libraries/export/sql.php:519 libraries/messages.inc.php:1032 #: pdf_schema.php:1246 tbl_printview.php:444 tbl_structure.php:818 msgid "Last update" msgstr "" #: db_printview.php:205 libraries/db_info.inc.php:98 -#: libraries/export/sql.php:524 libraries/messages.inc.php:1031 +#: libraries/export/sql.php:524 libraries/messages.inc.php:1027 #: pdf_schema.php:1251 tbl_printview.php:454 tbl_structure.php:826 msgid "Last check" msgstr "" -#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1085 +#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1081 #, php-format msgid "%s table(s)" msgstr "%s jadual" #: db_qbe.php:29 libraries/display_tbl.lib.php:1981 -#: libraries/messages.inc.php:1051 libraries/sql_query_form.lib.php:140 +#: libraries/messages.inc.php:1047 libraries/sql_query_form.lib.php:140 #: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131 #: view_operations.php:62 msgid "Your SQL query has been executed successfully" msgstr "Kueri-SQL anda telah dilaksanakan dengan jaya" -#: db_qbe.php:42 libraries/messages.inc.php:371 +#: db_qbe.php:42 libraries/messages.inc.php:367 msgid "You have to choose at least one column to display" msgstr "Anda mesti pilih sekurang-kurangnya satu Kolum untuk dipapar" #: db_qbe.php:200 libraries/db_structure.lib.php:104 -#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1014 +#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1010 msgid "Sort" msgstr "Isih" #: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111 #: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828 -#: libraries/messages.inc.php:69 server_databases.php:170 +#: libraries/messages.inc.php:65 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314 msgid "Ascending" msgstr "Menaik" #: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119 #: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825 -#: libraries/messages.inc.php:251 server_databases.php:170 +#: libraries/messages.inc.php:247 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315 msgid "Descending" msgstr "Menurun" #: db_qbe.php:264 db_tracking.php:78 libraries/display_tbl.lib.php:308 -#: libraries/messages.inc.php:888 tbl_change.php:277 tbl_tracking.php:597 +#: libraries/messages.inc.php:884 tbl_change.php:277 tbl_tracking.php:597 msgid "Show" msgstr "Papar" -#: db_qbe.php:300 libraries/messages.inc.php:202 +#: db_qbe.php:300 libraries/messages.inc.php:198 msgid "Criteria" msgstr "Kriteria" #: db_qbe.php:353 db_qbe.php:435 db_qbe.php:527 db_qbe.php:558 -#: libraries/messages.inc.php:718 +#: libraries/messages.inc.php:714 msgid "Ins" msgstr "Ins" #: db_qbe.php:357 db_qbe.php:439 db_qbe.php:524 db_qbe.php:555 -#: libraries/messages.inc.php:56 +#: libraries/messages.inc.php:52 msgid "And" msgstr "Dan" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:529 db_qbe.php:560 -#: libraries/messages.inc.php:717 +#: libraries/messages.inc.php:713 msgid "Del" 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/messages.inc.php:592 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:588 #: libraries/tbl_properties.inc.php:779 server_privileges.php:258 #: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288 msgid "Or" msgstr "Atau" -#: db_qbe.php:507 libraries/messages.inc.php:516 +#: db_qbe.php:507 libraries/messages.inc.php:512 msgid "Modify" msgstr "Ubahsuai" -#: db_qbe.php:584 libraries/messages.inc.php:33 +#: db_qbe.php:584 libraries/messages.inc.php:29 msgid "Add/Delete Criteria Row" msgstr "Tambah/Padam Baris Kriteria" -#: db_qbe.php:596 libraries/messages.inc.php:32 +#: db_qbe.php:596 libraries/messages.inc.php:28 msgid "Add/Delete Field Columns" msgstr "Tambah/Padam Kolum Medan" -#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1192 +#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1188 msgid "Update Query" msgstr "Kemaskini Kueri" -#: db_qbe.php:617 libraries/messages.inc.php:1216 +#: db_qbe.php:617 libraries/messages.inc.php:1212 msgid "Use Tables" msgstr "Guna Jadual" -#: db_qbe.php:640 libraries/messages.inc.php:723 +#: db_qbe.php:640 libraries/messages.inc.php:719 #, php-format msgid "SQL query on database %s:" msgstr "SQL- kueri pada pangkalan data %s:" -#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:823 +#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:819 msgid "Submit Query" msgstr "Hantar Kueri" #: db_search.php:68 libraries/auth/config.auth.lib.php:84 #: libraries/auth/config.auth.lib.php:103 #: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52 -#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:26 +#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:22 msgid "Access denied" msgstr "Akses dinafikan" -#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:836 +#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:832 msgid "at least one of the words" msgstr "sekurang-kurangnya satu perkataan" -#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:837 +#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:833 msgid "all words" msgstr "semua perkataan" -#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:838 +#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:834 msgid "the exact phrase" msgstr "Frasa tepat" -#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:839 +#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:835 msgid "as regular expression" msgstr "sebagai penyataan regular (regexp)" -#: db_search.php:242 libraries/messages.inc.php:840 +#: db_search.php:242 libraries/messages.inc.php:836 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Hasil carian bagi \"%s\" %s:" -#: db_search.php:260 libraries/messages.inc.php:579 +#: db_search.php:260 libraries/messages.inc.php:575 #, php-format msgid "%s match(es) inside table %s" 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/messages.inc.php:108 +#: db_structure.php:105 libraries/messages.inc.php:104 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468 msgid "Browse" msgstr "Lungsur" #: db_search.php:272 libraries/display_tbl.lib.php:1165 -#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:243 +#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:239 #: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406 #: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377 #: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216 @@ -590,45 +590,45 @@ msgstr "Lungsur" msgid "Delete" msgstr "Padam" -#: db_search.php:285 libraries/messages.inc.php:580 +#: db_search.php:285 libraries/messages.inc.php:576 #, php-format msgid "Total: %s match(es)" msgstr "Jumlah: %s padanan" -#: db_search.php:299 libraries/messages.inc.php:832 +#: db_search.php:299 libraries/messages.inc.php:828 msgid "Search in database" msgstr "Cari di pangkalan data" -#: db_search.php:302 libraries/messages.inc.php:835 +#: db_search.php:302 libraries/messages.inc.php:831 msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgstr "Perkataan atau nilai untuk dicari (wildcard: \"%\"):" -#: db_search.php:307 libraries/messages.inc.php:842 +#: db_search.php:307 libraries/messages.inc.php:838 msgid "Find:" msgstr "Cari:" -#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1017 +#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1013 msgid "Words are separated by a space character (\" \")." msgstr "Perkataan dipisahkan oleh aksara ruang (\" \")." -#: db_search.php:325 libraries/messages.inc.php:834 +#: db_search.php:325 libraries/messages.inc.php:830 msgid "Inside table(s):" msgstr "Di dalam jadual:" -#: db_search.php:355 libraries/messages.inc.php:833 +#: db_search.php:355 libraries/messages.inc.php:829 msgid "Inside field:" 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/messages.inc.php:431 libraries/sql_query_form.lib.php:334 +#: libraries/messages.inc.php:427 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/db_links.inc.php:63 libraries/export/latex.php:337 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:1048 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:1044 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 #: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269 msgid "Structure" @@ -637,8 +637,8 @@ 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:1642 -#: libraries/db_links.inc.php:100 libraries/messages.inc.php:272 +#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/db_links.inc.php:100 libraries/messages.inc.php:268 #: 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 @@ -648,40 +648,40 @@ 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:1641 -#: libraries/messages.inc.php:284 libraries/mult_submits.inc.php:39 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: libraries/messages.inc.php:280 libraries/mult_submits.inc.php:39 #: libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Kosong" -#: db_structure.php:316 libraries/messages.inc.php:1075 +#: db_structure.php:316 libraries/messages.inc.php:1071 #: libraries/tbl_links.inc.php:100 #, php-format msgid "Table %s has been emptied" msgstr "Jadual %s telah dikosongkan" -#: db_structure.php:326 libraries/messages.inc.php:1229 +#: db_structure.php:326 libraries/messages.inc.php:1225 #: 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/messages.inc.php:1074 +#: db_structure.php:326 libraries/messages.inc.php:1070 #: libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "Jadual %s telah digugurkan" -#: db_structure.php:333 libraries/messages.inc.php:1128 +#: db_structure.php:333 libraries/messages.inc.php:1124 msgid "Tracking is active." msgstr "" -#: db_structure.php:335 libraries/messages.inc.php:1129 +#: db_structure.php:335 libraries/messages.inc.php:1125 msgid "Tracking is not active." msgstr "" #: db_structure.php:420 libraries/display_tbl.lib.php:1944 -#: libraries/messages.inc.php:1228 +#: libraries/messages.inc.php:1224 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -689,83 +689,83 @@ msgid "" msgstr "" #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 -#: libraries/messages.inc.php:1233 libraries/tbl_info.inc.php:66 +#: libraries/messages.inc.php:1229 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/messages.inc.php:773 libraries/server_links.inc.php:70 +#: libraries/messages.inc.php:769 libraries/server_links.inc.php:70 #: server_replication.php:33 server_replication.php:164 server_status.php:258 msgid "Replication" msgstr "" -#: db_structure.php:489 libraries/messages.inc.php:1053 +#: db_structure.php:489 libraries/messages.inc.php:1049 msgid "Sum" msgstr "Jumlah" #: db_structure.php:496 libraries/StorageEngine.class.php:356 -#: libraries/messages.inc.php:239 +#: libraries/messages.inc.php:235 #, 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 #: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086 -#: libraries/messages.inc.php:1243 libraries/mult_submits.inc.php:16 +#: libraries/messages.inc.php:1239 libraries/mult_submits.inc.php:16 #: server_databases.php:346 server_databases.php:351 #: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465 msgid "With selected:" msgstr "Dengan pilihan:" #: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: libraries/messages.inc.php:148 server_databases.php:348 +#: libraries/messages.inc.php:144 server_databases.php:348 #: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459 msgid "Check All" msgstr "Tanda Semua" #: db_structure.php:531 libraries/display_tbl.lib.php:2077 -#: libraries/messages.inc.php:1184 libraries/replication_gui.lib.php:33 +#: libraries/messages.inc.php:1180 libraries/replication_gui.lib.php:33 #: server_databases.php:350 server_privileges.php:533 #: server_privileges.php:1564 tbl_structure.php:463 msgid "Uncheck All" msgstr "Nyahtanda Semua" -#: db_structure.php:536 libraries/messages.inc.php:150 +#: db_structure.php:536 libraries/messages.inc.php:146 msgid "Check tables having overhead" msgstr "" #: db_structure.php:547 db_structure.php:548 db_structure.php:599 -#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:672 +#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:668 #: libraries/mult_submits.inc.php:28 tbl_structure.php:493 #: tbl_structure.php:495 msgid "Print view" msgstr "Paparan Cetak" -#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:153 +#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:149 #: libraries/mult_submits.inc.php:42 tbl_operations.php:579 msgid "Check table" msgstr "Periksa Jadual" -#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:590 +#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:586 #: libraries/mult_submits.inc.php:47 tbl_operations.php:619 #: tbl_structure.php:710 tbl_structure.php:712 msgid "Optimize table" msgstr "Optimakan jadual" -#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:758 +#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:754 #: libraries/mult_submits.inc.php:52 tbl_operations.php:609 msgid "Repair table" msgstr "Baiki jadual" -#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:55 +#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:51 #: libraries/mult_submits.inc.php:57 tbl_operations.php:599 msgid "Analyze table" msgstr "Analyze table" #: db_structure.php:557 db_structure.php:558 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/messages.inc.php:310 +#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:306 #: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84 #: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109 #: server_privileges.php:1341 setup/frames/menu.inc.php:22 @@ -773,7 +773,7 @@ msgstr "Analyze table" msgid "Export" msgstr "Eksport" -#: db_tracking.php:66 libraries/messages.inc.php:1151 +#: db_tracking.php:66 libraries/messages.inc.php:1147 msgid "Tracked tables" msgstr "" @@ -781,7 +781,7 @@ msgstr "" #: 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/header_printview.inc.php:58 libraries/messages.inc.php:212 +#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:208 #: navigation.php:233 server_databases.php:169 server_privileges.php:1621 #: server_privileges.php:1682 server_privileges.php:1940 #: server_processlist.php:56 server_synchronize.php:1179 @@ -789,97 +789,97 @@ msgstr "" msgid "Database" msgstr "Pangkalan Data" -#: db_tracking.php:73 libraries/messages.inc.php:1146 +#: db_tracking.php:73 libraries/messages.inc.php:1142 msgid "Last version" msgstr "" -#: db_tracking.php:74 libraries/messages.inc.php:1145 tbl_tracking.php:594 +#: db_tracking.php:74 libraries/messages.inc.php:1141 tbl_tracking.php:594 #, fuzzy msgid "Created" msgstr "Cipta" -#: db_tracking.php:75 libraries/messages.inc.php:1147 tbl_tracking.php:595 +#: db_tracking.php:75 libraries/messages.inc.php:1143 tbl_tracking.php:595 msgid "Updated" msgstr "" #: db_tracking.php:77 libraries/Index.class.php:440 -#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:27 +#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:23 #: server_databases.php:203 server_privileges.php:1503 #: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187 msgid "Action" msgstr "Aksi" -#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:247 +#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:243 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:106 libraries/messages.inc.php:1142 tbl_tracking.php:548 +#: db_tracking.php:106 libraries/messages.inc.php:1138 tbl_tracking.php:548 #: tbl_tracking.php:606 tbl_tracking.php:613 msgid "active" msgstr "" -#: db_tracking.php:108 libraries/messages.inc.php:1143 tbl_tracking.php:550 +#: db_tracking.php:108 libraries/messages.inc.php:1139 tbl_tracking.php:550 #: tbl_tracking.php:608 tbl_tracking.php:610 msgid "not active" msgstr "" -#: db_tracking.php:121 libraries/messages.inc.php:1160 +#: db_tracking.php:121 libraries/messages.inc.php:1156 #, fuzzy msgid "Versions" msgstr "Operasi" -#: db_tracking.php:122 libraries/messages.inc.php:1132 tbl_tracking.php:379 +#: db_tracking.php:122 libraries/messages.inc.php:1128 tbl_tracking.php:379 #: tbl_tracking.php:624 msgid "Tracking report" msgstr "" -#: db_tracking.php:123 libraries/messages.inc.php:1144 tbl_tracking.php:251 +#: db_tracking.php:123 libraries/messages.inc.php:1140 tbl_tracking.php:251 #: tbl_tracking.php:624 #, fuzzy msgid "Structure snapshot" msgstr "Struktur sahaja" -#: db_tracking.php:152 libraries/messages.inc.php:1154 +#: db_tracking.php:152 libraries/messages.inc.php:1150 msgid "Untracked tables" msgstr "" -#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1153 +#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1149 #: tbl_structure.php:529 tbl_structure.php:531 #, fuzzy msgid "Track table" msgstr "Periksa Jadual" -#: db_tracking.php:200 libraries/messages.inc.php:1121 +#: db_tracking.php:200 libraries/messages.inc.php:1117 #, fuzzy msgid "Database Log" msgstr "Pangkalan Data" -#: export.php:62 libraries/messages.inc.php:312 +#: export.php:62 libraries/messages.inc.php:308 msgid "Selected export type has to be saved in file!" msgstr "" -#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:567 +#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:563 #, php-format msgid "Insufficient space to save the file %s." msgstr "" -#: export.php:294 libraries/messages.inc.php:324 +#: export.php:294 libraries/messages.inc.php:320 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "" -#: export.php:298 export.php:302 libraries/messages.inc.php:562 +#: export.php:298 export.php:302 libraries/messages.inc.php:558 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "" -#: export.php:629 libraries/messages.inc.php:276 +#: export.php:629 libraries/messages.inc.php:272 #, php-format msgid "Dump has been saved to file %s." msgstr "" -#: import.php:60 libraries/messages.inc.php:1202 +#: import.php:60 libraries/messages.inc.php:1198 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation%" @@ -887,21 +887,21 @@ msgid "" msgstr "" #: import.php:279 import.php:332 libraries/File.class.php:849 -#: libraries/File.class.php:961 libraries/messages.inc.php:325 +#: libraries/File.class.php:961 libraries/messages.inc.php:321 msgid "File could not be read" msgstr "" #: import.php:287 import.php:296 import.php:315 import.php:324 #: libraries/File.class.php:1031 libraries/File.class.php:1039 #: libraries/File.class.php:1055 libraries/File.class.php:1063 -#: libraries/messages.inc.php:1189 +#: libraries/messages.inc.php:1185 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." msgstr "" -#: import.php:337 libraries/messages.inc.php:547 +#: import.php:337 libraries/messages.inc.php:543 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -909,41 +909,41 @@ msgid "" msgstr "" #: import.php:372 libraries/display_import.lib.php:24 -#: libraries/messages.inc.php:125 +#: libraries/messages.inc.php:121 msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:397 libraries/messages.inc.php:102 +#: import.php:397 libraries/messages.inc.php:98 msgid "The bookmark has been deleted." msgstr "TandaBuku telah dipadam." -#: import.php:401 libraries/messages.inc.php:879 +#: import.php:401 libraries/messages.inc.php:875 msgid "Showing bookmark" msgstr "" -#: import.php:403 libraries/messages.inc.php:101 +#: import.php:403 libraries/messages.inc.php:97 #, php-format msgid "Bookmark %s created" msgstr "" -#: import.php:409 import.php:415 libraries/messages.inc.php:407 +#: import.php:409 import.php:415 libraries/messages.inc.php:403 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" -#: import.php:424 libraries/messages.inc.php:1107 +#: import.php:424 libraries/messages.inc.php:1103 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: index.php:190 libraries/messages.inc.php:553 +#: index.php:190 libraries/messages.inc.php:549 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" "phpMyAdmin lebih mesra dengan pelayar web menyokong-kerangka seperti " "mozilla." -#: js/messages.php:25 libraries/messages.inc.php:155 +#: js/messages.php:25 libraries/messages.inc.php:151 #: server_synchronize.php:345 server_synchronize.php:357 #: server_synchronize.php:373 server_synchronize.php:380 #: server_synchronize.php:739 server_synchronize.php:767 @@ -951,118 +951,118 @@ msgstr "" msgid "Click to select" msgstr "" -#: js/messages.php:26 libraries/messages.inc.php:156 +#: js/messages.php:26 libraries/messages.inc.php:152 msgid "Click to unselect" msgstr "" #: js/messages.php:27 libraries/import.lib.php:103 -#: libraries/messages.inc.php:550 sql.php:89 +#: libraries/messages.inc.php:546 sql.php:89 msgid "\"DROP DATABASE\" statements are disabled." msgstr "keterangan \"DROP DATABASE\" di tidak aktifkan ." -#: js/messages.php:30 libraries/messages.inc.php:270 +#: js/messages.php:30 libraries/messages.inc.php:266 #: libraries/mult_submits.inc.php:258 sql.php:188 msgid "Do you really want to " msgstr "Adakah anda ingin " -#: js/messages.php:31 libraries/messages.inc.php:271 +#: js/messages.php:31 libraries/messages.inc.php:267 #: libraries/mult_submits.inc.php:258 sql.php:172 msgid "You are about to DESTROY a complete database!" msgstr "" -#: js/messages.php:34 libraries/messages.inc.php:94 +#: js/messages.php:34 libraries/messages.inc.php:90 msgid "You are about to DISABLE a BLOB Repository!" msgstr "" -#: js/messages.php:35 libraries/messages.inc.php:91 +#: js/messages.php:35 libraries/messages.inc.php:87 #, php-format msgid "Are you sure you want to disable all BLOB references for database %s?" msgstr "" -#: js/messages.php:38 libraries/messages.inc.php:342 +#: js/messages.php:38 libraries/messages.inc.php:338 msgid "Missing value in the form!" msgstr "Kehilangan nilai pada borang! !" -#: js/messages.php:39 libraries/messages.inc.php:570 +#: js/messages.php:39 libraries/messages.inc.php:566 msgid "This is not a number!" msgstr "Ini adalah bukan nombor!!" -#: js/messages.php:42 libraries/messages.inc.php:380 +#: js/messages.php:42 libraries/messages.inc.php:376 msgid "The host name is empty!" msgstr "Nama hos adalah kosong!" -#: js/messages.php:43 libraries/messages.inc.php:1208 +#: js/messages.php:43 libraries/messages.inc.php:1204 msgid "The user name is empty!" msgstr "Kata Pengenalan kosong!" -#: js/messages.php:44 libraries/messages.inc.php:607 +#: js/messages.php:44 libraries/messages.inc.php:603 #: server_privileges.php:1197 user_password.php:70 msgid "The password is empty!" msgstr "Katalaluan adalah kosong!" -#: js/messages.php:45 libraries/messages.inc.php:609 +#: js/messages.php:45 libraries/messages.inc.php:605 #: server_privileges.php:1195 user_password.php:73 msgid "The passwords aren't the same!" msgstr "Katalaluan tidak sama!" -#: js/messages.php:49 libraries/messages.inc.php:123 pmd_general.php:342 +#: js/messages.php:49 libraries/messages.inc.php:119 pmd_general.php:342 #: pmd_general.php:379 msgid "Cancel" msgstr "" -#: js/messages.php:52 libraries/messages.inc.php:514 +#: js/messages.php:52 libraries/messages.inc.php:510 msgid "Modifications have been saved" msgstr "Pengubahsuaian telah disimpan" -#: js/messages.php:53 libraries/messages.inc.php:741 +#: js/messages.php:53 libraries/messages.inc.php:737 #, fuzzy msgid "Relation deleted" msgstr "Paparan Hubungan" -#: js/messages.php:54 libraries/messages.inc.php:340 +#: js/messages.php:54 libraries/messages.inc.php:336 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:55 libraries/messages.inc.php:434 +#: js/messages.php:55 libraries/messages.inc.php:430 #, fuzzy msgid "Internal relation added" msgstr "Ciri-ciri hubungan am" -#: js/messages.php:56 libraries/messages.inc.php:299 +#: js/messages.php:56 libraries/messages.inc.php:295 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:57 libraries/messages.inc.php:300 +#: js/messages.php:57 libraries/messages.inc.php:296 msgid "Error: relation already exists." msgstr "" -#: js/messages.php:58 libraries/messages.inc.php:302 +#: js/messages.php:58 libraries/messages.inc.php:298 msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:59 libraries/messages.inc.php:351 +#: js/messages.php:59 libraries/messages.inc.php:347 #: libraries/relation.lib.php:107 msgid "General relation features" msgstr "Ciri-ciri hubungan am" -#: js/messages.php:59 libraries/messages.inc.php:260 +#: js/messages.php:59 libraries/messages.inc.php:256 #: libraries/relation.lib.php:101 libraries/relation.lib.php:108 msgid "Disabled" msgstr "Tidak Membenarkan" -#: js/messages.php:60 libraries/messages.inc.php:850 +#: js/messages.php:60 libraries/messages.inc.php:846 msgid "Select referenced key" msgstr "" -#: js/messages.php:61 libraries/messages.inc.php:848 +#: js/messages.php:61 libraries/messages.inc.php:844 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:62 libraries/messages.inc.php:653 +#: js/messages.php:62 libraries/messages.inc.php:649 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:63 libraries/messages.inc.php:142 pmd_general.php:77 +#: js/messages.php:63 libraries/messages.inc.php:138 pmd_general.php:77 #: tbl_relation.php:548 msgid "Choose field to display" msgstr "Pilih Medan untuk dipapar" @@ -1082,9 +1082,9 @@ msgid "Prev" msgstr "Terdahulu" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2332 -#: libraries/common.lib.php:2335 libraries/display_tbl.lib.php:338 -#: libraries/messages.inc.php:543 server_binlog.php:205 server_binlog.php:207 +#: js/messages.php:77 libraries/common.lib.php:2344 +#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: libraries/messages.inc.php:539 server_binlog.php:205 server_binlog.php:207 #: tbl_printview.php:424 tbl_structure.php:802 msgid "Next" msgstr "Berikut" @@ -1159,27 +1159,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1543 +#: js/messages.php:97 libraries/common.lib.php:1555 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1545 +#: js/messages.php:99 libraries/common.lib.php:1557 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1547 +#: js/messages.php:101 libraries/common.lib.php:1559 msgid "Mar" msgstr "Mac" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1549 +#: js/messages.php:103 libraries/common.lib.php:1561 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1551 +#: js/messages.php:105 libraries/common.lib.php:1563 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1187,37 +1187,37 @@ msgid "May" msgstr "Mei" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1553 +#: js/messages.php:107 libraries/common.lib.php:1565 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1555 +#: js/messages.php:109 libraries/common.lib.php:1567 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1557 +#: js/messages.php:111 libraries/common.lib.php:1569 msgid "Aug" msgstr "Ogos" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1559 +#: js/messages.php:113 libraries/common.lib.php:1571 msgid "Sep" msgstr "Sept" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1561 +#: js/messages.php:115 libraries/common.lib.php:1573 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1563 +#: js/messages.php:117 libraries/common.lib.php:1575 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1565 +#: js/messages.php:119 libraries/common.lib.php:1577 msgid "Dec" msgstr "Dis" @@ -1258,37 +1258,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1568 +#: js/messages.php:132 libraries/common.lib.php:1580 msgid "Sun" msgstr "Aha" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1570 +#: js/messages.php:134 libraries/common.lib.php:1582 msgid "Mon" msgstr "Isn" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1572 +#: js/messages.php:136 libraries/common.lib.php:1584 msgid "Tue" msgstr "Sel" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1574 +#: js/messages.php:138 libraries/common.lib.php:1586 msgid "Wed" msgstr "Rab" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1576 +#: js/messages.php:140 libraries/common.lib.php:1588 msgid "Thu" msgstr "Kha" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1578 +#: js/messages.php:142 libraries/common.lib.php:1590 msgid "Fri" msgstr "Jum" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1580 +#: js/messages.php:144 libraries/common.lib.php:1592 msgid "Sat" msgstr "Sab" @@ -1362,76 +1362,76 @@ msgstr "sedang digunakan" msgid "Second" msgstr "Rekod" -#: libraries/Config.class.php:1015 libraries/messages.inc.php:338 +#: libraries/Config.class.php:1015 libraries/messages.inc.php:334 msgid "Font size" msgstr "" #: libraries/File.class.php:344 libraries/File.class.php:432 #: libraries/File.class.php:569 libraries/File.class.php:708 -#: libraries/messages.inc.php:1201 +#: libraries/messages.inc.php:1197 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.class.php:414 libraries/messages.inc.php:1198 +#: libraries/File.class.php:414 libraries/messages.inc.php:1194 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:417 libraries/messages.inc.php:1197 +#: libraries/File.class.php:417 libraries/messages.inc.php:1193 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:420 libraries/messages.inc.php:1200 +#: libraries/File.class.php:420 libraries/messages.inc.php:1196 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:423 libraries/messages.inc.php:1199 +#: libraries/File.class.php:423 libraries/messages.inc.php:1195 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:426 libraries/messages.inc.php:1195 +#: libraries/File.class.php:426 libraries/messages.inc.php:1191 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:429 libraries/messages.inc.php:1196 +#: libraries/File.class.php:429 libraries/messages.inc.php:1192 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:908 libraries/messages.inc.php:319 +#: libraries/File.class.php:908 libraries/messages.inc.php:315 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "" -#: libraries/Index.class.php:428 libraries/messages.inc.php:554 +#: libraries/Index.class.php:428 libraries/messages.inc.php:550 #: tbl_relation.php:529 msgid "No index defined!" msgstr "Tiada indeks ditafrifkan!" -#: libraries/Index.class.php:433 libraries/messages.inc.php:411 +#: libraries/Index.class.php:433 libraries/messages.inc.php:407 #: server_databases.php:132 tbl_tracking.php:316 msgid "Indexes" msgstr "Indeks" -#: libraries/Index.class.php:444 libraries/messages.inc.php:1186 +#: libraries/Index.class.php:444 libraries/messages.inc.php:1182 #: 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:475 tbl_tracking.php:322 msgid "Unique" msgstr "Unik" -#: libraries/Index.class.php:445 libraries/messages.inc.php:596 +#: libraries/Index.class.php:445 libraries/messages.inc.php:592 #: tbl_tracking.php:323 msgid "Packed" msgstr "" -#: libraries/Index.class.php:447 libraries/messages.inc.php:131 +#: libraries/Index.class.php:447 libraries/messages.inc.php:127 #: tbl_tracking.php:325 msgid "Cardinality" msgstr "Kardinaliti" -#: libraries/Index.class.php:450 libraries/messages.inc.php:162 +#: libraries/Index.class.php:450 libraries/messages.inc.php:158 #: tbl_tracking.php:279 tbl_tracking.php:328 #, fuzzy msgid "Comment" @@ -1440,29 +1440,29 @@ msgstr "Komen" #: libraries/Index.class.php:466 libraries/common.lib.php:616 #: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:280 pdf_pages.php:280 +#: libraries/messages.inc.php:276 pdf_pages.php:280 #: setup/frames/index.inc.php:124 setup/lib/messages.inc.php:352 #: tbl_row_action.php:69 msgid "Edit" msgstr "Ubah" -#: libraries/Index.class.php:472 libraries/messages.inc.php:666 +#: libraries/Index.class.php:472 libraries/messages.inc.php:662 msgid "The primary key has been dropped" msgstr "Kekunci utama telah digugurkan" -#: libraries/Index.class.php:476 libraries/messages.inc.php:413 +#: libraries/Index.class.php:476 libraries/messages.inc.php:409 #, php-format msgid "Index %s has been dropped" msgstr "Indeks %s telah digugurkan" -#: libraries/Index.class.php:576 libraries/messages.inc.php:412 +#: libraries/Index.class.php:576 libraries/messages.inc.php:408 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "" -#: libraries/List_Database.class.php:431 libraries/messages.inc.php:218 +#: libraries/List_Database.class.php:431 libraries/messages.inc.php:214 #: libraries/server_links.inc.php:41 server_databases.php:88 #: server_privileges.php:1621 setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" @@ -1489,85 +1489,85 @@ msgid_plural "%1$d rows inserted." msgstr[0] "" msgstr[1] "" -#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:549 +#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:545 msgid "" "There is no detailed status information available for this storage engine." msgstr "" -#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:291 +#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:287 #, php-format msgid "%s is available on this MySQL server." msgstr "" -#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:292 +#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:288 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "" -#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:294 +#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:290 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "" -#: libraries/Table.class.php:1019 libraries/messages.inc.php:443 +#: libraries/Table.class.php:1019 libraries/messages.inc.php:439 msgid "Invalid database" msgstr "" -#: libraries/Table.class.php:1033 libraries/messages.inc.php:450 +#: libraries/Table.class.php:1033 libraries/messages.inc.php:446 #: tbl_get_field.php:26 msgid "Invalid table name" msgstr "" -#: libraries/Table.class.php:1048 libraries/messages.inc.php:301 +#: libraries/Table.class.php:1048 libraries/messages.inc.php:297 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "" -#: libraries/Table.class.php:1132 libraries/messages.inc.php:754 +#: libraries/Table.class.php:1132 libraries/messages.inc.php:750 #, php-format msgid "Table %s has been renamed to %s" msgstr "Jadual %s telah ditukarnama ke %s" -#: libraries/Theme.class.php:162 libraries/messages.inc.php:1099 +#: libraries/Theme.class.php:162 libraries/messages.inc.php:1095 #, php-format msgid "No valid image path for theme %s found!" msgstr "" -#: libraries/Theme.class.php:384 libraries/messages.inc.php:1097 +#: libraries/Theme.class.php:384 libraries/messages.inc.php:1093 msgid "No preview available." msgstr "" -#: libraries/Theme.class.php:387 libraries/messages.inc.php:1089 +#: libraries/Theme.class.php:387 libraries/messages.inc.php:1085 msgid "take it" msgstr "" -#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1096 +#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1092 #, php-format msgid "Default theme %s not found!" msgstr "" -#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1098 +#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1094 #, php-format msgid "Theme %s not found!" msgstr "" -#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1100 +#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1096 #, php-format msgid "Theme path not found for theme %s!" msgstr "" -#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1101 +#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1097 #: test/theme.php:161 themes.php:21 themes.php:41 msgid "Theme / Style" msgstr "" -#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:172 +#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:168 msgid "Cannot connect: invalid settings." msgstr "" #: libraries/auth/config.auth.lib.php:92 #: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65 -#: libraries/messages.inc.php:1238 test/theme.php:152 +#: libraries/messages.inc.php:1234 test/theme.php:152 #, php-format msgid "Welcome to %s" msgstr "Selamat Datang ke %s" @@ -1587,105 +1587,105 @@ msgid "" "the administrator of the MySQL server." msgstr "" -#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:488 +#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:484 msgid "Log in" msgstr "Logmasuk" #: libraries/auth/cookie.auth.lib.php:246 -#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:659 +#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:655 #: libraries/navigation_header.inc.php:93 #: libraries/navigation_header.inc.php:95 msgid "phpMyAdmin documentation" msgstr "Dokumentasi phpMyAdmin" #: libraries/auth/cookie.auth.lib.php:258 -#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:492 +#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:488 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:493 +#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:489 #, fuzzy msgid "Server:" msgstr "Pelayan" -#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:494 +#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:490 msgid "Username:" msgstr "Namapengguna:" -#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:491 +#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:487 msgid "Password:" msgstr "Katalaluan:" -#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:854 +#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:850 msgid "Server Choice" msgstr "Pilihan Pelayan" #: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 -#: libraries/messages.inc.php:177 +#: libraries/messages.inc.php:173 msgid "Cookies must be enabled past this point." msgstr "Cecikut mestilah dihidupkan ketika ini." #: libraries/auth/cookie.auth.lib.php:671 -#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:489 +#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:485 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" #: libraries/auth/cookie.auth.lib.php:675 -#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:544 +#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:540 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" #: libraries/auth/cookie.auth.lib.php:685 #: libraries/auth/cookie.auth.lib.php:687 -#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:126 +#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:122 msgid "Cannot log in to the MySQL server" msgstr "Tidak boleh log-masuk ke server MySQL" -#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1245 +#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1241 msgid "Wrong username/password. Access denied." msgstr "Salah kata pengenalan/kata laluan. Akses dilarang." #: libraries/auth/swekey/swekey.auth.lib.php:118 -#: libraries/messages.inc.php:1057 +#: libraries/messages.inc.php:1053 #, php-format msgid "File %s does not contain any key id" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:157 #: libraries/auth/swekey/swekey.auth.lib.php:180 -#: libraries/messages.inc.php:1056 +#: libraries/messages.inc.php:1052 msgid "Hardware authentication failed" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:166 -#: libraries/messages.inc.php:1058 +#: libraries/messages.inc.php:1054 msgid "No valid authentication key plugged" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:202 -#: libraries/messages.inc.php:1055 +#: libraries/messages.inc.php:1051 msgid "Authenticating..." msgstr "" -#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1230 +#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1226 msgid "View image" msgstr "" -#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:652 +#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:648 msgid "Play audio" msgstr "" -#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1232 +#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1228 msgid "View video" msgstr "" -#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:269 +#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:265 msgid "Download file" msgstr "" -#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:128 +#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:124 msgid "" "Couldn't load the iconv or recode extension needed for charset conversion. " "Either configure PHP to enable these extensions or disable charset " @@ -1697,7 +1697,7 @@ msgstr "" #: libraries/charset_conversion.lib.php:79 #: libraries/charset_conversion.lib.php:90 -#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:130 +#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:126 msgid "" "Couldn't use the iconv, libiconv, or recode_string functions, although the " "necessary extensions appear to be loaded. Check your PHP configuration." @@ -1705,7 +1705,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/messages.inc.php:170 +#: libraries/common.inc.php:583 libraries/messages.inc.php:166 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!" @@ -1737,22 +1737,22 @@ msgstr "" msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:636 libraries/messages.inc.php:448 +#: libraries/common.inc.php:636 libraries/messages.inc.php:444 #, 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/messages.inc.php:856 libraries/select_server.lib.php:41 +#: libraries/messages.inc.php:852 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/messages.inc.php:437 +#: libraries/common.inc.php:823 libraries/messages.inc.php:433 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.lib.php:147 libraries/messages.inc.php:499 +#: libraries/common.lib.php:147 libraries/messages.inc.php:495 #, php-format msgid "Max: %s%s" msgstr "" @@ -1774,7 +1774,7 @@ msgstr "Hantar" #: libraries/common.lib.php:428 libraries/common.lib.php:430 #: libraries/common.lib.php:432 libraries/common.lib.php:448 #: libraries/common.lib.php:450 libraries/dbg/setup.php:25 -#: libraries/display_export.lib.php:164 libraries/messages.inc.php:267 +#: libraries/display_export.lib.php:164 libraries/messages.inc.php:263 #: libraries/relation.lib.php:97 libraries/sql_query_form.lib.php:451 #: libraries/sql_query_form.lib.php:454 main.php:229 pdf_pages.php:37 #: pdf_pages.php:43 pdf_pages.php:49 pdf_pages.php:54 @@ -1784,55 +1784,55 @@ msgstr "Dokumentasi" #: libraries/common.lib.php:581 libraries/core.lib.php:234 #: libraries/core.lib.php:263 libraries/import.lib.php:134 -#: libraries/messages.inc.php:297 pdf_schema.php:32 pdf_schema.php:232 +#: libraries/messages.inc.php:293 pdf_schema.php:32 pdf_schema.php:232 #: tbl_change.php:1027 tbl_operations.php:213 tbl_relation.php:290 #: view_operations.php:62 msgid "Error" msgstr "Ralat" #: libraries/common.lib.php:595 libraries/header_printview.inc.php:61 -#: libraries/messages.inc.php:1023 server_processlist.php:60 +#: libraries/messages.inc.php:1019 server_processlist.php:60 #: server_status.php:247 msgid "SQL query" msgstr "kueri-SQL" -#: libraries/common.lib.php:634 libraries/messages.inc.php:538 +#: libraries/common.lib.php:634 libraries/messages.inc.php:534 msgid "MySQL said: " msgstr "MySQL berkata: " -#: libraries/common.lib.php:667 libraries/messages.inc.php:76 +#: libraries/common.lib.php:667 libraries/messages.inc.php:72 #: pdf_schema.php:241 user_password.php:115 msgid "Back" msgstr "Undur" -#: libraries/common.lib.php:1177 libraries/messages.inc.php:309 +#: libraries/common.lib.php:1177 libraries/messages.inc.php:305 #: setup/lib/messages.inc.php:353 msgid "Explain SQL" msgstr "Terangkan Kod SQL" -#: libraries/common.lib.php:1180 libraries/messages.inc.php:551 +#: libraries/common.lib.php:1180 libraries/messages.inc.php:547 msgid "Skip Explain SQL" msgstr "Skip Explain SQL" -#: libraries/common.lib.php:1212 libraries/messages.inc.php:563 +#: libraries/common.lib.php:1212 libraries/messages.inc.php:559 msgid "Without PHP Code" msgstr "Tanpa Kod PHP" -#: libraries/common.lib.php:1215 libraries/messages.inc.php:649 +#: libraries/common.lib.php:1215 libraries/messages.inc.php:645 #: setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "Cipta Kod PHP" -#: libraries/common.lib.php:1233 libraries/messages.inc.php:737 +#: libraries/common.lib.php:1233 libraries/messages.inc.php:733 #: server_status.php:341 setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "" -#: libraries/common.lib.php:1242 libraries/messages.inc.php:575 +#: libraries/common.lib.php:1242 libraries/messages.inc.php:571 msgid "Skip Validate SQL" msgstr "Melangkau Pengesahan SQL" -#: libraries/common.lib.php:1245 libraries/messages.inc.php:1220 +#: libraries/common.lib.php:1245 libraries/messages.inc.php:1216 #: setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "Mengesahkan SQL" @@ -1846,11 +1846,11 @@ msgid "Inline" msgstr "" #: libraries/common.lib.php:1332 libraries/common.lib.php:1347 -#: libraries/messages.inc.php:713 +#: libraries/messages.inc.php:709 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1351 libraries/messages.inc.php:1108 +#: libraries/common.lib.php:1351 libraries/messages.inc.php:1104 #: libraries/tbl_triggers.lib.php:28 server_processlist.php:58 msgid "Time" msgstr "Masa" @@ -1884,46 +1884,56 @@ msgstr "PB" msgid "EiB" msgstr "EB" +#. l10n: Thousands separator +#: libraries/common.lib.php:1417 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: libraries/common.lib.php:1419 +msgid "." +msgstr "." + #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1584 +#: libraries/common.lib.php:1596 #: libraries/transformations/text_plain__dateformat.inc.php:28 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y at %I:%M %p" -#: libraries/common.lib.php:1886 +#: libraries/common.lib.php:1898 #, 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:2301 libraries/common.lib.php:2304 -#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:664 +#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:660 #: server_status.php:608 msgid "Begin" msgstr "Mula" -#: libraries/common.lib.php:2302 libraries/common.lib.php:2305 -#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:665 +#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:661 #: server_binlog.php:168 server_binlog.php:170 msgid "Previous" msgstr "Terdahulu" -#: libraries/common.lib.php:2333 libraries/common.lib.php:2336 -#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:289 +#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:285 msgid "End" msgstr "Tamat" -#: libraries/common.lib.php:2409 libraries/messages.inc.php:455 +#: libraries/common.lib.php:2421 libraries/messages.inc.php:451 #, php-format msgid "Jump to database "%s"." msgstr "" -#: libraries/common.lib.php:2429 libraries/messages.inc.php:461 +#: libraries/common.lib.php:2441 libraries/messages.inc.php:457 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/core.lib.php:286 libraries/dbg/setup.php:22 -#: libraries/messages.inc.php:127 +#: libraries/messages.inc.php:123 #, php-format msgid "" "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " @@ -1931,116 +1941,116 @@ msgid "" msgstr "" #: libraries/db_events.inc.php:20 libraries/db_events.inc.php:22 -#: libraries/export/sql.php:415 libraries/messages.inc.php:306 +#: libraries/export/sql.php:415 libraries/messages.inc.php:302 msgid "Events" msgstr "" #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 -#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:541 +#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:537 #: libraries/tbl_triggers.lib.php:27 setup/frames/index.inc.php:112 msgid "Name" msgstr "Nama" -#: libraries/db_links.inc.php:45 libraries/messages.inc.php:216 +#: libraries/db_links.inc.php:45 libraries/messages.inc.php:212 #, php-format msgid "Database %s has been dropped." msgstr "angkalan data %s telah digugurkan." #: libraries/db_links.inc.php:57 libraries/db_links.inc.php:58 -#: libraries/db_links.inc.php:59 libraries/messages.inc.php:234 +#: libraries/db_links.inc.php:59 libraries/messages.inc.php:230 msgid "Database seems to be empty!" msgstr "" -#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1025 +#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1021 #: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60 #: querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1152 +#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1148 #: libraries/tbl_links.inc.php:69 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:86 libraries/messages.inc.php:719 +#: libraries/db_links.inc.php:86 libraries/messages.inc.php:715 msgid "Query" msgstr "Kueri" -#: libraries/db_links.inc.php:91 libraries/messages.inc.php:253 +#: libraries/db_links.inc.php:91 libraries/messages.inc.php:249 msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:98 libraries/messages.inc.php:397 +#: libraries/db_links.inc.php:98 libraries/messages.inc.php:393 #: libraries/server_links.inc.php:88 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:104 libraries/messages.inc.php:587 +#: libraries/db_links.inc.php:104 libraries/messages.inc.php:583 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" msgstr "Operasi" -#: libraries/db_links.inc.php:111 libraries/messages.inc.php:709 +#: libraries/db_links.inc.php:111 libraries/messages.inc.php:705 #: libraries/server_links.inc.php:66 server_privileges.php:72 #: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117 msgid "Privileges" msgstr "Privilej" #: libraries/db_routines.inc.php:30 libraries/db_routines.inc.php:32 -#: libraries/messages.inc.php:812 +#: libraries/messages.inc.php:808 msgid "Routines" msgstr "" -#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:811 +#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:807 msgid "Return type" msgstr "" #: libraries/db_structure.lib.php:57 libraries/display_tbl.lib.php:1848 -#: libraries/messages.inc.php:65 +#: libraries/messages.inc.php:61 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "" -#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:593 +#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:589 #: server_databases.php:142 tbl_printview.php:336 tbl_structure.php:683 msgid "Overhead" msgstr "Melebihi" #: libraries/dbi/mysql.dbi.lib.php:112 libraries/dbi/mysqli.dbi.lib.php:124 -#: libraries/messages.inc.php:176 +#: libraries/messages.inc.php:172 msgid "Connection for controluser as defined in your configuration failed." msgstr "" #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 -#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:855 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:851 msgid "The server is not responding" msgstr "" #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:1010 +#: libraries/messages.inc.php:1006 msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "" -#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:255 +#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:251 #: tbl_structure.php:609 msgid "Details..." msgstr "" -#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:143 +#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:139 #: main.php:91 user_password.php:111 user_password.php:129 msgid "Change password" msgstr "Ubah Katalaluan" -#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:561 +#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:557 #: libraries/replication_gui.lib.php:341 server_privileges.php:768 msgid "No Password" msgstr "Tiada Katalaluan" -#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:610 +#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:606 #: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60 #: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335 #: libraries/replication_gui.lib.php:345 server_privileges.php:757 @@ -2049,13 +2059,13 @@ msgstr "Tiada Katalaluan" msgid "Password" msgstr "Katalaluan" -#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:806 +#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:802 #: libraries/replication_gui.lib.php:349 libraries/replication_gui.lib.php:352 #: server_privileges.php:776 server_privileges.php:779 msgid "Re-type" msgstr "Ulang-taip" -#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:608 +#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:604 msgid "Password Hashing" msgstr "" @@ -2063,91 +2073,91 @@ msgstr "" msgid "MySQL 4.0 compatible" msgstr "" -#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:353 +#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:349 #: libraries/replication_gui.lib.php:356 server_privileges.php:783 msgid "Generate Password" msgstr "" -#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:352 +#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:348 #: libraries/replication_gui.lib.php:359 server_privileges.php:786 #, fuzzy msgid "Generate" msgstr "Dijana oleh" #: libraries/display_create_database.lib.php:22 -#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:189 +#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:185 msgid "Create new database" msgstr "Cipta pangkalan data baru" -#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:185 +#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:181 msgid "Create" msgstr "Cipta" -#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:564 +#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:560 #: server_privileges.php:74 server_privileges.php:1388 #: server_replication.php:35 msgid "No Privileges" msgstr "Tiada Privilej" -#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:445 +#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:441 msgid "Table must have at least one field." msgstr "" -#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:190 +#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:186 #, php-format msgid "Create table on database %s" msgstr "Cipta jadual baru pada pangkalan data %s" -#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:577 +#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:573 msgid "Number of fields" msgstr "" -#: libraries/display_export.lib.php:42 libraries/messages.inc.php:124 +#: libraries/display_export.lib.php:42 libraries/messages.inc.php:120 msgid "Could not load export plugins, please check your installation!" msgstr "" -#: libraries/display_export.lib.php:107 libraries/messages.inc.php:277 +#: libraries/display_export.lib.php:107 libraries/messages.inc.php:273 #, php-format msgid "Dump %s row(s) starting at record # %s" msgstr "Longgok %s baris bermula pada rekod # %s." -#: libraries/display_export.lib.php:115 libraries/messages.inc.php:274 +#: libraries/display_export.lib.php:115 libraries/messages.inc.php:270 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:125 libraries/messages.inc.php:852 +#: libraries/display_export.lib.php:125 libraries/messages.inc.php:848 #: setup/lib/messages.inc.php:82 msgid "Save as file" msgstr "Simpan sebagai fail" -#: libraries/display_export.lib.php:134 libraries/messages.inc.php:828 +#: libraries/display_export.lib.php:134 libraries/messages.inc.php:824 #, fuzzy, php-format msgid "Save on server in %s directory" msgstr "direktori muatnaik pelayan-web" -#: libraries/display_export.lib.php:142 libraries/messages.inc.php:594 +#: libraries/display_export.lib.php:142 libraries/messages.inc.php:590 #: setup/lib/messages.inc.php:90 msgid "Overwrite existing file(s)" msgstr "" -#: libraries/display_export.lib.php:148 libraries/messages.inc.php:330 +#: libraries/display_export.lib.php:148 libraries/messages.inc.php:326 msgid "File name template" msgstr "" -#: libraries/display_export.lib.php:152 libraries/messages.inc.php:327 +#: libraries/display_export.lib.php:152 libraries/messages.inc.php:323 #, fuzzy msgid "server name" msgstr "Kata Pengenalan" -#: libraries/display_export.lib.php:155 libraries/messages.inc.php:326 +#: libraries/display_export.lib.php:155 libraries/messages.inc.php:322 msgid "database name" msgstr "" -#: libraries/display_export.lib.php:158 libraries/messages.inc.php:328 +#: libraries/display_export.lib.php:158 libraries/messages.inc.php:324 msgid "table name" msgstr "" -#: libraries/display_export.lib.php:162 libraries/messages.inc.php:329 +#: libraries/display_export.lib.php:162 libraries/messages.inc.php:325 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2155,24 +2165,24 @@ msgid "" "3$s. Other text will be kept as is." msgstr "" -#: libraries/display_export.lib.php:202 libraries/messages.inc.php:331 +#: libraries/display_export.lib.php:202 libraries/messages.inc.php:327 msgid "remember template" msgstr "" #: libraries/display_export.lib.php:210 libraries/display_import.lib.php:178 -#: libraries/display_import.lib.php:191 libraries/messages.inc.php:145 +#: libraries/display_import.lib.php:191 libraries/messages.inc.php:141 #: libraries/sql_query_form.lib.php:549 msgid "Character set of the file:" msgstr "Fail bagi set Aksara:" -#: libraries/display_export.lib.php:235 libraries/messages.inc.php:166 +#: libraries/display_export.lib.php:235 libraries/messages.inc.php:162 #: setup/lib/messages.inc.php:84 msgid "Compression" 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/messages.inc.php:558 +#: libraries/export/sql.php:868 libraries/messages.inc.php:554 #: libraries/tbl_properties.inc.php:575 server_privileges.php:1836 #: server_processlist.php:75 msgid "None" @@ -2196,467 +2206,467 @@ msgstr "\"digzip\"" msgid "bzipped" msgstr "bzipped" -#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1018 +#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1014 msgid "SQL compatibility mode" msgstr "" -#: libraries/display_import.lib.php:67 libraries/messages.inc.php:398 +#: libraries/display_import.lib.php:67 libraries/messages.inc.php:394 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " "browsers." msgstr "" -#: libraries/display_import.lib.php:77 libraries/messages.inc.php:406 +#: libraries/display_import.lib.php:77 libraries/messages.inc.php:402 msgid "The file is being processed, please be patient." msgstr "" -#: libraries/display_import.lib.php:99 libraries/messages.inc.php:408 +#: libraries/display_import.lib.php:99 libraries/messages.inc.php:404 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." msgstr "" -#: libraries/display_import.lib.php:126 libraries/messages.inc.php:333 +#: libraries/display_import.lib.php:126 libraries/messages.inc.php:329 msgid "File to import" msgstr "" -#: libraries/display_import.lib.php:137 libraries/messages.inc.php:486 +#: libraries/display_import.lib.php:137 libraries/messages.inc.php:482 #: libraries/sql_query_form.lib.php:524 msgid "Location of the text file" msgstr "Lokasi bagi fail teks" -#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1203 +#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1199 msgid "File uploads are not allowed on this server." msgstr "" -#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1235 +#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1231 #: libraries/sql_query_form.lib.php:533 tbl_change.php:1028 msgid "The directory you set for upload work cannot be reached" msgstr "Direktori muatnaik yang telah ditetapkan tidak dapat dicapai" -#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1236 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1232 #: libraries/sql_query_form.lib.php:536 tbl_change.php:1031 msgid "web server upload directory" msgstr "direktori muatnaik pelayan-web" -#: libraries/display_import.lib.php:212 libraries/messages.inc.php:167 +#: libraries/display_import.lib.php:212 libraries/messages.inc.php:163 #, php-format msgid "Imported file compression will be automatically detected from: %s" msgstr "" -#: libraries/display_import.lib.php:219 libraries/messages.inc.php:600 +#: libraries/display_import.lib.php:219 libraries/messages.inc.php:596 msgid "Partial import" msgstr "" -#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1105 +#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1101 #, php-format msgid "" "Previous import timed out, after resubmitting will continue from position %d." msgstr "" -#: libraries/display_import.lib.php:232 libraries/messages.inc.php:51 +#: libraries/display_import.lib.php:232 libraries/messages.inc.php:47 msgid "" "Allow the interruption of an import in case the script detects it is close " "to the PHP timeout limit. This might be good way to import large files, " "however it can break transactions." msgstr "" -#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1004 +#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1000 #: setup/lib/messages.inc.php:161 msgid "Number of records (queries) to skip from start" msgstr "" -#: libraries/display_import.lib.php:255 libraries/messages.inc.php:396 +#: libraries/display_import.lib.php:255 libraries/messages.inc.php:392 #: setup/lib/messages.inc.php:160 msgid "Format of imported file" msgstr "" #: libraries/display_select_lang.lib.php:45 -#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:465 +#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:461 #: setup/frames/index.inc.php:70 msgid "Language" msgstr "" -#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:447 +#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:443 #, php-format msgid "%d is not valid row number." msgstr "" -#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:814 +#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:810 msgid "row(s) starting from record #" msgstr "baris bermula dari rekod #" -#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:817 +#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:813 msgid "horizontal" msgstr "mengufuk" -#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:816 +#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:812 msgid "horizontal (rotated headers)" msgstr "" -#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:819 +#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:815 msgid "vertical" msgstr "menegak" -#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:818 +#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:814 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "pada mod %s dan ulang pengepala selepas %s sel" -#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:495 +#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:491 msgid "This operation could take a long time. Proceed anyway?" msgstr "" -#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1012 +#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1008 msgid "Sort by key" msgstr "" #: libraries/display_tbl.lib.php:555 libraries/import.lib.php:1082 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:591 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:587 #: tbl_select.php:267 tbl_structure.php:754 #, fuzzy msgid "Options" msgstr "Operasi" #: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:570 -#: libraries/messages.inc.php:601 +#: libraries/messages.inc.php:597 msgid "Partial Texts" msgstr "Sebahagian Teks" #: libraries/display_tbl.lib.php:561 libraries/display_tbl.lib.php:574 -#: libraries/messages.inc.php:346 +#: libraries/messages.inc.php:342 msgid "Full Texts" msgstr "Teks Penuh" -#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:739 +#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:735 #, fuzzy msgid "Relational key" msgstr "Skema Hubungan" -#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:738 +#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:734 msgid "Relational display field" msgstr "" -#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:872 +#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:868 msgid "Show binary contents" msgstr "" -#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:873 +#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:869 msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:871 +#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:867 msgid "Show binary contents as HEX" msgstr "" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:375 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:371 #: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320 msgid "Hide" msgstr "" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:508 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:504 #: libraries/tbl_properties.inc.php:144 transformation_overview.php:47 msgid "Browser transformation" msgstr "" #: libraries/display_tbl.lib.php:1126 libraries/display_tbl.lib.php:1130 -#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:308 +#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:304 msgid "Execute bookmarked query" msgstr "" #: libraries/display_tbl.lib.php:1145 libraries/display_tbl.lib.php:1157 -#: libraries/messages.inc.php:244 +#: libraries/messages.inc.php:240 msgid "The row has been deleted" msgstr "Baris telah dipadam" #: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056 -#: libraries/messages.inc.php:460 server_processlist.php:71 +#: libraries/messages.inc.php:456 server_processlist.php:71 #: tbl_row_action.php:64 msgid "Kill" msgstr "Bunuh" -#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:849 +#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:845 msgid "in query" msgstr "pada kueri" -#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:881 +#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:877 msgid "Showing rows" msgstr "Papar baris" -#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1113 +#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1109 msgid "total" msgstr "jumlah" -#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:727 +#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:723 #: sql.php:524 #, php-format msgid "Query took %01.4f sec" msgstr "" -#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:135 +#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:131 #: 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:471 msgid "Change" msgstr "Ubah" -#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:724 +#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:720 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:671 +#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:667 msgid "Print view (with full texts)" msgstr "" -#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:482 +#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:478 msgid "Link not found" msgstr "Pautan tidak dijumpai" -#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1224 +#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1220 #: main.php:228 #, fuzzy msgid "Version information" msgstr "Informasi MasaJana" -#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:423 +#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:419 msgid "Data home directory" msgstr "" -#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:424 +#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:420 msgid "The common part of the directory path for all InnoDB data files." msgstr "" -#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:422 +#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:418 #, fuzzy msgid "Data files" msgstr "Data sahaja" -#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:418 +#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:414 msgid "Autoextend increment" msgstr "" -#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:419 +#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:415 msgid "" " The increment size for extending the size of an autoextending tablespace " "when it becomes full." msgstr "" -#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:420 +#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:416 msgid "Buffer pool size" msgstr "" -#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:421 +#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:417 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." msgstr "" -#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:112 +#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:108 msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:426 +#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:422 #: server_status.php:306 msgid "InnoDB Status" msgstr "" -#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:113 +#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:109 msgid "Buffer Pool Usage" msgstr "" -#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1114 +#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1110 #: server_databases.php:137 server_databases.php:305 server_status.php:414 #: server_status.php:475 server_status.php:496 tbl_printview.php:351 #: tbl_structure.php:697 msgid "Total" msgstr "Jumlah" -#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:425 +#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:421 msgid "pages" msgstr "" -#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:343 +#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:339 msgid "Free pages" msgstr "" -#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:259 +#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:255 msgid "Dirty pages" msgstr "" -#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:230 +#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:226 msgid "Pages containing data" msgstr "" -#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:598 +#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:594 #, fuzzy msgid "Pages to be flushed" msgstr "Jadual %s telah dibuangkan" -#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:119 +#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:115 msgid "Busy pages" msgstr "" -#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:467 +#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:463 msgid "Latched pages" msgstr "" -#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:111 +#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:107 msgid "Buffer Pool Activity" msgstr "" -#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:731 +#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:727 msgid "Read requests" msgstr "" -#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1244 +#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1240 msgid "Write requests" msgstr "" -#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:115 +#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:111 msgid "Read misses" msgstr "" -#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:117 +#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:113 msgid "Write waits" msgstr "" -#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:114 +#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:110 msgid "Read misses in %" msgstr "" -#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:116 +#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:112 msgid "Write waits in %" msgstr "" -#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:522 +#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:518 msgid "Data pointer size" msgstr "" -#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:523 +#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:519 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." msgstr "" -#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:528 +#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:524 msgid "Automatic recovery mode" msgstr "" -#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:529 +#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:525 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." msgstr "" -#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:527 +#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:523 msgid "Maximum size for temporary sort files" msgstr "" -#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:526 +#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:522 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " "INFILE)." msgstr "" -#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:525 +#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:521 msgid "Maximum size for temporary files on index creation" msgstr "" -#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:524 +#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:520 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " "method." msgstr "" -#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:531 +#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:527 msgid "Repair threads" msgstr "" -#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:530 +#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:526 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." msgstr "" -#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:533 +#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:529 msgid "Sort buffer size" msgstr "" -#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:532 +#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:528 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." msgstr "" -#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:620 +#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:616 msgid "Index cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:619 +#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:615 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." msgstr "" -#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:630 +#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:626 msgid "Record cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:629 +#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:625 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " "to the handle data (.xtd) and row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:624 +#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:620 msgid "Log cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:623 +#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:619 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:628 +#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:624 msgid "Log file threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:627 +#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:623 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:634 +#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:630 msgid "Transaction buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:633 +#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:629 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." msgstr "" -#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:611 +#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:607 msgid "Checkpoint frequency" msgstr "" -#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:612 +#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:608 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." msgstr "" -#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:615 +#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:611 msgid "Data log threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:616 +#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:612 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -2664,48 +2674,48 @@ msgid "" "that can be stored in the database." msgstr "" -#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:618 +#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:614 msgid "Garbage threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:617 +#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:613 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." msgstr "" -#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:622 +#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:618 msgid "Log buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:621 +#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:617 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " "required to write a data log." msgstr "" -#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:613 +#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:609 msgid "Data file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:614 +#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:610 msgid "The grow size of the handle data (.xtd) files." msgstr "" -#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:632 +#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:628 msgid "Row file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:631 +#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:627 msgid "The grow size of the row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:626 +#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:622 msgid "Log file count" msgstr "" -#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:625 +#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:621 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -2715,19 +2725,19 @@ msgstr "" #: libraries/export/htmlword.php:132 libraries/export/odt.php:168 #: libraries/export/sql.php:881 libraries/export/texytext.php:130 -#: libraries/messages.inc.php:275 +#: libraries/messages.inc.php:271 msgid "Dumping data for table" msgstr "Melonggok data bagi jadual" #: libraries/export/htmlword.php:185 libraries/export/odt.php:238 #: libraries/export/sql.php:785 libraries/export/texytext.php:177 -#: libraries/messages.inc.php:1086 +#: libraries/messages.inc.php:1082 msgid "Table structure for table" msgstr "Struktur jadual bagi jadual" #: libraries/export/latex.php:125 libraries/export/sql.php:232 #: libraries/export/xml.php:102 libraries/header_printview.inc.php:57 -#: libraries/messages.inc.php:381 libraries/replication_gui.lib.php:63 +#: libraries/messages.inc.php:377 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:170 libraries/replication_gui.lib.php:265 #: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325 #: server_privileges.php:692 server_privileges.php:695 @@ -2739,189 +2749,189 @@ msgstr "Hos" #: libraries/export/latex.php:130 libraries/export/sql.php:233 #: libraries/export/xml.php:107 libraries/header_printview.inc.php:59 -#: libraries/messages.inc.php:354 +#: libraries/messages.inc.php:350 msgid "Generation Time" msgstr "Masa dijana" #: libraries/export/latex.php:131 libraries/export/sql.php:235 -#: libraries/export/xml.php:108 libraries/messages.inc.php:864 main.php:186 +#: libraries/export/xml.php:108 libraries/messages.inc.php:860 main.php:186 msgid "Server version" msgstr "Versi Pelayan" #: libraries/export/latex.php:132 libraries/export/sql.php:236 -#: libraries/export/xml.php:109 libraries/messages.inc.php:651 +#: libraries/export/xml.php:109 libraries/messages.inc.php:647 msgid "PHP Version" msgstr "Versi PHP" #: libraries/export/latex.php:201 libraries/export/sql.php:868 -#: libraries/messages.inc.php:226 server_databases.php:127 +#: libraries/messages.inc.php:222 server_databases.php:127 #: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317 #: tbl_structure.php:666 msgid "Data" msgstr "Data" -#: libraries/export/odt.php:318 libraries/messages.inc.php:506 +#: libraries/export/odt.php:318 libraries/messages.inc.php:502 #: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "" -#: libraries/export/sql.php:387 libraries/messages.inc.php:711 +#: libraries/export/sql.php:387 libraries/messages.inc.php:707 #, fuzzy msgid "Procedures" msgstr "Proses-proses" -#: libraries/export/sql.php:401 libraries/messages.inc.php:348 +#: libraries/export/sql.php:401 libraries/messages.inc.php:344 #, fuzzy msgid "Functions" msgstr "Fungsi" -#: libraries/export/sql.php:618 libraries/messages.inc.php:174 +#: libraries/export/sql.php:618 libraries/messages.inc.php:170 msgid "Constraints for dumped tables" msgstr "" -#: libraries/export/sql.php:627 libraries/messages.inc.php:175 +#: libraries/export/sql.php:627 libraries/messages.inc.php:171 msgid "Constraints for table" msgstr "" -#: libraries/export/sql.php:727 libraries/messages.inc.php:512 +#: libraries/export/sql.php:727 libraries/messages.inc.php:508 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/export/sql.php:739 libraries/messages.inc.php:743 +#: libraries/export/sql.php:739 libraries/messages.inc.php:739 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/export/sql.php:796 libraries/messages.inc.php:1178 +#: libraries/export/sql.php:796 libraries/messages.inc.php:1174 #: libraries/tbl_triggers.lib.php:19 msgid "Triggers" msgstr "" -#: libraries/export/sql.php:808 libraries/messages.inc.php:1046 +#: libraries/export/sql.php:808 libraries/messages.inc.php:1042 #, fuzzy msgid "Structure for view" msgstr "Struktur sahaja" -#: libraries/export/sql.php:817 libraries/messages.inc.php:1029 +#: libraries/export/sql.php:817 libraries/messages.inc.php:1025 msgid "Stand-in structure for view" msgstr "" #: libraries/footer.inc.php:184 libraries/footer.inc.php:195 -#: libraries/footer.inc.php:198 libraries/messages.inc.php:586 +#: libraries/footer.inc.php:198 libraries/messages.inc.php:582 msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/header.inc.php:115 libraries/messages.inc.php:542 +#: libraries/header.inc.php:115 libraries/messages.inc.php:538 #, fuzzy msgid "New table" msgstr "Tiada Jadual" #: libraries/header_printview.inc.php:50 libraries/header_printview.inc.php:55 -#: libraries/messages.inc.php:1024 +#: libraries/messages.inc.php:1020 msgid "SQL result" msgstr "Hasil SQL" -#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:350 +#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:346 msgid "Generated by" msgstr "Dijana oleh" #: libraries/header_printview.inc.php:63 libraries/import.lib.php:145 -#: libraries/messages.inc.php:820 navigation.php:652 navigation.php:674 +#: libraries/messages.inc.php:816 navigation.php:652 navigation.php:674 #: server_databases.php:122 tbl_printview.php:394 tbl_structure.php:366 #: tbl_structure.php:778 msgid "Rows" msgstr "Baris" -#: libraries/import.lib.php:150 libraries/messages.inc.php:285 sql.php:520 +#: libraries/import.lib.php:150 libraries/messages.inc.php:281 sql.php:520 #: tbl_change.php:181 tbl_get_field.php:35 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL memulangkan set hasil kosong (i.e. sifar baris)" -#: libraries/import.lib.php:1078 libraries/messages.inc.php:399 +#: libraries/import.lib.php:1078 libraries/messages.inc.php:395 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1079 libraries/messages.inc.php:400 +#: libraries/import.lib.php:1079 libraries/messages.inc.php:396 msgid "View a structure`s contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1080 libraries/messages.inc.php:401 +#: libraries/import.lib.php:1080 libraries/messages.inc.php:397 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1081 libraries/messages.inc.php:402 +#: libraries/import.lib.php:1081 libraries/messages.inc.php:398 msgid "Edit its structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1084 libraries/messages.inc.php:362 +#: libraries/import.lib.php:1084 libraries/messages.inc.php:358 #, fuzzy msgid "Go to database" msgstr "Tiada pangkalan data" #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:869 +#: libraries/messages.inc.php:865 msgid "settings" msgstr "" -#: libraries/import.lib.php:1106 libraries/messages.inc.php:363 +#: libraries/import.lib.php:1106 libraries/messages.inc.php:359 msgid "Go to table" msgstr "" -#: libraries/import.lib.php:1109 libraries/messages.inc.php:1047 +#: libraries/import.lib.php:1109 libraries/messages.inc.php:1043 #, fuzzy msgid "structure" msgstr "Struktur" -#: libraries/import.lib.php:1115 libraries/messages.inc.php:364 +#: libraries/import.lib.php:1115 libraries/messages.inc.php:360 msgid "Go to view" msgstr "" #: libraries/import/csv.php:58 libraries/import/csv.php:70 #: libraries/import/csv.php:74 libraries/import/csv.php:78 -#: libraries/messages.inc.php:442 +#: libraries/messages.inc.php:438 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "" -#: libraries/import/csv.php:59 libraries/messages.inc.php:323 +#: libraries/import/csv.php:59 libraries/messages.inc.php:319 msgid "Fields terminated by" msgstr "Medan dihapuskan oleh" -#: libraries/import/csv.php:71 libraries/messages.inc.php:320 +#: libraries/import/csv.php:71 libraries/messages.inc.php:316 msgid "Fields enclosed by" msgstr "Medan disertai oleh" -#: libraries/import/csv.php:75 libraries/messages.inc.php:321 +#: libraries/import/csv.php:75 libraries/messages.inc.php:317 msgid "Fields escaped by" msgstr "Medan dilarikan oleh" -#: libraries/import/csv.php:79 libraries/messages.inc.php:481 +#: libraries/import/csv.php:79 libraries/messages.inc.php:477 msgid "Lines terminated by" msgstr "Baris ditamatkan oleh" -#: libraries/import/csv.php:119 libraries/messages.inc.php:439 +#: libraries/import/csv.php:119 libraries/messages.inc.php:435 #, php-format msgid "Invalid column (%s) specified!" msgstr "" #: libraries/import/csv.php:177 libraries/import/csv.php:424 -#: libraries/messages.inc.php:441 +#: libraries/messages.inc.php:437 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/import/csv.php:312 libraries/messages.inc.php:440 +#: libraries/import/csv.php:312 libraries/messages.inc.php:436 #, php-format msgid "Invalid field count in CSV input on line %d." msgstr "" -#: libraries/import/ldi.php:55 libraries/messages.inc.php:446 +#: libraries/import/ldi.php:55 libraries/messages.inc.php:442 msgid "This plugin does not support compressed imports!" msgstr "" #: libraries/import/xml.php:74 libraries/import/xml.php:130 -#: libraries/messages.inc.php:1247 +#: libraries/messages.inc.php:1243 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -2950,794 +2960,784 @@ msgstr "" msgid "ltr" msgstr "ltr" -#. l10n: Thousands separator -#: libraries/messages.inc.php:21 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: libraries/messages.inc.php:23 -msgid "." -msgstr "." - -#: libraries/messages.inc.php:25 server_status.php:461 +#: libraries/messages.inc.php:21 server_status.php:461 msgid "Aborted" msgstr "DiBatalkan" -#: libraries/messages.inc.php:28 main.php:68 +#: libraries/messages.inc.php:24 main.php:68 #, fuzzy msgid "Actions" msgstr "Aksi" -#: libraries/messages.inc.php:34 libraries/tbl_properties.inc.php:780 +#: libraries/messages.inc.php:30 libraries/tbl_properties.inc.php:780 #: tbl_structure.php:543 #, fuzzy, php-format msgid "Add %s field(s)" msgstr "Tambah medan baru" -#: libraries/messages.inc.php:35 +#: libraries/messages.inc.php:31 msgid "Add custom comment into header (\\n splits lines)" msgstr "" -#: libraries/messages.inc.php:36 +#: libraries/messages.inc.php:32 msgid "Add into comments" msgstr "" -#: libraries/messages.inc.php:37 tbl_structure.php:541 +#: libraries/messages.inc.php:33 tbl_structure.php:541 msgid "Add new field" msgstr "Tambah medan baru" -#: libraries/messages.inc.php:38 server_privileges.php:1886 +#: libraries/messages.inc.php:34 server_privileges.php:1886 msgid "Add privileges on the following database" msgstr "" -#: libraries/messages.inc.php:39 server_privileges.php:1907 +#: libraries/messages.inc.php:35 server_privileges.php:1907 msgid "Add privileges on the following table" msgstr "" -#: libraries/messages.inc.php:40 tbl_select.php:288 +#: libraries/messages.inc.php:36 tbl_select.php:288 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Tambah kriteria carian (badan bagi klausa \"where\"):" -#: libraries/messages.inc.php:41 tbl_indexes.php:251 +#: libraries/messages.inc.php:37 tbl_indexes.php:251 #, php-format msgid "Add to index  %s column(s)" msgstr "Tambah ke indeks  %s kolum" -#: libraries/messages.inc.php:42 server_privileges.php:1570 +#: libraries/messages.inc.php:38 server_privileges.php:1570 #: server_privileges.php:1594 server_privileges.php:1988 #: server_privileges.php:2177 msgid "Add a new User" msgstr "Tambah Pengguna Baru" -#: libraries/messages.inc.php:43 server_privileges.php:931 +#: libraries/messages.inc.php:39 server_privileges.php:931 msgid "You have added a new user." msgstr "Anda telah menambah pengguna baru." -#: libraries/messages.inc.php:44 server_privileges.php:571 +#: libraries/messages.inc.php:40 server_privileges.php:571 msgid "Administration" msgstr "" -#: libraries/messages.inc.php:45 tbl_structure.php:557 +#: libraries/messages.inc.php:41 tbl_structure.php:557 #, php-format msgid "After %s" msgstr "Selepas %s" -#: libraries/messages.inc.php:46 tbl_change.php:1147 +#: libraries/messages.inc.php:42 tbl_change.php:1147 msgid "Go back to previous page" msgstr "Kembali ke muka sebelumnya" -#: libraries/messages.inc.php:47 tbl_change.php:1148 +#: libraries/messages.inc.php:43 tbl_change.php:1148 msgid "Insert another new row" msgstr "Tambah baris yang baru" -#: libraries/messages.inc.php:48 tbl_change.php:1160 +#: libraries/messages.inc.php:44 tbl_change.php:1160 msgid "Edit next row" msgstr "" -#: libraries/messages.inc.php:49 tbl_change.php:1152 +#: libraries/messages.inc.php:45 tbl_change.php:1152 #, fuzzy msgid "Go back to this page" msgstr "Kembali ke muka sebelumnya" -#: libraries/messages.inc.php:50 querywindow.php:115 +#: libraries/messages.inc.php:46 querywindow.php:115 msgid "All" msgstr "Semua" -#: libraries/messages.inc.php:53 tbl_operations.php:249 +#: libraries/messages.inc.php:49 tbl_operations.php:249 msgid "Alter table order by" msgstr "Alter table order by" -#: libraries/messages.inc.php:54 tbl_operations.php:660 +#: libraries/messages.inc.php:50 tbl_operations.php:660 msgid "Analyze" msgstr "" -#: libraries/messages.inc.php:57 +#: libraries/messages.inc.php:53 #, fuzzy msgid "and" msgstr "Dan" -#: libraries/messages.inc.php:59 pmd_general.php:87 +#: libraries/messages.inc.php:55 pmd_general.php:87 msgid "Angular links" msgstr "" -#: libraries/messages.inc.php:60 tbl_structure.php:401 tbl_structure.php:415 +#: libraries/messages.inc.php:56 tbl_structure.php:401 tbl_structure.php:415 #: tbl_structure.php:429 #, php-format msgid "An index has been added on %s" msgstr "Indeks telah ditambah pada %s" -#: libraries/messages.inc.php:61 server_privileges.php:1521 +#: libraries/messages.inc.php:57 server_privileges.php:1521 #: server_privileges.php:2123 msgid "Any" msgstr "Sebarang" -#: libraries/messages.inc.php:62 libraries/replication_gui.lib.php:298 +#: libraries/messages.inc.php:58 libraries/replication_gui.lib.php:298 #: server_privileges.php:725 msgid "Any host" msgstr "Sebarang hos" -#: libraries/messages.inc.php:63 libraries/replication_gui.lib.php:250 +#: libraries/messages.inc.php:59 libraries/replication_gui.lib.php:250 #: server_privileges.php:677 msgid "Any user" msgstr "Sebarang pengguna" -#: libraries/messages.inc.php:64 server_synchronize.php:449 +#: libraries/messages.inc.php:60 server_synchronize.php:449 #: server_synchronize.php:894 msgid "Apply Selected Changes" msgstr "" -#: libraries/messages.inc.php:66 tbl_structure.php:386 +#: libraries/messages.inc.php:62 tbl_structure.php:386 #, php-format msgid "A primary key has been added on %s" msgstr "Kekunci utama telah ditambah pada %s" -#: libraries/messages.inc.php:67 libraries/mysql_charsets.lib.php:368 +#: libraries/messages.inc.php:63 libraries/mysql_charsets.lib.php:368 msgid "Arabic" msgstr "" -#: libraries/messages.inc.php:68 libraries/mysql_charsets.lib.php:359 +#: libraries/messages.inc.php:64 libraries/mysql_charsets.lib.php:359 msgid "Armenian" msgstr "" -#: libraries/messages.inc.php:70 libraries/tbl_properties.inc.php:394 +#: libraries/messages.inc.php:66 libraries/tbl_properties.inc.php:394 msgid "As defined:" msgstr "" -#: libraries/messages.inc.php:71 tbl_structure.php:556 +#: libraries/messages.inc.php:67 tbl_structure.php:556 msgid "At Beginning of Table" msgstr "Pada Awalan Jadual" -#: libraries/messages.inc.php:72 tbl_structure.php:555 +#: libraries/messages.inc.php:68 tbl_structure.php:555 msgid "At End of Table" msgstr "Pada Akhir Jadual" -#: libraries/messages.inc.php:73 libraries/tbl_properties.inc.php:108 +#: libraries/messages.inc.php:69 libraries/tbl_properties.inc.php:108 #: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:144 #: tbl_structure.php:180 msgid "Attributes" msgstr "Atribut" -#: libraries/messages.inc.php:74 pdf_pages.php:303 pdf_pages.php:306 +#: libraries/messages.inc.php:70 pdf_pages.php:303 pdf_pages.php:306 msgid "Automatic layout" msgstr "" -#: libraries/messages.inc.php:77 libraries/mysql_charsets.lib.php:354 +#: libraries/messages.inc.php:73 libraries/mysql_charsets.lib.php:354 msgid "Baltic" msgstr "" -#: libraries/messages.inc.php:78 libraries/sqlparser.lib.php:175 +#: libraries/messages.inc.php:74 libraries/sqlparser.lib.php:175 msgid "BEGIN CUT" msgstr "MULA SALIN" -#: libraries/messages.inc.php:79 libraries/sqlparser.lib.php:179 +#: libraries/messages.inc.php:75 libraries/sqlparser.lib.php:179 msgid "BEGIN RAW" msgstr "MULA MENTAH" -#: libraries/messages.inc.php:80 libraries/mysql_charsets.lib.php:201 +#: libraries/messages.inc.php:76 libraries/mysql_charsets.lib.php:201 #: libraries/mysql_charsets.lib.php:402 tbl_change.php:518 msgid "Binary" msgstr "Binari" -#: libraries/messages.inc.php:81 tbl_change.php:894 +#: libraries/messages.inc.php:77 tbl_change.php:894 msgid "Binary - do not edit" msgstr "Binari - jgn diubah" -#: libraries/messages.inc.php:82 libraries/server_links.inc.php:76 +#: libraries/messages.inc.php:78 libraries/server_links.inc.php:76 #: server_binlog.php:110 server_status.php:253 test/theme.php:121 #, fuzzy msgid "Binary log" msgstr "Binari" -#: libraries/messages.inc.php:83 server_binlog.php:217 +#: libraries/messages.inc.php:79 server_binlog.php:217 #, fuzzy msgid "Event type" msgstr "Jenis Kueri" -#: libraries/messages.inc.php:84 server_binlog.php:220 +#: libraries/messages.inc.php:80 server_binlog.php:220 msgid "Information" msgstr "" -#: libraries/messages.inc.php:85 server_binlog.php:215 +#: libraries/messages.inc.php:81 server_binlog.php:215 msgid "Log name" msgstr "" -#: libraries/messages.inc.php:86 server_binlog.php:219 +#: libraries/messages.inc.php:82 server_binlog.php:219 msgid "Original position" msgstr "" -#: libraries/messages.inc.php:87 server_binlog.php:216 +#: libraries/messages.inc.php:83 server_binlog.php:216 msgid "Position" msgstr "" -#: libraries/messages.inc.php:88 libraries/replication_gui.lib.php:169 +#: libraries/messages.inc.php:84 libraries/replication_gui.lib.php:169 #: server_binlog.php:218 #, fuzzy msgid "Server ID" msgstr "Pelayan" -#: libraries/messages.inc.php:92 +#: libraries/messages.inc.php:88 #, fuzzy msgctxt "$strBLOBRepositoryDisabled" msgid "Disabled" msgstr "Tidak Membenarkan" -#: libraries/messages.inc.php:95 +#: libraries/messages.inc.php:91 #, fuzzy msgctxt "$strBLOBRepositoryEnabled" msgid "Enabled" msgstr "Membenarkan" -#: libraries/messages.inc.php:97 tbl_change.php:888 +#: libraries/messages.inc.php:93 tbl_change.php:888 msgid "Remove BLOB Repository Reference" msgstr "" -#: libraries/messages.inc.php:98 +#: libraries/messages.inc.php:94 #, fuzzy msgctxt "$strBLOBRepositoryRepair" msgid "Repair" msgstr "Baiki jadual" -#: libraries/messages.inc.php:99 tbl_change.php:987 +#: libraries/messages.inc.php:95 tbl_change.php:987 msgid "Upload to BLOB repository" msgstr "" -#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:359 +#: libraries/messages.inc.php:96 libraries/sql_query_form.lib.php:359 #: sql.php:677 msgid "Let every user access this bookmark" msgstr "" -#: libraries/messages.inc.php:103 sql.php:671 +#: libraries/messages.inc.php:99 sql.php:671 msgid "Label" msgstr "Label" -#: libraries/messages.inc.php:104 libraries/sql_query_form.lib.php:433 +#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:433 msgid "Bookmarked SQL query" msgstr "Tandabuku kueri-SQL" -#: libraries/messages.inc.php:105 libraries/sql_query_form.lib.php:365 +#: libraries/messages.inc.php:101 libraries/sql_query_form.lib.php:365 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/messages.inc.php:106 libraries/sql_query_form.lib.php:352 +#: libraries/messages.inc.php:102 libraries/sql_query_form.lib.php:352 #: sql.php:665 sql.php:666 sql.php:683 msgid "Bookmark this SQL query" msgstr "andabuku kueri-SQL ini" -#: libraries/messages.inc.php:107 libraries/sql_query_form.lib.php:466 +#: libraries/messages.inc.php:103 libraries/sql_query_form.lib.php:466 msgid "View only" msgstr "Paparan sahaja" -#: libraries/messages.inc.php:109 tbl_structure.php:161 +#: libraries/messages.inc.php:105 tbl_structure.php:161 msgid "Browse distinct values" msgstr "" -#: libraries/messages.inc.php:110 tbl_change.php:252 tbl_select.php:27 +#: libraries/messages.inc.php:106 tbl_change.php:252 tbl_select.php:27 #: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34 msgid "Browse foreign values" msgstr "" -#: libraries/messages.inc.php:118 libraries/mysql_charsets.lib.php:213 +#: libraries/messages.inc.php:114 libraries/mysql_charsets.lib.php:213 msgid "Bulgarian" msgstr "" -#: libraries/messages.inc.php:120 +#: libraries/messages.inc.php:116 msgid "\"bzipped\"" msgstr "bzipped" -#: libraries/messages.inc.php:122 +#: libraries/messages.inc.php:118 msgid "Calendar" msgstr "" -#: libraries/messages.inc.php:129 tbl_indexes.php:75 +#: libraries/messages.inc.php:125 tbl_indexes.php:75 msgid "Can't rename index to PRIMARY!" msgstr "Tidak boleh menukar indekx ke PRIMARY!" -#: libraries/messages.inc.php:132 libraries/mysql_charsets.lib.php:223 +#: libraries/messages.inc.php:128 libraries/mysql_charsets.lib.php:223 #: libraries/mysql_charsets.lib.php:409 msgid "case-insensitive" msgstr "" -#: libraries/messages.inc.php:133 libraries/mysql_charsets.lib.php:226 +#: libraries/messages.inc.php:129 libraries/mysql_charsets.lib.php:226 #: libraries/mysql_charsets.lib.php:411 msgid "case-sensitive" msgstr "" -#: libraries/messages.inc.php:134 libraries/mysql_charsets.lib.php:332 +#: libraries/messages.inc.php:130 libraries/mysql_charsets.lib.php:332 msgid "Central European" msgstr "" -#: libraries/messages.inc.php:136 server_privileges.php:1969 +#: libraries/messages.inc.php:132 server_privileges.php:1969 msgid "... keep the old one." msgstr "" -#: libraries/messages.inc.php:137 server_privileges.php:1967 +#: libraries/messages.inc.php:133 server_privileges.php:1967 msgid "Create a new user with the same privileges and ..." msgstr "" -#: libraries/messages.inc.php:138 server_privileges.php:1972 +#: libraries/messages.inc.php:134 server_privileges.php:1972 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/messages.inc.php:139 server_privileges.php:1970 +#: libraries/messages.inc.php:135 server_privileges.php:1970 msgid " ... delete the old one from the user tables." msgstr "" -#: libraries/messages.inc.php:140 server_privileges.php:1971 +#: libraries/messages.inc.php:136 server_privileges.php:1971 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/messages.inc.php:141 server_privileges.php:1964 +#: libraries/messages.inc.php:137 server_privileges.php:1964 msgid "Change Login Information / Copy User" msgstr "" -#: libraries/messages.inc.php:144 libraries/mysql_charsets.lib.php:107 +#: libraries/messages.inc.php:140 libraries/mysql_charsets.lib.php:107 msgid "Charset" msgstr "" -#: libraries/messages.inc.php:146 server_collations.php:40 +#: libraries/messages.inc.php:142 server_collations.php:40 msgid "Character Sets and Collations" msgstr "" -#: libraries/messages.inc.php:147 libraries/server_links.inc.php:57 +#: libraries/messages.inc.php:143 libraries/server_links.inc.php:57 #: test/theme.php:109 msgid "Charsets" msgstr "" -#: libraries/messages.inc.php:149 tbl_operations.php:661 +#: libraries/messages.inc.php:145 tbl_operations.php:661 msgid "Check" msgstr "" -#: libraries/messages.inc.php:151 server_databases.php:293 +#: libraries/messages.inc.php:147 server_databases.php:293 #: server_databases.php:294 #, fuzzy msgid "Check Privileges" msgstr "Tiada Privilej" -#: libraries/messages.inc.php:152 server_databases.php:289 +#: libraries/messages.inc.php:148 server_databases.php:289 #, php-format msgid "Check privileges for database "%s"." msgstr "" -#: libraries/messages.inc.php:154 pdf_pages.php:261 +#: libraries/messages.inc.php:150 pdf_pages.php:261 msgid "Please choose a page to edit" msgstr "Sila Pilih Laman untuk diubah" -#: libraries/messages.inc.php:157 +#: libraries/messages.inc.php:153 msgid "Displaying Column Comments" msgstr "Memaparkan Komen Kolum" -#: libraries/messages.inc.php:159 pdf_pages.php:483 view_create.php:148 +#: libraries/messages.inc.php:155 pdf_pages.php:483 view_create.php:148 msgid "Column names" msgstr "Nama Kolum" -#: libraries/messages.inc.php:160 server_privileges.php:1685 +#: libraries/messages.inc.php:156 server_privileges.php:1685 msgid "Column-specific privileges" msgstr "" -#: libraries/messages.inc.php:164 +#: libraries/messages.inc.php:160 msgid "MySQL 4.0 compatible" msgstr "" -#: libraries/messages.inc.php:165 +#: libraries/messages.inc.php:161 msgid "Complete inserts" msgstr "Kemasukkan Selesai" -#: libraries/messages.inc.php:168 +#: libraries/messages.inc.php:164 #, php-format msgid "Could not load default configuration from: \"%1$s\"" msgstr "" -#: libraries/messages.inc.php:169 main.php:306 +#: libraries/messages.inc.php:165 main.php:306 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: libraries/messages.inc.php:171 pdf_schema.php:672 +#: libraries/messages.inc.php:167 pdf_schema.php:672 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Sila konfigurasikan kordinat bagi jadual %s" -#: libraries/messages.inc.php:173 server_status.php:433 +#: libraries/messages.inc.php:169 server_status.php:433 msgid "Connections" msgstr "Hubungan" -#: libraries/messages.inc.php:179 tbl_operations.php:509 +#: libraries/messages.inc.php:175 tbl_operations.php:509 msgid "Copy table to (database.table):" msgstr "Salin jadual ke (pangkalandata.jadual):" -#: libraries/messages.inc.php:180 tbl_move_copy.php:58 +#: libraries/messages.inc.php:176 tbl_move_copy.php:58 #, php-format msgid "Table %s has been copied to %s." msgstr "Jadual %s telah disalin ke %s." -#: libraries/messages.inc.php:181 tbl_move_copy.php:48 +#: libraries/messages.inc.php:177 tbl_move_copy.php:48 msgid "Can't copy table to same one!" msgstr "" -#: libraries/messages.inc.php:182 server_synchronize.php:94 +#: libraries/messages.inc.php:178 server_synchronize.php:94 msgid "Could not connect to the source" msgstr "" -#: libraries/messages.inc.php:183 server_synchronize.php:97 +#: libraries/messages.inc.php:179 server_synchronize.php:97 msgid "Could not connect to the target" msgstr "" -#: libraries/messages.inc.php:184 server_processlist.php:24 +#: libraries/messages.inc.php:180 server_processlist.php:24 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" "phpMyAdmin tidak dapat mematikan bebenang %s. Ianya mungkin telah ditutup." -#: libraries/messages.inc.php:187 +#: libraries/messages.inc.php:183 #, php-format msgid "Create an index on %s columns" msgstr "Cipta indeks pada  %s " -#: libraries/messages.inc.php:188 tbl_indexes.php:160 +#: libraries/messages.inc.php:184 tbl_indexes.php:160 msgid "Create a new index" msgstr "Cipta indeks baru" -#: libraries/messages.inc.php:191 pdf_pages.php:297 pmd_pdf.php:114 +#: libraries/messages.inc.php:187 pdf_pages.php:297 pmd_pdf.php:114 msgid "Create a page" msgstr "Cipta Halaman baru" -#: libraries/messages.inc.php:192 +#: libraries/messages.inc.php:188 msgid "Creation of PDFs" msgstr "Ciptaan bagi PDF" -#: libraries/messages.inc.php:193 pmd_general.php:74 pmd_general.php:306 +#: libraries/messages.inc.php:189 pmd_general.php:74 pmd_general.php:306 msgid "Create relation" msgstr "" -#: libraries/messages.inc.php:194 pmd_general.php:71 +#: libraries/messages.inc.php:190 pmd_general.php:71 #: server_synchronize.php:429 server_synchronize.php:872 #, fuzzy msgid "Create table" msgstr "Cipta Halaman baru" -#: libraries/messages.inc.php:195 +#: libraries/messages.inc.php:191 #, fuzzy msgctxt "$strCreateTableShort" msgid "Create table" msgstr "Cipta Halaman baru" -#: libraries/messages.inc.php:196 server_privileges.php:1994 +#: libraries/messages.inc.php:192 server_privileges.php:1994 msgid "Database for user" msgstr "" -#: libraries/messages.inc.php:197 server_privileges.php:1999 +#: libraries/messages.inc.php:193 server_privileges.php:1999 msgid "Create database with same name and grant all privileges" msgstr "" -#: libraries/messages.inc.php:198 +#: libraries/messages.inc.php:194 #, fuzzy msgctxt "$strCreateUserDatabaseNone" msgid "None" msgstr "Tiada" -#: libraries/messages.inc.php:199 server_privileges.php:2003 +#: libraries/messages.inc.php:195 server_privileges.php:2003 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: libraries/messages.inc.php:200 server_privileges.php:2000 +#: libraries/messages.inc.php:196 server_privileges.php:2000 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: libraries/messages.inc.php:201 +#: libraries/messages.inc.php:197 msgid "Creation/Update/Check dates" msgstr "" -#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:229 +#: libraries/messages.inc.php:199 libraries/mysql_charsets.lib.php:229 msgid "Croatian" msgstr "" -#: libraries/messages.inc.php:204 +#: libraries/messages.inc.php:200 msgid "CSV" msgstr "data CSV" -#: libraries/messages.inc.php:205 libraries/server_synchronize.lib.php:1343 +#: libraries/messages.inc.php:201 libraries/server_synchronize.lib.php:1343 #: libraries/server_synchronize.lib.php:1369 msgid "Current server" msgstr "" -#: libraries/messages.inc.php:206 main.php:159 +#: libraries/messages.inc.php:202 main.php:159 msgid "Custom color" msgstr "" -#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:365 +#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:365 msgid "Cyrillic" msgstr "" -#: libraries/messages.inc.php:208 libraries/mysql_charsets.lib.php:232 +#: libraries/messages.inc.php:204 libraries/mysql_charsets.lib.php:232 msgid "Czech" msgstr "" -#: libraries/messages.inc.php:209 libraries/mysql_charsets.lib.php:383 +#: libraries/messages.inc.php:205 libraries/mysql_charsets.lib.php:383 msgid "Czech-Slovak" msgstr "" -#: libraries/messages.inc.php:211 libraries/mysql_charsets.lib.php:235 +#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:235 msgid "Danish" msgstr "" -#: libraries/messages.inc.php:214 +#: libraries/messages.inc.php:210 msgid "Database export options" msgstr "" -#: libraries/messages.inc.php:217 server_synchronize.php:122 +#: libraries/messages.inc.php:213 server_synchronize.php:122 #: server_synchronize.php:125 tbl_create.php:82 tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "" -#: libraries/messages.inc.php:219 server_databases.php:63 +#: libraries/messages.inc.php:215 server_databases.php:63 #, php-format msgid "%s databases have been dropped successfully." msgstr "" -#: libraries/messages.inc.php:220 libraries/server_synchronize.lib.php:1341 +#: libraries/messages.inc.php:216 libraries/server_synchronize.lib.php:1341 #: server_synchronize.php:1110 #, fuzzy msgid "Source database" msgstr "Cari di pangkalan data" -#: libraries/messages.inc.php:221 server_databases.php:88 +#: libraries/messages.inc.php:217 server_databases.php:88 msgid "Databases statistics" msgstr "Statistik pangkalan data" -#: libraries/messages.inc.php:222 server_databases.php:362 +#: libraries/messages.inc.php:218 server_databases.php:362 #: server_databases.php:363 #, fuzzy msgid "Disable Statistics" msgstr "Statistik pangkalan data" -#: libraries/messages.inc.php:223 server_databases.php:358 +#: libraries/messages.inc.php:219 server_databases.php:358 #: server_databases.php:359 #, fuzzy msgid "Enable Statistics" msgstr "Statistik pangkalan data" -#: libraries/messages.inc.php:224 server_databases.php:366 +#: libraries/messages.inc.php:220 server_databases.php:366 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." msgstr "" -#: libraries/messages.inc.php:225 libraries/server_synchronize.lib.php:1367 +#: libraries/messages.inc.php:221 libraries/server_synchronize.lib.php:1367 #: server_synchronize.php:1112 #, fuzzy msgid "Target database" msgstr "Cari di pangkalan data" -#: libraries/messages.inc.php:228 server_synchronize.php:425 +#: libraries/messages.inc.php:224 server_synchronize.php:425 #: server_synchronize.php:868 msgid "Data Difference" msgstr "" -#: libraries/messages.inc.php:231 server_synchronize.php:272 +#: libraries/messages.inc.php:227 server_synchronize.php:272 msgid "Data Synchronization" msgstr "" -#: libraries/messages.inc.php:235 server_privileges.php:526 +#: libraries/messages.inc.php:231 server_privileges.php:526 #: server_privileges.php:1679 msgid "Database-specific privileges" msgstr "" -#: libraries/messages.inc.php:237 server_privileges.php:2136 +#: libraries/messages.inc.php:233 server_privileges.php:2136 msgid "database-specific" msgstr "" -#: libraries/messages.inc.php:240 libraries/tbl_properties.inc.php:106 +#: libraries/messages.inc.php:236 libraries/tbl_properties.inc.php:106 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" msgstr "" -#: libraries/messages.inc.php:241 tbl_operations.php:589 +#: libraries/messages.inc.php:237 tbl_operations.php:589 msgid "Defragment table" msgstr "" -#: libraries/messages.inc.php:242 +#: libraries/messages.inc.php:238 msgid "Use delayed inserts" msgstr "" -#: libraries/messages.inc.php:245 server_privileges.php:1243 +#: libraries/messages.inc.php:241 server_privileges.php:1243 msgid "No users selected for deleting!" msgstr "" -#: libraries/messages.inc.php:246 pmd_general.php:372 +#: libraries/messages.inc.php:242 pmd_general.php:372 msgid "Delete relation" msgstr "" -#: libraries/messages.inc.php:248 server_privileges.php:1232 +#: libraries/messages.inc.php:244 server_privileges.php:1232 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/messages.inc.php:249 libraries/sql_query_form.lib.php:388 +#: libraries/messages.inc.php:245 libraries/sql_query_form.lib.php:388 msgid "Delimiter" msgstr "" -#: libraries/messages.inc.php:250 pdf_pages.php:506 +#: libraries/messages.inc.php:246 pdf_pages.php:506 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" msgstr "" -#: libraries/messages.inc.php:254 pmd_help.php:29 +#: libraries/messages.inc.php:250 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." msgstr "" -#: libraries/messages.inc.php:256 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:252 libraries/mysql_charsets.lib.php:247 #, fuzzy msgid "dictionary" msgstr "Kamus Data" -#: libraries/messages.inc.php:257 libraries/server_synchronize.lib.php:1348 +#: libraries/messages.inc.php:253 libraries/server_synchronize.lib.php:1348 msgid "Difference" msgstr "" -#: libraries/messages.inc.php:258 pmd_general.php:87 +#: libraries/messages.inc.php:254 pmd_general.php:87 msgid "Direct links" msgstr "" -#: libraries/messages.inc.php:261 +#: libraries/messages.inc.php:257 msgid "Disable foreign key checks" msgstr "" -#: libraries/messages.inc.php:262 +#: libraries/messages.inc.php:258 msgid "Display Features" msgstr "Paparkan Ciri-ciri" -#: libraries/messages.inc.php:263 tbl_select.php:301 +#: libraries/messages.inc.php:259 tbl_select.php:301 msgid "Display order:" msgstr "Turutan paparan:" -#: libraries/messages.inc.php:265 tbl_select.php:132 +#: libraries/messages.inc.php:261 tbl_select.php:132 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Lakukan \"kueri melalui contoh\" (wilidcard: \"%\")" -#: libraries/messages.inc.php:266 +#: libraries/messages.inc.php:262 msgid "DocSQL" msgstr "" -#: libraries/messages.inc.php:268 +#: libraries/messages.inc.php:264 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/messages.inc.php:273 server_privileges.php:1579 +#: libraries/messages.inc.php:269 server_privileges.php:1579 #: server_privileges.php:1580 server_privileges.php:1581 msgid "Drop the databases that have the same names as the users." msgstr "" -#: libraries/messages.inc.php:278 tbl_printview.php:382 tbl_structure.php:743 +#: libraries/messages.inc.php:274 tbl_printview.php:382 tbl_structure.php:743 msgid "dynamic" msgstr "dinamik" -#: libraries/messages.inc.php:282 server_privileges.php:1324 +#: libraries/messages.inc.php:278 server_privileges.php:1324 #: server_privileges.php:1610 msgid "Edit Privileges" msgstr "Ubah Privilej" -#: libraries/messages.inc.php:283 tbl_printview.php:341 tbl_structure.php:688 +#: libraries/messages.inc.php:279 tbl_printview.php:341 tbl_structure.php:688 msgid "Effective" msgstr "Berkesan" -#: libraries/messages.inc.php:286 libraries/relation.lib.php:100 +#: libraries/messages.inc.php:282 libraries/relation.lib.php:100 msgid "Enabled" msgstr "Membenarkan" -#: libraries/messages.inc.php:287 +#: libraries/messages.inc.php:283 msgid "Enclose export in a transaction" msgstr "" -#: libraries/messages.inc.php:288 libraries/sqlparser.lib.php:177 +#: libraries/messages.inc.php:284 libraries/sqlparser.lib.php:177 msgid "END CUT" msgstr "TAMAT SALIN" -#: libraries/messages.inc.php:290 libraries/sqlparser.lib.php:183 +#: libraries/messages.inc.php:286 libraries/sqlparser.lib.php:183 msgid "END RAW" msgstr "TAMAT MENTAH" -#: libraries/messages.inc.php:293 libraries/server_links.inc.php:61 +#: libraries/messages.inc.php:289 libraries/server_links.inc.php:61 #: test/theme.php:113 msgid "Engines" msgstr "" -#: libraries/messages.inc.php:295 libraries/mysql_charsets.lib.php:238 +#: libraries/messages.inc.php:291 libraries/mysql_charsets.lib.php:238 msgid "English" msgstr "" -#: libraries/messages.inc.php:296 server_privileges.php:393 +#: libraries/messages.inc.php:292 server_privileges.php:393 #: server_privileges.php:535 server_privileges.php:1501 msgid " Note: MySQL privilege names are expressed in English " msgstr " Nota: Nama privilej MySQL adalah dinyatakan dalam B.Inggeris " -#: libraries/messages.inc.php:298 libraries/zip_extension.lib.php:49 +#: libraries/messages.inc.php:294 libraries/zip_extension.lib.php:49 #: libraries/zip_extension.lib.php:51 libraries/zip_extension.lib.php:66 msgid "Error in ZIP archive:" msgstr "" -#: libraries/messages.inc.php:303 libraries/mysql_charsets.lib.php:241 +#: libraries/messages.inc.php:299 libraries/mysql_charsets.lib.php:241 msgid "Esperanto" msgstr "" -#: libraries/messages.inc.php:304 libraries/mysql_charsets.lib.php:244 +#: libraries/messages.inc.php:300 libraries/mysql_charsets.lib.php:244 msgid "Estonian" msgstr "" -#: libraries/messages.inc.php:305 libraries/tbl_triggers.lib.php:29 +#: libraries/messages.inc.php:301 libraries/tbl_triggers.lib.php:29 #, fuzzy msgid "Event" msgstr "Hantar" -#: libraries/messages.inc.php:307 +#: libraries/messages.inc.php:303 msgid "Excel edition" msgstr "" -#: libraries/messages.inc.php:311 pmd_pdf.php:85 +#: libraries/messages.inc.php:307 pmd_pdf.php:85 msgid "Export/Import to scale" msgstr "" -#: libraries/messages.inc.php:313 +#: libraries/messages.inc.php:309 msgid "Extended inserts" msgstr "Penyelitan Lanjutan" -#: libraries/messages.inc.php:314 pdf_schema.php:1267 pdf_schema.php:1288 +#: libraries/messages.inc.php:310 pdf_schema.php:1267 pdf_schema.php:1288 #: tbl_printview.php:147 tbl_structure.php:183 tbl_tracking.php:278 msgid "Extra" msgstr "Ekstra" -#: libraries/messages.inc.php:316 server_status.php:447 +#: libraries/messages.inc.php:312 server_status.php:447 msgid "Failed attempts" msgstr "Percubaan Gagal" -#: libraries/messages.inc.php:318 tbl_structure.php:375 +#: libraries/messages.inc.php:314 tbl_structure.php:375 #, php-format msgid "Field %s has been dropped" msgstr "Medan %s telah digugurkan" -#: libraries/messages.inc.php:322 libraries/sql_query_form.lib.php:317 +#: libraries/messages.inc.php:318 libraries/sql_query_form.lib.php:317 msgid "Fields" msgstr "Medan" -#: libraries/messages.inc.php:332 server_binlog.php:136 +#: libraries/messages.inc.php:328 server_binlog.php:136 #, fuzzy msgid "Files" msgstr "Medan" -#: libraries/messages.inc.php:334 server_privileges.php:1597 +#: libraries/messages.inc.php:330 server_privileges.php:1597 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -3746,221 +3746,221 @@ msgid "" "sreload the privileges%s before you continue." msgstr "" -#: libraries/messages.inc.php:335 server_status.php:289 +#: libraries/messages.inc.php:331 server_status.php:289 msgid "Flush query cache" msgstr "" -#: libraries/messages.inc.php:336 +#: libraries/messages.inc.php:332 msgid "Flush the table (\"FLUSH\")" msgstr "Buang jadual (\"FLUSH\")" -#: libraries/messages.inc.php:337 server_status.php:271 +#: libraries/messages.inc.php:333 server_status.php:271 msgid "Flush (close) all tables" msgstr "" -#: libraries/messages.inc.php:339 tbl_relation.php:279 +#: libraries/messages.inc.php:335 tbl_relation.php:279 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" -#: libraries/messages.inc.php:341 setup/lib/messages.inc.php:88 +#: libraries/messages.inc.php:337 setup/lib/messages.inc.php:88 #: tbl_printview.php:376 tbl_structure.php:738 msgid "Format" msgstr "Format" -#: libraries/messages.inc.php:344 server_replication.php:325 +#: libraries/messages.inc.php:340 server_replication.php:325 #, fuzzy msgid "Full start" msgstr "Tekspenuh" -#: libraries/messages.inc.php:345 server_replication.php:325 +#: libraries/messages.inc.php:341 server_replication.php:325 msgid "Full stop" msgstr "" -#: libraries/messages.inc.php:347 tbl_change.php:282 tbl_change.php:320 +#: libraries/messages.inc.php:343 tbl_change.php:282 tbl_change.php:320 msgid "Function" msgstr "Fungsi" -#: libraries/messages.inc.php:355 libraries/mysql_charsets.lib.php:377 +#: libraries/messages.inc.php:351 libraries/mysql_charsets.lib.php:377 msgid "Georgian" msgstr "" -#: libraries/messages.inc.php:356 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:352 libraries/mysql_charsets.lib.php:247 #: libraries/mysql_charsets.lib.php:250 msgid "German" msgstr "" -#: libraries/messages.inc.php:357 themes.php:42 +#: libraries/messages.inc.php:353 themes.php:42 msgid "Get more themes!" msgstr "" -#: libraries/messages.inc.php:358 server_privileges.php:2134 +#: libraries/messages.inc.php:354 server_privileges.php:2134 msgid "global" msgstr "" -#: libraries/messages.inc.php:359 server_privileges.php:524 +#: libraries/messages.inc.php:355 server_privileges.php:524 #: server_privileges.php:1500 #, fuzzy msgid "Global privileges" msgstr "Tiada Privilej" -#: libraries/messages.inc.php:360 server_variables.php:55 +#: libraries/messages.inc.php:356 server_variables.php:55 #: server_variables.php:89 msgid "Global value" msgstr "Nilai Global" -#: libraries/messages.inc.php:365 server_privileges.php:1502 +#: libraries/messages.inc.php:361 server_privileges.php:1502 #: server_privileges.php:1684 server_privileges.php:2033 #, fuzzy msgid "Grant" msgstr "Cetak" -#: libraries/messages.inc.php:366 libraries/mysql_charsets.lib.php:380 +#: libraries/messages.inc.php:362 libraries/mysql_charsets.lib.php:380 msgid "Greek" msgstr "" -#: libraries/messages.inc.php:367 +#: libraries/messages.inc.php:363 msgid "\"gzipped\"" msgstr "\"digzip\"" -#: libraries/messages.inc.php:369 server_status.php:250 +#: libraries/messages.inc.php:365 server_status.php:250 msgid "Handler" msgstr "" -#: libraries/messages.inc.php:370 server_synchronize.php:464 +#: libraries/messages.inc.php:366 server_synchronize.php:464 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: libraries/messages.inc.php:372 libraries/mysql_charsets.lib.php:374 +#: libraries/messages.inc.php:368 libraries/mysql_charsets.lib.php:374 msgid "Hebrew" msgstr "" -#: libraries/messages.inc.php:373 pmd_general.php:83 +#: libraries/messages.inc.php:369 pmd_general.php:83 msgid "Help" msgstr "" -#: libraries/messages.inc.php:374 +#: libraries/messages.inc.php:370 msgid "Use hexadecimal for BLOB" msgstr "" -#: libraries/messages.inc.php:376 pmd_general.php:120 +#: libraries/messages.inc.php:372 pmd_general.php:120 #, fuzzy msgid "Hide/Show all" msgstr "Papar semua" -#: libraries/messages.inc.php:377 pmd_general.php:124 +#: libraries/messages.inc.php:373 pmd_general.php:124 msgid "Hide/Show Tables with no relation" msgstr "" -#: libraries/messages.inc.php:378 libraries/navigation_header.inc.php:54 +#: libraries/messages.inc.php:374 libraries/navigation_header.inc.php:54 #: libraries/navigation_header.inc.php:57 #: libraries/navigation_header.inc.php:58 msgid "Home" msgstr "Rumah" -#: libraries/messages.inc.php:379 main.php:233 +#: libraries/messages.inc.php:375 main.php:233 msgid "Official Homepage" msgstr "Laman Rasmi phpMyAdmin" -#: libraries/messages.inc.php:382 libraries/replication_gui.lib.php:327 +#: libraries/messages.inc.php:378 libraries/replication_gui.lib.php:327 #: server_privileges.php:753 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/messages.inc.php:383 +#: libraries/messages.inc.php:379 msgid "Microsoft Word 2000" msgstr "" -#: libraries/messages.inc.php:384 libraries/mysql_charsets.lib.php:253 +#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:253 msgid "Hungarian" msgstr "" -#: libraries/messages.inc.php:386 libraries/mysql_charsets.lib.php:256 +#: libraries/messages.inc.php:382 libraries/mysql_charsets.lib.php:256 msgid "Icelandic" msgstr "" -#: libraries/messages.inc.php:387 server_processlist.php:53 +#: libraries/messages.inc.php:383 server_processlist.php:53 msgid "ID" msgstr "ID" -#: libraries/messages.inc.php:388 libraries/mult_submits.inc.php:108 +#: libraries/messages.inc.php:384 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:479 msgid "Fulltext" msgstr "Tekspenuh" -#: libraries/messages.inc.php:389 +#: libraries/messages.inc.php:385 msgid "Ignore duplicate rows" msgstr "" -#: libraries/messages.inc.php:390 tbl_change.php:302 tbl_indexes.php:200 +#: libraries/messages.inc.php:386 tbl_change.php:302 tbl_indexes.php:200 #: tbl_indexes.php:225 msgid "Ignore" msgstr "Abai" -#: libraries/messages.inc.php:391 +#: libraries/messages.inc.php:387 msgid "Use ignore inserts" msgstr "" -#: libraries/messages.inc.php:392 +#: libraries/messages.inc.php:388 msgid "Column names in first row" msgstr "" -#: libraries/messages.inc.php:393 +#: libraries/messages.inc.php:389 msgid "Do not import empty rows" msgstr "" -#: libraries/messages.inc.php:394 pmd_general.php:104 +#: libraries/messages.inc.php:390 pmd_general.php:104 msgid "Import/Export coordinates for PDF schema" msgstr "" -#: libraries/messages.inc.php:395 querywindow.php:104 +#: libraries/messages.inc.php:391 querywindow.php:104 msgid "Import files" msgstr "" -#: libraries/messages.inc.php:403 +#: libraries/messages.inc.php:399 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/messages.inc.php:404 libraries/messages.inc.php:584 +#: libraries/messages.inc.php:400 libraries/messages.inc.php:580 msgid "Open Document Spreadsheet" msgstr "" -#: libraries/messages.inc.php:405 +#: libraries/messages.inc.php:401 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/messages.inc.php:409 +#: libraries/messages.inc.php:405 msgid "Excel 97-2003 XLS Workbook" msgstr "" -#: libraries/messages.inc.php:410 +#: libraries/messages.inc.php:406 msgid "Excel 2007 XLSX Workbook" msgstr "" -#: libraries/messages.inc.php:414 libraries/mult_submits.inc.php:98 +#: libraries/messages.inc.php:410 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:476 tbl_structure.php:674 msgid "Index" msgstr "Indeks" -#: libraries/messages.inc.php:415 tbl_indexes.php:168 +#: libraries/messages.inc.php:411 tbl_indexes.php:168 msgid "Index name:" msgstr "Nama indeks :" -#: libraries/messages.inc.php:416 tbl_indexes.php:174 +#: libraries/messages.inc.php:412 tbl_indexes.php:174 msgid "Index type:" msgstr "Jenis indeks :" -#: libraries/messages.inc.php:417 sql.php:639 +#: libraries/messages.inc.php:413 sql.php:639 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: libraries/messages.inc.php:427 main.php:266 +#: libraries/messages.inc.php:423 main.php:266 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -3972,196 +3972,196 @@ msgstr "" "dilaksanakan dengan pelengkapan asas, ianya terdedah kepada pencerobohan, " "dan anda hendaklah membetulkan lubang keselamatan ini." -#: libraries/messages.inc.php:428 tbl_change.php:1130 +#: libraries/messages.inc.php:424 tbl_change.php:1130 msgid "Insert as new row" msgstr "Selitkan baris baru" -#: libraries/messages.inc.php:429 sql.php:496 tbl_replace.php:386 +#: libraries/messages.inc.php:425 sql.php:496 tbl_replace.php:386 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: libraries/messages.inc.php:430 tbl_change.php:1131 +#: libraries/messages.inc.php:426 tbl_change.php:1131 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/messages.inc.php:432 main.php:139 +#: libraries/messages.inc.php:428 main.php:139 msgid "Interface" msgstr "" -#: libraries/messages.inc.php:433 tbl_relation.php:407 +#: libraries/messages.inc.php:429 tbl_relation.php:407 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: libraries/messages.inc.php:435 pdf_pages.php:303 +#: libraries/messages.inc.php:431 pdf_pages.php:303 msgid "Internal relations" msgstr "" -#: libraries/messages.inc.php:438 tbl_indexes.php:256 tbl_structure.php:590 +#: libraries/messages.inc.php:434 tbl_indexes.php:256 tbl_structure.php:590 #: tbl_structure.php:601 msgid "Column count has to be larger than zero." msgstr "" -#: libraries/messages.inc.php:444 libraries/tbl_properties.inc.php:784 +#: libraries/messages.inc.php:440 libraries/tbl_properties.inc.php:784 #: tbl_structure.php:537 msgid "You have to add at least one field." msgstr "" -#: libraries/messages.inc.php:449 +#: libraries/messages.inc.php:445 #, php-format msgid "Invalid server index: \"%s\"" msgstr "" -#: libraries/messages.inc.php:452 libraries/mysql_charsets.lib.php:259 +#: libraries/messages.inc.php:448 libraries/mysql_charsets.lib.php:259 #: libraries/mysql_charsets.lib.php:349 msgid "Japanese" msgstr "" -#: libraries/messages.inc.php:453 main.php:331 +#: libraries/messages.inc.php:449 main.php:331 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: libraries/messages.inc.php:454 server_status.php:257 +#: libraries/messages.inc.php:450 server_status.php:257 msgid "Joins" msgstr "" -#: libraries/messages.inc.php:457 server_privileges.php:763 +#: libraries/messages.inc.php:453 server_privileges.php:763 msgid "Do not change the password" msgstr "Jangan tukar katalaluan" -#: libraries/messages.inc.php:458 server_status.php:256 +#: libraries/messages.inc.php:454 server_status.php:256 msgid "Key cache" msgstr "" -#: libraries/messages.inc.php:462 libraries/mysql_charsets.lib.php:268 +#: libraries/messages.inc.php:458 libraries/mysql_charsets.lib.php:268 #: libraries/mysql_charsets.lib.php:371 msgid "Korean" msgstr "" -#: libraries/messages.inc.php:466 libraries/select_lang.lib.php:480 +#: libraries/messages.inc.php:462 libraries/select_lang.lib.php:480 #: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492 #, php-format msgid "Unknown language: %1$s." msgstr "" -#: libraries/messages.inc.php:468 +#: libraries/messages.inc.php:464 msgid "Table caption" msgstr "" -#: libraries/messages.inc.php:469 +#: libraries/messages.inc.php:465 msgid "Content of table __TABLE__" msgstr "" -#: libraries/messages.inc.php:470 +#: libraries/messages.inc.php:466 msgid "Continued table caption" msgstr "" -#: libraries/messages.inc.php:471 +#: libraries/messages.inc.php:467 msgid "(continued)" msgstr "" -#: libraries/messages.inc.php:472 +#: libraries/messages.inc.php:468 msgid "Include table caption" msgstr "" -#: libraries/messages.inc.php:473 +#: libraries/messages.inc.php:469 msgid "Label key" msgstr "" -#: libraries/messages.inc.php:474 +#: libraries/messages.inc.php:470 msgid "LaTeX" msgstr "LaTeX" -#: libraries/messages.inc.php:475 +#: libraries/messages.inc.php:471 msgid "Structure of table __TABLE__" msgstr "" -#: libraries/messages.inc.php:476 libraries/mysql_charsets.lib.php:262 +#: libraries/messages.inc.php:472 libraries/mysql_charsets.lib.php:262 msgid "Latvian" msgstr "" -#: libraries/messages.inc.php:477 +#: libraries/messages.inc.php:473 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/messages.inc.php:478 +#: libraries/messages.inc.php:474 msgid "Use LOCAL keyword" msgstr "" -#: libraries/messages.inc.php:479 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:475 libraries/tbl_properties.inc.php:105 msgid "Length/Values" msgstr "Panjang/Nilai*" -#: libraries/messages.inc.php:480 tbl_select.php:295 +#: libraries/messages.inc.php:476 tbl_select.php:295 msgid "Number of rows per page" msgstr "Bilangan baris per halaman" -#: libraries/messages.inc.php:484 libraries/mysql_charsets.lib.php:265 +#: libraries/messages.inc.php:480 libraries/mysql_charsets.lib.php:265 msgid "Lithuanian" msgstr "" -#: libraries/messages.inc.php:485 libraries/replication_gui.lib.php:302 +#: libraries/messages.inc.php:481 libraries/replication_gui.lib.php:302 #: server_privileges.php:729 msgid "Local" msgstr "Local" -#: libraries/messages.inc.php:487 server_privileges.php:669 +#: libraries/messages.inc.php:483 server_privileges.php:669 #, fuzzy msgid "Login Information" msgstr "Informasi MasaJana" -#: libraries/messages.inc.php:490 libraries/navigation_header.inc.php:67 +#: libraries/messages.inc.php:486 libraries/navigation_header.inc.php:67 #: libraries/navigation_header.inc.php:70 #: libraries/navigation_header.inc.php:71 main.php:99 msgid "Log out" msgstr "Log keluar" -#: libraries/messages.inc.php:497 server_status.php:440 +#: libraries/messages.inc.php:493 server_status.php:440 msgid "max. concurrent connections" msgstr "" -#: libraries/messages.inc.php:498 +#: libraries/messages.inc.php:494 msgid "Maximal length of created query" msgstr "" -#: libraries/messages.inc.php:500 main.php:282 +#: libraries/messages.inc.php:496 main.php:282 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " "split strings correctly and it may result in unexpected results." msgstr "" -#: libraries/messages.inc.php:501 main.php:274 +#: libraries/messages.inc.php:497 main.php:274 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " "corrupted!" msgstr "" -#: libraries/messages.inc.php:502 +#: libraries/messages.inc.php:498 msgid "MediaWiki Table" msgstr "" -#: libraries/messages.inc.php:503 transformation_overview.php:25 +#: libraries/messages.inc.php:499 transformation_overview.php:25 msgid "Available MIME types" msgstr "" -#: libraries/messages.inc.php:504 transformation_overview.php:43 +#: libraries/messages.inc.php:500 transformation_overview.php:43 msgid "Available transformations" msgstr "" -#: libraries/messages.inc.php:505 +#: libraries/messages.inc.php:501 #, fuzzy msgctxt "$strMIME_description" msgid "Description" msgstr "tiada keterangan" -#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:580 +#: libraries/messages.inc.php:503 libraries/tbl_properties.inc.php:580 #: transformation_overview.php:60 #, php-format msgid "" @@ -4169,14 +4169,14 @@ msgid "" "author what %s does." msgstr "" -#: libraries/messages.inc.php:509 libraries/tbl_properties.inc.php:137 +#: libraries/messages.inc.php:505 libraries/tbl_properties.inc.php:137 #, php-format msgid "" "For a list of available transformation options and their MIME type " "transformations, click on %stransformation descriptions%s" msgstr "" -#: libraries/messages.inc.php:510 libraries/tbl_properties.inc.php:146 +#: libraries/messages.inc.php:506 libraries/tbl_properties.inc.php:146 #, fuzzy msgid "" "Please enter the values for transformation options using this format: 'a', " @@ -4189,404 +4189,404 @@ msgstr "" "backslash (\"\\\") atau single quote (\"'\") didalam nilai tersebut, " "backslashes kan ia (cth '\\\\xyz' or 'a\\'b')." -#: libraries/messages.inc.php:511 libraries/tbl_properties.inc.php:145 +#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:145 msgid "Transformation options" msgstr "" -#: libraries/messages.inc.php:513 transformation_overview.php:38 +#: libraries/messages.inc.php:509 transformation_overview.php:38 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "" -#: libraries/messages.inc.php:515 tbl_indexes.php:162 +#: libraries/messages.inc.php:511 tbl_indexes.php:162 msgid "Modify an index" msgstr "Ubahsuai indeks" -#: libraries/messages.inc.php:517 pmd_general.php:108 +#: libraries/messages.inc.php:513 pmd_general.php:108 msgid "Move Menu" msgstr "" -#: libraries/messages.inc.php:518 tbl_operations.php:276 +#: libraries/messages.inc.php:514 tbl_operations.php:276 msgid "Move table to (database.table):" msgstr "Pindahkan jadual ke (pangkalandata.jadual):" -#: libraries/messages.inc.php:519 tbl_move_copy.php:56 +#: libraries/messages.inc.php:515 tbl_move_copy.php:56 #, php-format msgid "Table %s has been moved to %s." msgstr "Jadual %s telah dipindahkan ke %s." -#: libraries/messages.inc.php:520 tbl_move_copy.php:46 +#: libraries/messages.inc.php:516 tbl_move_copy.php:46 msgid "Can't move table to same one!" msgstr "" -#: libraries/messages.inc.php:521 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:517 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 #: libraries/mysql_charsets.lib.php:332 libraries/mysql_charsets.lib.php:354 #: libraries/mysql_charsets.lib.php:365 msgid "multilingual" msgstr "" -#: libraries/messages.inc.php:534 main.php:193 +#: libraries/messages.inc.php:530 main.php:193 msgid "MySQL charset" msgstr "Set Aksara MySQL" -#: libraries/messages.inc.php:535 main.php:211 +#: libraries/messages.inc.php:531 main.php:211 msgid "MySQL client version" msgstr "" -#: libraries/messages.inc.php:536 main.php:125 +#: libraries/messages.inc.php:532 main.php:125 msgid "MySQL connection collation" msgstr "" -#: libraries/messages.inc.php:537 main.php:346 +#: libraries/messages.inc.php:533 main.php:346 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: libraries/messages.inc.php:539 server_status.php:294 +#: libraries/messages.inc.php:535 server_status.php:294 msgid "Show processes" msgstr "Papar proses" -#: libraries/messages.inc.php:545 navigation.php:210 server_databases.php:371 +#: libraries/messages.inc.php:541 navigation.php:210 server_databases.php:371 #: server_synchronize.php:1191 msgid "No databases" msgstr "Tiada pangkalan data" -#: libraries/messages.inc.php:546 server_databases.php:52 +#: libraries/messages.inc.php:542 server_databases.php:52 msgid "No databases selected." msgstr "" -#: libraries/messages.inc.php:548 libraries/relation.lib.php:1173 +#: libraries/messages.inc.php:544 libraries/relation.lib.php:1173 msgid "no description" msgstr "tiada keterangan" -#: libraries/messages.inc.php:552 libraries/zip_extension.lib.php:26 +#: libraries/messages.inc.php:548 libraries/zip_extension.lib.php:26 msgid "No files found inside ZIP archive!" msgstr "" -#: libraries/messages.inc.php:555 tbl_indexes.php:91 +#: libraries/messages.inc.php:551 tbl_indexes.php:91 msgid "No index parts defined!" msgstr "Tiada bahagian indeks ditakrifkan!" -#: libraries/messages.inc.php:556 libraries/mult_submits.inc.php:435 +#: libraries/messages.inc.php:552 libraries/mult_submits.inc.php:435 #: tbl_replace.php:331 msgid "No change" msgstr "Tiada perubahan" -#: libraries/messages.inc.php:557 +#: libraries/messages.inc.php:553 #, fuzzy msgctxt "$strNoneDefault" msgid "None" msgstr "Tiada" -#: libraries/messages.inc.php:560 libraries/plugin_interface.lib.php:312 +#: libraries/messages.inc.php:556 libraries/plugin_interface.lib.php:312 msgid "This format has no options" msgstr "" -#: libraries/messages.inc.php:565 user_password.php:54 +#: libraries/messages.inc.php:561 user_password.php:54 msgid "You don't have sufficient privileges to be here right now!" msgstr "Anda tidak mempunyai hak mencukupi untuk berada disini sekarang!" -#: libraries/messages.inc.php:566 tbl_row_action.php:29 +#: libraries/messages.inc.php:562 tbl_row_action.php:29 msgid "No rows selected" msgstr "" -#: libraries/messages.inc.php:569 themes.php:32 +#: libraries/messages.inc.php:565 themes.php:32 #, php-format msgid "" "No themes support; please check your configuration and/or your themes in " "directory %s." msgstr "" -#: libraries/messages.inc.php:571 libraries/relation.lib.php:95 +#: libraries/messages.inc.php:567 libraries/relation.lib.php:95 msgid "not OK" msgstr "tidak OK" -#: libraries/messages.inc.php:572 server_synchronize.php:400 +#: libraries/messages.inc.php:568 server_synchronize.php:400 #: server_synchronize.php:839 msgid "not present" msgstr "" -#: libraries/messages.inc.php:573 pdf_pages.php:36 pdf_pages.php:42 +#: libraries/messages.inc.php:569 pdf_pages.php:36 pdf_pages.php:42 #: pdf_pages.php:48 pdf_pages.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "Jadual %s tidak dijumpai atau ditetapkan pada %s" -#: libraries/messages.inc.php:574 server_privileges.php:804 +#: libraries/messages.inc.php:570 server_privileges.php:804 #: server_privileges.php:2166 msgid "No user(s) found." msgstr "Tiada pengguna dijumpai." -#: libraries/messages.inc.php:578 pmd_general.php:164 +#: libraries/messages.inc.php:574 pmd_general.php:164 msgid "Number of tables" msgstr "" -#: libraries/messages.inc.php:581 server_databases.php:117 +#: libraries/messages.inc.php:577 server_databases.php:117 #: server_status.php:260 setup/lib/messages.inc.php:117 msgid "Tables" msgstr "Jadual-jadual" -#: libraries/messages.inc.php:583 libraries/relation.lib.php:99 +#: libraries/messages.inc.php:579 libraries/relation.lib.php:99 #: pmd_general.php:340 msgid "OK" msgstr "OK" -#: libraries/messages.inc.php:585 +#: libraries/messages.inc.php:581 msgid "Open Document Text" msgstr "" -#: libraries/messages.inc.php:588 tbl_select.php:138 +#: libraries/messages.inc.php:584 tbl_select.php:138 #, fuzzy msgid "Operator" msgstr "Operasi" -#: libraries/messages.inc.php:589 tbl_operations.php:662 +#: libraries/messages.inc.php:585 tbl_operations.php:662 msgid "Optimize" msgstr "" -#: libraries/messages.inc.php:602 libraries/tbl_properties.inc.php:755 +#: libraries/messages.inc.php:598 libraries/tbl_properties.inc.php:755 msgid "PARTITION definition" msgstr "" -#: libraries/messages.inc.php:603 tbl_structure.php:757 +#: libraries/messages.inc.php:599 tbl_structure.php:757 msgid "partitioned" msgstr "" -#: libraries/messages.inc.php:604 tbl_operations.php:649 +#: libraries/messages.inc.php:600 tbl_operations.php:649 #, fuzzy msgid "Partition maintenance" msgstr "Penyenggaraan Jadual" -#: libraries/messages.inc.php:605 tbl_operations.php:657 +#: libraries/messages.inc.php:601 tbl_operations.php:657 #, php-format msgid "Partition %s" msgstr "" -#: libraries/messages.inc.php:606 server_privileges.php:1212 +#: libraries/messages.inc.php:602 server_privileges.php:1212 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/messages.inc.php:635 +#: libraries/messages.inc.php:631 #, php-format msgid "Schema of the \"%s\" database - Page %s" msgstr "Skema bagi pangkalan data \"%s\" database - Laman %s" -#: libraries/messages.inc.php:636 +#: libraries/messages.inc.php:632 #, php-format msgid "The \"%s\" table doesn't exist!" msgstr "Jadual \"%s\" tidak wujud!" -#: libraries/messages.inc.php:637 pdf_schema.php:1013 +#: libraries/messages.inc.php:633 pdf_schema.php:1013 msgid "No tables" msgstr "Tiada Jadual" -#: libraries/messages.inc.php:638 pmd_pdf.php:63 +#: libraries/messages.inc.php:634 pmd_pdf.php:63 #, fuzzy msgid "Page has been created" msgstr "Jadual %s telah digugurkan" -#: libraries/messages.inc.php:639 pmd_pdf.php:65 +#: libraries/messages.inc.php:635 pmd_pdf.php:65 msgid "Page creation failed" msgstr "" -#: libraries/messages.inc.php:640 +#: libraries/messages.inc.php:636 msgid "PDF" msgstr "" -#: libraries/messages.inc.php:641 +#: libraries/messages.inc.php:637 msgid "(Generates a report containing the data of a single table)" msgstr "" -#: libraries/messages.inc.php:642 +#: libraries/messages.inc.php:638 msgid "Report title" msgstr "" -#: libraries/messages.inc.php:643 server_status.php:389 server_status.php:434 +#: libraries/messages.inc.php:639 server_status.php:389 server_status.php:434 #: server_status.php:497 server_status.php:555 msgid "per hour" msgstr "per jam" -#: libraries/messages.inc.php:644 server_status.php:498 +#: libraries/messages.inc.php:640 server_status.php:498 msgid "per minute" msgstr "" -#: libraries/messages.inc.php:645 server_status.php:499 +#: libraries/messages.inc.php:641 server_status.php:499 msgid "per second" msgstr "" -#: libraries/messages.inc.php:646 libraries/mysql_charsets.lib.php:271 +#: libraries/messages.inc.php:642 libraries/mysql_charsets.lib.php:271 msgid "Persian" msgstr "" -#: libraries/messages.inc.php:647 libraries/mysql_charsets.lib.php:250 +#: libraries/messages.inc.php:643 libraries/mysql_charsets.lib.php:250 msgid "phone book" msgstr "" -#: libraries/messages.inc.php:648 +#: libraries/messages.inc.php:644 msgid "PHP array" msgstr "" -#: libraries/messages.inc.php:650 main.php:213 +#: libraries/messages.inc.php:646 main.php:213 #, fuzzy msgid "PHP extension" msgstr "Versi PHP" -#: libraries/messages.inc.php:654 libraries/relation.lib.php:163 +#: libraries/messages.inc.php:650 libraries/relation.lib.php:163 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/messages.inc.php:655 libraries/relation.lib.php:159 +#: libraries/messages.inc.php:651 libraries/relation.lib.php:159 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/messages.inc.php:656 libraries/relation.lib.php:161 +#: libraries/messages.inc.php:652 libraries/relation.lib.php:161 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" -#: libraries/messages.inc.php:657 libraries/relation.lib.php:162 +#: libraries/messages.inc.php:653 libraries/relation.lib.php:162 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/messages.inc.php:658 libraries/relation.lib.php:164 +#: libraries/messages.inc.php:654 libraries/relation.lib.php:164 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/messages.inc.php:661 libraries/mysql_charsets.lib.php:274 +#: libraries/messages.inc.php:657 libraries/mysql_charsets.lib.php:274 msgid "Polish" msgstr "" -#: libraries/messages.inc.php:662 libraries/replication_gui.lib.php:67 +#: libraries/messages.inc.php:658 libraries/replication_gui.lib.php:67 #: server_synchronize.php:1163 #, fuzzy msgid "Port" msgstr "Isih" -#: libraries/messages.inc.php:667 tbl_indexes.php:67 +#: libraries/messages.inc.php:663 tbl_indexes.php:67 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Nama kekunci utama mestilah... PRIMARY!" -#: libraries/messages.inc.php:668 tbl_indexes.php:184 +#: libraries/messages.inc.php:664 tbl_indexes.php:184 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "(\"PRIMARY\" mesti nama dan semesti dari kekunci utama!)" -#: libraries/messages.inc.php:669 libraries/mult_submits.inc.php:76 +#: libraries/messages.inc.php:665 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:474 msgid "Primary" msgstr "Utama" -#: libraries/messages.inc.php:673 server_privileges.php:227 +#: libraries/messages.inc.php:669 server_privileges.php:227 msgid "Includes all privileges except GRANT." msgstr "" -#: libraries/messages.inc.php:674 server_privileges.php:153 +#: libraries/messages.inc.php:670 server_privileges.php:153 #: server_privileges.php:476 msgid "Allows altering the structure of existing tables." msgstr "" -#: libraries/messages.inc.php:675 server_privileges.php:169 +#: libraries/messages.inc.php:671 server_privileges.php:169 #: server_privileges.php:482 msgid "Allows altering and dropping stored routines." msgstr "" -#: libraries/messages.inc.php:676 server_privileges.php:145 +#: libraries/messages.inc.php:672 server_privileges.php:145 #: server_privileges.php:475 msgid "Allows creating new databases and tables." msgstr "" -#: libraries/messages.inc.php:677 server_privileges.php:168 +#: libraries/messages.inc.php:673 server_privileges.php:168 #: server_privileges.php:481 msgid "Allows creating stored routines." msgstr "" -#: libraries/messages.inc.php:678 server_privileges.php:475 +#: libraries/messages.inc.php:674 server_privileges.php:475 msgid "Allows creating new tables." msgstr "" -#: libraries/messages.inc.php:679 server_privileges.php:156 +#: libraries/messages.inc.php:675 server_privileges.php:156 #: server_privileges.php:479 msgid "Allows creating temporary tables." msgstr "" -#: libraries/messages.inc.php:680 server_privileges.php:170 +#: libraries/messages.inc.php:676 server_privileges.php:170 #: server_privileges.php:515 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: libraries/messages.inc.php:681 server_privileges.php:160 +#: libraries/messages.inc.php:677 server_privileges.php:160 #: server_privileges.php:164 server_privileges.php:487 #: server_privileges.php:491 msgid "Allows creating new views." msgstr "" -#: libraries/messages.inc.php:682 server_privileges.php:144 +#: libraries/messages.inc.php:678 server_privileges.php:144 #: server_privileges.php:467 msgid "Allows deleting data." msgstr "" -#: libraries/messages.inc.php:683 server_privileges.php:146 +#: libraries/messages.inc.php:679 server_privileges.php:146 #: server_privileges.php:478 msgid "Allows dropping databases and tables." msgstr "" -#: libraries/messages.inc.php:684 server_privileges.php:478 +#: libraries/messages.inc.php:680 server_privileges.php:478 msgid "Allows dropping tables." msgstr "" -#: libraries/messages.inc.php:685 server_privileges.php:161 +#: libraries/messages.inc.php:681 server_privileges.php:161 #: server_privileges.php:495 msgid "Allows to set up events for the event scheduler" msgstr "" -#: libraries/messages.inc.php:686 server_privileges.php:171 +#: libraries/messages.inc.php:682 server_privileges.php:171 #: server_privileges.php:483 msgid "Allows executing stored routines." msgstr "" -#: libraries/messages.inc.php:687 server_privileges.php:150 +#: libraries/messages.inc.php:683 server_privileges.php:150 #: server_privileges.php:470 msgid "Allows importing data from and exporting data into files." msgstr "" -#: libraries/messages.inc.php:688 server_privileges.php:501 +#: libraries/messages.inc.php:684 server_privileges.php:501 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: libraries/messages.inc.php:689 server_privileges.php:152 +#: libraries/messages.inc.php:685 server_privileges.php:152 #: server_privileges.php:477 msgid "Allows creating and dropping indexes." msgstr "" -#: libraries/messages.inc.php:690 server_privileges.php:142 +#: libraries/messages.inc.php:686 server_privileges.php:142 #: server_privileges.php:403 server_privileges.php:465 msgid "Allows inserting and replacing data." msgstr "" -#: libraries/messages.inc.php:691 server_privileges.php:157 +#: libraries/messages.inc.php:687 server_privileges.php:157 #: server_privileges.php:510 msgid "Allows locking tables for the current thread." msgstr "" -#: libraries/messages.inc.php:692 server_privileges.php:607 +#: libraries/messages.inc.php:688 server_privileges.php:607 #: server_privileges.php:609 msgid "Limits the number of new connections the user may open per hour." msgstr "Limits the number of new connections the user may open per hour." -#: libraries/messages.inc.php:693 server_privileges.php:595 +#: libraries/messages.inc.php:689 server_privileges.php:595 #: server_privileges.php:597 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Limits the number of queries the user may send to the server per hour." -#: libraries/messages.inc.php:694 server_privileges.php:601 +#: libraries/messages.inc.php:690 server_privileges.php:601 #: server_privileges.php:603 msgid "" "Limits the number of commands that change any table or database the user may " @@ -4595,58 +4595,58 @@ msgstr "" "Limits the number of commands that change any table or database the user may " "execute per hour." -#: libraries/messages.inc.php:695 server_privileges.php:613 +#: libraries/messages.inc.php:691 server_privileges.php:613 #: server_privileges.php:615 #, fuzzy msgid "Limits the number of simultaneous connections the user may have." msgstr "Limits the number of new connections the user may open per hour." -#: libraries/messages.inc.php:696 server_privileges.php:149 +#: libraries/messages.inc.php:692 server_privileges.php:149 #: server_privileges.php:505 msgid "Allows viewing processes of all users" msgstr "" -#: libraries/messages.inc.php:697 server_privileges.php:151 +#: libraries/messages.inc.php:693 server_privileges.php:151 #: server_privileges.php:409 server_privileges.php:511 msgid "Has no effect in this MySQL version." msgstr "" -#: libraries/messages.inc.php:698 server_privileges.php:147 +#: libraries/messages.inc.php:694 server_privileges.php:147 #: server_privileges.php:506 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: libraries/messages.inc.php:699 server_privileges.php:159 +#: libraries/messages.inc.php:695 server_privileges.php:159 #: server_privileges.php:513 msgid "Allows the user to ask where the slaves / masters are." msgstr "" -#: libraries/messages.inc.php:700 server_privileges.php:158 +#: libraries/messages.inc.php:696 server_privileges.php:158 #: server_privileges.php:514 msgid "Needed for the replication slaves." msgstr "" -#: libraries/messages.inc.php:701 server_privileges.php:141 +#: libraries/messages.inc.php:697 server_privileges.php:141 #: server_privileges.php:400 server_privileges.php:464 msgid "Allows reading data." msgstr "" -#: libraries/messages.inc.php:702 server_privileges.php:154 +#: libraries/messages.inc.php:698 server_privileges.php:154 #: server_privileges.php:508 msgid "Gives access to the complete list of databases." msgstr "" -#: libraries/messages.inc.php:703 server_privileges.php:165 +#: libraries/messages.inc.php:699 server_privileges.php:165 #: server_privileges.php:167 server_privileges.php:480 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: libraries/messages.inc.php:704 server_privileges.php:148 +#: libraries/messages.inc.php:700 server_privileges.php:148 #: server_privileges.php:507 msgid "Allows shutting down the server." msgstr "" -#: libraries/messages.inc.php:705 server_privileges.php:155 +#: libraries/messages.inc.php:701 server_privileges.php:155 #: server_privileges.php:504 msgid "" "Allows connecting, even if maximum number of connections is reached; " @@ -4654,57 +4654,57 @@ msgid "" "killing threads of other users." msgstr "" -#: libraries/messages.inc.php:706 server_privileges.php:162 +#: libraries/messages.inc.php:702 server_privileges.php:162 #: server_privileges.php:496 msgid "Allows creating and dropping triggers" msgstr "" -#: libraries/messages.inc.php:707 server_privileges.php:143 +#: libraries/messages.inc.php:703 server_privileges.php:143 #: server_privileges.php:406 server_privileges.php:466 msgid "Allows changing data." msgstr "" -#: libraries/messages.inc.php:708 server_privileges.php:221 +#: libraries/messages.inc.php:704 server_privileges.php:221 #, fuzzy msgid "No privileges." msgstr "Tiada Privilej" -#: libraries/messages.inc.php:710 server_privileges.php:1296 +#: libraries/messages.inc.php:706 server_privileges.php:1296 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/messages.inc.php:712 libraries/server_links.inc.php:80 +#: libraries/messages.inc.php:708 libraries/server_links.inc.php:80 msgid "Processes" msgstr "Proses-proses" -#: libraries/messages.inc.php:714 main.php:187 +#: libraries/messages.inc.php:710 main.php:187 msgid "Protocol version" msgstr "" -#: libraries/messages.inc.php:715 +#: libraries/messages.inc.php:711 msgid "Put fields names in the first row" msgstr "Letakkan medan di baris pertama" -#: libraries/messages.inc.php:720 server_synchronize.php:1003 +#: libraries/messages.inc.php:716 server_synchronize.php:1003 msgid "The following queries have been executed:" msgstr "" -#: libraries/messages.inc.php:721 server_status.php:251 +#: libraries/messages.inc.php:717 server_status.php:251 #, fuzzy msgid "Query cache" msgstr "Jenis Kueri" -#: libraries/messages.inc.php:722 libraries/navigation_header.inc.php:80 +#: libraries/messages.inc.php:718 libraries/navigation_header.inc.php:80 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 setup/lib/messages.inc.php:122 msgid "Query window" msgstr "" -#: libraries/messages.inc.php:725 querywindow.php:109 querywindow.php:217 +#: libraries/messages.inc.php:721 querywindow.php:109 querywindow.php:217 msgid "SQL history" msgstr "" -#: libraries/messages.inc.php:726 server_status.php:490 +#: libraries/messages.inc.php:722 server_status.php:490 #, php-format msgid "" "Query statistics: Since its startup, %s queries have been sent to the " @@ -4713,138 +4713,138 @@ msgstr "" "Kueri Statistik: Sejak ia dijalankan, %s kueri telah dihantar kepada " "pelayan." -#: libraries/messages.inc.php:728 server_status.php:554 +#: libraries/messages.inc.php:724 server_status.php:554 msgid "Query type" msgstr "Jenis Kueri" -#: libraries/messages.inc.php:729 libraries/sql_query_form.lib.php:381 +#: libraries/messages.inc.php:725 libraries/sql_query_form.lib.php:381 msgid "Do not overwrite this query from outside the window" msgstr "" -#: libraries/messages.inc.php:732 tbl_operations.php:663 +#: libraries/messages.inc.php:728 tbl_operations.php:663 msgid "Rebuild" msgstr "" -#: libraries/messages.inc.php:733 server_status.php:394 +#: libraries/messages.inc.php:729 server_status.php:394 msgid "Received" msgstr "DiTerima" -#: libraries/messages.inc.php:734 pmd_pdf.php:89 +#: libraries/messages.inc.php:730 pmd_pdf.php:89 msgid "recommended" msgstr "" -#: libraries/messages.inc.php:736 tbl_operations.php:702 +#: libraries/messages.inc.php:732 tbl_operations.php:702 msgid "Check referential integrity:" msgstr "Semak integriti rujukan:" -#: libraries/messages.inc.php:740 pdf_schema.php:1032 pdf_schema.php:1141 +#: libraries/messages.inc.php:736 pdf_schema.php:1032 pdf_schema.php:1141 msgid "Relational schema" msgstr "Skema Hubungan" -#: libraries/messages.inc.php:744 tbl_relation.php:399 +#: libraries/messages.inc.php:740 tbl_relation.php:399 #, fuzzy msgid "Relations" msgstr "Operasi" -#: libraries/messages.inc.php:745 tbl_structure.php:507 tbl_structure.php:509 +#: libraries/messages.inc.php:741 tbl_structure.php:507 tbl_structure.php:509 msgid "Relation view" msgstr "Paparan Hubungan" -#: libraries/messages.inc.php:746 server_privileges.php:1246 +#: libraries/messages.inc.php:742 server_privileges.php:1246 msgid "Reloading the privileges" msgstr "" -#: libraries/messages.inc.php:747 navigation.php:66 navigation.php:67 +#: libraries/messages.inc.php:743 navigation.php:66 navigation.php:67 #: navigation.php:70 msgid "Reload navigation frame" msgstr "" -#: libraries/messages.inc.php:748 pmd_general.php:80 +#: libraries/messages.inc.php:744 pmd_general.php:80 msgid "Reload" msgstr "" -#: libraries/messages.inc.php:749 libraries/server_synchronize.lib.php:1345 +#: libraries/messages.inc.php:745 libraries/server_synchronize.lib.php:1345 #: libraries/server_synchronize.lib.php:1371 msgid "Remote server" msgstr "" -#: libraries/messages.inc.php:750 +#: libraries/messages.inc.php:746 msgid "Remove CRLF characters within fields" msgstr "" -#: libraries/messages.inc.php:751 tbl_operations.php:676 +#: libraries/messages.inc.php:747 tbl_operations.php:676 msgid "Remove partitioning" msgstr "" -#: libraries/messages.inc.php:752 server_privileges.php:1575 +#: libraries/messages.inc.php:748 server_privileges.php:1575 msgid "Remove selected users" msgstr "" -#: libraries/messages.inc.php:755 tbl_operations.php:338 +#: libraries/messages.inc.php:751 tbl_operations.php:338 msgid "Rename table to" msgstr "Tukarnama jadual ke" -#: libraries/messages.inc.php:756 view_operations.php:93 +#: libraries/messages.inc.php:752 view_operations.php:93 #, fuzzy msgid "Rename view to" msgstr "Tukarnama jadual ke" -#: libraries/messages.inc.php:757 tbl_operations.php:664 +#: libraries/messages.inc.php:753 tbl_operations.php:664 #, fuzzy msgid "Repair" msgstr "Baiki jadual" -#: libraries/messages.inc.php:759 +#: libraries/messages.inc.php:755 msgid "Replace NULL by" msgstr "" -#: libraries/messages.inc.php:760 +#: libraries/messages.inc.php:756 msgid "Replace table data with file" msgstr "Ganti data jadual dengan fail" -#: libraries/messages.inc.php:761 server_replication.php:228 +#: libraries/messages.inc.php:757 server_replication.php:228 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: libraries/messages.inc.php:762 libraries/replication_gui.lib.php:236 +#: libraries/messages.inc.php:758 libraries/replication_gui.lib.php:236 #: server_replication.php:194 msgid "Add slave replication user" msgstr "" -#: libraries/messages.inc.php:763 server_replication.php:74 +#: libraries/messages.inc.php:759 server_replication.php:74 #, php-format msgid "Master server changed succesfully to %s" msgstr "" -#: libraries/messages.inc.php:764 server_replication.php:182 +#: libraries/messages.inc.php:760 server_replication.php:182 msgid "This server is configured as master in a replication process." msgstr "" -#: libraries/messages.inc.php:765 server_replication.php:322 +#: libraries/messages.inc.php:761 server_replication.php:322 msgid "Control slave:" msgstr "" -#: libraries/messages.inc.php:766 server_replication.php:65 +#: libraries/messages.inc.php:762 server_replication.php:65 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: libraries/messages.inc.php:767 server_replication.php:58 +#: libraries/messages.inc.php:763 server_replication.php:58 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: libraries/messages.inc.php:768 server_replication.php:221 +#: libraries/messages.inc.php:764 server_replication.php:221 msgid "Replicate all databases; Ignore:" msgstr "" -#: libraries/messages.inc.php:769 server_replication.php:222 +#: libraries/messages.inc.php:765 server_replication.php:222 msgid "Ignore all databases; Replicate:" msgstr "" -#: libraries/messages.inc.php:770 server_replication.php:218 +#: libraries/messages.inc.php:766 server_replication.php:218 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -4853,121 +4853,121 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: libraries/messages.inc.php:771 server_replication.php:217 +#: libraries/messages.inc.php:767 server_replication.php:217 msgid "Master configuration" msgstr "" -#: libraries/messages.inc.php:772 server_replication.php:181 +#: libraries/messages.inc.php:768 server_replication.php:181 #: server_replication.php:209 msgid "Master replication" msgstr "" -#: libraries/messages.inc.php:774 server_replication.php:230 +#: libraries/messages.inc.php:770 server_replication.php:230 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: libraries/messages.inc.php:775 server_replication.php:225 +#: libraries/messages.inc.php:771 server_replication.php:225 #, fuzzy msgid "Please select databases:" msgstr "Sila pilih pangkalan data" -#: libraries/messages.inc.php:776 server_replication.php:210 +#: libraries/messages.inc.php:772 server_replication.php:210 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:188 +#: libraries/messages.inc.php:773 libraries/replication_gui.lib.php:188 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/messages.inc.php:778 server_replication.php:187 +#: libraries/messages.inc.php:774 server_replication.php:187 msgid "Show connected slaves" msgstr "" -#: libraries/messages.inc.php:779 libraries/messages.inc.php:885 +#: libraries/messages.inc.php:775 libraries/messages.inc.php:881 #: server_replication.php:184 server_status.php:281 msgid "Show master status" msgstr "" -#: libraries/messages.inc.php:780 server_replication.php:334 +#: libraries/messages.inc.php:776 server_replication.php:334 msgid "Skipping error(s) might lead into unsynchronized master and slave!" msgstr "" -#: libraries/messages.inc.php:781 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:51 #: server_replication.php:347 msgid "Change or reconfigure master server" msgstr "" -#: libraries/messages.inc.php:782 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:778 libraries/replication_gui.lib.php:51 msgid "Slave configuration" msgstr "" -#: libraries/messages.inc.php:783 server_replication.php:305 +#: libraries/messages.inc.php:779 server_replication.php:305 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: libraries/messages.inc.php:784 server_replication.php:332 +#: libraries/messages.inc.php:780 server_replication.php:332 msgid "Error management:" msgstr "" -#: libraries/messages.inc.php:785 server_replication.php:328 +#: libraries/messages.inc.php:781 server_replication.php:328 #, php-format msgid "IO Thread %s only" msgstr "" -#: libraries/messages.inc.php:786 server_replication.php:296 +#: libraries/messages.inc.php:782 server_replication.php:296 msgid "Slave IO Thread not running!" msgstr "" -#: libraries/messages.inc.php:787 server_replication.php:355 +#: libraries/messages.inc.php:783 server_replication.php:355 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/messages.inc.php:788 server_replication.php:326 +#: libraries/messages.inc.php:784 server_replication.php:326 msgid "Reset slave" msgstr "" -#: libraries/messages.inc.php:789 server_replication.php:308 +#: libraries/messages.inc.php:785 server_replication.php:308 msgid "See slave status table" msgstr "" -#: libraries/messages.inc.php:790 server_replication.php:336 +#: libraries/messages.inc.php:786 server_replication.php:336 msgid "Skip current error" msgstr "" -#: libraries/messages.inc.php:791 server_replication.php:340 +#: libraries/messages.inc.php:787 server_replication.php:340 msgid "errors." msgstr "" -#: libraries/messages.inc.php:792 server_replication.php:337 +#: libraries/messages.inc.php:788 server_replication.php:337 msgid "Skip next" msgstr "" -#: libraries/messages.inc.php:793 server_replication.php:248 +#: libraries/messages.inc.php:789 server_replication.php:248 msgid "Slave replication" msgstr "" -#: libraries/messages.inc.php:794 server_replication.php:293 +#: libraries/messages.inc.php:790 server_replication.php:293 msgid "Slave SQL Thread not running!" msgstr "" -#: libraries/messages.inc.php:795 server_replication.php:327 +#: libraries/messages.inc.php:791 server_replication.php:327 #, php-format msgid "SQL Thread %s only" msgstr "" -#: libraries/messages.inc.php:796 +#: libraries/messages.inc.php:792 #, php-format msgid "" "This MySQL server works as %s in replication process. For further " @@ -4975,160 +4975,160 @@ msgid "" "\"#replication\">replication section." msgstr "" -#: libraries/messages.inc.php:797 +#: libraries/messages.inc.php:793 msgid "Master status" msgstr "" -#: libraries/messages.inc.php:798 server_status.php:721 +#: libraries/messages.inc.php:794 server_status.php:721 msgid "Replication status" msgstr "" -#: libraries/messages.inc.php:799 +#: libraries/messages.inc.php:795 msgid "Slave status" msgstr "" -#: libraries/messages.inc.php:800 server_replication.php:311 +#: libraries/messages.inc.php:796 server_replication.php:311 msgid "Synchronize databases with master" msgstr "" -#: libraries/messages.inc.php:801 server_replication.php:71 +#: libraries/messages.inc.php:797 server_replication.php:71 msgid "Unable to change master" msgstr "" -#: libraries/messages.inc.php:802 server_replication.php:51 +#: libraries/messages.inc.php:798 server_replication.php:51 msgid "Unknown error" msgstr "" -#: libraries/messages.inc.php:803 main.php:163 pdf_pages.php:344 +#: libraries/messages.inc.php:799 main.php:163 pdf_pages.php:344 #: setup/lib/FormDisplay.tpl.php:216 tbl_change.php:1175 msgid "Reset" msgstr "Ulangtetap" -#: libraries/messages.inc.php:804 server_privileges.php:591 +#: libraries/messages.inc.php:800 server_privileges.php:591 msgid "Resource limits" msgstr "" -#: libraries/messages.inc.php:805 tbl_change.php:1209 +#: libraries/messages.inc.php:801 tbl_change.php:1209 #, php-format msgid "Restart insertion with %s rows" msgstr "" -#: libraries/messages.inc.php:807 server_privileges.php:1578 +#: libraries/messages.inc.php:803 server_privileges.php:1578 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: libraries/messages.inc.php:808 server_privileges.php:1176 +#: libraries/messages.inc.php:804 server_privileges.php:1176 #, php-format msgid "You have revoked the privileges for %s" msgstr "Anda telah menarikbalik privilej Keistimewaan untuk %s" -#: libraries/messages.inc.php:809 server_privileges.php:1333 +#: libraries/messages.inc.php:805 server_privileges.php:1333 msgid "Revoke" msgstr "TarikBalik" -#: libraries/messages.inc.php:810 libraries/mysql_charsets.lib.php:280 +#: libraries/messages.inc.php:806 libraries/mysql_charsets.lib.php:280 msgid "Romanian" msgstr "" -#: libraries/messages.inc.php:813 tbl_printview.php:404 tbl_structure.php:786 +#: libraries/messages.inc.php:809 tbl_printview.php:404 tbl_structure.php:786 msgid "Row length" msgstr "Panjang baris" -#: libraries/messages.inc.php:815 tbl_printview.php:414 tbl_structure.php:794 +#: libraries/messages.inc.php:811 tbl_printview.php:414 tbl_structure.php:794 msgid " Row size " msgstr " Saiz baris " -#: libraries/messages.inc.php:821 tbl_printview.php:366 tbl_structure.php:726 +#: libraries/messages.inc.php:817 tbl_printview.php:366 tbl_structure.php:726 msgid "Row Statistics" msgstr "Statistik Baris" -#: libraries/messages.inc.php:822 +#: libraries/messages.inc.php:818 #, php-format msgid "running on %s" msgstr "dilaksana pada %s" -#: libraries/messages.inc.php:824 libraries/sql_query_form.lib.php:223 +#: libraries/messages.inc.php:820 libraries/sql_query_form.lib.php:223 #, fuzzy, php-format msgid "Run SQL query/queries on server %s" msgstr "Laksana kueri SQL pada pangkalan data %s" -#: libraries/messages.inc.php:825 libraries/sql_query_form.lib.php:240 +#: libraries/messages.inc.php:821 libraries/sql_query_form.lib.php:240 #: libraries/sql_query_form.lib.php:265 #, php-format msgid "Run SQL query/queries on database %s" msgstr "Laksana kueri SQL pada pangkalan data %s" -#: libraries/messages.inc.php:826 libraries/mysql_charsets.lib.php:337 +#: libraries/messages.inc.php:822 libraries/mysql_charsets.lib.php:337 msgid "Russian" msgstr "" -#: libraries/messages.inc.php:829 pmd_general.php:68 +#: libraries/messages.inc.php:825 pmd_general.php:68 msgid "Save position" msgstr "" -#: libraries/messages.inc.php:830 libraries/tbl_properties.inc.php:776 +#: libraries/messages.inc.php:826 libraries/tbl_properties.inc.php:776 #: pdf_pages.php:484 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:214 setup/lib/FormDisplay.tpl.php:215 #: tbl_change.php:1126 tbl_indexes.php:248 tbl_relation.php:566 msgid "Save" msgstr "Simpan" -#: libraries/messages.inc.php:831 +#: libraries/messages.inc.php:827 msgid "The scale factor is too small to fit the schema on one page" msgstr "" "Faktor skala adalah terlalu kecil supaya muat dengan skema dalam satu halaman" -#: libraries/messages.inc.php:843 main.php:298 +#: libraries/messages.inc.php:839 main.php:298 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" -#: libraries/messages.inc.php:844 navigation.php:353 navigation.php:516 +#: libraries/messages.inc.php:840 navigation.php:353 navigation.php:516 msgid "Please select a database" msgstr "Sila pilih pangkalan data" -#: libraries/messages.inc.php:846 server_binlog.php:120 +#: libraries/messages.inc.php:842 server_binlog.php:120 msgid "Select binary log to view" msgstr "" -#: libraries/messages.inc.php:847 tbl_select.php:270 +#: libraries/messages.inc.php:843 tbl_select.php:270 msgid "Select fields (at least one):" msgstr "Pilih medan (sekurang-kurangnya satu):" -#: libraries/messages.inc.php:851 pdf_pages.php:320 +#: libraries/messages.inc.php:847 pdf_pages.php:320 msgid "Select Tables" msgstr "Pilih Jadual" -#: libraries/messages.inc.php:853 server_status.php:404 +#: libraries/messages.inc.php:849 server_status.php:404 msgid "Sent" msgstr "Hantar" -#: libraries/messages.inc.php:857 libraries/select_server.lib.php:45 +#: libraries/messages.inc.php:853 libraries/select_server.lib.php:45 #: setup/frames/index.inc.php:97 setup/lib/messages.inc.php:115 #, fuzzy msgid "Servers" msgstr "Pelayan" -#: libraries/messages.inc.php:858 server_status.php:255 +#: libraries/messages.inc.php:854 server_status.php:255 #, fuzzy msgid "Delayed inserts" msgstr "Penyelitan Lanjutan" -#: libraries/messages.inc.php:859 server_status.php:46 +#: libraries/messages.inc.php:855 server_status.php:46 msgid "Runtime Information" msgstr "Informasi MasaJana" -#: libraries/messages.inc.php:860 server_status.php:350 +#: libraries/messages.inc.php:856 server_status.php:350 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Pelayan MySQL ini telah berjalan selama %s. Ia dihidupkan pada %s." -#: libraries/messages.inc.php:861 libraries/server_links.inc.php:53 +#: libraries/messages.inc.php:857 libraries/server_links.inc.php:53 #: server_engines.php:112 server_engines.php:116 server_status.php:304 #: test/theme.php:105 msgid "Variables" msgstr "Pemboleh-pembolehubah" -#: libraries/messages.inc.php:862 server_status.php:383 +#: libraries/messages.inc.php:858 server_status.php:383 msgid "" "Server traffic: These tables show the network traffic statistics of " "this MySQL server since its startup." @@ -5136,11 +5136,11 @@ msgstr "" "Kesibukan Pelayan: Jadual menunjukkan statistik kesibukan rangkaian " "pada pelayan MySQL server semenjak ia dihidupkan." -#: libraries/messages.inc.php:863 server_variables.php:35 +#: libraries/messages.inc.php:859 server_variables.php:35 msgid "Server variables and settings" msgstr "Pembolehubah dan Penetapan Pelayan" -#: libraries/messages.inc.php:865 main.php:290 +#: libraries/messages.inc.php:861 main.php:290 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -5148,17 +5148,17 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: libraries/messages.inc.php:866 +#: libraries/messages.inc.php:862 msgid "" "Cannot start session without errors, please check errors given in your PHP " "and/or webserver log file and configure your PHP installation properly." msgstr "" -#: libraries/messages.inc.php:867 server_variables.php:55 +#: libraries/messages.inc.php:863 server_variables.php:55 msgid "Session value" msgstr "Nilai Sessi" -#: libraries/messages.inc.php:868 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:864 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 " @@ -5170,56 +5170,56 @@ msgstr "" "backslash (\"\\\") atau single quote (\"'\") didalam nilai tersebut, " "backslashes kan ia (cth '\\\\xyz' or 'a\\'b')." -#: libraries/messages.inc.php:876 server_binlog.php:192 server_binlog.php:195 +#: libraries/messages.inc.php:872 server_binlog.php:192 server_binlog.php:195 #: server_processlist.php:49 server_processlist.php:51 msgid "Show Full Queries" msgstr "" -#: libraries/messages.inc.php:878 pmd_general.php:64 +#: libraries/messages.inc.php:874 pmd_general.php:64 msgid "Show/Hide left menu" msgstr "" -#: libraries/messages.inc.php:880 sql.php:513 +#: libraries/messages.inc.php:876 sql.php:513 msgid "Showing as PHP code" msgstr "" -#: libraries/messages.inc.php:882 sql.php:516 tbl_replace.php:360 +#: libraries/messages.inc.php:878 sql.php:516 tbl_replace.php:360 msgid "Showing SQL query" msgstr "" -#: libraries/messages.inc.php:883 tbl_change.php:1132 +#: libraries/messages.inc.php:879 tbl_change.php:1132 msgid "Show insert query" msgstr "" -#: libraries/messages.inc.php:886 server_status.php:273 +#: libraries/messages.inc.php:882 server_status.php:273 #, fuzzy msgid "Show open tables" msgstr "Papar jadual" -#: libraries/messages.inc.php:887 main.php:219 +#: libraries/messages.inc.php:883 main.php:219 msgid "Show PHP information" msgstr "Papar maklumat PHP" -#: libraries/messages.inc.php:889 server_status.php:278 +#: libraries/messages.inc.php:885 server_status.php:278 msgid "Show slave hosts" msgstr "" -#: libraries/messages.inc.php:890 server_status.php:284 +#: libraries/messages.inc.php:886 server_status.php:284 msgid "Show slave status" msgstr "" -#: libraries/messages.inc.php:891 +#: libraries/messages.inc.php:887 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/messages.inc.php:892 +#: libraries/messages.inc.php:888 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/messages.inc.php:893 +#: libraries/messages.inc.php:889 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -5227,78 +5227,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/messages.inc.php:894 +#: libraries/messages.inc.php:890 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/messages.inc.php:895 +#: libraries/messages.inc.php:891 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/messages.inc.php:896 +#: libraries/messages.inc.php:892 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/messages.inc.php:897 +#: libraries/messages.inc.php:893 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/messages.inc.php:898 +#: libraries/messages.inc.php:894 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/messages.inc.php:899 +#: libraries/messages.inc.php:895 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/messages.inc.php:900 +#: libraries/messages.inc.php:896 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/messages.inc.php:901 +#: libraries/messages.inc.php:897 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/messages.inc.php:902 +#: libraries/messages.inc.php:898 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/messages.inc.php:903 +#: libraries/messages.inc.php:899 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/messages.inc.php:904 +#: libraries/messages.inc.php:900 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: libraries/messages.inc.php:905 +#: libraries/messages.inc.php:901 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/messages.inc.php:906 +#: libraries/messages.inc.php:902 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: libraries/messages.inc.php:907 +#: libraries/messages.inc.php:903 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -5306,7 +5306,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/messages.inc.php:908 +#: libraries/messages.inc.php:904 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -5314,42 +5314,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/messages.inc.php:909 +#: libraries/messages.inc.php:905 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/messages.inc.php:910 +#: libraries/messages.inc.php:906 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/messages.inc.php:911 +#: libraries/messages.inc.php:907 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/messages.inc.php:912 +#: libraries/messages.inc.php:908 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/messages.inc.php:913 +#: libraries/messages.inc.php:909 msgid "The number of pages currently dirty." msgstr "" -#: libraries/messages.inc.php:914 +#: libraries/messages.inc.php:910 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/messages.inc.php:915 +#: libraries/messages.inc.php:911 msgid "The number of free pages." msgstr "" -#: libraries/messages.inc.php:916 +#: libraries/messages.inc.php:912 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/messages.inc.php:917 +#: libraries/messages.inc.php:913 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -5357,33 +5357,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/messages.inc.php:918 +#: libraries/messages.inc.php:914 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/messages.inc.php:919 +#: libraries/messages.inc.php:915 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/messages.inc.php:920 +#: libraries/messages.inc.php:916 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/messages.inc.php:921 +#: libraries/messages.inc.php:917 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/messages.inc.php:922 +#: libraries/messages.inc.php:918 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/messages.inc.php:923 +#: libraries/messages.inc.php:919 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -5392,218 +5392,218 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/messages.inc.php:924 +#: libraries/messages.inc.php:920 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/messages.inc.php:925 +#: libraries/messages.inc.php:921 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/messages.inc.php:926 +#: libraries/messages.inc.php:922 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/messages.inc.php:927 +#: libraries/messages.inc.php:923 msgid "The current number of pending reads." msgstr "" -#: libraries/messages.inc.php:928 +#: libraries/messages.inc.php:924 msgid "The current number of pending writes." msgstr "" -#: libraries/messages.inc.php:929 +#: libraries/messages.inc.php:925 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/messages.inc.php:930 +#: libraries/messages.inc.php:926 msgid "The total number of data reads." msgstr "" -#: libraries/messages.inc.php:931 +#: libraries/messages.inc.php:927 msgid "The total number of data writes." msgstr "" -#: libraries/messages.inc.php:932 +#: libraries/messages.inc.php:928 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/messages.inc.php:933 +#: libraries/messages.inc.php:929 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/messages.inc.php:934 +#: libraries/messages.inc.php:930 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/messages.inc.php:935 +#: libraries/messages.inc.php:931 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/messages.inc.php:936 +#: libraries/messages.inc.php:932 msgid "The number of log write requests." msgstr "" -#: libraries/messages.inc.php:937 +#: libraries/messages.inc.php:933 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/messages.inc.php:938 +#: libraries/messages.inc.php:934 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/messages.inc.php:939 +#: libraries/messages.inc.php:935 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/messages.inc.php:940 +#: libraries/messages.inc.php:936 msgid "Pending log file writes." msgstr "" -#: libraries/messages.inc.php:941 +#: libraries/messages.inc.php:937 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/messages.inc.php:942 +#: libraries/messages.inc.php:938 msgid "The number of pages created." msgstr "" -#: libraries/messages.inc.php:943 +#: libraries/messages.inc.php:939 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: libraries/messages.inc.php:944 +#: libraries/messages.inc.php:940 msgid "The number of pages read." msgstr "" -#: libraries/messages.inc.php:945 +#: libraries/messages.inc.php:941 msgid "The number of pages written." msgstr "" -#: libraries/messages.inc.php:946 +#: libraries/messages.inc.php:942 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/messages.inc.php:947 +#: libraries/messages.inc.php:943 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/messages.inc.php:948 +#: libraries/messages.inc.php:944 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/messages.inc.php:949 +#: libraries/messages.inc.php:945 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/messages.inc.php:950 +#: libraries/messages.inc.php:946 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/messages.inc.php:951 +#: libraries/messages.inc.php:947 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/messages.inc.php:952 +#: libraries/messages.inc.php:948 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/messages.inc.php:953 +#: libraries/messages.inc.php:949 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/messages.inc.php:954 +#: libraries/messages.inc.php:950 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/messages.inc.php:955 +#: libraries/messages.inc.php:951 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/messages.inc.php:956 +#: libraries/messages.inc.php:952 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: libraries/messages.inc.php:957 +#: libraries/messages.inc.php:953 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/messages.inc.php:958 +#: libraries/messages.inc.php:954 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/messages.inc.php:959 +#: libraries/messages.inc.php:955 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/messages.inc.php:960 +#: libraries/messages.inc.php:956 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/messages.inc.php:961 +#: libraries/messages.inc.php:957 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/messages.inc.php:962 +#: libraries/messages.inc.php:958 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/messages.inc.php:963 +#: libraries/messages.inc.php:959 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/messages.inc.php:964 +#: libraries/messages.inc.php:960 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/messages.inc.php:965 +#: libraries/messages.inc.php:961 msgid "The number of files that are open." msgstr "" -#: libraries/messages.inc.php:966 +#: libraries/messages.inc.php:962 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/messages.inc.php:967 +#: libraries/messages.inc.php:963 msgid "The number of tables that are open." msgstr "" -#: libraries/messages.inc.php:968 +#: libraries/messages.inc.php:964 msgid "The number of free memory blocks in query cache." msgstr "" -#: libraries/messages.inc.php:969 +#: libraries/messages.inc.php:965 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/messages.inc.php:970 +#: libraries/messages.inc.php:966 msgid "The number of cache hits." msgstr "" -#: libraries/messages.inc.php:971 +#: libraries/messages.inc.php:967 msgid "The number of queries added to the cache." msgstr "" -#: libraries/messages.inc.php:972 +#: libraries/messages.inc.php:968 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -5611,105 +5611,105 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/messages.inc.php:973 +#: libraries/messages.inc.php:969 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/messages.inc.php:974 +#: libraries/messages.inc.php:970 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/messages.inc.php:975 +#: libraries/messages.inc.php:971 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/messages.inc.php:976 +#: libraries/messages.inc.php:972 #, fuzzy msgctxt "$strShowStatusReset" msgid "Reset" msgstr "Ulangtetap" -#: libraries/messages.inc.php:977 +#: libraries/messages.inc.php:973 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/messages.inc.php:978 +#: libraries/messages.inc.php:974 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: libraries/messages.inc.php:979 +#: libraries/messages.inc.php:975 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/messages.inc.php:980 +#: libraries/messages.inc.php:976 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: libraries/messages.inc.php:981 +#: libraries/messages.inc.php:977 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/messages.inc.php:982 +#: libraries/messages.inc.php:978 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/messages.inc.php:983 +#: libraries/messages.inc.php:979 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/messages.inc.php:984 +#: libraries/messages.inc.php:980 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/messages.inc.php:985 +#: libraries/messages.inc.php:981 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/messages.inc.php:986 +#: libraries/messages.inc.php:982 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/messages.inc.php:987 +#: libraries/messages.inc.php:983 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/messages.inc.php:988 +#: libraries/messages.inc.php:984 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/messages.inc.php:989 +#: libraries/messages.inc.php:985 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/messages.inc.php:990 +#: libraries/messages.inc.php:986 msgid "The number of sorted rows." msgstr "" -#: libraries/messages.inc.php:991 +#: libraries/messages.inc.php:987 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/messages.inc.php:992 +#: libraries/messages.inc.php:988 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/messages.inc.php:993 +#: libraries/messages.inc.php:989 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -5717,18 +5717,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/messages.inc.php:994 +#: libraries/messages.inc.php:990 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/messages.inc.php:995 +#: libraries/messages.inc.php:991 msgid "The number of currently open connections." msgstr "" -#: libraries/messages.inc.php:996 +#: libraries/messages.inc.php:992 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -5736,74 +5736,74 @@ msgid "" "implementation.)" msgstr "" -#: libraries/messages.inc.php:997 +#: libraries/messages.inc.php:993 msgid "The number of threads that are not sleeping." msgstr "" -#: libraries/messages.inc.php:999 tbl_printview.php:75 +#: libraries/messages.inc.php:995 tbl_printview.php:75 msgid "Show tables" msgstr "Papar jadual" -#: libraries/messages.inc.php:1000 libraries/sql_query_form.lib.php:396 +#: libraries/messages.inc.php:996 libraries/sql_query_form.lib.php:396 msgid " Show this query here again " msgstr " Papar kueri ini di sini lagi " -#: libraries/messages.inc.php:1001 libraries/mysql_charsets.lib.php:217 +#: libraries/messages.inc.php:997 libraries/mysql_charsets.lib.php:217 #: libraries/mysql_charsets.lib.php:342 msgid "Simplified Chinese" msgstr "" -#: libraries/messages.inc.php:1002 tbl_operations.php:258 +#: libraries/messages.inc.php:998 tbl_operations.php:258 msgid "(singly)" msgstr "(persatu)" -#: libraries/messages.inc.php:1005 libraries/replication_gui.lib.php:52 +#: libraries/messages.inc.php:1001 libraries/replication_gui.lib.php:52 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" msgstr "" -#: libraries/messages.inc.php:1006 libraries/mysql_charsets.lib.php:283 +#: libraries/messages.inc.php:1002 libraries/mysql_charsets.lib.php:283 msgid "Slovak" msgstr "" -#: libraries/messages.inc.php:1007 libraries/mysql_charsets.lib.php:286 +#: libraries/messages.inc.php:1003 libraries/mysql_charsets.lib.php:286 msgid "Slovenian" msgstr "" -#: libraries/messages.inc.php:1008 pmd_general.php:95 +#: libraries/messages.inc.php:1004 pmd_general.php:95 msgid "Small/Big All" msgstr "" -#: libraries/messages.inc.php:1009 pmd_general.php:91 +#: libraries/messages.inc.php:1005 pmd_general.php:91 msgid "Snap to grid" msgstr "" -#: libraries/messages.inc.php:1011 server_synchronize.php:1167 +#: libraries/messages.inc.php:1007 server_synchronize.php:1167 msgid "Socket" msgstr "" -#: libraries/messages.inc.php:1013 server_status.php:259 +#: libraries/messages.inc.php:1009 server_status.php:259 msgid "Sorting" msgstr "" -#: libraries/messages.inc.php:1015 tbl_printview.php:310 tbl_structure.php:657 +#: libraries/messages.inc.php:1011 tbl_printview.php:310 tbl_structure.php:657 msgid "Space usage" msgstr "Penggunaan ruang" -#: libraries/messages.inc.php:1016 libraries/mysql_charsets.lib.php:289 +#: libraries/messages.inc.php:1012 libraries/mysql_charsets.lib.php:289 msgid "Spanish" msgstr "" -#: libraries/messages.inc.php:1019 +#: libraries/messages.inc.php:1015 msgid "Export type" msgstr "" -#: libraries/messages.inc.php:1020 +#: libraries/messages.inc.php:1016 msgid "Export time in UTC" msgstr "" -#: libraries/messages.inc.php:1021 libraries/sqlparser.lib.php:173 +#: libraries/messages.inc.php:1017 libraries/sqlparser.lib.php:173 msgid "" "There is a chance that you may have found a bug in the SQL parser. Please " "examine your query closely, and check that the quotes are correct and not " @@ -5826,7 +5826,7 @@ msgstr "" "satu kueri yang bermasalah, dan lapurkan pepijat desertai oleh seruas data " "dan SALIN keratan rentas dibawah:" -#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:137 +#: libraries/messages.inc.php:1018 libraries/sqlparser.lib.php:137 msgid "" "There seems to be an error in your SQL query. The MySQL server error output " "below, if there is any, may also help you in diagnosing the problem" @@ -5834,418 +5834,418 @@ msgstr "" "Ada kemungkin kueri SQL anda salah. Dibawah adalah kesalah Pelayan MySql , " "jika ada, ianya membantu anda menganalisis masalah" -#: libraries/messages.inc.php:1026 libraries/sqlparser.lib.php:495 +#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:495 msgid "Invalid Identifer" msgstr "Pengenalan TidakSah" -#: libraries/messages.inc.php:1027 libraries/sqlparser.lib.php:344 +#: libraries/messages.inc.php:1023 libraries/sqlparser.lib.php:344 msgid "Unclosed quote" msgstr "Tanda quote tidak disertakan" -#: libraries/messages.inc.php:1028 libraries/sqlparser.lib.php:612 +#: libraries/messages.inc.php:1024 libraries/sqlparser.lib.php:612 msgid "Unknown Punctuation String" msgstr "TandaBaca tidak dikenali" -#: libraries/messages.inc.php:1030 server_replication.php:327 +#: libraries/messages.inc.php:1026 server_replication.php:327 #: server_replication.php:328 #, fuzzy msgid "Start" msgstr "Sab" -#: libraries/messages.inc.php:1033 tbl_printview.php:369 tbl_structure.php:729 +#: libraries/messages.inc.php:1029 tbl_printview.php:369 tbl_structure.php:729 msgid "Statements" msgstr "Penyataan" -#: libraries/messages.inc.php:1034 tbl_printview.php:380 tbl_structure.php:741 +#: libraries/messages.inc.php:1030 tbl_printview.php:380 tbl_structure.php:741 msgid "static" msgstr "" -#: libraries/messages.inc.php:1035 server_status.php:388 +#: libraries/messages.inc.php:1031 server_status.php:388 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: libraries/messages.inc.php:1038 server_replication.php:327 +#: libraries/messages.inc.php:1034 server_replication.php:327 #: server_replication.php:328 msgid "Stop" msgstr "" -#: libraries/messages.inc.php:1039 server_engines.php:49 +#: libraries/messages.inc.php:1035 server_engines.php:49 msgid "Storage Engines" msgstr "" -#: libraries/messages.inc.php:1040 libraries/tbl_properties.inc.php:726 +#: libraries/messages.inc.php:1036 libraries/tbl_properties.inc.php:726 #: server_engines.php:58 tbl_operations.php:353 msgid "Storage Engine" msgstr "" -#: libraries/messages.inc.php:1042 +#: libraries/messages.inc.php:1038 msgid "CSV for MS Excel" msgstr "CSV untuk sata MS Excel" -#: libraries/messages.inc.php:1044 tbl_structure.php:516 tbl_structure.php:518 +#: libraries/messages.inc.php:1040 tbl_structure.php:516 tbl_structure.php:518 msgid "Propose table structure" msgstr "Cadangkan struktur jadual" -#: libraries/messages.inc.php:1045 server_synchronize.php:424 +#: libraries/messages.inc.php:1041 server_synchronize.php:424 #: server_synchronize.php:867 msgid "Structure Difference" msgstr "" -#: libraries/messages.inc.php:1049 server_synchronize.php:265 +#: libraries/messages.inc.php:1045 server_synchronize.php:265 msgid "Structure Synchronization" msgstr "" -#: libraries/messages.inc.php:1050 libraries/sql_query_form.lib.php:462 +#: libraries/messages.inc.php:1046 libraries/sql_query_form.lib.php:462 msgid "Submit" msgstr "Hantar" -#: libraries/messages.inc.php:1052 main.php:358 +#: libraries/messages.inc.php:1048 main.php:358 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " "issues." msgstr "" -#: libraries/messages.inc.php:1054 libraries/mysql_charsets.lib.php:295 +#: libraries/messages.inc.php:1050 libraries/mysql_charsets.lib.php:295 #: libraries/mysql_charsets.lib.php:392 msgid "Swedish" msgstr "" -#: libraries/messages.inc.php:1060 tbl_operations.php:556 +#: libraries/messages.inc.php:1056 tbl_operations.php:556 msgid "Switch to copied table" msgstr "" -#: libraries/messages.inc.php:1061 server_synchronize.php:1213 +#: libraries/messages.inc.php:1057 server_synchronize.php:1213 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." msgstr "" -#: libraries/messages.inc.php:1062 server_synchronize.php:451 +#: libraries/messages.inc.php:1058 server_synchronize.php:451 #: server_synchronize.php:896 msgid "Synchronize Databases" msgstr "" -#: libraries/messages.inc.php:1063 libraries/server_links.inc.php:92 +#: libraries/messages.inc.php:1059 libraries/server_links.inc.php:92 #: server_synchronize.php:1092 server_synchronize.php:1100 msgid "Synchronize" msgstr "" -#: libraries/messages.inc.php:1065 server_synchronize.php:430 +#: libraries/messages.inc.php:1061 server_synchronize.php:430 #: server_synchronize.php:873 msgid "Add column(s)" msgstr "" -#: libraries/messages.inc.php:1066 tbl_create.php:62 +#: libraries/messages.inc.php:1062 tbl_create.php:62 #, php-format msgid "Table %s already exists!" msgstr "" -#: libraries/messages.inc.php:1067 server_synchronize.php:432 +#: libraries/messages.inc.php:1063 server_synchronize.php:432 #: server_synchronize.php:875 msgid "Alter column(s)" msgstr "" -#: libraries/messages.inc.php:1068 tbl_addfield.php:189 tbl_alter.php:103 +#: libraries/messages.inc.php:1064 tbl_addfield.php:189 tbl_alter.php:103 #: tbl_indexes.php:98 #, php-format msgid "Table %1$s has been altered successfully" msgstr "" -#: libraries/messages.inc.php:1069 server_synchronize.php:434 +#: libraries/messages.inc.php:1065 server_synchronize.php:434 #: server_synchronize.php:877 msgid "Apply index(s)" msgstr "" -#: libraries/messages.inc.php:1071 server_synchronize.php:446 +#: libraries/messages.inc.php:1067 server_synchronize.php:446 #: server_synchronize.php:890 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: libraries/messages.inc.php:1072 tbl_move_copy.php:82 +#: libraries/messages.inc.php:1068 tbl_move_copy.php:82 msgid "The table name is empty!" msgstr "Nama jadual adalah kosong" -#: libraries/messages.inc.php:1073 tbl_create.php:249 +#: libraries/messages.inc.php:1069 tbl_create.php:249 #, fuzzy, php-format msgid "Table %1$s has been created." msgstr "Jadual %s telah digugurkan" -#: libraries/messages.inc.php:1076 tbl_operations.php:628 +#: libraries/messages.inc.php:1072 tbl_operations.php:628 #, php-format msgid "Table %s has been flushed" msgstr "Jadual %s telah dibuangkan" -#: libraries/messages.inc.php:1077 server_synchronize.php:436 +#: libraries/messages.inc.php:1073 server_synchronize.php:436 #: server_synchronize.php:879 msgid "Insert row(s)" msgstr "" -#: libraries/messages.inc.php:1078 libraries/tbl_links.inc.php:107 +#: libraries/messages.inc.php:1074 libraries/tbl_links.inc.php:107 #: libraries/tbl_links.inc.php:140 libraries/tbl_links.inc.php:141 msgid "Table seems to be empty!" msgstr "" -#: libraries/messages.inc.php:1079 tbl_operations.php:568 +#: libraries/messages.inc.php:1075 tbl_operations.php:568 msgid "Table maintenance" msgstr "Penyenggaraan Jadual" -#: libraries/messages.inc.php:1080 libraries/tbl_properties.inc.php:618 +#: libraries/messages.inc.php:1076 libraries/tbl_properties.inc.php:618 #: server_synchronize.php:428 server_synchronize.php:871 msgid "Table name" msgstr "" -#: libraries/messages.inc.php:1081 pdf_schema.php:1116 +#: libraries/messages.inc.php:1077 pdf_schema.php:1116 msgid "Table of contents" msgstr "Kandungan" -#: libraries/messages.inc.php:1082 tbl_operations.php:334 +#: libraries/messages.inc.php:1078 tbl_operations.php:334 msgid "Table options" msgstr "" -#: libraries/messages.inc.php:1083 server_synchronize.php:431 +#: libraries/messages.inc.php:1079 server_synchronize.php:431 #: server_synchronize.php:874 msgid "Remove column(s)" msgstr "" -#: libraries/messages.inc.php:1084 server_synchronize.php:433 +#: libraries/messages.inc.php:1080 server_synchronize.php:433 #: server_synchronize.php:876 msgid "Remove index(s)" msgstr "" -#: libraries/messages.inc.php:1088 server_synchronize.php:435 +#: libraries/messages.inc.php:1084 server_synchronize.php:435 #: server_synchronize.php:878 msgid "Update row(s)" msgstr "" -#: libraries/messages.inc.php:1090 server_synchronize.php:942 +#: libraries/messages.inc.php:1086 server_synchronize.php:942 msgid "Target database has been synchronized with source database" msgstr "" -#: libraries/messages.inc.php:1091 server_privileges.php:392 +#: libraries/messages.inc.php:1087 server_privileges.php:392 #: server_privileges.php:527 server_privileges.php:1679 #: server_privileges.php:1685 msgid "Table-specific privileges" msgstr "" -#: libraries/messages.inc.php:1092 server_status.php:254 +#: libraries/messages.inc.php:1088 server_status.php:254 msgid "Temporary data" msgstr "" -#: libraries/messages.inc.php:1093 tbl_change.php:728 +#: libraries/messages.inc.php:1089 tbl_change.php:728 msgid " Because of its length,
this field might not be editable " msgstr " Kerana kepanjangannya,
medan ini tidak boleh diedit " -#: libraries/messages.inc.php:1094 +#: libraries/messages.inc.php:1090 msgid "Texy! text" msgstr "" -#: libraries/messages.inc.php:1095 libraries/mysql_charsets.lib.php:298 +#: libraries/messages.inc.php:1091 libraries/mysql_charsets.lib.php:298 #: libraries/mysql_charsets.lib.php:395 msgid "Thai" msgstr "" -#: libraries/messages.inc.php:1102 libraries/replication_gui.lib.php:308 +#: libraries/messages.inc.php:1098 libraries/replication_gui.lib.php:308 #: server_privileges.php:734 msgid "This Host" msgstr "" -#: libraries/messages.inc.php:1103 server_status.php:252 +#: libraries/messages.inc.php:1099 server_status.php:252 msgid "Threads" msgstr "" -#: libraries/messages.inc.php:1104 server_processlist.php:22 +#: libraries/messages.inc.php:1100 server_processlist.php:22 #, php-format msgid "Thread %s was successfully killed." msgstr "Bebenang %s telah berjaya dimatikan." -#: libraries/messages.inc.php:1106 +#: libraries/messages.inc.php:1102 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." msgstr "" -#: libraries/messages.inc.php:1109 pmd_pdf.php:94 +#: libraries/messages.inc.php:1105 pmd_pdf.php:94 msgid "to/from page" msgstr "" -#: libraries/messages.inc.php:1110 pdf_pages.php:343 +#: libraries/messages.inc.php:1106 pdf_pages.php:343 msgid "Toggle scratchboard" msgstr "" -#: libraries/messages.inc.php:1111 pmd_general.php:99 +#: libraries/messages.inc.php:1107 pmd_general.php:99 msgid "Toggle small/big" msgstr "" -#: libraries/messages.inc.php:1112 pmd_help.php:27 +#: libraries/messages.inc.php:1108 pmd_help.php:27 msgid "To select relation, click :" msgstr "" -#: libraries/messages.inc.php:1115 libraries/tbl_links.inc.php:149 +#: libraries/messages.inc.php:1111 libraries/tbl_links.inc.php:149 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" -#: libraries/messages.inc.php:1116 tbl_tracking.php:655 +#: libraries/messages.inc.php:1112 tbl_tracking.php:655 msgid "Activate now" msgstr "" -#: libraries/messages.inc.php:1117 tbl_tracking.php:653 +#: libraries/messages.inc.php:1113 tbl_tracking.php:653 #, php-format msgid "Activate tracking for %s.%s" msgstr "" -#: libraries/messages.inc.php:1118 tbl_tracking.php:221 +#: libraries/messages.inc.php:1114 tbl_tracking.php:221 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/messages.inc.php:1119 tbl_tracking.php:688 +#: libraries/messages.inc.php:1115 tbl_tracking.php:688 #, fuzzy msgid "Create version" msgstr "Versi Pelayan" -#: libraries/messages.inc.php:1120 tbl_tracking.php:668 +#: libraries/messages.inc.php:1116 tbl_tracking.php:668 #, php-format msgid "Create version %s of %s.%s" msgstr "" -#: libraries/messages.inc.php:1122 tbl_tracking.php:412 +#: libraries/messages.inc.php:1118 tbl_tracking.php:412 msgid "Data definition statement" msgstr "" -#: libraries/messages.inc.php:1123 tbl_tracking.php:463 +#: libraries/messages.inc.php:1119 tbl_tracking.php:463 msgid "Data manipulation statement" msgstr "" -#: libraries/messages.inc.php:1124 tbl_tracking.php:410 tbl_tracking.php:461 +#: libraries/messages.inc.php:1120 tbl_tracking.php:410 tbl_tracking.php:461 #, fuzzy msgid "Date" msgstr "Data" -#: libraries/messages.inc.php:1125 tbl_tracking.php:642 +#: libraries/messages.inc.php:1121 tbl_tracking.php:642 msgid "Deactivate now" msgstr "" -#: libraries/messages.inc.php:1126 tbl_tracking.php:640 +#: libraries/messages.inc.php:1122 tbl_tracking.php:640 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "" -#: libraries/messages.inc.php:1127 tbl_tracking.php:521 +#: libraries/messages.inc.php:1123 tbl_tracking.php:521 #, php-format msgid "Export as %s" msgstr "" -#: libraries/messages.inc.php:1130 tbl_tracking.php:251 tbl_tracking.php:379 +#: libraries/messages.inc.php:1126 tbl_tracking.php:251 tbl_tracking.php:379 msgid "Close" msgstr "" -#: libraries/messages.inc.php:1131 tbl_tracking.php:114 +#: libraries/messages.inc.php:1127 tbl_tracking.php:114 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/messages.inc.php:1133 tbl_tracking.php:397 tbl_tracking.php:504 +#: libraries/messages.inc.php:1129 tbl_tracking.php:397 tbl_tracking.php:504 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "" -#: libraries/messages.inc.php:1134 tbl_tracking.php:561 +#: libraries/messages.inc.php:1130 tbl_tracking.php:561 msgid "Show versions" msgstr "" -#: libraries/messages.inc.php:1135 tbl_tracking.php:507 +#: libraries/messages.inc.php:1131 tbl_tracking.php:507 msgid "SQL dump (file download)" msgstr "" -#: libraries/messages.inc.php:1136 tbl_tracking.php:508 +#: libraries/messages.inc.php:1132 tbl_tracking.php:508 msgid "SQL dump" msgstr "" -#: libraries/messages.inc.php:1137 tbl_tracking.php:213 +#: libraries/messages.inc.php:1133 tbl_tracking.php:213 msgid "SQL statements executed." msgstr "" -#: libraries/messages.inc.php:1138 +#: libraries/messages.inc.php:1134 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/messages.inc.php:1139 tbl_tracking.php:509 +#: libraries/messages.inc.php:1135 tbl_tracking.php:509 msgid "SQL execution" msgstr "" -#: libraries/messages.inc.php:1140 tbl_tracking.php:230 +#: libraries/messages.inc.php:1136 tbl_tracking.php:230 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/messages.inc.php:1141 tbl_tracking.php:381 +#: libraries/messages.inc.php:1137 tbl_tracking.php:381 msgid "Tracking statements" msgstr "" -#: libraries/messages.inc.php:1148 tbl_tracking.php:593 +#: libraries/messages.inc.php:1144 tbl_tracking.php:593 #, fuzzy msgid "Version" msgstr "Versi PHP" -#: libraries/messages.inc.php:1149 tbl_tracking.php:672 +#: libraries/messages.inc.php:1145 tbl_tracking.php:672 msgid "Track these data definition statements:" msgstr "" -#: libraries/messages.inc.php:1150 tbl_tracking.php:680 +#: libraries/messages.inc.php:1146 tbl_tracking.php:680 msgid "Track these data manipulation statements:" msgstr "" -#: libraries/messages.inc.php:1155 tbl_tracking.php:411 tbl_tracking.php:462 +#: libraries/messages.inc.php:1151 tbl_tracking.php:411 tbl_tracking.php:462 #, fuzzy msgid "Username" msgstr "Namapengguna:" -#: libraries/messages.inc.php:1156 tbl_tracking.php:203 +#: libraries/messages.inc.php:1152 tbl_tracking.php:203 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "" -#: libraries/messages.inc.php:1157 tbl_tracking.php:187 +#: libraries/messages.inc.php:1153 tbl_tracking.php:187 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "" -#: libraries/messages.inc.php:1158 tbl_tracking.php:195 +#: libraries/messages.inc.php:1154 tbl_tracking.php:195 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "" -#: libraries/messages.inc.php:1159 tbl_tracking.php:262 +#: libraries/messages.inc.php:1155 tbl_tracking.php:262 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/messages.inc.php:1161 tbl_tracking.php:220 +#: libraries/messages.inc.php:1157 tbl_tracking.php:220 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/messages.inc.php:1162 libraries/mysql_charsets.lib.php:219 +#: libraries/messages.inc.php:1158 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:362 msgid "Traditional Chinese" msgstr "" -#: libraries/messages.inc.php:1163 libraries/mysql_charsets.lib.php:292 +#: libraries/messages.inc.php:1159 libraries/mysql_charsets.lib.php:292 msgid "Traditional Spanish" msgstr "" -#: libraries/messages.inc.php:1164 server_status.php:388 +#: libraries/messages.inc.php:1160 server_status.php:388 msgid "Traffic" msgstr "Kesibukan" -#: libraries/messages.inc.php:1165 server_status.php:261 +#: libraries/messages.inc.php:1161 server_status.php:261 msgid "Transaction coordinator" msgstr "" -#: libraries/messages.inc.php:1166 +#: libraries/messages.inc.php:1162 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 " @@ -6253,27 +6253,27 @@ msgid "" "need to set the first option to the empty string." msgstr "" -#: libraries/messages.inc.php:1167 +#: libraries/messages.inc.php:1163 msgid "" "Displays hexadecimal representation of data. Optional first parameter " "specifies how often space will be added (defaults to 2 nibbles)." msgstr "" -#: libraries/messages.inc.php:1168 +#: libraries/messages.inc.php:1164 msgid "" "Displays a clickable thumbnail. The options are the maximum width and height " "in pixels. The original aspect ratio is preserved." msgstr "" -#: libraries/messages.inc.php:1169 +#: libraries/messages.inc.php:1165 msgid "Displays a link to download this image." msgstr "" -#: libraries/messages.inc.php:1170 +#: libraries/messages.inc.php:1166 msgid "See image/jpeg: inline" msgstr "" -#: libraries/messages.inc.php:1171 +#: libraries/messages.inc.php:1167 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 " @@ -6285,7 +6285,7 @@ msgid "" "gmdate() function." msgstr "" -#: libraries/messages.inc.php:1172 +#: libraries/messages.inc.php:1168 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 " @@ -6299,31 +6299,31 @@ msgid "" "(Default 1)." msgstr "" -#: libraries/messages.inc.php:1173 +#: libraries/messages.inc.php:1169 msgid "" "Displays the contents of the field as-is, without running it through " "htmlspecialchars(). That is, the field is assumed to contain valid HTML." msgstr "" -#: libraries/messages.inc.php:1174 +#: libraries/messages.inc.php:1170 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." msgstr "" -#: libraries/messages.inc.php:1175 +#: libraries/messages.inc.php:1171 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." msgstr "" -#: libraries/messages.inc.php:1176 +#: libraries/messages.inc.php:1172 msgid "Formats text as SQL query with syntax highlighting." msgstr "" -#: libraries/messages.inc.php:1177 +#: libraries/messages.inc.php:1173 msgid "" "Displays a part of a string. The first option is the number of characters to " "skip from the beginning of the string (Default 0). The second option is the " @@ -6332,69 +6332,69 @@ msgid "" "(Default: \"...\")." msgstr "" -#: libraries/messages.inc.php:1179 server_binlog.php:183 server_binlog.php:186 +#: libraries/messages.inc.php:1175 server_binlog.php:183 server_binlog.php:186 #: server_processlist.php:49 server_processlist.php:51 msgid "Truncate Shown Queries" msgstr "" -#: libraries/messages.inc.php:1180 libraries/mysql_charsets.lib.php:301 +#: libraries/messages.inc.php:1176 libraries/mysql_charsets.lib.php:301 #: libraries/mysql_charsets.lib.php:389 msgid "Turkish" msgstr "" -#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:304 +#: libraries/messages.inc.php:1179 libraries/mysql_charsets.lib.php:304 #: libraries/mysql_charsets.lib.php:386 msgid "Ukrainian" msgstr "" -#: libraries/messages.inc.php:1185 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:1181 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 msgid "Unicode" msgstr "" -#: libraries/messages.inc.php:1187 libraries/mysql_charsets.lib.php:398 +#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:398 #: libraries/mysql_charsets.lib.php:405 msgid "unknown" msgstr "" -#: libraries/messages.inc.php:1190 server_privileges.php:1152 +#: libraries/messages.inc.php:1186 server_privileges.php:1152 #, php-format msgid "You have updated the privileges for %s." msgstr "Anda telah mengemaskini privilej bagi %s." -#: libraries/messages.inc.php:1191 user_password.php:112 +#: libraries/messages.inc.php:1187 user_password.php:112 msgid "The profile has been updated." msgstr "Profil telah dikemaskini." -#: libraries/messages.inc.php:1193 libraries/relation.lib.php:138 +#: libraries/messages.inc.php:1189 libraries/relation.lib.php:138 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" -#: libraries/messages.inc.php:1194 +#: libraries/messages.inc.php:1190 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/messages.inc.php:1204 tbl_printview.php:314 tbl_structure.php:661 +#: libraries/messages.inc.php:1200 tbl_printview.php:314 tbl_structure.php:661 msgid "Usage" msgstr "Penggunaan" -#: libraries/messages.inc.php:1205 +#: libraries/messages.inc.php:1201 msgid "Enclose table and field names with backquotes" msgstr "Sertakan nama jadual dan medan dengan backquotes" -#: libraries/messages.inc.php:1206 libraries/replication_gui.lib.php:314 +#: libraries/messages.inc.php:1202 libraries/replication_gui.lib.php:314 #: server_privileges.php:740 msgid "Use Host Table" msgstr "" -#: libraries/messages.inc.php:1207 server_privileges.php:848 +#: libraries/messages.inc.php:1203 server_privileges.php:848 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/messages.inc.php:1209 libraries/replication_gui.lib.php:55 +#: libraries/messages.inc.php:1205 libraries/replication_gui.lib.php:55 #: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245 #: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255 #: server_privileges.php:672 server_privileges.php:675 @@ -6402,35 +6402,35 @@ msgstr "" msgid "User name" msgstr "Kata Pengenalan" -#: libraries/messages.inc.php:1210 server_privileges.php:1645 +#: libraries/messages.inc.php:1206 server_privileges.php:1645 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/messages.inc.php:1211 server_privileges.php:1365 +#: libraries/messages.inc.php:1207 server_privileges.php:1365 msgid "User overview" msgstr "" -#: libraries/messages.inc.php:1212 server_privileges.php:1261 +#: libraries/messages.inc.php:1208 server_privileges.php:1261 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/messages.inc.php:1213 server_privileges.php:2026 +#: libraries/messages.inc.php:1209 server_privileges.php:2026 #, php-format msgid "Users having access to "%s"" msgstr "" -#: libraries/messages.inc.php:1214 main.php:189 server_privileges.php:1350 +#: libraries/messages.inc.php:1210 main.php:189 server_privileges.php:1350 #: server_privileges.php:1497 server_privileges.php:1611 #: server_privileges.php:2029 server_processlist.php:54 msgid "User" msgstr "Pengguna" -#: libraries/messages.inc.php:1215 tbl_change.php:1171 +#: libraries/messages.inc.php:1211 tbl_change.php:1171 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/messages.inc.php:1217 libraries/replication_gui.lib.php:251 +#: libraries/messages.inc.php:1213 libraries/replication_gui.lib.php:251 #: libraries/replication_gui.lib.php:319 libraries/replication_gui.lib.php:342 #: server_privileges.php:678 server_privileges.php:745 #: server_privileges.php:769 server_privileges.php:1889 @@ -6438,7 +6438,7 @@ msgstr "" msgid "Use text field" msgstr "" -#: libraries/messages.inc.php:1221 libraries/sqlvalidator.lib.php:68 +#: libraries/messages.inc.php:1217 libraries/sqlvalidator.lib.php:68 #, php-format msgid "" "The SQL validator could not be initialized. Please check if you have " @@ -6447,86 +6447,86 @@ msgstr "" "Pengesahan SQL tidak dapat disahkan. Sila semak sama ada anda telah memasang " "sambungan php seperti yang tercatit di %sdocumentation%s." -#: libraries/messages.inc.php:1222 libraries/replication_gui.lib.php:111 +#: libraries/messages.inc.php:1218 libraries/replication_gui.lib.php:111 #: server_status.php:627 tbl_change.php:324 tbl_printview.php:370 #: tbl_select.php:139 tbl_structure.php:730 msgid "Value" msgstr "Nilai" -#: libraries/messages.inc.php:1223 libraries/replication_gui.lib.php:110 +#: libraries/messages.inc.php:1219 libraries/replication_gui.lib.php:110 #: libraries/sql_query_form.lib.php:445 server_status.php:626 #: server_variables.php:52 msgid "Variable" msgstr "Pembolehubah" -#: libraries/messages.inc.php:1225 server_export.php:21 +#: libraries/messages.inc.php:1221 server_export.php:21 #, fuzzy msgid "View dump (schema) of databases" msgstr "Lihat longgokan (skema) pangkalan data" -#: libraries/messages.inc.php:1227 tbl_export.php:23 +#: libraries/messages.inc.php:1223 tbl_export.php:23 msgid "View dump (schema) of table" msgstr "Lihat longgokan (skema) pangkalan data" -#: libraries/messages.inc.php:1231 view_create.php:142 +#: libraries/messages.inc.php:1227 view_create.php:142 msgid "VIEW name" msgstr "" -#: libraries/messages.inc.php:1237 main.php:205 +#: libraries/messages.inc.php:1233 main.php:205 msgid "Web server" msgstr "" -#: libraries/messages.inc.php:1239 libraries/mysql_charsets.lib.php:277 +#: libraries/messages.inc.php:1235 libraries/mysql_charsets.lib.php:277 #: libraries/mysql_charsets.lib.php:325 msgid "West European" msgstr "" -#: libraries/messages.inc.php:1240 main.php:230 +#: libraries/messages.inc.php:1236 main.php:230 msgid "Wiki" msgstr "" -#: libraries/messages.inc.php:1241 server_privileges.php:2138 +#: libraries/messages.inc.php:1237 server_privileges.php:2138 msgid "wildcard" msgstr "" -#: libraries/messages.inc.php:1248 +#: libraries/messages.inc.php:1244 msgid "Export contents" msgstr "" -#: libraries/messages.inc.php:1249 +#: libraries/messages.inc.php:1245 msgid "Export functions" msgstr "" -#: libraries/messages.inc.php:1250 +#: libraries/messages.inc.php:1246 msgid "Export procedures" msgstr "" -#: libraries/messages.inc.php:1251 +#: libraries/messages.inc.php:1247 msgid "Export Structure Schemas (recommended)" msgstr "" -#: libraries/messages.inc.php:1252 +#: libraries/messages.inc.php:1248 #, fuzzy msgid "Export tables" msgstr "Tiada Jadual" -#: libraries/messages.inc.php:1253 +#: libraries/messages.inc.php:1249 msgid "Export triggers" msgstr "" -#: libraries/messages.inc.php:1254 +#: libraries/messages.inc.php:1250 msgid "Export views" msgstr "" -#: libraries/messages.inc.php:1255 +#: libraries/messages.inc.php:1251 msgid "XML" msgstr "" -#: libraries/messages.inc.php:1259 server_privileges.php:592 +#: libraries/messages.inc.php:1255 server_privileges.php:592 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" -#: libraries/messages.inc.php:1260 +#: libraries/messages.inc.php:1256 msgid "\"zipped\"" msgstr "\"zipped\"" diff --git a/po/nb.po b/po/nb.po index cf3756d9e..377792d07 100644 --- 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-05-13 11:25+0200\n" +"POT-Creation-Date: 2010-05-13 11:30+0200\n" "PO-Revision-Date: 2010-05-11 08:13+0200\n" "Last-Translator: \n" "Language-Team: norwegian \n" @@ -15,19 +15,19 @@ msgstr "" "X-Generator: Pootle 2.0.1\n" #: browse_foreigners.php:38 browse_foreigners.php:59 -#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:870 +#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:866 #: server_privileges.php:1475 msgid "Show all" msgstr "Vis alle" #: browse_foreigners.php:82 db_operations.php:648 -#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:394 -#: libraries/export/pdf.php:147 libraries/messages.inc.php:597 +#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394 +#: libraries/export/pdf.php:147 libraries/messages.inc.php:593 #: pdf_schema.php:283 pdf_schema.php:1123 pdf_schema.php:1139 msgid "Page number:" msgstr "Sidenummer:" -#: browse_foreigners.php:132 libraries/messages.inc.php:1242 +#: browse_foreigners.php:132 libraries/messages.inc.php:1238 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -39,7 +39,7 @@ 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/db_links.inc.php:75 -#: libraries/messages.inc.php:841 libraries/tbl_links.inc.php:63 +#: libraries/messages.inc.php:837 libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Søk" @@ -48,12 +48,12 @@ msgstr "Søk" #: db_search.php:362 db_structure.php:567 js/messages.php:48 #: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2267 +#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 #: 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 #: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614 -#: libraries/messages.inc.php:361 libraries/replication_gui.lib.php:73 +#: libraries/messages.inc.php:357 libraries/replication_gui.lib.php:73 #: libraries/replication_gui.lib.php:365 libraries/select_server.lib.php:104 #: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477 #: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782 @@ -73,33 +73,33 @@ msgid "Go" msgstr "Utfør" #: browse_foreigners.php:168 browse_foreigners.php:172 -#: libraries/Index.class.php:442 libraries/messages.inc.php:459 +#: libraries/Index.class.php:442 libraries/messages.inc.php:455 #: tbl_tracking.php:320 msgid "Keyname" msgstr "Nøkkel" #: browse_foreigners.php:169 browse_foreigners.php:171 -#: libraries/messages.inc.php:252 server_collations.php:55 +#: libraries/messages.inc.php:248 server_collations.php:55 #: server_collations.php:67 server_engines.php:59 server_status.php:628 msgid "Description" msgstr "Beskrivelse" #: browse_foreigners.php:247 browse_foreigners.php:256 #: browse_foreigners.php:268 browse_foreigners.php:276 -#: libraries/messages.inc.php:1218 +#: libraries/messages.inc.php:1214 msgid "Use this value" msgstr "Bruk denne verdien" -#: db_create.php:46 libraries/messages.inc.php:215 +#: db_create.php:46 libraries/messages.inc.php:211 #, php-format msgid "Database %1$s has been created." msgstr "Databasen %1$s har blitt opprettet." -#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:232 +#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:228 msgid "Database comment: " msgstr "Database kommentar: " -#: db_datadict.php:165 libraries/messages.inc.php:1070 +#: db_datadict.php:165 libraries/messages.inc.php:1066 #: libraries/tbl_properties.inc.php:724 pdf_schema.php:1236 #: tbl_operations.php:345 tbl_printview.php:130 msgid "Table comments" @@ -108,7 +108,7 @@ msgstr "Tabellkommentarer" #: db_datadict.php:174 db_qbe.php:174 libraries/Index.class.php:446 #: libraries/export/htmlword.php:244 libraries/export/latex.php:360 #: libraries/export/odt.php:294 libraries/export/texytext.php:233 -#: libraries/messages.inc.php:317 libraries/tbl_properties.inc.php:99 +#: libraries/messages.inc.php:313 libraries/tbl_properties.inc.php:99 #: libraries/tbl_properties.inc.php:275 pdf_schema.php:1262 #: pdf_schema.php:1283 tbl_change.php:308 tbl_indexes.php:189 #: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135 @@ -120,7 +120,7 @@ msgstr "Felt" #: libraries/db_events.inc.php:31 libraries/db_routines.inc.php:42 #: 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/messages.inc.php:1181 +#: libraries/export/texytext.php:234 libraries/messages.inc.php:1177 #: libraries/tbl_properties.inc.php:100 pdf_schema.php:1263 #: pdf_schema.php:1284 server_privileges.php:2031 tbl_change.php:287 #: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313 @@ -132,7 +132,7 @@ msgstr "Type" #: db_datadict.php:177 libraries/Index.class.php:449 #: libraries/export/htmlword.php:246 libraries/export/latex.php:360 #: libraries/export/odt.php:300 libraries/export/texytext.php:235 -#: libraries/messages.inc.php:576 libraries/tbl_properties.inc.php:109 +#: libraries/messages.inc.php:572 libraries/tbl_properties.inc.php:109 #: pdf_schema.php:1265 pdf_schema.php:1286 tbl_change.php:323 #: tbl_printview.php:145 tbl_structure.php:181 tbl_tracking.php:276 #: tbl_tracking.php:327 @@ -141,7 +141,7 @@ msgstr "Null" #: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 -#: libraries/export/texytext.php:236 libraries/messages.inc.php:238 +#: libraries/export/texytext.php:236 libraries/messages.inc.php:234 #: libraries/tbl_properties.inc.php:106 pdf_schema.php:1266 #: pdf_schema.php:1287 tbl_printview.php:146 tbl_structure.php:182 #: tbl_tracking.php:277 @@ -150,14 +150,14 @@ msgstr "Standard" #: db_datadict.php:182 libraries/export/htmlword.php:249 #: libraries/export/latex.php:362 libraries/export/odt.php:307 -#: libraries/export/texytext.php:238 libraries/messages.inc.php:483 +#: libraries/export/texytext.php:238 libraries/messages.inc.php:479 #: pdf_schema.php:1268 pdf_schema.php:1289 tbl_printview.php:150 msgid "Links to" msgstr "Linker til" #: db_datadict.php:184 db_printview.php:112 libraries/export/htmlword.php:252 #: libraries/export/latex.php:365 libraries/export/odt.php:312 -#: libraries/export/texytext.php:241 libraries/messages.inc.php:163 +#: libraries/export/texytext.php:241 libraries/messages.inc.php:159 #: libraries/tbl_properties.inc.php:130 pdf_schema.php:1279 #: pdf_schema.php:1290 tbl_printview.php:152 msgid "Comments" @@ -166,7 +166,7 @@ msgstr "Kommentarer" #: db_datadict.php:267 libraries/Index.class.php:359 #: 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/messages.inc.php:559 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:555 #: libraries/mult_submits.inc.php:263 pdf_schema.php:1344 #: server_privileges.php:1529 server_privileges.php:1540 #: server_privileges.php:1850 server_privileges.php:1855 @@ -178,7 +178,7 @@ msgstr "Nei" #: db_datadict.php:267 libraries/Index.class.php:360 #: libraries/Index.class.php:385 libraries/export/htmlword.php:322 #: libraries/export/latex.php:430 libraries/export/odt.php:368 -#: libraries/export/texytext.php:311 libraries/messages.inc.php:1257 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:1253 #: libraries/mult_submits.inc.php:45 libraries/mult_submits.inc.php:50 #: libraries/mult_submits.inc.php:55 libraries/mult_submits.inc.php:60 #: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:101 @@ -192,108 +192,108 @@ msgstr "Nei" msgid "Yes" msgstr "Ja" -#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:670 +#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:666 #: tbl_printview.php:498 msgid "Print" msgstr "Skriv ut" -#: db_export.php:29 libraries/messages.inc.php:1226 +#: db_export.php:29 libraries/messages.inc.php:1222 msgid "View dump (schema) of database" msgstr "Vis dump (skjema) av database" #: db_export.php:33 db_printview.php:96 db_qbe.php:102 db_structure.php:51 -#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:568 +#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:564 #: navigation.php:346 msgid "No tables found in database." msgstr "Ingen tabeller i databasen." -#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:845 +#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:841 #: server_export.php:27 msgid "Select All" msgstr "Velg alle" -#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1188 +#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1184 #: server_export.php:29 msgid "Unselect All" msgstr "Fjern alle valgte" -#: db_operations.php:38 libraries/messages.inc.php:213 tbl_create.php:54 +#: db_operations.php:38 libraries/messages.inc.php:209 tbl_create.php:54 msgid "The database name is empty!" msgstr "Databasen er uten navn!" -#: db_operations.php:236 libraries/messages.inc.php:753 +#: db_operations.php:236 libraries/messages.inc.php:749 #, php-format msgid "Database %s has been renamed to %s" msgstr "Databasen %s har endret navn til %s" -#: db_operations.php:240 libraries/messages.inc.php:178 +#: db_operations.php:240 libraries/messages.inc.php:174 #, php-format msgid "Database %s has been copied to %s" msgstr "Databasen %s har blitt kopiert til %s" -#: db_operations.php:410 libraries/messages.inc.php:236 +#: db_operations.php:410 libraries/messages.inc.php:232 msgid "Rename database to" msgstr "Endre databasens navn til" -#: db_operations.php:415 libraries/messages.inc.php:161 +#: db_operations.php:415 libraries/messages.inc.php:157 #: server_processlist.php:57 msgid "Command" msgstr "Kommando" -#: db_operations.php:425 libraries/messages.inc.php:58 tbl_change.php:1143 +#: db_operations.php:425 libraries/messages.inc.php:54 tbl_change.php:1143 msgid "and then" msgstr "og så" -#: db_operations.php:451 libraries/messages.inc.php:233 +#: db_operations.php:451 libraries/messages.inc.php:229 msgid "Copy database to" msgstr "Kopier databasen til" -#: db_operations.php:458 libraries/messages.inc.php:1043 +#: db_operations.php:458 libraries/messages.inc.php:1039 #: tbl_operations.php:526 tbl_tracking.php:388 msgid "Structure only" msgstr "Kun struktur" -#: db_operations.php:459 libraries/messages.inc.php:1041 +#: db_operations.php:459 libraries/messages.inc.php:1037 #: tbl_operations.php:527 tbl_tracking.php:390 msgid "Structure and data" msgstr "Struktur og data" -#: db_operations.php:460 libraries/messages.inc.php:229 tbl_operations.php:528 +#: db_operations.php:460 libraries/messages.inc.php:225 tbl_operations.php:528 #: tbl_tracking.php:389 msgid "Data only" msgstr "Bare data" -#: db_operations.php:468 libraries/messages.inc.php:186 +#: db_operations.php:468 libraries/messages.inc.php:182 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE før kopiering" #: db_operations.php:471 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 -#: libraries/export/sql.php:82 libraries/messages.inc.php:30 +#: libraries/export/sql.php:82 libraries/messages.inc.php:26 #: tbl_operations.php:534 #, php-format msgid "Add %s" msgstr "Legg til %s" -#: db_operations.php:475 libraries/messages.inc.php:29 tbl_operations.php:297 +#: db_operations.php:475 libraries/messages.inc.php:25 tbl_operations.php:297 #: tbl_operations.php:536 msgid "Add AUTO_INCREMENT value" msgstr "Legg til AUTO_INCREMENT verdi" -#: db_operations.php:479 libraries/messages.inc.php:31 tbl_operations.php:543 +#: db_operations.php:479 libraries/messages.inc.php:27 tbl_operations.php:543 msgid "Add constraints" msgstr "Legg til begrensninger" -#: db_operations.php:492 libraries/messages.inc.php:1059 +#: db_operations.php:492 libraries/messages.inc.php:1055 msgid "Switch to copied database" msgstr "Bytt til kopiert database" -#: db_operations.php:533 libraries/messages.inc.php:89 +#: db_operations.php:533 libraries/messages.inc.php:85 msgid "BLOB Repository" msgstr "BLOB lager" #: db_operations.php:536 db_tracking.php:76 libraries/common.lib.php:1350 -#: libraries/messages.inc.php:1037 libraries/server_links.inc.php:49 +#: libraries/messages.inc.php:1033 libraries/server_links.inc.php:49 #: server_processlist.php:59 tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "Status" @@ -303,11 +303,11 @@ msgctxt "BLOB repository" msgid "Enabled" msgstr "Påslått" -#: db_operations.php:548 libraries/messages.inc.php:93 +#: db_operations.php:548 libraries/messages.inc.php:89 msgid "Disable" msgstr "Avslå" -#: db_operations.php:558 libraries/messages.inc.php:90 +#: db_operations.php:558 libraries/messages.inc.php:86 msgid "Damaged" msgstr "Skadet" @@ -321,12 +321,12 @@ msgctxt "BLOB repository" msgid "Disabled" msgstr "Avslått" -#: db_operations.php:574 libraries/messages.inc.php:96 +#: db_operations.php:574 libraries/messages.inc.php:92 msgid "Enable" msgstr "Slå på" #: db_operations.php:598 libraries/Index.class.php:448 -#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:158 +#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:154 #: 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:361 @@ -335,7 +335,7 @@ msgstr "Slå på" msgid "Collation" msgstr "Sammenligning" -#: db_operations.php:609 libraries/messages.inc.php:742 main.php:316 +#: db_operations.php:609 libraries/messages.inc.php:738 main.php:316 #: pdf_schema.php:34 #, php-format msgid "" @@ -345,58 +345,58 @@ msgstr "" "Tilleggsfunksjonene for å kunne jobbe med koblede tabeller er deaktivert. " "For å finne ut hvorfor, klikk %sher%s." -#: db_operations.php:645 libraries/messages.inc.php:264 pdf_pages.php:528 +#: db_operations.php:645 libraries/messages.inc.php:260 pdf_pages.php:528 msgid "Display PDF schema" msgstr "Vis PDF-skjema" -#: db_operations.php:661 libraries/messages.inc.php:877 pdf_pages.php:529 +#: db_operations.php:661 libraries/messages.inc.php:873 pdf_pages.php:529 msgid "Show grid" msgstr "Vis rutenett" -#: db_operations.php:664 libraries/messages.inc.php:874 pdf_pages.php:530 +#: db_operations.php:664 libraries/messages.inc.php:870 pdf_pages.php:530 msgid "Show color" msgstr "Vis farger" -#: db_operations.php:666 libraries/messages.inc.php:998 pdf_pages.php:531 +#: db_operations.php:666 libraries/messages.inc.php:994 pdf_pages.php:531 msgid "Show dimension of tables" msgstr "Vis tabelldimensjoner" -#: db_operations.php:669 libraries/messages.inc.php:52 pdf_pages.php:532 +#: db_operations.php:669 libraries/messages.inc.php:48 pdf_pages.php:532 msgid "Display all tables with the same width" msgstr "vis alle tabeller med samme bredde?" -#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:227 +#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:223 #: pdf_pages.php:533 msgid "Data Dictionary" msgstr "Dataordbok" -#: db_operations.php:674 libraries/messages.inc.php:884 pdf_pages.php:534 +#: db_operations.php:674 libraries/messages.inc.php:880 pdf_pages.php:534 msgid "Only show keys" msgstr "Bare vis nøkler" -#: db_operations.php:676 libraries/messages.inc.php:875 pdf_pages.php:535 +#: db_operations.php:676 libraries/messages.inc.php:871 pdf_pages.php:535 msgid "Data Dictionary Format" msgstr "Data Ordbok Format" -#: db_operations.php:678 libraries/messages.inc.php:464 pdf_pages.php:537 +#: db_operations.php:678 libraries/messages.inc.php:460 pdf_pages.php:537 msgid "Landscape" msgstr "Landskapsformat" -#: db_operations.php:679 libraries/messages.inc.php:663 pdf_pages.php:538 +#: db_operations.php:679 libraries/messages.inc.php:659 pdf_pages.php:538 msgid "Portrait" msgstr "Portrettformat" -#: db_operations.php:682 libraries/messages.inc.php:599 pdf_pages.php:541 +#: db_operations.php:682 libraries/messages.inc.php:595 pdf_pages.php:541 msgid "Paper size" msgstr "Papirstørrelse" -#: db_operations.php:706 libraries/messages.inc.php:281 +#: db_operations.php:706 libraries/messages.inc.php:277 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 libraries/messages.inc.php:1087 +#: libraries/header.inc.php:126 libraries/messages.inc.php:1083 #: pdf_pages.php:405 server_privileges.php:1626 server_privileges.php:1682 #: server_privileges.php:1946 server_synchronize.php:423 #: server_synchronize.php:866 tbl_tracking.php:592 test/theme.php:75 @@ -404,176 +404,176 @@ msgid "Table" msgstr "Tabell" #: db_printview.php:105 libraries/db_structure.lib.php:56 -#: libraries/messages.inc.php:735 +#: libraries/messages.inc.php:731 msgid "Records" msgstr "Rader" #: db_printview.php:109 libraries/db_structure.lib.php:67 -#: libraries/messages.inc.php:1003 tbl_indexes.php:190 +#: libraries/messages.inc.php:999 tbl_indexes.php:190 msgid "Size" msgstr "Størrelse" #: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 -#: libraries/export/sql.php:899 libraries/messages.inc.php:436 +#: libraries/export/sql.php:899 libraries/messages.inc.php:432 msgid "in use" msgstr "i bruk" #: db_printview.php:187 libraries/db_info.inc.php:88 -#: libraries/export/sql.php:514 libraries/messages.inc.php:1032 +#: libraries/export/sql.php:514 libraries/messages.inc.php:1028 #: pdf_schema.php:1241 tbl_printview.php:434 tbl_structure.php:810 msgid "Creation" msgstr "Opprettet" #: db_printview.php:196 libraries/db_info.inc.php:93 -#: libraries/export/sql.php:519 libraries/messages.inc.php:1036 +#: libraries/export/sql.php:519 libraries/messages.inc.php:1032 #: pdf_schema.php:1246 tbl_printview.php:444 tbl_structure.php:818 msgid "Last update" msgstr "Sist oppdatert" #: db_printview.php:205 libraries/db_info.inc.php:98 -#: libraries/export/sql.php:524 libraries/messages.inc.php:1031 +#: libraries/export/sql.php:524 libraries/messages.inc.php:1027 #: pdf_schema.php:1251 tbl_printview.php:454 tbl_structure.php:826 msgid "Last check" msgstr "Sist kontrollert" -#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1085 +#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1081 #, php-format msgid "%s table(s)" msgstr "%s tabell(er)" #: db_qbe.php:29 libraries/display_tbl.lib.php:1981 -#: libraries/messages.inc.php:1051 libraries/sql_query_form.lib.php:140 +#: libraries/messages.inc.php:1047 libraries/sql_query_form.lib.php:140 #: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131 #: view_operations.php:62 msgid "Your SQL query has been executed successfully" msgstr "Kommandoen/spørringen er utført" -#: db_qbe.php:42 libraries/messages.inc.php:371 +#: db_qbe.php:42 libraries/messages.inc.php:367 msgid "You have to choose at least one column to display" msgstr "Du må velge minst en kolonne for visning" #: db_qbe.php:200 libraries/db_structure.lib.php:104 -#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1014 +#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1010 msgid "Sort" msgstr "Sorter" #: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111 #: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828 -#: libraries/messages.inc.php:69 server_databases.php:170 +#: libraries/messages.inc.php:65 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314 msgid "Ascending" msgstr "Stigende" #: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119 #: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825 -#: libraries/messages.inc.php:251 server_databases.php:170 +#: libraries/messages.inc.php:247 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315 msgid "Descending" msgstr "Synkende" #: db_qbe.php:264 db_tracking.php:78 libraries/display_tbl.lib.php:308 -#: libraries/messages.inc.php:888 tbl_change.php:277 tbl_tracking.php:597 +#: libraries/messages.inc.php:884 tbl_change.php:277 tbl_tracking.php:597 msgid "Show" msgstr "Vis" -#: db_qbe.php:300 libraries/messages.inc.php:202 +#: db_qbe.php:300 libraries/messages.inc.php:198 msgid "Criteria" msgstr "Kriterier" #: db_qbe.php:353 db_qbe.php:435 db_qbe.php:527 db_qbe.php:558 -#: libraries/messages.inc.php:718 +#: libraries/messages.inc.php:714 msgid "Ins" msgstr "Sett inn" #: db_qbe.php:357 db_qbe.php:439 db_qbe.php:524 db_qbe.php:555 -#: libraries/messages.inc.php:56 +#: libraries/messages.inc.php:52 msgid "And" msgstr "og" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:529 db_qbe.php:560 -#: libraries/messages.inc.php:717 +#: libraries/messages.inc.php:713 msgid "Del" 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/messages.inc.php:592 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:588 #: libraries/tbl_properties.inc.php:779 server_privileges.php:258 #: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288 msgid "Or" msgstr "Eller" -#: db_qbe.php:507 libraries/messages.inc.php:516 +#: db_qbe.php:507 libraries/messages.inc.php:512 msgid "Modify" msgstr "Endre" -#: db_qbe.php:584 libraries/messages.inc.php:33 +#: db_qbe.php:584 libraries/messages.inc.php:29 msgid "Add/Delete Criteria Row" msgstr "Legg til/Slett kriterierad" -#: db_qbe.php:596 libraries/messages.inc.php:32 +#: db_qbe.php:596 libraries/messages.inc.php:28 msgid "Add/Delete Field Columns" msgstr "Legg til/Slett kolonne" -#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1192 +#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1188 msgid "Update Query" msgstr "Oppdater spørring" -#: db_qbe.php:617 libraries/messages.inc.php:1216 +#: db_qbe.php:617 libraries/messages.inc.php:1212 msgid "Use Tables" msgstr "Bruk tabeller" -#: db_qbe.php:640 libraries/messages.inc.php:723 +#: db_qbe.php:640 libraries/messages.inc.php:719 #, php-format msgid "SQL query on database %s:" msgstr "SQL-spørring i database %s:" -#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:823 +#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:819 msgid "Submit Query" msgstr "Kjør spørring" #: db_search.php:68 libraries/auth/config.auth.lib.php:84 #: libraries/auth/config.auth.lib.php:103 #: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52 -#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:26 +#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:22 msgid "Access denied" msgstr "Ingen tilgang" -#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:836 +#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:832 msgid "at least one of the words" msgstr "minst ett av ordene" -#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:837 +#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:833 msgid "all words" msgstr "alle ordene" -#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:838 +#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:834 msgid "the exact phrase" msgstr "med den nøyaktige setningen" -#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:839 +#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:835 msgid "as regular expression" msgstr "som \"regular expression\"" -#: db_search.php:242 libraries/messages.inc.php:840 +#: db_search.php:242 libraries/messages.inc.php:836 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Søkeresultat for \"%s\" %s:" -#: db_search.php:260 libraries/messages.inc.php:579 +#: db_search.php:260 libraries/messages.inc.php:575 #, php-format msgid "%s match(es) inside table %s" 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/messages.inc.php:108 +#: db_structure.php:105 libraries/messages.inc.php:104 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468 msgid "Browse" msgstr "Se på" #: db_search.php:272 libraries/display_tbl.lib.php:1165 -#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:243 +#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:239 #: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406 #: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377 #: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216 @@ -581,45 +581,45 @@ msgstr "Se på" msgid "Delete" msgstr "Slett" -#: db_search.php:285 libraries/messages.inc.php:580 +#: db_search.php:285 libraries/messages.inc.php:576 #, php-format msgid "Total: %s match(es)" msgstr "Totalt: %s treff" -#: db_search.php:299 libraries/messages.inc.php:832 +#: db_search.php:299 libraries/messages.inc.php:828 msgid "Search in database" msgstr "Søk i database" -#: db_search.php:302 libraries/messages.inc.php:835 +#: db_search.php:302 libraries/messages.inc.php:831 msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgstr "Ord eller verdi(er) å søke etter (jokertegn: \"%\"):" -#: db_search.php:307 libraries/messages.inc.php:842 +#: db_search.php:307 libraries/messages.inc.php:838 msgid "Find:" msgstr "Finn:" -#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1017 +#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1013 msgid "Words are separated by a space character (\" \")." msgstr "Ord er separert med et mellomrom (\" \")." -#: db_search.php:325 libraries/messages.inc.php:834 +#: db_search.php:325 libraries/messages.inc.php:830 msgid "Inside table(s):" msgstr "I tabell(ene):" -#: db_search.php:355 libraries/messages.inc.php:833 +#: db_search.php:355 libraries/messages.inc.php:829 msgid "Inside field:" msgstr "I felt:" #: 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/messages.inc.php:431 libraries/sql_query_form.lib.php:334 +#: libraries/messages.inc.php:427 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/db_links.inc.php:63 libraries/export/latex.php:337 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:1048 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:1044 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 #: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269 msgid "Structure" @@ -628,8 +628,8 @@ 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:1642 -#: libraries/db_links.inc.php:100 libraries/messages.inc.php:272 +#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/db_links.inc.php:100 libraries/messages.inc.php:268 #: 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 @@ -639,40 +639,40 @@ 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:1641 -#: libraries/messages.inc.php:284 libraries/mult_submits.inc.php:39 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: libraries/messages.inc.php:280 libraries/mult_submits.inc.php:39 #: libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Tøm" -#: db_structure.php:316 libraries/messages.inc.php:1075 +#: db_structure.php:316 libraries/messages.inc.php:1071 #: libraries/tbl_links.inc.php:100 #, php-format msgid "Table %s has been emptied" msgstr "Tabellen %s har blitt tømt" -#: db_structure.php:326 libraries/messages.inc.php:1229 +#: db_structure.php:326 libraries/messages.inc.php:1225 #: 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/messages.inc.php:1074 +#: db_structure.php:326 libraries/messages.inc.php:1070 #: libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "Tabellen %s har blitt slettet" -#: db_structure.php:333 libraries/messages.inc.php:1128 +#: db_structure.php:333 libraries/messages.inc.php:1124 msgid "Tracking is active." msgstr "Overvåkning er aktiv." -#: db_structure.php:335 libraries/messages.inc.php:1129 +#: db_structure.php:335 libraries/messages.inc.php:1125 msgid "Tracking is not active." msgstr "Overvåkning er ikke aktiv." #: db_structure.php:420 libraries/display_tbl.lib.php:1944 -#: libraries/messages.inc.php:1228 +#: libraries/messages.inc.php:1224 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -680,83 +680,83 @@ msgid "" msgstr "Denne visningen har minst dette antall rader. Sjekk %sdocumentation%s." #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 -#: libraries/messages.inc.php:1233 libraries/tbl_info.inc.php:66 +#: libraries/messages.inc.php:1229 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/messages.inc.php:773 libraries/server_links.inc.php:70 +#: libraries/messages.inc.php:769 libraries/server_links.inc.php:70 #: server_replication.php:33 server_replication.php:164 server_status.php:258 msgid "Replication" msgstr "Replikering" -#: db_structure.php:489 libraries/messages.inc.php:1053 +#: db_structure.php:489 libraries/messages.inc.php:1049 msgid "Sum" msgstr "Sum" #: db_structure.php:496 libraries/StorageEngine.class.php:356 -#: libraries/messages.inc.php:239 +#: libraries/messages.inc.php:235 #, 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 #: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086 -#: libraries/messages.inc.php:1243 libraries/mult_submits.inc.php:16 +#: libraries/messages.inc.php:1239 libraries/mult_submits.inc.php:16 #: server_databases.php:346 server_databases.php:351 #: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465 msgid "With selected:" msgstr "Med avkrysset:" #: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: libraries/messages.inc.php:148 server_databases.php:348 +#: libraries/messages.inc.php:144 server_databases.php:348 #: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459 msgid "Check All" msgstr "Merk alle" #: db_structure.php:531 libraries/display_tbl.lib.php:2077 -#: libraries/messages.inc.php:1184 libraries/replication_gui.lib.php:33 +#: libraries/messages.inc.php:1180 libraries/replication_gui.lib.php:33 #: server_databases.php:350 server_privileges.php:533 #: server_privileges.php:1564 tbl_structure.php:463 msgid "Uncheck All" msgstr "Fjern merking" -#: db_structure.php:536 libraries/messages.inc.php:150 +#: db_structure.php:536 libraries/messages.inc.php:146 msgid "Check tables having overhead" msgstr "Merk overheng" #: db_structure.php:547 db_structure.php:548 db_structure.php:599 -#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:672 +#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:668 #: libraries/mult_submits.inc.php:28 tbl_structure.php:493 #: tbl_structure.php:495 msgid "Print view" msgstr "Utskriftsvennlig forhåndsvisning" -#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:153 +#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:149 #: libraries/mult_submits.inc.php:42 tbl_operations.php:579 msgid "Check table" msgstr "Kontroller tabell" -#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:590 +#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:586 #: libraries/mult_submits.inc.php:47 tbl_operations.php:619 #: tbl_structure.php:710 tbl_structure.php:712 msgid "Optimize table" msgstr "Optimiser tabell" -#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:758 +#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:754 #: libraries/mult_submits.inc.php:52 tbl_operations.php:609 msgid "Repair table" msgstr "Reparer tabell" -#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:55 +#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:51 #: libraries/mult_submits.inc.php:57 tbl_operations.php:599 msgid "Analyze table" msgstr "Analyser tabell" #: db_structure.php:557 db_structure.php:558 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/messages.inc.php:310 +#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:306 #: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84 #: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109 #: server_privileges.php:1341 setup/frames/menu.inc.php:22 @@ -764,7 +764,7 @@ msgstr "Analyser tabell" msgid "Export" msgstr "Eksporter" -#: db_tracking.php:66 libraries/messages.inc.php:1151 +#: db_tracking.php:66 libraries/messages.inc.php:1147 msgid "Tracked tables" msgstr "Overvåkede tabeller" @@ -772,7 +772,7 @@ msgstr "Overvåkede tabeller" #: 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/header_printview.inc.php:58 libraries/messages.inc.php:212 +#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:208 #: navigation.php:233 server_databases.php:169 server_privileges.php:1621 #: server_privileges.php:1682 server_privileges.php:1940 #: server_processlist.php:56 server_synchronize.php:1179 @@ -780,76 +780,76 @@ msgstr "Overvåkede tabeller" msgid "Database" msgstr "Database" -#: db_tracking.php:73 libraries/messages.inc.php:1146 +#: db_tracking.php:73 libraries/messages.inc.php:1142 msgid "Last version" msgstr "Siste versjon" -#: db_tracking.php:74 libraries/messages.inc.php:1145 tbl_tracking.php:594 +#: db_tracking.php:74 libraries/messages.inc.php:1141 tbl_tracking.php:594 msgid "Created" msgstr "Opprettet" -#: db_tracking.php:75 libraries/messages.inc.php:1147 tbl_tracking.php:595 +#: db_tracking.php:75 libraries/messages.inc.php:1143 tbl_tracking.php:595 msgid "Updated" msgstr "Oppdatert" #: db_tracking.php:77 libraries/Index.class.php:440 -#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:27 +#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:23 #: server_databases.php:203 server_privileges.php:1503 #: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187 msgid "Action" msgstr "Handling" -#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:247 +#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:243 msgid "Delete tracking data for this table" msgstr "Slett overvåkningsdata for denne tabellen" -#: db_tracking.php:106 libraries/messages.inc.php:1142 tbl_tracking.php:548 +#: db_tracking.php:106 libraries/messages.inc.php:1138 tbl_tracking.php:548 #: tbl_tracking.php:606 tbl_tracking.php:613 msgid "active" msgstr "aktiv" -#: db_tracking.php:108 libraries/messages.inc.php:1143 tbl_tracking.php:550 +#: db_tracking.php:108 libraries/messages.inc.php:1139 tbl_tracking.php:550 #: tbl_tracking.php:608 tbl_tracking.php:610 msgid "not active" msgstr "ikke aktiv" -#: db_tracking.php:121 libraries/messages.inc.php:1160 +#: db_tracking.php:121 libraries/messages.inc.php:1156 msgid "Versions" msgstr "Versjoner" -#: db_tracking.php:122 libraries/messages.inc.php:1132 tbl_tracking.php:379 +#: db_tracking.php:122 libraries/messages.inc.php:1128 tbl_tracking.php:379 #: tbl_tracking.php:624 msgid "Tracking report" msgstr "Overvåkningsrapport" -#: db_tracking.php:123 libraries/messages.inc.php:1144 tbl_tracking.php:251 +#: db_tracking.php:123 libraries/messages.inc.php:1140 tbl_tracking.php:251 #: tbl_tracking.php:624 msgid "Structure snapshot" msgstr "Strukturøyeblikksbilde" -#: db_tracking.php:152 libraries/messages.inc.php:1154 +#: db_tracking.php:152 libraries/messages.inc.php:1150 msgid "Untracked tables" msgstr "Ikke overvåkede tabeller" -#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1153 +#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1149 #: tbl_structure.php:529 tbl_structure.php:531 msgid "Track table" msgstr "Overvåk tabell" -#: db_tracking.php:200 libraries/messages.inc.php:1121 +#: db_tracking.php:200 libraries/messages.inc.php:1117 msgid "Database Log" msgstr "Databaselogg" -#: export.php:62 libraries/messages.inc.php:312 +#: export.php:62 libraries/messages.inc.php:308 msgid "Selected export type has to be saved in file!" msgstr "Valgte eksporteringstype krever lagring til ei fil!" -#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:567 +#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:563 #, php-format msgid "Insufficient space to save the file %s." msgstr "Ikke nok plass til å lagre fila %s." -#: export.php:294 libraries/messages.inc.php:324 +#: export.php:294 libraries/messages.inc.php:320 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -857,17 +857,17 @@ msgstr "" "Fila %s eksisterer alt på serveren, endre navnet eller merk av for " "overskriving av fil." -#: export.php:298 export.php:302 libraries/messages.inc.php:562 +#: export.php:298 export.php:302 libraries/messages.inc.php:558 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Webserveren har ikke tillatelse til å lagre fila %s." -#: export.php:629 libraries/messages.inc.php:276 +#: export.php:629 libraries/messages.inc.php:272 #, php-format msgid "Dump has been saved to file %s." msgstr "Dump har blitt lagret til fila %s." -#: import.php:60 libraries/messages.inc.php:1202 +#: import.php:60 libraries/messages.inc.php:1198 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation%" @@ -877,14 +877,14 @@ msgstr "" "%s for måter å omgå denne begrensningen." #: import.php:279 import.php:332 libraries/File.class.php:849 -#: libraries/File.class.php:961 libraries/messages.inc.php:325 +#: libraries/File.class.php:961 libraries/messages.inc.php:321 msgid "File could not be read" msgstr "Fila kunne ikke leses" #: import.php:287 import.php:296 import.php:315 import.php:324 #: libraries/File.class.php:1031 libraries/File.class.php:1039 #: libraries/File.class.php:1055 libraries/File.class.php:1063 -#: libraries/messages.inc.php:1189 +#: libraries/messages.inc.php:1185 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -893,7 +893,7 @@ msgstr "" "Du forsøkte å laste en komprimert fil som det ikke er støtte for (%s). Enten " "så er ikke støtte implementert eller den er slått av i din konfigurasjon." -#: import.php:337 libraries/messages.inc.php:547 +#: import.php:337 libraries/messages.inc.php:543 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -904,30 +904,30 @@ msgstr "" "Se FAQ 1.16" #: import.php:372 libraries/display_import.lib.php:24 -#: libraries/messages.inc.php:125 +#: libraries/messages.inc.php:121 msgid "Could not load import plugins, please check your installation!" msgstr "" "Kan ikke starte importeringsprogramtilleggene, kontroller din installasjon!" -#: import.php:397 libraries/messages.inc.php:102 +#: import.php:397 libraries/messages.inc.php:98 msgid "The bookmark has been deleted." msgstr "Bokmerket har blitt slettet." -#: import.php:401 libraries/messages.inc.php:879 +#: import.php:401 libraries/messages.inc.php:875 msgid "Showing bookmark" msgstr "Vis bokmerke" -#: import.php:403 libraries/messages.inc.php:101 +#: import.php:403 libraries/messages.inc.php:97 #, php-format msgid "Bookmark %s created" msgstr "Bokmerke %s opprettet" -#: import.php:409 import.php:415 libraries/messages.inc.php:407 +#: import.php:409 import.php:415 libraries/messages.inc.php:403 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Importen er fullført, %d spørringer utført." -#: import.php:424 libraries/messages.inc.php:1107 +#: import.php:424 libraries/messages.inc.php:1103 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -935,11 +935,11 @@ msgstr "" "Skripttidsabrudd passert, hvis du ønsker å fortsette importen kan du " "gjennopplaste fila og importeringen vil fortsette." -#: index.php:190 libraries/messages.inc.php:553 +#: index.php:190 libraries/messages.inc.php:549 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin er mer brukervennlig med en rammekapabel nettleser." -#: js/messages.php:25 libraries/messages.inc.php:155 +#: js/messages.php:25 libraries/messages.inc.php:151 #: server_synchronize.php:345 server_synchronize.php:357 #: server_synchronize.php:373 server_synchronize.php:380 #: server_synchronize.php:739 server_synchronize.php:767 @@ -947,117 +947,117 @@ msgstr "phpMyAdmin er mer brukervennlig med en rammekapabel nettleser." msgid "Click to select" msgstr "Klikk for å velge" -#: js/messages.php:26 libraries/messages.inc.php:156 +#: js/messages.php:26 libraries/messages.inc.php:152 msgid "Click to unselect" msgstr "Klikk for å fjerne valg" #: js/messages.php:27 libraries/import.lib.php:103 -#: libraries/messages.inc.php:550 sql.php:89 +#: libraries/messages.inc.php:546 sql.php:89 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\"-uttrykk er avslått." -#: js/messages.php:30 libraries/messages.inc.php:270 +#: js/messages.php:30 libraries/messages.inc.php:266 #: libraries/mult_submits.inc.php:258 sql.php:188 msgid "Do you really want to " msgstr "Vil du virkelig " -#: js/messages.php:31 libraries/messages.inc.php:271 +#: js/messages.php:31 libraries/messages.inc.php:267 #: libraries/mult_submits.inc.php:258 sql.php:172 msgid "You are about to DESTROY a complete database!" msgstr "Du er i ferd med å SLETTE en komplett database!" -#: js/messages.php:34 libraries/messages.inc.php:94 +#: js/messages.php:34 libraries/messages.inc.php:90 msgid "You are about to DISABLE a BLOB Repository!" msgstr "Du er i ferd med å SLÅ AV et BLOB lager!" -#: js/messages.php:35 libraries/messages.inc.php:91 +#: js/messages.php:35 libraries/messages.inc.php:87 #, php-format msgid "Are you sure you want to disable all BLOB references for database %s?" msgstr "" "Er du sikker på at du ønsker å slå av alle BLOB referanser for databasen %s?" -#: js/messages.php:38 libraries/messages.inc.php:342 +#: js/messages.php:38 libraries/messages.inc.php:338 msgid "Missing value in the form!" msgstr "Manglende verdi i skjemaet!" -#: js/messages.php:39 libraries/messages.inc.php:570 +#: js/messages.php:39 libraries/messages.inc.php:566 msgid "This is not a number!" msgstr "Dette er ikke ett tall!" -#: js/messages.php:42 libraries/messages.inc.php:380 +#: js/messages.php:42 libraries/messages.inc.php:376 msgid "The host name is empty!" msgstr "Vertsnavnet er tomt!" -#: js/messages.php:43 libraries/messages.inc.php:1208 +#: js/messages.php:43 libraries/messages.inc.php:1204 msgid "The user name is empty!" msgstr "Brukernavnet er tomt!" -#: js/messages.php:44 libraries/messages.inc.php:607 +#: js/messages.php:44 libraries/messages.inc.php:603 #: server_privileges.php:1197 user_password.php:70 msgid "The password is empty!" msgstr "Passordet er blankt!" -#: js/messages.php:45 libraries/messages.inc.php:609 +#: js/messages.php:45 libraries/messages.inc.php:605 #: server_privileges.php:1195 user_password.php:73 msgid "The passwords aren't the same!" msgstr "Passordene er ikke like!" -#: js/messages.php:49 libraries/messages.inc.php:123 pmd_general.php:342 +#: js/messages.php:49 libraries/messages.inc.php:119 pmd_general.php:342 #: pmd_general.php:379 msgid "Cancel" msgstr "Avbryt" -#: js/messages.php:52 libraries/messages.inc.php:514 +#: js/messages.php:52 libraries/messages.inc.php:510 msgid "Modifications have been saved" msgstr "Endringene er lagret" -#: js/messages.php:53 libraries/messages.inc.php:741 +#: js/messages.php:53 libraries/messages.inc.php:737 msgid "Relation deleted" msgstr "Relasjon slettet" -#: js/messages.php:54 libraries/messages.inc.php:340 +#: js/messages.php:54 libraries/messages.inc.php:336 msgid "FOREIGN KEY relation added" msgstr "FOREIGN KEY relasjon lagt til" -#: js/messages.php:55 libraries/messages.inc.php:434 +#: js/messages.php:55 libraries/messages.inc.php:430 msgid "Internal relation added" msgstr "Intern relasjon lagt til" -#: js/messages.php:56 libraries/messages.inc.php:299 +#: js/messages.php:56 libraries/messages.inc.php:295 msgid "Error: Relation not added." msgstr "Feil: Relasjon ikke opprettet." -#: js/messages.php:57 libraries/messages.inc.php:300 +#: js/messages.php:57 libraries/messages.inc.php:296 msgid "Error: relation already exists." msgstr "Feil: relasjoner eksisterer allerede." -#: js/messages.php:58 libraries/messages.inc.php:302 +#: js/messages.php:58 libraries/messages.inc.php:298 msgid "Error saving coordinates for Designer." msgstr "Feil oppstod under lagring av Designerkoordinater." -#: js/messages.php:59 libraries/messages.inc.php:351 +#: js/messages.php:59 libraries/messages.inc.php:347 #: libraries/relation.lib.php:107 msgid "General relation features" msgstr "Generelle relasjonsegenskaper" -#: js/messages.php:59 libraries/messages.inc.php:260 +#: js/messages.php:59 libraries/messages.inc.php:256 #: libraries/relation.lib.php:101 libraries/relation.lib.php:108 msgid "Disabled" msgstr "Avslått" -#: js/messages.php:60 libraries/messages.inc.php:850 +#: js/messages.php:60 libraries/messages.inc.php:846 msgid "Select referenced key" msgstr "Velg referert nøkkel" -#: js/messages.php:61 libraries/messages.inc.php:848 +#: js/messages.php:61 libraries/messages.inc.php:844 msgid "Select Foreign Key" msgstr "Velg fremmednøkkel" -#: js/messages.php:62 libraries/messages.inc.php:653 +#: js/messages.php:62 libraries/messages.inc.php:649 msgid "Please select the primary key or a unique key" msgstr "Velg primærnøkkelen eller en unik nøkkel" -#: js/messages.php:63 libraries/messages.inc.php:142 pmd_general.php:77 +#: js/messages.php:63 libraries/messages.inc.php:138 pmd_general.php:77 #: tbl_relation.php:548 msgid "Choose field to display" msgstr "Velg felt for visning" @@ -1073,9 +1073,9 @@ msgid "Prev" msgstr "Forrige" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2332 -#: libraries/common.lib.php:2335 libraries/display_tbl.lib.php:338 -#: libraries/messages.inc.php:543 server_binlog.php:205 server_binlog.php:207 +#: js/messages.php:77 libraries/common.lib.php:2344 +#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: libraries/messages.inc.php:539 server_binlog.php:205 server_binlog.php:207 #: tbl_printview.php:424 tbl_structure.php:802 msgid "Next" msgstr "Neste" @@ -1134,63 +1134,63 @@ msgid "December" msgstr "Desember" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1543 +#: js/messages.php:97 libraries/common.lib.php:1555 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1545 +#: js/messages.php:99 libraries/common.lib.php:1557 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1547 +#: js/messages.php:101 libraries/common.lib.php:1559 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1549 +#: js/messages.php:103 libraries/common.lib.php:1561 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1551 +#: js/messages.php:105 libraries/common.lib.php:1563 msgctxt "Short month name" msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1553 +#: js/messages.php:107 libraries/common.lib.php:1565 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1555 +#: js/messages.php:109 libraries/common.lib.php:1567 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1557 +#: js/messages.php:111 libraries/common.lib.php:1569 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1559 +#: js/messages.php:113 libraries/common.lib.php:1571 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1561 +#: js/messages.php:115 libraries/common.lib.php:1573 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1563 +#: js/messages.php:117 libraries/common.lib.php:1575 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1565 +#: js/messages.php:119 libraries/common.lib.php:1577 msgid "Dec" msgstr "Des" @@ -1223,37 +1223,37 @@ msgid "Saturday" msgstr "Lørdag" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1568 +#: js/messages.php:132 libraries/common.lib.php:1580 msgid "Sun" msgstr "Søn" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1570 +#: js/messages.php:134 libraries/common.lib.php:1582 msgid "Mon" msgstr "Man" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1572 +#: js/messages.php:136 libraries/common.lib.php:1584 msgid "Tue" msgstr "Tir" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1574 +#: js/messages.php:138 libraries/common.lib.php:1586 msgid "Wed" msgstr "Ons" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1576 +#: js/messages.php:140 libraries/common.lib.php:1588 msgid "Thu" msgstr "Tor" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1578 +#: js/messages.php:142 libraries/common.lib.php:1590 msgid "Fri" msgstr "Fre" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1580 +#: js/messages.php:144 libraries/common.lib.php:1592 msgid "Sat" msgstr "Lør" @@ -1309,23 +1309,23 @@ msgstr "Minutt" msgid "Second" msgstr "Sekund" -#: libraries/Config.class.php:1015 libraries/messages.inc.php:338 +#: libraries/Config.class.php:1015 libraries/messages.inc.php:334 msgid "Font size" msgstr "Fontstørrelse" #: libraries/File.class.php:344 libraries/File.class.php:432 #: libraries/File.class.php:569 libraries/File.class.php:708 -#: libraries/messages.inc.php:1201 +#: libraries/messages.inc.php:1197 msgid "Unknown error in file upload." msgstr "Ukjent feil oppstod under filopplastingen." -#: libraries/File.class.php:414 libraries/messages.inc.php:1198 +#: libraries/File.class.php:414 libraries/messages.inc.php:1194 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "Opplastingsfila er større enn upload_max_filesize direktivet definert i php." "ini." -#: libraries/File.class.php:417 libraries/messages.inc.php:1197 +#: libraries/File.class.php:417 libraries/messages.inc.php:1193 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -1333,57 +1333,57 @@ msgstr "" "Opplastingsfila er større enn MAX_FILE_SIZE direktivet som ble spesifisert i " "HTML-skjemaet." -#: libraries/File.class.php:420 libraries/messages.inc.php:1200 +#: libraries/File.class.php:420 libraries/messages.inc.php:1196 msgid "The uploaded file was only partially uploaded." msgstr "Opplastingsfila ble bare delvis opplastet." -#: libraries/File.class.php:423 libraries/messages.inc.php:1199 +#: libraries/File.class.php:423 libraries/messages.inc.php:1195 msgid "Missing a temporary folder." msgstr "Mangler en midlertidig mappe." -#: libraries/File.class.php:426 libraries/messages.inc.php:1195 +#: libraries/File.class.php:426 libraries/messages.inc.php:1191 msgid "Failed to write file to disk." msgstr "Klarte ikke å skrive fila til harddisken." -#: libraries/File.class.php:429 libraries/messages.inc.php:1196 +#: libraries/File.class.php:429 libraries/messages.inc.php:1192 msgid "File upload stopped by extension." msgstr "Filopplasting stoppet av utvidelse." -#: libraries/File.class.php:908 libraries/messages.inc.php:319 +#: libraries/File.class.php:908 libraries/messages.inc.php:315 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "" "Feil oppstod under forsøk på flytting av den opplastede fila, se FAQ 1.11" -#: libraries/Index.class.php:428 libraries/messages.inc.php:554 +#: libraries/Index.class.php:428 libraries/messages.inc.php:550 #: tbl_relation.php:529 msgid "No index defined!" msgstr "Ingen indeks definert!" -#: libraries/Index.class.php:433 libraries/messages.inc.php:411 +#: libraries/Index.class.php:433 libraries/messages.inc.php:407 #: server_databases.php:132 tbl_tracking.php:316 msgid "Indexes" msgstr "Indekser" -#: libraries/Index.class.php:444 libraries/messages.inc.php:1186 +#: libraries/Index.class.php:444 libraries/messages.inc.php:1182 #: 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:475 tbl_tracking.php:322 msgid "Unique" msgstr "Unik" -#: libraries/Index.class.php:445 libraries/messages.inc.php:596 +#: libraries/Index.class.php:445 libraries/messages.inc.php:592 #: tbl_tracking.php:323 msgid "Packed" msgstr "Pakket" -#: libraries/Index.class.php:447 libraries/messages.inc.php:131 +#: libraries/Index.class.php:447 libraries/messages.inc.php:127 #: tbl_tracking.php:325 msgid "Cardinality" msgstr "Kardinalitet" -#: libraries/Index.class.php:450 libraries/messages.inc.php:162 +#: libraries/Index.class.php:450 libraries/messages.inc.php:158 #: tbl_tracking.php:279 tbl_tracking.php:328 msgid "Comment" msgstr "Kommentar" @@ -1391,22 +1391,22 @@ msgstr "Kommentar" #: libraries/Index.class.php:466 libraries/common.lib.php:616 #: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:280 pdf_pages.php:280 +#: libraries/messages.inc.php:276 pdf_pages.php:280 #: setup/frames/index.inc.php:124 setup/lib/messages.inc.php:352 #: tbl_row_action.php:69 msgid "Edit" msgstr "Rediger" -#: libraries/Index.class.php:472 libraries/messages.inc.php:666 +#: libraries/Index.class.php:472 libraries/messages.inc.php:662 msgid "The primary key has been dropped" msgstr "Primærnøkkelen har blitt slettet" -#: libraries/Index.class.php:476 libraries/messages.inc.php:413 +#: libraries/Index.class.php:476 libraries/messages.inc.php:409 #, php-format msgid "Index %s has been dropped" msgstr "Indeksen %s har blitt slettet" -#: libraries/Index.class.php:576 libraries/messages.inc.php:412 +#: libraries/Index.class.php:576 libraries/messages.inc.php:408 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -1415,7 +1415,7 @@ 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/messages.inc.php:218 +#: libraries/List_Database.class.php:431 libraries/messages.inc.php:214 #: libraries/server_links.inc.php:41 server_databases.php:88 #: server_privileges.php:1621 setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" @@ -1442,86 +1442,86 @@ msgid_plural "%1$d rows inserted." msgstr[0] "%1$d rader innsatt." msgstr[1] "%1$d rader innsatt." -#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:549 +#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:545 msgid "" "There is no detailed status information available for this storage engine." msgstr "" "Det er ikke noen detaljert statusinformasjon for denne lagringsmotoren." -#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:291 +#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:287 #, php-format msgid "%s is available on this MySQL server." msgstr "%s er tilgjengelig på denne MySQL theneren." -#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:292 +#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:288 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s har blitt dekativert for denne MySQL tjeneren." -#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:294 +#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:290 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "Denne MySQL tjeneren har ikke støtte for %s lagringsmotoren." -#: libraries/Table.class.php:1019 libraries/messages.inc.php:443 +#: libraries/Table.class.php:1019 libraries/messages.inc.php:439 msgid "Invalid database" msgstr "Ugylding database" -#: libraries/Table.class.php:1033 libraries/messages.inc.php:450 +#: libraries/Table.class.php:1033 libraries/messages.inc.php:446 #: tbl_get_field.php:26 msgid "Invalid table name" msgstr "Ugylding tabellnavn" -#: libraries/Table.class.php:1048 libraries/messages.inc.php:301 +#: libraries/Table.class.php:1048 libraries/messages.inc.php:297 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "Feil oppstond med endring av tabellnavn fra %1$s til %2$s" -#: libraries/Table.class.php:1132 libraries/messages.inc.php:754 +#: libraries/Table.class.php:1132 libraries/messages.inc.php:750 #, php-format msgid "Table %s has been renamed to %s" msgstr "Tabellen %s har fått nytt navn %s" -#: libraries/Theme.class.php:162 libraries/messages.inc.php:1099 +#: libraries/Theme.class.php:162 libraries/messages.inc.php:1095 #, php-format msgid "No valid image path for theme %s found!" msgstr "Ingen gyldig bildesti for stilen %s ble funnet!" -#: libraries/Theme.class.php:384 libraries/messages.inc.php:1097 +#: libraries/Theme.class.php:384 libraries/messages.inc.php:1093 msgid "No preview available." msgstr "Ingen forhandsvisning tilgjengelig." -#: libraries/Theme.class.php:387 libraries/messages.inc.php:1089 +#: libraries/Theme.class.php:387 libraries/messages.inc.php:1085 msgid "take it" msgstr "velg" -#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1096 +#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1092 #, php-format msgid "Default theme %s not found!" msgstr "Standard stil %s ble ikke funnet!" -#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1098 +#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1094 #, php-format msgid "Theme %s not found!" msgstr "Stilen %s ble ikke funnet!" -#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1100 +#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1096 #, php-format msgid "Theme path not found for theme %s!" msgstr "Stilsti ble ikke funnet for stilen %s!" -#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1101 +#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1097 #: test/theme.php:161 themes.php:21 themes.php:41 msgid "Theme / Style" msgstr "Tema / Stil" -#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:172 +#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:168 msgid "Cannot connect: invalid settings." msgstr "Kan ikke koble til: ugyldige innstillinger." #: libraries/auth/config.auth.lib.php:92 #: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65 -#: libraries/messages.inc.php:1238 test/theme.php:152 +#: libraries/messages.inc.php:1234 test/theme.php:152 #, php-format msgid "Welcome to %s" msgstr "Velkommen til %s" @@ -1547,105 +1547,105 @@ msgstr "" "passord (password) i config.inc.php og sjekke at de tilsvarer den " "informasjonen du fikk fra MySQL-server administratoren." -#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:488 +#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:484 msgid "Log in" msgstr "Logg inn" #: libraries/auth/cookie.auth.lib.php:246 -#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:659 +#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:655 #: libraries/navigation_header.inc.php:93 #: libraries/navigation_header.inc.php:95 msgid "phpMyAdmin documentation" msgstr "phpMyAdmin-Dokumentasjon" #: libraries/auth/cookie.auth.lib.php:258 -#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:492 +#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:488 msgid "You can enter hostname/IP address and port separated by space." msgstr "Du kan skrive vertsnavn/IP adresse og port separert med mellomrom." -#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:493 +#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:489 msgid "Server:" msgstr "Tjener" -#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:494 +#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:490 msgid "Username:" msgstr "Brukernavn:" -#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:491 +#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:487 msgid "Password:" msgstr "Passord:" -#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:854 +#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:850 msgid "Server Choice" msgstr "Tjenervalg" #: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 -#: libraries/messages.inc.php:177 +#: libraries/messages.inc.php:173 msgid "Cookies must be enabled past this point." msgstr "Cookies må være slått på forbi dette punkt." #: libraries/auth/cookie.auth.lib.php:671 -#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:489 +#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:485 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" "Innlogging uten passord er forbudt av konfigurasjonen (see AllowNoPassword)" #: libraries/auth/cookie.auth.lib.php:675 -#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:544 +#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:540 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "Ingen aktivitet på %s sekunder eller mer, du må logge inn på nytt" #: libraries/auth/cookie.auth.lib.php:685 #: libraries/auth/cookie.auth.lib.php:687 -#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:126 +#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:122 msgid "Cannot log in to the MySQL server" msgstr "Kan ikke logge inn til MySQL tjeneren" -#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1245 +#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1241 msgid "Wrong username/password. Access denied." msgstr "Ugyldig brukernavn/passord. Ingen tilgang." #: libraries/auth/swekey/swekey.auth.lib.php:118 -#: libraries/messages.inc.php:1057 +#: libraries/messages.inc.php:1053 #, php-format msgid "File %s does not contain any key id" msgstr "Fila %s inneholder ingen nøkkel id" #: libraries/auth/swekey/swekey.auth.lib.php:157 #: libraries/auth/swekey/swekey.auth.lib.php:180 -#: libraries/messages.inc.php:1056 +#: libraries/messages.inc.php:1052 msgid "Hardware authentication failed" msgstr "Maskinvaregodkjenning mislyktes" #: libraries/auth/swekey/swekey.auth.lib.php:166 -#: libraries/messages.inc.php:1058 +#: libraries/messages.inc.php:1054 msgid "No valid authentication key plugged" msgstr "Ingen gyldig autentiseringsnøkkel plugget" #: libraries/auth/swekey/swekey.auth.lib.php:202 -#: libraries/messages.inc.php:1055 +#: libraries/messages.inc.php:1051 msgid "Authenticating..." msgstr "Autentiserer..." -#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1230 +#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1226 msgid "View image" msgstr "Vis bilde" -#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:652 +#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:648 msgid "Play audio" msgstr "Spill lyd" -#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1232 +#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1228 msgid "View video" msgstr "Vis video" -#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:269 +#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:265 msgid "Download file" msgstr "Last ned fil" -#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:128 +#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:124 msgid "" "Couldn't load the iconv or recode extension needed for charset conversion. " "Either configure PHP to enable these extensions or disable charset " @@ -1657,7 +1657,7 @@ msgstr "" #: libraries/charset_conversion.lib.php:79 #: libraries/charset_conversion.lib.php:90 -#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:130 +#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:126 msgid "" "Couldn't use the iconv, libiconv, or recode_string functions, although the " "necessary extensions appear to be loaded. Check your PHP configuration." @@ -1665,7 +1665,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/messages.inc.php:170 +#: libraries/common.inc.php:583 libraries/messages.inc.php:166 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!" @@ -1698,22 +1698,22 @@ msgstr "" msgid "Invalid server index: %s" msgstr "Ugyldig tjenerindeks: \"%s\"" -#: libraries/common.inc.php:636 libraries/messages.inc.php:448 +#: libraries/common.inc.php:636 libraries/messages.inc.php:444 #, 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/messages.inc.php:856 libraries/select_server.lib.php:41 +#: libraries/messages.inc.php:852 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/messages.inc.php:437 +#: libraries/common.inc.php:823 libraries/messages.inc.php:433 msgid "Invalid authentication method set in configuration:" msgstr "Ugyldig autentiseringsmetode satt opp i konfigureringen:" -#: libraries/common.lib.php:147 libraries/messages.inc.php:499 +#: libraries/common.lib.php:147 libraries/messages.inc.php:495 #, php-format msgid "Max: %s%s" msgstr "Maksimum størrelse: %s%s" @@ -1733,7 +1733,7 @@ msgstr "en" #: libraries/common.lib.php:428 libraries/common.lib.php:430 #: libraries/common.lib.php:432 libraries/common.lib.php:448 #: libraries/common.lib.php:450 libraries/dbg/setup.php:25 -#: libraries/display_export.lib.php:164 libraries/messages.inc.php:267 +#: libraries/display_export.lib.php:164 libraries/messages.inc.php:263 #: libraries/relation.lib.php:97 libraries/sql_query_form.lib.php:451 #: libraries/sql_query_form.lib.php:454 main.php:229 pdf_pages.php:37 #: pdf_pages.php:43 pdf_pages.php:49 pdf_pages.php:54 @@ -1743,55 +1743,55 @@ msgstr "Dokumentasjon" #: libraries/common.lib.php:581 libraries/core.lib.php:234 #: libraries/core.lib.php:263 libraries/import.lib.php:134 -#: libraries/messages.inc.php:297 pdf_schema.php:32 pdf_schema.php:232 +#: libraries/messages.inc.php:293 pdf_schema.php:32 pdf_schema.php:232 #: tbl_change.php:1027 tbl_operations.php:213 tbl_relation.php:290 #: view_operations.php:62 msgid "Error" msgstr "Feil" #: libraries/common.lib.php:595 libraries/header_printview.inc.php:61 -#: libraries/messages.inc.php:1023 server_processlist.php:60 +#: libraries/messages.inc.php:1019 server_processlist.php:60 #: server_status.php:247 msgid "SQL query" msgstr "SQL-spørring" -#: libraries/common.lib.php:634 libraries/messages.inc.php:538 +#: libraries/common.lib.php:634 libraries/messages.inc.php:534 msgid "MySQL said: " msgstr "MySQL sa: " -#: libraries/common.lib.php:667 libraries/messages.inc.php:76 +#: libraries/common.lib.php:667 libraries/messages.inc.php:72 #: pdf_schema.php:241 user_password.php:115 msgid "Back" msgstr "Tilbake" -#: libraries/common.lib.php:1177 libraries/messages.inc.php:309 +#: libraries/common.lib.php:1177 libraries/messages.inc.php:305 #: setup/lib/messages.inc.php:353 msgid "Explain SQL" msgstr "Forklar SQL" -#: libraries/common.lib.php:1180 libraries/messages.inc.php:551 +#: libraries/common.lib.php:1180 libraries/messages.inc.php:547 msgid "Skip Explain SQL" msgstr "Ikke forklar SQL" -#: libraries/common.lib.php:1212 libraries/messages.inc.php:563 +#: libraries/common.lib.php:1212 libraries/messages.inc.php:559 msgid "Without PHP Code" msgstr "uten PHP kode" -#: libraries/common.lib.php:1215 libraries/messages.inc.php:649 +#: libraries/common.lib.php:1215 libraries/messages.inc.php:645 #: setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "Lag PHP kode" -#: libraries/common.lib.php:1233 libraries/messages.inc.php:737 +#: libraries/common.lib.php:1233 libraries/messages.inc.php:733 #: server_status.php:341 setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "Oppdater" -#: libraries/common.lib.php:1242 libraries/messages.inc.php:575 +#: libraries/common.lib.php:1242 libraries/messages.inc.php:571 msgid "Skip Validate SQL" msgstr "Ikke teste SQL" -#: libraries/common.lib.php:1245 libraries/messages.inc.php:1220 +#: libraries/common.lib.php:1245 libraries/messages.inc.php:1216 #: setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "Test SQL" @@ -1805,11 +1805,11 @@ msgid "Inline" msgstr "Inline" #: libraries/common.lib.php:1332 libraries/common.lib.php:1347 -#: libraries/messages.inc.php:713 +#: libraries/messages.inc.php:709 msgid "Profiling" msgstr "Profilering" -#: libraries/common.lib.php:1351 libraries/messages.inc.php:1108 +#: libraries/common.lib.php:1351 libraries/messages.inc.php:1104 #: libraries/tbl_triggers.lib.php:28 server_processlist.php:58 msgid "Time" msgstr "Tid" @@ -1843,46 +1843,56 @@ msgstr "PiB" msgid "EiB" msgstr "EiB" +#. l10n: Thousands separator +#: libraries/common.lib.php:1417 +msgid "," +msgstr "." + +#. l10n: Decimal separator +#: libraries/common.lib.php:1419 +msgid "." +msgstr "," + #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1584 +#: libraries/common.lib.php:1596 #: libraries/transformations/text_plain__dateformat.inc.php:28 msgid "%B %d, %Y at %I:%M %p" msgstr "%d. %B, %Y %H:%M %p" -#: libraries/common.lib.php:1886 +#: libraries/common.lib.php:1898 #, 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:2301 libraries/common.lib.php:2304 -#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:664 +#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:660 #: server_status.php:608 msgid "Begin" msgstr "Start" -#: libraries/common.lib.php:2302 libraries/common.lib.php:2305 -#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:665 +#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:661 #: server_binlog.php:168 server_binlog.php:170 msgid "Previous" msgstr "Forrige" -#: libraries/common.lib.php:2333 libraries/common.lib.php:2336 -#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:289 +#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:285 msgid "End" msgstr "Slutt" -#: libraries/common.lib.php:2409 libraries/messages.inc.php:455 +#: libraries/common.lib.php:2421 libraries/messages.inc.php:451 #, php-format msgid "Jump to database "%s"." msgstr "Hopp til databasen "%s"." -#: libraries/common.lib.php:2429 libraries/messages.inc.php:461 +#: libraries/common.lib.php:2441 libraries/messages.inc.php:457 #, 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/core.lib.php:286 libraries/dbg/setup.php:22 -#: libraries/messages.inc.php:127 +#: libraries/messages.inc.php:123 #, php-format msgid "" "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " @@ -1891,116 +1901,116 @@ msgstr "" "Kan ikke starte %s tillegget,
vennligst kontroller PHP-konfigurasjonen" #: libraries/db_events.inc.php:20 libraries/db_events.inc.php:22 -#: libraries/export/sql.php:415 libraries/messages.inc.php:306 +#: libraries/export/sql.php:415 libraries/messages.inc.php:302 msgid "Events" msgstr "Hendelser" #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 -#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:541 +#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:537 #: libraries/tbl_triggers.lib.php:27 setup/frames/index.inc.php:112 msgid "Name" msgstr "Navn" -#: libraries/db_links.inc.php:45 libraries/messages.inc.php:216 +#: libraries/db_links.inc.php:45 libraries/messages.inc.php:212 #, php-format msgid "Database %s has been dropped." msgstr "Databasen %s har blitt slettet" #: libraries/db_links.inc.php:57 libraries/db_links.inc.php:58 -#: libraries/db_links.inc.php:59 libraries/messages.inc.php:234 +#: libraries/db_links.inc.php:59 libraries/messages.inc.php:230 msgid "Database seems to be empty!" msgstr "Databasen ser ut til å være tom!" -#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1025 +#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1021 #: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60 #: querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1152 +#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1148 #: libraries/tbl_links.inc.php:69 msgid "Tracking" msgstr "Overvåkning" -#: libraries/db_links.inc.php:86 libraries/messages.inc.php:719 +#: libraries/db_links.inc.php:86 libraries/messages.inc.php:715 msgid "Query" msgstr "Spørring ved eksempel (Query by Example)" -#: libraries/db_links.inc.php:91 libraries/messages.inc.php:253 +#: libraries/db_links.inc.php:91 libraries/messages.inc.php:249 msgid "Designer" msgstr "Designer" -#: libraries/db_links.inc.php:98 libraries/messages.inc.php:397 +#: libraries/db_links.inc.php:98 libraries/messages.inc.php:393 #: libraries/server_links.inc.php:88 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:104 libraries/messages.inc.php:587 +#: libraries/db_links.inc.php:104 libraries/messages.inc.php:583 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" msgstr "Operasjoner" -#: libraries/db_links.inc.php:111 libraries/messages.inc.php:709 +#: libraries/db_links.inc.php:111 libraries/messages.inc.php:705 #: libraries/server_links.inc.php:66 server_privileges.php:72 #: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117 msgid "Privileges" msgstr "Privilegier" #: libraries/db_routines.inc.php:30 libraries/db_routines.inc.php:32 -#: libraries/messages.inc.php:812 +#: libraries/messages.inc.php:808 msgid "Routines" msgstr "Rutiner" -#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:811 +#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:807 msgid "Return type" msgstr "Returtype" #: libraries/db_structure.lib.php:57 libraries/display_tbl.lib.php:1848 -#: libraries/messages.inc.php:65 +#: libraries/messages.inc.php:61 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "Kan være unøyaktig. Se FAQ 3.11" -#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:593 +#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:589 #: server_databases.php:142 tbl_printview.php:336 tbl_structure.php:683 msgid "Overhead" msgstr "Overheng" #: libraries/dbi/mysql.dbi.lib.php:112 libraries/dbi/mysqli.dbi.lib.php:124 -#: libraries/messages.inc.php:176 +#: libraries/messages.inc.php:172 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Tilkoblingen for kontrollbrukeren som definert i din konfigurasjon feilet." #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 -#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:855 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:851 msgid "The server is not responding" msgstr "Tjeneren svarer ikke" #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:1010 +#: libraries/messages.inc.php:1006 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 libraries/messages.inc.php:255 +#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:251 #: tbl_structure.php:609 msgid "Details..." msgstr "Detaljer..." -#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:143 +#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:139 #: main.php:91 user_password.php:111 user_password.php:129 msgid "Change password" msgstr "Endre passord" -#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:561 +#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:557 #: libraries/replication_gui.lib.php:341 server_privileges.php:768 msgid "No Password" msgstr "Intet passord" -#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:610 +#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:606 #: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60 #: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335 #: libraries/replication_gui.lib.php:345 server_privileges.php:757 @@ -2009,13 +2019,13 @@ msgstr "Intet passord" msgid "Password" msgstr "Passord" -#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:806 +#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:802 #: libraries/replication_gui.lib.php:349 libraries/replication_gui.lib.php:352 #: server_privileges.php:776 server_privileges.php:779 msgid "Re-type" msgstr "Gjenta" -#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:608 +#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:604 msgid "Password Hashing" msgstr "Passordnøkling" @@ -2023,89 +2033,89 @@ msgstr "Passordnøkling" msgid "MySQL 4.0 compatible" msgstr "MySQL 4.0 kompatibel" -#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:353 +#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:349 #: libraries/replication_gui.lib.php:356 server_privileges.php:783 msgid "Generate Password" msgstr "Generer passord" -#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:352 +#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:348 #: libraries/replication_gui.lib.php:359 server_privileges.php:786 msgid "Generate" msgstr "Generer" #: libraries/display_create_database.lib.php:22 -#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:189 +#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:185 msgid "Create new database" msgstr "Opprett ny database" -#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:185 +#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:181 msgid "Create" msgstr "Opprett" -#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:564 +#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:560 #: server_privileges.php:74 server_privileges.php:1388 #: server_replication.php:35 msgid "No Privileges" msgstr "Ingen privilegier" -#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:445 +#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:441 msgid "Table must have at least one field." msgstr "Tabellen må ha minst ett felt." -#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:190 +#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:186 #, php-format msgid "Create table on database %s" msgstr "Opprett ny tabell i database %s" -#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:577 +#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:573 msgid "Number of fields" msgstr "Antall felter" -#: libraries/display_export.lib.php:42 libraries/messages.inc.php:124 +#: libraries/display_export.lib.php:42 libraries/messages.inc.php:120 msgid "Could not load export plugins, please check your installation!" msgstr "Kunne ikke laste eksporttillegg, kontroller din innstallasjon!" -#: libraries/display_export.lib.php:107 libraries/messages.inc.php:277 +#: libraries/display_export.lib.php:107 libraries/messages.inc.php:273 #, php-format msgid "Dump %s row(s) starting at record # %s" msgstr "Dumpe %s rader fra rad %s." -#: libraries/display_export.lib.php:115 libraries/messages.inc.php:274 +#: libraries/display_export.lib.php:115 libraries/messages.inc.php:270 msgid "Dump all rows" msgstr "Dump alle rader" -#: libraries/display_export.lib.php:125 libraries/messages.inc.php:852 +#: libraries/display_export.lib.php:125 libraries/messages.inc.php:848 #: setup/lib/messages.inc.php:82 msgid "Save as file" msgstr "Lagre som fil" -#: libraries/display_export.lib.php:134 libraries/messages.inc.php:828 +#: libraries/display_export.lib.php:134 libraries/messages.inc.php:824 #, php-format msgid "Save on server in %s directory" msgstr "Lagre på server i %s katalogen" -#: libraries/display_export.lib.php:142 libraries/messages.inc.php:594 +#: libraries/display_export.lib.php:142 libraries/messages.inc.php:590 #: setup/lib/messages.inc.php:90 msgid "Overwrite existing file(s)" msgstr "Skriv over eksisterende filer" -#: libraries/display_export.lib.php:148 libraries/messages.inc.php:330 +#: libraries/display_export.lib.php:148 libraries/messages.inc.php:326 msgid "File name template" msgstr "Filnavnsmal" -#: libraries/display_export.lib.php:152 libraries/messages.inc.php:327 +#: libraries/display_export.lib.php:152 libraries/messages.inc.php:323 msgid "server name" msgstr "tjenernavn" -#: libraries/display_export.lib.php:155 libraries/messages.inc.php:326 +#: libraries/display_export.lib.php:155 libraries/messages.inc.php:322 msgid "database name" msgstr "databasenavn" -#: libraries/display_export.lib.php:158 libraries/messages.inc.php:328 +#: libraries/display_export.lib.php:158 libraries/messages.inc.php:324 msgid "table name" msgstr "tabellnavn" -#: libraries/display_export.lib.php:162 libraries/messages.inc.php:329 +#: libraries/display_export.lib.php:162 libraries/messages.inc.php:325 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2116,24 +2126,24 @@ msgstr "" "tidformateringsstrenger. I tillegg vil følgende transformasjoner skje: %3$s. " "All annen tekst beholdes som den er." -#: libraries/display_export.lib.php:202 libraries/messages.inc.php:331 +#: libraries/display_export.lib.php:202 libraries/messages.inc.php:327 msgid "remember template" msgstr "husk malen" #: libraries/display_export.lib.php:210 libraries/display_import.lib.php:178 -#: libraries/display_import.lib.php:191 libraries/messages.inc.php:145 +#: libraries/display_import.lib.php:191 libraries/messages.inc.php:141 #: libraries/sql_query_form.lib.php:549 msgid "Character set of the file:" msgstr "Filens tegnsett:" -#: libraries/display_export.lib.php:235 libraries/messages.inc.php:166 +#: libraries/display_export.lib.php:235 libraries/messages.inc.php:162 #: setup/lib/messages.inc.php:84 msgid "Compression" 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/messages.inc.php:558 +#: libraries/export/sql.php:868 libraries/messages.inc.php:554 #: libraries/tbl_properties.inc.php:575 server_privileges.php:1836 #: server_processlist.php:75 msgid "None" @@ -2151,11 +2161,11 @@ msgstr "Komprimert (gz)" msgid "bzipped" msgstr "Komprimert (bz2)" -#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1018 +#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1014 msgid "SQL compatibility mode" msgstr "SQL kompatibilitetsmodus" -#: libraries/display_import.lib.php:67 libraries/messages.inc.php:398 +#: libraries/display_import.lib.php:67 libraries/messages.inc.php:394 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " @@ -2165,50 +2175,50 @@ msgstr "" "dette er en kjent feil i webkit-baserte (Safari, Google Chrome, Arora etc.) " "nettlesere." -#: libraries/display_import.lib.php:77 libraries/messages.inc.php:406 +#: libraries/display_import.lib.php:77 libraries/messages.inc.php:402 msgid "The file is being processed, please be patient." msgstr "Fila er under behandling, venligst vent." -#: libraries/display_import.lib.php:99 libraries/messages.inc.php:408 +#: libraries/display_import.lib.php:99 libraries/messages.inc.php:404 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." msgstr "" "Vær tålmodig, fila lastes opp. Detaljer om opplastingen er ikke tilgjengelig." -#: libraries/display_import.lib.php:126 libraries/messages.inc.php:333 +#: libraries/display_import.lib.php:126 libraries/messages.inc.php:329 msgid "File to import" msgstr "Fil for importering" -#: libraries/display_import.lib.php:137 libraries/messages.inc.php:486 +#: libraries/display_import.lib.php:137 libraries/messages.inc.php:482 #: libraries/sql_query_form.lib.php:524 msgid "Location of the text file" msgstr "Plassering av filen" -#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1203 +#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1199 msgid "File uploads are not allowed on this server." msgstr "Filopplastinger er ikke tillatt på denne tjeneren." -#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1235 +#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1231 #: libraries/sql_query_form.lib.php:533 tbl_change.php:1028 msgid "The directory you set for upload work cannot be reached" msgstr "Katalogen du anga for opplasting kan ikke nåes" -#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1236 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1232 #: libraries/sql_query_form.lib.php:536 tbl_change.php:1031 msgid "web server upload directory" msgstr "webtjener opplastingskatalog" -#: libraries/display_import.lib.php:212 libraries/messages.inc.php:167 +#: libraries/display_import.lib.php:212 libraries/messages.inc.php:163 #, php-format msgid "Imported file compression will be automatically detected from: %s" msgstr "Komprimering av importerte filer vil bli automatisk oppdaget fra: %s" -#: libraries/display_import.lib.php:219 libraries/messages.inc.php:600 +#: libraries/display_import.lib.php:219 libraries/messages.inc.php:596 msgid "Partial import" msgstr "Delvis importering" -#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1105 +#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1101 #, php-format msgid "" "Previous import timed out, after resubmitting will continue from position %d." @@ -2216,7 +2226,7 @@ msgstr "" "Forrige import ble tidsavbrutt, vil fortsette fra posisjon %d etter " "gjenninnsending." -#: libraries/display_import.lib.php:232 libraries/messages.inc.php:51 +#: libraries/display_import.lib.php:232 libraries/messages.inc.php:47 msgid "" "Allow the interruption of an import in case the script detects it is close " "to the PHP timeout limit. This might be good way to import large files, " @@ -2226,177 +2236,177 @@ msgstr "" "før det når tidsavbrudd. Dette kan være en god måte å importere store filer " "på, men det kan knekke transaksjoner." -#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1004 +#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1000 #: setup/lib/messages.inc.php:161 msgid "Number of records (queries) to skip from start" msgstr "Antall poster(spørringer) å hoppe over fra start" -#: libraries/display_import.lib.php:255 libraries/messages.inc.php:396 +#: libraries/display_import.lib.php:255 libraries/messages.inc.php:392 #: setup/lib/messages.inc.php:160 msgid "Format of imported file" msgstr "Importfilformat" #: libraries/display_select_lang.lib.php:45 -#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:465 +#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:461 #: setup/frames/index.inc.php:70 msgid "Language" msgstr "Språk" -#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:447 +#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:443 #, php-format msgid "%d is not valid row number." msgstr "%d er ikke et gyldig radnummer." -#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:814 +#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:810 msgid "row(s) starting from record #" msgstr "rader fra" -#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:817 +#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:813 msgid "horizontal" msgstr "vannrett" -#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:816 +#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:812 msgid "horizontal (rotated headers)" msgstr "horisontal (roterte overskrifter)" -#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:819 +#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:815 msgid "vertical" msgstr "loddrett" -#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:818 +#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:814 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "i %s modus og gjenta headers etter %s celler" -#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:495 +#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:491 msgid "This operation could take a long time. Proceed anyway?" msgstr "Denne operasjonen kan ta lang tid. Ønsker du å fortsette?" -#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1012 +#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1008 msgid "Sort by key" msgstr "Sorter etter nøkkel" #: libraries/display_tbl.lib.php:555 libraries/import.lib.php:1082 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:591 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:587 #: tbl_select.php:267 tbl_structure.php:754 msgid "Options" msgstr "Innstillinger" #: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:570 -#: libraries/messages.inc.php:601 +#: libraries/messages.inc.php:597 msgid "Partial Texts" msgstr "Delvis tekst" #: libraries/display_tbl.lib.php:561 libraries/display_tbl.lib.php:574 -#: libraries/messages.inc.php:346 +#: libraries/messages.inc.php:342 msgid "Full Texts" msgstr "Hele strenger" -#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:739 +#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:735 msgid "Relational key" msgstr "Relasjonsnøkkel" -#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:738 +#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:734 msgid "Relational display field" msgstr "Relasjonsvisningsfelt" -#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:872 +#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:868 msgid "Show binary contents" msgstr "Vis binært innhold" -#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:873 +#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:869 msgid "Show BLOB contents" msgstr "Vis BLOB innhold" -#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:871 +#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:867 msgid "Show binary contents as HEX" msgstr "Vis binært innhold som HEX" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:375 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:371 #: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320 msgid "Hide" msgstr "Skjul" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:508 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:504 #: libraries/tbl_properties.inc.php:144 transformation_overview.php:47 msgid "Browser transformation" msgstr "Nettvisertransformasjon" #: libraries/display_tbl.lib.php:1126 libraries/display_tbl.lib.php:1130 -#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:308 +#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:304 msgid "Execute bookmarked query" msgstr "Utfør lagret spørring" #: libraries/display_tbl.lib.php:1145 libraries/display_tbl.lib.php:1157 -#: libraries/messages.inc.php:244 +#: libraries/messages.inc.php:240 msgid "The row has been deleted" msgstr "Raden er slettet" #: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056 -#: libraries/messages.inc.php:460 server_processlist.php:71 +#: libraries/messages.inc.php:456 server_processlist.php:71 #: tbl_row_action.php:64 msgid "Kill" msgstr "Avslutt" -#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:849 +#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:845 msgid "in query" msgstr "i spørring" -#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:881 +#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:877 msgid "Showing rows" msgstr "Viser rader " -#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1113 +#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1109 msgid "total" msgstr "totalt" -#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:727 +#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:723 #: sql.php:524 #, php-format msgid "Query took %01.4f sec" msgstr "Spørring tok %01.4f sek" -#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:135 +#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:131 #: 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:471 msgid "Change" msgstr "Endre" -#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:724 +#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:720 msgid "Query results operations" msgstr "Spørringsresultatshandlinger" -#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:671 +#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:667 msgid "Print view (with full texts)" msgstr "Forhåndsvisning (med all tekst)" -#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:482 +#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:478 msgid "Link not found" msgstr "Link ikke funnet" -#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1224 +#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1220 #: main.php:228 msgid "Version information" msgstr "Versionsinformasjon" -#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:423 +#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:419 msgid "Data home directory" msgstr "Datalagringsmappe" -#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:424 +#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:420 msgid "The common part of the directory path for all InnoDB data files." msgstr "Felles del av filsti for alle InnoDB datafiler." -#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:422 +#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:418 msgid "Data files" msgstr "Datafiler" -#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:418 +#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:414 msgid "Autoextend increment" msgstr "Autoforstørrende økning" -#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:419 +#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:415 msgid "" " The increment size for extending the size of an autoextending tablespace " "when it becomes full." @@ -2404,11 +2414,11 @@ msgstr "" "Økningen som brukes for å forstørre et autoforstørrende tabellager når den " "blir full." -#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:420 +#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:416 msgid "Buffer pool size" msgstr "Mellomlagerstørrelse" -#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:421 +#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:417 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." @@ -2416,87 +2426,87 @@ msgstr "" "størrelsen på datalageret InnoDB bruker for å mellomlagre data og indekser " "for sine tabeller." -#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:112 +#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:108 msgid "Buffer Pool" msgstr "Mellomlager" -#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:426 +#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:422 #: server_status.php:306 msgid "InnoDB Status" msgstr "InnoDB status" -#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:113 +#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:109 msgid "Buffer Pool Usage" msgstr "Mellomlagerbruk" -#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1114 +#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1110 #: server_databases.php:137 server_databases.php:305 server_status.php:414 #: server_status.php:475 server_status.php:496 tbl_printview.php:351 #: tbl_structure.php:697 msgid "Total" msgstr "Totalt" -#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:425 +#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:421 msgid "pages" msgstr "sider" -#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:343 +#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:339 msgid "Free pages" msgstr "Ledige sider" -#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:259 +#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:255 msgid "Dirty pages" msgstr "Endrede sider" -#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:230 +#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:226 msgid "Pages containing data" msgstr "Sider som inneholder data" -#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:598 +#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:594 msgid "Pages to be flushed" msgstr "Sider som skal tømmes" -#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:119 +#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:115 msgid "Busy pages" msgstr "Opptatte sider" -#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:467 +#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:463 msgid "Latched pages" msgstr "Tilknyttede sider" -#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:111 +#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:107 msgid "Buffer Pool Activity" msgstr "Mellomlageraktivitet" -#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:731 +#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:727 msgid "Read requests" msgstr "Leseforespørsler" -#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1244 +#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1240 msgid "Write requests" msgstr "Skriveforespørsler" -#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:115 +#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:111 msgid "Read misses" msgstr "Lesebommer" -#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:117 +#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:113 msgid "Write waits" msgstr "Skriveforsinkelser" -#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:114 +#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:110 msgid "Read misses in %" msgstr "Lesebommer i %" -#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:116 +#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:112 msgid "Write waits in %" msgstr "Skriveforsinkelser i %" -#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:522 +#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:518 msgid "Data pointer size" msgstr "Datapekerstørrelse" -#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:523 +#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:519 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." @@ -2504,11 +2514,11 @@ msgstr "" "Standard pekerstørrelse i bytes, som brukes av CREATE TABLE for MyISAM " "tabeller når ingen MAX_ROWS innstillinger er spesifisert." -#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:528 +#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:524 msgid "Automatic recovery mode" msgstr "Automatisk gjennopprettignsmodus" -#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:529 +#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:525 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." @@ -2516,11 +2526,11 @@ msgstr "" "Modusen for automatisk gjennoppretting av MyISAM tabeller som har kræsjet, " "konfigurert via --myisam-recover tjeneroppstartsinnstillingen." -#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:527 +#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:523 msgid "Maximum size for temporary sort files" msgstr "Maksimum størrelse for midlertidige sorteringsfiler" -#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:526 +#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:522 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " @@ -2530,11 +2540,11 @@ msgstr "" "den gjennoppretter en MyISAM indeks (med spørringene REPAIR TABLE, ALTER " "TABLE, eller LOAD DATA INFILE)." -#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:525 +#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:521 msgid "Maximum size for temporary files on index creation" msgstr "Maksimum størrelse for midlertidige filer under indeksopprettelse" -#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:524 +#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:520 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " @@ -2544,11 +2554,11 @@ msgstr "" "bli større enn å bruke nøkkelmellomlager med størrelsen spesifisert her, så " "bruk nøkkellagermetoden." -#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:531 +#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:527 msgid "Repair threads" msgstr "Reparer tråder" -#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:530 +#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:526 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." @@ -2556,11 +2566,11 @@ msgstr "" "Hvis denne verdien er større enn 1 så blir MyISAM tabellindekser opprettet " "parallelt (hver indeks i sin egen tråd) under REPAIR av sorteringsprosessen." -#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:533 +#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:529 msgid "Sort buffer size" msgstr "Sorteringsbufferstørrelse" -#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:532 +#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:528 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." @@ -2568,11 +2578,11 @@ msgstr "" "Bufferet som brukes ved sortering av MyISAM indekser under en REPAIR TABLE " "eller når indekser blir opprettet med CREATE INDEX eller ALTER TABLE." -#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:620 +#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:616 msgid "Index cache size" msgstr "Indeksmellomlagerstørrelse" -#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:619 +#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:615 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." @@ -2580,11 +2590,11 @@ msgstr "" "Dette er mengden minne tilordnet indeksmellomlageret. Standard verdi er " "32MB. Minnet tilordnet her brukes kun for mellomlagring av indekssider." -#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:630 +#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:626 msgid "Record cache size" msgstr "Radmellomlagerstørrelse" -#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:629 +#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:625 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " @@ -2594,11 +2604,11 @@ msgstr "" "Standard verdi er 32MB. Dette minnet blir brukt til å mellomlagre endringer " "til \"handle data\" (.xtd) og radpeker (.xtr) filer." -#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:624 +#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:620 msgid "Log cache size" msgstr "Loggmellomlagerstørrelse" -#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:623 +#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:619 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." @@ -2606,11 +2616,11 @@ msgstr "" "Mengden minne tilordnet transaksjonsloggmellomlageret brukt til å " "mellomlagre transakjsonsloggdata. Standard verdi er 16MB." -#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:628 +#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:624 msgid "Log file threshold" msgstr "Loggfilterskel" -#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:627 +#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:623 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." @@ -2618,11 +2628,11 @@ msgstr "" "Størrelsen til en transaksjonslogg før rollover, og en ny logg blir " "opprettet. Standard verdi er 16MB." -#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:634 +#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:630 msgid "Transaction buffer size" msgstr "Transaksjonsbufferstørrelse" -#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:633 +#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:629 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." @@ -2630,11 +2640,11 @@ msgstr "" "Størrelsen til det globale transaksjonsloggmellomlageret (databasemotoren " "tilordner 2 mellomlager med denne størrelsen). Standard verdi er 1MB." -#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:611 +#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:607 msgid "Checkpoint frequency" msgstr "Kontrollpunktfrekvens" -#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:612 +#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:608 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." @@ -2642,11 +2652,11 @@ msgstr "" "Mengden data skrevet til transaksjonsloggen før en punktsjekk blir utført. " "Standard verdi er 24MB." -#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:615 +#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:611 msgid "Data log threshold" msgstr "Dataloggterskel" -#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:616 +#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:612 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -2658,11 +2668,11 @@ msgstr "" "verdien av denne variabelen kan økes for å øke den totale mengden data som " "kan lagres i databasen." -#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:618 +#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:614 msgid "Garbage threshold" msgstr "Søppelterskel" -#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:617 +#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:613 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." @@ -2670,11 +2680,11 @@ msgstr "" "Prosentandelen søppel på en dataloggfil før den komprimeres. Dette er en " "verdi mellom 1 og 99. Standard er 50." -#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:622 +#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:618 msgid "Log buffer size" msgstr "Loggbufferstørrelse" -#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:621 +#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:617 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " @@ -2684,27 +2694,27 @@ msgstr "" "verdi er 256MB. Databasemotoren tillordner ett buffer per tråd, men bare " "hvis tråden er påkrevd å skrive en datalogg." -#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:613 +#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:609 msgid "Data file grow size" msgstr "Datafil vekststørrelse" -#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:614 +#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:610 msgid "The grow size of the handle data (.xtd) files." msgstr "Vekststørrelsen til \"handle data\" filene (.xtd)." -#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:632 +#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:628 msgid "Row file grow size" msgstr "Radfil vekststørrelse" -#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:631 +#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:627 msgid "The grow size of the row pointer (.xtr) files." msgstr "Vekststørrelsen til radpekerfilene (.xtr)." -#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:626 +#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:622 msgid "Log file count" msgstr "Antall loggfiler" -#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:625 +#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:621 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -2718,19 +2728,19 @@ msgstr "" #: libraries/export/htmlword.php:132 libraries/export/odt.php:168 #: libraries/export/sql.php:881 libraries/export/texytext.php:130 -#: libraries/messages.inc.php:275 +#: libraries/messages.inc.php:271 msgid "Dumping data for table" msgstr "Dataark for tabell" #: libraries/export/htmlword.php:185 libraries/export/odt.php:238 #: libraries/export/sql.php:785 libraries/export/texytext.php:177 -#: libraries/messages.inc.php:1086 +#: libraries/messages.inc.php:1082 msgid "Table structure for table" msgstr "Tabellstruktur for tabell" #: libraries/export/latex.php:125 libraries/export/sql.php:232 #: libraries/export/xml.php:102 libraries/header_printview.inc.php:57 -#: libraries/messages.inc.php:381 libraries/replication_gui.lib.php:63 +#: libraries/messages.inc.php:377 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:170 libraries/replication_gui.lib.php:265 #: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325 #: server_privileges.php:692 server_privileges.php:695 @@ -2742,186 +2752,186 @@ msgstr "Vert" #: libraries/export/latex.php:130 libraries/export/sql.php:233 #: libraries/export/xml.php:107 libraries/header_printview.inc.php:59 -#: libraries/messages.inc.php:354 +#: libraries/messages.inc.php:350 msgid "Generation Time" msgstr "Generert den" #: libraries/export/latex.php:131 libraries/export/sql.php:235 -#: libraries/export/xml.php:108 libraries/messages.inc.php:864 main.php:186 +#: libraries/export/xml.php:108 libraries/messages.inc.php:860 main.php:186 msgid "Server version" msgstr "Tjenerversjon" #: libraries/export/latex.php:132 libraries/export/sql.php:236 -#: libraries/export/xml.php:109 libraries/messages.inc.php:651 +#: libraries/export/xml.php:109 libraries/messages.inc.php:647 msgid "PHP Version" msgstr "PHP-Versjon" #: libraries/export/latex.php:201 libraries/export/sql.php:868 -#: libraries/messages.inc.php:226 server_databases.php:127 +#: libraries/messages.inc.php:222 server_databases.php:127 #: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317 #: tbl_structure.php:666 msgid "Data" msgstr "Data" -#: libraries/export/odt.php:318 libraries/messages.inc.php:506 +#: libraries/export/odt.php:318 libraries/messages.inc.php:502 #: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "MIME-type" -#: libraries/export/sql.php:387 libraries/messages.inc.php:711 +#: libraries/export/sql.php:387 libraries/messages.inc.php:707 msgid "Procedures" msgstr "Prosedyrer" -#: libraries/export/sql.php:401 libraries/messages.inc.php:348 +#: libraries/export/sql.php:401 libraries/messages.inc.php:344 msgid "Functions" msgstr "Funsjoner" -#: libraries/export/sql.php:618 libraries/messages.inc.php:174 +#: libraries/export/sql.php:618 libraries/messages.inc.php:170 msgid "Constraints for dumped tables" msgstr "Begrensninger for dumpede tabeller" -#: libraries/export/sql.php:627 libraries/messages.inc.php:175 +#: libraries/export/sql.php:627 libraries/messages.inc.php:171 msgid "Constraints for table" msgstr "Begrensninger for tabell" -#: libraries/export/sql.php:727 libraries/messages.inc.php:512 +#: libraries/export/sql.php:727 libraries/messages.inc.php:508 msgid "MIME TYPES FOR TABLE" msgstr "MIME TYPER FOR TABELLEN" -#: libraries/export/sql.php:739 libraries/messages.inc.php:743 +#: libraries/export/sql.php:739 libraries/messages.inc.php:739 msgid "RELATIONS FOR TABLE" msgstr "RELASJONER FOR TABELLEN" -#: libraries/export/sql.php:796 libraries/messages.inc.php:1178 +#: libraries/export/sql.php:796 libraries/messages.inc.php:1174 #: libraries/tbl_triggers.lib.php:19 msgid "Triggers" msgstr "Triggere" -#: libraries/export/sql.php:808 libraries/messages.inc.php:1046 +#: libraries/export/sql.php:808 libraries/messages.inc.php:1042 msgid "Structure for view" msgstr "Visningsstruktur" -#: libraries/export/sql.php:817 libraries/messages.inc.php:1029 +#: libraries/export/sql.php:817 libraries/messages.inc.php:1025 msgid "Stand-in structure for view" msgstr "Erstatningsstruktur for visning" #: libraries/footer.inc.php:184 libraries/footer.inc.php:195 -#: libraries/footer.inc.php:198 libraries/messages.inc.php:586 +#: libraries/footer.inc.php:198 libraries/messages.inc.php:582 msgid "Open new phpMyAdmin window" msgstr "Åpne nytt phpMyAdmin vindu" -#: libraries/header.inc.php:115 libraries/messages.inc.php:542 +#: libraries/header.inc.php:115 libraries/messages.inc.php:538 msgid "New table" msgstr "Ny tabell" #: libraries/header_printview.inc.php:50 libraries/header_printview.inc.php:55 -#: libraries/messages.inc.php:1024 +#: libraries/messages.inc.php:1020 msgid "SQL result" msgstr "SQL-resultat" -#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:350 +#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:346 msgid "Generated by" msgstr "Generert av" #: libraries/header_printview.inc.php:63 libraries/import.lib.php:145 -#: libraries/messages.inc.php:820 navigation.php:652 navigation.php:674 +#: libraries/messages.inc.php:816 navigation.php:652 navigation.php:674 #: server_databases.php:122 tbl_printview.php:394 tbl_structure.php:366 #: tbl_structure.php:778 msgid "Rows" msgstr "Rader" -#: libraries/import.lib.php:150 libraries/messages.inc.php:285 sql.php:520 +#: libraries/import.lib.php:150 libraries/messages.inc.php:281 sql.php:520 #: tbl_change.php:181 tbl_get_field.php:35 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL returnerte ett tomt resultat (m.a.o. ingen rader)." -#: libraries/import.lib.php:1078 libraries/messages.inc.php:399 +#: libraries/import.lib.php:1078 libraries/messages.inc.php:395 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" "Følgende strukturer har enten blitt opprettet eller endret. Her kan du:" -#: libraries/import.lib.php:1079 libraries/messages.inc.php:400 +#: libraries/import.lib.php:1079 libraries/messages.inc.php:396 msgid "View a structure`s contents by clicking on its name" msgstr "Vis en strukturs innhold ved å klikke på dens navn" -#: libraries/import.lib.php:1080 libraries/messages.inc.php:401 +#: libraries/import.lib.php:1080 libraries/messages.inc.php:397 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" "Endre noen av dens innstillinger ved å klikke på den tilhørende " "\"Innstillinger\" link" -#: libraries/import.lib.php:1081 libraries/messages.inc.php:402 +#: libraries/import.lib.php:1081 libraries/messages.inc.php:398 msgid "Edit its structure by following the \"Structure\" link" msgstr "Endre dens struktur ved å følge \"Struktur\" linken" -#: libraries/import.lib.php:1084 libraries/messages.inc.php:362 +#: libraries/import.lib.php:1084 libraries/messages.inc.php:358 msgid "Go to database" msgstr "Gå til database" #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:869 +#: libraries/messages.inc.php:865 msgid "settings" msgstr "innstillinger" -#: libraries/import.lib.php:1106 libraries/messages.inc.php:363 +#: libraries/import.lib.php:1106 libraries/messages.inc.php:359 msgid "Go to table" msgstr "Gå til tabell" -#: libraries/import.lib.php:1109 libraries/messages.inc.php:1047 +#: libraries/import.lib.php:1109 libraries/messages.inc.php:1043 msgid "structure" msgstr "struktur" -#: libraries/import.lib.php:1115 libraries/messages.inc.php:364 +#: libraries/import.lib.php:1115 libraries/messages.inc.php:360 msgid "Go to view" msgstr "Gå til visning" #: libraries/import/csv.php:58 libraries/import/csv.php:70 #: libraries/import/csv.php:74 libraries/import/csv.php:78 -#: libraries/messages.inc.php:442 +#: libraries/messages.inc.php:438 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "Ugyldig parameter for CSV import: %s" -#: libraries/import/csv.php:59 libraries/messages.inc.php:323 +#: libraries/import/csv.php:59 libraries/messages.inc.php:319 msgid "Fields terminated by" msgstr "Felter avsluttet med" -#: libraries/import/csv.php:71 libraries/messages.inc.php:320 +#: libraries/import/csv.php:71 libraries/messages.inc.php:316 msgid "Fields enclosed by" msgstr "Felter omsluttet av" -#: libraries/import/csv.php:75 libraries/messages.inc.php:321 +#: libraries/import/csv.php:75 libraries/messages.inc.php:317 msgid "Fields escaped by" msgstr "Felter beskyttet med" -#: libraries/import/csv.php:79 libraries/messages.inc.php:481 +#: libraries/import/csv.php:79 libraries/messages.inc.php:477 msgid "Lines terminated by" msgstr "Linker avsluttet med" -#: libraries/import/csv.php:119 libraries/messages.inc.php:439 +#: libraries/import/csv.php:119 libraries/messages.inc.php:435 #, php-format msgid "Invalid column (%s) specified!" msgstr "Ugyldig kollonne (%s) angitt!" #: libraries/import/csv.php:177 libraries/import/csv.php:424 -#: libraries/messages.inc.php:441 +#: libraries/messages.inc.php:437 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "Ugyldig format i CSV importen i linje %d." -#: libraries/import/csv.php:312 libraries/messages.inc.php:440 +#: libraries/import/csv.php:312 libraries/messages.inc.php:436 #, php-format msgid "Invalid field count in CSV input on line %d." msgstr "Ugyldig antall felt i CSV importen i linje %d." -#: libraries/import/ldi.php:55 libraries/messages.inc.php:446 +#: libraries/import/ldi.php:55 libraries/messages.inc.php:442 msgid "This plugin does not support compressed imports!" msgstr "Dette tillegget støtter ikke komprimerte importeringer!" #: libraries/import/xml.php:74 libraries/import/xml.php:130 -#: libraries/messages.inc.php:1247 +#: libraries/messages.inc.php:1243 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -2950,400 +2960,390 @@ msgstr "Konverter til Kana" msgid "ltr" msgstr "ltr" -#. l10n: Thousands separator -#: libraries/messages.inc.php:21 -msgid "," -msgstr "." - -#. l10n: Decimal separator -#: libraries/messages.inc.php:23 -msgid "." -msgstr "," - -#: libraries/messages.inc.php:25 server_status.php:461 +#: libraries/messages.inc.php:21 server_status.php:461 msgid "Aborted" msgstr "Avbrutt" -#: libraries/messages.inc.php:28 main.php:68 +#: libraries/messages.inc.php:24 main.php:68 msgid "Actions" msgstr "Handlinger" -#: libraries/messages.inc.php:34 libraries/tbl_properties.inc.php:780 +#: libraries/messages.inc.php:30 libraries/tbl_properties.inc.php:780 #: tbl_structure.php:543 #, php-format msgid "Add %s field(s)" msgstr "Legg til %s felt(er)" -#: libraries/messages.inc.php:35 +#: libraries/messages.inc.php:31 msgid "Add custom comment into header (\\n splits lines)" msgstr "Legg til egen kommentar i hodet (\\n lager linjeskift)" -#: libraries/messages.inc.php:36 +#: libraries/messages.inc.php:32 msgid "Add into comments" msgstr "Legg til i kommentarer" -#: libraries/messages.inc.php:37 tbl_structure.php:541 +#: libraries/messages.inc.php:33 tbl_structure.php:541 msgid "Add new field" msgstr "Legg til felt" -#: libraries/messages.inc.php:38 server_privileges.php:1886 +#: libraries/messages.inc.php:34 server_privileges.php:1886 msgid "Add privileges on the following database" msgstr "Legg til privilegier til følgende database" -#: libraries/messages.inc.php:39 server_privileges.php:1907 +#: libraries/messages.inc.php:35 server_privileges.php:1907 msgid "Add privileges on the following table" msgstr "Legg til privilegier til følgende tabell" -#: libraries/messages.inc.php:40 tbl_select.php:288 +#: libraries/messages.inc.php:36 tbl_select.php:288 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Legg til søkekriterier (innhold i \"where\"-setningen):" -#: libraries/messages.inc.php:41 tbl_indexes.php:251 +#: libraries/messages.inc.php:37 tbl_indexes.php:251 #, php-format msgid "Add to index  %s column(s)" msgstr "Legg til indeks %s kolonne(r)" -#: libraries/messages.inc.php:42 server_privileges.php:1570 +#: libraries/messages.inc.php:38 server_privileges.php:1570 #: server_privileges.php:1594 server_privileges.php:1988 #: server_privileges.php:2177 msgid "Add a new User" msgstr "Legg til en ny bruker" -#: libraries/messages.inc.php:43 server_privileges.php:931 +#: libraries/messages.inc.php:39 server_privileges.php:931 msgid "You have added a new user." msgstr "Du har lagt til en ny bruker." -#: libraries/messages.inc.php:44 server_privileges.php:571 +#: libraries/messages.inc.php:40 server_privileges.php:571 msgid "Administration" msgstr "Administrasjon" -#: libraries/messages.inc.php:45 tbl_structure.php:557 +#: libraries/messages.inc.php:41 tbl_structure.php:557 #, php-format msgid "After %s" msgstr "Etter %s" -#: libraries/messages.inc.php:46 tbl_change.php:1147 +#: libraries/messages.inc.php:42 tbl_change.php:1147 msgid "Go back to previous page" msgstr "Returner" -#: libraries/messages.inc.php:47 tbl_change.php:1148 +#: libraries/messages.inc.php:43 tbl_change.php:1148 msgid "Insert another new row" msgstr "Sett inn en ny post" -#: libraries/messages.inc.php:48 tbl_change.php:1160 +#: libraries/messages.inc.php:44 tbl_change.php:1160 msgid "Edit next row" msgstr "Rediger neste rad" -#: libraries/messages.inc.php:49 tbl_change.php:1152 +#: libraries/messages.inc.php:45 tbl_change.php:1152 msgid "Go back to this page" msgstr "Tilbake til denne siden" -#: libraries/messages.inc.php:50 querywindow.php:115 +#: libraries/messages.inc.php:46 querywindow.php:115 msgid "All" msgstr "Alle" -#: libraries/messages.inc.php:53 tbl_operations.php:249 +#: libraries/messages.inc.php:49 tbl_operations.php:249 msgid "Alter table order by" msgstr "Endre tabellrekkefølge ved" -#: libraries/messages.inc.php:54 tbl_operations.php:660 +#: libraries/messages.inc.php:50 tbl_operations.php:660 msgid "Analyze" msgstr "Analyser" -#: libraries/messages.inc.php:57 +#: libraries/messages.inc.php:53 msgid "and" msgstr "og" -#: libraries/messages.inc.php:59 pmd_general.php:87 +#: libraries/messages.inc.php:55 pmd_general.php:87 msgid "Angular links" msgstr "Vinklede linker" -#: libraries/messages.inc.php:60 tbl_structure.php:401 tbl_structure.php:415 +#: libraries/messages.inc.php:56 tbl_structure.php:401 tbl_structure.php:415 #: tbl_structure.php:429 #, php-format msgid "An index has been added on %s" msgstr "En indeks har blitt lagt til %s" -#: libraries/messages.inc.php:61 server_privileges.php:1521 +#: libraries/messages.inc.php:57 server_privileges.php:1521 #: server_privileges.php:2123 msgid "Any" msgstr "Alle" -#: libraries/messages.inc.php:62 libraries/replication_gui.lib.php:298 +#: libraries/messages.inc.php:58 libraries/replication_gui.lib.php:298 #: server_privileges.php:725 msgid "Any host" msgstr "Alle verter" -#: libraries/messages.inc.php:63 libraries/replication_gui.lib.php:250 +#: libraries/messages.inc.php:59 libraries/replication_gui.lib.php:250 #: server_privileges.php:677 msgid "Any user" msgstr "Alle brukere" -#: libraries/messages.inc.php:64 server_synchronize.php:449 +#: libraries/messages.inc.php:60 server_synchronize.php:449 #: server_synchronize.php:894 msgid "Apply Selected Changes" msgstr "Utfør valgte endringer" -#: libraries/messages.inc.php:66 tbl_structure.php:386 +#: libraries/messages.inc.php:62 tbl_structure.php:386 #, php-format msgid "A primary key has been added on %s" msgstr "En primærnøkkel har blitt lagt til %s" -#: libraries/messages.inc.php:67 libraries/mysql_charsets.lib.php:368 +#: libraries/messages.inc.php:63 libraries/mysql_charsets.lib.php:368 msgid "Arabic" msgstr "arabisk" -#: libraries/messages.inc.php:68 libraries/mysql_charsets.lib.php:359 +#: libraries/messages.inc.php:64 libraries/mysql_charsets.lib.php:359 msgid "Armenian" msgstr "armensk" -#: libraries/messages.inc.php:70 libraries/tbl_properties.inc.php:394 +#: libraries/messages.inc.php:66 libraries/tbl_properties.inc.php:394 msgid "As defined:" msgstr "Som definert:" -#: libraries/messages.inc.php:71 tbl_structure.php:556 +#: libraries/messages.inc.php:67 tbl_structure.php:556 msgid "At Beginning of Table" msgstr "Ved begynnelsen av tabellen" -#: libraries/messages.inc.php:72 tbl_structure.php:555 +#: libraries/messages.inc.php:68 tbl_structure.php:555 msgid "At End of Table" msgstr "Ved slutten av tabellen" -#: libraries/messages.inc.php:73 libraries/tbl_properties.inc.php:108 +#: libraries/messages.inc.php:69 libraries/tbl_properties.inc.php:108 #: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:144 #: tbl_structure.php:180 msgid "Attributes" msgstr "Attributter" -#: libraries/messages.inc.php:74 pdf_pages.php:303 pdf_pages.php:306 +#: libraries/messages.inc.php:70 pdf_pages.php:303 pdf_pages.php:306 msgid "Automatic layout" msgstr "Automatisk disposisjon" -#: libraries/messages.inc.php:77 libraries/mysql_charsets.lib.php:354 +#: libraries/messages.inc.php:73 libraries/mysql_charsets.lib.php:354 msgid "Baltic" msgstr "baltisk" -#: libraries/messages.inc.php:78 libraries/sqlparser.lib.php:175 +#: libraries/messages.inc.php:74 libraries/sqlparser.lib.php:175 msgid "BEGIN CUT" msgstr "START KUTT" -#: libraries/messages.inc.php:79 libraries/sqlparser.lib.php:179 +#: libraries/messages.inc.php:75 libraries/sqlparser.lib.php:179 msgid "BEGIN RAW" msgstr "START UFORMATERT" -#: libraries/messages.inc.php:80 libraries/mysql_charsets.lib.php:201 +#: libraries/messages.inc.php:76 libraries/mysql_charsets.lib.php:201 #: libraries/mysql_charsets.lib.php:402 tbl_change.php:518 msgid "Binary" msgstr " Binær " -#: libraries/messages.inc.php:81 tbl_change.php:894 +#: libraries/messages.inc.php:77 tbl_change.php:894 msgid "Binary - do not edit" msgstr " Binær - må ikke redigeres " -#: libraries/messages.inc.php:82 libraries/server_links.inc.php:76 +#: libraries/messages.inc.php:78 libraries/server_links.inc.php:76 #: server_binlog.php:110 server_status.php:253 test/theme.php:121 msgid "Binary log" msgstr "Binærlogg" -#: libraries/messages.inc.php:83 server_binlog.php:217 +#: libraries/messages.inc.php:79 server_binlog.php:217 msgid "Event type" msgstr "Hendelsestype" -#: libraries/messages.inc.php:84 server_binlog.php:220 +#: libraries/messages.inc.php:80 server_binlog.php:220 msgid "Information" msgstr "Informasjon" -#: libraries/messages.inc.php:85 server_binlog.php:215 +#: libraries/messages.inc.php:81 server_binlog.php:215 msgid "Log name" msgstr "Loggnavn" -#: libraries/messages.inc.php:86 server_binlog.php:219 +#: libraries/messages.inc.php:82 server_binlog.php:219 msgid "Original position" msgstr "Original posisjon" -#: libraries/messages.inc.php:87 server_binlog.php:216 +#: libraries/messages.inc.php:83 server_binlog.php:216 msgid "Position" msgstr "Posisjon" -#: libraries/messages.inc.php:88 libraries/replication_gui.lib.php:169 +#: libraries/messages.inc.php:84 libraries/replication_gui.lib.php:169 #: server_binlog.php:218 msgid "Server ID" msgstr "Tjener ID" -#: libraries/messages.inc.php:92 +#: libraries/messages.inc.php:88 msgctxt "$strBLOBRepositoryDisabled" msgid "Disabled" msgstr "Avslått" -#: libraries/messages.inc.php:95 +#: libraries/messages.inc.php:91 msgctxt "$strBLOBRepositoryEnabled" msgid "Enabled" msgstr "Påslått" -#: libraries/messages.inc.php:97 tbl_change.php:888 +#: libraries/messages.inc.php:93 tbl_change.php:888 msgid "Remove BLOB Repository Reference" msgstr "Fjern BLOB lager referanse" -#: libraries/messages.inc.php:98 +#: libraries/messages.inc.php:94 msgctxt "$strBLOBRepositoryRepair" msgid "Repair" msgstr "Reparer" -#: libraries/messages.inc.php:99 tbl_change.php:987 +#: libraries/messages.inc.php:95 tbl_change.php:987 msgid "Upload to BLOB repository" msgstr "Last opp til BLOB lager" -#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:359 +#: libraries/messages.inc.php:96 libraries/sql_query_form.lib.php:359 #: sql.php:677 msgid "Let every user access this bookmark" msgstr "La alle brukere ha adgang til dette bokmerket" -#: libraries/messages.inc.php:103 sql.php:671 +#: libraries/messages.inc.php:99 sql.php:671 msgid "Label" msgstr "Navn" -#: libraries/messages.inc.php:104 libraries/sql_query_form.lib.php:433 +#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:433 msgid "Bookmarked SQL query" msgstr "Lagret SQL-spørring" -#: libraries/messages.inc.php:105 libraries/sql_query_form.lib.php:365 +#: libraries/messages.inc.php:101 libraries/sql_query_form.lib.php:365 msgid "Replace existing bookmark of same name" msgstr "Erstatt eksisterende bokmerke med samme navn" -#: libraries/messages.inc.php:106 libraries/sql_query_form.lib.php:352 +#: libraries/messages.inc.php:102 libraries/sql_query_form.lib.php:352 #: sql.php:665 sql.php:666 sql.php:683 msgid "Bookmark this SQL query" msgstr "Lagre denne SQL-spørringen" -#: libraries/messages.inc.php:107 libraries/sql_query_form.lib.php:466 +#: libraries/messages.inc.php:103 libraries/sql_query_form.lib.php:466 msgid "View only" msgstr "Bare se" -#: libraries/messages.inc.php:109 tbl_structure.php:161 +#: libraries/messages.inc.php:105 tbl_structure.php:161 msgid "Browse distinct values" msgstr "Se gjennom distinkte verdier" -#: libraries/messages.inc.php:110 tbl_change.php:252 tbl_select.php:27 +#: libraries/messages.inc.php:106 tbl_change.php:252 tbl_select.php:27 #: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34 msgid "Browse foreign values" msgstr "Se de eksterne verdiene" -#: libraries/messages.inc.php:118 libraries/mysql_charsets.lib.php:213 +#: libraries/messages.inc.php:114 libraries/mysql_charsets.lib.php:213 msgid "Bulgarian" msgstr "bulgarsk" -#: libraries/messages.inc.php:120 +#: libraries/messages.inc.php:116 msgid "\"bzipped\"" msgstr "Komprimert (bz2)" -#: libraries/messages.inc.php:122 +#: libraries/messages.inc.php:118 msgid "Calendar" msgstr "Kalender" -#: libraries/messages.inc.php:129 tbl_indexes.php:75 +#: libraries/messages.inc.php:125 tbl_indexes.php:75 msgid "Can't rename index to PRIMARY!" msgstr "Kan ikke endre indeks til PRIMARY!" -#: libraries/messages.inc.php:132 libraries/mysql_charsets.lib.php:223 +#: libraries/messages.inc.php:128 libraries/mysql_charsets.lib.php:223 #: libraries/mysql_charsets.lib.php:409 msgid "case-insensitive" msgstr "uavhengig av bokstavstørrelse" -#: libraries/messages.inc.php:133 libraries/mysql_charsets.lib.php:226 +#: libraries/messages.inc.php:129 libraries/mysql_charsets.lib.php:226 #: libraries/mysql_charsets.lib.php:411 msgid "case-sensitive" msgstr "avhengig av bokstavstørrelse" -#: libraries/messages.inc.php:134 libraries/mysql_charsets.lib.php:332 +#: libraries/messages.inc.php:130 libraries/mysql_charsets.lib.php:332 msgid "Central European" msgstr "sentraleuropeisk" -#: libraries/messages.inc.php:136 server_privileges.php:1969 +#: libraries/messages.inc.php:132 server_privileges.php:1969 msgid "... keep the old one." msgstr "... behold den gamle." -#: libraries/messages.inc.php:137 server_privileges.php:1967 +#: libraries/messages.inc.php:133 server_privileges.php:1967 msgid "Create a new user with the same privileges and ..." msgstr "Opprett ny bruker med de samme privilegier og ..." -#: libraries/messages.inc.php:138 server_privileges.php:1972 +#: libraries/messages.inc.php:134 server_privileges.php:1972 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" " ... slett den gamle fra brukertabellene og deretter oppfrisk privilegiene." -#: libraries/messages.inc.php:139 server_privileges.php:1970 +#: libraries/messages.inc.php:135 server_privileges.php:1970 msgid " ... delete the old one from the user tables." msgstr " ... slett den gamle fra brukertabellene." -#: libraries/messages.inc.php:140 server_privileges.php:1971 +#: libraries/messages.inc.php:136 server_privileges.php:1971 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "" " ... tilbakekall alle aktive privilegier fra den gamle og slett den etterpå." -#: libraries/messages.inc.php:141 server_privileges.php:1964 +#: libraries/messages.inc.php:137 server_privileges.php:1964 msgid "Change Login Information / Copy User" msgstr "Endre innloggingsinformasjon / kopiere bruker" -#: libraries/messages.inc.php:144 libraries/mysql_charsets.lib.php:107 +#: libraries/messages.inc.php:140 libraries/mysql_charsets.lib.php:107 msgid "Charset" msgstr "Tegnsett" -#: libraries/messages.inc.php:146 server_collations.php:40 +#: libraries/messages.inc.php:142 server_collations.php:40 msgid "Character Sets and Collations" msgstr "Tegnsett og sammenligninger" -#: libraries/messages.inc.php:147 libraries/server_links.inc.php:57 +#: libraries/messages.inc.php:143 libraries/server_links.inc.php:57 #: test/theme.php:109 msgid "Charsets" msgstr "Tegnsett" -#: libraries/messages.inc.php:149 tbl_operations.php:661 +#: libraries/messages.inc.php:145 tbl_operations.php:661 msgid "Check" msgstr "Kontroller" -#: libraries/messages.inc.php:151 server_databases.php:293 +#: libraries/messages.inc.php:147 server_databases.php:293 #: server_databases.php:294 msgid "Check Privileges" msgstr "Kontroller privilegier" -#: libraries/messages.inc.php:152 server_databases.php:289 +#: libraries/messages.inc.php:148 server_databases.php:289 #, php-format msgid "Check privileges for database "%s"." msgstr "Kontroller privilegier for databasen "%s"." -#: libraries/messages.inc.php:154 pdf_pages.php:261 +#: libraries/messages.inc.php:150 pdf_pages.php:261 msgid "Please choose a page to edit" msgstr "Vennligst velg en side for redigering" -#: libraries/messages.inc.php:157 +#: libraries/messages.inc.php:153 msgid "Displaying Column Comments" msgstr "Vis kolonnekommentarer" -#: libraries/messages.inc.php:159 pdf_pages.php:483 view_create.php:148 +#: libraries/messages.inc.php:155 pdf_pages.php:483 view_create.php:148 msgid "Column names" msgstr "Kolonnenavn" -#: libraries/messages.inc.php:160 server_privileges.php:1685 +#: libraries/messages.inc.php:156 server_privileges.php:1685 msgid "Column-specific privileges" msgstr "Kolonne-spesifikke privilegier" -#: libraries/messages.inc.php:164 +#: libraries/messages.inc.php:160 msgid "MySQL 4.0 compatible" msgstr "MySQL 4.0 kompatibel" -#: libraries/messages.inc.php:165 +#: libraries/messages.inc.php:161 msgid "Complete inserts" msgstr "Komplette innlegg" -#: libraries/messages.inc.php:168 +#: libraries/messages.inc.php:164 #, php-format msgid "Could not load default configuration from: \"%1$s\"" msgstr "Kunne ikke laste standard konfigurasjonsfil fra: \"%1$s\"" -#: libraries/messages.inc.php:169 main.php:306 +#: libraries/messages.inc.php:165 main.php:306 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " @@ -3353,168 +3353,168 @@ msgstr "" "fortsatt i din phpMyAdmin mappe. Du bør fjerne den så fort phpMyAdming har " "blitt konfigurert." -#: libraries/messages.inc.php:171 pdf_schema.php:672 +#: libraries/messages.inc.php:167 pdf_schema.php:672 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Vennligst konfigurer koordinatene for tabell %s" -#: libraries/messages.inc.php:173 server_status.php:433 +#: libraries/messages.inc.php:169 server_status.php:433 msgid "Connections" msgstr "tilkoblinger" -#: libraries/messages.inc.php:179 tbl_operations.php:509 +#: libraries/messages.inc.php:175 tbl_operations.php:509 msgid "Copy table to (database.table):" msgstr "Kopier tabell til (database.tabell):" -#: libraries/messages.inc.php:180 tbl_move_copy.php:58 +#: libraries/messages.inc.php:176 tbl_move_copy.php:58 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabellen %s er kopiert til %s." -#: libraries/messages.inc.php:181 tbl_move_copy.php:48 +#: libraries/messages.inc.php:177 tbl_move_copy.php:48 msgid "Can't copy table to same one!" msgstr "Kan ikke kopiere tabellen til samme navn!" -#: libraries/messages.inc.php:182 server_synchronize.php:94 +#: libraries/messages.inc.php:178 server_synchronize.php:94 msgid "Could not connect to the source" msgstr "Kunne ikke koble til kilden" -#: libraries/messages.inc.php:183 server_synchronize.php:97 +#: libraries/messages.inc.php:179 server_synchronize.php:97 msgid "Could not connect to the target" msgstr "Kunne ikke koble til målet" -#: libraries/messages.inc.php:184 server_processlist.php:24 +#: libraries/messages.inc.php:180 server_processlist.php:24 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" "phpMyAdmin kunne ikke avslutte tråd %s. Den er sansynligvis alt avsluttet." -#: libraries/messages.inc.php:187 +#: libraries/messages.inc.php:183 #, php-format msgid "Create an index on %s columns" msgstr "Lag en indeks på %s kolonner" -#: libraries/messages.inc.php:188 tbl_indexes.php:160 +#: libraries/messages.inc.php:184 tbl_indexes.php:160 msgid "Create a new index" msgstr "Lag en ny indeks" -#: libraries/messages.inc.php:191 pdf_pages.php:297 pmd_pdf.php:114 +#: libraries/messages.inc.php:187 pdf_pages.php:297 pmd_pdf.php:114 msgid "Create a page" msgstr "Lag en ny side" -#: libraries/messages.inc.php:192 +#: libraries/messages.inc.php:188 msgid "Creation of PDFs" msgstr "Lag PDF-dokumenter" -#: libraries/messages.inc.php:193 pmd_general.php:74 pmd_general.php:306 +#: libraries/messages.inc.php:189 pmd_general.php:74 pmd_general.php:306 msgid "Create relation" msgstr "Opprett relasjon" -#: libraries/messages.inc.php:194 pmd_general.php:71 +#: libraries/messages.inc.php:190 pmd_general.php:71 #: server_synchronize.php:429 server_synchronize.php:872 msgid "Create table" msgstr "Opprett tabell" -#: libraries/messages.inc.php:195 +#: libraries/messages.inc.php:191 msgctxt "$strCreateTableShort" msgid "Create table" msgstr "Opprett tabell" -#: libraries/messages.inc.php:196 server_privileges.php:1994 +#: libraries/messages.inc.php:192 server_privileges.php:1994 msgid "Database for user" msgstr "Brukerdatabase" -#: libraries/messages.inc.php:197 server_privileges.php:1999 +#: libraries/messages.inc.php:193 server_privileges.php:1999 msgid "Create database with same name and grant all privileges" msgstr "Opprett database med samme navn og gi alle rettigheter" -#: libraries/messages.inc.php:198 +#: libraries/messages.inc.php:194 msgctxt "$strCreateUserDatabaseNone" msgid "None" msgstr "Ingen" -#: libraries/messages.inc.php:199 server_privileges.php:2003 +#: libraries/messages.inc.php:195 server_privileges.php:2003 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Gi alle privilegier for databasen "%s"" -#: libraries/messages.inc.php:200 server_privileges.php:2000 +#: libraries/messages.inc.php:196 server_privileges.php:2000 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Gi alle rettigheter på jokertegnavn (username\\_%)" -#: libraries/messages.inc.php:201 +#: libraries/messages.inc.php:197 msgid "Creation/Update/Check dates" msgstr "Opprettelse/Oppdaterings/Kontrolldato" -#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:229 +#: libraries/messages.inc.php:199 libraries/mysql_charsets.lib.php:229 msgid "Croatian" msgstr "kroatisk" -#: libraries/messages.inc.php:204 +#: libraries/messages.inc.php:200 msgid "CSV" msgstr "CSV-data" -#: libraries/messages.inc.php:205 libraries/server_synchronize.lib.php:1343 +#: libraries/messages.inc.php:201 libraries/server_synchronize.lib.php:1343 #: libraries/server_synchronize.lib.php:1369 msgid "Current server" msgstr "Nåværende tjener" -#: libraries/messages.inc.php:206 main.php:159 +#: libraries/messages.inc.php:202 main.php:159 msgid "Custom color" msgstr "Egendefinert farge" -#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:365 +#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:365 msgid "Cyrillic" msgstr "kyrillisk" -#: libraries/messages.inc.php:208 libraries/mysql_charsets.lib.php:232 +#: libraries/messages.inc.php:204 libraries/mysql_charsets.lib.php:232 msgid "Czech" msgstr "tjekkisk" -#: libraries/messages.inc.php:209 libraries/mysql_charsets.lib.php:383 +#: libraries/messages.inc.php:205 libraries/mysql_charsets.lib.php:383 msgid "Czech-Slovak" msgstr "Tjekkoslovakisk" -#: libraries/messages.inc.php:211 libraries/mysql_charsets.lib.php:235 +#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:235 msgid "Danish" msgstr "dansk" -#: libraries/messages.inc.php:214 +#: libraries/messages.inc.php:210 msgid "Database export options" msgstr "Databaseeksportinnstillinger" -#: libraries/messages.inc.php:217 server_synchronize.php:122 +#: libraries/messages.inc.php:213 server_synchronize.php:122 #: server_synchronize.php:125 tbl_create.php:82 tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "'%s' database eksisterer ikke." -#: libraries/messages.inc.php:219 server_databases.php:63 +#: libraries/messages.inc.php:215 server_databases.php:63 #, php-format msgid "%s databases have been dropped successfully." msgstr "%s databasene har blitt slettet." -#: libraries/messages.inc.php:220 libraries/server_synchronize.lib.php:1341 +#: libraries/messages.inc.php:216 libraries/server_synchronize.lib.php:1341 #: server_synchronize.php:1110 msgid "Source database" msgstr "Kildedatabase" -#: libraries/messages.inc.php:221 server_databases.php:88 +#: libraries/messages.inc.php:217 server_databases.php:88 msgid "Databases statistics" msgstr "Statistikk for databaser" -#: libraries/messages.inc.php:222 server_databases.php:362 +#: libraries/messages.inc.php:218 server_databases.php:362 #: server_databases.php:363 msgid "Disable Statistics" msgstr "Slå av statistikk" -#: libraries/messages.inc.php:223 server_databases.php:358 +#: libraries/messages.inc.php:219 server_databases.php:358 #: server_databases.php:359 msgid "Enable Statistics" msgstr "Slå på statistikk" -#: libraries/messages.inc.php:224 server_databases.php:366 +#: libraries/messages.inc.php:220 server_databases.php:366 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -3522,30 +3522,30 @@ msgstr "" "OBS: Når du slår på databasestatistikk så kan det medføre stor traffik " "mellom webtjeneren og MySQL-tjeneren." -#: libraries/messages.inc.php:225 libraries/server_synchronize.lib.php:1367 +#: libraries/messages.inc.php:221 libraries/server_synchronize.lib.php:1367 #: server_synchronize.php:1112 msgid "Target database" msgstr "Måldatabase" -#: libraries/messages.inc.php:228 server_synchronize.php:425 +#: libraries/messages.inc.php:224 server_synchronize.php:425 #: server_synchronize.php:868 msgid "Data Difference" msgstr "Datadifferanse" -#: libraries/messages.inc.php:231 server_synchronize.php:272 +#: libraries/messages.inc.php:227 server_synchronize.php:272 msgid "Data Synchronization" msgstr "Datasynkronisering" -#: libraries/messages.inc.php:235 server_privileges.php:526 +#: libraries/messages.inc.php:231 server_privileges.php:526 #: server_privileges.php:1679 msgid "Database-specific privileges" msgstr "Databasespesifikke privilegier" -#: libraries/messages.inc.php:237 server_privileges.php:2136 +#: libraries/messages.inc.php:233 server_privileges.php:2136 msgid "database-specific" msgstr "databasespesifikk" -#: libraries/messages.inc.php:240 libraries/tbl_properties.inc.php:106 +#: libraries/messages.inc.php:236 libraries/tbl_properties.inc.php:106 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" @@ -3553,32 +3553,32 @@ msgstr "" "Sett inn en enkelt verdi for standard verdier uten skråstrek, anførselstegn " "eller annen "escaping" med dette formatet: a" -#: libraries/messages.inc.php:241 tbl_operations.php:589 +#: libraries/messages.inc.php:237 tbl_operations.php:589 msgid "Defragment table" msgstr "Defragmenter tabell" -#: libraries/messages.inc.php:242 +#: libraries/messages.inc.php:238 msgid "Use delayed inserts" msgstr "Bruk forsinkede innsettinger" -#: libraries/messages.inc.php:245 server_privileges.php:1243 +#: libraries/messages.inc.php:241 server_privileges.php:1243 msgid "No users selected for deleting!" msgstr "Ingen brukere merket for sletting!" -#: libraries/messages.inc.php:246 pmd_general.php:372 +#: libraries/messages.inc.php:242 pmd_general.php:372 msgid "Delete relation" msgstr "Slett relasjon" -#: libraries/messages.inc.php:248 server_privileges.php:1232 +#: libraries/messages.inc.php:244 server_privileges.php:1232 #, php-format msgid "Deleting %s" msgstr "Sletter %s" -#: libraries/messages.inc.php:249 libraries/sql_query_form.lib.php:388 +#: libraries/messages.inc.php:245 libraries/sql_query_form.lib.php:388 msgid "Delimiter" msgstr "Skilletegn" -#: libraries/messages.inc.php:250 pdf_pages.php:506 +#: libraries/messages.inc.php:246 pdf_pages.php:506 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -3586,7 +3586,7 @@ msgstr "" "Den nåværende siden har referanser til tabeller som ikke lenger eksisterer. " "Vil du slette disse referansene?" -#: libraries/messages.inc.php:254 pmd_help.php:29 +#: libraries/messages.inc.php:250 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 " @@ -3596,142 +3596,142 @@ msgstr "" "klikk på \"Velg felt for visning\" ikonet, klikk så på det aktuelle " "feltnavnet." -#: libraries/messages.inc.php:256 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:252 libraries/mysql_charsets.lib.php:247 msgid "dictionary" msgstr "ordbok" -#: libraries/messages.inc.php:257 libraries/server_synchronize.lib.php:1348 +#: libraries/messages.inc.php:253 libraries/server_synchronize.lib.php:1348 msgid "Difference" msgstr "Differanse" -#: libraries/messages.inc.php:258 pmd_general.php:87 +#: libraries/messages.inc.php:254 pmd_general.php:87 msgid "Direct links" msgstr "Direkte linker" -#: libraries/messages.inc.php:261 +#: libraries/messages.inc.php:257 msgid "Disable foreign key checks" msgstr "Slå av kontroll av fremmednøkler" -#: libraries/messages.inc.php:262 +#: libraries/messages.inc.php:258 msgid "Display Features" msgstr "Vis egenskaper" -#: libraries/messages.inc.php:263 tbl_select.php:301 +#: libraries/messages.inc.php:259 tbl_select.php:301 msgid "Display order:" msgstr "Visningsrekkefølge:" -#: libraries/messages.inc.php:265 tbl_select.php:132 +#: libraries/messages.inc.php:261 tbl_select.php:132 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Utfør en \"spørring ved eksempel\" (jokertegn: \"%\")" -#: libraries/messages.inc.php:266 +#: libraries/messages.inc.php:262 msgid "DocSQL" msgstr "DocSQL" -#: libraries/messages.inc.php:268 +#: libraries/messages.inc.php:264 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Ikke bruk AUTO_INCREMENT for nullverdier" -#: libraries/messages.inc.php:273 server_privileges.php:1579 +#: libraries/messages.inc.php:269 server_privileges.php:1579 #: server_privileges.php:1580 server_privileges.php:1581 msgid "Drop the databases that have the same names as the users." msgstr "Slett databasene som har det samme navnet som brukerne." -#: libraries/messages.inc.php:278 tbl_printview.php:382 tbl_structure.php:743 +#: libraries/messages.inc.php:274 tbl_printview.php:382 tbl_structure.php:743 msgid "dynamic" msgstr "dynamisk" -#: libraries/messages.inc.php:282 server_privileges.php:1324 +#: libraries/messages.inc.php:278 server_privileges.php:1324 #: server_privileges.php:1610 msgid "Edit Privileges" msgstr "Rediger privilegier" -#: libraries/messages.inc.php:283 tbl_printview.php:341 tbl_structure.php:688 +#: libraries/messages.inc.php:279 tbl_printview.php:341 tbl_structure.php:688 msgid "Effective" msgstr "Effektiv" -#: libraries/messages.inc.php:286 libraries/relation.lib.php:100 +#: libraries/messages.inc.php:282 libraries/relation.lib.php:100 msgid "Enabled" msgstr "Påslått" -#: libraries/messages.inc.php:287 +#: libraries/messages.inc.php:283 msgid "Enclose export in a transaction" msgstr "Inneslutt eksport i en transaksjon" -#: libraries/messages.inc.php:288 libraries/sqlparser.lib.php:177 +#: libraries/messages.inc.php:284 libraries/sqlparser.lib.php:177 msgid "END CUT" msgstr "STOPP KUTT" -#: libraries/messages.inc.php:290 libraries/sqlparser.lib.php:183 +#: libraries/messages.inc.php:286 libraries/sqlparser.lib.php:183 msgid "END RAW" msgstr "STOPP UFORMATERT" -#: libraries/messages.inc.php:293 libraries/server_links.inc.php:61 +#: libraries/messages.inc.php:289 libraries/server_links.inc.php:61 #: test/theme.php:113 msgid "Engines" msgstr "Motorer" -#: libraries/messages.inc.php:295 libraries/mysql_charsets.lib.php:238 +#: libraries/messages.inc.php:291 libraries/mysql_charsets.lib.php:238 msgid "English" msgstr "engelsk" -#: libraries/messages.inc.php:296 server_privileges.php:393 +#: libraries/messages.inc.php:292 server_privileges.php:393 #: server_privileges.php:535 server_privileges.php:1501 msgid " Note: MySQL privilege names are expressed in English " msgstr "OBS: MySQL privilegiumnavn er på engelsk" -#: libraries/messages.inc.php:298 libraries/zip_extension.lib.php:49 +#: libraries/messages.inc.php:294 libraries/zip_extension.lib.php:49 #: libraries/zip_extension.lib.php:51 libraries/zip_extension.lib.php:66 msgid "Error in ZIP archive:" msgstr "Feil i ZIP arkivet:" -#: libraries/messages.inc.php:303 libraries/mysql_charsets.lib.php:241 +#: libraries/messages.inc.php:299 libraries/mysql_charsets.lib.php:241 msgid "Esperanto" msgstr "Esperanto" -#: libraries/messages.inc.php:304 libraries/mysql_charsets.lib.php:244 +#: libraries/messages.inc.php:300 libraries/mysql_charsets.lib.php:244 msgid "Estonian" msgstr "estisk" -#: libraries/messages.inc.php:305 libraries/tbl_triggers.lib.php:29 +#: libraries/messages.inc.php:301 libraries/tbl_triggers.lib.php:29 msgid "Event" msgstr "Hendelse" -#: libraries/messages.inc.php:307 +#: libraries/messages.inc.php:303 msgid "Excel edition" msgstr "Excel-versjon" -#: libraries/messages.inc.php:311 pmd_pdf.php:85 +#: libraries/messages.inc.php:307 pmd_pdf.php:85 msgid "Export/Import to scale" msgstr "Eksporter/Importer til skala" -#: libraries/messages.inc.php:313 +#: libraries/messages.inc.php:309 msgid "Extended inserts" msgstr "Utvidete innlegg" -#: libraries/messages.inc.php:314 pdf_schema.php:1267 pdf_schema.php:1288 +#: libraries/messages.inc.php:310 pdf_schema.php:1267 pdf_schema.php:1288 #: tbl_printview.php:147 tbl_structure.php:183 tbl_tracking.php:278 msgid "Extra" msgstr "Ekstra" -#: libraries/messages.inc.php:316 server_status.php:447 +#: libraries/messages.inc.php:312 server_status.php:447 msgid "Failed attempts" msgstr "Feilede forsøk" -#: libraries/messages.inc.php:318 tbl_structure.php:375 +#: libraries/messages.inc.php:314 tbl_structure.php:375 #, php-format msgid "Field %s has been dropped" msgstr "Feltet %s har blitt slettet" -#: libraries/messages.inc.php:322 libraries/sql_query_form.lib.php:317 +#: libraries/messages.inc.php:318 libraries/sql_query_form.lib.php:317 msgid "Fields" msgstr "Felter" -#: libraries/messages.inc.php:332 server_binlog.php:136 +#: libraries/messages.inc.php:328 server_binlog.php:136 msgid "Files" msgstr "Filer" -#: libraries/messages.inc.php:334 server_privileges.php:1597 +#: libraries/messages.inc.php:330 server_privileges.php:1597 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -3744,121 +3744,121 @@ msgstr "" "privilegiene tjeneren bruker hvis det er utført manuelle endringer på den. I " "så fall bør du %soppfriske privilegiene%s før du fortsetter." -#: libraries/messages.inc.php:335 server_status.php:289 +#: libraries/messages.inc.php:331 server_status.php:289 msgid "Flush query cache" msgstr "Flush query cache" -#: libraries/messages.inc.php:336 +#: libraries/messages.inc.php:332 msgid "Flush the table (\"FLUSH\")" msgstr "Oppfrisk tabellen (\"FLUSH\")" -#: libraries/messages.inc.php:337 server_status.php:271 +#: libraries/messages.inc.php:333 server_status.php:271 msgid "Flush (close) all tables" msgstr "Flush (close) all tables" -#: libraries/messages.inc.php:339 tbl_relation.php:279 +#: libraries/messages.inc.php:335 tbl_relation.php:279 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" "Feil oppstod under forsøk på opprettelse av fremmednøkkel på %1$s " "(kontroller datatyper)" -#: libraries/messages.inc.php:341 setup/lib/messages.inc.php:88 +#: libraries/messages.inc.php:337 setup/lib/messages.inc.php:88 #: tbl_printview.php:376 tbl_structure.php:738 msgid "Format" msgstr "Format" -#: libraries/messages.inc.php:344 server_replication.php:325 +#: libraries/messages.inc.php:340 server_replication.php:325 msgid "Full start" msgstr "Full start" -#: libraries/messages.inc.php:345 server_replication.php:325 +#: libraries/messages.inc.php:341 server_replication.php:325 msgid "Full stop" msgstr "Full stopp" -#: libraries/messages.inc.php:347 tbl_change.php:282 tbl_change.php:320 +#: libraries/messages.inc.php:343 tbl_change.php:282 tbl_change.php:320 msgid "Function" msgstr "Funksjon" -#: libraries/messages.inc.php:355 libraries/mysql_charsets.lib.php:377 +#: libraries/messages.inc.php:351 libraries/mysql_charsets.lib.php:377 msgid "Georgian" msgstr "Georgisk" -#: libraries/messages.inc.php:356 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:352 libraries/mysql_charsets.lib.php:247 #: libraries/mysql_charsets.lib.php:250 msgid "German" msgstr "tysk" -#: libraries/messages.inc.php:357 themes.php:42 +#: libraries/messages.inc.php:353 themes.php:42 msgid "Get more themes!" msgstr "Få flere temaer!" -#: libraries/messages.inc.php:358 server_privileges.php:2134 +#: libraries/messages.inc.php:354 server_privileges.php:2134 msgid "global" msgstr "global" -#: libraries/messages.inc.php:359 server_privileges.php:524 +#: libraries/messages.inc.php:355 server_privileges.php:524 #: server_privileges.php:1500 msgid "Global privileges" msgstr "Globale privilegier" -#: libraries/messages.inc.php:360 server_variables.php:55 +#: libraries/messages.inc.php:356 server_variables.php:55 #: server_variables.php:89 msgid "Global value" msgstr "Global verdi" -#: libraries/messages.inc.php:365 server_privileges.php:1502 +#: libraries/messages.inc.php:361 server_privileges.php:1502 #: server_privileges.php:1684 server_privileges.php:2033 msgid "Grant" msgstr "Rettighet" -#: libraries/messages.inc.php:366 libraries/mysql_charsets.lib.php:380 +#: libraries/messages.inc.php:362 libraries/mysql_charsets.lib.php:380 msgid "Greek" msgstr "gresk" -#: libraries/messages.inc.php:367 +#: libraries/messages.inc.php:363 msgid "\"gzipped\"" msgstr "Komprimert (gz)" -#: libraries/messages.inc.php:369 server_status.php:250 +#: libraries/messages.inc.php:365 server_status.php:250 msgid "Handler" msgstr "Handler" -#: libraries/messages.inc.php:370 server_synchronize.php:464 +#: libraries/messages.inc.php:366 server_synchronize.php:464 msgid "Selected target tables have been synchronized with source tables." msgstr "Valgte måltabeller har blitt synkronisert med kildetabeller." -#: libraries/messages.inc.php:372 libraries/mysql_charsets.lib.php:374 +#: libraries/messages.inc.php:368 libraries/mysql_charsets.lib.php:374 msgid "Hebrew" msgstr "hebraisk" -#: libraries/messages.inc.php:373 pmd_general.php:83 +#: libraries/messages.inc.php:369 pmd_general.php:83 msgid "Help" msgstr "Hjelp" -#: libraries/messages.inc.php:374 +#: libraries/messages.inc.php:370 msgid "Use hexadecimal for BLOB" msgstr "Bruk heksadesimal for BLOB" -#: libraries/messages.inc.php:376 pmd_general.php:120 +#: libraries/messages.inc.php:372 pmd_general.php:120 msgid "Hide/Show all" msgstr "Skjul/Vis alle" -#: libraries/messages.inc.php:377 pmd_general.php:124 +#: libraries/messages.inc.php:373 pmd_general.php:124 msgid "Hide/Show Tables with no relation" msgstr "Skjul/Vis tabeller uten relasjoner" -#: libraries/messages.inc.php:378 libraries/navigation_header.inc.php:54 +#: libraries/messages.inc.php:374 libraries/navigation_header.inc.php:54 #: libraries/navigation_header.inc.php:57 #: libraries/navigation_header.inc.php:58 msgid "Home" msgstr "Hjem" -#: libraries/messages.inc.php:379 main.php:233 +#: libraries/messages.inc.php:375 main.php:233 msgid "Official Homepage" msgstr "Offisiell phpMyAdmin-hjemmeside" -#: libraries/messages.inc.php:382 libraries/replication_gui.lib.php:327 +#: libraries/messages.inc.php:378 libraries/replication_gui.lib.php:327 #: server_privileges.php:753 msgid "" "When Host table is used, this field is ignored and values stored in Host " @@ -3867,98 +3867,98 @@ msgstr "" "Når vertstabellen er brukt så ignoreres dette feltet og verdier lagret i " "vertstabellen blir brukt istedet." -#: libraries/messages.inc.php:383 +#: libraries/messages.inc.php:379 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/messages.inc.php:384 libraries/mysql_charsets.lib.php:253 +#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:253 msgid "Hungarian" msgstr "ungarsk" -#: libraries/messages.inc.php:386 libraries/mysql_charsets.lib.php:256 +#: libraries/messages.inc.php:382 libraries/mysql_charsets.lib.php:256 msgid "Icelandic" msgstr "Islandsk" -#: libraries/messages.inc.php:387 server_processlist.php:53 +#: libraries/messages.inc.php:383 server_processlist.php:53 msgid "ID" msgstr "ID" -#: libraries/messages.inc.php:388 libraries/mult_submits.inc.php:108 +#: libraries/messages.inc.php:384 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:479 msgid "Fulltext" msgstr "Fulltekst" -#: libraries/messages.inc.php:389 +#: libraries/messages.inc.php:385 msgid "Ignore duplicate rows" msgstr "Ignorer dupliserte rader" -#: libraries/messages.inc.php:390 tbl_change.php:302 tbl_indexes.php:200 +#: libraries/messages.inc.php:386 tbl_change.php:302 tbl_indexes.php:200 #: tbl_indexes.php:225 msgid "Ignore" msgstr "Ignorer" -#: libraries/messages.inc.php:391 +#: libraries/messages.inc.php:387 msgid "Use ignore inserts" msgstr "Bruk ignore inserts" -#: libraries/messages.inc.php:392 +#: libraries/messages.inc.php:388 msgid "Column names in first row" msgstr "Kolonnenavn i første rad" -#: libraries/messages.inc.php:393 +#: libraries/messages.inc.php:389 msgid "Do not import empty rows" msgstr "Ikke importer tomme rader" -#: libraries/messages.inc.php:394 pmd_general.php:104 +#: libraries/messages.inc.php:390 pmd_general.php:104 msgid "Import/Export coordinates for PDF schema" msgstr "Importer/Eksporter koordinater for PDF skjema" -#: libraries/messages.inc.php:395 querywindow.php:104 +#: libraries/messages.inc.php:391 querywindow.php:104 msgid "Import files" msgstr "Importer filer" -#: libraries/messages.inc.php:403 +#: libraries/messages.inc.php:399 msgid "Import currencies ($5.00 to 5.00)" msgstr "Importer valuta ($5.00 til 5.00)" -#: libraries/messages.inc.php:404 libraries/messages.inc.php:584 +#: libraries/messages.inc.php:400 libraries/messages.inc.php:580 msgid "Open Document Spreadsheet" msgstr "Open Document regneark" -#: libraries/messages.inc.php:405 +#: libraries/messages.inc.php:401 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "Importer prosenter som ekte desimaler (12.00% til .12)" -#: libraries/messages.inc.php:409 +#: libraries/messages.inc.php:405 msgid "Excel 97-2003 XLS Workbook" msgstr "Excel 97-2003 XLS Workbook" -#: libraries/messages.inc.php:410 +#: libraries/messages.inc.php:406 msgid "Excel 2007 XLSX Workbook" msgstr "Excel 2007 XLSX Workbook" -#: libraries/messages.inc.php:414 libraries/mult_submits.inc.php:98 +#: libraries/messages.inc.php:410 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:476 tbl_structure.php:674 msgid "Index" msgstr "Indeks" -#: libraries/messages.inc.php:415 tbl_indexes.php:168 +#: libraries/messages.inc.php:411 tbl_indexes.php:168 msgid "Index name:" msgstr "Indeksnavn :" -#: libraries/messages.inc.php:416 tbl_indexes.php:174 +#: libraries/messages.inc.php:412 tbl_indexes.php:174 msgid "Index type:" msgstr "Indekstype :" -#: libraries/messages.inc.php:417 sql.php:639 +#: libraries/messages.inc.php:413 sql.php:639 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemer med indeksene i tabellen `%s`" -#: libraries/messages.inc.php:427 main.php:266 +#: libraries/messages.inc.php:423 main.php:266 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -3970,24 +3970,24 @@ msgstr "" "tjener kjører med denne standardinnstillingen, er åpen for misbruk, og du " "burde fikse dette sikkerhetshullet snarest." -#: libraries/messages.inc.php:428 tbl_change.php:1130 +#: libraries/messages.inc.php:424 tbl_change.php:1130 msgid "Insert as new row" msgstr "Sett inn som ny rad" -#: libraries/messages.inc.php:429 sql.php:496 tbl_replace.php:386 +#: libraries/messages.inc.php:425 sql.php:496 tbl_replace.php:386 #, php-format msgid "Inserted row id: %1$d" msgstr "Insatt rad id: %1$d" -#: libraries/messages.inc.php:430 tbl_change.php:1131 +#: libraries/messages.inc.php:426 tbl_change.php:1131 msgid "Insert as new row and ignore errors" msgstr "Sett inn som ny rad og ignorer feil" -#: libraries/messages.inc.php:432 main.php:139 +#: libraries/messages.inc.php:428 main.php:139 msgid "Interface" msgstr "Grensesnitt" -#: libraries/messages.inc.php:433 tbl_relation.php:407 +#: libraries/messages.inc.php:429 tbl_relation.php:407 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -3995,31 +3995,31 @@ msgstr "" "En intern relasjon er ikke nødvendig når en tilsvarende FOREIGN KEY relasjon " "eksisterer." -#: libraries/messages.inc.php:435 pdf_pages.php:303 +#: libraries/messages.inc.php:431 pdf_pages.php:303 msgid "Internal relations" msgstr "Interne relasjoner" -#: libraries/messages.inc.php:438 tbl_indexes.php:256 tbl_structure.php:590 +#: libraries/messages.inc.php:434 tbl_indexes.php:256 tbl_structure.php:590 #: tbl_structure.php:601 msgid "Column count has to be larger than zero." msgstr "Antall kolonner må være større enn null." -#: libraries/messages.inc.php:444 libraries/tbl_properties.inc.php:784 +#: libraries/messages.inc.php:440 libraries/tbl_properties.inc.php:784 #: tbl_structure.php:537 msgid "You have to add at least one field." msgstr "Du må sette inn minst ett felt." -#: libraries/messages.inc.php:449 +#: libraries/messages.inc.php:445 #, php-format msgid "Invalid server index: \"%s\"" msgstr "Ugyldig tjenerindeks: \"%s\"" -#: libraries/messages.inc.php:452 libraries/mysql_charsets.lib.php:259 +#: libraries/messages.inc.php:448 libraries/mysql_charsets.lib.php:259 #: libraries/mysql_charsets.lib.php:349 msgid "Japanese" msgstr "japansk" -#: libraries/messages.inc.php:453 main.php:331 +#: libraries/messages.inc.php:449 main.php:331 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " @@ -4029,109 +4029,109 @@ msgstr "" "phpMyAdmin funksjonalitet vil mangle. F.eks. navigasjonsrammen vil ikke " "oppdatere seg automatisk." -#: libraries/messages.inc.php:454 server_status.php:257 +#: libraries/messages.inc.php:450 server_status.php:257 msgid "Joins" msgstr "Sammenføyninger" -#: libraries/messages.inc.php:457 server_privileges.php:763 +#: libraries/messages.inc.php:453 server_privileges.php:763 msgid "Do not change the password" msgstr "Ikke endre passordet" -#: libraries/messages.inc.php:458 server_status.php:256 +#: libraries/messages.inc.php:454 server_status.php:256 msgid "Key cache" msgstr "Nøkkelmellomlager" -#: libraries/messages.inc.php:462 libraries/mysql_charsets.lib.php:268 +#: libraries/messages.inc.php:458 libraries/mysql_charsets.lib.php:268 #: libraries/mysql_charsets.lib.php:371 msgid "Korean" msgstr "koreansk" -#: libraries/messages.inc.php:466 libraries/select_lang.lib.php:480 +#: libraries/messages.inc.php:462 libraries/select_lang.lib.php:480 #: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492 #, php-format msgid "Unknown language: %1$s." msgstr "Ukjent språk: %1$s." -#: libraries/messages.inc.php:468 +#: libraries/messages.inc.php:464 msgid "Table caption" msgstr "Tabelloverskrift" -#: libraries/messages.inc.php:469 +#: libraries/messages.inc.php:465 msgid "Content of table __TABLE__" msgstr "Innhold i tabell __TABLE__" -#: libraries/messages.inc.php:470 +#: libraries/messages.inc.php:466 msgid "Continued table caption" msgstr "Fortsettet tabelloverskrift" -#: libraries/messages.inc.php:471 +#: libraries/messages.inc.php:467 msgid "(continued)" msgstr "(fortsettet)" -#: libraries/messages.inc.php:472 +#: libraries/messages.inc.php:468 msgid "Include table caption" msgstr "Inkluder tabelloverskrift" -#: libraries/messages.inc.php:473 +#: libraries/messages.inc.php:469 msgid "Label key" msgstr "Merkelappnøkkel" -#: libraries/messages.inc.php:474 +#: libraries/messages.inc.php:470 msgid "LaTeX" msgstr "LaTeX" -#: libraries/messages.inc.php:475 +#: libraries/messages.inc.php:471 msgid "Structure of table __TABLE__" msgstr "Struktur i tabell __TABLE__" -#: libraries/messages.inc.php:476 libraries/mysql_charsets.lib.php:262 +#: libraries/messages.inc.php:472 libraries/mysql_charsets.lib.php:262 msgid "Latvian" msgstr "Latvisk" -#: libraries/messages.inc.php:477 +#: libraries/messages.inc.php:473 msgid "CSV using LOAD DATA" msgstr "CSV med LOAD DATA" -#: libraries/messages.inc.php:478 +#: libraries/messages.inc.php:474 msgid "Use LOCAL keyword" msgstr "Bruk LOCAL nøkkelord" -#: libraries/messages.inc.php:479 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:475 libraries/tbl_properties.inc.php:105 msgid "Length/Values" msgstr "Lengde/Sett*" -#: libraries/messages.inc.php:480 tbl_select.php:295 +#: libraries/messages.inc.php:476 tbl_select.php:295 msgid "Number of rows per page" msgstr "Antall poster per side" -#: libraries/messages.inc.php:484 libraries/mysql_charsets.lib.php:265 +#: libraries/messages.inc.php:480 libraries/mysql_charsets.lib.php:265 msgid "Lithuanian" msgstr "lithauisk" -#: libraries/messages.inc.php:485 libraries/replication_gui.lib.php:302 +#: libraries/messages.inc.php:481 libraries/replication_gui.lib.php:302 #: server_privileges.php:729 msgid "Local" msgstr "Lokal" -#: libraries/messages.inc.php:487 server_privileges.php:669 +#: libraries/messages.inc.php:483 server_privileges.php:669 msgid "Login Information" msgstr "Innlogingsinformasjon" -#: libraries/messages.inc.php:490 libraries/navigation_header.inc.php:67 +#: libraries/messages.inc.php:486 libraries/navigation_header.inc.php:67 #: libraries/navigation_header.inc.php:70 #: libraries/navigation_header.inc.php:71 main.php:99 msgid "Log out" msgstr "Logg ut" -#: libraries/messages.inc.php:497 server_status.php:440 +#: libraries/messages.inc.php:493 server_status.php:440 msgid "max. concurrent connections" msgstr "maks. samtidige tilkoblinger" -#: libraries/messages.inc.php:498 +#: libraries/messages.inc.php:494 msgid "Maximal length of created query" msgstr "Maksimum lengde av opprettet spørring" -#: libraries/messages.inc.php:500 main.php:282 +#: libraries/messages.inc.php:496 main.php:282 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -4141,7 +4141,7 @@ msgstr "" "flerbyte tegnsett. Uten mbstring-tillegget så kan ikke phpMyAdmin splitte " "strenger korrekt og dette kan medføre uønskede resultater." -#: libraries/messages.inc.php:501 main.php:274 +#: libraries/messages.inc.php:497 main.php:274 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -4150,24 +4150,24 @@ msgstr "" "Du har slått på mbstring.func_overload i din PHP konfigurasjon. Denne " "opsjonen er ikke kompatibel med phpMyAdmin og kan medføre skader på data!" -#: libraries/messages.inc.php:502 +#: libraries/messages.inc.php:498 msgid "MediaWiki Table" msgstr "MediaWiki Tabell" -#: libraries/messages.inc.php:503 transformation_overview.php:25 +#: libraries/messages.inc.php:499 transformation_overview.php:25 msgid "Available MIME types" msgstr "Tilgjengelige MIME-typer" -#: libraries/messages.inc.php:504 transformation_overview.php:43 +#: libraries/messages.inc.php:500 transformation_overview.php:43 msgid "Available transformations" msgstr "Tilgjengelige transformationer" -#: libraries/messages.inc.php:505 +#: libraries/messages.inc.php:501 msgctxt "$strMIME_description" msgid "Description" msgstr "Beskrivelse" -#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:580 +#: libraries/messages.inc.php:503 libraries/tbl_properties.inc.php:580 #: transformation_overview.php:60 #, php-format msgid "" @@ -4177,7 +4177,7 @@ msgstr "" "Ingen beskrivelse er tilgjengelig for denne transformasjonen.
Spør " "forfatteren hva %s gjør." -#: libraries/messages.inc.php:509 libraries/tbl_properties.inc.php:137 +#: libraries/messages.inc.php:505 libraries/tbl_properties.inc.php:137 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -4186,7 +4186,7 @@ msgstr "" "For en liste over tilgjengelige transformasjonsvalg, klikk på %" "stransformasjonsbeskrivelser%s" -#: libraries/messages.inc.php:510 libraries/tbl_properties.inc.php:146 +#: libraries/messages.inc.php:506 libraries/tbl_properties.inc.php:146 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -4198,57 +4198,57 @@ msgstr "" "(\"'\") blant disse verdiene så sett en skråstrek foran (eks. '\\\\xyz' " "eller 'a\\'b')." -#: libraries/messages.inc.php:511 libraries/tbl_properties.inc.php:145 +#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:145 msgid "Transformation options" msgstr "Transformasjonsvalg" -#: libraries/messages.inc.php:513 transformation_overview.php:38 +#: libraries/messages.inc.php:509 transformation_overview.php:38 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "" "MIME-typer skrevet i kursiv har ikke en separat transformasjonsfunksjon" -#: libraries/messages.inc.php:515 tbl_indexes.php:162 +#: libraries/messages.inc.php:511 tbl_indexes.php:162 msgid "Modify an index" msgstr "Endre en indeks" -#: libraries/messages.inc.php:517 pmd_general.php:108 +#: libraries/messages.inc.php:513 pmd_general.php:108 msgid "Move Menu" msgstr "Flytt meny" -#: libraries/messages.inc.php:518 tbl_operations.php:276 +#: libraries/messages.inc.php:514 tbl_operations.php:276 msgid "Move table to (database.table):" msgstr "Flytt tabell til (database.tabell):" -#: libraries/messages.inc.php:519 tbl_move_copy.php:56 +#: libraries/messages.inc.php:515 tbl_move_copy.php:56 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabellen %s har blitt flyttet til %s." -#: libraries/messages.inc.php:520 tbl_move_copy.php:46 +#: libraries/messages.inc.php:516 tbl_move_copy.php:46 msgid "Can't move table to same one!" msgstr "Kan ikke flytte tabellen til samme navn!" -#: libraries/messages.inc.php:521 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:517 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 #: libraries/mysql_charsets.lib.php:332 libraries/mysql_charsets.lib.php:354 #: libraries/mysql_charsets.lib.php:365 msgid "multilingual" msgstr "flerspråkelig" -#: libraries/messages.inc.php:534 main.php:193 +#: libraries/messages.inc.php:530 main.php:193 msgid "MySQL charset" msgstr "MySQL-tegnsett" -#: libraries/messages.inc.php:535 main.php:211 +#: libraries/messages.inc.php:531 main.php:211 msgid "MySQL client version" msgstr "MySQL klientversjon" -#: libraries/messages.inc.php:536 main.php:125 +#: libraries/messages.inc.php:532 main.php:125 msgid "MySQL connection collation" msgstr "Kollasjon av MySQL-oppkobling" -#: libraries/messages.inc.php:537 main.php:346 +#: libraries/messages.inc.php:533 main.php:346 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -4257,54 +4257,54 @@ msgstr "" "Din PHP MySQL bibliotekfilversjon %s er forskjellig fra din MySQL " "tjenerversjon %s. Dette kan forårsake uforutsett oppførsel." -#: libraries/messages.inc.php:539 server_status.php:294 +#: libraries/messages.inc.php:535 server_status.php:294 msgid "Show processes" msgstr "Vis prosesser" -#: libraries/messages.inc.php:545 navigation.php:210 server_databases.php:371 +#: libraries/messages.inc.php:541 navigation.php:210 server_databases.php:371 #: server_synchronize.php:1191 msgid "No databases" msgstr "Ingen databaser" -#: libraries/messages.inc.php:546 server_databases.php:52 +#: libraries/messages.inc.php:542 server_databases.php:52 msgid "No databases selected." msgstr "Ingen databaser er valgt." -#: libraries/messages.inc.php:548 libraries/relation.lib.php:1173 +#: libraries/messages.inc.php:544 libraries/relation.lib.php:1173 msgid "no description" msgstr "ingen beskrivelse" -#: libraries/messages.inc.php:552 libraries/zip_extension.lib.php:26 +#: libraries/messages.inc.php:548 libraries/zip_extension.lib.php:26 msgid "No files found inside ZIP archive!" msgstr "Ingen filer funnet inne i ZIP arkivet!" -#: libraries/messages.inc.php:555 tbl_indexes.php:91 +#: libraries/messages.inc.php:551 tbl_indexes.php:91 msgid "No index parts defined!" msgstr "Ingen indeksdeler definert!" -#: libraries/messages.inc.php:556 libraries/mult_submits.inc.php:435 +#: libraries/messages.inc.php:552 libraries/mult_submits.inc.php:435 #: tbl_replace.php:331 msgid "No change" msgstr "Ingen endring" -#: libraries/messages.inc.php:557 +#: libraries/messages.inc.php:553 msgctxt "$strNoneDefault" msgid "None" msgstr "Ingen" -#: libraries/messages.inc.php:560 libraries/plugin_interface.lib.php:312 +#: libraries/messages.inc.php:556 libraries/plugin_interface.lib.php:312 msgid "This format has no options" msgstr "Dette formatet har ingen valg" -#: libraries/messages.inc.php:565 user_password.php:54 +#: libraries/messages.inc.php:561 user_password.php:54 msgid "You don't have sufficient privileges to be here right now!" msgstr "Du har ikke nok rettigheter til å være her nå!" -#: libraries/messages.inc.php:566 tbl_row_action.php:29 +#: libraries/messages.inc.php:562 tbl_row_action.php:29 msgid "No rows selected" msgstr "Ingen rader valgt" -#: libraries/messages.inc.php:569 themes.php:32 +#: libraries/messages.inc.php:565 themes.php:32 #, php-format msgid "" "No themes support; please check your configuration and/or your themes in " @@ -4313,138 +4313,138 @@ msgstr "" "Ikke støtte for maler, kontroller konfigureringen og/eller dine maler i " "katalogen %s." -#: libraries/messages.inc.php:571 libraries/relation.lib.php:95 +#: libraries/messages.inc.php:567 libraries/relation.lib.php:95 msgid "not OK" msgstr "ikke OK" -#: libraries/messages.inc.php:572 server_synchronize.php:400 +#: libraries/messages.inc.php:568 server_synchronize.php:400 #: server_synchronize.php:839 msgid "not present" msgstr "ikke tilstede" -#: libraries/messages.inc.php:573 pdf_pages.php:36 pdf_pages.php:42 +#: libraries/messages.inc.php:569 pdf_pages.php:36 pdf_pages.php:42 #: pdf_pages.php:48 pdf_pages.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "%s tabellen ble ikke funnet eller ikke konfigurert i %s" -#: libraries/messages.inc.php:574 server_privileges.php:804 +#: libraries/messages.inc.php:570 server_privileges.php:804 #: server_privileges.php:2166 msgid "No user(s) found." msgstr "Ingen bruker(e) funnet." -#: libraries/messages.inc.php:578 pmd_general.php:164 +#: libraries/messages.inc.php:574 pmd_general.php:164 msgid "Number of tables" msgstr "Antall tabeller" -#: libraries/messages.inc.php:581 server_databases.php:117 +#: libraries/messages.inc.php:577 server_databases.php:117 #: server_status.php:260 setup/lib/messages.inc.php:117 msgid "Tables" msgstr "Tabeller" -#: libraries/messages.inc.php:583 libraries/relation.lib.php:99 +#: libraries/messages.inc.php:579 libraries/relation.lib.php:99 #: pmd_general.php:340 msgid "OK" msgstr "OK" -#: libraries/messages.inc.php:585 +#: libraries/messages.inc.php:581 msgid "Open Document Text" msgstr "Open Document tekst" -#: libraries/messages.inc.php:588 tbl_select.php:138 +#: libraries/messages.inc.php:584 tbl_select.php:138 msgid "Operator" msgstr "Operator" -#: libraries/messages.inc.php:589 tbl_operations.php:662 +#: libraries/messages.inc.php:585 tbl_operations.php:662 msgid "Optimize" msgstr "Optimaliser" -#: libraries/messages.inc.php:602 libraries/tbl_properties.inc.php:755 +#: libraries/messages.inc.php:598 libraries/tbl_properties.inc.php:755 msgid "PARTITION definition" msgstr "Partisjonsdefinisjon" -#: libraries/messages.inc.php:603 tbl_structure.php:757 +#: libraries/messages.inc.php:599 tbl_structure.php:757 msgid "partitioned" msgstr "partisjonert" -#: libraries/messages.inc.php:604 tbl_operations.php:649 +#: libraries/messages.inc.php:600 tbl_operations.php:649 msgid "Partition maintenance" msgstr "Partisjonsvedlikehold" -#: libraries/messages.inc.php:605 tbl_operations.php:657 +#: libraries/messages.inc.php:601 tbl_operations.php:657 #, php-format msgid "Partition %s" msgstr "Partisjon %s" -#: libraries/messages.inc.php:606 server_privileges.php:1212 +#: libraries/messages.inc.php:602 server_privileges.php:1212 #, php-format msgid "The password for %s was changed successfully." msgstr "Passordet til %s er endret." -#: libraries/messages.inc.php:635 +#: libraries/messages.inc.php:631 #, php-format msgid "Schema of the \"%s\" database - Page %s" msgstr "Skjema for \"%s\"-databasen - Side %s" -#: libraries/messages.inc.php:636 +#: libraries/messages.inc.php:632 #, php-format msgid "The \"%s\" table doesn't exist!" msgstr "Tabellen \"%s\" eksisterer ikke!" -#: libraries/messages.inc.php:637 pdf_schema.php:1013 +#: libraries/messages.inc.php:633 pdf_schema.php:1013 msgid "No tables" msgstr "Ingen tabeller" -#: libraries/messages.inc.php:638 pmd_pdf.php:63 +#: libraries/messages.inc.php:634 pmd_pdf.php:63 msgid "Page has been created" msgstr "Siden har blitt opprettet" -#: libraries/messages.inc.php:639 pmd_pdf.php:65 +#: libraries/messages.inc.php:635 pmd_pdf.php:65 msgid "Page creation failed" msgstr "Sideopprettelsen feilet" -#: libraries/messages.inc.php:640 +#: libraries/messages.inc.php:636 msgid "PDF" msgstr "PDF" -#: libraries/messages.inc.php:641 +#: libraries/messages.inc.php:637 msgid "(Generates a report containing the data of a single table)" msgstr "(Oppretter en rapport som inneholder dataene fra en enkel tabell)" -#: libraries/messages.inc.php:642 +#: libraries/messages.inc.php:638 msgid "Report title" msgstr "Rapporttittel" -#: libraries/messages.inc.php:643 server_status.php:389 server_status.php:434 +#: libraries/messages.inc.php:639 server_status.php:389 server_status.php:434 #: server_status.php:497 server_status.php:555 msgid "per hour" msgstr "per time" -#: libraries/messages.inc.php:644 server_status.php:498 +#: libraries/messages.inc.php:640 server_status.php:498 msgid "per minute" msgstr "per minutt" -#: libraries/messages.inc.php:645 server_status.php:499 +#: libraries/messages.inc.php:641 server_status.php:499 msgid "per second" msgstr "per sekund" -#: libraries/messages.inc.php:646 libraries/mysql_charsets.lib.php:271 +#: libraries/messages.inc.php:642 libraries/mysql_charsets.lib.php:271 msgid "Persian" msgstr "Persisk" -#: libraries/messages.inc.php:647 libraries/mysql_charsets.lib.php:250 +#: libraries/messages.inc.php:643 libraries/mysql_charsets.lib.php:250 msgid "phone book" msgstr "telefonkatalog" -#: libraries/messages.inc.php:648 +#: libraries/messages.inc.php:644 msgid "PHP array" msgstr "PHP array" -#: libraries/messages.inc.php:650 main.php:213 +#: libraries/messages.inc.php:646 main.php:213 msgid "PHP extension" msgstr "PHP tillegg" -#: libraries/messages.inc.php:654 libraries/relation.lib.php:163 +#: libraries/messages.inc.php:650 libraries/relation.lib.php:163 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." @@ -4452,155 +4452,155 @@ msgstr "" "Slå på avansert funksjonalitet i konfigurasjonsfila (config.inc.php), f.eks. med eksempel fra config.sample.inc.php." -#: libraries/messages.inc.php:655 libraries/relation.lib.php:159 +#: libraries/messages.inc.php:651 libraries/relation.lib.php:159 msgid "Quick steps to setup advanced features:" msgstr "Raske steg for å sette opp avansert funksjonalitet:" -#: libraries/messages.inc.php:656 libraries/relation.lib.php:161 +#: libraries/messages.inc.php:652 libraries/relation.lib.php:161 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "Opprett nødvendige tabeller med script/create_tables.sql." -#: libraries/messages.inc.php:657 libraries/relation.lib.php:162 +#: libraries/messages.inc.php:653 libraries/relation.lib.php:162 msgid "Create a pma user and give access to these tables." msgstr "Opprett en pma bruker og gi tilgang til disse tabellene." -#: libraries/messages.inc.php:658 libraries/relation.lib.php:164 +#: libraries/messages.inc.php:654 libraries/relation.lib.php:164 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" "Re-logginn til phpMyAdmin for å laste den oppdaterte konfigurasjonsfila." -#: libraries/messages.inc.php:661 libraries/mysql_charsets.lib.php:274 +#: libraries/messages.inc.php:657 libraries/mysql_charsets.lib.php:274 msgid "Polish" msgstr "Polsk" -#: libraries/messages.inc.php:662 libraries/replication_gui.lib.php:67 +#: libraries/messages.inc.php:658 libraries/replication_gui.lib.php:67 #: server_synchronize.php:1163 msgid "Port" msgstr "Port" -#: libraries/messages.inc.php:667 tbl_indexes.php:67 +#: libraries/messages.inc.php:663 tbl_indexes.php:67 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Navnet til primærnøkkelen må være... PRIMARY!" -#: libraries/messages.inc.php:668 tbl_indexes.php:184 +#: libraries/messages.inc.php:664 tbl_indexes.php:184 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" "(\"PRIMARY\" være navnet til og bare til en primærnøkkel!)" -#: libraries/messages.inc.php:669 libraries/mult_submits.inc.php:76 +#: libraries/messages.inc.php:665 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:474 msgid "Primary" msgstr "Primær" -#: libraries/messages.inc.php:673 server_privileges.php:227 +#: libraries/messages.inc.php:669 server_privileges.php:227 msgid "Includes all privileges except GRANT." msgstr "Inkluder alle privilegier unntatt GRANT." -#: libraries/messages.inc.php:674 server_privileges.php:153 +#: libraries/messages.inc.php:670 server_privileges.php:153 #: server_privileges.php:476 msgid "Allows altering the structure of existing tables." msgstr "Tillater endring av struktur på eksisterende tabeller." -#: libraries/messages.inc.php:675 server_privileges.php:169 +#: libraries/messages.inc.php:671 server_privileges.php:169 #: server_privileges.php:482 msgid "Allows altering and dropping stored routines." msgstr "Tillater endring og sletting av lagrede rutiner." -#: libraries/messages.inc.php:676 server_privileges.php:145 +#: libraries/messages.inc.php:672 server_privileges.php:145 #: server_privileges.php:475 msgid "Allows creating new databases and tables." msgstr "Tillater oppretting av nye databaser og tabeller." -#: libraries/messages.inc.php:677 server_privileges.php:168 +#: libraries/messages.inc.php:673 server_privileges.php:168 #: server_privileges.php:481 msgid "Allows creating stored routines." msgstr "Tillater oppreting av lagrede rutiner." -#: libraries/messages.inc.php:678 server_privileges.php:475 +#: libraries/messages.inc.php:674 server_privileges.php:475 msgid "Allows creating new tables." msgstr "Tillater oppretting av nye tabeller." -#: libraries/messages.inc.php:679 server_privileges.php:156 +#: libraries/messages.inc.php:675 server_privileges.php:156 #: server_privileges.php:479 msgid "Allows creating temporary tables." msgstr "Tillater oppretting av midlertidige tabeller." -#: libraries/messages.inc.php:680 server_privileges.php:170 +#: libraries/messages.inc.php:676 server_privileges.php:170 #: server_privileges.php:515 msgid "Allows creating, dropping and renaming user accounts." msgstr "Tillater oppretting, sletting og navneendring av brukerkontoer." -#: libraries/messages.inc.php:681 server_privileges.php:160 +#: libraries/messages.inc.php:677 server_privileges.php:160 #: server_privileges.php:164 server_privileges.php:487 #: server_privileges.php:491 msgid "Allows creating new views." msgstr "Tillater oppretting av nye visninger." -#: libraries/messages.inc.php:682 server_privileges.php:144 +#: libraries/messages.inc.php:678 server_privileges.php:144 #: server_privileges.php:467 msgid "Allows deleting data." msgstr "Tillater sletting av data." -#: libraries/messages.inc.php:683 server_privileges.php:146 +#: libraries/messages.inc.php:679 server_privileges.php:146 #: server_privileges.php:478 msgid "Allows dropping databases and tables." msgstr "Tillater sletting av databaser og tabeller." -#: libraries/messages.inc.php:684 server_privileges.php:478 +#: libraries/messages.inc.php:680 server_privileges.php:478 msgid "Allows dropping tables." msgstr "Tillater sletting av tabeller." -#: libraries/messages.inc.php:685 server_privileges.php:161 +#: libraries/messages.inc.php:681 server_privileges.php:161 #: server_privileges.php:495 msgid "Allows to set up events for the event scheduler" msgstr "Tillater å sette opp hendelser for hendelseskalenderen" -#: libraries/messages.inc.php:686 server_privileges.php:171 +#: libraries/messages.inc.php:682 server_privileges.php:171 #: server_privileges.php:483 msgid "Allows executing stored routines." msgstr "Tillater utføring av lagrede rutiner." -#: libraries/messages.inc.php:687 server_privileges.php:150 +#: libraries/messages.inc.php:683 server_privileges.php:150 #: server_privileges.php:470 msgid "Allows importing data from and exporting data into files." msgstr "Tillater import og eksport av data til og fra filer." -#: libraries/messages.inc.php:688 server_privileges.php:501 +#: libraries/messages.inc.php:684 server_privileges.php:501 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Tillater å legge til brukere og privilegier uten å oppfriske " "privilegietabellene." -#: libraries/messages.inc.php:689 server_privileges.php:152 +#: libraries/messages.inc.php:685 server_privileges.php:152 #: server_privileges.php:477 msgid "Allows creating and dropping indexes." msgstr "Tillater oppretting og sletting av indekser." -#: libraries/messages.inc.php:690 server_privileges.php:142 +#: libraries/messages.inc.php:686 server_privileges.php:142 #: server_privileges.php:403 server_privileges.php:465 msgid "Allows inserting and replacing data." msgstr "Tillater å legge til og erstatte data." -#: libraries/messages.inc.php:691 server_privileges.php:157 +#: libraries/messages.inc.php:687 server_privileges.php:157 #: server_privileges.php:510 msgid "Allows locking tables for the current thread." msgstr "Tillater låsing av tabeller for den kjørende tråden." -#: libraries/messages.inc.php:692 server_privileges.php:607 +#: libraries/messages.inc.php:688 server_privileges.php:607 #: server_privileges.php:609 msgid "Limits the number of new connections the user may open per hour." msgstr "Begrenser antall nye tilkoblinger brukeren kan åpne per time." -#: libraries/messages.inc.php:693 server_privileges.php:595 +#: libraries/messages.inc.php:689 server_privileges.php:595 #: server_privileges.php:597 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Begrenser antall spørringer brukeren kan sende til tjeneren per time." -#: libraries/messages.inc.php:694 server_privileges.php:601 +#: libraries/messages.inc.php:690 server_privileges.php:601 #: server_privileges.php:603 msgid "" "Limits the number of commands that change any table or database the user may " @@ -4609,60 +4609,60 @@ msgstr "" "Begrenser antall kommandoer som kan endre tabeller eller databaser brukeren " "kan utføre per time." -#: libraries/messages.inc.php:695 server_privileges.php:613 +#: libraries/messages.inc.php:691 server_privileges.php:613 #: server_privileges.php:615 msgid "Limits the number of simultaneous connections the user may have." msgstr "Begrens antall samtidige tilkoblinger brukeren kan ha." -#: libraries/messages.inc.php:696 server_privileges.php:149 +#: libraries/messages.inc.php:692 server_privileges.php:149 #: server_privileges.php:505 msgid "Allows viewing processes of all users" msgstr "Tillater visning av prosessene til alle brukere" -#: libraries/messages.inc.php:697 server_privileges.php:151 +#: libraries/messages.inc.php:693 server_privileges.php:151 #: server_privileges.php:409 server_privileges.php:511 msgid "Has no effect in this MySQL version." msgstr "har ingen effekt i denne versjonen av MySQL." -#: libraries/messages.inc.php:698 server_privileges.php:147 +#: libraries/messages.inc.php:694 server_privileges.php:147 #: server_privileges.php:506 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Tillater oppfrisking av tjenerinnstillinger og oppfrisking av mellomlager." -#: libraries/messages.inc.php:699 server_privileges.php:159 +#: libraries/messages.inc.php:695 server_privileges.php:159 #: server_privileges.php:513 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Gir tillatelse til brukeren til å spørre hvor replikasjonsslaver eller -" "tjenere er." -#: libraries/messages.inc.php:700 server_privileges.php:158 +#: libraries/messages.inc.php:696 server_privileges.php:158 #: server_privileges.php:514 msgid "Needed for the replication slaves." msgstr "Trenges av replikasjonsslavene." -#: libraries/messages.inc.php:701 server_privileges.php:141 +#: libraries/messages.inc.php:697 server_privileges.php:141 #: server_privileges.php:400 server_privileges.php:464 msgid "Allows reading data." msgstr "Tillater lesing av data." -#: libraries/messages.inc.php:702 server_privileges.php:154 +#: libraries/messages.inc.php:698 server_privileges.php:154 #: server_privileges.php:508 msgid "Gives access to the complete list of databases." msgstr "Gir adgang til komplett liste over databaser." -#: libraries/messages.inc.php:703 server_privileges.php:165 +#: libraries/messages.inc.php:699 server_privileges.php:165 #: server_privileges.php:167 server_privileges.php:480 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Tillater utføring av SHOW CREATE VIEW spørringer." -#: libraries/messages.inc.php:704 server_privileges.php:148 +#: libraries/messages.inc.php:700 server_privileges.php:148 #: server_privileges.php:507 msgid "Allows shutting down the server." msgstr "Tillater avslutting av tjener." -#: libraries/messages.inc.php:705 server_privileges.php:155 +#: libraries/messages.inc.php:701 server_privileges.php:155 #: server_privileges.php:504 msgid "" "Allows connecting, even if maximum number of connections is reached; " @@ -4673,55 +4673,55 @@ msgstr "" "fleste administrative operasjoner som å sette globale variabler eller " "avslutting av andre brukeres tråder." -#: libraries/messages.inc.php:706 server_privileges.php:162 +#: libraries/messages.inc.php:702 server_privileges.php:162 #: server_privileges.php:496 msgid "Allows creating and dropping triggers" msgstr "Tillater opprettelse og sletting av triggere" -#: libraries/messages.inc.php:707 server_privileges.php:143 +#: libraries/messages.inc.php:703 server_privileges.php:143 #: server_privileges.php:406 server_privileges.php:466 msgid "Allows changing data." msgstr "Tillater endring av data." -#: libraries/messages.inc.php:708 server_privileges.php:221 +#: libraries/messages.inc.php:704 server_privileges.php:221 msgid "No privileges." msgstr "Ingen privilegier." -#: libraries/messages.inc.php:710 server_privileges.php:1296 +#: libraries/messages.inc.php:706 server_privileges.php:1296 msgid "The privileges were reloaded successfully." msgstr "Oppfriskingen av privilegiene lyktes." -#: libraries/messages.inc.php:712 libraries/server_links.inc.php:80 +#: libraries/messages.inc.php:708 libraries/server_links.inc.php:80 msgid "Processes" msgstr "Prosesser" -#: libraries/messages.inc.php:714 main.php:187 +#: libraries/messages.inc.php:710 main.php:187 msgid "Protocol version" msgstr "Protokollversjon" -#: libraries/messages.inc.php:715 +#: libraries/messages.inc.php:711 msgid "Put fields names in the first row" msgstr "Sett inn feltnavn i første rad" -#: libraries/messages.inc.php:720 server_synchronize.php:1003 +#: libraries/messages.inc.php:716 server_synchronize.php:1003 msgid "The following queries have been executed:" msgstr "Følgende spørringer har blitt utført:" -#: libraries/messages.inc.php:721 server_status.php:251 +#: libraries/messages.inc.php:717 server_status.php:251 msgid "Query cache" msgstr "Spørringsmellomlager" -#: libraries/messages.inc.php:722 libraries/navigation_header.inc.php:80 +#: libraries/messages.inc.php:718 libraries/navigation_header.inc.php:80 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 setup/lib/messages.inc.php:122 msgid "Query window" msgstr "Spørringsvindu" -#: libraries/messages.inc.php:725 querywindow.php:109 querywindow.php:217 +#: libraries/messages.inc.php:721 querywindow.php:109 querywindow.php:217 msgid "SQL history" msgstr "SQL-historie" -#: libraries/messages.inc.php:726 server_status.php:490 +#: libraries/messages.inc.php:722 server_status.php:490 #, php-format msgid "" "Query statistics: Since its startup, %s queries have been sent to the " @@ -4730,93 +4730,93 @@ msgstr "" "Spørrings statistikk: Siden oppstart, har %s spørringer blitt sendt " "til tjeneren." -#: libraries/messages.inc.php:728 server_status.php:554 +#: libraries/messages.inc.php:724 server_status.php:554 msgid "Query type" msgstr "Spørringstype" -#: libraries/messages.inc.php:729 libraries/sql_query_form.lib.php:381 +#: libraries/messages.inc.php:725 libraries/sql_query_form.lib.php:381 msgid "Do not overwrite this query from outside the window" msgstr "Ikke overskriv denne spørringen fra andre vinduer" -#: libraries/messages.inc.php:732 tbl_operations.php:663 +#: libraries/messages.inc.php:728 tbl_operations.php:663 msgid "Rebuild" msgstr "Gjenoppbygg" -#: libraries/messages.inc.php:733 server_status.php:394 +#: libraries/messages.inc.php:729 server_status.php:394 msgid "Received" msgstr "Mottatt" -#: libraries/messages.inc.php:734 pmd_pdf.php:89 +#: libraries/messages.inc.php:730 pmd_pdf.php:89 msgid "recommended" msgstr "anbefalt" -#: libraries/messages.inc.php:736 tbl_operations.php:702 +#: libraries/messages.inc.php:732 tbl_operations.php:702 msgid "Check referential integrity:" msgstr "Sjekk referanseintegritet:" -#: libraries/messages.inc.php:740 pdf_schema.php:1032 pdf_schema.php:1141 +#: libraries/messages.inc.php:736 pdf_schema.php:1032 pdf_schema.php:1141 msgid "Relational schema" msgstr "Relasjonsskjema" -#: libraries/messages.inc.php:744 tbl_relation.php:399 +#: libraries/messages.inc.php:740 tbl_relation.php:399 msgid "Relations" msgstr "Relasjoner" -#: libraries/messages.inc.php:745 tbl_structure.php:507 tbl_structure.php:509 +#: libraries/messages.inc.php:741 tbl_structure.php:507 tbl_structure.php:509 msgid "Relation view" msgstr "Relasjonsvisning" -#: libraries/messages.inc.php:746 server_privileges.php:1246 +#: libraries/messages.inc.php:742 server_privileges.php:1246 msgid "Reloading the privileges" msgstr "Oppfrisker privilegiene" -#: libraries/messages.inc.php:747 navigation.php:66 navigation.php:67 +#: libraries/messages.inc.php:743 navigation.php:66 navigation.php:67 #: navigation.php:70 msgid "Reload navigation frame" msgstr "Endre navigasjonsrammen" -#: libraries/messages.inc.php:748 pmd_general.php:80 +#: libraries/messages.inc.php:744 pmd_general.php:80 msgid "Reload" msgstr "Oppdater" -#: libraries/messages.inc.php:749 libraries/server_synchronize.lib.php:1345 +#: libraries/messages.inc.php:745 libraries/server_synchronize.lib.php:1345 #: libraries/server_synchronize.lib.php:1371 msgid "Remote server" msgstr "Fjerntjener" -#: libraries/messages.inc.php:750 +#: libraries/messages.inc.php:746 msgid "Remove CRLF characters within fields" msgstr "Fjern CRLF tegn i felter" -#: libraries/messages.inc.php:751 tbl_operations.php:676 +#: libraries/messages.inc.php:747 tbl_operations.php:676 msgid "Remove partitioning" msgstr "Fjern partisjonering" -#: libraries/messages.inc.php:752 server_privileges.php:1575 +#: libraries/messages.inc.php:748 server_privileges.php:1575 msgid "Remove selected users" msgstr "Fjern valgte brukere" -#: libraries/messages.inc.php:755 tbl_operations.php:338 +#: libraries/messages.inc.php:751 tbl_operations.php:338 msgid "Rename table to" msgstr "Endre tabellens navn" -#: libraries/messages.inc.php:756 view_operations.php:93 +#: libraries/messages.inc.php:752 view_operations.php:93 msgid "Rename view to" msgstr "Endre tabellens navn" -#: libraries/messages.inc.php:757 tbl_operations.php:664 +#: libraries/messages.inc.php:753 tbl_operations.php:664 msgid "Repair" msgstr "Reparer" -#: libraries/messages.inc.php:759 +#: libraries/messages.inc.php:755 msgid "Replace NULL by" msgstr "Erstatt NULL med" -#: libraries/messages.inc.php:760 +#: libraries/messages.inc.php:756 msgid "Replace table data with file" msgstr "Erstatt tabell med filen" -#: libraries/messages.inc.php:761 server_replication.php:228 +#: libraries/messages.inc.php:757 server_replication.php:228 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -4824,44 +4824,44 @@ msgstr "" "Legg til følgende linjer på slutten av din my.cnf og restart MySQL tjeneren " "etterpå.." -#: libraries/messages.inc.php:762 libraries/replication_gui.lib.php:236 +#: libraries/messages.inc.php:758 libraries/replication_gui.lib.php:236 #: server_replication.php:194 msgid "Add slave replication user" msgstr "Legg til slavereplikasjonsbruker" -#: libraries/messages.inc.php:763 server_replication.php:74 +#: libraries/messages.inc.php:759 server_replication.php:74 #, php-format msgid "Master server changed succesfully to %s" msgstr "Mastertjener endret til %s" -#: libraries/messages.inc.php:764 server_replication.php:182 +#: libraries/messages.inc.php:760 server_replication.php:182 msgid "This server is configured as master in a replication process." msgstr "Denne tjeneren er konfigurert som master i en replikasjonsprosess." -#: libraries/messages.inc.php:765 server_replication.php:322 +#: libraries/messages.inc.php:761 server_replication.php:322 msgid "Control slave:" msgstr "Kontrollslave:" -#: libraries/messages.inc.php:766 server_replication.php:65 +#: libraries/messages.inc.php:762 server_replication.php:65 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" "Kan ikke lese masterloggposisjon. Muligens privilegieproblem på master." -#: libraries/messages.inc.php:767 server_replication.php:58 +#: libraries/messages.inc.php:763 server_replication.php:58 #, php-format msgid "Unable to connect to master %s." msgstr "Kan ikke koble til master %s." -#: libraries/messages.inc.php:768 server_replication.php:221 +#: libraries/messages.inc.php:764 server_replication.php:221 msgid "Replicate all databases; Ignore:" msgstr "Repliker alle databaser; Ignorer:" -#: libraries/messages.inc.php:769 server_replication.php:222 +#: libraries/messages.inc.php:765 server_replication.php:222 msgid "Ignore all databases; Replicate:" msgstr "Ignorer alle databaser; repliker:" -#: libraries/messages.inc.php:770 server_replication.php:218 +#: libraries/messages.inc.php:766 server_replication.php:218 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -4875,16 +4875,16 @@ msgstr "" "databasene) eller du kan velge å ignorere alle databaser som standard og " "tillate bare enkelte databaser å bli replikert. Vennligst velg modus:" -#: libraries/messages.inc.php:771 server_replication.php:217 +#: libraries/messages.inc.php:767 server_replication.php:217 msgid "Master configuration" msgstr "Masterkonfigurering" -#: libraries/messages.inc.php:772 server_replication.php:181 +#: libraries/messages.inc.php:768 server_replication.php:181 #: server_replication.php:209 msgid "Master replication" msgstr "Masterreplikasjon" -#: libraries/messages.inc.php:774 server_replication.php:230 +#: libraries/messages.inc.php:770 server_replication.php:230 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " @@ -4894,11 +4894,11 @@ msgstr "" "vil du se en melding som informerer deg at denne tjeneren er " "konfigurert som master" -#: libraries/messages.inc.php:775 server_replication.php:225 +#: libraries/messages.inc.php:771 server_replication.php:225 msgid "Please select databases:" msgstr "Vennligst velg databaser:" -#: libraries/messages.inc.php:776 server_replication.php:210 +#: libraries/messages.inc.php:772 server_replication.php:210 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -4907,7 +4907,7 @@ msgstr "" "Denne tjeneren er ikke konfigurert som master i en replikasjonsprosess. " "Ønsker du å konfigurere den?" -#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:188 +#: libraries/messages.inc.php:773 libraries/replication_gui.lib.php:188 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." @@ -4915,47 +4915,47 @@ msgstr "" "Kun slaver startet med --report-host=host_name opsjonen er synlig i denne " "lista." -#: libraries/messages.inc.php:778 server_replication.php:187 +#: libraries/messages.inc.php:774 server_replication.php:187 msgid "Show connected slaves" msgstr "Vis tilkoblede slaver" -#: libraries/messages.inc.php:779 libraries/messages.inc.php:885 +#: libraries/messages.inc.php:775 libraries/messages.inc.php:881 #: server_replication.php:184 server_status.php:281 msgid "Show master status" msgstr "Vis masterstatus" -#: libraries/messages.inc.php:780 server_replication.php:334 +#: libraries/messages.inc.php:776 server_replication.php:334 msgid "Skipping error(s) might lead into unsynchronized master and slave!" msgstr "Å hoppe over feil kan føre til usynkroniserte master og slave!" -#: libraries/messages.inc.php:781 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:51 #: server_replication.php:347 msgid "Change or reconfigure master server" msgstr "Endre eller rekonfigurer mastertjener" -#: libraries/messages.inc.php:782 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:778 libraries/replication_gui.lib.php:51 msgid "Slave configuration" msgstr "Slavekonfigurasjon" -#: libraries/messages.inc.php:783 server_replication.php:305 +#: libraries/messages.inc.php:779 server_replication.php:305 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "Tjener er konfigurert som slave i en replikasjonsprosess. Ønsker du å:" -#: libraries/messages.inc.php:784 server_replication.php:332 +#: libraries/messages.inc.php:780 server_replication.php:332 msgid "Error management:" msgstr "Feilbehandling:" -#: libraries/messages.inc.php:785 server_replication.php:328 +#: libraries/messages.inc.php:781 server_replication.php:328 #, php-format msgid "IO Thread %s only" msgstr "Kun IO tråd %s" -#: libraries/messages.inc.php:786 server_replication.php:296 +#: libraries/messages.inc.php:782 server_replication.php:296 msgid "Slave IO Thread not running!" msgstr "Slave IO Thread kjører ikke!" -#: libraries/messages.inc.php:787 server_replication.php:355 +#: libraries/messages.inc.php:783 server_replication.php:355 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -4964,40 +4964,40 @@ msgstr "" "Denne tjeneren er ikke konfigurert som master i en replikasjonsprosess. " "Ønsker du å konfigurere den?" -#: libraries/messages.inc.php:788 server_replication.php:326 +#: libraries/messages.inc.php:784 server_replication.php:326 msgid "Reset slave" msgstr "Resett slave" -#: libraries/messages.inc.php:789 server_replication.php:308 +#: libraries/messages.inc.php:785 server_replication.php:308 msgid "See slave status table" msgstr "Se slavestatustabell" -#: libraries/messages.inc.php:790 server_replication.php:336 +#: libraries/messages.inc.php:786 server_replication.php:336 msgid "Skip current error" msgstr "Hopp over nåværende feil" -#: libraries/messages.inc.php:791 server_replication.php:340 +#: libraries/messages.inc.php:787 server_replication.php:340 msgid "errors." msgstr "feil." -#: libraries/messages.inc.php:792 server_replication.php:337 +#: libraries/messages.inc.php:788 server_replication.php:337 msgid "Skip next" msgstr "Hopp over neste" -#: libraries/messages.inc.php:793 server_replication.php:248 +#: libraries/messages.inc.php:789 server_replication.php:248 msgid "Slave replication" msgstr "Slavereplikasjon" -#: libraries/messages.inc.php:794 server_replication.php:293 +#: libraries/messages.inc.php:790 server_replication.php:293 msgid "Slave SQL Thread not running!" msgstr "Slave SQL Thread kjører ikke!" -#: libraries/messages.inc.php:795 server_replication.php:327 +#: libraries/messages.inc.php:791 server_replication.php:327 #, php-format msgid "SQL Thread %s only" msgstr "Kun SQL tråd %s" -#: libraries/messages.inc.php:796 +#: libraries/messages.inc.php:792 #, php-format msgid "" "This MySQL server works as %s in replication process. For further " @@ -5008,158 +5008,158 @@ msgstr "" "om replikasjonsstatusen for tjeneren, gå til replikasjonsseksjonen." -#: libraries/messages.inc.php:797 +#: libraries/messages.inc.php:793 msgid "Master status" msgstr "Masterstatus" -#: libraries/messages.inc.php:798 server_status.php:721 +#: libraries/messages.inc.php:794 server_status.php:721 msgid "Replication status" msgstr "Replikasjonsstatus" -#: libraries/messages.inc.php:799 +#: libraries/messages.inc.php:795 msgid "Slave status" msgstr "Slavestatus" -#: libraries/messages.inc.php:800 server_replication.php:311 +#: libraries/messages.inc.php:796 server_replication.php:311 msgid "Synchronize databases with master" msgstr "Synkroniser databaser med master" -#: libraries/messages.inc.php:801 server_replication.php:71 +#: libraries/messages.inc.php:797 server_replication.php:71 msgid "Unable to change master" msgstr "Kan ikke endre master" -#: libraries/messages.inc.php:802 server_replication.php:51 +#: libraries/messages.inc.php:798 server_replication.php:51 msgid "Unknown error" msgstr "Ukjent feil" -#: libraries/messages.inc.php:803 main.php:163 pdf_pages.php:344 +#: libraries/messages.inc.php:799 main.php:163 pdf_pages.php:344 #: setup/lib/FormDisplay.tpl.php:216 tbl_change.php:1175 msgid "Reset" msgstr "Tilbakestill" -#: libraries/messages.inc.php:804 server_privileges.php:591 +#: libraries/messages.inc.php:800 server_privileges.php:591 msgid "Resource limits" msgstr "Ressursbegrensninger" -#: libraries/messages.inc.php:805 tbl_change.php:1209 +#: libraries/messages.inc.php:801 tbl_change.php:1209 #, php-format msgid "Restart insertion with %s rows" msgstr "Restarte innsettinga med %s rader" -#: libraries/messages.inc.php:807 server_privileges.php:1578 +#: libraries/messages.inc.php:803 server_privileges.php:1578 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Tilbakekall alle aktive privilegier fra brukerne og slett dem etterpå." -#: libraries/messages.inc.php:808 server_privileges.php:1176 +#: libraries/messages.inc.php:804 server_privileges.php:1176 #, php-format msgid "You have revoked the privileges for %s" msgstr "Du har fjernet privilegiene til %s" -#: libraries/messages.inc.php:809 server_privileges.php:1333 +#: libraries/messages.inc.php:805 server_privileges.php:1333 msgid "Revoke" msgstr "Tilbakekall" -#: libraries/messages.inc.php:810 libraries/mysql_charsets.lib.php:280 +#: libraries/messages.inc.php:806 libraries/mysql_charsets.lib.php:280 msgid "Romanian" msgstr "Rumensk" -#: libraries/messages.inc.php:813 tbl_printview.php:404 tbl_structure.php:786 +#: libraries/messages.inc.php:809 tbl_printview.php:404 tbl_structure.php:786 msgid "Row length" msgstr "Radlengde" -#: libraries/messages.inc.php:815 tbl_printview.php:414 tbl_structure.php:794 +#: libraries/messages.inc.php:811 tbl_printview.php:414 tbl_structure.php:794 msgid " Row size " msgstr " Radstørrelse " -#: libraries/messages.inc.php:821 tbl_printview.php:366 tbl_structure.php:726 +#: libraries/messages.inc.php:817 tbl_printview.php:366 tbl_structure.php:726 msgid "Row Statistics" msgstr "Radstatistikk" -#: libraries/messages.inc.php:822 +#: libraries/messages.inc.php:818 #, php-format msgid "running on %s" msgstr "som kjører på %s" -#: libraries/messages.inc.php:824 libraries/sql_query_form.lib.php:223 +#: libraries/messages.inc.php:820 libraries/sql_query_form.lib.php:223 #, php-format msgid "Run SQL query/queries on server %s" msgstr "Kjør SQL spørring/spørringer på tjener %s" -#: libraries/messages.inc.php:825 libraries/sql_query_form.lib.php:240 +#: libraries/messages.inc.php:821 libraries/sql_query_form.lib.php:240 #: libraries/sql_query_form.lib.php:265 #, php-format msgid "Run SQL query/queries on database %s" msgstr "Kjør SQL spørring/spørringer mot databasen %s" -#: libraries/messages.inc.php:826 libraries/mysql_charsets.lib.php:337 +#: libraries/messages.inc.php:822 libraries/mysql_charsets.lib.php:337 msgid "Russian" msgstr "russisk" -#: libraries/messages.inc.php:829 pmd_general.php:68 +#: libraries/messages.inc.php:825 pmd_general.php:68 msgid "Save position" msgstr "Lagre posisjon" -#: libraries/messages.inc.php:830 libraries/tbl_properties.inc.php:776 +#: libraries/messages.inc.php:826 libraries/tbl_properties.inc.php:776 #: pdf_pages.php:484 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:214 setup/lib/FormDisplay.tpl.php:215 #: tbl_change.php:1126 tbl_indexes.php:248 tbl_relation.php:566 msgid "Save" msgstr "Lagre" -#: libraries/messages.inc.php:831 +#: libraries/messages.inc.php:827 msgid "The scale factor is too small to fit the schema on one page" msgstr "Skaleringsfaktoren er for liten til å romme alt på en side" -#: libraries/messages.inc.php:843 main.php:298 +#: libraries/messages.inc.php:839 main.php:298 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "Konfigurasjonsfila trenger nå et hemmelig passordfrase (blowfish_secret)." -#: libraries/messages.inc.php:844 navigation.php:353 navigation.php:516 +#: libraries/messages.inc.php:840 navigation.php:353 navigation.php:516 msgid "Please select a database" msgstr "Vennligst velg en database" -#: libraries/messages.inc.php:846 server_binlog.php:120 +#: libraries/messages.inc.php:842 server_binlog.php:120 msgid "Select binary log to view" msgstr "Velg binærlogg for visning" -#: libraries/messages.inc.php:847 tbl_select.php:270 +#: libraries/messages.inc.php:843 tbl_select.php:270 msgid "Select fields (at least one):" msgstr "Velg felt (minst ett):" -#: libraries/messages.inc.php:851 pdf_pages.php:320 +#: libraries/messages.inc.php:847 pdf_pages.php:320 msgid "Select Tables" msgstr "Velg tabeller" -#: libraries/messages.inc.php:853 server_status.php:404 +#: libraries/messages.inc.php:849 server_status.php:404 msgid "Sent" msgstr "Sendt" -#: libraries/messages.inc.php:857 libraries/select_server.lib.php:45 +#: libraries/messages.inc.php:853 libraries/select_server.lib.php:45 #: setup/frames/index.inc.php:97 setup/lib/messages.inc.php:115 msgid "Servers" msgstr "Tjenere" -#: libraries/messages.inc.php:858 server_status.php:255 +#: libraries/messages.inc.php:854 server_status.php:255 msgid "Delayed inserts" msgstr "Forsinkede innsettinger" -#: libraries/messages.inc.php:859 server_status.php:46 +#: libraries/messages.inc.php:855 server_status.php:46 msgid "Runtime Information" msgstr "Kjøringsinformasjon" -#: libraries/messages.inc.php:860 server_status.php:350 +#: libraries/messages.inc.php:856 server_status.php:350 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Denne MySQL tjeneren har kjørt i %s. Den startet opp den %s." -#: libraries/messages.inc.php:861 libraries/server_links.inc.php:53 +#: libraries/messages.inc.php:857 libraries/server_links.inc.php:53 #: server_engines.php:112 server_engines.php:116 server_status.php:304 #: test/theme.php:105 msgid "Variables" msgstr "Variabler" -#: libraries/messages.inc.php:862 server_status.php:383 +#: libraries/messages.inc.php:858 server_status.php:383 msgid "" "Server traffic: These tables show the network traffic statistics of " "this MySQL server since its startup." @@ -5167,11 +5167,11 @@ msgstr "" "Tjenertraffikk: Disse tabellene viser statistikk over " "nettverkstrafikken for denne MySQL-tjeneren siden dens oppstart." -#: libraries/messages.inc.php:863 server_variables.php:35 +#: libraries/messages.inc.php:859 server_variables.php:35 msgid "Server variables and settings" msgstr "Tjenervariabler og -innstillinger" -#: libraries/messages.inc.php:865 main.php:290 +#: libraries/messages.inc.php:861 main.php:290 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -5183,7 +5183,7 @@ msgstr "" "gyldighet konfigurert i phpMyAdmin, på grunn av dette så vil din innlogging " "utløpe raskere enn konfigurert i phpMyAdmin." -#: libraries/messages.inc.php:866 +#: libraries/messages.inc.php:862 msgid "" "Cannot start session without errors, please check errors given in your PHP " "and/or webserver log file and configure your PHP installation properly." @@ -5191,11 +5191,11 @@ msgstr "" "Kan ikke starte sessjonen uten feil, kontroller feilmeldinger i din PHP og/" "eller webtjenerloggfil og konfigurer din PHP innstallasjon korrekt." -#: libraries/messages.inc.php:867 server_variables.php:55 +#: libraries/messages.inc.php:863 server_variables.php:55 msgid "Session value" msgstr "Økts verdi" -#: libraries/messages.inc.php:868 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:864 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 " @@ -5207,44 +5207,44 @@ msgstr "" "\") eller en enkel apostrof (\"'\") blant disse verdiene, skriv en skråstrek " "foran (eks. '\\\\xyz' eller 'a\\'b')." -#: libraries/messages.inc.php:876 server_binlog.php:192 server_binlog.php:195 +#: libraries/messages.inc.php:872 server_binlog.php:192 server_binlog.php:195 #: server_processlist.php:49 server_processlist.php:51 msgid "Show Full Queries" msgstr "Vis hele spørringen" -#: libraries/messages.inc.php:878 pmd_general.php:64 +#: libraries/messages.inc.php:874 pmd_general.php:64 msgid "Show/Hide left menu" msgstr "Skjul/Vis venstre meny" -#: libraries/messages.inc.php:880 sql.php:513 +#: libraries/messages.inc.php:876 sql.php:513 msgid "Showing as PHP code" msgstr "Viser som PHP kode" -#: libraries/messages.inc.php:882 sql.php:516 tbl_replace.php:360 +#: libraries/messages.inc.php:878 sql.php:516 tbl_replace.php:360 msgid "Showing SQL query" msgstr "Viser SQL spørring" -#: libraries/messages.inc.php:883 tbl_change.php:1132 +#: libraries/messages.inc.php:879 tbl_change.php:1132 msgid "Show insert query" msgstr "Viser SQL spørring" -#: libraries/messages.inc.php:886 server_status.php:273 +#: libraries/messages.inc.php:882 server_status.php:273 msgid "Show open tables" msgstr "Vis åpne tabeller" -#: libraries/messages.inc.php:887 main.php:219 +#: libraries/messages.inc.php:883 main.php:219 msgid "Show PHP information" msgstr "Vis PHP-informasjon" -#: libraries/messages.inc.php:889 server_status.php:278 +#: libraries/messages.inc.php:885 server_status.php:278 msgid "Show slave hosts" msgstr "Vis slaveverter" -#: libraries/messages.inc.php:890 server_status.php:284 +#: libraries/messages.inc.php:886 server_status.php:284 msgid "Show slave status" msgstr "Vis slavestatus" -#: libraries/messages.inc.php:891 +#: libraries/messages.inc.php:887 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -5254,12 +5254,12 @@ msgstr "" "som overskred verdien av binlog_size og brukte en midlertidig fil for å " "lagre spørringer fra transaksjonen." -#: libraries/messages.inc.php:892 +#: libraries/messages.inc.php:888 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Antall transaksjoner som brukte den midlertidige binærloggmellomlageret." -#: libraries/messages.inc.php:893 +#: libraries/messages.inc.php:889 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -5271,11 +5271,11 @@ msgstr "" "bør du vurdere å øke tmp_table_size verdien slik at midlertidige tabeller " "blir lagret i minnet og ikke på harddisken." -#: libraries/messages.inc.php:894 +#: libraries/messages.inc.php:890 msgid "How many temporary files mysqld has created." msgstr "Antall midlertidige filer mysqld har opprettet." -#: libraries/messages.inc.php:895 +#: libraries/messages.inc.php:891 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -5283,7 +5283,7 @@ msgstr "" "Antall midlertidige tabeller i minnet automatisk opprettet av tjeneren under " "utføriing av spørringer." -#: libraries/messages.inc.php:896 +#: libraries/messages.inc.php:892 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -5291,7 +5291,7 @@ msgstr "" "Antall rader skrevet med INSERT DELAYED hvor en eller annen form for feil " "oppstod (mest sannsynlig duplisert nøkkel)." -#: libraries/messages.inc.php:897 +#: libraries/messages.inc.php:893 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -5299,23 +5299,23 @@ msgstr "" "Antall INSERT DELAYED håndterertråder i bruk. Hver eneste tabell hvor det " "blir brukt INSERT DELAYE får sin egen tråd." -#: libraries/messages.inc.php:898 +#: libraries/messages.inc.php:894 msgid "The number of INSERT DELAYED rows written." msgstr "Antall INSERT DELAYED rader skrevet." -#: libraries/messages.inc.php:899 +#: libraries/messages.inc.php:895 msgid "The number of executed FLUSH statements." msgstr "Antall utførte FLUSH uttrykk." -#: libraries/messages.inc.php:900 +#: libraries/messages.inc.php:896 msgid "The number of internal COMMIT statements." msgstr "Antall interne COMMIT uttrykk." -#: libraries/messages.inc.php:901 +#: libraries/messages.inc.php:897 msgid "The number of times a row was deleted from a table." msgstr "Antall ganger en rad ble slettet fra en tabell." -#: libraries/messages.inc.php:902 +#: libraries/messages.inc.php:898 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -5325,7 +5325,7 @@ msgstr "" "tabell med et gitt navn. Dette blir kalt oppdaging (discovery). " "Handler_discover indikerer antall ganger tabeller har blitt oppdaget." -#: libraries/messages.inc.php:903 +#: libraries/messages.inc.php:899 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -5335,7 +5335,7 @@ msgstr "" "er høyt tyder det på at tjeneren utfører en god del fullindekssøk; for " "eksempel, SELECT col1 FROM foo, da forutsatt at col1 er indeksert." -#: libraries/messages.inc.php:904 +#: libraries/messages.inc.php:900 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -5344,7 +5344,7 @@ msgstr "" "er høyt gir dette en god indikasjon på at dine spørringer og tabeller er " "riktig indeksert." -#: libraries/messages.inc.php:905 +#: libraries/messages.inc.php:901 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -5355,7 +5355,7 @@ msgstr "" "har sansynligvis mange spørringer som krever at MySQL leser hele tabeller " "eller du har joins som ikke bruker nøkler korrekt." -#: libraries/messages.inc.php:906 +#: libraries/messages.inc.php:902 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -5363,7 +5363,7 @@ msgstr "" "Antall forespørsler for å lese den forrige raden i nøkkelrekkefølge. Denne " "lesemetoden er hovedsakelig brukt for å optimalisere ORDER BY ... DESC." -#: libraries/messages.inc.php:907 +#: libraries/messages.inc.php:903 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -5375,7 +5375,7 @@ msgstr "" "har mest sansynlig mange spørringer som krever at MySQL leser hele tabeller " "eller du har joins som som ikke bruker nøkler korrekt." -#: libraries/messages.inc.php:908 +#: libraries/messages.inc.php:904 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -5387,37 +5387,37 @@ msgstr "" "tabeller ikke er rett indeksert eller at dine spørringer ikke er skrevet for " "å utnytte de indeksene du har." -#: libraries/messages.inc.php:909 +#: libraries/messages.inc.php:905 msgid "The number of internal ROLLBACK statements." msgstr "Antall interne ROLLBACK kommandoer." -#: libraries/messages.inc.php:910 +#: libraries/messages.inc.php:906 msgid "The number of requests to update a row in a table." msgstr "Antall forespørsler for å oppdatere en rad i en tabell." -#: libraries/messages.inc.php:911 +#: libraries/messages.inc.php:907 msgid "The number of requests to insert a row in a table." msgstr "Antall forespørsler for å sette inn en rad i en tabell." -#: libraries/messages.inc.php:912 +#: libraries/messages.inc.php:908 msgid "The number of pages containing data (dirty or clean)." msgstr "Antall sider som inneholder data (endret eller uendret)." -#: libraries/messages.inc.php:913 +#: libraries/messages.inc.php:909 msgid "The number of pages currently dirty." msgstr "Antall sider for tiden endret." -#: libraries/messages.inc.php:914 +#: libraries/messages.inc.php:910 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" "Antall midlertidige mellomlagersider som det har vært " "oppfriskningsforespørsler på." -#: libraries/messages.inc.php:915 +#: libraries/messages.inc.php:911 msgid "The number of free pages." msgstr "Antall tomme sider." -#: libraries/messages.inc.php:916 +#: libraries/messages.inc.php:912 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -5426,7 +5426,7 @@ msgstr "" "Antallet låste sider i InnoDBs mellomlager. Dette er sider som er under " "lesing eller skriving eller ikke kan tømmes eller fjernes av en annen grunn." -#: libraries/messages.inc.php:917 +#: libraries/messages.inc.php:913 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -5438,11 +5438,11 @@ msgstr "" "kan også regnes ut som Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: libraries/messages.inc.php:918 +#: libraries/messages.inc.php:914 msgid "Total size of buffer pool, in pages." msgstr "Total størrelse på midlertidig mellomlager i sider." -#: libraries/messages.inc.php:919 +#: libraries/messages.inc.php:915 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -5450,7 +5450,7 @@ msgstr "" "Antall \"tilfeldige\" \"read-aheads\" InnoDB startet. Dette skjer når en " "spørring skanner en stor andel av en tabell men i en tilfeldig rekkefølge." -#: libraries/messages.inc.php:920 +#: libraries/messages.inc.php:916 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -5458,11 +5458,11 @@ msgstr "" "Antall sekvensielle \"read-aheads\" InnoDB startet. Denne skjer når InnoDB " "utfører en sekvensiell full tabellskanning." -#: libraries/messages.inc.php:921 +#: libraries/messages.inc.php:917 msgid "The number of logical read requests InnoDB has done." msgstr "Antall logiske leseforespørsler InnoDB har utført." -#: libraries/messages.inc.php:922 +#: libraries/messages.inc.php:918 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -5470,7 +5470,7 @@ msgstr "" "Antall logiske lesninger som InnoDN ikke kunne tilfredsstille fra " "mellomlageret og måtte utføre en enkelsidelesnining." -#: libraries/messages.inc.php:923 +#: libraries/messages.inc.php:919 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -5484,55 +5484,55 @@ msgstr "" "telleren viser antall slike ventinger. Hvis mellomlagerstørrelsen er godt " "innstilt så vil denne verdien være liten." -#: libraries/messages.inc.php:924 +#: libraries/messages.inc.php:920 msgid "The number writes done to the InnoDB buffer pool." msgstr "Antall skrivinger til InnoDBs midlertidig mellomlager." -#: libraries/messages.inc.php:925 +#: libraries/messages.inc.php:921 msgid "The number of fsync() operations so far." msgstr "Antall fsync() operasjoner så langt." -#: libraries/messages.inc.php:926 +#: libraries/messages.inc.php:922 msgid "The current number of pending fsync() operations." msgstr "Antall ventende fsync() operasjoner." -#: libraries/messages.inc.php:927 +#: libraries/messages.inc.php:923 msgid "The current number of pending reads." msgstr "Antall ventende lesinger." -#: libraries/messages.inc.php:928 +#: libraries/messages.inc.php:924 msgid "The current number of pending writes." msgstr "Antall ventende skrivinger." -#: libraries/messages.inc.php:929 +#: libraries/messages.inc.php:925 msgid "The amount of data read so far, in bytes." msgstr "Mengden data lest så langt, i bytes." -#: libraries/messages.inc.php:930 +#: libraries/messages.inc.php:926 msgid "The total number of data reads." msgstr "Antall utførte lesninger." -#: libraries/messages.inc.php:931 +#: libraries/messages.inc.php:927 msgid "The total number of data writes." msgstr "Antall utførte skrivinger." -#: libraries/messages.inc.php:932 +#: libraries/messages.inc.php:928 msgid "The amount of data written so far, in bytes." msgstr "Mengden data skrevet så langt, i bytes." -#: libraries/messages.inc.php:933 +#: libraries/messages.inc.php:929 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Antallet dobbeltskrivinger som har blitt utført og antall sider som har " "blitt skrevet på grunn av dette." -#: libraries/messages.inc.php:934 +#: libraries/messages.inc.php:930 msgid "The number of doublewrite operations that have been performed." msgstr "" "Antallet dobbeltskrivinger som har blitt utført og antall sider som har " "blitt skrevet på grunn av dette." -#: libraries/messages.inc.php:935 +#: libraries/messages.inc.php:931 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -5540,35 +5540,35 @@ msgstr "" "Antall ganger ventinger vi hadde fordi loggmellomlageret var for lite og vi " "måtte vente for at det skulle bli tømt før vi kunne fortsette." -#: libraries/messages.inc.php:936 +#: libraries/messages.inc.php:932 msgid "The number of log write requests." msgstr "Antall loggskrivingsforespørsler." -#: libraries/messages.inc.php:937 +#: libraries/messages.inc.php:933 msgid "The number of physical writes to the log file." msgstr "Antall fysiske skrivinger til loggfila." -#: libraries/messages.inc.php:938 +#: libraries/messages.inc.php:934 msgid "The number of fsync() writes done to the log file." msgstr "Antall fsync-skrivinger utført på loggfila." -#: libraries/messages.inc.php:939 +#: libraries/messages.inc.php:935 msgid "The number of pending log file fsyncs." msgstr "Antall ventende loggfil-fsyncs." -#: libraries/messages.inc.php:940 +#: libraries/messages.inc.php:936 msgid "Pending log file writes." msgstr "Ventende loggfilskrivinger." -#: libraries/messages.inc.php:941 +#: libraries/messages.inc.php:937 msgid "The number of bytes written to the log file." msgstr "Antall bytes skrevet til loggfila." -#: libraries/messages.inc.php:942 +#: libraries/messages.inc.php:938 msgid "The number of pages created." msgstr "Antall sider opprettet." -#: libraries/messages.inc.php:943 +#: libraries/messages.inc.php:939 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -5576,51 +5576,51 @@ msgstr "" "Den innkompilerte InnoDB sidestørrelsen (standard 16KB). Mange verdier måles " "i sider; sidestørrelsen gjør at det er lett å konvertere dem til bytes." -#: libraries/messages.inc.php:944 +#: libraries/messages.inc.php:940 msgid "The number of pages read." msgstr "Antall sidelesninger." -#: libraries/messages.inc.php:945 +#: libraries/messages.inc.php:941 msgid "The number of pages written." msgstr "Antall sideskrivinger." -#: libraries/messages.inc.php:946 +#: libraries/messages.inc.php:942 msgid "The number of row locks currently being waited for." msgstr "Antall ventende radlåsinger." -#: libraries/messages.inc.php:947 +#: libraries/messages.inc.php:943 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Gjennomsnittlig tid for å oppnå radlåsing, i millisekunder." -#: libraries/messages.inc.php:948 +#: libraries/messages.inc.php:944 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Total tid brukt for å få radlåsinger, i millisekunder." -#: libraries/messages.inc.php:949 +#: libraries/messages.inc.php:945 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Maksimum tid brukt for å oppnå en radlåsing, i millisekunder." -#: libraries/messages.inc.php:950 +#: libraries/messages.inc.php:946 msgid "The number of times a row lock had to be waited for." msgstr "Antall ganger en radlås måtte ventes på." -#: libraries/messages.inc.php:951 +#: libraries/messages.inc.php:947 msgid "The number of rows deleted from InnoDB tables." msgstr "Antall rader slettet fra InnoDB tabeller." -#: libraries/messages.inc.php:952 +#: libraries/messages.inc.php:948 msgid "The number of rows inserted in InnoDB tables." msgstr "Antall rader satt inn i InnoDB tabeller." -#: libraries/messages.inc.php:953 +#: libraries/messages.inc.php:949 msgid "The number of rows read from InnoDB tables." msgstr "Antall rader lest fra InnoDB tabeller." -#: libraries/messages.inc.php:954 +#: libraries/messages.inc.php:950 msgid "The number of rows updated in InnoDB tables." msgstr "Antall rader oppdatert i InnoDB tabeller." -#: libraries/messages.inc.php:955 +#: libraries/messages.inc.php:951 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -5629,7 +5629,7 @@ msgstr "" "ennå har blitt skrevet til harddisken. Dette var tidligere kjent som " "Not_flushed_key_blocks." -#: libraries/messages.inc.php:956 +#: libraries/messages.inc.php:952 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -5637,7 +5637,7 @@ msgstr "" "Antall ubrukte blokker i nøkkelmellomlageret. Du kan bruke denne verdien til " "å bestemme hvor mye av nøkkelmellomlageret som er i bruk." -#: libraries/messages.inc.php:957 +#: libraries/messages.inc.php:953 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -5646,11 +5646,11 @@ msgstr "" "Antall brukte blokker i nøkkelmellomlageret. Denne verdien er et høyvannsmål " "som viser maksimum antall blokker som har vært brukt på en gang." -#: libraries/messages.inc.php:958 +#: libraries/messages.inc.php:954 msgid "The number of requests to read a key block from the cache." msgstr "Antall forespørsler for å lese en nøkkelblokk fra mellomlageret." -#: libraries/messages.inc.php:959 +#: libraries/messages.inc.php:955 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -5660,15 +5660,15 @@ msgstr "" "stor er nok din key_buffer_size verdi for liten. Mellomlagertreffraten kan " "kalkuleres med Key_reads/Key_read_requests." -#: libraries/messages.inc.php:960 +#: libraries/messages.inc.php:956 msgid "The number of requests to write a key block to the cache." msgstr "Antall forespørsler for å skrive en nøkkelblokk til mellomlageret." -#: libraries/messages.inc.php:961 +#: libraries/messages.inc.php:957 msgid "The number of physical writes of a key block to disk." msgstr "Antall fysiske skrivinger av en nøkkelblokk til disk." -#: libraries/messages.inc.php:962 +#: libraries/messages.inc.php:958 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -5679,11 +5679,11 @@ msgstr "" "forskjellige spørringsplaner for den samme spørringen. Standardverdien på 0 " "betyr at ingen spørring har blitt kompilert ennå." -#: libraries/messages.inc.php:963 +#: libraries/messages.inc.php:959 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Antall rader som venter på å bli skrevet i INSERT DELAYED køer." -#: libraries/messages.inc.php:964 +#: libraries/messages.inc.php:960 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -5691,35 +5691,35 @@ msgstr "" "Antall tabeller som har blitt åpnet. Hvis denne er stor er nok din " "tabellmellomlagerverdi for liten." -#: libraries/messages.inc.php:965 +#: libraries/messages.inc.php:961 msgid "The number of files that are open." msgstr "Antall åpne filer." -#: libraries/messages.inc.php:966 +#: libraries/messages.inc.php:962 msgid "The number of streams that are open (used mainly for logging)." msgstr "Antall åpne dataflyter (hovedsaklig brukt til logging)." -#: libraries/messages.inc.php:967 +#: libraries/messages.inc.php:963 msgid "The number of tables that are open." msgstr "Antall åpne tabeller." -#: libraries/messages.inc.php:968 +#: libraries/messages.inc.php:964 msgid "The number of free memory blocks in query cache." msgstr "Antall ledige minneblokker i spørringsmellomlager." -#: libraries/messages.inc.php:969 +#: libraries/messages.inc.php:965 msgid "The amount of free memory for query cache." msgstr "Mengden ledig minne i spørringsmellomlager." -#: libraries/messages.inc.php:970 +#: libraries/messages.inc.php:966 msgid "The number of cache hits." msgstr "Antall mellomlagertreff." -#: libraries/messages.inc.php:971 +#: libraries/messages.inc.php:967 msgid "The number of queries added to the cache." msgstr "Antall spørringer lagt til i mellomlageret." -#: libraries/messages.inc.php:972 +#: libraries/messages.inc.php:968 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -5732,7 +5732,7 @@ msgstr "" "og sist brukt (least recently used (LRU)) strategi for å finne hvilke " "spørringer som skal fjernes fra mellomlageret." -#: libraries/messages.inc.php:973 +#: libraries/messages.inc.php:969 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -5740,24 +5740,24 @@ msgstr "" "Antallet ikkelagrede spørringer (kan ikke lagres, eller ikke lagret p.g.a. " "query_cache_type innstillingen)." -#: libraries/messages.inc.php:974 +#: libraries/messages.inc.php:970 msgid "The number of queries registered in the cache." msgstr "Antall spørringer registrert i mellomlageret." -#: libraries/messages.inc.php:975 +#: libraries/messages.inc.php:971 msgid "The total number of blocks in the query cache." msgstr "Totale antall blokker i spørringsmellomlageret." -#: libraries/messages.inc.php:976 +#: libraries/messages.inc.php:972 msgctxt "$strShowStatusReset" msgid "Reset" msgstr "Tilbakestill" -#: libraries/messages.inc.php:977 +#: libraries/messages.inc.php:973 msgid "The status of failsafe replication (not yet implemented)." msgstr "Failsafe replikasjonsstatus (ikke implementert ennå)." -#: libraries/messages.inc.php:978 +#: libraries/messages.inc.php:974 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -5765,11 +5765,11 @@ msgstr "" "Antall joins som ikke bruker indekser. Hvis denne verdien ikke er 0 bør du " "nøye sjekke indeksene til dine tabeller." -#: libraries/messages.inc.php:979 +#: libraries/messages.inc.php:975 msgid "The number of joins that used a range search on a reference table." msgstr "Antall joins som trenger en rekkefølgesøk i en referansetabell." -#: libraries/messages.inc.php:980 +#: libraries/messages.inc.php:976 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -5777,7 +5777,7 @@ msgstr "" "Antall joins uten nøkler som kontrollerer for nøkkelbruk etter hver rad " "(Hvis denne ikke er 0 bør du nøye kontrollere dine tabellindekser.)" -#: libraries/messages.inc.php:981 +#: libraries/messages.inc.php:977 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -5785,15 +5785,15 @@ msgstr "" "Antall joins som brukte rekkefølger på den første tabellen. (Det er normalt " "ikke kritisk selv om denne verdien er stor.)" -#: libraries/messages.inc.php:982 +#: libraries/messages.inc.php:978 msgid "The number of joins that did a full scan of the first table." msgstr "Antall joins som utførte en full skann av den første tabellen." -#: libraries/messages.inc.php:983 +#: libraries/messages.inc.php:979 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "Antall midlertidige tabeller for tiden åpnet av slave SQL tråden." -#: libraries/messages.inc.php:984 +#: libraries/messages.inc.php:980 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -5801,12 +5801,12 @@ msgstr "" "Det totale antall ganger (siden oppstart) replikasjonsslave-SQL-tråden har " "gjentatt transaksjoner." -#: libraries/messages.inc.php:985 +#: libraries/messages.inc.php:981 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Denne er ON hvis denne tjeneren er en slave som er koblet til en master." -#: libraries/messages.inc.php:986 +#: libraries/messages.inc.php:982 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -5814,12 +5814,12 @@ msgstr "" "Antall tråder som har brukt mer enn slow_launch_time sekunder under " "opprettelse." -#: libraries/messages.inc.php:987 +#: libraries/messages.inc.php:983 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "Antall spørringer som har brukt mer enn long_query_time sekunder." -#: libraries/messages.inc.php:988 +#: libraries/messages.inc.php:984 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -5829,24 +5829,24 @@ msgstr "" "denne verdien er stor bør du vurdere å øke verdien av sort_buffer_size " "systemvariabelen." -#: libraries/messages.inc.php:989 +#: libraries/messages.inc.php:985 msgid "The number of sorts that were done with ranges." msgstr "Antall sorteringer som ble utført med rekkefølger." -#: libraries/messages.inc.php:990 +#: libraries/messages.inc.php:986 msgid "The number of sorted rows." msgstr "Antall sorterte rader." -#: libraries/messages.inc.php:991 +#: libraries/messages.inc.php:987 msgid "The number of sorts that were done by scanning the table." msgstr "" "Antall sorteringer som har vært utført ved hjelp av skanning av tabellen." -#: libraries/messages.inc.php:992 +#: libraries/messages.inc.php:988 msgid "The number of times that a table lock was acquired immediately." msgstr "Antall ganger en tabellåsing ble utført umiddelbart." -#: libraries/messages.inc.php:993 +#: libraries/messages.inc.php:989 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -5858,7 +5858,7 @@ msgstr "" "først optimalisere dine spørringer, og deretter enten splitte din tabell " "eller tabeller eller bruke replikasjon." -#: libraries/messages.inc.php:994 +#: libraries/messages.inc.php:990 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -5868,11 +5868,11 @@ msgstr "" "Threads_created/Connections. Hvis denne verdien er rød bør du øke din " "thread_cache_size." -#: libraries/messages.inc.php:995 +#: libraries/messages.inc.php:991 msgid "The number of currently open connections." msgstr "Antall åpne tilkoblinger." -#: libraries/messages.inc.php:996 +#: libraries/messages.inc.php:992 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -5883,28 +5883,28 @@ msgstr "" "stor bør du vurdere å øke thread_cache_size størrelsen. (Normalt vil dette " "ikke gi noen merkbar forbedring hvis du har en god trådimplementering.)" -#: libraries/messages.inc.php:997 +#: libraries/messages.inc.php:993 msgid "The number of threads that are not sleeping." msgstr "Antall tråder som ikke sover." -#: libraries/messages.inc.php:999 tbl_printview.php:75 +#: libraries/messages.inc.php:995 tbl_printview.php:75 msgid "Show tables" msgstr "Vis tabeller" -#: libraries/messages.inc.php:1000 libraries/sql_query_form.lib.php:396 +#: libraries/messages.inc.php:996 libraries/sql_query_form.lib.php:396 msgid " Show this query here again " msgstr " Vis denne spørring her igjen " -#: libraries/messages.inc.php:1001 libraries/mysql_charsets.lib.php:217 +#: libraries/messages.inc.php:997 libraries/mysql_charsets.lib.php:217 #: libraries/mysql_charsets.lib.php:342 msgid "Simplified Chinese" msgstr "forenklet kinesisk" -#: libraries/messages.inc.php:1002 tbl_operations.php:258 +#: libraries/messages.inc.php:998 tbl_operations.php:258 msgid "(singly)" msgstr "(enkeltvis)" -#: libraries/messages.inc.php:1005 libraries/replication_gui.lib.php:52 +#: libraries/messages.inc.php:1001 libraries/replication_gui.lib.php:52 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" @@ -5912,47 +5912,47 @@ msgstr "" "Forsikre deg om at du har unik server-id i din konfigurasjonsfil(my.cnf). " "Hvis ikke, legg til følgende linje i [mysqld] seksjonen:" -#: libraries/messages.inc.php:1006 libraries/mysql_charsets.lib.php:283 +#: libraries/messages.inc.php:1002 libraries/mysql_charsets.lib.php:283 msgid "Slovak" msgstr "Slovakisk" -#: libraries/messages.inc.php:1007 libraries/mysql_charsets.lib.php:286 +#: libraries/messages.inc.php:1003 libraries/mysql_charsets.lib.php:286 msgid "Slovenian" msgstr "Slovensk" -#: libraries/messages.inc.php:1008 pmd_general.php:95 +#: libraries/messages.inc.php:1004 pmd_general.php:95 msgid "Small/Big All" msgstr "Liten/Stor alle" -#: libraries/messages.inc.php:1009 pmd_general.php:91 +#: libraries/messages.inc.php:1005 pmd_general.php:91 msgid "Snap to grid" msgstr "Lås til ruter" -#: libraries/messages.inc.php:1011 server_synchronize.php:1167 +#: libraries/messages.inc.php:1007 server_synchronize.php:1167 msgid "Socket" msgstr "Socket" -#: libraries/messages.inc.php:1013 server_status.php:259 +#: libraries/messages.inc.php:1009 server_status.php:259 msgid "Sorting" msgstr "Sortering" -#: libraries/messages.inc.php:1015 tbl_printview.php:310 tbl_structure.php:657 +#: libraries/messages.inc.php:1011 tbl_printview.php:310 tbl_structure.php:657 msgid "Space usage" msgstr "Plassbruk" -#: libraries/messages.inc.php:1016 libraries/mysql_charsets.lib.php:289 +#: libraries/messages.inc.php:1012 libraries/mysql_charsets.lib.php:289 msgid "Spanish" msgstr "Spansk" -#: libraries/messages.inc.php:1019 +#: libraries/messages.inc.php:1015 msgid "Export type" msgstr "Eksporttype" -#: libraries/messages.inc.php:1020 +#: libraries/messages.inc.php:1016 msgid "Export time in UTC" msgstr "Eksport tid i UTC" -#: libraries/messages.inc.php:1021 libraries/sqlparser.lib.php:173 +#: libraries/messages.inc.php:1017 libraries/sqlparser.lib.php:173 msgid "" "There is a chance that you may have found a bug in the SQL parser. Please " "examine your query closely, and check that the quotes are correct and not " @@ -5975,7 +5975,7 @@ msgstr "" "den spørringen som forårsaker problemet og send en feilrapport med " "datastykket i CUT-seksjonen nedenfor:" -#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:137 +#: libraries/messages.inc.php:1018 libraries/sqlparser.lib.php:137 msgid "" "There seems to be an error in your SQL query. The MySQL server error output " "below, if there is any, may also help you in diagnosing the problem" @@ -5984,32 +5984,32 @@ msgstr "" "fra MySQL-tjeneren er skrevet ut nedenfor, kan kanskje hjelpe deg med å " "finne feilen." -#: libraries/messages.inc.php:1026 libraries/sqlparser.lib.php:495 +#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:495 msgid "Invalid Identifer" msgstr "Ugyldig identifikator" -#: libraries/messages.inc.php:1027 libraries/sqlparser.lib.php:344 +#: libraries/messages.inc.php:1023 libraries/sqlparser.lib.php:344 msgid "Unclosed quote" msgstr "Anførselstegnet er ikke lukket" -#: libraries/messages.inc.php:1028 libraries/sqlparser.lib.php:612 +#: libraries/messages.inc.php:1024 libraries/sqlparser.lib.php:612 msgid "Unknown Punctuation String" msgstr "Ukjent tegnsettingsstreng" -#: libraries/messages.inc.php:1030 server_replication.php:327 +#: libraries/messages.inc.php:1026 server_replication.php:327 #: server_replication.php:328 msgid "Start" msgstr "Start" -#: libraries/messages.inc.php:1033 tbl_printview.php:369 tbl_structure.php:729 +#: libraries/messages.inc.php:1029 tbl_printview.php:369 tbl_structure.php:729 msgid "Statements" msgstr "Oversikt" -#: libraries/messages.inc.php:1034 tbl_printview.php:380 tbl_structure.php:741 +#: libraries/messages.inc.php:1030 tbl_printview.php:380 tbl_structure.php:741 msgid "static" msgstr "statisk" -#: libraries/messages.inc.php:1035 server_status.php:388 +#: libraries/messages.inc.php:1031 server_status.php:388 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -6017,42 +6017,42 @@ msgstr "" "På en travel tjener så kan byte-tellerene overflyte, så denne statistikken " "som rapportert av MySQL tjeneren kan være unøyaktig." -#: libraries/messages.inc.php:1038 server_replication.php:327 +#: libraries/messages.inc.php:1034 server_replication.php:327 #: server_replication.php:328 msgid "Stop" msgstr "Stopp" -#: libraries/messages.inc.php:1039 server_engines.php:49 +#: libraries/messages.inc.php:1035 server_engines.php:49 msgid "Storage Engines" msgstr "Lagringsmotorer" -#: libraries/messages.inc.php:1040 libraries/tbl_properties.inc.php:726 +#: libraries/messages.inc.php:1036 libraries/tbl_properties.inc.php:726 #: server_engines.php:58 tbl_operations.php:353 msgid "Storage Engine" msgstr "Lagringsmotor" -#: libraries/messages.inc.php:1042 +#: libraries/messages.inc.php:1038 msgid "CSV for MS Excel" msgstr "CSV for MS Excel data" -#: libraries/messages.inc.php:1044 tbl_structure.php:516 tbl_structure.php:518 +#: libraries/messages.inc.php:1040 tbl_structure.php:516 tbl_structure.php:518 msgid "Propose table structure" msgstr "Foreslå tabellstruktur" -#: libraries/messages.inc.php:1045 server_synchronize.php:424 +#: libraries/messages.inc.php:1041 server_synchronize.php:424 #: server_synchronize.php:867 msgid "Structure Difference" msgstr "Strukturdifferanse" -#: libraries/messages.inc.php:1049 server_synchronize.php:265 +#: libraries/messages.inc.php:1045 server_synchronize.php:265 msgid "Structure Synchronization" msgstr "Struktursynkronisering" -#: libraries/messages.inc.php:1050 libraries/sql_query_form.lib.php:462 +#: libraries/messages.inc.php:1046 libraries/sql_query_form.lib.php:462 msgid "Submit" msgstr "Send" -#: libraries/messages.inc.php:1052 main.php:358 +#: libraries/messages.inc.php:1048 main.php:358 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -6061,16 +6061,16 @@ msgstr "" "Tjeneren kjører med Suhosin. Sjekk %sdokumentasjonen%s for potensielle " "problemer." -#: libraries/messages.inc.php:1054 libraries/mysql_charsets.lib.php:295 +#: libraries/messages.inc.php:1050 libraries/mysql_charsets.lib.php:295 #: libraries/mysql_charsets.lib.php:392 msgid "Swedish" msgstr "svensk" -#: libraries/messages.inc.php:1060 tbl_operations.php:556 +#: libraries/messages.inc.php:1056 tbl_operations.php:556 msgid "Switch to copied table" msgstr "Bytt til kopiert tabell" -#: libraries/messages.inc.php:1061 server_synchronize.php:1213 +#: libraries/messages.inc.php:1057 server_synchronize.php:1213 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -6078,147 +6078,147 @@ msgstr "" "Måldatabase vil bli fullstendig synkronisert med kildedatabase. " "Kildedatabase vil forbli uforandret." -#: libraries/messages.inc.php:1062 server_synchronize.php:451 +#: libraries/messages.inc.php:1058 server_synchronize.php:451 #: server_synchronize.php:896 msgid "Synchronize Databases" msgstr "Synkroniser databaser" -#: libraries/messages.inc.php:1063 libraries/server_links.inc.php:92 +#: libraries/messages.inc.php:1059 libraries/server_links.inc.php:92 #: server_synchronize.php:1092 server_synchronize.php:1100 msgid "Synchronize" msgstr "Synkroniser" -#: libraries/messages.inc.php:1065 server_synchronize.php:430 +#: libraries/messages.inc.php:1061 server_synchronize.php:430 #: server_synchronize.php:873 msgid "Add column(s)" msgstr "Legg til kolonne(r)" -#: libraries/messages.inc.php:1066 tbl_create.php:62 +#: libraries/messages.inc.php:1062 tbl_create.php:62 #, php-format msgid "Table %s already exists!" msgstr "Tabel %s eksisterer allerede!" -#: libraries/messages.inc.php:1067 server_synchronize.php:432 +#: libraries/messages.inc.php:1063 server_synchronize.php:432 #: server_synchronize.php:875 msgid "Alter column(s)" msgstr "Endre kolonne(r)" -#: libraries/messages.inc.php:1068 tbl_addfield.php:189 tbl_alter.php:103 +#: libraries/messages.inc.php:1064 tbl_addfield.php:189 tbl_alter.php:103 #: tbl_indexes.php:98 #, php-format msgid "Table %1$s has been altered successfully" msgstr "Tabellen %1$s har blitt endrett" -#: libraries/messages.inc.php:1069 server_synchronize.php:434 +#: libraries/messages.inc.php:1065 server_synchronize.php:434 #: server_synchronize.php:877 msgid "Apply index(s)" msgstr "Utfør indeks(er)" -#: libraries/messages.inc.php:1071 server_synchronize.php:446 +#: libraries/messages.inc.php:1067 server_synchronize.php:446 #: server_synchronize.php:890 msgid "Would you like to delete all the previous rows from target tables?" msgstr "Ønsker du å slette alle tidligere rader fra måltabeller?" -#: libraries/messages.inc.php:1072 tbl_move_copy.php:82 +#: libraries/messages.inc.php:1068 tbl_move_copy.php:82 msgid "The table name is empty!" msgstr "Tabellnavnet er tomt!" -#: libraries/messages.inc.php:1073 tbl_create.php:249 +#: libraries/messages.inc.php:1069 tbl_create.php:249 #, php-format msgid "Table %1$s has been created." msgstr "Tabellen %1$s har blitt opprettet." -#: libraries/messages.inc.php:1076 tbl_operations.php:628 +#: libraries/messages.inc.php:1072 tbl_operations.php:628 #, php-format msgid "Table %s has been flushed" msgstr "Tabelen %s har blitt oppfrisket" -#: libraries/messages.inc.php:1077 server_synchronize.php:436 +#: libraries/messages.inc.php:1073 server_synchronize.php:436 #: server_synchronize.php:879 msgid "Insert row(s)" msgstr "Sett inn rad(er)" -#: libraries/messages.inc.php:1078 libraries/tbl_links.inc.php:107 +#: libraries/messages.inc.php:1074 libraries/tbl_links.inc.php:107 #: libraries/tbl_links.inc.php:140 libraries/tbl_links.inc.php:141 msgid "Table seems to be empty!" msgstr "Tabellen ser ut til å være tom!" -#: libraries/messages.inc.php:1079 tbl_operations.php:568 +#: libraries/messages.inc.php:1075 tbl_operations.php:568 msgid "Table maintenance" msgstr "Tabellvedlikehold" -#: libraries/messages.inc.php:1080 libraries/tbl_properties.inc.php:618 +#: libraries/messages.inc.php:1076 libraries/tbl_properties.inc.php:618 #: server_synchronize.php:428 server_synchronize.php:871 msgid "Table name" msgstr "Tabellnavn" -#: libraries/messages.inc.php:1081 pdf_schema.php:1116 +#: libraries/messages.inc.php:1077 pdf_schema.php:1116 msgid "Table of contents" msgstr "Innholdsfortegnelse" -#: libraries/messages.inc.php:1082 tbl_operations.php:334 +#: libraries/messages.inc.php:1078 tbl_operations.php:334 msgid "Table options" msgstr "Tabellinnstillinger" -#: libraries/messages.inc.php:1083 server_synchronize.php:431 +#: libraries/messages.inc.php:1079 server_synchronize.php:431 #: server_synchronize.php:874 msgid "Remove column(s)" msgstr "Fjern kolonne(r)" -#: libraries/messages.inc.php:1084 server_synchronize.php:433 +#: libraries/messages.inc.php:1080 server_synchronize.php:433 #: server_synchronize.php:876 msgid "Remove index(s)" msgstr "Fjern indeks(er)" -#: libraries/messages.inc.php:1088 server_synchronize.php:435 +#: libraries/messages.inc.php:1084 server_synchronize.php:435 #: server_synchronize.php:878 msgid "Update row(s)" msgstr "Oppdater rad(er)" -#: libraries/messages.inc.php:1090 server_synchronize.php:942 +#: libraries/messages.inc.php:1086 server_synchronize.php:942 msgid "Target database has been synchronized with source database" msgstr "Måldatabase har blitt synkronisert med kildedatabase" -#: libraries/messages.inc.php:1091 server_privileges.php:392 +#: libraries/messages.inc.php:1087 server_privileges.php:392 #: server_privileges.php:527 server_privileges.php:1679 #: server_privileges.php:1685 msgid "Table-specific privileges" msgstr "Tabell-spesifikke privilegier" -#: libraries/messages.inc.php:1092 server_status.php:254 +#: libraries/messages.inc.php:1088 server_status.php:254 msgid "Temporary data" msgstr "Midlertidige data" -#: libraries/messages.inc.php:1093 tbl_change.php:728 +#: libraries/messages.inc.php:1089 tbl_change.php:728 msgid " Because of its length,
this field might not be editable " msgstr "" " På grunn av sin lengde,
så vil muligens dette feltet ikke være " "redigerbart " -#: libraries/messages.inc.php:1094 +#: libraries/messages.inc.php:1090 msgid "Texy! text" msgstr "Texy! tekst" -#: libraries/messages.inc.php:1095 libraries/mysql_charsets.lib.php:298 +#: libraries/messages.inc.php:1091 libraries/mysql_charsets.lib.php:298 #: libraries/mysql_charsets.lib.php:395 msgid "Thai" msgstr "thai" -#: libraries/messages.inc.php:1102 libraries/replication_gui.lib.php:308 +#: libraries/messages.inc.php:1098 libraries/replication_gui.lib.php:308 #: server_privileges.php:734 msgid "This Host" msgstr "Denne vert" -#: libraries/messages.inc.php:1103 server_status.php:252 +#: libraries/messages.inc.php:1099 server_status.php:252 msgid "Threads" msgstr "Tråder" -#: libraries/messages.inc.php:1104 server_processlist.php:22 +#: libraries/messages.inc.php:1100 server_processlist.php:22 #, php-format msgid "Thread %s was successfully killed." msgstr "Tråd %s ble avsluttet med suksess." -#: libraries/messages.inc.php:1106 +#: libraries/messages.inc.php:1102 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -6227,158 +6227,158 @@ msgstr "" "at phpMyAdmin ikke vil være istand til å fullføre importeringen uten at du " "øker php tidsgrensen." -#: libraries/messages.inc.php:1109 pmd_pdf.php:94 +#: libraries/messages.inc.php:1105 pmd_pdf.php:94 msgid "to/from page" msgstr "til/fra side" -#: libraries/messages.inc.php:1110 pdf_pages.php:343 +#: libraries/messages.inc.php:1106 pdf_pages.php:343 msgid "Toggle scratchboard" msgstr "slå av/på kladdevindu" -#: libraries/messages.inc.php:1111 pmd_general.php:99 +#: libraries/messages.inc.php:1107 pmd_general.php:99 msgid "Toggle small/big" msgstr "Veksle mellom liten/stor" -#: libraries/messages.inc.php:1112 pmd_help.php:27 +#: libraries/messages.inc.php:1108 pmd_help.php:27 msgid "To select relation, click :" msgstr "For å velge relasjon, klikk :" -#: libraries/messages.inc.php:1115 libraries/tbl_links.inc.php:149 +#: libraries/messages.inc.php:1111 libraries/tbl_links.inc.php:149 #, php-format msgid "Tracking of %s.%s is activated." msgstr "Overvåkning av %s.%s er aktivert." -#: libraries/messages.inc.php:1116 tbl_tracking.php:655 +#: libraries/messages.inc.php:1112 tbl_tracking.php:655 msgid "Activate now" msgstr "Aktiver nå" -#: libraries/messages.inc.php:1117 tbl_tracking.php:653 +#: libraries/messages.inc.php:1113 tbl_tracking.php:653 #, php-format msgid "Activate tracking for %s.%s" msgstr "Aktiver overvåkning av %s.%s" -#: libraries/messages.inc.php:1118 tbl_tracking.php:221 +#: libraries/messages.inc.php:1114 tbl_tracking.php:221 msgid "Comment out these two lines if you do not need them." msgstr "Kommenter ut disse to linjene hvis du ikke trenger dem." -#: libraries/messages.inc.php:1119 tbl_tracking.php:688 +#: libraries/messages.inc.php:1115 tbl_tracking.php:688 msgid "Create version" msgstr "Opprett versjon" -#: libraries/messages.inc.php:1120 tbl_tracking.php:668 +#: libraries/messages.inc.php:1116 tbl_tracking.php:668 #, php-format msgid "Create version %s of %s.%s" msgstr "Opprett versjon %s av %s.%s" -#: libraries/messages.inc.php:1122 tbl_tracking.php:412 +#: libraries/messages.inc.php:1118 tbl_tracking.php:412 msgid "Data definition statement" msgstr "Datadefinisjonsuttrykk" -#: libraries/messages.inc.php:1123 tbl_tracking.php:463 +#: libraries/messages.inc.php:1119 tbl_tracking.php:463 msgid "Data manipulation statement" msgstr "Datamanipulasjonsuttrykk" -#: libraries/messages.inc.php:1124 tbl_tracking.php:410 tbl_tracking.php:461 +#: libraries/messages.inc.php:1120 tbl_tracking.php:410 tbl_tracking.php:461 msgid "Date" msgstr "Dato" -#: libraries/messages.inc.php:1125 tbl_tracking.php:642 +#: libraries/messages.inc.php:1121 tbl_tracking.php:642 msgid "Deactivate now" msgstr "Deaktiver nå" -#: libraries/messages.inc.php:1126 tbl_tracking.php:640 +#: libraries/messages.inc.php:1122 tbl_tracking.php:640 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "Deaktiver overvåkning av %s.%s" -#: libraries/messages.inc.php:1127 tbl_tracking.php:521 +#: libraries/messages.inc.php:1123 tbl_tracking.php:521 #, php-format msgid "Export as %s" msgstr "Eksporter som %s" -#: libraries/messages.inc.php:1130 tbl_tracking.php:251 tbl_tracking.php:379 +#: libraries/messages.inc.php:1126 tbl_tracking.php:251 tbl_tracking.php:379 msgid "Close" msgstr "Lukk" -#: libraries/messages.inc.php:1131 tbl_tracking.php:114 +#: libraries/messages.inc.php:1127 tbl_tracking.php:114 #, php-format msgid "Tracking report for table `%s`" msgstr "Overvåkningsrapport for tabell `%s`" -#: libraries/messages.inc.php:1133 tbl_tracking.php:397 tbl_tracking.php:504 +#: libraries/messages.inc.php:1129 tbl_tracking.php:397 tbl_tracking.php:504 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "Vis %s med datoer fra %s til %s fra bruker %s %s" -#: libraries/messages.inc.php:1134 tbl_tracking.php:561 +#: libraries/messages.inc.php:1130 tbl_tracking.php:561 msgid "Show versions" msgstr "Vis versjoner" -#: libraries/messages.inc.php:1135 tbl_tracking.php:507 +#: libraries/messages.inc.php:1131 tbl_tracking.php:507 msgid "SQL dump (file download)" msgstr "SQL dump (filnedlasting)" -#: libraries/messages.inc.php:1136 tbl_tracking.php:508 +#: libraries/messages.inc.php:1132 tbl_tracking.php:508 msgid "SQL dump" msgstr "SQL dump" -#: libraries/messages.inc.php:1137 tbl_tracking.php:213 +#: libraries/messages.inc.php:1133 tbl_tracking.php:213 msgid "SQL statements executed." msgstr "SQL spørringer utført." -#: libraries/messages.inc.php:1138 +#: libraries/messages.inc.php:1134 msgid "This option will replace your table and contained data." msgstr "Dette valget vil erstatte din tabell og dataene den inneholder." -#: libraries/messages.inc.php:1139 tbl_tracking.php:509 +#: libraries/messages.inc.php:1135 tbl_tracking.php:509 msgid "SQL execution" msgstr "SQL utførelse" -#: libraries/messages.inc.php:1140 tbl_tracking.php:230 +#: libraries/messages.inc.php:1136 tbl_tracking.php:230 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "SQL spørringer eksportert. Venligst kopier dumpen eller utfør den." -#: libraries/messages.inc.php:1141 tbl_tracking.php:381 +#: libraries/messages.inc.php:1137 tbl_tracking.php:381 msgid "Tracking statements" msgstr "Overvåkingsspørringer" -#: libraries/messages.inc.php:1148 tbl_tracking.php:593 +#: libraries/messages.inc.php:1144 tbl_tracking.php:593 msgid "Version" msgstr "Versjon" -#: libraries/messages.inc.php:1149 tbl_tracking.php:672 +#: libraries/messages.inc.php:1145 tbl_tracking.php:672 msgid "Track these data definition statements:" msgstr "Spor disse datadefinisjonsspørringene:" -#: libraries/messages.inc.php:1150 tbl_tracking.php:680 +#: libraries/messages.inc.php:1146 tbl_tracking.php:680 msgid "Track these data manipulation statements:" msgstr "Spor disse datamanipulasjonsspørringene:" -#: libraries/messages.inc.php:1155 tbl_tracking.php:411 tbl_tracking.php:462 +#: libraries/messages.inc.php:1151 tbl_tracking.php:411 tbl_tracking.php:462 msgid "Username" msgstr "Brukernavn" -#: libraries/messages.inc.php:1156 tbl_tracking.php:203 +#: libraries/messages.inc.php:1152 tbl_tracking.php:203 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "Overvåking av %s.%s , versjon %s er aktivert." -#: libraries/messages.inc.php:1157 tbl_tracking.php:187 +#: libraries/messages.inc.php:1153 tbl_tracking.php:187 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "Versjon %s er opprettet, overvåking av %s.%s er aktivert." -#: libraries/messages.inc.php:1158 tbl_tracking.php:195 +#: libraries/messages.inc.php:1154 tbl_tracking.php:195 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "Overvåking av %s.%s , versjon %s er deaktivert." -#: libraries/messages.inc.php:1159 tbl_tracking.php:262 +#: libraries/messages.inc.php:1155 tbl_tracking.php:262 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Versjon %s øyeblikksbilde (SQL kode)" -#: libraries/messages.inc.php:1161 tbl_tracking.php:220 +#: libraries/messages.inc.php:1157 tbl_tracking.php:220 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -6386,24 +6386,24 @@ msgstr "" "Du kan utføre dumpen ved å opprette og bruke en midlertidig database. " "Kontroller at du har privilegiene til å gjøre så." -#: libraries/messages.inc.php:1162 libraries/mysql_charsets.lib.php:219 +#: libraries/messages.inc.php:1158 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:362 msgid "Traditional Chinese" msgstr "Tradisjonell kinesisk" -#: libraries/messages.inc.php:1163 libraries/mysql_charsets.lib.php:292 +#: libraries/messages.inc.php:1159 libraries/mysql_charsets.lib.php:292 msgid "Traditional Spanish" msgstr "Tradisjonell spansk" -#: libraries/messages.inc.php:1164 server_status.php:388 +#: libraries/messages.inc.php:1160 server_status.php:388 msgid "Traffic" msgstr "Trafikk" -#: libraries/messages.inc.php:1165 server_status.php:261 +#: libraries/messages.inc.php:1161 server_status.php:261 msgid "Transaction coordinator" msgstr "Transaksjonskoordinator" -#: libraries/messages.inc.php:1166 +#: libraries/messages.inc.php:1162 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 " @@ -6415,7 +6415,7 @@ msgstr "" "potensielt feltnavn i en tabell som inneholder filnavnet. Hvis du velger den " "andre opsjonen så må den første være satt til en tom strengverdi" -#: libraries/messages.inc.php:1167 +#: libraries/messages.inc.php:1163 msgid "" "Displays hexadecimal representation of data. Optional first parameter " "specifies how often space will be added (defaults to 2 nibbles)." @@ -6423,7 +6423,7 @@ msgstr "" "Vis dataene i heksadesimal. Den valgfrie første parameteren tilkjennegir " "hvor ofte mellomrom vil bli lagt til (standard hvert andre tegn)." -#: libraries/messages.inc.php:1168 +#: libraries/messages.inc.php:1164 msgid "" "Displays a clickable thumbnail. The options are the maximum width and height " "in pixels. The original aspect ratio is preserved." @@ -6431,15 +6431,15 @@ msgstr "" "Viser et klikkbart tommelfingerbilde; valg: bredde, høyde i piksler (bevarer " "originale forhold)" -#: libraries/messages.inc.php:1169 +#: libraries/messages.inc.php:1165 msgid "Displays a link to download this image." msgstr "Viser en link til dette bildet (m.a.o. direkte blob-nedlasting)." -#: libraries/messages.inc.php:1170 +#: libraries/messages.inc.php:1166 msgid "See image/jpeg: inline" msgstr "Se image/jpeg: inline" -#: libraries/messages.inc.php:1171 +#: libraries/messages.inc.php:1167 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 " @@ -6459,7 +6459,7 @@ msgstr "" "verdi - for \"local\" se dokumentasjonen for PHPs strftime() funksjon og for " "\"utc\" se gmdate() funksjonen." -#: libraries/messages.inc.php:1172 +#: libraries/messages.inc.php:1168 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 " @@ -6483,13 +6483,13 @@ msgstr "" "sette en NOWRAP i innholdscellen slik at hele resultatet blir vist uten " "reformatering (Standard er 1)" -#: libraries/messages.inc.php:1173 +#: libraries/messages.inc.php:1169 msgid "" "Displays the contents of the field as-is, without running it through " "htmlspecialchars(). That is, the field is assumed to contain valid HTML." msgstr "Bevarer original formatering av feltet. Ingen 'escaping' blir utført." -#: libraries/messages.inc.php:1174 +#: libraries/messages.inc.php:1170 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 " @@ -6499,7 +6499,7 @@ msgstr "" "prefiks slik som \"http://domain.com/\", andre verdien er bredden i piksler, " "tredje er høyden." -#: libraries/messages.inc.php:1175 +#: libraries/messages.inc.php:1171 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 " @@ -6508,11 +6508,11 @@ msgstr "" "Viser en link, feltet inneholder filnavnet, ; første verdi er et prefiks " "slik som \"http://domain.com/\", andre verdien er en tittel for linken." -#: libraries/messages.inc.php:1176 +#: libraries/messages.inc.php:1172 msgid "Formats text as SQL query with syntax highlighting." msgstr "Formaterer tekst som en SQL spørring med syntaksutheving." -#: libraries/messages.inc.php:1177 +#: libraries/messages.inc.php:1173 msgid "" "Displays a part of a string. The first option is the number of characters to " "skip from the beginning of the string (Default 0). The second option is the " @@ -6526,69 +6526,69 @@ msgstr "" "verdien definerer hvilke tegn som vil bli lagt til resultatet når en " "delstreng blir returnert (Standard: ...)." -#: libraries/messages.inc.php:1179 server_binlog.php:183 server_binlog.php:186 +#: libraries/messages.inc.php:1175 server_binlog.php:183 server_binlog.php:186 #: server_processlist.php:49 server_processlist.php:51 msgid "Truncate Shown Queries" msgstr "Forkort vist spørring" -#: libraries/messages.inc.php:1180 libraries/mysql_charsets.lib.php:301 +#: libraries/messages.inc.php:1176 libraries/mysql_charsets.lib.php:301 #: libraries/mysql_charsets.lib.php:389 msgid "Turkish" msgstr "tyrkisk" -#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:304 +#: libraries/messages.inc.php:1179 libraries/mysql_charsets.lib.php:304 #: libraries/mysql_charsets.lib.php:386 msgid "Ukrainian" msgstr "ukrainsk" -#: libraries/messages.inc.php:1185 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:1181 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 msgid "Unicode" msgstr "Unicode" -#: libraries/messages.inc.php:1187 libraries/mysql_charsets.lib.php:398 +#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:398 #: libraries/mysql_charsets.lib.php:405 msgid "unknown" msgstr "ukjent" -#: libraries/messages.inc.php:1190 server_privileges.php:1152 +#: libraries/messages.inc.php:1186 server_privileges.php:1152 #, php-format msgid "You have updated the privileges for %s." msgstr "Du har oppdatert privilegiene til %s." -#: libraries/messages.inc.php:1191 user_password.php:112 +#: libraries/messages.inc.php:1187 user_password.php:112 msgid "The profile has been updated." msgstr "Profilen har blitt oppdatert." -#: libraries/messages.inc.php:1193 libraries/relation.lib.php:138 +#: libraries/messages.inc.php:1189 libraries/relation.lib.php:138 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "Les i dokumentasjonen hvordan du oppdaterer din Column_comments tabell" -#: libraries/messages.inc.php:1194 +#: libraries/messages.inc.php:1190 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Du burde oppgradere til %s %s eller nyere." -#: libraries/messages.inc.php:1204 tbl_printview.php:314 tbl_structure.php:661 +#: libraries/messages.inc.php:1200 tbl_printview.php:314 tbl_structure.php:661 msgid "Usage" msgstr "Bruk" -#: libraries/messages.inc.php:1205 +#: libraries/messages.inc.php:1201 msgid "Enclose table and field names with backquotes" msgstr "Bruk venstre anførselstegn med tabell og feltnavn" -#: libraries/messages.inc.php:1206 libraries/replication_gui.lib.php:314 +#: libraries/messages.inc.php:1202 libraries/replication_gui.lib.php:314 #: server_privileges.php:740 msgid "Use Host Table" msgstr "Vis vert tabell" -#: libraries/messages.inc.php:1207 server_privileges.php:848 +#: libraries/messages.inc.php:1203 server_privileges.php:848 #, php-format msgid "The user %s already exists!" msgstr "Brukeren %s finnes fra før!" -#: libraries/messages.inc.php:1209 libraries/replication_gui.lib.php:55 +#: libraries/messages.inc.php:1205 libraries/replication_gui.lib.php:55 #: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245 #: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255 #: server_privileges.php:672 server_privileges.php:675 @@ -6596,37 +6596,37 @@ msgstr "Brukeren %s finnes fra før!" msgid "User name" msgstr "Brukernavn" -#: libraries/messages.inc.php:1210 server_privileges.php:1645 +#: libraries/messages.inc.php:1206 server_privileges.php:1645 msgid "The selected user was not found in the privilege table." msgstr "Den valgte brukeren ble ikke funnet i privilegietabellen." -#: libraries/messages.inc.php:1211 server_privileges.php:1365 +#: libraries/messages.inc.php:1207 server_privileges.php:1365 msgid "User overview" msgstr "Brukeroversikt" -#: libraries/messages.inc.php:1212 server_privileges.php:1261 +#: libraries/messages.inc.php:1208 server_privileges.php:1261 msgid "The selected users have been deleted successfully." msgstr "De valgte brukerne har blitt slettet." -#: libraries/messages.inc.php:1213 server_privileges.php:2026 +#: libraries/messages.inc.php:1209 server_privileges.php:2026 #, php-format msgid "Users having access to "%s"" msgstr "Brukere som har adgang til "%s"" -#: libraries/messages.inc.php:1214 main.php:189 server_privileges.php:1350 +#: libraries/messages.inc.php:1210 main.php:189 server_privileges.php:1350 #: server_privileges.php:1497 server_privileges.php:1611 #: server_privileges.php:2029 server_processlist.php:54 msgid "User" msgstr "Bruker" -#: libraries/messages.inc.php:1215 tbl_change.php:1171 +#: libraries/messages.inc.php:1211 tbl_change.php:1171 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Bruk TAB tasten for å flytte fra verdi til verdi, eller CTRL+piltastene for " "å bevege deg hvor som helst" -#: libraries/messages.inc.php:1217 libraries/replication_gui.lib.php:251 +#: libraries/messages.inc.php:1213 libraries/replication_gui.lib.php:251 #: libraries/replication_gui.lib.php:319 libraries/replication_gui.lib.php:342 #: server_privileges.php:678 server_privileges.php:745 #: server_privileges.php:769 server_privileges.php:1889 @@ -6634,7 +6634,7 @@ msgstr "" msgid "Use text field" msgstr "Bruk tekstfelt" -#: libraries/messages.inc.php:1221 libraries/sqlvalidator.lib.php:68 +#: libraries/messages.inc.php:1217 libraries/sqlvalidator.lib.php:68 #, php-format msgid "" "The SQL validator could not be initialized. Please check if you have " @@ -6643,84 +6643,84 @@ msgstr "" "SQL-kontrolleren kunne ikke startes. Vennligst sjekk at du har installert de " "nødvendige php-tilleggene som beskrevet i %sdokumentasjonen%s." -#: libraries/messages.inc.php:1222 libraries/replication_gui.lib.php:111 +#: libraries/messages.inc.php:1218 libraries/replication_gui.lib.php:111 #: server_status.php:627 tbl_change.php:324 tbl_printview.php:370 #: tbl_select.php:139 tbl_structure.php:730 msgid "Value" msgstr "Verdi" -#: libraries/messages.inc.php:1223 libraries/replication_gui.lib.php:110 +#: libraries/messages.inc.php:1219 libraries/replication_gui.lib.php:110 #: libraries/sql_query_form.lib.php:445 server_status.php:626 #: server_variables.php:52 msgid "Variable" msgstr "Variabler" -#: libraries/messages.inc.php:1225 server_export.php:21 +#: libraries/messages.inc.php:1221 server_export.php:21 msgid "View dump (schema) of databases" msgstr "Vis dumpet skjema av databaser" -#: libraries/messages.inc.php:1227 tbl_export.php:23 +#: libraries/messages.inc.php:1223 tbl_export.php:23 msgid "View dump (schema) of table" msgstr "Vis dump (skjema) av tabell" -#: libraries/messages.inc.php:1231 view_create.php:142 +#: libraries/messages.inc.php:1227 view_create.php:142 msgid "VIEW name" msgstr "VIEW navn" -#: libraries/messages.inc.php:1237 main.php:205 +#: libraries/messages.inc.php:1233 main.php:205 msgid "Web server" msgstr "Webserver" -#: libraries/messages.inc.php:1239 libraries/mysql_charsets.lib.php:277 +#: libraries/messages.inc.php:1235 libraries/mysql_charsets.lib.php:277 #: libraries/mysql_charsets.lib.php:325 msgid "West European" msgstr "vesteuropeisk" -#: libraries/messages.inc.php:1240 main.php:230 +#: libraries/messages.inc.php:1236 main.php:230 msgid "Wiki" msgstr "Wiki" -#: libraries/messages.inc.php:1241 server_privileges.php:2138 +#: libraries/messages.inc.php:1237 server_privileges.php:2138 msgid "wildcard" msgstr "jokertegn" -#: libraries/messages.inc.php:1248 +#: libraries/messages.inc.php:1244 msgid "Export contents" msgstr "Eksporter innhold" -#: libraries/messages.inc.php:1249 +#: libraries/messages.inc.php:1245 msgid "Export functions" msgstr "Eksporter funksjoner" -#: libraries/messages.inc.php:1250 +#: libraries/messages.inc.php:1246 msgid "Export procedures" msgstr "Eksporter prosedyrer" -#: libraries/messages.inc.php:1251 +#: libraries/messages.inc.php:1247 msgid "Export Structure Schemas (recommended)" msgstr "Eksporter strukturskjema (anbefalt)" -#: libraries/messages.inc.php:1252 +#: libraries/messages.inc.php:1248 msgid "Export tables" msgstr "Eksporter tabeller" -#: libraries/messages.inc.php:1253 +#: libraries/messages.inc.php:1249 msgid "Export triggers" msgstr "Eksporter triggere" -#: libraries/messages.inc.php:1254 +#: libraries/messages.inc.php:1250 msgid "Export views" msgstr "Eksporter visninger" -#: libraries/messages.inc.php:1255 +#: libraries/messages.inc.php:1251 msgid "XML" msgstr "XML" -#: libraries/messages.inc.php:1259 server_privileges.php:592 +#: libraries/messages.inc.php:1255 server_privileges.php:592 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Merk: Ved å sette disse til 0 (null) fjernes begrensningen." -#: libraries/messages.inc.php:1260 +#: libraries/messages.inc.php:1256 msgid "\"zipped\"" msgstr "Komprimert (zip)" diff --git a/po/nl.po b/po/nl.po index 23f89fb36..b053246d4 100644 --- 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-05-13 11:25+0200\n" +"POT-Creation-Date: 2010-05-13 11:30+0200\n" "PO-Revision-Date: 2010-03-26 15:46+0200\n" "Last-Translator: \n" "Language-Team: dutch \n" @@ -15,19 +15,19 @@ msgstr "" "X-Generator: Pootle 2.0.1\n" #: browse_foreigners.php:38 browse_foreigners.php:59 -#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:870 +#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:866 #: server_privileges.php:1475 msgid "Show all" msgstr "Toon alles" #: browse_foreigners.php:82 db_operations.php:648 -#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:394 -#: libraries/export/pdf.php:147 libraries/messages.inc.php:597 +#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394 +#: libraries/export/pdf.php:147 libraries/messages.inc.php:593 #: pdf_schema.php:283 pdf_schema.php:1123 pdf_schema.php:1139 msgid "Page number:" msgstr "Paginanummer:" -#: browse_foreigners.php:132 libraries/messages.inc.php:1242 +#: browse_foreigners.php:132 libraries/messages.inc.php:1238 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -39,7 +39,7 @@ 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/db_links.inc.php:75 -#: libraries/messages.inc.php:841 libraries/tbl_links.inc.php:63 +#: libraries/messages.inc.php:837 libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Zoeken" @@ -48,12 +48,12 @@ msgstr "Zoeken" #: db_search.php:362 db_structure.php:567 js/messages.php:48 #: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2267 +#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 #: 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 #: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614 -#: libraries/messages.inc.php:361 libraries/replication_gui.lib.php:73 +#: libraries/messages.inc.php:357 libraries/replication_gui.lib.php:73 #: libraries/replication_gui.lib.php:365 libraries/select_server.lib.php:104 #: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477 #: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782 @@ -73,33 +73,33 @@ msgid "Go" msgstr "Start" #: browse_foreigners.php:168 browse_foreigners.php:172 -#: libraries/Index.class.php:442 libraries/messages.inc.php:459 +#: libraries/Index.class.php:442 libraries/messages.inc.php:455 #: tbl_tracking.php:320 msgid "Keyname" msgstr "Sleutelnaam" #: browse_foreigners.php:169 browse_foreigners.php:171 -#: libraries/messages.inc.php:252 server_collations.php:55 +#: libraries/messages.inc.php:248 server_collations.php:55 #: server_collations.php:67 server_engines.php:59 server_status.php:628 msgid "Description" msgstr "Beschrijving" #: browse_foreigners.php:247 browse_foreigners.php:256 #: browse_foreigners.php:268 browse_foreigners.php:276 -#: libraries/messages.inc.php:1218 +#: libraries/messages.inc.php:1214 msgid "Use this value" msgstr "Gebruik deze waarde" -#: db_create.php:46 libraries/messages.inc.php:215 +#: db_create.php:46 libraries/messages.inc.php:211 #, php-format msgid "Database %1$s has been created." msgstr "Database %1$s is aangemaakt." -#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:232 +#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:228 msgid "Database comment: " msgstr "Database commentaar: " -#: db_datadict.php:165 libraries/messages.inc.php:1070 +#: db_datadict.php:165 libraries/messages.inc.php:1066 #: libraries/tbl_properties.inc.php:724 pdf_schema.php:1236 #: tbl_operations.php:345 tbl_printview.php:130 msgid "Table comments" @@ -108,7 +108,7 @@ msgstr "Tabelopmerkingen" #: db_datadict.php:174 db_qbe.php:174 libraries/Index.class.php:446 #: libraries/export/htmlword.php:244 libraries/export/latex.php:360 #: libraries/export/odt.php:294 libraries/export/texytext.php:233 -#: libraries/messages.inc.php:317 libraries/tbl_properties.inc.php:99 +#: libraries/messages.inc.php:313 libraries/tbl_properties.inc.php:99 #: libraries/tbl_properties.inc.php:275 pdf_schema.php:1262 #: pdf_schema.php:1283 tbl_change.php:308 tbl_indexes.php:189 #: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135 @@ -120,7 +120,7 @@ msgstr "Veld" #: libraries/db_events.inc.php:31 libraries/db_routines.inc.php:42 #: 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/messages.inc.php:1181 +#: libraries/export/texytext.php:234 libraries/messages.inc.php:1177 #: libraries/tbl_properties.inc.php:100 pdf_schema.php:1263 #: pdf_schema.php:1284 server_privileges.php:2031 tbl_change.php:287 #: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313 @@ -132,7 +132,7 @@ msgstr "Type" #: db_datadict.php:177 libraries/Index.class.php:449 #: libraries/export/htmlword.php:246 libraries/export/latex.php:360 #: libraries/export/odt.php:300 libraries/export/texytext.php:235 -#: libraries/messages.inc.php:576 libraries/tbl_properties.inc.php:109 +#: libraries/messages.inc.php:572 libraries/tbl_properties.inc.php:109 #: pdf_schema.php:1265 pdf_schema.php:1286 tbl_change.php:323 #: tbl_printview.php:145 tbl_structure.php:181 tbl_tracking.php:276 #: tbl_tracking.php:327 @@ -141,7 +141,7 @@ msgstr "Null" #: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 -#: libraries/export/texytext.php:236 libraries/messages.inc.php:238 +#: libraries/export/texytext.php:236 libraries/messages.inc.php:234 #: libraries/tbl_properties.inc.php:106 pdf_schema.php:1266 #: pdf_schema.php:1287 tbl_printview.php:146 tbl_structure.php:182 #: tbl_tracking.php:277 @@ -150,14 +150,14 @@ msgstr "Standaardwaarde" #: db_datadict.php:182 libraries/export/htmlword.php:249 #: libraries/export/latex.php:362 libraries/export/odt.php:307 -#: libraries/export/texytext.php:238 libraries/messages.inc.php:483 +#: libraries/export/texytext.php:238 libraries/messages.inc.php:479 #: pdf_schema.php:1268 pdf_schema.php:1289 tbl_printview.php:150 msgid "Links to" msgstr "Gelinkt naar" #: db_datadict.php:184 db_printview.php:112 libraries/export/htmlword.php:252 #: libraries/export/latex.php:365 libraries/export/odt.php:312 -#: libraries/export/texytext.php:241 libraries/messages.inc.php:163 +#: libraries/export/texytext.php:241 libraries/messages.inc.php:159 #: libraries/tbl_properties.inc.php:130 pdf_schema.php:1279 #: pdf_schema.php:1290 tbl_printview.php:152 msgid "Comments" @@ -166,7 +166,7 @@ msgstr "Commentaar" #: db_datadict.php:267 libraries/Index.class.php:359 #: 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/messages.inc.php:559 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:555 #: libraries/mult_submits.inc.php:263 pdf_schema.php:1344 #: server_privileges.php:1529 server_privileges.php:1540 #: server_privileges.php:1850 server_privileges.php:1855 @@ -178,7 +178,7 @@ msgstr "Nee" #: db_datadict.php:267 libraries/Index.class.php:360 #: libraries/Index.class.php:385 libraries/export/htmlword.php:322 #: libraries/export/latex.php:430 libraries/export/odt.php:368 -#: libraries/export/texytext.php:311 libraries/messages.inc.php:1257 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:1253 #: libraries/mult_submits.inc.php:45 libraries/mult_submits.inc.php:50 #: libraries/mult_submits.inc.php:55 libraries/mult_submits.inc.php:60 #: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:101 @@ -192,108 +192,108 @@ msgstr "Nee" msgid "Yes" msgstr "Ja" -#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:670 +#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:666 #: tbl_printview.php:498 msgid "Print" msgstr "Afdrukken" -#: db_export.php:29 libraries/messages.inc.php:1226 +#: db_export.php:29 libraries/messages.inc.php:1222 msgid "View dump (schema) of database" msgstr "Bekijk een dump (schema) van database" #: db_export.php:33 db_printview.php:96 db_qbe.php:102 db_structure.php:51 -#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:568 +#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:564 #: navigation.php:346 msgid "No tables found in database." msgstr "Geen tabellen gevonden in de database." -#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:845 +#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:841 #: server_export.php:27 msgid "Select All" msgstr "Selecteer alles" -#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1188 +#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1184 #: server_export.php:29 msgid "Unselect All" msgstr "Deselecteer alles" -#: db_operations.php:38 libraries/messages.inc.php:213 tbl_create.php:54 +#: db_operations.php:38 libraries/messages.inc.php:209 tbl_create.php:54 msgid "The database name is empty!" msgstr "De database naam is leeg!" -#: db_operations.php:236 libraries/messages.inc.php:753 +#: db_operations.php:236 libraries/messages.inc.php:749 #, php-format msgid "Database %s has been renamed to %s" msgstr "Database %s is hernoemd naar %s" -#: db_operations.php:240 libraries/messages.inc.php:178 +#: db_operations.php:240 libraries/messages.inc.php:174 #, php-format msgid "Database %s has been copied to %s" msgstr "Database %s is gekopieerd naar %s" -#: db_operations.php:410 libraries/messages.inc.php:236 +#: db_operations.php:410 libraries/messages.inc.php:232 msgid "Rename database to" msgstr "Hernoem database naar" -#: db_operations.php:415 libraries/messages.inc.php:161 +#: db_operations.php:415 libraries/messages.inc.php:157 #: server_processlist.php:57 msgid "Command" msgstr "Commando" -#: db_operations.php:425 libraries/messages.inc.php:58 tbl_change.php:1143 +#: db_operations.php:425 libraries/messages.inc.php:54 tbl_change.php:1143 msgid "and then" msgstr "en dan" -#: db_operations.php:451 libraries/messages.inc.php:233 +#: db_operations.php:451 libraries/messages.inc.php:229 msgid "Copy database to" msgstr "Kopieer database naar" -#: db_operations.php:458 libraries/messages.inc.php:1043 +#: db_operations.php:458 libraries/messages.inc.php:1039 #: tbl_operations.php:526 tbl_tracking.php:388 msgid "Structure only" msgstr "Alleen structuur" -#: db_operations.php:459 libraries/messages.inc.php:1041 +#: db_operations.php:459 libraries/messages.inc.php:1037 #: tbl_operations.php:527 tbl_tracking.php:390 msgid "Structure and data" msgstr "Structuur en gegevens" -#: db_operations.php:460 libraries/messages.inc.php:229 tbl_operations.php:528 +#: db_operations.php:460 libraries/messages.inc.php:225 tbl_operations.php:528 #: tbl_tracking.php:389 msgid "Data only" msgstr "Alleen data" -#: db_operations.php:468 libraries/messages.inc.php:186 +#: db_operations.php:468 libraries/messages.inc.php:182 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE voor het kopiëren" #: db_operations.php:471 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 -#: libraries/export/sql.php:82 libraries/messages.inc.php:30 +#: libraries/export/sql.php:82 libraries/messages.inc.php:26 #: tbl_operations.php:534 #, php-format msgid "Add %s" msgstr "Voeg %s toe" -#: db_operations.php:475 libraries/messages.inc.php:29 tbl_operations.php:297 +#: db_operations.php:475 libraries/messages.inc.php:25 tbl_operations.php:297 #: tbl_operations.php:536 msgid "Add AUTO_INCREMENT value" msgstr "Voeg AUTO_INCREMENT waarde toe" -#: db_operations.php:479 libraries/messages.inc.php:31 tbl_operations.php:543 +#: db_operations.php:479 libraries/messages.inc.php:27 tbl_operations.php:543 msgid "Add constraints" msgstr "Voeg beperkingen toe" -#: db_operations.php:492 libraries/messages.inc.php:1059 +#: db_operations.php:492 libraries/messages.inc.php:1055 msgid "Switch to copied database" msgstr "Schakel naar de gekopieerde database" -#: db_operations.php:533 libraries/messages.inc.php:89 +#: db_operations.php:533 libraries/messages.inc.php:85 msgid "BLOB Repository" msgstr "BLOB Bewaarplaats" #: db_operations.php:536 db_tracking.php:76 libraries/common.lib.php:1350 -#: libraries/messages.inc.php:1037 libraries/server_links.inc.php:49 +#: libraries/messages.inc.php:1033 libraries/server_links.inc.php:49 #: server_processlist.php:59 tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "Status" @@ -305,11 +305,11 @@ msgctxt "BLOB repository" msgid "Enabled" msgstr "Ingeschakeld" -#: db_operations.php:548 libraries/messages.inc.php:93 +#: db_operations.php:548 libraries/messages.inc.php:89 msgid "Disable" msgstr "Uitschakelen" -#: db_operations.php:558 libraries/messages.inc.php:90 +#: db_operations.php:558 libraries/messages.inc.php:86 msgid "Damaged" msgstr "Beschadigd" @@ -327,12 +327,12 @@ msgctxt "BLOB repository" msgid "Disabled" msgstr "Uitgeschakeld" -#: db_operations.php:574 libraries/messages.inc.php:96 +#: db_operations.php:574 libraries/messages.inc.php:92 msgid "Enable" msgstr "Inschakelen" #: db_operations.php:598 libraries/Index.class.php:448 -#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:158 +#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:154 #: 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:361 @@ -341,7 +341,7 @@ msgstr "Inschakelen" msgid "Collation" msgstr "Collatie" -#: db_operations.php:609 libraries/messages.inc.php:742 main.php:316 +#: db_operations.php:609 libraries/messages.inc.php:738 main.php:316 #: pdf_schema.php:34 #, php-format msgid "" @@ -351,58 +351,58 @@ 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:645 libraries/messages.inc.php:264 pdf_pages.php:528 +#: db_operations.php:645 libraries/messages.inc.php:260 pdf_pages.php:528 msgid "Display PDF schema" msgstr "Geef het PDF-schema weer" -#: db_operations.php:661 libraries/messages.inc.php:877 pdf_pages.php:529 +#: db_operations.php:661 libraries/messages.inc.php:873 pdf_pages.php:529 msgid "Show grid" msgstr "Toon raster" -#: db_operations.php:664 libraries/messages.inc.php:874 pdf_pages.php:530 +#: db_operations.php:664 libraries/messages.inc.php:870 pdf_pages.php:530 msgid "Show color" msgstr "Toon kleur" -#: db_operations.php:666 libraries/messages.inc.php:998 pdf_pages.php:531 +#: db_operations.php:666 libraries/messages.inc.php:994 pdf_pages.php:531 msgid "Show dimension of tables" msgstr "Geef de dimensies van de tabellen weer" -#: db_operations.php:669 libraries/messages.inc.php:52 pdf_pages.php:532 +#: db_operations.php:669 libraries/messages.inc.php:48 pdf_pages.php:532 msgid "Display all tables with the same width" msgstr "Alle tabellen weergeven met dezelfde breedte?" -#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:227 +#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:223 #: pdf_pages.php:533 msgid "Data Dictionary" msgstr "Data Woordenboek" -#: db_operations.php:674 libraries/messages.inc.php:884 pdf_pages.php:534 +#: db_operations.php:674 libraries/messages.inc.php:880 pdf_pages.php:534 msgid "Only show keys" msgstr "Alleen sleutels tonen" -#: db_operations.php:676 libraries/messages.inc.php:875 pdf_pages.php:535 +#: db_operations.php:676 libraries/messages.inc.php:871 pdf_pages.php:535 msgid "Data Dictionary Format" msgstr "Data Dictionary Formaat" -#: db_operations.php:678 libraries/messages.inc.php:464 pdf_pages.php:537 +#: db_operations.php:678 libraries/messages.inc.php:460 pdf_pages.php:537 msgid "Landscape" msgstr "Landschap" -#: db_operations.php:679 libraries/messages.inc.php:663 pdf_pages.php:538 +#: db_operations.php:679 libraries/messages.inc.php:659 pdf_pages.php:538 msgid "Portrait" msgstr "Portret" -#: db_operations.php:682 libraries/messages.inc.php:599 pdf_pages.php:541 +#: db_operations.php:682 libraries/messages.inc.php:595 pdf_pages.php:541 msgid "Paper size" msgstr "Papierformaat" -#: db_operations.php:706 libraries/messages.inc.php:281 +#: db_operations.php:706 libraries/messages.inc.php:277 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 libraries/messages.inc.php:1087 +#: libraries/header.inc.php:126 libraries/messages.inc.php:1083 #: pdf_pages.php:405 server_privileges.php:1626 server_privileges.php:1682 #: server_privileges.php:1946 server_synchronize.php:423 #: server_synchronize.php:866 tbl_tracking.php:592 test/theme.php:75 @@ -410,176 +410,176 @@ msgid "Table" msgstr "Tabel" #: db_printview.php:105 libraries/db_structure.lib.php:56 -#: libraries/messages.inc.php:735 +#: libraries/messages.inc.php:731 msgid "Records" msgstr "Records" #: db_printview.php:109 libraries/db_structure.lib.php:67 -#: libraries/messages.inc.php:1003 tbl_indexes.php:190 +#: libraries/messages.inc.php:999 tbl_indexes.php:190 msgid "Size" msgstr "Grootte" #: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 -#: libraries/export/sql.php:899 libraries/messages.inc.php:436 +#: libraries/export/sql.php:899 libraries/messages.inc.php:432 msgid "in use" msgstr "in gebruik" #: db_printview.php:187 libraries/db_info.inc.php:88 -#: libraries/export/sql.php:514 libraries/messages.inc.php:1032 +#: libraries/export/sql.php:514 libraries/messages.inc.php:1028 #: pdf_schema.php:1241 tbl_printview.php:434 tbl_structure.php:810 msgid "Creation" msgstr "Gecreëerd" #: db_printview.php:196 libraries/db_info.inc.php:93 -#: libraries/export/sql.php:519 libraries/messages.inc.php:1036 +#: libraries/export/sql.php:519 libraries/messages.inc.php:1032 #: pdf_schema.php:1246 tbl_printview.php:444 tbl_structure.php:818 msgid "Last update" msgstr "Laatst bijgewerkt" #: db_printview.php:205 libraries/db_info.inc.php:98 -#: libraries/export/sql.php:524 libraries/messages.inc.php:1031 +#: libraries/export/sql.php:524 libraries/messages.inc.php:1027 #: pdf_schema.php:1251 tbl_printview.php:454 tbl_structure.php:826 msgid "Last check" msgstr "Laatst gecontroleerd" -#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1085 +#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1081 #, php-format msgid "%s table(s)" msgstr "%s tabel(len)" #: db_qbe.php:29 libraries/display_tbl.lib.php:1981 -#: libraries/messages.inc.php:1051 libraries/sql_query_form.lib.php:140 +#: libraries/messages.inc.php:1047 libraries/sql_query_form.lib.php:140 #: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131 #: view_operations.php:62 msgid "Your SQL query has been executed successfully" msgstr "Uw SQL-query is succesvol uitgevoerd." -#: db_qbe.php:42 libraries/messages.inc.php:371 +#: db_qbe.php:42 libraries/messages.inc.php:367 msgid "You have to choose at least one column to display" msgstr "Er moet ten minste 1 weer te geven kolom worden gekozen" #: db_qbe.php:200 libraries/db_structure.lib.php:104 -#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1014 +#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1010 msgid "Sort" msgstr "Sorteren" #: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111 #: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828 -#: libraries/messages.inc.php:69 server_databases.php:170 +#: libraries/messages.inc.php:65 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314 msgid "Ascending" msgstr "Oplopend" #: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119 #: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825 -#: libraries/messages.inc.php:251 server_databases.php:170 +#: libraries/messages.inc.php:247 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315 msgid "Descending" msgstr "Aflopend" #: db_qbe.php:264 db_tracking.php:78 libraries/display_tbl.lib.php:308 -#: libraries/messages.inc.php:888 tbl_change.php:277 tbl_tracking.php:597 +#: libraries/messages.inc.php:884 tbl_change.php:277 tbl_tracking.php:597 msgid "Show" msgstr "Toon" -#: db_qbe.php:300 libraries/messages.inc.php:202 +#: db_qbe.php:300 libraries/messages.inc.php:198 msgid "Criteria" msgstr "Criteria" #: db_qbe.php:353 db_qbe.php:435 db_qbe.php:527 db_qbe.php:558 -#: libraries/messages.inc.php:718 +#: libraries/messages.inc.php:714 msgid "Ins" msgstr "Toevoegen" #: db_qbe.php:357 db_qbe.php:439 db_qbe.php:524 db_qbe.php:555 -#: libraries/messages.inc.php:56 +#: libraries/messages.inc.php:52 msgid "And" msgstr "En" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:529 db_qbe.php:560 -#: libraries/messages.inc.php:717 +#: libraries/messages.inc.php:713 msgid "Del" 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/messages.inc.php:592 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:588 #: libraries/tbl_properties.inc.php:779 server_privileges.php:258 #: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288 msgid "Or" msgstr "Of" -#: db_qbe.php:507 libraries/messages.inc.php:516 +#: db_qbe.php:507 libraries/messages.inc.php:512 msgid "Modify" msgstr "Aanpassen" -#: db_qbe.php:584 libraries/messages.inc.php:33 +#: db_qbe.php:584 libraries/messages.inc.php:29 msgid "Add/Delete Criteria Row" msgstr "Toevoegen/Verwijderen Criteria Rij" -#: db_qbe.php:596 libraries/messages.inc.php:32 +#: db_qbe.php:596 libraries/messages.inc.php:28 msgid "Add/Delete Field Columns" msgstr "Toevoegen/Verwijderen Veld Kolommen" -#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1192 +#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1188 msgid "Update Query" msgstr "Wijzig Query" -#: db_qbe.php:617 libraries/messages.inc.php:1216 +#: db_qbe.php:617 libraries/messages.inc.php:1212 msgid "Use Tables" msgstr "Gebruik tabellen" -#: db_qbe.php:640 libraries/messages.inc.php:723 +#: db_qbe.php:640 libraries/messages.inc.php:719 #, php-format msgid "SQL query on database %s:" msgstr "SQL-query op database %s:" -#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:823 +#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:819 msgid "Submit Query" msgstr "Query uitvoeren" #: db_search.php:68 libraries/auth/config.auth.lib.php:84 #: libraries/auth/config.auth.lib.php:103 #: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52 -#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:26 +#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:22 msgid "Access denied" msgstr "Toegang geweigerd " -#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:836 +#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:832 msgid "at least one of the words" msgstr "ten minste een van de woorden" -#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:837 +#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:833 msgid "all words" msgstr "alle woorden" -#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:838 +#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:834 msgid "the exact phrase" msgstr "de exacte zin" -#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:839 +#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:835 msgid "as regular expression" msgstr "als een reguliere expressie" -#: db_search.php:242 libraries/messages.inc.php:840 +#: db_search.php:242 libraries/messages.inc.php:836 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Zoek resultaten voor \"%s\" %s:" -#: db_search.php:260 libraries/messages.inc.php:579 +#: db_search.php:260 libraries/messages.inc.php:575 #, php-format msgid "%s match(es) inside table %s" 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/messages.inc.php:108 +#: db_structure.php:105 libraries/messages.inc.php:104 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468 msgid "Browse" msgstr "Verkennen" #: db_search.php:272 libraries/display_tbl.lib.php:1165 -#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:243 +#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:239 #: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406 #: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377 #: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216 @@ -587,45 +587,45 @@ msgstr "Verkennen" msgid "Delete" msgstr "Verwijderen" -#: db_search.php:285 libraries/messages.inc.php:580 +#: db_search.php:285 libraries/messages.inc.php:576 #, php-format msgid "Total: %s match(es)" msgstr "Totaal: %s overeenkomst(en)" -#: db_search.php:299 libraries/messages.inc.php:832 +#: db_search.php:299 libraries/messages.inc.php:828 msgid "Search in database" msgstr "Zoeken in de database" -#: db_search.php:302 libraries/messages.inc.php:835 +#: db_search.php:302 libraries/messages.inc.php:831 msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgstr "Woord(en) of waarde(s) waarnaar gezocht moet worden (wildcard: \"%\"):" -#: db_search.php:307 libraries/messages.inc.php:842 +#: db_search.php:307 libraries/messages.inc.php:838 msgid "Find:" msgstr "Zoek:" -#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1017 +#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1013 msgid "Words are separated by a space character (\" \")." msgstr "Woorden worden gesplits door een spatiekarakter (\" \")." -#: db_search.php:325 libraries/messages.inc.php:834 +#: db_search.php:325 libraries/messages.inc.php:830 msgid "Inside table(s):" msgstr "In de tabel(len):" -#: db_search.php:355 libraries/messages.inc.php:833 +#: db_search.php:355 libraries/messages.inc.php:829 msgid "Inside field:" 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/messages.inc.php:431 libraries/sql_query_form.lib.php:334 +#: libraries/messages.inc.php:427 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/db_links.inc.php:63 libraries/export/latex.php:337 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:1048 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:1044 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 #: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269 msgid "Structure" @@ -634,8 +634,8 @@ 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:1642 -#: libraries/db_links.inc.php:100 libraries/messages.inc.php:272 +#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/db_links.inc.php:100 libraries/messages.inc.php:268 #: 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 @@ -645,40 +645,40 @@ 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:1641 -#: libraries/messages.inc.php:284 libraries/mult_submits.inc.php:39 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: libraries/messages.inc.php:280 libraries/mult_submits.inc.php:39 #: libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Legen" -#: db_structure.php:316 libraries/messages.inc.php:1075 +#: db_structure.php:316 libraries/messages.inc.php:1071 #: libraries/tbl_links.inc.php:100 #, php-format msgid "Table %s has been emptied" msgstr "Tabel %s is leeg gemaakt" -#: db_structure.php:326 libraries/messages.inc.php:1229 +#: db_structure.php:326 libraries/messages.inc.php:1225 #: libraries/tbl_links.inc.php:133 #, php-format msgid "View %s has been dropped" msgstr "View %s is verwijderd" -#: db_structure.php:326 libraries/messages.inc.php:1074 +#: db_structure.php:326 libraries/messages.inc.php:1070 #: libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "Tabel %s is vervallen" -#: db_structure.php:333 libraries/messages.inc.php:1128 +#: db_structure.php:333 libraries/messages.inc.php:1124 msgid "Tracking is active." msgstr "Tracking is ingeschakeld." -#: db_structure.php:335 libraries/messages.inc.php:1129 +#: db_structure.php:335 libraries/messages.inc.php:1125 msgid "Tracking is not active." msgstr "Tracking is niet actief." #: db_structure.php:420 libraries/display_tbl.lib.php:1944 -#: libraries/messages.inc.php:1228 +#: libraries/messages.inc.php:1224 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -687,83 +687,83 @@ 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 -#: libraries/messages.inc.php:1233 libraries/tbl_info.inc.php:66 +#: libraries/messages.inc.php:1229 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/messages.inc.php:773 libraries/server_links.inc.php:70 +#: libraries/messages.inc.php:769 libraries/server_links.inc.php:70 #: server_replication.php:33 server_replication.php:164 server_status.php:258 msgid "Replication" msgstr "Replicatie" -#: db_structure.php:489 libraries/messages.inc.php:1053 +#: db_structure.php:489 libraries/messages.inc.php:1049 msgid "Sum" msgstr "Som" #: db_structure.php:496 libraries/StorageEngine.class.php:356 -#: libraries/messages.inc.php:239 +#: libraries/messages.inc.php:235 #, 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 #: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086 -#: libraries/messages.inc.php:1243 libraries/mult_submits.inc.php:16 +#: libraries/messages.inc.php:1239 libraries/mult_submits.inc.php:16 #: server_databases.php:346 server_databases.php:351 #: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465 msgid "With selected:" msgstr "Met geselecteerd:" #: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: libraries/messages.inc.php:148 server_databases.php:348 +#: libraries/messages.inc.php:144 server_databases.php:348 #: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459 msgid "Check All" msgstr "Selecteer alles" #: db_structure.php:531 libraries/display_tbl.lib.php:2077 -#: libraries/messages.inc.php:1184 libraries/replication_gui.lib.php:33 +#: libraries/messages.inc.php:1180 libraries/replication_gui.lib.php:33 #: server_databases.php:350 server_privileges.php:533 #: server_privileges.php:1564 tbl_structure.php:463 msgid "Uncheck All" msgstr "Deselecteer alles" -#: db_structure.php:536 libraries/messages.inc.php:150 +#: db_structure.php:536 libraries/messages.inc.php:146 msgid "Check tables having overhead" msgstr "Selecteer tabellen met overhead" #: db_structure.php:547 db_structure.php:548 db_structure.php:599 -#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:672 +#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:668 #: libraries/mult_submits.inc.php:28 tbl_structure.php:493 #: tbl_structure.php:495 msgid "Print view" msgstr "Afdrukken" -#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:153 +#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:149 #: libraries/mult_submits.inc.php:42 tbl_operations.php:579 msgid "Check table" msgstr "Controleer tabel" -#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:590 +#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:586 #: libraries/mult_submits.inc.php:47 tbl_operations.php:619 #: tbl_structure.php:710 tbl_structure.php:712 msgid "Optimize table" msgstr "Optimaliseer tabel" -#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:758 +#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:754 #: libraries/mult_submits.inc.php:52 tbl_operations.php:609 msgid "Repair table" msgstr "Repareer tabel" -#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:55 +#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:51 #: libraries/mult_submits.inc.php:57 tbl_operations.php:599 msgid "Analyze table" msgstr "Analyseer tabel" #: db_structure.php:557 db_structure.php:558 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/messages.inc.php:310 +#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:306 #: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84 #: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109 #: server_privileges.php:1341 setup/frames/menu.inc.php:22 @@ -771,7 +771,7 @@ msgstr "Analyseer tabel" msgid "Export" msgstr "Exporteer" -#: db_tracking.php:66 libraries/messages.inc.php:1151 +#: db_tracking.php:66 libraries/messages.inc.php:1147 msgid "Tracked tables" msgstr "Tabellen met tracker" @@ -779,7 +779,7 @@ msgstr "Tabellen met tracker" #: 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/header_printview.inc.php:58 libraries/messages.inc.php:212 +#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:208 #: navigation.php:233 server_databases.php:169 server_privileges.php:1621 #: server_privileges.php:1682 server_privileges.php:1940 #: server_processlist.php:56 server_synchronize.php:1179 @@ -787,77 +787,77 @@ msgstr "Tabellen met tracker" msgid "Database" msgstr "Database" -#: db_tracking.php:73 libraries/messages.inc.php:1146 +#: db_tracking.php:73 libraries/messages.inc.php:1142 msgid "Last version" msgstr "Laatste versie" -#: db_tracking.php:74 libraries/messages.inc.php:1145 tbl_tracking.php:594 +#: db_tracking.php:74 libraries/messages.inc.php:1141 tbl_tracking.php:594 msgid "Created" msgstr "Aangemaakt" -#: db_tracking.php:75 libraries/messages.inc.php:1147 tbl_tracking.php:595 +#: db_tracking.php:75 libraries/messages.inc.php:1143 tbl_tracking.php:595 msgid "Updated" msgstr "Bijgewerkt" #: db_tracking.php:77 libraries/Index.class.php:440 -#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:27 +#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:23 #: server_databases.php:203 server_privileges.php:1503 #: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187 msgid "Action" msgstr "Actie" -#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:247 +#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:243 msgid "Delete tracking data for this table" msgstr "Verwijder tracking data voor deze tabel" -#: db_tracking.php:106 libraries/messages.inc.php:1142 tbl_tracking.php:548 +#: db_tracking.php:106 libraries/messages.inc.php:1138 tbl_tracking.php:548 #: tbl_tracking.php:606 tbl_tracking.php:613 msgid "active" msgstr "ingeschakeld" -#: db_tracking.php:108 libraries/messages.inc.php:1143 tbl_tracking.php:550 +#: db_tracking.php:108 libraries/messages.inc.php:1139 tbl_tracking.php:550 #: tbl_tracking.php:608 tbl_tracking.php:610 msgid "not active" msgstr "niet actief" -#: db_tracking.php:121 libraries/messages.inc.php:1160 +#: db_tracking.php:121 libraries/messages.inc.php:1156 msgid "Versions" msgstr "Versies" -#: db_tracking.php:122 libraries/messages.inc.php:1132 tbl_tracking.php:379 +#: db_tracking.php:122 libraries/messages.inc.php:1128 tbl_tracking.php:379 #: tbl_tracking.php:624 msgid "Tracking report" msgstr "Tracking-rapport" -#: db_tracking.php:123 libraries/messages.inc.php:1144 tbl_tracking.php:251 +#: db_tracking.php:123 libraries/messages.inc.php:1140 tbl_tracking.php:251 #: tbl_tracking.php:624 msgid "Structure snapshot" msgstr "Structuur-snapshot" -#: db_tracking.php:152 libraries/messages.inc.php:1154 +#: db_tracking.php:152 libraries/messages.inc.php:1150 msgid "Untracked tables" msgstr "Tabellen zonder tracker" -#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1153 +#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1149 #: tbl_structure.php:529 tbl_structure.php:531 msgid "Track table" msgstr "Tabel tracken" -#: db_tracking.php:200 libraries/messages.inc.php:1121 +#: db_tracking.php:200 libraries/messages.inc.php:1117 msgid "Database Log" msgstr "Database-log" -#: export.php:62 libraries/messages.inc.php:312 +#: export.php:62 libraries/messages.inc.php:308 msgid "Selected export type has to be saved in file!" msgstr "" "Het geselecteerde export type dient als een bestand te worden opgeslagen!" -#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:567 +#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:563 #, php-format msgid "Insufficient space to save the file %s." msgstr "Onvoldoende ruimte om het bestand %s op te slaan." -#: export.php:294 libraries/messages.inc.php:324 +#: export.php:294 libraries/messages.inc.php:320 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -865,17 +865,17 @@ msgstr "" "Bestand %s bestaat al op de server, verander de bestandsnaam of activeer de " "overschrijven optie." -#: export.php:298 export.php:302 libraries/messages.inc.php:562 +#: export.php:298 export.php:302 libraries/messages.inc.php:558 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "De web server heeft geen rechten om het bestand %s op te slaan." -#: export.php:629 libraries/messages.inc.php:276 +#: export.php:629 libraries/messages.inc.php:272 #, php-format msgid "Dump has been saved to file %s." msgstr "Dump is bewaard als %s." -#: import.php:60 libraries/messages.inc.php:1202 +#: import.php:60 libraries/messages.inc.php:1198 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation%" @@ -885,14 +885,14 @@ msgstr "" "sdocumentatie%s voor mogelijkheden om dit te omzeilen." #: import.php:279 import.php:332 libraries/File.class.php:849 -#: libraries/File.class.php:961 libraries/messages.inc.php:325 +#: libraries/File.class.php:961 libraries/messages.inc.php:321 msgid "File could not be read" msgstr "Bestand kon niet worden gelezen" #: import.php:287 import.php:296 import.php:315 import.php:324 #: libraries/File.class.php:1031 libraries/File.class.php:1039 #: libraries/File.class.php:1055 libraries/File.class.php:1063 -#: libraries/messages.inc.php:1189 +#: libraries/messages.inc.php:1185 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -902,7 +902,7 @@ msgstr "" "uploaden. De ondersteuning is niet geïmplementeerd of uitgeschakeld in de " "configuratie." -#: import.php:337 libraries/messages.inc.php:547 +#: import.php:337 libraries/messages.inc.php:543 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -914,31 +914,31 @@ msgstr "" "Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." #: import.php:372 libraries/display_import.lib.php:24 -#: libraries/messages.inc.php:125 +#: libraries/messages.inc.php:121 msgid "Could not load import plugins, please check your installation!" msgstr "" "De plugins voor het importeren konden niet worden geladen, controleer uw " "installatie!" -#: import.php:397 libraries/messages.inc.php:102 +#: import.php:397 libraries/messages.inc.php:98 msgid "The bookmark has been deleted." msgstr "De boekenlegger (Bookmark) is verwijderd." -#: import.php:401 libraries/messages.inc.php:879 +#: import.php:401 libraries/messages.inc.php:875 msgid "Showing bookmark" msgstr "Toon bookmark" -#: import.php:403 libraries/messages.inc.php:101 +#: import.php:403 libraries/messages.inc.php:97 #, php-format msgid "Bookmark %s created" msgstr "Bookmark %s aangemaakt" -#: import.php:409 import.php:415 libraries/messages.inc.php:407 +#: import.php:409 import.php:415 libraries/messages.inc.php:403 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Import is geslaagd, %d queries uitgevoerd." -#: import.php:424 libraries/messages.inc.php:1107 +#: import.php:424 libraries/messages.inc.php:1103 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -946,13 +946,13 @@ msgstr "" "De maximale uitvoertijd is verstreken, indien u de import wil afmaken kunt u " "het bestand opnieuw invoeren." -#: index.php:190 libraries/messages.inc.php:553 +#: index.php:190 libraries/messages.inc.php:549 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" "phpMyAdmin werkt gebruiksvriendelijker met een browser die frames aan " "kan." -#: js/messages.php:25 libraries/messages.inc.php:155 +#: js/messages.php:25 libraries/messages.inc.php:151 #: server_synchronize.php:345 server_synchronize.php:357 #: server_synchronize.php:373 server_synchronize.php:380 #: server_synchronize.php:739 server_synchronize.php:767 @@ -960,118 +960,118 @@ msgstr "" msgid "Click to select" msgstr "Klik om te selecteren" -#: js/messages.php:26 libraries/messages.inc.php:156 +#: js/messages.php:26 libraries/messages.inc.php:152 msgid "Click to unselect" msgstr "Klik om te de-selecteren" #: js/messages.php:27 libraries/import.lib.php:103 -#: libraries/messages.inc.php:550 sql.php:89 +#: libraries/messages.inc.php:546 sql.php:89 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\"-opdrachten zijn niet mogelijk." -#: js/messages.php:30 libraries/messages.inc.php:270 +#: js/messages.php:30 libraries/messages.inc.php:266 #: libraries/mult_submits.inc.php:258 sql.php:188 msgid "Do you really want to " msgstr "Weet u zeker dat u dit wilt " -#: js/messages.php:31 libraries/messages.inc.php:271 +#: js/messages.php:31 libraries/messages.inc.php:267 #: libraries/mult_submits.inc.php:258 sql.php:172 msgid "You are about to DESTROY a complete database!" msgstr "U staat op het punt een complete database te VERWIJDEREN!" -#: js/messages.php:34 libraries/messages.inc.php:94 +#: js/messages.php:34 libraries/messages.inc.php:90 msgid "You are about to DISABLE a BLOB Repository!" msgstr "U staat op het punt om een BLOB Bewaarplaats UIT TE SCHAKELEN!" -#: js/messages.php:35 libraries/messages.inc.php:91 +#: js/messages.php:35 libraries/messages.inc.php:87 #, php-format msgid "Are you sure you want to disable all BLOB references for database %s?" msgstr "" "U staat op het punt om alle BLOB referenties voor database %s uit te " "schakelen. Weet u het zeker?" -#: js/messages.php:38 libraries/messages.inc.php:342 +#: js/messages.php:38 libraries/messages.inc.php:338 msgid "Missing value in the form!" msgstr "Er ontbreekt een waarde in het formulier!" -#: js/messages.php:39 libraries/messages.inc.php:570 +#: js/messages.php:39 libraries/messages.inc.php:566 msgid "This is not a number!" msgstr "Dit is geen cijfer!" -#: js/messages.php:42 libraries/messages.inc.php:380 +#: js/messages.php:42 libraries/messages.inc.php:376 msgid "The host name is empty!" msgstr "De machinenaam is leeg!" -#: js/messages.php:43 libraries/messages.inc.php:1208 +#: js/messages.php:43 libraries/messages.inc.php:1204 msgid "The user name is empty!" msgstr "De gebruikersnaam is leeg!" -#: js/messages.php:44 libraries/messages.inc.php:607 +#: js/messages.php:44 libraries/messages.inc.php:603 #: server_privileges.php:1197 user_password.php:70 msgid "The password is empty!" msgstr "Het wachtwoord is leeg!" -#: js/messages.php:45 libraries/messages.inc.php:609 +#: js/messages.php:45 libraries/messages.inc.php:605 #: server_privileges.php:1195 user_password.php:73 msgid "The passwords aren't the same!" msgstr "De wachtwoorden zijn niet gelijk!" -#: js/messages.php:49 libraries/messages.inc.php:123 pmd_general.php:342 +#: js/messages.php:49 libraries/messages.inc.php:119 pmd_general.php:342 #: pmd_general.php:379 msgid "Cancel" msgstr "Annuleren" -#: js/messages.php:52 libraries/messages.inc.php:514 +#: js/messages.php:52 libraries/messages.inc.php:510 msgid "Modifications have been saved" msgstr "Wijzigingen opgeslagen." -#: js/messages.php:53 libraries/messages.inc.php:741 +#: js/messages.php:53 libraries/messages.inc.php:737 msgid "Relation deleted" msgstr "Relatie verwijderd" -#: js/messages.php:54 libraries/messages.inc.php:340 +#: js/messages.php:54 libraries/messages.inc.php:336 msgid "FOREIGN KEY relation added" msgstr "Vreemde sleutel(FOREIGN KEY) relatie toegevoegd" -#: js/messages.php:55 libraries/messages.inc.php:434 +#: js/messages.php:55 libraries/messages.inc.php:430 msgid "Internal relation added" msgstr "Interne relatie toegevoegd" -#: js/messages.php:56 libraries/messages.inc.php:299 +#: js/messages.php:56 libraries/messages.inc.php:295 msgid "Error: Relation not added." msgstr "Fout: Relatie niet toegevoegd." -#: js/messages.php:57 libraries/messages.inc.php:300 +#: js/messages.php:57 libraries/messages.inc.php:296 msgid "Error: relation already exists." msgstr "Fout: relatie bestaat reeds." -#: js/messages.php:58 libraries/messages.inc.php:302 +#: js/messages.php:58 libraries/messages.inc.php:298 msgid "Error saving coordinates for Designer." msgstr "Fout bij het opslaan van coördinaten voor de Designer." -#: js/messages.php:59 libraries/messages.inc.php:351 +#: js/messages.php:59 libraries/messages.inc.php:347 #: libraries/relation.lib.php:107 msgid "General relation features" msgstr "Basis relatie opties" -#: js/messages.php:59 libraries/messages.inc.php:260 +#: js/messages.php:59 libraries/messages.inc.php:256 #: libraries/relation.lib.php:101 libraries/relation.lib.php:108 msgid "Disabled" msgstr "Uitgeschakeld" -#: js/messages.php:60 libraries/messages.inc.php:850 +#: js/messages.php:60 libraries/messages.inc.php:846 msgid "Select referenced key" msgstr "Selecteer de gerefereerde sleutel" -#: js/messages.php:61 libraries/messages.inc.php:848 +#: js/messages.php:61 libraries/messages.inc.php:844 msgid "Select Foreign Key" msgstr "Selecteer vreemde sleutel" -#: js/messages.php:62 libraries/messages.inc.php:653 +#: js/messages.php:62 libraries/messages.inc.php:649 msgid "Please select the primary key or a unique key" msgstr "Selecteer de primaire sleutel of een unieke sleutel" -#: js/messages.php:63 libraries/messages.inc.php:142 pmd_general.php:77 +#: js/messages.php:63 libraries/messages.inc.php:138 pmd_general.php:77 #: tbl_relation.php:548 msgid "Choose field to display" msgstr "Kies weer te geven veld" @@ -1091,9 +1091,9 @@ msgid "Prev" msgstr "Vorige" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2332 -#: libraries/common.lib.php:2335 libraries/display_tbl.lib.php:338 -#: libraries/messages.inc.php:543 server_binlog.php:205 server_binlog.php:207 +#: js/messages.php:77 libraries/common.lib.php:2344 +#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: libraries/messages.inc.php:539 server_binlog.php:205 server_binlog.php:207 #: tbl_printview.php:424 tbl_structure.php:802 msgid "Next" msgstr "Volgende" @@ -1168,27 +1168,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1543 +#: js/messages.php:97 libraries/common.lib.php:1555 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1545 +#: js/messages.php:99 libraries/common.lib.php:1557 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1547 +#: js/messages.php:101 libraries/common.lib.php:1559 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1549 +#: js/messages.php:103 libraries/common.lib.php:1561 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1551 +#: js/messages.php:105 libraries/common.lib.php:1563 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1196,37 +1196,37 @@ msgid "May" msgstr "Mei" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1553 +#: js/messages.php:107 libraries/common.lib.php:1565 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1555 +#: js/messages.php:109 libraries/common.lib.php:1567 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1557 +#: js/messages.php:111 libraries/common.lib.php:1569 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1559 +#: js/messages.php:113 libraries/common.lib.php:1571 msgid "Sep" msgstr "Sept" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1561 +#: js/messages.php:115 libraries/common.lib.php:1573 msgid "Oct" msgstr "Oct" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1563 +#: js/messages.php:117 libraries/common.lib.php:1575 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1565 +#: js/messages.php:119 libraries/common.lib.php:1577 msgid "Dec" msgstr "Dec" @@ -1267,37 +1267,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1568 +#: js/messages.php:132 libraries/common.lib.php:1580 msgid "Sun" msgstr "Zo" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1570 +#: js/messages.php:134 libraries/common.lib.php:1582 msgid "Mon" msgstr "Ma" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1572 +#: js/messages.php:136 libraries/common.lib.php:1584 msgid "Tue" msgstr "Di" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1574 +#: js/messages.php:138 libraries/common.lib.php:1586 msgid "Wed" msgstr "Wo" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1576 +#: js/messages.php:140 libraries/common.lib.php:1588 msgid "Thu" msgstr "Do" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1578 +#: js/messages.php:142 libraries/common.lib.php:1590 msgid "Fri" msgstr "Vr" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1580 +#: js/messages.php:144 libraries/common.lib.php:1592 msgid "Sat" msgstr "Za" @@ -1373,23 +1373,23 @@ msgstr "in gebruik" msgid "Second" msgstr "per seconde" -#: libraries/Config.class.php:1015 libraries/messages.inc.php:338 +#: libraries/Config.class.php:1015 libraries/messages.inc.php:334 msgid "Font size" msgstr "Font formaat" #: libraries/File.class.php:344 libraries/File.class.php:432 #: libraries/File.class.php:569 libraries/File.class.php:708 -#: libraries/messages.inc.php:1201 +#: libraries/messages.inc.php:1197 msgid "Unknown error in file upload." msgstr "Onbekende fout bij het uploaden." -#: libraries/File.class.php:414 libraries/messages.inc.php:1198 +#: libraries/File.class.php:414 libraries/messages.inc.php:1194 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "Het geuploade bestand overschrijd de 'upload_max_filesize' optie uit uw php." "ini." -#: libraries/File.class.php:417 libraries/messages.inc.php:1197 +#: libraries/File.class.php:417 libraries/messages.inc.php:1193 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -1397,23 +1397,23 @@ msgstr "" "Het geuploade bestand overschrijd de MAX_FILE_SIZE-optie die was opgegeven " "in het HTML formulier." -#: libraries/File.class.php:420 libraries/messages.inc.php:1200 +#: libraries/File.class.php:420 libraries/messages.inc.php:1196 msgid "The uploaded file was only partially uploaded." msgstr "Het geuploade bestand was slechts gedeeltelijk ontvangen." -#: libraries/File.class.php:423 libraries/messages.inc.php:1199 +#: libraries/File.class.php:423 libraries/messages.inc.php:1195 msgid "Missing a temporary folder." msgstr "De map voor tijdelijkebestanden ontbreekt." -#: libraries/File.class.php:426 libraries/messages.inc.php:1195 +#: libraries/File.class.php:426 libraries/messages.inc.php:1191 msgid "Failed to write file to disk." msgstr "Opslaan van het bestand op de hardeschijf is mislukt." -#: libraries/File.class.php:429 libraries/messages.inc.php:1196 +#: libraries/File.class.php:429 libraries/messages.inc.php:1192 msgid "File upload stopped by extension." msgstr "Upload afgebroken vanwege de extensie." -#: libraries/File.class.php:908 libraries/messages.inc.php:319 +#: libraries/File.class.php:908 libraries/messages.inc.php:315 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -1421,34 +1421,34 @@ msgstr "" "Fout bij het verplaatsen van het geuploade bestand, zie [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" -#: libraries/Index.class.php:428 libraries/messages.inc.php:554 +#: libraries/Index.class.php:428 libraries/messages.inc.php:550 #: tbl_relation.php:529 msgid "No index defined!" msgstr "Geen index gedefinieerd!" -#: libraries/Index.class.php:433 libraries/messages.inc.php:411 +#: libraries/Index.class.php:433 libraries/messages.inc.php:407 #: server_databases.php:132 tbl_tracking.php:316 msgid "Indexes" msgstr "Indexen" -#: libraries/Index.class.php:444 libraries/messages.inc.php:1186 +#: libraries/Index.class.php:444 libraries/messages.inc.php:1182 #: 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:475 tbl_tracking.php:322 msgid "Unique" msgstr "Unieke waarde" -#: libraries/Index.class.php:445 libraries/messages.inc.php:596 +#: libraries/Index.class.php:445 libraries/messages.inc.php:592 #: tbl_tracking.php:323 msgid "Packed" msgstr "Gecomprimeerd" -#: libraries/Index.class.php:447 libraries/messages.inc.php:131 +#: libraries/Index.class.php:447 libraries/messages.inc.php:127 #: tbl_tracking.php:325 msgid "Cardinality" msgstr "Kardinaliteit" -#: libraries/Index.class.php:450 libraries/messages.inc.php:162 +#: libraries/Index.class.php:450 libraries/messages.inc.php:158 #: tbl_tracking.php:279 tbl_tracking.php:328 msgid "Comment" msgstr "Opmerking" @@ -1456,22 +1456,22 @@ msgstr "Opmerking" #: libraries/Index.class.php:466 libraries/common.lib.php:616 #: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:280 pdf_pages.php:280 +#: libraries/messages.inc.php:276 pdf_pages.php:280 #: setup/frames/index.inc.php:124 setup/lib/messages.inc.php:352 #: tbl_row_action.php:69 msgid "Edit" msgstr "Wijzig" -#: libraries/Index.class.php:472 libraries/messages.inc.php:666 +#: libraries/Index.class.php:472 libraries/messages.inc.php:662 msgid "The primary key has been dropped" msgstr "De primaire sleutel is vervallen" -#: libraries/Index.class.php:476 libraries/messages.inc.php:413 +#: libraries/Index.class.php:476 libraries/messages.inc.php:409 #, php-format msgid "Index %s has been dropped" msgstr "Index %s is vervallen" -#: libraries/Index.class.php:576 libraries/messages.inc.php:412 +#: libraries/Index.class.php:576 libraries/messages.inc.php:408 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -1480,7 +1480,7 @@ msgstr "" "De indexen %1$s en %2$s lijken hetzelfde, mogelijk kan een van beide worden " "verwijderd." -#: libraries/List_Database.class.php:431 libraries/messages.inc.php:218 +#: libraries/List_Database.class.php:431 libraries/messages.inc.php:214 #: libraries/server_links.inc.php:41 server_databases.php:88 #: server_privileges.php:1621 setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" @@ -1510,87 +1510,87 @@ msgid_plural "%1$d rows inserted." msgstr[0] "%1$d rij(en) toegevoegd." msgstr[1] "%1$d rij(en) toegevoegd." -#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:549 +#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:545 msgid "" "There is no detailed status information available for this storage engine." msgstr "" "Er is geen gedetailleerde status informatie beschikbaar voor deze opslag " "engine." -#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:291 +#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:287 #, php-format msgid "%s is available on this MySQL server." msgstr "%s is beschikbaar op deze MySQL-server." -#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:292 +#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:288 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s is uitgeschakeld op deze MySQL-server." -#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:294 +#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:290 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "Deze MySQL-server ondersteund de %s storage engine niet." -#: libraries/Table.class.php:1019 libraries/messages.inc.php:443 +#: libraries/Table.class.php:1019 libraries/messages.inc.php:439 msgid "Invalid database" msgstr "Ongeldige database" -#: libraries/Table.class.php:1033 libraries/messages.inc.php:450 +#: libraries/Table.class.php:1033 libraries/messages.inc.php:446 #: tbl_get_field.php:26 msgid "Invalid table name" msgstr "Ongeldige tabel naam" -#: libraries/Table.class.php:1048 libraries/messages.inc.php:301 +#: libraries/Table.class.php:1048 libraries/messages.inc.php:297 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "Fout bij het hernoemen van de tabel %1$s naar %2$s" -#: libraries/Table.class.php:1132 libraries/messages.inc.php:754 +#: libraries/Table.class.php:1132 libraries/messages.inc.php:750 #, php-format msgid "Table %s has been renamed to %s" msgstr "Tabel %s is hernoemd naar %s" -#: libraries/Theme.class.php:162 libraries/messages.inc.php:1099 +#: libraries/Theme.class.php:162 libraries/messages.inc.php:1095 #, php-format msgid "No valid image path for theme %s found!" msgstr "Geen geldig afbeeldingen pad voor thema %s gevonden!" -#: libraries/Theme.class.php:384 libraries/messages.inc.php:1097 +#: libraries/Theme.class.php:384 libraries/messages.inc.php:1093 msgid "No preview available." msgstr "Geen preview beschikbaar." -#: libraries/Theme.class.php:387 libraries/messages.inc.php:1089 +#: libraries/Theme.class.php:387 libraries/messages.inc.php:1085 msgid "take it" msgstr "neem het" -#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1096 +#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1092 #, php-format msgid "Default theme %s not found!" msgstr "Standaard thema %s niet gevonden!" -#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1098 +#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1094 #, php-format msgid "Theme %s not found!" msgstr "Thema %s niet gevonden!" -#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1100 +#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1096 #, php-format msgid "Theme path not found for theme %s!" msgstr "Thema pad niet gevonden voor thema %s!" -#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1101 +#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1097 #: test/theme.php:161 themes.php:21 themes.php:41 msgid "Theme / Style" msgstr "Thema / Stijl" -#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:172 +#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:168 msgid "Cannot connect: invalid settings." msgstr "Kan niet verbinden: ongeldige instellingen." #: libraries/auth/config.auth.lib.php:92 #: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65 -#: libraries/messages.inc.php:1238 test/theme.php:152 +#: libraries/messages.inc.php:1234 test/theme.php:152 #, php-format msgid "Welcome to %s" msgstr "Welkom op %s" @@ -1616,47 +1616,47 @@ msgstr "" "wachtwoord in config.inc.php en zorg er voor dat deze overeenkomen met de " "informatie die u van de Beheerder van de MySQL-server kreeg." -#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:488 +#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:484 msgid "Log in" msgstr "Inloggen" #: libraries/auth/cookie.auth.lib.php:246 -#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:659 +#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:655 #: libraries/navigation_header.inc.php:93 #: libraries/navigation_header.inc.php:95 msgid "phpMyAdmin documentation" msgstr "phpMyAdmin Documentatie" #: libraries/auth/cookie.auth.lib.php:258 -#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:492 +#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:488 msgid "You can enter hostname/IP address and port separated by space." msgstr "" "U kunt een machinenaam/IP adres en poortnummer gescheiden door een spatie " "opgeven." -#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:493 +#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:489 msgid "Server:" msgstr "Server" -#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:494 +#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:490 msgid "Username:" msgstr "Gebruikersnaam:" -#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:491 +#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:487 msgid "Password:" msgstr "Wachtwoord:" -#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:854 +#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:850 msgid "Server Choice" msgstr "Serverkeuze" #: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 -#: libraries/messages.inc.php:177 +#: libraries/messages.inc.php:173 msgid "Cookies must be enabled past this point." msgstr "Cookies moeten aan staan voorbij dit punt." #: libraries/auth/cookie.auth.lib.php:671 -#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:489 +#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:485 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" @@ -1664,60 +1664,60 @@ msgstr "" "AllowNoPassword)" #: libraries/auth/cookie.auth.lib.php:675 -#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:544 +#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:540 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "Geen activiteit voor %s seconden of meer, log a.u.b. opnieuw in" #: libraries/auth/cookie.auth.lib.php:685 #: libraries/auth/cookie.auth.lib.php:687 -#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:126 +#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:122 msgid "Cannot log in to the MySQL server" msgstr "Kan niet inloggen op de MySQL-server" -#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1245 +#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1241 msgid "Wrong username/password. Access denied." msgstr "Verkeerde gebruikersnaam/wachtwoord. Toegang geweigerd." #: libraries/auth/swekey/swekey.auth.lib.php:118 -#: libraries/messages.inc.php:1057 +#: libraries/messages.inc.php:1053 #, php-format msgid "File %s does not contain any key id" msgstr "Bestand %s bevat geen sleutel id" #: libraries/auth/swekey/swekey.auth.lib.php:157 #: libraries/auth/swekey/swekey.auth.lib.php:180 -#: libraries/messages.inc.php:1056 +#: libraries/messages.inc.php:1052 msgid "Hardware authentication failed" msgstr "Hardware authenticatie mislukt" #: libraries/auth/swekey/swekey.auth.lib.php:166 -#: libraries/messages.inc.php:1058 +#: libraries/messages.inc.php:1054 msgid "No valid authentication key plugged" msgstr "Geen geldige authenticatie sleutel aanwezig" #: libraries/auth/swekey/swekey.auth.lib.php:202 -#: libraries/messages.inc.php:1055 +#: libraries/messages.inc.php:1051 msgid "Authenticating..." msgstr "Authenticeren..." -#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1230 +#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1226 msgid "View image" msgstr "Bekijk afbeelding" -#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:652 +#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:648 msgid "Play audio" msgstr "Afspelen" -#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1232 +#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1228 msgid "View video" msgstr "Bekijk video" -#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:269 +#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:265 msgid "Download file" msgstr "Download bestand" -#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:128 +#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:124 msgid "" "Couldn't load the iconv or recode extension needed for charset conversion. " "Either configure PHP to enable these extensions or disable charset " @@ -1729,7 +1729,7 @@ msgstr "" #: libraries/charset_conversion.lib.php:79 #: libraries/charset_conversion.lib.php:90 -#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:130 +#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:126 msgid "" "Couldn't use the iconv, libiconv, or recode_string functions, although the " "necessary extensions appear to be loaded. Check your PHP configuration." @@ -1737,7 +1737,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/messages.inc.php:170 +#: libraries/common.inc.php:583 libraries/messages.inc.php:166 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!" @@ -1773,22 +1773,22 @@ msgstr "" msgid "Invalid server index: %s" msgstr "Ongeldige serverindex: \"%s\"" -#: libraries/common.inc.php:636 libraries/messages.inc.php:448 +#: libraries/common.inc.php:636 libraries/messages.inc.php:444 #, 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/messages.inc.php:856 libraries/select_server.lib.php:41 +#: libraries/messages.inc.php:852 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/messages.inc.php:437 +#: libraries/common.inc.php:823 libraries/messages.inc.php:433 msgid "Invalid authentication method set in configuration:" msgstr "Ongeldige authenticatiemethode opgegeven in configuratie:" -#: libraries/common.lib.php:147 libraries/messages.inc.php:499 +#: libraries/common.lib.php:147 libraries/messages.inc.php:495 #, php-format msgid "Max: %s%s" msgstr "Maximale grootte: %s%s" @@ -1808,7 +1808,7 @@ msgstr "en" #: libraries/common.lib.php:428 libraries/common.lib.php:430 #: libraries/common.lib.php:432 libraries/common.lib.php:448 #: libraries/common.lib.php:450 libraries/dbg/setup.php:25 -#: libraries/display_export.lib.php:164 libraries/messages.inc.php:267 +#: libraries/display_export.lib.php:164 libraries/messages.inc.php:263 #: libraries/relation.lib.php:97 libraries/sql_query_form.lib.php:451 #: libraries/sql_query_form.lib.php:454 main.php:229 pdf_pages.php:37 #: pdf_pages.php:43 pdf_pages.php:49 pdf_pages.php:54 @@ -1818,55 +1818,55 @@ msgstr "Documentatie" #: libraries/common.lib.php:581 libraries/core.lib.php:234 #: libraries/core.lib.php:263 libraries/import.lib.php:134 -#: libraries/messages.inc.php:297 pdf_schema.php:32 pdf_schema.php:232 +#: libraries/messages.inc.php:293 pdf_schema.php:32 pdf_schema.php:232 #: tbl_change.php:1027 tbl_operations.php:213 tbl_relation.php:290 #: view_operations.php:62 msgid "Error" msgstr "Fout" #: libraries/common.lib.php:595 libraries/header_printview.inc.php:61 -#: libraries/messages.inc.php:1023 server_processlist.php:60 +#: libraries/messages.inc.php:1019 server_processlist.php:60 #: server_status.php:247 msgid "SQL query" msgstr "SQL-query" -#: libraries/common.lib.php:634 libraries/messages.inc.php:538 +#: libraries/common.lib.php:634 libraries/messages.inc.php:534 msgid "MySQL said: " msgstr "MySQL retourneerde: " -#: libraries/common.lib.php:667 libraries/messages.inc.php:76 +#: libraries/common.lib.php:667 libraries/messages.inc.php:72 #: pdf_schema.php:241 user_password.php:115 msgid "Back" msgstr "Terug" -#: libraries/common.lib.php:1177 libraries/messages.inc.php:309 +#: libraries/common.lib.php:1177 libraries/messages.inc.php:305 #: setup/lib/messages.inc.php:353 msgid "Explain SQL" msgstr "Verklaar SQL" -#: libraries/common.lib.php:1180 libraries/messages.inc.php:551 +#: libraries/common.lib.php:1180 libraries/messages.inc.php:547 msgid "Skip Explain SQL" msgstr "Uitleg SQL overslaan" -#: libraries/common.lib.php:1212 libraries/messages.inc.php:563 +#: libraries/common.lib.php:1212 libraries/messages.inc.php:559 msgid "Without PHP Code" msgstr "zonder PHP-Code" -#: libraries/common.lib.php:1215 libraries/messages.inc.php:649 +#: libraries/common.lib.php:1215 libraries/messages.inc.php:645 #: setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "Genereer PHP-Code" -#: libraries/common.lib.php:1233 libraries/messages.inc.php:737 +#: libraries/common.lib.php:1233 libraries/messages.inc.php:733 #: server_status.php:341 setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "Vernieuw" -#: libraries/common.lib.php:1242 libraries/messages.inc.php:575 +#: libraries/common.lib.php:1242 libraries/messages.inc.php:571 msgid "Skip Validate SQL" msgstr "SQL-validatie overslaan" -#: libraries/common.lib.php:1245 libraries/messages.inc.php:1220 +#: libraries/common.lib.php:1245 libraries/messages.inc.php:1216 #: setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "Valideer SQL" @@ -1882,11 +1882,11 @@ msgid "Inline" msgstr "Engines" #: libraries/common.lib.php:1332 libraries/common.lib.php:1347 -#: libraries/messages.inc.php:713 +#: libraries/messages.inc.php:709 msgid "Profiling" msgstr "Profiling" -#: libraries/common.lib.php:1351 libraries/messages.inc.php:1108 +#: libraries/common.lib.php:1351 libraries/messages.inc.php:1104 #: libraries/tbl_triggers.lib.php:28 server_processlist.php:58 msgid "Time" msgstr "Tijd" @@ -1920,46 +1920,56 @@ msgstr "PB" msgid "EiB" msgstr "EB" +#. l10n: Thousands separator +#: libraries/common.lib.php:1417 +msgid "," +msgstr "." + +#. l10n: Decimal separator +#: libraries/common.lib.php:1419 +msgid "." +msgstr "," + #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1584 +#: libraries/common.lib.php:1596 #: libraries/transformations/text_plain__dateformat.inc.php:28 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y om %H:%M" -#: libraries/common.lib.php:1886 +#: libraries/common.lib.php:1898 #, 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:2301 libraries/common.lib.php:2304 -#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:664 +#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:660 #: server_status.php:608 msgid "Begin" msgstr "Begin" -#: libraries/common.lib.php:2302 libraries/common.lib.php:2305 -#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:665 +#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:661 #: server_binlog.php:168 server_binlog.php:170 msgid "Previous" msgstr "Vorige" -#: libraries/common.lib.php:2333 libraries/common.lib.php:2336 -#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:289 +#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:285 msgid "End" msgstr "Einde" -#: libraries/common.lib.php:2409 libraries/messages.inc.php:455 +#: libraries/common.lib.php:2421 libraries/messages.inc.php:451 #, php-format msgid "Jump to database "%s"." msgstr "Ga naar database "%s"." -#: libraries/common.lib.php:2429 libraries/messages.inc.php:461 +#: libraries/common.lib.php:2441 libraries/messages.inc.php:457 #, 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/core.lib.php:286 libraries/dbg/setup.php:22 -#: libraries/messages.inc.php:127 +#: libraries/messages.inc.php:123 #, php-format msgid "" "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " @@ -1969,74 +1979,74 @@ msgstr "" "laden. Controleer de PHP configuratie." #: libraries/db_events.inc.php:20 libraries/db_events.inc.php:22 -#: libraries/export/sql.php:415 libraries/messages.inc.php:306 +#: libraries/export/sql.php:415 libraries/messages.inc.php:302 msgid "Events" msgstr "Gebeurtenissen" #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 -#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:541 +#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:537 #: libraries/tbl_triggers.lib.php:27 setup/frames/index.inc.php:112 msgid "Name" msgstr "Naam" -#: libraries/db_links.inc.php:45 libraries/messages.inc.php:216 +#: libraries/db_links.inc.php:45 libraries/messages.inc.php:212 #, php-format msgid "Database %s has been dropped." msgstr "Database %s is vervallen." #: libraries/db_links.inc.php:57 libraries/db_links.inc.php:58 -#: libraries/db_links.inc.php:59 libraries/messages.inc.php:234 +#: libraries/db_links.inc.php:59 libraries/messages.inc.php:230 msgid "Database seems to be empty!" msgstr "Database lijkt leeg!" -#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1025 +#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1021 #: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60 #: querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1152 +#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1148 #: libraries/tbl_links.inc.php:69 msgid "Tracking" msgstr "Tracking" -#: libraries/db_links.inc.php:86 libraries/messages.inc.php:719 +#: libraries/db_links.inc.php:86 libraries/messages.inc.php:715 msgid "Query" msgstr "Query opbouwen" -#: libraries/db_links.inc.php:91 libraries/messages.inc.php:253 +#: libraries/db_links.inc.php:91 libraries/messages.inc.php:249 msgid "Designer" msgstr "Designer" -#: libraries/db_links.inc.php:98 libraries/messages.inc.php:397 +#: libraries/db_links.inc.php:98 libraries/messages.inc.php:393 #: libraries/server_links.inc.php:88 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:104 libraries/messages.inc.php:587 +#: libraries/db_links.inc.php:104 libraries/messages.inc.php:583 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" msgstr "Handelingen" -#: libraries/db_links.inc.php:111 libraries/messages.inc.php:709 +#: libraries/db_links.inc.php:111 libraries/messages.inc.php:705 #: libraries/server_links.inc.php:66 server_privileges.php:72 #: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117 msgid "Privileges" msgstr "Rechten" #: libraries/db_routines.inc.php:30 libraries/db_routines.inc.php:32 -#: libraries/messages.inc.php:812 +#: libraries/messages.inc.php:808 msgid "Routines" msgstr "Routines" -#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:811 +#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:807 msgid "Return type" msgstr "Retour type" #: libraries/db_structure.lib.php:57 libraries/display_tbl.lib.php:1848 -#: libraries/messages.inc.php:65 +#: libraries/messages.inc.php:61 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -2044,44 +2054,44 @@ msgstr "" "Bij benadering. Zie [a@./Documentation.html#faq3_11@Documentation]FAQ 3.11[/" "a]" -#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:593 +#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:589 #: server_databases.php:142 tbl_printview.php:336 tbl_structure.php:683 msgid "Overhead" msgstr "Overhead" #: libraries/dbi/mysql.dbi.lib.php:112 libraries/dbi/mysqli.dbi.lib.php:124 -#: libraries/messages.inc.php:176 +#: libraries/messages.inc.php:172 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Connectie voor de controle gebruiker zoals in de configuratie is opgegeven " "is mislukt." #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 -#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:855 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:851 msgid "The server is not responding" msgstr "De server reageert niet" #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:1010 +#: libraries/messages.inc.php:1006 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 libraries/messages.inc.php:255 +#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:251 #: tbl_structure.php:609 msgid "Details..." msgstr "Details..." -#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:143 +#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:139 #: main.php:91 user_password.php:111 user_password.php:129 msgid "Change password" msgstr "Wijzig wachtwoord" -#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:561 +#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:557 #: libraries/replication_gui.lib.php:341 server_privileges.php:768 msgid "No Password" msgstr "Geen wachtwoord" -#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:610 +#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:606 #: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60 #: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335 #: libraries/replication_gui.lib.php:345 server_privileges.php:757 @@ -2090,13 +2100,13 @@ msgstr "Geen wachtwoord" msgid "Password" msgstr "Wachtwoord" -#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:806 +#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:802 #: libraries/replication_gui.lib.php:349 libraries/replication_gui.lib.php:352 #: server_privileges.php:776 server_privileges.php:779 msgid "Re-type" msgstr "Type opnieuw" -#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:608 +#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:604 msgid "Password Hashing" msgstr "Wachtwoord Hashing" @@ -2106,91 +2116,91 @@ msgstr "Wachtwoord Hashing" msgid "MySQL 4.0 compatible" msgstr "MySQL 4.0 compatibel" -#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:353 +#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:349 #: libraries/replication_gui.lib.php:356 server_privileges.php:783 msgid "Generate Password" msgstr "Genereer wachtwoord" -#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:352 +#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:348 #: libraries/replication_gui.lib.php:359 server_privileges.php:786 msgid "Generate" msgstr "Genereer" #: libraries/display_create_database.lib.php:22 -#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:189 +#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:185 msgid "Create new database" msgstr "Nieuwe database aanmaken" -#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:185 +#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:181 msgid "Create" msgstr "Aanmaken" -#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:564 +#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:560 #: server_privileges.php:74 server_privileges.php:1388 #: server_replication.php:35 msgid "No Privileges" msgstr "Geen rechten" -#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:445 +#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:441 msgid "Table must have at least one field." msgstr "Tabel moet minimaal een veld hebben." -#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:190 +#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:186 #, php-format msgid "Create table on database %s" msgstr "Nieuwe tabel aanmaken in database %s" -#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:577 +#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:573 msgid "Number of fields" msgstr "Aantal velden" -#: libraries/display_export.lib.php:42 libraries/messages.inc.php:124 +#: libraries/display_export.lib.php:42 libraries/messages.inc.php:120 msgid "Could not load export plugins, please check your installation!" msgstr "" "De plugins voor het exporteren konden niet worden geladen, controleer uw " "installatie!" -#: libraries/display_export.lib.php:107 libraries/messages.inc.php:277 +#: libraries/display_export.lib.php:107 libraries/messages.inc.php:273 #, php-format msgid "Dump %s row(s) starting at record # %s" msgstr "%s rijen aan het dumpen, start bij rij %s." -#: libraries/display_export.lib.php:115 libraries/messages.inc.php:274 +#: libraries/display_export.lib.php:115 libraries/messages.inc.php:270 msgid "Dump all rows" msgstr "Dump alle rijen" -#: libraries/display_export.lib.php:125 libraries/messages.inc.php:852 +#: libraries/display_export.lib.php:125 libraries/messages.inc.php:848 #: setup/lib/messages.inc.php:82 msgid "Save as file" msgstr "Opslaan als bestand" -#: libraries/display_export.lib.php:134 libraries/messages.inc.php:828 +#: libraries/display_export.lib.php:134 libraries/messages.inc.php:824 #, php-format msgid "Save on server in %s directory" msgstr "Bewaar op de server in %s directory" -#: libraries/display_export.lib.php:142 libraries/messages.inc.php:594 +#: libraries/display_export.lib.php:142 libraries/messages.inc.php:590 #: setup/lib/messages.inc.php:90 msgid "Overwrite existing file(s)" msgstr "Overschrijf bestaand(e) bestand(en)" -#: libraries/display_export.lib.php:148 libraries/messages.inc.php:330 +#: libraries/display_export.lib.php:148 libraries/messages.inc.php:326 msgid "File name template" msgstr "Bestandsnaam template" -#: libraries/display_export.lib.php:152 libraries/messages.inc.php:327 +#: libraries/display_export.lib.php:152 libraries/messages.inc.php:323 msgid "server name" msgstr "servernaam" -#: libraries/display_export.lib.php:155 libraries/messages.inc.php:326 +#: libraries/display_export.lib.php:155 libraries/messages.inc.php:322 msgid "database name" msgstr "databasenaam" -#: libraries/display_export.lib.php:158 libraries/messages.inc.php:328 +#: libraries/display_export.lib.php:158 libraries/messages.inc.php:324 msgid "table name" msgstr "tabelnaam" -#: libraries/display_export.lib.php:162 libraries/messages.inc.php:329 +#: libraries/display_export.lib.php:162 libraries/messages.inc.php:325 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2201,24 +2211,24 @@ msgstr "" "gebruik van opmaakcodes is dan ook toegestaan. Daarnaast worden de volgende " "vertalingen toegepast: %3$s. Overige tekst zal gelijk blijven." -#: libraries/display_export.lib.php:202 libraries/messages.inc.php:331 +#: libraries/display_export.lib.php:202 libraries/messages.inc.php:327 msgid "remember template" msgstr "Onthoud template" #: libraries/display_export.lib.php:210 libraries/display_import.lib.php:178 -#: libraries/display_import.lib.php:191 libraries/messages.inc.php:145 +#: libraries/display_import.lib.php:191 libraries/messages.inc.php:141 #: libraries/sql_query_form.lib.php:549 msgid "Character set of the file:" msgstr "Karakter set van het bestand:" -#: libraries/display_export.lib.php:235 libraries/messages.inc.php:166 +#: libraries/display_export.lib.php:235 libraries/messages.inc.php:162 #: setup/lib/messages.inc.php:84 msgid "Compression" 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/messages.inc.php:558 +#: libraries/export/sql.php:868 libraries/messages.inc.php:554 #: libraries/tbl_properties.inc.php:575 server_privileges.php:1836 #: server_processlist.php:75 msgid "None" @@ -2242,11 +2252,11 @@ msgstr "\"ge-gzipt\"" msgid "bzipped" msgstr "\"ge-bzipt\"" -#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1018 +#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1014 msgid "SQL compatibility mode" msgstr "SQL-compatibiliteits mode" -#: libraries/display_import.lib.php:67 libraries/messages.inc.php:398 +#: libraries/display_import.lib.php:67 libraries/messages.inc.php:394 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " @@ -2256,11 +2266,11 @@ msgstr "" "last van een een bekende bug in op webkit gebaseerde browsers(Safari, Google " "Chrome, Arora)." -#: libraries/display_import.lib.php:77 libraries/messages.inc.php:406 +#: libraries/display_import.lib.php:77 libraries/messages.inc.php:402 msgid "The file is being processed, please be patient." msgstr "Het bestand wordt verwerkt, een ogenblik geduld." -#: libraries/display_import.lib.php:99 libraries/messages.inc.php:408 +#: libraries/display_import.lib.php:99 libraries/messages.inc.php:404 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." @@ -2268,40 +2278,40 @@ msgstr "" "Een ogenblik geduld, het bestand wordt geupload. Details over de voortgang " "zijn niet beschikbaar." -#: libraries/display_import.lib.php:126 libraries/messages.inc.php:333 +#: libraries/display_import.lib.php:126 libraries/messages.inc.php:329 msgid "File to import" msgstr "Te importeren bestand" -#: libraries/display_import.lib.php:137 libraries/messages.inc.php:486 +#: libraries/display_import.lib.php:137 libraries/messages.inc.php:482 #: libraries/sql_query_form.lib.php:524 msgid "Location of the text file" msgstr "Locatie van het tekstbestand" -#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1203 +#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1199 msgid "File uploads are not allowed on this server." msgstr "Het uploaden van bestanden is niet toegestaan op deze server." -#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1235 +#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1231 #: libraries/sql_query_form.lib.php:533 tbl_change.php:1028 msgid "The directory you set for upload work cannot be reached" msgstr "" "De directory die u heeft ingesteld om te uploaden kan niet worden bereikt." -#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1236 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1232 #: libraries/sql_query_form.lib.php:536 tbl_change.php:1031 msgid "web server upload directory" msgstr "web-server upload directory" -#: libraries/display_import.lib.php:212 libraries/messages.inc.php:167 +#: libraries/display_import.lib.php:212 libraries/messages.inc.php:163 #, php-format msgid "Imported file compression will be automatically detected from: %s" msgstr "Gecomprimeerde bestanden worden automatisch herkend: %s" -#: libraries/display_import.lib.php:219 libraries/messages.inc.php:600 +#: libraries/display_import.lib.php:219 libraries/messages.inc.php:596 msgid "Partial import" msgstr "Gedeeltelijke import" -#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1105 +#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1101 #, php-format msgid "" "Previous import timed out, after resubmitting will continue from position %d." @@ -2309,7 +2319,7 @@ msgstr "" "Tijdslimiet voor de import is verlopen, na het opnieuw versturen zal er " "hervat worden vanaf positie %d" -#: libraries/display_import.lib.php:232 libraries/messages.inc.php:51 +#: libraries/display_import.lib.php:232 libraries/messages.inc.php:47 msgid "" "Allow the interruption of an import in case the script detects it is close " "to the PHP timeout limit. This might be good way to import large files, " @@ -2319,179 +2329,179 @@ msgstr "" "tijdslimiet nadert. Dit kan nuttig zijn bij het importeren van grote " "bestanden, maar kan transacties verstoren." -#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1004 +#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1000 #: setup/lib/messages.inc.php:161 msgid "Number of records (queries) to skip from start" msgstr "Aantal queries die moeten worden overgeslagen vanaf het begin" -#: libraries/display_import.lib.php:255 libraries/messages.inc.php:396 +#: libraries/display_import.lib.php:255 libraries/messages.inc.php:392 #: setup/lib/messages.inc.php:160 msgid "Format of imported file" msgstr "Formaat van het geïmporteerde bestand" #: libraries/display_select_lang.lib.php:45 -#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:465 +#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:461 #: setup/frames/index.inc.php:70 msgid "Language" msgstr "Taal" -#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:447 +#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:443 #, php-format msgid "%d is not valid row number." msgstr "%d is geen geldig rij-nummer." -#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:814 +#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:810 msgid "row(s) starting from record #" msgstr "rijen beginnend bij" -#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:817 +#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:813 msgid "horizontal" msgstr "horizontaal" -#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:816 +#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:812 msgid "horizontal (rotated headers)" msgstr "horizontaal (omgedraaide headers)" -#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:819 +#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:815 msgid "vertical" msgstr "verticaal" -#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:818 +#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:814 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "in %s modus en herhaal kopregels na %s cellen" -#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:495 +#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:491 msgid "This operation could take a long time. Proceed anyway?" msgstr "Deze bewerking kan lang duren. Weet u het zeker?" -#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1012 +#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1008 msgid "Sort by key" msgstr "Sorteren op sleutel" #: libraries/display_tbl.lib.php:555 libraries/import.lib.php:1082 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:591 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:587 #: tbl_select.php:267 tbl_structure.php:754 msgid "Options" msgstr "Opties" #: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:570 -#: libraries/messages.inc.php:601 +#: libraries/messages.inc.php:597 msgid "Partial Texts" msgstr "Gedeeltelijke teksten" #: libraries/display_tbl.lib.php:561 libraries/display_tbl.lib.php:574 -#: libraries/messages.inc.php:346 +#: libraries/messages.inc.php:342 msgid "Full Texts" msgstr "Volledige teksten" -#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:739 +#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:735 msgid "Relational key" msgstr "Relationele sleutel" -#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:738 +#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:734 msgid "Relational display field" msgstr "Relationele weergave veld" -#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:872 +#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:868 msgid "Show binary contents" msgstr "Toon binaire inhoud" -#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:873 +#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:869 msgid "Show BLOB contents" msgstr "Toon BLOB inhoud" -#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:871 +#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:867 msgid "Show binary contents as HEX" msgstr "Toon binaire-inhoud als HEX" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:375 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:371 #: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320 msgid "Hide" msgstr "Verberg" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:508 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:504 #: libraries/tbl_properties.inc.php:144 transformation_overview.php:47 msgid "Browser transformation" msgstr "Browser transformaties" #: libraries/display_tbl.lib.php:1126 libraries/display_tbl.lib.php:1130 -#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:308 +#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:304 msgid "Execute bookmarked query" msgstr "Voor de gebookmarkte query uit" #: libraries/display_tbl.lib.php:1145 libraries/display_tbl.lib.php:1157 -#: libraries/messages.inc.php:244 +#: libraries/messages.inc.php:240 msgid "The row has been deleted" msgstr "De rij is verwijderd" #: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056 -#: libraries/messages.inc.php:460 server_processlist.php:71 +#: libraries/messages.inc.php:456 server_processlist.php:71 #: tbl_row_action.php:64 msgid "Kill" msgstr "stop proces" -#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:849 +#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:845 msgid "in query" msgstr "in query" -#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:881 +#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:877 msgid "Showing rows" msgstr "Toon Records" -#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1113 +#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1109 msgid "total" msgstr "totaal" -#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:727 +#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:723 #: sql.php:524 #, php-format msgid "Query took %01.4f sec" msgstr "Query duurde %01.4f sec" -#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:135 +#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:131 #: 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:471 msgid "Change" msgstr "Veranderen" -#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:724 +#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:720 msgid "Query results operations" msgstr "Query resultaat bewerkingen" -#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:671 +#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:667 msgid "Print view (with full texts)" msgstr "Afdrukken (met volledige teksten)" -#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:482 +#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:478 msgid "Link not found" msgstr "Link niet gevonden" -#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1224 +#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1220 #: main.php:228 msgid "Version information" msgstr "Versie informatie" -#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:423 +#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:419 msgid "Data home directory" msgstr "Data home directory" -#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:424 +#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:420 msgid "The common part of the directory path for all InnoDB data files." msgstr "" "Het gemeenschappelijke deel van de directory waar alle InnoDB-data-bestanden " "staan." -#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:422 +#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:418 msgid "Data files" msgstr "Data bestanden" -#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:418 +#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:414 msgid "Autoextend increment" msgstr "Zelfgroei stapgrootte" -#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:419 +#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:415 msgid "" " The increment size for extending the size of an autoextending tablespace " "when it becomes full." @@ -2499,11 +2509,11 @@ msgstr "" "De hoeveelheid waarmee een zelfgroeiende tabelruimte groeit wanneer deze " "dreigt vol te raken (Autoextend increment)." -#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:420 +#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:416 msgid "Buffer pool size" msgstr "Buffer pool grootte" -#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:421 +#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:417 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." @@ -2511,87 +2521,87 @@ msgstr "" "De grootte van de geheugenbuffer dat InnoDB gebruikt voor het cachen van " "data en indexen van zijn tabellen" -#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:112 +#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:108 msgid "Buffer Pool" msgstr "Buffer Pool" -#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:426 +#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:422 #: server_status.php:306 msgid "InnoDB Status" msgstr "InnoDB Status" -#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:113 +#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:109 msgid "Buffer Pool Usage" msgstr "Buffer Pool Gebruik" -#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1114 +#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1110 #: server_databases.php:137 server_databases.php:305 server_status.php:414 #: server_status.php:475 server_status.php:496 tbl_printview.php:351 #: tbl_structure.php:697 msgid "Total" msgstr "Totaal" -#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:425 +#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:421 msgid "pages" msgstr "pages" -#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:343 +#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:339 msgid "Free pages" msgstr "Vrije pages" -#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:259 +#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:255 msgid "Dirty pages" msgstr "Dirty pages" -#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:230 +#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:226 msgid "Pages containing data" msgstr "Pages die data bevatten" -#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:598 +#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:594 msgid "Pages to be flushed" msgstr "Pages te schonen" -#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:119 +#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:115 msgid "Busy pages" msgstr "Busy pages" -#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:467 +#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:463 msgid "Latched pages" msgstr "Latched pages" -#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:111 +#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:107 msgid "Buffer Pool Activity" msgstr "Buffer Pool Activiteit" -#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:731 +#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:727 msgid "Read requests" msgstr "Lees aanvragen" -#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1244 +#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1240 msgid "Write requests" msgstr "Schrijf verzoeken" -#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:115 +#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:111 msgid "Read misses" msgstr "Lees missers" -#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:117 +#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:113 msgid "Write waits" msgstr "Schrijfvertragingen (write waits)" -#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:114 +#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:110 msgid "Read misses in %" msgstr "Lees missers in %" -#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:116 +#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:112 msgid "Write waits in %" msgstr "Schrijfvertragingen in %" -#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:522 +#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:518 msgid "Data pointer size" msgstr "Data pointer formaat" -#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:523 +#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:519 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." @@ -2599,11 +2609,11 @@ msgstr "" "Het standaard pointerformaat in bytes, te gebruiken in de 'CREATE TABLE'-" "opdracht voor MyISAM-tabellen, als de 'MAX_ROWS'-optie niet is opgegeven" -#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:528 +#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:524 msgid "Automatic recovery mode" msgstr "Automatische herstelmodus" -#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:529 +#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:525 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." @@ -2612,11 +2622,11 @@ msgstr "" "zoals opgegeven met de schakeloptie --myisam-recover bij het opstarten van " "de server." -#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:527 +#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:523 msgid "Maximum size for temporary sort files" msgstr "Maximum grootte voor tijdelijke sorteer bestanden" -#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:526 +#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:522 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " @@ -2626,12 +2636,12 @@ msgstr "" "tijdens het opnieuw aanmaken van MyISAM-indexen (tijdens 'REPAIR TABLE', " "'ALTER TABLE' of 'LOAD DATA INFILE')" -#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:525 +#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:521 msgid "Maximum size for temporary files on index creation" msgstr "" "De maximale grote van het tijdelijke bestand voor het aanmaken van indexen" -#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:524 +#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:520 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " @@ -2641,11 +2651,11 @@ msgstr "" "indexen groter is dan 'key cache' hier aangegeven, verkies dan de 'key " "cache'-methode" -#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:531 +#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:527 msgid "Repair threads" msgstr "Reparatie threads" -#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:530 +#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:526 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." @@ -2654,11 +2664,11 @@ msgstr "" "aangemaakt tijdens het repareren door het sortereerproces (elke index in " "zijn eigen thread)." -#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:533 +#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:529 msgid "Sort buffer size" msgstr "Sorteer buffer grootte" -#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:532 +#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:528 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." @@ -2667,11 +2677,11 @@ msgstr "" "van 'REPAIR TABLE' of bij het aanmaken van indexen met 'CREATE INDEX' of " "'ALTER TABLE'" -#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:620 +#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:616 msgid "Index cache size" msgstr "Index cache grootte" -#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:619 +#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:615 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." @@ -2680,11 +2690,11 @@ msgstr "" "standaard is 32MB. Het geheugen dat hier is rereserveerd wordt enkel " "gebruikt voor het cachen van index pages." -#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:630 +#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:626 msgid "Record cache size" msgstr "Record cache grootte" -#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:629 +#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:625 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " @@ -2694,11 +2704,11 @@ msgstr "" "standaard is 32M. Dit geheugen wordt gebruikt om wijzigingen te cachen voor " "de handle data (.xtd) en rij pointer (.xtr) bestanden." -#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:624 +#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:620 msgid "Log cache size" msgstr "Log cache grootte" -#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:623 +#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:619 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." @@ -2706,11 +2716,11 @@ msgstr "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." -#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:628 +#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:624 msgid "Log file threshold" msgstr "Log file drempelwaarde" -#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:627 +#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:623 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." @@ -2718,11 +2728,11 @@ msgstr "" "De groote van de transactielog waarbij deze zal worden vervangen door een " "nieuw bestand. De standaard is 16M." -#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:634 +#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:630 msgid "Transaction buffer size" msgstr "Transactie buffer grootte" -#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:633 +#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:629 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." @@ -2730,11 +2740,11 @@ msgstr "" "De grootte van de globale transactie log buffer (de engine reserveert 2 " "buffers van dit formaat). De standaard is 1M" -#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:611 +#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:607 msgid "Checkpoint frequency" msgstr "Checkpoint frequentie" -#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:612 +#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:608 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." @@ -2742,11 +2752,11 @@ msgstr "" "De hoeveelheid data die kan worden geschreven naar de transactielog voordat " "er een nieuw checkpoint wordt aangemaakt. De standaard waarde is 24MB." -#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:615 +#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:611 msgid "Data log threshold" msgstr "Data log drempelwaarde" -#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:616 +#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:612 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -2758,11 +2768,11 @@ msgstr "" "alle tabellen. Deze waarde kan dan ook worden verhoogd om de maximale " "opslagcapasiteit te verhogen." -#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:618 +#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:614 msgid "Garbage threshold" msgstr "Garbage drempelwaaarde" -#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:617 +#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:613 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." @@ -2770,11 +2780,11 @@ msgstr "" "Het percentage van garbage in een data logbestand voor dat deze wordt " "geschoond. Dit is een waarde tussen 1 en 99. De standaard is 50." -#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:622 +#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:618 msgid "Log buffer size" msgstr "Log buffer grootte" -#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:621 +#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:617 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " @@ -2784,27 +2794,27 @@ msgstr "" "gebruikt. De standaard is 256MB. De engine reserveerd een buffer per thread, " "maar enkel indien de thread ook moet schrijven naar de data log." -#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:613 +#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:609 msgid "Data file grow size" msgstr "Data bestand groei stapgrootte" -#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:614 +#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:610 msgid "The grow size of the handle data (.xtd) files." msgstr "De groei stapgrootte van de handle data (.xtd) bestanden." -#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:632 +#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:628 msgid "Row file grow size" msgstr "Row file groei stapgrootte" -#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:631 +#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:627 msgid "The grow size of the row pointer (.xtr) files." msgstr "De stapgroote waarmee de rij pointer (.xtr) bestanden groeien." -#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:626 +#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:622 msgid "Log file count" msgstr "Log file aantal" -#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:625 +#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:621 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -2818,19 +2828,19 @@ msgstr "" #: libraries/export/htmlword.php:132 libraries/export/odt.php:168 #: libraries/export/sql.php:881 libraries/export/texytext.php:130 -#: libraries/messages.inc.php:275 +#: libraries/messages.inc.php:271 msgid "Dumping data for table" msgstr "Gegevens worden uitgevoerd voor tabel" #: libraries/export/htmlword.php:185 libraries/export/odt.php:238 #: libraries/export/sql.php:785 libraries/export/texytext.php:177 -#: libraries/messages.inc.php:1086 +#: libraries/messages.inc.php:1082 msgid "Table structure for table" msgstr "Tabelstructuur voor tabel" #: libraries/export/latex.php:125 libraries/export/sql.php:232 #: libraries/export/xml.php:102 libraries/header_printview.inc.php:57 -#: libraries/messages.inc.php:381 libraries/replication_gui.lib.php:63 +#: libraries/messages.inc.php:377 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:170 libraries/replication_gui.lib.php:265 #: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325 #: server_privileges.php:692 server_privileges.php:695 @@ -2842,184 +2852,184 @@ msgstr "Machine" #: libraries/export/latex.php:130 libraries/export/sql.php:233 #: libraries/export/xml.php:107 libraries/header_printview.inc.php:59 -#: libraries/messages.inc.php:354 +#: libraries/messages.inc.php:350 msgid "Generation Time" msgstr "Genereertijd" #: libraries/export/latex.php:131 libraries/export/sql.php:235 -#: libraries/export/xml.php:108 libraries/messages.inc.php:864 main.php:186 +#: libraries/export/xml.php:108 libraries/messages.inc.php:860 main.php:186 msgid "Server version" msgstr "Serverversie" #: libraries/export/latex.php:132 libraries/export/sql.php:236 -#: libraries/export/xml.php:109 libraries/messages.inc.php:651 +#: libraries/export/xml.php:109 libraries/messages.inc.php:647 msgid "PHP Version" msgstr "PHP-Versie" #: libraries/export/latex.php:201 libraries/export/sql.php:868 -#: libraries/messages.inc.php:226 server_databases.php:127 +#: libraries/messages.inc.php:222 server_databases.php:127 #: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317 #: tbl_structure.php:666 msgid "Data" msgstr "Data" -#: libraries/export/odt.php:318 libraries/messages.inc.php:506 +#: libraries/export/odt.php:318 libraries/messages.inc.php:502 #: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "MIME-type" -#: libraries/export/sql.php:387 libraries/messages.inc.php:711 +#: libraries/export/sql.php:387 libraries/messages.inc.php:707 msgid "Procedures" msgstr "Procedures" -#: libraries/export/sql.php:401 libraries/messages.inc.php:348 +#: libraries/export/sql.php:401 libraries/messages.inc.php:344 msgid "Functions" msgstr "Functies" -#: libraries/export/sql.php:618 libraries/messages.inc.php:174 +#: libraries/export/sql.php:618 libraries/messages.inc.php:170 msgid "Constraints for dumped tables" msgstr "Beperkingen voor gedumpte tabellen" -#: libraries/export/sql.php:627 libraries/messages.inc.php:175 +#: libraries/export/sql.php:627 libraries/messages.inc.php:171 msgid "Constraints for table" msgstr "Beperkingen voor tabel" -#: libraries/export/sql.php:727 libraries/messages.inc.php:512 +#: libraries/export/sql.php:727 libraries/messages.inc.php:508 msgid "MIME TYPES FOR TABLE" msgstr "MIME TYPES VOOR TABEL" -#: libraries/export/sql.php:739 libraries/messages.inc.php:743 +#: libraries/export/sql.php:739 libraries/messages.inc.php:739 msgid "RELATIONS FOR TABLE" msgstr "RELATIES VOOR TABEL" -#: libraries/export/sql.php:796 libraries/messages.inc.php:1178 +#: libraries/export/sql.php:796 libraries/messages.inc.php:1174 #: libraries/tbl_triggers.lib.php:19 msgid "Triggers" msgstr "Triggers" -#: libraries/export/sql.php:808 libraries/messages.inc.php:1046 +#: libraries/export/sql.php:808 libraries/messages.inc.php:1042 msgid "Structure for view" msgstr "Structuur voor de view" -#: libraries/export/sql.php:817 libraries/messages.inc.php:1029 +#: libraries/export/sql.php:817 libraries/messages.inc.php:1025 msgid "Stand-in structure for view" msgstr "Stand-in structuur voor view" #: libraries/footer.inc.php:184 libraries/footer.inc.php:195 -#: libraries/footer.inc.php:198 libraries/messages.inc.php:586 +#: libraries/footer.inc.php:198 libraries/messages.inc.php:582 msgid "Open new phpMyAdmin window" msgstr "Open nieuw phpMyAdmin scherm" -#: libraries/header.inc.php:115 libraries/messages.inc.php:542 +#: libraries/header.inc.php:115 libraries/messages.inc.php:538 #, fuzzy msgid "New table" msgstr "Geen Tabellen" #: libraries/header_printview.inc.php:50 libraries/header_printview.inc.php:55 -#: libraries/messages.inc.php:1024 +#: libraries/messages.inc.php:1020 msgid "SQL result" msgstr "SQL-resultaat" -#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:350 +#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:346 msgid "Generated by" msgstr "Gegenereerd door" #: libraries/header_printview.inc.php:63 libraries/import.lib.php:145 -#: libraries/messages.inc.php:820 navigation.php:652 navigation.php:674 +#: libraries/messages.inc.php:816 navigation.php:652 navigation.php:674 #: server_databases.php:122 tbl_printview.php:394 tbl_structure.php:366 #: tbl_structure.php:778 msgid "Rows" msgstr "Rijen" -#: libraries/import.lib.php:150 libraries/messages.inc.php:285 sql.php:520 +#: libraries/import.lib.php:150 libraries/messages.inc.php:281 sql.php:520 #: tbl_change.php:181 tbl_get_field.php:35 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL gaf een lege resultaat set terug (0 rijen)." -#: libraries/import.lib.php:1078 libraries/messages.inc.php:399 +#: libraries/import.lib.php:1078 libraries/messages.inc.php:395 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "De volgende structuren zijn aangemaakt of aangepast. Hier kunt u:" -#: libraries/import.lib.php:1079 libraries/messages.inc.php:400 +#: libraries/import.lib.php:1079 libraries/messages.inc.php:396 msgid "View a structure`s contents by clicking on its name" msgstr "De inhoud van een structuur bekijken door er op te klikken" -#: libraries/import.lib.php:1080 libraries/messages.inc.php:401 +#: libraries/import.lib.php:1080 libraries/messages.inc.php:397 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "Een instelling veranderen door op \"Opties\" te klikken" -#: libraries/import.lib.php:1081 libraries/messages.inc.php:402 +#: libraries/import.lib.php:1081 libraries/messages.inc.php:398 msgid "Edit its structure by following the \"Structure\" link" msgstr "Klik op de \"Structuur\"-koppeling om de structuur aan te passen" -#: libraries/import.lib.php:1084 libraries/messages.inc.php:362 +#: libraries/import.lib.php:1084 libraries/messages.inc.php:358 msgid "Go to database" msgstr "Ga naar database" #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:869 +#: libraries/messages.inc.php:865 msgid "settings" msgstr "instellingen" -#: libraries/import.lib.php:1106 libraries/messages.inc.php:363 +#: libraries/import.lib.php:1106 libraries/messages.inc.php:359 msgid "Go to table" msgstr "Ga naar tabel" -#: libraries/import.lib.php:1109 libraries/messages.inc.php:1047 +#: libraries/import.lib.php:1109 libraries/messages.inc.php:1043 msgid "structure" msgstr "structuur" -#: libraries/import.lib.php:1115 libraries/messages.inc.php:364 +#: libraries/import.lib.php:1115 libraries/messages.inc.php:360 msgid "Go to view" msgstr "Ga naar view" #: libraries/import/csv.php:58 libraries/import/csv.php:70 #: libraries/import/csv.php:74 libraries/import/csv.php:78 -#: libraries/messages.inc.php:442 +#: libraries/messages.inc.php:438 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "Ongeldige parameter voor CSV import: %s" -#: libraries/import/csv.php:59 libraries/messages.inc.php:323 +#: libraries/import/csv.php:59 libraries/messages.inc.php:319 msgid "Fields terminated by" msgstr "Velden beëindigd door" -#: libraries/import/csv.php:71 libraries/messages.inc.php:320 +#: libraries/import/csv.php:71 libraries/messages.inc.php:316 msgid "Fields enclosed by" msgstr "Velden ingesloten door" -#: libraries/import/csv.php:75 libraries/messages.inc.php:321 +#: libraries/import/csv.php:75 libraries/messages.inc.php:317 msgid "Fields escaped by" msgstr "Velden ontweken door" -#: libraries/import/csv.php:79 libraries/messages.inc.php:481 +#: libraries/import/csv.php:79 libraries/messages.inc.php:477 msgid "Lines terminated by" msgstr "Regels beëindigd door" -#: libraries/import/csv.php:119 libraries/messages.inc.php:439 +#: libraries/import/csv.php:119 libraries/messages.inc.php:435 #, php-format msgid "Invalid column (%s) specified!" msgstr "Ongeldige kolom (%s) opgegeven!" #: libraries/import/csv.php:177 libraries/import/csv.php:424 -#: libraries/messages.inc.php:441 +#: libraries/messages.inc.php:437 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "Ongeldig formaat van CSV invoer op regel %d." -#: libraries/import/csv.php:312 libraries/messages.inc.php:440 +#: libraries/import/csv.php:312 libraries/messages.inc.php:436 #, php-format msgid "Invalid field count in CSV input on line %d." msgstr "Verkeerd aantal velden in CSV invoer op regel %d." -#: libraries/import/ldi.php:55 libraries/messages.inc.php:446 +#: libraries/import/ldi.php:55 libraries/messages.inc.php:442 msgid "This plugin does not support compressed imports!" msgstr "Deze plugin heeft geen ondersteuning voor gecomprimeerde imports!" #: libraries/import/xml.php:74 libraries/import/xml.php:130 -#: libraries/messages.inc.php:1247 +#: libraries/messages.inc.php:1243 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -3052,323 +3062,313 @@ msgstr "" msgid "ltr" msgstr "ltr" -#. l10n: Thousands separator -#: libraries/messages.inc.php:21 -msgid "," -msgstr "." - -#. l10n: Decimal separator -#: libraries/messages.inc.php:23 -msgid "." -msgstr "," - -#: libraries/messages.inc.php:25 server_status.php:461 +#: libraries/messages.inc.php:21 server_status.php:461 msgid "Aborted" msgstr "Afgehaakte" -#: libraries/messages.inc.php:28 main.php:68 +#: libraries/messages.inc.php:24 main.php:68 msgid "Actions" msgstr "Acties" -#: libraries/messages.inc.php:34 libraries/tbl_properties.inc.php:780 +#: libraries/messages.inc.php:30 libraries/tbl_properties.inc.php:780 #: tbl_structure.php:543 #, php-format msgid "Add %s field(s)" msgstr "Voeg %s veld(en) toe" -#: libraries/messages.inc.php:35 +#: libraries/messages.inc.php:31 msgid "Add custom comment into header (\\n splits lines)" msgstr "Voeg een commentaar toe in de header (\\n om regels af te breken" -#: libraries/messages.inc.php:36 +#: libraries/messages.inc.php:32 msgid "Add into comments" msgstr "Voeg toe in commentaar" -#: libraries/messages.inc.php:37 tbl_structure.php:541 +#: libraries/messages.inc.php:33 tbl_structure.php:541 msgid "Add new field" msgstr "Nieuw veld toevoegen" -#: libraries/messages.inc.php:38 server_privileges.php:1886 +#: libraries/messages.inc.php:34 server_privileges.php:1886 msgid "Add privileges on the following database" msgstr "Voeg privileges toe aan de volgende database" -#: libraries/messages.inc.php:39 server_privileges.php:1907 +#: libraries/messages.inc.php:35 server_privileges.php:1907 msgid "Add privileges on the following table" msgstr "Voeg privileges toe aan de volgende tabel" -#: libraries/messages.inc.php:40 tbl_select.php:288 +#: libraries/messages.inc.php:36 tbl_select.php:288 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Zoek condities toevoegen (het \"where\" gedeelte van de query):" -#: libraries/messages.inc.php:41 tbl_indexes.php:251 +#: libraries/messages.inc.php:37 tbl_indexes.php:251 #, php-format msgid "Add to index  %s column(s)" msgstr "Voeg  %s  kolom(men) toe aan index" -#: libraries/messages.inc.php:42 server_privileges.php:1570 +#: libraries/messages.inc.php:38 server_privileges.php:1570 #: server_privileges.php:1594 server_privileges.php:1988 #: server_privileges.php:2177 msgid "Add a new User" msgstr "Voeg een nieuwe gebruiker toe" -#: libraries/messages.inc.php:43 server_privileges.php:931 +#: libraries/messages.inc.php:39 server_privileges.php:931 msgid "You have added a new user." msgstr "U heeft een nieuwe gebruiker toegevoegd." -#: libraries/messages.inc.php:44 server_privileges.php:571 +#: libraries/messages.inc.php:40 server_privileges.php:571 msgid "Administration" msgstr "Administratie" -#: libraries/messages.inc.php:45 tbl_structure.php:557 +#: libraries/messages.inc.php:41 tbl_structure.php:557 #, php-format msgid "After %s" msgstr "Na %s" -#: libraries/messages.inc.php:46 tbl_change.php:1147 +#: libraries/messages.inc.php:42 tbl_change.php:1147 msgid "Go back to previous page" msgstr "Terug" -#: libraries/messages.inc.php:47 tbl_change.php:1148 +#: libraries/messages.inc.php:43 tbl_change.php:1148 msgid "Insert another new row" msgstr "Voeg een nieuw record toe" -#: libraries/messages.inc.php:48 tbl_change.php:1160 +#: libraries/messages.inc.php:44 tbl_change.php:1160 msgid "Edit next row" msgstr "Bewerk volgende rij" -#: libraries/messages.inc.php:49 tbl_change.php:1152 +#: libraries/messages.inc.php:45 tbl_change.php:1152 msgid "Go back to this page" msgstr "Ga terug naar deze pagina" -#: libraries/messages.inc.php:50 querywindow.php:115 +#: libraries/messages.inc.php:46 querywindow.php:115 msgid "All" msgstr "Alle" -#: libraries/messages.inc.php:53 tbl_operations.php:249 +#: libraries/messages.inc.php:49 tbl_operations.php:249 msgid "Alter table order by" msgstr "Wijzig het \"Sorteren op/Order by\" van de tabel" -#: libraries/messages.inc.php:54 tbl_operations.php:660 +#: libraries/messages.inc.php:50 tbl_operations.php:660 msgid "Analyze" msgstr "Analyseer" -#: libraries/messages.inc.php:57 +#: libraries/messages.inc.php:53 msgid "and" msgstr "en" -#: libraries/messages.inc.php:59 pmd_general.php:87 +#: libraries/messages.inc.php:55 pmd_general.php:87 msgid "Angular links" msgstr "Hoekige verbindingen" -#: libraries/messages.inc.php:60 tbl_structure.php:401 tbl_structure.php:415 +#: libraries/messages.inc.php:56 tbl_structure.php:401 tbl_structure.php:415 #: tbl_structure.php:429 #, php-format msgid "An index has been added on %s" msgstr "Een index is toegevoegd aan %s" -#: libraries/messages.inc.php:61 server_privileges.php:1521 +#: libraries/messages.inc.php:57 server_privileges.php:1521 #: server_privileges.php:2123 msgid "Any" msgstr "Elke" -#: libraries/messages.inc.php:62 libraries/replication_gui.lib.php:298 +#: libraries/messages.inc.php:58 libraries/replication_gui.lib.php:298 #: server_privileges.php:725 msgid "Any host" msgstr "Een willekeurige machine" -#: libraries/messages.inc.php:63 libraries/replication_gui.lib.php:250 +#: libraries/messages.inc.php:59 libraries/replication_gui.lib.php:250 #: server_privileges.php:677 msgid "Any user" msgstr "Een willekeurige gebruiker" -#: libraries/messages.inc.php:64 server_synchronize.php:449 +#: libraries/messages.inc.php:60 server_synchronize.php:449 #: server_synchronize.php:894 msgid "Apply Selected Changes" msgstr "Geselecteerde wijzigingen toepassen" -#: libraries/messages.inc.php:66 tbl_structure.php:386 +#: libraries/messages.inc.php:62 tbl_structure.php:386 #, php-format msgid "A primary key has been added on %s" msgstr "Een primaire sleutel is toegevoegd aan %s" -#: libraries/messages.inc.php:67 libraries/mysql_charsets.lib.php:368 +#: libraries/messages.inc.php:63 libraries/mysql_charsets.lib.php:368 msgid "Arabic" msgstr "Arabisch" -#: libraries/messages.inc.php:68 libraries/mysql_charsets.lib.php:359 +#: libraries/messages.inc.php:64 libraries/mysql_charsets.lib.php:359 msgid "Armenian" msgstr "Armeens" -#: libraries/messages.inc.php:70 libraries/tbl_properties.inc.php:394 +#: libraries/messages.inc.php:66 libraries/tbl_properties.inc.php:394 msgid "As defined:" msgstr "Als aangegeven:" -#: libraries/messages.inc.php:71 tbl_structure.php:556 +#: libraries/messages.inc.php:67 tbl_structure.php:556 msgid "At Beginning of Table" msgstr "Aan het begin van de tabel" -#: libraries/messages.inc.php:72 tbl_structure.php:555 +#: libraries/messages.inc.php:68 tbl_structure.php:555 msgid "At End of Table" msgstr "Aan het eind van de tabel" -#: libraries/messages.inc.php:73 libraries/tbl_properties.inc.php:108 +#: libraries/messages.inc.php:69 libraries/tbl_properties.inc.php:108 #: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:144 #: tbl_structure.php:180 msgid "Attributes" msgstr "Attributen" -#: libraries/messages.inc.php:74 pdf_pages.php:303 pdf_pages.php:306 +#: libraries/messages.inc.php:70 pdf_pages.php:303 pdf_pages.php:306 msgid "Automatic layout" msgstr "Automatische lay-out" -#: libraries/messages.inc.php:77 libraries/mysql_charsets.lib.php:354 +#: libraries/messages.inc.php:73 libraries/mysql_charsets.lib.php:354 msgid "Baltic" msgstr "Baltisch" -#: libraries/messages.inc.php:78 libraries/sqlparser.lib.php:175 +#: libraries/messages.inc.php:74 libraries/sqlparser.lib.php:175 msgid "BEGIN CUT" msgstr "Begin KNIP" -#: libraries/messages.inc.php:79 libraries/sqlparser.lib.php:179 +#: libraries/messages.inc.php:75 libraries/sqlparser.lib.php:179 msgid "BEGIN RAW" msgstr "Begin RAW" -#: libraries/messages.inc.php:80 libraries/mysql_charsets.lib.php:201 +#: libraries/messages.inc.php:76 libraries/mysql_charsets.lib.php:201 #: libraries/mysql_charsets.lib.php:402 tbl_change.php:518 msgid "Binary" msgstr " Binair " -#: libraries/messages.inc.php:81 tbl_change.php:894 +#: libraries/messages.inc.php:77 tbl_change.php:894 msgid "Binary - do not edit" msgstr " Binair - niet aanpassen " -#: libraries/messages.inc.php:82 libraries/server_links.inc.php:76 +#: libraries/messages.inc.php:78 libraries/server_links.inc.php:76 #: server_binlog.php:110 server_status.php:253 test/theme.php:121 msgid "Binary log" msgstr "Binaire log" -#: libraries/messages.inc.php:83 server_binlog.php:217 +#: libraries/messages.inc.php:79 server_binlog.php:217 msgid "Event type" msgstr "Gebeurtenis type" -#: libraries/messages.inc.php:84 server_binlog.php:220 +#: libraries/messages.inc.php:80 server_binlog.php:220 msgid "Information" msgstr "Informatie" -#: libraries/messages.inc.php:85 server_binlog.php:215 +#: libraries/messages.inc.php:81 server_binlog.php:215 msgid "Log name" msgstr "Log naam" -#: libraries/messages.inc.php:86 server_binlog.php:219 +#: libraries/messages.inc.php:82 server_binlog.php:219 msgid "Original position" msgstr "Originele positie" -#: libraries/messages.inc.php:87 server_binlog.php:216 +#: libraries/messages.inc.php:83 server_binlog.php:216 msgid "Position" msgstr "Positie" -#: libraries/messages.inc.php:88 libraries/replication_gui.lib.php:169 +#: libraries/messages.inc.php:84 libraries/replication_gui.lib.php:169 #: server_binlog.php:218 msgid "Server ID" msgstr "Server ID" -#: libraries/messages.inc.php:92 +#: libraries/messages.inc.php:88 msgctxt "$strBLOBRepositoryDisabled" msgid "Disabled" msgstr "Uitgeschakeld" -#: libraries/messages.inc.php:95 +#: libraries/messages.inc.php:91 msgctxt "$strBLOBRepositoryEnabled" msgid "Enabled" msgstr "Ingeschakeld" -#: libraries/messages.inc.php:97 tbl_change.php:888 +#: libraries/messages.inc.php:93 tbl_change.php:888 msgid "Remove BLOB Repository Reference" msgstr "Verwijder BLOB Bewaarplaats Referentie" -#: libraries/messages.inc.php:98 +#: libraries/messages.inc.php:94 msgctxt "$strBLOBRepositoryRepair" msgid "Repair" msgstr "Repareer" -#: libraries/messages.inc.php:99 tbl_change.php:987 +#: libraries/messages.inc.php:95 tbl_change.php:987 msgid "Upload to BLOB repository" msgstr "Upload naar BLOB bewaarplaats" -#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:359 +#: libraries/messages.inc.php:96 libraries/sql_query_form.lib.php:359 #: sql.php:677 msgid "Let every user access this bookmark" msgstr "Geef elke gebruiker toegang tot deze bookmark" -#: libraries/messages.inc.php:103 sql.php:671 +#: libraries/messages.inc.php:99 sql.php:671 msgid "Label" msgstr "Label" -#: libraries/messages.inc.php:104 libraries/sql_query_form.lib.php:433 +#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:433 msgid "Bookmarked SQL query" msgstr "Opgeslagen SQL-query" -#: libraries/messages.inc.php:105 libraries/sql_query_form.lib.php:365 +#: libraries/messages.inc.php:101 libraries/sql_query_form.lib.php:365 msgid "Replace existing bookmark of same name" msgstr "Bookmark met dezelfde naam overschrijven" -#: libraries/messages.inc.php:106 libraries/sql_query_form.lib.php:352 +#: libraries/messages.inc.php:102 libraries/sql_query_form.lib.php:352 #: sql.php:665 sql.php:666 sql.php:683 msgid "Bookmark this SQL query" msgstr "Sla deze SQL-query op" -#: libraries/messages.inc.php:107 libraries/sql_query_form.lib.php:466 +#: libraries/messages.inc.php:103 libraries/sql_query_form.lib.php:466 msgid "View only" msgstr "Alleen bekijken" -#: libraries/messages.inc.php:109 tbl_structure.php:161 +#: libraries/messages.inc.php:105 tbl_structure.php:161 msgid "Browse distinct values" msgstr "Bekijk unieke waarden" -#: libraries/messages.inc.php:110 tbl_change.php:252 tbl_select.php:27 +#: libraries/messages.inc.php:106 tbl_change.php:252 tbl_select.php:27 #: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34 msgid "Browse foreign values" msgstr "Bekijk vreemde waardes" -#: libraries/messages.inc.php:118 libraries/mysql_charsets.lib.php:213 +#: libraries/messages.inc.php:114 libraries/mysql_charsets.lib.php:213 msgid "Bulgarian" msgstr "Bulgaars" -#: libraries/messages.inc.php:120 +#: libraries/messages.inc.php:116 msgid "\"bzipped\"" msgstr "\"ge-bzipt\"" -#: libraries/messages.inc.php:122 +#: libraries/messages.inc.php:118 msgid "Calendar" msgstr "Kalender" -#: libraries/messages.inc.php:129 tbl_indexes.php:75 +#: libraries/messages.inc.php:125 tbl_indexes.php:75 msgid "Can't rename index to PRIMARY!" msgstr "Kan index niet naar PRIMARY hernoemen" -#: libraries/messages.inc.php:132 libraries/mysql_charsets.lib.php:223 +#: libraries/messages.inc.php:128 libraries/mysql_charsets.lib.php:223 #: libraries/mysql_charsets.lib.php:409 msgid "case-insensitive" msgstr "hoofdletter ongevoelig" -#: libraries/messages.inc.php:133 libraries/mysql_charsets.lib.php:226 +#: libraries/messages.inc.php:129 libraries/mysql_charsets.lib.php:226 #: libraries/mysql_charsets.lib.php:411 msgid "case-sensitive" msgstr "hoofdletter gevoelig" -#: libraries/messages.inc.php:134 libraries/mysql_charsets.lib.php:332 +#: libraries/messages.inc.php:130 libraries/mysql_charsets.lib.php:332 msgid "Central European" msgstr "Centraal Europees" -#: libraries/messages.inc.php:136 server_privileges.php:1969 +#: libraries/messages.inc.php:132 server_privileges.php:1969 msgid "... keep the old one." msgstr "... behoud de oude." -#: libraries/messages.inc.php:137 server_privileges.php:1967 +#: libraries/messages.inc.php:133 server_privileges.php:1967 msgid "Create a new user with the same privileges and ..." msgstr "Maak een nieuwe gebruiker aan met dezelfde privileges en ..." -#: libraries/messages.inc.php:138 server_privileges.php:1972 +#: libraries/messages.inc.php:134 server_privileges.php:1972 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -3376,77 +3376,77 @@ msgstr "" " ... verwijder de oude van de gebruikerstabellen en vernieuw de privileges " "achteraf." -#: libraries/messages.inc.php:139 server_privileges.php:1970 +#: libraries/messages.inc.php:135 server_privileges.php:1970 msgid " ... delete the old one from the user tables." msgstr " ... verwijder de oude van de user tabellen." -#: libraries/messages.inc.php:140 server_privileges.php:1971 +#: libraries/messages.inc.php:136 server_privileges.php:1971 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." -#: libraries/messages.inc.php:141 server_privileges.php:1964 +#: libraries/messages.inc.php:137 server_privileges.php:1964 msgid "Change Login Information / Copy User" msgstr "Wijzig de Inlog Informatie / Kopieer gebruiker" -#: libraries/messages.inc.php:144 libraries/mysql_charsets.lib.php:107 +#: libraries/messages.inc.php:140 libraries/mysql_charsets.lib.php:107 msgid "Charset" msgstr "Karakterset" -#: libraries/messages.inc.php:146 server_collations.php:40 +#: libraries/messages.inc.php:142 server_collations.php:40 msgid "Character Sets and Collations" msgstr "Karakter Sets en Collaties" -#: libraries/messages.inc.php:147 libraries/server_links.inc.php:57 +#: libraries/messages.inc.php:143 libraries/server_links.inc.php:57 #: test/theme.php:109 msgid "Charsets" msgstr "Karaktersets" -#: libraries/messages.inc.php:149 tbl_operations.php:661 +#: libraries/messages.inc.php:145 tbl_operations.php:661 msgid "Check" msgstr "Controleer" -#: libraries/messages.inc.php:151 server_databases.php:293 +#: libraries/messages.inc.php:147 server_databases.php:293 #: server_databases.php:294 msgid "Check Privileges" msgstr "Controleer privileges" -#: libraries/messages.inc.php:152 server_databases.php:289 +#: libraries/messages.inc.php:148 server_databases.php:289 #, php-format msgid "Check privileges for database "%s"." msgstr "Controleer privileges voor database "%s"." -#: libraries/messages.inc.php:154 pdf_pages.php:261 +#: libraries/messages.inc.php:150 pdf_pages.php:261 msgid "Please choose a page to edit" msgstr "Kies een pagina om aan te passen" -#: libraries/messages.inc.php:157 +#: libraries/messages.inc.php:153 msgid "Displaying Column Comments" msgstr "Toon kolom commentaar" -#: libraries/messages.inc.php:159 pdf_pages.php:483 view_create.php:148 +#: libraries/messages.inc.php:155 pdf_pages.php:483 view_create.php:148 msgid "Column names" msgstr "Kolom namen" -#: libraries/messages.inc.php:160 server_privileges.php:1685 +#: libraries/messages.inc.php:156 server_privileges.php:1685 msgid "Column-specific privileges" msgstr "Kolom-specifieke privileges" -#: libraries/messages.inc.php:164 +#: libraries/messages.inc.php:160 msgid "MySQL 4.0 compatible" msgstr "MySQL 4.0 compatibel" -#: libraries/messages.inc.php:165 +#: libraries/messages.inc.php:161 msgid "Complete inserts" msgstr "Invoegen voltooid" -#: libraries/messages.inc.php:168 +#: libraries/messages.inc.php:164 #, php-format msgid "Could not load default configuration from: \"%1$s\"" msgstr "Standaard configuratiebestand kon niet worden geladen vanuit: \"%1$s\"" -#: libraries/messages.inc.php:169 main.php:306 +#: libraries/messages.inc.php:165 main.php:306 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " @@ -3456,37 +3456,37 @@ msgstr "" "nog in de phpMyAdmin directory. Het kan beter worden verwijderd zodra " "phpMyAdmin is geconfigureerd." -#: libraries/messages.inc.php:171 pdf_schema.php:672 +#: libraries/messages.inc.php:167 pdf_schema.php:672 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Configureer de coördinaten voor de tabel %s" -#: libraries/messages.inc.php:173 server_status.php:433 +#: libraries/messages.inc.php:169 server_status.php:433 msgid "Connections" msgstr "Connecties" -#: libraries/messages.inc.php:179 tbl_operations.php:509 +#: libraries/messages.inc.php:175 tbl_operations.php:509 msgid "Copy table to (database.table):" msgstr "Kopieer tabel naar (database.tabel):" -#: libraries/messages.inc.php:180 tbl_move_copy.php:58 +#: libraries/messages.inc.php:176 tbl_move_copy.php:58 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabel %s is gekopieerd naar %s." -#: libraries/messages.inc.php:181 tbl_move_copy.php:48 +#: libraries/messages.inc.php:177 tbl_move_copy.php:48 msgid "Can't copy table to same one!" msgstr "Kan de tabel niet naar dezelfde kopiëren!" -#: libraries/messages.inc.php:182 server_synchronize.php:94 +#: libraries/messages.inc.php:178 server_synchronize.php:94 msgid "Could not connect to the source" msgstr "Verbinding naar de brondatabase is mislukt" -#: libraries/messages.inc.php:183 server_synchronize.php:97 +#: libraries/messages.inc.php:179 server_synchronize.php:97 msgid "Could not connect to the target" msgstr "Verbinding naar de bestemmingsdatabase is mislukt" -#: libraries/messages.inc.php:184 server_processlist.php:24 +#: libraries/messages.inc.php:180 server_processlist.php:24 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -3494,133 +3494,133 @@ msgstr "" "phpMyAdmin is er niet in geslaagd om de %s te sluiten.Waarschijnlijk is het " "al gesloten." -#: libraries/messages.inc.php:187 +#: libraries/messages.inc.php:183 #, php-format msgid "Create an index on %s columns" msgstr "Creëer een index op kolommen %s " -#: libraries/messages.inc.php:188 tbl_indexes.php:160 +#: libraries/messages.inc.php:184 tbl_indexes.php:160 msgid "Create a new index" msgstr "Creëer een nieuwe index" -#: libraries/messages.inc.php:191 pdf_pages.php:297 pmd_pdf.php:114 +#: libraries/messages.inc.php:187 pdf_pages.php:297 pmd_pdf.php:114 msgid "Create a page" msgstr "Creëer een nieuwe pagina" -#: libraries/messages.inc.php:192 +#: libraries/messages.inc.php:188 msgid "Creation of PDFs" msgstr "Aanmaken van PDF bestanden" -#: libraries/messages.inc.php:193 pmd_general.php:74 pmd_general.php:306 +#: libraries/messages.inc.php:189 pmd_general.php:74 pmd_general.php:306 msgid "Create relation" msgstr "Maak relatie" -#: libraries/messages.inc.php:194 pmd_general.php:71 +#: libraries/messages.inc.php:190 pmd_general.php:71 #: server_synchronize.php:429 server_synchronize.php:872 msgid "Create table" msgstr "Maak tabel" -#: libraries/messages.inc.php:195 +#: libraries/messages.inc.php:191 #, fuzzy msgctxt "$strCreateTableShort" msgid "Create table" msgstr "Maak tabel" -#: libraries/messages.inc.php:196 server_privileges.php:1994 +#: libraries/messages.inc.php:192 server_privileges.php:1994 msgid "Database for user" msgstr "Database voor gebruiker" -#: libraries/messages.inc.php:197 server_privileges.php:1999 +#: libraries/messages.inc.php:193 server_privileges.php:1999 msgid "Create database with same name and grant all privileges" msgstr "Maak een database met dezelfde naam en geef alle rechten hierop" -#: libraries/messages.inc.php:198 +#: libraries/messages.inc.php:194 #, fuzzy msgctxt "$strCreateUserDatabaseNone" msgid "None" msgstr "Geen" -#: libraries/messages.inc.php:199 server_privileges.php:2003 +#: libraries/messages.inc.php:195 server_privileges.php:2003 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Geef alle rechten op de database "%s"" -#: libraries/messages.inc.php:200 server_privileges.php:2000 +#: libraries/messages.inc.php:196 server_privileges.php:2000 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Geef alle rechten op de wildcard naam (gebruikersnaam\\_%)" -#: libraries/messages.inc.php:201 +#: libraries/messages.inc.php:197 msgid "Creation/Update/Check dates" msgstr "Creatie/Update/Controleer datum" -#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:229 +#: libraries/messages.inc.php:199 libraries/mysql_charsets.lib.php:229 msgid "Croatian" msgstr "Kroatisch" -#: libraries/messages.inc.php:204 +#: libraries/messages.inc.php:200 msgid "CSV" msgstr "CSV gegevens" -#: libraries/messages.inc.php:205 libraries/server_synchronize.lib.php:1343 +#: libraries/messages.inc.php:201 libraries/server_synchronize.lib.php:1343 #: libraries/server_synchronize.lib.php:1369 msgid "Current server" msgstr "Huidige server" -#: libraries/messages.inc.php:206 main.php:159 +#: libraries/messages.inc.php:202 main.php:159 msgid "Custom color" msgstr "Aangepaste kleur" -#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:365 +#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:365 msgid "Cyrillic" msgstr "Cyrillisch" -#: libraries/messages.inc.php:208 libraries/mysql_charsets.lib.php:232 +#: libraries/messages.inc.php:204 libraries/mysql_charsets.lib.php:232 msgid "Czech" msgstr "Tsjechisch" -#: libraries/messages.inc.php:209 libraries/mysql_charsets.lib.php:383 +#: libraries/messages.inc.php:205 libraries/mysql_charsets.lib.php:383 msgid "Czech-Slovak" msgstr "Tsjechische-Slowaak" -#: libraries/messages.inc.php:211 libraries/mysql_charsets.lib.php:235 +#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:235 msgid "Danish" msgstr "Deens" -#: libraries/messages.inc.php:214 +#: libraries/messages.inc.php:210 msgid "Database export options" msgstr "Database export opties" -#: libraries/messages.inc.php:217 server_synchronize.php:122 +#: libraries/messages.inc.php:213 server_synchronize.php:122 #: server_synchronize.php:125 tbl_create.php:82 tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "Database '%s' bestaat niet." -#: libraries/messages.inc.php:219 server_databases.php:63 +#: libraries/messages.inc.php:215 server_databases.php:63 #, php-format msgid "%s databases have been dropped successfully." msgstr "%s databases zijn succesvol verwijderd." -#: libraries/messages.inc.php:220 libraries/server_synchronize.lib.php:1341 +#: libraries/messages.inc.php:216 libraries/server_synchronize.lib.php:1341 #: server_synchronize.php:1110 msgid "Source database" msgstr "Bron database" -#: libraries/messages.inc.php:221 server_databases.php:88 +#: libraries/messages.inc.php:217 server_databases.php:88 msgid "Databases statistics" msgstr "Database statistieken" -#: libraries/messages.inc.php:222 server_databases.php:362 +#: libraries/messages.inc.php:218 server_databases.php:362 #: server_databases.php:363 msgid "Disable Statistics" msgstr "Statistieken uitzetten" -#: libraries/messages.inc.php:223 server_databases.php:358 +#: libraries/messages.inc.php:219 server_databases.php:358 #: server_databases.php:359 msgid "Enable Statistics" msgstr "Statistieken aanzetten" -#: libraries/messages.inc.php:224 server_databases.php:366 +#: libraries/messages.inc.php:220 server_databases.php:366 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -3628,30 +3628,30 @@ msgstr "" "Attentie: Het aanzeten van statistieken kan zorgen voor veel dataverkeer " "tussen de webserver en de MySQL-server." -#: libraries/messages.inc.php:225 libraries/server_synchronize.lib.php:1367 +#: libraries/messages.inc.php:221 libraries/server_synchronize.lib.php:1367 #: server_synchronize.php:1112 msgid "Target database" msgstr "Doel database" -#: libraries/messages.inc.php:228 server_synchronize.php:425 +#: libraries/messages.inc.php:224 server_synchronize.php:425 #: server_synchronize.php:868 msgid "Data Difference" msgstr "Gegevens verschillen" -#: libraries/messages.inc.php:231 server_synchronize.php:272 +#: libraries/messages.inc.php:227 server_synchronize.php:272 msgid "Data Synchronization" msgstr "Gegevens synchronizatie" -#: libraries/messages.inc.php:235 server_privileges.php:526 +#: libraries/messages.inc.php:231 server_privileges.php:526 #: server_privileges.php:1679 msgid "Database-specific privileges" msgstr "Database-specifieke privileges" -#: libraries/messages.inc.php:237 server_privileges.php:2136 +#: libraries/messages.inc.php:233 server_privileges.php:2136 msgid "database-specific" msgstr "database-specifiek" -#: libraries/messages.inc.php:240 libraries/tbl_properties.inc.php:106 +#: libraries/messages.inc.php:236 libraries/tbl_properties.inc.php:106 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" @@ -3659,32 +3659,32 @@ msgstr "" "Voer voor standaard waarden aub een enkele waarde in, zonder backslash of " "aanhalingstekens, gebruik makend van dit formaat: a" -#: libraries/messages.inc.php:241 tbl_operations.php:589 +#: libraries/messages.inc.php:237 tbl_operations.php:589 msgid "Defragment table" msgstr "Defragmenteer tabel" -#: libraries/messages.inc.php:242 +#: libraries/messages.inc.php:238 msgid "Use delayed inserts" msgstr "Gebruik vertraagde inserts" -#: libraries/messages.inc.php:245 server_privileges.php:1243 +#: libraries/messages.inc.php:241 server_privileges.php:1243 msgid "No users selected for deleting!" msgstr "Geen gebruikers geselecteerd om te verwijderen!" -#: libraries/messages.inc.php:246 pmd_general.php:372 +#: libraries/messages.inc.php:242 pmd_general.php:372 msgid "Delete relation" msgstr "Relatie verwijderen" -#: libraries/messages.inc.php:248 server_privileges.php:1232 +#: libraries/messages.inc.php:244 server_privileges.php:1232 #, php-format msgid "Deleting %s" msgstr "Verwijderen van %s" -#: libraries/messages.inc.php:249 libraries/sql_query_form.lib.php:388 +#: libraries/messages.inc.php:245 libraries/sql_query_form.lib.php:388 msgid "Delimiter" msgstr "Scheidingsteken" -#: libraries/messages.inc.php:250 pdf_pages.php:506 +#: libraries/messages.inc.php:246 pdf_pages.php:506 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -3692,7 +3692,7 @@ msgstr "" "De huidige pagina heeft referenties met tabellen die niet langer bestaan. " "Wilt u deze referenties verwijderen?" -#: libraries/messages.inc.php:254 pmd_help.php:29 +#: libraries/messages.inc.php:250 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 " @@ -3702,143 +3702,143 @@ msgstr "" "wijzigen, klik het \"Kies weer te geven veld\" icoon gevolgd door het weer " "te geven veld." -#: libraries/messages.inc.php:256 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:252 libraries/mysql_charsets.lib.php:247 msgid "dictionary" msgstr "Woordenboek" -#: libraries/messages.inc.php:257 libraries/server_synchronize.lib.php:1348 +#: libraries/messages.inc.php:253 libraries/server_synchronize.lib.php:1348 msgid "Difference" msgstr "Verschil" -#: libraries/messages.inc.php:258 pmd_general.php:87 +#: libraries/messages.inc.php:254 pmd_general.php:87 msgid "Direct links" msgstr "Directe verbindingen" -#: libraries/messages.inc.php:261 +#: libraries/messages.inc.php:257 msgid "Disable foreign key checks" msgstr "controle op vreemde sleutels uitschakelen" -#: libraries/messages.inc.php:262 +#: libraries/messages.inc.php:258 msgid "Display Features" msgstr "Toon Opties" -#: libraries/messages.inc.php:263 tbl_select.php:301 +#: libraries/messages.inc.php:259 tbl_select.php:301 msgid "Display order:" msgstr "Weergave volgorde:" -#: libraries/messages.inc.php:265 tbl_select.php:132 +#: libraries/messages.inc.php:261 tbl_select.php:132 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Voer een query op basis van een vergelijking uit (wildcard: \"%\")" -#: libraries/messages.inc.php:266 +#: libraries/messages.inc.php:262 msgid "DocSQL" msgstr "DocSQL" -#: libraries/messages.inc.php:268 +#: libraries/messages.inc.php:264 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Gebruik geen AUTO_INCREMENT voor 0-waarden" -#: libraries/messages.inc.php:273 server_privileges.php:1579 +#: libraries/messages.inc.php:269 server_privileges.php:1579 #: server_privileges.php:1580 server_privileges.php:1581 msgid "Drop the databases that have the same names as the users." msgstr "Verwijder de databases die dezelfde naam hebben als de gebruikers." -#: libraries/messages.inc.php:278 tbl_printview.php:382 tbl_structure.php:743 +#: libraries/messages.inc.php:274 tbl_printview.php:382 tbl_structure.php:743 msgid "dynamic" msgstr "dynamisch" -#: libraries/messages.inc.php:282 server_privileges.php:1324 +#: libraries/messages.inc.php:278 server_privileges.php:1324 #: server_privileges.php:1610 msgid "Edit Privileges" msgstr "Wijzig rechten" -#: libraries/messages.inc.php:283 tbl_printview.php:341 tbl_structure.php:688 +#: libraries/messages.inc.php:279 tbl_printview.php:341 tbl_structure.php:688 msgid "Effective" msgstr "Effectief" -#: libraries/messages.inc.php:286 libraries/relation.lib.php:100 +#: libraries/messages.inc.php:282 libraries/relation.lib.php:100 msgid "Enabled" msgstr "Ingeschakeld" -#: libraries/messages.inc.php:287 +#: libraries/messages.inc.php:283 msgid "Enclose export in a transaction" msgstr "Sluit de export in een transactie" -#: libraries/messages.inc.php:288 libraries/sqlparser.lib.php:177 +#: libraries/messages.inc.php:284 libraries/sqlparser.lib.php:177 msgid "END CUT" msgstr "Einde KNIP" -#: libraries/messages.inc.php:290 libraries/sqlparser.lib.php:183 +#: libraries/messages.inc.php:286 libraries/sqlparser.lib.php:183 msgid "END RAW" msgstr "Einde RAW" -#: libraries/messages.inc.php:293 libraries/server_links.inc.php:61 +#: libraries/messages.inc.php:289 libraries/server_links.inc.php:61 #: test/theme.php:113 msgid "Engines" msgstr "Engines" -#: libraries/messages.inc.php:295 libraries/mysql_charsets.lib.php:238 +#: libraries/messages.inc.php:291 libraries/mysql_charsets.lib.php:238 msgid "English" msgstr "Engels" -#: libraries/messages.inc.php:296 server_privileges.php:393 +#: libraries/messages.inc.php:292 server_privileges.php:393 #: server_privileges.php:535 server_privileges.php:1501 msgid " Note: MySQL privilege names are expressed in English " msgstr "" " Aantekening: de namen van de MySQL rechten zijn uitgedrukt in het Engels " -#: libraries/messages.inc.php:298 libraries/zip_extension.lib.php:49 +#: libraries/messages.inc.php:294 libraries/zip_extension.lib.php:49 #: libraries/zip_extension.lib.php:51 libraries/zip_extension.lib.php:66 msgid "Error in ZIP archive:" msgstr "Fout in ZIP-archief:" -#: libraries/messages.inc.php:303 libraries/mysql_charsets.lib.php:241 +#: libraries/messages.inc.php:299 libraries/mysql_charsets.lib.php:241 msgid "Esperanto" msgstr "Esperanto" -#: libraries/messages.inc.php:304 libraries/mysql_charsets.lib.php:244 +#: libraries/messages.inc.php:300 libraries/mysql_charsets.lib.php:244 msgid "Estonian" msgstr "Estlands" -#: libraries/messages.inc.php:305 libraries/tbl_triggers.lib.php:29 +#: libraries/messages.inc.php:301 libraries/tbl_triggers.lib.php:29 msgid "Event" msgstr "Gebeurtenis" -#: libraries/messages.inc.php:307 +#: libraries/messages.inc.php:303 msgid "Excel edition" msgstr "Excel editie" -#: libraries/messages.inc.php:311 pmd_pdf.php:85 +#: libraries/messages.inc.php:307 pmd_pdf.php:85 msgid "Export/Import to scale" msgstr "Exporteer/Importeer naar schaal" -#: libraries/messages.inc.php:313 +#: libraries/messages.inc.php:309 msgid "Extended inserts" msgstr "Uitgebreide invoegingen" -#: libraries/messages.inc.php:314 pdf_schema.php:1267 pdf_schema.php:1288 +#: libraries/messages.inc.php:310 pdf_schema.php:1267 pdf_schema.php:1288 #: tbl_printview.php:147 tbl_structure.php:183 tbl_tracking.php:278 msgid "Extra" msgstr "Extra" -#: libraries/messages.inc.php:316 server_status.php:447 +#: libraries/messages.inc.php:312 server_status.php:447 msgid "Failed attempts" msgstr "Mislukte pogingen" -#: libraries/messages.inc.php:318 tbl_structure.php:375 +#: libraries/messages.inc.php:314 tbl_structure.php:375 #, php-format msgid "Field %s has been dropped" msgstr "Veld %s is vervallen" -#: libraries/messages.inc.php:322 libraries/sql_query_form.lib.php:317 +#: libraries/messages.inc.php:318 libraries/sql_query_form.lib.php:317 msgid "Fields" msgstr "Velden" -#: libraries/messages.inc.php:332 server_binlog.php:136 +#: libraries/messages.inc.php:328 server_binlog.php:136 msgid "Files" msgstr "bestanden" -#: libraries/messages.inc.php:334 server_privileges.php:1597 +#: libraries/messages.inc.php:330 server_privileges.php:1597 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -3852,120 +3852,120 @@ msgstr "" "geval zijn dan moet men %sde privilege tabel vernieuwen%s voordat men verder " "gaat." -#: libraries/messages.inc.php:335 server_status.php:289 +#: libraries/messages.inc.php:331 server_status.php:289 msgid "Flush query cache" msgstr "Schoon query cache" -#: libraries/messages.inc.php:336 +#: libraries/messages.inc.php:332 msgid "Flush the table (\"FLUSH\")" msgstr "Schoon de tabel (\"FLUSH\")" -#: libraries/messages.inc.php:337 server_status.php:271 +#: libraries/messages.inc.php:333 server_status.php:271 msgid "Flush (close) all tables" msgstr "Schoon (sluit) alle tabellen" -#: libraries/messages.inc.php:339 tbl_relation.php:279 +#: libraries/messages.inc.php:335 tbl_relation.php:279 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" "Fout bij het maken van vreemdesleutel naar %1$s (controleer data typen)" -#: libraries/messages.inc.php:341 setup/lib/messages.inc.php:88 +#: libraries/messages.inc.php:337 setup/lib/messages.inc.php:88 #: tbl_printview.php:376 tbl_structure.php:738 msgid "Format" msgstr "Opmaak" -#: libraries/messages.inc.php:344 server_replication.php:325 +#: libraries/messages.inc.php:340 server_replication.php:325 msgid "Full start" msgstr "Start volledig" -#: libraries/messages.inc.php:345 server_replication.php:325 +#: libraries/messages.inc.php:341 server_replication.php:325 msgid "Full stop" msgstr "Stop volledig" -#: libraries/messages.inc.php:347 tbl_change.php:282 tbl_change.php:320 +#: libraries/messages.inc.php:343 tbl_change.php:282 tbl_change.php:320 msgid "Function" msgstr "Functie" -#: libraries/messages.inc.php:355 libraries/mysql_charsets.lib.php:377 +#: libraries/messages.inc.php:351 libraries/mysql_charsets.lib.php:377 msgid "Georgian" msgstr "Georgisch" -#: libraries/messages.inc.php:356 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:352 libraries/mysql_charsets.lib.php:247 #: libraries/mysql_charsets.lib.php:250 msgid "German" msgstr "Duits" -#: libraries/messages.inc.php:357 themes.php:42 +#: libraries/messages.inc.php:353 themes.php:42 msgid "Get more themes!" msgstr "Bekijk meer thema's!" -#: libraries/messages.inc.php:358 server_privileges.php:2134 +#: libraries/messages.inc.php:354 server_privileges.php:2134 msgid "global" msgstr "globaal" -#: libraries/messages.inc.php:359 server_privileges.php:524 +#: libraries/messages.inc.php:355 server_privileges.php:524 #: server_privileges.php:1500 msgid "Global privileges" msgstr "Globale privileges" -#: libraries/messages.inc.php:360 server_variables.php:55 +#: libraries/messages.inc.php:356 server_variables.php:55 #: server_variables.php:89 msgid "Global value" msgstr "Globale waarde" -#: libraries/messages.inc.php:365 server_privileges.php:1502 +#: libraries/messages.inc.php:361 server_privileges.php:1502 #: server_privileges.php:1684 server_privileges.php:2033 msgid "Grant" msgstr "Toekennen" -#: libraries/messages.inc.php:366 libraries/mysql_charsets.lib.php:380 +#: libraries/messages.inc.php:362 libraries/mysql_charsets.lib.php:380 msgid "Greek" msgstr "Grieks" -#: libraries/messages.inc.php:367 +#: libraries/messages.inc.php:363 msgid "\"gzipped\"" msgstr "\"ge-gzipt\"" -#: libraries/messages.inc.php:369 server_status.php:250 +#: libraries/messages.inc.php:365 server_status.php:250 msgid "Handler" msgstr "Handler" -#: libraries/messages.inc.php:370 server_synchronize.php:464 +#: libraries/messages.inc.php:366 server_synchronize.php:464 msgid "Selected target tables have been synchronized with source tables." msgstr "De geselecteerde tabellen zijn gesynchroniseerd met de bron tabellen." -#: libraries/messages.inc.php:372 libraries/mysql_charsets.lib.php:374 +#: libraries/messages.inc.php:368 libraries/mysql_charsets.lib.php:374 msgid "Hebrew" msgstr "Hebreeuws" -#: libraries/messages.inc.php:373 pmd_general.php:83 +#: libraries/messages.inc.php:369 pmd_general.php:83 msgid "Help" msgstr "Help" -#: libraries/messages.inc.php:374 +#: libraries/messages.inc.php:370 msgid "Use hexadecimal for BLOB" msgstr "Gebruik hexadecimaal voor BLOB" -#: libraries/messages.inc.php:376 pmd_general.php:120 +#: libraries/messages.inc.php:372 pmd_general.php:120 msgid "Hide/Show all" msgstr "Toon/Verberg alles" -#: libraries/messages.inc.php:377 pmd_general.php:124 +#: libraries/messages.inc.php:373 pmd_general.php:124 msgid "Hide/Show Tables with no relation" msgstr "Verberg/Toon Tabellen zonder relatie" -#: libraries/messages.inc.php:378 libraries/navigation_header.inc.php:54 +#: libraries/messages.inc.php:374 libraries/navigation_header.inc.php:54 #: libraries/navigation_header.inc.php:57 #: libraries/navigation_header.inc.php:58 msgid "Home" msgstr "Home" -#: libraries/messages.inc.php:379 main.php:233 +#: libraries/messages.inc.php:375 main.php:233 msgid "Official Homepage" msgstr "Officiële phpMyAdmin Website" -#: libraries/messages.inc.php:382 libraries/replication_gui.lib.php:327 +#: libraries/messages.inc.php:378 libraries/replication_gui.lib.php:327 #: server_privileges.php:753 msgid "" "When Host table is used, this field is ignored and values stored in Host " @@ -3974,98 +3974,98 @@ msgstr "" "Indien er gebruik wordt gemaakt van de Host tabel is dit veld niet van " "toepassing." -#: libraries/messages.inc.php:383 +#: libraries/messages.inc.php:379 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/messages.inc.php:384 libraries/mysql_charsets.lib.php:253 +#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:253 msgid "Hungarian" msgstr "Hongaars" -#: libraries/messages.inc.php:386 libraries/mysql_charsets.lib.php:256 +#: libraries/messages.inc.php:382 libraries/mysql_charsets.lib.php:256 msgid "Icelandic" msgstr "IJslands" -#: libraries/messages.inc.php:387 server_processlist.php:53 +#: libraries/messages.inc.php:383 server_processlist.php:53 msgid "ID" msgstr "ID" -#: libraries/messages.inc.php:388 libraries/mult_submits.inc.php:108 +#: libraries/messages.inc.php:384 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:479 msgid "Fulltext" msgstr "Volledige tekst" -#: libraries/messages.inc.php:389 +#: libraries/messages.inc.php:385 msgid "Ignore duplicate rows" msgstr "Negeer dubbele rijen" -#: libraries/messages.inc.php:390 tbl_change.php:302 tbl_indexes.php:200 +#: libraries/messages.inc.php:386 tbl_change.php:302 tbl_indexes.php:200 #: tbl_indexes.php:225 msgid "Ignore" msgstr "Negeer" -#: libraries/messages.inc.php:391 +#: libraries/messages.inc.php:387 msgid "Use ignore inserts" msgstr "Gebruik 'INSERT IGNORE'" -#: libraries/messages.inc.php:392 +#: libraries/messages.inc.php:388 msgid "Column names in first row" msgstr "Kolomnamen in eerste rij" -#: libraries/messages.inc.php:393 +#: libraries/messages.inc.php:389 msgid "Do not import empty rows" msgstr "Lege rijen niet importeren" -#: libraries/messages.inc.php:394 pmd_general.php:104 +#: libraries/messages.inc.php:390 pmd_general.php:104 msgid "Import/Export coordinates for PDF schema" msgstr "Importeer/Exporteer coördinaten voor PDF-schema" -#: libraries/messages.inc.php:395 querywindow.php:104 +#: libraries/messages.inc.php:391 querywindow.php:104 msgid "Import files" msgstr "Bestanden importeren" -#: libraries/messages.inc.php:403 +#: libraries/messages.inc.php:399 msgid "Import currencies ($5.00 to 5.00)" msgstr "Valuta importeren ($5.00 naar 5.00)" -#: libraries/messages.inc.php:404 libraries/messages.inc.php:584 +#: libraries/messages.inc.php:400 libraries/messages.inc.php:580 msgid "Open Document Spreadsheet" msgstr "Open Document Spreadsheet" -#: libraries/messages.inc.php:405 +#: libraries/messages.inc.php:401 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "Percentages als decimalen importeren (12.00% naar .12)" -#: libraries/messages.inc.php:409 +#: libraries/messages.inc.php:405 msgid "Excel 97-2003 XLS Workbook" msgstr "Excel 97-2003 XLS Werkboek" -#: libraries/messages.inc.php:410 +#: libraries/messages.inc.php:406 msgid "Excel 2007 XLSX Workbook" msgstr "Excel 2007 XLSX Werkboek" -#: libraries/messages.inc.php:414 libraries/mult_submits.inc.php:98 +#: libraries/messages.inc.php:410 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:476 tbl_structure.php:674 msgid "Index" msgstr "Index" -#: libraries/messages.inc.php:415 tbl_indexes.php:168 +#: libraries/messages.inc.php:411 tbl_indexes.php:168 msgid "Index name:" msgstr "Index naam :" -#: libraries/messages.inc.php:416 tbl_indexes.php:174 +#: libraries/messages.inc.php:412 tbl_indexes.php:174 msgid "Index type:" msgstr "Index type :" -#: libraries/messages.inc.php:417 sql.php:639 +#: libraries/messages.inc.php:413 sql.php:639 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemen met de index(en) van de tabel `%s`" -#: libraries/messages.inc.php:427 main.php:266 +#: libraries/messages.inc.php:423 main.php:266 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -4077,24 +4077,24 @@ msgstr "" "met deze standaard waardes, en is open voor ongewilde toegang. Het wordt dus " "aangeraden dit op te lossen." -#: libraries/messages.inc.php:428 tbl_change.php:1130 +#: libraries/messages.inc.php:424 tbl_change.php:1130 msgid "Insert as new row" msgstr "Voeg toe als nieuwe rij" -#: libraries/messages.inc.php:429 sql.php:496 tbl_replace.php:386 +#: libraries/messages.inc.php:425 sql.php:496 tbl_replace.php:386 #, php-format msgid "Inserted row id: %1$d" msgstr "Toegevoegd rij nummer: %1$d" -#: libraries/messages.inc.php:430 tbl_change.php:1131 +#: libraries/messages.inc.php:426 tbl_change.php:1131 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/messages.inc.php:432 main.php:139 +#: libraries/messages.inc.php:428 main.php:139 msgid "Interface" msgstr "Interface" -#: libraries/messages.inc.php:433 tbl_relation.php:407 +#: libraries/messages.inc.php:429 tbl_relation.php:407 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -4102,140 +4102,140 @@ msgstr "" "Een interne relatie is niet noodzakelijk wanneer er reeds een vreemde sleutel" "(FOREIGN KEY) relatie bestaat." -#: libraries/messages.inc.php:435 pdf_pages.php:303 +#: libraries/messages.inc.php:431 pdf_pages.php:303 msgid "Internal relations" msgstr "Interne relaties" -#: libraries/messages.inc.php:438 tbl_indexes.php:256 tbl_structure.php:590 +#: libraries/messages.inc.php:434 tbl_indexes.php:256 tbl_structure.php:590 #: tbl_structure.php:601 msgid "Column count has to be larger than zero." msgstr "Het aantal kolommen moet groter dan nul zijn." -#: libraries/messages.inc.php:444 libraries/tbl_properties.inc.php:784 +#: libraries/messages.inc.php:440 libraries/tbl_properties.inc.php:784 #: tbl_structure.php:537 msgid "You have to add at least one field." msgstr "U moet minimaal een veld toevoegen." -#: libraries/messages.inc.php:449 +#: libraries/messages.inc.php:445 #, php-format msgid "Invalid server index: \"%s\"" msgstr "Ongeldige serverindex: \"%s\"" -#: libraries/messages.inc.php:452 libraries/mysql_charsets.lib.php:259 +#: libraries/messages.inc.php:448 libraries/mysql_charsets.lib.php:259 #: libraries/mysql_charsets.lib.php:349 msgid "Japanese" msgstr "Japans" -#: libraries/messages.inc.php:453 main.php:331 +#: libraries/messages.inc.php:449 main.php:331 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: libraries/messages.inc.php:454 server_status.php:257 +#: libraries/messages.inc.php:450 server_status.php:257 msgid "Joins" msgstr "Joins" -#: libraries/messages.inc.php:457 server_privileges.php:763 +#: libraries/messages.inc.php:453 server_privileges.php:763 msgid "Do not change the password" msgstr "Wijzig het wachtwoord niet" -#: libraries/messages.inc.php:458 server_status.php:256 +#: libraries/messages.inc.php:454 server_status.php:256 msgid "Key cache" msgstr "Sleutelcache" -#: libraries/messages.inc.php:462 libraries/mysql_charsets.lib.php:268 +#: libraries/messages.inc.php:458 libraries/mysql_charsets.lib.php:268 #: libraries/mysql_charsets.lib.php:371 msgid "Korean" msgstr "Koreaans" -#: libraries/messages.inc.php:466 libraries/select_lang.lib.php:480 +#: libraries/messages.inc.php:462 libraries/select_lang.lib.php:480 #: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492 #, php-format msgid "Unknown language: %1$s." msgstr "Onbekende taal: %1$s." -#: libraries/messages.inc.php:468 +#: libraries/messages.inc.php:464 msgid "Table caption" msgstr "Tabeltitel" -#: libraries/messages.inc.php:469 +#: libraries/messages.inc.php:465 msgid "Content of table __TABLE__" msgstr "Content van tabel __TABLE__" -#: libraries/messages.inc.php:470 +#: libraries/messages.inc.php:466 msgid "Continued table caption" msgstr "Vervolgde tabeltitel" -#: libraries/messages.inc.php:471 +#: libraries/messages.inc.php:467 msgid "(continued)" msgstr "(vervolgd)" -#: libraries/messages.inc.php:472 +#: libraries/messages.inc.php:468 msgid "Include table caption" msgstr "Voeg tabeltitel toe" -#: libraries/messages.inc.php:473 +#: libraries/messages.inc.php:469 msgid "Label key" msgstr "Labelsleutel" -#: libraries/messages.inc.php:474 +#: libraries/messages.inc.php:470 msgid "LaTeX" msgstr "LaTeX" -#: libraries/messages.inc.php:475 +#: libraries/messages.inc.php:471 msgid "Structure of table __TABLE__" msgstr "Structuur van de tabel __TABLE__" -#: libraries/messages.inc.php:476 libraries/mysql_charsets.lib.php:262 +#: libraries/messages.inc.php:472 libraries/mysql_charsets.lib.php:262 msgid "Latvian" msgstr "Lets" -#: libraries/messages.inc.php:477 +#: libraries/messages.inc.php:473 msgid "CSV using LOAD DATA" msgstr "CSV met behulp van LOAD DATA" -#: libraries/messages.inc.php:478 +#: libraries/messages.inc.php:474 msgid "Use LOCAL keyword" msgstr "Gebruik het LOCAL sleutelwoord" -#: libraries/messages.inc.php:479 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:475 libraries/tbl_properties.inc.php:105 msgid "Length/Values" msgstr "Lengte/Waardes*" -#: libraries/messages.inc.php:480 tbl_select.php:295 +#: libraries/messages.inc.php:476 tbl_select.php:295 msgid "Number of rows per page" msgstr "records per pagina" -#: libraries/messages.inc.php:484 libraries/mysql_charsets.lib.php:265 +#: libraries/messages.inc.php:480 libraries/mysql_charsets.lib.php:265 msgid "Lithuanian" msgstr "Litouws" -#: libraries/messages.inc.php:485 libraries/replication_gui.lib.php:302 +#: libraries/messages.inc.php:481 libraries/replication_gui.lib.php:302 #: server_privileges.php:729 msgid "Local" msgstr "lokaal" -#: libraries/messages.inc.php:487 server_privileges.php:669 +#: libraries/messages.inc.php:483 server_privileges.php:669 msgid "Login Information" msgstr "Inloginformatie" -#: libraries/messages.inc.php:490 libraries/navigation_header.inc.php:67 +#: libraries/messages.inc.php:486 libraries/navigation_header.inc.php:67 #: libraries/navigation_header.inc.php:70 #: libraries/navigation_header.inc.php:71 main.php:99 msgid "Log out" msgstr "Uitloggen" -#: libraries/messages.inc.php:497 server_status.php:440 +#: libraries/messages.inc.php:493 server_status.php:440 msgid "max. concurrent connections" msgstr "Max. gelijktijdige verbindingen" -#: libraries/messages.inc.php:498 +#: libraries/messages.inc.php:494 msgid "Maximal length of created query" msgstr "Maximale lengte van de gemaakte query" -#: libraries/messages.inc.php:500 main.php:282 +#: libraries/messages.inc.php:496 main.php:282 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -4245,7 +4245,7 @@ msgstr "" "karakterset te gebruiken. Zonder de mbstring extensie kan phpMyAdmin strings " "niet correct splitsen, wat tot onverwachte resultaten kan leiden." -#: libraries/messages.inc.php:501 main.php:274 +#: libraries/messages.inc.php:497 main.php:274 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -4255,24 +4255,24 @@ msgstr "" "optie is incompatibel met phpMyAdmin en kan ervoor zorgen dat sommige data " "corrupt raakt!" -#: libraries/messages.inc.php:502 +#: libraries/messages.inc.php:498 msgid "MediaWiki Table" msgstr "MediaWiki tabel" -#: libraries/messages.inc.php:503 transformation_overview.php:25 +#: libraries/messages.inc.php:499 transformation_overview.php:25 msgid "Available MIME types" msgstr "Beschikbare MIME-types" -#: libraries/messages.inc.php:504 transformation_overview.php:43 +#: libraries/messages.inc.php:500 transformation_overview.php:43 msgid "Available transformations" msgstr "Beschikbare transformaties" -#: libraries/messages.inc.php:505 +#: libraries/messages.inc.php:501 msgctxt "$strMIME_description" msgid "Description" msgstr "Beschrijving" -#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:580 +#: libraries/messages.inc.php:503 libraries/tbl_properties.inc.php:580 #: transformation_overview.php:60 #, php-format msgid "" @@ -4282,7 +4282,7 @@ msgstr "" "Geen beschrijving beschikbaar voor deze transformatie.
Raadpleeg de " "maker over wat %s doet." -#: libraries/messages.inc.php:509 libraries/tbl_properties.inc.php:137 +#: libraries/messages.inc.php:505 libraries/tbl_properties.inc.php:137 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -4291,7 +4291,7 @@ msgstr "" "Voor een lijst met beschikbare transformatie opties en MIME-type " "transformaties, klik op %sTransformatie opties%s" -#: libraries/messages.inc.php:510 libraries/tbl_properties.inc.php:146 +#: libraries/messages.inc.php:506 libraries/tbl_properties.inc.php:146 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -4303,58 +4303,58 @@ msgstr "" "(\"'\") moet invoegen in deze waardes, plaats er dan een backslash voor " "(bijvoorbeeld '\\\\xyz' of 'a\\'b')." -#: libraries/messages.inc.php:511 libraries/tbl_properties.inc.php:145 +#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:145 msgid "Transformation options" msgstr "Transformatieopties" -#: libraries/messages.inc.php:513 transformation_overview.php:38 +#: libraries/messages.inc.php:509 transformation_overview.php:38 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "" "MIME-types die in schuingedrukt staan hebben geen aparte " "transformatiefuncties" -#: libraries/messages.inc.php:515 tbl_indexes.php:162 +#: libraries/messages.inc.php:511 tbl_indexes.php:162 msgid "Modify an index" msgstr "Wijzig een index" -#: libraries/messages.inc.php:517 pmd_general.php:108 +#: libraries/messages.inc.php:513 pmd_general.php:108 msgid "Move Menu" msgstr "Verplaats Menu" -#: libraries/messages.inc.php:518 tbl_operations.php:276 +#: libraries/messages.inc.php:514 tbl_operations.php:276 msgid "Move table to (database.table):" msgstr "Verplaats tabel naar (database.tabel):" -#: libraries/messages.inc.php:519 tbl_move_copy.php:56 +#: libraries/messages.inc.php:515 tbl_move_copy.php:56 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabel %s is verplaatst naar %s." -#: libraries/messages.inc.php:520 tbl_move_copy.php:46 +#: libraries/messages.inc.php:516 tbl_move_copy.php:46 msgid "Can't move table to same one!" msgstr "Kan de tabel niet naar dezelfde verplaatsen!" -#: libraries/messages.inc.php:521 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:517 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 #: libraries/mysql_charsets.lib.php:332 libraries/mysql_charsets.lib.php:354 #: libraries/mysql_charsets.lib.php:365 msgid "multilingual" msgstr "meertalig" -#: libraries/messages.inc.php:534 main.php:193 +#: libraries/messages.inc.php:530 main.php:193 msgid "MySQL charset" msgstr "MySQL Karakterset" -#: libraries/messages.inc.php:535 main.php:211 +#: libraries/messages.inc.php:531 main.php:211 msgid "MySQL client version" msgstr "MySQL-client versie" -#: libraries/messages.inc.php:536 main.php:125 +#: libraries/messages.inc.php:532 main.php:125 msgid "MySQL connection collation" msgstr "MySQL verbindingscollatie" -#: libraries/messages.inc.php:537 main.php:346 +#: libraries/messages.inc.php:533 main.php:346 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -4363,54 +4363,54 @@ msgstr "" "Uw PHP MySQL bibliotheek versie %s verschilt van uw MySQL-server versie %s. " "Dit kan onvoorspelbaar gedrag veroorzaken." -#: libraries/messages.inc.php:539 server_status.php:294 +#: libraries/messages.inc.php:535 server_status.php:294 msgid "Show processes" msgstr "Laat processen zien" -#: libraries/messages.inc.php:545 navigation.php:210 server_databases.php:371 +#: libraries/messages.inc.php:541 navigation.php:210 server_databases.php:371 #: server_synchronize.php:1191 msgid "No databases" msgstr "Geen databases" -#: libraries/messages.inc.php:546 server_databases.php:52 +#: libraries/messages.inc.php:542 server_databases.php:52 msgid "No databases selected." msgstr "Er zijn geen databases geselecteerd." -#: libraries/messages.inc.php:548 libraries/relation.lib.php:1173 +#: libraries/messages.inc.php:544 libraries/relation.lib.php:1173 msgid "no description" msgstr "Geen beschrijving aanwezig" -#: libraries/messages.inc.php:552 libraries/zip_extension.lib.php:26 +#: libraries/messages.inc.php:548 libraries/zip_extension.lib.php:26 msgid "No files found inside ZIP archive!" msgstr "Geen bestanden gevonden in ZIP archief!" -#: libraries/messages.inc.php:555 tbl_indexes.php:91 +#: libraries/messages.inc.php:551 tbl_indexes.php:91 msgid "No index parts defined!" msgstr "Geen index-delen gedefinieerd!" -#: libraries/messages.inc.php:556 libraries/mult_submits.inc.php:435 +#: libraries/messages.inc.php:552 libraries/mult_submits.inc.php:435 #: tbl_replace.php:331 msgid "No change" msgstr "Geen verandering" -#: libraries/messages.inc.php:557 +#: libraries/messages.inc.php:553 msgctxt "$strNoneDefault" msgid "None" msgstr "Geen" -#: libraries/messages.inc.php:560 libraries/plugin_interface.lib.php:312 +#: libraries/messages.inc.php:556 libraries/plugin_interface.lib.php:312 msgid "This format has no options" msgstr "Dit format heeft geen opties" -#: libraries/messages.inc.php:565 user_password.php:54 +#: libraries/messages.inc.php:561 user_password.php:54 msgid "You don't have sufficient privileges to be here right now!" msgstr "U heeft niet genoeg rechten om hier te zijn!" -#: libraries/messages.inc.php:566 tbl_row_action.php:29 +#: libraries/messages.inc.php:562 tbl_row_action.php:29 msgid "No rows selected" msgstr "Geen rijen geselecteerd" -#: libraries/messages.inc.php:569 themes.php:32 +#: libraries/messages.inc.php:565 themes.php:32 #, php-format msgid "" "No themes support; please check your configuration and/or your themes in " @@ -4419,297 +4419,297 @@ msgstr "" "Geen ondersteuning voor thema's, controleer uw configuratie en/of de thema's " "in de directory %s." -#: libraries/messages.inc.php:571 libraries/relation.lib.php:95 +#: libraries/messages.inc.php:567 libraries/relation.lib.php:95 msgid "not OK" msgstr "Niet Goed" -#: libraries/messages.inc.php:572 server_synchronize.php:400 +#: libraries/messages.inc.php:568 server_synchronize.php:400 #: server_synchronize.php:839 msgid "not present" msgstr "niet aanwezig" -#: libraries/messages.inc.php:573 pdf_pages.php:36 pdf_pages.php:42 +#: libraries/messages.inc.php:569 pdf_pages.php:36 pdf_pages.php:42 #: pdf_pages.php:48 pdf_pages.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "%s tabel niet gevonden of niet ingesteld in %s" -#: libraries/messages.inc.php:574 server_privileges.php:804 +#: libraries/messages.inc.php:570 server_privileges.php:804 #: server_privileges.php:2166 msgid "No user(s) found." msgstr "Geen gebruiker(s) gevonden." -#: libraries/messages.inc.php:578 pmd_general.php:164 +#: libraries/messages.inc.php:574 pmd_general.php:164 msgid "Number of tables" msgstr "Aantal tabellen" -#: libraries/messages.inc.php:581 server_databases.php:117 +#: libraries/messages.inc.php:577 server_databases.php:117 #: server_status.php:260 setup/lib/messages.inc.php:117 msgid "Tables" msgstr "Tabellen" -#: libraries/messages.inc.php:583 libraries/relation.lib.php:99 +#: libraries/messages.inc.php:579 libraries/relation.lib.php:99 #: pmd_general.php:340 msgid "OK" msgstr "Correct" -#: libraries/messages.inc.php:585 +#: libraries/messages.inc.php:581 msgid "Open Document Text" msgstr "Open Document Tekst" -#: libraries/messages.inc.php:588 tbl_select.php:138 +#: libraries/messages.inc.php:584 tbl_select.php:138 msgid "Operator" msgstr "Operator" -#: libraries/messages.inc.php:589 tbl_operations.php:662 +#: libraries/messages.inc.php:585 tbl_operations.php:662 msgid "Optimize" msgstr "Optimaliseer" -#: libraries/messages.inc.php:602 libraries/tbl_properties.inc.php:755 +#: libraries/messages.inc.php:598 libraries/tbl_properties.inc.php:755 msgid "PARTITION definition" msgstr "PARTITION definitie" -#: libraries/messages.inc.php:603 tbl_structure.php:757 +#: libraries/messages.inc.php:599 tbl_structure.php:757 msgid "partitioned" msgstr "gepartitioneerd" -#: libraries/messages.inc.php:604 tbl_operations.php:649 +#: libraries/messages.inc.php:600 tbl_operations.php:649 msgid "Partition maintenance" msgstr "Partitie onderhoud" -#: libraries/messages.inc.php:605 tbl_operations.php:657 +#: libraries/messages.inc.php:601 tbl_operations.php:657 #, php-format msgid "Partition %s" msgstr "Partitie %s" -#: libraries/messages.inc.php:606 server_privileges.php:1212 +#: libraries/messages.inc.php:602 server_privileges.php:1212 #, php-format msgid "The password for %s was changed successfully." msgstr "Het wachtwoord voor %s is succesvol veranderd." -#: libraries/messages.inc.php:635 +#: libraries/messages.inc.php:631 #, php-format msgid "Schema of the \"%s\" database - Page %s" msgstr "Schema van de \"%s\" database - Pagina %s" -#: libraries/messages.inc.php:636 +#: libraries/messages.inc.php:632 #, php-format msgid "The \"%s\" table doesn't exist!" msgstr "De tabel \"%s\" bestaat niet!" -#: libraries/messages.inc.php:637 pdf_schema.php:1013 +#: libraries/messages.inc.php:633 pdf_schema.php:1013 msgid "No tables" msgstr "Geen Tabellen" -#: libraries/messages.inc.php:638 pmd_pdf.php:63 +#: libraries/messages.inc.php:634 pmd_pdf.php:63 #, fuzzy msgid "Page has been created" msgstr "Tabel %1$s is aangemaakt." -#: libraries/messages.inc.php:639 pmd_pdf.php:65 +#: libraries/messages.inc.php:635 pmd_pdf.php:65 msgid "Page creation failed" msgstr "" -#: libraries/messages.inc.php:640 +#: libraries/messages.inc.php:636 msgid "PDF" msgstr "PDF" -#: libraries/messages.inc.php:641 +#: libraries/messages.inc.php:637 msgid "(Generates a report containing the data of a single table)" msgstr "(Genereert een rapport met de gegevens van een enkele tabel)" -#: libraries/messages.inc.php:642 +#: libraries/messages.inc.php:638 msgid "Report title" msgstr "Report titel" -#: libraries/messages.inc.php:643 server_status.php:389 server_status.php:434 +#: libraries/messages.inc.php:639 server_status.php:389 server_status.php:434 #: server_status.php:497 server_status.php:555 msgid "per hour" msgstr "per uur" -#: libraries/messages.inc.php:644 server_status.php:498 +#: libraries/messages.inc.php:640 server_status.php:498 msgid "per minute" msgstr "per minuut" -#: libraries/messages.inc.php:645 server_status.php:499 +#: libraries/messages.inc.php:641 server_status.php:499 msgid "per second" msgstr "per seconde" -#: libraries/messages.inc.php:646 libraries/mysql_charsets.lib.php:271 +#: libraries/messages.inc.php:642 libraries/mysql_charsets.lib.php:271 msgid "Persian" msgstr "Perzisch" -#: libraries/messages.inc.php:647 libraries/mysql_charsets.lib.php:250 +#: libraries/messages.inc.php:643 libraries/mysql_charsets.lib.php:250 msgid "phone book" msgstr "Telefoonboek" -#: libraries/messages.inc.php:648 +#: libraries/messages.inc.php:644 msgid "PHP array" msgstr "PHP-array" -#: libraries/messages.inc.php:650 main.php:213 +#: libraries/messages.inc.php:646 main.php:213 msgid "PHP extension" msgstr "PHP uitbreiding" -#: libraries/messages.inc.php:654 libraries/relation.lib.php:163 +#: libraries/messages.inc.php:650 libraries/relation.lib.php:163 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/messages.inc.php:655 libraries/relation.lib.php:159 +#: libraries/messages.inc.php:651 libraries/relation.lib.php:159 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/messages.inc.php:656 libraries/relation.lib.php:161 +#: libraries/messages.inc.php:652 libraries/relation.lib.php:161 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" -#: libraries/messages.inc.php:657 libraries/relation.lib.php:162 +#: libraries/messages.inc.php:653 libraries/relation.lib.php:162 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/messages.inc.php:658 libraries/relation.lib.php:164 +#: libraries/messages.inc.php:654 libraries/relation.lib.php:164 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/messages.inc.php:661 libraries/mysql_charsets.lib.php:274 +#: libraries/messages.inc.php:657 libraries/mysql_charsets.lib.php:274 msgid "Polish" msgstr "Pools" -#: libraries/messages.inc.php:662 libraries/replication_gui.lib.php:67 +#: libraries/messages.inc.php:658 libraries/replication_gui.lib.php:67 #: server_synchronize.php:1163 msgid "Port" msgstr "Poort" -#: libraries/messages.inc.php:667 tbl_indexes.php:67 +#: libraries/messages.inc.php:663 tbl_indexes.php:67 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "De naam van de primaire sleutel moet PRIMARY zijn!" -#: libraries/messages.inc.php:668 tbl_indexes.php:184 +#: libraries/messages.inc.php:664 tbl_indexes.php:184 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" "(\"PRIMARY\" moet de naam van en alleen van een primaire " "sleutel zijn!)" -#: libraries/messages.inc.php:669 libraries/mult_submits.inc.php:76 +#: libraries/messages.inc.php:665 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:474 msgid "Primary" msgstr "Primaire sleutel" -#: libraries/messages.inc.php:673 server_privileges.php:227 +#: libraries/messages.inc.php:669 server_privileges.php:227 msgid "Includes all privileges except GRANT." msgstr "Bevat alle privileges behalve GRANT." -#: libraries/messages.inc.php:674 server_privileges.php:153 +#: libraries/messages.inc.php:670 server_privileges.php:153 #: server_privileges.php:476 msgid "Allows altering the structure of existing tables." msgstr "Maakt het mogelijk de structuur van bestaande tabellen aan te passen." -#: libraries/messages.inc.php:675 server_privileges.php:169 +#: libraries/messages.inc.php:671 server_privileges.php:169 #: server_privileges.php:482 msgid "Allows altering and dropping stored routines." msgstr "Maakt het mogelijk om stored routines te bewerken en te verwijderen." -#: libraries/messages.inc.php:676 server_privileges.php:145 +#: libraries/messages.inc.php:672 server_privileges.php:145 #: server_privileges.php:475 msgid "Allows creating new databases and tables." msgstr "Maakt het mogelijk om nieuwe databases en tabellen te maken." -#: libraries/messages.inc.php:677 server_privileges.php:168 +#: libraries/messages.inc.php:673 server_privileges.php:168 #: server_privileges.php:481 msgid "Allows creating stored routines." msgstr "Maakt het mogelijk om stored routines aan te maken." -#: libraries/messages.inc.php:678 server_privileges.php:475 +#: libraries/messages.inc.php:674 server_privileges.php:475 msgid "Allows creating new tables." msgstr "Maakt het mogelijk nieuwe tabellen te maken." -#: libraries/messages.inc.php:679 server_privileges.php:156 +#: libraries/messages.inc.php:675 server_privileges.php:156 #: server_privileges.php:479 msgid "Allows creating temporary tables." msgstr "Maakt het mogelijk om tijdelijke tabellen te maken." -#: libraries/messages.inc.php:680 server_privileges.php:170 +#: libraries/messages.inc.php:676 server_privileges.php:170 #: server_privileges.php:515 msgid "Allows creating, dropping and renaming user accounts." msgstr "" "Maakt het mogelijk om gebruikersaccounts te maken, hernoemen en verwijderen." -#: libraries/messages.inc.php:681 server_privileges.php:160 +#: libraries/messages.inc.php:677 server_privileges.php:160 #: server_privileges.php:164 server_privileges.php:487 #: server_privileges.php:491 msgid "Allows creating new views." msgstr "Maakt het mogelijk om nieuwe views te maken." -#: libraries/messages.inc.php:682 server_privileges.php:144 +#: libraries/messages.inc.php:678 server_privileges.php:144 #: server_privileges.php:467 msgid "Allows deleting data." msgstr "Maakt het mogelijk om data te verwijderen." -#: libraries/messages.inc.php:683 server_privileges.php:146 +#: libraries/messages.inc.php:679 server_privileges.php:146 #: server_privileges.php:478 msgid "Allows dropping databases and tables." msgstr "Maakt het mogelijk om databases en tabellen te verwijderen." -#: libraries/messages.inc.php:684 server_privileges.php:478 +#: libraries/messages.inc.php:680 server_privileges.php:478 msgid "Allows dropping tables." msgstr "Maakt het mogelijk tabellen te verwijderen." -#: libraries/messages.inc.php:685 server_privileges.php:161 +#: libraries/messages.inc.php:681 server_privileges.php:161 #: server_privileges.php:495 msgid "Allows to set up events for the event scheduler" msgstr "Maakt het mogelijk om gebeurtenissen in de planner te zetten" -#: libraries/messages.inc.php:686 server_privileges.php:171 +#: libraries/messages.inc.php:682 server_privileges.php:171 #: server_privileges.php:483 msgid "Allows executing stored routines." msgstr "Maakt het mogelijk om stored routines uit te voeren." -#: libraries/messages.inc.php:687 server_privileges.php:150 +#: libraries/messages.inc.php:683 server_privileges.php:150 #: server_privileges.php:470 msgid "Allows importing data from and exporting data into files." msgstr "" "Maakt het mogelijk om data te importeren en te exporteren van en naar " "bestanden." -#: libraries/messages.inc.php:688 server_privileges.php:501 +#: libraries/messages.inc.php:684 server_privileges.php:501 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Maakt het mogelijk dat gebruikers en privileges toe te voegen zonder de " "privilegestabel opnieuw op te vragen." -#: libraries/messages.inc.php:689 server_privileges.php:152 +#: libraries/messages.inc.php:685 server_privileges.php:152 #: server_privileges.php:477 msgid "Allows creating and dropping indexes." msgstr "Maakt het mogelijk om indexen te creëren en te verwijderen." -#: libraries/messages.inc.php:690 server_privileges.php:142 +#: libraries/messages.inc.php:686 server_privileges.php:142 #: server_privileges.php:403 server_privileges.php:465 msgid "Allows inserting and replacing data." msgstr "Maakt het mogelijk om data in te voegen en te vervangen." -#: libraries/messages.inc.php:691 server_privileges.php:157 +#: libraries/messages.inc.php:687 server_privileges.php:157 #: server_privileges.php:510 msgid "Allows locking tables for the current thread." msgstr "Maakt het mogelijk tabellen op slot te zetten voor de huidige thread." -#: libraries/messages.inc.php:692 server_privileges.php:607 +#: libraries/messages.inc.php:688 server_privileges.php:607 #: server_privileges.php:609 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Limiteert het aantal nieuwe connecties die een gebruiker per uur mag openen." -#: libraries/messages.inc.php:693 server_privileges.php:595 +#: libraries/messages.inc.php:689 server_privileges.php:595 #: server_privileges.php:597 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Limiteert het aantal queries dat een gebruiker mag versturen per uur." -#: libraries/messages.inc.php:694 server_privileges.php:601 +#: libraries/messages.inc.php:690 server_privileges.php:601 #: server_privileges.php:603 msgid "" "Limits the number of commands that change any table or database the user may " @@ -4718,63 +4718,63 @@ msgstr "" "Limiteert het aantal commando's, welke een database of tabel veranderen, die " "een gebruiker per uur mag uitvoeren." -#: libraries/messages.inc.php:695 server_privileges.php:613 +#: libraries/messages.inc.php:691 server_privileges.php:613 #: server_privileges.php:615 msgid "Limits the number of simultaneous connections the user may have." msgstr "" "Limiteert het aantal gelijktijdige verbindingen dat de gebruiker open kan " "hebben." -#: libraries/messages.inc.php:696 server_privileges.php:149 +#: libraries/messages.inc.php:692 server_privileges.php:149 #: server_privileges.php:505 msgid "Allows viewing processes of all users" msgstr "Maakt het mogelijk om processen van alle gebruikers te zien" -#: libraries/messages.inc.php:697 server_privileges.php:151 +#: libraries/messages.inc.php:693 server_privileges.php:151 #: server_privileges.php:409 server_privileges.php:511 msgid "Has no effect in this MySQL version." msgstr "Heeft geen effect in deze MySQL versie." -#: libraries/messages.inc.php:698 server_privileges.php:147 +#: libraries/messages.inc.php:694 server_privileges.php:147 #: server_privileges.php:506 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Maakt het mogelijk om de serverinstellingen opnieuw op te vragen en de cache " "van de server leeg te maken." -#: libraries/messages.inc.php:699 server_privileges.php:159 +#: libraries/messages.inc.php:695 server_privileges.php:159 #: server_privileges.php:513 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Geeft het recht aan de gebruiker om te vragen waar de 'slaves' / 'masters' " "zijn." -#: libraries/messages.inc.php:700 server_privileges.php:158 +#: libraries/messages.inc.php:696 server_privileges.php:158 #: server_privileges.php:514 msgid "Needed for the replication slaves." msgstr "Nodig om 'slaves' te repliceren." -#: libraries/messages.inc.php:701 server_privileges.php:141 +#: libraries/messages.inc.php:697 server_privileges.php:141 #: server_privileges.php:400 server_privileges.php:464 msgid "Allows reading data." msgstr "Maakt het lezen van data mogelijk." -#: libraries/messages.inc.php:702 server_privileges.php:154 +#: libraries/messages.inc.php:698 server_privileges.php:154 #: server_privileges.php:508 msgid "Gives access to the complete list of databases." msgstr "Geeft toegang tot de complete lijst van databases." -#: libraries/messages.inc.php:703 server_privileges.php:165 +#: libraries/messages.inc.php:699 server_privileges.php:165 #: server_privileges.php:167 server_privileges.php:480 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Maakt het mogelijk om SHOW CREATE VIEW queries uit te voeren." -#: libraries/messages.inc.php:704 server_privileges.php:148 +#: libraries/messages.inc.php:700 server_privileges.php:148 #: server_privileges.php:507 msgid "Allows shutting down the server." msgstr "Maakt het mogelijk om de server te stoppen." -#: libraries/messages.inc.php:705 server_privileges.php:155 +#: libraries/messages.inc.php:701 server_privileges.php:155 #: server_privileges.php:504 msgid "" "Allows connecting, even if maximum number of connections is reached; " @@ -4786,55 +4786,55 @@ msgstr "" "opties zoals het instellen van globale variabelen of het stoppen van threads " "van andere gebruikers." -#: libraries/messages.inc.php:706 server_privileges.php:162 +#: libraries/messages.inc.php:702 server_privileges.php:162 #: server_privileges.php:496 msgid "Allows creating and dropping triggers" msgstr "Maakt het mogelijk om triggers maken en te verwijderen" -#: libraries/messages.inc.php:707 server_privileges.php:143 +#: libraries/messages.inc.php:703 server_privileges.php:143 #: server_privileges.php:406 server_privileges.php:466 msgid "Allows changing data." msgstr "Maakt het mogelijk data aan te passen." -#: libraries/messages.inc.php:708 server_privileges.php:221 +#: libraries/messages.inc.php:704 server_privileges.php:221 msgid "No privileges." msgstr "Geen privileges." -#: libraries/messages.inc.php:710 server_privileges.php:1296 +#: libraries/messages.inc.php:706 server_privileges.php:1296 msgid "The privileges were reloaded successfully." msgstr "De privileges zijn succesvol vernieuwd" -#: libraries/messages.inc.php:712 libraries/server_links.inc.php:80 +#: libraries/messages.inc.php:708 libraries/server_links.inc.php:80 msgid "Processes" msgstr "Processen" -#: libraries/messages.inc.php:714 main.php:187 +#: libraries/messages.inc.php:710 main.php:187 msgid "Protocol version" msgstr "Protocolversie" -#: libraries/messages.inc.php:715 +#: libraries/messages.inc.php:711 msgid "Put fields names in the first row" msgstr "Plaats veldnamen in de eerste rij" -#: libraries/messages.inc.php:720 server_synchronize.php:1003 +#: libraries/messages.inc.php:716 server_synchronize.php:1003 msgid "The following queries have been executed:" msgstr "De volgende queries zijn uitgevoerd:" -#: libraries/messages.inc.php:721 server_status.php:251 +#: libraries/messages.inc.php:717 server_status.php:251 msgid "Query cache" msgstr "Query cache" -#: libraries/messages.inc.php:722 libraries/navigation_header.inc.php:80 +#: libraries/messages.inc.php:718 libraries/navigation_header.inc.php:80 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 setup/lib/messages.inc.php:122 msgid "Query window" msgstr "Query-venster" -#: libraries/messages.inc.php:725 querywindow.php:109 querywindow.php:217 +#: libraries/messages.inc.php:721 querywindow.php:109 querywindow.php:217 msgid "SQL history" msgstr "SQL-geschiedenis" -#: libraries/messages.inc.php:726 server_status.php:490 +#: libraries/messages.inc.php:722 server_status.php:490 #, php-format msgid "" "Query statistics: Since its startup, %s queries have been sent to the " @@ -4843,140 +4843,140 @@ msgstr "" "Query-statistieken: Sinds het opstarten zijn er %s queries gestuurd " "naar de server." -#: libraries/messages.inc.php:728 server_status.php:554 +#: libraries/messages.inc.php:724 server_status.php:554 msgid "Query type" msgstr "Query-type" -#: libraries/messages.inc.php:729 libraries/sql_query_form.lib.php:381 +#: libraries/messages.inc.php:725 libraries/sql_query_form.lib.php:381 msgid "Do not overwrite this query from outside the window" msgstr "Overschrijf deze query niet vanuit een ander scherm" -#: libraries/messages.inc.php:732 tbl_operations.php:663 +#: libraries/messages.inc.php:728 tbl_operations.php:663 msgid "Rebuild" msgstr "Regenereer" -#: libraries/messages.inc.php:733 server_status.php:394 +#: libraries/messages.inc.php:729 server_status.php:394 msgid "Received" msgstr "Ontvangen" -#: libraries/messages.inc.php:734 pmd_pdf.php:89 +#: libraries/messages.inc.php:730 pmd_pdf.php:89 msgid "recommended" msgstr "aangeraden" -#: libraries/messages.inc.php:736 tbl_operations.php:702 +#: libraries/messages.inc.php:732 tbl_operations.php:702 msgid "Check referential integrity:" msgstr "Controleer referentiële integriteit" -#: libraries/messages.inc.php:740 pdf_schema.php:1032 pdf_schema.php:1141 +#: libraries/messages.inc.php:736 pdf_schema.php:1032 pdf_schema.php:1141 msgid "Relational schema" msgstr "Relationeel schema" -#: libraries/messages.inc.php:744 tbl_relation.php:399 +#: libraries/messages.inc.php:740 tbl_relation.php:399 msgid "Relations" msgstr "Relaties" -#: libraries/messages.inc.php:745 tbl_structure.php:507 tbl_structure.php:509 +#: libraries/messages.inc.php:741 tbl_structure.php:507 tbl_structure.php:509 msgid "Relation view" msgstr "Relatieoverzicht" -#: libraries/messages.inc.php:746 server_privileges.php:1246 +#: libraries/messages.inc.php:742 server_privileges.php:1246 msgid "Reloading the privileges" msgstr "Bezig de privileges te verversen" -#: libraries/messages.inc.php:747 navigation.php:66 navigation.php:67 +#: libraries/messages.inc.php:743 navigation.php:66 navigation.php:67 #: navigation.php:70 #, fuzzy msgid "Reload navigation frame" msgstr "Aanpassen navigatieframe" -#: libraries/messages.inc.php:748 pmd_general.php:80 +#: libraries/messages.inc.php:744 pmd_general.php:80 msgid "Reload" msgstr "Verversen" -#: libraries/messages.inc.php:749 libraries/server_synchronize.lib.php:1345 +#: libraries/messages.inc.php:745 libraries/server_synchronize.lib.php:1345 #: libraries/server_synchronize.lib.php:1371 msgid "Remote server" msgstr "Andere server" -#: libraries/messages.inc.php:750 +#: libraries/messages.inc.php:746 msgid "Remove CRLF characters within fields" msgstr "Verwijder CRLF tekens uit veld-waarden" -#: libraries/messages.inc.php:751 tbl_operations.php:676 +#: libraries/messages.inc.php:747 tbl_operations.php:676 msgid "Remove partitioning" msgstr "Verwijder partitionering" -#: libraries/messages.inc.php:752 server_privileges.php:1575 +#: libraries/messages.inc.php:748 server_privileges.php:1575 msgid "Remove selected users" msgstr "Verwijder de geselecteerde gebruikers" -#: libraries/messages.inc.php:755 tbl_operations.php:338 +#: libraries/messages.inc.php:751 tbl_operations.php:338 msgid "Rename table to" msgstr "Tabel hernoemen naar" -#: libraries/messages.inc.php:756 view_operations.php:93 +#: libraries/messages.inc.php:752 view_operations.php:93 #, fuzzy msgid "Rename view to" msgstr "Tabel hernoemen naar" -#: libraries/messages.inc.php:757 tbl_operations.php:664 +#: libraries/messages.inc.php:753 tbl_operations.php:664 msgid "Repair" msgstr "Repareer" -#: libraries/messages.inc.php:759 +#: libraries/messages.inc.php:755 msgid "Replace NULL by" msgstr "Vervang NULL door" -#: libraries/messages.inc.php:760 +#: libraries/messages.inc.php:756 msgid "Replace table data with file" msgstr "Vervang tabelgegevens door het bestand" -#: libraries/messages.inc.php:761 server_replication.php:228 +#: libraries/messages.inc.php:757 server_replication.php:228 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" "Voeg nu de onderstaande regels aan uw my.cnf toe en herstart uw MySQL-server." -#: libraries/messages.inc.php:762 libraries/replication_gui.lib.php:236 +#: libraries/messages.inc.php:758 libraries/replication_gui.lib.php:236 #: server_replication.php:194 msgid "Add slave replication user" msgstr "Voeg slave replicatie gebruiker toe" -#: libraries/messages.inc.php:763 server_replication.php:74 +#: libraries/messages.inc.php:759 server_replication.php:74 #, php-format msgid "Master server changed succesfully to %s" msgstr "Master server gewijzigd in %s" -#: libraries/messages.inc.php:764 server_replication.php:182 +#: libraries/messages.inc.php:760 server_replication.php:182 msgid "This server is configured as master in a replication process." msgstr "Deze server is ingesteld als master in een replicatie proces." -#: libraries/messages.inc.php:765 server_replication.php:322 +#: libraries/messages.inc.php:761 server_replication.php:322 msgid "Control slave:" msgstr "Beheer slave:" -#: libraries/messages.inc.php:766 server_replication.php:65 +#: libraries/messages.inc.php:762 server_replication.php:65 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" "Het lezen van de master-positie is mislukt. Mogelijk gaat het om een rechten " "probleem op de master." -#: libraries/messages.inc.php:767 server_replication.php:58 +#: libraries/messages.inc.php:763 server_replication.php:58 #, php-format msgid "Unable to connect to master %s." msgstr "Het verbinden met de master %s is mislukt." -#: libraries/messages.inc.php:768 server_replication.php:221 +#: libraries/messages.inc.php:764 server_replication.php:221 msgid "Replicate all databases; Ignore:" msgstr "Repliceer alle databases; Negeer:" -#: libraries/messages.inc.php:769 server_replication.php:222 +#: libraries/messages.inc.php:765 server_replication.php:222 msgid "Ignore all databases; Replicate:" msgstr "Negeer alle databases; Repliceer enkel:" -#: libraries/messages.inc.php:770 server_replication.php:218 +#: libraries/messages.inc.php:766 server_replication.php:218 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -4989,16 +4989,16 @@ msgstr "" "de meerderheid van uw databases wil repliceren) of u kiest ervoor om alleen " "enkele geselecteerde databases te repliceren." -#: libraries/messages.inc.php:771 server_replication.php:217 +#: libraries/messages.inc.php:767 server_replication.php:217 msgid "Master configuration" msgstr "Master instellingen" -#: libraries/messages.inc.php:772 server_replication.php:181 +#: libraries/messages.inc.php:768 server_replication.php:181 #: server_replication.php:209 msgid "Master replication" msgstr "Master replicatie" -#: libraries/messages.inc.php:774 server_replication.php:230 +#: libraries/messages.inc.php:770 server_replication.php:230 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " @@ -5008,11 +5008,11 @@ msgstr "" "server heeft herstart klikt u op Start. Hierna zou u de melding moeten " "krijgen dat de server is ingesteld als master." -#: libraries/messages.inc.php:775 server_replication.php:225 +#: libraries/messages.inc.php:771 server_replication.php:225 msgid "Please select databases:" msgstr "Selecteer uit de onderstaande databases:" -#: libraries/messages.inc.php:776 server_replication.php:210 +#: libraries/messages.inc.php:772 server_replication.php:210 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -5021,7 +5021,7 @@ msgstr "" "Deze server is niet ingesteld als master in een replicatie proces. Wilt u " "dit nu instellen?" -#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:188 +#: libraries/messages.inc.php:773 libraries/replication_gui.lib.php:188 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." @@ -5029,49 +5029,49 @@ msgstr "" "Enkel slaves gestart met de optie --report-host=host_name zijn zichtbaar in " "deze lijst." -#: libraries/messages.inc.php:778 server_replication.php:187 +#: libraries/messages.inc.php:774 server_replication.php:187 msgid "Show connected slaves" msgstr "Toon verbonden slaves" -#: libraries/messages.inc.php:779 libraries/messages.inc.php:885 +#: libraries/messages.inc.php:775 libraries/messages.inc.php:881 #: server_replication.php:184 server_status.php:281 msgid "Show master status" msgstr "Toon master status" -#: libraries/messages.inc.php:780 server_replication.php:334 +#: libraries/messages.inc.php:776 server_replication.php:334 msgid "Skipping error(s) might lead into unsynchronized master and slave!" msgstr "" "Het overslaan van error(s) kan leiden tot verschillen tussen de master en " "slave!" -#: libraries/messages.inc.php:781 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:51 #: server_replication.php:347 msgid "Change or reconfigure master server" msgstr "Wijzig master server" -#: libraries/messages.inc.php:782 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:778 libraries/replication_gui.lib.php:51 msgid "Slave configuration" msgstr "Slave instellingen" -#: libraries/messages.inc.php:783 server_replication.php:305 +#: libraries/messages.inc.php:779 server_replication.php:305 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "Server is ingesteld als slave in een replicatie proces." -#: libraries/messages.inc.php:784 server_replication.php:332 +#: libraries/messages.inc.php:780 server_replication.php:332 msgid "Error management:" msgstr "Fouten beheer:" -#: libraries/messages.inc.php:785 server_replication.php:328 +#: libraries/messages.inc.php:781 server_replication.php:328 #, php-format msgid "IO Thread %s only" msgstr "%s de IO Thread" -#: libraries/messages.inc.php:786 server_replication.php:296 +#: libraries/messages.inc.php:782 server_replication.php:296 msgid "Slave IO Thread not running!" msgstr "Slave IO Thread niet actief!" -#: libraries/messages.inc.php:787 server_replication.php:355 +#: libraries/messages.inc.php:783 server_replication.php:355 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -5080,40 +5080,40 @@ msgstr "" "Deze server is niet ingesteld als slave in een replicatie proces. Wilt u dit " "nu instellen?" -#: libraries/messages.inc.php:788 server_replication.php:326 +#: libraries/messages.inc.php:784 server_replication.php:326 msgid "Reset slave" msgstr "" -#: libraries/messages.inc.php:789 server_replication.php:308 +#: libraries/messages.inc.php:785 server_replication.php:308 msgid "See slave status table" msgstr "Slave status tabel" -#: libraries/messages.inc.php:790 server_replication.php:336 +#: libraries/messages.inc.php:786 server_replication.php:336 msgid "Skip current error" msgstr "Sla de huidige error over" -#: libraries/messages.inc.php:791 server_replication.php:340 +#: libraries/messages.inc.php:787 server_replication.php:340 msgid "errors." msgstr "errors over." -#: libraries/messages.inc.php:792 server_replication.php:337 +#: libraries/messages.inc.php:788 server_replication.php:337 msgid "Skip next" msgstr "Sla de volgende" -#: libraries/messages.inc.php:793 server_replication.php:248 +#: libraries/messages.inc.php:789 server_replication.php:248 msgid "Slave replication" msgstr "Slave replicatie" -#: libraries/messages.inc.php:794 server_replication.php:293 +#: libraries/messages.inc.php:790 server_replication.php:293 msgid "Slave SQL Thread not running!" msgstr "Slave SQL Thread niet actief!" -#: libraries/messages.inc.php:795 server_replication.php:327 +#: libraries/messages.inc.php:791 server_replication.php:327 #, php-format msgid "SQL Thread %s only" msgstr "%s de SQL Thread" -#: libraries/messages.inc.php:796 +#: libraries/messages.inc.php:792 #, php-format msgid "" "This MySQL server works as %s in replication process. For further " @@ -5124,160 +5124,160 @@ msgstr "" "voor meer informatie over replicatie in de replication status sectie." -#: libraries/messages.inc.php:797 +#: libraries/messages.inc.php:793 msgid "Master status" msgstr "Master status" -#: libraries/messages.inc.php:798 server_status.php:721 +#: libraries/messages.inc.php:794 server_status.php:721 msgid "Replication status" msgstr "Replicatie status" -#: libraries/messages.inc.php:799 +#: libraries/messages.inc.php:795 msgid "Slave status" msgstr "Slave status" -#: libraries/messages.inc.php:800 server_replication.php:311 +#: libraries/messages.inc.php:796 server_replication.php:311 msgid "Synchronize databases with master" msgstr "Synchronizeer databases met master" -#: libraries/messages.inc.php:801 server_replication.php:71 +#: libraries/messages.inc.php:797 server_replication.php:71 msgid "Unable to change master" msgstr "Wijzigen master mislukt" -#: libraries/messages.inc.php:802 server_replication.php:51 +#: libraries/messages.inc.php:798 server_replication.php:51 msgid "Unknown error" msgstr "Onbekende fout" -#: libraries/messages.inc.php:803 main.php:163 pdf_pages.php:344 +#: libraries/messages.inc.php:799 main.php:163 pdf_pages.php:344 #: setup/lib/FormDisplay.tpl.php:216 tbl_change.php:1175 msgid "Reset" msgstr "Herstel" -#: libraries/messages.inc.php:804 server_privileges.php:591 +#: libraries/messages.inc.php:800 server_privileges.php:591 msgid "Resource limits" msgstr "Resource-beperkingen" -#: libraries/messages.inc.php:805 tbl_change.php:1209 +#: libraries/messages.inc.php:801 tbl_change.php:1209 #, php-format msgid "Restart insertion with %s rows" msgstr "Herstart het invoegen met %s rijen" -#: libraries/messages.inc.php:807 server_privileges.php:1578 +#: libraries/messages.inc.php:803 server_privileges.php:1578 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." -#: libraries/messages.inc.php:808 server_privileges.php:1176 +#: libraries/messages.inc.php:804 server_privileges.php:1176 #, php-format msgid "You have revoked the privileges for %s" msgstr "U heeft de rechten ingetrokken voor %s" -#: libraries/messages.inc.php:809 server_privileges.php:1333 +#: libraries/messages.inc.php:805 server_privileges.php:1333 msgid "Revoke" msgstr "Ongedaan maken" -#: libraries/messages.inc.php:810 libraries/mysql_charsets.lib.php:280 +#: libraries/messages.inc.php:806 libraries/mysql_charsets.lib.php:280 msgid "Romanian" msgstr "Roemeens" -#: libraries/messages.inc.php:813 tbl_printview.php:404 tbl_structure.php:786 +#: libraries/messages.inc.php:809 tbl_printview.php:404 tbl_structure.php:786 msgid "Row length" msgstr "Lengte van de rij" -#: libraries/messages.inc.php:815 tbl_printview.php:414 tbl_structure.php:794 +#: libraries/messages.inc.php:811 tbl_printview.php:414 tbl_structure.php:794 msgid " Row size " msgstr " Grootte van de rij" -#: libraries/messages.inc.php:821 tbl_printview.php:366 tbl_structure.php:726 +#: libraries/messages.inc.php:817 tbl_printview.php:366 tbl_structure.php:726 msgid "Row Statistics" msgstr "Rij-statistiek" -#: libraries/messages.inc.php:822 +#: libraries/messages.inc.php:818 #, php-format msgid "running on %s" msgstr "wordt uitgevoerd op %s" -#: libraries/messages.inc.php:824 libraries/sql_query_form.lib.php:223 +#: libraries/messages.inc.php:820 libraries/sql_query_form.lib.php:223 #, php-format msgid "Run SQL query/queries on server %s" msgstr "Voer SQL query/queries uit op de server %s" -#: libraries/messages.inc.php:825 libraries/sql_query_form.lib.php:240 +#: libraries/messages.inc.php:821 libraries/sql_query_form.lib.php:240 #: libraries/sql_query_form.lib.php:265 #, php-format msgid "Run SQL query/queries on database %s" msgstr "Draai SQL query/queries op database %s" -#: libraries/messages.inc.php:826 libraries/mysql_charsets.lib.php:337 +#: libraries/messages.inc.php:822 libraries/mysql_charsets.lib.php:337 msgid "Russian" msgstr "Russisch" -#: libraries/messages.inc.php:829 pmd_general.php:68 +#: libraries/messages.inc.php:825 pmd_general.php:68 msgid "Save position" msgstr "Posities opslaan" -#: libraries/messages.inc.php:830 libraries/tbl_properties.inc.php:776 +#: libraries/messages.inc.php:826 libraries/tbl_properties.inc.php:776 #: pdf_pages.php:484 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:214 setup/lib/FormDisplay.tpl.php:215 #: tbl_change.php:1126 tbl_indexes.php:248 tbl_relation.php:566 msgid "Save" msgstr "Opslaan" -#: libraries/messages.inc.php:831 +#: libraries/messages.inc.php:827 msgid "The scale factor is too small to fit the schema on one page" msgstr "De schaalfactor is te klein om het schema op een pagina te zetten" -#: libraries/messages.inc.php:843 main.php:298 +#: libraries/messages.inc.php:839 main.php:298 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "Het configuratiebestand heeft nu een geheime wachtwoordzin nodig " "(blowfish_secret)." -#: libraries/messages.inc.php:844 navigation.php:353 navigation.php:516 +#: libraries/messages.inc.php:840 navigation.php:353 navigation.php:516 msgid "Please select a database" msgstr "Selecteer A.U.B. een database" -#: libraries/messages.inc.php:846 server_binlog.php:120 +#: libraries/messages.inc.php:842 server_binlog.php:120 msgid "Select binary log to view" msgstr "Selecteer de te bekijken binaire log" -#: libraries/messages.inc.php:847 tbl_select.php:270 +#: libraries/messages.inc.php:843 tbl_select.php:270 msgid "Select fields (at least one):" msgstr "Selecteer velden (tenminste 1):" -#: libraries/messages.inc.php:851 pdf_pages.php:320 +#: libraries/messages.inc.php:847 pdf_pages.php:320 msgid "Select Tables" msgstr "Selecteer tabellen" -#: libraries/messages.inc.php:853 server_status.php:404 +#: libraries/messages.inc.php:849 server_status.php:404 msgid "Sent" msgstr "Verzonden" -#: libraries/messages.inc.php:857 libraries/select_server.lib.php:45 +#: libraries/messages.inc.php:853 libraries/select_server.lib.php:45 #: setup/frames/index.inc.php:97 setup/lib/messages.inc.php:115 msgid "Servers" msgstr "Servers" -#: libraries/messages.inc.php:858 server_status.php:255 +#: libraries/messages.inc.php:854 server_status.php:255 msgid "Delayed inserts" msgstr "Vertraagde inserts" -#: libraries/messages.inc.php:859 server_status.php:46 +#: libraries/messages.inc.php:855 server_status.php:46 msgid "Runtime Information" msgstr "Runtime-informatie" -#: libraries/messages.inc.php:860 server_status.php:350 +#: libraries/messages.inc.php:856 server_status.php:350 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Deze MySQL-server draait inmiddels %s. Hij is gestart op %s." -#: libraries/messages.inc.php:861 libraries/server_links.inc.php:53 +#: libraries/messages.inc.php:857 libraries/server_links.inc.php:53 #: server_engines.php:112 server_engines.php:116 server_status.php:304 #: test/theme.php:105 msgid "Variables" msgstr "Variabelen" -#: libraries/messages.inc.php:862 server_status.php:383 +#: libraries/messages.inc.php:858 server_status.php:383 msgid "" "Server traffic: These tables show the network traffic statistics of " "this MySQL server since its startup." @@ -5285,11 +5285,11 @@ msgstr "" "Serververkeer: Netwerkverkeer van deze MySQL-server, sinds deze is " "gestart" -#: libraries/messages.inc.php:863 server_variables.php:35 +#: libraries/messages.inc.php:859 server_variables.php:35 msgid "Server variables and settings" msgstr "Servervariabelen en -instellingen" -#: libraries/messages.inc.php:865 main.php:290 +#: libraries/messages.inc.php:861 main.php:290 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -5301,7 +5301,7 @@ msgstr "" "ingestelde cookie geldigheid in phpMyAdmin. Hierdoor verloopt uw sessie " "eerder dan in phpMyAdmin is ingesteld." -#: libraries/messages.inc.php:866 +#: libraries/messages.inc.php:862 msgid "" "Cannot start session without errors, please check errors given in your PHP " "and/or webserver log file and configure your PHP installation properly." @@ -5309,11 +5309,11 @@ msgstr "" "De sessie kan niet foutloos worden gestart. Controleer op foutmeldingen in " "de PHP- en webserver-log, en herstel deze." -#: libraries/messages.inc.php:867 server_variables.php:55 +#: libraries/messages.inc.php:863 server_variables.php:55 msgid "Session value" msgstr "Sessievariabelen" -#: libraries/messages.inc.php:868 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:864 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 " @@ -5325,45 +5325,45 @@ msgstr "" "enkel aanhalingsteken (\"'\") bij deze waardes, plaats er dan een backslash " "voor (voorbeeld '\\\\xyz' of 'a\\'b')." -#: libraries/messages.inc.php:876 server_binlog.php:192 server_binlog.php:195 +#: libraries/messages.inc.php:872 server_binlog.php:192 server_binlog.php:195 #: server_processlist.php:49 server_processlist.php:51 msgid "Show Full Queries" msgstr "Toon volledige Queries" -#: libraries/messages.inc.php:878 pmd_general.php:64 +#: libraries/messages.inc.php:874 pmd_general.php:64 msgid "Show/Hide left menu" msgstr "Toon/Verberg linker menu" -#: libraries/messages.inc.php:880 sql.php:513 +#: libraries/messages.inc.php:876 sql.php:513 msgid "Showing as PHP code" msgstr "Getoond als PHP-code" -#: libraries/messages.inc.php:882 sql.php:516 tbl_replace.php:360 +#: libraries/messages.inc.php:878 sql.php:516 tbl_replace.php:360 msgid "Showing SQL query" msgstr "Toont SQL-query" -#: libraries/messages.inc.php:883 tbl_change.php:1132 +#: libraries/messages.inc.php:879 tbl_change.php:1132 #, fuzzy msgid "Show insert query" msgstr "Toont SQL-query" -#: libraries/messages.inc.php:886 server_status.php:273 +#: libraries/messages.inc.php:882 server_status.php:273 msgid "Show open tables" msgstr "Toon open tabellen" -#: libraries/messages.inc.php:887 main.php:219 +#: libraries/messages.inc.php:883 main.php:219 msgid "Show PHP information" msgstr "Laat informatie over PHP zien" -#: libraries/messages.inc.php:889 server_status.php:278 +#: libraries/messages.inc.php:885 server_status.php:278 msgid "Show slave hosts" msgstr "Toon slave hosts" -#: libraries/messages.inc.php:890 server_status.php:284 +#: libraries/messages.inc.php:886 server_status.php:284 msgid "Show slave status" msgstr "Toon slave status" -#: libraries/messages.inc.php:891 +#: libraries/messages.inc.php:887 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -5374,13 +5374,13 @@ msgstr "" "hebben gemaakt van een tijdelijkbestand om opdrachten uit de transactie op " "te slaan." -#: libraries/messages.inc.php:892 +#: libraries/messages.inc.php:888 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Het aantal transactie dat gebruik maakte van het tijdelijke binaire log " "cache." -#: libraries/messages.inc.php:893 +#: libraries/messages.inc.php:889 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -5393,11 +5393,11 @@ msgstr "" "waardoor meer tijdelijke tabellen in het geheugen blijven in plaats van op " "schijf." -#: libraries/messages.inc.php:894 +#: libraries/messages.inc.php:890 msgid "How many temporary files mysqld has created." msgstr "Het aantal tijdelijke bestanden dat door MySQL werd aangemaakt." -#: libraries/messages.inc.php:895 +#: libraries/messages.inc.php:891 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -5405,7 +5405,7 @@ msgstr "" "Het aantal in het geheugen geplaatste tijdelijke tabellen dat automatisch " "door de server werd aangemaakt tijdens het uitvoeren van opdrachten." -#: libraries/messages.inc.php:896 +#: libraries/messages.inc.php:892 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -5413,7 +5413,7 @@ msgstr "" "Het aantal met INSERT DELAYED opgeslagen rijen waarbij er een fout optrad " "(mogelijk een reeds bestaande sleutel)." -#: libraries/messages.inc.php:897 +#: libraries/messages.inc.php:893 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -5422,23 +5422,23 @@ msgstr "" "afzonderlijke tabel waarop INSERT DELAYED wordt toegepast krijgt een eigen " "thread." -#: libraries/messages.inc.php:898 +#: libraries/messages.inc.php:894 msgid "The number of INSERT DELAYED rows written." msgstr "Het aantal met INSERT DELAYED opgeslagen rijen." -#: libraries/messages.inc.php:899 +#: libraries/messages.inc.php:895 msgid "The number of executed FLUSH statements." msgstr "Het aantal uitgevoerde FLUSH opdrachten." -#: libraries/messages.inc.php:900 +#: libraries/messages.inc.php:896 msgid "The number of internal COMMIT statements." msgstr "Het aantal interne COMMIT opdrachten." -#: libraries/messages.inc.php:901 +#: libraries/messages.inc.php:897 msgid "The number of times a row was deleted from a table." msgstr "Het aantal keer dat een rij werd verwijderd uit een tabel." -#: libraries/messages.inc.php:902 +#: libraries/messages.inc.php:898 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -5448,7 +5448,7 @@ msgstr "" "met een bepaalde naam. Dit wordt discovery genoemd. Handler_discover geeft " "aan hoeveel tabellen met discovery werden opgezocht." -#: libraries/messages.inc.php:903 +#: libraries/messages.inc.php:899 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -5458,7 +5458,7 @@ msgstr "" "hoog geeft dit een indicatie dat de server veel scans doet op de volledige " "index; bijvoorbeeld SELECT kolom1 FROM foo, waarbij kolom een is geïndexeerd." -#: libraries/messages.inc.php:904 +#: libraries/messages.inc.php:900 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -5467,7 +5467,7 @@ msgstr "" "hoog is dit een indicatie dat er goed gebruik wordt gemaakt van de aanwezige " "indexen." -#: libraries/messages.inc.php:905 +#: libraries/messages.inc.php:901 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -5477,7 +5477,7 @@ msgstr "" "wordt verhoogd wanneer u een index kolom raadpleegt met een bereik beperking " "of bij het doen van een index scan." -#: libraries/messages.inc.php:906 +#: libraries/messages.inc.php:902 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -5485,7 +5485,7 @@ msgstr "" "Het aantal leesopdrachten voor de voorgaande rij in de sleutel volgorde. Dit " "wordt hoofdzakelijk gebruikt voor het optimaliseren van ORDER BY ... DESC." -#: libraries/messages.inc.php:907 +#: libraries/messages.inc.php:903 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -5498,7 +5498,7 @@ msgstr "" "gehele tabel moet scannen of er worden joins toegepast die niet goed " "gebruikmaken van sleutels." -#: libraries/messages.inc.php:908 +#: libraries/messages.inc.php:904 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -5511,35 +5511,35 @@ msgstr "" "zijn voorzien of dat de toegepaste queries hier niet optimaal gebruik van " "maken." -#: libraries/messages.inc.php:909 +#: libraries/messages.inc.php:905 msgid "The number of internal ROLLBACK statements." msgstr "Het aantal interne ROLLBACK opdrachten." -#: libraries/messages.inc.php:910 +#: libraries/messages.inc.php:906 msgid "The number of requests to update a row in a table." msgstr "Het aantal update opdrachten voor een tabel rij." -#: libraries/messages.inc.php:911 +#: libraries/messages.inc.php:907 msgid "The number of requests to insert a row in a table." msgstr "Het aantal opdrachten om een rij aan een tabel toe te voegen." -#: libraries/messages.inc.php:912 +#: libraries/messages.inc.php:908 msgid "The number of pages containing data (dirty or clean)." msgstr "Het aantal pages dat data bevat (dirty en clean)." -#: libraries/messages.inc.php:913 +#: libraries/messages.inc.php:909 msgid "The number of pages currently dirty." msgstr "Het aantal pages dat momenteel dirty is." -#: libraries/messages.inc.php:914 +#: libraries/messages.inc.php:910 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Het aantal buffer pool pages dat is geschoond." -#: libraries/messages.inc.php:915 +#: libraries/messages.inc.php:911 msgid "The number of free pages." msgstr "Het aantal vrije pages." -#: libraries/messages.inc.php:916 +#: libraries/messages.inc.php:912 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -5549,7 +5549,7 @@ msgstr "" "momenteel wordt gelezen of geschreven, of die om een andere reden niet " "geschoond of verwijderd kunnen worden." -#: libraries/messages.inc.php:917 +#: libraries/messages.inc.php:913 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -5561,11 +5561,11 @@ msgstr "" "Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data." -#: libraries/messages.inc.php:918 +#: libraries/messages.inc.php:914 msgid "Total size of buffer pool, in pages." msgstr "Totale formaat van de buffer pool, in pages." -#: libraries/messages.inc.php:919 +#: libraries/messages.inc.php:915 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -5574,7 +5574,7 @@ msgstr "" "gebeurd wanneer een query een groot deel van een tabel laat scannen, maar in " "willekeurige volgorde." -#: libraries/messages.inc.php:920 +#: libraries/messages.inc.php:916 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -5582,11 +5582,11 @@ msgstr "" "Het aantal sequentiele read-aheads dat door InnoDB werd geïnitieerd. Dit " "gebeurd wanneer er een volledige tabelscan wordt uitgevoerd." -#: libraries/messages.inc.php:921 +#: libraries/messages.inc.php:917 msgid "The number of logical read requests InnoDB has done." msgstr "Het aantal logische read requests dat door InnoDB werd uitgevoerd." -#: libraries/messages.inc.php:922 +#: libraries/messages.inc.php:918 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -5594,7 +5594,7 @@ msgstr "" "Het aantal logische lees operaties dat InnoDB niet kon doen vanuit de buffer " "pool maar waarvoor een extra page ingeladen moest worden." -#: libraries/messages.inc.php:923 +#: libraries/messages.inc.php:919 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -5608,86 +5608,86 @@ msgstr "" "geschoond. Deze teller houd bij hoe vaak dit voorkomt. Indien het buffer " "pool formaat goed is ingesteld hoort deze waarde laag te zijn." -#: libraries/messages.inc.php:924 +#: libraries/messages.inc.php:920 msgid "The number writes done to the InnoDB buffer pool." msgstr "Het aantal schrijf operaties uitgevoerd op de InnoDB buffer pool." -#: libraries/messages.inc.php:925 +#: libraries/messages.inc.php:921 msgid "The number of fsync() operations so far." msgstr "Het aantal fsync() operaties." -#: libraries/messages.inc.php:926 +#: libraries/messages.inc.php:922 msgid "The current number of pending fsync() operations." msgstr "Het aantal momenteel openstaande fsync() operaties." -#: libraries/messages.inc.php:927 +#: libraries/messages.inc.php:923 msgid "The current number of pending reads." msgstr "Het aantal momenteel openstaande lees operaties." -#: libraries/messages.inc.php:928 +#: libraries/messages.inc.php:924 msgid "The current number of pending writes." msgstr "Het aantal momenteel openstaande schrijf operaties." -#: libraries/messages.inc.php:929 +#: libraries/messages.inc.php:925 msgid "The amount of data read so far, in bytes." msgstr "De hoeveelheid gelezen data, in bytes." -#: libraries/messages.inc.php:930 +#: libraries/messages.inc.php:926 msgid "The total number of data reads." msgstr "Het totale aantal data lees operaties." -#: libraries/messages.inc.php:931 +#: libraries/messages.inc.php:927 msgid "The total number of data writes." msgstr "Het totale aantal data schrijf operaties." -#: libraries/messages.inc.php:932 +#: libraries/messages.inc.php:928 msgid "The amount of data written so far, in bytes." msgstr "De hoeveelheid geschreven data, in bytes." -#: libraries/messages.inc.php:933 +#: libraries/messages.inc.php:929 msgid "The number of pages that have been written for doublewrite operations." msgstr "Het aantal pages dat werd geschreven voor doublewrite operaties" -#: libraries/messages.inc.php:934 +#: libraries/messages.inc.php:930 msgid "The number of doublewrite operations that have been performed." msgstr "Het aantal uitgevoerde doublewrite operaties" -#: libraries/messages.inc.php:935 +#: libraries/messages.inc.php:931 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" "Het aantal keer dat er gewacht moest worden vanwege een volle log buffer." -#: libraries/messages.inc.php:936 +#: libraries/messages.inc.php:932 msgid "The number of log write requests." msgstr "Het aantal log schrijf opdrachten." -#: libraries/messages.inc.php:937 +#: libraries/messages.inc.php:933 msgid "The number of physical writes to the log file." msgstr "Het aantal fysieke schrijf operaties op het log bestand." -#: libraries/messages.inc.php:938 +#: libraries/messages.inc.php:934 msgid "The number of fsync() writes done to the log file." msgstr "Het aantal fsync() schrijf operaties uitgevoerd op het log bestand." -#: libraries/messages.inc.php:939 +#: libraries/messages.inc.php:935 msgid "The number of pending log file fsyncs." msgstr "Het aantal momenteel openstaande fsync() operaties op het logbestand." -#: libraries/messages.inc.php:940 +#: libraries/messages.inc.php:936 msgid "Pending log file writes." msgstr "Het aantal momenteel openstaande schrijf operaties op het logbestand." -#: libraries/messages.inc.php:941 +#: libraries/messages.inc.php:937 msgid "The number of bytes written to the log file." msgstr "Het aantal bytes dat naar het logbestand werd geschreven." -#: libraries/messages.inc.php:942 +#: libraries/messages.inc.php:938 msgid "The number of pages created." msgstr "Het aantal pages dat werd aangemaakt." -#: libraries/messages.inc.php:943 +#: libraries/messages.inc.php:939 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -5696,54 +5696,54 @@ msgstr "" "Veel waarden worden geteld in pages. Een vaste page grootte maakt het " "eenvoudig deze te converteren naar bytes." -#: libraries/messages.inc.php:944 +#: libraries/messages.inc.php:940 msgid "The number of pages read." msgstr "Het aantal gelezen pages." -#: libraries/messages.inc.php:945 +#: libraries/messages.inc.php:941 msgid "The number of pages written." msgstr "Het aantal geschreven pages." -#: libraries/messages.inc.php:946 +#: libraries/messages.inc.php:942 msgid "The number of row locks currently being waited for." msgstr "Het aantal gelockte rijen waar momenteel op wordt gewacht." -#: libraries/messages.inc.php:947 +#: libraries/messages.inc.php:943 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" "De gemiddelde tijd nodig om een rij lock te verkrijgen, in milliseconden." -#: libraries/messages.inc.php:948 +#: libraries/messages.inc.php:944 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" "De totale tijd besteed aan het verkrijgen van rij locks, in milliseconden." -#: libraries/messages.inc.php:949 +#: libraries/messages.inc.php:945 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" "De maximale tijd nodig om een rij lock te verkrijgen, in milliseconden." -#: libraries/messages.inc.php:950 +#: libraries/messages.inc.php:946 msgid "The number of times a row lock had to be waited for." msgstr "Het aantal keer dat er op een rij lock moest worden gewacht." -#: libraries/messages.inc.php:951 +#: libraries/messages.inc.php:947 msgid "The number of rows deleted from InnoDB tables." msgstr "Het aantal rijen dat werd verwijderd uit InnoDB tabellen." -#: libraries/messages.inc.php:952 +#: libraries/messages.inc.php:948 msgid "The number of rows inserted in InnoDB tables." msgstr "Het aantal rijen dat werd ingevoegd in InnoDB tabellen." -#: libraries/messages.inc.php:953 +#: libraries/messages.inc.php:949 msgid "The number of rows read from InnoDB tables." msgstr "Het aantal rijen dat werd gelezen uit InnoDB tabellen." -#: libraries/messages.inc.php:954 +#: libraries/messages.inc.php:950 msgid "The number of rows updated in InnoDB tables." msgstr "Het aantal rijen dat werd bijgewerkt in InnoDB tabellen." -#: libraries/messages.inc.php:955 +#: libraries/messages.inc.php:951 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -5752,13 +5752,13 @@ msgstr "" "niet naar disk zijn geschreven. Dit stond voorheen bekend als " "Not_flushed_key_blocks." -#: libraries/messages.inc.php:956 +#: libraries/messages.inc.php:952 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "Het aantal ongebruikte blokken in het sleutelcache." -#: libraries/messages.inc.php:957 +#: libraries/messages.inc.php:953 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -5767,11 +5767,11 @@ msgstr "" "Het aantal gebruikte blokken in het sleutelcache. Dit is de maximaal " "behaalde waarde sinds het starten van de server." -#: libraries/messages.inc.php:958 +#: libraries/messages.inc.php:954 msgid "The number of requests to read a key block from the cache." msgstr "Het aantal leesopdrachten voor een sleutelblok uit het cache." -#: libraries/messages.inc.php:959 +#: libraries/messages.inc.php:955 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -5781,15 +5781,15 @@ msgstr "" "key_reads groot is, is de waarde van key_buffer_size mogelijk te laag. De " "cache miss rate kan worden berekend met Key_reads / Key_read_requests." -#: libraries/messages.inc.php:960 +#: libraries/messages.inc.php:956 msgid "The number of requests to write a key block to the cache." msgstr "Het aantal schrijf opdrachten voor een sleutelblok naar het cache." -#: libraries/messages.inc.php:961 +#: libraries/messages.inc.php:957 msgid "The number of physical writes of a key block to disk." msgstr "Het aantal fysieke schrijf opdrachten voor een sleutelblok naar disk." -#: libraries/messages.inc.php:962 +#: libraries/messages.inc.php:958 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -5800,13 +5800,13 @@ msgstr "" "verschillende query plans voor dezelfde query. De standaardwaarde 0 betekend " "dat er nog geen query is gecompiled." -#: libraries/messages.inc.php:963 +#: libraries/messages.inc.php:959 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" "Het aantal rijen dat klaar staan om te worden geschreven in INSERT DELAYED " "wachtrijen." -#: libraries/messages.inc.php:964 +#: libraries/messages.inc.php:960 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -5814,36 +5814,36 @@ msgstr "" "Het aantal tabellen dat werd geopend. Indien hoog, is mogelijk de table " "cache waarde te laag." -#: libraries/messages.inc.php:965 +#: libraries/messages.inc.php:961 msgid "The number of files that are open." msgstr "Het totaal aantal geopende bestanden." -#: libraries/messages.inc.php:966 +#: libraries/messages.inc.php:962 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Het aantal open streams (hoofdzakelijk gebruikt voor het schrijven van log)." -#: libraries/messages.inc.php:967 +#: libraries/messages.inc.php:963 msgid "The number of tables that are open." msgstr "Het totaal aantal open tabellen." -#: libraries/messages.inc.php:968 +#: libraries/messages.inc.php:964 msgid "The number of free memory blocks in query cache." msgstr "Het aantal vrije geheugen blokken in het query cache." -#: libraries/messages.inc.php:969 +#: libraries/messages.inc.php:965 msgid "The amount of free memory for query cache." msgstr "De hoeveelheid vrij geheugen voor het query cache." -#: libraries/messages.inc.php:970 +#: libraries/messages.inc.php:966 msgid "The number of cache hits." msgstr "Het aantal cache hits." -#: libraries/messages.inc.php:971 +#: libraries/messages.inc.php:967 msgid "The number of queries added to the cache." msgstr "Het aantal queries dat aan het cache werd toegevoegd." -#: libraries/messages.inc.php:972 +#: libraries/messages.inc.php:968 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -5856,7 +5856,7 @@ msgstr "" "recent gebruikt (least recently used, LRU) strategie om te bepalen welke " "queries worden verwijderd." -#: libraries/messages.inc.php:973 +#: libraries/messages.inc.php:969 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -5864,24 +5864,24 @@ msgstr "" "Het aantal niet gecachte queries (niet cachebaar, danwel niet gecached " "vanwege de query_cache_type instelling)." -#: libraries/messages.inc.php:974 +#: libraries/messages.inc.php:970 msgid "The number of queries registered in the cache." msgstr "Het aantal queries dat in het cache staat." -#: libraries/messages.inc.php:975 +#: libraries/messages.inc.php:971 msgid "The total number of blocks in the query cache." msgstr "Het totaal aantal blokken in het query cache." -#: libraries/messages.inc.php:976 +#: libraries/messages.inc.php:972 msgctxt "$strShowStatusReset" msgid "Reset" msgstr "Herstel" -#: libraries/messages.inc.php:977 +#: libraries/messages.inc.php:973 msgid "The status of failsafe replication (not yet implemented)." msgstr "De status van failsafe replicatie (nog niet geïmplementeerd)." -#: libraries/messages.inc.php:978 +#: libraries/messages.inc.php:974 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -5889,13 +5889,13 @@ msgstr "" "Het aantal joins dat geen gebruik maakt van een index. Indien dit geen 0 is, " "is het aan te raden om het gebruik van indexen te controleren." -#: libraries/messages.inc.php:979 +#: libraries/messages.inc.php:975 msgid "The number of joins that used a range search on a reference table." msgstr "" "Het aantal joins dat een bereik beperking toepassen op een gerefereerde " "tabel." -#: libraries/messages.inc.php:980 +#: libraries/messages.inc.php:976 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -5904,7 +5904,7 @@ msgstr "" "van een sleutel. Indien dit geen 0 is, is het aan te raden om het gebruik " "van indexen te controleren." -#: libraries/messages.inc.php:981 +#: libraries/messages.inc.php:977 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -5912,17 +5912,17 @@ msgstr "" "Het aantal joins dat een bereik beperking gebruikt op de eerste tabel. (Dit " "hoeft geen groot probleem te zijn, zelfs niet bij grote tabellen.)" -#: libraries/messages.inc.php:982 +#: libraries/messages.inc.php:978 msgid "The number of joins that did a full scan of the first table." msgstr "Het aantal joins dat een volledige scan van de eerste tabel uitvoerde." -#: libraries/messages.inc.php:983 +#: libraries/messages.inc.php:979 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "Het aantal momenteel openstaande tijdelijke tabellen voor de slave SQL " "threas." -#: libraries/messages.inc.php:984 +#: libraries/messages.inc.php:980 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -5930,13 +5930,13 @@ msgstr "" "Het totaal aantal transacties dat moest worden herhaald door de replicatie " "slave SQL thread, sinds het opstarten van de server." -#: libraries/messages.inc.php:985 +#: libraries/messages.inc.php:981 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Dit staat op 'ON' indien deze server als een replicatie slave verbonden is " "met een master server." -#: libraries/messages.inc.php:986 +#: libraries/messages.inc.php:982 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -5944,14 +5944,14 @@ msgstr "" "Het aantal threads waarvoor het opstarten langer dan slow_launch_time " "seconden duurde." -#: libraries/messages.inc.php:987 +#: libraries/messages.inc.php:983 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "Het aantal queries waarvan het uitvoeren langer dan long_query_time seconden " "duurde." -#: libraries/messages.inc.php:988 +#: libraries/messages.inc.php:984 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -5961,24 +5961,24 @@ msgstr "" "uitvoeren. Indien deze waarde hoog is, is het een optie om de systeem " "variabele sort_buffer_size te vergroten." -#: libraries/messages.inc.php:989 +#: libraries/messages.inc.php:985 msgid "The number of sorts that were done with ranges." msgstr "Het aantal sorteringen dat werd uitgevoerd met een bereikbeperking." -#: libraries/messages.inc.php:990 +#: libraries/messages.inc.php:986 msgid "The number of sorted rows." msgstr "Het aantal gesorteerde rijen." -#: libraries/messages.inc.php:991 +#: libraries/messages.inc.php:987 msgid "The number of sorts that were done by scanning the table." msgstr "" "Het aantal sorteringen dat werd uitgevoerd door het scannen van de tabel." -#: libraries/messages.inc.php:992 +#: libraries/messages.inc.php:988 msgid "The number of times that a table lock was acquired immediately." msgstr "Het aantal keer dat een tabel lock direct kon worden verkregen." -#: libraries/messages.inc.php:993 +#: libraries/messages.inc.php:989 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -5990,7 +5990,7 @@ msgstr "" "problemen, kunt u het beste eerst uw queries optimalizeren. Daarna kunt u " "nog kijken naar het splitsen van tabellen en het gebruik van replicatie." -#: libraries/messages.inc.php:994 +#: libraries/messages.inc.php:990 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -6000,11 +6000,11 @@ msgstr "" "berekend met Threads_created/Connections. Indien deze waarde rood staat " "aangegeven is het aan te raden om thread_cache_size te vergroten." -#: libraries/messages.inc.php:995 +#: libraries/messages.inc.php:991 msgid "The number of currently open connections." msgstr "Het aantal momenteel openstaande verbindingen." -#: libraries/messages.inc.php:996 +#: libraries/messages.inc.php:992 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -6016,28 +6016,28 @@ msgstr "" "verhogen. Dit geeft echter in de meeste gevallen, bij gebruik van een goede " "thead implementatie, geen noemenswaardige prestatie verbetering." -#: libraries/messages.inc.php:997 +#: libraries/messages.inc.php:993 msgid "The number of threads that are not sleeping." msgstr "Het aantal threads dat actief bezig is." -#: libraries/messages.inc.php:999 tbl_printview.php:75 +#: libraries/messages.inc.php:995 tbl_printview.php:75 msgid "Show tables" msgstr "Toon tabellen" -#: libraries/messages.inc.php:1000 libraries/sql_query_form.lib.php:396 +#: libraries/messages.inc.php:996 libraries/sql_query_form.lib.php:396 msgid " Show this query here again " msgstr " Laat deze query hier zien " -#: libraries/messages.inc.php:1001 libraries/mysql_charsets.lib.php:217 +#: libraries/messages.inc.php:997 libraries/mysql_charsets.lib.php:217 #: libraries/mysql_charsets.lib.php:342 msgid "Simplified Chinese" msgstr "Vereenvoudigd Chinese" -#: libraries/messages.inc.php:1002 tbl_operations.php:258 +#: libraries/messages.inc.php:998 tbl_operations.php:258 msgid "(singly)" msgstr "(apart)" -#: libraries/messages.inc.php:1005 libraries/replication_gui.lib.php:52 +#: libraries/messages.inc.php:1001 libraries/replication_gui.lib.php:52 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" @@ -6046,47 +6046,47 @@ msgstr "" "Zoniet voeg dan de onderstaande regels toe aan de [mysqld] sectie in " "bijvoorbeeld my.cnf." -#: libraries/messages.inc.php:1006 libraries/mysql_charsets.lib.php:283 +#: libraries/messages.inc.php:1002 libraries/mysql_charsets.lib.php:283 msgid "Slovak" msgstr "Slowaaks" -#: libraries/messages.inc.php:1007 libraries/mysql_charsets.lib.php:286 +#: libraries/messages.inc.php:1003 libraries/mysql_charsets.lib.php:286 msgid "Slovenian" msgstr "Sloveens" -#: libraries/messages.inc.php:1008 pmd_general.php:95 +#: libraries/messages.inc.php:1004 pmd_general.php:95 msgid "Small/Big All" msgstr "Alles In/uitklappen" -#: libraries/messages.inc.php:1009 pmd_general.php:91 +#: libraries/messages.inc.php:1005 pmd_general.php:91 msgid "Snap to grid" msgstr "Kleef aan raster" -#: libraries/messages.inc.php:1011 server_synchronize.php:1167 +#: libraries/messages.inc.php:1007 server_synchronize.php:1167 msgid "Socket" msgstr "Socket" -#: libraries/messages.inc.php:1013 server_status.php:259 +#: libraries/messages.inc.php:1009 server_status.php:259 msgid "Sorting" msgstr "Sortering" -#: libraries/messages.inc.php:1015 tbl_printview.php:310 tbl_structure.php:657 +#: libraries/messages.inc.php:1011 tbl_printview.php:310 tbl_structure.php:657 msgid "Space usage" msgstr "Ruimtegebruik" -#: libraries/messages.inc.php:1016 libraries/mysql_charsets.lib.php:289 +#: libraries/messages.inc.php:1012 libraries/mysql_charsets.lib.php:289 msgid "Spanish" msgstr "Spaans" -#: libraries/messages.inc.php:1019 +#: libraries/messages.inc.php:1015 msgid "Export type" msgstr "Export type" -#: libraries/messages.inc.php:1020 +#: libraries/messages.inc.php:1016 msgid "Export time in UTC" msgstr "" -#: libraries/messages.inc.php:1021 libraries/sqlparser.lib.php:173 +#: libraries/messages.inc.php:1017 libraries/sqlparser.lib.php:173 msgid "" "There is a chance that you may have found a bug in the SQL parser. Please " "examine your query closely, and check that the quotes are correct and not " @@ -6108,7 +6108,7 @@ msgstr "" "MySQL, probeer dan de SQL-query in te korten en een bug report met het " "stukje data te sturen van het CUT gedeelte hieronder:" -#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:137 +#: libraries/messages.inc.php:1018 libraries/sqlparser.lib.php:137 msgid "" "There seems to be an error in your SQL query. The MySQL server error output " "below, if there is any, may also help you in diagnosing the problem" @@ -6117,32 +6117,32 @@ msgstr "" "foutmelding hebben terug gegeven, probeer dan of u hiermee uw fout kunt " "oplossen." -#: libraries/messages.inc.php:1026 libraries/sqlparser.lib.php:495 +#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:495 msgid "Invalid Identifer" msgstr "Ongeldig herkenningsteken" -#: libraries/messages.inc.php:1027 libraries/sqlparser.lib.php:344 +#: libraries/messages.inc.php:1023 libraries/sqlparser.lib.php:344 msgid "Unclosed quote" msgstr "Quote niet afgesloten" -#: libraries/messages.inc.php:1028 libraries/sqlparser.lib.php:612 +#: libraries/messages.inc.php:1024 libraries/sqlparser.lib.php:612 msgid "Unknown Punctuation String" msgstr "Onbekende Punctuatie String" -#: libraries/messages.inc.php:1030 server_replication.php:327 +#: libraries/messages.inc.php:1026 server_replication.php:327 #: server_replication.php:328 msgid "Start" msgstr "Start" -#: libraries/messages.inc.php:1033 tbl_printview.php:369 tbl_structure.php:729 +#: libraries/messages.inc.php:1029 tbl_printview.php:369 tbl_structure.php:729 msgid "Statements" msgstr "Opdrachten" -#: libraries/messages.inc.php:1034 tbl_printview.php:380 tbl_structure.php:741 +#: libraries/messages.inc.php:1030 tbl_printview.php:380 tbl_structure.php:741 msgid "static" msgstr "statisch" -#: libraries/messages.inc.php:1035 server_status.php:388 +#: libraries/messages.inc.php:1031 server_status.php:388 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -6150,42 +6150,42 @@ msgstr "" "Op drukke servers kunnen de byte-tellers over hun maximum heengaan. Hierdoor " "kunnen de gerapporteerde statistieken afwijken." -#: libraries/messages.inc.php:1038 server_replication.php:327 +#: libraries/messages.inc.php:1034 server_replication.php:327 #: server_replication.php:328 msgid "Stop" msgstr "Stop" -#: libraries/messages.inc.php:1039 server_engines.php:49 +#: libraries/messages.inc.php:1035 server_engines.php:49 msgid "Storage Engines" msgstr "Opslag Engines" -#: libraries/messages.inc.php:1040 libraries/tbl_properties.inc.php:726 +#: libraries/messages.inc.php:1036 libraries/tbl_properties.inc.php:726 #: server_engines.php:58 tbl_operations.php:353 msgid "Storage Engine" msgstr "Opslag Engine" -#: libraries/messages.inc.php:1042 +#: libraries/messages.inc.php:1038 msgid "CSV for MS Excel" msgstr "CSV voor MS Excel data" -#: libraries/messages.inc.php:1044 tbl_structure.php:516 tbl_structure.php:518 +#: libraries/messages.inc.php:1040 tbl_structure.php:516 tbl_structure.php:518 msgid "Propose table structure" msgstr "Tabelstructuur voorstellen" -#: libraries/messages.inc.php:1045 server_synchronize.php:424 +#: libraries/messages.inc.php:1041 server_synchronize.php:424 #: server_synchronize.php:867 msgid "Structure Difference" msgstr "Structuur verschillen" -#: libraries/messages.inc.php:1049 server_synchronize.php:265 +#: libraries/messages.inc.php:1045 server_synchronize.php:265 msgid "Structure Synchronization" msgstr "Structuur synchronizatie" -#: libraries/messages.inc.php:1050 libraries/sql_query_form.lib.php:462 +#: libraries/messages.inc.php:1046 libraries/sql_query_form.lib.php:462 msgid "Submit" msgstr "Verzenden" -#: libraries/messages.inc.php:1052 main.php:358 +#: libraries/messages.inc.php:1048 main.php:358 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -6193,16 +6193,16 @@ msgid "" msgstr "" "De server gebruikt Suhosin. Zie de %sdocumentatie%s voor mogelijke problemen." -#: libraries/messages.inc.php:1054 libraries/mysql_charsets.lib.php:295 +#: libraries/messages.inc.php:1050 libraries/mysql_charsets.lib.php:295 #: libraries/mysql_charsets.lib.php:392 msgid "Swedish" msgstr "Zweeds" -#: libraries/messages.inc.php:1060 tbl_operations.php:556 +#: libraries/messages.inc.php:1056 tbl_operations.php:556 msgid "Switch to copied table" msgstr "Wissel naar de gekopieerde tabel" -#: libraries/messages.inc.php:1061 server_synchronize.php:1213 +#: libraries/messages.inc.php:1057 server_synchronize.php:1213 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -6210,145 +6210,145 @@ msgstr "" "De bestemmingsdatabase zal volledig worden gesynchroniseerd met de bron. De " "bron zal niet worden gewijzigd." -#: libraries/messages.inc.php:1062 server_synchronize.php:451 +#: libraries/messages.inc.php:1058 server_synchronize.php:451 #: server_synchronize.php:896 msgid "Synchronize Databases" msgstr "Synchronizeer databases" -#: libraries/messages.inc.php:1063 libraries/server_links.inc.php:92 +#: libraries/messages.inc.php:1059 libraries/server_links.inc.php:92 #: server_synchronize.php:1092 server_synchronize.php:1100 msgid "Synchronize" msgstr "Synchronizatie" -#: libraries/messages.inc.php:1065 server_synchronize.php:430 +#: libraries/messages.inc.php:1061 server_synchronize.php:430 #: server_synchronize.php:873 msgid "Add column(s)" msgstr "Kolom(men) toevoegen" -#: libraries/messages.inc.php:1066 tbl_create.php:62 +#: libraries/messages.inc.php:1062 tbl_create.php:62 #, php-format msgid "Table %s already exists!" msgstr "Tabel %s bestaat reeds!" -#: libraries/messages.inc.php:1067 server_synchronize.php:432 +#: libraries/messages.inc.php:1063 server_synchronize.php:432 #: server_synchronize.php:875 msgid "Alter column(s)" msgstr "Kolom(men) wijzigen" -#: libraries/messages.inc.php:1068 tbl_addfield.php:189 tbl_alter.php:103 +#: libraries/messages.inc.php:1064 tbl_addfield.php:189 tbl_alter.php:103 #: tbl_indexes.php:98 #, php-format msgid "Table %1$s has been altered successfully" msgstr "Tabel %1$s is bijgewerkt" -#: libraries/messages.inc.php:1069 server_synchronize.php:434 +#: libraries/messages.inc.php:1065 server_synchronize.php:434 #: server_synchronize.php:877 msgid "Apply index(s)" msgstr "Index(en) toepassen" -#: libraries/messages.inc.php:1071 server_synchronize.php:446 +#: libraries/messages.inc.php:1067 server_synchronize.php:446 #: server_synchronize.php:890 msgid "Would you like to delete all the previous rows from target tables?" msgstr "Verwijder alle huidige rij(en) uit de bestemmings tabellen" -#: libraries/messages.inc.php:1072 tbl_move_copy.php:82 +#: libraries/messages.inc.php:1068 tbl_move_copy.php:82 msgid "The table name is empty!" msgstr "De tabelnaam is leeg!" -#: libraries/messages.inc.php:1073 tbl_create.php:249 +#: libraries/messages.inc.php:1069 tbl_create.php:249 #, php-format msgid "Table %1$s has been created." msgstr "Tabel %1$s is aangemaakt." -#: libraries/messages.inc.php:1076 tbl_operations.php:628 +#: libraries/messages.inc.php:1072 tbl_operations.php:628 #, php-format msgid "Table %s has been flushed" msgstr "Tabel %s is geschoond" -#: libraries/messages.inc.php:1077 server_synchronize.php:436 +#: libraries/messages.inc.php:1073 server_synchronize.php:436 #: server_synchronize.php:879 msgid "Insert row(s)" msgstr "Rij(en) toevoegen" -#: libraries/messages.inc.php:1078 libraries/tbl_links.inc.php:107 +#: libraries/messages.inc.php:1074 libraries/tbl_links.inc.php:107 #: libraries/tbl_links.inc.php:140 libraries/tbl_links.inc.php:141 msgid "Table seems to be empty!" msgstr "Tabel lijkt leeg!" -#: libraries/messages.inc.php:1079 tbl_operations.php:568 +#: libraries/messages.inc.php:1075 tbl_operations.php:568 msgid "Table maintenance" msgstr "Tabelonderhoud" -#: libraries/messages.inc.php:1080 libraries/tbl_properties.inc.php:618 +#: libraries/messages.inc.php:1076 libraries/tbl_properties.inc.php:618 #: server_synchronize.php:428 server_synchronize.php:871 msgid "Table name" msgstr "Tabelnaam" -#: libraries/messages.inc.php:1081 pdf_schema.php:1116 +#: libraries/messages.inc.php:1077 pdf_schema.php:1116 msgid "Table of contents" msgstr "Inhoudsopgave" -#: libraries/messages.inc.php:1082 tbl_operations.php:334 +#: libraries/messages.inc.php:1078 tbl_operations.php:334 msgid "Table options" msgstr "Tabelopties" -#: libraries/messages.inc.php:1083 server_synchronize.php:431 +#: libraries/messages.inc.php:1079 server_synchronize.php:431 #: server_synchronize.php:874 msgid "Remove column(s)" msgstr "Kolom(men) verwijderen" -#: libraries/messages.inc.php:1084 server_synchronize.php:433 +#: libraries/messages.inc.php:1080 server_synchronize.php:433 #: server_synchronize.php:876 msgid "Remove index(s)" msgstr "Index(en) verwijderen" -#: libraries/messages.inc.php:1088 server_synchronize.php:435 +#: libraries/messages.inc.php:1084 server_synchronize.php:435 #: server_synchronize.php:878 msgid "Update row(s)" msgstr "Rij(en) bijwerken" -#: libraries/messages.inc.php:1090 server_synchronize.php:942 +#: libraries/messages.inc.php:1086 server_synchronize.php:942 msgid "Target database has been synchronized with source database" msgstr "De bestemmings database is gesynchronizeerd met de bron database" -#: libraries/messages.inc.php:1091 server_privileges.php:392 +#: libraries/messages.inc.php:1087 server_privileges.php:392 #: server_privileges.php:527 server_privileges.php:1679 #: server_privileges.php:1685 msgid "Table-specific privileges" msgstr "Tabel-specifieke privileges" -#: libraries/messages.inc.php:1092 server_status.php:254 +#: libraries/messages.inc.php:1088 server_status.php:254 msgid "Temporary data" msgstr "Tijdelijke data" -#: libraries/messages.inc.php:1093 tbl_change.php:728 +#: libraries/messages.inc.php:1089 tbl_change.php:728 msgid " Because of its length,
this field might not be editable " msgstr " Vanwege z'n lengte,
is dit veld misschien niet te wijzigen " -#: libraries/messages.inc.php:1094 +#: libraries/messages.inc.php:1090 msgid "Texy! text" msgstr "Texy! tekst" -#: libraries/messages.inc.php:1095 libraries/mysql_charsets.lib.php:298 +#: libraries/messages.inc.php:1091 libraries/mysql_charsets.lib.php:298 #: libraries/mysql_charsets.lib.php:395 msgid "Thai" msgstr "Thais" -#: libraries/messages.inc.php:1102 libraries/replication_gui.lib.php:308 +#: libraries/messages.inc.php:1098 libraries/replication_gui.lib.php:308 #: server_privileges.php:734 msgid "This Host" msgstr "Deze machine" -#: libraries/messages.inc.php:1103 server_status.php:252 +#: libraries/messages.inc.php:1099 server_status.php:252 msgid "Threads" msgstr "Threads" -#: libraries/messages.inc.php:1104 server_processlist.php:22 +#: libraries/messages.inc.php:1100 server_processlist.php:22 #, php-format msgid "Thread %s was successfully killed." msgstr "Thread %s is succesvol afgesloten." -#: libraries/messages.inc.php:1106 +#: libraries/messages.inc.php:1102 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -6357,160 +6357,160 @@ msgstr "" "dit dat phpMyAdmin dit niet af kan maken tenzij de tijdsrestricties van PHP " "worden versoepeld." -#: libraries/messages.inc.php:1109 pmd_pdf.php:94 +#: libraries/messages.inc.php:1105 pmd_pdf.php:94 msgid "to/from page" msgstr "Van/tot pagina" -#: libraries/messages.inc.php:1110 pdf_pages.php:343 +#: libraries/messages.inc.php:1106 pdf_pages.php:343 msgid "Toggle scratchboard" msgstr "Aan/uit voorbeeldkader" -#: libraries/messages.inc.php:1111 pmd_general.php:99 +#: libraries/messages.inc.php:1107 pmd_general.php:99 msgid "Toggle small/big" msgstr "Wissel klein/groot" -#: libraries/messages.inc.php:1112 pmd_help.php:27 +#: libraries/messages.inc.php:1108 pmd_help.php:27 msgid "To select relation, click :" msgstr "Klik om een relatie te selecteren:" -#: libraries/messages.inc.php:1115 libraries/tbl_links.inc.php:149 +#: libraries/messages.inc.php:1111 libraries/tbl_links.inc.php:149 #, php-format msgid "Tracking of %s.%s is activated." msgstr "Tracking is ingeschakeld voor %s.%s." -#: libraries/messages.inc.php:1116 tbl_tracking.php:655 +#: libraries/messages.inc.php:1112 tbl_tracking.php:655 msgid "Activate now" msgstr "Nu inschakelen" -#: libraries/messages.inc.php:1117 tbl_tracking.php:653 +#: libraries/messages.inc.php:1113 tbl_tracking.php:653 #, php-format msgid "Activate tracking for %s.%s" msgstr "Tracking inschakelen voor %s.%s" -#: libraries/messages.inc.php:1118 tbl_tracking.php:221 +#: libraries/messages.inc.php:1114 tbl_tracking.php:221 msgid "Comment out these two lines if you do not need them." msgstr "" "De onderstaande 2 regels kunt u in commentaar zetten indien ze niet nodig " "zijn." -#: libraries/messages.inc.php:1119 tbl_tracking.php:688 +#: libraries/messages.inc.php:1115 tbl_tracking.php:688 msgid "Create version" msgstr "Versie aanmaken" -#: libraries/messages.inc.php:1120 tbl_tracking.php:668 +#: libraries/messages.inc.php:1116 tbl_tracking.php:668 #, php-format msgid "Create version %s of %s.%s" msgstr "Versie %s van %s.%s aanmaken" -#: libraries/messages.inc.php:1122 tbl_tracking.php:412 +#: libraries/messages.inc.php:1118 tbl_tracking.php:412 msgid "Data definition statement" msgstr "Definitie-statement" -#: libraries/messages.inc.php:1123 tbl_tracking.php:463 +#: libraries/messages.inc.php:1119 tbl_tracking.php:463 msgid "Data manipulation statement" msgstr "Manipulatie-statement" -#: libraries/messages.inc.php:1124 tbl_tracking.php:410 tbl_tracking.php:461 +#: libraries/messages.inc.php:1120 tbl_tracking.php:410 tbl_tracking.php:461 msgid "Date" msgstr "Datum" -#: libraries/messages.inc.php:1125 tbl_tracking.php:642 +#: libraries/messages.inc.php:1121 tbl_tracking.php:642 msgid "Deactivate now" msgstr "Nu uitschakelen" -#: libraries/messages.inc.php:1126 tbl_tracking.php:640 +#: libraries/messages.inc.php:1122 tbl_tracking.php:640 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "Tracking uitschakelen voor %s.%s" -#: libraries/messages.inc.php:1127 tbl_tracking.php:521 +#: libraries/messages.inc.php:1123 tbl_tracking.php:521 #, php-format msgid "Export as %s" msgstr "Exporteren als %s" -#: libraries/messages.inc.php:1130 tbl_tracking.php:251 tbl_tracking.php:379 +#: libraries/messages.inc.php:1126 tbl_tracking.php:251 tbl_tracking.php:379 msgid "Close" msgstr "Sluiten" -#: libraries/messages.inc.php:1131 tbl_tracking.php:114 +#: libraries/messages.inc.php:1127 tbl_tracking.php:114 #, php-format msgid "Tracking report for table `%s`" msgstr "Tracking rapport voor tabel `%s`" -#: libraries/messages.inc.php:1133 tbl_tracking.php:397 tbl_tracking.php:504 +#: libraries/messages.inc.php:1129 tbl_tracking.php:397 tbl_tracking.php:504 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "Laat %s zien met datums van %s tot %s door gebruiker %s %s" -#: libraries/messages.inc.php:1134 tbl_tracking.php:561 +#: libraries/messages.inc.php:1130 tbl_tracking.php:561 msgid "Show versions" msgstr "Versies weergeven" -#: libraries/messages.inc.php:1135 tbl_tracking.php:507 +#: libraries/messages.inc.php:1131 tbl_tracking.php:507 msgid "SQL dump (file download)" msgstr "SQL-dump (naar bestand)" -#: libraries/messages.inc.php:1136 tbl_tracking.php:508 +#: libraries/messages.inc.php:1132 tbl_tracking.php:508 msgid "SQL dump" msgstr "SQL-dump" -#: libraries/messages.inc.php:1137 tbl_tracking.php:213 +#: libraries/messages.inc.php:1133 tbl_tracking.php:213 msgid "SQL statements executed." msgstr "SQL-statements uitgevoerd." -#: libraries/messages.inc.php:1138 +#: libraries/messages.inc.php:1134 msgid "This option will replace your table and contained data." msgstr "Deze optie vervangt de tabel en alle data van die tabel." -#: libraries/messages.inc.php:1139 tbl_tracking.php:509 +#: libraries/messages.inc.php:1135 tbl_tracking.php:509 msgid "SQL execution" msgstr "SQL-uitvoering" -#: libraries/messages.inc.php:1140 tbl_tracking.php:230 +#: libraries/messages.inc.php:1136 tbl_tracking.php:230 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "SQL-statements geëxporteerd. Kopiëer de dump of voer de dump uit." -#: libraries/messages.inc.php:1141 tbl_tracking.php:381 +#: libraries/messages.inc.php:1137 tbl_tracking.php:381 msgid "Tracking statements" msgstr "Tracking-statements" -#: libraries/messages.inc.php:1148 tbl_tracking.php:593 +#: libraries/messages.inc.php:1144 tbl_tracking.php:593 msgid "Version" msgstr "Versie" -#: libraries/messages.inc.php:1149 tbl_tracking.php:672 +#: libraries/messages.inc.php:1145 tbl_tracking.php:672 msgid "Track these data definition statements:" msgstr "Deze definitie-statements tracken:" -#: libraries/messages.inc.php:1150 tbl_tracking.php:680 +#: libraries/messages.inc.php:1146 tbl_tracking.php:680 msgid "Track these data manipulation statements:" msgstr "Deze manipulatie-statements tracken:" -#: libraries/messages.inc.php:1155 tbl_tracking.php:411 tbl_tracking.php:462 +#: libraries/messages.inc.php:1151 tbl_tracking.php:411 tbl_tracking.php:462 msgid "Username" msgstr "Gebruikersnaam" -#: libraries/messages.inc.php:1156 tbl_tracking.php:203 +#: libraries/messages.inc.php:1152 tbl_tracking.php:203 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "Tracking voor %s.%s , versie %s ingeschakeld." -#: libraries/messages.inc.php:1157 tbl_tracking.php:187 +#: libraries/messages.inc.php:1153 tbl_tracking.php:187 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "Versie %s aangemaakt, tracking voor %s.%s ingeschakeld." -#: libraries/messages.inc.php:1158 tbl_tracking.php:195 +#: libraries/messages.inc.php:1154 tbl_tracking.php:195 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "Tracking voor %s.%s , versie %s is uitgeschakeld." -#: libraries/messages.inc.php:1159 tbl_tracking.php:262 +#: libraries/messages.inc.php:1155 tbl_tracking.php:262 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Versie %s snapshot (SQL-code)" -#: libraries/messages.inc.php:1161 tbl_tracking.php:220 +#: libraries/messages.inc.php:1157 tbl_tracking.php:220 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -6518,24 +6518,24 @@ msgstr "" "U kunt de dump gebruiken door deze in een een tijdelijke database te " "importeren. Let er wel op dat u hier rechten voor nodig heeft." -#: libraries/messages.inc.php:1162 libraries/mysql_charsets.lib.php:219 +#: libraries/messages.inc.php:1158 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:362 msgid "Traditional Chinese" msgstr "Traditioneel Chinees" -#: libraries/messages.inc.php:1163 libraries/mysql_charsets.lib.php:292 +#: libraries/messages.inc.php:1159 libraries/mysql_charsets.lib.php:292 msgid "Traditional Spanish" msgstr "Traditioneel Spaans" -#: libraries/messages.inc.php:1164 server_status.php:388 +#: libraries/messages.inc.php:1160 server_status.php:388 msgid "Traffic" msgstr "Verkeer" -#: libraries/messages.inc.php:1165 server_status.php:261 +#: libraries/messages.inc.php:1161 server_status.php:261 msgid "Transaction coordinator" msgstr "Transactie coördinator" -#: libraries/messages.inc.php:1166 +#: libraries/messages.inc.php:1162 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 " @@ -6547,7 +6547,7 @@ msgstr "" "veldnaam van een rij van de tabel, welke de bestandsnaam bevat. Wanneer de " "tweede optie wordt gekozen is het vereist dat de eerste optie leeg is." -#: libraries/messages.inc.php:1167 +#: libraries/messages.inc.php:1163 msgid "" "Displays hexadecimal representation of data. Optional first parameter " "specifies how often space will be added (defaults to 2 nibbles)." @@ -6555,7 +6555,7 @@ msgstr "" "Toont hexadecimale weergave van gegevens. De optionele parameter geeft aan " "wanneer er een spatie moet worden opgenomen (standaard elke 2 nibbles)." -#: libraries/messages.inc.php:1168 +#: libraries/messages.inc.php:1164 msgid "" "Displays a clickable thumbnail. The options are the maximum width and height " "in pixels. The original aspect ratio is preserved." @@ -6563,15 +6563,15 @@ msgstr "" "Toont een klikbare miniatuurweergave; opties: maximale breedte en hoogte in " "pixels (behoudt de originele verhouding)" -#: libraries/messages.inc.php:1169 +#: libraries/messages.inc.php:1165 msgid "Displays a link to download this image." msgstr "Toont een link naar deze afbeelding (directe blob download, i.e.)." -#: libraries/messages.inc.php:1170 +#: libraries/messages.inc.php:1166 msgid "See image/jpeg: inline" msgstr "Zie image/jpeg: inline" -#: libraries/messages.inc.php:1171 +#: libraries/messages.inc.php:1167 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 " @@ -6591,7 +6591,7 @@ msgstr "" "code - voor \"local\" zie de documentatie van PHP's strftime() functie en " "voor \"utc\" de gmdate() function." -#: libraries/messages.inc.php:1172 +#: libraries/messages.inc.php:1168 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 " @@ -6616,7 +6616,7 @@ msgstr "" "toevoegen, zodat de gehele output getoond zal worden zonder te " "herstructureren (Standaard 1)" -#: libraries/messages.inc.php:1173 +#: libraries/messages.inc.php:1169 msgid "" "Displays the contents of the field as-is, without running it through " "htmlspecialchars(). That is, the field is assumed to contain valid HTML." @@ -6624,7 +6624,7 @@ msgstr "" "Preserveert het originele formaat van het veld. Er wordt geen Escaping " "toegepast." -#: libraries/messages.inc.php:1174 +#: libraries/messages.inc.php:1170 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 " @@ -6634,7 +6634,7 @@ msgstr "" "optie is een prefix als \"http://domein.com/\", de tweede optie is de " "breedte in pixels, de derde is de hoogte." -#: libraries/messages.inc.php:1175 +#: libraries/messages.inc.php:1171 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 " @@ -6643,11 +6643,11 @@ msgstr "" "Toont een link, het veld bevat de bestandsnaam. De eerste optie is een " "prefix als \"http://domein.com/\", de tweede optie is de titel voor de link." -#: libraries/messages.inc.php:1176 +#: libraries/messages.inc.php:1172 msgid "Formats text as SQL query with syntax highlighting." msgstr "Maakt de tekst op als een SQL-query met syntax markeringen." -#: libraries/messages.inc.php:1177 +#: libraries/messages.inc.php:1173 msgid "" "Displays a part of a string. The first option is the number of characters to " "skip from the beginning of the string (Default 0). The second option is the " @@ -6662,70 +6662,70 @@ msgstr "" "welke karakters worden toegevoegd aan de output wanneer een substring wordt " "teruggegeven (Standaard: ...) ." -#: libraries/messages.inc.php:1179 server_binlog.php:183 server_binlog.php:186 +#: libraries/messages.inc.php:1175 server_binlog.php:183 server_binlog.php:186 #: server_processlist.php:49 server_processlist.php:51 msgid "Truncate Shown Queries" msgstr "Getoonde queries afkappen" -#: libraries/messages.inc.php:1180 libraries/mysql_charsets.lib.php:301 +#: libraries/messages.inc.php:1176 libraries/mysql_charsets.lib.php:301 #: libraries/mysql_charsets.lib.php:389 msgid "Turkish" msgstr "Turks" -#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:304 +#: libraries/messages.inc.php:1179 libraries/mysql_charsets.lib.php:304 #: libraries/mysql_charsets.lib.php:386 msgid "Ukrainian" msgstr "Oekraïens" -#: libraries/messages.inc.php:1185 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:1181 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 msgid "Unicode" msgstr "Unicode" -#: libraries/messages.inc.php:1187 libraries/mysql_charsets.lib.php:398 +#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:398 #: libraries/mysql_charsets.lib.php:405 msgid "unknown" msgstr "onbekend" -#: libraries/messages.inc.php:1190 server_privileges.php:1152 +#: libraries/messages.inc.php:1186 server_privileges.php:1152 #, php-format msgid "You have updated the privileges for %s." msgstr "U heeft de rechten aangepast voor %s." -#: libraries/messages.inc.php:1191 user_password.php:112 +#: libraries/messages.inc.php:1187 user_password.php:112 msgid "The profile has been updated." msgstr "Het profiel is aangepast." -#: libraries/messages.inc.php:1193 libraries/relation.lib.php:138 +#: libraries/messages.inc.php:1189 libraries/relation.lib.php:138 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "Raadpleeg de Documentatie over hoe u uw Column_comments tabel bijwerkt." -#: libraries/messages.inc.php:1194 +#: libraries/messages.inc.php:1190 #, php-format msgid "You should upgrade to %s %s or later." msgstr "U moet opwaarderen (upgraden) naar %s %s of hoger." -#: libraries/messages.inc.php:1204 tbl_printview.php:314 tbl_structure.php:661 +#: libraries/messages.inc.php:1200 tbl_printview.php:314 tbl_structure.php:661 msgid "Usage" msgstr "Gebruik" -#: libraries/messages.inc.php:1205 +#: libraries/messages.inc.php:1201 msgid "Enclose table and field names with backquotes" msgstr "Gebruik backticks (`) bij tabellen- en veldnamen" -#: libraries/messages.inc.php:1206 libraries/replication_gui.lib.php:314 +#: libraries/messages.inc.php:1202 libraries/replication_gui.lib.php:314 #: server_privileges.php:740 msgid "Use Host Table" msgstr "Gebruik Host Tabel" -#: libraries/messages.inc.php:1207 server_privileges.php:848 +#: libraries/messages.inc.php:1203 server_privileges.php:848 #, php-format msgid "The user %s already exists!" msgstr "De gebruiker %s bestaat al!" -#: libraries/messages.inc.php:1209 libraries/replication_gui.lib.php:55 +#: libraries/messages.inc.php:1205 libraries/replication_gui.lib.php:55 #: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245 #: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255 #: server_privileges.php:672 server_privileges.php:675 @@ -6733,38 +6733,38 @@ msgstr "De gebruiker %s bestaat al!" msgid "User name" msgstr "Gebruikersnaam" -#: libraries/messages.inc.php:1210 server_privileges.php:1645 +#: libraries/messages.inc.php:1206 server_privileges.php:1645 msgid "The selected user was not found in the privilege table." msgstr "" "De geselecteerde gebruiker werd niet aangetroffen in de privileges tabel" -#: libraries/messages.inc.php:1211 server_privileges.php:1365 +#: libraries/messages.inc.php:1207 server_privileges.php:1365 msgid "User overview" msgstr "Gebruikers Overzicht" -#: libraries/messages.inc.php:1212 server_privileges.php:1261 +#: libraries/messages.inc.php:1208 server_privileges.php:1261 msgid "The selected users have been deleted successfully." msgstr "De geselecteerde gebruikers zijn met succes verwijderd." -#: libraries/messages.inc.php:1213 server_privileges.php:2026 +#: libraries/messages.inc.php:1209 server_privileges.php:2026 #, php-format msgid "Users having access to "%s"" msgstr "Gebruikers die toegang hebben tot "%s"" -#: libraries/messages.inc.php:1214 main.php:189 server_privileges.php:1350 +#: libraries/messages.inc.php:1210 main.php:189 server_privileges.php:1350 #: server_privileges.php:1497 server_privileges.php:1611 #: server_privileges.php:2029 server_processlist.php:54 msgid "User" msgstr "Gebruiker" -#: libraries/messages.inc.php:1215 tbl_change.php:1171 +#: libraries/messages.inc.php:1211 tbl_change.php:1171 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Gebruik de TAB-knop om van waarde naar waarde te navigeren of CTRL+pijltjes " "om vrijuit te navigeren" -#: libraries/messages.inc.php:1217 libraries/replication_gui.lib.php:251 +#: libraries/messages.inc.php:1213 libraries/replication_gui.lib.php:251 #: libraries/replication_gui.lib.php:319 libraries/replication_gui.lib.php:342 #: server_privileges.php:678 server_privileges.php:745 #: server_privileges.php:769 server_privileges.php:1889 @@ -6772,7 +6772,7 @@ msgstr "" msgid "Use text field" msgstr "Gebruik tekstveld" -#: libraries/messages.inc.php:1221 libraries/sqlvalidator.lib.php:68 +#: libraries/messages.inc.php:1217 libraries/sqlvalidator.lib.php:68 #, php-format msgid "" "The SQL validator could not be initialized. Please check if you have " @@ -6781,85 +6781,85 @@ msgstr "" "De SQL-validatie kon niet worden geïnitialiseerd. Controleer of u de nodige " "PHP-extensies heeft geïnstalleerd, zoals beschreven in de %sdocumentatie%s." -#: libraries/messages.inc.php:1222 libraries/replication_gui.lib.php:111 +#: libraries/messages.inc.php:1218 libraries/replication_gui.lib.php:111 #: server_status.php:627 tbl_change.php:324 tbl_printview.php:370 #: tbl_select.php:139 tbl_structure.php:730 msgid "Value" msgstr "Waarde" -#: libraries/messages.inc.php:1223 libraries/replication_gui.lib.php:110 +#: libraries/messages.inc.php:1219 libraries/replication_gui.lib.php:110 #: libraries/sql_query_form.lib.php:445 server_status.php:626 #: server_variables.php:52 msgid "Variable" msgstr "Variabelen" -#: libraries/messages.inc.php:1225 server_export.php:21 +#: libraries/messages.inc.php:1221 server_export.php:21 msgid "View dump (schema) of databases" msgstr "Bekijk dump (schema) van de databases" -#: libraries/messages.inc.php:1227 tbl_export.php:23 +#: libraries/messages.inc.php:1223 tbl_export.php:23 msgid "View dump (schema) of table" msgstr "Bekijk een dump (schema) van tabel" -#: libraries/messages.inc.php:1231 view_create.php:142 +#: libraries/messages.inc.php:1227 view_create.php:142 msgid "VIEW name" msgstr "VIEW-naam" -#: libraries/messages.inc.php:1237 main.php:205 +#: libraries/messages.inc.php:1233 main.php:205 msgid "Web server" msgstr "Web server" -#: libraries/messages.inc.php:1239 libraries/mysql_charsets.lib.php:277 +#: libraries/messages.inc.php:1235 libraries/mysql_charsets.lib.php:277 #: libraries/mysql_charsets.lib.php:325 msgid "West European" msgstr "West Europees" -#: libraries/messages.inc.php:1240 main.php:230 +#: libraries/messages.inc.php:1236 main.php:230 msgid "Wiki" msgstr "Wiki" -#: libraries/messages.inc.php:1241 server_privileges.php:2138 +#: libraries/messages.inc.php:1237 server_privileges.php:2138 msgid "wildcard" msgstr "jokerteken" -#: libraries/messages.inc.php:1248 +#: libraries/messages.inc.php:1244 msgid "Export contents" msgstr "Exporteer inhoud" -#: libraries/messages.inc.php:1249 +#: libraries/messages.inc.php:1245 msgid "Export functions" msgstr "Exporteer functies" -#: libraries/messages.inc.php:1250 +#: libraries/messages.inc.php:1246 msgid "Export procedures" msgstr "Exporteer procedures" -#: libraries/messages.inc.php:1251 +#: libraries/messages.inc.php:1247 msgid "Export Structure Schemas (recommended)" msgstr "Exporteer structuurschema's (recommended)" -#: libraries/messages.inc.php:1252 +#: libraries/messages.inc.php:1248 msgid "Export tables" msgstr "Exporteer tabellen" -#: libraries/messages.inc.php:1253 +#: libraries/messages.inc.php:1249 msgid "Export triggers" msgstr "Exporteer triggers" -#: libraries/messages.inc.php:1254 +#: libraries/messages.inc.php:1250 msgid "Export views" msgstr "Exporteer views" -#: libraries/messages.inc.php:1255 +#: libraries/messages.inc.php:1251 msgid "XML" msgstr "XML" -#: libraries/messages.inc.php:1259 server_privileges.php:592 +#: libraries/messages.inc.php:1255 server_privileges.php:592 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" "Opmerking: Het instellen van deze waarden op 0 (nul) verwijdert de limiet." -#: libraries/messages.inc.php:1260 +#: libraries/messages.inc.php:1256 msgid "\"zipped\"" msgstr "\"Gezipt\"" diff --git a/po/phpmyadmin.pot b/po/phpmyadmin.pot index 311c8cf57..7bc536db6 100644 --- a/po/phpmyadmin.pot +++ b/po/phpmyadmin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-05-13 11:25+0200\n" +"POT-Creation-Date: 2010-05-13 11:30+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -18,19 +18,19 @@ msgstr "" "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" #: browse_foreigners.php:38 browse_foreigners.php:59 -#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:870 +#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:866 #: server_privileges.php:1475 msgid "Show all" msgstr "" #: browse_foreigners.php:82 db_operations.php:648 -#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:394 -#: libraries/export/pdf.php:147 libraries/messages.inc.php:597 +#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394 +#: libraries/export/pdf.php:147 libraries/messages.inc.php:593 #: pdf_schema.php:283 pdf_schema.php:1123 pdf_schema.php:1139 msgid "Page number:" msgstr "" -#: browse_foreigners.php:132 libraries/messages.inc.php:1242 +#: browse_foreigners.php:132 libraries/messages.inc.php:1238 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -40,7 +40,7 @@ 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/db_links.inc.php:75 -#: libraries/messages.inc.php:841 libraries/tbl_links.inc.php:63 +#: libraries/messages.inc.php:837 libraries/tbl_links.inc.php:63 msgid "Search" msgstr "" @@ -49,12 +49,12 @@ msgstr "" #: db_search.php:362 db_structure.php:567 js/messages.php:48 #: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2267 +#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 #: 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 #: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614 -#: libraries/messages.inc.php:361 libraries/replication_gui.lib.php:73 +#: libraries/messages.inc.php:357 libraries/replication_gui.lib.php:73 #: libraries/replication_gui.lib.php:365 libraries/select_server.lib.php:104 #: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477 #: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782 @@ -74,33 +74,33 @@ msgid "Go" msgstr "" #: browse_foreigners.php:168 browse_foreigners.php:172 -#: libraries/Index.class.php:442 libraries/messages.inc.php:459 +#: libraries/Index.class.php:442 libraries/messages.inc.php:455 #: tbl_tracking.php:320 msgid "Keyname" msgstr "" #: browse_foreigners.php:169 browse_foreigners.php:171 -#: libraries/messages.inc.php:252 server_collations.php:55 +#: libraries/messages.inc.php:248 server_collations.php:55 #: server_collations.php:67 server_engines.php:59 server_status.php:628 msgid "Description" msgstr "" #: browse_foreigners.php:247 browse_foreigners.php:256 #: browse_foreigners.php:268 browse_foreigners.php:276 -#: libraries/messages.inc.php:1218 +#: libraries/messages.inc.php:1214 msgid "Use this value" msgstr "" -#: db_create.php:46 libraries/messages.inc.php:215 +#: db_create.php:46 libraries/messages.inc.php:211 #, possible-php-format msgid "Database %1$s has been created." msgstr "" -#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:232 +#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:228 msgid "Database comment: " msgstr "" -#: db_datadict.php:165 libraries/messages.inc.php:1070 +#: db_datadict.php:165 libraries/messages.inc.php:1066 #: libraries/tbl_properties.inc.php:724 pdf_schema.php:1236 #: tbl_operations.php:345 tbl_printview.php:130 msgid "Table comments" @@ -109,7 +109,7 @@ msgstr "" #: db_datadict.php:174 db_qbe.php:174 libraries/Index.class.php:446 #: libraries/export/htmlword.php:244 libraries/export/latex.php:360 #: libraries/export/odt.php:294 libraries/export/texytext.php:233 -#: libraries/messages.inc.php:317 libraries/tbl_properties.inc.php:99 +#: libraries/messages.inc.php:313 libraries/tbl_properties.inc.php:99 #: libraries/tbl_properties.inc.php:275 pdf_schema.php:1262 #: pdf_schema.php:1283 tbl_change.php:308 tbl_indexes.php:189 #: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135 @@ -121,7 +121,7 @@ msgstr "" #: libraries/db_events.inc.php:31 libraries/db_routines.inc.php:42 #: 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/messages.inc.php:1181 +#: libraries/export/texytext.php:234 libraries/messages.inc.php:1177 #: libraries/tbl_properties.inc.php:100 pdf_schema.php:1263 #: pdf_schema.php:1284 server_privileges.php:2031 tbl_change.php:287 #: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313 @@ -133,7 +133,7 @@ msgstr "" #: db_datadict.php:177 libraries/Index.class.php:449 #: libraries/export/htmlword.php:246 libraries/export/latex.php:360 #: libraries/export/odt.php:300 libraries/export/texytext.php:235 -#: libraries/messages.inc.php:576 libraries/tbl_properties.inc.php:109 +#: libraries/messages.inc.php:572 libraries/tbl_properties.inc.php:109 #: pdf_schema.php:1265 pdf_schema.php:1286 tbl_change.php:323 #: tbl_printview.php:145 tbl_structure.php:181 tbl_tracking.php:276 #: tbl_tracking.php:327 @@ -142,7 +142,7 @@ msgstr "" #: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 -#: libraries/export/texytext.php:236 libraries/messages.inc.php:238 +#: libraries/export/texytext.php:236 libraries/messages.inc.php:234 #: libraries/tbl_properties.inc.php:106 pdf_schema.php:1266 #: pdf_schema.php:1287 tbl_printview.php:146 tbl_structure.php:182 #: tbl_tracking.php:277 @@ -151,14 +151,14 @@ msgstr "" #: db_datadict.php:182 libraries/export/htmlword.php:249 #: libraries/export/latex.php:362 libraries/export/odt.php:307 -#: libraries/export/texytext.php:238 libraries/messages.inc.php:483 +#: libraries/export/texytext.php:238 libraries/messages.inc.php:479 #: pdf_schema.php:1268 pdf_schema.php:1289 tbl_printview.php:150 msgid "Links to" msgstr "" #: db_datadict.php:184 db_printview.php:112 libraries/export/htmlword.php:252 #: libraries/export/latex.php:365 libraries/export/odt.php:312 -#: libraries/export/texytext.php:241 libraries/messages.inc.php:163 +#: libraries/export/texytext.php:241 libraries/messages.inc.php:159 #: libraries/tbl_properties.inc.php:130 pdf_schema.php:1279 #: pdf_schema.php:1290 tbl_printview.php:152 msgid "Comments" @@ -167,7 +167,7 @@ msgstr "" #: db_datadict.php:267 libraries/Index.class.php:359 #: 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/messages.inc.php:559 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:555 #: libraries/mult_submits.inc.php:263 pdf_schema.php:1344 #: server_privileges.php:1529 server_privileges.php:1540 #: server_privileges.php:1850 server_privileges.php:1855 @@ -179,7 +179,7 @@ msgstr "" #: db_datadict.php:267 libraries/Index.class.php:360 #: libraries/Index.class.php:385 libraries/export/htmlword.php:322 #: libraries/export/latex.php:430 libraries/export/odt.php:368 -#: libraries/export/texytext.php:311 libraries/messages.inc.php:1257 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:1253 #: libraries/mult_submits.inc.php:45 libraries/mult_submits.inc.php:50 #: libraries/mult_submits.inc.php:55 libraries/mult_submits.inc.php:60 #: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:101 @@ -193,108 +193,108 @@ msgstr "" msgid "Yes" msgstr "" -#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:670 +#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:666 #: tbl_printview.php:498 msgid "Print" msgstr "" -#: db_export.php:29 libraries/messages.inc.php:1226 +#: db_export.php:29 libraries/messages.inc.php:1222 msgid "View dump (schema) of database" msgstr "" #: db_export.php:33 db_printview.php:96 db_qbe.php:102 db_structure.php:51 -#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:568 +#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:564 #: navigation.php:346 msgid "No tables found in database." msgstr "" -#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:845 +#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:841 #: server_export.php:27 msgid "Select All" msgstr "" -#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1188 +#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1184 #: server_export.php:29 msgid "Unselect All" msgstr "" -#: db_operations.php:38 libraries/messages.inc.php:213 tbl_create.php:54 +#: db_operations.php:38 libraries/messages.inc.php:209 tbl_create.php:54 msgid "The database name is empty!" msgstr "" -#: db_operations.php:236 libraries/messages.inc.php:753 +#: db_operations.php:236 libraries/messages.inc.php:749 #, possible-php-format msgid "Database %s has been renamed to %s" msgstr "" -#: db_operations.php:240 libraries/messages.inc.php:178 +#: db_operations.php:240 libraries/messages.inc.php:174 #, possible-php-format msgid "Database %s has been copied to %s" msgstr "" -#: db_operations.php:410 libraries/messages.inc.php:236 +#: db_operations.php:410 libraries/messages.inc.php:232 msgid "Rename database to" msgstr "" -#: db_operations.php:415 libraries/messages.inc.php:161 +#: db_operations.php:415 libraries/messages.inc.php:157 #: server_processlist.php:57 msgid "Command" msgstr "" -#: db_operations.php:425 libraries/messages.inc.php:58 tbl_change.php:1143 +#: db_operations.php:425 libraries/messages.inc.php:54 tbl_change.php:1143 msgid "and then" msgstr "" -#: db_operations.php:451 libraries/messages.inc.php:233 +#: db_operations.php:451 libraries/messages.inc.php:229 msgid "Copy database to" msgstr "" -#: db_operations.php:458 libraries/messages.inc.php:1043 +#: db_operations.php:458 libraries/messages.inc.php:1039 #: tbl_operations.php:526 tbl_tracking.php:388 msgid "Structure only" msgstr "" -#: db_operations.php:459 libraries/messages.inc.php:1041 +#: db_operations.php:459 libraries/messages.inc.php:1037 #: tbl_operations.php:527 tbl_tracking.php:390 msgid "Structure and data" msgstr "" -#: db_operations.php:460 libraries/messages.inc.php:229 tbl_operations.php:528 +#: db_operations.php:460 libraries/messages.inc.php:225 tbl_operations.php:528 #: tbl_tracking.php:389 msgid "Data only" msgstr "" -#: db_operations.php:468 libraries/messages.inc.php:186 +#: db_operations.php:468 libraries/messages.inc.php:182 msgid "CREATE DATABASE before copying" msgstr "" #: db_operations.php:471 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 -#: libraries/export/sql.php:82 libraries/messages.inc.php:30 +#: libraries/export/sql.php:82 libraries/messages.inc.php:26 #: tbl_operations.php:534 #, possible-php-format msgid "Add %s" msgstr "" -#: db_operations.php:475 libraries/messages.inc.php:29 tbl_operations.php:297 +#: db_operations.php:475 libraries/messages.inc.php:25 tbl_operations.php:297 #: tbl_operations.php:536 msgid "Add AUTO_INCREMENT value" msgstr "" -#: db_operations.php:479 libraries/messages.inc.php:31 tbl_operations.php:543 +#: db_operations.php:479 libraries/messages.inc.php:27 tbl_operations.php:543 msgid "Add constraints" msgstr "" -#: db_operations.php:492 libraries/messages.inc.php:1059 +#: db_operations.php:492 libraries/messages.inc.php:1055 msgid "Switch to copied database" msgstr "" -#: db_operations.php:533 libraries/messages.inc.php:89 +#: db_operations.php:533 libraries/messages.inc.php:85 msgid "BLOB Repository" msgstr "" #: db_operations.php:536 db_tracking.php:76 libraries/common.lib.php:1350 -#: libraries/messages.inc.php:1037 libraries/server_links.inc.php:49 +#: libraries/messages.inc.php:1033 libraries/server_links.inc.php:49 #: server_processlist.php:59 tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "" @@ -304,11 +304,11 @@ msgctxt "BLOB repository" msgid "Enabled" msgstr "" -#: db_operations.php:548 libraries/messages.inc.php:93 +#: db_operations.php:548 libraries/messages.inc.php:89 msgid "Disable" msgstr "" -#: db_operations.php:558 libraries/messages.inc.php:90 +#: db_operations.php:558 libraries/messages.inc.php:86 msgid "Damaged" msgstr "" @@ -322,12 +322,12 @@ msgctxt "BLOB repository" msgid "Disabled" msgstr "" -#: db_operations.php:574 libraries/messages.inc.php:96 +#: db_operations.php:574 libraries/messages.inc.php:92 msgid "Enable" msgstr "" #: db_operations.php:598 libraries/Index.class.php:448 -#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:158 +#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:154 #: 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:361 @@ -336,7 +336,7 @@ msgstr "" msgid "Collation" msgstr "" -#: db_operations.php:609 libraries/messages.inc.php:742 main.php:316 +#: db_operations.php:609 libraries/messages.inc.php:738 main.php:316 #: pdf_schema.php:34 #, possible-php-format msgid "" @@ -344,58 +344,58 @@ msgid "" "deactivated. To find out why click %shere%s." msgstr "" -#: db_operations.php:645 libraries/messages.inc.php:264 pdf_pages.php:528 +#: db_operations.php:645 libraries/messages.inc.php:260 pdf_pages.php:528 msgid "Display PDF schema" msgstr "" -#: db_operations.php:661 libraries/messages.inc.php:877 pdf_pages.php:529 +#: db_operations.php:661 libraries/messages.inc.php:873 pdf_pages.php:529 msgid "Show grid" msgstr "" -#: db_operations.php:664 libraries/messages.inc.php:874 pdf_pages.php:530 +#: db_operations.php:664 libraries/messages.inc.php:870 pdf_pages.php:530 msgid "Show color" msgstr "" -#: db_operations.php:666 libraries/messages.inc.php:998 pdf_pages.php:531 +#: db_operations.php:666 libraries/messages.inc.php:994 pdf_pages.php:531 msgid "Show dimension of tables" msgstr "" -#: db_operations.php:669 libraries/messages.inc.php:52 pdf_pages.php:532 +#: db_operations.php:669 libraries/messages.inc.php:48 pdf_pages.php:532 msgid "Display all tables with the same width" msgstr "" -#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:227 +#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:223 #: pdf_pages.php:533 msgid "Data Dictionary" msgstr "" -#: db_operations.php:674 libraries/messages.inc.php:884 pdf_pages.php:534 +#: db_operations.php:674 libraries/messages.inc.php:880 pdf_pages.php:534 msgid "Only show keys" msgstr "" -#: db_operations.php:676 libraries/messages.inc.php:875 pdf_pages.php:535 +#: db_operations.php:676 libraries/messages.inc.php:871 pdf_pages.php:535 msgid "Data Dictionary Format" msgstr "" -#: db_operations.php:678 libraries/messages.inc.php:464 pdf_pages.php:537 +#: db_operations.php:678 libraries/messages.inc.php:460 pdf_pages.php:537 msgid "Landscape" msgstr "" -#: db_operations.php:679 libraries/messages.inc.php:663 pdf_pages.php:538 +#: db_operations.php:679 libraries/messages.inc.php:659 pdf_pages.php:538 msgid "Portrait" msgstr "" -#: db_operations.php:682 libraries/messages.inc.php:599 pdf_pages.php:541 +#: db_operations.php:682 libraries/messages.inc.php:595 pdf_pages.php:541 msgid "Paper size" msgstr "" -#: db_operations.php:706 libraries/messages.inc.php:281 +#: db_operations.php:706 libraries/messages.inc.php:277 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 libraries/messages.inc.php:1087 +#: libraries/header.inc.php:126 libraries/messages.inc.php:1083 #: pdf_pages.php:405 server_privileges.php:1626 server_privileges.php:1682 #: server_privileges.php:1946 server_synchronize.php:423 #: server_synchronize.php:866 tbl_tracking.php:592 test/theme.php:75 @@ -403,176 +403,176 @@ msgid "Table" msgstr "" #: db_printview.php:105 libraries/db_structure.lib.php:56 -#: libraries/messages.inc.php:735 +#: libraries/messages.inc.php:731 msgid "Records" msgstr "" #: db_printview.php:109 libraries/db_structure.lib.php:67 -#: libraries/messages.inc.php:1003 tbl_indexes.php:190 +#: libraries/messages.inc.php:999 tbl_indexes.php:190 msgid "Size" msgstr "" #: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 -#: libraries/export/sql.php:899 libraries/messages.inc.php:436 +#: libraries/export/sql.php:899 libraries/messages.inc.php:432 msgid "in use" msgstr "" #: db_printview.php:187 libraries/db_info.inc.php:88 -#: libraries/export/sql.php:514 libraries/messages.inc.php:1032 +#: libraries/export/sql.php:514 libraries/messages.inc.php:1028 #: pdf_schema.php:1241 tbl_printview.php:434 tbl_structure.php:810 msgid "Creation" msgstr "" #: db_printview.php:196 libraries/db_info.inc.php:93 -#: libraries/export/sql.php:519 libraries/messages.inc.php:1036 +#: libraries/export/sql.php:519 libraries/messages.inc.php:1032 #: pdf_schema.php:1246 tbl_printview.php:444 tbl_structure.php:818 msgid "Last update" msgstr "" #: db_printview.php:205 libraries/db_info.inc.php:98 -#: libraries/export/sql.php:524 libraries/messages.inc.php:1031 +#: libraries/export/sql.php:524 libraries/messages.inc.php:1027 #: pdf_schema.php:1251 tbl_printview.php:454 tbl_structure.php:826 msgid "Last check" msgstr "" -#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1085 +#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1081 #, possible-php-format msgid "%s table(s)" msgstr "" #: db_qbe.php:29 libraries/display_tbl.lib.php:1981 -#: libraries/messages.inc.php:1051 libraries/sql_query_form.lib.php:140 +#: libraries/messages.inc.php:1047 libraries/sql_query_form.lib.php:140 #: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131 #: view_operations.php:62 msgid "Your SQL query has been executed successfully" msgstr "" -#: db_qbe.php:42 libraries/messages.inc.php:371 +#: db_qbe.php:42 libraries/messages.inc.php:367 msgid "You have to choose at least one column to display" msgstr "" #: db_qbe.php:200 libraries/db_structure.lib.php:104 -#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1014 +#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1010 msgid "Sort" msgstr "" #: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111 #: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828 -#: libraries/messages.inc.php:69 server_databases.php:170 +#: libraries/messages.inc.php:65 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314 msgid "Ascending" msgstr "" #: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119 #: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825 -#: libraries/messages.inc.php:251 server_databases.php:170 +#: libraries/messages.inc.php:247 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315 msgid "Descending" msgstr "" #: db_qbe.php:264 db_tracking.php:78 libraries/display_tbl.lib.php:308 -#: libraries/messages.inc.php:888 tbl_change.php:277 tbl_tracking.php:597 +#: libraries/messages.inc.php:884 tbl_change.php:277 tbl_tracking.php:597 msgid "Show" msgstr "" -#: db_qbe.php:300 libraries/messages.inc.php:202 +#: db_qbe.php:300 libraries/messages.inc.php:198 msgid "Criteria" msgstr "" #: db_qbe.php:353 db_qbe.php:435 db_qbe.php:527 db_qbe.php:558 -#: libraries/messages.inc.php:718 +#: libraries/messages.inc.php:714 msgid "Ins" msgstr "" #: db_qbe.php:357 db_qbe.php:439 db_qbe.php:524 db_qbe.php:555 -#: libraries/messages.inc.php:56 +#: libraries/messages.inc.php:52 msgid "And" msgstr "" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:529 db_qbe.php:560 -#: libraries/messages.inc.php:717 +#: libraries/messages.inc.php:713 msgid "Del" msgstr "" #: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553 -#: libraries/display_import.lib.php:166 libraries/messages.inc.php:592 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:588 #: libraries/tbl_properties.inc.php:779 server_privileges.php:258 #: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288 msgid "Or" msgstr "" -#: db_qbe.php:507 libraries/messages.inc.php:516 +#: db_qbe.php:507 libraries/messages.inc.php:512 msgid "Modify" msgstr "" -#: db_qbe.php:584 libraries/messages.inc.php:33 +#: db_qbe.php:584 libraries/messages.inc.php:29 msgid "Add/Delete Criteria Row" msgstr "" -#: db_qbe.php:596 libraries/messages.inc.php:32 +#: db_qbe.php:596 libraries/messages.inc.php:28 msgid "Add/Delete Field Columns" msgstr "" -#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1192 +#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1188 msgid "Update Query" msgstr "" -#: db_qbe.php:617 libraries/messages.inc.php:1216 +#: db_qbe.php:617 libraries/messages.inc.php:1212 msgid "Use Tables" msgstr "" -#: db_qbe.php:640 libraries/messages.inc.php:723 +#: db_qbe.php:640 libraries/messages.inc.php:719 #, possible-php-format msgid "SQL query on database %s:" msgstr "" -#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:823 +#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:819 msgid "Submit Query" msgstr "" #: db_search.php:68 libraries/auth/config.auth.lib.php:84 #: libraries/auth/config.auth.lib.php:103 #: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52 -#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:26 +#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:22 msgid "Access denied" msgstr "" -#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:836 +#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:832 msgid "at least one of the words" msgstr "" -#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:837 +#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:833 msgid "all words" msgstr "" -#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:838 +#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:834 msgid "the exact phrase" msgstr "" -#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:839 +#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:835 msgid "as regular expression" msgstr "" -#: db_search.php:242 libraries/messages.inc.php:840 +#: db_search.php:242 libraries/messages.inc.php:836 #, possible-php-format msgid "Search results for \"%s\" %s:" msgstr "" -#: db_search.php:260 libraries/messages.inc.php:579 +#: db_search.php:260 libraries/messages.inc.php:575 #, possible-php-format msgid "%s match(es) inside table %s" 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/messages.inc.php:108 +#: db_structure.php:105 libraries/messages.inc.php:104 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468 msgid "Browse" msgstr "" #: db_search.php:272 libraries/display_tbl.lib.php:1165 -#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:243 +#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:239 #: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406 #: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377 #: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216 @@ -580,45 +580,45 @@ msgstr "" msgid "Delete" msgstr "" -#: db_search.php:285 libraries/messages.inc.php:580 +#: db_search.php:285 libraries/messages.inc.php:576 #, possible-php-format msgid "Total: %s match(es)" msgstr "" -#: db_search.php:299 libraries/messages.inc.php:832 +#: db_search.php:299 libraries/messages.inc.php:828 msgid "Search in database" msgstr "" -#: db_search.php:302 libraries/messages.inc.php:835 +#: db_search.php:302 libraries/messages.inc.php:831 msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgstr "" -#: db_search.php:307 libraries/messages.inc.php:842 +#: db_search.php:307 libraries/messages.inc.php:838 msgid "Find:" msgstr "" -#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1017 +#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1013 msgid "Words are separated by a space character (\" \")." msgstr "" -#: db_search.php:325 libraries/messages.inc.php:834 +#: db_search.php:325 libraries/messages.inc.php:830 msgid "Inside table(s):" msgstr "" -#: db_search.php:355 libraries/messages.inc.php:833 +#: db_search.php:355 libraries/messages.inc.php:829 msgid "Inside field:" 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/messages.inc.php:431 libraries/sql_query_form.lib.php:334 +#: libraries/messages.inc.php:427 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/db_links.inc.php:63 libraries/export/latex.php:337 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:1048 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:1044 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 #: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269 msgid "Structure" @@ -627,8 +627,8 @@ 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:1642 -#: libraries/db_links.inc.php:100 libraries/messages.inc.php:272 +#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/db_links.inc.php:100 libraries/messages.inc.php:268 #: 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 @@ -638,40 +638,40 @@ 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:1641 -#: libraries/messages.inc.php:284 libraries/mult_submits.inc.php:39 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: libraries/messages.inc.php:280 libraries/mult_submits.inc.php:39 #: libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "" -#: db_structure.php:316 libraries/messages.inc.php:1075 +#: db_structure.php:316 libraries/messages.inc.php:1071 #: libraries/tbl_links.inc.php:100 #, possible-php-format msgid "Table %s has been emptied" msgstr "" -#: db_structure.php:326 libraries/messages.inc.php:1229 +#: db_structure.php:326 libraries/messages.inc.php:1225 #: libraries/tbl_links.inc.php:133 #, possible-php-format msgid "View %s has been dropped" msgstr "" -#: db_structure.php:326 libraries/messages.inc.php:1074 +#: db_structure.php:326 libraries/messages.inc.php:1070 #: libraries/tbl_links.inc.php:133 #, possible-php-format msgid "Table %s has been dropped" msgstr "" -#: db_structure.php:333 libraries/messages.inc.php:1128 +#: db_structure.php:333 libraries/messages.inc.php:1124 msgid "Tracking is active." msgstr "" -#: db_structure.php:335 libraries/messages.inc.php:1129 +#: db_structure.php:335 libraries/messages.inc.php:1125 msgid "Tracking is not active." msgstr "" #: db_structure.php:420 libraries/display_tbl.lib.php:1944 -#: libraries/messages.inc.php:1228 +#: libraries/messages.inc.php:1224 #, possible-php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -679,83 +679,83 @@ msgid "" msgstr "" #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 -#: libraries/messages.inc.php:1233 libraries/tbl_info.inc.php:66 +#: libraries/messages.inc.php:1229 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/messages.inc.php:773 libraries/server_links.inc.php:70 +#: libraries/messages.inc.php:769 libraries/server_links.inc.php:70 #: server_replication.php:33 server_replication.php:164 server_status.php:258 msgid "Replication" msgstr "" -#: db_structure.php:489 libraries/messages.inc.php:1053 +#: db_structure.php:489 libraries/messages.inc.php:1049 msgid "Sum" msgstr "" #: db_structure.php:496 libraries/StorageEngine.class.php:356 -#: libraries/messages.inc.php:239 +#: libraries/messages.inc.php:235 #, possible-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 #: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086 -#: libraries/messages.inc.php:1243 libraries/mult_submits.inc.php:16 +#: libraries/messages.inc.php:1239 libraries/mult_submits.inc.php:16 #: server_databases.php:346 server_databases.php:351 #: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465 msgid "With selected:" msgstr "" #: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: libraries/messages.inc.php:148 server_databases.php:348 +#: libraries/messages.inc.php:144 server_databases.php:348 #: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459 msgid "Check All" msgstr "" #: db_structure.php:531 libraries/display_tbl.lib.php:2077 -#: libraries/messages.inc.php:1184 libraries/replication_gui.lib.php:33 +#: libraries/messages.inc.php:1180 libraries/replication_gui.lib.php:33 #: server_databases.php:350 server_privileges.php:533 #: server_privileges.php:1564 tbl_structure.php:463 msgid "Uncheck All" msgstr "" -#: db_structure.php:536 libraries/messages.inc.php:150 +#: db_structure.php:536 libraries/messages.inc.php:146 msgid "Check tables having overhead" msgstr "" #: db_structure.php:547 db_structure.php:548 db_structure.php:599 -#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:672 +#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:668 #: libraries/mult_submits.inc.php:28 tbl_structure.php:493 #: tbl_structure.php:495 msgid "Print view" msgstr "" -#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:153 +#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:149 #: libraries/mult_submits.inc.php:42 tbl_operations.php:579 msgid "Check table" msgstr "" -#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:590 +#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:586 #: libraries/mult_submits.inc.php:47 tbl_operations.php:619 #: tbl_structure.php:710 tbl_structure.php:712 msgid "Optimize table" msgstr "" -#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:758 +#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:754 #: libraries/mult_submits.inc.php:52 tbl_operations.php:609 msgid "Repair table" msgstr "" -#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:55 +#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:51 #: libraries/mult_submits.inc.php:57 tbl_operations.php:599 msgid "Analyze table" msgstr "" #: db_structure.php:557 db_structure.php:558 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/messages.inc.php:310 +#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:306 #: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84 #: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109 #: server_privileges.php:1341 setup/frames/menu.inc.php:22 @@ -763,7 +763,7 @@ msgstr "" msgid "Export" msgstr "" -#: db_tracking.php:66 libraries/messages.inc.php:1151 +#: db_tracking.php:66 libraries/messages.inc.php:1147 msgid "Tracked tables" msgstr "" @@ -771,7 +771,7 @@ msgstr "" #: 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/header_printview.inc.php:58 libraries/messages.inc.php:212 +#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:208 #: navigation.php:233 server_databases.php:169 server_privileges.php:1621 #: server_privileges.php:1682 server_privileges.php:1940 #: server_processlist.php:56 server_synchronize.php:1179 @@ -779,92 +779,92 @@ msgstr "" msgid "Database" msgstr "" -#: db_tracking.php:73 libraries/messages.inc.php:1146 +#: db_tracking.php:73 libraries/messages.inc.php:1142 msgid "Last version" msgstr "" -#: db_tracking.php:74 libraries/messages.inc.php:1145 tbl_tracking.php:594 +#: db_tracking.php:74 libraries/messages.inc.php:1141 tbl_tracking.php:594 msgid "Created" msgstr "" -#: db_tracking.php:75 libraries/messages.inc.php:1147 tbl_tracking.php:595 +#: db_tracking.php:75 libraries/messages.inc.php:1143 tbl_tracking.php:595 msgid "Updated" msgstr "" #: db_tracking.php:77 libraries/Index.class.php:440 -#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:27 +#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:23 #: server_databases.php:203 server_privileges.php:1503 #: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187 msgid "Action" msgstr "" -#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:247 +#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:243 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:106 libraries/messages.inc.php:1142 tbl_tracking.php:548 +#: db_tracking.php:106 libraries/messages.inc.php:1138 tbl_tracking.php:548 #: tbl_tracking.php:606 tbl_tracking.php:613 msgid "active" msgstr "" -#: db_tracking.php:108 libraries/messages.inc.php:1143 tbl_tracking.php:550 +#: db_tracking.php:108 libraries/messages.inc.php:1139 tbl_tracking.php:550 #: tbl_tracking.php:608 tbl_tracking.php:610 msgid "not active" msgstr "" -#: db_tracking.php:121 libraries/messages.inc.php:1160 +#: db_tracking.php:121 libraries/messages.inc.php:1156 msgid "Versions" msgstr "" -#: db_tracking.php:122 libraries/messages.inc.php:1132 tbl_tracking.php:379 +#: db_tracking.php:122 libraries/messages.inc.php:1128 tbl_tracking.php:379 #: tbl_tracking.php:624 msgid "Tracking report" msgstr "" -#: db_tracking.php:123 libraries/messages.inc.php:1144 tbl_tracking.php:251 +#: db_tracking.php:123 libraries/messages.inc.php:1140 tbl_tracking.php:251 #: tbl_tracking.php:624 msgid "Structure snapshot" msgstr "" -#: db_tracking.php:152 libraries/messages.inc.php:1154 +#: db_tracking.php:152 libraries/messages.inc.php:1150 msgid "Untracked tables" msgstr "" -#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1153 +#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1149 #: tbl_structure.php:529 tbl_structure.php:531 msgid "Track table" msgstr "" -#: db_tracking.php:200 libraries/messages.inc.php:1121 +#: db_tracking.php:200 libraries/messages.inc.php:1117 msgid "Database Log" msgstr "" -#: export.php:62 libraries/messages.inc.php:312 +#: export.php:62 libraries/messages.inc.php:308 msgid "Selected export type has to be saved in file!" msgstr "" -#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:567 +#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:563 #, possible-php-format msgid "Insufficient space to save the file %s." msgstr "" -#: export.php:294 libraries/messages.inc.php:324 +#: export.php:294 libraries/messages.inc.php:320 #, possible-php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "" -#: export.php:298 export.php:302 libraries/messages.inc.php:562 +#: export.php:298 export.php:302 libraries/messages.inc.php:558 #, possible-php-format msgid "The web server does not have permission to save the file %s." msgstr "" -#: export.php:629 libraries/messages.inc.php:276 +#: export.php:629 libraries/messages.inc.php:272 #, possible-php-format msgid "Dump has been saved to file %s." msgstr "" -#: import.php:60 libraries/messages.inc.php:1202 +#: import.php:60 libraries/messages.inc.php:1198 #, possible-php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation%" @@ -872,21 +872,21 @@ msgid "" msgstr "" #: import.php:279 import.php:332 libraries/File.class.php:849 -#: libraries/File.class.php:961 libraries/messages.inc.php:325 +#: libraries/File.class.php:961 libraries/messages.inc.php:321 msgid "File could not be read" msgstr "" #: import.php:287 import.php:296 import.php:315 import.php:324 #: libraries/File.class.php:1031 libraries/File.class.php:1039 #: libraries/File.class.php:1055 libraries/File.class.php:1063 -#: libraries/messages.inc.php:1189 +#: libraries/messages.inc.php:1185 #, possible-php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." msgstr "" -#: import.php:337 libraries/messages.inc.php:547 +#: import.php:337 libraries/messages.inc.php:543 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -894,39 +894,39 @@ msgid "" msgstr "" #: import.php:372 libraries/display_import.lib.php:24 -#: libraries/messages.inc.php:125 +#: libraries/messages.inc.php:121 msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:397 libraries/messages.inc.php:102 +#: import.php:397 libraries/messages.inc.php:98 msgid "The bookmark has been deleted." msgstr "" -#: import.php:401 libraries/messages.inc.php:879 +#: import.php:401 libraries/messages.inc.php:875 msgid "Showing bookmark" msgstr "" -#: import.php:403 libraries/messages.inc.php:101 +#: import.php:403 libraries/messages.inc.php:97 #, possible-php-format msgid "Bookmark %s created" msgstr "" -#: import.php:409 import.php:415 libraries/messages.inc.php:407 +#: import.php:409 import.php:415 libraries/messages.inc.php:403 #, possible-php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" -#: import.php:424 libraries/messages.inc.php:1107 +#: import.php:424 libraries/messages.inc.php:1103 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: index.php:190 libraries/messages.inc.php:553 +#: index.php:190 libraries/messages.inc.php:549 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" -#: js/messages.php:25 libraries/messages.inc.php:155 +#: js/messages.php:25 libraries/messages.inc.php:151 #: server_synchronize.php:345 server_synchronize.php:357 #: server_synchronize.php:373 server_synchronize.php:380 #: server_synchronize.php:739 server_synchronize.php:767 @@ -934,116 +934,116 @@ msgstr "" msgid "Click to select" msgstr "" -#: js/messages.php:26 libraries/messages.inc.php:156 +#: js/messages.php:26 libraries/messages.inc.php:152 msgid "Click to unselect" msgstr "" #: js/messages.php:27 libraries/import.lib.php:103 -#: libraries/messages.inc.php:550 sql.php:89 +#: libraries/messages.inc.php:546 sql.php:89 msgid "\"DROP DATABASE\" statements are disabled." msgstr "" -#: js/messages.php:30 libraries/messages.inc.php:270 +#: js/messages.php:30 libraries/messages.inc.php:266 #: libraries/mult_submits.inc.php:258 sql.php:188 msgid "Do you really want to " msgstr "" -#: js/messages.php:31 libraries/messages.inc.php:271 +#: js/messages.php:31 libraries/messages.inc.php:267 #: libraries/mult_submits.inc.php:258 sql.php:172 msgid "You are about to DESTROY a complete database!" msgstr "" -#: js/messages.php:34 libraries/messages.inc.php:94 +#: js/messages.php:34 libraries/messages.inc.php:90 msgid "You are about to DISABLE a BLOB Repository!" msgstr "" -#: js/messages.php:35 libraries/messages.inc.php:91 +#: js/messages.php:35 libraries/messages.inc.php:87 #, possible-php-format msgid "Are you sure you want to disable all BLOB references for database %s?" msgstr "" -#: js/messages.php:38 libraries/messages.inc.php:342 +#: js/messages.php:38 libraries/messages.inc.php:338 msgid "Missing value in the form!" msgstr "" -#: js/messages.php:39 libraries/messages.inc.php:570 +#: js/messages.php:39 libraries/messages.inc.php:566 msgid "This is not a number!" msgstr "" -#: js/messages.php:42 libraries/messages.inc.php:380 +#: js/messages.php:42 libraries/messages.inc.php:376 msgid "The host name is empty!" msgstr "" -#: js/messages.php:43 libraries/messages.inc.php:1208 +#: js/messages.php:43 libraries/messages.inc.php:1204 msgid "The user name is empty!" msgstr "" -#: js/messages.php:44 libraries/messages.inc.php:607 +#: js/messages.php:44 libraries/messages.inc.php:603 #: server_privileges.php:1197 user_password.php:70 msgid "The password is empty!" msgstr "" -#: js/messages.php:45 libraries/messages.inc.php:609 +#: js/messages.php:45 libraries/messages.inc.php:605 #: server_privileges.php:1195 user_password.php:73 msgid "The passwords aren't the same!" msgstr "" -#: js/messages.php:49 libraries/messages.inc.php:123 pmd_general.php:342 +#: js/messages.php:49 libraries/messages.inc.php:119 pmd_general.php:342 #: pmd_general.php:379 msgid "Cancel" msgstr "" -#: js/messages.php:52 libraries/messages.inc.php:514 +#: js/messages.php:52 libraries/messages.inc.php:510 msgid "Modifications have been saved" msgstr "" -#: js/messages.php:53 libraries/messages.inc.php:741 +#: js/messages.php:53 libraries/messages.inc.php:737 msgid "Relation deleted" msgstr "" -#: js/messages.php:54 libraries/messages.inc.php:340 +#: js/messages.php:54 libraries/messages.inc.php:336 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:55 libraries/messages.inc.php:434 +#: js/messages.php:55 libraries/messages.inc.php:430 msgid "Internal relation added" msgstr "" -#: js/messages.php:56 libraries/messages.inc.php:299 +#: js/messages.php:56 libraries/messages.inc.php:295 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:57 libraries/messages.inc.php:300 +#: js/messages.php:57 libraries/messages.inc.php:296 msgid "Error: relation already exists." msgstr "" -#: js/messages.php:58 libraries/messages.inc.php:302 +#: js/messages.php:58 libraries/messages.inc.php:298 msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:59 libraries/messages.inc.php:351 +#: js/messages.php:59 libraries/messages.inc.php:347 #: libraries/relation.lib.php:107 msgid "General relation features" msgstr "" -#: js/messages.php:59 libraries/messages.inc.php:260 +#: js/messages.php:59 libraries/messages.inc.php:256 #: libraries/relation.lib.php:101 libraries/relation.lib.php:108 msgid "Disabled" msgstr "" -#: js/messages.php:60 libraries/messages.inc.php:850 +#: js/messages.php:60 libraries/messages.inc.php:846 msgid "Select referenced key" msgstr "" -#: js/messages.php:61 libraries/messages.inc.php:848 +#: js/messages.php:61 libraries/messages.inc.php:844 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:62 libraries/messages.inc.php:653 +#: js/messages.php:62 libraries/messages.inc.php:649 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:63 libraries/messages.inc.php:142 pmd_general.php:77 +#: js/messages.php:63 libraries/messages.inc.php:138 pmd_general.php:77 #: tbl_relation.php:548 msgid "Choose field to display" msgstr "" @@ -1059,9 +1059,9 @@ msgid "Prev" msgstr "" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2332 -#: libraries/common.lib.php:2335 libraries/display_tbl.lib.php:338 -#: libraries/messages.inc.php:543 server_binlog.php:205 server_binlog.php:207 +#: js/messages.php:77 libraries/common.lib.php:2344 +#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: libraries/messages.inc.php:539 server_binlog.php:205 server_binlog.php:207 #: tbl_printview.php:424 tbl_structure.php:802 msgid "Next" msgstr "" @@ -1120,63 +1120,63 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1543 +#: js/messages.php:97 libraries/common.lib.php:1555 msgid "Jan" msgstr "" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1545 +#: js/messages.php:99 libraries/common.lib.php:1557 msgid "Feb" msgstr "" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1547 +#: js/messages.php:101 libraries/common.lib.php:1559 msgid "Mar" msgstr "" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1549 +#: js/messages.php:103 libraries/common.lib.php:1561 msgid "Apr" msgstr "" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1551 +#: js/messages.php:105 libraries/common.lib.php:1563 msgctxt "Short month name" msgid "May" msgstr "" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1553 +#: js/messages.php:107 libraries/common.lib.php:1565 msgid "Jun" msgstr "" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1555 +#: js/messages.php:109 libraries/common.lib.php:1567 msgid "Jul" msgstr "" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1557 +#: js/messages.php:111 libraries/common.lib.php:1569 msgid "Aug" msgstr "" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1559 +#: js/messages.php:113 libraries/common.lib.php:1571 msgid "Sep" msgstr "" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1561 +#: js/messages.php:115 libraries/common.lib.php:1573 msgid "Oct" msgstr "" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1563 +#: js/messages.php:117 libraries/common.lib.php:1575 msgid "Nov" msgstr "" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1565 +#: js/messages.php:119 libraries/common.lib.php:1577 msgid "Dec" msgstr "" @@ -1209,37 +1209,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1568 +#: js/messages.php:132 libraries/common.lib.php:1580 msgid "Sun" msgstr "" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1570 +#: js/messages.php:134 libraries/common.lib.php:1582 msgid "Mon" msgstr "" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1572 +#: js/messages.php:136 libraries/common.lib.php:1584 msgid "Tue" msgstr "" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1574 +#: js/messages.php:138 libraries/common.lib.php:1586 msgid "Wed" msgstr "" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1576 +#: js/messages.php:140 libraries/common.lib.php:1588 msgid "Thu" msgstr "" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1578 +#: js/messages.php:142 libraries/common.lib.php:1590 msgid "Fri" msgstr "" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1580 +#: js/messages.php:144 libraries/common.lib.php:1592 msgid "Sat" msgstr "" @@ -1295,76 +1295,76 @@ msgstr "" msgid "Second" msgstr "" -#: libraries/Config.class.php:1015 libraries/messages.inc.php:338 +#: libraries/Config.class.php:1015 libraries/messages.inc.php:334 msgid "Font size" msgstr "" #: libraries/File.class.php:344 libraries/File.class.php:432 #: libraries/File.class.php:569 libraries/File.class.php:708 -#: libraries/messages.inc.php:1201 +#: libraries/messages.inc.php:1197 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.class.php:414 libraries/messages.inc.php:1198 +#: libraries/File.class.php:414 libraries/messages.inc.php:1194 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:417 libraries/messages.inc.php:1197 +#: libraries/File.class.php:417 libraries/messages.inc.php:1193 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:420 libraries/messages.inc.php:1200 +#: libraries/File.class.php:420 libraries/messages.inc.php:1196 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:423 libraries/messages.inc.php:1199 +#: libraries/File.class.php:423 libraries/messages.inc.php:1195 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:426 libraries/messages.inc.php:1195 +#: libraries/File.class.php:426 libraries/messages.inc.php:1191 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:429 libraries/messages.inc.php:1196 +#: libraries/File.class.php:429 libraries/messages.inc.php:1192 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:908 libraries/messages.inc.php:319 +#: libraries/File.class.php:908 libraries/messages.inc.php:315 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "" -#: libraries/Index.class.php:428 libraries/messages.inc.php:554 +#: libraries/Index.class.php:428 libraries/messages.inc.php:550 #: tbl_relation.php:529 msgid "No index defined!" msgstr "" -#: libraries/Index.class.php:433 libraries/messages.inc.php:411 +#: libraries/Index.class.php:433 libraries/messages.inc.php:407 #: server_databases.php:132 tbl_tracking.php:316 msgid "Indexes" msgstr "" -#: libraries/Index.class.php:444 libraries/messages.inc.php:1186 +#: libraries/Index.class.php:444 libraries/messages.inc.php:1182 #: 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:475 tbl_tracking.php:322 msgid "Unique" msgstr "" -#: libraries/Index.class.php:445 libraries/messages.inc.php:596 +#: libraries/Index.class.php:445 libraries/messages.inc.php:592 #: tbl_tracking.php:323 msgid "Packed" msgstr "" -#: libraries/Index.class.php:447 libraries/messages.inc.php:131 +#: libraries/Index.class.php:447 libraries/messages.inc.php:127 #: tbl_tracking.php:325 msgid "Cardinality" msgstr "" -#: libraries/Index.class.php:450 libraries/messages.inc.php:162 +#: libraries/Index.class.php:450 libraries/messages.inc.php:158 #: tbl_tracking.php:279 tbl_tracking.php:328 msgid "Comment" msgstr "" @@ -1372,29 +1372,29 @@ msgstr "" #: libraries/Index.class.php:466 libraries/common.lib.php:616 #: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:280 pdf_pages.php:280 +#: libraries/messages.inc.php:276 pdf_pages.php:280 #: setup/frames/index.inc.php:124 setup/lib/messages.inc.php:352 #: tbl_row_action.php:69 msgid "Edit" msgstr "" -#: libraries/Index.class.php:472 libraries/messages.inc.php:666 +#: libraries/Index.class.php:472 libraries/messages.inc.php:662 msgid "The primary key has been dropped" msgstr "" -#: libraries/Index.class.php:476 libraries/messages.inc.php:413 +#: libraries/Index.class.php:476 libraries/messages.inc.php:409 #, possible-php-format msgid "Index %s has been dropped" msgstr "" -#: libraries/Index.class.php:576 libraries/messages.inc.php:412 +#: libraries/Index.class.php:576 libraries/messages.inc.php:408 #, possible-php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "" -#: libraries/List_Database.class.php:431 libraries/messages.inc.php:218 +#: libraries/List_Database.class.php:431 libraries/messages.inc.php:214 #: libraries/server_links.inc.php:41 server_databases.php:88 #: server_privileges.php:1621 setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" @@ -1421,85 +1421,85 @@ msgid_plural "%1$d rows inserted." msgstr[0] "" msgstr[1] "" -#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:549 +#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:545 msgid "" "There is no detailed status information available for this storage engine." msgstr "" -#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:291 +#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:287 #, possible-php-format msgid "%s is available on this MySQL server." msgstr "" -#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:292 +#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:288 #, possible-php-format msgid "%s has been disabled for this MySQL server." msgstr "" -#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:294 +#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:290 #, possible-php-format msgid "This MySQL server does not support the %s storage engine." msgstr "" -#: libraries/Table.class.php:1019 libraries/messages.inc.php:443 +#: libraries/Table.class.php:1019 libraries/messages.inc.php:439 msgid "Invalid database" msgstr "" -#: libraries/Table.class.php:1033 libraries/messages.inc.php:450 +#: libraries/Table.class.php:1033 libraries/messages.inc.php:446 #: tbl_get_field.php:26 msgid "Invalid table name" msgstr "" -#: libraries/Table.class.php:1048 libraries/messages.inc.php:301 +#: libraries/Table.class.php:1048 libraries/messages.inc.php:297 #, possible-php-format msgid "Error renaming table %1$s to %2$s" msgstr "" -#: libraries/Table.class.php:1132 libraries/messages.inc.php:754 +#: libraries/Table.class.php:1132 libraries/messages.inc.php:750 #, possible-php-format msgid "Table %s has been renamed to %s" msgstr "" -#: libraries/Theme.class.php:162 libraries/messages.inc.php:1099 +#: libraries/Theme.class.php:162 libraries/messages.inc.php:1095 #, possible-php-format msgid "No valid image path for theme %s found!" msgstr "" -#: libraries/Theme.class.php:384 libraries/messages.inc.php:1097 +#: libraries/Theme.class.php:384 libraries/messages.inc.php:1093 msgid "No preview available." msgstr "" -#: libraries/Theme.class.php:387 libraries/messages.inc.php:1089 +#: libraries/Theme.class.php:387 libraries/messages.inc.php:1085 msgid "take it" msgstr "" -#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1096 +#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1092 #, possible-php-format msgid "Default theme %s not found!" msgstr "" -#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1098 +#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1094 #, possible-php-format msgid "Theme %s not found!" msgstr "" -#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1100 +#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1096 #, possible-php-format msgid "Theme path not found for theme %s!" msgstr "" -#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1101 +#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1097 #: test/theme.php:161 themes.php:21 themes.php:41 msgid "Theme / Style" msgstr "" -#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:172 +#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:168 msgid "Cannot connect: invalid settings." msgstr "" #: libraries/auth/config.auth.lib.php:92 #: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65 -#: libraries/messages.inc.php:1238 test/theme.php:152 +#: libraries/messages.inc.php:1234 test/theme.php:152 #, possible-php-format msgid "Welcome to %s" msgstr "" @@ -1519,104 +1519,104 @@ msgid "" "the administrator of the MySQL server." msgstr "" -#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:488 +#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:484 msgid "Log in" msgstr "" #: libraries/auth/cookie.auth.lib.php:246 -#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:659 +#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:655 #: libraries/navigation_header.inc.php:93 #: libraries/navigation_header.inc.php:95 msgid "phpMyAdmin documentation" msgstr "" #: libraries/auth/cookie.auth.lib.php:258 -#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:492 +#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:488 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:493 +#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:489 msgid "Server:" msgstr "" -#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:494 +#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:490 msgid "Username:" msgstr "" -#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:491 +#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:487 msgid "Password:" msgstr "" -#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:854 +#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:850 msgid "Server Choice" msgstr "" #: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 -#: libraries/messages.inc.php:177 +#: libraries/messages.inc.php:173 msgid "Cookies must be enabled past this point." msgstr "" #: libraries/auth/cookie.auth.lib.php:671 -#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:489 +#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:485 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" #: libraries/auth/cookie.auth.lib.php:675 -#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:544 +#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:540 #, possible-php-format msgid "No activity within %s seconds; please log in again" msgstr "" #: libraries/auth/cookie.auth.lib.php:685 #: libraries/auth/cookie.auth.lib.php:687 -#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:126 +#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:122 msgid "Cannot log in to the MySQL server" msgstr "" -#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1245 +#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1241 msgid "Wrong username/password. Access denied." msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:118 -#: libraries/messages.inc.php:1057 +#: libraries/messages.inc.php:1053 #, possible-php-format msgid "File %s does not contain any key id" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:157 #: libraries/auth/swekey/swekey.auth.lib.php:180 -#: libraries/messages.inc.php:1056 +#: libraries/messages.inc.php:1052 msgid "Hardware authentication failed" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:166 -#: libraries/messages.inc.php:1058 +#: libraries/messages.inc.php:1054 msgid "No valid authentication key plugged" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:202 -#: libraries/messages.inc.php:1055 +#: libraries/messages.inc.php:1051 msgid "Authenticating..." msgstr "" -#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1230 +#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1226 msgid "View image" msgstr "" -#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:652 +#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:648 msgid "Play audio" msgstr "" -#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1232 +#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1228 msgid "View video" msgstr "" -#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:269 +#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:265 msgid "Download file" msgstr "" -#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:128 +#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:124 msgid "" "Couldn't load the iconv or recode extension needed for charset conversion. " "Either configure PHP to enable these extensions or disable charset " @@ -1625,13 +1625,13 @@ msgstr "" #: libraries/charset_conversion.lib.php:79 #: libraries/charset_conversion.lib.php:90 -#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:130 +#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:126 msgid "" "Couldn't use the iconv, libiconv, or recode_string functions, although the " "necessary extensions appear to be loaded. Check your PHP configuration." msgstr "" -#: libraries/common.inc.php:583 libraries/messages.inc.php:170 +#: libraries/common.inc.php:583 libraries/messages.inc.php:166 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!" @@ -1657,22 +1657,22 @@ msgstr "" msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:636 libraries/messages.inc.php:448 +#: libraries/common.inc.php:636 libraries/messages.inc.php:444 #, possible-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/messages.inc.php:856 libraries/select_server.lib.php:41 +#: libraries/messages.inc.php:852 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/messages.inc.php:437 +#: libraries/common.inc.php:823 libraries/messages.inc.php:433 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.lib.php:147 libraries/messages.inc.php:499 +#: libraries/common.lib.php:147 libraries/messages.inc.php:495 #, possible-php-format msgid "Max: %s%s" msgstr "" @@ -1692,7 +1692,7 @@ msgstr "" #: libraries/common.lib.php:428 libraries/common.lib.php:430 #: libraries/common.lib.php:432 libraries/common.lib.php:448 #: libraries/common.lib.php:450 libraries/dbg/setup.php:25 -#: libraries/display_export.lib.php:164 libraries/messages.inc.php:267 +#: libraries/display_export.lib.php:164 libraries/messages.inc.php:263 #: libraries/relation.lib.php:97 libraries/sql_query_form.lib.php:451 #: libraries/sql_query_form.lib.php:454 main.php:229 pdf_pages.php:37 #: pdf_pages.php:43 pdf_pages.php:49 pdf_pages.php:54 @@ -1702,55 +1702,55 @@ msgstr "" #: libraries/common.lib.php:581 libraries/core.lib.php:234 #: libraries/core.lib.php:263 libraries/import.lib.php:134 -#: libraries/messages.inc.php:297 pdf_schema.php:32 pdf_schema.php:232 +#: libraries/messages.inc.php:293 pdf_schema.php:32 pdf_schema.php:232 #: tbl_change.php:1027 tbl_operations.php:213 tbl_relation.php:290 #: view_operations.php:62 msgid "Error" msgstr "" #: libraries/common.lib.php:595 libraries/header_printview.inc.php:61 -#: libraries/messages.inc.php:1023 server_processlist.php:60 +#: libraries/messages.inc.php:1019 server_processlist.php:60 #: server_status.php:247 msgid "SQL query" msgstr "" -#: libraries/common.lib.php:634 libraries/messages.inc.php:538 +#: libraries/common.lib.php:634 libraries/messages.inc.php:534 msgid "MySQL said: " msgstr "" -#: libraries/common.lib.php:667 libraries/messages.inc.php:76 +#: libraries/common.lib.php:667 libraries/messages.inc.php:72 #: pdf_schema.php:241 user_password.php:115 msgid "Back" msgstr "" -#: libraries/common.lib.php:1177 libraries/messages.inc.php:309 +#: libraries/common.lib.php:1177 libraries/messages.inc.php:305 #: setup/lib/messages.inc.php:353 msgid "Explain SQL" msgstr "" -#: libraries/common.lib.php:1180 libraries/messages.inc.php:551 +#: libraries/common.lib.php:1180 libraries/messages.inc.php:547 msgid "Skip Explain SQL" msgstr "" -#: libraries/common.lib.php:1212 libraries/messages.inc.php:563 +#: libraries/common.lib.php:1212 libraries/messages.inc.php:559 msgid "Without PHP Code" msgstr "" -#: libraries/common.lib.php:1215 libraries/messages.inc.php:649 +#: libraries/common.lib.php:1215 libraries/messages.inc.php:645 #: setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "" -#: libraries/common.lib.php:1233 libraries/messages.inc.php:737 +#: libraries/common.lib.php:1233 libraries/messages.inc.php:733 #: server_status.php:341 setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "" -#: libraries/common.lib.php:1242 libraries/messages.inc.php:575 +#: libraries/common.lib.php:1242 libraries/messages.inc.php:571 msgid "Skip Validate SQL" msgstr "" -#: libraries/common.lib.php:1245 libraries/messages.inc.php:1220 +#: libraries/common.lib.php:1245 libraries/messages.inc.php:1216 #: setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "" @@ -1764,11 +1764,11 @@ msgid "Inline" msgstr "" #: libraries/common.lib.php:1332 libraries/common.lib.php:1347 -#: libraries/messages.inc.php:713 +#: libraries/messages.inc.php:709 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1351 libraries/messages.inc.php:1108 +#: libraries/common.lib.php:1351 libraries/messages.inc.php:1104 #: libraries/tbl_triggers.lib.php:28 server_processlist.php:58 msgid "Time" msgstr "" @@ -1802,46 +1802,56 @@ msgstr "" msgid "EiB" msgstr "" +#. l10n: Thousands separator +#: libraries/common.lib.php:1417 +msgid "," +msgstr "" + +#. l10n: Decimal separator +#: libraries/common.lib.php:1419 +msgid "." +msgstr "" + #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1584 +#: libraries/common.lib.php:1596 #: libraries/transformations/text_plain__dateformat.inc.php:28 msgid "%B %d, %Y at %I:%M %p" msgstr "" -#: libraries/common.lib.php:1886 +#: libraries/common.lib.php:1898 #, possible-php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "" -#: libraries/common.lib.php:2301 libraries/common.lib.php:2304 -#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:664 +#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:660 #: server_status.php:608 msgid "Begin" msgstr "" -#: libraries/common.lib.php:2302 libraries/common.lib.php:2305 -#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:665 +#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:661 #: server_binlog.php:168 server_binlog.php:170 msgid "Previous" msgstr "" -#: libraries/common.lib.php:2333 libraries/common.lib.php:2336 -#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:289 +#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:285 msgid "End" msgstr "" -#: libraries/common.lib.php:2409 libraries/messages.inc.php:455 +#: libraries/common.lib.php:2421 libraries/messages.inc.php:451 #, possible-php-format msgid "Jump to database "%s"." msgstr "" -#: libraries/common.lib.php:2429 libraries/messages.inc.php:461 +#: libraries/common.lib.php:2441 libraries/messages.inc.php:457 #, possible-php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/core.lib.php:286 libraries/dbg/setup.php:22 -#: libraries/messages.inc.php:127 +#: libraries/messages.inc.php:123 #, possible-php-format msgid "" "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " @@ -1849,115 +1859,115 @@ msgid "" msgstr "" #: libraries/db_events.inc.php:20 libraries/db_events.inc.php:22 -#: libraries/export/sql.php:415 libraries/messages.inc.php:306 +#: libraries/export/sql.php:415 libraries/messages.inc.php:302 msgid "Events" msgstr "" #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 -#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:541 +#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:537 #: libraries/tbl_triggers.lib.php:27 setup/frames/index.inc.php:112 msgid "Name" msgstr "" -#: libraries/db_links.inc.php:45 libraries/messages.inc.php:216 +#: libraries/db_links.inc.php:45 libraries/messages.inc.php:212 #, possible-php-format msgid "Database %s has been dropped." msgstr "" #: libraries/db_links.inc.php:57 libraries/db_links.inc.php:58 -#: libraries/db_links.inc.php:59 libraries/messages.inc.php:234 +#: libraries/db_links.inc.php:59 libraries/messages.inc.php:230 msgid "Database seems to be empty!" msgstr "" -#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1025 +#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1021 #: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60 #: querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "" -#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1152 +#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1148 #: libraries/tbl_links.inc.php:69 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:86 libraries/messages.inc.php:719 +#: libraries/db_links.inc.php:86 libraries/messages.inc.php:715 msgid "Query" msgstr "" -#: libraries/db_links.inc.php:91 libraries/messages.inc.php:253 +#: libraries/db_links.inc.php:91 libraries/messages.inc.php:249 msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:98 libraries/messages.inc.php:397 +#: libraries/db_links.inc.php:98 libraries/messages.inc.php:393 #: libraries/server_links.inc.php:88 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:104 libraries/messages.inc.php:587 +#: libraries/db_links.inc.php:104 libraries/messages.inc.php:583 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" msgstr "" -#: libraries/db_links.inc.php:111 libraries/messages.inc.php:709 +#: libraries/db_links.inc.php:111 libraries/messages.inc.php:705 #: libraries/server_links.inc.php:66 server_privileges.php:72 #: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117 msgid "Privileges" msgstr "" #: libraries/db_routines.inc.php:30 libraries/db_routines.inc.php:32 -#: libraries/messages.inc.php:812 +#: libraries/messages.inc.php:808 msgid "Routines" msgstr "" -#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:811 +#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:807 msgid "Return type" msgstr "" #: libraries/db_structure.lib.php:57 libraries/display_tbl.lib.php:1848 -#: libraries/messages.inc.php:65 +#: libraries/messages.inc.php:61 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "" -#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:593 +#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:589 #: server_databases.php:142 tbl_printview.php:336 tbl_structure.php:683 msgid "Overhead" msgstr "" #: libraries/dbi/mysql.dbi.lib.php:112 libraries/dbi/mysqli.dbi.lib.php:124 -#: libraries/messages.inc.php:176 +#: libraries/messages.inc.php:172 msgid "Connection for controluser as defined in your configuration failed." msgstr "" #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 -#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:855 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:851 msgid "The server is not responding" msgstr "" #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:1010 +#: libraries/messages.inc.php:1006 msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "" -#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:255 +#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:251 #: tbl_structure.php:609 msgid "Details..." msgstr "" -#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:143 +#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:139 #: main.php:91 user_password.php:111 user_password.php:129 msgid "Change password" msgstr "" -#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:561 +#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:557 #: libraries/replication_gui.lib.php:341 server_privileges.php:768 msgid "No Password" msgstr "" -#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:610 +#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:606 #: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60 #: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335 #: libraries/replication_gui.lib.php:345 server_privileges.php:757 @@ -1966,13 +1976,13 @@ msgstr "" msgid "Password" msgstr "" -#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:806 +#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:802 #: libraries/replication_gui.lib.php:349 libraries/replication_gui.lib.php:352 #: server_privileges.php:776 server_privileges.php:779 msgid "Re-type" msgstr "" -#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:608 +#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:604 msgid "Password Hashing" msgstr "" @@ -1980,89 +1990,89 @@ msgstr "" msgid "MySQL 4.0 compatible" msgstr "" -#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:353 +#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:349 #: libraries/replication_gui.lib.php:356 server_privileges.php:783 msgid "Generate Password" msgstr "" -#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:352 +#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:348 #: libraries/replication_gui.lib.php:359 server_privileges.php:786 msgid "Generate" msgstr "" #: libraries/display_create_database.lib.php:22 -#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:189 +#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:185 msgid "Create new database" msgstr "" -#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:185 +#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:181 msgid "Create" msgstr "" -#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:564 +#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:560 #: server_privileges.php:74 server_privileges.php:1388 #: server_replication.php:35 msgid "No Privileges" msgstr "" -#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:445 +#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:441 msgid "Table must have at least one field." msgstr "" -#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:190 +#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:186 #, possible-php-format msgid "Create table on database %s" msgstr "" -#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:577 +#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:573 msgid "Number of fields" msgstr "" -#: libraries/display_export.lib.php:42 libraries/messages.inc.php:124 +#: libraries/display_export.lib.php:42 libraries/messages.inc.php:120 msgid "Could not load export plugins, please check your installation!" msgstr "" -#: libraries/display_export.lib.php:107 libraries/messages.inc.php:277 +#: libraries/display_export.lib.php:107 libraries/messages.inc.php:273 #, possible-php-format msgid "Dump %s row(s) starting at record # %s" msgstr "" -#: libraries/display_export.lib.php:115 libraries/messages.inc.php:274 +#: libraries/display_export.lib.php:115 libraries/messages.inc.php:270 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:125 libraries/messages.inc.php:852 +#: libraries/display_export.lib.php:125 libraries/messages.inc.php:848 #: setup/lib/messages.inc.php:82 msgid "Save as file" msgstr "" -#: libraries/display_export.lib.php:134 libraries/messages.inc.php:828 +#: libraries/display_export.lib.php:134 libraries/messages.inc.php:824 #, possible-php-format msgid "Save on server in %s directory" msgstr "" -#: libraries/display_export.lib.php:142 libraries/messages.inc.php:594 +#: libraries/display_export.lib.php:142 libraries/messages.inc.php:590 #: setup/lib/messages.inc.php:90 msgid "Overwrite existing file(s)" msgstr "" -#: libraries/display_export.lib.php:148 libraries/messages.inc.php:330 +#: libraries/display_export.lib.php:148 libraries/messages.inc.php:326 msgid "File name template" msgstr "" -#: libraries/display_export.lib.php:152 libraries/messages.inc.php:327 +#: libraries/display_export.lib.php:152 libraries/messages.inc.php:323 msgid "server name" msgstr "" -#: libraries/display_export.lib.php:155 libraries/messages.inc.php:326 +#: libraries/display_export.lib.php:155 libraries/messages.inc.php:322 msgid "database name" msgstr "" -#: libraries/display_export.lib.php:158 libraries/messages.inc.php:328 +#: libraries/display_export.lib.php:158 libraries/messages.inc.php:324 msgid "table name" msgstr "" -#: libraries/display_export.lib.php:162 libraries/messages.inc.php:329 +#: libraries/display_export.lib.php:162 libraries/messages.inc.php:325 #, possible-php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2070,24 +2080,24 @@ msgid "" "3$s. Other text will be kept as is." msgstr "" -#: libraries/display_export.lib.php:202 libraries/messages.inc.php:331 +#: libraries/display_export.lib.php:202 libraries/messages.inc.php:327 msgid "remember template" msgstr "" #: libraries/display_export.lib.php:210 libraries/display_import.lib.php:178 -#: libraries/display_import.lib.php:191 libraries/messages.inc.php:145 +#: libraries/display_import.lib.php:191 libraries/messages.inc.php:141 #: libraries/sql_query_form.lib.php:549 msgid "Character set of the file:" msgstr "" -#: libraries/display_export.lib.php:235 libraries/messages.inc.php:166 +#: libraries/display_export.lib.php:235 libraries/messages.inc.php:162 #: setup/lib/messages.inc.php:84 msgid "Compression" 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/messages.inc.php:558 +#: libraries/export/sql.php:868 libraries/messages.inc.php:554 #: libraries/tbl_properties.inc.php:575 server_privileges.php:1836 #: server_processlist.php:75 msgid "None" @@ -2105,462 +2115,462 @@ msgstr "" msgid "bzipped" msgstr "" -#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1018 +#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1014 msgid "SQL compatibility mode" msgstr "" -#: libraries/display_import.lib.php:67 libraries/messages.inc.php:398 +#: libraries/display_import.lib.php:67 libraries/messages.inc.php:394 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " "browsers." msgstr "" -#: libraries/display_import.lib.php:77 libraries/messages.inc.php:406 +#: libraries/display_import.lib.php:77 libraries/messages.inc.php:402 msgid "The file is being processed, please be patient." msgstr "" -#: libraries/display_import.lib.php:99 libraries/messages.inc.php:408 +#: libraries/display_import.lib.php:99 libraries/messages.inc.php:404 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." msgstr "" -#: libraries/display_import.lib.php:126 libraries/messages.inc.php:333 +#: libraries/display_import.lib.php:126 libraries/messages.inc.php:329 msgid "File to import" msgstr "" -#: libraries/display_import.lib.php:137 libraries/messages.inc.php:486 +#: libraries/display_import.lib.php:137 libraries/messages.inc.php:482 #: libraries/sql_query_form.lib.php:524 msgid "Location of the text file" msgstr "" -#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1203 +#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1199 msgid "File uploads are not allowed on this server." msgstr "" -#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1235 +#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1231 #: libraries/sql_query_form.lib.php:533 tbl_change.php:1028 msgid "The directory you set for upload work cannot be reached" msgstr "" -#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1236 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1232 #: libraries/sql_query_form.lib.php:536 tbl_change.php:1031 msgid "web server upload directory" msgstr "" -#: libraries/display_import.lib.php:212 libraries/messages.inc.php:167 +#: libraries/display_import.lib.php:212 libraries/messages.inc.php:163 #, possible-php-format msgid "Imported file compression will be automatically detected from: %s" msgstr "" -#: libraries/display_import.lib.php:219 libraries/messages.inc.php:600 +#: libraries/display_import.lib.php:219 libraries/messages.inc.php:596 msgid "Partial import" msgstr "" -#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1105 +#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1101 #, possible-php-format msgid "" "Previous import timed out, after resubmitting will continue from position %d." msgstr "" -#: libraries/display_import.lib.php:232 libraries/messages.inc.php:51 +#: libraries/display_import.lib.php:232 libraries/messages.inc.php:47 msgid "" "Allow the interruption of an import in case the script detects it is close " "to the PHP timeout limit. This might be good way to import large files, " "however it can break transactions." msgstr "" -#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1004 +#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1000 #: setup/lib/messages.inc.php:161 msgid "Number of records (queries) to skip from start" msgstr "" -#: libraries/display_import.lib.php:255 libraries/messages.inc.php:396 +#: libraries/display_import.lib.php:255 libraries/messages.inc.php:392 #: setup/lib/messages.inc.php:160 msgid "Format of imported file" msgstr "" #: libraries/display_select_lang.lib.php:45 -#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:465 +#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:461 #: setup/frames/index.inc.php:70 msgid "Language" msgstr "" -#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:447 +#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:443 #, possible-php-format msgid "%d is not valid row number." msgstr "" -#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:814 +#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:810 msgid "row(s) starting from record #" msgstr "" -#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:817 +#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:813 msgid "horizontal" msgstr "" -#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:816 +#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:812 msgid "horizontal (rotated headers)" msgstr "" -#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:819 +#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:815 msgid "vertical" msgstr "" -#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:818 +#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:814 #, possible-php-format msgid "in %s mode and repeat headers after %s cells" msgstr "" -#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:495 +#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:491 msgid "This operation could take a long time. Proceed anyway?" msgstr "" -#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1012 +#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1008 msgid "Sort by key" msgstr "" #: libraries/display_tbl.lib.php:555 libraries/import.lib.php:1082 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:591 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:587 #: tbl_select.php:267 tbl_structure.php:754 msgid "Options" msgstr "" #: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:570 -#: libraries/messages.inc.php:601 +#: libraries/messages.inc.php:597 msgid "Partial Texts" msgstr "" #: libraries/display_tbl.lib.php:561 libraries/display_tbl.lib.php:574 -#: libraries/messages.inc.php:346 +#: libraries/messages.inc.php:342 msgid "Full Texts" msgstr "" -#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:739 +#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:735 msgid "Relational key" msgstr "" -#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:738 +#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:734 msgid "Relational display field" msgstr "" -#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:872 +#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:868 msgid "Show binary contents" msgstr "" -#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:873 +#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:869 msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:871 +#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:867 msgid "Show binary contents as HEX" msgstr "" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:375 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:371 #: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320 msgid "Hide" msgstr "" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:508 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:504 #: libraries/tbl_properties.inc.php:144 transformation_overview.php:47 msgid "Browser transformation" msgstr "" #: libraries/display_tbl.lib.php:1126 libraries/display_tbl.lib.php:1130 -#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:308 +#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:304 msgid "Execute bookmarked query" msgstr "" #: libraries/display_tbl.lib.php:1145 libraries/display_tbl.lib.php:1157 -#: libraries/messages.inc.php:244 +#: libraries/messages.inc.php:240 msgid "The row has been deleted" msgstr "" #: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056 -#: libraries/messages.inc.php:460 server_processlist.php:71 +#: libraries/messages.inc.php:456 server_processlist.php:71 #: tbl_row_action.php:64 msgid "Kill" msgstr "" -#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:849 +#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:845 msgid "in query" msgstr "" -#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:881 +#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:877 msgid "Showing rows" msgstr "" -#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1113 +#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1109 msgid "total" msgstr "" -#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:727 +#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:723 #: sql.php:524 #, possible-php-format msgid "Query took %01.4f sec" msgstr "" -#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:135 +#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:131 #: 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:471 msgid "Change" msgstr "" -#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:724 +#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:720 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:671 +#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:667 msgid "Print view (with full texts)" msgstr "" -#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:482 +#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:478 msgid "Link not found" msgstr "" -#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1224 +#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1220 #: main.php:228 msgid "Version information" msgstr "" -#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:423 +#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:419 msgid "Data home directory" msgstr "" -#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:424 +#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:420 msgid "The common part of the directory path for all InnoDB data files." msgstr "" -#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:422 +#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:418 msgid "Data files" msgstr "" -#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:418 +#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:414 msgid "Autoextend increment" msgstr "" -#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:419 +#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:415 msgid "" " The increment size for extending the size of an autoextending tablespace " "when it becomes full." msgstr "" -#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:420 +#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:416 msgid "Buffer pool size" msgstr "" -#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:421 +#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:417 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." msgstr "" -#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:112 +#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:108 msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:426 +#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:422 #: server_status.php:306 msgid "InnoDB Status" msgstr "" -#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:113 +#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:109 msgid "Buffer Pool Usage" msgstr "" -#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1114 +#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1110 #: server_databases.php:137 server_databases.php:305 server_status.php:414 #: server_status.php:475 server_status.php:496 tbl_printview.php:351 #: tbl_structure.php:697 msgid "Total" msgstr "" -#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:425 +#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:421 msgid "pages" msgstr "" -#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:343 +#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:339 msgid "Free pages" msgstr "" -#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:259 +#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:255 msgid "Dirty pages" msgstr "" -#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:230 +#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:226 msgid "Pages containing data" msgstr "" -#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:598 +#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:594 msgid "Pages to be flushed" msgstr "" -#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:119 +#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:115 msgid "Busy pages" msgstr "" -#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:467 +#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:463 msgid "Latched pages" msgstr "" -#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:111 +#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:107 msgid "Buffer Pool Activity" msgstr "" -#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:731 +#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:727 msgid "Read requests" msgstr "" -#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1244 +#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1240 msgid "Write requests" msgstr "" -#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:115 +#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:111 msgid "Read misses" msgstr "" -#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:117 +#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:113 msgid "Write waits" msgstr "" -#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:114 +#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:110 msgid "Read misses in %" msgstr "" -#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:116 +#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:112 msgid "Write waits in %" msgstr "" -#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:522 +#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:518 msgid "Data pointer size" msgstr "" -#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:523 +#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:519 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." msgstr "" -#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:528 +#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:524 msgid "Automatic recovery mode" msgstr "" -#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:529 +#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:525 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." msgstr "" -#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:527 +#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:523 msgid "Maximum size for temporary sort files" msgstr "" -#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:526 +#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:522 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " "INFILE)." msgstr "" -#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:525 +#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:521 msgid "Maximum size for temporary files on index creation" msgstr "" -#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:524 +#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:520 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " "method." msgstr "" -#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:531 +#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:527 msgid "Repair threads" msgstr "" -#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:530 +#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:526 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." msgstr "" -#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:533 +#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:529 msgid "Sort buffer size" msgstr "" -#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:532 +#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:528 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." msgstr "" -#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:620 +#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:616 msgid "Index cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:619 +#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:615 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." msgstr "" -#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:630 +#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:626 msgid "Record cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:629 +#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:625 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " "to the handle data (.xtd) and row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:624 +#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:620 msgid "Log cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:623 +#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:619 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:628 +#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:624 msgid "Log file threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:627 +#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:623 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:634 +#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:630 msgid "Transaction buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:633 +#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:629 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." msgstr "" -#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:611 +#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:607 msgid "Checkpoint frequency" msgstr "" -#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:612 +#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:608 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." msgstr "" -#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:615 +#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:611 msgid "Data log threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:616 +#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:612 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -2568,48 +2578,48 @@ msgid "" "that can be stored in the database." msgstr "" -#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:618 +#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:614 msgid "Garbage threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:617 +#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:613 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." msgstr "" -#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:622 +#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:618 msgid "Log buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:621 +#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:617 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " "required to write a data log." msgstr "" -#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:613 +#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:609 msgid "Data file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:614 +#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:610 msgid "The grow size of the handle data (.xtd) files." msgstr "" -#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:632 +#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:628 msgid "Row file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:631 +#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:627 msgid "The grow size of the row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:626 +#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:622 msgid "Log file count" msgstr "" -#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:625 +#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:621 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -2619,19 +2629,19 @@ msgstr "" #: libraries/export/htmlword.php:132 libraries/export/odt.php:168 #: libraries/export/sql.php:881 libraries/export/texytext.php:130 -#: libraries/messages.inc.php:275 +#: libraries/messages.inc.php:271 msgid "Dumping data for table" msgstr "" #: libraries/export/htmlword.php:185 libraries/export/odt.php:238 #: libraries/export/sql.php:785 libraries/export/texytext.php:177 -#: libraries/messages.inc.php:1086 +#: libraries/messages.inc.php:1082 msgid "Table structure for table" msgstr "" #: libraries/export/latex.php:125 libraries/export/sql.php:232 #: libraries/export/xml.php:102 libraries/header_printview.inc.php:57 -#: libraries/messages.inc.php:381 libraries/replication_gui.lib.php:63 +#: libraries/messages.inc.php:377 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:170 libraries/replication_gui.lib.php:265 #: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325 #: server_privileges.php:692 server_privileges.php:695 @@ -2643,183 +2653,183 @@ msgstr "" #: libraries/export/latex.php:130 libraries/export/sql.php:233 #: libraries/export/xml.php:107 libraries/header_printview.inc.php:59 -#: libraries/messages.inc.php:354 +#: libraries/messages.inc.php:350 msgid "Generation Time" msgstr "" #: libraries/export/latex.php:131 libraries/export/sql.php:235 -#: libraries/export/xml.php:108 libraries/messages.inc.php:864 main.php:186 +#: libraries/export/xml.php:108 libraries/messages.inc.php:860 main.php:186 msgid "Server version" msgstr "" #: libraries/export/latex.php:132 libraries/export/sql.php:236 -#: libraries/export/xml.php:109 libraries/messages.inc.php:651 +#: libraries/export/xml.php:109 libraries/messages.inc.php:647 msgid "PHP Version" msgstr "" #: libraries/export/latex.php:201 libraries/export/sql.php:868 -#: libraries/messages.inc.php:226 server_databases.php:127 +#: libraries/messages.inc.php:222 server_databases.php:127 #: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317 #: tbl_structure.php:666 msgid "Data" msgstr "" -#: libraries/export/odt.php:318 libraries/messages.inc.php:506 +#: libraries/export/odt.php:318 libraries/messages.inc.php:502 #: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "" -#: libraries/export/sql.php:387 libraries/messages.inc.php:711 +#: libraries/export/sql.php:387 libraries/messages.inc.php:707 msgid "Procedures" msgstr "" -#: libraries/export/sql.php:401 libraries/messages.inc.php:348 +#: libraries/export/sql.php:401 libraries/messages.inc.php:344 msgid "Functions" msgstr "" -#: libraries/export/sql.php:618 libraries/messages.inc.php:174 +#: libraries/export/sql.php:618 libraries/messages.inc.php:170 msgid "Constraints for dumped tables" msgstr "" -#: libraries/export/sql.php:627 libraries/messages.inc.php:175 +#: libraries/export/sql.php:627 libraries/messages.inc.php:171 msgid "Constraints for table" msgstr "" -#: libraries/export/sql.php:727 libraries/messages.inc.php:512 +#: libraries/export/sql.php:727 libraries/messages.inc.php:508 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/export/sql.php:739 libraries/messages.inc.php:743 +#: libraries/export/sql.php:739 libraries/messages.inc.php:739 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/export/sql.php:796 libraries/messages.inc.php:1178 +#: libraries/export/sql.php:796 libraries/messages.inc.php:1174 #: libraries/tbl_triggers.lib.php:19 msgid "Triggers" msgstr "" -#: libraries/export/sql.php:808 libraries/messages.inc.php:1046 +#: libraries/export/sql.php:808 libraries/messages.inc.php:1042 msgid "Structure for view" msgstr "" -#: libraries/export/sql.php:817 libraries/messages.inc.php:1029 +#: libraries/export/sql.php:817 libraries/messages.inc.php:1025 msgid "Stand-in structure for view" msgstr "" #: libraries/footer.inc.php:184 libraries/footer.inc.php:195 -#: libraries/footer.inc.php:198 libraries/messages.inc.php:586 +#: libraries/footer.inc.php:198 libraries/messages.inc.php:582 msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/header.inc.php:115 libraries/messages.inc.php:542 +#: libraries/header.inc.php:115 libraries/messages.inc.php:538 msgid "New table" msgstr "" #: libraries/header_printview.inc.php:50 libraries/header_printview.inc.php:55 -#: libraries/messages.inc.php:1024 +#: libraries/messages.inc.php:1020 msgid "SQL result" msgstr "" -#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:350 +#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:346 msgid "Generated by" msgstr "" #: libraries/header_printview.inc.php:63 libraries/import.lib.php:145 -#: libraries/messages.inc.php:820 navigation.php:652 navigation.php:674 +#: libraries/messages.inc.php:816 navigation.php:652 navigation.php:674 #: server_databases.php:122 tbl_printview.php:394 tbl_structure.php:366 #: tbl_structure.php:778 msgid "Rows" msgstr "" -#: libraries/import.lib.php:150 libraries/messages.inc.php:285 sql.php:520 +#: libraries/import.lib.php:150 libraries/messages.inc.php:281 sql.php:520 #: tbl_change.php:181 tbl_get_field.php:35 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" -#: libraries/import.lib.php:1078 libraries/messages.inc.php:399 +#: libraries/import.lib.php:1078 libraries/messages.inc.php:395 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1079 libraries/messages.inc.php:400 +#: libraries/import.lib.php:1079 libraries/messages.inc.php:396 msgid "View a structure`s contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1080 libraries/messages.inc.php:401 +#: libraries/import.lib.php:1080 libraries/messages.inc.php:397 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1081 libraries/messages.inc.php:402 +#: libraries/import.lib.php:1081 libraries/messages.inc.php:398 msgid "Edit its structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1084 libraries/messages.inc.php:362 +#: libraries/import.lib.php:1084 libraries/messages.inc.php:358 msgid "Go to database" msgstr "" #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:869 +#: libraries/messages.inc.php:865 msgid "settings" msgstr "" -#: libraries/import.lib.php:1106 libraries/messages.inc.php:363 +#: libraries/import.lib.php:1106 libraries/messages.inc.php:359 msgid "Go to table" msgstr "" -#: libraries/import.lib.php:1109 libraries/messages.inc.php:1047 +#: libraries/import.lib.php:1109 libraries/messages.inc.php:1043 msgid "structure" msgstr "" -#: libraries/import.lib.php:1115 libraries/messages.inc.php:364 +#: libraries/import.lib.php:1115 libraries/messages.inc.php:360 msgid "Go to view" msgstr "" #: libraries/import/csv.php:58 libraries/import/csv.php:70 #: libraries/import/csv.php:74 libraries/import/csv.php:78 -#: libraries/messages.inc.php:442 +#: libraries/messages.inc.php:438 #, possible-php-format msgid "Invalid parameter for CSV import: %s" msgstr "" -#: libraries/import/csv.php:59 libraries/messages.inc.php:323 +#: libraries/import/csv.php:59 libraries/messages.inc.php:319 msgid "Fields terminated by" msgstr "" -#: libraries/import/csv.php:71 libraries/messages.inc.php:320 +#: libraries/import/csv.php:71 libraries/messages.inc.php:316 msgid "Fields enclosed by" msgstr "" -#: libraries/import/csv.php:75 libraries/messages.inc.php:321 +#: libraries/import/csv.php:75 libraries/messages.inc.php:317 msgid "Fields escaped by" msgstr "" -#: libraries/import/csv.php:79 libraries/messages.inc.php:481 +#: libraries/import/csv.php:79 libraries/messages.inc.php:477 msgid "Lines terminated by" msgstr "" -#: libraries/import/csv.php:119 libraries/messages.inc.php:439 +#: libraries/import/csv.php:119 libraries/messages.inc.php:435 #, possible-php-format msgid "Invalid column (%s) specified!" msgstr "" #: libraries/import/csv.php:177 libraries/import/csv.php:424 -#: libraries/messages.inc.php:441 +#: libraries/messages.inc.php:437 #, possible-php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/import/csv.php:312 libraries/messages.inc.php:440 +#: libraries/import/csv.php:312 libraries/messages.inc.php:436 #, possible-php-format msgid "Invalid field count in CSV input on line %d." msgstr "" -#: libraries/import/ldi.php:55 libraries/messages.inc.php:446 +#: libraries/import/ldi.php:55 libraries/messages.inc.php:442 msgid "This plugin does not support compressed imports!" msgstr "" #: libraries/import/xml.php:74 libraries/import/xml.php:130 -#: libraries/messages.inc.php:1247 +#: libraries/messages.inc.php:1243 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -2846,773 +2856,763 @@ msgstr "" msgid "ltr" msgstr "" -#. l10n: Thousands separator -#: libraries/messages.inc.php:21 -msgid "," -msgstr "" - -#. l10n: Decimal separator -#: libraries/messages.inc.php:23 -msgid "." -msgstr "" - -#: libraries/messages.inc.php:25 server_status.php:461 +#: libraries/messages.inc.php:21 server_status.php:461 msgid "Aborted" msgstr "" -#: libraries/messages.inc.php:28 main.php:68 +#: libraries/messages.inc.php:24 main.php:68 msgid "Actions" msgstr "" -#: libraries/messages.inc.php:34 libraries/tbl_properties.inc.php:780 +#: libraries/messages.inc.php:30 libraries/tbl_properties.inc.php:780 #: tbl_structure.php:543 #, possible-php-format msgid "Add %s field(s)" msgstr "" -#: libraries/messages.inc.php:35 +#: libraries/messages.inc.php:31 msgid "Add custom comment into header (\\n splits lines)" msgstr "" -#: libraries/messages.inc.php:36 +#: libraries/messages.inc.php:32 msgid "Add into comments" msgstr "" -#: libraries/messages.inc.php:37 tbl_structure.php:541 +#: libraries/messages.inc.php:33 tbl_structure.php:541 msgid "Add new field" msgstr "" -#: libraries/messages.inc.php:38 server_privileges.php:1886 +#: libraries/messages.inc.php:34 server_privileges.php:1886 msgid "Add privileges on the following database" msgstr "" -#: libraries/messages.inc.php:39 server_privileges.php:1907 +#: libraries/messages.inc.php:35 server_privileges.php:1907 msgid "Add privileges on the following table" msgstr "" -#: libraries/messages.inc.php:40 tbl_select.php:288 +#: libraries/messages.inc.php:36 tbl_select.php:288 msgid "Add search conditions (body of the \"where\" clause):" msgstr "" -#: libraries/messages.inc.php:41 tbl_indexes.php:251 +#: libraries/messages.inc.php:37 tbl_indexes.php:251 #, possible-php-format msgid "Add to index  %s column(s)" msgstr "" -#: libraries/messages.inc.php:42 server_privileges.php:1570 +#: libraries/messages.inc.php:38 server_privileges.php:1570 #: server_privileges.php:1594 server_privileges.php:1988 #: server_privileges.php:2177 msgid "Add a new User" msgstr "" -#: libraries/messages.inc.php:43 server_privileges.php:931 +#: libraries/messages.inc.php:39 server_privileges.php:931 msgid "You have added a new user." msgstr "" -#: libraries/messages.inc.php:44 server_privileges.php:571 +#: libraries/messages.inc.php:40 server_privileges.php:571 msgid "Administration" msgstr "" -#: libraries/messages.inc.php:45 tbl_structure.php:557 +#: libraries/messages.inc.php:41 tbl_structure.php:557 #, possible-php-format msgid "After %s" msgstr "" -#: libraries/messages.inc.php:46 tbl_change.php:1147 +#: libraries/messages.inc.php:42 tbl_change.php:1147 msgid "Go back to previous page" msgstr "" -#: libraries/messages.inc.php:47 tbl_change.php:1148 +#: libraries/messages.inc.php:43 tbl_change.php:1148 msgid "Insert another new row" msgstr "" -#: libraries/messages.inc.php:48 tbl_change.php:1160 +#: libraries/messages.inc.php:44 tbl_change.php:1160 msgid "Edit next row" msgstr "" -#: libraries/messages.inc.php:49 tbl_change.php:1152 +#: libraries/messages.inc.php:45 tbl_change.php:1152 msgid "Go back to this page" msgstr "" -#: libraries/messages.inc.php:50 querywindow.php:115 +#: libraries/messages.inc.php:46 querywindow.php:115 msgid "All" msgstr "" -#: libraries/messages.inc.php:53 tbl_operations.php:249 +#: libraries/messages.inc.php:49 tbl_operations.php:249 msgid "Alter table order by" msgstr "" -#: libraries/messages.inc.php:54 tbl_operations.php:660 +#: libraries/messages.inc.php:50 tbl_operations.php:660 msgid "Analyze" msgstr "" -#: libraries/messages.inc.php:57 +#: libraries/messages.inc.php:53 msgid "and" msgstr "" -#: libraries/messages.inc.php:59 pmd_general.php:87 +#: libraries/messages.inc.php:55 pmd_general.php:87 msgid "Angular links" msgstr "" -#: libraries/messages.inc.php:60 tbl_structure.php:401 tbl_structure.php:415 +#: libraries/messages.inc.php:56 tbl_structure.php:401 tbl_structure.php:415 #: tbl_structure.php:429 #, possible-php-format msgid "An index has been added on %s" msgstr "" -#: libraries/messages.inc.php:61 server_privileges.php:1521 +#: libraries/messages.inc.php:57 server_privileges.php:1521 #: server_privileges.php:2123 msgid "Any" msgstr "" -#: libraries/messages.inc.php:62 libraries/replication_gui.lib.php:298 +#: libraries/messages.inc.php:58 libraries/replication_gui.lib.php:298 #: server_privileges.php:725 msgid "Any host" msgstr "" -#: libraries/messages.inc.php:63 libraries/replication_gui.lib.php:250 +#: libraries/messages.inc.php:59 libraries/replication_gui.lib.php:250 #: server_privileges.php:677 msgid "Any user" msgstr "" -#: libraries/messages.inc.php:64 server_synchronize.php:449 +#: libraries/messages.inc.php:60 server_synchronize.php:449 #: server_synchronize.php:894 msgid "Apply Selected Changes" msgstr "" -#: libraries/messages.inc.php:66 tbl_structure.php:386 +#: libraries/messages.inc.php:62 tbl_structure.php:386 #, possible-php-format msgid "A primary key has been added on %s" msgstr "" -#: libraries/messages.inc.php:67 libraries/mysql_charsets.lib.php:368 +#: libraries/messages.inc.php:63 libraries/mysql_charsets.lib.php:368 msgid "Arabic" msgstr "" -#: libraries/messages.inc.php:68 libraries/mysql_charsets.lib.php:359 +#: libraries/messages.inc.php:64 libraries/mysql_charsets.lib.php:359 msgid "Armenian" msgstr "" -#: libraries/messages.inc.php:70 libraries/tbl_properties.inc.php:394 +#: libraries/messages.inc.php:66 libraries/tbl_properties.inc.php:394 msgid "As defined:" msgstr "" -#: libraries/messages.inc.php:71 tbl_structure.php:556 +#: libraries/messages.inc.php:67 tbl_structure.php:556 msgid "At Beginning of Table" msgstr "" -#: libraries/messages.inc.php:72 tbl_structure.php:555 +#: libraries/messages.inc.php:68 tbl_structure.php:555 msgid "At End of Table" msgstr "" -#: libraries/messages.inc.php:73 libraries/tbl_properties.inc.php:108 +#: libraries/messages.inc.php:69 libraries/tbl_properties.inc.php:108 #: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:144 #: tbl_structure.php:180 msgid "Attributes" msgstr "" -#: libraries/messages.inc.php:74 pdf_pages.php:303 pdf_pages.php:306 +#: libraries/messages.inc.php:70 pdf_pages.php:303 pdf_pages.php:306 msgid "Automatic layout" msgstr "" -#: libraries/messages.inc.php:77 libraries/mysql_charsets.lib.php:354 +#: libraries/messages.inc.php:73 libraries/mysql_charsets.lib.php:354 msgid "Baltic" msgstr "" -#: libraries/messages.inc.php:78 libraries/sqlparser.lib.php:175 +#: libraries/messages.inc.php:74 libraries/sqlparser.lib.php:175 msgid "BEGIN CUT" msgstr "" -#: libraries/messages.inc.php:79 libraries/sqlparser.lib.php:179 +#: libraries/messages.inc.php:75 libraries/sqlparser.lib.php:179 msgid "BEGIN RAW" msgstr "" -#: libraries/messages.inc.php:80 libraries/mysql_charsets.lib.php:201 +#: libraries/messages.inc.php:76 libraries/mysql_charsets.lib.php:201 #: libraries/mysql_charsets.lib.php:402 tbl_change.php:518 msgid "Binary" msgstr "" -#: libraries/messages.inc.php:81 tbl_change.php:894 +#: libraries/messages.inc.php:77 tbl_change.php:894 msgid "Binary - do not edit" msgstr "" -#: libraries/messages.inc.php:82 libraries/server_links.inc.php:76 +#: libraries/messages.inc.php:78 libraries/server_links.inc.php:76 #: server_binlog.php:110 server_status.php:253 test/theme.php:121 msgid "Binary log" msgstr "" -#: libraries/messages.inc.php:83 server_binlog.php:217 +#: libraries/messages.inc.php:79 server_binlog.php:217 msgid "Event type" msgstr "" -#: libraries/messages.inc.php:84 server_binlog.php:220 +#: libraries/messages.inc.php:80 server_binlog.php:220 msgid "Information" msgstr "" -#: libraries/messages.inc.php:85 server_binlog.php:215 +#: libraries/messages.inc.php:81 server_binlog.php:215 msgid "Log name" msgstr "" -#: libraries/messages.inc.php:86 server_binlog.php:219 +#: libraries/messages.inc.php:82 server_binlog.php:219 msgid "Original position" msgstr "" -#: libraries/messages.inc.php:87 server_binlog.php:216 +#: libraries/messages.inc.php:83 server_binlog.php:216 msgid "Position" msgstr "" -#: libraries/messages.inc.php:88 libraries/replication_gui.lib.php:169 +#: libraries/messages.inc.php:84 libraries/replication_gui.lib.php:169 #: server_binlog.php:218 msgid "Server ID" msgstr "" -#: libraries/messages.inc.php:92 +#: libraries/messages.inc.php:88 msgctxt "$strBLOBRepositoryDisabled" msgid "Disabled" msgstr "" -#: libraries/messages.inc.php:95 +#: libraries/messages.inc.php:91 msgctxt "$strBLOBRepositoryEnabled" msgid "Enabled" msgstr "" -#: libraries/messages.inc.php:97 tbl_change.php:888 +#: libraries/messages.inc.php:93 tbl_change.php:888 msgid "Remove BLOB Repository Reference" msgstr "" -#: libraries/messages.inc.php:98 +#: libraries/messages.inc.php:94 msgctxt "$strBLOBRepositoryRepair" msgid "Repair" msgstr "" -#: libraries/messages.inc.php:99 tbl_change.php:987 +#: libraries/messages.inc.php:95 tbl_change.php:987 msgid "Upload to BLOB repository" msgstr "" -#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:359 +#: libraries/messages.inc.php:96 libraries/sql_query_form.lib.php:359 #: sql.php:677 msgid "Let every user access this bookmark" msgstr "" -#: libraries/messages.inc.php:103 sql.php:671 +#: libraries/messages.inc.php:99 sql.php:671 msgid "Label" msgstr "" -#: libraries/messages.inc.php:104 libraries/sql_query_form.lib.php:433 +#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:433 msgid "Bookmarked SQL query" msgstr "" -#: libraries/messages.inc.php:105 libraries/sql_query_form.lib.php:365 +#: libraries/messages.inc.php:101 libraries/sql_query_form.lib.php:365 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/messages.inc.php:106 libraries/sql_query_form.lib.php:352 +#: libraries/messages.inc.php:102 libraries/sql_query_form.lib.php:352 #: sql.php:665 sql.php:666 sql.php:683 msgid "Bookmark this SQL query" msgstr "" -#: libraries/messages.inc.php:107 libraries/sql_query_form.lib.php:466 +#: libraries/messages.inc.php:103 libraries/sql_query_form.lib.php:466 msgid "View only" msgstr "" -#: libraries/messages.inc.php:109 tbl_structure.php:161 +#: libraries/messages.inc.php:105 tbl_structure.php:161 msgid "Browse distinct values" msgstr "" -#: libraries/messages.inc.php:110 tbl_change.php:252 tbl_select.php:27 +#: libraries/messages.inc.php:106 tbl_change.php:252 tbl_select.php:27 #: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34 msgid "Browse foreign values" msgstr "" -#: libraries/messages.inc.php:118 libraries/mysql_charsets.lib.php:213 +#: libraries/messages.inc.php:114 libraries/mysql_charsets.lib.php:213 msgid "Bulgarian" msgstr "" -#: libraries/messages.inc.php:120 +#: libraries/messages.inc.php:116 msgid "\"bzipped\"" msgstr "" -#: libraries/messages.inc.php:122 +#: libraries/messages.inc.php:118 msgid "Calendar" msgstr "" -#: libraries/messages.inc.php:129 tbl_indexes.php:75 +#: libraries/messages.inc.php:125 tbl_indexes.php:75 msgid "Can't rename index to PRIMARY!" msgstr "" -#: libraries/messages.inc.php:132 libraries/mysql_charsets.lib.php:223 +#: libraries/messages.inc.php:128 libraries/mysql_charsets.lib.php:223 #: libraries/mysql_charsets.lib.php:409 msgid "case-insensitive" msgstr "" -#: libraries/messages.inc.php:133 libraries/mysql_charsets.lib.php:226 +#: libraries/messages.inc.php:129 libraries/mysql_charsets.lib.php:226 #: libraries/mysql_charsets.lib.php:411 msgid "case-sensitive" msgstr "" -#: libraries/messages.inc.php:134 libraries/mysql_charsets.lib.php:332 +#: libraries/messages.inc.php:130 libraries/mysql_charsets.lib.php:332 msgid "Central European" msgstr "" -#: libraries/messages.inc.php:136 server_privileges.php:1969 +#: libraries/messages.inc.php:132 server_privileges.php:1969 msgid "... keep the old one." msgstr "" -#: libraries/messages.inc.php:137 server_privileges.php:1967 +#: libraries/messages.inc.php:133 server_privileges.php:1967 msgid "Create a new user with the same privileges and ..." msgstr "" -#: libraries/messages.inc.php:138 server_privileges.php:1972 +#: libraries/messages.inc.php:134 server_privileges.php:1972 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/messages.inc.php:139 server_privileges.php:1970 +#: libraries/messages.inc.php:135 server_privileges.php:1970 msgid " ... delete the old one from the user tables." msgstr "" -#: libraries/messages.inc.php:140 server_privileges.php:1971 +#: libraries/messages.inc.php:136 server_privileges.php:1971 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/messages.inc.php:141 server_privileges.php:1964 +#: libraries/messages.inc.php:137 server_privileges.php:1964 msgid "Change Login Information / Copy User" msgstr "" -#: libraries/messages.inc.php:144 libraries/mysql_charsets.lib.php:107 +#: libraries/messages.inc.php:140 libraries/mysql_charsets.lib.php:107 msgid "Charset" msgstr "" -#: libraries/messages.inc.php:146 server_collations.php:40 +#: libraries/messages.inc.php:142 server_collations.php:40 msgid "Character Sets and Collations" msgstr "" -#: libraries/messages.inc.php:147 libraries/server_links.inc.php:57 +#: libraries/messages.inc.php:143 libraries/server_links.inc.php:57 #: test/theme.php:109 msgid "Charsets" msgstr "" -#: libraries/messages.inc.php:149 tbl_operations.php:661 +#: libraries/messages.inc.php:145 tbl_operations.php:661 msgid "Check" msgstr "" -#: libraries/messages.inc.php:151 server_databases.php:293 +#: libraries/messages.inc.php:147 server_databases.php:293 #: server_databases.php:294 msgid "Check Privileges" msgstr "" -#: libraries/messages.inc.php:152 server_databases.php:289 +#: libraries/messages.inc.php:148 server_databases.php:289 #, possible-php-format msgid "Check privileges for database "%s"." msgstr "" -#: libraries/messages.inc.php:154 pdf_pages.php:261 +#: libraries/messages.inc.php:150 pdf_pages.php:261 msgid "Please choose a page to edit" msgstr "" -#: libraries/messages.inc.php:157 +#: libraries/messages.inc.php:153 msgid "Displaying Column Comments" msgstr "" -#: libraries/messages.inc.php:159 pdf_pages.php:483 view_create.php:148 +#: libraries/messages.inc.php:155 pdf_pages.php:483 view_create.php:148 msgid "Column names" msgstr "" -#: libraries/messages.inc.php:160 server_privileges.php:1685 +#: libraries/messages.inc.php:156 server_privileges.php:1685 msgid "Column-specific privileges" msgstr "" -#: libraries/messages.inc.php:164 +#: libraries/messages.inc.php:160 msgid "MySQL 4.0 compatible" msgstr "" -#: libraries/messages.inc.php:165 +#: libraries/messages.inc.php:161 msgid "Complete inserts" msgstr "" -#: libraries/messages.inc.php:168 +#: libraries/messages.inc.php:164 #, possible-php-format msgid "Could not load default configuration from: \"%1$s\"" msgstr "" -#: libraries/messages.inc.php:169 main.php:306 +#: libraries/messages.inc.php:165 main.php:306 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: libraries/messages.inc.php:171 pdf_schema.php:672 +#: libraries/messages.inc.php:167 pdf_schema.php:672 #, possible-php-format msgid "Please configure the coordinates for table %s" msgstr "" -#: libraries/messages.inc.php:173 server_status.php:433 +#: libraries/messages.inc.php:169 server_status.php:433 msgid "Connections" msgstr "" -#: libraries/messages.inc.php:179 tbl_operations.php:509 +#: libraries/messages.inc.php:175 tbl_operations.php:509 msgid "Copy table to (database.table):" msgstr "" -#: libraries/messages.inc.php:180 tbl_move_copy.php:58 +#: libraries/messages.inc.php:176 tbl_move_copy.php:58 #, possible-php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/messages.inc.php:181 tbl_move_copy.php:48 +#: libraries/messages.inc.php:177 tbl_move_copy.php:48 msgid "Can't copy table to same one!" msgstr "" -#: libraries/messages.inc.php:182 server_synchronize.php:94 +#: libraries/messages.inc.php:178 server_synchronize.php:94 msgid "Could not connect to the source" msgstr "" -#: libraries/messages.inc.php:183 server_synchronize.php:97 +#: libraries/messages.inc.php:179 server_synchronize.php:97 msgid "Could not connect to the target" msgstr "" -#: libraries/messages.inc.php:184 server_processlist.php:24 +#: libraries/messages.inc.php:180 server_processlist.php:24 #, possible-php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: libraries/messages.inc.php:187 +#: libraries/messages.inc.php:183 #, possible-php-format msgid "Create an index on %s columns" msgstr "" -#: libraries/messages.inc.php:188 tbl_indexes.php:160 +#: libraries/messages.inc.php:184 tbl_indexes.php:160 msgid "Create a new index" msgstr "" -#: libraries/messages.inc.php:191 pdf_pages.php:297 pmd_pdf.php:114 +#: libraries/messages.inc.php:187 pdf_pages.php:297 pmd_pdf.php:114 msgid "Create a page" msgstr "" -#: libraries/messages.inc.php:192 +#: libraries/messages.inc.php:188 msgid "Creation of PDFs" msgstr "" -#: libraries/messages.inc.php:193 pmd_general.php:74 pmd_general.php:306 +#: libraries/messages.inc.php:189 pmd_general.php:74 pmd_general.php:306 msgid "Create relation" msgstr "" -#: libraries/messages.inc.php:194 pmd_general.php:71 +#: libraries/messages.inc.php:190 pmd_general.php:71 #: server_synchronize.php:429 server_synchronize.php:872 msgid "Create table" msgstr "" -#: libraries/messages.inc.php:195 +#: libraries/messages.inc.php:191 msgctxt "$strCreateTableShort" msgid "Create table" msgstr "" -#: libraries/messages.inc.php:196 server_privileges.php:1994 +#: libraries/messages.inc.php:192 server_privileges.php:1994 msgid "Database for user" msgstr "" -#: libraries/messages.inc.php:197 server_privileges.php:1999 +#: libraries/messages.inc.php:193 server_privileges.php:1999 msgid "Create database with same name and grant all privileges" msgstr "" -#: libraries/messages.inc.php:198 +#: libraries/messages.inc.php:194 msgctxt "$strCreateUserDatabaseNone" msgid "None" msgstr "" -#: libraries/messages.inc.php:199 server_privileges.php:2003 +#: libraries/messages.inc.php:195 server_privileges.php:2003 #, possible-php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: libraries/messages.inc.php:200 server_privileges.php:2000 +#: libraries/messages.inc.php:196 server_privileges.php:2000 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: libraries/messages.inc.php:201 +#: libraries/messages.inc.php:197 msgid "Creation/Update/Check dates" msgstr "" -#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:229 +#: libraries/messages.inc.php:199 libraries/mysql_charsets.lib.php:229 msgid "Croatian" msgstr "" -#: libraries/messages.inc.php:204 +#: libraries/messages.inc.php:200 msgid "CSV" msgstr "" -#: libraries/messages.inc.php:205 libraries/server_synchronize.lib.php:1343 +#: libraries/messages.inc.php:201 libraries/server_synchronize.lib.php:1343 #: libraries/server_synchronize.lib.php:1369 msgid "Current server" msgstr "" -#: libraries/messages.inc.php:206 main.php:159 +#: libraries/messages.inc.php:202 main.php:159 msgid "Custom color" msgstr "" -#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:365 +#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:365 msgid "Cyrillic" msgstr "" -#: libraries/messages.inc.php:208 libraries/mysql_charsets.lib.php:232 +#: libraries/messages.inc.php:204 libraries/mysql_charsets.lib.php:232 msgid "Czech" msgstr "" -#: libraries/messages.inc.php:209 libraries/mysql_charsets.lib.php:383 +#: libraries/messages.inc.php:205 libraries/mysql_charsets.lib.php:383 msgid "Czech-Slovak" msgstr "" -#: libraries/messages.inc.php:211 libraries/mysql_charsets.lib.php:235 +#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:235 msgid "Danish" msgstr "" -#: libraries/messages.inc.php:214 +#: libraries/messages.inc.php:210 msgid "Database export options" msgstr "" -#: libraries/messages.inc.php:217 server_synchronize.php:122 +#: libraries/messages.inc.php:213 server_synchronize.php:122 #: server_synchronize.php:125 tbl_create.php:82 tbl_get_field.php:20 #, possible-php-format msgid "'%s' database does not exist." msgstr "" -#: libraries/messages.inc.php:219 server_databases.php:63 +#: libraries/messages.inc.php:215 server_databases.php:63 #, possible-php-format msgid "%s databases have been dropped successfully." msgstr "" -#: libraries/messages.inc.php:220 libraries/server_synchronize.lib.php:1341 +#: libraries/messages.inc.php:216 libraries/server_synchronize.lib.php:1341 #: server_synchronize.php:1110 msgid "Source database" msgstr "" -#: libraries/messages.inc.php:221 server_databases.php:88 +#: libraries/messages.inc.php:217 server_databases.php:88 msgid "Databases statistics" msgstr "" -#: libraries/messages.inc.php:222 server_databases.php:362 +#: libraries/messages.inc.php:218 server_databases.php:362 #: server_databases.php:363 msgid "Disable Statistics" msgstr "" -#: libraries/messages.inc.php:223 server_databases.php:358 +#: libraries/messages.inc.php:219 server_databases.php:358 #: server_databases.php:359 msgid "Enable Statistics" msgstr "" -#: libraries/messages.inc.php:224 server_databases.php:366 +#: libraries/messages.inc.php:220 server_databases.php:366 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." msgstr "" -#: libraries/messages.inc.php:225 libraries/server_synchronize.lib.php:1367 +#: libraries/messages.inc.php:221 libraries/server_synchronize.lib.php:1367 #: server_synchronize.php:1112 msgid "Target database" msgstr "" -#: libraries/messages.inc.php:228 server_synchronize.php:425 +#: libraries/messages.inc.php:224 server_synchronize.php:425 #: server_synchronize.php:868 msgid "Data Difference" msgstr "" -#: libraries/messages.inc.php:231 server_synchronize.php:272 +#: libraries/messages.inc.php:227 server_synchronize.php:272 msgid "Data Synchronization" msgstr "" -#: libraries/messages.inc.php:235 server_privileges.php:526 +#: libraries/messages.inc.php:231 server_privileges.php:526 #: server_privileges.php:1679 msgid "Database-specific privileges" msgstr "" -#: libraries/messages.inc.php:237 server_privileges.php:2136 +#: libraries/messages.inc.php:233 server_privileges.php:2136 msgid "database-specific" msgstr "" -#: libraries/messages.inc.php:240 libraries/tbl_properties.inc.php:106 +#: libraries/messages.inc.php:236 libraries/tbl_properties.inc.php:106 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" msgstr "" -#: libraries/messages.inc.php:241 tbl_operations.php:589 +#: libraries/messages.inc.php:237 tbl_operations.php:589 msgid "Defragment table" msgstr "" -#: libraries/messages.inc.php:242 +#: libraries/messages.inc.php:238 msgid "Use delayed inserts" msgstr "" -#: libraries/messages.inc.php:245 server_privileges.php:1243 +#: libraries/messages.inc.php:241 server_privileges.php:1243 msgid "No users selected for deleting!" msgstr "" -#: libraries/messages.inc.php:246 pmd_general.php:372 +#: libraries/messages.inc.php:242 pmd_general.php:372 msgid "Delete relation" msgstr "" -#: libraries/messages.inc.php:248 server_privileges.php:1232 +#: libraries/messages.inc.php:244 server_privileges.php:1232 #, possible-php-format msgid "Deleting %s" msgstr "" -#: libraries/messages.inc.php:249 libraries/sql_query_form.lib.php:388 +#: libraries/messages.inc.php:245 libraries/sql_query_form.lib.php:388 msgid "Delimiter" msgstr "" -#: libraries/messages.inc.php:250 pdf_pages.php:506 +#: libraries/messages.inc.php:246 pdf_pages.php:506 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" msgstr "" -#: libraries/messages.inc.php:254 pmd_help.php:29 +#: libraries/messages.inc.php:250 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." msgstr "" -#: libraries/messages.inc.php:256 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:252 libraries/mysql_charsets.lib.php:247 msgid "dictionary" msgstr "" -#: libraries/messages.inc.php:257 libraries/server_synchronize.lib.php:1348 +#: libraries/messages.inc.php:253 libraries/server_synchronize.lib.php:1348 msgid "Difference" msgstr "" -#: libraries/messages.inc.php:258 pmd_general.php:87 +#: libraries/messages.inc.php:254 pmd_general.php:87 msgid "Direct links" msgstr "" -#: libraries/messages.inc.php:261 +#: libraries/messages.inc.php:257 msgid "Disable foreign key checks" msgstr "" -#: libraries/messages.inc.php:262 +#: libraries/messages.inc.php:258 msgid "Display Features" msgstr "" -#: libraries/messages.inc.php:263 tbl_select.php:301 +#: libraries/messages.inc.php:259 tbl_select.php:301 msgid "Display order:" msgstr "" -#: libraries/messages.inc.php:265 tbl_select.php:132 +#: libraries/messages.inc.php:261 tbl_select.php:132 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "" -#: libraries/messages.inc.php:266 +#: libraries/messages.inc.php:262 msgid "DocSQL" msgstr "" -#: libraries/messages.inc.php:268 +#: libraries/messages.inc.php:264 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/messages.inc.php:273 server_privileges.php:1579 +#: libraries/messages.inc.php:269 server_privileges.php:1579 #: server_privileges.php:1580 server_privileges.php:1581 msgid "Drop the databases that have the same names as the users." msgstr "" -#: libraries/messages.inc.php:278 tbl_printview.php:382 tbl_structure.php:743 +#: libraries/messages.inc.php:274 tbl_printview.php:382 tbl_structure.php:743 msgid "dynamic" msgstr "" -#: libraries/messages.inc.php:282 server_privileges.php:1324 +#: libraries/messages.inc.php:278 server_privileges.php:1324 #: server_privileges.php:1610 msgid "Edit Privileges" msgstr "" -#: libraries/messages.inc.php:283 tbl_printview.php:341 tbl_structure.php:688 +#: libraries/messages.inc.php:279 tbl_printview.php:341 tbl_structure.php:688 msgid "Effective" msgstr "" -#: libraries/messages.inc.php:286 libraries/relation.lib.php:100 +#: libraries/messages.inc.php:282 libraries/relation.lib.php:100 msgid "Enabled" msgstr "" -#: libraries/messages.inc.php:287 +#: libraries/messages.inc.php:283 msgid "Enclose export in a transaction" msgstr "" -#: libraries/messages.inc.php:288 libraries/sqlparser.lib.php:177 +#: libraries/messages.inc.php:284 libraries/sqlparser.lib.php:177 msgid "END CUT" msgstr "" -#: libraries/messages.inc.php:290 libraries/sqlparser.lib.php:183 +#: libraries/messages.inc.php:286 libraries/sqlparser.lib.php:183 msgid "END RAW" msgstr "" -#: libraries/messages.inc.php:293 libraries/server_links.inc.php:61 +#: libraries/messages.inc.php:289 libraries/server_links.inc.php:61 #: test/theme.php:113 msgid "Engines" msgstr "" -#: libraries/messages.inc.php:295 libraries/mysql_charsets.lib.php:238 +#: libraries/messages.inc.php:291 libraries/mysql_charsets.lib.php:238 msgid "English" msgstr "" -#: libraries/messages.inc.php:296 server_privileges.php:393 +#: libraries/messages.inc.php:292 server_privileges.php:393 #: server_privileges.php:535 server_privileges.php:1501 msgid " Note: MySQL privilege names are expressed in English " msgstr "" -#: libraries/messages.inc.php:298 libraries/zip_extension.lib.php:49 +#: libraries/messages.inc.php:294 libraries/zip_extension.lib.php:49 #: libraries/zip_extension.lib.php:51 libraries/zip_extension.lib.php:66 msgid "Error in ZIP archive:" msgstr "" -#: libraries/messages.inc.php:303 libraries/mysql_charsets.lib.php:241 +#: libraries/messages.inc.php:299 libraries/mysql_charsets.lib.php:241 msgid "Esperanto" msgstr "" -#: libraries/messages.inc.php:304 libraries/mysql_charsets.lib.php:244 +#: libraries/messages.inc.php:300 libraries/mysql_charsets.lib.php:244 msgid "Estonian" msgstr "" -#: libraries/messages.inc.php:305 libraries/tbl_triggers.lib.php:29 +#: libraries/messages.inc.php:301 libraries/tbl_triggers.lib.php:29 msgid "Event" msgstr "" -#: libraries/messages.inc.php:307 +#: libraries/messages.inc.php:303 msgid "Excel edition" msgstr "" -#: libraries/messages.inc.php:311 pmd_pdf.php:85 +#: libraries/messages.inc.php:307 pmd_pdf.php:85 msgid "Export/Import to scale" msgstr "" -#: libraries/messages.inc.php:313 +#: libraries/messages.inc.php:309 msgid "Extended inserts" msgstr "" -#: libraries/messages.inc.php:314 pdf_schema.php:1267 pdf_schema.php:1288 +#: libraries/messages.inc.php:310 pdf_schema.php:1267 pdf_schema.php:1288 #: tbl_printview.php:147 tbl_structure.php:183 tbl_tracking.php:278 msgid "Extra" msgstr "" -#: libraries/messages.inc.php:316 server_status.php:447 +#: libraries/messages.inc.php:312 server_status.php:447 msgid "Failed attempts" msgstr "" -#: libraries/messages.inc.php:318 tbl_structure.php:375 +#: libraries/messages.inc.php:314 tbl_structure.php:375 #, possible-php-format msgid "Field %s has been dropped" msgstr "" -#: libraries/messages.inc.php:322 libraries/sql_query_form.lib.php:317 +#: libraries/messages.inc.php:318 libraries/sql_query_form.lib.php:317 msgid "Fields" msgstr "" -#: libraries/messages.inc.php:332 server_binlog.php:136 +#: libraries/messages.inc.php:328 server_binlog.php:136 msgid "Files" msgstr "" -#: libraries/messages.inc.php:334 server_privileges.php:1597 +#: libraries/messages.inc.php:330 server_privileges.php:1597 #, possible-php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -3621,217 +3621,217 @@ msgid "" "sreload the privileges%s before you continue." msgstr "" -#: libraries/messages.inc.php:335 server_status.php:289 +#: libraries/messages.inc.php:331 server_status.php:289 msgid "Flush query cache" msgstr "" -#: libraries/messages.inc.php:336 +#: libraries/messages.inc.php:332 msgid "Flush the table (\"FLUSH\")" msgstr "" -#: libraries/messages.inc.php:337 server_status.php:271 +#: libraries/messages.inc.php:333 server_status.php:271 msgid "Flush (close) all tables" msgstr "" -#: libraries/messages.inc.php:339 tbl_relation.php:279 +#: libraries/messages.inc.php:335 tbl_relation.php:279 #, possible-php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" -#: libraries/messages.inc.php:341 setup/lib/messages.inc.php:88 +#: libraries/messages.inc.php:337 setup/lib/messages.inc.php:88 #: tbl_printview.php:376 tbl_structure.php:738 msgid "Format" msgstr "" -#: libraries/messages.inc.php:344 server_replication.php:325 +#: libraries/messages.inc.php:340 server_replication.php:325 msgid "Full start" msgstr "" -#: libraries/messages.inc.php:345 server_replication.php:325 +#: libraries/messages.inc.php:341 server_replication.php:325 msgid "Full stop" msgstr "" -#: libraries/messages.inc.php:347 tbl_change.php:282 tbl_change.php:320 +#: libraries/messages.inc.php:343 tbl_change.php:282 tbl_change.php:320 msgid "Function" msgstr "" -#: libraries/messages.inc.php:355 libraries/mysql_charsets.lib.php:377 +#: libraries/messages.inc.php:351 libraries/mysql_charsets.lib.php:377 msgid "Georgian" msgstr "" -#: libraries/messages.inc.php:356 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:352 libraries/mysql_charsets.lib.php:247 #: libraries/mysql_charsets.lib.php:250 msgid "German" msgstr "" -#: libraries/messages.inc.php:357 themes.php:42 +#: libraries/messages.inc.php:353 themes.php:42 msgid "Get more themes!" msgstr "" -#: libraries/messages.inc.php:358 server_privileges.php:2134 +#: libraries/messages.inc.php:354 server_privileges.php:2134 msgid "global" msgstr "" -#: libraries/messages.inc.php:359 server_privileges.php:524 +#: libraries/messages.inc.php:355 server_privileges.php:524 #: server_privileges.php:1500 msgid "Global privileges" msgstr "" -#: libraries/messages.inc.php:360 server_variables.php:55 +#: libraries/messages.inc.php:356 server_variables.php:55 #: server_variables.php:89 msgid "Global value" msgstr "" -#: libraries/messages.inc.php:365 server_privileges.php:1502 +#: libraries/messages.inc.php:361 server_privileges.php:1502 #: server_privileges.php:1684 server_privileges.php:2033 msgid "Grant" msgstr "" -#: libraries/messages.inc.php:366 libraries/mysql_charsets.lib.php:380 +#: libraries/messages.inc.php:362 libraries/mysql_charsets.lib.php:380 msgid "Greek" msgstr "" -#: libraries/messages.inc.php:367 +#: libraries/messages.inc.php:363 msgid "\"gzipped\"" msgstr "" -#: libraries/messages.inc.php:369 server_status.php:250 +#: libraries/messages.inc.php:365 server_status.php:250 msgid "Handler" msgstr "" -#: libraries/messages.inc.php:370 server_synchronize.php:464 +#: libraries/messages.inc.php:366 server_synchronize.php:464 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: libraries/messages.inc.php:372 libraries/mysql_charsets.lib.php:374 +#: libraries/messages.inc.php:368 libraries/mysql_charsets.lib.php:374 msgid "Hebrew" msgstr "" -#: libraries/messages.inc.php:373 pmd_general.php:83 +#: libraries/messages.inc.php:369 pmd_general.php:83 msgid "Help" msgstr "" -#: libraries/messages.inc.php:374 +#: libraries/messages.inc.php:370 msgid "Use hexadecimal for BLOB" msgstr "" -#: libraries/messages.inc.php:376 pmd_general.php:120 +#: libraries/messages.inc.php:372 pmd_general.php:120 msgid "Hide/Show all" msgstr "" -#: libraries/messages.inc.php:377 pmd_general.php:124 +#: libraries/messages.inc.php:373 pmd_general.php:124 msgid "Hide/Show Tables with no relation" msgstr "" -#: libraries/messages.inc.php:378 libraries/navigation_header.inc.php:54 +#: libraries/messages.inc.php:374 libraries/navigation_header.inc.php:54 #: libraries/navigation_header.inc.php:57 #: libraries/navigation_header.inc.php:58 msgid "Home" msgstr "" -#: libraries/messages.inc.php:379 main.php:233 +#: libraries/messages.inc.php:375 main.php:233 msgid "Official Homepage" msgstr "" -#: libraries/messages.inc.php:382 libraries/replication_gui.lib.php:327 +#: libraries/messages.inc.php:378 libraries/replication_gui.lib.php:327 #: server_privileges.php:753 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/messages.inc.php:383 +#: libraries/messages.inc.php:379 msgid "Microsoft Word 2000" msgstr "" -#: libraries/messages.inc.php:384 libraries/mysql_charsets.lib.php:253 +#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:253 msgid "Hungarian" msgstr "" -#: libraries/messages.inc.php:386 libraries/mysql_charsets.lib.php:256 +#: libraries/messages.inc.php:382 libraries/mysql_charsets.lib.php:256 msgid "Icelandic" msgstr "" -#: libraries/messages.inc.php:387 server_processlist.php:53 +#: libraries/messages.inc.php:383 server_processlist.php:53 msgid "ID" msgstr "" -#: libraries/messages.inc.php:388 libraries/mult_submits.inc.php:108 +#: libraries/messages.inc.php:384 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:479 msgid "Fulltext" msgstr "" -#: libraries/messages.inc.php:389 +#: libraries/messages.inc.php:385 msgid "Ignore duplicate rows" msgstr "" -#: libraries/messages.inc.php:390 tbl_change.php:302 tbl_indexes.php:200 +#: libraries/messages.inc.php:386 tbl_change.php:302 tbl_indexes.php:200 #: tbl_indexes.php:225 msgid "Ignore" msgstr "" -#: libraries/messages.inc.php:391 +#: libraries/messages.inc.php:387 msgid "Use ignore inserts" msgstr "" -#: libraries/messages.inc.php:392 +#: libraries/messages.inc.php:388 msgid "Column names in first row" msgstr "" -#: libraries/messages.inc.php:393 +#: libraries/messages.inc.php:389 msgid "Do not import empty rows" msgstr "" -#: libraries/messages.inc.php:394 pmd_general.php:104 +#: libraries/messages.inc.php:390 pmd_general.php:104 msgid "Import/Export coordinates for PDF schema" msgstr "" -#: libraries/messages.inc.php:395 querywindow.php:104 +#: libraries/messages.inc.php:391 querywindow.php:104 msgid "Import files" msgstr "" -#: libraries/messages.inc.php:403 +#: libraries/messages.inc.php:399 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/messages.inc.php:404 libraries/messages.inc.php:584 +#: libraries/messages.inc.php:400 libraries/messages.inc.php:580 msgid "Open Document Spreadsheet" msgstr "" -#: libraries/messages.inc.php:405 +#: libraries/messages.inc.php:401 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/messages.inc.php:409 +#: libraries/messages.inc.php:405 msgid "Excel 97-2003 XLS Workbook" msgstr "" -#: libraries/messages.inc.php:410 +#: libraries/messages.inc.php:406 msgid "Excel 2007 XLSX Workbook" msgstr "" -#: libraries/messages.inc.php:414 libraries/mult_submits.inc.php:98 +#: libraries/messages.inc.php:410 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:476 tbl_structure.php:674 msgid "Index" msgstr "" -#: libraries/messages.inc.php:415 tbl_indexes.php:168 +#: libraries/messages.inc.php:411 tbl_indexes.php:168 msgid "Index name:" msgstr "" -#: libraries/messages.inc.php:416 tbl_indexes.php:174 +#: libraries/messages.inc.php:412 tbl_indexes.php:174 msgid "Index type:" msgstr "" -#: libraries/messages.inc.php:417 sql.php:639 +#: libraries/messages.inc.php:413 sql.php:639 #, possible-php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: libraries/messages.inc.php:427 main.php:266 +#: libraries/messages.inc.php:423 main.php:266 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -3839,194 +3839,194 @@ msgid "" "this security hole by setting a password for user 'root'." msgstr "" -#: libraries/messages.inc.php:428 tbl_change.php:1130 +#: libraries/messages.inc.php:424 tbl_change.php:1130 msgid "Insert as new row" msgstr "" -#: libraries/messages.inc.php:429 sql.php:496 tbl_replace.php:386 +#: libraries/messages.inc.php:425 sql.php:496 tbl_replace.php:386 #, possible-php-format msgid "Inserted row id: %1$d" msgstr "" -#: libraries/messages.inc.php:430 tbl_change.php:1131 +#: libraries/messages.inc.php:426 tbl_change.php:1131 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/messages.inc.php:432 main.php:139 +#: libraries/messages.inc.php:428 main.php:139 msgid "Interface" msgstr "" -#: libraries/messages.inc.php:433 tbl_relation.php:407 +#: libraries/messages.inc.php:429 tbl_relation.php:407 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: libraries/messages.inc.php:435 pdf_pages.php:303 +#: libraries/messages.inc.php:431 pdf_pages.php:303 msgid "Internal relations" msgstr "" -#: libraries/messages.inc.php:438 tbl_indexes.php:256 tbl_structure.php:590 +#: libraries/messages.inc.php:434 tbl_indexes.php:256 tbl_structure.php:590 #: tbl_structure.php:601 msgid "Column count has to be larger than zero." msgstr "" -#: libraries/messages.inc.php:444 libraries/tbl_properties.inc.php:784 +#: libraries/messages.inc.php:440 libraries/tbl_properties.inc.php:784 #: tbl_structure.php:537 msgid "You have to add at least one field." msgstr "" -#: libraries/messages.inc.php:449 +#: libraries/messages.inc.php:445 #, possible-php-format msgid "Invalid server index: \"%s\"" msgstr "" -#: libraries/messages.inc.php:452 libraries/mysql_charsets.lib.php:259 +#: libraries/messages.inc.php:448 libraries/mysql_charsets.lib.php:259 #: libraries/mysql_charsets.lib.php:349 msgid "Japanese" msgstr "" -#: libraries/messages.inc.php:453 main.php:331 +#: libraries/messages.inc.php:449 main.php:331 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: libraries/messages.inc.php:454 server_status.php:257 +#: libraries/messages.inc.php:450 server_status.php:257 msgid "Joins" msgstr "" -#: libraries/messages.inc.php:457 server_privileges.php:763 +#: libraries/messages.inc.php:453 server_privileges.php:763 msgid "Do not change the password" msgstr "" -#: libraries/messages.inc.php:458 server_status.php:256 +#: libraries/messages.inc.php:454 server_status.php:256 msgid "Key cache" msgstr "" -#: libraries/messages.inc.php:462 libraries/mysql_charsets.lib.php:268 +#: libraries/messages.inc.php:458 libraries/mysql_charsets.lib.php:268 #: libraries/mysql_charsets.lib.php:371 msgid "Korean" msgstr "" -#: libraries/messages.inc.php:466 libraries/select_lang.lib.php:480 +#: libraries/messages.inc.php:462 libraries/select_lang.lib.php:480 #: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492 #, possible-php-format msgid "Unknown language: %1$s." msgstr "" -#: libraries/messages.inc.php:468 +#: libraries/messages.inc.php:464 msgid "Table caption" msgstr "" -#: libraries/messages.inc.php:469 +#: libraries/messages.inc.php:465 msgid "Content of table __TABLE__" msgstr "" -#: libraries/messages.inc.php:470 +#: libraries/messages.inc.php:466 msgid "Continued table caption" msgstr "" -#: libraries/messages.inc.php:471 +#: libraries/messages.inc.php:467 msgid "(continued)" msgstr "" -#: libraries/messages.inc.php:472 +#: libraries/messages.inc.php:468 msgid "Include table caption" msgstr "" -#: libraries/messages.inc.php:473 +#: libraries/messages.inc.php:469 msgid "Label key" msgstr "" -#: libraries/messages.inc.php:474 +#: libraries/messages.inc.php:470 msgid "LaTeX" msgstr "" -#: libraries/messages.inc.php:475 +#: libraries/messages.inc.php:471 msgid "Structure of table __TABLE__" msgstr "" -#: libraries/messages.inc.php:476 libraries/mysql_charsets.lib.php:262 +#: libraries/messages.inc.php:472 libraries/mysql_charsets.lib.php:262 msgid "Latvian" msgstr "" -#: libraries/messages.inc.php:477 +#: libraries/messages.inc.php:473 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/messages.inc.php:478 +#: libraries/messages.inc.php:474 msgid "Use LOCAL keyword" msgstr "" -#: libraries/messages.inc.php:479 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:475 libraries/tbl_properties.inc.php:105 msgid "Length/Values" msgstr "" -#: libraries/messages.inc.php:480 tbl_select.php:295 +#: libraries/messages.inc.php:476 tbl_select.php:295 msgid "Number of rows per page" msgstr "" -#: libraries/messages.inc.php:484 libraries/mysql_charsets.lib.php:265 +#: libraries/messages.inc.php:480 libraries/mysql_charsets.lib.php:265 msgid "Lithuanian" msgstr "" -#: libraries/messages.inc.php:485 libraries/replication_gui.lib.php:302 +#: libraries/messages.inc.php:481 libraries/replication_gui.lib.php:302 #: server_privileges.php:729 msgid "Local" msgstr "" -#: libraries/messages.inc.php:487 server_privileges.php:669 +#: libraries/messages.inc.php:483 server_privileges.php:669 msgid "Login Information" msgstr "" -#: libraries/messages.inc.php:490 libraries/navigation_header.inc.php:67 +#: libraries/messages.inc.php:486 libraries/navigation_header.inc.php:67 #: libraries/navigation_header.inc.php:70 #: libraries/navigation_header.inc.php:71 main.php:99 msgid "Log out" msgstr "" -#: libraries/messages.inc.php:497 server_status.php:440 +#: libraries/messages.inc.php:493 server_status.php:440 msgid "max. concurrent connections" msgstr "" -#: libraries/messages.inc.php:498 +#: libraries/messages.inc.php:494 msgid "Maximal length of created query" msgstr "" -#: libraries/messages.inc.php:500 main.php:282 +#: libraries/messages.inc.php:496 main.php:282 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " "split strings correctly and it may result in unexpected results." msgstr "" -#: libraries/messages.inc.php:501 main.php:274 +#: libraries/messages.inc.php:497 main.php:274 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " "corrupted!" msgstr "" -#: libraries/messages.inc.php:502 +#: libraries/messages.inc.php:498 msgid "MediaWiki Table" msgstr "" -#: libraries/messages.inc.php:503 transformation_overview.php:25 +#: libraries/messages.inc.php:499 transformation_overview.php:25 msgid "Available MIME types" msgstr "" -#: libraries/messages.inc.php:504 transformation_overview.php:43 +#: libraries/messages.inc.php:500 transformation_overview.php:43 msgid "Available transformations" msgstr "" -#: libraries/messages.inc.php:505 +#: libraries/messages.inc.php:501 msgctxt "$strMIME_description" msgid "Description" msgstr "" -#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:580 +#: libraries/messages.inc.php:503 libraries/tbl_properties.inc.php:580 #: transformation_overview.php:60 #, possible-php-format msgid "" @@ -4034,14 +4034,14 @@ msgid "" "author what %s does." msgstr "" -#: libraries/messages.inc.php:509 libraries/tbl_properties.inc.php:137 +#: libraries/messages.inc.php:505 libraries/tbl_properties.inc.php:137 #, possible-php-format msgid "" "For a list of available transformation options and their MIME type " "transformations, click on %stransformation descriptions%s" msgstr "" -#: libraries/messages.inc.php:510 libraries/tbl_properties.inc.php:146 +#: libraries/messages.inc.php:506 libraries/tbl_properties.inc.php:146 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -4049,455 +4049,455 @@ msgid "" "'\\\\xyz' or 'a\\'b')." msgstr "" -#: libraries/messages.inc.php:511 libraries/tbl_properties.inc.php:145 +#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:145 msgid "Transformation options" msgstr "" -#: libraries/messages.inc.php:513 transformation_overview.php:38 +#: libraries/messages.inc.php:509 transformation_overview.php:38 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "" -#: libraries/messages.inc.php:515 tbl_indexes.php:162 +#: libraries/messages.inc.php:511 tbl_indexes.php:162 msgid "Modify an index" msgstr "" -#: libraries/messages.inc.php:517 pmd_general.php:108 +#: libraries/messages.inc.php:513 pmd_general.php:108 msgid "Move Menu" msgstr "" -#: libraries/messages.inc.php:518 tbl_operations.php:276 +#: libraries/messages.inc.php:514 tbl_operations.php:276 msgid "Move table to (database.table):" msgstr "" -#: libraries/messages.inc.php:519 tbl_move_copy.php:56 +#: libraries/messages.inc.php:515 tbl_move_copy.php:56 #, possible-php-format msgid "Table %s has been moved to %s." msgstr "" -#: libraries/messages.inc.php:520 tbl_move_copy.php:46 +#: libraries/messages.inc.php:516 tbl_move_copy.php:46 msgid "Can't move table to same one!" msgstr "" -#: libraries/messages.inc.php:521 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:517 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 #: libraries/mysql_charsets.lib.php:332 libraries/mysql_charsets.lib.php:354 #: libraries/mysql_charsets.lib.php:365 msgid "multilingual" msgstr "" -#: libraries/messages.inc.php:534 main.php:193 +#: libraries/messages.inc.php:530 main.php:193 msgid "MySQL charset" msgstr "" -#: libraries/messages.inc.php:535 main.php:211 +#: libraries/messages.inc.php:531 main.php:211 msgid "MySQL client version" msgstr "" -#: libraries/messages.inc.php:536 main.php:125 +#: libraries/messages.inc.php:532 main.php:125 msgid "MySQL connection collation" msgstr "" -#: libraries/messages.inc.php:537 main.php:346 +#: libraries/messages.inc.php:533 main.php:346 #, possible-php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: libraries/messages.inc.php:539 server_status.php:294 +#: libraries/messages.inc.php:535 server_status.php:294 msgid "Show processes" msgstr "" -#: libraries/messages.inc.php:545 navigation.php:210 server_databases.php:371 +#: libraries/messages.inc.php:541 navigation.php:210 server_databases.php:371 #: server_synchronize.php:1191 msgid "No databases" msgstr "" -#: libraries/messages.inc.php:546 server_databases.php:52 +#: libraries/messages.inc.php:542 server_databases.php:52 msgid "No databases selected." msgstr "" -#: libraries/messages.inc.php:548 libraries/relation.lib.php:1173 +#: libraries/messages.inc.php:544 libraries/relation.lib.php:1173 msgid "no description" msgstr "" -#: libraries/messages.inc.php:552 libraries/zip_extension.lib.php:26 +#: libraries/messages.inc.php:548 libraries/zip_extension.lib.php:26 msgid "No files found inside ZIP archive!" msgstr "" -#: libraries/messages.inc.php:555 tbl_indexes.php:91 +#: libraries/messages.inc.php:551 tbl_indexes.php:91 msgid "No index parts defined!" msgstr "" -#: libraries/messages.inc.php:556 libraries/mult_submits.inc.php:435 +#: libraries/messages.inc.php:552 libraries/mult_submits.inc.php:435 #: tbl_replace.php:331 msgid "No change" msgstr "" -#: libraries/messages.inc.php:557 +#: libraries/messages.inc.php:553 msgctxt "$strNoneDefault" msgid "None" msgstr "" -#: libraries/messages.inc.php:560 libraries/plugin_interface.lib.php:312 +#: libraries/messages.inc.php:556 libraries/plugin_interface.lib.php:312 msgid "This format has no options" msgstr "" -#: libraries/messages.inc.php:565 user_password.php:54 +#: libraries/messages.inc.php:561 user_password.php:54 msgid "You don't have sufficient privileges to be here right now!" msgstr "" -#: libraries/messages.inc.php:566 tbl_row_action.php:29 +#: libraries/messages.inc.php:562 tbl_row_action.php:29 msgid "No rows selected" msgstr "" -#: libraries/messages.inc.php:569 themes.php:32 +#: libraries/messages.inc.php:565 themes.php:32 #, possible-php-format msgid "" "No themes support; please check your configuration and/or your themes in " "directory %s." msgstr "" -#: libraries/messages.inc.php:571 libraries/relation.lib.php:95 +#: libraries/messages.inc.php:567 libraries/relation.lib.php:95 msgid "not OK" msgstr "" -#: libraries/messages.inc.php:572 server_synchronize.php:400 +#: libraries/messages.inc.php:568 server_synchronize.php:400 #: server_synchronize.php:839 msgid "not present" msgstr "" -#: libraries/messages.inc.php:573 pdf_pages.php:36 pdf_pages.php:42 +#: libraries/messages.inc.php:569 pdf_pages.php:36 pdf_pages.php:42 #: pdf_pages.php:48 pdf_pages.php:53 #, possible-php-format msgid "%s table not found or not set in %s" msgstr "" -#: libraries/messages.inc.php:574 server_privileges.php:804 +#: libraries/messages.inc.php:570 server_privileges.php:804 #: server_privileges.php:2166 msgid "No user(s) found." msgstr "" -#: libraries/messages.inc.php:578 pmd_general.php:164 +#: libraries/messages.inc.php:574 pmd_general.php:164 msgid "Number of tables" msgstr "" -#: libraries/messages.inc.php:581 server_databases.php:117 +#: libraries/messages.inc.php:577 server_databases.php:117 #: server_status.php:260 setup/lib/messages.inc.php:117 msgid "Tables" msgstr "" -#: libraries/messages.inc.php:583 libraries/relation.lib.php:99 +#: libraries/messages.inc.php:579 libraries/relation.lib.php:99 #: pmd_general.php:340 msgid "OK" msgstr "" -#: libraries/messages.inc.php:585 +#: libraries/messages.inc.php:581 msgid "Open Document Text" msgstr "" -#: libraries/messages.inc.php:588 tbl_select.php:138 +#: libraries/messages.inc.php:584 tbl_select.php:138 msgid "Operator" msgstr "" -#: libraries/messages.inc.php:589 tbl_operations.php:662 +#: libraries/messages.inc.php:585 tbl_operations.php:662 msgid "Optimize" msgstr "" -#: libraries/messages.inc.php:602 libraries/tbl_properties.inc.php:755 +#: libraries/messages.inc.php:598 libraries/tbl_properties.inc.php:755 msgid "PARTITION definition" msgstr "" -#: libraries/messages.inc.php:603 tbl_structure.php:757 +#: libraries/messages.inc.php:599 tbl_structure.php:757 msgid "partitioned" msgstr "" -#: libraries/messages.inc.php:604 tbl_operations.php:649 +#: libraries/messages.inc.php:600 tbl_operations.php:649 msgid "Partition maintenance" msgstr "" -#: libraries/messages.inc.php:605 tbl_operations.php:657 +#: libraries/messages.inc.php:601 tbl_operations.php:657 #, possible-php-format msgid "Partition %s" msgstr "" -#: libraries/messages.inc.php:606 server_privileges.php:1212 +#: libraries/messages.inc.php:602 server_privileges.php:1212 #, possible-php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/messages.inc.php:635 +#: libraries/messages.inc.php:631 #, possible-php-format msgid "Schema of the \"%s\" database - Page %s" msgstr "" -#: libraries/messages.inc.php:636 +#: libraries/messages.inc.php:632 #, possible-php-format msgid "The \"%s\" table doesn't exist!" msgstr "" -#: libraries/messages.inc.php:637 pdf_schema.php:1013 +#: libraries/messages.inc.php:633 pdf_schema.php:1013 msgid "No tables" msgstr "" -#: libraries/messages.inc.php:638 pmd_pdf.php:63 +#: libraries/messages.inc.php:634 pmd_pdf.php:63 msgid "Page has been created" msgstr "" -#: libraries/messages.inc.php:639 pmd_pdf.php:65 +#: libraries/messages.inc.php:635 pmd_pdf.php:65 msgid "Page creation failed" msgstr "" -#: libraries/messages.inc.php:640 +#: libraries/messages.inc.php:636 msgid "PDF" msgstr "" -#: libraries/messages.inc.php:641 +#: libraries/messages.inc.php:637 msgid "(Generates a report containing the data of a single table)" msgstr "" -#: libraries/messages.inc.php:642 +#: libraries/messages.inc.php:638 msgid "Report title" msgstr "" -#: libraries/messages.inc.php:643 server_status.php:389 server_status.php:434 +#: libraries/messages.inc.php:639 server_status.php:389 server_status.php:434 #: server_status.php:497 server_status.php:555 msgid "per hour" msgstr "" -#: libraries/messages.inc.php:644 server_status.php:498 +#: libraries/messages.inc.php:640 server_status.php:498 msgid "per minute" msgstr "" -#: libraries/messages.inc.php:645 server_status.php:499 +#: libraries/messages.inc.php:641 server_status.php:499 msgid "per second" msgstr "" -#: libraries/messages.inc.php:646 libraries/mysql_charsets.lib.php:271 +#: libraries/messages.inc.php:642 libraries/mysql_charsets.lib.php:271 msgid "Persian" msgstr "" -#: libraries/messages.inc.php:647 libraries/mysql_charsets.lib.php:250 +#: libraries/messages.inc.php:643 libraries/mysql_charsets.lib.php:250 msgid "phone book" msgstr "" -#: libraries/messages.inc.php:648 +#: libraries/messages.inc.php:644 msgid "PHP array" msgstr "" -#: libraries/messages.inc.php:650 main.php:213 +#: libraries/messages.inc.php:646 main.php:213 msgid "PHP extension" msgstr "" -#: libraries/messages.inc.php:654 libraries/relation.lib.php:163 +#: libraries/messages.inc.php:650 libraries/relation.lib.php:163 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/messages.inc.php:655 libraries/relation.lib.php:159 +#: libraries/messages.inc.php:651 libraries/relation.lib.php:159 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/messages.inc.php:656 libraries/relation.lib.php:161 +#: libraries/messages.inc.php:652 libraries/relation.lib.php:161 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" -#: libraries/messages.inc.php:657 libraries/relation.lib.php:162 +#: libraries/messages.inc.php:653 libraries/relation.lib.php:162 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/messages.inc.php:658 libraries/relation.lib.php:164 +#: libraries/messages.inc.php:654 libraries/relation.lib.php:164 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/messages.inc.php:661 libraries/mysql_charsets.lib.php:274 +#: libraries/messages.inc.php:657 libraries/mysql_charsets.lib.php:274 msgid "Polish" msgstr "" -#: libraries/messages.inc.php:662 libraries/replication_gui.lib.php:67 +#: libraries/messages.inc.php:658 libraries/replication_gui.lib.php:67 #: server_synchronize.php:1163 msgid "Port" msgstr "" -#: libraries/messages.inc.php:667 tbl_indexes.php:67 +#: libraries/messages.inc.php:663 tbl_indexes.php:67 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "" -#: libraries/messages.inc.php:668 tbl_indexes.php:184 +#: libraries/messages.inc.php:664 tbl_indexes.php:184 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" -#: libraries/messages.inc.php:669 libraries/mult_submits.inc.php:76 +#: libraries/messages.inc.php:665 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:474 msgid "Primary" msgstr "" -#: libraries/messages.inc.php:673 server_privileges.php:227 +#: libraries/messages.inc.php:669 server_privileges.php:227 msgid "Includes all privileges except GRANT." msgstr "" -#: libraries/messages.inc.php:674 server_privileges.php:153 +#: libraries/messages.inc.php:670 server_privileges.php:153 #: server_privileges.php:476 msgid "Allows altering the structure of existing tables." msgstr "" -#: libraries/messages.inc.php:675 server_privileges.php:169 +#: libraries/messages.inc.php:671 server_privileges.php:169 #: server_privileges.php:482 msgid "Allows altering and dropping stored routines." msgstr "" -#: libraries/messages.inc.php:676 server_privileges.php:145 +#: libraries/messages.inc.php:672 server_privileges.php:145 #: server_privileges.php:475 msgid "Allows creating new databases and tables." msgstr "" -#: libraries/messages.inc.php:677 server_privileges.php:168 +#: libraries/messages.inc.php:673 server_privileges.php:168 #: server_privileges.php:481 msgid "Allows creating stored routines." msgstr "" -#: libraries/messages.inc.php:678 server_privileges.php:475 +#: libraries/messages.inc.php:674 server_privileges.php:475 msgid "Allows creating new tables." msgstr "" -#: libraries/messages.inc.php:679 server_privileges.php:156 +#: libraries/messages.inc.php:675 server_privileges.php:156 #: server_privileges.php:479 msgid "Allows creating temporary tables." msgstr "" -#: libraries/messages.inc.php:680 server_privileges.php:170 +#: libraries/messages.inc.php:676 server_privileges.php:170 #: server_privileges.php:515 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: libraries/messages.inc.php:681 server_privileges.php:160 +#: libraries/messages.inc.php:677 server_privileges.php:160 #: server_privileges.php:164 server_privileges.php:487 #: server_privileges.php:491 msgid "Allows creating new views." msgstr "" -#: libraries/messages.inc.php:682 server_privileges.php:144 +#: libraries/messages.inc.php:678 server_privileges.php:144 #: server_privileges.php:467 msgid "Allows deleting data." msgstr "" -#: libraries/messages.inc.php:683 server_privileges.php:146 +#: libraries/messages.inc.php:679 server_privileges.php:146 #: server_privileges.php:478 msgid "Allows dropping databases and tables." msgstr "" -#: libraries/messages.inc.php:684 server_privileges.php:478 +#: libraries/messages.inc.php:680 server_privileges.php:478 msgid "Allows dropping tables." msgstr "" -#: libraries/messages.inc.php:685 server_privileges.php:161 +#: libraries/messages.inc.php:681 server_privileges.php:161 #: server_privileges.php:495 msgid "Allows to set up events for the event scheduler" msgstr "" -#: libraries/messages.inc.php:686 server_privileges.php:171 +#: libraries/messages.inc.php:682 server_privileges.php:171 #: server_privileges.php:483 msgid "Allows executing stored routines." msgstr "" -#: libraries/messages.inc.php:687 server_privileges.php:150 +#: libraries/messages.inc.php:683 server_privileges.php:150 #: server_privileges.php:470 msgid "Allows importing data from and exporting data into files." msgstr "" -#: libraries/messages.inc.php:688 server_privileges.php:501 +#: libraries/messages.inc.php:684 server_privileges.php:501 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: libraries/messages.inc.php:689 server_privileges.php:152 +#: libraries/messages.inc.php:685 server_privileges.php:152 #: server_privileges.php:477 msgid "Allows creating and dropping indexes." msgstr "" -#: libraries/messages.inc.php:690 server_privileges.php:142 +#: libraries/messages.inc.php:686 server_privileges.php:142 #: server_privileges.php:403 server_privileges.php:465 msgid "Allows inserting and replacing data." msgstr "" -#: libraries/messages.inc.php:691 server_privileges.php:157 +#: libraries/messages.inc.php:687 server_privileges.php:157 #: server_privileges.php:510 msgid "Allows locking tables for the current thread." msgstr "" -#: libraries/messages.inc.php:692 server_privileges.php:607 +#: libraries/messages.inc.php:688 server_privileges.php:607 #: server_privileges.php:609 msgid "Limits the number of new connections the user may open per hour." msgstr "" -#: libraries/messages.inc.php:693 server_privileges.php:595 +#: libraries/messages.inc.php:689 server_privileges.php:595 #: server_privileges.php:597 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" -#: libraries/messages.inc.php:694 server_privileges.php:601 +#: libraries/messages.inc.php:690 server_privileges.php:601 #: server_privileges.php:603 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" -#: libraries/messages.inc.php:695 server_privileges.php:613 +#: libraries/messages.inc.php:691 server_privileges.php:613 #: server_privileges.php:615 msgid "Limits the number of simultaneous connections the user may have." msgstr "" -#: libraries/messages.inc.php:696 server_privileges.php:149 +#: libraries/messages.inc.php:692 server_privileges.php:149 #: server_privileges.php:505 msgid "Allows viewing processes of all users" msgstr "" -#: libraries/messages.inc.php:697 server_privileges.php:151 +#: libraries/messages.inc.php:693 server_privileges.php:151 #: server_privileges.php:409 server_privileges.php:511 msgid "Has no effect in this MySQL version." msgstr "" -#: libraries/messages.inc.php:698 server_privileges.php:147 +#: libraries/messages.inc.php:694 server_privileges.php:147 #: server_privileges.php:506 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: libraries/messages.inc.php:699 server_privileges.php:159 +#: libraries/messages.inc.php:695 server_privileges.php:159 #: server_privileges.php:513 msgid "Allows the user to ask where the slaves / masters are." msgstr "" -#: libraries/messages.inc.php:700 server_privileges.php:158 +#: libraries/messages.inc.php:696 server_privileges.php:158 #: server_privileges.php:514 msgid "Needed for the replication slaves." msgstr "" -#: libraries/messages.inc.php:701 server_privileges.php:141 +#: libraries/messages.inc.php:697 server_privileges.php:141 #: server_privileges.php:400 server_privileges.php:464 msgid "Allows reading data." msgstr "" -#: libraries/messages.inc.php:702 server_privileges.php:154 +#: libraries/messages.inc.php:698 server_privileges.php:154 #: server_privileges.php:508 msgid "Gives access to the complete list of databases." msgstr "" -#: libraries/messages.inc.php:703 server_privileges.php:165 +#: libraries/messages.inc.php:699 server_privileges.php:165 #: server_privileges.php:167 server_privileges.php:480 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: libraries/messages.inc.php:704 server_privileges.php:148 +#: libraries/messages.inc.php:700 server_privileges.php:148 #: server_privileges.php:507 msgid "Allows shutting down the server." msgstr "" -#: libraries/messages.inc.php:705 server_privileges.php:155 +#: libraries/messages.inc.php:701 server_privileges.php:155 #: server_privileges.php:504 msgid "" "Allows connecting, even if maximum number of connections is reached; " @@ -4505,190 +4505,190 @@ msgid "" "killing threads of other users." msgstr "" -#: libraries/messages.inc.php:706 server_privileges.php:162 +#: libraries/messages.inc.php:702 server_privileges.php:162 #: server_privileges.php:496 msgid "Allows creating and dropping triggers" msgstr "" -#: libraries/messages.inc.php:707 server_privileges.php:143 +#: libraries/messages.inc.php:703 server_privileges.php:143 #: server_privileges.php:406 server_privileges.php:466 msgid "Allows changing data." msgstr "" -#: libraries/messages.inc.php:708 server_privileges.php:221 +#: libraries/messages.inc.php:704 server_privileges.php:221 msgid "No privileges." msgstr "" -#: libraries/messages.inc.php:710 server_privileges.php:1296 +#: libraries/messages.inc.php:706 server_privileges.php:1296 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/messages.inc.php:712 libraries/server_links.inc.php:80 +#: libraries/messages.inc.php:708 libraries/server_links.inc.php:80 msgid "Processes" msgstr "" -#: libraries/messages.inc.php:714 main.php:187 +#: libraries/messages.inc.php:710 main.php:187 msgid "Protocol version" msgstr "" -#: libraries/messages.inc.php:715 +#: libraries/messages.inc.php:711 msgid "Put fields names in the first row" msgstr "" -#: libraries/messages.inc.php:720 server_synchronize.php:1003 +#: libraries/messages.inc.php:716 server_synchronize.php:1003 msgid "The following queries have been executed:" msgstr "" -#: libraries/messages.inc.php:721 server_status.php:251 +#: libraries/messages.inc.php:717 server_status.php:251 msgid "Query cache" msgstr "" -#: libraries/messages.inc.php:722 libraries/navigation_header.inc.php:80 +#: libraries/messages.inc.php:718 libraries/navigation_header.inc.php:80 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 setup/lib/messages.inc.php:122 msgid "Query window" msgstr "" -#: libraries/messages.inc.php:725 querywindow.php:109 querywindow.php:217 +#: libraries/messages.inc.php:721 querywindow.php:109 querywindow.php:217 msgid "SQL history" msgstr "" -#: libraries/messages.inc.php:726 server_status.php:490 +#: libraries/messages.inc.php:722 server_status.php:490 #, possible-php-format msgid "" "Query statistics: Since its startup, %s queries have been sent to the " "server." msgstr "" -#: libraries/messages.inc.php:728 server_status.php:554 +#: libraries/messages.inc.php:724 server_status.php:554 msgid "Query type" msgstr "" -#: libraries/messages.inc.php:729 libraries/sql_query_form.lib.php:381 +#: libraries/messages.inc.php:725 libraries/sql_query_form.lib.php:381 msgid "Do not overwrite this query from outside the window" msgstr "" -#: libraries/messages.inc.php:732 tbl_operations.php:663 +#: libraries/messages.inc.php:728 tbl_operations.php:663 msgid "Rebuild" msgstr "" -#: libraries/messages.inc.php:733 server_status.php:394 +#: libraries/messages.inc.php:729 server_status.php:394 msgid "Received" msgstr "" -#: libraries/messages.inc.php:734 pmd_pdf.php:89 +#: libraries/messages.inc.php:730 pmd_pdf.php:89 msgid "recommended" msgstr "" -#: libraries/messages.inc.php:736 tbl_operations.php:702 +#: libraries/messages.inc.php:732 tbl_operations.php:702 msgid "Check referential integrity:" msgstr "" -#: libraries/messages.inc.php:740 pdf_schema.php:1032 pdf_schema.php:1141 +#: libraries/messages.inc.php:736 pdf_schema.php:1032 pdf_schema.php:1141 msgid "Relational schema" msgstr "" -#: libraries/messages.inc.php:744 tbl_relation.php:399 +#: libraries/messages.inc.php:740 tbl_relation.php:399 msgid "Relations" msgstr "" -#: libraries/messages.inc.php:745 tbl_structure.php:507 tbl_structure.php:509 +#: libraries/messages.inc.php:741 tbl_structure.php:507 tbl_structure.php:509 msgid "Relation view" msgstr "" -#: libraries/messages.inc.php:746 server_privileges.php:1246 +#: libraries/messages.inc.php:742 server_privileges.php:1246 msgid "Reloading the privileges" msgstr "" -#: libraries/messages.inc.php:747 navigation.php:66 navigation.php:67 +#: libraries/messages.inc.php:743 navigation.php:66 navigation.php:67 #: navigation.php:70 msgid "Reload navigation frame" msgstr "" -#: libraries/messages.inc.php:748 pmd_general.php:80 +#: libraries/messages.inc.php:744 pmd_general.php:80 msgid "Reload" msgstr "" -#: libraries/messages.inc.php:749 libraries/server_synchronize.lib.php:1345 +#: libraries/messages.inc.php:745 libraries/server_synchronize.lib.php:1345 #: libraries/server_synchronize.lib.php:1371 msgid "Remote server" msgstr "" -#: libraries/messages.inc.php:750 +#: libraries/messages.inc.php:746 msgid "Remove CRLF characters within fields" msgstr "" -#: libraries/messages.inc.php:751 tbl_operations.php:676 +#: libraries/messages.inc.php:747 tbl_operations.php:676 msgid "Remove partitioning" msgstr "" -#: libraries/messages.inc.php:752 server_privileges.php:1575 +#: libraries/messages.inc.php:748 server_privileges.php:1575 msgid "Remove selected users" msgstr "" -#: libraries/messages.inc.php:755 tbl_operations.php:338 +#: libraries/messages.inc.php:751 tbl_operations.php:338 msgid "Rename table to" msgstr "" -#: libraries/messages.inc.php:756 view_operations.php:93 +#: libraries/messages.inc.php:752 view_operations.php:93 msgid "Rename view to" msgstr "" -#: libraries/messages.inc.php:757 tbl_operations.php:664 +#: libraries/messages.inc.php:753 tbl_operations.php:664 msgid "Repair" msgstr "" -#: libraries/messages.inc.php:759 +#: libraries/messages.inc.php:755 msgid "Replace NULL by" msgstr "" -#: libraries/messages.inc.php:760 +#: libraries/messages.inc.php:756 msgid "Replace table data with file" msgstr "" -#: libraries/messages.inc.php:761 server_replication.php:228 +#: libraries/messages.inc.php:757 server_replication.php:228 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: libraries/messages.inc.php:762 libraries/replication_gui.lib.php:236 +#: libraries/messages.inc.php:758 libraries/replication_gui.lib.php:236 #: server_replication.php:194 msgid "Add slave replication user" msgstr "" -#: libraries/messages.inc.php:763 server_replication.php:74 +#: libraries/messages.inc.php:759 server_replication.php:74 #, possible-php-format msgid "Master server changed succesfully to %s" msgstr "" -#: libraries/messages.inc.php:764 server_replication.php:182 +#: libraries/messages.inc.php:760 server_replication.php:182 msgid "This server is configured as master in a replication process." msgstr "" -#: libraries/messages.inc.php:765 server_replication.php:322 +#: libraries/messages.inc.php:761 server_replication.php:322 msgid "Control slave:" msgstr "" -#: libraries/messages.inc.php:766 server_replication.php:65 +#: libraries/messages.inc.php:762 server_replication.php:65 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: libraries/messages.inc.php:767 server_replication.php:58 +#: libraries/messages.inc.php:763 server_replication.php:58 #, possible-php-format msgid "Unable to connect to master %s." msgstr "" -#: libraries/messages.inc.php:768 server_replication.php:221 +#: libraries/messages.inc.php:764 server_replication.php:221 msgid "Replicate all databases; Ignore:" msgstr "" -#: libraries/messages.inc.php:769 server_replication.php:222 +#: libraries/messages.inc.php:765 server_replication.php:222 msgid "Ignore all databases; Replicate:" msgstr "" -#: libraries/messages.inc.php:770 server_replication.php:218 +#: libraries/messages.inc.php:766 server_replication.php:218 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -4697,120 +4697,120 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: libraries/messages.inc.php:771 server_replication.php:217 +#: libraries/messages.inc.php:767 server_replication.php:217 msgid "Master configuration" msgstr "" -#: libraries/messages.inc.php:772 server_replication.php:181 +#: libraries/messages.inc.php:768 server_replication.php:181 #: server_replication.php:209 msgid "Master replication" msgstr "" -#: libraries/messages.inc.php:774 server_replication.php:230 +#: libraries/messages.inc.php:770 server_replication.php:230 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: libraries/messages.inc.php:775 server_replication.php:225 +#: libraries/messages.inc.php:771 server_replication.php:225 msgid "Please select databases:" msgstr "" -#: libraries/messages.inc.php:776 server_replication.php:210 +#: libraries/messages.inc.php:772 server_replication.php:210 #, possible-php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:188 +#: libraries/messages.inc.php:773 libraries/replication_gui.lib.php:188 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/messages.inc.php:778 server_replication.php:187 +#: libraries/messages.inc.php:774 server_replication.php:187 msgid "Show connected slaves" msgstr "" -#: libraries/messages.inc.php:779 libraries/messages.inc.php:885 +#: libraries/messages.inc.php:775 libraries/messages.inc.php:881 #: server_replication.php:184 server_status.php:281 msgid "Show master status" msgstr "" -#: libraries/messages.inc.php:780 server_replication.php:334 +#: libraries/messages.inc.php:776 server_replication.php:334 msgid "Skipping error(s) might lead into unsynchronized master and slave!" msgstr "" -#: libraries/messages.inc.php:781 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:51 #: server_replication.php:347 msgid "Change or reconfigure master server" msgstr "" -#: libraries/messages.inc.php:782 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:778 libraries/replication_gui.lib.php:51 msgid "Slave configuration" msgstr "" -#: libraries/messages.inc.php:783 server_replication.php:305 +#: libraries/messages.inc.php:779 server_replication.php:305 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: libraries/messages.inc.php:784 server_replication.php:332 +#: libraries/messages.inc.php:780 server_replication.php:332 msgid "Error management:" msgstr "" -#: libraries/messages.inc.php:785 server_replication.php:328 +#: libraries/messages.inc.php:781 server_replication.php:328 #, possible-php-format msgid "IO Thread %s only" msgstr "" -#: libraries/messages.inc.php:786 server_replication.php:296 +#: libraries/messages.inc.php:782 server_replication.php:296 msgid "Slave IO Thread not running!" msgstr "" -#: libraries/messages.inc.php:787 server_replication.php:355 +#: libraries/messages.inc.php:783 server_replication.php:355 #, possible-php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/messages.inc.php:788 server_replication.php:326 +#: libraries/messages.inc.php:784 server_replication.php:326 msgid "Reset slave" msgstr "" -#: libraries/messages.inc.php:789 server_replication.php:308 +#: libraries/messages.inc.php:785 server_replication.php:308 msgid "See slave status table" msgstr "" -#: libraries/messages.inc.php:790 server_replication.php:336 +#: libraries/messages.inc.php:786 server_replication.php:336 msgid "Skip current error" msgstr "" -#: libraries/messages.inc.php:791 server_replication.php:340 +#: libraries/messages.inc.php:787 server_replication.php:340 msgid "errors." msgstr "" -#: libraries/messages.inc.php:792 server_replication.php:337 +#: libraries/messages.inc.php:788 server_replication.php:337 msgid "Skip next" msgstr "" -#: libraries/messages.inc.php:793 server_replication.php:248 +#: libraries/messages.inc.php:789 server_replication.php:248 msgid "Slave replication" msgstr "" -#: libraries/messages.inc.php:794 server_replication.php:293 +#: libraries/messages.inc.php:790 server_replication.php:293 msgid "Slave SQL Thread not running!" msgstr "" -#: libraries/messages.inc.php:795 server_replication.php:327 +#: libraries/messages.inc.php:791 server_replication.php:327 #, possible-php-format msgid "SQL Thread %s only" msgstr "" -#: libraries/messages.inc.php:796 +#: libraries/messages.inc.php:792 #, possible-php-format msgid "" "This MySQL server works as %s in replication process. For further " @@ -4818,167 +4818,167 @@ msgid "" "\"#replication\">replication section." msgstr "" -#: libraries/messages.inc.php:797 +#: libraries/messages.inc.php:793 msgid "Master status" msgstr "" -#: libraries/messages.inc.php:798 server_status.php:721 +#: libraries/messages.inc.php:794 server_status.php:721 msgid "Replication status" msgstr "" -#: libraries/messages.inc.php:799 +#: libraries/messages.inc.php:795 msgid "Slave status" msgstr "" -#: libraries/messages.inc.php:800 server_replication.php:311 +#: libraries/messages.inc.php:796 server_replication.php:311 msgid "Synchronize databases with master" msgstr "" -#: libraries/messages.inc.php:801 server_replication.php:71 +#: libraries/messages.inc.php:797 server_replication.php:71 msgid "Unable to change master" msgstr "" -#: libraries/messages.inc.php:802 server_replication.php:51 +#: libraries/messages.inc.php:798 server_replication.php:51 msgid "Unknown error" msgstr "" -#: libraries/messages.inc.php:803 main.php:163 pdf_pages.php:344 +#: libraries/messages.inc.php:799 main.php:163 pdf_pages.php:344 #: setup/lib/FormDisplay.tpl.php:216 tbl_change.php:1175 msgid "Reset" msgstr "" -#: libraries/messages.inc.php:804 server_privileges.php:591 +#: libraries/messages.inc.php:800 server_privileges.php:591 msgid "Resource limits" msgstr "" -#: libraries/messages.inc.php:805 tbl_change.php:1209 +#: libraries/messages.inc.php:801 tbl_change.php:1209 #, possible-php-format msgid "Restart insertion with %s rows" msgstr "" -#: libraries/messages.inc.php:807 server_privileges.php:1578 +#: libraries/messages.inc.php:803 server_privileges.php:1578 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: libraries/messages.inc.php:808 server_privileges.php:1176 +#: libraries/messages.inc.php:804 server_privileges.php:1176 #, possible-php-format msgid "You have revoked the privileges for %s" msgstr "" -#: libraries/messages.inc.php:809 server_privileges.php:1333 +#: libraries/messages.inc.php:805 server_privileges.php:1333 msgid "Revoke" msgstr "" -#: libraries/messages.inc.php:810 libraries/mysql_charsets.lib.php:280 +#: libraries/messages.inc.php:806 libraries/mysql_charsets.lib.php:280 msgid "Romanian" msgstr "" -#: libraries/messages.inc.php:813 tbl_printview.php:404 tbl_structure.php:786 +#: libraries/messages.inc.php:809 tbl_printview.php:404 tbl_structure.php:786 msgid "Row length" msgstr "" -#: libraries/messages.inc.php:815 tbl_printview.php:414 tbl_structure.php:794 +#: libraries/messages.inc.php:811 tbl_printview.php:414 tbl_structure.php:794 msgid " Row size " msgstr "" -#: libraries/messages.inc.php:821 tbl_printview.php:366 tbl_structure.php:726 +#: libraries/messages.inc.php:817 tbl_printview.php:366 tbl_structure.php:726 msgid "Row Statistics" msgstr "" -#: libraries/messages.inc.php:822 +#: libraries/messages.inc.php:818 #, possible-php-format msgid "running on %s" msgstr "" -#: libraries/messages.inc.php:824 libraries/sql_query_form.lib.php:223 +#: libraries/messages.inc.php:820 libraries/sql_query_form.lib.php:223 #, possible-php-format msgid "Run SQL query/queries on server %s" msgstr "" -#: libraries/messages.inc.php:825 libraries/sql_query_form.lib.php:240 +#: libraries/messages.inc.php:821 libraries/sql_query_form.lib.php:240 #: libraries/sql_query_form.lib.php:265 #, possible-php-format msgid "Run SQL query/queries on database %s" msgstr "" -#: libraries/messages.inc.php:826 libraries/mysql_charsets.lib.php:337 +#: libraries/messages.inc.php:822 libraries/mysql_charsets.lib.php:337 msgid "Russian" msgstr "" -#: libraries/messages.inc.php:829 pmd_general.php:68 +#: libraries/messages.inc.php:825 pmd_general.php:68 msgid "Save position" msgstr "" -#: libraries/messages.inc.php:830 libraries/tbl_properties.inc.php:776 +#: libraries/messages.inc.php:826 libraries/tbl_properties.inc.php:776 #: pdf_pages.php:484 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:214 setup/lib/FormDisplay.tpl.php:215 #: tbl_change.php:1126 tbl_indexes.php:248 tbl_relation.php:566 msgid "Save" msgstr "" -#: libraries/messages.inc.php:831 +#: libraries/messages.inc.php:827 msgid "The scale factor is too small to fit the schema on one page" msgstr "" -#: libraries/messages.inc.php:843 main.php:298 +#: libraries/messages.inc.php:839 main.php:298 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" -#: libraries/messages.inc.php:844 navigation.php:353 navigation.php:516 +#: libraries/messages.inc.php:840 navigation.php:353 navigation.php:516 msgid "Please select a database" msgstr "" -#: libraries/messages.inc.php:846 server_binlog.php:120 +#: libraries/messages.inc.php:842 server_binlog.php:120 msgid "Select binary log to view" msgstr "" -#: libraries/messages.inc.php:847 tbl_select.php:270 +#: libraries/messages.inc.php:843 tbl_select.php:270 msgid "Select fields (at least one):" msgstr "" -#: libraries/messages.inc.php:851 pdf_pages.php:320 +#: libraries/messages.inc.php:847 pdf_pages.php:320 msgid "Select Tables" msgstr "" -#: libraries/messages.inc.php:853 server_status.php:404 +#: libraries/messages.inc.php:849 server_status.php:404 msgid "Sent" msgstr "" -#: libraries/messages.inc.php:857 libraries/select_server.lib.php:45 +#: libraries/messages.inc.php:853 libraries/select_server.lib.php:45 #: setup/frames/index.inc.php:97 setup/lib/messages.inc.php:115 msgid "Servers" msgstr "" -#: libraries/messages.inc.php:858 server_status.php:255 +#: libraries/messages.inc.php:854 server_status.php:255 msgid "Delayed inserts" msgstr "" -#: libraries/messages.inc.php:859 server_status.php:46 +#: libraries/messages.inc.php:855 server_status.php:46 msgid "Runtime Information" msgstr "" -#: libraries/messages.inc.php:860 server_status.php:350 +#: libraries/messages.inc.php:856 server_status.php:350 #, possible-php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "" -#: libraries/messages.inc.php:861 libraries/server_links.inc.php:53 +#: libraries/messages.inc.php:857 libraries/server_links.inc.php:53 #: server_engines.php:112 server_engines.php:116 server_status.php:304 #: test/theme.php:105 msgid "Variables" msgstr "" -#: libraries/messages.inc.php:862 server_status.php:383 +#: libraries/messages.inc.php:858 server_status.php:383 msgid "" "Server traffic: These tables show the network traffic statistics of " "this MySQL server since its startup." msgstr "" -#: libraries/messages.inc.php:863 server_variables.php:35 +#: libraries/messages.inc.php:859 server_variables.php:35 msgid "Server variables and settings" msgstr "" -#: libraries/messages.inc.php:865 main.php:290 +#: libraries/messages.inc.php:861 main.php:290 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -4986,17 +4986,17 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: libraries/messages.inc.php:866 +#: libraries/messages.inc.php:862 msgid "" "Cannot start session without errors, please check errors given in your PHP " "and/or webserver log file and configure your PHP installation properly." msgstr "" -#: libraries/messages.inc.php:867 server_variables.php:55 +#: libraries/messages.inc.php:863 server_variables.php:55 msgid "Session value" msgstr "" -#: libraries/messages.inc.php:868 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:864 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 " @@ -5004,55 +5004,55 @@ msgid "" "(for example '\\\\xyz' or 'a\\'b')." msgstr "" -#: libraries/messages.inc.php:876 server_binlog.php:192 server_binlog.php:195 +#: libraries/messages.inc.php:872 server_binlog.php:192 server_binlog.php:195 #: server_processlist.php:49 server_processlist.php:51 msgid "Show Full Queries" msgstr "" -#: libraries/messages.inc.php:878 pmd_general.php:64 +#: libraries/messages.inc.php:874 pmd_general.php:64 msgid "Show/Hide left menu" msgstr "" -#: libraries/messages.inc.php:880 sql.php:513 +#: libraries/messages.inc.php:876 sql.php:513 msgid "Showing as PHP code" msgstr "" -#: libraries/messages.inc.php:882 sql.php:516 tbl_replace.php:360 +#: libraries/messages.inc.php:878 sql.php:516 tbl_replace.php:360 msgid "Showing SQL query" msgstr "" -#: libraries/messages.inc.php:883 tbl_change.php:1132 +#: libraries/messages.inc.php:879 tbl_change.php:1132 msgid "Show insert query" msgstr "" -#: libraries/messages.inc.php:886 server_status.php:273 +#: libraries/messages.inc.php:882 server_status.php:273 msgid "Show open tables" msgstr "" -#: libraries/messages.inc.php:887 main.php:219 +#: libraries/messages.inc.php:883 main.php:219 msgid "Show PHP information" msgstr "" -#: libraries/messages.inc.php:889 server_status.php:278 +#: libraries/messages.inc.php:885 server_status.php:278 msgid "Show slave hosts" msgstr "" -#: libraries/messages.inc.php:890 server_status.php:284 +#: libraries/messages.inc.php:886 server_status.php:284 msgid "Show slave status" msgstr "" -#: libraries/messages.inc.php:891 +#: libraries/messages.inc.php:887 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/messages.inc.php:892 +#: libraries/messages.inc.php:888 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/messages.inc.php:893 +#: libraries/messages.inc.php:889 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -5060,78 +5060,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/messages.inc.php:894 +#: libraries/messages.inc.php:890 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/messages.inc.php:895 +#: libraries/messages.inc.php:891 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/messages.inc.php:896 +#: libraries/messages.inc.php:892 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/messages.inc.php:897 +#: libraries/messages.inc.php:893 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/messages.inc.php:898 +#: libraries/messages.inc.php:894 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/messages.inc.php:899 +#: libraries/messages.inc.php:895 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/messages.inc.php:900 +#: libraries/messages.inc.php:896 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/messages.inc.php:901 +#: libraries/messages.inc.php:897 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/messages.inc.php:902 +#: libraries/messages.inc.php:898 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/messages.inc.php:903 +#: libraries/messages.inc.php:899 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/messages.inc.php:904 +#: libraries/messages.inc.php:900 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: libraries/messages.inc.php:905 +#: libraries/messages.inc.php:901 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/messages.inc.php:906 +#: libraries/messages.inc.php:902 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: libraries/messages.inc.php:907 +#: libraries/messages.inc.php:903 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -5139,7 +5139,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/messages.inc.php:908 +#: libraries/messages.inc.php:904 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -5147,42 +5147,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/messages.inc.php:909 +#: libraries/messages.inc.php:905 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/messages.inc.php:910 +#: libraries/messages.inc.php:906 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/messages.inc.php:911 +#: libraries/messages.inc.php:907 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/messages.inc.php:912 +#: libraries/messages.inc.php:908 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/messages.inc.php:913 +#: libraries/messages.inc.php:909 msgid "The number of pages currently dirty." msgstr "" -#: libraries/messages.inc.php:914 +#: libraries/messages.inc.php:910 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/messages.inc.php:915 +#: libraries/messages.inc.php:911 msgid "The number of free pages." msgstr "" -#: libraries/messages.inc.php:916 +#: libraries/messages.inc.php:912 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/messages.inc.php:917 +#: libraries/messages.inc.php:913 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -5190,33 +5190,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/messages.inc.php:918 +#: libraries/messages.inc.php:914 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/messages.inc.php:919 +#: libraries/messages.inc.php:915 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/messages.inc.php:920 +#: libraries/messages.inc.php:916 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/messages.inc.php:921 +#: libraries/messages.inc.php:917 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/messages.inc.php:922 +#: libraries/messages.inc.php:918 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/messages.inc.php:923 +#: libraries/messages.inc.php:919 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -5225,218 +5225,218 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/messages.inc.php:924 +#: libraries/messages.inc.php:920 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/messages.inc.php:925 +#: libraries/messages.inc.php:921 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/messages.inc.php:926 +#: libraries/messages.inc.php:922 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/messages.inc.php:927 +#: libraries/messages.inc.php:923 msgid "The current number of pending reads." msgstr "" -#: libraries/messages.inc.php:928 +#: libraries/messages.inc.php:924 msgid "The current number of pending writes." msgstr "" -#: libraries/messages.inc.php:929 +#: libraries/messages.inc.php:925 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/messages.inc.php:930 +#: libraries/messages.inc.php:926 msgid "The total number of data reads." msgstr "" -#: libraries/messages.inc.php:931 +#: libraries/messages.inc.php:927 msgid "The total number of data writes." msgstr "" -#: libraries/messages.inc.php:932 +#: libraries/messages.inc.php:928 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/messages.inc.php:933 +#: libraries/messages.inc.php:929 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/messages.inc.php:934 +#: libraries/messages.inc.php:930 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/messages.inc.php:935 +#: libraries/messages.inc.php:931 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/messages.inc.php:936 +#: libraries/messages.inc.php:932 msgid "The number of log write requests." msgstr "" -#: libraries/messages.inc.php:937 +#: libraries/messages.inc.php:933 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/messages.inc.php:938 +#: libraries/messages.inc.php:934 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/messages.inc.php:939 +#: libraries/messages.inc.php:935 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/messages.inc.php:940 +#: libraries/messages.inc.php:936 msgid "Pending log file writes." msgstr "" -#: libraries/messages.inc.php:941 +#: libraries/messages.inc.php:937 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/messages.inc.php:942 +#: libraries/messages.inc.php:938 msgid "The number of pages created." msgstr "" -#: libraries/messages.inc.php:943 +#: libraries/messages.inc.php:939 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: libraries/messages.inc.php:944 +#: libraries/messages.inc.php:940 msgid "The number of pages read." msgstr "" -#: libraries/messages.inc.php:945 +#: libraries/messages.inc.php:941 msgid "The number of pages written." msgstr "" -#: libraries/messages.inc.php:946 +#: libraries/messages.inc.php:942 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/messages.inc.php:947 +#: libraries/messages.inc.php:943 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/messages.inc.php:948 +#: libraries/messages.inc.php:944 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/messages.inc.php:949 +#: libraries/messages.inc.php:945 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/messages.inc.php:950 +#: libraries/messages.inc.php:946 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/messages.inc.php:951 +#: libraries/messages.inc.php:947 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/messages.inc.php:952 +#: libraries/messages.inc.php:948 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/messages.inc.php:953 +#: libraries/messages.inc.php:949 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/messages.inc.php:954 +#: libraries/messages.inc.php:950 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/messages.inc.php:955 +#: libraries/messages.inc.php:951 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/messages.inc.php:956 +#: libraries/messages.inc.php:952 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: libraries/messages.inc.php:957 +#: libraries/messages.inc.php:953 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/messages.inc.php:958 +#: libraries/messages.inc.php:954 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/messages.inc.php:959 +#: libraries/messages.inc.php:955 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/messages.inc.php:960 +#: libraries/messages.inc.php:956 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/messages.inc.php:961 +#: libraries/messages.inc.php:957 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/messages.inc.php:962 +#: libraries/messages.inc.php:958 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/messages.inc.php:963 +#: libraries/messages.inc.php:959 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/messages.inc.php:964 +#: libraries/messages.inc.php:960 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/messages.inc.php:965 +#: libraries/messages.inc.php:961 msgid "The number of files that are open." msgstr "" -#: libraries/messages.inc.php:966 +#: libraries/messages.inc.php:962 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/messages.inc.php:967 +#: libraries/messages.inc.php:963 msgid "The number of tables that are open." msgstr "" -#: libraries/messages.inc.php:968 +#: libraries/messages.inc.php:964 msgid "The number of free memory blocks in query cache." msgstr "" -#: libraries/messages.inc.php:969 +#: libraries/messages.inc.php:965 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/messages.inc.php:970 +#: libraries/messages.inc.php:966 msgid "The number of cache hits." msgstr "" -#: libraries/messages.inc.php:971 +#: libraries/messages.inc.php:967 msgid "The number of queries added to the cache." msgstr "" -#: libraries/messages.inc.php:972 +#: libraries/messages.inc.php:968 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -5444,104 +5444,104 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/messages.inc.php:973 +#: libraries/messages.inc.php:969 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/messages.inc.php:974 +#: libraries/messages.inc.php:970 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/messages.inc.php:975 +#: libraries/messages.inc.php:971 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/messages.inc.php:976 +#: libraries/messages.inc.php:972 msgctxt "$strShowStatusReset" msgid "Reset" msgstr "" -#: libraries/messages.inc.php:977 +#: libraries/messages.inc.php:973 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/messages.inc.php:978 +#: libraries/messages.inc.php:974 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: libraries/messages.inc.php:979 +#: libraries/messages.inc.php:975 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/messages.inc.php:980 +#: libraries/messages.inc.php:976 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: libraries/messages.inc.php:981 +#: libraries/messages.inc.php:977 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/messages.inc.php:982 +#: libraries/messages.inc.php:978 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/messages.inc.php:983 +#: libraries/messages.inc.php:979 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/messages.inc.php:984 +#: libraries/messages.inc.php:980 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/messages.inc.php:985 +#: libraries/messages.inc.php:981 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/messages.inc.php:986 +#: libraries/messages.inc.php:982 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/messages.inc.php:987 +#: libraries/messages.inc.php:983 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/messages.inc.php:988 +#: libraries/messages.inc.php:984 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/messages.inc.php:989 +#: libraries/messages.inc.php:985 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/messages.inc.php:990 +#: libraries/messages.inc.php:986 msgid "The number of sorted rows." msgstr "" -#: libraries/messages.inc.php:991 +#: libraries/messages.inc.php:987 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/messages.inc.php:992 +#: libraries/messages.inc.php:988 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/messages.inc.php:993 +#: libraries/messages.inc.php:989 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -5549,18 +5549,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/messages.inc.php:994 +#: libraries/messages.inc.php:990 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/messages.inc.php:995 +#: libraries/messages.inc.php:991 msgid "The number of currently open connections." msgstr "" -#: libraries/messages.inc.php:996 +#: libraries/messages.inc.php:992 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -5568,74 +5568,74 @@ msgid "" "implementation.)" msgstr "" -#: libraries/messages.inc.php:997 +#: libraries/messages.inc.php:993 msgid "The number of threads that are not sleeping." msgstr "" -#: libraries/messages.inc.php:999 tbl_printview.php:75 +#: libraries/messages.inc.php:995 tbl_printview.php:75 msgid "Show tables" msgstr "" -#: libraries/messages.inc.php:1000 libraries/sql_query_form.lib.php:396 +#: libraries/messages.inc.php:996 libraries/sql_query_form.lib.php:396 msgid " Show this query here again " msgstr "" -#: libraries/messages.inc.php:1001 libraries/mysql_charsets.lib.php:217 +#: libraries/messages.inc.php:997 libraries/mysql_charsets.lib.php:217 #: libraries/mysql_charsets.lib.php:342 msgid "Simplified Chinese" msgstr "" -#: libraries/messages.inc.php:1002 tbl_operations.php:258 +#: libraries/messages.inc.php:998 tbl_operations.php:258 msgid "(singly)" msgstr "" -#: libraries/messages.inc.php:1005 libraries/replication_gui.lib.php:52 +#: libraries/messages.inc.php:1001 libraries/replication_gui.lib.php:52 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" msgstr "" -#: libraries/messages.inc.php:1006 libraries/mysql_charsets.lib.php:283 +#: libraries/messages.inc.php:1002 libraries/mysql_charsets.lib.php:283 msgid "Slovak" msgstr "" -#: libraries/messages.inc.php:1007 libraries/mysql_charsets.lib.php:286 +#: libraries/messages.inc.php:1003 libraries/mysql_charsets.lib.php:286 msgid "Slovenian" msgstr "" -#: libraries/messages.inc.php:1008 pmd_general.php:95 +#: libraries/messages.inc.php:1004 pmd_general.php:95 msgid "Small/Big All" msgstr "" -#: libraries/messages.inc.php:1009 pmd_general.php:91 +#: libraries/messages.inc.php:1005 pmd_general.php:91 msgid "Snap to grid" msgstr "" -#: libraries/messages.inc.php:1011 server_synchronize.php:1167 +#: libraries/messages.inc.php:1007 server_synchronize.php:1167 msgid "Socket" msgstr "" -#: libraries/messages.inc.php:1013 server_status.php:259 +#: libraries/messages.inc.php:1009 server_status.php:259 msgid "Sorting" msgstr "" -#: libraries/messages.inc.php:1015 tbl_printview.php:310 tbl_structure.php:657 +#: libraries/messages.inc.php:1011 tbl_printview.php:310 tbl_structure.php:657 msgid "Space usage" msgstr "" -#: libraries/messages.inc.php:1016 libraries/mysql_charsets.lib.php:289 +#: libraries/messages.inc.php:1012 libraries/mysql_charsets.lib.php:289 msgid "Spanish" msgstr "" -#: libraries/messages.inc.php:1019 +#: libraries/messages.inc.php:1015 msgid "Export type" msgstr "" -#: libraries/messages.inc.php:1020 +#: libraries/messages.inc.php:1016 msgid "Export time in UTC" msgstr "" -#: libraries/messages.inc.php:1021 libraries/sqlparser.lib.php:173 +#: libraries/messages.inc.php:1017 libraries/sqlparser.lib.php:173 msgid "" "There is a chance that you may have found a bug in the SQL parser. Please " "examine your query closely, and check that the quotes are correct and not " @@ -5648,419 +5648,419 @@ msgid "" "and submit a bug report with the data chunk in the CUT section below:" msgstr "" -#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:137 +#: libraries/messages.inc.php:1018 libraries/sqlparser.lib.php:137 msgid "" "There seems to be an error in your SQL query. The MySQL server error output " "below, if there is any, may also help you in diagnosing the problem" msgstr "" -#: libraries/messages.inc.php:1026 libraries/sqlparser.lib.php:495 +#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:495 msgid "Invalid Identifer" msgstr "" -#: libraries/messages.inc.php:1027 libraries/sqlparser.lib.php:344 +#: libraries/messages.inc.php:1023 libraries/sqlparser.lib.php:344 msgid "Unclosed quote" msgstr "" -#: libraries/messages.inc.php:1028 libraries/sqlparser.lib.php:612 +#: libraries/messages.inc.php:1024 libraries/sqlparser.lib.php:612 msgid "Unknown Punctuation String" msgstr "" -#: libraries/messages.inc.php:1030 server_replication.php:327 +#: libraries/messages.inc.php:1026 server_replication.php:327 #: server_replication.php:328 msgid "Start" msgstr "" -#: libraries/messages.inc.php:1033 tbl_printview.php:369 tbl_structure.php:729 +#: libraries/messages.inc.php:1029 tbl_printview.php:369 tbl_structure.php:729 msgid "Statements" msgstr "" -#: libraries/messages.inc.php:1034 tbl_printview.php:380 tbl_structure.php:741 +#: libraries/messages.inc.php:1030 tbl_printview.php:380 tbl_structure.php:741 msgid "static" msgstr "" -#: libraries/messages.inc.php:1035 server_status.php:388 +#: libraries/messages.inc.php:1031 server_status.php:388 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: libraries/messages.inc.php:1038 server_replication.php:327 +#: libraries/messages.inc.php:1034 server_replication.php:327 #: server_replication.php:328 msgid "Stop" msgstr "" -#: libraries/messages.inc.php:1039 server_engines.php:49 +#: libraries/messages.inc.php:1035 server_engines.php:49 msgid "Storage Engines" msgstr "" -#: libraries/messages.inc.php:1040 libraries/tbl_properties.inc.php:726 +#: libraries/messages.inc.php:1036 libraries/tbl_properties.inc.php:726 #: server_engines.php:58 tbl_operations.php:353 msgid "Storage Engine" msgstr "" -#: libraries/messages.inc.php:1042 +#: libraries/messages.inc.php:1038 msgid "CSV for MS Excel" msgstr "" -#: libraries/messages.inc.php:1044 tbl_structure.php:516 tbl_structure.php:518 +#: libraries/messages.inc.php:1040 tbl_structure.php:516 tbl_structure.php:518 msgid "Propose table structure" msgstr "" -#: libraries/messages.inc.php:1045 server_synchronize.php:424 +#: libraries/messages.inc.php:1041 server_synchronize.php:424 #: server_synchronize.php:867 msgid "Structure Difference" msgstr "" -#: libraries/messages.inc.php:1049 server_synchronize.php:265 +#: libraries/messages.inc.php:1045 server_synchronize.php:265 msgid "Structure Synchronization" msgstr "" -#: libraries/messages.inc.php:1050 libraries/sql_query_form.lib.php:462 +#: libraries/messages.inc.php:1046 libraries/sql_query_form.lib.php:462 msgid "Submit" msgstr "" -#: libraries/messages.inc.php:1052 main.php:358 +#: libraries/messages.inc.php:1048 main.php:358 #, possible-php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " "issues." msgstr "" -#: libraries/messages.inc.php:1054 libraries/mysql_charsets.lib.php:295 +#: libraries/messages.inc.php:1050 libraries/mysql_charsets.lib.php:295 #: libraries/mysql_charsets.lib.php:392 msgid "Swedish" msgstr "" -#: libraries/messages.inc.php:1060 tbl_operations.php:556 +#: libraries/messages.inc.php:1056 tbl_operations.php:556 msgid "Switch to copied table" msgstr "" -#: libraries/messages.inc.php:1061 server_synchronize.php:1213 +#: libraries/messages.inc.php:1057 server_synchronize.php:1213 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." msgstr "" -#: libraries/messages.inc.php:1062 server_synchronize.php:451 +#: libraries/messages.inc.php:1058 server_synchronize.php:451 #: server_synchronize.php:896 msgid "Synchronize Databases" msgstr "" -#: libraries/messages.inc.php:1063 libraries/server_links.inc.php:92 +#: libraries/messages.inc.php:1059 libraries/server_links.inc.php:92 #: server_synchronize.php:1092 server_synchronize.php:1100 msgid "Synchronize" msgstr "" -#: libraries/messages.inc.php:1065 server_synchronize.php:430 +#: libraries/messages.inc.php:1061 server_synchronize.php:430 #: server_synchronize.php:873 msgid "Add column(s)" msgstr "" -#: libraries/messages.inc.php:1066 tbl_create.php:62 +#: libraries/messages.inc.php:1062 tbl_create.php:62 #, possible-php-format msgid "Table %s already exists!" msgstr "" -#: libraries/messages.inc.php:1067 server_synchronize.php:432 +#: libraries/messages.inc.php:1063 server_synchronize.php:432 #: server_synchronize.php:875 msgid "Alter column(s)" msgstr "" -#: libraries/messages.inc.php:1068 tbl_addfield.php:189 tbl_alter.php:103 +#: libraries/messages.inc.php:1064 tbl_addfield.php:189 tbl_alter.php:103 #: tbl_indexes.php:98 #, possible-php-format msgid "Table %1$s has been altered successfully" msgstr "" -#: libraries/messages.inc.php:1069 server_synchronize.php:434 +#: libraries/messages.inc.php:1065 server_synchronize.php:434 #: server_synchronize.php:877 msgid "Apply index(s)" msgstr "" -#: libraries/messages.inc.php:1071 server_synchronize.php:446 +#: libraries/messages.inc.php:1067 server_synchronize.php:446 #: server_synchronize.php:890 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: libraries/messages.inc.php:1072 tbl_move_copy.php:82 +#: libraries/messages.inc.php:1068 tbl_move_copy.php:82 msgid "The table name is empty!" msgstr "" -#: libraries/messages.inc.php:1073 tbl_create.php:249 +#: libraries/messages.inc.php:1069 tbl_create.php:249 #, possible-php-format msgid "Table %1$s has been created." msgstr "" -#: libraries/messages.inc.php:1076 tbl_operations.php:628 +#: libraries/messages.inc.php:1072 tbl_operations.php:628 #, possible-php-format msgid "Table %s has been flushed" msgstr "" -#: libraries/messages.inc.php:1077 server_synchronize.php:436 +#: libraries/messages.inc.php:1073 server_synchronize.php:436 #: server_synchronize.php:879 msgid "Insert row(s)" msgstr "" -#: libraries/messages.inc.php:1078 libraries/tbl_links.inc.php:107 +#: libraries/messages.inc.php:1074 libraries/tbl_links.inc.php:107 #: libraries/tbl_links.inc.php:140 libraries/tbl_links.inc.php:141 msgid "Table seems to be empty!" msgstr "" -#: libraries/messages.inc.php:1079 tbl_operations.php:568 +#: libraries/messages.inc.php:1075 tbl_operations.php:568 msgid "Table maintenance" msgstr "" -#: libraries/messages.inc.php:1080 libraries/tbl_properties.inc.php:618 +#: libraries/messages.inc.php:1076 libraries/tbl_properties.inc.php:618 #: server_synchronize.php:428 server_synchronize.php:871 msgid "Table name" msgstr "" -#: libraries/messages.inc.php:1081 pdf_schema.php:1116 +#: libraries/messages.inc.php:1077 pdf_schema.php:1116 msgid "Table of contents" msgstr "" -#: libraries/messages.inc.php:1082 tbl_operations.php:334 +#: libraries/messages.inc.php:1078 tbl_operations.php:334 msgid "Table options" msgstr "" -#: libraries/messages.inc.php:1083 server_synchronize.php:431 +#: libraries/messages.inc.php:1079 server_synchronize.php:431 #: server_synchronize.php:874 msgid "Remove column(s)" msgstr "" -#: libraries/messages.inc.php:1084 server_synchronize.php:433 +#: libraries/messages.inc.php:1080 server_synchronize.php:433 #: server_synchronize.php:876 msgid "Remove index(s)" msgstr "" -#: libraries/messages.inc.php:1088 server_synchronize.php:435 +#: libraries/messages.inc.php:1084 server_synchronize.php:435 #: server_synchronize.php:878 msgid "Update row(s)" msgstr "" -#: libraries/messages.inc.php:1090 server_synchronize.php:942 +#: libraries/messages.inc.php:1086 server_synchronize.php:942 msgid "Target database has been synchronized with source database" msgstr "" -#: libraries/messages.inc.php:1091 server_privileges.php:392 +#: libraries/messages.inc.php:1087 server_privileges.php:392 #: server_privileges.php:527 server_privileges.php:1679 #: server_privileges.php:1685 msgid "Table-specific privileges" msgstr "" -#: libraries/messages.inc.php:1092 server_status.php:254 +#: libraries/messages.inc.php:1088 server_status.php:254 msgid "Temporary data" msgstr "" -#: libraries/messages.inc.php:1093 tbl_change.php:728 +#: libraries/messages.inc.php:1089 tbl_change.php:728 msgid " Because of its length,
this field might not be editable " msgstr "" -#: libraries/messages.inc.php:1094 +#: libraries/messages.inc.php:1090 msgid "Texy! text" msgstr "" -#: libraries/messages.inc.php:1095 libraries/mysql_charsets.lib.php:298 +#: libraries/messages.inc.php:1091 libraries/mysql_charsets.lib.php:298 #: libraries/mysql_charsets.lib.php:395 msgid "Thai" msgstr "" -#: libraries/messages.inc.php:1102 libraries/replication_gui.lib.php:308 +#: libraries/messages.inc.php:1098 libraries/replication_gui.lib.php:308 #: server_privileges.php:734 msgid "This Host" msgstr "" -#: libraries/messages.inc.php:1103 server_status.php:252 +#: libraries/messages.inc.php:1099 server_status.php:252 msgid "Threads" msgstr "" -#: libraries/messages.inc.php:1104 server_processlist.php:22 +#: libraries/messages.inc.php:1100 server_processlist.php:22 #, possible-php-format msgid "Thread %s was successfully killed." msgstr "" -#: libraries/messages.inc.php:1106 +#: libraries/messages.inc.php:1102 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." msgstr "" -#: libraries/messages.inc.php:1109 pmd_pdf.php:94 +#: libraries/messages.inc.php:1105 pmd_pdf.php:94 msgid "to/from page" msgstr "" -#: libraries/messages.inc.php:1110 pdf_pages.php:343 +#: libraries/messages.inc.php:1106 pdf_pages.php:343 msgid "Toggle scratchboard" msgstr "" -#: libraries/messages.inc.php:1111 pmd_general.php:99 +#: libraries/messages.inc.php:1107 pmd_general.php:99 msgid "Toggle small/big" msgstr "" -#: libraries/messages.inc.php:1112 pmd_help.php:27 +#: libraries/messages.inc.php:1108 pmd_help.php:27 msgid "To select relation, click :" msgstr "" -#: libraries/messages.inc.php:1115 libraries/tbl_links.inc.php:149 +#: libraries/messages.inc.php:1111 libraries/tbl_links.inc.php:149 #, possible-php-format msgid "Tracking of %s.%s is activated." msgstr "" -#: libraries/messages.inc.php:1116 tbl_tracking.php:655 +#: libraries/messages.inc.php:1112 tbl_tracking.php:655 msgid "Activate now" msgstr "" -#: libraries/messages.inc.php:1117 tbl_tracking.php:653 +#: libraries/messages.inc.php:1113 tbl_tracking.php:653 #, possible-php-format msgid "Activate tracking for %s.%s" msgstr "" -#: libraries/messages.inc.php:1118 tbl_tracking.php:221 +#: libraries/messages.inc.php:1114 tbl_tracking.php:221 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/messages.inc.php:1119 tbl_tracking.php:688 +#: libraries/messages.inc.php:1115 tbl_tracking.php:688 msgid "Create version" msgstr "" -#: libraries/messages.inc.php:1120 tbl_tracking.php:668 +#: libraries/messages.inc.php:1116 tbl_tracking.php:668 #, possible-php-format msgid "Create version %s of %s.%s" msgstr "" -#: libraries/messages.inc.php:1122 tbl_tracking.php:412 +#: libraries/messages.inc.php:1118 tbl_tracking.php:412 msgid "Data definition statement" msgstr "" -#: libraries/messages.inc.php:1123 tbl_tracking.php:463 +#: libraries/messages.inc.php:1119 tbl_tracking.php:463 msgid "Data manipulation statement" msgstr "" -#: libraries/messages.inc.php:1124 tbl_tracking.php:410 tbl_tracking.php:461 +#: libraries/messages.inc.php:1120 tbl_tracking.php:410 tbl_tracking.php:461 msgid "Date" msgstr "" -#: libraries/messages.inc.php:1125 tbl_tracking.php:642 +#: libraries/messages.inc.php:1121 tbl_tracking.php:642 msgid "Deactivate now" msgstr "" -#: libraries/messages.inc.php:1126 tbl_tracking.php:640 +#: libraries/messages.inc.php:1122 tbl_tracking.php:640 #, possible-php-format msgid "Deactivate tracking for %s.%s" msgstr "" -#: libraries/messages.inc.php:1127 tbl_tracking.php:521 +#: libraries/messages.inc.php:1123 tbl_tracking.php:521 #, possible-php-format msgid "Export as %s" msgstr "" -#: libraries/messages.inc.php:1130 tbl_tracking.php:251 tbl_tracking.php:379 +#: libraries/messages.inc.php:1126 tbl_tracking.php:251 tbl_tracking.php:379 msgid "Close" msgstr "" -#: libraries/messages.inc.php:1131 tbl_tracking.php:114 +#: libraries/messages.inc.php:1127 tbl_tracking.php:114 #, possible-php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/messages.inc.php:1133 tbl_tracking.php:397 tbl_tracking.php:504 +#: libraries/messages.inc.php:1129 tbl_tracking.php:397 tbl_tracking.php:504 #, possible-php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "" -#: libraries/messages.inc.php:1134 tbl_tracking.php:561 +#: libraries/messages.inc.php:1130 tbl_tracking.php:561 msgid "Show versions" msgstr "" -#: libraries/messages.inc.php:1135 tbl_tracking.php:507 +#: libraries/messages.inc.php:1131 tbl_tracking.php:507 msgid "SQL dump (file download)" msgstr "" -#: libraries/messages.inc.php:1136 tbl_tracking.php:508 +#: libraries/messages.inc.php:1132 tbl_tracking.php:508 msgid "SQL dump" msgstr "" -#: libraries/messages.inc.php:1137 tbl_tracking.php:213 +#: libraries/messages.inc.php:1133 tbl_tracking.php:213 msgid "SQL statements executed." msgstr "" -#: libraries/messages.inc.php:1138 +#: libraries/messages.inc.php:1134 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/messages.inc.php:1139 tbl_tracking.php:509 +#: libraries/messages.inc.php:1135 tbl_tracking.php:509 msgid "SQL execution" msgstr "" -#: libraries/messages.inc.php:1140 tbl_tracking.php:230 +#: libraries/messages.inc.php:1136 tbl_tracking.php:230 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/messages.inc.php:1141 tbl_tracking.php:381 +#: libraries/messages.inc.php:1137 tbl_tracking.php:381 msgid "Tracking statements" msgstr "" -#: libraries/messages.inc.php:1148 tbl_tracking.php:593 +#: libraries/messages.inc.php:1144 tbl_tracking.php:593 msgid "Version" msgstr "" -#: libraries/messages.inc.php:1149 tbl_tracking.php:672 +#: libraries/messages.inc.php:1145 tbl_tracking.php:672 msgid "Track these data definition statements:" msgstr "" -#: libraries/messages.inc.php:1150 tbl_tracking.php:680 +#: libraries/messages.inc.php:1146 tbl_tracking.php:680 msgid "Track these data manipulation statements:" msgstr "" -#: libraries/messages.inc.php:1155 tbl_tracking.php:411 tbl_tracking.php:462 +#: libraries/messages.inc.php:1151 tbl_tracking.php:411 tbl_tracking.php:462 msgid "Username" msgstr "" -#: libraries/messages.inc.php:1156 tbl_tracking.php:203 +#: libraries/messages.inc.php:1152 tbl_tracking.php:203 #, possible-php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "" -#: libraries/messages.inc.php:1157 tbl_tracking.php:187 +#: libraries/messages.inc.php:1153 tbl_tracking.php:187 #, possible-php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "" -#: libraries/messages.inc.php:1158 tbl_tracking.php:195 +#: libraries/messages.inc.php:1154 tbl_tracking.php:195 #, possible-php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "" -#: libraries/messages.inc.php:1159 tbl_tracking.php:262 +#: libraries/messages.inc.php:1155 tbl_tracking.php:262 #, possible-php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/messages.inc.php:1161 tbl_tracking.php:220 +#: libraries/messages.inc.php:1157 tbl_tracking.php:220 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/messages.inc.php:1162 libraries/mysql_charsets.lib.php:219 +#: libraries/messages.inc.php:1158 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:362 msgid "Traditional Chinese" msgstr "" -#: libraries/messages.inc.php:1163 libraries/mysql_charsets.lib.php:292 +#: libraries/messages.inc.php:1159 libraries/mysql_charsets.lib.php:292 msgid "Traditional Spanish" msgstr "" -#: libraries/messages.inc.php:1164 server_status.php:388 +#: libraries/messages.inc.php:1160 server_status.php:388 msgid "Traffic" msgstr "" -#: libraries/messages.inc.php:1165 server_status.php:261 +#: libraries/messages.inc.php:1161 server_status.php:261 msgid "Transaction coordinator" msgstr "" -#: libraries/messages.inc.php:1166 +#: libraries/messages.inc.php:1162 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 " @@ -6068,27 +6068,27 @@ msgid "" "need to set the first option to the empty string." msgstr "" -#: libraries/messages.inc.php:1167 +#: libraries/messages.inc.php:1163 msgid "" "Displays hexadecimal representation of data. Optional first parameter " "specifies how often space will be added (defaults to 2 nibbles)." msgstr "" -#: libraries/messages.inc.php:1168 +#: libraries/messages.inc.php:1164 msgid "" "Displays a clickable thumbnail. The options are the maximum width and height " "in pixels. The original aspect ratio is preserved." msgstr "" -#: libraries/messages.inc.php:1169 +#: libraries/messages.inc.php:1165 msgid "Displays a link to download this image." msgstr "" -#: libraries/messages.inc.php:1170 +#: libraries/messages.inc.php:1166 msgid "See image/jpeg: inline" msgstr "" -#: libraries/messages.inc.php:1171 +#: libraries/messages.inc.php:1167 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 " @@ -6100,7 +6100,7 @@ msgid "" "gmdate() function." msgstr "" -#: libraries/messages.inc.php:1172 +#: libraries/messages.inc.php:1168 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 " @@ -6114,31 +6114,31 @@ msgid "" "(Default 1)." msgstr "" -#: libraries/messages.inc.php:1173 +#: libraries/messages.inc.php:1169 msgid "" "Displays the contents of the field as-is, without running it through " "htmlspecialchars(). That is, the field is assumed to contain valid HTML." msgstr "" -#: libraries/messages.inc.php:1174 +#: libraries/messages.inc.php:1170 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." msgstr "" -#: libraries/messages.inc.php:1175 +#: libraries/messages.inc.php:1171 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." msgstr "" -#: libraries/messages.inc.php:1176 +#: libraries/messages.inc.php:1172 msgid "Formats text as SQL query with syntax highlighting." msgstr "" -#: libraries/messages.inc.php:1177 +#: libraries/messages.inc.php:1173 msgid "" "Displays a part of a string. The first option is the number of characters to " "skip from the beginning of the string (Default 0). The second option is the " @@ -6147,69 +6147,69 @@ msgid "" "(Default: \"...\")." msgstr "" -#: libraries/messages.inc.php:1179 server_binlog.php:183 server_binlog.php:186 +#: libraries/messages.inc.php:1175 server_binlog.php:183 server_binlog.php:186 #: server_processlist.php:49 server_processlist.php:51 msgid "Truncate Shown Queries" msgstr "" -#: libraries/messages.inc.php:1180 libraries/mysql_charsets.lib.php:301 +#: libraries/messages.inc.php:1176 libraries/mysql_charsets.lib.php:301 #: libraries/mysql_charsets.lib.php:389 msgid "Turkish" msgstr "" -#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:304 +#: libraries/messages.inc.php:1179 libraries/mysql_charsets.lib.php:304 #: libraries/mysql_charsets.lib.php:386 msgid "Ukrainian" msgstr "" -#: libraries/messages.inc.php:1185 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:1181 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 msgid "Unicode" msgstr "" -#: libraries/messages.inc.php:1187 libraries/mysql_charsets.lib.php:398 +#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:398 #: libraries/mysql_charsets.lib.php:405 msgid "unknown" msgstr "" -#: libraries/messages.inc.php:1190 server_privileges.php:1152 +#: libraries/messages.inc.php:1186 server_privileges.php:1152 #, possible-php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/messages.inc.php:1191 user_password.php:112 +#: libraries/messages.inc.php:1187 user_password.php:112 msgid "The profile has been updated." msgstr "" -#: libraries/messages.inc.php:1193 libraries/relation.lib.php:138 +#: libraries/messages.inc.php:1189 libraries/relation.lib.php:138 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" -#: libraries/messages.inc.php:1194 +#: libraries/messages.inc.php:1190 #, possible-php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/messages.inc.php:1204 tbl_printview.php:314 tbl_structure.php:661 +#: libraries/messages.inc.php:1200 tbl_printview.php:314 tbl_structure.php:661 msgid "Usage" msgstr "" -#: libraries/messages.inc.php:1205 +#: libraries/messages.inc.php:1201 msgid "Enclose table and field names with backquotes" msgstr "" -#: libraries/messages.inc.php:1206 libraries/replication_gui.lib.php:314 +#: libraries/messages.inc.php:1202 libraries/replication_gui.lib.php:314 #: server_privileges.php:740 msgid "Use Host Table" msgstr "" -#: libraries/messages.inc.php:1207 server_privileges.php:848 +#: libraries/messages.inc.php:1203 server_privileges.php:848 #, possible-php-format msgid "The user %s already exists!" msgstr "" -#: libraries/messages.inc.php:1209 libraries/replication_gui.lib.php:55 +#: libraries/messages.inc.php:1205 libraries/replication_gui.lib.php:55 #: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245 #: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255 #: server_privileges.php:672 server_privileges.php:675 @@ -6217,35 +6217,35 @@ msgstr "" msgid "User name" msgstr "" -#: libraries/messages.inc.php:1210 server_privileges.php:1645 +#: libraries/messages.inc.php:1206 server_privileges.php:1645 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/messages.inc.php:1211 server_privileges.php:1365 +#: libraries/messages.inc.php:1207 server_privileges.php:1365 msgid "User overview" msgstr "" -#: libraries/messages.inc.php:1212 server_privileges.php:1261 +#: libraries/messages.inc.php:1208 server_privileges.php:1261 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/messages.inc.php:1213 server_privileges.php:2026 +#: libraries/messages.inc.php:1209 server_privileges.php:2026 #, possible-php-format msgid "Users having access to "%s"" msgstr "" -#: libraries/messages.inc.php:1214 main.php:189 server_privileges.php:1350 +#: libraries/messages.inc.php:1210 main.php:189 server_privileges.php:1350 #: server_privileges.php:1497 server_privileges.php:1611 #: server_privileges.php:2029 server_processlist.php:54 msgid "User" msgstr "" -#: libraries/messages.inc.php:1215 tbl_change.php:1171 +#: libraries/messages.inc.php:1211 tbl_change.php:1171 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/messages.inc.php:1217 libraries/replication_gui.lib.php:251 +#: libraries/messages.inc.php:1213 libraries/replication_gui.lib.php:251 #: libraries/replication_gui.lib.php:319 libraries/replication_gui.lib.php:342 #: server_privileges.php:678 server_privileges.php:745 #: server_privileges.php:769 server_privileges.php:1889 @@ -6253,91 +6253,91 @@ msgstr "" msgid "Use text field" msgstr "" -#: libraries/messages.inc.php:1221 libraries/sqlvalidator.lib.php:68 +#: libraries/messages.inc.php:1217 libraries/sqlvalidator.lib.php:68 #, possible-php-format msgid "" "The SQL validator could not be initialized. Please check if you have " "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" -#: libraries/messages.inc.php:1222 libraries/replication_gui.lib.php:111 +#: libraries/messages.inc.php:1218 libraries/replication_gui.lib.php:111 #: server_status.php:627 tbl_change.php:324 tbl_printview.php:370 #: tbl_select.php:139 tbl_structure.php:730 msgid "Value" msgstr "" -#: libraries/messages.inc.php:1223 libraries/replication_gui.lib.php:110 +#: libraries/messages.inc.php:1219 libraries/replication_gui.lib.php:110 #: libraries/sql_query_form.lib.php:445 server_status.php:626 #: server_variables.php:52 msgid "Variable" msgstr "" -#: libraries/messages.inc.php:1225 server_export.php:21 +#: libraries/messages.inc.php:1221 server_export.php:21 msgid "View dump (schema) of databases" msgstr "" -#: libraries/messages.inc.php:1227 tbl_export.php:23 +#: libraries/messages.inc.php:1223 tbl_export.php:23 msgid "View dump (schema) of table" msgstr "" -#: libraries/messages.inc.php:1231 view_create.php:142 +#: libraries/messages.inc.php:1227 view_create.php:142 msgid "VIEW name" msgstr "" -#: libraries/messages.inc.php:1237 main.php:205 +#: libraries/messages.inc.php:1233 main.php:205 msgid "Web server" msgstr "" -#: libraries/messages.inc.php:1239 libraries/mysql_charsets.lib.php:277 +#: libraries/messages.inc.php:1235 libraries/mysql_charsets.lib.php:277 #: libraries/mysql_charsets.lib.php:325 msgid "West European" msgstr "" -#: libraries/messages.inc.php:1240 main.php:230 +#: libraries/messages.inc.php:1236 main.php:230 msgid "Wiki" msgstr "" -#: libraries/messages.inc.php:1241 server_privileges.php:2138 +#: libraries/messages.inc.php:1237 server_privileges.php:2138 msgid "wildcard" msgstr "" -#: libraries/messages.inc.php:1248 +#: libraries/messages.inc.php:1244 msgid "Export contents" msgstr "" -#: libraries/messages.inc.php:1249 +#: libraries/messages.inc.php:1245 msgid "Export functions" msgstr "" -#: libraries/messages.inc.php:1250 +#: libraries/messages.inc.php:1246 msgid "Export procedures" msgstr "" -#: libraries/messages.inc.php:1251 +#: libraries/messages.inc.php:1247 msgid "Export Structure Schemas (recommended)" msgstr "" -#: libraries/messages.inc.php:1252 +#: libraries/messages.inc.php:1248 msgid "Export tables" msgstr "" -#: libraries/messages.inc.php:1253 +#: libraries/messages.inc.php:1249 msgid "Export triggers" msgstr "" -#: libraries/messages.inc.php:1254 +#: libraries/messages.inc.php:1250 msgid "Export views" msgstr "" -#: libraries/messages.inc.php:1255 +#: libraries/messages.inc.php:1251 msgid "XML" msgstr "" -#: libraries/messages.inc.php:1259 server_privileges.php:592 +#: libraries/messages.inc.php:1255 server_privileges.php:592 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" -#: libraries/messages.inc.php:1260 +#: libraries/messages.inc.php:1256 msgid "\"zipped\"" msgstr "" diff --git a/po/pl.po b/po/pl.po index 428b42289..24030014b 100644 --- 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-05-13 11:25+0200\n" +"POT-Creation-Date: 2010-05-13 11:30+0200\n" "PO-Revision-Date: 2010-03-12 09:17+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: polish \n" @@ -13,19 +13,19 @@ msgstr "" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:38 browse_foreigners.php:59 -#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:870 +#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:866 #: server_privileges.php:1475 msgid "Show all" msgstr "Pokaż wszystko" #: browse_foreigners.php:82 db_operations.php:648 -#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:394 -#: libraries/export/pdf.php:147 libraries/messages.inc.php:597 +#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394 +#: libraries/export/pdf.php:147 libraries/messages.inc.php:593 #: pdf_schema.php:283 pdf_schema.php:1123 pdf_schema.php:1139 msgid "Page number:" msgstr "Numer strony:" -#: browse_foreigners.php:132 libraries/messages.inc.php:1242 +#: browse_foreigners.php:132 libraries/messages.inc.php:1238 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -38,7 +38,7 @@ 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/db_links.inc.php:75 -#: libraries/messages.inc.php:841 libraries/tbl_links.inc.php:63 +#: libraries/messages.inc.php:837 libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Szukaj" @@ -47,12 +47,12 @@ msgstr "Szukaj" #: db_search.php:362 db_structure.php:567 js/messages.php:48 #: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2267 +#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 #: 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 #: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614 -#: libraries/messages.inc.php:361 libraries/replication_gui.lib.php:73 +#: libraries/messages.inc.php:357 libraries/replication_gui.lib.php:73 #: libraries/replication_gui.lib.php:365 libraries/select_server.lib.php:104 #: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477 #: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782 @@ -72,33 +72,33 @@ msgid "Go" msgstr "Wykonaj" #: browse_foreigners.php:168 browse_foreigners.php:172 -#: libraries/Index.class.php:442 libraries/messages.inc.php:459 +#: libraries/Index.class.php:442 libraries/messages.inc.php:455 #: tbl_tracking.php:320 msgid "Keyname" msgstr "Nazwa klucza" #: browse_foreigners.php:169 browse_foreigners.php:171 -#: libraries/messages.inc.php:252 server_collations.php:55 +#: libraries/messages.inc.php:248 server_collations.php:55 #: server_collations.php:67 server_engines.php:59 server_status.php:628 msgid "Description" msgstr "Opis" #: browse_foreigners.php:247 browse_foreigners.php:256 #: browse_foreigners.php:268 browse_foreigners.php:276 -#: libraries/messages.inc.php:1218 +#: libraries/messages.inc.php:1214 msgid "Use this value" msgstr "Użyj tej wartości" -#: db_create.php:46 libraries/messages.inc.php:215 +#: db_create.php:46 libraries/messages.inc.php:211 #, php-format msgid "Database %1$s has been created." msgstr "Baza danych %1$s została utworzona." -#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:232 +#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:228 msgid "Database comment: " msgstr "Komentarz bazy danych: " -#: db_datadict.php:165 libraries/messages.inc.php:1070 +#: db_datadict.php:165 libraries/messages.inc.php:1066 #: libraries/tbl_properties.inc.php:724 pdf_schema.php:1236 #: tbl_operations.php:345 tbl_printview.php:130 msgid "Table comments" @@ -107,7 +107,7 @@ msgstr "Komentarze tabeli" #: db_datadict.php:174 db_qbe.php:174 libraries/Index.class.php:446 #: libraries/export/htmlword.php:244 libraries/export/latex.php:360 #: libraries/export/odt.php:294 libraries/export/texytext.php:233 -#: libraries/messages.inc.php:317 libraries/tbl_properties.inc.php:99 +#: libraries/messages.inc.php:313 libraries/tbl_properties.inc.php:99 #: libraries/tbl_properties.inc.php:275 pdf_schema.php:1262 #: pdf_schema.php:1283 tbl_change.php:308 tbl_indexes.php:189 #: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135 @@ -119,7 +119,7 @@ msgstr "Pole" #: libraries/db_events.inc.php:31 libraries/db_routines.inc.php:42 #: 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/messages.inc.php:1181 +#: libraries/export/texytext.php:234 libraries/messages.inc.php:1177 #: libraries/tbl_properties.inc.php:100 pdf_schema.php:1263 #: pdf_schema.php:1284 server_privileges.php:2031 tbl_change.php:287 #: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313 @@ -131,7 +131,7 @@ msgstr "Typ" #: db_datadict.php:177 libraries/Index.class.php:449 #: libraries/export/htmlword.php:246 libraries/export/latex.php:360 #: libraries/export/odt.php:300 libraries/export/texytext.php:235 -#: libraries/messages.inc.php:576 libraries/tbl_properties.inc.php:109 +#: libraries/messages.inc.php:572 libraries/tbl_properties.inc.php:109 #: pdf_schema.php:1265 pdf_schema.php:1286 tbl_change.php:323 #: tbl_printview.php:145 tbl_structure.php:181 tbl_tracking.php:276 #: tbl_tracking.php:327 @@ -140,7 +140,7 @@ msgstr "Null" #: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 -#: libraries/export/texytext.php:236 libraries/messages.inc.php:238 +#: libraries/export/texytext.php:236 libraries/messages.inc.php:234 #: libraries/tbl_properties.inc.php:106 pdf_schema.php:1266 #: pdf_schema.php:1287 tbl_printview.php:146 tbl_structure.php:182 #: tbl_tracking.php:277 @@ -149,14 +149,14 @@ msgstr "Domyślnie" #: db_datadict.php:182 libraries/export/htmlword.php:249 #: libraries/export/latex.php:362 libraries/export/odt.php:307 -#: libraries/export/texytext.php:238 libraries/messages.inc.php:483 +#: libraries/export/texytext.php:238 libraries/messages.inc.php:479 #: pdf_schema.php:1268 pdf_schema.php:1289 tbl_printview.php:150 msgid "Links to" msgstr "Łącze" #: db_datadict.php:184 db_printview.php:112 libraries/export/htmlword.php:252 #: libraries/export/latex.php:365 libraries/export/odt.php:312 -#: libraries/export/texytext.php:241 libraries/messages.inc.php:163 +#: libraries/export/texytext.php:241 libraries/messages.inc.php:159 #: libraries/tbl_properties.inc.php:130 pdf_schema.php:1279 #: pdf_schema.php:1290 tbl_printview.php:152 msgid "Comments" @@ -165,7 +165,7 @@ msgstr "Komentarze" #: db_datadict.php:267 libraries/Index.class.php:359 #: 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/messages.inc.php:559 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:555 #: libraries/mult_submits.inc.php:263 pdf_schema.php:1344 #: server_privileges.php:1529 server_privileges.php:1540 #: server_privileges.php:1850 server_privileges.php:1855 @@ -177,7 +177,7 @@ msgstr "Nie" #: db_datadict.php:267 libraries/Index.class.php:360 #: libraries/Index.class.php:385 libraries/export/htmlword.php:322 #: libraries/export/latex.php:430 libraries/export/odt.php:368 -#: libraries/export/texytext.php:311 libraries/messages.inc.php:1257 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:1253 #: libraries/mult_submits.inc.php:45 libraries/mult_submits.inc.php:50 #: libraries/mult_submits.inc.php:55 libraries/mult_submits.inc.php:60 #: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:101 @@ -191,108 +191,108 @@ msgstr "Nie" msgid "Yes" msgstr "Tak" -#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:670 +#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:666 #: tbl_printview.php:498 msgid "Print" msgstr "Drukuj" -#: db_export.php:29 libraries/messages.inc.php:1226 +#: db_export.php:29 libraries/messages.inc.php:1222 msgid "View dump (schema) of database" msgstr "Zrzut bazy danych" #: db_export.php:33 db_printview.php:96 db_qbe.php:102 db_structure.php:51 -#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:568 +#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:564 #: navigation.php:346 msgid "No tables found in database." msgstr "Nie znaleziono tabeli w bazie danych." -#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:845 +#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:841 #: server_export.php:27 msgid "Select All" msgstr "Zaznacz wszystkie" -#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1188 +#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1184 #: server_export.php:29 msgid "Unselect All" msgstr "Odznacz wszystkie" -#: db_operations.php:38 libraries/messages.inc.php:213 tbl_create.php:54 +#: db_operations.php:38 libraries/messages.inc.php:209 tbl_create.php:54 msgid "The database name is empty!" msgstr "Nazwa bazy danych jest pusta!" -#: db_operations.php:236 libraries/messages.inc.php:753 +#: db_operations.php:236 libraries/messages.inc.php:749 #, php-format msgid "Database %s has been renamed to %s" msgstr "Baza danych %s ma nazwę zmienioną na %s" -#: db_operations.php:240 libraries/messages.inc.php:178 +#: db_operations.php:240 libraries/messages.inc.php:174 #, php-format msgid "Database %s has been copied to %s" msgstr "Baza danych %s została skopiowana do %s" -#: db_operations.php:410 libraries/messages.inc.php:236 +#: db_operations.php:410 libraries/messages.inc.php:232 msgid "Rename database to" msgstr "Zmień nazwę bazy danych na" -#: db_operations.php:415 libraries/messages.inc.php:161 +#: db_operations.php:415 libraries/messages.inc.php:157 #: server_processlist.php:57 msgid "Command" msgstr "Polecenie" -#: db_operations.php:425 libraries/messages.inc.php:58 tbl_change.php:1143 +#: db_operations.php:425 libraries/messages.inc.php:54 tbl_change.php:1143 msgid "and then" msgstr "a następnie" -#: db_operations.php:451 libraries/messages.inc.php:233 +#: db_operations.php:451 libraries/messages.inc.php:229 msgid "Copy database to" msgstr "Kopiuj bazę danych do" -#: db_operations.php:458 libraries/messages.inc.php:1043 +#: db_operations.php:458 libraries/messages.inc.php:1039 #: tbl_operations.php:526 tbl_tracking.php:388 msgid "Structure only" msgstr "Tylko struktura" -#: db_operations.php:459 libraries/messages.inc.php:1041 +#: db_operations.php:459 libraries/messages.inc.php:1037 #: tbl_operations.php:527 tbl_tracking.php:390 msgid "Structure and data" msgstr "Struktura i dane" -#: db_operations.php:460 libraries/messages.inc.php:229 tbl_operations.php:528 +#: db_operations.php:460 libraries/messages.inc.php:225 tbl_operations.php:528 #: tbl_tracking.php:389 msgid "Data only" msgstr "Tylko dane" -#: db_operations.php:468 libraries/messages.inc.php:186 +#: db_operations.php:468 libraries/messages.inc.php:182 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE przed skopiowaniem" #: db_operations.php:471 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 -#: libraries/export/sql.php:82 libraries/messages.inc.php:30 +#: libraries/export/sql.php:82 libraries/messages.inc.php:26 #: tbl_operations.php:534 #, php-format msgid "Add %s" msgstr "Dodaj %s" -#: db_operations.php:475 libraries/messages.inc.php:29 tbl_operations.php:297 +#: db_operations.php:475 libraries/messages.inc.php:25 tbl_operations.php:297 #: tbl_operations.php:536 msgid "Add AUTO_INCREMENT value" msgstr "Dodaj wartości AUTO_INCREMENT" -#: db_operations.php:479 libraries/messages.inc.php:31 tbl_operations.php:543 +#: db_operations.php:479 libraries/messages.inc.php:27 tbl_operations.php:543 msgid "Add constraints" msgstr "Dodaj ograniczenia" -#: db_operations.php:492 libraries/messages.inc.php:1059 +#: db_operations.php:492 libraries/messages.inc.php:1055 msgid "Switch to copied database" msgstr "Przełącz do skopiowanej bazy danych" -#: db_operations.php:533 libraries/messages.inc.php:89 +#: db_operations.php:533 libraries/messages.inc.php:85 msgid "BLOB Repository" msgstr "Repozytorium BLOBów" #: db_operations.php:536 db_tracking.php:76 libraries/common.lib.php:1350 -#: libraries/messages.inc.php:1037 libraries/server_links.inc.php:49 +#: libraries/messages.inc.php:1033 libraries/server_links.inc.php:49 #: server_processlist.php:59 tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "Status" @@ -304,11 +304,11 @@ msgctxt "BLOB repository" msgid "Enabled" msgstr "włączone" -#: db_operations.php:548 libraries/messages.inc.php:93 +#: db_operations.php:548 libraries/messages.inc.php:89 msgid "Disable" msgstr "Wyłącz" -#: db_operations.php:558 libraries/messages.inc.php:90 +#: db_operations.php:558 libraries/messages.inc.php:86 msgid "Damaged" msgstr "Uszkodzone" @@ -326,12 +326,12 @@ msgctxt "BLOB repository" msgid "Disabled" msgstr "wyłączone" -#: db_operations.php:574 libraries/messages.inc.php:96 +#: db_operations.php:574 libraries/messages.inc.php:92 msgid "Enable" msgstr "Włącz" #: db_operations.php:598 libraries/Index.class.php:448 -#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:158 +#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:154 #: 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:361 @@ -340,7 +340,7 @@ msgstr "Włącz" msgid "Collation" msgstr "Metoda porównywania napisów" -#: db_operations.php:609 libraries/messages.inc.php:742 main.php:316 +#: db_operations.php:609 libraries/messages.inc.php:738 main.php:316 #: pdf_schema.php:34 #, php-format msgid "" @@ -350,58 +350,58 @@ msgstr "" "Dodatkowe możliwości pracy z połączonymi tabelami zostały wyłączone. Aby " "dowiedzieć się, dlaczego - kliknij %stutaj%s." -#: db_operations.php:645 libraries/messages.inc.php:264 pdf_pages.php:528 +#: db_operations.php:645 libraries/messages.inc.php:260 pdf_pages.php:528 msgid "Display PDF schema" msgstr "Wyświetl schemat PDF" -#: db_operations.php:661 libraries/messages.inc.php:877 pdf_pages.php:529 +#: db_operations.php:661 libraries/messages.inc.php:873 pdf_pages.php:529 msgid "Show grid" msgstr "Pokaż siatkę" -#: db_operations.php:664 libraries/messages.inc.php:874 pdf_pages.php:530 +#: db_operations.php:664 libraries/messages.inc.php:870 pdf_pages.php:530 msgid "Show color" msgstr "Pokaż kolor" -#: db_operations.php:666 libraries/messages.inc.php:998 pdf_pages.php:531 +#: db_operations.php:666 libraries/messages.inc.php:994 pdf_pages.php:531 msgid "Show dimension of tables" msgstr "Pokaż wymiary tabel" -#: db_operations.php:669 libraries/messages.inc.php:52 pdf_pages.php:532 +#: db_operations.php:669 libraries/messages.inc.php:48 pdf_pages.php:532 msgid "Display all tables with the same width" msgstr "wyświetlić wszystkie tabele z taką samą szerokością?" -#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:227 +#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:223 #: pdf_pages.php:533 msgid "Data Dictionary" msgstr "Słownik danych" -#: db_operations.php:674 libraries/messages.inc.php:884 pdf_pages.php:534 +#: db_operations.php:674 libraries/messages.inc.php:880 pdf_pages.php:534 msgid "Only show keys" msgstr "Pokaż tylko klucze" -#: db_operations.php:676 libraries/messages.inc.php:875 pdf_pages.php:535 +#: db_operations.php:676 libraries/messages.inc.php:871 pdf_pages.php:535 msgid "Data Dictionary Format" msgstr "Format słownika danych" -#: db_operations.php:678 libraries/messages.inc.php:464 pdf_pages.php:537 +#: db_operations.php:678 libraries/messages.inc.php:460 pdf_pages.php:537 msgid "Landscape" msgstr "Orientacja pozioma" -#: db_operations.php:679 libraries/messages.inc.php:663 pdf_pages.php:538 +#: db_operations.php:679 libraries/messages.inc.php:659 pdf_pages.php:538 msgid "Portrait" msgstr "Orientacja pionowa" -#: db_operations.php:682 libraries/messages.inc.php:599 pdf_pages.php:541 +#: db_operations.php:682 libraries/messages.inc.php:595 pdf_pages.php:541 msgid "Paper size" msgstr "Rozmiar papieru" -#: db_operations.php:706 libraries/messages.inc.php:281 +#: db_operations.php:706 libraries/messages.inc.php:277 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 libraries/messages.inc.php:1087 +#: libraries/header.inc.php:126 libraries/messages.inc.php:1083 #: pdf_pages.php:405 server_privileges.php:1626 server_privileges.php:1682 #: server_privileges.php:1946 server_synchronize.php:423 #: server_synchronize.php:866 tbl_tracking.php:592 test/theme.php:75 @@ -409,176 +409,176 @@ msgid "Table" msgstr "Tabela" #: db_printview.php:105 libraries/db_structure.lib.php:56 -#: libraries/messages.inc.php:735 +#: libraries/messages.inc.php:731 msgid "Records" msgstr "Rekordy" #: db_printview.php:109 libraries/db_structure.lib.php:67 -#: libraries/messages.inc.php:1003 tbl_indexes.php:190 +#: libraries/messages.inc.php:999 tbl_indexes.php:190 msgid "Size" msgstr "Rozmiar" #: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 -#: libraries/export/sql.php:899 libraries/messages.inc.php:436 +#: libraries/export/sql.php:899 libraries/messages.inc.php:432 msgid "in use" msgstr "w użyciu" #: db_printview.php:187 libraries/db_info.inc.php:88 -#: libraries/export/sql.php:514 libraries/messages.inc.php:1032 +#: libraries/export/sql.php:514 libraries/messages.inc.php:1028 #: pdf_schema.php:1241 tbl_printview.php:434 tbl_structure.php:810 msgid "Creation" msgstr "Utworzenie" #: db_printview.php:196 libraries/db_info.inc.php:93 -#: libraries/export/sql.php:519 libraries/messages.inc.php:1036 +#: libraries/export/sql.php:519 libraries/messages.inc.php:1032 #: pdf_schema.php:1246 tbl_printview.php:444 tbl_structure.php:818 msgid "Last update" msgstr "Ostatnia aktualizacja" #: db_printview.php:205 libraries/db_info.inc.php:98 -#: libraries/export/sql.php:524 libraries/messages.inc.php:1031 +#: libraries/export/sql.php:524 libraries/messages.inc.php:1027 #: pdf_schema.php:1251 tbl_printview.php:454 tbl_structure.php:826 msgid "Last check" msgstr "Ostatnie sprawdzenie" -#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1085 +#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1081 #, php-format msgid "%s table(s)" msgstr "%s tabel(a)" #: db_qbe.php:29 libraries/display_tbl.lib.php:1981 -#: libraries/messages.inc.php:1051 libraries/sql_query_form.lib.php:140 +#: libraries/messages.inc.php:1047 libraries/sql_query_form.lib.php:140 #: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131 #: view_operations.php:62 msgid "Your SQL query has been executed successfully" msgstr "Zapytanie SQL zostało wykonane pomyślnie" -#: db_qbe.php:42 libraries/messages.inc.php:371 +#: db_qbe.php:42 libraries/messages.inc.php:367 msgid "You have to choose at least one column to display" msgstr "Należy wybrać przynajmniej jedną kolumnę do wyświetlenia" #: db_qbe.php:200 libraries/db_structure.lib.php:104 -#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1014 +#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1010 msgid "Sort" msgstr "Sortuj" #: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111 #: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828 -#: libraries/messages.inc.php:69 server_databases.php:170 +#: libraries/messages.inc.php:65 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314 msgid "Ascending" msgstr "Rosnąco" #: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119 #: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825 -#: libraries/messages.inc.php:251 server_databases.php:170 +#: libraries/messages.inc.php:247 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315 msgid "Descending" msgstr "Malejąco" #: db_qbe.php:264 db_tracking.php:78 libraries/display_tbl.lib.php:308 -#: libraries/messages.inc.php:888 tbl_change.php:277 tbl_tracking.php:597 +#: libraries/messages.inc.php:884 tbl_change.php:277 tbl_tracking.php:597 msgid "Show" msgstr "Pokaż" -#: db_qbe.php:300 libraries/messages.inc.php:202 +#: db_qbe.php:300 libraries/messages.inc.php:198 msgid "Criteria" msgstr "Kryteria" #: db_qbe.php:353 db_qbe.php:435 db_qbe.php:527 db_qbe.php:558 -#: libraries/messages.inc.php:718 +#: libraries/messages.inc.php:714 msgid "Ins" msgstr "Dodaj" #: db_qbe.php:357 db_qbe.php:439 db_qbe.php:524 db_qbe.php:555 -#: libraries/messages.inc.php:56 +#: libraries/messages.inc.php:52 msgid "And" msgstr "oraz" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:529 db_qbe.php:560 -#: libraries/messages.inc.php:717 +#: libraries/messages.inc.php:713 msgid "Del" 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/messages.inc.php:592 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:588 #: libraries/tbl_properties.inc.php:779 server_privileges.php:258 #: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288 msgid "Or" msgstr "lub" -#: db_qbe.php:507 libraries/messages.inc.php:516 +#: db_qbe.php:507 libraries/messages.inc.php:512 msgid "Modify" msgstr "Modyfikacja" -#: db_qbe.php:584 libraries/messages.inc.php:33 +#: db_qbe.php:584 libraries/messages.inc.php:29 msgid "Add/Delete Criteria Row" msgstr "Dodaj/usuń wiersz kryteriów" -#: db_qbe.php:596 libraries/messages.inc.php:32 +#: db_qbe.php:596 libraries/messages.inc.php:28 msgid "Add/Delete Field Columns" msgstr "Dodaj/usuń pola" -#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1192 +#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1188 msgid "Update Query" msgstr "Zmień zapytanie" -#: db_qbe.php:617 libraries/messages.inc.php:1216 +#: db_qbe.php:617 libraries/messages.inc.php:1212 msgid "Use Tables" msgstr "Użyj tabel" -#: db_qbe.php:640 libraries/messages.inc.php:723 +#: db_qbe.php:640 libraries/messages.inc.php:719 #, php-format msgid "SQL query on database %s:" msgstr "Zapytanie SQL dla bazy danych %s:" -#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:823 +#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:819 msgid "Submit Query" msgstr "Wykonaj zapytania" #: db_search.php:68 libraries/auth/config.auth.lib.php:84 #: libraries/auth/config.auth.lib.php:103 #: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52 -#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:26 +#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:22 msgid "Access denied" msgstr "Brak dostępu" -#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:836 +#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:832 msgid "at least one of the words" msgstr "przynajmniej jedno ze słów" -#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:837 +#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:833 msgid "all words" msgstr "wszystkie słowa" -#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:838 +#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:834 msgid "the exact phrase" msgstr "cała fraza" -#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:839 +#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:835 msgid "as regular expression" msgstr "wyrażenie regularne" -#: db_search.php:242 libraries/messages.inc.php:840 +#: db_search.php:242 libraries/messages.inc.php:836 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Szukaj w rezultatach dla \"%s\" %s:" -#: db_search.php:260 libraries/messages.inc.php:579 +#: db_search.php:260 libraries/messages.inc.php:575 #, php-format msgid "%s match(es) inside table %s" 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/messages.inc.php:108 +#: db_structure.php:105 libraries/messages.inc.php:104 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468 msgid "Browse" msgstr "Przeglądaj" #: db_search.php:272 libraries/display_tbl.lib.php:1165 -#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:243 +#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:239 #: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406 #: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377 #: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216 @@ -586,45 +586,45 @@ msgstr "Przeglądaj" msgid "Delete" msgstr "Usuń" -#: db_search.php:285 libraries/messages.inc.php:580 +#: db_search.php:285 libraries/messages.inc.php:576 #, php-format msgid "Total: %s match(es)" msgstr "W sumie: %s trafień" -#: db_search.php:299 libraries/messages.inc.php:832 +#: db_search.php:299 libraries/messages.inc.php:828 msgid "Search in database" msgstr "Szukaj w bazie danych" -#: db_search.php:302 libraries/messages.inc.php:835 +#: db_search.php:302 libraries/messages.inc.php:831 msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgstr "Szukane słowa lub wartości (symbol wieloznaczny: \"%\"):" -#: db_search.php:307 libraries/messages.inc.php:842 +#: db_search.php:307 libraries/messages.inc.php:838 msgid "Find:" msgstr "Znajdź:" -#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1017 +#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1013 msgid "Words are separated by a space character (\" \")." msgstr "Słowa są rozdzielane znakiem spacji (\" \")." -#: db_search.php:325 libraries/messages.inc.php:834 +#: db_search.php:325 libraries/messages.inc.php:830 msgid "Inside table(s):" msgstr "Wewnątrz tabel(i):" -#: db_search.php:355 libraries/messages.inc.php:833 +#: db_search.php:355 libraries/messages.inc.php:829 msgid "Inside field:" 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/messages.inc.php:431 libraries/sql_query_form.lib.php:334 +#: libraries/messages.inc.php:427 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/db_links.inc.php:63 libraries/export/latex.php:337 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:1048 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:1044 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 #: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269 msgid "Structure" @@ -633,8 +633,8 @@ 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:1642 -#: libraries/db_links.inc.php:100 libraries/messages.inc.php:272 +#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/db_links.inc.php:100 libraries/messages.inc.php:268 #: 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 @@ -644,40 +644,40 @@ 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:1641 -#: libraries/messages.inc.php:284 libraries/mult_submits.inc.php:39 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: libraries/messages.inc.php:280 libraries/mult_submits.inc.php:39 #: libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Wyczyść" -#: db_structure.php:316 libraries/messages.inc.php:1075 +#: db_structure.php:316 libraries/messages.inc.php:1071 #: libraries/tbl_links.inc.php:100 #, php-format msgid "Table %s has been emptied" msgstr "Tabela %s została opróżniona" -#: db_structure.php:326 libraries/messages.inc.php:1229 +#: db_structure.php:326 libraries/messages.inc.php:1225 #: 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/messages.inc.php:1074 +#: db_structure.php:326 libraries/messages.inc.php:1070 #: 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 libraries/messages.inc.php:1128 +#: db_structure.php:333 libraries/messages.inc.php:1124 msgid "Tracking is active." msgstr "" -#: db_structure.php:335 libraries/messages.inc.php:1129 +#: db_structure.php:335 libraries/messages.inc.php:1125 msgid "Tracking is not active." msgstr "" #: db_structure.php:420 libraries/display_tbl.lib.php:1944 -#: libraries/messages.inc.php:1228 +#: libraries/messages.inc.php:1224 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -687,83 +687,83 @@ msgstr "" "sdocumentation%s." #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 -#: libraries/messages.inc.php:1233 libraries/tbl_info.inc.php:66 +#: libraries/messages.inc.php:1229 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/messages.inc.php:773 libraries/server_links.inc.php:70 +#: libraries/messages.inc.php:769 libraries/server_links.inc.php:70 #: server_replication.php:33 server_replication.php:164 server_status.php:258 msgid "Replication" msgstr "Replikacja" -#: db_structure.php:489 libraries/messages.inc.php:1053 +#: db_structure.php:489 libraries/messages.inc.php:1049 msgid "Sum" msgstr "Suma" #: db_structure.php:496 libraries/StorageEngine.class.php:356 -#: libraries/messages.inc.php:239 +#: libraries/messages.inc.php:235 #, 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 #: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086 -#: libraries/messages.inc.php:1243 libraries/mult_submits.inc.php:16 +#: libraries/messages.inc.php:1239 libraries/mult_submits.inc.php:16 #: server_databases.php:346 server_databases.php:351 #: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465 msgid "With selected:" msgstr "Zaznaczone:" #: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: libraries/messages.inc.php:148 server_databases.php:348 +#: libraries/messages.inc.php:144 server_databases.php:348 #: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459 msgid "Check All" msgstr "Zaznacz wszystkie" #: db_structure.php:531 libraries/display_tbl.lib.php:2077 -#: libraries/messages.inc.php:1184 libraries/replication_gui.lib.php:33 +#: libraries/messages.inc.php:1180 libraries/replication_gui.lib.php:33 #: server_databases.php:350 server_privileges.php:533 #: server_privileges.php:1564 tbl_structure.php:463 msgid "Uncheck All" msgstr "Odznacz wszystkie" -#: db_structure.php:536 libraries/messages.inc.php:150 +#: db_structure.php:536 libraries/messages.inc.php:146 msgid "Check tables having overhead" msgstr "Zaznacz nieoptymalne" #: db_structure.php:547 db_structure.php:548 db_structure.php:599 -#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:672 +#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:668 #: libraries/mult_submits.inc.php:28 tbl_structure.php:493 #: tbl_structure.php:495 msgid "Print view" msgstr "Widok do druku" -#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:153 +#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:149 #: libraries/mult_submits.inc.php:42 tbl_operations.php:579 msgid "Check table" msgstr "Sprawdź tabelę" -#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:590 +#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:586 #: libraries/mult_submits.inc.php:47 tbl_operations.php:619 #: tbl_structure.php:710 tbl_structure.php:712 msgid "Optimize table" msgstr "Optymalizuj tabelę" -#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:758 +#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:754 #: libraries/mult_submits.inc.php:52 tbl_operations.php:609 msgid "Repair table" msgstr "Napraw tabelę" -#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:55 +#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:51 #: libraries/mult_submits.inc.php:57 tbl_operations.php:599 msgid "Analyze table" msgstr "Analizuj tabelę" #: db_structure.php:557 db_structure.php:558 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/messages.inc.php:310 +#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:306 #: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84 #: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109 #: server_privileges.php:1341 setup/frames/menu.inc.php:22 @@ -771,7 +771,7 @@ msgstr "Analizuj tabelę" msgid "Export" msgstr "Eksport" -#: db_tracking.php:66 libraries/messages.inc.php:1151 +#: db_tracking.php:66 libraries/messages.inc.php:1147 #, fuzzy msgid "Tracked tables" msgstr "Pomiń zablokowane tabele" @@ -780,7 +780,7 @@ msgstr "Pomiń zablokowane tabele" #: 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/header_printview.inc.php:58 libraries/messages.inc.php:212 +#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:208 #: navigation.php:233 server_databases.php:169 server_privileges.php:1621 #: server_privileges.php:1682 server_privileges.php:1940 #: server_processlist.php:56 server_synchronize.php:1179 @@ -788,83 +788,83 @@ msgstr "Pomiń zablokowane tabele" msgid "Database" msgstr "Baza danych" -#: db_tracking.php:73 libraries/messages.inc.php:1146 +#: db_tracking.php:73 libraries/messages.inc.php:1142 #, fuzzy msgid "Last version" msgstr "Utwórz związek" -#: db_tracking.php:74 libraries/messages.inc.php:1145 tbl_tracking.php:594 +#: db_tracking.php:74 libraries/messages.inc.php:1141 tbl_tracking.php:594 #, fuzzy msgid "Created" msgstr "Utwórz" -#: db_tracking.php:75 libraries/messages.inc.php:1147 tbl_tracking.php:595 +#: db_tracking.php:75 libraries/messages.inc.php:1143 tbl_tracking.php:595 msgid "Updated" msgstr "" #: db_tracking.php:77 libraries/Index.class.php:440 -#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:27 +#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:23 #: server_databases.php:203 server_privileges.php:1503 #: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187 msgid "Action" msgstr "Działanie" -#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:247 +#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:243 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:106 libraries/messages.inc.php:1142 tbl_tracking.php:548 +#: db_tracking.php:106 libraries/messages.inc.php:1138 tbl_tracking.php:548 #: tbl_tracking.php:606 tbl_tracking.php:613 msgid "active" msgstr "" -#: db_tracking.php:108 libraries/messages.inc.php:1143 tbl_tracking.php:550 +#: db_tracking.php:108 libraries/messages.inc.php:1139 tbl_tracking.php:550 #: tbl_tracking.php:608 tbl_tracking.php:610 msgid "not active" msgstr "" -#: db_tracking.php:121 libraries/messages.inc.php:1160 +#: db_tracking.php:121 libraries/messages.inc.php:1156 #, fuzzy msgid "Versions" msgstr "Perski" -#: db_tracking.php:122 libraries/messages.inc.php:1132 tbl_tracking.php:379 +#: db_tracking.php:122 libraries/messages.inc.php:1128 tbl_tracking.php:379 #: tbl_tracking.php:624 msgid "Tracking report" msgstr "" -#: db_tracking.php:123 libraries/messages.inc.php:1144 tbl_tracking.php:251 +#: db_tracking.php:123 libraries/messages.inc.php:1140 tbl_tracking.php:251 #: tbl_tracking.php:624 #, fuzzy msgid "Structure snapshot" msgstr "Tylko struktura" -#: db_tracking.php:152 libraries/messages.inc.php:1154 +#: db_tracking.php:152 libraries/messages.inc.php:1150 #, fuzzy msgid "Untracked tables" msgstr "Pomiń zablokowane tabele" -#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1153 +#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1149 #: tbl_structure.php:529 tbl_structure.php:531 #, fuzzy msgid "Track table" msgstr "Sprawdź tabelę" -#: db_tracking.php:200 libraries/messages.inc.php:1121 +#: db_tracking.php:200 libraries/messages.inc.php:1117 #, fuzzy msgid "Database Log" msgstr "Baza danych" -#: export.php:62 libraries/messages.inc.php:312 +#: export.php:62 libraries/messages.inc.php:308 msgid "Selected export type has to be saved in file!" msgstr "Wybrany typ eksportu musi być zapisany do pliku" -#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:567 +#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:563 #, php-format msgid "Insufficient space to save the file %s." msgstr "Brak miejsca na zapis pliku %s." -#: export.php:294 libraries/messages.inc.php:324 +#: export.php:294 libraries/messages.inc.php:320 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -872,17 +872,17 @@ msgstr "" "Plik %s już istnieje na serwerze, zmień nazwę pliku lub zaznacz opcję " "nadpisywania plików." -#: export.php:298 export.php:302 libraries/messages.inc.php:562 +#: export.php:298 export.php:302 libraries/messages.inc.php:558 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Serwer WWW nie ma praw do zapisu pliku %s." -#: export.php:629 libraries/messages.inc.php:276 +#: export.php:629 libraries/messages.inc.php:272 #, php-format msgid "Dump has been saved to file %s." msgstr "Zrzut został zapisany do pliku %s." -#: import.php:60 libraries/messages.inc.php:1202 +#: import.php:60 libraries/messages.inc.php:1198 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation%" @@ -892,14 +892,14 @@ msgstr "" "limitu, proszę zapoznać się z %sdokumenacją%s." #: import.php:279 import.php:332 libraries/File.class.php:849 -#: libraries/File.class.php:961 libraries/messages.inc.php:325 +#: libraries/File.class.php:961 libraries/messages.inc.php:321 msgid "File could not be read" msgstr "Nie można odczytać pliku" #: import.php:287 import.php:296 import.php:315 import.php:324 #: libraries/File.class.php:1031 libraries/File.class.php:1039 #: libraries/File.class.php:1055 libraries/File.class.php:1063 -#: libraries/messages.inc.php:1189 +#: libraries/messages.inc.php:1185 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -908,7 +908,7 @@ msgstr "" "Próbowano wczytać plik z nieobsługiwanym typem kompresji (%s). Albo jego " "obsługa nie została zaimplementowana albo została konfiguracyjnie wyłączona." -#: import.php:337 libraries/messages.inc.php:547 +#: import.php:337 libraries/messages.inc.php:543 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -919,29 +919,29 @@ msgstr "" "określa się w konfiguracji PHP). Zobacz FAQ 1.16." #: import.php:372 libraries/display_import.lib.php:24 -#: libraries/messages.inc.php:125 +#: libraries/messages.inc.php:121 msgid "Could not load import plugins, please check your installation!" msgstr "Nie udało się załadować modułów importu, proszę sprawdzić instalację!" -#: import.php:397 libraries/messages.inc.php:102 +#: import.php:397 libraries/messages.inc.php:98 msgid "The bookmark has been deleted." msgstr "Zapamiętane zapytanie SQL zostało usunięte." -#: import.php:401 libraries/messages.inc.php:879 +#: import.php:401 libraries/messages.inc.php:875 msgid "Showing bookmark" msgstr "Pokaz zapamiętanego zapytania" -#: import.php:403 libraries/messages.inc.php:101 +#: import.php:403 libraries/messages.inc.php:97 #, php-format msgid "Bookmark %s created" msgstr "Zapytanie %s zostało zapamiętane" -#: import.php:409 import.php:415 libraries/messages.inc.php:407 +#: import.php:409 import.php:415 libraries/messages.inc.php:403 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Import zakończony sukcesem, wykonano %d zapytań." -#: import.php:424 libraries/messages.inc.php:1107 +#: import.php:424 libraries/messages.inc.php:1103 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -949,13 +949,13 @@ msgstr "" "Limit czasu wykonania skryptu minął; aby ukończyć import, proszę przedłożyć " "ten sam plik a import zostanie wznowiony." -#: index.php:190 libraries/messages.inc.php:553 +#: index.php:190 libraries/messages.inc.php:549 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" "phpMyAdmin jest bardziej przyjazny w przeglądarkach obsługujących ramki" -#: js/messages.php:25 libraries/messages.inc.php:155 +#: js/messages.php:25 libraries/messages.inc.php:151 #: server_synchronize.php:345 server_synchronize.php:357 #: server_synchronize.php:373 server_synchronize.php:380 #: server_synchronize.php:739 server_synchronize.php:767 @@ -963,116 +963,116 @@ msgstr "" msgid "Click to select" msgstr "" -#: js/messages.php:26 libraries/messages.inc.php:156 +#: js/messages.php:26 libraries/messages.inc.php:152 msgid "Click to unselect" msgstr "" #: js/messages.php:27 libraries/import.lib.php:103 -#: libraries/messages.inc.php:550 sql.php:89 +#: libraries/messages.inc.php:546 sql.php:89 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Polecenie \"DROP DATABASE\" jest zablokowane." -#: js/messages.php:30 libraries/messages.inc.php:270 +#: js/messages.php:30 libraries/messages.inc.php:266 #: libraries/mult_submits.inc.php:258 sql.php:188 msgid "Do you really want to " msgstr "Czy na pewno wykonać " -#: js/messages.php:31 libraries/messages.inc.php:271 +#: js/messages.php:31 libraries/messages.inc.php:267 #: libraries/mult_submits.inc.php:258 sql.php:172 msgid "You are about to DESTROY a complete database!" msgstr "Masz zamiar ZNISZCZYĆ całą bazę danych!" -#: js/messages.php:34 libraries/messages.inc.php:94 +#: js/messages.php:34 libraries/messages.inc.php:90 msgid "You are about to DISABLE a BLOB Repository!" msgstr "Masz zamiar WYŁĄCZYĆ repozytorium BLOBów!" -#: js/messages.php:35 libraries/messages.inc.php:91 +#: js/messages.php:35 libraries/messages.inc.php:87 #, php-format msgid "Are you sure you want to disable all BLOB references for database %s?" msgstr "Czy na pewno wyłączyć wszystkie odwołania do BLOBów z bazy danych %s?" -#: js/messages.php:38 libraries/messages.inc.php:342 +#: js/messages.php:38 libraries/messages.inc.php:338 msgid "Missing value in the form!" msgstr "Brakująca wartość w formularzu!" -#: js/messages.php:39 libraries/messages.inc.php:570 +#: js/messages.php:39 libraries/messages.inc.php:566 msgid "This is not a number!" msgstr "To nie jest liczba!" -#: js/messages.php:42 libraries/messages.inc.php:380 +#: js/messages.php:42 libraries/messages.inc.php:376 msgid "The host name is empty!" msgstr "Brak nazwy hosta!" -#: js/messages.php:43 libraries/messages.inc.php:1208 +#: js/messages.php:43 libraries/messages.inc.php:1204 msgid "The user name is empty!" msgstr "Brak nazwy użytkownika!" -#: js/messages.php:44 libraries/messages.inc.php:607 +#: js/messages.php:44 libraries/messages.inc.php:603 #: server_privileges.php:1197 user_password.php:70 msgid "The password is empty!" msgstr "Puste hasło!" -#: js/messages.php:45 libraries/messages.inc.php:609 +#: js/messages.php:45 libraries/messages.inc.php:605 #: server_privileges.php:1195 user_password.php:73 msgid "The passwords aren't the same!" msgstr "Hasła nie są identyczne!" -#: js/messages.php:49 libraries/messages.inc.php:123 pmd_general.php:342 +#: js/messages.php:49 libraries/messages.inc.php:119 pmd_general.php:342 #: pmd_general.php:379 msgid "Cancel" msgstr "Anuluj" -#: js/messages.php:52 libraries/messages.inc.php:514 +#: js/messages.php:52 libraries/messages.inc.php:510 msgid "Modifications have been saved" msgstr "Modyfikacje zostały zapamiętane" -#: js/messages.php:53 libraries/messages.inc.php:741 +#: js/messages.php:53 libraries/messages.inc.php:737 msgid "Relation deleted" msgstr "Usunięto powiązanie" -#: js/messages.php:54 libraries/messages.inc.php:340 +#: js/messages.php:54 libraries/messages.inc.php:336 msgid "FOREIGN KEY relation added" msgstr "Relacja FOREIGN KEY została dodana." -#: js/messages.php:55 libraries/messages.inc.php:434 +#: js/messages.php:55 libraries/messages.inc.php:430 msgid "Internal relation added" msgstr "Dodano wewnętrzne powiązanie" -#: js/messages.php:56 libraries/messages.inc.php:299 +#: js/messages.php:56 libraries/messages.inc.php:295 msgid "Error: Relation not added." msgstr "Błąd: nie dodano związku." -#: js/messages.php:57 libraries/messages.inc.php:300 +#: js/messages.php:57 libraries/messages.inc.php:296 msgid "Error: relation already exists." msgstr "Błąd: związek już istnieje." -#: js/messages.php:58 libraries/messages.inc.php:302 +#: js/messages.php:58 libraries/messages.inc.php:298 msgid "Error saving coordinates for Designer." msgstr "Błąd podczas zapisywania współrzędnych dla Projektanta." -#: js/messages.php:59 libraries/messages.inc.php:351 +#: js/messages.php:59 libraries/messages.inc.php:347 #: libraries/relation.lib.php:107 msgid "General relation features" msgstr "Ogólne funkcje relacyjne" -#: js/messages.php:59 libraries/messages.inc.php:260 +#: js/messages.php:59 libraries/messages.inc.php:256 #: libraries/relation.lib.php:101 libraries/relation.lib.php:108 msgid "Disabled" msgstr "wyłączone" -#: js/messages.php:60 libraries/messages.inc.php:850 +#: js/messages.php:60 libraries/messages.inc.php:846 msgid "Select referenced key" msgstr "" -#: js/messages.php:61 libraries/messages.inc.php:848 +#: js/messages.php:61 libraries/messages.inc.php:844 msgid "Select Foreign Key" msgstr "Wybierz klucz zewnętrzny" -#: js/messages.php:62 libraries/messages.inc.php:653 +#: js/messages.php:62 libraries/messages.inc.php:649 msgid "Please select the primary key or a unique key" msgstr "Należy wybrać klucz główny lub klucz jednoznaczny" -#: js/messages.php:63 libraries/messages.inc.php:142 pmd_general.php:77 +#: js/messages.php:63 libraries/messages.inc.php:138 pmd_general.php:77 #: tbl_relation.php:548 msgid "Choose field to display" msgstr "Wybierz wyświetlane pole" @@ -1092,9 +1092,9 @@ msgid "Prev" msgstr "Poprzednie" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2332 -#: libraries/common.lib.php:2335 libraries/display_tbl.lib.php:338 -#: libraries/messages.inc.php:543 server_binlog.php:205 server_binlog.php:207 +#: js/messages.php:77 libraries/common.lib.php:2344 +#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: libraries/messages.inc.php:539 server_binlog.php:205 server_binlog.php:207 #: tbl_printview.php:424 tbl_structure.php:802 msgid "Next" msgstr "Następne" @@ -1169,27 +1169,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1543 +#: js/messages.php:97 libraries/common.lib.php:1555 msgid "Jan" msgstr "Sty" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1545 +#: js/messages.php:99 libraries/common.lib.php:1557 msgid "Feb" msgstr "Lut" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1547 +#: js/messages.php:101 libraries/common.lib.php:1559 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1549 +#: js/messages.php:103 libraries/common.lib.php:1561 msgid "Apr" msgstr "Kwi" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1551 +#: js/messages.php:105 libraries/common.lib.php:1563 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1197,37 +1197,37 @@ msgid "May" msgstr "Maj" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1553 +#: js/messages.php:107 libraries/common.lib.php:1565 msgid "Jun" msgstr "Cze" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1555 +#: js/messages.php:109 libraries/common.lib.php:1567 msgid "Jul" msgstr "Lip" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1557 +#: js/messages.php:111 libraries/common.lib.php:1569 msgid "Aug" msgstr "Sie" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1559 +#: js/messages.php:113 libraries/common.lib.php:1571 msgid "Sep" msgstr "Wrz" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1561 +#: js/messages.php:115 libraries/common.lib.php:1573 msgid "Oct" msgstr "Paź" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1563 +#: js/messages.php:117 libraries/common.lib.php:1575 msgid "Nov" msgstr "Lis" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1565 +#: js/messages.php:119 libraries/common.lib.php:1577 msgid "Dec" msgstr "Gru" @@ -1268,37 +1268,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1568 +#: js/messages.php:132 libraries/common.lib.php:1580 msgid "Sun" msgstr "Nie" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1570 +#: js/messages.php:134 libraries/common.lib.php:1582 msgid "Mon" msgstr "Pon" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1572 +#: js/messages.php:136 libraries/common.lib.php:1584 msgid "Tue" msgstr "Wto" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1574 +#: js/messages.php:138 libraries/common.lib.php:1586 msgid "Wed" msgstr "Śro" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1576 +#: js/messages.php:140 libraries/common.lib.php:1588 msgid "Thu" msgstr "Czw" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1578 +#: js/messages.php:142 libraries/common.lib.php:1590 msgid "Fri" msgstr "Pią" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1580 +#: js/messages.php:144 libraries/common.lib.php:1592 msgid "Sat" msgstr "Sob" @@ -1374,23 +1374,23 @@ msgstr "w użyciu" msgid "Second" msgstr "na sekundę" -#: libraries/Config.class.php:1015 libraries/messages.inc.php:338 +#: libraries/Config.class.php:1015 libraries/messages.inc.php:334 msgid "Font size" msgstr "Rozmiar pisma" #: libraries/File.class.php:344 libraries/File.class.php:432 #: libraries/File.class.php:569 libraries/File.class.php:708 -#: libraries/messages.inc.php:1201 +#: libraries/messages.inc.php:1197 msgid "Unknown error in file upload." msgstr "Nieznany błąd wrzucania plików." -#: libraries/File.class.php:414 libraries/messages.inc.php:1198 +#: libraries/File.class.php:414 libraries/messages.inc.php:1194 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "Rozmiar wrzucanego pliku jest większy niż wartość dyrektywy " "upload_max_filesize w php.ini." -#: libraries/File.class.php:417 libraries/messages.inc.php:1197 +#: libraries/File.class.php:417 libraries/messages.inc.php:1193 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -1398,56 +1398,56 @@ msgstr "" "Rozmiar wrzucanego pliku jest więcszy niż wartość dyrektywy MAX_FILE_SIZE " "określonej w formularzu HTML." -#: libraries/File.class.php:420 libraries/messages.inc.php:1200 +#: libraries/File.class.php:420 libraries/messages.inc.php:1196 msgid "The uploaded file was only partially uploaded." msgstr "Plik został wrzucony jedynie częściowo." -#: libraries/File.class.php:423 libraries/messages.inc.php:1199 +#: libraries/File.class.php:423 libraries/messages.inc.php:1195 msgid "Missing a temporary folder." msgstr "Nie znaleziono katalogu tymczasowego." -#: libraries/File.class.php:426 libraries/messages.inc.php:1195 +#: libraries/File.class.php:426 libraries/messages.inc.php:1191 msgid "Failed to write file to disk." msgstr "Nie udało się zapisać pliku na dysk." -#: libraries/File.class.php:429 libraries/messages.inc.php:1196 +#: libraries/File.class.php:429 libraries/messages.inc.php:1192 msgid "File upload stopped by extension." msgstr "Wrzucanie pliku zostało zatrzymane przez rozszerzenie." -#: libraries/File.class.php:908 libraries/messages.inc.php:319 +#: libraries/File.class.php:908 libraries/messages.inc.php:315 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "Błąd podczas przesuwania wrzuconego pliku, zobacz FAQ 1.11" -#: libraries/Index.class.php:428 libraries/messages.inc.php:554 +#: libraries/Index.class.php:428 libraries/messages.inc.php:550 #: tbl_relation.php:529 msgid "No index defined!" msgstr "Brak zdefiniowanego indeksu!" -#: libraries/Index.class.php:433 libraries/messages.inc.php:411 +#: libraries/Index.class.php:433 libraries/messages.inc.php:407 #: server_databases.php:132 tbl_tracking.php:316 msgid "Indexes" msgstr "Indeksy" -#: libraries/Index.class.php:444 libraries/messages.inc.php:1186 +#: libraries/Index.class.php:444 libraries/messages.inc.php:1182 #: 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:475 tbl_tracking.php:322 msgid "Unique" msgstr "Jednoznaczny" -#: libraries/Index.class.php:445 libraries/messages.inc.php:596 +#: libraries/Index.class.php:445 libraries/messages.inc.php:592 #: tbl_tracking.php:323 msgid "Packed" msgstr "Spakowany" -#: libraries/Index.class.php:447 libraries/messages.inc.php:131 +#: libraries/Index.class.php:447 libraries/messages.inc.php:127 #: tbl_tracking.php:325 msgid "Cardinality" msgstr "Moc" -#: libraries/Index.class.php:450 libraries/messages.inc.php:162 +#: libraries/Index.class.php:450 libraries/messages.inc.php:158 #: tbl_tracking.php:279 tbl_tracking.php:328 msgid "Comment" msgstr "Komentarz" @@ -1455,22 +1455,22 @@ msgstr "Komentarz" #: libraries/Index.class.php:466 libraries/common.lib.php:616 #: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:280 pdf_pages.php:280 +#: libraries/messages.inc.php:276 pdf_pages.php:280 #: setup/frames/index.inc.php:124 setup/lib/messages.inc.php:352 #: tbl_row_action.php:69 msgid "Edit" msgstr "Edytuj" -#: libraries/Index.class.php:472 libraries/messages.inc.php:666 +#: libraries/Index.class.php:472 libraries/messages.inc.php:662 msgid "The primary key has been dropped" msgstr "Klucz podstawowy został usunięty" -#: libraries/Index.class.php:476 libraries/messages.inc.php:413 +#: libraries/Index.class.php:476 libraries/messages.inc.php:409 #, php-format msgid "Index %s has been dropped" msgstr "Klucz %s został usunięty" -#: libraries/Index.class.php:576 libraries/messages.inc.php:412 +#: libraries/Index.class.php:576 libraries/messages.inc.php:408 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -1479,7 +1479,7 @@ 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/messages.inc.php:218 +#: libraries/List_Database.class.php:431 libraries/messages.inc.php:214 #: libraries/server_links.inc.php:41 server_databases.php:88 #: server_privileges.php:1621 setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" @@ -1509,86 +1509,86 @@ msgid_plural "%1$d rows inserted." msgstr[0] "Wstawionych rekordów: %1$d." msgstr[1] "Wstawionych rekordów: %1$d." -#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:549 +#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:545 msgid "" "There is no detailed status information available for this storage engine." msgstr "Brak szczegółowych informacji o tym mechanizmie składowania" -#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:291 +#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:287 #, php-format msgid "%s is available on this MySQL server." msgstr "%s jest dostępny na tym serwerze MySQL." -#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:292 +#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:288 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "Mechanizm %s został wyłączony w tym serwerze MySQL." -#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:294 +#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:290 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "Ten serwer MySQL nie obsługuje mechanizmu składowania %s." -#: libraries/Table.class.php:1019 libraries/messages.inc.php:443 +#: libraries/Table.class.php:1019 libraries/messages.inc.php:439 msgid "Invalid database" msgstr "Niewłaściwa baza danych" -#: libraries/Table.class.php:1033 libraries/messages.inc.php:450 +#: libraries/Table.class.php:1033 libraries/messages.inc.php:446 #: tbl_get_field.php:26 msgid "Invalid table name" msgstr "Niewłaściwa nazwa tabeli" -#: libraries/Table.class.php:1048 libraries/messages.inc.php:301 +#: libraries/Table.class.php:1048 libraries/messages.inc.php:297 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "Błąd podczas zmiany nazwy tabeli z %1$s na %2$s" -#: libraries/Table.class.php:1132 libraries/messages.inc.php:754 +#: libraries/Table.class.php:1132 libraries/messages.inc.php:750 #, php-format msgid "Table %s has been renamed to %s" msgstr "Tabela %s ma nazwę zmienioną na %s" -#: libraries/Theme.class.php:162 libraries/messages.inc.php:1099 +#: libraries/Theme.class.php:162 libraries/messages.inc.php:1095 #, php-format msgid "No valid image path for theme %s found!" msgstr "" "Nie znaleziono prawidłowej ścieżki do obrazka dla motywu graficznego %s!" -#: libraries/Theme.class.php:384 libraries/messages.inc.php:1097 +#: libraries/Theme.class.php:384 libraries/messages.inc.php:1093 msgid "No preview available." msgstr "Podgląd niedostępny." -#: libraries/Theme.class.php:387 libraries/messages.inc.php:1089 +#: libraries/Theme.class.php:387 libraries/messages.inc.php:1085 msgid "take it" msgstr "użyj" -#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1096 +#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1092 #, php-format msgid "Default theme %s not found!" msgstr "Nie znaleziono domyślnego motywu graficznego %s!" -#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1098 +#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1094 #, php-format msgid "Theme %s not found!" msgstr "Nie znaleziono motywu graficznego %s!" -#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1100 +#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1096 #, php-format msgid "Theme path not found for theme %s!" msgstr "Nie znaleziono ścieżki do motywu %s!" -#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1101 +#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1097 #: test/theme.php:161 themes.php:21 themes.php:41 msgid "Theme / Style" msgstr "Motyw graficzny / styl" -#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:172 +#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:168 msgid "Cannot connect: invalid settings." msgstr "Nie udało się nawiązać połączenia: błędne ustawienia." #: libraries/auth/config.auth.lib.php:92 #: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65 -#: libraries/messages.inc.php:1238 test/theme.php:152 +#: libraries/messages.inc.php:1234 test/theme.php:152 #, php-format msgid "Welcome to %s" msgstr "Witamy w %s" @@ -1614,51 +1614,51 @@ msgstr "" "pliku config.inc.php i upewnić się, że odpowiadają one informacjom danym " "przez administratora serwera MySQL." -#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:488 +#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:484 msgid "Log in" msgstr "Login" #: libraries/auth/cookie.auth.lib.php:246 -#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:659 +#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:655 #: libraries/navigation_header.inc.php:93 #: libraries/navigation_header.inc.php:95 msgid "phpMyAdmin documentation" msgstr "Dokumentacja phpMyAdmina" #: libraries/auth/cookie.auth.lib.php:258 -#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:492 +#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:488 msgid "You can enter hostname/IP address and port separated by space." msgstr "Można podać nawę hosta/adres IP i port oddzielone spacją." -#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:493 +#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:489 msgid "Server:" msgstr "Serwer" -#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:494 +#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:490 msgid "Username:" msgstr "Użytkownik:" -#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:491 +#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:487 msgid "Password:" msgstr "Hasło:" -#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:854 +#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:850 msgid "Server Choice" msgstr "Wybór serwera" #: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 -#: libraries/messages.inc.php:177 +#: libraries/messages.inc.php:173 msgid "Cookies must be enabled past this point." msgstr "Odtąd musi być włączona obsługa ciasteczek." #: libraries/auth/cookie.auth.lib.php:671 -#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:489 +#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:485 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "Konfiguracja zabrania logowania bez hasła (zobacz AllowNoPassword)" #: libraries/auth/cookie.auth.lib.php:675 -#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:544 +#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:540 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" @@ -1666,53 +1666,53 @@ msgstr "" #: libraries/auth/cookie.auth.lib.php:685 #: libraries/auth/cookie.auth.lib.php:687 -#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:126 +#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:122 msgid "Cannot log in to the MySQL server" msgstr "Nie udało się zalogować na serwer MySQL" -#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1245 +#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1241 msgid "Wrong username/password. Access denied." msgstr "Błędne pola użytkownik/hasło. Brak dostępu." #: libraries/auth/swekey/swekey.auth.lib.php:118 -#: libraries/messages.inc.php:1057 +#: libraries/messages.inc.php:1053 #, php-format msgid "File %s does not contain any key id" msgstr "Plik %s nie zawiera żadnego identyfikatora klucza" #: libraries/auth/swekey/swekey.auth.lib.php:157 #: libraries/auth/swekey/swekey.auth.lib.php:180 -#: libraries/messages.inc.php:1056 +#: libraries/messages.inc.php:1052 msgid "Hardware authentication failed" msgstr "Uwierzytelnianie sprzętowe nie powiodło się" #: libraries/auth/swekey/swekey.auth.lib.php:166 -#: libraries/messages.inc.php:1058 +#: libraries/messages.inc.php:1054 msgid "No valid authentication key plugged" msgstr "Prawidłowy klucz uwierzytelniający nie jest podłączony" #: libraries/auth/swekey/swekey.auth.lib.php:202 -#: libraries/messages.inc.php:1055 +#: libraries/messages.inc.php:1051 msgid "Authenticating..." msgstr "Trwa uwierzytelnianie…" -#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1230 +#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1226 msgid "View image" msgstr "Zobacz obraz" -#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:652 +#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:648 msgid "Play audio" msgstr "Odegraj dźwięk" -#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1232 +#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1228 msgid "View video" msgstr "Obejrzyj film" -#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:269 +#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:265 msgid "Download file" msgstr "Ściągnij plik" -#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:128 +#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:124 msgid "" "Couldn't load the iconv or recode extension needed for charset conversion. " "Either configure PHP to enable these extensions or disable charset " @@ -1724,7 +1724,7 @@ msgstr "" #: libraries/charset_conversion.lib.php:79 #: libraries/charset_conversion.lib.php:90 -#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:130 +#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:126 msgid "" "Couldn't use the iconv, libiconv, or recode_string functions, although the " "necessary extensions appear to be loaded. Check your PHP configuration." @@ -1732,7 +1732,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/messages.inc.php:170 +#: libraries/common.inc.php:583 libraries/messages.inc.php:166 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!" @@ -1768,23 +1768,23 @@ msgstr "" msgid "Invalid server index: %s" msgstr "Niewłaściwy numer serwera: \"%s\"" -#: libraries/common.inc.php:636 libraries/messages.inc.php:448 +#: libraries/common.inc.php:636 libraries/messages.inc.php:444 #, 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/messages.inc.php:856 libraries/select_server.lib.php:41 +#: libraries/messages.inc.php:852 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/messages.inc.php:437 +#: libraries/common.inc.php:823 libraries/messages.inc.php:433 msgid "Invalid authentication method set in configuration:" msgstr "W konfiguracji ustawiono błędną metodę uwierzytelniania:" -#: libraries/common.lib.php:147 libraries/messages.inc.php:499 +#: libraries/common.lib.php:147 libraries/messages.inc.php:495 #, php-format msgid "Max: %s%s" msgstr "Maksymalny rozmiar: %s%s" @@ -1806,7 +1806,7 @@ msgstr "Wysłane" #: libraries/common.lib.php:428 libraries/common.lib.php:430 #: libraries/common.lib.php:432 libraries/common.lib.php:448 #: libraries/common.lib.php:450 libraries/dbg/setup.php:25 -#: libraries/display_export.lib.php:164 libraries/messages.inc.php:267 +#: libraries/display_export.lib.php:164 libraries/messages.inc.php:263 #: libraries/relation.lib.php:97 libraries/sql_query_form.lib.php:451 #: libraries/sql_query_form.lib.php:454 main.php:229 pdf_pages.php:37 #: pdf_pages.php:43 pdf_pages.php:49 pdf_pages.php:54 @@ -1816,55 +1816,55 @@ msgstr "Dokumentacja" #: libraries/common.lib.php:581 libraries/core.lib.php:234 #: libraries/core.lib.php:263 libraries/import.lib.php:134 -#: libraries/messages.inc.php:297 pdf_schema.php:32 pdf_schema.php:232 +#: libraries/messages.inc.php:293 pdf_schema.php:32 pdf_schema.php:232 #: tbl_change.php:1027 tbl_operations.php:213 tbl_relation.php:290 #: view_operations.php:62 msgid "Error" msgstr "Błąd" #: libraries/common.lib.php:595 libraries/header_printview.inc.php:61 -#: libraries/messages.inc.php:1023 server_processlist.php:60 +#: libraries/messages.inc.php:1019 server_processlist.php:60 #: server_status.php:247 msgid "SQL query" msgstr "Zapytanie SQL" -#: libraries/common.lib.php:634 libraries/messages.inc.php:538 +#: libraries/common.lib.php:634 libraries/messages.inc.php:534 msgid "MySQL said: " msgstr "MySQL zwrócił komunikat: " -#: libraries/common.lib.php:667 libraries/messages.inc.php:76 +#: libraries/common.lib.php:667 libraries/messages.inc.php:72 #: pdf_schema.php:241 user_password.php:115 msgid "Back" msgstr "Powrót" -#: libraries/common.lib.php:1177 libraries/messages.inc.php:309 +#: libraries/common.lib.php:1177 libraries/messages.inc.php:305 #: setup/lib/messages.inc.php:353 msgid "Explain SQL" msgstr "Wyjaśnij SQL" -#: libraries/common.lib.php:1180 libraries/messages.inc.php:551 +#: libraries/common.lib.php:1180 libraries/messages.inc.php:547 msgid "Skip Explain SQL" msgstr "Pomiń wyjaśnienie SQL" -#: libraries/common.lib.php:1212 libraries/messages.inc.php:563 +#: libraries/common.lib.php:1212 libraries/messages.inc.php:559 msgid "Without PHP Code" msgstr "bez kodu PHP" -#: libraries/common.lib.php:1215 libraries/messages.inc.php:649 +#: libraries/common.lib.php:1215 libraries/messages.inc.php:645 #: setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "Utwórz kod PHP" -#: libraries/common.lib.php:1233 libraries/messages.inc.php:737 +#: libraries/common.lib.php:1233 libraries/messages.inc.php:733 #: server_status.php:341 setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "Odśwież" -#: libraries/common.lib.php:1242 libraries/messages.inc.php:575 +#: libraries/common.lib.php:1242 libraries/messages.inc.php:571 msgid "Skip Validate SQL" msgstr "Pomiń sprawdzanie poprawności SQL" -#: libraries/common.lib.php:1245 libraries/messages.inc.php:1220 +#: libraries/common.lib.php:1245 libraries/messages.inc.php:1216 #: setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "Sprawdź poprawność SQL" @@ -1880,11 +1880,11 @@ msgid "Inline" msgstr "Mechanizmy" #: libraries/common.lib.php:1332 libraries/common.lib.php:1347 -#: libraries/messages.inc.php:713 +#: libraries/messages.inc.php:709 msgid "Profiling" msgstr "Profilowanie" -#: libraries/common.lib.php:1351 libraries/messages.inc.php:1108 +#: libraries/common.lib.php:1351 libraries/messages.inc.php:1104 #: libraries/tbl_triggers.lib.php:28 server_processlist.php:58 msgid "Time" msgstr "Czas" @@ -1918,46 +1918,56 @@ msgstr "PB" msgid "EiB" msgstr "EB" +#. l10n: Thousands separator +#: libraries/common.lib.php:1417 +msgid "," +msgstr " " + +#. l10n: Decimal separator +#: libraries/common.lib.php:1419 +msgid "." +msgstr "," + #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1584 +#: libraries/common.lib.php:1596 #: libraries/transformations/text_plain__dateformat.inc.php:28 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y, %H:%M" -#: libraries/common.lib.php:1886 +#: libraries/common.lib.php:1898 #, 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:2301 libraries/common.lib.php:2304 -#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:664 +#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:660 #: server_status.php:608 msgid "Begin" msgstr "Początek" -#: libraries/common.lib.php:2302 libraries/common.lib.php:2305 -#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:665 +#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:661 #: server_binlog.php:168 server_binlog.php:170 msgid "Previous" msgstr "Poprzednie" -#: libraries/common.lib.php:2333 libraries/common.lib.php:2336 -#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:289 +#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:285 msgid "End" msgstr "Koniec" -#: libraries/common.lib.php:2409 libraries/messages.inc.php:455 +#: libraries/common.lib.php:2421 libraries/messages.inc.php:451 #, php-format msgid "Jump to database "%s"." msgstr "Skok do bazy danych "%s"." -#: libraries/common.lib.php:2429 libraries/messages.inc.php:461 +#: libraries/common.lib.php:2441 libraries/messages.inc.php:457 #, 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/core.lib.php:286 libraries/dbg/setup.php:22 -#: libraries/messages.inc.php:127 +#: libraries/messages.inc.php:123 #, php-format msgid "" "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " @@ -1966,118 +1976,118 @@ msgstr "" "nie udało się załadować modułu %s,
proszę sprawdzić konfigurację PHP" #: libraries/db_events.inc.php:20 libraries/db_events.inc.php:22 -#: libraries/export/sql.php:415 libraries/messages.inc.php:306 +#: libraries/export/sql.php:415 libraries/messages.inc.php:302 msgid "Events" msgstr "Zdarzenia" #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 -#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:541 +#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:537 #: libraries/tbl_triggers.lib.php:27 setup/frames/index.inc.php:112 msgid "Name" msgstr "Nazwa" -#: libraries/db_links.inc.php:45 libraries/messages.inc.php:216 +#: libraries/db_links.inc.php:45 libraries/messages.inc.php:212 #, php-format msgid "Database %s has been dropped." msgstr "Baza danych %s została usunięta." #: libraries/db_links.inc.php:57 libraries/db_links.inc.php:58 -#: libraries/db_links.inc.php:59 libraries/messages.inc.php:234 +#: libraries/db_links.inc.php:59 libraries/messages.inc.php:230 msgid "Database seems to be empty!" msgstr "Baza danych wydaje się pusta!" -#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1025 +#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1021 #: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60 #: querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1152 +#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1148 #: libraries/tbl_links.inc.php:69 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:86 libraries/messages.inc.php:719 +#: libraries/db_links.inc.php:86 libraries/messages.inc.php:715 msgid "Query" msgstr "Zapytanie przez przykład" -#: libraries/db_links.inc.php:91 libraries/messages.inc.php:253 +#: libraries/db_links.inc.php:91 libraries/messages.inc.php:249 msgid "Designer" msgstr "Projektant" -#: libraries/db_links.inc.php:98 libraries/messages.inc.php:397 +#: libraries/db_links.inc.php:98 libraries/messages.inc.php:393 #: libraries/server_links.inc.php:88 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:104 libraries/messages.inc.php:587 +#: libraries/db_links.inc.php:104 libraries/messages.inc.php:583 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" msgstr "Operacje" -#: libraries/db_links.inc.php:111 libraries/messages.inc.php:709 +#: libraries/db_links.inc.php:111 libraries/messages.inc.php:705 #: libraries/server_links.inc.php:66 server_privileges.php:72 #: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117 msgid "Privileges" msgstr "Uprawnienia" #: libraries/db_routines.inc.php:30 libraries/db_routines.inc.php:32 -#: libraries/messages.inc.php:812 +#: libraries/messages.inc.php:808 msgid "Routines" msgstr "Procedury i funkcje" -#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:811 +#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:807 msgid "Return type" msgstr "Zwracany typ" #: libraries/db_structure.lib.php:57 libraries/display_tbl.lib.php:1848 -#: libraries/messages.inc.php:65 +#: libraries/messages.inc.php:61 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "Być może w przybliżeniu. Zobacz FAQ 3.11" -#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:593 +#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:589 #: server_databases.php:142 tbl_printview.php:336 tbl_structure.php:683 msgid "Overhead" msgstr "Nadmiar" #: libraries/dbi/mysql.dbi.lib.php:112 libraries/dbi/mysqli.dbi.lib.php:124 -#: libraries/messages.inc.php:176 +#: libraries/messages.inc.php:172 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Połączenie dla użytkownika kontrolnego zdefiniowanego w pliku " "konfiguracyjnym nie powiodło się." #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 -#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:855 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:851 msgid "The server is not responding" msgstr "Serwer nie odpowiada" #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:1010 +#: libraries/messages.inc.php:1006 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 libraries/messages.inc.php:255 +#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:251 #: tbl_structure.php:609 msgid "Details..." msgstr "Szczegóły…" -#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:143 +#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:139 #: main.php:91 user_password.php:111 user_password.php:129 msgid "Change password" msgstr "Zmień hasło" -#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:561 +#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:557 #: libraries/replication_gui.lib.php:341 server_privileges.php:768 msgid "No Password" msgstr "Brak hasła" -#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:610 +#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:606 #: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60 #: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335 #: libraries/replication_gui.lib.php:345 server_privileges.php:757 @@ -2086,13 +2096,13 @@ msgstr "Brak hasła" msgid "Password" msgstr "Hasło" -#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:806 +#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:802 #: libraries/replication_gui.lib.php:349 libraries/replication_gui.lib.php:352 #: server_privileges.php:776 server_privileges.php:779 msgid "Re-type" msgstr "Ponownie" -#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:608 +#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:604 msgid "Password Hashing" msgstr "Sposób kodowania haseł" @@ -2102,89 +2112,89 @@ msgstr "Sposób kodowania haseł" msgid "MySQL 4.0 compatible" msgstr "Kompatybilny z MySQL-em 4.0" -#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:353 +#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:349 #: libraries/replication_gui.lib.php:356 server_privileges.php:783 msgid "Generate Password" msgstr "Generuj hasło" -#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:352 +#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:348 #: libraries/replication_gui.lib.php:359 server_privileges.php:786 msgid "Generate" msgstr "Generuj" #: libraries/display_create_database.lib.php:22 -#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:189 +#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:185 msgid "Create new database" msgstr "Utwórz nową bazę danych" -#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:185 +#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:181 msgid "Create" msgstr "Utwórz" -#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:564 +#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:560 #: server_privileges.php:74 server_privileges.php:1388 #: server_replication.php:35 msgid "No Privileges" msgstr "Brak uprawnień" -#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:445 +#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:441 msgid "Table must have at least one field." msgstr "Tabela musi mieć przynajmniej jedno pole." -#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:190 +#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:186 #, php-format msgid "Create table on database %s" msgstr "Utwórz nową tabelę w bazie danych %s" -#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:577 +#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:573 msgid "Number of fields" msgstr "Liczba pól" -#: libraries/display_export.lib.php:42 libraries/messages.inc.php:124 +#: libraries/display_export.lib.php:42 libraries/messages.inc.php:120 msgid "Could not load export plugins, please check your installation!" msgstr "Nie udało się załadować modułów eksportu, proszę sprawdzić instalację!" -#: libraries/display_export.lib.php:107 libraries/messages.inc.php:277 +#: libraries/display_export.lib.php:107 libraries/messages.inc.php:273 #, php-format msgid "Dump %s row(s) starting at record # %s" msgstr "Zrzuć %s rekordów zaczynając od rekordu %s." -#: libraries/display_export.lib.php:115 libraries/messages.inc.php:274 +#: libraries/display_export.lib.php:115 libraries/messages.inc.php:270 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:125 libraries/messages.inc.php:852 +#: libraries/display_export.lib.php:125 libraries/messages.inc.php:848 #: setup/lib/messages.inc.php:82 msgid "Save as file" msgstr "Zapisz jako plik" -#: libraries/display_export.lib.php:134 libraries/messages.inc.php:828 +#: libraries/display_export.lib.php:134 libraries/messages.inc.php:824 #, php-format msgid "Save on server in %s directory" msgstr "Zapisz na serwerze w katalogu %s" -#: libraries/display_export.lib.php:142 libraries/messages.inc.php:594 +#: libraries/display_export.lib.php:142 libraries/messages.inc.php:590 #: setup/lib/messages.inc.php:90 msgid "Overwrite existing file(s)" msgstr "Nadpisuj istniejące pliki" -#: libraries/display_export.lib.php:148 libraries/messages.inc.php:330 +#: libraries/display_export.lib.php:148 libraries/messages.inc.php:326 msgid "File name template" msgstr "Szablon nazwy" -#: libraries/display_export.lib.php:152 libraries/messages.inc.php:327 +#: libraries/display_export.lib.php:152 libraries/messages.inc.php:323 msgid "server name" msgstr "nazwa serwera" -#: libraries/display_export.lib.php:155 libraries/messages.inc.php:326 +#: libraries/display_export.lib.php:155 libraries/messages.inc.php:322 msgid "database name" msgstr "nazwa bazy danych" -#: libraries/display_export.lib.php:158 libraries/messages.inc.php:328 +#: libraries/display_export.lib.php:158 libraries/messages.inc.php:324 msgid "table name" msgstr "nazwa tabeli" -#: libraries/display_export.lib.php:162 libraries/messages.inc.php:329 +#: libraries/display_export.lib.php:162 libraries/messages.inc.php:325 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2195,24 +2205,24 @@ msgstr "" "jej napisów formatujących. Dodatkowo zostaną zastosowane następujące " "przekształcenia: %3$s. Pozostały tekst będzie niezmieniony." -#: libraries/display_export.lib.php:202 libraries/messages.inc.php:331 +#: libraries/display_export.lib.php:202 libraries/messages.inc.php:327 msgid "remember template" msgstr "pamiętaj szablon" #: libraries/display_export.lib.php:210 libraries/display_import.lib.php:178 -#: libraries/display_import.lib.php:191 libraries/messages.inc.php:145 +#: libraries/display_import.lib.php:191 libraries/messages.inc.php:141 #: libraries/sql_query_form.lib.php:549 msgid "Character set of the file:" msgstr "Kodowanie pliku:" -#: libraries/display_export.lib.php:235 libraries/messages.inc.php:166 +#: libraries/display_export.lib.php:235 libraries/messages.inc.php:162 #: setup/lib/messages.inc.php:84 msgid "Compression" 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/messages.inc.php:558 +#: libraries/export/sql.php:868 libraries/messages.inc.php:554 #: libraries/tbl_properties.inc.php:575 server_privileges.php:1836 #: server_processlist.php:75 msgid "None" @@ -2236,62 +2246,62 @@ msgstr "\".gz\"" msgid "bzipped" msgstr "\".bz2\"" -#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1018 +#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1014 msgid "SQL compatibility mode" msgstr "Tryb zgodności SQL" -#: libraries/display_import.lib.php:67 libraries/messages.inc.php:398 +#: libraries/display_import.lib.php:67 libraries/messages.inc.php:394 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " "browsers." msgstr "" -#: libraries/display_import.lib.php:77 libraries/messages.inc.php:406 +#: libraries/display_import.lib.php:77 libraries/messages.inc.php:402 msgid "The file is being processed, please be patient." msgstr "" -#: libraries/display_import.lib.php:99 libraries/messages.inc.php:408 +#: libraries/display_import.lib.php:99 libraries/messages.inc.php:404 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." msgstr "" -#: libraries/display_import.lib.php:126 libraries/messages.inc.php:333 +#: libraries/display_import.lib.php:126 libraries/messages.inc.php:329 msgid "File to import" msgstr "Plik do importu" -#: libraries/display_import.lib.php:137 libraries/messages.inc.php:486 +#: libraries/display_import.lib.php:137 libraries/messages.inc.php:482 #: libraries/sql_query_form.lib.php:524 msgid "Location of the text file" msgstr "Lokalizacja pliku tekstowego" -#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1203 +#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1199 msgid "File uploads are not allowed on this server." msgstr "Serwer nie pozwala na upload plików." -#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1235 +#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1231 #: libraries/sql_query_form.lib.php:533 tbl_change.php:1028 msgid "The directory you set for upload work cannot be reached" msgstr "Katalog ustalony dla uploadu jest nieosiągalny" -#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1236 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1232 #: libraries/sql_query_form.lib.php:536 tbl_change.php:1031 msgid "web server upload directory" msgstr "katalog serwera WWW dla uploadu" -#: libraries/display_import.lib.php:212 libraries/messages.inc.php:167 +#: libraries/display_import.lib.php:212 libraries/messages.inc.php:163 #, php-format msgid "Imported file compression will be automatically detected from: %s" msgstr "" "Rodzaj kompresji importowanych plików zostanie automatycznie rozpoznany jako " "jeden z: %s" -#: libraries/display_import.lib.php:219 libraries/messages.inc.php:600 +#: libraries/display_import.lib.php:219 libraries/messages.inc.php:596 msgid "Partial import" msgstr "Import częściowy" -#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1105 +#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1101 #, php-format msgid "" "Previous import timed out, after resubmitting will continue from position %d." @@ -2299,7 +2309,7 @@ msgstr "" "Poprzedni import przekroczył limit czasu, ponowne przedłożenie tego pliku " "spowoduje kontynuacje od miejsca %d." -#: libraries/display_import.lib.php:232 libraries/messages.inc.php:51 +#: libraries/display_import.lib.php:232 libraries/messages.inc.php:47 msgid "" "Allow the interruption of an import in case the script detects it is close " "to the PHP timeout limit. This might be good way to import large files, " @@ -2309,189 +2319,189 @@ msgstr "" "koniec limitu czasu. Może to być dobry sposób importu dużych plików, " "jednakże może on popsuć transakcje." -#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1004 +#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1000 #: setup/lib/messages.inc.php:161 msgid "Number of records (queries) to skip from start" msgstr "Liczba rekordów (zapytań), które należy z początku pominąć" -#: libraries/display_import.lib.php:255 libraries/messages.inc.php:396 +#: libraries/display_import.lib.php:255 libraries/messages.inc.php:392 #: setup/lib/messages.inc.php:160 msgid "Format of imported file" msgstr "Format importowanych plików" #: libraries/display_select_lang.lib.php:45 -#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:465 +#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:461 #: setup/frames/index.inc.php:70 msgid "Language" msgstr "Język" -#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:447 +#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:443 #, php-format msgid "%d is not valid row number." msgstr "%d nie jest prawidłowym numerem rekordu." -#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:814 +#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:810 msgid "row(s) starting from record #" msgstr "rekordów począwszy od" -#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:817 +#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:813 msgid "horizontal" msgstr "poziomo" -#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:816 +#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:812 msgid "horizontal (rotated headers)" msgstr "poziomo (obrócone nagłówki)" -#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:819 +#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:815 msgid "vertical" msgstr "pionowo" -#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:818 +#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:814 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "w trybie %s powtórz nagłówki po %s komórkach" -#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:495 +#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:491 msgid "This operation could take a long time. Proceed anyway?" msgstr "Ta operacja może długo potrwać. Czy mimo to kontynuować?" -#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1012 +#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1008 msgid "Sort by key" msgstr "Sortuj wg klucza" #: libraries/display_tbl.lib.php:555 libraries/import.lib.php:1082 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:591 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:587 #: tbl_select.php:267 tbl_structure.php:754 msgid "Options" msgstr "Opcje" #: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:570 -#: libraries/messages.inc.php:601 +#: libraries/messages.inc.php:597 msgid "Partial Texts" msgstr "Skrócony tekst" #: libraries/display_tbl.lib.php:561 libraries/display_tbl.lib.php:574 -#: libraries/messages.inc.php:346 +#: libraries/messages.inc.php:342 msgid "Full Texts" msgstr "Pełny tekst" -#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:739 +#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:735 #, fuzzy msgid "Relational key" msgstr "Schemat relacyjny" -#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:738 +#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:734 msgid "Relational display field" msgstr "" -#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:872 +#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:868 msgid "Show binary contents" msgstr "" -#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:873 +#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:869 msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:871 +#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:867 msgid "Show binary contents as HEX" msgstr "" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:375 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:371 #: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320 msgid "Hide" msgstr "Ukryj" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:508 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:504 #: libraries/tbl_properties.inc.php:144 transformation_overview.php:47 msgid "Browser transformation" msgstr "Sposób prezentacji danych" #: libraries/display_tbl.lib.php:1126 libraries/display_tbl.lib.php:1130 -#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:308 +#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:304 msgid "Execute bookmarked query" msgstr "Wykonaj zapamiętanego zapytania" #: libraries/display_tbl.lib.php:1145 libraries/display_tbl.lib.php:1157 -#: libraries/messages.inc.php:244 +#: libraries/messages.inc.php:240 msgid "The row has been deleted" msgstr "Rekord został skasowany" #: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056 -#: libraries/messages.inc.php:460 server_processlist.php:71 +#: libraries/messages.inc.php:456 server_processlist.php:71 #: tbl_row_action.php:64 msgid "Kill" msgstr "Unicestwij" -#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:849 +#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:845 msgid "in query" msgstr "w zapytaniu" -#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:881 +#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:877 msgid "Showing rows" msgstr "Pokaż rekordy " -#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1113 +#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1109 msgid "total" msgstr "wszystkich" -#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:727 +#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:723 #: sql.php:524 #, php-format msgid "Query took %01.4f sec" msgstr "Wykonanie zapytania trwało %01.4f sekund(y)" -#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:135 +#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:131 #: 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:471 msgid "Change" msgstr "Zmień" -#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:724 +#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:720 msgid "Query results operations" msgstr "Operacja na wynikach zapytania" -#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:671 +#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:667 msgid "Print view (with full texts)" msgstr "Widok do druku (z pełnymi tekstami)" -#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:482 +#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:478 msgid "Link not found" msgstr "Łącze nie znalezione" -#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1224 +#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1220 #: main.php:228 msgid "Version information" msgstr "Informacja o wersji" -#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:423 +#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:419 msgid "Data home directory" msgstr "Katalog domowy danych" -#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:424 +#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:420 msgid "The common part of the directory path for all InnoDB data files." msgstr "Wspólna część ścieżki do wszystkich plików danych InnoDB." -#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:422 +#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:418 msgid "Data files" msgstr "Pliki danych" -#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:418 +#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:414 msgid "Autoextend increment" msgstr "Przyrost autoextend" -#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:419 +#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:415 msgid "" " The increment size for extending the size of an autoextending tablespace " "when it becomes full." msgstr "" "Rozmiar o jaki automatycznie powiększy się tabela, kiedy zostanie zapełniona." -#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:420 +#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:416 msgid "Buffer pool size" msgstr "Rozmiar rezerw buforowych" -#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:421 +#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:417 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." @@ -2499,87 +2509,87 @@ msgstr "" "Ilość pamięci, której InnoDB używa do buforowania danych i indeksów swoich " "tabel." -#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:112 +#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:108 msgid "Buffer Pool" msgstr "Rezerwy buforowe" -#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:426 +#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:422 #: server_status.php:306 msgid "InnoDB Status" msgstr "Status InnoDB" -#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:113 +#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:109 msgid "Buffer Pool Usage" msgstr "Użycie rezerw buforowych" -#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1114 +#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1110 #: server_databases.php:137 server_databases.php:305 server_status.php:414 #: server_status.php:475 server_status.php:496 tbl_printview.php:351 #: tbl_structure.php:697 msgid "Total" msgstr "Sumarycznie" -#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:425 +#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:421 msgid "pages" msgstr "stron" -#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:343 +#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:339 msgid "Free pages" msgstr "Strony puste" -#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:259 +#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:255 msgid "Dirty pages" msgstr "Strony brudne" -#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:230 +#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:226 msgid "Pages containing data" msgstr "Strony zawierające dane" -#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:598 +#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:594 msgid "Pages to be flushed" msgstr "Strony do wymiecenia" -#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:119 +#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:115 msgid "Busy pages" msgstr "Strony używane" -#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:467 +#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:463 msgid "Latched pages" msgstr "Stron zatrzaśniętych" -#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:111 +#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:107 msgid "Buffer Pool Activity" msgstr "Aktywność rezerw buforowych" -#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:731 +#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:727 msgid "Read requests" msgstr "Żądań odczytu" -#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1244 +#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1240 msgid "Write requests" msgstr "Żądań zapisu" -#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:115 +#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:111 msgid "Read misses" msgstr "Chybienia odczytu" -#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:117 +#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:113 msgid "Write waits" msgstr "Oczekiwania na zapis" -#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:114 +#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:110 msgid "Read misses in %" msgstr "Chybienia odczytu w %" -#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:116 +#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:112 msgid "Write waits in %" msgstr "Oczekiwania zapisu w %" -#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:522 +#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:518 msgid "Data pointer size" msgstr "Rozmiar wskaźnika danych" -#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:523 +#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:519 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." @@ -2587,11 +2597,11 @@ msgstr "" "Domyślny rozmiar wskaźnika w bajtach, który jest używany przez CREATE TABLE " "dla tabel MyISAM, gdy nie określono opcji MAX_ROWS." -#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:528 +#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:524 msgid "Automatic recovery mode" msgstr "Tryb automatycznej naprawy" -#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:529 +#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:525 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." @@ -2599,11 +2609,11 @@ msgstr "" "Tryb w którym po awarii tabele MyISAM są automatycznie naprawiane; włączany " "przez opcję startową serwera --myisam-recover." -#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:527 +#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:523 msgid "Maximum size for temporary sort files" msgstr "Maksymalny rozmiar pliku tymczasowego dla sortowania" -#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:526 +#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:522 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " @@ -2613,11 +2623,11 @@ msgstr "" "ponownym tworzeniu indeksu MyISAM (podczas operacji REPAIR TABLE, ALTER " "TABLE lub LOAD DATA INFILE)." -#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:525 +#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:521 msgid "Maximum size for temporary files on index creation" msgstr "Maksymalny rozmiar pliku tymczasowego dla tworzenia indeksu" -#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:524 +#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:520 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " @@ -2627,11 +2637,11 @@ msgstr "" "większy o wartość tu określoną, niż w wypadku zastosowania metody pamięci " "podręcznej kluczy, preferuj tę drugą metodę." -#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:531 +#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:527 msgid "Repair threads" msgstr "Liczba wątków naprawiających" -#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:530 +#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:526 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." @@ -2640,11 +2650,11 @@ msgstr "" "współbieżnie (każdy indeks ma swój wątek) podczas naprawy przez proces " "sortujący." -#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:533 +#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:529 msgid "Sort buffer size" msgstr "Rozmiar bufora dla sortowania" -#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:532 +#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:528 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." @@ -2653,11 +2663,11 @@ msgstr "" "operacji REPAIR TABLE albo gdy indeksy są tworzone przez polecenia CREATE " "INDEX lub ALTER TABLE." -#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:620 +#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:616 msgid "Index cache size" msgstr "Rozmiar pamięci podręcznej indeksów" -#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:619 +#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:615 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." @@ -2665,22 +2675,22 @@ msgstr "" "Ilość pamięci zaalokowanej jako pamięć podręczna indeksów. Domyślną " "wartością jest 32MB. Pamięc jest używana tylko do buforowane stron indeksów." -#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:630 +#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:626 msgid "Record cache size" msgstr "Rozmiar pamięci podręcznej rekordów" -#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:629 +#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:625 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " "to the handle data (.xtd) and row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:624 +#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:620 msgid "Log cache size" msgstr "Rozmiar pamięci podręcznej dziennika" -#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:623 +#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:619 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." @@ -2688,11 +2698,11 @@ msgstr "" "Ilość pamięci zaalokowanej jako pamięć podręczna dziennika transakcji. " "Domyślną wartością jest 16MB." -#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:628 +#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:624 msgid "Log file threshold" msgstr "Próg pliku dziennika" -#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:627 +#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:623 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." @@ -2700,21 +2710,21 @@ msgstr "" "Rozmiar logu transakcji przed rollover, and a new log is created. Domyślną " "wartośćią jest 16MB." -#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:634 +#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:630 msgid "Transaction buffer size" msgstr "Rozmiar bufora transakcji" -#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:633 +#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:629 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." msgstr "" -#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:611 +#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:607 msgid "Checkpoint frequency" msgstr "Częstotliwość punktów kontrolnych" -#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:612 +#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:608 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." @@ -2722,11 +2732,11 @@ msgstr "" "Ilość danych zapisanych do dziennika transakcji przed wykonaniem punktu " "kontrolnego. Domyślną wartością jest 24MB." -#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:615 +#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:611 msgid "Data log threshold" msgstr "Próg dziennika danych." -#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:616 +#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:612 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -2734,11 +2744,11 @@ msgid "" "that can be stored in the database." msgstr "" -#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:618 +#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:614 msgid "Garbage threshold" msgstr "Próg śmieci" -#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:617 +#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:613 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." @@ -2746,11 +2756,11 @@ msgstr "" "Procent śmieci w dzienniku danych, nim zostanie skompaktowany. Liczba jest " "między 1 i 99. Domyślną wartością jest 50." -#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:622 +#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:618 msgid "Log buffer size" msgstr "Rozmiar bufora dziennika" -#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:621 +#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:617 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " @@ -2760,27 +2770,27 @@ msgstr "" "jest 256MB. Silnik alokuje jeden bufor na wątek, ale tylko gdy wątek musi " "zapisać dane do dziennika." -#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:613 +#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:609 msgid "Data file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:614 +#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:610 msgid "The grow size of the handle data (.xtd) files." msgstr "" -#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:632 +#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:628 msgid "Row file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:631 +#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:627 msgid "The grow size of the row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:626 +#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:622 msgid "Log file count" msgstr "Liczba plików dziennika" -#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:625 +#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:621 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -2794,19 +2804,19 @@ msgstr "" #: libraries/export/htmlword.php:132 libraries/export/odt.php:168 #: libraries/export/sql.php:881 libraries/export/texytext.php:130 -#: libraries/messages.inc.php:275 +#: libraries/messages.inc.php:271 msgid "Dumping data for table" msgstr "Zrzut danych tabeli" #: libraries/export/htmlword.php:185 libraries/export/odt.php:238 #: libraries/export/sql.php:785 libraries/export/texytext.php:177 -#: libraries/messages.inc.php:1086 +#: libraries/messages.inc.php:1082 msgid "Table structure for table" msgstr "Struktura tabeli dla " #: libraries/export/latex.php:125 libraries/export/sql.php:232 #: libraries/export/xml.php:102 libraries/header_printview.inc.php:57 -#: libraries/messages.inc.php:381 libraries/replication_gui.lib.php:63 +#: libraries/messages.inc.php:377 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:170 libraries/replication_gui.lib.php:265 #: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325 #: server_privileges.php:692 server_privileges.php:695 @@ -2818,189 +2828,189 @@ msgstr "Host" #: libraries/export/latex.php:130 libraries/export/sql.php:233 #: libraries/export/xml.php:107 libraries/header_printview.inc.php:59 -#: libraries/messages.inc.php:354 +#: libraries/messages.inc.php:350 msgid "Generation Time" msgstr "Czas wygenerowania" #: libraries/export/latex.php:131 libraries/export/sql.php:235 -#: libraries/export/xml.php:108 libraries/messages.inc.php:864 main.php:186 +#: libraries/export/xml.php:108 libraries/messages.inc.php:860 main.php:186 msgid "Server version" msgstr "Wersja serwera" #: libraries/export/latex.php:132 libraries/export/sql.php:236 -#: libraries/export/xml.php:109 libraries/messages.inc.php:651 +#: libraries/export/xml.php:109 libraries/messages.inc.php:647 msgid "PHP Version" msgstr "Wersja PHP" #: libraries/export/latex.php:201 libraries/export/sql.php:868 -#: libraries/messages.inc.php:226 server_databases.php:127 +#: libraries/messages.inc.php:222 server_databases.php:127 #: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317 #: tbl_structure.php:666 msgid "Data" msgstr "Dane" -#: libraries/export/odt.php:318 libraries/messages.inc.php:506 +#: libraries/export/odt.php:318 libraries/messages.inc.php:502 #: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "Typ MIME" -#: libraries/export/sql.php:387 libraries/messages.inc.php:711 +#: libraries/export/sql.php:387 libraries/messages.inc.php:707 msgid "Procedures" msgstr "Procedury" -#: libraries/export/sql.php:401 libraries/messages.inc.php:348 +#: libraries/export/sql.php:401 libraries/messages.inc.php:344 msgid "Functions" msgstr "Funkcje" -#: libraries/export/sql.php:618 libraries/messages.inc.php:174 +#: libraries/export/sql.php:618 libraries/messages.inc.php:170 msgid "Constraints for dumped tables" msgstr "Ograniczenia dla zrzutów tabel" -#: libraries/export/sql.php:627 libraries/messages.inc.php:175 +#: libraries/export/sql.php:627 libraries/messages.inc.php:171 msgid "Constraints for table" msgstr "Ograniczenia dla tabeli" -#: libraries/export/sql.php:727 libraries/messages.inc.php:512 +#: libraries/export/sql.php:727 libraries/messages.inc.php:508 msgid "MIME TYPES FOR TABLE" msgstr "TYPY MIME TABELI" -#: libraries/export/sql.php:739 libraries/messages.inc.php:743 +#: libraries/export/sql.php:739 libraries/messages.inc.php:739 msgid "RELATIONS FOR TABLE" msgstr "RELACJE TABELI" -#: libraries/export/sql.php:796 libraries/messages.inc.php:1178 +#: libraries/export/sql.php:796 libraries/messages.inc.php:1174 #: libraries/tbl_triggers.lib.php:19 msgid "Triggers" msgstr "Wyzwalacze" -#: libraries/export/sql.php:808 libraries/messages.inc.php:1046 +#: libraries/export/sql.php:808 libraries/messages.inc.php:1042 #, fuzzy msgid "Structure for view" msgstr "Tylko struktura" -#: libraries/export/sql.php:817 libraries/messages.inc.php:1029 +#: libraries/export/sql.php:817 libraries/messages.inc.php:1025 #, fuzzy msgid "Stand-in structure for view" msgstr "Tylko struktura" #: libraries/footer.inc.php:184 libraries/footer.inc.php:195 -#: libraries/footer.inc.php:198 libraries/messages.inc.php:586 +#: libraries/footer.inc.php:198 libraries/messages.inc.php:582 msgid "Open new phpMyAdmin window" msgstr "Otwórz nowe okno phpMyAdmina" -#: libraries/header.inc.php:115 libraries/messages.inc.php:542 +#: libraries/header.inc.php:115 libraries/messages.inc.php:538 #, fuzzy msgid "New table" msgstr "Brak tabel" #: libraries/header_printview.inc.php:50 libraries/header_printview.inc.php:55 -#: libraries/messages.inc.php:1024 +#: libraries/messages.inc.php:1020 msgid "SQL result" msgstr "Rezultat SQL" -#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:350 +#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:346 msgid "Generated by" msgstr "Wygenerowany przez" #: libraries/header_printview.inc.php:63 libraries/import.lib.php:145 -#: libraries/messages.inc.php:820 navigation.php:652 navigation.php:674 +#: libraries/messages.inc.php:816 navigation.php:652 navigation.php:674 #: server_databases.php:122 tbl_printview.php:394 tbl_structure.php:366 #: tbl_structure.php:778 msgid "Rows" msgstr "Rekordów" -#: libraries/import.lib.php:150 libraries/messages.inc.php:285 sql.php:520 +#: libraries/import.lib.php:150 libraries/messages.inc.php:281 sql.php:520 #: tbl_change.php:181 tbl_get_field.php:35 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL zwrócił pusty wynik (zero rekordów)." -#: libraries/import.lib.php:1078 libraries/messages.inc.php:399 +#: libraries/import.lib.php:1078 libraries/messages.inc.php:395 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1079 libraries/messages.inc.php:400 +#: libraries/import.lib.php:1079 libraries/messages.inc.php:396 msgid "View a structure`s contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1080 libraries/messages.inc.php:401 +#: libraries/import.lib.php:1080 libraries/messages.inc.php:397 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1081 libraries/messages.inc.php:402 +#: libraries/import.lib.php:1081 libraries/messages.inc.php:398 msgid "Edit its structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1084 libraries/messages.inc.php:362 +#: libraries/import.lib.php:1084 libraries/messages.inc.php:358 #, fuzzy msgid "Go to database" msgstr "Brak baz danych" #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:869 +#: libraries/messages.inc.php:865 msgid "settings" msgstr "" -#: libraries/import.lib.php:1106 libraries/messages.inc.php:363 +#: libraries/import.lib.php:1106 libraries/messages.inc.php:359 #, fuzzy msgid "Go to table" msgstr "Brak baz danych" -#: libraries/import.lib.php:1109 libraries/messages.inc.php:1047 +#: libraries/import.lib.php:1109 libraries/messages.inc.php:1043 #, fuzzy msgid "structure" msgstr "Struktura" -#: libraries/import.lib.php:1115 libraries/messages.inc.php:364 +#: libraries/import.lib.php:1115 libraries/messages.inc.php:360 msgid "Go to view" msgstr "" #: libraries/import/csv.php:58 libraries/import/csv.php:70 #: libraries/import/csv.php:74 libraries/import/csv.php:78 -#: libraries/messages.inc.php:442 +#: libraries/messages.inc.php:438 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "Niewłaściwy parametr importu CSV: %s" -#: libraries/import/csv.php:59 libraries/messages.inc.php:323 +#: libraries/import/csv.php:59 libraries/messages.inc.php:319 msgid "Fields terminated by" msgstr "Pola oddzielane przez" -#: libraries/import/csv.php:71 libraries/messages.inc.php:320 +#: libraries/import/csv.php:71 libraries/messages.inc.php:316 msgid "Fields enclosed by" msgstr "Pola zawarte w" -#: libraries/import/csv.php:75 libraries/messages.inc.php:321 +#: libraries/import/csv.php:75 libraries/messages.inc.php:317 msgid "Fields escaped by" msgstr "Pola poprzedzone przez" -#: libraries/import/csv.php:79 libraries/messages.inc.php:481 +#: libraries/import/csv.php:79 libraries/messages.inc.php:477 msgid "Lines terminated by" msgstr "Linie zakończone przez" -#: libraries/import/csv.php:119 libraries/messages.inc.php:439 +#: libraries/import/csv.php:119 libraries/messages.inc.php:435 #, php-format msgid "Invalid column (%s) specified!" msgstr "Podano błędną kolumnę (%s)!" #: libraries/import/csv.php:177 libraries/import/csv.php:424 -#: libraries/messages.inc.php:441 +#: libraries/messages.inc.php:437 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "Niewłaściwy format w linii %d danych wejściowych CSV." -#: libraries/import/csv.php:312 libraries/messages.inc.php:440 +#: libraries/import/csv.php:312 libraries/messages.inc.php:436 #, php-format msgid "Invalid field count in CSV input on line %d." msgstr "Niewłaściwa liczba pól w linii %d danych wejściowych CSV." -#: libraries/import/ldi.php:55 libraries/messages.inc.php:446 +#: libraries/import/ldi.php:55 libraries/messages.inc.php:442 msgid "This plugin does not support compressed imports!" msgstr "Ten moduł nie obsługuje skompresowanych importów!" #: libraries/import/xml.php:74 libraries/import/xml.php:130 -#: libraries/messages.inc.php:1247 +#: libraries/messages.inc.php:1243 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -3031,442 +3041,432 @@ msgstr "" msgid "ltr" msgstr "ltr" -#. l10n: Thousands separator -#: libraries/messages.inc.php:21 -msgid "," -msgstr " " - -#. l10n: Decimal separator -#: libraries/messages.inc.php:23 -msgid "." -msgstr "," - -#: libraries/messages.inc.php:25 server_status.php:461 +#: libraries/messages.inc.php:21 server_status.php:461 msgid "Aborted" msgstr "Przerwane" -#: libraries/messages.inc.php:28 main.php:68 +#: libraries/messages.inc.php:24 main.php:68 msgid "Actions" msgstr "Działania" -#: libraries/messages.inc.php:34 libraries/tbl_properties.inc.php:780 +#: libraries/messages.inc.php:30 libraries/tbl_properties.inc.php:780 #: tbl_structure.php:543 #, php-format msgid "Add %s field(s)" msgstr "Dodaj %s pól" -#: libraries/messages.inc.php:35 +#: libraries/messages.inc.php:31 msgid "Add custom comment into header (\\n splits lines)" msgstr "Dodaj do nagłówka własny komentarz (\\n oddziela linie)" -#: libraries/messages.inc.php:36 +#: libraries/messages.inc.php:32 msgid "Add into comments" msgstr "Dodaj w komentarzach:" -#: libraries/messages.inc.php:37 tbl_structure.php:541 +#: libraries/messages.inc.php:33 tbl_structure.php:541 msgid "Add new field" msgstr "Dodaj nowego pole" -#: libraries/messages.inc.php:38 server_privileges.php:1886 +#: libraries/messages.inc.php:34 server_privileges.php:1886 msgid "Add privileges on the following database" msgstr "Dodaj uprawnienia dla następującej bazy danych" -#: libraries/messages.inc.php:39 server_privileges.php:1907 +#: libraries/messages.inc.php:35 server_privileges.php:1907 msgid "Add privileges on the following table" msgstr "Dodaj uprawnienia dla następującej tabeli" -#: libraries/messages.inc.php:40 tbl_select.php:288 +#: libraries/messages.inc.php:36 tbl_select.php:288 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Dodaj warunki przeszukiwania (warunek dla \"where\"):" -#: libraries/messages.inc.php:41 tbl_indexes.php:251 +#: libraries/messages.inc.php:37 tbl_indexes.php:251 #, php-format msgid "Add to index  %s column(s)" msgstr "Dodaj  %s kolumn do indeksu " -#: libraries/messages.inc.php:42 server_privileges.php:1570 +#: libraries/messages.inc.php:38 server_privileges.php:1570 #: server_privileges.php:1594 server_privileges.php:1988 #: server_privileges.php:2177 msgid "Add a new User" msgstr "Dodaj nowego użytkownika" -#: libraries/messages.inc.php:43 server_privileges.php:931 +#: libraries/messages.inc.php:39 server_privileges.php:931 msgid "You have added a new user." msgstr "Nowy użytkownik został dodany." -#: libraries/messages.inc.php:44 server_privileges.php:571 +#: libraries/messages.inc.php:40 server_privileges.php:571 msgid "Administration" msgstr "Administracja" -#: libraries/messages.inc.php:45 tbl_structure.php:557 +#: libraries/messages.inc.php:41 tbl_structure.php:557 #, php-format msgid "After %s" msgstr "Po %s" -#: libraries/messages.inc.php:46 tbl_change.php:1147 +#: libraries/messages.inc.php:42 tbl_change.php:1147 msgid "Go back to previous page" msgstr "Wróć" -#: libraries/messages.inc.php:47 tbl_change.php:1148 +#: libraries/messages.inc.php:43 tbl_change.php:1148 msgid "Insert another new row" msgstr "Dodaj nowy rekord" -#: libraries/messages.inc.php:48 tbl_change.php:1160 +#: libraries/messages.inc.php:44 tbl_change.php:1160 msgid "Edit next row" msgstr "Edytuj następny rekord" -#: libraries/messages.inc.php:49 tbl_change.php:1152 +#: libraries/messages.inc.php:45 tbl_change.php:1152 msgid "Go back to this page" msgstr "Powrót do tej strony" -#: libraries/messages.inc.php:50 querywindow.php:115 +#: libraries/messages.inc.php:46 querywindow.php:115 msgid "All" msgstr "Wszystko" -#: libraries/messages.inc.php:53 tbl_operations.php:249 +#: libraries/messages.inc.php:49 tbl_operations.php:249 msgid "Alter table order by" msgstr "Sortowanie tabeli wg" -#: libraries/messages.inc.php:54 tbl_operations.php:660 +#: libraries/messages.inc.php:50 tbl_operations.php:660 msgid "Analyze" msgstr "Analizuj" -#: libraries/messages.inc.php:57 +#: libraries/messages.inc.php:53 #, fuzzy msgid "and" msgstr "oraz" -#: libraries/messages.inc.php:59 pmd_general.php:87 +#: libraries/messages.inc.php:55 pmd_general.php:87 msgid "Angular links" msgstr "Kanciaste połączenia" -#: libraries/messages.inc.php:60 tbl_structure.php:401 tbl_structure.php:415 +#: libraries/messages.inc.php:56 tbl_structure.php:401 tbl_structure.php:415 #: tbl_structure.php:429 #, php-format msgid "An index has been added on %s" msgstr "Do %s dodany został indeks" -#: libraries/messages.inc.php:61 server_privileges.php:1521 +#: libraries/messages.inc.php:57 server_privileges.php:1521 #: server_privileges.php:2123 msgid "Any" msgstr "Dowolny" -#: libraries/messages.inc.php:62 libraries/replication_gui.lib.php:298 +#: libraries/messages.inc.php:58 libraries/replication_gui.lib.php:298 #: server_privileges.php:725 msgid "Any host" msgstr "Dowolny host" -#: libraries/messages.inc.php:63 libraries/replication_gui.lib.php:250 +#: libraries/messages.inc.php:59 libraries/replication_gui.lib.php:250 #: server_privileges.php:677 msgid "Any user" msgstr "Dowolny użytkownik" -#: libraries/messages.inc.php:64 server_synchronize.php:449 +#: libraries/messages.inc.php:60 server_synchronize.php:449 #: server_synchronize.php:894 msgid "Apply Selected Changes" msgstr "" -#: libraries/messages.inc.php:66 tbl_structure.php:386 +#: libraries/messages.inc.php:62 tbl_structure.php:386 #, php-format msgid "A primary key has been added on %s" msgstr "Do %s dodany został klucz podstawowy" -#: libraries/messages.inc.php:67 libraries/mysql_charsets.lib.php:368 +#: libraries/messages.inc.php:63 libraries/mysql_charsets.lib.php:368 msgid "Arabic" msgstr "Arabski" -#: libraries/messages.inc.php:68 libraries/mysql_charsets.lib.php:359 +#: libraries/messages.inc.php:64 libraries/mysql_charsets.lib.php:359 msgid "Armenian" msgstr "Ormiański" -#: libraries/messages.inc.php:70 libraries/tbl_properties.inc.php:394 +#: libraries/messages.inc.php:66 libraries/tbl_properties.inc.php:394 msgid "As defined:" msgstr "Zdefiniowana następująco:" -#: libraries/messages.inc.php:71 tbl_structure.php:556 +#: libraries/messages.inc.php:67 tbl_structure.php:556 msgid "At Beginning of Table" msgstr "Na początku tabeli" -#: libraries/messages.inc.php:72 tbl_structure.php:555 +#: libraries/messages.inc.php:68 tbl_structure.php:555 msgid "At End of Table" msgstr "Na końcu tabeli" -#: libraries/messages.inc.php:73 libraries/tbl_properties.inc.php:108 +#: libraries/messages.inc.php:69 libraries/tbl_properties.inc.php:108 #: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:144 #: tbl_structure.php:180 msgid "Attributes" msgstr "Atrybuty" -#: libraries/messages.inc.php:74 pdf_pages.php:303 pdf_pages.php:306 +#: libraries/messages.inc.php:70 pdf_pages.php:303 pdf_pages.php:306 msgid "Automatic layout" msgstr "Układ automatyczny" -#: libraries/messages.inc.php:77 libraries/mysql_charsets.lib.php:354 +#: libraries/messages.inc.php:73 libraries/mysql_charsets.lib.php:354 msgid "Baltic" msgstr "Bałtycki" -#: libraries/messages.inc.php:78 libraries/sqlparser.lib.php:175 +#: libraries/messages.inc.php:74 libraries/sqlparser.lib.php:175 msgid "BEGIN CUT" msgstr "TNIJ STĄD" -#: libraries/messages.inc.php:79 libraries/sqlparser.lib.php:179 +#: libraries/messages.inc.php:75 libraries/sqlparser.lib.php:179 msgid "BEGIN RAW" msgstr "SUROWE DANE STĄD" -#: libraries/messages.inc.php:80 libraries/mysql_charsets.lib.php:201 +#: libraries/messages.inc.php:76 libraries/mysql_charsets.lib.php:201 #: libraries/mysql_charsets.lib.php:402 tbl_change.php:518 msgid "Binary" msgstr " Binarne " -#: libraries/messages.inc.php:81 tbl_change.php:894 +#: libraries/messages.inc.php:77 tbl_change.php:894 msgid "Binary - do not edit" msgstr " Binarne - nie do edycji " -#: libraries/messages.inc.php:82 libraries/server_links.inc.php:76 +#: libraries/messages.inc.php:78 libraries/server_links.inc.php:76 #: server_binlog.php:110 server_status.php:253 test/theme.php:121 msgid "Binary log" msgstr "Dziennik binarny" -#: libraries/messages.inc.php:83 server_binlog.php:217 +#: libraries/messages.inc.php:79 server_binlog.php:217 msgid "Event type" msgstr "Typ zdarzenia" -#: libraries/messages.inc.php:84 server_binlog.php:220 +#: libraries/messages.inc.php:80 server_binlog.php:220 msgid "Information" msgstr "Informacje" -#: libraries/messages.inc.php:85 server_binlog.php:215 +#: libraries/messages.inc.php:81 server_binlog.php:215 msgid "Log name" msgstr "Nazwa dziennika" -#: libraries/messages.inc.php:86 server_binlog.php:219 +#: libraries/messages.inc.php:82 server_binlog.php:219 msgid "Original position" msgstr "Oryginalna pozycja" -#: libraries/messages.inc.php:87 server_binlog.php:216 +#: libraries/messages.inc.php:83 server_binlog.php:216 msgid "Position" msgstr "Pozycja" -#: libraries/messages.inc.php:88 libraries/replication_gui.lib.php:169 +#: libraries/messages.inc.php:84 libraries/replication_gui.lib.php:169 #: server_binlog.php:218 msgid "Server ID" msgstr "ID serwera" -#: libraries/messages.inc.php:92 +#: libraries/messages.inc.php:88 #, fuzzy msgctxt "$strBLOBRepositoryDisabled" msgid "Disabled" msgstr "Wyłączone" -#: libraries/messages.inc.php:95 +#: libraries/messages.inc.php:91 #, fuzzy msgctxt "$strBLOBRepositoryEnabled" msgid "Enabled" msgstr "Włączone" -#: libraries/messages.inc.php:97 tbl_change.php:888 +#: libraries/messages.inc.php:93 tbl_change.php:888 msgid "Remove BLOB Repository Reference" msgstr "Usuń odołanie do repozytorium BLOBów" -#: libraries/messages.inc.php:98 +#: libraries/messages.inc.php:94 #, fuzzy msgctxt "$strBLOBRepositoryRepair" msgid "Repair" msgstr "Napraw" -#: libraries/messages.inc.php:99 tbl_change.php:987 +#: libraries/messages.inc.php:95 tbl_change.php:987 msgid "Upload to BLOB repository" msgstr "Wrzuć do repozytorium BLOBów" -#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:359 +#: libraries/messages.inc.php:96 libraries/sql_query_form.lib.php:359 #: sql.php:677 msgid "Let every user access this bookmark" msgstr "Pozwól na dostęp wszystkim użytkownikom" -#: libraries/messages.inc.php:103 sql.php:671 +#: libraries/messages.inc.php:99 sql.php:671 msgid "Label" msgstr "Nazwa" -#: libraries/messages.inc.php:104 libraries/sql_query_form.lib.php:433 +#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:433 msgid "Bookmarked SQL query" msgstr "Zapamiętane zapytanie SQL" -#: libraries/messages.inc.php:105 libraries/sql_query_form.lib.php:365 +#: libraries/messages.inc.php:101 libraries/sql_query_form.lib.php:365 msgid "Replace existing bookmark of same name" msgstr "Zamień istniejące zapamiętane zapytanie o tej samej nazwie" -#: libraries/messages.inc.php:106 libraries/sql_query_form.lib.php:352 +#: libraries/messages.inc.php:102 libraries/sql_query_form.lib.php:352 #: sql.php:665 sql.php:666 sql.php:683 msgid "Bookmark this SQL query" msgstr "Pamiętaj zapytanie SQL" -#: libraries/messages.inc.php:107 libraries/sql_query_form.lib.php:466 +#: libraries/messages.inc.php:103 libraries/sql_query_form.lib.php:466 msgid "View only" msgstr "Tylko pokaż" -#: libraries/messages.inc.php:109 tbl_structure.php:161 +#: libraries/messages.inc.php:105 tbl_structure.php:161 msgid "Browse distinct values" msgstr "Przeglądaj różne wartości" -#: libraries/messages.inc.php:110 tbl_change.php:252 tbl_select.php:27 +#: libraries/messages.inc.php:106 tbl_change.php:252 tbl_select.php:27 #: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34 msgid "Browse foreign values" msgstr "Przeglądaj zewnętrzne wartości" -#: libraries/messages.inc.php:118 libraries/mysql_charsets.lib.php:213 +#: libraries/messages.inc.php:114 libraries/mysql_charsets.lib.php:213 msgid "Bulgarian" msgstr "Bułgarski" -#: libraries/messages.inc.php:120 +#: libraries/messages.inc.php:116 msgid "\"bzipped\"" msgstr "\".bz2\"" -#: libraries/messages.inc.php:122 +#: libraries/messages.inc.php:118 msgid "Calendar" msgstr "Kalendarz" -#: libraries/messages.inc.php:129 tbl_indexes.php:75 +#: libraries/messages.inc.php:125 tbl_indexes.php:75 msgid "Can't rename index to PRIMARY!" msgstr "Nie można zmienić nazwy indeksu na PRIMARY!" -#: libraries/messages.inc.php:132 libraries/mysql_charsets.lib.php:223 +#: libraries/messages.inc.php:128 libraries/mysql_charsets.lib.php:223 #: libraries/mysql_charsets.lib.php:409 msgid "case-insensitive" msgstr "bez rozróżniania wielkości liter" -#: libraries/messages.inc.php:133 libraries/mysql_charsets.lib.php:226 +#: libraries/messages.inc.php:129 libraries/mysql_charsets.lib.php:226 #: libraries/mysql_charsets.lib.php:411 msgid "case-sensitive" msgstr "z rozróżnianiem wielkości liter" -#: libraries/messages.inc.php:134 libraries/mysql_charsets.lib.php:332 +#: libraries/messages.inc.php:130 libraries/mysql_charsets.lib.php:332 msgid "Central European" msgstr "Środkowoeuropejski" -#: libraries/messages.inc.php:136 server_privileges.php:1969 +#: libraries/messages.inc.php:132 server_privileges.php:1969 msgid "... keep the old one." msgstr "… pozostaw starego." -#: libraries/messages.inc.php:137 server_privileges.php:1967 +#: libraries/messages.inc.php:133 server_privileges.php:1967 msgid "Create a new user with the same privileges and ..." msgstr "Utwórz nowego użytkownika z takimi samymi uprawnieniami i …" -#: libraries/messages.inc.php:138 server_privileges.php:1972 +#: libraries/messages.inc.php:134 server_privileges.php:1972 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." -#: libraries/messages.inc.php:139 server_privileges.php:1970 +#: libraries/messages.inc.php:135 server_privileges.php:1970 msgid " ... delete the old one from the user tables." msgstr " … usuń starego z tabel użytkowników." -#: libraries/messages.inc.php:140 server_privileges.php:1971 +#: libraries/messages.inc.php:136 server_privileges.php:1971 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr " … odbierz wszystkie aktywne uprawnienia staremu, a następnie go usuń." -#: libraries/messages.inc.php:141 server_privileges.php:1964 +#: libraries/messages.inc.php:137 server_privileges.php:1964 msgid "Change Login Information / Copy User" msgstr "Zmień dane użytkownika / Skopiuj użytkownika" -#: libraries/messages.inc.php:144 libraries/mysql_charsets.lib.php:107 +#: libraries/messages.inc.php:140 libraries/mysql_charsets.lib.php:107 msgid "Charset" msgstr "Kodowanie napisów" -#: libraries/messages.inc.php:146 server_collations.php:40 +#: libraries/messages.inc.php:142 server_collations.php:40 msgid "Character Sets and Collations" msgstr "Kodowania napisów i metody porównywania napisów" -#: libraries/messages.inc.php:147 libraries/server_links.inc.php:57 +#: libraries/messages.inc.php:143 libraries/server_links.inc.php:57 #: test/theme.php:109 msgid "Charsets" msgstr "Kodowania napisów" -#: libraries/messages.inc.php:149 tbl_operations.php:661 +#: libraries/messages.inc.php:145 tbl_operations.php:661 msgid "Check" msgstr "Sprawdź" -#: libraries/messages.inc.php:151 server_databases.php:293 +#: libraries/messages.inc.php:147 server_databases.php:293 #: server_databases.php:294 msgid "Check Privileges" msgstr "Sprawdź uprawnienia" -#: libraries/messages.inc.php:152 server_databases.php:289 +#: libraries/messages.inc.php:148 server_databases.php:289 #, php-format msgid "Check privileges for database "%s"." msgstr "Sprawdź uprawnienia bazy danych "%s"." -#: libraries/messages.inc.php:154 pdf_pages.php:261 +#: libraries/messages.inc.php:150 pdf_pages.php:261 msgid "Please choose a page to edit" msgstr "Proszę wybrać stronę do edycji" -#: libraries/messages.inc.php:157 +#: libraries/messages.inc.php:153 msgid "Displaying Column Comments" msgstr "Wyświetl komentarze dla kolumn" -#: libraries/messages.inc.php:159 pdf_pages.php:483 view_create.php:148 +#: libraries/messages.inc.php:155 pdf_pages.php:483 view_create.php:148 msgid "Column names" msgstr "Nazwy kolumn" -#: libraries/messages.inc.php:160 server_privileges.php:1685 +#: libraries/messages.inc.php:156 server_privileges.php:1685 msgid "Column-specific privileges" msgstr "Uprawnienia specyficzne dla kolumn" -#: libraries/messages.inc.php:164 +#: libraries/messages.inc.php:160 msgid "MySQL 4.0 compatible" msgstr "Kompatybilny z MySQL-em 4.0" -#: libraries/messages.inc.php:165 +#: libraries/messages.inc.php:161 msgid "Complete inserts" msgstr "Pełne dodania" -#: libraries/messages.inc.php:168 +#: libraries/messages.inc.php:164 #, php-format msgid "Could not load default configuration from: \"%1$s\"" msgstr "Nie udało się załadować domyślnej konfiguracji z pliku: \"%1$s\"" -#: libraries/messages.inc.php:169 main.php:306 +#: libraries/messages.inc.php:165 main.php:306 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: libraries/messages.inc.php:171 pdf_schema.php:672 +#: libraries/messages.inc.php:167 pdf_schema.php:672 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Proszę skonfigurować współrzędne dla tabeli %s" -#: libraries/messages.inc.php:173 server_status.php:433 +#: libraries/messages.inc.php:169 server_status.php:433 msgid "Connections" msgstr "Połączenia" -#: libraries/messages.inc.php:179 tbl_operations.php:509 +#: libraries/messages.inc.php:175 tbl_operations.php:509 msgid "Copy table to (database.table):" msgstr "Skopiuj tabelę do (bazadanych.tabela):" -#: libraries/messages.inc.php:180 tbl_move_copy.php:58 +#: libraries/messages.inc.php:176 tbl_move_copy.php:58 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabela %s została skopiowana do %s." -#: libraries/messages.inc.php:181 tbl_move_copy.php:48 +#: libraries/messages.inc.php:177 tbl_move_copy.php:48 msgid "Can't copy table to same one!" msgstr "Nie można skopiować tabeli do niej samej!" -#: libraries/messages.inc.php:182 server_synchronize.php:94 +#: libraries/messages.inc.php:178 server_synchronize.php:94 #, fuzzy msgid "Could not connect to the source" msgstr "Nie można połączyć się z serwerem MySQL" -#: libraries/messages.inc.php:183 server_synchronize.php:97 +#: libraries/messages.inc.php:179 server_synchronize.php:97 #, fuzzy msgid "Could not connect to the target" msgstr "Nie można połączyć się z serwerem MySQL" -#: libraries/messages.inc.php:184 server_processlist.php:24 +#: libraries/messages.inc.php:180 server_processlist.php:24 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -3474,136 +3474,136 @@ msgstr "" "phpMyAdminowi nie udało się unicestwić wątku %s. Prawdopodobnie został on " "już zamknięty." -#: libraries/messages.inc.php:187 +#: libraries/messages.inc.php:183 #, php-format msgid "Create an index on %s columns" msgstr "Utwórz indeks dla %s kolumn" -#: libraries/messages.inc.php:188 tbl_indexes.php:160 +#: libraries/messages.inc.php:184 tbl_indexes.php:160 msgid "Create a new index" msgstr "Utwórz nowy indeksu" -#: libraries/messages.inc.php:191 pdf_pages.php:297 pmd_pdf.php:114 +#: libraries/messages.inc.php:187 pdf_pages.php:297 pmd_pdf.php:114 msgid "Create a page" msgstr "Utwórz nową stronę" -#: libraries/messages.inc.php:192 +#: libraries/messages.inc.php:188 msgid "Creation of PDFs" msgstr "Tworzenie PDF-ów" -#: libraries/messages.inc.php:193 pmd_general.php:74 pmd_general.php:306 +#: libraries/messages.inc.php:189 pmd_general.php:74 pmd_general.php:306 msgid "Create relation" msgstr "Utwórz związek" -#: libraries/messages.inc.php:194 pmd_general.php:71 +#: libraries/messages.inc.php:190 pmd_general.php:71 #: server_synchronize.php:429 server_synchronize.php:872 msgid "Create table" msgstr "Utwórz tabelę" -#: libraries/messages.inc.php:195 +#: libraries/messages.inc.php:191 #, fuzzy msgctxt "$strCreateTableShort" msgid "Create table" msgstr "Utwórz tabelę" -#: libraries/messages.inc.php:196 server_privileges.php:1994 +#: libraries/messages.inc.php:192 server_privileges.php:1994 msgid "Database for user" msgstr "Baza danych dla użytkownika" -#: libraries/messages.inc.php:197 server_privileges.php:1999 +#: libraries/messages.inc.php:193 server_privileges.php:1999 msgid "Create database with same name and grant all privileges" msgstr "Utwórz bazę danych z taką samą nazwą i przyznaj wszystkie uprawnienia" -#: libraries/messages.inc.php:198 +#: libraries/messages.inc.php:194 #, fuzzy msgctxt "$strCreateUserDatabaseNone" msgid "None" msgstr "Brak" -#: libraries/messages.inc.php:199 server_privileges.php:2003 +#: libraries/messages.inc.php:195 server_privileges.php:2003 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "Sprawdź uprawnienia bazy danych "%s"." -#: libraries/messages.inc.php:200 server_privileges.php:2000 +#: libraries/messages.inc.php:196 server_privileges.php:2000 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" "Przyznaj wszystkie uprawienia do baz danych o nazwach pasujących do maski " "(nazwaużytkownika_%)" -#: libraries/messages.inc.php:201 +#: libraries/messages.inc.php:197 msgid "Creation/Update/Check dates" msgstr "Daty utworzenia/aktualizacji/sprawdzenia" -#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:229 +#: libraries/messages.inc.php:199 libraries/mysql_charsets.lib.php:229 msgid "Croatian" msgstr "Chorwacki" -#: libraries/messages.inc.php:204 +#: libraries/messages.inc.php:200 msgid "CSV" msgstr "CSV" -#: libraries/messages.inc.php:205 libraries/server_synchronize.lib.php:1343 +#: libraries/messages.inc.php:201 libraries/server_synchronize.lib.php:1343 #: libraries/server_synchronize.lib.php:1369 msgid "Current server" msgstr "" -#: libraries/messages.inc.php:206 main.php:159 +#: libraries/messages.inc.php:202 main.php:159 msgid "Custom color" msgstr "Własny kolor" -#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:365 +#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:365 msgid "Cyrillic" msgstr "Cyrylica" -#: libraries/messages.inc.php:208 libraries/mysql_charsets.lib.php:232 +#: libraries/messages.inc.php:204 libraries/mysql_charsets.lib.php:232 msgid "Czech" msgstr "Czeski" -#: libraries/messages.inc.php:209 libraries/mysql_charsets.lib.php:383 +#: libraries/messages.inc.php:205 libraries/mysql_charsets.lib.php:383 msgid "Czech-Slovak" msgstr "Czesko-słowacki" -#: libraries/messages.inc.php:211 libraries/mysql_charsets.lib.php:235 +#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:235 msgid "Danish" msgstr "Duński" -#: libraries/messages.inc.php:214 +#: libraries/messages.inc.php:210 msgid "Database export options" msgstr "Opcje eksportu bazy danych" -#: libraries/messages.inc.php:217 server_synchronize.php:122 +#: libraries/messages.inc.php:213 server_synchronize.php:122 #: server_synchronize.php:125 tbl_create.php:82 tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "" -#: libraries/messages.inc.php:219 server_databases.php:63 +#: libraries/messages.inc.php:215 server_databases.php:63 #, php-format msgid "%s databases have been dropped successfully." msgstr "%s baz danych zostało pomyślnie usuniętych." -#: libraries/messages.inc.php:220 libraries/server_synchronize.lib.php:1341 +#: libraries/messages.inc.php:216 libraries/server_synchronize.lib.php:1341 #: server_synchronize.php:1110 #, fuzzy msgid "Source database" msgstr "Szukaj w bazie danych" -#: libraries/messages.inc.php:221 server_databases.php:88 +#: libraries/messages.inc.php:217 server_databases.php:88 msgid "Databases statistics" msgstr "Statystyki baz danych" -#: libraries/messages.inc.php:222 server_databases.php:362 +#: libraries/messages.inc.php:218 server_databases.php:362 #: server_databases.php:363 msgid "Disable Statistics" msgstr "Wyłącz statystyki" -#: libraries/messages.inc.php:223 server_databases.php:358 +#: libraries/messages.inc.php:219 server_databases.php:358 #: server_databases.php:359 msgid "Enable Statistics" msgstr "Włącz statystyki" -#: libraries/messages.inc.php:224 server_databases.php:366 +#: libraries/messages.inc.php:220 server_databases.php:366 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -3611,31 +3611,31 @@ msgstr "" "Uwaga: Włączenie statystyk baz danych może spowodować duży ruch pomiędzy " "serwerem WWW a serwerem MySQL." -#: libraries/messages.inc.php:225 libraries/server_synchronize.lib.php:1367 +#: libraries/messages.inc.php:221 libraries/server_synchronize.lib.php:1367 #: server_synchronize.php:1112 #, fuzzy msgid "Target database" msgstr "Szukaj w bazie danych" -#: libraries/messages.inc.php:228 server_synchronize.php:425 +#: libraries/messages.inc.php:224 server_synchronize.php:425 #: server_synchronize.php:868 msgid "Data Difference" msgstr "" -#: libraries/messages.inc.php:231 server_synchronize.php:272 +#: libraries/messages.inc.php:227 server_synchronize.php:272 msgid "Data Synchronization" msgstr "" -#: libraries/messages.inc.php:235 server_privileges.php:526 +#: libraries/messages.inc.php:231 server_privileges.php:526 #: server_privileges.php:1679 msgid "Database-specific privileges" msgstr "Uprawnienia specyficzne dla baz danych" -#: libraries/messages.inc.php:237 server_privileges.php:2136 +#: libraries/messages.inc.php:233 server_privileges.php:2136 msgid "database-specific" msgstr "specyficzne dla bazy danych" -#: libraries/messages.inc.php:240 libraries/tbl_properties.inc.php:106 +#: libraries/messages.inc.php:236 libraries/tbl_properties.inc.php:106 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" @@ -3644,32 +3644,32 @@ msgstr "" "cytowania odwrotnym ukośnikiem czy ujmowania w cudzysłowy, używając takiego " "formatu: a" -#: libraries/messages.inc.php:241 tbl_operations.php:589 +#: libraries/messages.inc.php:237 tbl_operations.php:589 msgid "Defragment table" msgstr "Defragmentuj tabelę" -#: libraries/messages.inc.php:242 +#: libraries/messages.inc.php:238 msgid "Use delayed inserts" msgstr "Użyj opóźnionych dodań" -#: libraries/messages.inc.php:245 server_privileges.php:1243 +#: libraries/messages.inc.php:241 server_privileges.php:1243 msgid "No users selected for deleting!" msgstr "Żaden użytkownik ze został zaznaczony do usunięcia!" -#: libraries/messages.inc.php:246 pmd_general.php:372 +#: libraries/messages.inc.php:242 pmd_general.php:372 msgid "Delete relation" msgstr "Usuń związek" -#: libraries/messages.inc.php:248 server_privileges.php:1232 +#: libraries/messages.inc.php:244 server_privileges.php:1232 #, php-format msgid "Deleting %s" msgstr "Usuwanie %s" -#: libraries/messages.inc.php:249 libraries/sql_query_form.lib.php:388 +#: libraries/messages.inc.php:245 libraries/sql_query_form.lib.php:388 msgid "Delimiter" msgstr "Separator" -#: libraries/messages.inc.php:250 pdf_pages.php:506 +#: libraries/messages.inc.php:246 pdf_pages.php:506 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -3677,149 +3677,149 @@ msgstr "" "Aktualna strona ma powiązania z tabelą, która już nie istnieje. Czy chcesz " "usunąć te powiązania?" -#: libraries/messages.inc.php:254 pmd_help.php:29 +#: libraries/messages.inc.php:250 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." msgstr "" -#: libraries/messages.inc.php:256 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:252 libraries/mysql_charsets.lib.php:247 msgid "dictionary" msgstr "słownik" -#: libraries/messages.inc.php:257 libraries/server_synchronize.lib.php:1348 +#: libraries/messages.inc.php:253 libraries/server_synchronize.lib.php:1348 msgid "Difference" msgstr "" -#: libraries/messages.inc.php:258 pmd_general.php:87 +#: libraries/messages.inc.php:254 pmd_general.php:87 msgid "Direct links" msgstr "Bezpośrednie połączenia" -#: libraries/messages.inc.php:261 +#: libraries/messages.inc.php:257 msgid "Disable foreign key checks" msgstr "Wyłącz sprawdzanie kluczy zewnętrznych" -#: libraries/messages.inc.php:262 +#: libraries/messages.inc.php:258 msgid "Display Features" msgstr "Funkcje wyświetlania" -#: libraries/messages.inc.php:263 tbl_select.php:301 +#: libraries/messages.inc.php:259 tbl_select.php:301 msgid "Display order:" msgstr "Kolejność wyświetlania:" -#: libraries/messages.inc.php:265 tbl_select.php:132 +#: libraries/messages.inc.php:261 tbl_select.php:132 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Wykonaj \"zapytanie przez przykład\" (znak globalny: \"%\")" -#: libraries/messages.inc.php:266 +#: libraries/messages.inc.php:262 msgid "DocSQL" msgstr "DocSQL" -#: libraries/messages.inc.php:268 +#: libraries/messages.inc.php:264 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/messages.inc.php:273 server_privileges.php:1579 +#: libraries/messages.inc.php:269 server_privileges.php:1579 #: server_privileges.php:1580 server_privileges.php:1581 msgid "Drop the databases that have the same names as the users." msgstr "Usuń bazy danych o takich samych nazwach jak użytkownicy." -#: libraries/messages.inc.php:278 tbl_printview.php:382 tbl_structure.php:743 +#: libraries/messages.inc.php:274 tbl_printview.php:382 tbl_structure.php:743 msgid "dynamic" msgstr "zmienny" -#: libraries/messages.inc.php:282 server_privileges.php:1324 +#: libraries/messages.inc.php:278 server_privileges.php:1324 #: server_privileges.php:1610 msgid "Edit Privileges" msgstr "Edytuj uprawnienia" -#: libraries/messages.inc.php:283 tbl_printview.php:341 tbl_structure.php:688 +#: libraries/messages.inc.php:279 tbl_printview.php:341 tbl_structure.php:688 msgid "Effective" msgstr "Efektywne" -#: libraries/messages.inc.php:286 libraries/relation.lib.php:100 +#: libraries/messages.inc.php:282 libraries/relation.lib.php:100 msgid "Enabled" msgstr "włączone" -#: libraries/messages.inc.php:287 +#: libraries/messages.inc.php:283 msgid "Enclose export in a transaction" msgstr "Obejmij eksport transakcją" -#: libraries/messages.inc.php:288 libraries/sqlparser.lib.php:177 +#: libraries/messages.inc.php:284 libraries/sqlparser.lib.php:177 msgid "END CUT" msgstr "TNIJ DOTĄD" -#: libraries/messages.inc.php:290 libraries/sqlparser.lib.php:183 +#: libraries/messages.inc.php:286 libraries/sqlparser.lib.php:183 msgid "END RAW" msgstr "SUROWE DANE DOTĄD" -#: libraries/messages.inc.php:293 libraries/server_links.inc.php:61 +#: libraries/messages.inc.php:289 libraries/server_links.inc.php:61 #: test/theme.php:113 msgid "Engines" msgstr "Mechanizmy" -#: libraries/messages.inc.php:295 libraries/mysql_charsets.lib.php:238 +#: libraries/messages.inc.php:291 libraries/mysql_charsets.lib.php:238 msgid "English" msgstr "Angielski" -#: libraries/messages.inc.php:296 server_privileges.php:393 +#: libraries/messages.inc.php:292 server_privileges.php:393 #: server_privileges.php:535 server_privileges.php:1501 msgid " Note: MySQL privilege names are expressed in English " msgstr " Uwaga: Uprawnienia MySQL są oznaczone w języku angielskim " -#: libraries/messages.inc.php:298 libraries/zip_extension.lib.php:49 +#: libraries/messages.inc.php:294 libraries/zip_extension.lib.php:49 #: libraries/zip_extension.lib.php:51 libraries/zip_extension.lib.php:66 msgid "Error in ZIP archive:" msgstr "Błąd w archiwum ZIP:" -#: libraries/messages.inc.php:303 libraries/mysql_charsets.lib.php:241 +#: libraries/messages.inc.php:299 libraries/mysql_charsets.lib.php:241 msgid "Esperanto" msgstr "Esperanto" -#: libraries/messages.inc.php:304 libraries/mysql_charsets.lib.php:244 +#: libraries/messages.inc.php:300 libraries/mysql_charsets.lib.php:244 msgid "Estonian" msgstr "Estoński" -#: libraries/messages.inc.php:305 libraries/tbl_triggers.lib.php:29 +#: libraries/messages.inc.php:301 libraries/tbl_triggers.lib.php:29 msgid "Event" msgstr "Zdarzenie" -#: libraries/messages.inc.php:307 +#: libraries/messages.inc.php:303 msgid "Excel edition" msgstr "Wydanie Excela" -#: libraries/messages.inc.php:311 pmd_pdf.php:85 +#: libraries/messages.inc.php:307 pmd_pdf.php:85 msgid "Export/Import to scale" msgstr "Eksport/import w skali" -#: libraries/messages.inc.php:313 +#: libraries/messages.inc.php:309 msgid "Extended inserts" msgstr "Rozszerzone dodania" -#: libraries/messages.inc.php:314 pdf_schema.php:1267 pdf_schema.php:1288 +#: libraries/messages.inc.php:310 pdf_schema.php:1267 pdf_schema.php:1288 #: tbl_printview.php:147 tbl_structure.php:183 tbl_tracking.php:278 msgid "Extra" msgstr "Dodatkowo" -#: libraries/messages.inc.php:316 server_status.php:447 +#: libraries/messages.inc.php:312 server_status.php:447 msgid "Failed attempts" msgstr "Nieudane próby" -#: libraries/messages.inc.php:318 tbl_structure.php:375 +#: libraries/messages.inc.php:314 tbl_structure.php:375 #, php-format msgid "Field %s has been dropped" msgstr "Pole %s zostało usunięte" -#: libraries/messages.inc.php:322 libraries/sql_query_form.lib.php:317 +#: libraries/messages.inc.php:318 libraries/sql_query_form.lib.php:317 msgid "Fields" msgstr "Pola" -#: libraries/messages.inc.php:332 server_binlog.php:136 +#: libraries/messages.inc.php:328 server_binlog.php:136 msgid "Files" msgstr "Pliki" -#: libraries/messages.inc.php:334 server_privileges.php:1597 +#: libraries/messages.inc.php:330 server_privileges.php:1597 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -3832,221 +3832,221 @@ msgstr "" "może się różnić od uprawnień jakich faktycznie używa serwer. W takim " "przypadku powinieneś przed dalszą pracą %sprzeładować uprawnienia%s." -#: libraries/messages.inc.php:335 server_status.php:289 +#: libraries/messages.inc.php:331 server_status.php:289 msgid "Flush query cache" msgstr "Opróżnij bufor podręczny zapytań" -#: libraries/messages.inc.php:336 +#: libraries/messages.inc.php:332 msgid "Flush the table (\"FLUSH\")" msgstr "Przeładuj tabelę (\"FLUSH\")" -#: libraries/messages.inc.php:337 server_status.php:271 +#: libraries/messages.inc.php:333 server_status.php:271 msgid "Flush (close) all tables" msgstr "Przeładuj (zamknij) wszystkie tabele" -#: libraries/messages.inc.php:339 tbl_relation.php:279 +#: libraries/messages.inc.php:335 tbl_relation.php:279 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" "Błąd podczas tworzenia klucza zewnętrznego na %1$s (należy sprawdzić typy " "danych)" -#: libraries/messages.inc.php:341 setup/lib/messages.inc.php:88 +#: libraries/messages.inc.php:337 setup/lib/messages.inc.php:88 #: tbl_printview.php:376 tbl_structure.php:738 msgid "Format" msgstr "Format" -#: libraries/messages.inc.php:344 server_replication.php:325 +#: libraries/messages.inc.php:340 server_replication.php:325 #, fuzzy msgid "Full start" msgstr "Pełny tekst" -#: libraries/messages.inc.php:345 server_replication.php:325 +#: libraries/messages.inc.php:341 server_replication.php:325 #, fuzzy msgid "Full stop" msgstr "Pełny tekst" -#: libraries/messages.inc.php:347 tbl_change.php:282 tbl_change.php:320 +#: libraries/messages.inc.php:343 tbl_change.php:282 tbl_change.php:320 msgid "Function" msgstr "Funkcja" -#: libraries/messages.inc.php:355 libraries/mysql_charsets.lib.php:377 +#: libraries/messages.inc.php:351 libraries/mysql_charsets.lib.php:377 msgid "Georgian" msgstr "Gruziński" -#: libraries/messages.inc.php:356 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:352 libraries/mysql_charsets.lib.php:247 #: libraries/mysql_charsets.lib.php:250 msgid "German" msgstr "Niemiecki" -#: libraries/messages.inc.php:357 themes.php:42 +#: libraries/messages.inc.php:353 themes.php:42 msgid "Get more themes!" msgstr "Pobierz więcej motywów!" -#: libraries/messages.inc.php:358 server_privileges.php:2134 +#: libraries/messages.inc.php:354 server_privileges.php:2134 msgid "global" msgstr "globalnie" -#: libraries/messages.inc.php:359 server_privileges.php:524 +#: libraries/messages.inc.php:355 server_privileges.php:524 #: server_privileges.php:1500 msgid "Global privileges" msgstr "Globalne uprawnienia" -#: libraries/messages.inc.php:360 server_variables.php:55 +#: libraries/messages.inc.php:356 server_variables.php:55 #: server_variables.php:89 msgid "Global value" msgstr "Wartość globalna" -#: libraries/messages.inc.php:365 server_privileges.php:1502 +#: libraries/messages.inc.php:361 server_privileges.php:1502 #: server_privileges.php:1684 server_privileges.php:2033 msgid "Grant" msgstr "Nadawanie" -#: libraries/messages.inc.php:366 libraries/mysql_charsets.lib.php:380 +#: libraries/messages.inc.php:362 libraries/mysql_charsets.lib.php:380 msgid "Greek" msgstr "Grecki" -#: libraries/messages.inc.php:367 +#: libraries/messages.inc.php:363 msgid "\"gzipped\"" msgstr "\".gz\"" -#: libraries/messages.inc.php:369 server_status.php:250 +#: libraries/messages.inc.php:365 server_status.php:250 msgid "Handler" msgstr "Obsługa" -#: libraries/messages.inc.php:370 server_synchronize.php:464 +#: libraries/messages.inc.php:366 server_synchronize.php:464 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: libraries/messages.inc.php:372 libraries/mysql_charsets.lib.php:374 +#: libraries/messages.inc.php:368 libraries/mysql_charsets.lib.php:374 msgid "Hebrew" msgstr "Hebrajski" -#: libraries/messages.inc.php:373 pmd_general.php:83 +#: libraries/messages.inc.php:369 pmd_general.php:83 msgid "Help" msgstr "Pomoc" -#: libraries/messages.inc.php:374 +#: libraries/messages.inc.php:370 msgid "Use hexadecimal for BLOB" msgstr "Użyj liczb szesnastkowych dla typu BLOB" -#: libraries/messages.inc.php:376 pmd_general.php:120 +#: libraries/messages.inc.php:372 pmd_general.php:120 msgid "Hide/Show all" msgstr "Ukryj/pokaż wszystko" -#: libraries/messages.inc.php:377 pmd_general.php:124 +#: libraries/messages.inc.php:373 pmd_general.php:124 msgid "Hide/Show Tables with no relation" msgstr "Ukryj/pokaż tabele bez związków" -#: libraries/messages.inc.php:378 libraries/navigation_header.inc.php:54 +#: libraries/messages.inc.php:374 libraries/navigation_header.inc.php:54 #: libraries/navigation_header.inc.php:57 #: libraries/navigation_header.inc.php:58 msgid "Home" msgstr "Wejście" -#: libraries/messages.inc.php:379 main.php:233 +#: libraries/messages.inc.php:375 main.php:233 msgid "Official Homepage" msgstr "Oficjalna strona phpMyAdmina" -#: libraries/messages.inc.php:382 libraries/replication_gui.lib.php:327 +#: libraries/messages.inc.php:378 libraries/replication_gui.lib.php:327 #: server_privileges.php:753 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/messages.inc.php:383 +#: libraries/messages.inc.php:379 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/messages.inc.php:384 libraries/mysql_charsets.lib.php:253 +#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:253 msgid "Hungarian" msgstr "Węgierski" -#: libraries/messages.inc.php:386 libraries/mysql_charsets.lib.php:256 +#: libraries/messages.inc.php:382 libraries/mysql_charsets.lib.php:256 msgid "Icelandic" msgstr "Islandzki" -#: libraries/messages.inc.php:387 server_processlist.php:53 +#: libraries/messages.inc.php:383 server_processlist.php:53 msgid "ID" msgstr "ID" -#: libraries/messages.inc.php:388 libraries/mult_submits.inc.php:108 +#: libraries/messages.inc.php:384 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:479 msgid "Fulltext" msgstr "Pełny tekst" -#: libraries/messages.inc.php:389 +#: libraries/messages.inc.php:385 msgid "Ignore duplicate rows" msgstr "Ignoruj zdublowane rekordy" -#: libraries/messages.inc.php:390 tbl_change.php:302 tbl_indexes.php:200 +#: libraries/messages.inc.php:386 tbl_change.php:302 tbl_indexes.php:200 #: tbl_indexes.php:225 msgid "Ignore" msgstr "Ignoruj" -#: libraries/messages.inc.php:391 +#: libraries/messages.inc.php:387 msgid "Use ignore inserts" msgstr "Użyj ignorowanych dodań" -#: libraries/messages.inc.php:392 +#: libraries/messages.inc.php:388 msgid "Column names in first row" msgstr "" -#: libraries/messages.inc.php:393 +#: libraries/messages.inc.php:389 msgid "Do not import empty rows" msgstr "" -#: libraries/messages.inc.php:394 pmd_general.php:104 +#: libraries/messages.inc.php:390 pmd_general.php:104 msgid "Import/Export coordinates for PDF schema" msgstr "Importuj/eksportuj współrzędne schematu PDF" -#: libraries/messages.inc.php:395 querywindow.php:104 +#: libraries/messages.inc.php:391 querywindow.php:104 msgid "Import files" msgstr "Import plików" -#: libraries/messages.inc.php:403 +#: libraries/messages.inc.php:399 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/messages.inc.php:404 libraries/messages.inc.php:584 +#: libraries/messages.inc.php:400 libraries/messages.inc.php:580 msgid "Open Document Spreadsheet" msgstr "Arkusz kalkulacyjny w formacie Open Document" -#: libraries/messages.inc.php:405 +#: libraries/messages.inc.php:401 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/messages.inc.php:409 +#: libraries/messages.inc.php:405 msgid "Excel 97-2003 XLS Workbook" msgstr "" -#: libraries/messages.inc.php:410 +#: libraries/messages.inc.php:406 msgid "Excel 2007 XLSX Workbook" msgstr "" -#: libraries/messages.inc.php:414 libraries/mult_submits.inc.php:98 +#: libraries/messages.inc.php:410 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:476 tbl_structure.php:674 msgid "Index" msgstr "Indeks" -#: libraries/messages.inc.php:415 tbl_indexes.php:168 +#: libraries/messages.inc.php:411 tbl_indexes.php:168 msgid "Index name:" msgstr "Nazwa indeksu :" -#: libraries/messages.inc.php:416 tbl_indexes.php:174 +#: libraries/messages.inc.php:412 tbl_indexes.php:174 msgid "Index type:" msgstr "Rodzaj indeksu :" -#: libraries/messages.inc.php:417 sql.php:639 +#: libraries/messages.inc.php:413 sql.php:639 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemy z indeksami tabeli `%s`" -#: libraries/messages.inc.php:427 main.php:266 +#: libraries/messages.inc.php:423 main.php:266 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -4058,164 +4058,164 @@ msgstr "" "działa z takim ustawieniem, jest otwarty dla włamywaczy. Ta luka w " "bezpieczeństwie naprawdę powinna zostać naprawiona." -#: libraries/messages.inc.php:428 tbl_change.php:1130 +#: libraries/messages.inc.php:424 tbl_change.php:1130 msgid "Insert as new row" msgstr "Dodaj jako nowy rekord" -#: libraries/messages.inc.php:429 sql.php:496 tbl_replace.php:386 +#: libraries/messages.inc.php:425 sql.php:496 tbl_replace.php:386 #, php-format msgid "Inserted row id: %1$d" msgstr "Identyfikator wstawionego rekordu: %1$d" -#: libraries/messages.inc.php:430 tbl_change.php:1131 +#: libraries/messages.inc.php:426 tbl_change.php:1131 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/messages.inc.php:432 main.php:139 +#: libraries/messages.inc.php:428 main.php:139 msgid "Interface" msgstr "Interfejs" -#: libraries/messages.inc.php:433 tbl_relation.php:407 +#: libraries/messages.inc.php:429 tbl_relation.php:407 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" "Wewnętrzna relacja jest zbędna gdy istnieje odpowiednia relacja FOREIGN KEY." -#: libraries/messages.inc.php:435 pdf_pages.php:303 +#: libraries/messages.inc.php:431 pdf_pages.php:303 msgid "Internal relations" msgstr "Wewnętrzne relacje" -#: libraries/messages.inc.php:438 tbl_indexes.php:256 tbl_structure.php:590 +#: libraries/messages.inc.php:434 tbl_indexes.php:256 tbl_structure.php:590 #: tbl_structure.php:601 msgid "Column count has to be larger than zero." msgstr "Liczba kolumn musi być większa niż zero." -#: libraries/messages.inc.php:444 libraries/tbl_properties.inc.php:784 +#: libraries/messages.inc.php:440 libraries/tbl_properties.inc.php:784 #: tbl_structure.php:537 msgid "You have to add at least one field." msgstr "Należy dodać przynajmniej jedno pole." -#: libraries/messages.inc.php:449 +#: libraries/messages.inc.php:445 #, php-format msgid "Invalid server index: \"%s\"" msgstr "Niewłaściwy numer serwera: \"%s\"" -#: libraries/messages.inc.php:452 libraries/mysql_charsets.lib.php:259 +#: libraries/messages.inc.php:448 libraries/mysql_charsets.lib.php:259 #: libraries/mysql_charsets.lib.php:349 msgid "Japanese" msgstr "Japoński" -#: libraries/messages.inc.php:453 main.php:331 +#: libraries/messages.inc.php:449 main.php:331 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: libraries/messages.inc.php:454 server_status.php:257 +#: libraries/messages.inc.php:450 server_status.php:257 msgid "Joins" msgstr "Złączenia" -#: libraries/messages.inc.php:457 server_privileges.php:763 +#: libraries/messages.inc.php:453 server_privileges.php:763 msgid "Do not change the password" msgstr "Nie zmieniaj hasła" -#: libraries/messages.inc.php:458 server_status.php:256 +#: libraries/messages.inc.php:454 server_status.php:256 msgid "Key cache" msgstr "Bufor podręczny indeksów" -#: libraries/messages.inc.php:462 libraries/mysql_charsets.lib.php:268 +#: libraries/messages.inc.php:458 libraries/mysql_charsets.lib.php:268 #: libraries/mysql_charsets.lib.php:371 msgid "Korean" msgstr "Koreański" -#: libraries/messages.inc.php:466 libraries/select_lang.lib.php:480 +#: libraries/messages.inc.php:462 libraries/select_lang.lib.php:480 #: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492 #, php-format msgid "Unknown language: %1$s." msgstr "Nieznany język: %1$s." -#: libraries/messages.inc.php:468 +#: libraries/messages.inc.php:464 msgid "Table caption" msgstr "Nagłówek tabeli" -#: libraries/messages.inc.php:469 +#: libraries/messages.inc.php:465 msgid "Content of table __TABLE__" msgstr "Zawartość tabeli __TABLE__" -#: libraries/messages.inc.php:470 +#: libraries/messages.inc.php:466 msgid "Continued table caption" msgstr "Kontynuacja nagłówka tabeli" -#: libraries/messages.inc.php:471 +#: libraries/messages.inc.php:467 msgid "(continued)" msgstr "(kontynuacja)" -#: libraries/messages.inc.php:472 +#: libraries/messages.inc.php:468 msgid "Include table caption" msgstr "Załącz nagłówek tabeli" -#: libraries/messages.inc.php:473 +#: libraries/messages.inc.php:469 msgid "Label key" msgstr "Etykieta klucza" -#: libraries/messages.inc.php:474 +#: libraries/messages.inc.php:470 msgid "LaTeX" msgstr "LaTeX" -#: libraries/messages.inc.php:475 +#: libraries/messages.inc.php:471 msgid "Structure of table __TABLE__" msgstr "Struktura tabeli __TABLE__" -#: libraries/messages.inc.php:476 libraries/mysql_charsets.lib.php:262 +#: libraries/messages.inc.php:472 libraries/mysql_charsets.lib.php:262 msgid "Latvian" msgstr "Łotewski" -#: libraries/messages.inc.php:477 +#: libraries/messages.inc.php:473 msgid "CSV using LOAD DATA" msgstr "CSV przy użyciu LOAD DATA" -#: libraries/messages.inc.php:478 +#: libraries/messages.inc.php:474 msgid "Use LOCAL keyword" msgstr "Użyj słowa kluczowego LOCAL" -#: libraries/messages.inc.php:479 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:475 libraries/tbl_properties.inc.php:105 msgid "Length/Values" msgstr "Długość/Wartości*" -#: libraries/messages.inc.php:480 tbl_select.php:295 +#: libraries/messages.inc.php:476 tbl_select.php:295 msgid "Number of rows per page" msgstr "rekordów na stronie" -#: libraries/messages.inc.php:484 libraries/mysql_charsets.lib.php:265 +#: libraries/messages.inc.php:480 libraries/mysql_charsets.lib.php:265 msgid "Lithuanian" msgstr "Litewski" -#: libraries/messages.inc.php:485 libraries/replication_gui.lib.php:302 +#: libraries/messages.inc.php:481 libraries/replication_gui.lib.php:302 #: server_privileges.php:729 msgid "Local" msgstr "Host lokalny" -#: libraries/messages.inc.php:487 server_privileges.php:669 +#: libraries/messages.inc.php:483 server_privileges.php:669 msgid "Login Information" msgstr "Dane użytkownika" -#: libraries/messages.inc.php:490 libraries/navigation_header.inc.php:67 +#: libraries/messages.inc.php:486 libraries/navigation_header.inc.php:67 #: libraries/navigation_header.inc.php:70 #: libraries/navigation_header.inc.php:71 main.php:99 msgid "Log out" msgstr "Wyjście" -#: libraries/messages.inc.php:497 server_status.php:440 +#: libraries/messages.inc.php:493 server_status.php:440 msgid "max. concurrent connections" msgstr "Maks. jednoczesnych połączeń" -#: libraries/messages.inc.php:498 +#: libraries/messages.inc.php:494 msgid "Maximal length of created query" msgstr "Maksymalna długość utworzonego zapytania" -#: libraries/messages.inc.php:500 main.php:282 +#: libraries/messages.inc.php:496 main.php:282 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -4226,7 +4226,7 @@ msgstr "" "phpMyAdmin nie ma możliwości poprawnego rozbijania napisów, co może " "skutkować niespodziewanymi rezultatami." -#: libraries/messages.inc.php:501 main.php:274 +#: libraries/messages.inc.php:497 main.php:274 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -4235,24 +4235,24 @@ msgstr "" "Opcja mbstring.func_overload jest włączona w pliku konfiguracyjnym PHP. Jest " "ona niezgodna z phpMyAdminem i może powodować utratę niektórych danych!" -#: libraries/messages.inc.php:502 +#: libraries/messages.inc.php:498 msgid "MediaWiki Table" msgstr "" -#: libraries/messages.inc.php:503 transformation_overview.php:25 +#: libraries/messages.inc.php:499 transformation_overview.php:25 msgid "Available MIME types" msgstr "Dostępne typy MIME" -#: libraries/messages.inc.php:504 transformation_overview.php:43 +#: libraries/messages.inc.php:500 transformation_overview.php:43 msgid "Available transformations" msgstr "Dostępne transformacje" -#: libraries/messages.inc.php:505 +#: libraries/messages.inc.php:501 msgctxt "$strMIME_description" msgid "Description" msgstr "Opis" -#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:580 +#: libraries/messages.inc.php:503 libraries/tbl_properties.inc.php:580 #: transformation_overview.php:60 #, php-format msgid "" @@ -4260,7 +4260,7 @@ msgid "" "author what %s does." msgstr "Transformacja ta nie ma opisu.
Proszę zapytać autora, co robi %s." -#: libraries/messages.inc.php:509 libraries/tbl_properties.inc.php:137 +#: libraries/messages.inc.php:505 libraries/tbl_properties.inc.php:137 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -4269,7 +4269,7 @@ msgstr "" "Aby uzyskać listę dostępnych opcji transformacji i ich typów MIME, kliknij %" "sopisy transformacji%s" -#: libraries/messages.inc.php:510 libraries/tbl_properties.inc.php:146 +#: libraries/messages.inc.php:506 libraries/tbl_properties.inc.php:146 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -4281,57 +4281,57 @@ msgstr "" "apostrof (\"'\"), należy je poprzedzić odwrotnym ukośnikiem (np.: '\\\\xyz' " "lub 'a\\'b')." -#: libraries/messages.inc.php:511 libraries/tbl_properties.inc.php:145 +#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:145 msgid "Transformation options" msgstr "Opcje transformacji" -#: libraries/messages.inc.php:513 transformation_overview.php:38 +#: libraries/messages.inc.php:509 transformation_overview.php:38 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "" "Typy MIME pisane czcionką pochyloną nie mają oddzielnej funkcji transformacji" -#: libraries/messages.inc.php:515 tbl_indexes.php:162 +#: libraries/messages.inc.php:511 tbl_indexes.php:162 msgid "Modify an index" msgstr "Modyfikacja indeksu" -#: libraries/messages.inc.php:517 pmd_general.php:108 +#: libraries/messages.inc.php:513 pmd_general.php:108 msgid "Move Menu" msgstr "Przesuń menu" -#: libraries/messages.inc.php:518 tbl_operations.php:276 +#: libraries/messages.inc.php:514 tbl_operations.php:276 msgid "Move table to (database.table):" msgstr "Przenieś tabelę do (bazadanych.tabela):" -#: libraries/messages.inc.php:519 tbl_move_copy.php:56 +#: libraries/messages.inc.php:515 tbl_move_copy.php:56 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabela %s została przeniesiona do %s." -#: libraries/messages.inc.php:520 tbl_move_copy.php:46 +#: libraries/messages.inc.php:516 tbl_move_copy.php:46 msgid "Can't move table to same one!" msgstr "Nie można przenieść tabeli do niej samej!" -#: libraries/messages.inc.php:521 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:517 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 #: libraries/mysql_charsets.lib.php:332 libraries/mysql_charsets.lib.php:354 #: libraries/mysql_charsets.lib.php:365 msgid "multilingual" msgstr "wiele języków" -#: libraries/messages.inc.php:534 main.php:193 +#: libraries/messages.inc.php:530 main.php:193 msgid "MySQL charset" msgstr "Kodowanie napisów dla MySQL" -#: libraries/messages.inc.php:535 main.php:211 +#: libraries/messages.inc.php:531 main.php:211 msgid "MySQL client version" msgstr "Wersja klienta MySQL" -#: libraries/messages.inc.php:536 main.php:125 +#: libraries/messages.inc.php:532 main.php:125 msgid "MySQL connection collation" msgstr "System porównań dla połączenia MySQL" -#: libraries/messages.inc.php:537 main.php:346 +#: libraries/messages.inc.php:533 main.php:346 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -4340,55 +4340,55 @@ msgstr "" "Wersja %s biblioteki MySQL dla PHP różni się od wersji %s serwera MySQL. " "Może to powodować nieprzewidywalne zachowanie." -#: libraries/messages.inc.php:539 server_status.php:294 +#: libraries/messages.inc.php:535 server_status.php:294 msgid "Show processes" msgstr "Pokaż procesy" -#: libraries/messages.inc.php:545 navigation.php:210 server_databases.php:371 +#: libraries/messages.inc.php:541 navigation.php:210 server_databases.php:371 #: server_synchronize.php:1191 msgid "No databases" msgstr "Brak baz danych" -#: libraries/messages.inc.php:546 server_databases.php:52 +#: libraries/messages.inc.php:542 server_databases.php:52 msgid "No databases selected." msgstr "Żadna baza danych nie został wybrana." -#: libraries/messages.inc.php:548 libraries/relation.lib.php:1173 +#: libraries/messages.inc.php:544 libraries/relation.lib.php:1173 msgid "no description" msgstr "brak opisu" -#: libraries/messages.inc.php:552 libraries/zip_extension.lib.php:26 +#: libraries/messages.inc.php:548 libraries/zip_extension.lib.php:26 msgid "No files found inside ZIP archive!" msgstr "Archiwum ZIP jest puste!" -#: libraries/messages.inc.php:555 tbl_indexes.php:91 +#: libraries/messages.inc.php:551 tbl_indexes.php:91 msgid "No index parts defined!" msgstr "Brak zdefiniowanych części indeksu!" -#: libraries/messages.inc.php:556 libraries/mult_submits.inc.php:435 +#: libraries/messages.inc.php:552 libraries/mult_submits.inc.php:435 #: tbl_replace.php:331 msgid "No change" msgstr "Bez zmian" -#: libraries/messages.inc.php:557 +#: libraries/messages.inc.php:553 #, fuzzy msgctxt "$strNoneDefault" msgid "None" msgstr "Brak" -#: libraries/messages.inc.php:560 libraries/plugin_interface.lib.php:312 +#: libraries/messages.inc.php:556 libraries/plugin_interface.lib.php:312 msgid "This format has no options" msgstr "Ten format nie ma żadnych opcji" -#: libraries/messages.inc.php:565 user_password.php:54 +#: libraries/messages.inc.php:561 user_password.php:54 msgid "You don't have sufficient privileges to be here right now!" msgstr "Brak wystarczających uprawnień!" -#: libraries/messages.inc.php:566 tbl_row_action.php:29 +#: libraries/messages.inc.php:562 tbl_row_action.php:29 msgid "No rows selected" msgstr "Żaden rekord nie został zaznaczony" -#: libraries/messages.inc.php:569 themes.php:32 +#: libraries/messages.inc.php:565 themes.php:32 #, php-format msgid "" "No themes support; please check your configuration and/or your themes in " @@ -4397,295 +4397,295 @@ msgstr "" "Brak obsługi motywów graficznych, proszę sprawdzić konfigurację i/lub motywy " "graficzne w katalogu %s." -#: libraries/messages.inc.php:571 libraries/relation.lib.php:95 +#: libraries/messages.inc.php:567 libraries/relation.lib.php:95 msgid "not OK" msgstr "błąd" -#: libraries/messages.inc.php:572 server_synchronize.php:400 +#: libraries/messages.inc.php:568 server_synchronize.php:400 #: server_synchronize.php:839 msgid "not present" msgstr "" -#: libraries/messages.inc.php:573 pdf_pages.php:36 pdf_pages.php:42 +#: libraries/messages.inc.php:569 pdf_pages.php:36 pdf_pages.php:42 #: pdf_pages.php:48 pdf_pages.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "Tabela %s nie została znaleziona lub nie jest ustawiona w %s" -#: libraries/messages.inc.php:574 server_privileges.php:804 +#: libraries/messages.inc.php:570 server_privileges.php:804 #: server_privileges.php:2166 msgid "No user(s) found." msgstr "Nie znaleziono użytkownika(ów)." -#: libraries/messages.inc.php:578 pmd_general.php:164 +#: libraries/messages.inc.php:574 pmd_general.php:164 msgid "Number of tables" msgstr "Liczba tabel" -#: libraries/messages.inc.php:581 server_databases.php:117 +#: libraries/messages.inc.php:577 server_databases.php:117 #: server_status.php:260 setup/lib/messages.inc.php:117 msgid "Tables" msgstr "Tabele" -#: libraries/messages.inc.php:583 libraries/relation.lib.php:99 +#: libraries/messages.inc.php:579 libraries/relation.lib.php:99 #: pmd_general.php:340 msgid "OK" msgstr "OK" -#: libraries/messages.inc.php:585 +#: libraries/messages.inc.php:581 msgid "Open Document Text" msgstr "Tekst w formacie Open Document" -#: libraries/messages.inc.php:588 tbl_select.php:138 +#: libraries/messages.inc.php:584 tbl_select.php:138 msgid "Operator" msgstr "Operator" -#: libraries/messages.inc.php:589 tbl_operations.php:662 +#: libraries/messages.inc.php:585 tbl_operations.php:662 msgid "Optimize" msgstr "Optymalizuj" -#: libraries/messages.inc.php:602 libraries/tbl_properties.inc.php:755 +#: libraries/messages.inc.php:598 libraries/tbl_properties.inc.php:755 msgid "PARTITION definition" msgstr "Definicja partycji" -#: libraries/messages.inc.php:603 tbl_structure.php:757 +#: libraries/messages.inc.php:599 tbl_structure.php:757 msgid "partitioned" msgstr "partycjonowanie" -#: libraries/messages.inc.php:604 tbl_operations.php:649 +#: libraries/messages.inc.php:600 tbl_operations.php:649 msgid "Partition maintenance" msgstr "Zarządzanie partycjami" -#: libraries/messages.inc.php:605 tbl_operations.php:657 +#: libraries/messages.inc.php:601 tbl_operations.php:657 #, php-format msgid "Partition %s" msgstr "Partycja %s" -#: libraries/messages.inc.php:606 server_privileges.php:1212 +#: libraries/messages.inc.php:602 server_privileges.php:1212 #, php-format msgid "The password for %s was changed successfully." msgstr "Hasło dla %s zostało pomyślnie zmienione." -#: libraries/messages.inc.php:635 +#: libraries/messages.inc.php:631 #, php-format msgid "Schema of the \"%s\" database - Page %s" msgstr "Schemat bazy danych \"%s\" - strona %s" -#: libraries/messages.inc.php:636 +#: libraries/messages.inc.php:632 #, php-format msgid "The \"%s\" table doesn't exist!" msgstr "Tabela \"%s\" nie istnieje!" -#: libraries/messages.inc.php:637 pdf_schema.php:1013 +#: libraries/messages.inc.php:633 pdf_schema.php:1013 msgid "No tables" msgstr "Brak tabel" -#: libraries/messages.inc.php:638 pmd_pdf.php:63 +#: libraries/messages.inc.php:634 pmd_pdf.php:63 #, fuzzy msgid "Page has been created" msgstr "Tabela %1$s została utworzona." -#: libraries/messages.inc.php:639 pmd_pdf.php:65 +#: libraries/messages.inc.php:635 pmd_pdf.php:65 msgid "Page creation failed" msgstr "" -#: libraries/messages.inc.php:640 +#: libraries/messages.inc.php:636 msgid "PDF" msgstr "PDF" -#: libraries/messages.inc.php:641 +#: libraries/messages.inc.php:637 msgid "(Generates a report containing the data of a single table)" msgstr "(Generuje raport zawierający danej pojedynczej tabeli.)" -#: libraries/messages.inc.php:642 +#: libraries/messages.inc.php:638 msgid "Report title" msgstr "Tytuł raportu" -#: libraries/messages.inc.php:643 server_status.php:389 server_status.php:434 +#: libraries/messages.inc.php:639 server_status.php:389 server_status.php:434 #: server_status.php:497 server_status.php:555 msgid "per hour" msgstr "na godzinę" -#: libraries/messages.inc.php:644 server_status.php:498 +#: libraries/messages.inc.php:640 server_status.php:498 msgid "per minute" msgstr "na minutę" -#: libraries/messages.inc.php:645 server_status.php:499 +#: libraries/messages.inc.php:641 server_status.php:499 msgid "per second" msgstr "na sekundę" -#: libraries/messages.inc.php:646 libraries/mysql_charsets.lib.php:271 +#: libraries/messages.inc.php:642 libraries/mysql_charsets.lib.php:271 msgid "Persian" msgstr "Perski" -#: libraries/messages.inc.php:647 libraries/mysql_charsets.lib.php:250 +#: libraries/messages.inc.php:643 libraries/mysql_charsets.lib.php:250 msgid "phone book" msgstr "książka telefoniczna" -#: libraries/messages.inc.php:648 +#: libraries/messages.inc.php:644 msgid "PHP array" msgstr "" -#: libraries/messages.inc.php:650 main.php:213 +#: libraries/messages.inc.php:646 main.php:213 msgid "PHP extension" msgstr "Rozszerzenie PHP" -#: libraries/messages.inc.php:654 libraries/relation.lib.php:163 +#: libraries/messages.inc.php:650 libraries/relation.lib.php:163 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/messages.inc.php:655 libraries/relation.lib.php:159 +#: libraries/messages.inc.php:651 libraries/relation.lib.php:159 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/messages.inc.php:656 libraries/relation.lib.php:161 +#: libraries/messages.inc.php:652 libraries/relation.lib.php:161 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" -#: libraries/messages.inc.php:657 libraries/relation.lib.php:162 +#: libraries/messages.inc.php:653 libraries/relation.lib.php:162 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/messages.inc.php:658 libraries/relation.lib.php:164 +#: libraries/messages.inc.php:654 libraries/relation.lib.php:164 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/messages.inc.php:661 libraries/mysql_charsets.lib.php:274 +#: libraries/messages.inc.php:657 libraries/mysql_charsets.lib.php:274 msgid "Polish" msgstr "Polski" -#: libraries/messages.inc.php:662 libraries/replication_gui.lib.php:67 +#: libraries/messages.inc.php:658 libraries/replication_gui.lib.php:67 #: server_synchronize.php:1163 #, fuzzy msgid "Port" msgstr "Sortuj" -#: libraries/messages.inc.php:667 tbl_indexes.php:67 +#: libraries/messages.inc.php:663 tbl_indexes.php:67 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Nazwą podstawowego klucza musi być… PRIMARY!" -#: libraries/messages.inc.php:668 tbl_indexes.php:184 +#: libraries/messages.inc.php:664 tbl_indexes.php:184 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" "(\"PRIMARY\" musi być nazwą jedynie klucza podstawowego!)" -#: libraries/messages.inc.php:669 libraries/mult_submits.inc.php:76 +#: libraries/messages.inc.php:665 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:474 msgid "Primary" msgstr "Podstawowy" -#: libraries/messages.inc.php:673 server_privileges.php:227 +#: libraries/messages.inc.php:669 server_privileges.php:227 msgid "Includes all privileges except GRANT." msgstr "Wszystkie uprawnienia, oprócz GRANT." -#: libraries/messages.inc.php:674 server_privileges.php:153 +#: libraries/messages.inc.php:670 server_privileges.php:153 #: server_privileges.php:476 msgid "Allows altering the structure of existing tables." msgstr "Pozwól zmieniać strukturę istniejących tabel." -#: libraries/messages.inc.php:675 server_privileges.php:169 +#: libraries/messages.inc.php:671 server_privileges.php:169 #: server_privileges.php:482 msgid "Allows altering and dropping stored routines." msgstr "Pozwól modyfikować i usuwać procedury składowane." -#: libraries/messages.inc.php:676 server_privileges.php:145 +#: libraries/messages.inc.php:672 server_privileges.php:145 #: server_privileges.php:475 msgid "Allows creating new databases and tables." msgstr "Pozwól tworzyć nowe bazy danych i tabele." -#: libraries/messages.inc.php:677 server_privileges.php:168 +#: libraries/messages.inc.php:673 server_privileges.php:168 #: server_privileges.php:481 msgid "Allows creating stored routines." msgstr "Pozwól tworzyć procedury składowane." -#: libraries/messages.inc.php:678 server_privileges.php:475 +#: libraries/messages.inc.php:674 server_privileges.php:475 msgid "Allows creating new tables." msgstr "Pozwól tworzyć nowe tabele." -#: libraries/messages.inc.php:679 server_privileges.php:156 +#: libraries/messages.inc.php:675 server_privileges.php:156 #: server_privileges.php:479 msgid "Allows creating temporary tables." msgstr "Pozwala tworzyć tabele tymczasowe." -#: libraries/messages.inc.php:680 server_privileges.php:170 +#: libraries/messages.inc.php:676 server_privileges.php:170 #: server_privileges.php:515 msgid "Allows creating, dropping and renaming user accounts." msgstr "Pozwól tworzyć, usuwać i zmieniać nazwy kont użytkowników." -#: libraries/messages.inc.php:681 server_privileges.php:160 +#: libraries/messages.inc.php:677 server_privileges.php:160 #: server_privileges.php:164 server_privileges.php:487 #: server_privileges.php:491 msgid "Allows creating new views." msgstr "Pozwól tworzyć perspektywy." -#: libraries/messages.inc.php:682 server_privileges.php:144 +#: libraries/messages.inc.php:678 server_privileges.php:144 #: server_privileges.php:467 msgid "Allows deleting data." msgstr "Pozwól usuwać dane." -#: libraries/messages.inc.php:683 server_privileges.php:146 +#: libraries/messages.inc.php:679 server_privileges.php:146 #: server_privileges.php:478 msgid "Allows dropping databases and tables." msgstr "Pozwól usuwać bazy danych i tabele." -#: libraries/messages.inc.php:684 server_privileges.php:478 +#: libraries/messages.inc.php:680 server_privileges.php:478 msgid "Allows dropping tables." msgstr "Pozwól usuwać tabele." -#: libraries/messages.inc.php:685 server_privileges.php:161 +#: libraries/messages.inc.php:681 server_privileges.php:161 #: server_privileges.php:495 msgid "Allows to set up events for the event scheduler" msgstr "Pozwól ustawiać zdarzenia w harmonogramie zdarzeń" -#: libraries/messages.inc.php:686 server_privileges.php:171 +#: libraries/messages.inc.php:682 server_privileges.php:171 #: server_privileges.php:483 msgid "Allows executing stored routines." msgstr "Pozwól wykonywać procedury składowane." -#: libraries/messages.inc.php:687 server_privileges.php:150 +#: libraries/messages.inc.php:683 server_privileges.php:150 #: server_privileges.php:470 msgid "Allows importing data from and exporting data into files." msgstr "Pozwól importować i eksportować dane z/do plików." -#: libraries/messages.inc.php:688 server_privileges.php:501 +#: libraries/messages.inc.php:684 server_privileges.php:501 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Pozwól dodawać użytkowników i nadawać uprawnienia bez przeładowywania tabeli " "uprawnień." -#: libraries/messages.inc.php:689 server_privileges.php:152 +#: libraries/messages.inc.php:685 server_privileges.php:152 #: server_privileges.php:477 msgid "Allows creating and dropping indexes." msgstr "Pozwól tworzyć i usuwać indeksy." -#: libraries/messages.inc.php:690 server_privileges.php:142 +#: libraries/messages.inc.php:686 server_privileges.php:142 #: server_privileges.php:403 server_privileges.php:465 msgid "Allows inserting and replacing data." msgstr "Pozwól dodawać i zamieniać dane." -#: libraries/messages.inc.php:691 server_privileges.php:157 +#: libraries/messages.inc.php:687 server_privileges.php:157 #: server_privileges.php:510 msgid "Allows locking tables for the current thread." msgstr "Pozwól blokować tabele dla aktualnego wątku." -#: libraries/messages.inc.php:692 server_privileges.php:607 +#: libraries/messages.inc.php:688 server_privileges.php:607 #: server_privileges.php:609 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Ogranicz liczbę nowych połączeń, które może otworzyć użytkownik w ciągu " "godziny." -#: libraries/messages.inc.php:693 server_privileges.php:595 +#: libraries/messages.inc.php:689 server_privileges.php:595 #: server_privileges.php:597 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Ogranicz liczbę zapytań, które może wysłać użytkownik w ciągu godziny." -#: libraries/messages.inc.php:694 server_privileges.php:601 +#: libraries/messages.inc.php:690 server_privileges.php:601 #: server_privileges.php:603 msgid "" "Limits the number of commands that change any table or database the user may " @@ -4694,59 +4694,59 @@ msgstr "" "Ogranicz liczbę poleceń zmieniających jakąkolwiek tabelę lub bazę danych, " "które może wykonać użytkownik w ciągu godziny." -#: libraries/messages.inc.php:695 server_privileges.php:613 +#: libraries/messages.inc.php:691 server_privileges.php:613 #: server_privileges.php:615 msgid "Limits the number of simultaneous connections the user may have." msgstr "Ogranicz liczbę jednoczesnych połączeń, które może użytkownik." -#: libraries/messages.inc.php:696 server_privileges.php:149 +#: libraries/messages.inc.php:692 server_privileges.php:149 #: server_privileges.php:505 msgid "Allows viewing processes of all users" msgstr "Pozwól oglądać procesy wszystkich użytkowyników" -#: libraries/messages.inc.php:697 server_privileges.php:151 +#: libraries/messages.inc.php:693 server_privileges.php:151 #: server_privileges.php:409 server_privileges.php:511 msgid "Has no effect in this MySQL version." msgstr "Nie ma żadnych skutków w tej wersji MySQL." -#: libraries/messages.inc.php:698 server_privileges.php:147 +#: libraries/messages.inc.php:694 server_privileges.php:147 #: server_privileges.php:506 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Pozwól przeładowywać ustawienia serwera i opróżniać pamięć podręczną serwera." -#: libraries/messages.inc.php:699 server_privileges.php:159 +#: libraries/messages.inc.php:695 server_privileges.php:159 #: server_privileges.php:513 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Nadaj użytkownikowi prawo, by zapytać gdzie są serwery podrzędne / nadrzędne." -#: libraries/messages.inc.php:700 server_privileges.php:158 +#: libraries/messages.inc.php:696 server_privileges.php:158 #: server_privileges.php:514 msgid "Needed for the replication slaves." msgstr "Potrzebne dla replikacji serwera podrzędnego." -#: libraries/messages.inc.php:701 server_privileges.php:141 +#: libraries/messages.inc.php:697 server_privileges.php:141 #: server_privileges.php:400 server_privileges.php:464 msgid "Allows reading data." msgstr "Pozwól czytać dane." -#: libraries/messages.inc.php:702 server_privileges.php:154 +#: libraries/messages.inc.php:698 server_privileges.php:154 #: server_privileges.php:508 msgid "Gives access to the complete list of databases." msgstr "Daj dostęp do pełnej listy baz danych." -#: libraries/messages.inc.php:703 server_privileges.php:165 +#: libraries/messages.inc.php:699 server_privileges.php:165 #: server_privileges.php:167 server_privileges.php:480 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Pozwól wykonywać zapytania SHOW CREATE VIEW." -#: libraries/messages.inc.php:704 server_privileges.php:148 +#: libraries/messages.inc.php:700 server_privileges.php:148 #: server_privileges.php:507 msgid "Allows shutting down the server." msgstr "Pozwól wyłączyć serwer." -#: libraries/messages.inc.php:705 server_privileges.php:155 +#: libraries/messages.inc.php:701 server_privileges.php:155 #: server_privileges.php:504 msgid "" "Allows connecting, even if maximum number of connections is reached; " @@ -4757,55 +4757,55 @@ msgstr "" "połączeń; Wymagane dla większość operacji administracyjnych, takich jak " "ustawianie zmiennych globalnych czy unicestwianie wątków innych użytkowników." -#: libraries/messages.inc.php:706 server_privileges.php:162 +#: libraries/messages.inc.php:702 server_privileges.php:162 #: server_privileges.php:496 msgid "Allows creating and dropping triggers" msgstr "Pozwól tworzyć i usuwać wyzwalacze." -#: libraries/messages.inc.php:707 server_privileges.php:143 +#: libraries/messages.inc.php:703 server_privileges.php:143 #: server_privileges.php:406 server_privileges.php:466 msgid "Allows changing data." msgstr "Pozwól zmieniać dane." -#: libraries/messages.inc.php:708 server_privileges.php:221 +#: libraries/messages.inc.php:704 server_privileges.php:221 msgid "No privileges." msgstr "Brak uprawnień." -#: libraries/messages.inc.php:710 server_privileges.php:1296 +#: libraries/messages.inc.php:706 server_privileges.php:1296 msgid "The privileges were reloaded successfully." msgstr "Uprawnienia zostały pomyślnie przeładowane." -#: libraries/messages.inc.php:712 libraries/server_links.inc.php:80 +#: libraries/messages.inc.php:708 libraries/server_links.inc.php:80 msgid "Processes" msgstr "Procesy" -#: libraries/messages.inc.php:714 main.php:187 +#: libraries/messages.inc.php:710 main.php:187 msgid "Protocol version" msgstr "Wersja protokołu" -#: libraries/messages.inc.php:715 +#: libraries/messages.inc.php:711 msgid "Put fields names in the first row" msgstr "Umieść nazwy pól w pierwszym rekordzie" -#: libraries/messages.inc.php:720 server_synchronize.php:1003 +#: libraries/messages.inc.php:716 server_synchronize.php:1003 msgid "The following queries have been executed:" msgstr "" -#: libraries/messages.inc.php:721 server_status.php:251 +#: libraries/messages.inc.php:717 server_status.php:251 msgid "Query cache" msgstr "Pamięć podręczna zapytań" -#: libraries/messages.inc.php:722 libraries/navigation_header.inc.php:80 +#: libraries/messages.inc.php:718 libraries/navigation_header.inc.php:80 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 setup/lib/messages.inc.php:122 msgid "Query window" msgstr "Okienko zapytania" -#: libraries/messages.inc.php:725 querywindow.php:109 querywindow.php:217 +#: libraries/messages.inc.php:721 querywindow.php:109 querywindow.php:217 msgid "SQL history" msgstr "Historia SQL" -#: libraries/messages.inc.php:726 server_status.php:490 +#: libraries/messages.inc.php:722 server_status.php:490 #, php-format msgid "" "Query statistics: Since its startup, %s queries have been sent to the " @@ -4814,138 +4814,138 @@ msgstr "" "Statystyki zapytań: Od rozpoczęcia jego pracy, do serwera zostało " "wysłanych %s zapytań." -#: libraries/messages.inc.php:728 server_status.php:554 +#: libraries/messages.inc.php:724 server_status.php:554 msgid "Query type" msgstr "Rodzaj zapytania" -#: libraries/messages.inc.php:729 libraries/sql_query_form.lib.php:381 +#: libraries/messages.inc.php:725 libraries/sql_query_form.lib.php:381 msgid "Do not overwrite this query from outside the window" msgstr "Nie nadpisuj tego zapytania spoza okna" -#: libraries/messages.inc.php:732 tbl_operations.php:663 +#: libraries/messages.inc.php:728 tbl_operations.php:663 msgid "Rebuild" msgstr "Przebuduj" -#: libraries/messages.inc.php:733 server_status.php:394 +#: libraries/messages.inc.php:729 server_status.php:394 msgid "Received" msgstr "Otrzymane" -#: libraries/messages.inc.php:734 pmd_pdf.php:89 +#: libraries/messages.inc.php:730 pmd_pdf.php:89 msgid "recommended" msgstr "zalecana" -#: libraries/messages.inc.php:736 tbl_operations.php:702 +#: libraries/messages.inc.php:732 tbl_operations.php:702 msgid "Check referential integrity:" msgstr "Sprawdź spójność powiązań:" -#: libraries/messages.inc.php:740 pdf_schema.php:1032 pdf_schema.php:1141 +#: libraries/messages.inc.php:736 pdf_schema.php:1032 pdf_schema.php:1141 msgid "Relational schema" msgstr "Schemat relacyjny" -#: libraries/messages.inc.php:744 tbl_relation.php:399 +#: libraries/messages.inc.php:740 tbl_relation.php:399 msgid "Relations" msgstr "Relacje" -#: libraries/messages.inc.php:745 tbl_structure.php:507 tbl_structure.php:509 +#: libraries/messages.inc.php:741 tbl_structure.php:507 tbl_structure.php:509 msgid "Relation view" msgstr "Widok relacyjny" -#: libraries/messages.inc.php:746 server_privileges.php:1246 +#: libraries/messages.inc.php:742 server_privileges.php:1246 msgid "Reloading the privileges" msgstr "Przeładuj uprawnienia" -#: libraries/messages.inc.php:747 navigation.php:66 navigation.php:67 +#: libraries/messages.inc.php:743 navigation.php:66 navigation.php:67 #: navigation.php:70 #, fuzzy msgid "Reload navigation frame" msgstr "Indywidualizacja ramki nawigacyjnej" -#: libraries/messages.inc.php:748 pmd_general.php:80 +#: libraries/messages.inc.php:744 pmd_general.php:80 msgid "Reload" msgstr "Przeładuj" -#: libraries/messages.inc.php:749 libraries/server_synchronize.lib.php:1345 +#: libraries/messages.inc.php:745 libraries/server_synchronize.lib.php:1345 #: libraries/server_synchronize.lib.php:1371 #, fuzzy msgid "Remote server" msgstr "Nowy serwer" -#: libraries/messages.inc.php:750 +#: libraries/messages.inc.php:746 msgid "Remove CRLF characters within fields" msgstr "" -#: libraries/messages.inc.php:751 tbl_operations.php:676 +#: libraries/messages.inc.php:747 tbl_operations.php:676 msgid "Remove partitioning" msgstr "Usuń partycjonowanie" -#: libraries/messages.inc.php:752 server_privileges.php:1575 +#: libraries/messages.inc.php:748 server_privileges.php:1575 msgid "Remove selected users" msgstr "Usuń zaznaczonych użytkowników" -#: libraries/messages.inc.php:755 tbl_operations.php:338 +#: libraries/messages.inc.php:751 tbl_operations.php:338 msgid "Rename table to" msgstr "Zmień nazwę tabeli na" -#: libraries/messages.inc.php:756 view_operations.php:93 +#: libraries/messages.inc.php:752 view_operations.php:93 #, fuzzy msgid "Rename view to" msgstr "Zmień nazwę tabeli na" -#: libraries/messages.inc.php:757 tbl_operations.php:664 +#: libraries/messages.inc.php:753 tbl_operations.php:664 msgid "Repair" msgstr "Napraw" -#: libraries/messages.inc.php:759 +#: libraries/messages.inc.php:755 msgid "Replace NULL by" msgstr "Zamiana NULL na" -#: libraries/messages.inc.php:760 +#: libraries/messages.inc.php:756 msgid "Replace table data with file" msgstr "Zamiana danych tabeli z plikiem" -#: libraries/messages.inc.php:761 server_replication.php:228 +#: libraries/messages.inc.php:757 server_replication.php:228 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: libraries/messages.inc.php:762 libraries/replication_gui.lib.php:236 +#: libraries/messages.inc.php:758 libraries/replication_gui.lib.php:236 #: server_replication.php:194 msgid "Add slave replication user" msgstr "" -#: libraries/messages.inc.php:763 server_replication.php:74 +#: libraries/messages.inc.php:759 server_replication.php:74 #, php-format msgid "Master server changed succesfully to %s" msgstr "" -#: libraries/messages.inc.php:764 server_replication.php:182 +#: libraries/messages.inc.php:760 server_replication.php:182 msgid "This server is configured as master in a replication process." msgstr "" -#: libraries/messages.inc.php:765 server_replication.php:322 +#: libraries/messages.inc.php:761 server_replication.php:322 msgid "Control slave:" msgstr "" -#: libraries/messages.inc.php:766 server_replication.php:65 +#: libraries/messages.inc.php:762 server_replication.php:65 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: libraries/messages.inc.php:767 server_replication.php:58 +#: libraries/messages.inc.php:763 server_replication.php:58 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: libraries/messages.inc.php:768 server_replication.php:221 +#: libraries/messages.inc.php:764 server_replication.php:221 msgid "Replicate all databases; Ignore:" msgstr "" -#: libraries/messages.inc.php:769 server_replication.php:222 +#: libraries/messages.inc.php:765 server_replication.php:222 msgid "Ignore all databases; Replicate:" msgstr "" -#: libraries/messages.inc.php:770 server_replication.php:218 +#: libraries/messages.inc.php:766 server_replication.php:218 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -4954,126 +4954,126 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: libraries/messages.inc.php:771 server_replication.php:217 +#: libraries/messages.inc.php:767 server_replication.php:217 #, fuzzy msgid "Master configuration" msgstr "Konfiguracja serwera" -#: libraries/messages.inc.php:772 server_replication.php:181 +#: libraries/messages.inc.php:768 server_replication.php:181 #: server_replication.php:209 #, fuzzy msgid "Master replication" msgstr "Konfiguracja serwera" -#: libraries/messages.inc.php:774 server_replication.php:230 +#: libraries/messages.inc.php:770 server_replication.php:230 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: libraries/messages.inc.php:775 server_replication.php:225 +#: libraries/messages.inc.php:771 server_replication.php:225 #, fuzzy msgid "Please select databases:" msgstr "Proszę wybrać bazę danych" -#: libraries/messages.inc.php:776 server_replication.php:210 +#: libraries/messages.inc.php:772 server_replication.php:210 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:188 +#: libraries/messages.inc.php:773 libraries/replication_gui.lib.php:188 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/messages.inc.php:778 server_replication.php:187 +#: libraries/messages.inc.php:774 server_replication.php:187 msgid "Show connected slaves" msgstr "" -#: libraries/messages.inc.php:779 libraries/messages.inc.php:885 +#: libraries/messages.inc.php:775 libraries/messages.inc.php:881 #: server_replication.php:184 server_status.php:281 #, fuzzy msgid "Show master status" msgstr "Status serwera podrzędnego" -#: libraries/messages.inc.php:780 server_replication.php:334 +#: libraries/messages.inc.php:776 server_replication.php:334 msgid "Skipping error(s) might lead into unsynchronized master and slave!" msgstr "" -#: libraries/messages.inc.php:781 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:51 #: server_replication.php:347 msgid "Change or reconfigure master server" msgstr "" -#: libraries/messages.inc.php:782 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:778 libraries/replication_gui.lib.php:51 #, fuzzy msgid "Slave configuration" msgstr "Konfiguracja serwera" -#: libraries/messages.inc.php:783 server_replication.php:305 +#: libraries/messages.inc.php:779 server_replication.php:305 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: libraries/messages.inc.php:784 server_replication.php:332 +#: libraries/messages.inc.php:780 server_replication.php:332 msgid "Error management:" msgstr "" -#: libraries/messages.inc.php:785 server_replication.php:328 +#: libraries/messages.inc.php:781 server_replication.php:328 #, php-format msgid "IO Thread %s only" msgstr "" -#: libraries/messages.inc.php:786 server_replication.php:296 +#: libraries/messages.inc.php:782 server_replication.php:296 msgid "Slave IO Thread not running!" msgstr "" -#: libraries/messages.inc.php:787 server_replication.php:355 +#: libraries/messages.inc.php:783 server_replication.php:355 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/messages.inc.php:788 server_replication.php:326 +#: libraries/messages.inc.php:784 server_replication.php:326 msgid "Reset slave" msgstr "" -#: libraries/messages.inc.php:789 server_replication.php:308 +#: libraries/messages.inc.php:785 server_replication.php:308 msgid "See slave status table" msgstr "" -#: libraries/messages.inc.php:790 server_replication.php:336 +#: libraries/messages.inc.php:786 server_replication.php:336 msgid "Skip current error" msgstr "" -#: libraries/messages.inc.php:791 server_replication.php:340 +#: libraries/messages.inc.php:787 server_replication.php:340 msgid "errors." msgstr "" -#: libraries/messages.inc.php:792 server_replication.php:337 +#: libraries/messages.inc.php:788 server_replication.php:337 msgid "Skip next" msgstr "" -#: libraries/messages.inc.php:793 server_replication.php:248 +#: libraries/messages.inc.php:789 server_replication.php:248 #, fuzzy msgid "Slave replication" msgstr "Konfiguracja serwera" -#: libraries/messages.inc.php:794 server_replication.php:293 +#: libraries/messages.inc.php:790 server_replication.php:293 msgid "Slave SQL Thread not running!" msgstr "" -#: libraries/messages.inc.php:795 server_replication.php:327 +#: libraries/messages.inc.php:791 server_replication.php:327 #, php-format msgid "SQL Thread %s only" msgstr "" -#: libraries/messages.inc.php:796 +#: libraries/messages.inc.php:792 #, php-format msgid "" "This MySQL server works as %s in replication process. For further " @@ -5081,163 +5081,163 @@ msgid "" "\"#replication\">replication section." msgstr "" -#: libraries/messages.inc.php:797 +#: libraries/messages.inc.php:793 #, fuzzy msgid "Master status" msgstr "Status serwera podrzędnego" -#: libraries/messages.inc.php:798 server_status.php:721 +#: libraries/messages.inc.php:794 server_status.php:721 #, fuzzy msgid "Replication status" msgstr "Replikacja" -#: libraries/messages.inc.php:799 +#: libraries/messages.inc.php:795 #, fuzzy msgid "Slave status" msgstr "Status serwera podrzędnego" -#: libraries/messages.inc.php:800 server_replication.php:311 +#: libraries/messages.inc.php:796 server_replication.php:311 msgid "Synchronize databases with master" msgstr "" -#: libraries/messages.inc.php:801 server_replication.php:71 +#: libraries/messages.inc.php:797 server_replication.php:71 msgid "Unable to change master" msgstr "" -#: libraries/messages.inc.php:802 server_replication.php:51 +#: libraries/messages.inc.php:798 server_replication.php:51 msgid "Unknown error" msgstr "" -#: libraries/messages.inc.php:803 main.php:163 pdf_pages.php:344 +#: libraries/messages.inc.php:799 main.php:163 pdf_pages.php:344 #: setup/lib/FormDisplay.tpl.php:216 tbl_change.php:1175 msgid "Reset" msgstr "Resetuj" -#: libraries/messages.inc.php:804 server_privileges.php:591 +#: libraries/messages.inc.php:800 server_privileges.php:591 msgid "Resource limits" msgstr "Ograniczenia zasobów" -#: libraries/messages.inc.php:805 tbl_change.php:1209 +#: libraries/messages.inc.php:801 tbl_change.php:1209 #, php-format msgid "Restart insertion with %s rows" msgstr "Odśwież wstawianie z %s rekordami" -#: libraries/messages.inc.php:807 server_privileges.php:1578 +#: libraries/messages.inc.php:803 server_privileges.php:1578 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Cofnij wszystkie aktywne uprawnienia użytkownikom, a następnie usuń ich." -#: libraries/messages.inc.php:808 server_privileges.php:1176 +#: libraries/messages.inc.php:804 server_privileges.php:1176 #, php-format msgid "You have revoked the privileges for %s" msgstr "Uprawnienia dla %s zostały cofnięte" -#: libraries/messages.inc.php:809 server_privileges.php:1333 +#: libraries/messages.inc.php:805 server_privileges.php:1333 msgid "Revoke" msgstr "Cofnij" -#: libraries/messages.inc.php:810 libraries/mysql_charsets.lib.php:280 +#: libraries/messages.inc.php:806 libraries/mysql_charsets.lib.php:280 msgid "Romanian" msgstr "Rumuński" -#: libraries/messages.inc.php:813 tbl_printview.php:404 tbl_structure.php:786 +#: libraries/messages.inc.php:809 tbl_printview.php:404 tbl_structure.php:786 msgid "Row length" msgstr "Długość rekordu" -#: libraries/messages.inc.php:815 tbl_printview.php:414 tbl_structure.php:794 +#: libraries/messages.inc.php:811 tbl_printview.php:414 tbl_structure.php:794 msgid " Row size " msgstr " Rozmiar rekordu " -#: libraries/messages.inc.php:821 tbl_printview.php:366 tbl_structure.php:726 +#: libraries/messages.inc.php:817 tbl_printview.php:366 tbl_structure.php:726 msgid "Row Statistics" msgstr "Statystyka rekordów" -#: libraries/messages.inc.php:822 +#: libraries/messages.inc.php:818 #, php-format msgid "running on %s" msgstr "uruchomiony na %s" -#: libraries/messages.inc.php:824 libraries/sql_query_form.lib.php:223 +#: libraries/messages.inc.php:820 libraries/sql_query_form.lib.php:223 #, php-format msgid "Run SQL query/queries on server %s" msgstr "Uruchom zapytanie/zapytania SQL na serwerze %s" -#: libraries/messages.inc.php:825 libraries/sql_query_form.lib.php:240 +#: libraries/messages.inc.php:821 libraries/sql_query_form.lib.php:240 #: libraries/sql_query_form.lib.php:265 #, php-format msgid "Run SQL query/queries on database %s" msgstr "Wykonanie zapytania/zapytań SQL do bazy danych %s" -#: libraries/messages.inc.php:826 libraries/mysql_charsets.lib.php:337 +#: libraries/messages.inc.php:822 libraries/mysql_charsets.lib.php:337 msgid "Russian" msgstr "Rosyjski" -#: libraries/messages.inc.php:829 pmd_general.php:68 +#: libraries/messages.inc.php:825 pmd_general.php:68 msgid "Save position" msgstr "Zapamiętaj pozycję" -#: libraries/messages.inc.php:830 libraries/tbl_properties.inc.php:776 +#: libraries/messages.inc.php:826 libraries/tbl_properties.inc.php:776 #: pdf_pages.php:484 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:214 setup/lib/FormDisplay.tpl.php:215 #: tbl_change.php:1126 tbl_indexes.php:248 tbl_relation.php:566 msgid "Save" msgstr "Zachowaj" -#: libraries/messages.inc.php:831 +#: libraries/messages.inc.php:827 msgid "The scale factor is too small to fit the schema on one page" msgstr "" "Współczynnik skali jest za mały, by schemat zmieścił się na jednej stronie" -#: libraries/messages.inc.php:843 main.php:298 +#: libraries/messages.inc.php:839 main.php:298 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "Plik konfiguracyjny wymaga teraz tajnej frazy kodującej (blowfish_secret)." -#: libraries/messages.inc.php:844 navigation.php:353 navigation.php:516 +#: libraries/messages.inc.php:840 navigation.php:353 navigation.php:516 msgid "Please select a database" msgstr "Proszę wybrać bazę danych" -#: libraries/messages.inc.php:846 server_binlog.php:120 +#: libraries/messages.inc.php:842 server_binlog.php:120 msgid "Select binary log to view" msgstr "Wybierz dziennik binarny do podglądu" -#: libraries/messages.inc.php:847 tbl_select.php:270 +#: libraries/messages.inc.php:843 tbl_select.php:270 msgid "Select fields (at least one):" msgstr "Wybór pól (co najmniej jedno):" -#: libraries/messages.inc.php:851 pdf_pages.php:320 +#: libraries/messages.inc.php:847 pdf_pages.php:320 msgid "Select Tables" msgstr "Wybierz tabele" -#: libraries/messages.inc.php:853 server_status.php:404 +#: libraries/messages.inc.php:849 server_status.php:404 msgid "Sent" msgstr "Wysłane" -#: libraries/messages.inc.php:857 libraries/select_server.lib.php:45 +#: libraries/messages.inc.php:853 libraries/select_server.lib.php:45 #: setup/frames/index.inc.php:97 setup/lib/messages.inc.php:115 msgid "Servers" msgstr "Serwery" -#: libraries/messages.inc.php:858 server_status.php:255 +#: libraries/messages.inc.php:854 server_status.php:255 msgid "Delayed inserts" msgstr "Opóźnione dodania" -#: libraries/messages.inc.php:859 server_status.php:46 +#: libraries/messages.inc.php:855 server_status.php:46 msgid "Runtime Information" msgstr "Informacje o działaniu serwera" -#: libraries/messages.inc.php:860 server_status.php:350 +#: libraries/messages.inc.php:856 server_status.php:350 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Serwer MySQL działa przez %s. Początek pracy: %s." -#: libraries/messages.inc.php:861 libraries/server_links.inc.php:53 +#: libraries/messages.inc.php:857 libraries/server_links.inc.php:53 #: server_engines.php:112 server_engines.php:116 server_status.php:304 #: test/theme.php:105 msgid "Variables" msgstr "Zmienne" -#: libraries/messages.inc.php:862 server_status.php:383 +#: libraries/messages.inc.php:858 server_status.php:383 msgid "" "Server traffic: These tables show the network traffic statistics of " "this MySQL server since its startup." @@ -5245,11 +5245,11 @@ msgstr "" "Ruch na serwerze: Poniższe tabele pokazują statystyki ruchu na tym " "serwerze MySQL od rozpoczęcia jego pracy." -#: libraries/messages.inc.php:863 server_variables.php:35 +#: libraries/messages.inc.php:859 server_variables.php:35 msgid "Server variables and settings" msgstr "Zmienne i ustawienia serwera" -#: libraries/messages.inc.php:865 main.php:290 +#: libraries/messages.inc.php:861 main.php:290 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -5257,7 +5257,7 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: libraries/messages.inc.php:866 +#: libraries/messages.inc.php:862 msgid "" "Cannot start session without errors, please check errors given in your PHP " "and/or webserver log file and configure your PHP installation properly." @@ -5265,11 +5265,11 @@ msgstr "" "Nie udało się bezbłędnie utworzyć sesji. Należy sprawdzić błędy w logach PHP " "i serwera WWW, a następnie właściwie skonfigurować instalację PHP." -#: libraries/messages.inc.php:867 server_variables.php:55 +#: libraries/messages.inc.php:863 server_variables.php:55 msgid "Session value" msgstr "Wartość sesji" -#: libraries/messages.inc.php:868 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:864 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 " @@ -5281,45 +5281,45 @@ msgstr "" "\") lub apostrof (\"'\"), należy je poprzedzić odwrotnym ukośnikiem (np.: '\\" "\\xyz' lub 'a\\'b')." -#: libraries/messages.inc.php:876 server_binlog.php:192 server_binlog.php:195 +#: libraries/messages.inc.php:872 server_binlog.php:192 server_binlog.php:195 #: server_processlist.php:49 server_processlist.php:51 msgid "Show Full Queries" msgstr "Pokaż pełne zapytania" -#: libraries/messages.inc.php:878 pmd_general.php:64 +#: libraries/messages.inc.php:874 pmd_general.php:64 msgid "Show/Hide left menu" msgstr "Pokaż/ukryj lewe menu" -#: libraries/messages.inc.php:880 sql.php:513 +#: libraries/messages.inc.php:876 sql.php:513 msgid "Showing as PHP code" msgstr "Wyświetlany jest kod PHP." -#: libraries/messages.inc.php:882 sql.php:516 tbl_replace.php:360 +#: libraries/messages.inc.php:878 sql.php:516 tbl_replace.php:360 msgid "Showing SQL query" msgstr "Wyświetlane jest zapytanie SQL." -#: libraries/messages.inc.php:883 tbl_change.php:1132 +#: libraries/messages.inc.php:879 tbl_change.php:1132 #, fuzzy msgid "Show insert query" msgstr "Wyświetlane jest zapytanie SQL." -#: libraries/messages.inc.php:886 server_status.php:273 +#: libraries/messages.inc.php:882 server_status.php:273 msgid "Show open tables" msgstr "Pokaż otwarte tabele" -#: libraries/messages.inc.php:887 main.php:219 +#: libraries/messages.inc.php:883 main.php:219 msgid "Show PHP information" msgstr "Informacje o PHP" -#: libraries/messages.inc.php:889 server_status.php:278 +#: libraries/messages.inc.php:885 server_status.php:278 msgid "Show slave hosts" msgstr "Pokaż podrzędne hosty" -#: libraries/messages.inc.php:890 server_status.php:284 +#: libraries/messages.inc.php:886 server_status.php:284 msgid "Show slave status" msgstr "Status serwera podrzędnego" -#: libraries/messages.inc.php:891 +#: libraries/messages.inc.php:887 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -5329,13 +5329,13 @@ msgstr "" "binarnego, które przekroczyły wartość binlog_cache_size i do zapisania " "instrukcji transakcji został użyty plik tymczasowy." -#: libraries/messages.inc.php:892 +#: libraries/messages.inc.php:888 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Liczba transakcji, które używały pamięci podręcznej tymczasowego dziennika " "binarnego." -#: libraries/messages.inc.php:893 +#: libraries/messages.inc.php:889 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -5347,11 +5347,11 @@ msgstr "" "zwiększenie wartości tmp_table_size spowoduje tworzenie tymczasowych tabel w " "pamięci, a nie na dysku." -#: libraries/messages.inc.php:894 +#: libraries/messages.inc.php:890 msgid "How many temporary files mysqld has created." msgstr "Ile plików tymczasowych utworzył mysqld." -#: libraries/messages.inc.php:895 +#: libraries/messages.inc.php:891 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -5359,7 +5359,7 @@ msgstr "" "Liczba tabel tymczasowych w pamięci, utworzonych automatycznie przez serwer " "podczas wykonywania instrukcji." -#: libraries/messages.inc.php:896 +#: libraries/messages.inc.php:892 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -5367,7 +5367,7 @@ msgstr "" "Liczba rekordów zapisanych przy pomocy INSERT DELAYED, dla których wystąpił " "jakiś błąd (prawdopodobnie zdublowany klucz)." -#: libraries/messages.inc.php:897 +#: libraries/messages.inc.php:893 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -5375,23 +5375,23 @@ msgstr "" "Liczba użytych wątków obsługujących INSERT DELAYED. Każda osobna tabela, na " "której wykonuje się INSERT DELAYED dostaje własny wątek." -#: libraries/messages.inc.php:898 +#: libraries/messages.inc.php:894 msgid "The number of INSERT DELAYED rows written." msgstr "Liczba rekordów zapisanych poprzez INSERT DELAYED." -#: libraries/messages.inc.php:899 +#: libraries/messages.inc.php:895 msgid "The number of executed FLUSH statements." msgstr "Liczba wykonanych instrukcji FLUSH." -#: libraries/messages.inc.php:900 +#: libraries/messages.inc.php:896 msgid "The number of internal COMMIT statements." msgstr "Liczba wewnętrznych intrukcji COMMIT." -#: libraries/messages.inc.php:901 +#: libraries/messages.inc.php:897 msgid "The number of times a row was deleted from a table." msgstr "Ile razy rekord został usunięty z tabeli." -#: libraries/messages.inc.php:902 +#: libraries/messages.inc.php:898 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -5401,7 +5401,7 @@ msgstr "" "informacje o tabeli o zadanej nazwie. Nazywamy to odkryciem (discovery). Handler_discover wskazuje, ile razy tabela została odkryta." -#: libraries/messages.inc.php:903 +#: libraries/messages.inc.php:899 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -5411,7 +5411,7 @@ msgstr "" "sugeruje, że serwer wykonuje pełnych przeszukań indeksów; na przykład SELECT " "col1 FROM foo, przy założeniu, że col1 jest zindeksowane." -#: libraries/messages.inc.php:904 +#: libraries/messages.inc.php:900 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -5419,7 +5419,7 @@ msgstr "" "Liczba żądań odczytu rekordu na podstawie indeksu. Duża wartość to dobra " "oznaka tego, że zapytania i tabele są właściwie zindeksowane." -#: libraries/messages.inc.php:905 +#: libraries/messages.inc.php:901 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -5429,7 +5429,7 @@ msgstr "" "jest zwiększana przy odpytywaniu o zindeksowaną kolumnę na ograniczonym " "przedziale lub przy przeszukiwaniu indeksu." -#: libraries/messages.inc.php:906 +#: libraries/messages.inc.php:902 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -5437,7 +5437,7 @@ msgstr "" "Liczba żądań odczytu poprzedniego rekordu w porządku indeksowym. Metoda " "używana głównie do optymalizacji ORDER BY … DESC." -#: libraries/messages.inc.php:907 +#: libraries/messages.inc.php:903 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -5449,7 +5449,7 @@ msgstr "" "sortowania rezultatu. Prawdopodobnie wykonano wiele zapytań wymagających " "przeszukania całej tabeli lub złączeń, które nie używają poprawnie indeksów." -#: libraries/messages.inc.php:908 +#: libraries/messages.inc.php:904 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -5461,35 +5461,35 @@ msgstr "" "nie są poprawnie zindeksowane lub że zapytania nie są napisane w sposób " "pozwalający skorzystać z istniejących indeksów." -#: libraries/messages.inc.php:909 +#: libraries/messages.inc.php:905 msgid "The number of internal ROLLBACK statements." msgstr "Liczba wewnętrznych instrukcji ROLLBACK." -#: libraries/messages.inc.php:910 +#: libraries/messages.inc.php:906 msgid "The number of requests to update a row in a table." msgstr "Liczba żądań zmiany rekordu w tabeli." -#: libraries/messages.inc.php:911 +#: libraries/messages.inc.php:907 msgid "The number of requests to insert a row in a table." msgstr "Liczba żądań dodania rekordu do tabeli." -#: libraries/messages.inc.php:912 +#: libraries/messages.inc.php:908 msgid "The number of pages containing data (dirty or clean)." msgstr "Liczba stron zawierających dane (brudnych lub czystych)." -#: libraries/messages.inc.php:913 +#: libraries/messages.inc.php:909 msgid "The number of pages currently dirty." msgstr "Liczba aktualnie brudnych stron." -#: libraries/messages.inc.php:914 +#: libraries/messages.inc.php:910 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Liczba stron w puli bufora, których wymiecienia zażądano." -#: libraries/messages.inc.php:915 +#: libraries/messages.inc.php:911 msgid "The number of free pages." msgstr "Liczba wolnych stron." -#: libraries/messages.inc.php:916 +#: libraries/messages.inc.php:912 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -5499,7 +5499,7 @@ msgstr "" "odczytywane lub zapisywane lub takie, które nie mogą zostać wymiecione lub " "usunięte z jakiegoś innego powodu." -#: libraries/messages.inc.php:917 +#: libraries/messages.inc.php:913 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -5512,11 +5512,11 @@ msgstr "" "Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data." -#: libraries/messages.inc.php:918 +#: libraries/messages.inc.php:914 msgid "Total size of buffer pool, in pages." msgstr "Łączny rozmiar puli bufora, w stronach." -#: libraries/messages.inc.php:919 +#: libraries/messages.inc.php:915 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -5525,7 +5525,7 @@ msgstr "" "Występuje gdy zapytane przeszukiwałoby duże fragmenty tabeli, ale w dowolnej " "kolejności." -#: libraries/messages.inc.php:920 +#: libraries/messages.inc.php:916 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -5533,11 +5533,11 @@ msgstr "" "Liczba sekwencyjnych odczytów z wyprzedzeniem zainicjowanych przez InnoDB. " "Występuje gdy InnoDB wykonuje sekwencyjne pełne przeszukiwanie tabeli." -#: libraries/messages.inc.php:921 +#: libraries/messages.inc.php:917 msgid "The number of logical read requests InnoDB has done." msgstr "Liczba żądań logicznych odczytów które wykonał InnoDB." -#: libraries/messages.inc.php:922 +#: libraries/messages.inc.php:918 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -5545,7 +5545,7 @@ msgstr "" "Liczba logicznych odczytów, których InnoDB nie mógł zaspokoić pulą bufora i " "musiał wykonać odczyt pojedynczej strony." -#: libraries/messages.inc.php:923 +#: libraries/messages.inc.php:919 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -5559,51 +5559,51 @@ msgstr "" "wskazuje liczbę wystąpień takich oczekiwań. Jeżeli rozmiar puli bufora był " "ustawiony właściwie, wartość ta powinna być mała." -#: libraries/messages.inc.php:924 +#: libraries/messages.inc.php:920 msgid "The number writes done to the InnoDB buffer pool." msgstr "Liczba wykonanych zapisów do puli bufora InnoDB." -#: libraries/messages.inc.php:925 +#: libraries/messages.inc.php:921 msgid "The number of fsync() operations so far." msgstr "Liczba dotąd wykonanych operacji fsync()." -#: libraries/messages.inc.php:926 +#: libraries/messages.inc.php:922 msgid "The current number of pending fsync() operations." msgstr "Aktualna liczba operacji fsync() w toku." -#: libraries/messages.inc.php:927 +#: libraries/messages.inc.php:923 msgid "The current number of pending reads." msgstr "Aktualna liczba odczytów w toku." -#: libraries/messages.inc.php:928 +#: libraries/messages.inc.php:924 msgid "The current number of pending writes." msgstr "Aktualna liczba zapisów w toku." -#: libraries/messages.inc.php:929 +#: libraries/messages.inc.php:925 msgid "The amount of data read so far, in bytes." msgstr "Ilość dotąd odczytanych danych, w bajtach." -#: libraries/messages.inc.php:930 +#: libraries/messages.inc.php:926 msgid "The total number of data reads." msgstr "Łączna liczba odczytów danych." -#: libraries/messages.inc.php:931 +#: libraries/messages.inc.php:927 msgid "The total number of data writes." msgstr "Łączna liczba zapisów danych." -#: libraries/messages.inc.php:932 +#: libraries/messages.inc.php:928 msgid "The amount of data written so far, in bytes." msgstr "Ilość dotąd zapisanych danych, w bajtach." -#: libraries/messages.inc.php:933 +#: libraries/messages.inc.php:929 msgid "The number of pages that have been written for doublewrite operations." msgstr "Liczba przeprowadzonych zapisów typu doublewrite." -#: libraries/messages.inc.php:934 +#: libraries/messages.inc.php:930 msgid "The number of doublewrite operations that have been performed." msgstr "Liczba stron zapisanych przy zapisie typu doublewrite." -#: libraries/messages.inc.php:935 +#: libraries/messages.inc.php:931 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -5611,35 +5611,35 @@ msgstr "" "Ile razy czekano, bo bufor dziennika był zbyt mały i przed wznowieniem pracy " "oczekiwano na jego opróżnienie." -#: libraries/messages.inc.php:936 +#: libraries/messages.inc.php:932 msgid "The number of log write requests." msgstr "Liczba żądań zapisów do dziennika." -#: libraries/messages.inc.php:937 +#: libraries/messages.inc.php:933 msgid "The number of physical writes to the log file." msgstr "Liczba fizycznych zapisów do pliku dziennika." -#: libraries/messages.inc.php:938 +#: libraries/messages.inc.php:934 msgid "The number of fsync() writes done to the log file." msgstr "Liczba synchronicznych zapisów do pliku dziennika." -#: libraries/messages.inc.php:939 +#: libraries/messages.inc.php:935 msgid "The number of pending log file fsyncs." msgstr "Liczba wywołań fsync dla pliku dziennika w toku." -#: libraries/messages.inc.php:940 +#: libraries/messages.inc.php:936 msgid "Pending log file writes." msgstr "Liczba zapisów do pliku dziennika w toku." -#: libraries/messages.inc.php:941 +#: libraries/messages.inc.php:937 msgid "The number of bytes written to the log file." msgstr "Liczba bajtów zapisanych do pliku dziennika." -#: libraries/messages.inc.php:942 +#: libraries/messages.inc.php:938 msgid "The number of pages created." msgstr "Liczba utworzonych stron." -#: libraries/messages.inc.php:943 +#: libraries/messages.inc.php:939 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -5648,51 +5648,51 @@ msgstr "" "mierzonych w stronach; znajomość wielkości strony pozwala na ich łatwą " "konwersję na bajty." -#: libraries/messages.inc.php:944 +#: libraries/messages.inc.php:940 msgid "The number of pages read." msgstr "Liczba odczytanych stron." -#: libraries/messages.inc.php:945 +#: libraries/messages.inc.php:941 msgid "The number of pages written." msgstr "Liczba zapisanych stron." -#: libraries/messages.inc.php:946 +#: libraries/messages.inc.php:942 msgid "The number of row locks currently being waited for." msgstr "Liczba blokad rekordów na które aktualnie się czeka." -#: libraries/messages.inc.php:947 +#: libraries/messages.inc.php:943 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Średni czas uzyskania blokady rekordu, w milisekundach." -#: libraries/messages.inc.php:948 +#: libraries/messages.inc.php:944 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Całkowity czas zużyty na uzyskiwanie blokad rekordów, w milisekundach." -#: libraries/messages.inc.php:949 +#: libraries/messages.inc.php:945 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Maksymalny czas uzyskania blokady rekordu, w milisekundach." -#: libraries/messages.inc.php:950 +#: libraries/messages.inc.php:946 msgid "The number of times a row lock had to be waited for." msgstr "Ile razy czekano na blokadę rekordu." -#: libraries/messages.inc.php:951 +#: libraries/messages.inc.php:947 msgid "The number of rows deleted from InnoDB tables." msgstr "Liczba rekordów usuniętych z tabel InnoDB." -#: libraries/messages.inc.php:952 +#: libraries/messages.inc.php:948 msgid "The number of rows inserted in InnoDB tables." msgstr "Liczba rekordów dodanych do tabel InnoDB." -#: libraries/messages.inc.php:953 +#: libraries/messages.inc.php:949 msgid "The number of rows read from InnoDB tables." msgstr "Liczba rekordów odczytanych z tabel InnoDB." -#: libraries/messages.inc.php:954 +#: libraries/messages.inc.php:950 msgid "The number of rows updated in InnoDB tables." msgstr "Liczba rekordów zmienionych w tabelach InnoDB." -#: libraries/messages.inc.php:955 +#: libraries/messages.inc.php:951 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -5701,7 +5701,7 @@ msgstr "" "jeszcze nie wymiecione na dysk. Wcześniej zmienna miała nazwę " "Not_flushed_key_blocks." -#: libraries/messages.inc.php:956 +#: libraries/messages.inc.php:952 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -5709,7 +5709,7 @@ msgstr "" "Liczba nieużywanych bloków w buforze podręcznym indeksów. Można użyć tej " "wartości do określenia jaka część bufora indeksów jest w użyciu." -#: libraries/messages.inc.php:957 +#: libraries/messages.inc.php:953 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -5718,11 +5718,11 @@ msgstr "" "Liczba użytych bloków w buforze podręcznym indeksów. Ta wartość to próg, " "który wskazuje maksymalną liczbę kiedykolwiek jednocześnie użytych bloków." -#: libraries/messages.inc.php:958 +#: libraries/messages.inc.php:954 msgid "The number of requests to read a key block from the cache." msgstr "Liczba żądań odczytu bloku z bufora podręcznego indeksów." -#: libraries/messages.inc.php:959 +#: libraries/messages.inc.php:955 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -5733,15 +5733,15 @@ msgstr "" "Współczynnik chybień bufora podręcznego można policzyć ze wzoru Key_reads/" "Key_read_requests." -#: libraries/messages.inc.php:960 +#: libraries/messages.inc.php:956 msgid "The number of requests to write a key block to the cache." msgstr "Liczba żądań zapisów bloków indeksów to bufora podręcznego." -#: libraries/messages.inc.php:961 +#: libraries/messages.inc.php:957 msgid "The number of physical writes of a key block to disk." msgstr "Liczba fizycznych zapisów bloków indeksów na dysk." -#: libraries/messages.inc.php:962 +#: libraries/messages.inc.php:958 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -5752,11 +5752,11 @@ msgstr "" "wykonania tego samego zapytania. Domyślna wartość 0 oznacza, że jeszcze " "żadne zapytanie nie zostało skompilowane." -#: libraries/messages.inc.php:963 +#: libraries/messages.inc.php:959 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Liczba rekordów oczekujących na zapisanie w kolejkach INSERT DELAYED." -#: libraries/messages.inc.php:964 +#: libraries/messages.inc.php:960 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -5764,36 +5764,36 @@ msgstr "" "Liczba kiedykolwiek otwartych tabel. Jeśli ta wartość jest duża, " "prawdopodobnie wielkość pamięci podręcznej tabel jest zbyt mała." -#: libraries/messages.inc.php:965 +#: libraries/messages.inc.php:961 msgid "The number of files that are open." msgstr "Liczba otwartych plików." -#: libraries/messages.inc.php:966 +#: libraries/messages.inc.php:962 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Liczba otwartych strumieni (używanych głownie do rejestracji w dzienniku)." -#: libraries/messages.inc.php:967 +#: libraries/messages.inc.php:963 msgid "The number of tables that are open." msgstr "Liczba otwartych tabel." -#: libraries/messages.inc.php:968 +#: libraries/messages.inc.php:964 msgid "The number of free memory blocks in query cache." msgstr "Liczba wolnych bloków pamięci w podręcznym buforze zapytań." -#: libraries/messages.inc.php:969 +#: libraries/messages.inc.php:965 msgid "The amount of free memory for query cache." msgstr "Ilość dostępnej pamięci w podręcznym buforze zapytań." -#: libraries/messages.inc.php:970 +#: libraries/messages.inc.php:966 msgid "The number of cache hits." msgstr "Liczba trafień pamięci podręcznej." -#: libraries/messages.inc.php:971 +#: libraries/messages.inc.php:967 msgid "The number of queries added to the cache." msgstr "Liczba zapytań dodanych do pamięci podręcznej." -#: libraries/messages.inc.php:972 +#: libraries/messages.inc.php:968 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -5806,7 +5806,7 @@ msgstr "" "bufora podręcznego używana jest strategia \"najpierw najdłużej nieużywany" "\" (least recently used - LRU)." -#: libraries/messages.inc.php:973 +#: libraries/messages.inc.php:969 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -5814,24 +5814,24 @@ msgstr "" "Liczba niezbuforowanych zapytań (nie dających się zbuforować lub " "niezbuforowanych z powodu ustawienia query_cache_type)." -#: libraries/messages.inc.php:974 +#: libraries/messages.inc.php:970 msgid "The number of queries registered in the cache." msgstr "Liczba zapytań zarejestrowanych w buforze podręcznym." -#: libraries/messages.inc.php:975 +#: libraries/messages.inc.php:971 msgid "The total number of blocks in the query cache." msgstr "Całkowita liczba bloków w buforze podręcznym zapytań." -#: libraries/messages.inc.php:976 +#: libraries/messages.inc.php:972 msgctxt "$strShowStatusReset" msgid "Reset" msgstr "Zresetuj" -#: libraries/messages.inc.php:977 +#: libraries/messages.inc.php:973 msgid "The status of failsafe replication (not yet implemented)." msgstr "Stan replikacji zabezpieczającej (jeszcze nie zaimplementowane)." -#: libraries/messages.inc.php:978 +#: libraries/messages.inc.php:974 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -5839,13 +5839,13 @@ msgstr "" "Liczba złączeń nie używających indeksów. Wartość różna od 0 sugeruje " "staranne przyjrzenie się indeksom tabel." -#: libraries/messages.inc.php:979 +#: libraries/messages.inc.php:975 msgid "The number of joins that used a range search on a reference table." msgstr "" "Liczba złączeń w których użyto wyszukiwania zakresowego na pierwszej " "złączanej tabeli." -#: libraries/messages.inc.php:980 +#: libraries/messages.inc.php:976 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -5854,7 +5854,7 @@ msgstr "" "dla każdego rekordu. (Wartość różna od 0 sugeruje staranne przyjrzenie się " "indeksom tabel.)" -#: libraries/messages.inc.php:981 +#: libraries/messages.inc.php:977 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -5862,16 +5862,16 @@ msgstr "" "Liczba złączeń w których użyto zakresów w stosunku do pierwszej tabeli. " "(Nawet duża wartość nie ma kluczowego znaczenia.)" -#: libraries/messages.inc.php:982 +#: libraries/messages.inc.php:978 msgid "The number of joins that did a full scan of the first table." msgstr "Liczba złączeń, które przeszukały w pełni pierwszą tabelę." -#: libraries/messages.inc.php:983 +#: libraries/messages.inc.php:979 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "Liczba tymczasowych tabel aktualnie otwartych przez podrzędny wątek SQL." -#: libraries/messages.inc.php:984 +#: libraries/messages.inc.php:980 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -5879,26 +5879,26 @@ msgstr "" "Ile raz łącznie (od startu) podrzędny wątek SQL replikacji ponawiał " "transakcje." -#: libraries/messages.inc.php:985 +#: libraries/messages.inc.php:981 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "ON oznacza, że ten serwer jest podrzędny i jest podłączony go serwera " "głównego." -#: libraries/messages.inc.php:986 +#: libraries/messages.inc.php:982 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" "Liczba wątków, których utworzenie trwało dłużej niż slow_launch_time sekund." -#: libraries/messages.inc.php:987 +#: libraries/messages.inc.php:983 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "Liczba zapytań, których wykonanie zajęło więcej niż long_query_time sekund." -#: libraries/messages.inc.php:988 +#: libraries/messages.inc.php:984 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -5908,23 +5908,23 @@ msgstr "" "dużej wartości, warto wziąć pod uwagę zwiększenie wartości zmiennej " "systemowej sort_buffer_size." -#: libraries/messages.inc.php:989 +#: libraries/messages.inc.php:985 msgid "The number of sorts that were done with ranges." msgstr "Liczba sortowań wykonanych przy użyciu zakresów." -#: libraries/messages.inc.php:990 +#: libraries/messages.inc.php:986 msgid "The number of sorted rows." msgstr "Liczba posortowanych rekordów." -#: libraries/messages.inc.php:991 +#: libraries/messages.inc.php:987 msgid "The number of sorts that were done by scanning the table." msgstr "Liczba sortowań wykonanych poprzez przeszukiwanie tabeli." -#: libraries/messages.inc.php:992 +#: libraries/messages.inc.php:988 msgid "The number of times that a table lock was acquired immediately." msgstr "Ile razy blokada tabeli została uzyskana natychmiastowo." -#: libraries/messages.inc.php:993 +#: libraries/messages.inc.php:989 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -5936,7 +5936,7 @@ msgstr "" "się najpierw zoptymalizować zapytania, a następnie podzielić tabelę (tabele) " "lub użyć replikacji." -#: libraries/messages.inc.php:994 +#: libraries/messages.inc.php:990 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -5946,11 +5946,11 @@ msgstr "" "może być wyliczony ze wzoru Threads_created/Connections. Kolor czerwony " "oznacza, że powinno się zwiększyć thread_cache_size." -#: libraries/messages.inc.php:995 +#: libraries/messages.inc.php:991 msgid "The number of currently open connections." msgstr "Liczba aktualnie otwartych połączeń." -#: libraries/messages.inc.php:996 +#: libraries/messages.inc.php:992 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -5962,74 +5962,74 @@ msgstr "" "(W przypadku dobrej implementacja wątków zwykle nie daje to zauważalnego " "polepszenia wydajności.)" -#: libraries/messages.inc.php:997 +#: libraries/messages.inc.php:993 msgid "The number of threads that are not sleeping." msgstr "Liczba nieuśpionych wątków." -#: libraries/messages.inc.php:999 tbl_printview.php:75 +#: libraries/messages.inc.php:995 tbl_printview.php:75 msgid "Show tables" msgstr "Pokaż tabele" -#: libraries/messages.inc.php:1000 libraries/sql_query_form.lib.php:396 +#: libraries/messages.inc.php:996 libraries/sql_query_form.lib.php:396 msgid " Show this query here again " msgstr " Wywołaj ponownie zapytanie " -#: libraries/messages.inc.php:1001 libraries/mysql_charsets.lib.php:217 +#: libraries/messages.inc.php:997 libraries/mysql_charsets.lib.php:217 #: libraries/mysql_charsets.lib.php:342 msgid "Simplified Chinese" msgstr "Chiński uproszczony" -#: libraries/messages.inc.php:1002 tbl_operations.php:258 +#: libraries/messages.inc.php:998 tbl_operations.php:258 msgid "(singly)" msgstr "(pojedynczo)" -#: libraries/messages.inc.php:1005 libraries/replication_gui.lib.php:52 +#: libraries/messages.inc.php:1001 libraries/replication_gui.lib.php:52 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" msgstr "" -#: libraries/messages.inc.php:1006 libraries/mysql_charsets.lib.php:283 +#: libraries/messages.inc.php:1002 libraries/mysql_charsets.lib.php:283 msgid "Slovak" msgstr "Słowacki" -#: libraries/messages.inc.php:1007 libraries/mysql_charsets.lib.php:286 +#: libraries/messages.inc.php:1003 libraries/mysql_charsets.lib.php:286 msgid "Slovenian" msgstr "Słoweński" -#: libraries/messages.inc.php:1008 pmd_general.php:95 +#: libraries/messages.inc.php:1004 pmd_general.php:95 msgid "Small/Big All" msgstr "Wszystko małe/duże" -#: libraries/messages.inc.php:1009 pmd_general.php:91 +#: libraries/messages.inc.php:1005 pmd_general.php:91 msgid "Snap to grid" msgstr "Przyciągaj do siatki" -#: libraries/messages.inc.php:1011 server_synchronize.php:1167 +#: libraries/messages.inc.php:1007 server_synchronize.php:1167 msgid "Socket" msgstr "" -#: libraries/messages.inc.php:1013 server_status.php:259 +#: libraries/messages.inc.php:1009 server_status.php:259 msgid "Sorting" msgstr "Sortowanie" -#: libraries/messages.inc.php:1015 tbl_printview.php:310 tbl_structure.php:657 +#: libraries/messages.inc.php:1011 tbl_printview.php:310 tbl_structure.php:657 msgid "Space usage" msgstr "Wykorzystanie przestrzeni" -#: libraries/messages.inc.php:1016 libraries/mysql_charsets.lib.php:289 +#: libraries/messages.inc.php:1012 libraries/mysql_charsets.lib.php:289 msgid "Spanish" msgstr "Hiszpański" -#: libraries/messages.inc.php:1019 +#: libraries/messages.inc.php:1015 msgid "Export type" msgstr "Rodzaj eksportu" -#: libraries/messages.inc.php:1020 +#: libraries/messages.inc.php:1016 msgid "Export time in UTC" msgstr "" -#: libraries/messages.inc.php:1021 libraries/sqlparser.lib.php:173 +#: libraries/messages.inc.php:1017 libraries/sqlparser.lib.php:173 msgid "" "There is a chance that you may have found a bug in the SQL parser. Please " "examine your query closely, and check that the quotes are correct and not " @@ -6052,7 +6052,7 @@ msgstr "" "pojedynczego, które powoduje problemy i zgłoś błąd, dołączając fragment " "danych zawarty w poniższej sekcji TNIJ:" -#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:137 +#: libraries/messages.inc.php:1018 libraries/sqlparser.lib.php:137 msgid "" "There seems to be an error in your SQL query. The MySQL server error output " "below, if there is any, may also help you in diagnosing the problem" @@ -6061,33 +6061,33 @@ msgstr "" "problemu może pomóc także - jeśli się pojawi - poniższy opis błędu serwera " "MySQL." -#: libraries/messages.inc.php:1026 libraries/sqlparser.lib.php:495 +#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:495 msgid "Invalid Identifer" msgstr "Nieprawidłowy identyfikator" -#: libraries/messages.inc.php:1027 libraries/sqlparser.lib.php:344 +#: libraries/messages.inc.php:1023 libraries/sqlparser.lib.php:344 msgid "Unclosed quote" msgstr "Niezamknięty cudzysłów" -#: libraries/messages.inc.php:1028 libraries/sqlparser.lib.php:612 +#: libraries/messages.inc.php:1024 libraries/sqlparser.lib.php:612 msgid "Unknown Punctuation String" msgstr "Nieznany znak przestankowy" -#: libraries/messages.inc.php:1030 server_replication.php:327 +#: libraries/messages.inc.php:1026 server_replication.php:327 #: server_replication.php:328 #, fuzzy msgid "Start" msgstr "Strona startowa" -#: libraries/messages.inc.php:1033 tbl_printview.php:369 tbl_structure.php:729 +#: libraries/messages.inc.php:1029 tbl_printview.php:369 tbl_structure.php:729 msgid "Statements" msgstr "Cecha" -#: libraries/messages.inc.php:1034 tbl_printview.php:380 tbl_structure.php:741 +#: libraries/messages.inc.php:1030 tbl_printview.php:380 tbl_structure.php:741 msgid "static" msgstr "" -#: libraries/messages.inc.php:1035 server_status.php:388 +#: libraries/messages.inc.php:1031 server_status.php:388 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -6095,43 +6095,43 @@ msgstr "" "Na aktywnym serwerze liczniki bajtów mogą się przekręcić, więc statystyki " "jakich dostarcza serwer MySQL nie są wiarygodne." -#: libraries/messages.inc.php:1038 server_replication.php:327 +#: libraries/messages.inc.php:1034 server_replication.php:327 #: server_replication.php:328 msgid "Stop" msgstr "" -#: libraries/messages.inc.php:1039 server_engines.php:49 +#: libraries/messages.inc.php:1035 server_engines.php:49 msgid "Storage Engines" msgstr "Mechanizmy składowania" -#: libraries/messages.inc.php:1040 libraries/tbl_properties.inc.php:726 +#: libraries/messages.inc.php:1036 libraries/tbl_properties.inc.php:726 #: server_engines.php:58 tbl_operations.php:353 msgid "Storage Engine" msgstr "Mechanizm składowania" -#: libraries/messages.inc.php:1042 +#: libraries/messages.inc.php:1038 msgid "CSV for MS Excel" msgstr "CSV dla MS Excel" -#: libraries/messages.inc.php:1044 tbl_structure.php:516 tbl_structure.php:518 +#: libraries/messages.inc.php:1040 tbl_structure.php:516 tbl_structure.php:518 msgid "Propose table structure" msgstr "Analiza zawartości" -#: libraries/messages.inc.php:1045 server_synchronize.php:424 +#: libraries/messages.inc.php:1041 server_synchronize.php:424 #: server_synchronize.php:867 #, fuzzy msgid "Structure Difference" msgstr "Tylko struktura" -#: libraries/messages.inc.php:1049 server_synchronize.php:265 +#: libraries/messages.inc.php:1045 server_synchronize.php:265 msgid "Structure Synchronization" msgstr "" -#: libraries/messages.inc.php:1050 libraries/sql_query_form.lib.php:462 +#: libraries/messages.inc.php:1046 libraries/sql_query_form.lib.php:462 msgid "Submit" msgstr "Wyślij" -#: libraries/messages.inc.php:1052 main.php:358 +#: libraries/messages.inc.php:1048 main.php:358 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -6140,160 +6140,160 @@ msgstr "" "Serwer działa pod ochroną Suhosina. Możliwe problemy opisuje %sdokumentacja%" "s." -#: libraries/messages.inc.php:1054 libraries/mysql_charsets.lib.php:295 +#: libraries/messages.inc.php:1050 libraries/mysql_charsets.lib.php:295 #: libraries/mysql_charsets.lib.php:392 msgid "Swedish" msgstr "Szwedzki" -#: libraries/messages.inc.php:1060 tbl_operations.php:556 +#: libraries/messages.inc.php:1056 tbl_operations.php:556 msgid "Switch to copied table" msgstr "Przełącz na skopiowaną tabelę" -#: libraries/messages.inc.php:1061 server_synchronize.php:1213 +#: libraries/messages.inc.php:1057 server_synchronize.php:1213 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." msgstr "" -#: libraries/messages.inc.php:1062 server_synchronize.php:451 +#: libraries/messages.inc.php:1058 server_synchronize.php:451 #: server_synchronize.php:896 msgid "Synchronize Databases" msgstr "" -#: libraries/messages.inc.php:1063 libraries/server_links.inc.php:92 +#: libraries/messages.inc.php:1059 libraries/server_links.inc.php:92 #: server_synchronize.php:1092 server_synchronize.php:1100 msgid "Synchronize" msgstr "" -#: libraries/messages.inc.php:1065 server_synchronize.php:430 +#: libraries/messages.inc.php:1061 server_synchronize.php:430 #: server_synchronize.php:873 msgid "Add column(s)" msgstr "" -#: libraries/messages.inc.php:1066 tbl_create.php:62 +#: libraries/messages.inc.php:1062 tbl_create.php:62 #, php-format msgid "Table %s already exists!" msgstr "Tabela %s już istnieje!" -#: libraries/messages.inc.php:1067 server_synchronize.php:432 +#: libraries/messages.inc.php:1063 server_synchronize.php:432 #: server_synchronize.php:875 msgid "Alter column(s)" msgstr "" -#: libraries/messages.inc.php:1068 tbl_addfield.php:189 tbl_alter.php:103 +#: libraries/messages.inc.php:1064 tbl_addfield.php:189 tbl_alter.php:103 #: tbl_indexes.php:98 #, php-format msgid "Table %1$s has been altered successfully" msgstr "Tabela %1$s została pomyślnie zmodyfikowana" -#: libraries/messages.inc.php:1069 server_synchronize.php:434 +#: libraries/messages.inc.php:1065 server_synchronize.php:434 #: server_synchronize.php:877 msgid "Apply index(s)" msgstr "" -#: libraries/messages.inc.php:1071 server_synchronize.php:446 +#: libraries/messages.inc.php:1067 server_synchronize.php:446 #: server_synchronize.php:890 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: libraries/messages.inc.php:1072 tbl_move_copy.php:82 +#: libraries/messages.inc.php:1068 tbl_move_copy.php:82 msgid "The table name is empty!" msgstr "Brak nazwy tabeli!" -#: libraries/messages.inc.php:1073 tbl_create.php:249 +#: libraries/messages.inc.php:1069 tbl_create.php:249 #, php-format msgid "Table %1$s has been created." msgstr "Tabela %1$s została utworzona." -#: libraries/messages.inc.php:1076 tbl_operations.php:628 +#: libraries/messages.inc.php:1072 tbl_operations.php:628 #, php-format msgid "Table %s has been flushed" msgstr "Tabela %s została przeładowana" -#: libraries/messages.inc.php:1077 server_synchronize.php:436 +#: libraries/messages.inc.php:1073 server_synchronize.php:436 #: server_synchronize.php:879 msgid "Insert row(s)" msgstr "" -#: libraries/messages.inc.php:1078 libraries/tbl_links.inc.php:107 +#: libraries/messages.inc.php:1074 libraries/tbl_links.inc.php:107 #: libraries/tbl_links.inc.php:140 libraries/tbl_links.inc.php:141 msgid "Table seems to be empty!" msgstr "Tabela wydaje się pusta!" -#: libraries/messages.inc.php:1079 tbl_operations.php:568 +#: libraries/messages.inc.php:1075 tbl_operations.php:568 msgid "Table maintenance" msgstr "Zarządzanie tabelą" -#: libraries/messages.inc.php:1080 libraries/tbl_properties.inc.php:618 +#: libraries/messages.inc.php:1076 libraries/tbl_properties.inc.php:618 #: server_synchronize.php:428 server_synchronize.php:871 msgid "Table name" msgstr "Nazwa tabeli" -#: libraries/messages.inc.php:1081 pdf_schema.php:1116 +#: libraries/messages.inc.php:1077 pdf_schema.php:1116 msgid "Table of contents" msgstr "Spis treści" -#: libraries/messages.inc.php:1082 tbl_operations.php:334 +#: libraries/messages.inc.php:1078 tbl_operations.php:334 msgid "Table options" msgstr "Opcje tabeli" -#: libraries/messages.inc.php:1083 server_synchronize.php:431 +#: libraries/messages.inc.php:1079 server_synchronize.php:431 #: server_synchronize.php:874 msgid "Remove column(s)" msgstr "" -#: libraries/messages.inc.php:1084 server_synchronize.php:433 +#: libraries/messages.inc.php:1080 server_synchronize.php:433 #: server_synchronize.php:876 msgid "Remove index(s)" msgstr "" -#: libraries/messages.inc.php:1088 server_synchronize.php:435 +#: libraries/messages.inc.php:1084 server_synchronize.php:435 #: server_synchronize.php:878 msgid "Update row(s)" msgstr "" -#: libraries/messages.inc.php:1090 server_synchronize.php:942 +#: libraries/messages.inc.php:1086 server_synchronize.php:942 msgid "Target database has been synchronized with source database" msgstr "" -#: libraries/messages.inc.php:1091 server_privileges.php:392 +#: libraries/messages.inc.php:1087 server_privileges.php:392 #: server_privileges.php:527 server_privileges.php:1679 #: server_privileges.php:1685 msgid "Table-specific privileges" msgstr "Uprawnienia specyficzne dla tabel" -#: libraries/messages.inc.php:1092 server_status.php:254 +#: libraries/messages.inc.php:1088 server_status.php:254 msgid "Temporary data" msgstr "Dane tymczasowe" -#: libraries/messages.inc.php:1093 tbl_change.php:728 +#: libraries/messages.inc.php:1089 tbl_change.php:728 msgid " Because of its length,
this field might not be editable " msgstr " To pole może nie dać się edytować
z powodu swojej długości " -#: libraries/messages.inc.php:1094 +#: libraries/messages.inc.php:1090 msgid "Texy! text" msgstr "Tekst Texy!" -#: libraries/messages.inc.php:1095 libraries/mysql_charsets.lib.php:298 +#: libraries/messages.inc.php:1091 libraries/mysql_charsets.lib.php:298 #: libraries/mysql_charsets.lib.php:395 msgid "Thai" msgstr "Tajski" -#: libraries/messages.inc.php:1102 libraries/replication_gui.lib.php:308 +#: libraries/messages.inc.php:1098 libraries/replication_gui.lib.php:308 #: server_privileges.php:734 msgid "This Host" msgstr "Ten host" -#: libraries/messages.inc.php:1103 server_status.php:252 +#: libraries/messages.inc.php:1099 server_status.php:252 msgid "Threads" msgstr "Wątki" -#: libraries/messages.inc.php:1104 server_processlist.php:22 +#: libraries/messages.inc.php:1100 server_processlist.php:22 #, php-format msgid "Thread %s was successfully killed." msgstr "Wątek %s został pomyślnie unicestwiony." -#: libraries/messages.inc.php:1106 +#: libraries/messages.inc.php:1102 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -6302,185 +6302,185 @@ msgstr "" "dane, co zwykle oznacza, że phpMyAdmin nie będzie w stanie ukończyć tego " "importu bez zwiększenia limitów czasowych PHP." -#: libraries/messages.inc.php:1109 pmd_pdf.php:94 +#: libraries/messages.inc.php:1105 pmd_pdf.php:94 msgid "to/from page" msgstr "od/do strony" -#: libraries/messages.inc.php:1110 pdf_pages.php:343 +#: libraries/messages.inc.php:1106 pdf_pages.php:343 msgid "Toggle scratchboard" msgstr "włącz / wyłącz scratchboard" -#: libraries/messages.inc.php:1111 pmd_general.php:99 +#: libraries/messages.inc.php:1107 pmd_general.php:99 msgid "Toggle small/big" msgstr "Przełącz małe/duże" -#: libraries/messages.inc.php:1112 pmd_help.php:27 +#: libraries/messages.inc.php:1108 pmd_help.php:27 msgid "To select relation, click :" msgstr "Aby wybrać powiązanie, kliknij :" -#: libraries/messages.inc.php:1115 libraries/tbl_links.inc.php:149 +#: libraries/messages.inc.php:1111 libraries/tbl_links.inc.php:149 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" -#: libraries/messages.inc.php:1116 tbl_tracking.php:655 +#: libraries/messages.inc.php:1112 tbl_tracking.php:655 msgid "Activate now" msgstr "" -#: libraries/messages.inc.php:1117 tbl_tracking.php:653 +#: libraries/messages.inc.php:1113 tbl_tracking.php:653 #, php-format msgid "Activate tracking for %s.%s" msgstr "" -#: libraries/messages.inc.php:1118 tbl_tracking.php:221 +#: libraries/messages.inc.php:1114 tbl_tracking.php:221 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/messages.inc.php:1119 tbl_tracking.php:688 +#: libraries/messages.inc.php:1115 tbl_tracking.php:688 #, fuzzy msgid "Create version" msgstr "Utwórz związek" -#: libraries/messages.inc.php:1120 tbl_tracking.php:668 +#: libraries/messages.inc.php:1116 tbl_tracking.php:668 #, php-format msgid "Create version %s of %s.%s" msgstr "" -#: libraries/messages.inc.php:1122 tbl_tracking.php:412 +#: libraries/messages.inc.php:1118 tbl_tracking.php:412 msgid "Data definition statement" msgstr "" -#: libraries/messages.inc.php:1123 tbl_tracking.php:463 +#: libraries/messages.inc.php:1119 tbl_tracking.php:463 msgid "Data manipulation statement" msgstr "" -#: libraries/messages.inc.php:1124 tbl_tracking.php:410 tbl_tracking.php:461 +#: libraries/messages.inc.php:1120 tbl_tracking.php:410 tbl_tracking.php:461 #, fuzzy msgid "Date" msgstr "Dane" -#: libraries/messages.inc.php:1125 tbl_tracking.php:642 +#: libraries/messages.inc.php:1121 tbl_tracking.php:642 msgid "Deactivate now" msgstr "" -#: libraries/messages.inc.php:1126 tbl_tracking.php:640 +#: libraries/messages.inc.php:1122 tbl_tracking.php:640 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "" -#: libraries/messages.inc.php:1127 tbl_tracking.php:521 +#: libraries/messages.inc.php:1123 tbl_tracking.php:521 #, fuzzy, php-format msgid "Export as %s" msgstr "Domyślne opcje eksportu" -#: libraries/messages.inc.php:1130 tbl_tracking.php:251 tbl_tracking.php:379 +#: libraries/messages.inc.php:1126 tbl_tracking.php:251 tbl_tracking.php:379 msgid "Close" msgstr "" -#: libraries/messages.inc.php:1131 tbl_tracking.php:114 +#: libraries/messages.inc.php:1127 tbl_tracking.php:114 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/messages.inc.php:1133 tbl_tracking.php:397 tbl_tracking.php:504 +#: libraries/messages.inc.php:1129 tbl_tracking.php:397 tbl_tracking.php:504 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "" -#: libraries/messages.inc.php:1134 tbl_tracking.php:561 +#: libraries/messages.inc.php:1130 tbl_tracking.php:561 msgid "Show versions" msgstr "" -#: libraries/messages.inc.php:1135 tbl_tracking.php:507 +#: libraries/messages.inc.php:1131 tbl_tracking.php:507 msgid "SQL dump (file download)" msgstr "" -#: libraries/messages.inc.php:1136 tbl_tracking.php:508 +#: libraries/messages.inc.php:1132 tbl_tracking.php:508 msgid "SQL dump" msgstr "" -#: libraries/messages.inc.php:1137 tbl_tracking.php:213 +#: libraries/messages.inc.php:1133 tbl_tracking.php:213 msgid "SQL statements executed." msgstr "" -#: libraries/messages.inc.php:1138 +#: libraries/messages.inc.php:1134 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/messages.inc.php:1139 tbl_tracking.php:509 +#: libraries/messages.inc.php:1135 tbl_tracking.php:509 msgid "SQL execution" msgstr "" -#: libraries/messages.inc.php:1140 tbl_tracking.php:230 +#: libraries/messages.inc.php:1136 tbl_tracking.php:230 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/messages.inc.php:1141 tbl_tracking.php:381 +#: libraries/messages.inc.php:1137 tbl_tracking.php:381 msgid "Tracking statements" msgstr "" -#: libraries/messages.inc.php:1148 tbl_tracking.php:593 +#: libraries/messages.inc.php:1144 tbl_tracking.php:593 #, fuzzy msgid "Version" msgstr "Perski" -#: libraries/messages.inc.php:1149 tbl_tracking.php:672 +#: libraries/messages.inc.php:1145 tbl_tracking.php:672 msgid "Track these data definition statements:" msgstr "" -#: libraries/messages.inc.php:1150 tbl_tracking.php:680 +#: libraries/messages.inc.php:1146 tbl_tracking.php:680 msgid "Track these data manipulation statements:" msgstr "" -#: libraries/messages.inc.php:1155 tbl_tracking.php:411 tbl_tracking.php:462 +#: libraries/messages.inc.php:1151 tbl_tracking.php:411 tbl_tracking.php:462 #, fuzzy msgid "Username" msgstr "Użytkownik:" -#: libraries/messages.inc.php:1156 tbl_tracking.php:203 +#: libraries/messages.inc.php:1152 tbl_tracking.php:203 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "" -#: libraries/messages.inc.php:1157 tbl_tracking.php:187 +#: libraries/messages.inc.php:1153 tbl_tracking.php:187 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "" -#: libraries/messages.inc.php:1158 tbl_tracking.php:195 +#: libraries/messages.inc.php:1154 tbl_tracking.php:195 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "" -#: libraries/messages.inc.php:1159 tbl_tracking.php:262 +#: libraries/messages.inc.php:1155 tbl_tracking.php:262 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/messages.inc.php:1161 tbl_tracking.php:220 +#: libraries/messages.inc.php:1157 tbl_tracking.php:220 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/messages.inc.php:1162 libraries/mysql_charsets.lib.php:219 +#: libraries/messages.inc.php:1158 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:362 msgid "Traditional Chinese" msgstr "Chiński tradycyjny" -#: libraries/messages.inc.php:1163 libraries/mysql_charsets.lib.php:292 +#: libraries/messages.inc.php:1159 libraries/mysql_charsets.lib.php:292 msgid "Traditional Spanish" msgstr "Tradycyjny hiszpański" -#: libraries/messages.inc.php:1164 server_status.php:388 +#: libraries/messages.inc.php:1160 server_status.php:388 msgid "Traffic" msgstr "Ruch" -#: libraries/messages.inc.php:1165 server_status.php:261 +#: libraries/messages.inc.php:1161 server_status.php:261 msgid "Transaction coordinator" msgstr "Koordynator transakcji" -#: libraries/messages.inc.php:1166 +#: libraries/messages.inc.php:1162 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 " @@ -6491,7 +6491,7 @@ msgstr "" "to nazwa pliku binarnego. Drugą opcją jest możliwa nazwa pola zawierającego " "nazwę pliku. Jeżeli dana jest druga opcja, pierwsza musi być pustym napisem" -#: libraries/messages.inc.php:1167 +#: libraries/messages.inc.php:1163 msgid "" "Displays hexadecimal representation of data. Optional first parameter " "specifies how often space will be added (defaults to 2 nibbles)." @@ -6499,7 +6499,7 @@ msgstr "" "Wyświetla szesnastkową reprezentację danych. Opcjonalny pierwszy parametr " "określa jak często dodawane będą spacje (domyślnie: co 2 półbajty)." -#: libraries/messages.inc.php:1168 +#: libraries/messages.inc.php:1164 msgid "" "Displays a clickable thumbnail. The options are the maximum width and height " "in pixels. The original aspect ratio is preserved." @@ -6507,15 +6507,15 @@ msgstr "" "Wyświetla klikalną miniaturkę; opcje: szerokość,wysokość w pikselach " "(oryginalne proporcje zostaną zachowane)" -#: libraries/messages.inc.php:1169 +#: libraries/messages.inc.php:1165 msgid "Displays a link to download this image." msgstr "Wyświetla link do tego obrazu (bezpośrednie ściągnięcie bloba)." -#: libraries/messages.inc.php:1170 +#: libraries/messages.inc.php:1166 msgid "See image/jpeg: inline" msgstr "Zobacz image/jpeg: inline" -#: libraries/messages.inc.php:1171 +#: libraries/messages.inc.php:1167 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 " @@ -6534,7 +6534,7 @@ msgstr "" "zależy format daty: w przypadku \"local\" jest taki jak dla funkcji PHP " "strftime(), w przypadku \"utc\" — gmdate()." -#: libraries/messages.inc.php:1172 +#: libraries/messages.inc.php:1168 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 " @@ -6559,7 +6559,7 @@ msgstr "" "(jest to domyślna wartość), zawartość komórki nie będzie zawijana, tak że " "całe wyjście zostanie pokazane bez zmian formatu." -#: libraries/messages.inc.php:1173 +#: libraries/messages.inc.php:1169 msgid "" "Displays the contents of the field as-is, without running it through " "htmlspecialchars(). That is, the field is assumed to contain valid HTML." @@ -6567,7 +6567,7 @@ msgstr "" "Zachowuje oryginalne formatowanie pola. Neutralizowanie znaków " "niespecjalnych nie jest dokonywane." -#: libraries/messages.inc.php:1174 +#: libraries/messages.inc.php:1170 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 " @@ -6577,7 +6577,7 @@ msgstr "" "prefiks, taki jak \"http://domena.com/\", drugą opcją jest szerokość w " "pikselach, trzecią opcją jest wysokość." -#: libraries/messages.inc.php:1175 +#: libraries/messages.inc.php:1171 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 " @@ -6586,11 +6586,11 @@ msgstr "" "Wyświetla link, pole zawiera nazwę pliku; pierwsza opcja to prefiks, taki " "jak \"http://domena.com/\", druga opcja to tytuł linku." -#: libraries/messages.inc.php:1176 +#: libraries/messages.inc.php:1172 msgid "Formats text as SQL query with syntax highlighting." msgstr "Formatuj tekst traktując jako zapytanie SQL z podświetlaniem składni." -#: libraries/messages.inc.php:1177 +#: libraries/messages.inc.php:1173 msgid "" "Displays a part of a string. The first option is the number of characters to " "skip from the beginning of the string (Default 0). The second option is the " @@ -6604,71 +6604,71 @@ msgstr "" "Trzecia opcja określa jakie znaki zostaną dodane do wyjścia, jeżeli zwracany " "jest część napisu (domyślnie: …) ." -#: libraries/messages.inc.php:1179 server_binlog.php:183 server_binlog.php:186 +#: libraries/messages.inc.php:1175 server_binlog.php:183 server_binlog.php:186 #: server_processlist.php:49 server_processlist.php:51 msgid "Truncate Shown Queries" msgstr "Ucinaj wyświetlane zapytania" -#: libraries/messages.inc.php:1180 libraries/mysql_charsets.lib.php:301 +#: libraries/messages.inc.php:1176 libraries/mysql_charsets.lib.php:301 #: libraries/mysql_charsets.lib.php:389 msgid "Turkish" msgstr "Turecki" -#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:304 +#: libraries/messages.inc.php:1179 libraries/mysql_charsets.lib.php:304 #: libraries/mysql_charsets.lib.php:386 msgid "Ukrainian" msgstr "Ukraiński" -#: libraries/messages.inc.php:1185 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:1181 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 msgid "Unicode" msgstr "Unicode" -#: libraries/messages.inc.php:1187 libraries/mysql_charsets.lib.php:398 +#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:398 #: libraries/mysql_charsets.lib.php:405 msgid "unknown" msgstr "nieznany" -#: libraries/messages.inc.php:1190 server_privileges.php:1152 +#: libraries/messages.inc.php:1186 server_privileges.php:1152 #, php-format msgid "You have updated the privileges for %s." msgstr "Uaktualniłeś uprawnienia dla %s." -#: libraries/messages.inc.php:1191 user_password.php:112 +#: libraries/messages.inc.php:1187 user_password.php:112 msgid "The profile has been updated." msgstr "Profil został uaktualniony." -#: libraries/messages.inc.php:1193 libraries/relation.lib.php:138 +#: libraries/messages.inc.php:1189 libraries/relation.lib.php:138 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "Informacje o tym, jak zaktualizować tabelę Column_comments znajdują się w " "dokumentacji" -#: libraries/messages.inc.php:1194 +#: libraries/messages.inc.php:1190 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Poleca się aktualizację do %s w wersji %s lub późniejszej." -#: libraries/messages.inc.php:1204 tbl_printview.php:314 tbl_structure.php:661 +#: libraries/messages.inc.php:1200 tbl_printview.php:314 tbl_structure.php:661 msgid "Usage" msgstr "Wykorzystanie" -#: libraries/messages.inc.php:1205 +#: libraries/messages.inc.php:1201 msgid "Enclose table and field names with backquotes" msgstr "Użyj cudzysłowów z nazwami tabel i pól" -#: libraries/messages.inc.php:1206 libraries/replication_gui.lib.php:314 +#: libraries/messages.inc.php:1202 libraries/replication_gui.lib.php:314 #: server_privileges.php:740 msgid "Use Host Table" msgstr "Użyj tabeli hostów" -#: libraries/messages.inc.php:1207 server_privileges.php:848 +#: libraries/messages.inc.php:1203 server_privileges.php:848 #, php-format msgid "The user %s already exists!" msgstr "Użytkownik %s już istnieje!" -#: libraries/messages.inc.php:1209 libraries/replication_gui.lib.php:55 +#: libraries/messages.inc.php:1205 libraries/replication_gui.lib.php:55 #: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245 #: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255 #: server_privileges.php:672 server_privileges.php:675 @@ -6676,37 +6676,37 @@ msgstr "Użytkownik %s już istnieje!" msgid "User name" msgstr "Nazwa użytkownika" -#: libraries/messages.inc.php:1210 server_privileges.php:1645 +#: libraries/messages.inc.php:1206 server_privileges.php:1645 msgid "The selected user was not found in the privilege table." msgstr "Wybrany użytkownik nie został znaleziony w tabeli uprawnień." -#: libraries/messages.inc.php:1211 server_privileges.php:1365 +#: libraries/messages.inc.php:1207 server_privileges.php:1365 msgid "User overview" msgstr "Opis użytkownika" -#: libraries/messages.inc.php:1212 server_privileges.php:1261 +#: libraries/messages.inc.php:1208 server_privileges.php:1261 msgid "The selected users have been deleted successfully." msgstr "Wybrani użytkownicy zostali pomyślnie usunięci." -#: libraries/messages.inc.php:1213 server_privileges.php:2026 +#: libraries/messages.inc.php:1209 server_privileges.php:2026 #, php-format msgid "Users having access to "%s"" msgstr "Użytkownicy mający dostęp do "%s"" -#: libraries/messages.inc.php:1214 main.php:189 server_privileges.php:1350 +#: libraries/messages.inc.php:1210 main.php:189 server_privileges.php:1350 #: server_privileges.php:1497 server_privileges.php:1611 #: server_privileges.php:2029 server_processlist.php:54 msgid "User" msgstr "Użytkownik" -#: libraries/messages.inc.php:1215 tbl_change.php:1171 +#: libraries/messages.inc.php:1211 tbl_change.php:1171 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Klawisz TAB przemieszcza pomiędzy wartościami, CTRL+strzałka przenosi w " "dowolne miejsce" -#: libraries/messages.inc.php:1217 libraries/replication_gui.lib.php:251 +#: libraries/messages.inc.php:1213 libraries/replication_gui.lib.php:251 #: libraries/replication_gui.lib.php:319 libraries/replication_gui.lib.php:342 #: server_privileges.php:678 server_privileges.php:745 #: server_privileges.php:769 server_privileges.php:1889 @@ -6714,7 +6714,7 @@ msgstr "" msgid "Use text field" msgstr "Użyj pola tekstowego" -#: libraries/messages.inc.php:1221 libraries/sqlvalidator.lib.php:68 +#: libraries/messages.inc.php:1217 libraries/sqlvalidator.lib.php:68 #, php-format msgid "" "The SQL validator could not be initialized. Please check if you have " @@ -6724,89 +6724,89 @@ msgstr "" "zainstalowane są niezbędne rozszerzenia PHP, tak jak zostało to opisane w %" "sdokumentacji%s." -#: libraries/messages.inc.php:1222 libraries/replication_gui.lib.php:111 +#: libraries/messages.inc.php:1218 libraries/replication_gui.lib.php:111 #: server_status.php:627 tbl_change.php:324 tbl_printview.php:370 #: tbl_select.php:139 tbl_structure.php:730 msgid "Value" msgstr "Wartość" -#: libraries/messages.inc.php:1223 libraries/replication_gui.lib.php:110 +#: libraries/messages.inc.php:1219 libraries/replication_gui.lib.php:110 #: libraries/sql_query_form.lib.php:445 server_status.php:626 #: server_variables.php:52 msgid "Variable" msgstr "Zmienna" -#: libraries/messages.inc.php:1225 server_export.php:21 +#: libraries/messages.inc.php:1221 server_export.php:21 msgid "View dump (schema) of databases" msgstr "Zrzut baz danych" -#: libraries/messages.inc.php:1227 tbl_export.php:23 +#: libraries/messages.inc.php:1223 tbl_export.php:23 msgid "View dump (schema) of table" msgstr "Zrzut tabeli" -#: libraries/messages.inc.php:1231 view_create.php:142 +#: libraries/messages.inc.php:1227 view_create.php:142 msgid "VIEW name" msgstr "Nazwa perspektywy" -#: libraries/messages.inc.php:1237 main.php:205 +#: libraries/messages.inc.php:1233 main.php:205 msgid "Web server" msgstr "Serwer WWW" -#: libraries/messages.inc.php:1239 libraries/mysql_charsets.lib.php:277 +#: libraries/messages.inc.php:1235 libraries/mysql_charsets.lib.php:277 #: libraries/mysql_charsets.lib.php:325 msgid "West European" msgstr "Zachodnioeuropejski" -#: libraries/messages.inc.php:1240 main.php:230 +#: libraries/messages.inc.php:1236 main.php:230 msgid "Wiki" msgstr "Wiki" -#: libraries/messages.inc.php:1241 server_privileges.php:2138 +#: libraries/messages.inc.php:1237 server_privileges.php:2138 msgid "wildcard" msgstr "znak wieloznaczny" -#: libraries/messages.inc.php:1248 +#: libraries/messages.inc.php:1244 #, fuzzy msgid "Export contents" msgstr "Domyślne opcje eksportu" -#: libraries/messages.inc.php:1249 +#: libraries/messages.inc.php:1245 #, fuzzy msgid "Export functions" msgstr "Domyślne opcje eksportu" -#: libraries/messages.inc.php:1250 +#: libraries/messages.inc.php:1246 msgid "Export procedures" msgstr "" -#: libraries/messages.inc.php:1251 +#: libraries/messages.inc.php:1247 msgid "Export Structure Schemas (recommended)" msgstr "" -#: libraries/messages.inc.php:1252 +#: libraries/messages.inc.php:1248 #, fuzzy msgid "Export tables" msgstr "Rodzaj eksportu" -#: libraries/messages.inc.php:1253 +#: libraries/messages.inc.php:1249 #, fuzzy msgid "Export triggers" msgstr "Rodzaj eksportu" -#: libraries/messages.inc.php:1254 +#: libraries/messages.inc.php:1250 #, fuzzy msgid "Export views" msgstr "Domyślne opcje eksportu" -#: libraries/messages.inc.php:1255 +#: libraries/messages.inc.php:1251 msgid "XML" msgstr "XML" -#: libraries/messages.inc.php:1259 server_privileges.php:592 +#: libraries/messages.inc.php:1255 server_privileges.php:592 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Uwaga: Ustawienie tych opcji na 0 (zero) usuwa ograniczenie." -#: libraries/messages.inc.php:1260 +#: libraries/messages.inc.php:1256 msgid "\"zipped\"" msgstr "\".zip\"" diff --git a/po/pt.po b/po/pt.po index 242a8901c..fc6b41e1c 100644 --- 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-05-13 11:25+0200\n" +"POT-Creation-Date: 2010-05-13 11:30+0200\n" "PO-Revision-Date: 2010-03-12 09:17+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: portuguese \n" @@ -13,19 +13,19 @@ msgstr "" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:38 browse_foreigners.php:59 -#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:870 +#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:866 #: server_privileges.php:1475 msgid "Show all" msgstr "Mostrar tudo" #: browse_foreigners.php:82 db_operations.php:648 -#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:394 -#: libraries/export/pdf.php:147 libraries/messages.inc.php:597 +#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394 +#: libraries/export/pdf.php:147 libraries/messages.inc.php:593 #: pdf_schema.php:283 pdf_schema.php:1123 pdf_schema.php:1139 msgid "Page number:" msgstr "Página número:" -#: browse_foreigners.php:132 libraries/messages.inc.php:1242 +#: browse_foreigners.php:132 libraries/messages.inc.php:1238 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -35,7 +35,7 @@ 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/db_links.inc.php:75 -#: libraries/messages.inc.php:841 libraries/tbl_links.inc.php:63 +#: libraries/messages.inc.php:837 libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Pesquisar" @@ -44,12 +44,12 @@ msgstr "Pesquisar" #: db_search.php:362 db_structure.php:567 js/messages.php:48 #: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2267 +#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 #: 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 #: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614 -#: libraries/messages.inc.php:361 libraries/replication_gui.lib.php:73 +#: libraries/messages.inc.php:357 libraries/replication_gui.lib.php:73 #: libraries/replication_gui.lib.php:365 libraries/select_server.lib.php:104 #: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477 #: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782 @@ -69,33 +69,33 @@ msgid "Go" msgstr "Executa" #: browse_foreigners.php:168 browse_foreigners.php:172 -#: libraries/Index.class.php:442 libraries/messages.inc.php:459 +#: libraries/Index.class.php:442 libraries/messages.inc.php:455 #: tbl_tracking.php:320 msgid "Keyname" msgstr "Nome do Índice" #: browse_foreigners.php:169 browse_foreigners.php:171 -#: libraries/messages.inc.php:252 server_collations.php:55 +#: libraries/messages.inc.php:248 server_collations.php:55 #: server_collations.php:67 server_engines.php:59 server_status.php:628 msgid "Description" msgstr "Descrição" #: browse_foreigners.php:247 browse_foreigners.php:256 #: browse_foreigners.php:268 browse_foreigners.php:276 -#: libraries/messages.inc.php:1218 +#: libraries/messages.inc.php:1214 msgid "Use this value" msgstr "Usar este valor" -#: db_create.php:46 libraries/messages.inc.php:215 +#: db_create.php:46 libraries/messages.inc.php:211 #, fuzzy, php-format msgid "Database %1$s has been created." msgstr "A base de dados %s foi eliminada." -#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:232 +#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:228 msgid "Database comment: " msgstr "Comentário da Base de Dados: " -#: db_datadict.php:165 libraries/messages.inc.php:1070 +#: db_datadict.php:165 libraries/messages.inc.php:1066 #: libraries/tbl_properties.inc.php:724 pdf_schema.php:1236 #: tbl_operations.php:345 tbl_printview.php:130 msgid "Table comments" @@ -104,7 +104,7 @@ msgstr "Comentários da tabela" #: db_datadict.php:174 db_qbe.php:174 libraries/Index.class.php:446 #: libraries/export/htmlword.php:244 libraries/export/latex.php:360 #: libraries/export/odt.php:294 libraries/export/texytext.php:233 -#: libraries/messages.inc.php:317 libraries/tbl_properties.inc.php:99 +#: libraries/messages.inc.php:313 libraries/tbl_properties.inc.php:99 #: libraries/tbl_properties.inc.php:275 pdf_schema.php:1262 #: pdf_schema.php:1283 tbl_change.php:308 tbl_indexes.php:189 #: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135 @@ -116,7 +116,7 @@ msgstr "Campo" #: libraries/db_events.inc.php:31 libraries/db_routines.inc.php:42 #: 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/messages.inc.php:1181 +#: libraries/export/texytext.php:234 libraries/messages.inc.php:1177 #: libraries/tbl_properties.inc.php:100 pdf_schema.php:1263 #: pdf_schema.php:1284 server_privileges.php:2031 tbl_change.php:287 #: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313 @@ -128,7 +128,7 @@ msgstr "Tipo" #: db_datadict.php:177 libraries/Index.class.php:449 #: libraries/export/htmlword.php:246 libraries/export/latex.php:360 #: libraries/export/odt.php:300 libraries/export/texytext.php:235 -#: libraries/messages.inc.php:576 libraries/tbl_properties.inc.php:109 +#: libraries/messages.inc.php:572 libraries/tbl_properties.inc.php:109 #: pdf_schema.php:1265 pdf_schema.php:1286 tbl_change.php:323 #: tbl_printview.php:145 tbl_structure.php:181 tbl_tracking.php:276 #: tbl_tracking.php:327 @@ -137,7 +137,7 @@ msgstr "Nulo" #: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 -#: libraries/export/texytext.php:236 libraries/messages.inc.php:238 +#: libraries/export/texytext.php:236 libraries/messages.inc.php:234 #: libraries/tbl_properties.inc.php:106 pdf_schema.php:1266 #: pdf_schema.php:1287 tbl_printview.php:146 tbl_structure.php:182 #: tbl_tracking.php:277 @@ -146,14 +146,14 @@ msgstr "Defeito" #: db_datadict.php:182 libraries/export/htmlword.php:249 #: libraries/export/latex.php:362 libraries/export/odt.php:307 -#: libraries/export/texytext.php:238 libraries/messages.inc.php:483 +#: libraries/export/texytext.php:238 libraries/messages.inc.php:479 #: pdf_schema.php:1268 pdf_schema.php:1289 tbl_printview.php:150 msgid "Links to" msgstr "Links para" #: db_datadict.php:184 db_printview.php:112 libraries/export/htmlword.php:252 #: libraries/export/latex.php:365 libraries/export/odt.php:312 -#: libraries/export/texytext.php:241 libraries/messages.inc.php:163 +#: libraries/export/texytext.php:241 libraries/messages.inc.php:159 #: libraries/tbl_properties.inc.php:130 pdf_schema.php:1279 #: pdf_schema.php:1290 tbl_printview.php:152 msgid "Comments" @@ -162,7 +162,7 @@ msgstr "Comentários" #: db_datadict.php:267 libraries/Index.class.php:359 #: 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/messages.inc.php:559 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:555 #: libraries/mult_submits.inc.php:263 pdf_schema.php:1344 #: server_privileges.php:1529 server_privileges.php:1540 #: server_privileges.php:1850 server_privileges.php:1855 @@ -174,7 +174,7 @@ msgstr "Não" #: db_datadict.php:267 libraries/Index.class.php:360 #: libraries/Index.class.php:385 libraries/export/htmlword.php:322 #: libraries/export/latex.php:430 libraries/export/odt.php:368 -#: libraries/export/texytext.php:311 libraries/messages.inc.php:1257 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:1253 #: libraries/mult_submits.inc.php:45 libraries/mult_submits.inc.php:50 #: libraries/mult_submits.inc.php:55 libraries/mult_submits.inc.php:60 #: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:101 @@ -188,112 +188,112 @@ msgstr "Não" msgid "Yes" msgstr "Sim" -#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:670 +#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:666 #: tbl_printview.php:498 msgid "Print" msgstr "Imprimir" -#: db_export.php:29 libraries/messages.inc.php:1226 +#: db_export.php:29 libraries/messages.inc.php:1222 msgid "View dump (schema) of database" msgstr "Ver o esquema da base de dados" #: db_export.php:33 db_printview.php:96 db_qbe.php:102 db_structure.php:51 -#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:568 +#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:564 #: navigation.php:346 msgid "No tables found in database." msgstr "Nenhuma tabela encontrada na base de dados" -#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:845 +#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:841 #: server_export.php:27 msgid "Select All" msgstr "Selecciona Todas" -#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1188 +#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1184 #: server_export.php:29 msgid "Unselect All" msgstr "Limpa Todas as Selecções" -#: db_operations.php:38 libraries/messages.inc.php:213 tbl_create.php:54 +#: db_operations.php:38 libraries/messages.inc.php:209 tbl_create.php:54 #, fuzzy msgid "The database name is empty!" msgstr "O nome da tabela está vazio!" -#: db_operations.php:236 libraries/messages.inc.php:753 +#: db_operations.php:236 libraries/messages.inc.php:749 #, fuzzy, php-format msgid "Database %s has been renamed to %s" msgstr "Tabela %s renomeada para %s" -#: db_operations.php:240 libraries/messages.inc.php:178 +#: db_operations.php:240 libraries/messages.inc.php:174 #, fuzzy, php-format msgid "Database %s has been copied to %s" msgstr "Tabela %s copiada para %s." -#: db_operations.php:410 libraries/messages.inc.php:236 +#: db_operations.php:410 libraries/messages.inc.php:232 #, fuzzy msgid "Rename database to" msgstr "Renomeia a tabela para " -#: db_operations.php:415 libraries/messages.inc.php:161 +#: db_operations.php:415 libraries/messages.inc.php:157 #: server_processlist.php:57 msgid "Command" msgstr "Comando" -#: db_operations.php:425 libraries/messages.inc.php:58 tbl_change.php:1143 +#: db_operations.php:425 libraries/messages.inc.php:54 tbl_change.php:1143 msgid "and then" msgstr "" -#: db_operations.php:451 libraries/messages.inc.php:233 +#: db_operations.php:451 libraries/messages.inc.php:229 #, fuzzy msgid "Copy database to" msgstr "Sem bases de dados" -#: db_operations.php:458 libraries/messages.inc.php:1043 +#: db_operations.php:458 libraries/messages.inc.php:1039 #: tbl_operations.php:526 tbl_tracking.php:388 msgid "Structure only" msgstr "Somente estrutura" -#: db_operations.php:459 libraries/messages.inc.php:1041 +#: db_operations.php:459 libraries/messages.inc.php:1037 #: tbl_operations.php:527 tbl_tracking.php:390 msgid "Structure and data" msgstr "Estrutura e dados" -#: db_operations.php:460 libraries/messages.inc.php:229 tbl_operations.php:528 +#: db_operations.php:460 libraries/messages.inc.php:225 tbl_operations.php:528 #: tbl_tracking.php:389 msgid "Data only" msgstr "Apenas dados" -#: db_operations.php:468 libraries/messages.inc.php:186 +#: db_operations.php:468 libraries/messages.inc.php:182 msgid "CREATE DATABASE before copying" msgstr "" #: db_operations.php:471 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 -#: libraries/export/sql.php:82 libraries/messages.inc.php:30 +#: libraries/export/sql.php:82 libraries/messages.inc.php:26 #: tbl_operations.php:534 #, php-format msgid "Add %s" msgstr "" -#: db_operations.php:475 libraries/messages.inc.php:29 tbl_operations.php:297 +#: db_operations.php:475 libraries/messages.inc.php:25 tbl_operations.php:297 #: tbl_operations.php:536 msgid "Add AUTO_INCREMENT value" msgstr "Adicionar valor AUTO_INCREMENT" -#: db_operations.php:479 libraries/messages.inc.php:31 tbl_operations.php:543 +#: db_operations.php:479 libraries/messages.inc.php:27 tbl_operations.php:543 msgid "Add constraints" msgstr "Adicionar limitadores" -#: db_operations.php:492 libraries/messages.inc.php:1059 +#: db_operations.php:492 libraries/messages.inc.php:1055 #, fuzzy msgid "Switch to copied database" msgstr "Mudar para a tabela copiada" -#: db_operations.php:533 libraries/messages.inc.php:89 +#: db_operations.php:533 libraries/messages.inc.php:85 msgid "BLOB Repository" msgstr "" #: db_operations.php:536 db_tracking.php:76 libraries/common.lib.php:1350 -#: libraries/messages.inc.php:1037 libraries/server_links.inc.php:49 +#: libraries/messages.inc.php:1033 libraries/server_links.inc.php:49 #: server_processlist.php:59 tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "Estado" @@ -305,12 +305,12 @@ msgctxt "BLOB repository" msgid "Enabled" msgstr "Activado" -#: db_operations.php:548 libraries/messages.inc.php:93 +#: db_operations.php:548 libraries/messages.inc.php:89 #, fuzzy msgid "Disable" msgstr "Desactidado" -#: db_operations.php:558 libraries/messages.inc.php:90 +#: db_operations.php:558 libraries/messages.inc.php:86 msgid "Damaged" msgstr "" @@ -327,13 +327,13 @@ msgctxt "BLOB repository" msgid "Disabled" msgstr "Desactidado" -#: db_operations.php:574 libraries/messages.inc.php:96 +#: db_operations.php:574 libraries/messages.inc.php:92 #, fuzzy msgid "Enable" msgstr "Activado" #: db_operations.php:598 libraries/Index.class.php:448 -#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:158 +#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:154 #: 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:361 @@ -343,7 +343,7 @@ msgstr "Activado" msgid "Collation" msgstr "Criação" -#: db_operations.php:609 libraries/messages.inc.php:742 main.php:316 +#: db_operations.php:609 libraries/messages.inc.php:738 main.php:316 #: pdf_schema.php:34 #, php-format msgid "" @@ -353,58 +353,58 @@ msgstr "" "As Características adicionais para trabalhar com ligações entre Tabelas " "foram desactivadas. Para saber porquê carregue %saqui%s." -#: db_operations.php:645 libraries/messages.inc.php:264 pdf_pages.php:528 +#: db_operations.php:645 libraries/messages.inc.php:260 pdf_pages.php:528 msgid "Display PDF schema" msgstr "Mostrar o esquema de PDF" -#: db_operations.php:661 libraries/messages.inc.php:877 pdf_pages.php:529 +#: db_operations.php:661 libraries/messages.inc.php:873 pdf_pages.php:529 msgid "Show grid" msgstr "Mostrar grelha" -#: db_operations.php:664 libraries/messages.inc.php:874 pdf_pages.php:530 +#: db_operations.php:664 libraries/messages.inc.php:870 pdf_pages.php:530 msgid "Show color" msgstr "Mostrar côr" -#: db_operations.php:666 libraries/messages.inc.php:998 pdf_pages.php:531 +#: db_operations.php:666 libraries/messages.inc.php:994 pdf_pages.php:531 msgid "Show dimension of tables" msgstr "Mostrar dimensão das tabelas" -#: db_operations.php:669 libraries/messages.inc.php:52 pdf_pages.php:532 +#: db_operations.php:669 libraries/messages.inc.php:48 pdf_pages.php:532 msgid "Display all tables with the same width" msgstr "mostrar todas as tabelas com a mesma altura?" -#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:227 +#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:223 #: pdf_pages.php:533 msgid "Data Dictionary" msgstr "Dicionario de dados" -#: db_operations.php:674 libraries/messages.inc.php:884 pdf_pages.php:534 +#: db_operations.php:674 libraries/messages.inc.php:880 pdf_pages.php:534 msgid "Only show keys" msgstr "" -#: db_operations.php:676 libraries/messages.inc.php:875 pdf_pages.php:535 +#: db_operations.php:676 libraries/messages.inc.php:871 pdf_pages.php:535 msgid "Data Dictionary Format" msgstr "Formato dos dados do dicionário" -#: db_operations.php:678 libraries/messages.inc.php:464 pdf_pages.php:537 +#: db_operations.php:678 libraries/messages.inc.php:460 pdf_pages.php:537 msgid "Landscape" msgstr "Paisagem/ao baixo" -#: db_operations.php:679 libraries/messages.inc.php:663 pdf_pages.php:538 +#: db_operations.php:679 libraries/messages.inc.php:659 pdf_pages.php:538 msgid "Portrait" msgstr "Retrato/Ao alto" -#: db_operations.php:682 libraries/messages.inc.php:599 pdf_pages.php:541 +#: db_operations.php:682 libraries/messages.inc.php:595 pdf_pages.php:541 msgid "Paper size" msgstr "Tamanho do papel" -#: db_operations.php:706 libraries/messages.inc.php:281 +#: db_operations.php:706 libraries/messages.inc.php:277 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 libraries/messages.inc.php:1087 +#: libraries/header.inc.php:126 libraries/messages.inc.php:1083 #: pdf_pages.php:405 server_privileges.php:1626 server_privileges.php:1682 #: server_privileges.php:1946 server_synchronize.php:423 #: server_synchronize.php:866 tbl_tracking.php:592 test/theme.php:75 @@ -412,176 +412,176 @@ msgid "Table" msgstr "Tabela" #: db_printview.php:105 libraries/db_structure.lib.php:56 -#: libraries/messages.inc.php:735 +#: libraries/messages.inc.php:731 msgid "Records" msgstr "Registos" #: db_printview.php:109 libraries/db_structure.lib.php:67 -#: libraries/messages.inc.php:1003 tbl_indexes.php:190 +#: libraries/messages.inc.php:999 tbl_indexes.php:190 msgid "Size" msgstr "Tamanho" #: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 -#: libraries/export/sql.php:899 libraries/messages.inc.php:436 +#: libraries/export/sql.php:899 libraries/messages.inc.php:432 msgid "in use" msgstr "em uso" #: db_printview.php:187 libraries/db_info.inc.php:88 -#: libraries/export/sql.php:514 libraries/messages.inc.php:1032 +#: libraries/export/sql.php:514 libraries/messages.inc.php:1028 #: pdf_schema.php:1241 tbl_printview.php:434 tbl_structure.php:810 msgid "Creation" msgstr "Criação" #: db_printview.php:196 libraries/db_info.inc.php:93 -#: libraries/export/sql.php:519 libraries/messages.inc.php:1036 +#: libraries/export/sql.php:519 libraries/messages.inc.php:1032 #: pdf_schema.php:1246 tbl_printview.php:444 tbl_structure.php:818 msgid "Last update" msgstr "Actualização" #: db_printview.php:205 libraries/db_info.inc.php:98 -#: libraries/export/sql.php:524 libraries/messages.inc.php:1031 +#: libraries/export/sql.php:524 libraries/messages.inc.php:1027 #: pdf_schema.php:1251 tbl_printview.php:454 tbl_structure.php:826 msgid "Last check" msgstr "Verificação" -#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1085 +#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1081 #, php-format msgid "%s table(s)" msgstr "%s tabela(s)" #: db_qbe.php:29 libraries/display_tbl.lib.php:1981 -#: libraries/messages.inc.php:1051 libraries/sql_query_form.lib.php:140 +#: libraries/messages.inc.php:1047 libraries/sql_query_form.lib.php:140 #: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131 #: view_operations.php:62 msgid "Your SQL query has been executed successfully" msgstr "O seu comando SQL foi executado com sucesso" -#: db_qbe.php:42 libraries/messages.inc.php:371 +#: db_qbe.php:42 libraries/messages.inc.php:367 msgid "You have to choose at least one column to display" msgstr "Tem que escolher pelo menos uma coluna para mostrar" #: db_qbe.php:200 libraries/db_structure.lib.php:104 -#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1014 +#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1010 msgid "Sort" msgstr "Ordenação" #: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111 #: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828 -#: libraries/messages.inc.php:69 server_databases.php:170 +#: libraries/messages.inc.php:65 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314 msgid "Ascending" msgstr "Ascendente" #: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119 #: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825 -#: libraries/messages.inc.php:251 server_databases.php:170 +#: libraries/messages.inc.php:247 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315 msgid "Descending" msgstr "Descendente" #: db_qbe.php:264 db_tracking.php:78 libraries/display_tbl.lib.php:308 -#: libraries/messages.inc.php:888 tbl_change.php:277 tbl_tracking.php:597 +#: libraries/messages.inc.php:884 tbl_change.php:277 tbl_tracking.php:597 msgid "Show" msgstr "Mostra" -#: db_qbe.php:300 libraries/messages.inc.php:202 +#: db_qbe.php:300 libraries/messages.inc.php:198 msgid "Criteria" msgstr "Critérios" #: db_qbe.php:353 db_qbe.php:435 db_qbe.php:527 db_qbe.php:558 -#: libraries/messages.inc.php:718 +#: libraries/messages.inc.php:714 msgid "Ins" msgstr "Ins." #: db_qbe.php:357 db_qbe.php:439 db_qbe.php:524 db_qbe.php:555 -#: libraries/messages.inc.php:56 +#: libraries/messages.inc.php:52 msgid "And" msgstr "E" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:529 db_qbe.php:560 -#: libraries/messages.inc.php:717 +#: libraries/messages.inc.php:713 msgid "Del" 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/messages.inc.php:592 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:588 #: libraries/tbl_properties.inc.php:779 server_privileges.php:258 #: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288 msgid "Or" msgstr "Ou" -#: db_qbe.php:507 libraries/messages.inc.php:516 +#: db_qbe.php:507 libraries/messages.inc.php:512 msgid "Modify" msgstr "Modifica" -#: db_qbe.php:584 libraries/messages.inc.php:33 +#: db_qbe.php:584 libraries/messages.inc.php:29 msgid "Add/Delete Criteria Row" msgstr "Adicionar/Remover Critérios" -#: db_qbe.php:596 libraries/messages.inc.php:32 +#: db_qbe.php:596 libraries/messages.inc.php:28 msgid "Add/Delete Field Columns" msgstr "Adicionar/Remover Campos" -#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1192 +#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1188 msgid "Update Query" msgstr "Actualiza Comando SQL" -#: db_qbe.php:617 libraries/messages.inc.php:1216 +#: db_qbe.php:617 libraries/messages.inc.php:1212 msgid "Use Tables" msgstr "Usar Tabelas" -#: db_qbe.php:640 libraries/messages.inc.php:723 +#: db_qbe.php:640 libraries/messages.inc.php:719 #, php-format msgid "SQL query on database %s:" msgstr "Comando SQL na base de dados %s:" -#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:823 +#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:819 msgid "Submit Query" msgstr "Executa Comando SQL" #: db_search.php:68 libraries/auth/config.auth.lib.php:84 #: libraries/auth/config.auth.lib.php:103 #: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52 -#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:26 +#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:22 msgid "Access denied" msgstr "Acesso Negado" -#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:836 +#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:832 msgid "at least one of the words" msgstr "pelo menos uma das palavras" -#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:837 +#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:833 msgid "all words" msgstr "todas as palavras" -#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:838 +#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:834 msgid "the exact phrase" msgstr "a frase exacta" -#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:839 +#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:835 msgid "as regular expression" msgstr "as regular expression" -#: db_search.php:242 libraries/messages.inc.php:840 +#: db_search.php:242 libraries/messages.inc.php:836 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Procurar resultados para \"%s\" %s:" -#: db_search.php:260 libraries/messages.inc.php:579 +#: db_search.php:260 libraries/messages.inc.php:575 #, php-format msgid "%s match(es) inside table %s" 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/messages.inc.php:108 +#: db_structure.php:105 libraries/messages.inc.php:104 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468 msgid "Browse" msgstr "Visualiza" #: db_search.php:272 libraries/display_tbl.lib.php:1165 -#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:243 +#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:239 #: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406 #: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377 #: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216 @@ -589,45 +589,45 @@ msgstr "Visualiza" msgid "Delete" msgstr "Apagar" -#: db_search.php:285 libraries/messages.inc.php:580 +#: db_search.php:285 libraries/messages.inc.php:576 #, php-format msgid "Total: %s match(es)" msgstr "Total: %s resultado(s)" -#: db_search.php:299 libraries/messages.inc.php:832 +#: db_search.php:299 libraries/messages.inc.php:828 msgid "Search in database" msgstr "Pesquisar na Base de Dados" -#: db_search.php:302 libraries/messages.inc.php:835 +#: db_search.php:302 libraries/messages.inc.php:831 msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgstr "Palavra(s) ou valor(es) para pesquisar para (wildcard: \"%\"):" -#: db_search.php:307 libraries/messages.inc.php:842 +#: db_search.php:307 libraries/messages.inc.php:838 msgid "Find:" msgstr "Procurar:" -#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1017 +#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1013 msgid "Words are separated by a space character (\" \")." msgstr "As palavras são separadas pelo caracter espaço (\" \")." -#: db_search.php:325 libraries/messages.inc.php:834 +#: db_search.php:325 libraries/messages.inc.php:830 msgid "Inside table(s):" msgstr "Dentro de Tabela(s):" -#: db_search.php:355 libraries/messages.inc.php:833 +#: db_search.php:355 libraries/messages.inc.php:829 msgid "Inside field:" 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/messages.inc.php:431 libraries/sql_query_form.lib.php:334 +#: libraries/messages.inc.php:427 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/db_links.inc.php:63 libraries/export/latex.php:337 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:1048 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:1044 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 #: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269 msgid "Structure" @@ -636,8 +636,8 @@ 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:1642 -#: libraries/db_links.inc.php:100 libraries/messages.inc.php:272 +#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/db_links.inc.php:100 libraries/messages.inc.php:268 #: 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 @@ -647,40 +647,40 @@ 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:1641 -#: libraries/messages.inc.php:284 libraries/mult_submits.inc.php:39 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: libraries/messages.inc.php:280 libraries/mult_submits.inc.php:39 #: libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Limpa" -#: db_structure.php:316 libraries/messages.inc.php:1075 +#: db_structure.php:316 libraries/messages.inc.php:1071 #: libraries/tbl_links.inc.php:100 #, php-format msgid "Table %s has been emptied" msgstr "A tabela %s foi limpa" -#: db_structure.php:326 libraries/messages.inc.php:1229 +#: db_structure.php:326 libraries/messages.inc.php:1225 #: 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/messages.inc.php:1074 +#: db_structure.php:326 libraries/messages.inc.php:1070 #: libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "A tabela %s foi eliminada" -#: db_structure.php:333 libraries/messages.inc.php:1128 +#: db_structure.php:333 libraries/messages.inc.php:1124 msgid "Tracking is active." msgstr "" -#: db_structure.php:335 libraries/messages.inc.php:1129 +#: db_structure.php:335 libraries/messages.inc.php:1125 msgid "Tracking is not active." msgstr "" #: db_structure.php:420 libraries/display_tbl.lib.php:1944 -#: libraries/messages.inc.php:1228 +#: libraries/messages.inc.php:1224 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -688,84 +688,84 @@ msgid "" msgstr "" #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 -#: libraries/messages.inc.php:1233 libraries/tbl_info.inc.php:66 +#: libraries/messages.inc.php:1229 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/messages.inc.php:773 libraries/server_links.inc.php:70 +#: libraries/messages.inc.php:769 libraries/server_links.inc.php:70 #: server_replication.php:33 server_replication.php:164 server_status.php:258 #, fuzzy msgid "Replication" msgstr "Relações" -#: db_structure.php:489 libraries/messages.inc.php:1053 +#: db_structure.php:489 libraries/messages.inc.php:1049 msgid "Sum" msgstr "Soma" #: db_structure.php:496 libraries/StorageEngine.class.php:356 -#: libraries/messages.inc.php:239 +#: libraries/messages.inc.php:235 #, 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 #: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086 -#: libraries/messages.inc.php:1243 libraries/mult_submits.inc.php:16 +#: libraries/messages.inc.php:1239 libraries/mult_submits.inc.php:16 #: server_databases.php:346 server_databases.php:351 #: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465 msgid "With selected:" msgstr "Com os seleccionados:" #: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: libraries/messages.inc.php:148 server_databases.php:348 +#: libraries/messages.inc.php:144 server_databases.php:348 #: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459 msgid "Check All" msgstr "Todos" #: db_structure.php:531 libraries/display_tbl.lib.php:2077 -#: libraries/messages.inc.php:1184 libraries/replication_gui.lib.php:33 +#: libraries/messages.inc.php:1180 libraries/replication_gui.lib.php:33 #: server_databases.php:350 server_privileges.php:533 #: server_privileges.php:1564 tbl_structure.php:463 msgid "Uncheck All" msgstr "Nenhum" -#: db_structure.php:536 libraries/messages.inc.php:150 +#: db_structure.php:536 libraries/messages.inc.php:146 msgid "Check tables having overhead" msgstr "" #: db_structure.php:547 db_structure.php:548 db_structure.php:599 -#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:672 +#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:668 #: libraries/mult_submits.inc.php:28 tbl_structure.php:493 #: tbl_structure.php:495 msgid "Print view" msgstr "Vista de impressão" -#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:153 +#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:149 #: libraries/mult_submits.inc.php:42 tbl_operations.php:579 msgid "Check table" msgstr "Verificar tabela" -#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:590 +#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:586 #: libraries/mult_submits.inc.php:47 tbl_operations.php:619 #: tbl_structure.php:710 tbl_structure.php:712 msgid "Optimize table" msgstr "Optimizar tabela" -#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:758 +#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:754 #: libraries/mult_submits.inc.php:52 tbl_operations.php:609 msgid "Repair table" msgstr "Reparar tabela" -#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:55 +#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:51 #: libraries/mult_submits.inc.php:57 tbl_operations.php:599 msgid "Analyze table" msgstr "Analizar tabela" #: db_structure.php:557 db_structure.php:558 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/messages.inc.php:310 +#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:306 #: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84 #: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109 #: server_privileges.php:1341 setup/frames/menu.inc.php:22 @@ -773,7 +773,7 @@ msgstr "Analizar tabela" msgid "Export" msgstr "Exportar" -#: db_tracking.php:66 libraries/messages.inc.php:1151 +#: db_tracking.php:66 libraries/messages.inc.php:1147 #, fuzzy msgid "Tracked tables" msgstr "Verificar tabela" @@ -782,7 +782,7 @@ msgstr "Verificar tabela" #: 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/header_printview.inc.php:58 libraries/messages.inc.php:212 +#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:208 #: navigation.php:233 server_databases.php:169 server_privileges.php:1621 #: server_privileges.php:1682 server_privileges.php:1940 #: server_processlist.php:56 server_synchronize.php:1179 @@ -790,83 +790,83 @@ msgstr "Verificar tabela" msgid "Database" msgstr "Base de Dados" -#: db_tracking.php:73 libraries/messages.inc.php:1146 +#: db_tracking.php:73 libraries/messages.inc.php:1142 #, fuzzy msgid "Last version" msgstr "Versão do servidor" -#: db_tracking.php:74 libraries/messages.inc.php:1145 tbl_tracking.php:594 +#: db_tracking.php:74 libraries/messages.inc.php:1141 tbl_tracking.php:594 #, fuzzy msgid "Created" msgstr "Criar" -#: db_tracking.php:75 libraries/messages.inc.php:1147 tbl_tracking.php:595 +#: db_tracking.php:75 libraries/messages.inc.php:1143 tbl_tracking.php:595 msgid "Updated" msgstr "" #: db_tracking.php:77 libraries/Index.class.php:440 -#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:27 +#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:23 #: server_databases.php:203 server_privileges.php:1503 #: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187 msgid "Action" msgstr "Acções" -#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:247 +#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:243 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:106 libraries/messages.inc.php:1142 tbl_tracking.php:548 +#: db_tracking.php:106 libraries/messages.inc.php:1138 tbl_tracking.php:548 #: tbl_tracking.php:606 tbl_tracking.php:613 msgid "active" msgstr "" -#: db_tracking.php:108 libraries/messages.inc.php:1143 tbl_tracking.php:550 +#: db_tracking.php:108 libraries/messages.inc.php:1139 tbl_tracking.php:550 #: tbl_tracking.php:608 tbl_tracking.php:610 msgid "not active" msgstr "" -#: db_tracking.php:121 libraries/messages.inc.php:1160 +#: db_tracking.php:121 libraries/messages.inc.php:1156 #, fuzzy msgid "Versions" msgstr "Operações" -#: db_tracking.php:122 libraries/messages.inc.php:1132 tbl_tracking.php:379 +#: db_tracking.php:122 libraries/messages.inc.php:1128 tbl_tracking.php:379 #: tbl_tracking.php:624 msgid "Tracking report" msgstr "" -#: db_tracking.php:123 libraries/messages.inc.php:1144 tbl_tracking.php:251 +#: db_tracking.php:123 libraries/messages.inc.php:1140 tbl_tracking.php:251 #: tbl_tracking.php:624 #, fuzzy msgid "Structure snapshot" msgstr "Somente estrutura" -#: db_tracking.php:152 libraries/messages.inc.php:1154 +#: db_tracking.php:152 libraries/messages.inc.php:1150 #, fuzzy msgid "Untracked tables" msgstr "Verificar tabela" -#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1153 +#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1149 #: tbl_structure.php:529 tbl_structure.php:531 #, fuzzy msgid "Track table" msgstr "Verificar tabela" -#: db_tracking.php:200 libraries/messages.inc.php:1121 +#: db_tracking.php:200 libraries/messages.inc.php:1117 #, fuzzy msgid "Database Log" msgstr "Base de Dados" -#: export.php:62 libraries/messages.inc.php:312 +#: export.php:62 libraries/messages.inc.php:308 msgid "Selected export type has to be saved in file!" msgstr "" -#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:567 +#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:563 #, php-format msgid "Insufficient space to save the file %s." msgstr "Não existe espaço suficiente para gravar o ficheiro %s." -#: export.php:294 libraries/messages.inc.php:324 +#: export.php:294 libraries/messages.inc.php:320 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -874,17 +874,17 @@ msgstr "" "O ficheiro %s já existe no servidor, mude o nome do ficheiro ou verifique a " "opção de substituição (re-escrita)." -#: export.php:298 export.php:302 libraries/messages.inc.php:562 +#: export.php:298 export.php:302 libraries/messages.inc.php:558 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "O servidor web não tem permissões para gravar o ficheiro %s." -#: export.php:629 libraries/messages.inc.php:276 +#: export.php:629 libraries/messages.inc.php:272 #, php-format msgid "Dump has been saved to file %s." msgstr "O Dump foi gravado para o ficheiro %s." -#: import.php:60 libraries/messages.inc.php:1202 +#: import.php:60 libraries/messages.inc.php:1198 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation%" @@ -892,21 +892,21 @@ msgid "" msgstr "" #: import.php:279 import.php:332 libraries/File.class.php:849 -#: libraries/File.class.php:961 libraries/messages.inc.php:325 +#: libraries/File.class.php:961 libraries/messages.inc.php:321 msgid "File could not be read" msgstr "Não foi possível ler o ficheiro" #: import.php:287 import.php:296 import.php:315 import.php:324 #: libraries/File.class.php:1031 libraries/File.class.php:1039 #: libraries/File.class.php:1055 libraries/File.class.php:1063 -#: libraries/messages.inc.php:1189 +#: libraries/messages.inc.php:1185 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." msgstr "" -#: import.php:337 libraries/messages.inc.php:547 +#: import.php:337 libraries/messages.inc.php:543 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -914,41 +914,41 @@ msgid "" msgstr "" #: import.php:372 libraries/display_import.lib.php:24 -#: libraries/messages.inc.php:125 +#: libraries/messages.inc.php:121 msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:397 libraries/messages.inc.php:102 +#: import.php:397 libraries/messages.inc.php:98 msgid "The bookmark has been deleted." msgstr "Marcador apagado com sucesso." -#: import.php:401 libraries/messages.inc.php:879 +#: import.php:401 libraries/messages.inc.php:875 msgid "Showing bookmark" msgstr "" -#: import.php:403 libraries/messages.inc.php:101 +#: import.php:403 libraries/messages.inc.php:97 #, php-format msgid "Bookmark %s created" msgstr "" -#: import.php:409 import.php:415 libraries/messages.inc.php:407 +#: import.php:409 import.php:415 libraries/messages.inc.php:403 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" -#: import.php:424 libraries/messages.inc.php:1107 +#: import.php:424 libraries/messages.inc.php:1103 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: index.php:190 libraries/messages.inc.php:553 +#: index.php:190 libraries/messages.inc.php:549 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" "O phpMyAdmin torna-se mais agradável se usado num browser que suporte " "frames." -#: js/messages.php:25 libraries/messages.inc.php:155 +#: js/messages.php:25 libraries/messages.inc.php:151 #: server_synchronize.php:345 server_synchronize.php:357 #: server_synchronize.php:373 server_synchronize.php:380 #: server_synchronize.php:739 server_synchronize.php:767 @@ -956,119 +956,119 @@ msgstr "" msgid "Click to select" msgstr "" -#: js/messages.php:26 libraries/messages.inc.php:156 +#: js/messages.php:26 libraries/messages.inc.php:152 msgid "Click to unselect" msgstr "" #: js/messages.php:27 libraries/import.lib.php:103 -#: libraries/messages.inc.php:550 sql.php:89 +#: libraries/messages.inc.php:546 sql.php:89 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Os comandos \"DROP DATABASE\" estão inibidos." -#: js/messages.php:30 libraries/messages.inc.php:270 +#: js/messages.php:30 libraries/messages.inc.php:266 #: libraries/mult_submits.inc.php:258 sql.php:188 msgid "Do you really want to " msgstr "Confirma : " -#: js/messages.php:31 libraries/messages.inc.php:271 +#: js/messages.php:31 libraries/messages.inc.php:267 #: libraries/mult_submits.inc.php:258 sql.php:172 msgid "You are about to DESTROY a complete database!" msgstr "" -#: js/messages.php:34 libraries/messages.inc.php:94 +#: js/messages.php:34 libraries/messages.inc.php:90 msgid "You are about to DISABLE a BLOB Repository!" msgstr "" -#: js/messages.php:35 libraries/messages.inc.php:91 +#: js/messages.php:35 libraries/messages.inc.php:87 #, php-format msgid "Are you sure you want to disable all BLOB references for database %s?" msgstr "" -#: js/messages.php:38 libraries/messages.inc.php:342 +#: js/messages.php:38 libraries/messages.inc.php:338 msgid "Missing value in the form!" msgstr "Nº de dados insuficiente!\\nPreencha todas as opções!" -#: js/messages.php:39 libraries/messages.inc.php:570 +#: js/messages.php:39 libraries/messages.inc.php:566 msgid "This is not a number!" msgstr "Isto não é um número!" -#: js/messages.php:42 libraries/messages.inc.php:380 +#: js/messages.php:42 libraries/messages.inc.php:376 msgid "The host name is empty!" msgstr "O nome da máquina está vazio!" -#: js/messages.php:43 libraries/messages.inc.php:1208 +#: js/messages.php:43 libraries/messages.inc.php:1204 msgid "The user name is empty!" msgstr "O nome do utilizador está vazio!" -#: js/messages.php:44 libraries/messages.inc.php:607 +#: js/messages.php:44 libraries/messages.inc.php:603 #: server_privileges.php:1197 user_password.php:70 msgid "The password is empty!" msgstr "Indique a palavras-passe!" -#: js/messages.php:45 libraries/messages.inc.php:609 +#: js/messages.php:45 libraries/messages.inc.php:605 #: server_privileges.php:1195 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 libraries/messages.inc.php:123 pmd_general.php:342 +#: js/messages.php:49 libraries/messages.inc.php:119 pmd_general.php:342 #: pmd_general.php:379 msgid "Cancel" msgstr "" -#: js/messages.php:52 libraries/messages.inc.php:514 +#: js/messages.php:52 libraries/messages.inc.php:510 msgid "Modifications have been saved" msgstr "Modificações foram guardadas" -#: js/messages.php:53 libraries/messages.inc.php:741 +#: js/messages.php:53 libraries/messages.inc.php:737 #, fuzzy msgid "Relation deleted" msgstr "Vista de Relação" -#: js/messages.php:54 libraries/messages.inc.php:340 +#: js/messages.php:54 libraries/messages.inc.php:336 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:55 libraries/messages.inc.php:434 +#: js/messages.php:55 libraries/messages.inc.php:430 #, fuzzy msgid "Internal relation added" msgstr "Relações internas" -#: js/messages.php:56 libraries/messages.inc.php:299 +#: js/messages.php:56 libraries/messages.inc.php:295 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:57 libraries/messages.inc.php:300 +#: js/messages.php:57 libraries/messages.inc.php:296 msgid "Error: relation already exists." msgstr "" -#: js/messages.php:58 libraries/messages.inc.php:302 +#: js/messages.php:58 libraries/messages.inc.php:298 msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:59 libraries/messages.inc.php:351 +#: js/messages.php:59 libraries/messages.inc.php:347 #: libraries/relation.lib.php:107 msgid "General relation features" msgstr "Características gerais de Relação" -#: js/messages.php:59 libraries/messages.inc.php:260 +#: js/messages.php:59 libraries/messages.inc.php:256 #: libraries/relation.lib.php:101 libraries/relation.lib.php:108 msgid "Disabled" msgstr "Desactidado" -#: js/messages.php:60 libraries/messages.inc.php:850 +#: js/messages.php:60 libraries/messages.inc.php:846 msgid "Select referenced key" msgstr "" -#: js/messages.php:61 libraries/messages.inc.php:848 +#: js/messages.php:61 libraries/messages.inc.php:844 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:62 libraries/messages.inc.php:653 +#: js/messages.php:62 libraries/messages.inc.php:649 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:63 libraries/messages.inc.php:142 pmd_general.php:77 +#: js/messages.php:63 libraries/messages.inc.php:138 pmd_general.php:77 #: tbl_relation.php:548 msgid "Choose field to display" msgstr "Escolha campo para mostrar" @@ -1087,9 +1087,9 @@ msgid "Prev" msgstr "Anterior" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2332 -#: libraries/common.lib.php:2335 libraries/display_tbl.lib.php:338 -#: libraries/messages.inc.php:543 server_binlog.php:205 server_binlog.php:207 +#: js/messages.php:77 libraries/common.lib.php:2344 +#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: libraries/messages.inc.php:539 server_binlog.php:205 server_binlog.php:207 #: tbl_printview.php:424 tbl_structure.php:802 msgid "Next" msgstr "Próximo" @@ -1164,27 +1164,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1543 +#: js/messages.php:97 libraries/common.lib.php:1555 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1545 +#: js/messages.php:99 libraries/common.lib.php:1557 msgid "Feb" msgstr "Fev" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1547 +#: js/messages.php:101 libraries/common.lib.php:1559 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1549 +#: js/messages.php:103 libraries/common.lib.php:1561 msgid "Apr" msgstr "Abr" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1551 +#: js/messages.php:105 libraries/common.lib.php:1563 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1192,37 +1192,37 @@ msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1553 +#: js/messages.php:107 libraries/common.lib.php:1565 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1555 +#: js/messages.php:109 libraries/common.lib.php:1567 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1557 +#: js/messages.php:111 libraries/common.lib.php:1569 msgid "Aug" msgstr "Ago" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1559 +#: js/messages.php:113 libraries/common.lib.php:1571 msgid "Sep" msgstr "Set" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1561 +#: js/messages.php:115 libraries/common.lib.php:1573 msgid "Oct" msgstr "Out" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1563 +#: js/messages.php:117 libraries/common.lib.php:1575 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1565 +#: js/messages.php:119 libraries/common.lib.php:1577 msgid "Dec" msgstr "Dez" @@ -1263,37 +1263,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1568 +#: js/messages.php:132 libraries/common.lib.php:1580 msgid "Sun" msgstr "Dom" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1570 +#: js/messages.php:134 libraries/common.lib.php:1582 msgid "Mon" msgstr "Seg" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1572 +#: js/messages.php:136 libraries/common.lib.php:1584 msgid "Tue" msgstr "Ter" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1574 +#: js/messages.php:138 libraries/common.lib.php:1586 msgid "Wed" msgstr "Qua" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1576 +#: js/messages.php:140 libraries/common.lib.php:1588 msgid "Thu" msgstr "Qui" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1578 +#: js/messages.php:142 libraries/common.lib.php:1590 msgid "Fri" msgstr "Sex" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1580 +#: js/messages.php:144 libraries/common.lib.php:1592 msgid "Sat" msgstr "Sab" @@ -1367,76 +1367,76 @@ msgstr "em uso" msgid "Second" msgstr "por segundo" -#: libraries/Config.class.php:1015 libraries/messages.inc.php:338 +#: libraries/Config.class.php:1015 libraries/messages.inc.php:334 msgid "Font size" msgstr "" #: libraries/File.class.php:344 libraries/File.class.php:432 #: libraries/File.class.php:569 libraries/File.class.php:708 -#: libraries/messages.inc.php:1201 +#: libraries/messages.inc.php:1197 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.class.php:414 libraries/messages.inc.php:1198 +#: libraries/File.class.php:414 libraries/messages.inc.php:1194 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:417 libraries/messages.inc.php:1197 +#: libraries/File.class.php:417 libraries/messages.inc.php:1193 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:420 libraries/messages.inc.php:1200 +#: libraries/File.class.php:420 libraries/messages.inc.php:1196 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:423 libraries/messages.inc.php:1199 +#: libraries/File.class.php:423 libraries/messages.inc.php:1195 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:426 libraries/messages.inc.php:1195 +#: libraries/File.class.php:426 libraries/messages.inc.php:1191 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:429 libraries/messages.inc.php:1196 +#: libraries/File.class.php:429 libraries/messages.inc.php:1192 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:908 libraries/messages.inc.php:319 +#: libraries/File.class.php:908 libraries/messages.inc.php:315 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "" -#: libraries/Index.class.php:428 libraries/messages.inc.php:554 +#: libraries/Index.class.php:428 libraries/messages.inc.php:550 #: tbl_relation.php:529 msgid "No index defined!" msgstr "Nenhum indíce definido!" -#: libraries/Index.class.php:433 libraries/messages.inc.php:411 +#: libraries/Index.class.php:433 libraries/messages.inc.php:407 #: server_databases.php:132 tbl_tracking.php:316 msgid "Indexes" msgstr "Índices" -#: libraries/Index.class.php:444 libraries/messages.inc.php:1186 +#: libraries/Index.class.php:444 libraries/messages.inc.php:1182 #: 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:475 tbl_tracking.php:322 msgid "Unique" msgstr "Único" -#: libraries/Index.class.php:445 libraries/messages.inc.php:596 +#: libraries/Index.class.php:445 libraries/messages.inc.php:592 #: tbl_tracking.php:323 msgid "Packed" msgstr "" -#: libraries/Index.class.php:447 libraries/messages.inc.php:131 +#: libraries/Index.class.php:447 libraries/messages.inc.php:127 #: tbl_tracking.php:325 msgid "Cardinality" msgstr "Quantidade" -#: libraries/Index.class.php:450 libraries/messages.inc.php:162 +#: libraries/Index.class.php:450 libraries/messages.inc.php:158 #: tbl_tracking.php:279 tbl_tracking.php:328 #, fuzzy msgid "Comment" @@ -1445,29 +1445,29 @@ msgstr "Comentários" #: libraries/Index.class.php:466 libraries/common.lib.php:616 #: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:280 pdf_pages.php:280 +#: libraries/messages.inc.php:276 pdf_pages.php:280 #: setup/frames/index.inc.php:124 setup/lib/messages.inc.php:352 #: tbl_row_action.php:69 msgid "Edit" msgstr "Edita" -#: libraries/Index.class.php:472 libraries/messages.inc.php:666 +#: libraries/Index.class.php:472 libraries/messages.inc.php:662 msgid "The primary key has been dropped" msgstr "A chave primária foi eliminada" -#: libraries/Index.class.php:476 libraries/messages.inc.php:413 +#: libraries/Index.class.php:476 libraries/messages.inc.php:409 #, php-format msgid "Index %s has been dropped" msgstr "O Índice %s foi eliminado" -#: libraries/Index.class.php:576 libraries/messages.inc.php:412 +#: libraries/Index.class.php:576 libraries/messages.inc.php:408 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "" -#: libraries/List_Database.class.php:431 libraries/messages.inc.php:218 +#: libraries/List_Database.class.php:431 libraries/messages.inc.php:214 #: libraries/server_links.inc.php:41 server_databases.php:88 #: server_privileges.php:1621 setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" @@ -1494,85 +1494,85 @@ msgid_plural "%1$d rows inserted." msgstr[0] "" msgstr[1] "" -#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:549 +#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:545 msgid "" "There is no detailed status information available for this storage engine." msgstr "" -#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:291 +#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:287 #, php-format msgid "%s is available on this MySQL server." msgstr "" -#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:292 +#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:288 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "" -#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:294 +#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:290 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "" -#: libraries/Table.class.php:1019 libraries/messages.inc.php:443 +#: libraries/Table.class.php:1019 libraries/messages.inc.php:439 msgid "Invalid database" msgstr "" -#: libraries/Table.class.php:1033 libraries/messages.inc.php:450 +#: libraries/Table.class.php:1033 libraries/messages.inc.php:446 #: tbl_get_field.php:26 msgid "Invalid table name" msgstr "" -#: libraries/Table.class.php:1048 libraries/messages.inc.php:301 +#: libraries/Table.class.php:1048 libraries/messages.inc.php:297 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "" -#: libraries/Table.class.php:1132 libraries/messages.inc.php:754 +#: libraries/Table.class.php:1132 libraries/messages.inc.php:750 #, php-format msgid "Table %s has been renamed to %s" msgstr "Tabela %s renomeada para %s" -#: libraries/Theme.class.php:162 libraries/messages.inc.php:1099 +#: libraries/Theme.class.php:162 libraries/messages.inc.php:1095 #, php-format msgid "No valid image path for theme %s found!" msgstr "" -#: libraries/Theme.class.php:384 libraries/messages.inc.php:1097 +#: libraries/Theme.class.php:384 libraries/messages.inc.php:1093 msgid "No preview available." msgstr "" -#: libraries/Theme.class.php:387 libraries/messages.inc.php:1089 +#: libraries/Theme.class.php:387 libraries/messages.inc.php:1085 msgid "take it" msgstr "" -#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1096 +#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1092 #, php-format msgid "Default theme %s not found!" msgstr "" -#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1098 +#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1094 #, php-format msgid "Theme %s not found!" msgstr "" -#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1100 +#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1096 #, php-format msgid "Theme path not found for theme %s!" msgstr "" -#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1101 +#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1097 #: test/theme.php:161 themes.php:21 themes.php:41 msgid "Theme / Style" msgstr "" -#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:172 +#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:168 msgid "Cannot connect: invalid settings." msgstr "" #: libraries/auth/config.auth.lib.php:92 #: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65 -#: libraries/messages.inc.php:1238 test/theme.php:152 +#: libraries/messages.inc.php:1234 test/theme.php:152 #, php-format msgid "Welcome to %s" msgstr "Bemvindo ao %s" @@ -1596,104 +1596,104 @@ msgstr "" "inc.php e assegure-se que correspondem à informação fornecida pelo " "administrador do MySQL." -#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:488 +#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:484 msgid "Log in" msgstr "Entrada" #: libraries/auth/cookie.auth.lib.php:246 -#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:659 +#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:655 #: libraries/navigation_header.inc.php:93 #: libraries/navigation_header.inc.php:95 msgid "phpMyAdmin documentation" msgstr "Documentação do phpMyAdmin" #: libraries/auth/cookie.auth.lib.php:258 -#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:492 +#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:488 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:493 +#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:489 msgid "Server:" msgstr "Servidor" -#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:494 +#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:490 msgid "Username:" msgstr "Utilizador :" -#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:491 +#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:487 msgid "Password:" msgstr "Palavra-passe :" -#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:854 +#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:850 msgid "Server Choice" msgstr "Escolha do Servidor" #: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 -#: libraries/messages.inc.php:177 +#: libraries/messages.inc.php:173 msgid "Cookies must be enabled past this point." msgstr "O mecanismo de \"Cookies\" tem de estar ligado a partir deste ponto." #: libraries/auth/cookie.auth.lib.php:671 -#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:489 +#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:485 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" #: libraries/auth/cookie.auth.lib.php:675 -#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:544 +#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:540 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" #: libraries/auth/cookie.auth.lib.php:685 #: libraries/auth/cookie.auth.lib.php:687 -#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:126 +#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:122 msgid "Cannot log in to the MySQL server" msgstr "Não é possível fazer login no servidor MySQL" -#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1245 +#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1241 msgid "Wrong username/password. Access denied." msgstr "Utilizador ou Palavra-passe errada. Acesso Negado." #: libraries/auth/swekey/swekey.auth.lib.php:118 -#: libraries/messages.inc.php:1057 +#: libraries/messages.inc.php:1053 #, php-format msgid "File %s does not contain any key id" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:157 #: libraries/auth/swekey/swekey.auth.lib.php:180 -#: libraries/messages.inc.php:1056 +#: libraries/messages.inc.php:1052 msgid "Hardware authentication failed" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:166 -#: libraries/messages.inc.php:1058 +#: libraries/messages.inc.php:1054 msgid "No valid authentication key plugged" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:202 -#: libraries/messages.inc.php:1055 +#: libraries/messages.inc.php:1051 msgid "Authenticating..." msgstr "" -#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1230 +#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1226 msgid "View image" msgstr "" -#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:652 +#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:648 msgid "Play audio" msgstr "" -#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1232 +#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1228 msgid "View video" msgstr "" -#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:269 +#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:265 msgid "Download file" msgstr "" -#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:128 +#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:124 msgid "" "Couldn't load the iconv or recode extension needed for charset conversion. " "Either configure PHP to enable these extensions or disable charset " @@ -1706,7 +1706,7 @@ msgstr "" #: libraries/charset_conversion.lib.php:79 #: libraries/charset_conversion.lib.php:90 -#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:130 +#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:126 msgid "" "Couldn't use the iconv, libiconv, or recode_string functions, although the " "necessary extensions appear to be loaded. Check your PHP configuration." @@ -1715,7 +1715,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/messages.inc.php:170 +#: libraries/common.inc.php:583 libraries/messages.inc.php:166 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!" @@ -1749,22 +1749,22 @@ msgstr "" msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:636 libraries/messages.inc.php:448 +#: libraries/common.inc.php:636 libraries/messages.inc.php:444 #, 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/messages.inc.php:856 libraries/select_server.lib.php:41 +#: libraries/messages.inc.php:852 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/messages.inc.php:437 +#: libraries/common.inc.php:823 libraries/messages.inc.php:433 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.lib.php:147 libraries/messages.inc.php:499 +#: libraries/common.lib.php:147 libraries/messages.inc.php:495 #, php-format msgid "Max: %s%s" msgstr "Tamanho máximo: %s%s" @@ -1786,7 +1786,7 @@ msgstr "pt" #: libraries/common.lib.php:428 libraries/common.lib.php:430 #: libraries/common.lib.php:432 libraries/common.lib.php:448 #: libraries/common.lib.php:450 libraries/dbg/setup.php:25 -#: libraries/display_export.lib.php:164 libraries/messages.inc.php:267 +#: libraries/display_export.lib.php:164 libraries/messages.inc.php:263 #: libraries/relation.lib.php:97 libraries/sql_query_form.lib.php:451 #: libraries/sql_query_form.lib.php:454 main.php:229 pdf_pages.php:37 #: pdf_pages.php:43 pdf_pages.php:49 pdf_pages.php:54 @@ -1796,55 +1796,55 @@ msgstr "Documentação" #: libraries/common.lib.php:581 libraries/core.lib.php:234 #: libraries/core.lib.php:263 libraries/import.lib.php:134 -#: libraries/messages.inc.php:297 pdf_schema.php:32 pdf_schema.php:232 +#: libraries/messages.inc.php:293 pdf_schema.php:32 pdf_schema.php:232 #: tbl_change.php:1027 tbl_operations.php:213 tbl_relation.php:290 #: view_operations.php:62 msgid "Error" msgstr "Erro" #: libraries/common.lib.php:595 libraries/header_printview.inc.php:61 -#: libraries/messages.inc.php:1023 server_processlist.php:60 +#: libraries/messages.inc.php:1019 server_processlist.php:60 #: server_status.php:247 msgid "SQL query" msgstr "Comando SQL" -#: libraries/common.lib.php:634 libraries/messages.inc.php:538 +#: libraries/common.lib.php:634 libraries/messages.inc.php:534 msgid "MySQL said: " msgstr "Mensagens do MySQL : " -#: libraries/common.lib.php:667 libraries/messages.inc.php:76 +#: libraries/common.lib.php:667 libraries/messages.inc.php:72 #: pdf_schema.php:241 user_password.php:115 msgid "Back" msgstr "Voltar" -#: libraries/common.lib.php:1177 libraries/messages.inc.php:309 +#: libraries/common.lib.php:1177 libraries/messages.inc.php:305 #: setup/lib/messages.inc.php:353 msgid "Explain SQL" msgstr "Explicar SQL" -#: libraries/common.lib.php:1180 libraries/messages.inc.php:551 +#: libraries/common.lib.php:1180 libraries/messages.inc.php:547 msgid "Skip Explain SQL" msgstr "Saltar Explicar SQL" -#: libraries/common.lib.php:1212 libraries/messages.inc.php:563 +#: libraries/common.lib.php:1212 libraries/messages.inc.php:559 msgid "Without PHP Code" msgstr "sem código PHP" -#: libraries/common.lib.php:1215 libraries/messages.inc.php:649 +#: libraries/common.lib.php:1215 libraries/messages.inc.php:645 #: setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "Criar código PHP" -#: libraries/common.lib.php:1233 libraries/messages.inc.php:737 +#: libraries/common.lib.php:1233 libraries/messages.inc.php:733 #: server_status.php:341 setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "" -#: libraries/common.lib.php:1242 libraries/messages.inc.php:575 +#: libraries/common.lib.php:1242 libraries/messages.inc.php:571 msgid "Skip Validate SQL" msgstr "Saltar a validação SQL" -#: libraries/common.lib.php:1245 libraries/messages.inc.php:1220 +#: libraries/common.lib.php:1245 libraries/messages.inc.php:1216 #: setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "Validar SQL" @@ -1858,11 +1858,11 @@ msgid "Inline" msgstr "" #: libraries/common.lib.php:1332 libraries/common.lib.php:1347 -#: libraries/messages.inc.php:713 +#: libraries/messages.inc.php:709 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1351 libraries/messages.inc.php:1108 +#: libraries/common.lib.php:1351 libraries/messages.inc.php:1104 #: libraries/tbl_triggers.lib.php:28 server_processlist.php:58 msgid "Time" msgstr "Tempo" @@ -1896,46 +1896,56 @@ msgstr "PB" msgid "EiB" msgstr "EB" +#. l10n: Thousands separator +#: libraries/common.lib.php:1417 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: libraries/common.lib.php:1419 +msgid "." +msgstr "." + #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1584 +#: libraries/common.lib.php:1596 #: libraries/transformations/text_plain__dateformat.inc.php:28 msgid "%B %d, %Y at %I:%M %p" msgstr "%d-%B-%Y às %H:%M" -#: libraries/common.lib.php:1886 +#: libraries/common.lib.php:1898 #, 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:2301 libraries/common.lib.php:2304 -#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:664 +#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:660 #: server_status.php:608 msgid "Begin" msgstr "Inicio" -#: libraries/common.lib.php:2302 libraries/common.lib.php:2305 -#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:665 +#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:661 #: server_binlog.php:168 server_binlog.php:170 msgid "Previous" msgstr "Anterior" -#: libraries/common.lib.php:2333 libraries/common.lib.php:2336 -#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:289 +#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:285 msgid "End" msgstr "Fim" -#: libraries/common.lib.php:2409 libraries/messages.inc.php:455 +#: libraries/common.lib.php:2421 libraries/messages.inc.php:451 #, php-format msgid "Jump to database "%s"." msgstr "Saltar para a Base de Dados "%s"." -#: libraries/common.lib.php:2429 libraries/messages.inc.php:461 +#: libraries/common.lib.php:2441 libraries/messages.inc.php:457 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/core.lib.php:286 libraries/dbg/setup.php:22 -#: libraries/messages.inc.php:127 +#: libraries/messages.inc.php:123 #, php-format msgid "" "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " @@ -1945,117 +1955,117 @@ msgstr "" "por favor" #: libraries/db_events.inc.php:20 libraries/db_events.inc.php:22 -#: libraries/export/sql.php:415 libraries/messages.inc.php:306 +#: libraries/export/sql.php:415 libraries/messages.inc.php:302 #, fuzzy msgid "Events" msgstr "Enviado" #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 -#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:541 +#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:537 #: libraries/tbl_triggers.lib.php:27 setup/frames/index.inc.php:112 msgid "Name" msgstr "Nome" -#: libraries/db_links.inc.php:45 libraries/messages.inc.php:216 +#: libraries/db_links.inc.php:45 libraries/messages.inc.php:212 #, php-format msgid "Database %s has been dropped." msgstr "A base de dados %s foi eliminada." #: libraries/db_links.inc.php:57 libraries/db_links.inc.php:58 -#: libraries/db_links.inc.php:59 libraries/messages.inc.php:234 +#: libraries/db_links.inc.php:59 libraries/messages.inc.php:230 msgid "Database seems to be empty!" msgstr "" -#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1025 +#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1021 #: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60 #: querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1152 +#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1148 #: libraries/tbl_links.inc.php:69 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:86 libraries/messages.inc.php:719 +#: libraries/db_links.inc.php:86 libraries/messages.inc.php:715 msgid "Query" msgstr "Pesquisa por formulário" -#: libraries/db_links.inc.php:91 libraries/messages.inc.php:253 +#: libraries/db_links.inc.php:91 libraries/messages.inc.php:249 msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:98 libraries/messages.inc.php:397 +#: libraries/db_links.inc.php:98 libraries/messages.inc.php:393 #: libraries/server_links.inc.php:88 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:104 libraries/messages.inc.php:587 +#: libraries/db_links.inc.php:104 libraries/messages.inc.php:583 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" msgstr "Operações" -#: libraries/db_links.inc.php:111 libraries/messages.inc.php:709 +#: libraries/db_links.inc.php:111 libraries/messages.inc.php:705 #: libraries/server_links.inc.php:66 server_privileges.php:72 #: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117 msgid "Privileges" msgstr "Privilégios" #: libraries/db_routines.inc.php:30 libraries/db_routines.inc.php:32 -#: libraries/messages.inc.php:812 +#: libraries/messages.inc.php:808 msgid "Routines" msgstr "" -#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:811 +#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:807 msgid "Return type" msgstr "" #: libraries/db_structure.lib.php:57 libraries/display_tbl.lib.php:1848 -#: libraries/messages.inc.php:65 +#: libraries/messages.inc.php:61 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "" -#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:593 +#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:589 #: server_databases.php:142 tbl_printview.php:336 tbl_structure.php:683 msgid "Overhead" msgstr "Suspenso" #: libraries/dbi/mysql.dbi.lib.php:112 libraries/dbi/mysqli.dbi.lib.php:124 -#: libraries/messages.inc.php:176 +#: libraries/messages.inc.php:172 msgid "Connection for controluser as defined in your configuration failed." msgstr "" #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 -#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:855 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:851 msgid "The server is not responding" msgstr "" #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:1010 +#: libraries/messages.inc.php:1006 msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "" -#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:255 +#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:251 #: tbl_structure.php:609 msgid "Details..." msgstr "" -#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:143 +#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:139 #: main.php:91 user_password.php:111 user_password.php:129 msgid "Change password" msgstr "Alterar a palavra-passe" -#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:561 +#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:557 #: libraries/replication_gui.lib.php:341 server_privileges.php:768 msgid "No Password" msgstr "Sem palavra-passe" -#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:610 +#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:606 #: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60 #: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335 #: libraries/replication_gui.lib.php:345 server_privileges.php:757 @@ -2064,13 +2074,13 @@ msgstr "Sem palavra-passe" msgid "Password" msgstr "Palavra-passe" -#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:806 +#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:802 #: libraries/replication_gui.lib.php:349 libraries/replication_gui.lib.php:352 #: server_privileges.php:776 server_privileges.php:779 msgid "Re-type" msgstr "Confirma" -#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:608 +#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:604 msgid "Password Hashing" msgstr "" @@ -2078,92 +2088,92 @@ msgstr "" msgid "MySQL 4.0 compatible" msgstr "" -#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:353 +#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:349 #: libraries/replication_gui.lib.php:356 server_privileges.php:783 msgid "Generate Password" msgstr "" -#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:352 +#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:348 #: libraries/replication_gui.lib.php:359 server_privileges.php:786 #, fuzzy msgid "Generate" msgstr "Gerado por" #: libraries/display_create_database.lib.php:22 -#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:189 +#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:185 msgid "Create new database" msgstr "Criar nova base de dados" -#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:185 +#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:181 msgid "Create" msgstr "Criar" -#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:564 +#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:560 #: server_privileges.php:74 server_privileges.php:1388 #: server_replication.php:35 msgid "No Privileges" msgstr "Sem Privilégios" -#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:445 +#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:441 msgid "Table must have at least one field." msgstr "" -#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:190 +#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:186 #, php-format msgid "Create table on database %s" msgstr "Criar nova tabela na base de dados %s" -#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:577 +#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:573 msgid "Number of fields" msgstr "" -#: libraries/display_export.lib.php:42 libraries/messages.inc.php:124 +#: libraries/display_export.lib.php:42 libraries/messages.inc.php:120 msgid "Could not load export plugins, please check your installation!" msgstr "" -#: libraries/display_export.lib.php:107 libraries/messages.inc.php:277 +#: libraries/display_export.lib.php:107 libraries/messages.inc.php:273 #, php-format msgid "Dump %s row(s) starting at record # %s" msgstr "Exporta %s registos começando em %s." -#: libraries/display_export.lib.php:115 libraries/messages.inc.php:274 +#: libraries/display_export.lib.php:115 libraries/messages.inc.php:270 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:125 libraries/messages.inc.php:852 +#: libraries/display_export.lib.php:125 libraries/messages.inc.php:848 #: setup/lib/messages.inc.php:82 msgid "Save as file" msgstr "envia" -#: libraries/display_export.lib.php:134 libraries/messages.inc.php:828 +#: libraries/display_export.lib.php:134 libraries/messages.inc.php:824 #, php-format msgid "Save on server in %s directory" msgstr "Gravar no servidor na directoria %s" -#: libraries/display_export.lib.php:142 libraries/messages.inc.php:594 +#: libraries/display_export.lib.php:142 libraries/messages.inc.php:590 #: setup/lib/messages.inc.php:90 msgid "Overwrite existing file(s)" msgstr "Substituir o(s) ficheiro(s) existente(s)" -#: libraries/display_export.lib.php:148 libraries/messages.inc.php:330 +#: libraries/display_export.lib.php:148 libraries/messages.inc.php:326 msgid "File name template" msgstr "Nome do ficheiro modelo" -#: libraries/display_export.lib.php:152 libraries/messages.inc.php:327 +#: libraries/display_export.lib.php:152 libraries/messages.inc.php:323 #, fuzzy msgid "server name" msgstr "Nome do Utilizador" -#: libraries/display_export.lib.php:155 libraries/messages.inc.php:326 +#: libraries/display_export.lib.php:155 libraries/messages.inc.php:322 #, fuzzy msgid "database name" msgstr "Base de Dados" -#: libraries/display_export.lib.php:158 libraries/messages.inc.php:328 +#: libraries/display_export.lib.php:158 libraries/messages.inc.php:324 msgid "table name" msgstr "" -#: libraries/display_export.lib.php:162 libraries/messages.inc.php:329 +#: libraries/display_export.lib.php:162 libraries/messages.inc.php:325 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2171,24 +2181,24 @@ msgid "" "3$s. Other text will be kept as is." msgstr "" -#: libraries/display_export.lib.php:202 libraries/messages.inc.php:331 +#: libraries/display_export.lib.php:202 libraries/messages.inc.php:327 msgid "remember template" msgstr "Lembrar-se do modelo" #: libraries/display_export.lib.php:210 libraries/display_import.lib.php:178 -#: libraries/display_import.lib.php:191 libraries/messages.inc.php:145 +#: libraries/display_import.lib.php:191 libraries/messages.inc.php:141 #: libraries/sql_query_form.lib.php:549 msgid "Character set of the file:" msgstr "Configurar o Mapa de Caracteres do ficheiro:" -#: libraries/display_export.lib.php:235 libraries/messages.inc.php:166 +#: libraries/display_export.lib.php:235 libraries/messages.inc.php:162 #: setup/lib/messages.inc.php:84 msgid "Compression" 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/messages.inc.php:558 +#: libraries/export/sql.php:868 libraries/messages.inc.php:554 #: libraries/tbl_properties.inc.php:575 server_privileges.php:1836 #: server_processlist.php:75 msgid "None" @@ -2212,467 +2222,467 @@ msgstr "\"Compressão gzip\"" msgid "bzipped" msgstr "\"Compressão bzip\"" -#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1018 +#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1014 msgid "SQL compatibility mode" msgstr "" -#: libraries/display_import.lib.php:67 libraries/messages.inc.php:398 +#: libraries/display_import.lib.php:67 libraries/messages.inc.php:394 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " "browsers." msgstr "" -#: libraries/display_import.lib.php:77 libraries/messages.inc.php:406 +#: libraries/display_import.lib.php:77 libraries/messages.inc.php:402 msgid "The file is being processed, please be patient." msgstr "" -#: libraries/display_import.lib.php:99 libraries/messages.inc.php:408 +#: libraries/display_import.lib.php:99 libraries/messages.inc.php:404 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." msgstr "" -#: libraries/display_import.lib.php:126 libraries/messages.inc.php:333 +#: libraries/display_import.lib.php:126 libraries/messages.inc.php:329 msgid "File to import" msgstr "" -#: libraries/display_import.lib.php:137 libraries/messages.inc.php:486 +#: libraries/display_import.lib.php:137 libraries/messages.inc.php:482 #: libraries/sql_query_form.lib.php:524 msgid "Location of the text file" msgstr "Localização do arquivo de texto" -#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1203 +#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1199 msgid "File uploads are not allowed on this server." msgstr "" -#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1235 +#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1231 #: libraries/sql_query_form.lib.php:533 tbl_change.php:1028 msgid "The directory you set for upload work cannot be reached" msgstr "Não é possivel alcançar a directoria que configurou para fazer upload" -#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1236 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1232 #: libraries/sql_query_form.lib.php:536 tbl_change.php:1031 msgid "web server upload directory" msgstr "Directoria no servidor web para fazer upload" -#: libraries/display_import.lib.php:212 libraries/messages.inc.php:167 +#: libraries/display_import.lib.php:212 libraries/messages.inc.php:163 #, php-format msgid "Imported file compression will be automatically detected from: %s" msgstr "" -#: libraries/display_import.lib.php:219 libraries/messages.inc.php:600 +#: libraries/display_import.lib.php:219 libraries/messages.inc.php:596 msgid "Partial import" msgstr "" -#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1105 +#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1101 #, php-format msgid "" "Previous import timed out, after resubmitting will continue from position %d." msgstr "" -#: libraries/display_import.lib.php:232 libraries/messages.inc.php:51 +#: libraries/display_import.lib.php:232 libraries/messages.inc.php:47 msgid "" "Allow the interruption of an import in case the script detects it is close " "to the PHP timeout limit. This might be good way to import large files, " "however it can break transactions." msgstr "" -#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1004 +#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1000 #: setup/lib/messages.inc.php:161 msgid "Number of records (queries) to skip from start" msgstr "" -#: libraries/display_import.lib.php:255 libraries/messages.inc.php:396 +#: libraries/display_import.lib.php:255 libraries/messages.inc.php:392 #: setup/lib/messages.inc.php:160 msgid "Format of imported file" msgstr "" #: libraries/display_select_lang.lib.php:45 -#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:465 +#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:461 #: setup/frames/index.inc.php:70 msgid "Language" msgstr "" -#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:447 +#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:443 #, php-format msgid "%d is not valid row number." msgstr "" -#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:814 +#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:810 msgid "row(s) starting from record #" msgstr "registos começando em" -#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:817 +#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:813 msgid "horizontal" msgstr "horizontal" -#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:816 +#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:812 msgid "horizontal (rotated headers)" msgstr "horizontal (cabeçalhos rodados)" -#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:819 +#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:815 msgid "vertical" msgstr "vertical" -#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:818 +#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:814 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "em modo %s com cabeçalhos repetidos a cada %s células" -#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:495 +#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:491 msgid "This operation could take a long time. Proceed anyway?" msgstr "" -#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1012 +#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1008 msgid "Sort by key" msgstr "Ordenar por chave" #: libraries/display_tbl.lib.php:555 libraries/import.lib.php:1082 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:591 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:587 #: tbl_select.php:267 tbl_structure.php:754 #, fuzzy msgid "Options" msgstr "Operações" #: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:570 -#: libraries/messages.inc.php:601 +#: libraries/messages.inc.php:597 msgid "Partial Texts" msgstr "Texto parcial" #: libraries/display_tbl.lib.php:561 libraries/display_tbl.lib.php:574 -#: libraries/messages.inc.php:346 +#: libraries/messages.inc.php:342 msgid "Full Texts" msgstr "Texto inteiro" -#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:739 +#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:735 #, fuzzy msgid "Relational key" msgstr "Esquema relacional" -#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:738 +#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:734 msgid "Relational display field" msgstr "" -#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:872 +#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:868 msgid "Show binary contents" msgstr "" -#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:873 +#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:869 msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:871 +#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:867 msgid "Show binary contents as HEX" msgstr "" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:375 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:371 #: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320 msgid "Hide" msgstr "" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:508 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:504 #: libraries/tbl_properties.inc.php:144 transformation_overview.php:47 msgid "Browser transformation" msgstr "Transformação do navegador" #: libraries/display_tbl.lib.php:1126 libraries/display_tbl.lib.php:1130 -#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:308 +#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:304 msgid "Execute bookmarked query" msgstr "Executar um query marcado(do marcador)" #: libraries/display_tbl.lib.php:1145 libraries/display_tbl.lib.php:1157 -#: libraries/messages.inc.php:244 +#: libraries/messages.inc.php:240 msgid "The row has been deleted" msgstr "Registo eliminado" #: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056 -#: libraries/messages.inc.php:460 server_processlist.php:71 +#: libraries/messages.inc.php:456 server_processlist.php:71 #: tbl_row_action.php:64 msgid "Kill" msgstr "Termina" -#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:849 +#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:845 msgid "in query" msgstr "na pesquisa" -#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:881 +#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:877 msgid "Showing rows" msgstr "Mostrando registos " -#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1113 +#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1109 msgid "total" msgstr "total" -#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:727 +#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:723 #: sql.php:524 #, php-format msgid "Query took %01.4f sec" msgstr "O Query demorou %01.4f sec" -#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:135 +#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:131 #: 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:471 msgid "Change" msgstr "Muda" -#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:724 +#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:720 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:671 +#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:667 msgid "Print view (with full texts)" msgstr "Vista de impressão (com texto inteiro)" -#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:482 +#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:478 msgid "Link not found" msgstr "Link não encontrado" -#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1224 +#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1220 #: main.php:228 #, fuzzy msgid "Version information" msgstr "Informação de Login " -#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:423 +#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:419 msgid "Data home directory" msgstr "" -#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:424 +#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:420 msgid "The common part of the directory path for all InnoDB data files." msgstr "" -#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:422 +#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:418 #, fuzzy msgid "Data files" msgstr "Apenas dados" -#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:418 +#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:414 msgid "Autoextend increment" msgstr "" -#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:419 +#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:415 msgid "" " The increment size for extending the size of an autoextending tablespace " "when it becomes full." msgstr "" -#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:420 +#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:416 msgid "Buffer pool size" msgstr "" -#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:421 +#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:417 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." msgstr "" -#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:112 +#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:108 msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:426 +#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:422 #: server_status.php:306 msgid "InnoDB Status" msgstr "Estado da InnoDB" -#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:113 +#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:109 msgid "Buffer Pool Usage" msgstr "" -#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1114 +#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1110 #: server_databases.php:137 server_databases.php:305 server_status.php:414 #: server_status.php:475 server_status.php:496 tbl_printview.php:351 #: tbl_structure.php:697 msgid "Total" msgstr "Total" -#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:425 +#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:421 msgid "pages" msgstr "" -#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:343 +#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:339 msgid "Free pages" msgstr "" -#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:259 +#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:255 msgid "Dirty pages" msgstr "" -#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:230 +#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:226 msgid "Pages containing data" msgstr "" -#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:598 +#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:594 #, fuzzy msgid "Pages to be flushed" msgstr "A tabela %s foi fechada" -#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:119 +#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:115 msgid "Busy pages" msgstr "" -#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:467 +#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:463 msgid "Latched pages" msgstr "" -#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:111 +#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:107 msgid "Buffer Pool Activity" msgstr "" -#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:731 +#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:727 msgid "Read requests" msgstr "" -#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1244 +#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1240 msgid "Write requests" msgstr "" -#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:115 +#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:111 msgid "Read misses" msgstr "" -#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:117 +#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:113 msgid "Write waits" msgstr "" -#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:114 +#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:110 msgid "Read misses in %" msgstr "" -#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:116 +#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:112 msgid "Write waits in %" msgstr "" -#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:522 +#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:518 msgid "Data pointer size" msgstr "" -#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:523 +#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:519 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." msgstr "" -#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:528 +#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:524 msgid "Automatic recovery mode" msgstr "" -#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:529 +#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:525 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." msgstr "" -#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:527 +#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:523 msgid "Maximum size for temporary sort files" msgstr "" -#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:526 +#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:522 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " "INFILE)." msgstr "" -#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:525 +#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:521 msgid "Maximum size for temporary files on index creation" msgstr "" -#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:524 +#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:520 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " "method." msgstr "" -#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:531 +#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:527 msgid "Repair threads" msgstr "" -#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:530 +#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:526 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." msgstr "" -#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:533 +#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:529 msgid "Sort buffer size" msgstr "" -#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:532 +#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:528 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." msgstr "" -#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:620 +#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:616 msgid "Index cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:619 +#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:615 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." msgstr "" -#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:630 +#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:626 msgid "Record cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:629 +#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:625 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " "to the handle data (.xtd) and row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:624 +#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:620 msgid "Log cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:623 +#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:619 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:628 +#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:624 msgid "Log file threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:627 +#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:623 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:634 +#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:630 msgid "Transaction buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:633 +#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:629 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." msgstr "" -#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:611 +#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:607 msgid "Checkpoint frequency" msgstr "" -#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:612 +#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:608 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." msgstr "" -#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:615 +#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:611 msgid "Data log threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:616 +#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:612 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -2680,48 +2690,48 @@ msgid "" "that can be stored in the database." msgstr "" -#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:618 +#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:614 msgid "Garbage threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:617 +#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:613 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." msgstr "" -#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:622 +#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:618 msgid "Log buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:621 +#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:617 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " "required to write a data log." msgstr "" -#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:613 +#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:609 msgid "Data file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:614 +#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:610 msgid "The grow size of the handle data (.xtd) files." msgstr "" -#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:632 +#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:628 msgid "Row file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:631 +#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:627 msgid "The grow size of the row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:626 +#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:622 msgid "Log file count" msgstr "" -#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:625 +#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:621 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -2731,19 +2741,19 @@ msgstr "" #: libraries/export/htmlword.php:132 libraries/export/odt.php:168 #: libraries/export/sql.php:881 libraries/export/texytext.php:130 -#: libraries/messages.inc.php:275 +#: libraries/messages.inc.php:271 msgid "Dumping data for table" msgstr "Extraindo dados da tabela" #: libraries/export/htmlword.php:185 libraries/export/odt.php:238 #: libraries/export/sql.php:785 libraries/export/texytext.php:177 -#: libraries/messages.inc.php:1086 +#: libraries/messages.inc.php:1082 msgid "Table structure for table" msgstr "Estrutura da tabela" #: libraries/export/latex.php:125 libraries/export/sql.php:232 #: libraries/export/xml.php:102 libraries/header_printview.inc.php:57 -#: libraries/messages.inc.php:381 libraries/replication_gui.lib.php:63 +#: libraries/messages.inc.php:377 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:170 libraries/replication_gui.lib.php:265 #: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325 #: server_privileges.php:692 server_privileges.php:695 @@ -2755,192 +2765,192 @@ msgstr "Máquina" #: libraries/export/latex.php:130 libraries/export/sql.php:233 #: libraries/export/xml.php:107 libraries/header_printview.inc.php:59 -#: libraries/messages.inc.php:354 +#: libraries/messages.inc.php:350 msgid "Generation Time" msgstr "Data de Criação" #: libraries/export/latex.php:131 libraries/export/sql.php:235 -#: libraries/export/xml.php:108 libraries/messages.inc.php:864 main.php:186 +#: libraries/export/xml.php:108 libraries/messages.inc.php:860 main.php:186 msgid "Server version" msgstr "Versão do servidor" #: libraries/export/latex.php:132 libraries/export/sql.php:236 -#: libraries/export/xml.php:109 libraries/messages.inc.php:651 +#: libraries/export/xml.php:109 libraries/messages.inc.php:647 msgid "PHP Version" msgstr "versão do PHP" #: libraries/export/latex.php:201 libraries/export/sql.php:868 -#: libraries/messages.inc.php:226 server_databases.php:127 +#: libraries/messages.inc.php:222 server_databases.php:127 #: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317 #: tbl_structure.php:666 msgid "Data" msgstr "Dados" -#: libraries/export/odt.php:318 libraries/messages.inc.php:506 +#: libraries/export/odt.php:318 libraries/messages.inc.php:502 #: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "MIME-type" -#: libraries/export/sql.php:387 libraries/messages.inc.php:711 +#: libraries/export/sql.php:387 libraries/messages.inc.php:707 #, fuzzy msgid "Procedures" msgstr "Processos" -#: libraries/export/sql.php:401 libraries/messages.inc.php:348 +#: libraries/export/sql.php:401 libraries/messages.inc.php:344 #, fuzzy msgid "Functions" msgstr "Funções" -#: libraries/export/sql.php:618 libraries/messages.inc.php:174 +#: libraries/export/sql.php:618 libraries/messages.inc.php:170 #, fuzzy msgid "Constraints for dumped tables" msgstr "Limitadores para a tabela" -#: libraries/export/sql.php:627 libraries/messages.inc.php:175 +#: libraries/export/sql.php:627 libraries/messages.inc.php:171 msgid "Constraints for table" msgstr "Limitadores para a tabela" -#: libraries/export/sql.php:727 libraries/messages.inc.php:512 +#: libraries/export/sql.php:727 libraries/messages.inc.php:508 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/export/sql.php:739 libraries/messages.inc.php:743 +#: libraries/export/sql.php:739 libraries/messages.inc.php:739 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/export/sql.php:796 libraries/messages.inc.php:1178 +#: libraries/export/sql.php:796 libraries/messages.inc.php:1174 #: libraries/tbl_triggers.lib.php:19 msgid "Triggers" msgstr "" -#: libraries/export/sql.php:808 libraries/messages.inc.php:1046 +#: libraries/export/sql.php:808 libraries/messages.inc.php:1042 #, fuzzy msgid "Structure for view" msgstr "Somente estrutura" -#: libraries/export/sql.php:817 libraries/messages.inc.php:1029 +#: libraries/export/sql.php:817 libraries/messages.inc.php:1025 #, fuzzy msgid "Stand-in structure for view" msgstr "Somente estrutura" #: libraries/footer.inc.php:184 libraries/footer.inc.php:195 -#: libraries/footer.inc.php:198 libraries/messages.inc.php:586 +#: libraries/footer.inc.php:198 libraries/messages.inc.php:582 msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/header.inc.php:115 libraries/messages.inc.php:542 +#: libraries/header.inc.php:115 libraries/messages.inc.php:538 #, fuzzy msgid "New table" msgstr "Sem tablelas" #: libraries/header_printview.inc.php:50 libraries/header_printview.inc.php:55 -#: libraries/messages.inc.php:1024 +#: libraries/messages.inc.php:1020 msgid "SQL result" msgstr "Resultado SQL" -#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:350 +#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:346 msgid "Generated by" msgstr "Gerado por" #: libraries/header_printview.inc.php:63 libraries/import.lib.php:145 -#: libraries/messages.inc.php:820 navigation.php:652 navigation.php:674 +#: libraries/messages.inc.php:816 navigation.php:652 navigation.php:674 #: server_databases.php:122 tbl_printview.php:394 tbl_structure.php:366 #: tbl_structure.php:778 msgid "Rows" msgstr "Registos" -#: libraries/import.lib.php:150 libraries/messages.inc.php:285 sql.php:520 +#: libraries/import.lib.php:150 libraries/messages.inc.php:281 sql.php:520 #: tbl_change.php:181 tbl_get_field.php:35 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL não retornou nenhum registo." -#: libraries/import.lib.php:1078 libraries/messages.inc.php:399 +#: libraries/import.lib.php:1078 libraries/messages.inc.php:395 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1079 libraries/messages.inc.php:400 +#: libraries/import.lib.php:1079 libraries/messages.inc.php:396 msgid "View a structure`s contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1080 libraries/messages.inc.php:401 +#: libraries/import.lib.php:1080 libraries/messages.inc.php:397 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1081 libraries/messages.inc.php:402 +#: libraries/import.lib.php:1081 libraries/messages.inc.php:398 msgid "Edit its structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1084 libraries/messages.inc.php:362 +#: libraries/import.lib.php:1084 libraries/messages.inc.php:358 #, fuzzy msgid "Go to database" msgstr "Sem bases de dados" #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:869 +#: libraries/messages.inc.php:865 msgid "settings" msgstr "" -#: libraries/import.lib.php:1106 libraries/messages.inc.php:363 +#: libraries/import.lib.php:1106 libraries/messages.inc.php:359 #, fuzzy msgid "Go to table" msgstr "Sem bases de dados" -#: libraries/import.lib.php:1109 libraries/messages.inc.php:1047 +#: libraries/import.lib.php:1109 libraries/messages.inc.php:1043 #, fuzzy msgid "structure" msgstr "Estrutura" -#: libraries/import.lib.php:1115 libraries/messages.inc.php:364 +#: libraries/import.lib.php:1115 libraries/messages.inc.php:360 msgid "Go to view" msgstr "" #: libraries/import/csv.php:58 libraries/import/csv.php:70 #: libraries/import/csv.php:74 libraries/import/csv.php:78 -#: libraries/messages.inc.php:442 +#: libraries/messages.inc.php:438 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "" -#: libraries/import/csv.php:59 libraries/messages.inc.php:323 +#: libraries/import/csv.php:59 libraries/messages.inc.php:319 msgid "Fields terminated by" msgstr "Campos terminados por" -#: libraries/import/csv.php:71 libraries/messages.inc.php:320 +#: libraries/import/csv.php:71 libraries/messages.inc.php:316 msgid "Fields enclosed by" msgstr "Campos delimitados por" -#: libraries/import/csv.php:75 libraries/messages.inc.php:321 +#: libraries/import/csv.php:75 libraries/messages.inc.php:317 msgid "Fields escaped by" msgstr "Campos precedidos por" -#: libraries/import/csv.php:79 libraries/messages.inc.php:481 +#: libraries/import/csv.php:79 libraries/messages.inc.php:477 msgid "Lines terminated by" msgstr "Linhas terminadas por" -#: libraries/import/csv.php:119 libraries/messages.inc.php:439 +#: libraries/import/csv.php:119 libraries/messages.inc.php:435 #, php-format msgid "Invalid column (%s) specified!" msgstr "" #: libraries/import/csv.php:177 libraries/import/csv.php:424 -#: libraries/messages.inc.php:441 +#: libraries/messages.inc.php:437 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/import/csv.php:312 libraries/messages.inc.php:440 +#: libraries/import/csv.php:312 libraries/messages.inc.php:436 #, php-format msgid "Invalid field count in CSV input on line %d." msgstr "" -#: libraries/import/ldi.php:55 libraries/messages.inc.php:446 +#: libraries/import/ldi.php:55 libraries/messages.inc.php:442 msgid "This plugin does not support compressed imports!" msgstr "" #: libraries/import/xml.php:74 libraries/import/xml.php:130 -#: libraries/messages.inc.php:1247 +#: libraries/messages.inc.php:1243 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -2969,333 +2979,323 @@ msgstr "" msgid "ltr" msgstr "ltr" -#. l10n: Thousands separator -#: libraries/messages.inc.php:21 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: libraries/messages.inc.php:23 -msgid "." -msgstr "." - -#: libraries/messages.inc.php:25 server_status.php:461 +#: libraries/messages.inc.php:21 server_status.php:461 msgid "Aborted" msgstr "Abortado" -#: libraries/messages.inc.php:28 main.php:68 +#: libraries/messages.inc.php:24 main.php:68 #, fuzzy msgid "Actions" msgstr "Acções" -#: libraries/messages.inc.php:34 libraries/tbl_properties.inc.php:780 +#: libraries/messages.inc.php:30 libraries/tbl_properties.inc.php:780 #: tbl_structure.php:543 #, fuzzy, php-format msgid "Add %s field(s)" msgstr "Adiciona novo campo" -#: libraries/messages.inc.php:35 +#: libraries/messages.inc.php:31 msgid "Add custom comment into header (\\n splits lines)" msgstr "" -#: libraries/messages.inc.php:36 +#: libraries/messages.inc.php:32 msgid "Add into comments" msgstr "Adicionar aos comentários" -#: libraries/messages.inc.php:37 tbl_structure.php:541 +#: libraries/messages.inc.php:33 tbl_structure.php:541 msgid "Add new field" msgstr "Adiciona novo campo" -#: libraries/messages.inc.php:38 server_privileges.php:1886 +#: libraries/messages.inc.php:34 server_privileges.php:1886 msgid "Add privileges on the following database" msgstr "Adicionar privilégios na base de dados seguinte" -#: libraries/messages.inc.php:39 server_privileges.php:1907 +#: libraries/messages.inc.php:35 server_privileges.php:1907 msgid "Add privileges on the following table" msgstr "Todos privilégios na tabela seguinte" -#: libraries/messages.inc.php:40 tbl_select.php:288 +#: libraries/messages.inc.php:36 tbl_select.php:288 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Condição de Pesquisa (Complemento da cláusula \"where\"):" -#: libraries/messages.inc.php:41 tbl_indexes.php:251 +#: libraries/messages.inc.php:37 tbl_indexes.php:251 #, php-format msgid "Add to index  %s column(s)" msgstr "Adicionar ao índice  %s coluna(s)" -#: libraries/messages.inc.php:42 server_privileges.php:1570 +#: libraries/messages.inc.php:38 server_privileges.php:1570 #: server_privileges.php:1594 server_privileges.php:1988 #: server_privileges.php:2177 msgid "Add a new User" msgstr "Acrescenta um utilizador" -#: libraries/messages.inc.php:43 server_privileges.php:931 +#: libraries/messages.inc.php:39 server_privileges.php:931 msgid "You have added a new user." msgstr "Acrescentou um novo utilizador." -#: libraries/messages.inc.php:44 server_privileges.php:571 +#: libraries/messages.inc.php:40 server_privileges.php:571 msgid "Administration" msgstr "Administração" -#: libraries/messages.inc.php:45 tbl_structure.php:557 +#: libraries/messages.inc.php:41 tbl_structure.php:557 #, php-format msgid "After %s" msgstr "Depois %s" -#: libraries/messages.inc.php:46 tbl_change.php:1147 +#: libraries/messages.inc.php:42 tbl_change.php:1147 msgid "Go back to previous page" msgstr "Voltar atrás" -#: libraries/messages.inc.php:47 tbl_change.php:1148 +#: libraries/messages.inc.php:43 tbl_change.php:1148 msgid "Insert another new row" msgstr "Inserir novo registo" -#: libraries/messages.inc.php:48 tbl_change.php:1160 +#: libraries/messages.inc.php:44 tbl_change.php:1160 msgid "Edit next row" msgstr "" -#: libraries/messages.inc.php:49 tbl_change.php:1152 +#: libraries/messages.inc.php:45 tbl_change.php:1152 #, fuzzy msgid "Go back to this page" msgstr "Voltar atrás" -#: libraries/messages.inc.php:50 querywindow.php:115 +#: libraries/messages.inc.php:46 querywindow.php:115 msgid "All" msgstr "Todas" -#: libraries/messages.inc.php:53 tbl_operations.php:249 +#: libraries/messages.inc.php:49 tbl_operations.php:249 msgid "Alter table order by" msgstr "Alterar a ordem da tabela por" -#: libraries/messages.inc.php:54 tbl_operations.php:660 +#: libraries/messages.inc.php:50 tbl_operations.php:660 msgid "Analyze" msgstr "" -#: libraries/messages.inc.php:57 +#: libraries/messages.inc.php:53 #, fuzzy msgid "and" msgstr "E" -#: libraries/messages.inc.php:59 pmd_general.php:87 +#: libraries/messages.inc.php:55 pmd_general.php:87 msgid "Angular links" msgstr "" -#: libraries/messages.inc.php:60 tbl_structure.php:401 tbl_structure.php:415 +#: libraries/messages.inc.php:56 tbl_structure.php:401 tbl_structure.php:415 #: tbl_structure.php:429 #, php-format msgid "An index has been added on %s" msgstr "Um índice foi adicionado a %s" -#: libraries/messages.inc.php:61 server_privileges.php:1521 +#: libraries/messages.inc.php:57 server_privileges.php:1521 #: server_privileges.php:2123 msgid "Any" msgstr "Todos" -#: libraries/messages.inc.php:62 libraries/replication_gui.lib.php:298 +#: libraries/messages.inc.php:58 libraries/replication_gui.lib.php:298 #: server_privileges.php:725 msgid "Any host" msgstr "Qualquer máquina" -#: libraries/messages.inc.php:63 libraries/replication_gui.lib.php:250 +#: libraries/messages.inc.php:59 libraries/replication_gui.lib.php:250 #: server_privileges.php:677 msgid "Any user" msgstr "Qualquer utilizador" -#: libraries/messages.inc.php:64 server_synchronize.php:449 +#: libraries/messages.inc.php:60 server_synchronize.php:449 #: server_synchronize.php:894 msgid "Apply Selected Changes" msgstr "" -#: libraries/messages.inc.php:66 tbl_structure.php:386 +#: libraries/messages.inc.php:62 tbl_structure.php:386 #, php-format msgid "A primary key has been added on %s" msgstr "Uma chave primária foi adicionada a %s" -#: libraries/messages.inc.php:67 libraries/mysql_charsets.lib.php:368 +#: libraries/messages.inc.php:63 libraries/mysql_charsets.lib.php:368 msgid "Arabic" msgstr "Árabe" -#: libraries/messages.inc.php:68 libraries/mysql_charsets.lib.php:359 +#: libraries/messages.inc.php:64 libraries/mysql_charsets.lib.php:359 msgid "Armenian" msgstr "Arménio" -#: libraries/messages.inc.php:70 libraries/tbl_properties.inc.php:394 +#: libraries/messages.inc.php:66 libraries/tbl_properties.inc.php:394 msgid "As defined:" msgstr "" -#: libraries/messages.inc.php:71 tbl_structure.php:556 +#: libraries/messages.inc.php:67 tbl_structure.php:556 msgid "At Beginning of Table" msgstr "No Início da Tabela" -#: libraries/messages.inc.php:72 tbl_structure.php:555 +#: libraries/messages.inc.php:68 tbl_structure.php:555 msgid "At End of Table" msgstr "No Fim da Tabela" -#: libraries/messages.inc.php:73 libraries/tbl_properties.inc.php:108 +#: libraries/messages.inc.php:69 libraries/tbl_properties.inc.php:108 #: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:144 #: tbl_structure.php:180 msgid "Attributes" msgstr "Atributos" -#: libraries/messages.inc.php:74 pdf_pages.php:303 pdf_pages.php:306 +#: libraries/messages.inc.php:70 pdf_pages.php:303 pdf_pages.php:306 msgid "Automatic layout" msgstr "Layout automático" -#: libraries/messages.inc.php:77 libraries/mysql_charsets.lib.php:354 +#: libraries/messages.inc.php:73 libraries/mysql_charsets.lib.php:354 msgid "Baltic" msgstr "Báltico" -#: libraries/messages.inc.php:78 libraries/sqlparser.lib.php:175 +#: libraries/messages.inc.php:74 libraries/sqlparser.lib.php:175 msgid "BEGIN CUT" msgstr "" -#: libraries/messages.inc.php:79 libraries/sqlparser.lib.php:179 +#: libraries/messages.inc.php:75 libraries/sqlparser.lib.php:179 msgid "BEGIN RAW" msgstr "" -#: libraries/messages.inc.php:80 libraries/mysql_charsets.lib.php:201 +#: libraries/messages.inc.php:76 libraries/mysql_charsets.lib.php:201 #: libraries/mysql_charsets.lib.php:402 tbl_change.php:518 msgid "Binary" msgstr " Binário " -#: libraries/messages.inc.php:81 tbl_change.php:894 +#: libraries/messages.inc.php:77 tbl_change.php:894 msgid "Binary - do not edit" msgstr " Binário - não editar " -#: libraries/messages.inc.php:82 libraries/server_links.inc.php:76 +#: libraries/messages.inc.php:78 libraries/server_links.inc.php:76 #: server_binlog.php:110 server_status.php:253 test/theme.php:121 #, fuzzy msgid "Binary log" msgstr " Binário " -#: libraries/messages.inc.php:83 server_binlog.php:217 +#: libraries/messages.inc.php:79 server_binlog.php:217 #, fuzzy msgid "Event type" msgstr "Tipo de Exportação" -#: libraries/messages.inc.php:84 server_binlog.php:220 +#: libraries/messages.inc.php:80 server_binlog.php:220 #, fuzzy msgid "Information" msgstr "Informação de Login " -#: libraries/messages.inc.php:85 server_binlog.php:215 +#: libraries/messages.inc.php:81 server_binlog.php:215 msgid "Log name" msgstr "" -#: libraries/messages.inc.php:86 server_binlog.php:219 +#: libraries/messages.inc.php:82 server_binlog.php:219 msgid "Original position" msgstr "" -#: libraries/messages.inc.php:87 server_binlog.php:216 +#: libraries/messages.inc.php:83 server_binlog.php:216 msgid "Position" msgstr "" -#: libraries/messages.inc.php:88 libraries/replication_gui.lib.php:169 +#: libraries/messages.inc.php:84 libraries/replication_gui.lib.php:169 #: server_binlog.php:218 #, fuzzy msgid "Server ID" msgstr "Servidor" -#: libraries/messages.inc.php:92 +#: libraries/messages.inc.php:88 #, fuzzy msgctxt "$strBLOBRepositoryDisabled" msgid "Disabled" msgstr "Desactidado" -#: libraries/messages.inc.php:95 +#: libraries/messages.inc.php:91 #, fuzzy msgctxt "$strBLOBRepositoryEnabled" msgid "Enabled" msgstr "Activado" -#: libraries/messages.inc.php:97 tbl_change.php:888 +#: libraries/messages.inc.php:93 tbl_change.php:888 msgid "Remove BLOB Repository Reference" msgstr "" -#: libraries/messages.inc.php:98 +#: libraries/messages.inc.php:94 #, fuzzy msgctxt "$strBLOBRepositoryRepair" msgid "Repair" msgstr "Reparar tabela" -#: libraries/messages.inc.php:99 tbl_change.php:987 +#: libraries/messages.inc.php:95 tbl_change.php:987 msgid "Upload to BLOB repository" msgstr "" -#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:359 +#: libraries/messages.inc.php:96 libraries/sql_query_form.lib.php:359 #: sql.php:677 msgid "Let every user access this bookmark" msgstr "Deixar todos os utilizadores acederem a este marcador" -#: libraries/messages.inc.php:103 sql.php:671 +#: libraries/messages.inc.php:99 sql.php:671 msgid "Label" msgstr "Etiqueta" -#: libraries/messages.inc.php:104 libraries/sql_query_form.lib.php:433 +#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:433 msgid "Bookmarked SQL query" msgstr "Comandos SQL marcados" -#: libraries/messages.inc.php:105 libraries/sql_query_form.lib.php:365 +#: libraries/messages.inc.php:101 libraries/sql_query_form.lib.php:365 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/messages.inc.php:106 libraries/sql_query_form.lib.php:352 +#: libraries/messages.inc.php:102 libraries/sql_query_form.lib.php:352 #: sql.php:665 sql.php:666 sql.php:683 msgid "Bookmark this SQL query" msgstr "Marcar este comando SQL" -#: libraries/messages.inc.php:107 libraries/sql_query_form.lib.php:466 +#: libraries/messages.inc.php:103 libraries/sql_query_form.lib.php:466 msgid "View only" msgstr "Ver apenas" -#: libraries/messages.inc.php:109 tbl_structure.php:161 +#: libraries/messages.inc.php:105 tbl_structure.php:161 msgid "Browse distinct values" msgstr "" -#: libraries/messages.inc.php:110 tbl_change.php:252 tbl_select.php:27 +#: libraries/messages.inc.php:106 tbl_change.php:252 tbl_select.php:27 #: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34 msgid "Browse foreign values" msgstr "" -#: libraries/messages.inc.php:118 libraries/mysql_charsets.lib.php:213 +#: libraries/messages.inc.php:114 libraries/mysql_charsets.lib.php:213 msgid "Bulgarian" msgstr "Búlgaro" -#: libraries/messages.inc.php:120 +#: libraries/messages.inc.php:116 msgid "\"bzipped\"" msgstr "\"Compressão bzip\"" -#: libraries/messages.inc.php:122 +#: libraries/messages.inc.php:118 msgid "Calendar" msgstr "" -#: libraries/messages.inc.php:129 tbl_indexes.php:75 +#: libraries/messages.inc.php:125 tbl_indexes.php:75 msgid "Can't rename index to PRIMARY!" msgstr "Impossível renomear índice para PRIMARY!" -#: libraries/messages.inc.php:132 libraries/mysql_charsets.lib.php:223 +#: libraries/messages.inc.php:128 libraries/mysql_charsets.lib.php:223 #: libraries/mysql_charsets.lib.php:409 msgid "case-insensitive" msgstr "Sensível a maiúsculas/minúculas" -#: libraries/messages.inc.php:133 libraries/mysql_charsets.lib.php:226 +#: libraries/messages.inc.php:129 libraries/mysql_charsets.lib.php:226 #: libraries/mysql_charsets.lib.php:411 msgid "case-sensitive" msgstr "Não-sensível a a maiúsculas/minúculas" -#: libraries/messages.inc.php:134 libraries/mysql_charsets.lib.php:332 +#: libraries/messages.inc.php:130 libraries/mysql_charsets.lib.php:332 msgid "Central European" msgstr "Europeu Central" -#: libraries/messages.inc.php:136 server_privileges.php:1969 +#: libraries/messages.inc.php:132 server_privileges.php:1969 msgid "... keep the old one." msgstr "... manter o antigo." -#: libraries/messages.inc.php:137 server_privileges.php:1967 +#: libraries/messages.inc.php:133 server_privileges.php:1967 msgid "Create a new user with the same privileges and ..." msgstr "Criar um novo utilizador com os mesmo privilégios e ..." -#: libraries/messages.inc.php:138 server_privileges.php:1972 +#: libraries/messages.inc.php:134 server_privileges.php:1972 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -3303,250 +3303,250 @@ msgstr "" " ... apagar o antigo das tabelas do utilizador e depois recarregue os " "privilégios." -#: libraries/messages.inc.php:139 server_privileges.php:1970 +#: libraries/messages.inc.php:135 server_privileges.php:1970 msgid " ... delete the old one from the user tables." msgstr " ... apagar o antigo das tabelas do utilizador." -#: libraries/messages.inc.php:140 server_privileges.php:1971 +#: libraries/messages.inc.php:136 server_privileges.php:1971 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "" " ... revogar todos os privilégios activos do antigo e a seguir apagá-lo." -#: libraries/messages.inc.php:141 server_privileges.php:1964 +#: libraries/messages.inc.php:137 server_privileges.php:1964 msgid "Change Login Information / Copy User" msgstr "Mudar a informação de login / Copiar Utilizador" -#: libraries/messages.inc.php:144 libraries/mysql_charsets.lib.php:107 +#: libraries/messages.inc.php:140 libraries/mysql_charsets.lib.php:107 msgid "Charset" msgstr "Mapa de Caractere" -#: libraries/messages.inc.php:146 server_collations.php:40 +#: libraries/messages.inc.php:142 server_collations.php:40 msgid "Character Sets and Collations" msgstr "" -#: libraries/messages.inc.php:147 libraries/server_links.inc.php:57 +#: libraries/messages.inc.php:143 libraries/server_links.inc.php:57 #: test/theme.php:109 msgid "Charsets" msgstr "Mapas de Caracteres" -#: libraries/messages.inc.php:149 tbl_operations.php:661 +#: libraries/messages.inc.php:145 tbl_operations.php:661 #, fuzzy msgid "Check" msgstr "Checo" -#: libraries/messages.inc.php:151 server_databases.php:293 +#: libraries/messages.inc.php:147 server_databases.php:293 #: server_databases.php:294 msgid "Check Privileges" msgstr "Verificar Privilégios" -#: libraries/messages.inc.php:152 server_databases.php:289 +#: libraries/messages.inc.php:148 server_databases.php:289 #, php-format msgid "Check privileges for database "%s"." msgstr "Verificar Privilégios para a Base de Dados "%s"." -#: libraries/messages.inc.php:154 pdf_pages.php:261 +#: libraries/messages.inc.php:150 pdf_pages.php:261 msgid "Please choose a page to edit" msgstr "Escolha uma Página para editar" -#: libraries/messages.inc.php:157 +#: libraries/messages.inc.php:153 msgid "Displaying Column Comments" msgstr "Mostrando comentários das Colunas" -#: libraries/messages.inc.php:159 pdf_pages.php:483 view_create.php:148 +#: libraries/messages.inc.php:155 pdf_pages.php:483 view_create.php:148 msgid "Column names" msgstr "Nome dos Campos" -#: libraries/messages.inc.php:160 server_privileges.php:1685 +#: libraries/messages.inc.php:156 server_privileges.php:1685 msgid "Column-specific privileges" msgstr "Privilégios específicos da Coluna" -#: libraries/messages.inc.php:164 +#: libraries/messages.inc.php:160 msgid "MySQL 4.0 compatible" msgstr "" -#: libraries/messages.inc.php:165 +#: libraries/messages.inc.php:161 msgid "Complete inserts" msgstr "Instrucções de inserção completas" -#: libraries/messages.inc.php:168 +#: libraries/messages.inc.php:164 #, php-format msgid "Could not load default configuration from: \"%1$s\"" msgstr "" -#: libraries/messages.inc.php:169 main.php:306 +#: libraries/messages.inc.php:165 main.php:306 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: libraries/messages.inc.php:171 pdf_schema.php:672 +#: libraries/messages.inc.php:167 pdf_schema.php:672 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Configure as cordenadas para a tabela %s" -#: libraries/messages.inc.php:173 server_status.php:433 +#: libraries/messages.inc.php:169 server_status.php:433 msgid "Connections" msgstr "Ligações" -#: libraries/messages.inc.php:179 tbl_operations.php:509 +#: libraries/messages.inc.php:175 tbl_operations.php:509 msgid "Copy table to (database.table):" msgstr "Copia tabela para (base-de-dados.tabela):" -#: libraries/messages.inc.php:180 tbl_move_copy.php:58 +#: libraries/messages.inc.php:176 tbl_move_copy.php:58 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabela %s copiada para %s." -#: libraries/messages.inc.php:181 tbl_move_copy.php:48 +#: libraries/messages.inc.php:177 tbl_move_copy.php:48 msgid "Can't copy table to same one!" msgstr "Não é possivel copiar a tabela para o mesmo!" -#: libraries/messages.inc.php:182 server_synchronize.php:94 +#: libraries/messages.inc.php:178 server_synchronize.php:94 msgid "Could not connect to the source" msgstr "" -#: libraries/messages.inc.php:183 server_synchronize.php:97 +#: libraries/messages.inc.php:179 server_synchronize.php:97 msgid "Could not connect to the target" msgstr "" -#: libraries/messages.inc.php:184 server_processlist.php:24 +#: libraries/messages.inc.php:180 server_processlist.php:24 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: libraries/messages.inc.php:187 +#: libraries/messages.inc.php:183 #, php-format msgid "Create an index on %s columns" msgstr "Criar um índice com %s coluna(s)" -#: libraries/messages.inc.php:188 tbl_indexes.php:160 +#: libraries/messages.inc.php:184 tbl_indexes.php:160 msgid "Create a new index" msgstr "Criar um novo índice" -#: libraries/messages.inc.php:191 pdf_pages.php:297 pmd_pdf.php:114 +#: libraries/messages.inc.php:187 pdf_pages.php:297 pmd_pdf.php:114 msgid "Create a page" msgstr "Criar uma Página nova" -#: libraries/messages.inc.php:192 +#: libraries/messages.inc.php:188 msgid "Creation of PDFs" msgstr "Criação de PDFs" -#: libraries/messages.inc.php:193 pmd_general.php:74 pmd_general.php:306 +#: libraries/messages.inc.php:189 pmd_general.php:74 pmd_general.php:306 #, fuzzy msgid "Create relation" msgstr "Versão do servidor" -#: libraries/messages.inc.php:194 pmd_general.php:71 +#: libraries/messages.inc.php:190 pmd_general.php:71 #: server_synchronize.php:429 server_synchronize.php:872 #, fuzzy msgid "Create table" msgstr "Criar uma Página nova" -#: libraries/messages.inc.php:195 +#: libraries/messages.inc.php:191 #, fuzzy msgctxt "$strCreateTableShort" msgid "Create table" msgstr "Criar uma Página nova" -#: libraries/messages.inc.php:196 server_privileges.php:1994 +#: libraries/messages.inc.php:192 server_privileges.php:1994 msgid "Database for user" msgstr "" -#: libraries/messages.inc.php:197 server_privileges.php:1999 +#: libraries/messages.inc.php:193 server_privileges.php:1999 msgid "Create database with same name and grant all privileges" msgstr "" -#: libraries/messages.inc.php:198 +#: libraries/messages.inc.php:194 #, fuzzy msgctxt "$strCreateUserDatabaseNone" msgid "None" msgstr "Nenhum" -#: libraries/messages.inc.php:199 server_privileges.php:2003 +#: libraries/messages.inc.php:195 server_privileges.php:2003 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "Verificar Privilégios para a Base de Dados "%s"." -#: libraries/messages.inc.php:200 server_privileges.php:2000 +#: libraries/messages.inc.php:196 server_privileges.php:2000 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: libraries/messages.inc.php:201 +#: libraries/messages.inc.php:197 msgid "Creation/Update/Check dates" msgstr "Datas de Criação/Actualização/verificação" -#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:229 +#: libraries/messages.inc.php:199 libraries/mysql_charsets.lib.php:229 msgid "Croatian" msgstr "Croata" -#: libraries/messages.inc.php:204 +#: libraries/messages.inc.php:200 msgid "CSV" msgstr "Dados CSV" -#: libraries/messages.inc.php:205 libraries/server_synchronize.lib.php:1343 +#: libraries/messages.inc.php:201 libraries/server_synchronize.lib.php:1343 #: libraries/server_synchronize.lib.php:1369 msgid "Current server" msgstr "" -#: libraries/messages.inc.php:206 main.php:159 +#: libraries/messages.inc.php:202 main.php:159 msgid "Custom color" msgstr "" -#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:365 +#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:365 msgid "Cyrillic" msgstr "" -#: libraries/messages.inc.php:208 libraries/mysql_charsets.lib.php:232 +#: libraries/messages.inc.php:204 libraries/mysql_charsets.lib.php:232 msgid "Czech" msgstr "Checo" -#: libraries/messages.inc.php:209 libraries/mysql_charsets.lib.php:383 +#: libraries/messages.inc.php:205 libraries/mysql_charsets.lib.php:383 msgid "Czech-Slovak" msgstr "Checo-Eslovaco" -#: libraries/messages.inc.php:211 libraries/mysql_charsets.lib.php:235 +#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:235 msgid "Danish" msgstr "Dinamarquês" -#: libraries/messages.inc.php:214 +#: libraries/messages.inc.php:210 msgid "Database export options" msgstr "Opções de exportação da Base de Dados" -#: libraries/messages.inc.php:217 server_synchronize.php:122 +#: libraries/messages.inc.php:213 server_synchronize.php:122 #: server_synchronize.php:125 tbl_create.php:82 tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "" -#: libraries/messages.inc.php:219 server_databases.php:63 +#: libraries/messages.inc.php:215 server_databases.php:63 #, php-format msgid "%s databases have been dropped successfully." msgstr "As Bases de Dados %s foram apagadas com sucesso." -#: libraries/messages.inc.php:220 libraries/server_synchronize.lib.php:1341 +#: libraries/messages.inc.php:216 libraries/server_synchronize.lib.php:1341 #: server_synchronize.php:1110 #, fuzzy msgid "Source database" msgstr "Pesquisar na Base de Dados" -#: libraries/messages.inc.php:221 server_databases.php:88 +#: libraries/messages.inc.php:217 server_databases.php:88 msgid "Databases statistics" msgstr "Estatísticas das bases de dados" -#: libraries/messages.inc.php:222 server_databases.php:362 +#: libraries/messages.inc.php:218 server_databases.php:362 #: server_databases.php:363 msgid "Disable Statistics" msgstr "Desactivar Estatísticas" -#: libraries/messages.inc.php:223 server_databases.php:358 +#: libraries/messages.inc.php:219 server_databases.php:358 #: server_databases.php:359 msgid "Enable Statistics" msgstr "Activar Estatísticas" -#: libraries/messages.inc.php:224 server_databases.php:366 +#: libraries/messages.inc.php:220 server_databases.php:366 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -3554,214 +3554,214 @@ msgstr "" "Nota: Activar as estatísticas aqui pode causar um grande volume de tráfego " "entre o servidor web e o de MySQL." -#: libraries/messages.inc.php:225 libraries/server_synchronize.lib.php:1367 +#: libraries/messages.inc.php:221 libraries/server_synchronize.lib.php:1367 #: server_synchronize.php:1112 #, fuzzy msgid "Target database" msgstr "Pesquisar na Base de Dados" -#: libraries/messages.inc.php:228 server_synchronize.php:425 +#: libraries/messages.inc.php:224 server_synchronize.php:425 #: server_synchronize.php:868 msgid "Data Difference" msgstr "" -#: libraries/messages.inc.php:231 server_synchronize.php:272 +#: libraries/messages.inc.php:227 server_synchronize.php:272 msgid "Data Synchronization" msgstr "" -#: libraries/messages.inc.php:235 server_privileges.php:526 +#: libraries/messages.inc.php:231 server_privileges.php:526 #: server_privileges.php:1679 msgid "Database-specific privileges" msgstr "Privilégios específicos da Base de Dados" -#: libraries/messages.inc.php:237 server_privileges.php:2136 +#: libraries/messages.inc.php:233 server_privileges.php:2136 msgid "database-specific" msgstr "Especifico da Base de Dados" -#: libraries/messages.inc.php:240 libraries/tbl_properties.inc.php:106 +#: libraries/messages.inc.php:236 libraries/tbl_properties.inc.php:106 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" msgstr "" -#: libraries/messages.inc.php:241 tbl_operations.php:589 +#: libraries/messages.inc.php:237 tbl_operations.php:589 msgid "Defragment table" msgstr "" -#: libraries/messages.inc.php:242 +#: libraries/messages.inc.php:238 #, fuzzy msgid "Use delayed inserts" msgstr "Instrucções de inserção múltiplas" -#: libraries/messages.inc.php:245 server_privileges.php:1243 +#: libraries/messages.inc.php:241 server_privileges.php:1243 msgid "No users selected for deleting!" msgstr "" -#: libraries/messages.inc.php:246 pmd_general.php:372 +#: libraries/messages.inc.php:242 pmd_general.php:372 msgid "Delete relation" msgstr "" -#: libraries/messages.inc.php:248 server_privileges.php:1232 +#: libraries/messages.inc.php:244 server_privileges.php:1232 #, php-format msgid "Deleting %s" msgstr "A apagar %s" -#: libraries/messages.inc.php:249 libraries/sql_query_form.lib.php:388 +#: libraries/messages.inc.php:245 libraries/sql_query_form.lib.php:388 msgid "Delimiter" msgstr "" -#: libraries/messages.inc.php:250 pdf_pages.php:506 +#: libraries/messages.inc.php:246 pdf_pages.php:506 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" msgstr "" -#: libraries/messages.inc.php:254 pmd_help.php:29 +#: libraries/messages.inc.php:250 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." msgstr "" -#: libraries/messages.inc.php:256 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:252 libraries/mysql_charsets.lib.php:247 msgid "dictionary" msgstr "dicionário" -#: libraries/messages.inc.php:257 libraries/server_synchronize.lib.php:1348 +#: libraries/messages.inc.php:253 libraries/server_synchronize.lib.php:1348 msgid "Difference" msgstr "" -#: libraries/messages.inc.php:258 pmd_general.php:87 +#: libraries/messages.inc.php:254 pmd_general.php:87 msgid "Direct links" msgstr "" -#: libraries/messages.inc.php:261 +#: libraries/messages.inc.php:257 msgid "Disable foreign key checks" msgstr "" -#: libraries/messages.inc.php:262 +#: libraries/messages.inc.php:258 msgid "Display Features" msgstr "Mostrar Características" -#: libraries/messages.inc.php:263 tbl_select.php:301 +#: libraries/messages.inc.php:259 tbl_select.php:301 msgid "Display order:" msgstr "Ordem de visualização:" -#: libraries/messages.inc.php:265 tbl_select.php:132 +#: libraries/messages.inc.php:261 tbl_select.php:132 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Faça uma \"pesquisa por formulário\" (caractere universal: \"%\")" -#: libraries/messages.inc.php:266 +#: libraries/messages.inc.php:262 msgid "DocSQL" msgstr "" -#: libraries/messages.inc.php:268 +#: libraries/messages.inc.php:264 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/messages.inc.php:273 server_privileges.php:1579 +#: libraries/messages.inc.php:269 server_privileges.php:1579 #: server_privileges.php:1580 server_privileges.php:1581 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." -#: libraries/messages.inc.php:278 tbl_printview.php:382 tbl_structure.php:743 +#: libraries/messages.inc.php:274 tbl_printview.php:382 tbl_structure.php:743 msgid "dynamic" msgstr "dinâmico" -#: libraries/messages.inc.php:282 server_privileges.php:1324 +#: libraries/messages.inc.php:278 server_privileges.php:1324 #: server_privileges.php:1610 msgid "Edit Privileges" msgstr "Alterar Privilegios" -#: libraries/messages.inc.php:283 tbl_printview.php:341 tbl_structure.php:688 +#: libraries/messages.inc.php:279 tbl_printview.php:341 tbl_structure.php:688 msgid "Effective" msgstr "Em uso" -#: libraries/messages.inc.php:286 libraries/relation.lib.php:100 +#: libraries/messages.inc.php:282 libraries/relation.lib.php:100 msgid "Enabled" msgstr "Activado" -#: libraries/messages.inc.php:287 +#: libraries/messages.inc.php:283 msgid "Enclose export in a transaction" msgstr "" -#: libraries/messages.inc.php:288 libraries/sqlparser.lib.php:177 +#: libraries/messages.inc.php:284 libraries/sqlparser.lib.php:177 msgid "END CUT" msgstr "" -#: libraries/messages.inc.php:290 libraries/sqlparser.lib.php:183 +#: libraries/messages.inc.php:286 libraries/sqlparser.lib.php:183 msgid "END RAW" msgstr "" -#: libraries/messages.inc.php:293 libraries/server_links.inc.php:61 +#: libraries/messages.inc.php:289 libraries/server_links.inc.php:61 #: test/theme.php:113 msgid "Engines" msgstr "" -#: libraries/messages.inc.php:295 libraries/mysql_charsets.lib.php:238 +#: libraries/messages.inc.php:291 libraries/mysql_charsets.lib.php:238 msgid "English" msgstr "Inglês" -#: libraries/messages.inc.php:296 server_privileges.php:393 +#: libraries/messages.inc.php:292 server_privileges.php:393 #: server_privileges.php:535 server_privileges.php:1501 msgid " Note: MySQL privilege names are expressed in English " msgstr " Nota: os nomes dos privilégios do MySQL são em Inglês " -#: libraries/messages.inc.php:298 libraries/zip_extension.lib.php:49 +#: libraries/messages.inc.php:294 libraries/zip_extension.lib.php:49 #: libraries/zip_extension.lib.php:51 libraries/zip_extension.lib.php:66 msgid "Error in ZIP archive:" msgstr "" -#: libraries/messages.inc.php:303 libraries/mysql_charsets.lib.php:241 +#: libraries/messages.inc.php:299 libraries/mysql_charsets.lib.php:241 msgid "Esperanto" msgstr "" -#: libraries/messages.inc.php:304 libraries/mysql_charsets.lib.php:244 +#: libraries/messages.inc.php:300 libraries/mysql_charsets.lib.php:244 msgid "Estonian" msgstr "Estoniano" -#: libraries/messages.inc.php:305 libraries/tbl_triggers.lib.php:29 +#: libraries/messages.inc.php:301 libraries/tbl_triggers.lib.php:29 #, fuzzy msgid "Event" msgstr "Enviado" -#: libraries/messages.inc.php:307 +#: libraries/messages.inc.php:303 msgid "Excel edition" msgstr "Edição Excel" -#: libraries/messages.inc.php:311 pmd_pdf.php:85 +#: libraries/messages.inc.php:307 pmd_pdf.php:85 msgid "Export/Import to scale" msgstr "" -#: libraries/messages.inc.php:313 +#: libraries/messages.inc.php:309 msgid "Extended inserts" msgstr "Instrucções de inserção múltiplas" -#: libraries/messages.inc.php:314 pdf_schema.php:1267 pdf_schema.php:1288 +#: libraries/messages.inc.php:310 pdf_schema.php:1267 pdf_schema.php:1288 #: tbl_printview.php:147 tbl_structure.php:183 tbl_tracking.php:278 msgid "Extra" msgstr "Extra" -#: libraries/messages.inc.php:316 server_status.php:447 +#: libraries/messages.inc.php:312 server_status.php:447 msgid "Failed attempts" msgstr "Tentativas falhadas" -#: libraries/messages.inc.php:318 tbl_structure.php:375 +#: libraries/messages.inc.php:314 tbl_structure.php:375 #, php-format msgid "Field %s has been dropped" msgstr "O campo %s foi eliminado" -#: libraries/messages.inc.php:322 libraries/sql_query_form.lib.php:317 +#: libraries/messages.inc.php:318 libraries/sql_query_form.lib.php:317 msgid "Fields" msgstr "Qtd Campos" -#: libraries/messages.inc.php:332 server_binlog.php:136 +#: libraries/messages.inc.php:328 server_binlog.php:136 #, fuzzy msgid "Files" msgstr "Qtd Campos" -#: libraries/messages.inc.php:334 server_privileges.php:1597 +#: libraries/messages.inc.php:330 server_privileges.php:1597 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -3774,220 +3774,220 @@ msgstr "" "privilégios que o servidor usa se alterações manuais nele forem feitas. " "Neste caso, deve %sreload the privileges%s antes de continuar." -#: libraries/messages.inc.php:335 server_status.php:289 +#: libraries/messages.inc.php:331 server_status.php:289 msgid "Flush query cache" msgstr "" -#: libraries/messages.inc.php:336 +#: libraries/messages.inc.php:332 msgid "Flush the table (\"FLUSH\")" msgstr "Fecha a tabela (\"FLUSH\")" -#: libraries/messages.inc.php:337 server_status.php:271 +#: libraries/messages.inc.php:333 server_status.php:271 msgid "Flush (close) all tables" msgstr "" -#: libraries/messages.inc.php:339 tbl_relation.php:279 +#: libraries/messages.inc.php:335 tbl_relation.php:279 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" -#: libraries/messages.inc.php:341 setup/lib/messages.inc.php:88 +#: libraries/messages.inc.php:337 setup/lib/messages.inc.php:88 #: tbl_printview.php:376 tbl_structure.php:738 msgid "Format" msgstr "Formato" -#: libraries/messages.inc.php:344 server_replication.php:325 +#: libraries/messages.inc.php:340 server_replication.php:325 #, fuzzy msgid "Full start" msgstr "Texto Completo" -#: libraries/messages.inc.php:345 server_replication.php:325 +#: libraries/messages.inc.php:341 server_replication.php:325 #, fuzzy msgid "Full stop" msgstr "Texto Completo" -#: libraries/messages.inc.php:347 tbl_change.php:282 tbl_change.php:320 +#: libraries/messages.inc.php:343 tbl_change.php:282 tbl_change.php:320 msgid "Function" msgstr "Funções" -#: libraries/messages.inc.php:355 libraries/mysql_charsets.lib.php:377 +#: libraries/messages.inc.php:351 libraries/mysql_charsets.lib.php:377 msgid "Georgian" msgstr "Georgiano" -#: libraries/messages.inc.php:356 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:352 libraries/mysql_charsets.lib.php:247 #: libraries/mysql_charsets.lib.php:250 msgid "German" msgstr "Alemão" -#: libraries/messages.inc.php:357 themes.php:42 +#: libraries/messages.inc.php:353 themes.php:42 msgid "Get more themes!" msgstr "" -#: libraries/messages.inc.php:358 server_privileges.php:2134 +#: libraries/messages.inc.php:354 server_privileges.php:2134 msgid "global" msgstr "global" -#: libraries/messages.inc.php:359 server_privileges.php:524 +#: libraries/messages.inc.php:355 server_privileges.php:524 #: server_privileges.php:1500 msgid "Global privileges" msgstr "Privilégios Globais" -#: libraries/messages.inc.php:360 server_variables.php:55 +#: libraries/messages.inc.php:356 server_variables.php:55 #: server_variables.php:89 msgid "Global value" msgstr "Valor Global" -#: libraries/messages.inc.php:365 server_privileges.php:1502 +#: libraries/messages.inc.php:361 server_privileges.php:1502 #: server_privileges.php:1684 server_privileges.php:2033 msgid "Grant" msgstr "Conceder/Grant" -#: libraries/messages.inc.php:366 libraries/mysql_charsets.lib.php:380 +#: libraries/messages.inc.php:362 libraries/mysql_charsets.lib.php:380 msgid "Greek" msgstr "Grego" -#: libraries/messages.inc.php:367 +#: libraries/messages.inc.php:363 msgid "\"gzipped\"" msgstr "\"Compressão gzip\"" -#: libraries/messages.inc.php:369 server_status.php:250 +#: libraries/messages.inc.php:365 server_status.php:250 msgid "Handler" msgstr "" -#: libraries/messages.inc.php:370 server_synchronize.php:464 +#: libraries/messages.inc.php:366 server_synchronize.php:464 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: libraries/messages.inc.php:372 libraries/mysql_charsets.lib.php:374 +#: libraries/messages.inc.php:368 libraries/mysql_charsets.lib.php:374 msgid "Hebrew" msgstr "Hebráico" -#: libraries/messages.inc.php:373 pmd_general.php:83 +#: libraries/messages.inc.php:369 pmd_general.php:83 msgid "Help" msgstr "" -#: libraries/messages.inc.php:374 +#: libraries/messages.inc.php:370 msgid "Use hexadecimal for BLOB" msgstr "" -#: libraries/messages.inc.php:376 pmd_general.php:120 +#: libraries/messages.inc.php:372 pmd_general.php:120 #, fuzzy msgid "Hide/Show all" msgstr "Mostrar tudo" -#: libraries/messages.inc.php:377 pmd_general.php:124 +#: libraries/messages.inc.php:373 pmd_general.php:124 msgid "Hide/Show Tables with no relation" msgstr "" -#: libraries/messages.inc.php:378 libraries/navigation_header.inc.php:54 +#: libraries/messages.inc.php:374 libraries/navigation_header.inc.php:54 #: libraries/navigation_header.inc.php:57 #: libraries/navigation_header.inc.php:58 msgid "Home" msgstr "Início" -#: libraries/messages.inc.php:379 main.php:233 +#: libraries/messages.inc.php:375 main.php:233 msgid "Official Homepage" msgstr "Página Oficial do phpMyAdmin" -#: libraries/messages.inc.php:382 libraries/replication_gui.lib.php:327 +#: libraries/messages.inc.php:378 libraries/replication_gui.lib.php:327 #: server_privileges.php:753 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/messages.inc.php:383 +#: libraries/messages.inc.php:379 msgid "Microsoft Word 2000" msgstr "" -#: libraries/messages.inc.php:384 libraries/mysql_charsets.lib.php:253 +#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:253 msgid "Hungarian" msgstr "Húngaro" -#: libraries/messages.inc.php:386 libraries/mysql_charsets.lib.php:256 +#: libraries/messages.inc.php:382 libraries/mysql_charsets.lib.php:256 msgid "Icelandic" msgstr "" -#: libraries/messages.inc.php:387 server_processlist.php:53 +#: libraries/messages.inc.php:383 server_processlist.php:53 msgid "ID" msgstr "ID" -#: libraries/messages.inc.php:388 libraries/mult_submits.inc.php:108 +#: libraries/messages.inc.php:384 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:479 msgid "Fulltext" msgstr "Texto Completo" -#: libraries/messages.inc.php:389 +#: libraries/messages.inc.php:385 msgid "Ignore duplicate rows" msgstr "" -#: libraries/messages.inc.php:390 tbl_change.php:302 tbl_indexes.php:200 +#: libraries/messages.inc.php:386 tbl_change.php:302 tbl_indexes.php:200 #: tbl_indexes.php:225 msgid "Ignore" msgstr "Ignora" -#: libraries/messages.inc.php:391 +#: libraries/messages.inc.php:387 msgid "Use ignore inserts" msgstr "" -#: libraries/messages.inc.php:392 +#: libraries/messages.inc.php:388 msgid "Column names in first row" msgstr "" -#: libraries/messages.inc.php:393 +#: libraries/messages.inc.php:389 msgid "Do not import empty rows" msgstr "" -#: libraries/messages.inc.php:394 pmd_general.php:104 +#: libraries/messages.inc.php:390 pmd_general.php:104 msgid "Import/Export coordinates for PDF schema" msgstr "" -#: libraries/messages.inc.php:395 querywindow.php:104 +#: libraries/messages.inc.php:391 querywindow.php:104 msgid "Import files" msgstr "Importar" -#: libraries/messages.inc.php:403 +#: libraries/messages.inc.php:399 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/messages.inc.php:404 libraries/messages.inc.php:584 +#: libraries/messages.inc.php:400 libraries/messages.inc.php:580 msgid "Open Document Spreadsheet" msgstr "" -#: libraries/messages.inc.php:405 +#: libraries/messages.inc.php:401 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/messages.inc.php:409 +#: libraries/messages.inc.php:405 msgid "Excel 97-2003 XLS Workbook" msgstr "" -#: libraries/messages.inc.php:410 +#: libraries/messages.inc.php:406 msgid "Excel 2007 XLSX Workbook" msgstr "" -#: libraries/messages.inc.php:414 libraries/mult_submits.inc.php:98 +#: libraries/messages.inc.php:410 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:476 tbl_structure.php:674 msgid "Index" msgstr "Índice" -#: libraries/messages.inc.php:415 tbl_indexes.php:168 +#: libraries/messages.inc.php:411 tbl_indexes.php:168 msgid "Index name:" msgstr "Nome do Índice :" -#: libraries/messages.inc.php:416 tbl_indexes.php:174 +#: libraries/messages.inc.php:412 tbl_indexes.php:174 msgid "Index type:" msgstr "Tipo de Índice :" -#: libraries/messages.inc.php:417 sql.php:639 +#: libraries/messages.inc.php:413 sql.php:639 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: libraries/messages.inc.php:427 main.php:266 +#: libraries/messages.inc.php:423 main.php:266 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -3999,195 +3999,195 @@ msgstr "" "está a correr com este valor por defeito, assim aberto a intrusões, deveria " "corrigir este buraco de segurança." -#: libraries/messages.inc.php:428 tbl_change.php:1130 +#: libraries/messages.inc.php:424 tbl_change.php:1130 msgid "Insert as new row" msgstr "Insere como novo registo" -#: libraries/messages.inc.php:429 sql.php:496 tbl_replace.php:386 +#: libraries/messages.inc.php:425 sql.php:496 tbl_replace.php:386 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: libraries/messages.inc.php:430 tbl_change.php:1131 +#: libraries/messages.inc.php:426 tbl_change.php:1131 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/messages.inc.php:432 main.php:139 +#: libraries/messages.inc.php:428 main.php:139 msgid "Interface" msgstr "" -#: libraries/messages.inc.php:433 tbl_relation.php:407 +#: libraries/messages.inc.php:429 tbl_relation.php:407 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: libraries/messages.inc.php:435 pdf_pages.php:303 +#: libraries/messages.inc.php:431 pdf_pages.php:303 msgid "Internal relations" msgstr "Relações internas" -#: libraries/messages.inc.php:438 tbl_indexes.php:256 tbl_structure.php:590 +#: libraries/messages.inc.php:434 tbl_indexes.php:256 tbl_structure.php:590 #: tbl_structure.php:601 msgid "Column count has to be larger than zero." msgstr "" -#: libraries/messages.inc.php:444 libraries/tbl_properties.inc.php:784 +#: libraries/messages.inc.php:440 libraries/tbl_properties.inc.php:784 #: tbl_structure.php:537 msgid "You have to add at least one field." msgstr "" -#: libraries/messages.inc.php:449 +#: libraries/messages.inc.php:445 #, php-format msgid "Invalid server index: \"%s\"" msgstr "" -#: libraries/messages.inc.php:452 libraries/mysql_charsets.lib.php:259 +#: libraries/messages.inc.php:448 libraries/mysql_charsets.lib.php:259 #: libraries/mysql_charsets.lib.php:349 msgid "Japanese" msgstr "Japonês" -#: libraries/messages.inc.php:453 main.php:331 +#: libraries/messages.inc.php:449 main.php:331 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: libraries/messages.inc.php:454 server_status.php:257 +#: libraries/messages.inc.php:450 server_status.php:257 msgid "Joins" msgstr "" -#: libraries/messages.inc.php:457 server_privileges.php:763 +#: libraries/messages.inc.php:453 server_privileges.php:763 msgid "Do not change the password" msgstr "Mantendo a palavra-passe " -#: libraries/messages.inc.php:458 server_status.php:256 +#: libraries/messages.inc.php:454 server_status.php:256 #, fuzzy msgid "Key cache" msgstr "Tipo de Query" -#: libraries/messages.inc.php:462 libraries/mysql_charsets.lib.php:268 +#: libraries/messages.inc.php:458 libraries/mysql_charsets.lib.php:268 #: libraries/mysql_charsets.lib.php:371 msgid "Korean" msgstr "Coreano" -#: libraries/messages.inc.php:466 libraries/select_lang.lib.php:480 +#: libraries/messages.inc.php:462 libraries/select_lang.lib.php:480 #: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492 #, php-format msgid "Unknown language: %1$s." msgstr "" -#: libraries/messages.inc.php:468 +#: libraries/messages.inc.php:464 msgid "Table caption" msgstr "Legenda da tabela" -#: libraries/messages.inc.php:469 +#: libraries/messages.inc.php:465 msgid "Content of table __TABLE__" msgstr "Conteúdo da tabela __TABLE__" -#: libraries/messages.inc.php:470 +#: libraries/messages.inc.php:466 msgid "Continued table caption" msgstr "Continuação da legenda da tabela" -#: libraries/messages.inc.php:471 +#: libraries/messages.inc.php:467 msgid "(continued)" msgstr "(continuação)" -#: libraries/messages.inc.php:472 +#: libraries/messages.inc.php:468 msgid "Include table caption" msgstr "Incluir a legenda da tabela" -#: libraries/messages.inc.php:473 +#: libraries/messages.inc.php:469 msgid "Label key" msgstr "" -#: libraries/messages.inc.php:474 +#: libraries/messages.inc.php:470 msgid "LaTeX" msgstr "LaTeX" -#: libraries/messages.inc.php:475 +#: libraries/messages.inc.php:471 msgid "Structure of table __TABLE__" msgstr "estructura da tabela __TABLE__" -#: libraries/messages.inc.php:476 libraries/mysql_charsets.lib.php:262 +#: libraries/messages.inc.php:472 libraries/mysql_charsets.lib.php:262 msgid "Latvian" msgstr "" -#: libraries/messages.inc.php:477 +#: libraries/messages.inc.php:473 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/messages.inc.php:478 +#: libraries/messages.inc.php:474 msgid "Use LOCAL keyword" msgstr "" -#: libraries/messages.inc.php:479 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:475 libraries/tbl_properties.inc.php:105 msgid "Length/Values" msgstr "Tamanho/Valores*" -#: libraries/messages.inc.php:480 tbl_select.php:295 +#: libraries/messages.inc.php:476 tbl_select.php:295 msgid "Number of rows per page" msgstr "Número de registos por página" -#: libraries/messages.inc.php:484 libraries/mysql_charsets.lib.php:265 +#: libraries/messages.inc.php:480 libraries/mysql_charsets.lib.php:265 msgid "Lithuanian" msgstr "Lituano" -#: libraries/messages.inc.php:485 libraries/replication_gui.lib.php:302 +#: libraries/messages.inc.php:481 libraries/replication_gui.lib.php:302 #: server_privileges.php:729 msgid "Local" msgstr "Local" -#: libraries/messages.inc.php:487 server_privileges.php:669 +#: libraries/messages.inc.php:483 server_privileges.php:669 msgid "Login Information" msgstr "Informação de Login " -#: libraries/messages.inc.php:490 libraries/navigation_header.inc.php:67 +#: libraries/messages.inc.php:486 libraries/navigation_header.inc.php:67 #: libraries/navigation_header.inc.php:70 #: libraries/navigation_header.inc.php:71 main.php:99 msgid "Log out" msgstr "Sair" -#: libraries/messages.inc.php:497 server_status.php:440 +#: libraries/messages.inc.php:493 server_status.php:440 msgid "max. concurrent connections" msgstr "" -#: libraries/messages.inc.php:498 +#: libraries/messages.inc.php:494 msgid "Maximal length of created query" msgstr "" -#: libraries/messages.inc.php:500 main.php:282 +#: libraries/messages.inc.php:496 main.php:282 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " "split strings correctly and it may result in unexpected results." msgstr "" -#: libraries/messages.inc.php:501 main.php:274 +#: libraries/messages.inc.php:497 main.php:274 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " "corrupted!" msgstr "" -#: libraries/messages.inc.php:502 +#: libraries/messages.inc.php:498 msgid "MediaWiki Table" msgstr "" -#: libraries/messages.inc.php:503 transformation_overview.php:25 +#: libraries/messages.inc.php:499 transformation_overview.php:25 msgid "Available MIME types" msgstr "MIME-types disponíveis" -#: libraries/messages.inc.php:504 transformation_overview.php:43 +#: libraries/messages.inc.php:500 transformation_overview.php:43 msgid "Available transformations" msgstr "Transformações disponíveis" -#: libraries/messages.inc.php:505 +#: libraries/messages.inc.php:501 msgctxt "$strMIME_description" msgid "Description" msgstr "Descrição" -#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:580 +#: libraries/messages.inc.php:503 libraries/tbl_properties.inc.php:580 #: transformation_overview.php:60 #, php-format msgid "" @@ -4197,7 +4197,7 @@ msgstr "" "Não há descrição disponível para esta transformação.
Pergunte ao autor, " "o que %s faz." -#: libraries/messages.inc.php:509 libraries/tbl_properties.inc.php:137 +#: libraries/messages.inc.php:505 libraries/tbl_properties.inc.php:137 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -4206,7 +4206,7 @@ msgstr "" "Para uma lista de opções de transformação disponíveis e suas transformações " "MIME-type , clique em %stransformation descriptions%s" -#: libraries/messages.inc.php:510 libraries/tbl_properties.inc.php:146 +#: libraries/messages.inc.php:506 libraries/tbl_properties.inc.php:146 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -4218,415 +4218,415 @@ msgstr "" "\") ou uma pelica (\"'\") no meio desses valores, faça-o backslashes (por " "exemplo '\\\\xyz' ou 'a\\'b')." -#: libraries/messages.inc.php:511 libraries/tbl_properties.inc.php:145 +#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:145 msgid "Transformation options" msgstr "Opções de tranformação" -#: libraries/messages.inc.php:513 transformation_overview.php:38 +#: libraries/messages.inc.php:509 transformation_overview.php:38 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "" "MIME-types impressos em itálico não tem uma função de transformação separada" -#: libraries/messages.inc.php:515 tbl_indexes.php:162 +#: libraries/messages.inc.php:511 tbl_indexes.php:162 msgid "Modify an index" msgstr "Modificar um índice" -#: libraries/messages.inc.php:517 pmd_general.php:108 +#: libraries/messages.inc.php:513 pmd_general.php:108 msgid "Move Menu" msgstr "" -#: libraries/messages.inc.php:518 tbl_operations.php:276 +#: libraries/messages.inc.php:514 tbl_operations.php:276 msgid "Move table to (database.table):" msgstr "Move tabela para (base de dados.tabela):" -#: libraries/messages.inc.php:519 tbl_move_copy.php:56 +#: libraries/messages.inc.php:515 tbl_move_copy.php:56 #, php-format msgid "Table %s has been moved to %s." msgstr "A tabela %s foi movida para %s." -#: libraries/messages.inc.php:520 tbl_move_copy.php:46 +#: libraries/messages.inc.php:516 tbl_move_copy.php:46 msgid "Can't move table to same one!" msgstr "Não é posivel mover a tabela para o mesmo!" -#: libraries/messages.inc.php:521 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:517 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 #: libraries/mysql_charsets.lib.php:332 libraries/mysql_charsets.lib.php:354 #: libraries/mysql_charsets.lib.php:365 msgid "multilingual" msgstr "multilingua" -#: libraries/messages.inc.php:534 main.php:193 +#: libraries/messages.inc.php:530 main.php:193 msgid "MySQL charset" msgstr "Mapa de Caracteres do mySQL" -#: libraries/messages.inc.php:535 main.php:211 +#: libraries/messages.inc.php:531 main.php:211 msgid "MySQL client version" msgstr "" -#: libraries/messages.inc.php:536 main.php:125 +#: libraries/messages.inc.php:532 main.php:125 msgid "MySQL connection collation" msgstr "" -#: libraries/messages.inc.php:537 main.php:346 +#: libraries/messages.inc.php:533 main.php:346 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: libraries/messages.inc.php:539 server_status.php:294 +#: libraries/messages.inc.php:535 server_status.php:294 msgid "Show processes" msgstr "Mostra os Processos" -#: libraries/messages.inc.php:545 navigation.php:210 server_databases.php:371 +#: libraries/messages.inc.php:541 navigation.php:210 server_databases.php:371 #: server_synchronize.php:1191 msgid "No databases" msgstr "Sem bases de dados" -#: libraries/messages.inc.php:546 server_databases.php:52 +#: libraries/messages.inc.php:542 server_databases.php:52 msgid "No databases selected." msgstr "Nenhuma base de dados selecionada." -#: libraries/messages.inc.php:548 libraries/relation.lib.php:1173 +#: libraries/messages.inc.php:544 libraries/relation.lib.php:1173 msgid "no description" msgstr "sem Descrição" -#: libraries/messages.inc.php:552 libraries/zip_extension.lib.php:26 +#: libraries/messages.inc.php:548 libraries/zip_extension.lib.php:26 msgid "No files found inside ZIP archive!" msgstr "" -#: libraries/messages.inc.php:555 tbl_indexes.php:91 +#: libraries/messages.inc.php:551 tbl_indexes.php:91 msgid "No index parts defined!" msgstr "Nenhuma parte do índice definida!" -#: libraries/messages.inc.php:556 libraries/mult_submits.inc.php:435 +#: libraries/messages.inc.php:552 libraries/mult_submits.inc.php:435 #: tbl_replace.php:331 msgid "No change" msgstr "Sem alterações" -#: libraries/messages.inc.php:557 +#: libraries/messages.inc.php:553 #, fuzzy msgctxt "$strNoneDefault" msgid "None" msgstr "Nenhum" -#: libraries/messages.inc.php:560 libraries/plugin_interface.lib.php:312 +#: libraries/messages.inc.php:556 libraries/plugin_interface.lib.php:312 msgid "This format has no options" msgstr "Este formato não tem opções" -#: libraries/messages.inc.php:565 user_password.php:54 +#: libraries/messages.inc.php:561 user_password.php:54 msgid "You don't have sufficient privileges to be here right now!" msgstr "Não tem permissões suficientes para aceder aqui, neste momento!" -#: libraries/messages.inc.php:566 tbl_row_action.php:29 +#: libraries/messages.inc.php:562 tbl_row_action.php:29 msgid "No rows selected" msgstr "" -#: libraries/messages.inc.php:569 themes.php:32 +#: libraries/messages.inc.php:565 themes.php:32 #, php-format msgid "" "No themes support; please check your configuration and/or your themes in " "directory %s." msgstr "" -#: libraries/messages.inc.php:571 libraries/relation.lib.php:95 +#: libraries/messages.inc.php:567 libraries/relation.lib.php:95 msgid "not OK" msgstr "não está OK" -#: libraries/messages.inc.php:572 server_synchronize.php:400 +#: libraries/messages.inc.php:568 server_synchronize.php:400 #: server_synchronize.php:839 msgid "not present" msgstr "" -#: libraries/messages.inc.php:573 pdf_pages.php:36 pdf_pages.php:42 +#: libraries/messages.inc.php:569 pdf_pages.php:36 pdf_pages.php:42 #: pdf_pages.php:48 pdf_pages.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "A Tabela %s não foi encontrada ou não foi definida em %s" -#: libraries/messages.inc.php:574 server_privileges.php:804 +#: libraries/messages.inc.php:570 server_privileges.php:804 #: server_privileges.php:2166 msgid "No user(s) found." msgstr "Nenhum utilizador encontrado." -#: libraries/messages.inc.php:578 pmd_general.php:164 +#: libraries/messages.inc.php:574 pmd_general.php:164 msgid "Number of tables" msgstr "" -#: libraries/messages.inc.php:581 server_databases.php:117 +#: libraries/messages.inc.php:577 server_databases.php:117 #: server_status.php:260 setup/lib/messages.inc.php:117 msgid "Tables" msgstr "Tabelas" -#: libraries/messages.inc.php:583 libraries/relation.lib.php:99 +#: libraries/messages.inc.php:579 libraries/relation.lib.php:99 #: pmd_general.php:340 msgid "OK" msgstr "OK" -#: libraries/messages.inc.php:585 +#: libraries/messages.inc.php:581 msgid "Open Document Text" msgstr "" -#: libraries/messages.inc.php:588 tbl_select.php:138 +#: libraries/messages.inc.php:584 tbl_select.php:138 #, fuzzy msgid "Operator" msgstr "Operações" -#: libraries/messages.inc.php:589 tbl_operations.php:662 +#: libraries/messages.inc.php:585 tbl_operations.php:662 msgid "Optimize" msgstr "" -#: libraries/messages.inc.php:602 libraries/tbl_properties.inc.php:755 +#: libraries/messages.inc.php:598 libraries/tbl_properties.inc.php:755 msgid "PARTITION definition" msgstr "" -#: libraries/messages.inc.php:603 tbl_structure.php:757 +#: libraries/messages.inc.php:599 tbl_structure.php:757 msgid "partitioned" msgstr "" -#: libraries/messages.inc.php:604 tbl_operations.php:649 +#: libraries/messages.inc.php:600 tbl_operations.php:649 #, fuzzy msgid "Partition maintenance" msgstr "Manutenção da tabela" -#: libraries/messages.inc.php:605 tbl_operations.php:657 +#: libraries/messages.inc.php:601 tbl_operations.php:657 #, php-format msgid "Partition %s" msgstr "" -#: libraries/messages.inc.php:606 server_privileges.php:1212 +#: libraries/messages.inc.php:602 server_privileges.php:1212 #, php-format msgid "The password for %s was changed successfully." msgstr "A palavra-passe para %s foi alterada com sucesso." -#: libraries/messages.inc.php:635 +#: libraries/messages.inc.php:631 #, php-format msgid "Schema of the \"%s\" database - Page %s" msgstr "Esquema da base de dados \"%s\" - Página %s" -#: libraries/messages.inc.php:636 +#: libraries/messages.inc.php:632 #, php-format msgid "The \"%s\" table doesn't exist!" msgstr "A tabela \"%s\" não existe!" -#: libraries/messages.inc.php:637 pdf_schema.php:1013 +#: libraries/messages.inc.php:633 pdf_schema.php:1013 msgid "No tables" msgstr "Sem tablelas" -#: libraries/messages.inc.php:638 pmd_pdf.php:63 +#: libraries/messages.inc.php:634 pmd_pdf.php:63 #, fuzzy msgid "Page has been created" msgstr "A tabela %s foi eliminada" -#: libraries/messages.inc.php:639 pmd_pdf.php:65 +#: libraries/messages.inc.php:635 pmd_pdf.php:65 msgid "Page creation failed" msgstr "" -#: libraries/messages.inc.php:640 +#: libraries/messages.inc.php:636 msgid "PDF" msgstr "" -#: libraries/messages.inc.php:641 +#: libraries/messages.inc.php:637 msgid "(Generates a report containing the data of a single table)" msgstr "" -#: libraries/messages.inc.php:642 +#: libraries/messages.inc.php:638 #, fuzzy msgid "Report title" msgstr "Tipo de Exportação" -#: libraries/messages.inc.php:643 server_status.php:389 server_status.php:434 +#: libraries/messages.inc.php:639 server_status.php:389 server_status.php:434 #: server_status.php:497 server_status.php:555 msgid "per hour" msgstr "por hora" -#: libraries/messages.inc.php:644 server_status.php:498 +#: libraries/messages.inc.php:640 server_status.php:498 msgid "per minute" msgstr "por minuto" -#: libraries/messages.inc.php:645 server_status.php:499 +#: libraries/messages.inc.php:641 server_status.php:499 msgid "per second" msgstr "por segundo" -#: libraries/messages.inc.php:646 libraries/mysql_charsets.lib.php:271 +#: libraries/messages.inc.php:642 libraries/mysql_charsets.lib.php:271 #, fuzzy msgid "Persian" msgstr "Georgiano" -#: libraries/messages.inc.php:647 libraries/mysql_charsets.lib.php:250 +#: libraries/messages.inc.php:643 libraries/mysql_charsets.lib.php:250 msgid "phone book" msgstr "lista telefónica" -#: libraries/messages.inc.php:648 +#: libraries/messages.inc.php:644 msgid "PHP array" msgstr "" -#: libraries/messages.inc.php:650 main.php:213 +#: libraries/messages.inc.php:646 main.php:213 #, fuzzy msgid "PHP extension" msgstr "versão do PHP" -#: libraries/messages.inc.php:654 libraries/relation.lib.php:163 +#: libraries/messages.inc.php:650 libraries/relation.lib.php:163 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/messages.inc.php:655 libraries/relation.lib.php:159 +#: libraries/messages.inc.php:651 libraries/relation.lib.php:159 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/messages.inc.php:656 libraries/relation.lib.php:161 +#: libraries/messages.inc.php:652 libraries/relation.lib.php:161 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" -#: libraries/messages.inc.php:657 libraries/relation.lib.php:162 +#: libraries/messages.inc.php:653 libraries/relation.lib.php:162 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/messages.inc.php:658 libraries/relation.lib.php:164 +#: libraries/messages.inc.php:654 libraries/relation.lib.php:164 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/messages.inc.php:661 libraries/mysql_charsets.lib.php:274 +#: libraries/messages.inc.php:657 libraries/mysql_charsets.lib.php:274 msgid "Polish" msgstr "" -#: libraries/messages.inc.php:662 libraries/replication_gui.lib.php:67 +#: libraries/messages.inc.php:658 libraries/replication_gui.lib.php:67 #: server_synchronize.php:1163 #, fuzzy msgid "Port" msgstr "Ordenação" -#: libraries/messages.inc.php:667 tbl_indexes.php:67 +#: libraries/messages.inc.php:663 tbl_indexes.php:67 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "O nome da chave primária tem de ser... PRIMARY!" -#: libraries/messages.inc.php:668 tbl_indexes.php:184 +#: libraries/messages.inc.php:664 tbl_indexes.php:184 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" "(\"PRIMARY\" tem de ser o nome de e apenas de uma chave " "primária!)" -#: libraries/messages.inc.php:669 libraries/mult_submits.inc.php:76 +#: libraries/messages.inc.php:665 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:474 msgid "Primary" msgstr "Primária" -#: libraries/messages.inc.php:673 server_privileges.php:227 +#: libraries/messages.inc.php:669 server_privileges.php:227 msgid "Includes all privileges except GRANT." msgstr "inclui todos os privilégios excepto Conceção - GRANT." -#: libraries/messages.inc.php:674 server_privileges.php:153 +#: libraries/messages.inc.php:670 server_privileges.php:153 #: server_privileges.php:476 msgid "Allows altering the structure of existing tables." msgstr "Permite alterar a estrutura de tabelas existentes." -#: libraries/messages.inc.php:675 server_privileges.php:169 +#: libraries/messages.inc.php:671 server_privileges.php:169 #: server_privileges.php:482 #, fuzzy msgid "Allows altering and dropping stored routines." msgstr "Permite criar e apagar indexes." -#: libraries/messages.inc.php:676 server_privileges.php:145 +#: libraries/messages.inc.php:672 server_privileges.php:145 #: server_privileges.php:475 msgid "Allows creating new databases and tables." msgstr "Permite criar novas Bases de Dados e tabelas." -#: libraries/messages.inc.php:677 server_privileges.php:168 +#: libraries/messages.inc.php:673 server_privileges.php:168 #: server_privileges.php:481 #, fuzzy msgid "Allows creating stored routines." msgstr "Permite criar novas tabelas." -#: libraries/messages.inc.php:678 server_privileges.php:475 +#: libraries/messages.inc.php:674 server_privileges.php:475 msgid "Allows creating new tables." msgstr "Permite criar novas tabelas." -#: libraries/messages.inc.php:679 server_privileges.php:156 +#: libraries/messages.inc.php:675 server_privileges.php:156 #: server_privileges.php:479 msgid "Allows creating temporary tables." msgstr "Permite criar tabelas temporárias." -#: libraries/messages.inc.php:680 server_privileges.php:170 +#: libraries/messages.inc.php:676 server_privileges.php:170 #: server_privileges.php:515 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: libraries/messages.inc.php:681 server_privileges.php:160 +#: libraries/messages.inc.php:677 server_privileges.php:160 #: server_privileges.php:164 server_privileges.php:487 #: server_privileges.php:491 #, fuzzy msgid "Allows creating new views." msgstr "Permite criar novas tabelas." -#: libraries/messages.inc.php:682 server_privileges.php:144 +#: libraries/messages.inc.php:678 server_privileges.php:144 #: server_privileges.php:467 msgid "Allows deleting data." msgstr "Permite apagar dados." -#: libraries/messages.inc.php:683 server_privileges.php:146 +#: libraries/messages.inc.php:679 server_privileges.php:146 #: server_privileges.php:478 msgid "Allows dropping databases and tables." msgstr "Permite apagar Bases de Dados e tabelas." -#: libraries/messages.inc.php:684 server_privileges.php:478 +#: libraries/messages.inc.php:680 server_privileges.php:478 msgid "Allows dropping tables." msgstr "Permite apagar Bases de Dados." -#: libraries/messages.inc.php:685 server_privileges.php:161 +#: libraries/messages.inc.php:681 server_privileges.php:161 #: server_privileges.php:495 msgid "Allows to set up events for the event scheduler" msgstr "" -#: libraries/messages.inc.php:686 server_privileges.php:171 +#: libraries/messages.inc.php:682 server_privileges.php:171 #: server_privileges.php:483 #, fuzzy msgid "Allows executing stored routines." msgstr "Permite criar novas tabelas." -#: libraries/messages.inc.php:687 server_privileges.php:150 +#: libraries/messages.inc.php:683 server_privileges.php:150 #: server_privileges.php:470 msgid "Allows importing data from and exporting data into files." msgstr "Permite importar dados de... e exportar dados para ficheiros." -#: libraries/messages.inc.php:688 server_privileges.php:501 +#: libraries/messages.inc.php:684 server_privileges.php:501 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Permite adicionar utilizadores e privilégios sem recarregar a tabela de " "privilégios." -#: libraries/messages.inc.php:689 server_privileges.php:152 +#: libraries/messages.inc.php:685 server_privileges.php:152 #: server_privileges.php:477 msgid "Allows creating and dropping indexes." msgstr "Permite criar e apagar indexes." -#: libraries/messages.inc.php:690 server_privileges.php:142 +#: libraries/messages.inc.php:686 server_privileges.php:142 #: server_privileges.php:403 server_privileges.php:465 msgid "Allows inserting and replacing data." msgstr "Permite inserir e substituir dados." -#: libraries/messages.inc.php:691 server_privileges.php:157 +#: libraries/messages.inc.php:687 server_privileges.php:157 #: server_privileges.php:510 msgid "Allows locking tables for the current thread." msgstr "" -#: libraries/messages.inc.php:692 server_privileges.php:607 +#: libraries/messages.inc.php:688 server_privileges.php:607 #: server_privileges.php:609 msgid "Limits the number of new connections the user may open per hour." msgstr "Limits the number of new connections the user may open per hour." -#: libraries/messages.inc.php:693 server_privileges.php:595 +#: libraries/messages.inc.php:689 server_privileges.php:595 #: server_privileges.php:597 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Limits the number of queries the user may send to the server per hour." -#: libraries/messages.inc.php:694 server_privileges.php:601 +#: libraries/messages.inc.php:690 server_privileges.php:601 #: server_privileges.php:603 msgid "" "Limits the number of commands that change any table or database the user may " @@ -4635,58 +4635,58 @@ msgstr "" "Limits the number of commands that change any table or database the user may " "execute per hour." -#: libraries/messages.inc.php:695 server_privileges.php:613 +#: libraries/messages.inc.php:691 server_privileges.php:613 #: server_privileges.php:615 #, fuzzy msgid "Limits the number of simultaneous connections the user may have." msgstr "Limits the number of new connections the user may open per hour." -#: libraries/messages.inc.php:696 server_privileges.php:149 +#: libraries/messages.inc.php:692 server_privileges.php:149 #: server_privileges.php:505 msgid "Allows viewing processes of all users" msgstr "" -#: libraries/messages.inc.php:697 server_privileges.php:151 +#: libraries/messages.inc.php:693 server_privileges.php:151 #: server_privileges.php:409 server_privileges.php:511 msgid "Has no effect in this MySQL version." msgstr "Não tem efeito nesta versão do MySQL." -#: libraries/messages.inc.php:698 server_privileges.php:147 +#: libraries/messages.inc.php:694 server_privileges.php:147 #: server_privileges.php:506 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: libraries/messages.inc.php:699 server_privileges.php:159 +#: libraries/messages.inc.php:695 server_privileges.php:159 #: server_privileges.php:513 msgid "Allows the user to ask where the slaves / masters are." msgstr "" -#: libraries/messages.inc.php:700 server_privileges.php:158 +#: libraries/messages.inc.php:696 server_privileges.php:158 #: server_privileges.php:514 msgid "Needed for the replication slaves." msgstr "" -#: libraries/messages.inc.php:701 server_privileges.php:141 +#: libraries/messages.inc.php:697 server_privileges.php:141 #: server_privileges.php:400 server_privileges.php:464 msgid "Allows reading data." msgstr "Permite ler dados." -#: libraries/messages.inc.php:702 server_privileges.php:154 +#: libraries/messages.inc.php:698 server_privileges.php:154 #: server_privileges.php:508 msgid "Gives access to the complete list of databases." msgstr "Dá acesso à lista de bases de dados completa." -#: libraries/messages.inc.php:703 server_privileges.php:165 +#: libraries/messages.inc.php:699 server_privileges.php:165 #: server_privileges.php:167 server_privileges.php:480 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: libraries/messages.inc.php:704 server_privileges.php:148 +#: libraries/messages.inc.php:700 server_privileges.php:148 #: server_privileges.php:507 msgid "Allows shutting down the server." msgstr "Permite desligar o servidor." -#: libraries/messages.inc.php:705 server_privileges.php:155 +#: libraries/messages.inc.php:701 server_privileges.php:155 #: server_privileges.php:504 msgid "" "Allows connecting, even if maximum number of connections is reached; " @@ -4694,57 +4694,57 @@ msgid "" "killing threads of other users." msgstr "" -#: libraries/messages.inc.php:706 server_privileges.php:162 +#: libraries/messages.inc.php:702 server_privileges.php:162 #: server_privileges.php:496 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "Permite criar e apagar indexes." -#: libraries/messages.inc.php:707 server_privileges.php:143 +#: libraries/messages.inc.php:703 server_privileges.php:143 #: server_privileges.php:406 server_privileges.php:466 msgid "Allows changing data." msgstr "Permite alterar dados." -#: libraries/messages.inc.php:708 server_privileges.php:221 +#: libraries/messages.inc.php:704 server_privileges.php:221 msgid "No privileges." msgstr "Sem privilégios." -#: libraries/messages.inc.php:710 server_privileges.php:1296 +#: libraries/messages.inc.php:706 server_privileges.php:1296 msgid "The privileges were reloaded successfully." msgstr "O privilégios foram recarregados com sucesso." -#: libraries/messages.inc.php:712 libraries/server_links.inc.php:80 +#: libraries/messages.inc.php:708 libraries/server_links.inc.php:80 msgid "Processes" msgstr "Processos" -#: libraries/messages.inc.php:714 main.php:187 +#: libraries/messages.inc.php:710 main.php:187 msgid "Protocol version" msgstr "" -#: libraries/messages.inc.php:715 +#: libraries/messages.inc.php:711 msgid "Put fields names in the first row" msgstr "Coloca os nomes dos compos na primeira linha" -#: libraries/messages.inc.php:720 server_synchronize.php:1003 +#: libraries/messages.inc.php:716 server_synchronize.php:1003 msgid "The following queries have been executed:" msgstr "" -#: libraries/messages.inc.php:721 server_status.php:251 +#: libraries/messages.inc.php:717 server_status.php:251 #, fuzzy msgid "Query cache" msgstr "Tipo de Query" -#: libraries/messages.inc.php:722 libraries/navigation_header.inc.php:80 +#: libraries/messages.inc.php:718 libraries/navigation_header.inc.php:80 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 setup/lib/messages.inc.php:122 msgid "Query window" msgstr "Janela de Query" -#: libraries/messages.inc.php:725 querywindow.php:109 querywindow.php:217 +#: libraries/messages.inc.php:721 querywindow.php:109 querywindow.php:217 msgid "SQL history" msgstr "Histórico SQL" -#: libraries/messages.inc.php:726 server_status.php:490 +#: libraries/messages.inc.php:722 server_status.php:490 #, php-format msgid "" "Query statistics: Since its startup, %s queries have been sent to the " @@ -4753,137 +4753,137 @@ msgstr "" "Query statistics: Since its startup, %s queries have been sent to the " "server." -#: libraries/messages.inc.php:728 server_status.php:554 +#: libraries/messages.inc.php:724 server_status.php:554 msgid "Query type" msgstr "Tipo de Query" -#: libraries/messages.inc.php:729 libraries/sql_query_form.lib.php:381 +#: libraries/messages.inc.php:725 libraries/sql_query_form.lib.php:381 msgid "Do not overwrite this query from outside the window" msgstr "Não alterar esta pesquisa de fora da janela" -#: libraries/messages.inc.php:732 tbl_operations.php:663 +#: libraries/messages.inc.php:728 tbl_operations.php:663 msgid "Rebuild" msgstr "" -#: libraries/messages.inc.php:733 server_status.php:394 +#: libraries/messages.inc.php:729 server_status.php:394 msgid "Received" msgstr "Recebido" -#: libraries/messages.inc.php:734 pmd_pdf.php:89 +#: libraries/messages.inc.php:730 pmd_pdf.php:89 msgid "recommended" msgstr "" -#: libraries/messages.inc.php:736 tbl_operations.php:702 +#: libraries/messages.inc.php:732 tbl_operations.php:702 msgid "Check referential integrity:" msgstr "Verificar Integridade referencial:" -#: libraries/messages.inc.php:740 pdf_schema.php:1032 pdf_schema.php:1141 +#: libraries/messages.inc.php:736 pdf_schema.php:1032 pdf_schema.php:1141 msgid "Relational schema" msgstr "Esquema relacional" -#: libraries/messages.inc.php:744 tbl_relation.php:399 +#: libraries/messages.inc.php:740 tbl_relation.php:399 msgid "Relations" msgstr "Relações" -#: libraries/messages.inc.php:745 tbl_structure.php:507 tbl_structure.php:509 +#: libraries/messages.inc.php:741 tbl_structure.php:507 tbl_structure.php:509 msgid "Relation view" msgstr "Vista de Relação" -#: libraries/messages.inc.php:746 server_privileges.php:1246 +#: libraries/messages.inc.php:742 server_privileges.php:1246 msgid "Reloading the privileges" msgstr "A recarregar privilégios" -#: libraries/messages.inc.php:747 navigation.php:66 navigation.php:67 +#: libraries/messages.inc.php:743 navigation.php:66 navigation.php:67 #: navigation.php:70 msgid "Reload navigation frame" msgstr "" -#: libraries/messages.inc.php:748 pmd_general.php:80 +#: libraries/messages.inc.php:744 pmd_general.php:80 msgid "Reload" msgstr "" -#: libraries/messages.inc.php:749 libraries/server_synchronize.lib.php:1345 +#: libraries/messages.inc.php:745 libraries/server_synchronize.lib.php:1345 #: libraries/server_synchronize.lib.php:1371 msgid "Remote server" msgstr "" -#: libraries/messages.inc.php:750 +#: libraries/messages.inc.php:746 msgid "Remove CRLF characters within fields" msgstr "" -#: libraries/messages.inc.php:751 tbl_operations.php:676 +#: libraries/messages.inc.php:747 tbl_operations.php:676 msgid "Remove partitioning" msgstr "" -#: libraries/messages.inc.php:752 server_privileges.php:1575 +#: libraries/messages.inc.php:748 server_privileges.php:1575 msgid "Remove selected users" msgstr "Remover utilizadores seleccionados" -#: libraries/messages.inc.php:755 tbl_operations.php:338 +#: libraries/messages.inc.php:751 tbl_operations.php:338 msgid "Rename table to" msgstr "Renomeia a tabela para " -#: libraries/messages.inc.php:756 view_operations.php:93 +#: libraries/messages.inc.php:752 view_operations.php:93 #, fuzzy msgid "Rename view to" msgstr "Renomeia a tabela para " -#: libraries/messages.inc.php:757 tbl_operations.php:664 +#: libraries/messages.inc.php:753 tbl_operations.php:664 #, fuzzy msgid "Repair" msgstr "Reparar tabela" -#: libraries/messages.inc.php:759 +#: libraries/messages.inc.php:755 msgid "Replace NULL by" msgstr "Substituir NULL por" -#: libraries/messages.inc.php:760 +#: libraries/messages.inc.php:756 msgid "Replace table data with file" msgstr "Substituir os dados da tabela pelos do arquivo" -#: libraries/messages.inc.php:761 server_replication.php:228 +#: libraries/messages.inc.php:757 server_replication.php:228 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: libraries/messages.inc.php:762 libraries/replication_gui.lib.php:236 +#: libraries/messages.inc.php:758 libraries/replication_gui.lib.php:236 #: server_replication.php:194 msgid "Add slave replication user" msgstr "" -#: libraries/messages.inc.php:763 server_replication.php:74 +#: libraries/messages.inc.php:759 server_replication.php:74 #, php-format msgid "Master server changed succesfully to %s" msgstr "" -#: libraries/messages.inc.php:764 server_replication.php:182 +#: libraries/messages.inc.php:760 server_replication.php:182 msgid "This server is configured as master in a replication process." msgstr "" -#: libraries/messages.inc.php:765 server_replication.php:322 +#: libraries/messages.inc.php:761 server_replication.php:322 msgid "Control slave:" msgstr "" -#: libraries/messages.inc.php:766 server_replication.php:65 +#: libraries/messages.inc.php:762 server_replication.php:65 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: libraries/messages.inc.php:767 server_replication.php:58 +#: libraries/messages.inc.php:763 server_replication.php:58 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: libraries/messages.inc.php:768 server_replication.php:221 +#: libraries/messages.inc.php:764 server_replication.php:221 msgid "Replicate all databases; Ignore:" msgstr "" -#: libraries/messages.inc.php:769 server_replication.php:222 +#: libraries/messages.inc.php:765 server_replication.php:222 msgid "Ignore all databases; Replicate:" msgstr "" -#: libraries/messages.inc.php:770 server_replication.php:218 +#: libraries/messages.inc.php:766 server_replication.php:218 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -4892,121 +4892,121 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: libraries/messages.inc.php:771 server_replication.php:217 +#: libraries/messages.inc.php:767 server_replication.php:217 msgid "Master configuration" msgstr "" -#: libraries/messages.inc.php:772 server_replication.php:181 +#: libraries/messages.inc.php:768 server_replication.php:181 #: server_replication.php:209 msgid "Master replication" msgstr "" -#: libraries/messages.inc.php:774 server_replication.php:230 +#: libraries/messages.inc.php:770 server_replication.php:230 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: libraries/messages.inc.php:775 server_replication.php:225 +#: libraries/messages.inc.php:771 server_replication.php:225 #, fuzzy msgid "Please select databases:" msgstr "Por favor seleccione uma base de dados" -#: libraries/messages.inc.php:776 server_replication.php:210 +#: libraries/messages.inc.php:772 server_replication.php:210 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:188 +#: libraries/messages.inc.php:773 libraries/replication_gui.lib.php:188 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/messages.inc.php:778 server_replication.php:187 +#: libraries/messages.inc.php:774 server_replication.php:187 msgid "Show connected slaves" msgstr "" -#: libraries/messages.inc.php:779 libraries/messages.inc.php:885 +#: libraries/messages.inc.php:775 libraries/messages.inc.php:881 #: server_replication.php:184 server_status.php:281 msgid "Show master status" msgstr "" -#: libraries/messages.inc.php:780 server_replication.php:334 +#: libraries/messages.inc.php:776 server_replication.php:334 msgid "Skipping error(s) might lead into unsynchronized master and slave!" msgstr "" -#: libraries/messages.inc.php:781 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:51 #: server_replication.php:347 msgid "Change or reconfigure master server" msgstr "" -#: libraries/messages.inc.php:782 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:778 libraries/replication_gui.lib.php:51 msgid "Slave configuration" msgstr "" -#: libraries/messages.inc.php:783 server_replication.php:305 +#: libraries/messages.inc.php:779 server_replication.php:305 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: libraries/messages.inc.php:784 server_replication.php:332 +#: libraries/messages.inc.php:780 server_replication.php:332 msgid "Error management:" msgstr "" -#: libraries/messages.inc.php:785 server_replication.php:328 +#: libraries/messages.inc.php:781 server_replication.php:328 #, php-format msgid "IO Thread %s only" msgstr "" -#: libraries/messages.inc.php:786 server_replication.php:296 +#: libraries/messages.inc.php:782 server_replication.php:296 msgid "Slave IO Thread not running!" msgstr "" -#: libraries/messages.inc.php:787 server_replication.php:355 +#: libraries/messages.inc.php:783 server_replication.php:355 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/messages.inc.php:788 server_replication.php:326 +#: libraries/messages.inc.php:784 server_replication.php:326 msgid "Reset slave" msgstr "" -#: libraries/messages.inc.php:789 server_replication.php:308 +#: libraries/messages.inc.php:785 server_replication.php:308 msgid "See slave status table" msgstr "" -#: libraries/messages.inc.php:790 server_replication.php:336 +#: libraries/messages.inc.php:786 server_replication.php:336 msgid "Skip current error" msgstr "" -#: libraries/messages.inc.php:791 server_replication.php:340 +#: libraries/messages.inc.php:787 server_replication.php:340 msgid "errors." msgstr "" -#: libraries/messages.inc.php:792 server_replication.php:337 +#: libraries/messages.inc.php:788 server_replication.php:337 msgid "Skip next" msgstr "" -#: libraries/messages.inc.php:793 server_replication.php:248 +#: libraries/messages.inc.php:789 server_replication.php:248 msgid "Slave replication" msgstr "" -#: libraries/messages.inc.php:794 server_replication.php:293 +#: libraries/messages.inc.php:790 server_replication.php:293 msgid "Slave SQL Thread not running!" msgstr "" -#: libraries/messages.inc.php:795 server_replication.php:327 +#: libraries/messages.inc.php:791 server_replication.php:327 #, php-format msgid "SQL Thread %s only" msgstr "" -#: libraries/messages.inc.php:796 +#: libraries/messages.inc.php:792 #, php-format msgid "" "This MySQL server works as %s in replication process. For further " @@ -5014,163 +5014,163 @@ msgid "" "\"#replication\">replication section." msgstr "" -#: libraries/messages.inc.php:797 +#: libraries/messages.inc.php:793 msgid "Master status" msgstr "" -#: libraries/messages.inc.php:798 server_status.php:721 +#: libraries/messages.inc.php:794 server_status.php:721 #, fuzzy msgid "Replication status" msgstr "Relações" -#: libraries/messages.inc.php:799 +#: libraries/messages.inc.php:795 msgid "Slave status" msgstr "" -#: libraries/messages.inc.php:800 server_replication.php:311 +#: libraries/messages.inc.php:796 server_replication.php:311 msgid "Synchronize databases with master" msgstr "" -#: libraries/messages.inc.php:801 server_replication.php:71 +#: libraries/messages.inc.php:797 server_replication.php:71 msgid "Unable to change master" msgstr "" -#: libraries/messages.inc.php:802 server_replication.php:51 +#: libraries/messages.inc.php:798 server_replication.php:51 msgid "Unknown error" msgstr "" -#: libraries/messages.inc.php:803 main.php:163 pdf_pages.php:344 +#: libraries/messages.inc.php:799 main.php:163 pdf_pages.php:344 #: setup/lib/FormDisplay.tpl.php:216 tbl_change.php:1175 msgid "Reset" msgstr "Limpa" -#: libraries/messages.inc.php:804 server_privileges.php:591 +#: libraries/messages.inc.php:800 server_privileges.php:591 msgid "Resource limits" msgstr "Limites do recurso" -#: libraries/messages.inc.php:805 tbl_change.php:1209 +#: libraries/messages.inc.php:801 tbl_change.php:1209 #, php-format msgid "Restart insertion with %s rows" msgstr "" -#: libraries/messages.inc.php:807 server_privileges.php:1578 +#: libraries/messages.inc.php:803 server_privileges.php:1578 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Revogar todos os privilégios dos utilizadores e apagá-los a seguir." -#: libraries/messages.inc.php:808 server_privileges.php:1176 +#: libraries/messages.inc.php:804 server_privileges.php:1176 #, php-format msgid "You have revoked the privileges for %s" msgstr "Anulou os privilégios para %s" -#: libraries/messages.inc.php:809 server_privileges.php:1333 +#: libraries/messages.inc.php:805 server_privileges.php:1333 msgid "Revoke" msgstr "Anula" -#: libraries/messages.inc.php:810 libraries/mysql_charsets.lib.php:280 +#: libraries/messages.inc.php:806 libraries/mysql_charsets.lib.php:280 #, fuzzy msgid "Romanian" msgstr "Arménio" -#: libraries/messages.inc.php:813 tbl_printview.php:404 tbl_structure.php:786 +#: libraries/messages.inc.php:809 tbl_printview.php:404 tbl_structure.php:786 msgid "Row length" msgstr "Comprim. dos reg." -#: libraries/messages.inc.php:815 tbl_printview.php:414 tbl_structure.php:794 +#: libraries/messages.inc.php:811 tbl_printview.php:414 tbl_structure.php:794 msgid " Row size " msgstr " Tamanho dos reg." -#: libraries/messages.inc.php:821 tbl_printview.php:366 tbl_structure.php:726 +#: libraries/messages.inc.php:817 tbl_printview.php:366 tbl_structure.php:726 msgid "Row Statistics" msgstr "Estatísticas dos registos" -#: libraries/messages.inc.php:822 +#: libraries/messages.inc.php:818 #, php-format msgid "running on %s" msgstr "a correr em %s" -#: libraries/messages.inc.php:824 libraries/sql_query_form.lib.php:223 +#: libraries/messages.inc.php:820 libraries/sql_query_form.lib.php:223 #, fuzzy, php-format msgid "Run SQL query/queries on server %s" msgstr "Executa comando(s) SQL na base de dados %s" -#: libraries/messages.inc.php:825 libraries/sql_query_form.lib.php:240 +#: libraries/messages.inc.php:821 libraries/sql_query_form.lib.php:240 #: libraries/sql_query_form.lib.php:265 #, php-format msgid "Run SQL query/queries on database %s" msgstr "Executa comando(s) SQL na base de dados %s" -#: libraries/messages.inc.php:826 libraries/mysql_charsets.lib.php:337 +#: libraries/messages.inc.php:822 libraries/mysql_charsets.lib.php:337 msgid "Russian" msgstr "Russo" -#: libraries/messages.inc.php:829 pmd_general.php:68 +#: libraries/messages.inc.php:825 pmd_general.php:68 msgid "Save position" msgstr "" -#: libraries/messages.inc.php:830 libraries/tbl_properties.inc.php:776 +#: libraries/messages.inc.php:826 libraries/tbl_properties.inc.php:776 #: pdf_pages.php:484 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:214 setup/lib/FormDisplay.tpl.php:215 #: tbl_change.php:1126 tbl_indexes.php:248 tbl_relation.php:566 msgid "Save" msgstr "Guarda" -#: libraries/messages.inc.php:831 +#: libraries/messages.inc.php:827 msgid "The scale factor is too small to fit the schema on one page" msgstr "O factor escala é muito pequeno para encaixar o esquema numa página" -#: libraries/messages.inc.php:843 main.php:298 +#: libraries/messages.inc.php:839 main.php:298 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "O ficheiro de configuração precisa agora de uma frase-passe secreta " "(blowfish_secret)." -#: libraries/messages.inc.php:844 navigation.php:353 navigation.php:516 +#: libraries/messages.inc.php:840 navigation.php:353 navigation.php:516 msgid "Please select a database" msgstr "Por favor seleccione uma base de dados" -#: libraries/messages.inc.php:846 server_binlog.php:120 +#: libraries/messages.inc.php:842 server_binlog.php:120 msgid "Select binary log to view" msgstr "" -#: libraries/messages.inc.php:847 tbl_select.php:270 +#: libraries/messages.inc.php:843 tbl_select.php:270 msgid "Select fields (at least one):" msgstr "Seleccione os campos (no mínimo 1)" -#: libraries/messages.inc.php:851 pdf_pages.php:320 +#: libraries/messages.inc.php:847 pdf_pages.php:320 msgid "Select Tables" msgstr "Seleccionar Tabelas" -#: libraries/messages.inc.php:853 server_status.php:404 +#: libraries/messages.inc.php:849 server_status.php:404 msgid "Sent" msgstr "Enviado" -#: libraries/messages.inc.php:857 libraries/select_server.lib.php:45 +#: libraries/messages.inc.php:853 libraries/select_server.lib.php:45 #: setup/frames/index.inc.php:97 setup/lib/messages.inc.php:115 #, fuzzy msgid "Servers" msgstr "Servidor" -#: libraries/messages.inc.php:858 server_status.php:255 +#: libraries/messages.inc.php:854 server_status.php:255 #, fuzzy msgid "Delayed inserts" msgstr "Instrucções de inserção múltiplas" -#: libraries/messages.inc.php:859 server_status.php:46 +#: libraries/messages.inc.php:855 server_status.php:46 msgid "Runtime Information" msgstr "Informação de Runtime" -#: libraries/messages.inc.php:860 server_status.php:350 +#: libraries/messages.inc.php:856 server_status.php:350 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Este servidor de mySQL estar a correr há %s. Foi iniciado em/a %s." -#: libraries/messages.inc.php:861 libraries/server_links.inc.php:53 +#: libraries/messages.inc.php:857 libraries/server_links.inc.php:53 #: server_engines.php:112 server_engines.php:116 server_status.php:304 #: test/theme.php:105 msgid "Variables" msgstr "Variáveis" -#: libraries/messages.inc.php:862 server_status.php:383 +#: libraries/messages.inc.php:858 server_status.php:383 msgid "" "Server traffic: These tables show the network traffic statistics of " "this MySQL server since its startup." @@ -5178,11 +5178,11 @@ msgstr "" "Server traffic: These tables show the network traffic statistics of " "this MySQL server since its startup." -#: libraries/messages.inc.php:863 server_variables.php:35 +#: libraries/messages.inc.php:859 server_variables.php:35 msgid "Server variables and settings" msgstr "Variáveis do servidor e configurações" -#: libraries/messages.inc.php:865 main.php:290 +#: libraries/messages.inc.php:861 main.php:290 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -5190,17 +5190,17 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: libraries/messages.inc.php:866 +#: libraries/messages.inc.php:862 msgid "" "Cannot start session without errors, please check errors given in your PHP " "and/or webserver log file and configure your PHP installation properly." msgstr "" -#: libraries/messages.inc.php:867 server_variables.php:55 +#: libraries/messages.inc.php:863 server_variables.php:55 msgid "Session value" msgstr "Valor de sessão" -#: libraries/messages.inc.php:868 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:864 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 " @@ -5212,57 +5212,57 @@ msgstr "" "invertida (\"\\\") ou um apóstrofe (\"'\") entre esses valores, coloque uma " "barra invertida antes (por exemplo '\\\\xyz' ou 'a\\'b')." -#: libraries/messages.inc.php:876 server_binlog.php:192 server_binlog.php:195 +#: libraries/messages.inc.php:872 server_binlog.php:192 server_binlog.php:195 #: server_processlist.php:49 server_processlist.php:51 msgid "Show Full Queries" msgstr "Mostrar queries completos" -#: libraries/messages.inc.php:878 pmd_general.php:64 +#: libraries/messages.inc.php:874 pmd_general.php:64 msgid "Show/Hide left menu" msgstr "" -#: libraries/messages.inc.php:880 sql.php:513 +#: libraries/messages.inc.php:876 sql.php:513 msgid "Showing as PHP code" msgstr "" -#: libraries/messages.inc.php:882 sql.php:516 tbl_replace.php:360 +#: libraries/messages.inc.php:878 sql.php:516 tbl_replace.php:360 #, fuzzy msgid "Showing SQL query" msgstr "Mostrar queries completos" -#: libraries/messages.inc.php:883 tbl_change.php:1132 +#: libraries/messages.inc.php:879 tbl_change.php:1132 msgid "Show insert query" msgstr "" -#: libraries/messages.inc.php:886 server_status.php:273 +#: libraries/messages.inc.php:882 server_status.php:273 #, fuzzy msgid "Show open tables" msgstr "Mostra tabelas" -#: libraries/messages.inc.php:887 main.php:219 +#: libraries/messages.inc.php:883 main.php:219 msgid "Show PHP information" msgstr "Mostra informação do PHP" -#: libraries/messages.inc.php:889 server_status.php:278 +#: libraries/messages.inc.php:885 server_status.php:278 msgid "Show slave hosts" msgstr "" -#: libraries/messages.inc.php:890 server_status.php:284 +#: libraries/messages.inc.php:886 server_status.php:284 msgid "Show slave status" msgstr "" -#: libraries/messages.inc.php:891 +#: libraries/messages.inc.php:887 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/messages.inc.php:892 +#: libraries/messages.inc.php:888 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/messages.inc.php:893 +#: libraries/messages.inc.php:889 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -5270,78 +5270,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/messages.inc.php:894 +#: libraries/messages.inc.php:890 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/messages.inc.php:895 +#: libraries/messages.inc.php:891 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/messages.inc.php:896 +#: libraries/messages.inc.php:892 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/messages.inc.php:897 +#: libraries/messages.inc.php:893 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/messages.inc.php:898 +#: libraries/messages.inc.php:894 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/messages.inc.php:899 +#: libraries/messages.inc.php:895 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/messages.inc.php:900 +#: libraries/messages.inc.php:896 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/messages.inc.php:901 +#: libraries/messages.inc.php:897 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/messages.inc.php:902 +#: libraries/messages.inc.php:898 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/messages.inc.php:903 +#: libraries/messages.inc.php:899 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/messages.inc.php:904 +#: libraries/messages.inc.php:900 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: libraries/messages.inc.php:905 +#: libraries/messages.inc.php:901 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/messages.inc.php:906 +#: libraries/messages.inc.php:902 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: libraries/messages.inc.php:907 +#: libraries/messages.inc.php:903 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -5349,7 +5349,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/messages.inc.php:908 +#: libraries/messages.inc.php:904 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -5357,42 +5357,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/messages.inc.php:909 +#: libraries/messages.inc.php:905 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/messages.inc.php:910 +#: libraries/messages.inc.php:906 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/messages.inc.php:911 +#: libraries/messages.inc.php:907 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/messages.inc.php:912 +#: libraries/messages.inc.php:908 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/messages.inc.php:913 +#: libraries/messages.inc.php:909 msgid "The number of pages currently dirty." msgstr "" -#: libraries/messages.inc.php:914 +#: libraries/messages.inc.php:910 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/messages.inc.php:915 +#: libraries/messages.inc.php:911 msgid "The number of free pages." msgstr "" -#: libraries/messages.inc.php:916 +#: libraries/messages.inc.php:912 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/messages.inc.php:917 +#: libraries/messages.inc.php:913 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -5400,33 +5400,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/messages.inc.php:918 +#: libraries/messages.inc.php:914 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/messages.inc.php:919 +#: libraries/messages.inc.php:915 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/messages.inc.php:920 +#: libraries/messages.inc.php:916 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/messages.inc.php:921 +#: libraries/messages.inc.php:917 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/messages.inc.php:922 +#: libraries/messages.inc.php:918 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/messages.inc.php:923 +#: libraries/messages.inc.php:919 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -5435,218 +5435,218 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/messages.inc.php:924 +#: libraries/messages.inc.php:920 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/messages.inc.php:925 +#: libraries/messages.inc.php:921 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/messages.inc.php:926 +#: libraries/messages.inc.php:922 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/messages.inc.php:927 +#: libraries/messages.inc.php:923 msgid "The current number of pending reads." msgstr "" -#: libraries/messages.inc.php:928 +#: libraries/messages.inc.php:924 msgid "The current number of pending writes." msgstr "" -#: libraries/messages.inc.php:929 +#: libraries/messages.inc.php:925 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/messages.inc.php:930 +#: libraries/messages.inc.php:926 msgid "The total number of data reads." msgstr "" -#: libraries/messages.inc.php:931 +#: libraries/messages.inc.php:927 msgid "The total number of data writes." msgstr "" -#: libraries/messages.inc.php:932 +#: libraries/messages.inc.php:928 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/messages.inc.php:933 +#: libraries/messages.inc.php:929 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/messages.inc.php:934 +#: libraries/messages.inc.php:930 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/messages.inc.php:935 +#: libraries/messages.inc.php:931 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/messages.inc.php:936 +#: libraries/messages.inc.php:932 msgid "The number of log write requests." msgstr "" -#: libraries/messages.inc.php:937 +#: libraries/messages.inc.php:933 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/messages.inc.php:938 +#: libraries/messages.inc.php:934 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/messages.inc.php:939 +#: libraries/messages.inc.php:935 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/messages.inc.php:940 +#: libraries/messages.inc.php:936 msgid "Pending log file writes." msgstr "" -#: libraries/messages.inc.php:941 +#: libraries/messages.inc.php:937 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/messages.inc.php:942 +#: libraries/messages.inc.php:938 msgid "The number of pages created." msgstr "" -#: libraries/messages.inc.php:943 +#: libraries/messages.inc.php:939 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: libraries/messages.inc.php:944 +#: libraries/messages.inc.php:940 msgid "The number of pages read." msgstr "" -#: libraries/messages.inc.php:945 +#: libraries/messages.inc.php:941 msgid "The number of pages written." msgstr "" -#: libraries/messages.inc.php:946 +#: libraries/messages.inc.php:942 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/messages.inc.php:947 +#: libraries/messages.inc.php:943 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/messages.inc.php:948 +#: libraries/messages.inc.php:944 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/messages.inc.php:949 +#: libraries/messages.inc.php:945 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/messages.inc.php:950 +#: libraries/messages.inc.php:946 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/messages.inc.php:951 +#: libraries/messages.inc.php:947 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/messages.inc.php:952 +#: libraries/messages.inc.php:948 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/messages.inc.php:953 +#: libraries/messages.inc.php:949 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/messages.inc.php:954 +#: libraries/messages.inc.php:950 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/messages.inc.php:955 +#: libraries/messages.inc.php:951 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/messages.inc.php:956 +#: libraries/messages.inc.php:952 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: libraries/messages.inc.php:957 +#: libraries/messages.inc.php:953 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/messages.inc.php:958 +#: libraries/messages.inc.php:954 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/messages.inc.php:959 +#: libraries/messages.inc.php:955 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/messages.inc.php:960 +#: libraries/messages.inc.php:956 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/messages.inc.php:961 +#: libraries/messages.inc.php:957 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/messages.inc.php:962 +#: libraries/messages.inc.php:958 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/messages.inc.php:963 +#: libraries/messages.inc.php:959 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/messages.inc.php:964 +#: libraries/messages.inc.php:960 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/messages.inc.php:965 +#: libraries/messages.inc.php:961 msgid "The number of files that are open." msgstr "" -#: libraries/messages.inc.php:966 +#: libraries/messages.inc.php:962 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/messages.inc.php:967 +#: libraries/messages.inc.php:963 msgid "The number of tables that are open." msgstr "" -#: libraries/messages.inc.php:968 +#: libraries/messages.inc.php:964 msgid "The number of free memory blocks in query cache." msgstr "" -#: libraries/messages.inc.php:969 +#: libraries/messages.inc.php:965 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/messages.inc.php:970 +#: libraries/messages.inc.php:966 msgid "The number of cache hits." msgstr "" -#: libraries/messages.inc.php:971 +#: libraries/messages.inc.php:967 msgid "The number of queries added to the cache." msgstr "" -#: libraries/messages.inc.php:972 +#: libraries/messages.inc.php:968 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -5654,105 +5654,105 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/messages.inc.php:973 +#: libraries/messages.inc.php:969 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/messages.inc.php:974 +#: libraries/messages.inc.php:970 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/messages.inc.php:975 +#: libraries/messages.inc.php:971 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/messages.inc.php:976 +#: libraries/messages.inc.php:972 #, fuzzy msgctxt "$strShowStatusReset" msgid "Reset" msgstr "Limpa" -#: libraries/messages.inc.php:977 +#: libraries/messages.inc.php:973 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/messages.inc.php:978 +#: libraries/messages.inc.php:974 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: libraries/messages.inc.php:979 +#: libraries/messages.inc.php:975 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/messages.inc.php:980 +#: libraries/messages.inc.php:976 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: libraries/messages.inc.php:981 +#: libraries/messages.inc.php:977 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/messages.inc.php:982 +#: libraries/messages.inc.php:978 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/messages.inc.php:983 +#: libraries/messages.inc.php:979 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/messages.inc.php:984 +#: libraries/messages.inc.php:980 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/messages.inc.php:985 +#: libraries/messages.inc.php:981 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/messages.inc.php:986 +#: libraries/messages.inc.php:982 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/messages.inc.php:987 +#: libraries/messages.inc.php:983 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/messages.inc.php:988 +#: libraries/messages.inc.php:984 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/messages.inc.php:989 +#: libraries/messages.inc.php:985 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/messages.inc.php:990 +#: libraries/messages.inc.php:986 msgid "The number of sorted rows." msgstr "" -#: libraries/messages.inc.php:991 +#: libraries/messages.inc.php:987 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/messages.inc.php:992 +#: libraries/messages.inc.php:988 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/messages.inc.php:993 +#: libraries/messages.inc.php:989 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -5760,18 +5760,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/messages.inc.php:994 +#: libraries/messages.inc.php:990 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/messages.inc.php:995 +#: libraries/messages.inc.php:991 msgid "The number of currently open connections." msgstr "" -#: libraries/messages.inc.php:996 +#: libraries/messages.inc.php:992 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -5779,75 +5779,75 @@ msgid "" "implementation.)" msgstr "" -#: libraries/messages.inc.php:997 +#: libraries/messages.inc.php:993 msgid "The number of threads that are not sleeping." msgstr "" -#: libraries/messages.inc.php:999 tbl_printview.php:75 +#: libraries/messages.inc.php:995 tbl_printview.php:75 msgid "Show tables" msgstr "Mostra tabelas" -#: libraries/messages.inc.php:1000 libraries/sql_query_form.lib.php:396 +#: libraries/messages.inc.php:996 libraries/sql_query_form.lib.php:396 msgid " Show this query here again " msgstr " Mostrar de novo aqui este comando " -#: libraries/messages.inc.php:1001 libraries/mysql_charsets.lib.php:217 +#: libraries/messages.inc.php:997 libraries/mysql_charsets.lib.php:217 #: libraries/mysql_charsets.lib.php:342 msgid "Simplified Chinese" msgstr "Chinês Simplificado" -#: libraries/messages.inc.php:1002 tbl_operations.php:258 +#: libraries/messages.inc.php:998 tbl_operations.php:258 msgid "(singly)" msgstr "(A refazer após inserir/eliminar)" -#: libraries/messages.inc.php:1005 libraries/replication_gui.lib.php:52 +#: libraries/messages.inc.php:1001 libraries/replication_gui.lib.php:52 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" msgstr "" -#: libraries/messages.inc.php:1006 libraries/mysql_charsets.lib.php:283 +#: libraries/messages.inc.php:1002 libraries/mysql_charsets.lib.php:283 msgid "Slovak" msgstr "" -#: libraries/messages.inc.php:1007 libraries/mysql_charsets.lib.php:286 +#: libraries/messages.inc.php:1003 libraries/mysql_charsets.lib.php:286 msgid "Slovenian" msgstr "" -#: libraries/messages.inc.php:1008 pmd_general.php:95 +#: libraries/messages.inc.php:1004 pmd_general.php:95 msgid "Small/Big All" msgstr "" -#: libraries/messages.inc.php:1009 pmd_general.php:91 +#: libraries/messages.inc.php:1005 pmd_general.php:91 msgid "Snap to grid" msgstr "" -#: libraries/messages.inc.php:1011 server_synchronize.php:1167 +#: libraries/messages.inc.php:1007 server_synchronize.php:1167 msgid "Socket" msgstr "" -#: libraries/messages.inc.php:1013 server_status.php:259 +#: libraries/messages.inc.php:1009 server_status.php:259 msgid "Sorting" msgstr "" -#: libraries/messages.inc.php:1015 tbl_printview.php:310 tbl_structure.php:657 +#: libraries/messages.inc.php:1011 tbl_printview.php:310 tbl_structure.php:657 msgid "Space usage" msgstr "Espaço ocupado" -#: libraries/messages.inc.php:1016 libraries/mysql_charsets.lib.php:289 +#: libraries/messages.inc.php:1012 libraries/mysql_charsets.lib.php:289 #, fuzzy msgid "Spanish" msgstr "Dinamarquês" -#: libraries/messages.inc.php:1019 +#: libraries/messages.inc.php:1015 msgid "Export type" msgstr "Tipo de Exportação" -#: libraries/messages.inc.php:1020 +#: libraries/messages.inc.php:1016 msgid "Export time in UTC" msgstr "" -#: libraries/messages.inc.php:1021 libraries/sqlparser.lib.php:173 +#: libraries/messages.inc.php:1017 libraries/sqlparser.lib.php:173 msgid "" "There is a chance that you may have found a bug in the SQL parser. Please " "examine your query closely, and check that the quotes are correct and not " @@ -5871,7 +5871,7 @@ msgstr "" "problema, e envie o relatório de bug com os dados do chunk na secção CUT " "abaixo:" -#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:137 +#: libraries/messages.inc.php:1018 libraries/sqlparser.lib.php:137 msgid "" "There seems to be an error in your SQL query. The MySQL server error output " "below, if there is any, may also help you in diagnosing the problem" @@ -5879,420 +5879,420 @@ msgstr "" "Parece haver um erro no seu query SQL. A saída do servidor MySQL abaixo, " "isto se existir alguma, também o poderá ajudar a diagnosticar o problema." -#: libraries/messages.inc.php:1026 libraries/sqlparser.lib.php:495 +#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:495 msgid "Invalid Identifer" msgstr "Identificador inválido" -#: libraries/messages.inc.php:1027 libraries/sqlparser.lib.php:344 +#: libraries/messages.inc.php:1023 libraries/sqlparser.lib.php:344 msgid "Unclosed quote" msgstr "Aspa não fechada" -#: libraries/messages.inc.php:1028 libraries/sqlparser.lib.php:612 +#: libraries/messages.inc.php:1024 libraries/sqlparser.lib.php:612 msgid "Unknown Punctuation String" msgstr "Pontuação desconhecida" -#: libraries/messages.inc.php:1030 server_replication.php:327 +#: libraries/messages.inc.php:1026 server_replication.php:327 #: server_replication.php:328 #, fuzzy msgid "Start" msgstr "Sab" -#: libraries/messages.inc.php:1033 tbl_printview.php:369 tbl_structure.php:729 +#: libraries/messages.inc.php:1029 tbl_printview.php:369 tbl_structure.php:729 msgid "Statements" msgstr "Itens" -#: libraries/messages.inc.php:1034 tbl_printview.php:380 tbl_structure.php:741 +#: libraries/messages.inc.php:1030 tbl_printview.php:380 tbl_structure.php:741 msgid "static" msgstr "" -#: libraries/messages.inc.php:1035 server_status.php:388 +#: libraries/messages.inc.php:1031 server_status.php:388 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: libraries/messages.inc.php:1038 server_replication.php:327 +#: libraries/messages.inc.php:1034 server_replication.php:327 #: server_replication.php:328 msgid "Stop" msgstr "" -#: libraries/messages.inc.php:1039 server_engines.php:49 +#: libraries/messages.inc.php:1035 server_engines.php:49 msgid "Storage Engines" msgstr "" -#: libraries/messages.inc.php:1040 libraries/tbl_properties.inc.php:726 +#: libraries/messages.inc.php:1036 libraries/tbl_properties.inc.php:726 #: server_engines.php:58 tbl_operations.php:353 msgid "Storage Engine" msgstr "" -#: libraries/messages.inc.php:1042 +#: libraries/messages.inc.php:1038 msgid "CSV for MS Excel" msgstr "dados CSV para MS Excel" -#: libraries/messages.inc.php:1044 tbl_structure.php:516 tbl_structure.php:518 +#: libraries/messages.inc.php:1040 tbl_structure.php:516 tbl_structure.php:518 msgid "Propose table structure" msgstr "Propor uma estrutura de tabela" -#: libraries/messages.inc.php:1045 server_synchronize.php:424 +#: libraries/messages.inc.php:1041 server_synchronize.php:424 #: server_synchronize.php:867 #, fuzzy msgid "Structure Difference" msgstr "Somente estrutura" -#: libraries/messages.inc.php:1049 server_synchronize.php:265 +#: libraries/messages.inc.php:1045 server_synchronize.php:265 msgid "Structure Synchronization" msgstr "" -#: libraries/messages.inc.php:1050 libraries/sql_query_form.lib.php:462 +#: libraries/messages.inc.php:1046 libraries/sql_query_form.lib.php:462 msgid "Submit" msgstr "Submete" -#: libraries/messages.inc.php:1052 main.php:358 +#: libraries/messages.inc.php:1048 main.php:358 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " "issues." msgstr "" -#: libraries/messages.inc.php:1054 libraries/mysql_charsets.lib.php:295 +#: libraries/messages.inc.php:1050 libraries/mysql_charsets.lib.php:295 #: libraries/mysql_charsets.lib.php:392 msgid "Swedish" msgstr "Sueco" -#: libraries/messages.inc.php:1060 tbl_operations.php:556 +#: libraries/messages.inc.php:1056 tbl_operations.php:556 msgid "Switch to copied table" msgstr "Mudar para a tabela copiada" -#: libraries/messages.inc.php:1061 server_synchronize.php:1213 +#: libraries/messages.inc.php:1057 server_synchronize.php:1213 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." msgstr "" -#: libraries/messages.inc.php:1062 server_synchronize.php:451 +#: libraries/messages.inc.php:1058 server_synchronize.php:451 #: server_synchronize.php:896 msgid "Synchronize Databases" msgstr "" -#: libraries/messages.inc.php:1063 libraries/server_links.inc.php:92 +#: libraries/messages.inc.php:1059 libraries/server_links.inc.php:92 #: server_synchronize.php:1092 server_synchronize.php:1100 msgid "Synchronize" msgstr "" -#: libraries/messages.inc.php:1065 server_synchronize.php:430 +#: libraries/messages.inc.php:1061 server_synchronize.php:430 #: server_synchronize.php:873 msgid "Add column(s)" msgstr "" -#: libraries/messages.inc.php:1066 tbl_create.php:62 +#: libraries/messages.inc.php:1062 tbl_create.php:62 #, fuzzy, php-format msgid "Table %s already exists!" msgstr "O utilizador %s já existe!" -#: libraries/messages.inc.php:1067 server_synchronize.php:432 +#: libraries/messages.inc.php:1063 server_synchronize.php:432 #: server_synchronize.php:875 msgid "Alter column(s)" msgstr "" -#: libraries/messages.inc.php:1068 tbl_addfield.php:189 tbl_alter.php:103 +#: libraries/messages.inc.php:1064 tbl_addfield.php:189 tbl_alter.php:103 #: tbl_indexes.php:98 #, fuzzy, php-format msgid "Table %1$s has been altered successfully" msgstr "Os utilizadores selecionado foram apagados com sucesso." -#: libraries/messages.inc.php:1069 server_synchronize.php:434 +#: libraries/messages.inc.php:1065 server_synchronize.php:434 #: server_synchronize.php:877 msgid "Apply index(s)" msgstr "" -#: libraries/messages.inc.php:1071 server_synchronize.php:446 +#: libraries/messages.inc.php:1067 server_synchronize.php:446 #: server_synchronize.php:890 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: libraries/messages.inc.php:1072 tbl_move_copy.php:82 +#: libraries/messages.inc.php:1068 tbl_move_copy.php:82 msgid "The table name is empty!" msgstr "O nome da tabela está vazio!" -#: libraries/messages.inc.php:1073 tbl_create.php:249 +#: libraries/messages.inc.php:1069 tbl_create.php:249 #, fuzzy, php-format msgid "Table %1$s has been created." msgstr "A tabela %s foi eliminada" -#: libraries/messages.inc.php:1076 tbl_operations.php:628 +#: libraries/messages.inc.php:1072 tbl_operations.php:628 #, php-format msgid "Table %s has been flushed" msgstr "A tabela %s foi fechada" -#: libraries/messages.inc.php:1077 server_synchronize.php:436 +#: libraries/messages.inc.php:1073 server_synchronize.php:436 #: server_synchronize.php:879 msgid "Insert row(s)" msgstr "" -#: libraries/messages.inc.php:1078 libraries/tbl_links.inc.php:107 +#: libraries/messages.inc.php:1074 libraries/tbl_links.inc.php:107 #: libraries/tbl_links.inc.php:140 libraries/tbl_links.inc.php:141 msgid "Table seems to be empty!" msgstr "" -#: libraries/messages.inc.php:1079 tbl_operations.php:568 +#: libraries/messages.inc.php:1075 tbl_operations.php:568 msgid "Table maintenance" msgstr "Manutenção da tabela" -#: libraries/messages.inc.php:1080 libraries/tbl_properties.inc.php:618 +#: libraries/messages.inc.php:1076 libraries/tbl_properties.inc.php:618 #: server_synchronize.php:428 server_synchronize.php:871 msgid "Table name" msgstr "" -#: libraries/messages.inc.php:1081 pdf_schema.php:1116 +#: libraries/messages.inc.php:1077 pdf_schema.php:1116 msgid "Table of contents" msgstr "Índice" -#: libraries/messages.inc.php:1082 tbl_operations.php:334 +#: libraries/messages.inc.php:1078 tbl_operations.php:334 msgid "Table options" msgstr "Opções da tabela" -#: libraries/messages.inc.php:1083 server_synchronize.php:431 +#: libraries/messages.inc.php:1079 server_synchronize.php:431 #: server_synchronize.php:874 msgid "Remove column(s)" msgstr "" -#: libraries/messages.inc.php:1084 server_synchronize.php:433 +#: libraries/messages.inc.php:1080 server_synchronize.php:433 #: server_synchronize.php:876 msgid "Remove index(s)" msgstr "" -#: libraries/messages.inc.php:1088 server_synchronize.php:435 +#: libraries/messages.inc.php:1084 server_synchronize.php:435 #: server_synchronize.php:878 msgid "Update row(s)" msgstr "" -#: libraries/messages.inc.php:1090 server_synchronize.php:942 +#: libraries/messages.inc.php:1086 server_synchronize.php:942 msgid "Target database has been synchronized with source database" msgstr "" -#: libraries/messages.inc.php:1091 server_privileges.php:392 +#: libraries/messages.inc.php:1087 server_privileges.php:392 #: server_privileges.php:527 server_privileges.php:1679 #: server_privileges.php:1685 msgid "Table-specific privileges" msgstr "Privilégios específicos da tabela" -#: libraries/messages.inc.php:1092 server_status.php:254 +#: libraries/messages.inc.php:1088 server_status.php:254 msgid "Temporary data" msgstr "" -#: libraries/messages.inc.php:1093 tbl_change.php:728 +#: libraries/messages.inc.php:1089 tbl_change.php:728 msgid " Because of its length,
this field might not be editable " msgstr " Devido ao seu tamanho,
este campo pode não ser editável " -#: libraries/messages.inc.php:1094 +#: libraries/messages.inc.php:1090 msgid "Texy! text" msgstr "" -#: libraries/messages.inc.php:1095 libraries/mysql_charsets.lib.php:298 +#: libraries/messages.inc.php:1091 libraries/mysql_charsets.lib.php:298 #: libraries/mysql_charsets.lib.php:395 msgid "Thai" msgstr "Tailandês" -#: libraries/messages.inc.php:1102 libraries/replication_gui.lib.php:308 +#: libraries/messages.inc.php:1098 libraries/replication_gui.lib.php:308 #: server_privileges.php:734 msgid "This Host" msgstr "Este Anfitrião" -#: libraries/messages.inc.php:1103 server_status.php:252 +#: libraries/messages.inc.php:1099 server_status.php:252 msgid "Threads" msgstr "" -#: libraries/messages.inc.php:1104 server_processlist.php:22 +#: libraries/messages.inc.php:1100 server_processlist.php:22 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: libraries/messages.inc.php:1106 +#: libraries/messages.inc.php:1102 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." msgstr "" -#: libraries/messages.inc.php:1109 pmd_pdf.php:94 +#: libraries/messages.inc.php:1105 pmd_pdf.php:94 msgid "to/from page" msgstr "" -#: libraries/messages.inc.php:1110 pdf_pages.php:343 +#: libraries/messages.inc.php:1106 pdf_pages.php:343 msgid "Toggle scratchboard" msgstr "" -#: libraries/messages.inc.php:1111 pmd_general.php:99 +#: libraries/messages.inc.php:1107 pmd_general.php:99 msgid "Toggle small/big" msgstr "" -#: libraries/messages.inc.php:1112 pmd_help.php:27 +#: libraries/messages.inc.php:1108 pmd_help.php:27 msgid "To select relation, click :" msgstr "" -#: libraries/messages.inc.php:1115 libraries/tbl_links.inc.php:149 +#: libraries/messages.inc.php:1111 libraries/tbl_links.inc.php:149 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" -#: libraries/messages.inc.php:1116 tbl_tracking.php:655 +#: libraries/messages.inc.php:1112 tbl_tracking.php:655 msgid "Activate now" msgstr "" -#: libraries/messages.inc.php:1117 tbl_tracking.php:653 +#: libraries/messages.inc.php:1113 tbl_tracking.php:653 #, php-format msgid "Activate tracking for %s.%s" msgstr "" -#: libraries/messages.inc.php:1118 tbl_tracking.php:221 +#: libraries/messages.inc.php:1114 tbl_tracking.php:221 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/messages.inc.php:1119 tbl_tracking.php:688 +#: libraries/messages.inc.php:1115 tbl_tracking.php:688 #, fuzzy msgid "Create version" msgstr "Versão do servidor" -#: libraries/messages.inc.php:1120 tbl_tracking.php:668 +#: libraries/messages.inc.php:1116 tbl_tracking.php:668 #, php-format msgid "Create version %s of %s.%s" msgstr "" -#: libraries/messages.inc.php:1122 tbl_tracking.php:412 +#: libraries/messages.inc.php:1118 tbl_tracking.php:412 msgid "Data definition statement" msgstr "" -#: libraries/messages.inc.php:1123 tbl_tracking.php:463 +#: libraries/messages.inc.php:1119 tbl_tracking.php:463 msgid "Data manipulation statement" msgstr "" -#: libraries/messages.inc.php:1124 tbl_tracking.php:410 tbl_tracking.php:461 +#: libraries/messages.inc.php:1120 tbl_tracking.php:410 tbl_tracking.php:461 #, fuzzy msgid "Date" msgstr "Dados" -#: libraries/messages.inc.php:1125 tbl_tracking.php:642 +#: libraries/messages.inc.php:1121 tbl_tracking.php:642 msgid "Deactivate now" msgstr "" -#: libraries/messages.inc.php:1126 tbl_tracking.php:640 +#: libraries/messages.inc.php:1122 tbl_tracking.php:640 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "" -#: libraries/messages.inc.php:1127 tbl_tracking.php:521 +#: libraries/messages.inc.php:1123 tbl_tracking.php:521 #, fuzzy, php-format msgid "Export as %s" msgstr "Tipo de Exportação" -#: libraries/messages.inc.php:1130 tbl_tracking.php:251 tbl_tracking.php:379 +#: libraries/messages.inc.php:1126 tbl_tracking.php:251 tbl_tracking.php:379 msgid "Close" msgstr "" -#: libraries/messages.inc.php:1131 tbl_tracking.php:114 +#: libraries/messages.inc.php:1127 tbl_tracking.php:114 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/messages.inc.php:1133 tbl_tracking.php:397 tbl_tracking.php:504 +#: libraries/messages.inc.php:1129 tbl_tracking.php:397 tbl_tracking.php:504 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "" -#: libraries/messages.inc.php:1134 tbl_tracking.php:561 +#: libraries/messages.inc.php:1130 tbl_tracking.php:561 msgid "Show versions" msgstr "" -#: libraries/messages.inc.php:1135 tbl_tracking.php:507 +#: libraries/messages.inc.php:1131 tbl_tracking.php:507 msgid "SQL dump (file download)" msgstr "" -#: libraries/messages.inc.php:1136 tbl_tracking.php:508 +#: libraries/messages.inc.php:1132 tbl_tracking.php:508 msgid "SQL dump" msgstr "" -#: libraries/messages.inc.php:1137 tbl_tracking.php:213 +#: libraries/messages.inc.php:1133 tbl_tracking.php:213 msgid "SQL statements executed." msgstr "" -#: libraries/messages.inc.php:1138 +#: libraries/messages.inc.php:1134 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/messages.inc.php:1139 tbl_tracking.php:509 +#: libraries/messages.inc.php:1135 tbl_tracking.php:509 msgid "SQL execution" msgstr "" -#: libraries/messages.inc.php:1140 tbl_tracking.php:230 +#: libraries/messages.inc.php:1136 tbl_tracking.php:230 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/messages.inc.php:1141 tbl_tracking.php:381 +#: libraries/messages.inc.php:1137 tbl_tracking.php:381 msgid "Tracking statements" msgstr "" -#: libraries/messages.inc.php:1148 tbl_tracking.php:593 +#: libraries/messages.inc.php:1144 tbl_tracking.php:593 #, fuzzy msgid "Version" msgstr "versão do PHP" -#: libraries/messages.inc.php:1149 tbl_tracking.php:672 +#: libraries/messages.inc.php:1145 tbl_tracking.php:672 msgid "Track these data definition statements:" msgstr "" -#: libraries/messages.inc.php:1150 tbl_tracking.php:680 +#: libraries/messages.inc.php:1146 tbl_tracking.php:680 msgid "Track these data manipulation statements:" msgstr "" -#: libraries/messages.inc.php:1155 tbl_tracking.php:411 tbl_tracking.php:462 +#: libraries/messages.inc.php:1151 tbl_tracking.php:411 tbl_tracking.php:462 #, fuzzy msgid "Username" msgstr "Utilizador :" -#: libraries/messages.inc.php:1156 tbl_tracking.php:203 +#: libraries/messages.inc.php:1152 tbl_tracking.php:203 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "" -#: libraries/messages.inc.php:1157 tbl_tracking.php:187 +#: libraries/messages.inc.php:1153 tbl_tracking.php:187 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "" -#: libraries/messages.inc.php:1158 tbl_tracking.php:195 +#: libraries/messages.inc.php:1154 tbl_tracking.php:195 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "" -#: libraries/messages.inc.php:1159 tbl_tracking.php:262 +#: libraries/messages.inc.php:1155 tbl_tracking.php:262 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/messages.inc.php:1161 tbl_tracking.php:220 +#: libraries/messages.inc.php:1157 tbl_tracking.php:220 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/messages.inc.php:1162 libraries/mysql_charsets.lib.php:219 +#: libraries/messages.inc.php:1158 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:362 msgid "Traditional Chinese" msgstr "Chinês Tradicional" -#: libraries/messages.inc.php:1163 libraries/mysql_charsets.lib.php:292 +#: libraries/messages.inc.php:1159 libraries/mysql_charsets.lib.php:292 #, fuzzy msgid "Traditional Spanish" msgstr "Chinês Tradicional" -#: libraries/messages.inc.php:1164 server_status.php:388 +#: libraries/messages.inc.php:1160 server_status.php:388 msgid "Traffic" msgstr "Tráfego" -#: libraries/messages.inc.php:1165 server_status.php:261 +#: libraries/messages.inc.php:1161 server_status.php:261 msgid "Transaction coordinator" msgstr "" -#: libraries/messages.inc.php:1166 +#: libraries/messages.inc.php:1162 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 " @@ -6300,13 +6300,13 @@ msgid "" "need to set the first option to the empty string." msgstr "" -#: libraries/messages.inc.php:1167 +#: libraries/messages.inc.php:1163 msgid "" "Displays hexadecimal representation of data. Optional first parameter " "specifies how often space will be added (defaults to 2 nibbles)." msgstr "" -#: libraries/messages.inc.php:1168 +#: libraries/messages.inc.php:1164 msgid "" "Displays a clickable thumbnail. The options are the maximum width and height " "in pixels. The original aspect ratio is preserved." @@ -6314,15 +6314,15 @@ msgstr "" "Mostra uma miniatura clicável; opções: largura,altura em pixeis (mantém a " "proporção original)" -#: libraries/messages.inc.php:1169 +#: libraries/messages.inc.php:1165 msgid "Displays a link to download this image." msgstr "Mostra uma ligação para esta imagem (blob download directo , i.e.)." -#: libraries/messages.inc.php:1170 +#: libraries/messages.inc.php:1166 msgid "See image/jpeg: inline" msgstr "Ver imagem/jpeg: inline" -#: libraries/messages.inc.php:1171 +#: libraries/messages.inc.php:1167 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 " @@ -6334,7 +6334,7 @@ msgid "" "gmdate() function." msgstr "" -#: libraries/messages.inc.php:1172 +#: libraries/messages.inc.php:1168 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 " @@ -6348,31 +6348,31 @@ msgid "" "(Default 1)." msgstr "" -#: libraries/messages.inc.php:1173 +#: libraries/messages.inc.php:1169 msgid "" "Displays the contents of the field as-is, without running it through " "htmlspecialchars(). That is, the field is assumed to contain valid HTML." msgstr "Preserva a formatação original do campo. Sem Escaping." -#: libraries/messages.inc.php:1174 +#: libraries/messages.inc.php:1170 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." msgstr "" -#: libraries/messages.inc.php:1175 +#: libraries/messages.inc.php:1171 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." msgstr "" -#: libraries/messages.inc.php:1176 +#: libraries/messages.inc.php:1172 msgid "Formats text as SQL query with syntax highlighting." msgstr "" -#: libraries/messages.inc.php:1177 +#: libraries/messages.inc.php:1173 msgid "" "Displays a part of a string. The first option is the number of characters to " "skip from the beginning of the string (Default 0). The second option is the " @@ -6381,70 +6381,70 @@ msgid "" "(Default: \"...\")." msgstr "" -#: libraries/messages.inc.php:1179 server_binlog.php:183 server_binlog.php:186 +#: libraries/messages.inc.php:1175 server_binlog.php:183 server_binlog.php:186 #: server_processlist.php:49 server_processlist.php:51 msgid "Truncate Shown Queries" msgstr "Truncar os Queries mostrados" -#: libraries/messages.inc.php:1180 libraries/mysql_charsets.lib.php:301 +#: libraries/messages.inc.php:1176 libraries/mysql_charsets.lib.php:301 #: libraries/mysql_charsets.lib.php:389 msgid "Turkish" msgstr "Turco" -#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:304 +#: libraries/messages.inc.php:1179 libraries/mysql_charsets.lib.php:304 #: libraries/mysql_charsets.lib.php:386 msgid "Ukrainian" msgstr "Ucraniano" -#: libraries/messages.inc.php:1185 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:1181 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 msgid "Unicode" msgstr "Unicode" -#: libraries/messages.inc.php:1187 libraries/mysql_charsets.lib.php:398 +#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:398 #: libraries/mysql_charsets.lib.php:405 msgid "unknown" msgstr "desconhecido" -#: libraries/messages.inc.php:1190 server_privileges.php:1152 +#: libraries/messages.inc.php:1186 server_privileges.php:1152 #, php-format msgid "You have updated the privileges for %s." msgstr "Actualizou os privilégios de %s." -#: libraries/messages.inc.php:1191 user_password.php:112 +#: libraries/messages.inc.php:1187 user_password.php:112 msgid "The profile has been updated." msgstr "O prefil foi actualizado." -#: libraries/messages.inc.php:1193 libraries/relation.lib.php:138 +#: libraries/messages.inc.php:1189 libraries/relation.lib.php:138 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "Consulte a Documentação sobre como actualizar a Tabela Column_comments Table" -#: libraries/messages.inc.php:1194 +#: libraries/messages.inc.php:1190 #, php-format msgid "You should upgrade to %s %s or later." msgstr "deve actualizar para %s %s ou mais recente." -#: libraries/messages.inc.php:1204 tbl_printview.php:314 tbl_structure.php:661 +#: libraries/messages.inc.php:1200 tbl_printview.php:314 tbl_structure.php:661 msgid "Usage" msgstr "Utilização" -#: libraries/messages.inc.php:1205 +#: libraries/messages.inc.php:1201 msgid "Enclose table and field names with backquotes" msgstr "Usar apóstrofes com os nomes das tabelas e campos" -#: libraries/messages.inc.php:1206 libraries/replication_gui.lib.php:314 +#: libraries/messages.inc.php:1202 libraries/replication_gui.lib.php:314 #: server_privileges.php:740 msgid "Use Host Table" msgstr "Usar a tabela do anfitrião" -#: libraries/messages.inc.php:1207 server_privileges.php:848 +#: libraries/messages.inc.php:1203 server_privileges.php:848 #, php-format msgid "The user %s already exists!" msgstr "O utilizador %s já existe!" -#: libraries/messages.inc.php:1209 libraries/replication_gui.lib.php:55 +#: libraries/messages.inc.php:1205 libraries/replication_gui.lib.php:55 #: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245 #: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255 #: server_privileges.php:672 server_privileges.php:675 @@ -6452,35 +6452,35 @@ msgstr "O utilizador %s já existe!" msgid "User name" msgstr "Nome do Utilizador" -#: libraries/messages.inc.php:1210 server_privileges.php:1645 +#: libraries/messages.inc.php:1206 server_privileges.php:1645 msgid "The selected user was not found in the privilege table." msgstr "O utilizador selecionado não se encontra na tabela de privilégios." -#: libraries/messages.inc.php:1211 server_privileges.php:1365 +#: libraries/messages.inc.php:1207 server_privileges.php:1365 msgid "User overview" msgstr "" -#: libraries/messages.inc.php:1212 server_privileges.php:1261 +#: libraries/messages.inc.php:1208 server_privileges.php:1261 msgid "The selected users have been deleted successfully." msgstr "Os utilizadores selecionado foram apagados com sucesso." -#: libraries/messages.inc.php:1213 server_privileges.php:2026 +#: libraries/messages.inc.php:1209 server_privileges.php:2026 #, php-format msgid "Users having access to "%s"" msgstr "Utilizadores que tem acesso a "%s"" -#: libraries/messages.inc.php:1214 main.php:189 server_privileges.php:1350 +#: libraries/messages.inc.php:1210 main.php:189 server_privileges.php:1350 #: server_privileges.php:1497 server_privileges.php:1611 #: server_privileges.php:2029 server_processlist.php:54 msgid "User" msgstr "Utilizador" -#: libraries/messages.inc.php:1215 tbl_change.php:1171 +#: libraries/messages.inc.php:1211 tbl_change.php:1171 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/messages.inc.php:1217 libraries/replication_gui.lib.php:251 +#: libraries/messages.inc.php:1213 libraries/replication_gui.lib.php:251 #: libraries/replication_gui.lib.php:319 libraries/replication_gui.lib.php:342 #: server_privileges.php:678 server_privileges.php:745 #: server_privileges.php:769 server_privileges.php:1889 @@ -6488,96 +6488,96 @@ msgstr "" msgid "Use text field" msgstr "Usar campo de texto" -#: libraries/messages.inc.php:1221 libraries/sqlvalidator.lib.php:68 +#: libraries/messages.inc.php:1217 libraries/sqlvalidator.lib.php:68 #, php-format msgid "" "The SQL validator could not be initialized. Please check if you have " "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" -#: libraries/messages.inc.php:1222 libraries/replication_gui.lib.php:111 +#: libraries/messages.inc.php:1218 libraries/replication_gui.lib.php:111 #: server_status.php:627 tbl_change.php:324 tbl_printview.php:370 #: tbl_select.php:139 tbl_structure.php:730 msgid "Value" msgstr "Valor" -#: libraries/messages.inc.php:1223 libraries/replication_gui.lib.php:110 +#: libraries/messages.inc.php:1219 libraries/replication_gui.lib.php:110 #: libraries/sql_query_form.lib.php:445 server_status.php:626 #: server_variables.php:52 msgid "Variable" msgstr "Variável" -#: libraries/messages.inc.php:1225 server_export.php:21 +#: libraries/messages.inc.php:1221 server_export.php:21 #, fuzzy msgid "View dump (schema) of databases" msgstr "Ver o esquema da base de dados" -#: libraries/messages.inc.php:1227 tbl_export.php:23 +#: libraries/messages.inc.php:1223 tbl_export.php:23 msgid "View dump (schema) of table" msgstr "Ver o esquema da tabela" -#: libraries/messages.inc.php:1231 view_create.php:142 +#: libraries/messages.inc.php:1227 view_create.php:142 msgid "VIEW name" msgstr "" -#: libraries/messages.inc.php:1237 main.php:205 +#: libraries/messages.inc.php:1233 main.php:205 msgid "Web server" msgstr "" -#: libraries/messages.inc.php:1239 libraries/mysql_charsets.lib.php:277 +#: libraries/messages.inc.php:1235 libraries/mysql_charsets.lib.php:277 #: libraries/mysql_charsets.lib.php:325 msgid "West European" msgstr "Europeu de Oeste" -#: libraries/messages.inc.php:1240 main.php:230 +#: libraries/messages.inc.php:1236 main.php:230 msgid "Wiki" msgstr "" -#: libraries/messages.inc.php:1241 server_privileges.php:2138 +#: libraries/messages.inc.php:1237 server_privileges.php:2138 msgid "wildcard" msgstr "" -#: libraries/messages.inc.php:1248 +#: libraries/messages.inc.php:1244 #, fuzzy msgid "Export contents" msgstr "Tipo de Exportação" -#: libraries/messages.inc.php:1249 +#: libraries/messages.inc.php:1245 msgid "Export functions" msgstr "" -#: libraries/messages.inc.php:1250 +#: libraries/messages.inc.php:1246 msgid "Export procedures" msgstr "" -#: libraries/messages.inc.php:1251 +#: libraries/messages.inc.php:1247 msgid "Export Structure Schemas (recommended)" msgstr "" -#: libraries/messages.inc.php:1252 +#: libraries/messages.inc.php:1248 #, fuzzy msgid "Export tables" msgstr "Tipo de Exportação" -#: libraries/messages.inc.php:1253 +#: libraries/messages.inc.php:1249 #, fuzzy msgid "Export triggers" msgstr "Tipo de Exportação" -#: libraries/messages.inc.php:1254 +#: libraries/messages.inc.php:1250 #, fuzzy msgid "Export views" msgstr "Tipo de Exportação" -#: libraries/messages.inc.php:1255 +#: libraries/messages.inc.php:1251 msgid "XML" msgstr "XML" -#: libraries/messages.inc.php:1259 server_privileges.php:592 +#: libraries/messages.inc.php:1255 server_privileges.php:592 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Nota: Configurar estas opções para 0 (zero) remove o limite." -#: libraries/messages.inc.php:1260 +#: libraries/messages.inc.php:1256 msgid "\"zipped\"" msgstr "\"Compressão zip\"" diff --git a/po/pt_BR.po b/po/pt_BR.po index a7290dc0e..61f409cc6 100644 --- 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-05-13 11:25+0200\n" +"POT-Creation-Date: 2010-05-13 11:30+0200\n" "PO-Revision-Date: 2010-03-21 05:17+0200\n" "Last-Translator: Maurício Meneghini Fauth \n" "Language-Team: brazilian_portuguese \n" @@ -15,19 +15,19 @@ msgstr "" "X-Generator: Pootle 2.0.1\n" #: browse_foreigners.php:38 browse_foreigners.php:59 -#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:870 +#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:866 #: server_privileges.php:1475 msgid "Show all" msgstr "Mostrar todos" #: browse_foreigners.php:82 db_operations.php:648 -#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:394 -#: libraries/export/pdf.php:147 libraries/messages.inc.php:597 +#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394 +#: libraries/export/pdf.php:147 libraries/messages.inc.php:593 #: pdf_schema.php:283 pdf_schema.php:1123 pdf_schema.php:1139 msgid "Page number:" msgstr "Numero da página:" -#: browse_foreigners.php:132 libraries/messages.inc.php:1242 +#: browse_foreigners.php:132 libraries/messages.inc.php:1238 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -40,7 +40,7 @@ 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/db_links.inc.php:75 -#: libraries/messages.inc.php:841 libraries/tbl_links.inc.php:63 +#: libraries/messages.inc.php:837 libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Procurar" @@ -49,12 +49,12 @@ msgstr "Procurar" #: db_search.php:362 db_structure.php:567 js/messages.php:48 #: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2267 +#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 #: 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 #: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614 -#: libraries/messages.inc.php:361 libraries/replication_gui.lib.php:73 +#: libraries/messages.inc.php:357 libraries/replication_gui.lib.php:73 #: libraries/replication_gui.lib.php:365 libraries/select_server.lib.php:104 #: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477 #: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782 @@ -74,33 +74,33 @@ msgid "Go" msgstr "Executar" #: browse_foreigners.php:168 browse_foreigners.php:172 -#: libraries/Index.class.php:442 libraries/messages.inc.php:459 +#: libraries/Index.class.php:442 libraries/messages.inc.php:455 #: tbl_tracking.php:320 msgid "Keyname" msgstr "Nome chave" #: browse_foreigners.php:169 browse_foreigners.php:171 -#: libraries/messages.inc.php:252 server_collations.php:55 +#: libraries/messages.inc.php:248 server_collations.php:55 #: server_collations.php:67 server_engines.php:59 server_status.php:628 msgid "Description" msgstr "Descrição" #: browse_foreigners.php:247 browse_foreigners.php:256 #: browse_foreigners.php:268 browse_foreigners.php:276 -#: libraries/messages.inc.php:1218 +#: libraries/messages.inc.php:1214 msgid "Use this value" msgstr "Usar este valor" -#: db_create.php:46 libraries/messages.inc.php:215 +#: db_create.php:46 libraries/messages.inc.php:211 #, php-format msgid "Database %1$s has been created." msgstr "Banco de dados %1$s foi criado." -#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:232 +#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:228 msgid "Database comment: " msgstr "Comentário do Banco de Dados: " -#: db_datadict.php:165 libraries/messages.inc.php:1070 +#: db_datadict.php:165 libraries/messages.inc.php:1066 #: libraries/tbl_properties.inc.php:724 pdf_schema.php:1236 #: tbl_operations.php:345 tbl_printview.php:130 msgid "Table comments" @@ -109,7 +109,7 @@ msgstr "Comentários da tabela" #: db_datadict.php:174 db_qbe.php:174 libraries/Index.class.php:446 #: libraries/export/htmlword.php:244 libraries/export/latex.php:360 #: libraries/export/odt.php:294 libraries/export/texytext.php:233 -#: libraries/messages.inc.php:317 libraries/tbl_properties.inc.php:99 +#: libraries/messages.inc.php:313 libraries/tbl_properties.inc.php:99 #: libraries/tbl_properties.inc.php:275 pdf_schema.php:1262 #: pdf_schema.php:1283 tbl_change.php:308 tbl_indexes.php:189 #: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135 @@ -121,7 +121,7 @@ msgstr "Campo" #: libraries/db_events.inc.php:31 libraries/db_routines.inc.php:42 #: 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/messages.inc.php:1181 +#: libraries/export/texytext.php:234 libraries/messages.inc.php:1177 #: libraries/tbl_properties.inc.php:100 pdf_schema.php:1263 #: pdf_schema.php:1284 server_privileges.php:2031 tbl_change.php:287 #: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313 @@ -133,7 +133,7 @@ msgstr "Tipo" #: db_datadict.php:177 libraries/Index.class.php:449 #: libraries/export/htmlword.php:246 libraries/export/latex.php:360 #: libraries/export/odt.php:300 libraries/export/texytext.php:235 -#: libraries/messages.inc.php:576 libraries/tbl_properties.inc.php:109 +#: libraries/messages.inc.php:572 libraries/tbl_properties.inc.php:109 #: pdf_schema.php:1265 pdf_schema.php:1286 tbl_change.php:323 #: tbl_printview.php:145 tbl_structure.php:181 tbl_tracking.php:276 #: tbl_tracking.php:327 @@ -142,7 +142,7 @@ msgstr "Nulo" #: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 -#: libraries/export/texytext.php:236 libraries/messages.inc.php:238 +#: libraries/export/texytext.php:236 libraries/messages.inc.php:234 #: libraries/tbl_properties.inc.php:106 pdf_schema.php:1266 #: pdf_schema.php:1287 tbl_printview.php:146 tbl_structure.php:182 #: tbl_tracking.php:277 @@ -151,14 +151,14 @@ msgstr "Padrão" #: db_datadict.php:182 libraries/export/htmlword.php:249 #: libraries/export/latex.php:362 libraries/export/odt.php:307 -#: libraries/export/texytext.php:238 libraries/messages.inc.php:483 +#: libraries/export/texytext.php:238 libraries/messages.inc.php:479 #: pdf_schema.php:1268 pdf_schema.php:1289 tbl_printview.php:150 msgid "Links to" msgstr "Links para" #: db_datadict.php:184 db_printview.php:112 libraries/export/htmlword.php:252 #: libraries/export/latex.php:365 libraries/export/odt.php:312 -#: libraries/export/texytext.php:241 libraries/messages.inc.php:163 +#: libraries/export/texytext.php:241 libraries/messages.inc.php:159 #: libraries/tbl_properties.inc.php:130 pdf_schema.php:1279 #: pdf_schema.php:1290 tbl_printview.php:152 msgid "Comments" @@ -167,7 +167,7 @@ msgstr "Comentários" #: db_datadict.php:267 libraries/Index.class.php:359 #: 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/messages.inc.php:559 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:555 #: libraries/mult_submits.inc.php:263 pdf_schema.php:1344 #: server_privileges.php:1529 server_privileges.php:1540 #: server_privileges.php:1850 server_privileges.php:1855 @@ -179,7 +179,7 @@ msgstr "Não" #: db_datadict.php:267 libraries/Index.class.php:360 #: libraries/Index.class.php:385 libraries/export/htmlword.php:322 #: libraries/export/latex.php:430 libraries/export/odt.php:368 -#: libraries/export/texytext.php:311 libraries/messages.inc.php:1257 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:1253 #: libraries/mult_submits.inc.php:45 libraries/mult_submits.inc.php:50 #: libraries/mult_submits.inc.php:55 libraries/mult_submits.inc.php:60 #: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:101 @@ -193,108 +193,108 @@ msgstr "Não" msgid "Yes" msgstr "Sim" -#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:670 +#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:666 #: tbl_printview.php:498 msgid "Print" msgstr "Imprimir" -#: db_export.php:29 libraries/messages.inc.php:1226 +#: db_export.php:29 libraries/messages.inc.php:1222 msgid "View dump (schema) of database" msgstr "Ver o esquema do Banco de Dados" #: db_export.php:33 db_printview.php:96 db_qbe.php:102 db_structure.php:51 -#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:568 +#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:564 #: navigation.php:346 msgid "No tables found in database." msgstr "Nenhuma tabela encontrada no Banco de Dados" -#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:845 +#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:841 #: server_export.php:27 msgid "Select All" msgstr "Selecionar Todos" -#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1188 +#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1184 #: server_export.php:29 msgid "Unselect All" msgstr "Desmarcar Todos" -#: db_operations.php:38 libraries/messages.inc.php:213 tbl_create.php:54 +#: db_operations.php:38 libraries/messages.inc.php:209 tbl_create.php:54 msgid "The database name is empty!" msgstr "O nome do Banco de Dados está em branco!" -#: db_operations.php:236 libraries/messages.inc.php:753 +#: db_operations.php:236 libraries/messages.inc.php:749 #, php-format msgid "Database %s has been renamed to %s" msgstr "O Banco de Dados %s foi renomeado para %s" -#: db_operations.php:240 libraries/messages.inc.php:178 +#: db_operations.php:240 libraries/messages.inc.php:174 #, php-format msgid "Database %s has been copied to %s" msgstr "Banco de Dados %s copiado para %s" -#: db_operations.php:410 libraries/messages.inc.php:236 +#: db_operations.php:410 libraries/messages.inc.php:232 msgid "Rename database to" msgstr "Renomear Banco de Dados para" -#: db_operations.php:415 libraries/messages.inc.php:161 +#: db_operations.php:415 libraries/messages.inc.php:157 #: server_processlist.php:57 msgid "Command" msgstr "Comando" -#: db_operations.php:425 libraries/messages.inc.php:58 tbl_change.php:1143 +#: db_operations.php:425 libraries/messages.inc.php:54 tbl_change.php:1143 msgid "and then" msgstr "e então" -#: db_operations.php:451 libraries/messages.inc.php:233 +#: db_operations.php:451 libraries/messages.inc.php:229 msgid "Copy database to" msgstr "Copiar Banco de Dados para" -#: db_operations.php:458 libraries/messages.inc.php:1043 +#: db_operations.php:458 libraries/messages.inc.php:1039 #: tbl_operations.php:526 tbl_tracking.php:388 msgid "Structure only" msgstr "Somente estrutura" -#: db_operations.php:459 libraries/messages.inc.php:1041 +#: db_operations.php:459 libraries/messages.inc.php:1037 #: tbl_operations.php:527 tbl_tracking.php:390 msgid "Structure and data" msgstr "Estrutura e dados" -#: db_operations.php:460 libraries/messages.inc.php:229 tbl_operations.php:528 +#: db_operations.php:460 libraries/messages.inc.php:225 tbl_operations.php:528 #: tbl_tracking.php:389 msgid "Data only" msgstr "Dados apenas" -#: db_operations.php:468 libraries/messages.inc.php:186 +#: db_operations.php:468 libraries/messages.inc.php:182 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE antes de copiar" #: db_operations.php:471 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 -#: libraries/export/sql.php:82 libraries/messages.inc.php:30 +#: libraries/export/sql.php:82 libraries/messages.inc.php:26 #: tbl_operations.php:534 #, php-format msgid "Add %s" msgstr "Adicionar %s" -#: db_operations.php:475 libraries/messages.inc.php:29 tbl_operations.php:297 +#: db_operations.php:475 libraries/messages.inc.php:25 tbl_operations.php:297 #: tbl_operations.php:536 msgid "Add AUTO_INCREMENT value" msgstr "Adicionar valor AUTO_INCREMENT" -#: db_operations.php:479 libraries/messages.inc.php:31 tbl_operations.php:543 +#: db_operations.php:479 libraries/messages.inc.php:27 tbl_operations.php:543 msgid "Add constraints" msgstr "Adicionar restrições" -#: db_operations.php:492 libraries/messages.inc.php:1059 +#: db_operations.php:492 libraries/messages.inc.php:1055 msgid "Switch to copied database" msgstr "Mudar para o Banco de Dados copiado" -#: db_operations.php:533 libraries/messages.inc.php:89 +#: db_operations.php:533 libraries/messages.inc.php:85 msgid "BLOB Repository" msgstr "" #: db_operations.php:536 db_tracking.php:76 libraries/common.lib.php:1350 -#: libraries/messages.inc.php:1037 libraries/server_links.inc.php:49 +#: libraries/messages.inc.php:1033 libraries/server_links.inc.php:49 #: server_processlist.php:59 tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "Status" @@ -306,11 +306,11 @@ msgctxt "BLOB repository" msgid "Enabled" msgstr "Habilitado" -#: db_operations.php:548 libraries/messages.inc.php:93 +#: db_operations.php:548 libraries/messages.inc.php:89 msgid "Disable" msgstr "Desabilitar" -#: db_operations.php:558 libraries/messages.inc.php:90 +#: db_operations.php:558 libraries/messages.inc.php:86 msgid "Damaged" msgstr "" @@ -328,12 +328,12 @@ msgctxt "BLOB repository" msgid "Disabled" msgstr "Desabilitado" -#: db_operations.php:574 libraries/messages.inc.php:96 +#: db_operations.php:574 libraries/messages.inc.php:92 msgid "Enable" msgstr "Habilitar" #: db_operations.php:598 libraries/Index.class.php:448 -#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:158 +#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:154 #: 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:361 @@ -342,7 +342,7 @@ msgstr "Habilitar" msgid "Collation" msgstr "Collation" -#: db_operations.php:609 libraries/messages.inc.php:742 main.php:316 +#: db_operations.php:609 libraries/messages.inc.php:738 main.php:316 #: pdf_schema.php:34 #, php-format msgid "" @@ -352,58 +352,58 @@ msgstr "" "Os recursos adicionais para trabalhar com tabelas linkadas foram " "desativadas. Para descobrir o motivo clique %saqui%s." -#: db_operations.php:645 libraries/messages.inc.php:264 pdf_pages.php:528 +#: db_operations.php:645 libraries/messages.inc.php:260 pdf_pages.php:528 msgid "Display PDF schema" msgstr "Exibir esquema PDF" -#: db_operations.php:661 libraries/messages.inc.php:877 pdf_pages.php:529 +#: db_operations.php:661 libraries/messages.inc.php:873 pdf_pages.php:529 msgid "Show grid" msgstr "Mostrar grade" -#: db_operations.php:664 libraries/messages.inc.php:874 pdf_pages.php:530 +#: db_operations.php:664 libraries/messages.inc.php:870 pdf_pages.php:530 msgid "Show color" msgstr "Mostrar cor" -#: db_operations.php:666 libraries/messages.inc.php:998 pdf_pages.php:531 +#: db_operations.php:666 libraries/messages.inc.php:994 pdf_pages.php:531 msgid "Show dimension of tables" msgstr "Mostrar dimensão das tabelas" -#: db_operations.php:669 libraries/messages.inc.php:52 pdf_pages.php:532 +#: db_operations.php:669 libraries/messages.inc.php:48 pdf_pages.php:532 msgid "Display all tables with the same width" msgstr "mostrar todas as tabelas com o mesmo tamanho?" -#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:227 +#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:223 #: pdf_pages.php:533 msgid "Data Dictionary" msgstr "Dicionário de dados" -#: db_operations.php:674 libraries/messages.inc.php:884 pdf_pages.php:534 +#: db_operations.php:674 libraries/messages.inc.php:880 pdf_pages.php:534 msgid "Only show keys" msgstr "" -#: db_operations.php:676 libraries/messages.inc.php:875 pdf_pages.php:535 +#: db_operations.php:676 libraries/messages.inc.php:871 pdf_pages.php:535 msgid "Data Dictionary Format" msgstr "Formato do dicionário de dados" -#: db_operations.php:678 libraries/messages.inc.php:464 pdf_pages.php:537 +#: db_operations.php:678 libraries/messages.inc.php:460 pdf_pages.php:537 msgid "Landscape" msgstr "Paisagem" -#: db_operations.php:679 libraries/messages.inc.php:663 pdf_pages.php:538 +#: db_operations.php:679 libraries/messages.inc.php:659 pdf_pages.php:538 msgid "Portrait" msgstr "Retrato" -#: db_operations.php:682 libraries/messages.inc.php:599 pdf_pages.php:541 +#: db_operations.php:682 libraries/messages.inc.php:595 pdf_pages.php:541 msgid "Paper size" msgstr "Tamanho do papel" -#: db_operations.php:706 libraries/messages.inc.php:281 +#: db_operations.php:706 libraries/messages.inc.php:277 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 libraries/messages.inc.php:1087 +#: libraries/header.inc.php:126 libraries/messages.inc.php:1083 #: pdf_pages.php:405 server_privileges.php:1626 server_privileges.php:1682 #: server_privileges.php:1946 server_synchronize.php:423 #: server_synchronize.php:866 tbl_tracking.php:592 test/theme.php:75 @@ -411,176 +411,176 @@ msgid "Table" msgstr "Tabela" #: db_printview.php:105 libraries/db_structure.lib.php:56 -#: libraries/messages.inc.php:735 +#: libraries/messages.inc.php:731 msgid "Records" msgstr "Registros" #: db_printview.php:109 libraries/db_structure.lib.php:67 -#: libraries/messages.inc.php:1003 tbl_indexes.php:190 +#: libraries/messages.inc.php:999 tbl_indexes.php:190 msgid "Size" msgstr "Tamanho" #: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 -#: libraries/export/sql.php:899 libraries/messages.inc.php:436 +#: libraries/export/sql.php:899 libraries/messages.inc.php:432 msgid "in use" msgstr "em uso" #: db_printview.php:187 libraries/db_info.inc.php:88 -#: libraries/export/sql.php:514 libraries/messages.inc.php:1032 +#: libraries/export/sql.php:514 libraries/messages.inc.php:1028 #: pdf_schema.php:1241 tbl_printview.php:434 tbl_structure.php:810 msgid "Creation" msgstr "Criação" #: db_printview.php:196 libraries/db_info.inc.php:93 -#: libraries/export/sql.php:519 libraries/messages.inc.php:1036 +#: libraries/export/sql.php:519 libraries/messages.inc.php:1032 #: pdf_schema.php:1246 tbl_printview.php:444 tbl_structure.php:818 msgid "Last update" msgstr "Última atualização" #: db_printview.php:205 libraries/db_info.inc.php:98 -#: libraries/export/sql.php:524 libraries/messages.inc.php:1031 +#: libraries/export/sql.php:524 libraries/messages.inc.php:1027 #: pdf_schema.php:1251 tbl_printview.php:454 tbl_structure.php:826 msgid "Last check" msgstr "Última verificação" -#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1085 +#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1081 #, php-format msgid "%s table(s)" msgstr "%s tabela(s)" #: db_qbe.php:29 libraries/display_tbl.lib.php:1981 -#: libraries/messages.inc.php:1051 libraries/sql_query_form.lib.php:140 +#: libraries/messages.inc.php:1047 libraries/sql_query_form.lib.php:140 #: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131 #: view_operations.php:62 msgid "Your SQL query has been executed successfully" msgstr "Seu comando SQL foi executado com sucesso" -#: db_qbe.php:42 libraries/messages.inc.php:371 +#: db_qbe.php:42 libraries/messages.inc.php:367 msgid "You have to choose at least one column to display" msgstr "Deve escolher pelo menos uma coluna para exibir" #: db_qbe.php:200 libraries/db_structure.lib.php:104 -#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1014 +#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1010 msgid "Sort" msgstr "Ordenar" #: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111 #: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828 -#: libraries/messages.inc.php:69 server_databases.php:170 +#: libraries/messages.inc.php:65 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314 msgid "Ascending" msgstr "Ascendente" #: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119 #: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825 -#: libraries/messages.inc.php:251 server_databases.php:170 +#: libraries/messages.inc.php:247 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315 msgid "Descending" msgstr "Descendente" #: db_qbe.php:264 db_tracking.php:78 libraries/display_tbl.lib.php:308 -#: libraries/messages.inc.php:888 tbl_change.php:277 tbl_tracking.php:597 +#: libraries/messages.inc.php:884 tbl_change.php:277 tbl_tracking.php:597 msgid "Show" msgstr "Mostrar" -#: db_qbe.php:300 libraries/messages.inc.php:202 +#: db_qbe.php:300 libraries/messages.inc.php:198 msgid "Criteria" msgstr "Critério" #: db_qbe.php:353 db_qbe.php:435 db_qbe.php:527 db_qbe.php:558 -#: libraries/messages.inc.php:718 +#: libraries/messages.inc.php:714 msgid "Ins" msgstr "Ins" #: db_qbe.php:357 db_qbe.php:439 db_qbe.php:524 db_qbe.php:555 -#: libraries/messages.inc.php:56 +#: libraries/messages.inc.php:52 msgid "And" msgstr "E" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:529 db_qbe.php:560 -#: libraries/messages.inc.php:717 +#: libraries/messages.inc.php:713 msgid "Del" 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/messages.inc.php:592 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:588 #: libraries/tbl_properties.inc.php:779 server_privileges.php:258 #: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288 msgid "Or" msgstr "Ou" -#: db_qbe.php:507 libraries/messages.inc.php:516 +#: db_qbe.php:507 libraries/messages.inc.php:512 msgid "Modify" msgstr "Modificar" -#: db_qbe.php:584 libraries/messages.inc.php:33 +#: db_qbe.php:584 libraries/messages.inc.php:29 msgid "Add/Delete Criteria Row" msgstr "Adicionar/Remover critérios de busca" -#: db_qbe.php:596 libraries/messages.inc.php:32 +#: db_qbe.php:596 libraries/messages.inc.php:28 msgid "Add/Delete Field Columns" msgstr "Adicionar/Remover colunas" -#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1192 +#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1188 msgid "Update Query" msgstr "Atualizar a consulta SQL" -#: db_qbe.php:617 libraries/messages.inc.php:1216 +#: db_qbe.php:617 libraries/messages.inc.php:1212 msgid "Use Tables" msgstr "Usar tabelas" -#: db_qbe.php:640 libraries/messages.inc.php:723 +#: db_qbe.php:640 libraries/messages.inc.php:719 #, php-format msgid "SQL query on database %s:" msgstr "Consulta no Banco de Dados %s:" -#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:823 +#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:819 msgid "Submit Query" msgstr "Enviar consulta SQL" #: db_search.php:68 libraries/auth/config.auth.lib.php:84 #: libraries/auth/config.auth.lib.php:103 #: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52 -#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:26 +#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:22 msgid "Access denied" msgstr "Acesso negado" -#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:836 +#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:832 msgid "at least one of the words" msgstr "pelo menos uma das palavras" -#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:837 +#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:833 msgid "all words" msgstr "todas as palavras" -#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:838 +#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:834 msgid "the exact phrase" msgstr "a frase exata" -#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:839 +#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:835 msgid "as regular expression" msgstr "como expressão regular" -#: db_search.php:242 libraries/messages.inc.php:840 +#: db_search.php:242 libraries/messages.inc.php:836 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Procurar resultados por \"%s\" %s:" -#: db_search.php:260 libraries/messages.inc.php:579 +#: db_search.php:260 libraries/messages.inc.php:575 #, php-format msgid "%s match(es) inside table %s" 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/messages.inc.php:108 +#: db_structure.php:105 libraries/messages.inc.php:104 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468 msgid "Browse" msgstr "Visualizar" #: db_search.php:272 libraries/display_tbl.lib.php:1165 -#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:243 +#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:239 #: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406 #: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377 #: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216 @@ -588,45 +588,45 @@ msgstr "Visualizar" msgid "Delete" msgstr "Remover" -#: db_search.php:285 libraries/messages.inc.php:580 +#: db_search.php:285 libraries/messages.inc.php:576 #, php-format msgid "Total: %s match(es)" msgstr "Total: %s resultado(s)" -#: db_search.php:299 libraries/messages.inc.php:832 +#: db_search.php:299 libraries/messages.inc.php:828 msgid "Search in database" msgstr "Procurar no Banco de Dados" -#: db_search.php:302 libraries/messages.inc.php:835 +#: db_search.php:302 libraries/messages.inc.php:831 msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgstr "Palavra(s) ou valor(es) para procurar (coringa: \"%\"):" -#: db_search.php:307 libraries/messages.inc.php:842 +#: db_search.php:307 libraries/messages.inc.php:838 msgid "Find:" msgstr "Encontrar:" -#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1017 +#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1013 msgid "Words are separated by a space character (\" \")." msgstr "Palavras são separadas por um caracter de espaço (\" \")." -#: db_search.php:325 libraries/messages.inc.php:834 +#: db_search.php:325 libraries/messages.inc.php:830 msgid "Inside table(s):" msgstr "Dentro da(s) tabela(s):" -#: db_search.php:355 libraries/messages.inc.php:833 +#: db_search.php:355 libraries/messages.inc.php:829 msgid "Inside field:" 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/messages.inc.php:431 libraries/sql_query_form.lib.php:334 +#: libraries/messages.inc.php:427 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/db_links.inc.php:63 libraries/export/latex.php:337 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:1048 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:1044 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 #: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269 msgid "Structure" @@ -635,8 +635,8 @@ 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:1642 -#: libraries/db_links.inc.php:100 libraries/messages.inc.php:272 +#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/db_links.inc.php:100 libraries/messages.inc.php:268 #: 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 @@ -646,40 +646,40 @@ 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:1641 -#: libraries/messages.inc.php:284 libraries/mult_submits.inc.php:39 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: libraries/messages.inc.php:280 libraries/mult_submits.inc.php:39 #: libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Limpar" -#: db_structure.php:316 libraries/messages.inc.php:1075 +#: db_structure.php:316 libraries/messages.inc.php:1071 #: libraries/tbl_links.inc.php:100 #, php-format msgid "Table %s has been emptied" msgstr "Tabela %s foi esvaziada" -#: db_structure.php:326 libraries/messages.inc.php:1229 +#: db_structure.php:326 libraries/messages.inc.php:1225 #: 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/messages.inc.php:1074 +#: db_structure.php:326 libraries/messages.inc.php:1070 #: libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "Tabela %s foi eliminada" -#: db_structure.php:333 libraries/messages.inc.php:1128 +#: db_structure.php:333 libraries/messages.inc.php:1124 msgid "Tracking is active." msgstr "" -#: db_structure.php:335 libraries/messages.inc.php:1129 +#: db_structure.php:335 libraries/messages.inc.php:1125 msgid "Tracking is not active." msgstr "" #: db_structure.php:420 libraries/display_tbl.lib.php:1944 -#: libraries/messages.inc.php:1228 +#: libraries/messages.inc.php:1224 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -687,83 +687,83 @@ msgid "" msgstr "" #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 -#: libraries/messages.inc.php:1233 libraries/tbl_info.inc.php:66 +#: libraries/messages.inc.php:1229 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/messages.inc.php:773 libraries/server_links.inc.php:70 +#: libraries/messages.inc.php:769 libraries/server_links.inc.php:70 #: server_replication.php:33 server_replication.php:164 server_status.php:258 msgid "Replication" msgstr "Replicação" -#: db_structure.php:489 libraries/messages.inc.php:1053 +#: db_structure.php:489 libraries/messages.inc.php:1049 msgid "Sum" msgstr "Soma" #: db_structure.php:496 libraries/StorageEngine.class.php:356 -#: libraries/messages.inc.php:239 +#: libraries/messages.inc.php:235 #, 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 #: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086 -#: libraries/messages.inc.php:1243 libraries/mult_submits.inc.php:16 +#: libraries/messages.inc.php:1239 libraries/mult_submits.inc.php:16 #: server_databases.php:346 server_databases.php:351 #: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465 msgid "With selected:" msgstr "Com marcados:" #: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: libraries/messages.inc.php:148 server_databases.php:348 +#: libraries/messages.inc.php:144 server_databases.php:348 #: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459 msgid "Check All" msgstr "Marcar todos" #: db_structure.php:531 libraries/display_tbl.lib.php:2077 -#: libraries/messages.inc.php:1184 libraries/replication_gui.lib.php:33 +#: libraries/messages.inc.php:1180 libraries/replication_gui.lib.php:33 #: server_databases.php:350 server_privileges.php:533 #: server_privileges.php:1564 tbl_structure.php:463 msgid "Uncheck All" msgstr "Desmarcar todos" -#: db_structure.php:536 libraries/messages.inc.php:150 +#: db_structure.php:536 libraries/messages.inc.php:146 msgid "Check tables having overhead" msgstr "Verificar sobre-carga" #: db_structure.php:547 db_structure.php:548 db_structure.php:599 -#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:672 +#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:668 #: libraries/mult_submits.inc.php:28 tbl_structure.php:493 #: tbl_structure.php:495 msgid "Print view" msgstr "Visualização para impressão" -#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:153 +#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:149 #: libraries/mult_submits.inc.php:42 tbl_operations.php:579 msgid "Check table" msgstr "Verificar tabela" -#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:590 +#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:586 #: libraries/mult_submits.inc.php:47 tbl_operations.php:619 #: tbl_structure.php:710 tbl_structure.php:712 msgid "Optimize table" msgstr "Otimizar tabela" -#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:758 +#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:754 #: libraries/mult_submits.inc.php:52 tbl_operations.php:609 msgid "Repair table" msgstr "Reparar tabela" -#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:55 +#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:51 #: libraries/mult_submits.inc.php:57 tbl_operations.php:599 msgid "Analyze table" msgstr "Analizar tabela" #: db_structure.php:557 db_structure.php:558 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/messages.inc.php:310 +#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:306 #: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84 #: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109 #: server_privileges.php:1341 setup/frames/menu.inc.php:22 @@ -771,7 +771,7 @@ msgstr "Analizar tabela" msgid "Export" msgstr "Exportar" -#: db_tracking.php:66 libraries/messages.inc.php:1151 +#: db_tracking.php:66 libraries/messages.inc.php:1147 #, fuzzy msgid "Tracked tables" msgstr "Verificar tabela" @@ -780,7 +780,7 @@ msgstr "Verificar tabela" #: 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/header_printview.inc.php:58 libraries/messages.inc.php:212 +#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:208 #: navigation.php:233 server_databases.php:169 server_privileges.php:1621 #: server_privileges.php:1682 server_privileges.php:1940 #: server_processlist.php:56 server_synchronize.php:1179 @@ -788,83 +788,83 @@ msgstr "Verificar tabela" msgid "Database" msgstr "Banco de Dados" -#: db_tracking.php:73 libraries/messages.inc.php:1146 +#: db_tracking.php:73 libraries/messages.inc.php:1142 #, fuzzy msgid "Last version" msgstr "Criar relacionamento" -#: db_tracking.php:74 libraries/messages.inc.php:1145 tbl_tracking.php:594 +#: db_tracking.php:74 libraries/messages.inc.php:1141 tbl_tracking.php:594 #, fuzzy msgid "Created" msgstr "Criar" -#: db_tracking.php:75 libraries/messages.inc.php:1147 tbl_tracking.php:595 +#: db_tracking.php:75 libraries/messages.inc.php:1143 tbl_tracking.php:595 msgid "Updated" msgstr "" #: db_tracking.php:77 libraries/Index.class.php:440 -#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:27 +#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:23 #: server_databases.php:203 server_privileges.php:1503 #: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187 msgid "Action" msgstr "Ação" -#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:247 +#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:243 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:106 libraries/messages.inc.php:1142 tbl_tracking.php:548 +#: db_tracking.php:106 libraries/messages.inc.php:1138 tbl_tracking.php:548 #: tbl_tracking.php:606 tbl_tracking.php:613 msgid "active" msgstr "" -#: db_tracking.php:108 libraries/messages.inc.php:1143 tbl_tracking.php:550 +#: db_tracking.php:108 libraries/messages.inc.php:1139 tbl_tracking.php:550 #: tbl_tracking.php:608 tbl_tracking.php:610 msgid "not active" msgstr "" -#: db_tracking.php:121 libraries/messages.inc.php:1160 +#: db_tracking.php:121 libraries/messages.inc.php:1156 #, fuzzy msgid "Versions" msgstr "Pérsa" -#: db_tracking.php:122 libraries/messages.inc.php:1132 tbl_tracking.php:379 +#: db_tracking.php:122 libraries/messages.inc.php:1128 tbl_tracking.php:379 #: tbl_tracking.php:624 msgid "Tracking report" msgstr "" -#: db_tracking.php:123 libraries/messages.inc.php:1144 tbl_tracking.php:251 +#: db_tracking.php:123 libraries/messages.inc.php:1140 tbl_tracking.php:251 #: tbl_tracking.php:624 #, fuzzy msgid "Structure snapshot" msgstr "Somente estrutura" -#: db_tracking.php:152 libraries/messages.inc.php:1154 +#: db_tracking.php:152 libraries/messages.inc.php:1150 #, fuzzy msgid "Untracked tables" msgstr "Verificar tabela" -#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1153 +#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1149 #: tbl_structure.php:529 tbl_structure.php:531 #, fuzzy msgid "Track table" msgstr "Verificar tabela" -#: db_tracking.php:200 libraries/messages.inc.php:1121 +#: db_tracking.php:200 libraries/messages.inc.php:1117 #, fuzzy msgid "Database Log" msgstr "Banco de Dados" -#: export.php:62 libraries/messages.inc.php:312 +#: export.php:62 libraries/messages.inc.php:308 msgid "Selected export type has to be saved in file!" msgstr "Tipo de exportação selecionada tem que ser salva no arquivo!" -#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:567 +#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:563 #, php-format msgid "Insufficient space to save the file %s." msgstr "Espaço insuficiente para salvar o arquivo %s." -#: export.php:294 libraries/messages.inc.php:324 +#: export.php:294 libraries/messages.inc.php:320 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -872,17 +872,17 @@ msgstr "" "O arquivo %s já existe no servidor, mude o nome do arquivo ou verifique sua " "opção de sobrescrever." -#: export.php:298 export.php:302 libraries/messages.inc.php:562 +#: export.php:298 export.php:302 libraries/messages.inc.php:558 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "O servidor web não tem permissão para salvar o arquivo %s." -#: export.php:629 libraries/messages.inc.php:276 +#: export.php:629 libraries/messages.inc.php:272 #, php-format msgid "Dump has been saved to file %s." msgstr "Dump foi salvo no arquivo %s." -#: import.php:60 libraries/messages.inc.php:1202 +#: import.php:60 libraries/messages.inc.php:1198 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation%" @@ -892,14 +892,14 @@ msgstr "" "na %sdocumentation%s para burlar esses limites." #: import.php:279 import.php:332 libraries/File.class.php:849 -#: libraries/File.class.php:961 libraries/messages.inc.php:325 +#: libraries/File.class.php:961 libraries/messages.inc.php:321 msgid "File could not be read" msgstr "O arquivo não pode ser lido" #: import.php:287 import.php:296 import.php:315 import.php:324 #: libraries/File.class.php:1031 libraries/File.class.php:1039 #: libraries/File.class.php:1055 libraries/File.class.php:1063 -#: libraries/messages.inc.php:1189 +#: libraries/messages.inc.php:1185 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -909,7 +909,7 @@ msgstr "" "suporte para isso não ter sido implementado ou pode ter sido desabilitado " "por sua configuração PHP." -#: import.php:337 libraries/messages.inc.php:547 +#: import.php:337 libraries/messages.inc.php:543 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -920,29 +920,29 @@ msgstr "" "suas configurações do PHP. Veja FAQ 1.16." #: import.php:372 libraries/display_import.lib.php:24 -#: libraries/messages.inc.php:125 +#: libraries/messages.inc.php:121 msgid "Could not load import plugins, please check your installation!" msgstr "Não foi possível importar plugins, verifique sua instalação!" -#: import.php:397 libraries/messages.inc.php:102 +#: import.php:397 libraries/messages.inc.php:98 msgid "The bookmark has been deleted." msgstr "O marcador foi removido." -#: import.php:401 libraries/messages.inc.php:879 +#: import.php:401 libraries/messages.inc.php:875 msgid "Showing bookmark" msgstr "Exibindo marcadores" -#: import.php:403 libraries/messages.inc.php:101 +#: import.php:403 libraries/messages.inc.php:97 #, php-format msgid "Bookmark %s created" msgstr "Marcador %s criado" -#: import.php:409 import.php:415 libraries/messages.inc.php:407 +#: import.php:409 import.php:415 libraries/messages.inc.php:403 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Importação finalizada com sucesso, %d consultas executadas." -#: import.php:424 libraries/messages.inc.php:1107 +#: import.php:424 libraries/messages.inc.php:1103 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -950,12 +950,12 @@ msgstr "" "Script passou do tempo limite, se você deseja terminar a importação, reenvie " "o mesmo arquivo que a importação será resumida." -#: index.php:190 libraries/messages.inc.php:553 +#: index.php:190 libraries/messages.inc.php:549 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" "phpMyAdmin é mais amigável com um navegador capaz de exibir frames." -#: js/messages.php:25 libraries/messages.inc.php:155 +#: js/messages.php:25 libraries/messages.inc.php:151 #: server_synchronize.php:345 server_synchronize.php:357 #: server_synchronize.php:373 server_synchronize.php:380 #: server_synchronize.php:739 server_synchronize.php:767 @@ -963,116 +963,116 @@ msgstr "" msgid "Click to select" msgstr "" -#: js/messages.php:26 libraries/messages.inc.php:156 +#: js/messages.php:26 libraries/messages.inc.php:152 msgid "Click to unselect" msgstr "" #: js/messages.php:27 libraries/import.lib.php:103 -#: libraries/messages.inc.php:550 sql.php:89 +#: libraries/messages.inc.php:546 sql.php:89 msgid "\"DROP DATABASE\" statements are disabled." msgstr "O comando \"DROP DATABASE\" está desabilitado." -#: js/messages.php:30 libraries/messages.inc.php:270 +#: js/messages.php:30 libraries/messages.inc.php:266 #: libraries/mult_submits.inc.php:258 sql.php:188 msgid "Do you really want to " msgstr "Confirmar" -#: js/messages.php:31 libraries/messages.inc.php:271 +#: js/messages.php:31 libraries/messages.inc.php:267 #: libraries/mult_submits.inc.php:258 sql.php:172 msgid "You are about to DESTROY a complete database!" msgstr "Você está prestes à DESTRUIR completamente o Banco de Dados!" -#: js/messages.php:34 libraries/messages.inc.php:94 +#: js/messages.php:34 libraries/messages.inc.php:90 msgid "You are about to DISABLE a BLOB Repository!" msgstr "" -#: js/messages.php:35 libraries/messages.inc.php:91 +#: js/messages.php:35 libraries/messages.inc.php:87 #, php-format msgid "Are you sure you want to disable all BLOB references for database %s?" msgstr "" -#: js/messages.php:38 libraries/messages.inc.php:342 +#: js/messages.php:38 libraries/messages.inc.php:338 msgid "Missing value in the form!" msgstr "Faltando valores no formulário!" -#: js/messages.php:39 libraries/messages.inc.php:570 +#: js/messages.php:39 libraries/messages.inc.php:566 msgid "This is not a number!" msgstr "Isto não é um número!" -#: js/messages.php:42 libraries/messages.inc.php:380 +#: js/messages.php:42 libraries/messages.inc.php:376 msgid "The host name is empty!" msgstr "O nome do servidor está vazio!" -#: js/messages.php:43 libraries/messages.inc.php:1208 +#: js/messages.php:43 libraries/messages.inc.php:1204 msgid "The user name is empty!" msgstr "O nome do usuário está em branco!" -#: js/messages.php:44 libraries/messages.inc.php:607 +#: js/messages.php:44 libraries/messages.inc.php:603 #: server_privileges.php:1197 user_password.php:70 msgid "The password is empty!" msgstr "A senhas está em branco!" -#: js/messages.php:45 libraries/messages.inc.php:609 +#: js/messages.php:45 libraries/messages.inc.php:605 #: server_privileges.php:1195 user_password.php:73 msgid "The passwords aren't the same!" msgstr "As senhas não são iguais!" -#: js/messages.php:49 libraries/messages.inc.php:123 pmd_general.php:342 +#: js/messages.php:49 libraries/messages.inc.php:119 pmd_general.php:342 #: pmd_general.php:379 msgid "Cancel" msgstr "Cancelar" -#: js/messages.php:52 libraries/messages.inc.php:514 +#: js/messages.php:52 libraries/messages.inc.php:510 msgid "Modifications have been saved" msgstr "Modificações foram salvas" -#: js/messages.php:53 libraries/messages.inc.php:741 +#: js/messages.php:53 libraries/messages.inc.php:737 msgid "Relation deleted" msgstr "Relacionamento apagado" -#: js/messages.php:54 libraries/messages.inc.php:340 +#: js/messages.php:54 libraries/messages.inc.php:336 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:55 libraries/messages.inc.php:434 +#: js/messages.php:55 libraries/messages.inc.php:430 msgid "Internal relation added" msgstr "Adicionado relacionamento Interno" -#: js/messages.php:56 libraries/messages.inc.php:299 +#: js/messages.php:56 libraries/messages.inc.php:295 msgid "Error: Relation not added." msgstr "Erro: relacionamento não adicionado." -#: js/messages.php:57 libraries/messages.inc.php:300 +#: js/messages.php:57 libraries/messages.inc.php:296 msgid "Error: relation already exists." msgstr "Erro: relacionamento já existe." -#: js/messages.php:58 libraries/messages.inc.php:302 +#: js/messages.php:58 libraries/messages.inc.php:298 msgid "Error saving coordinates for Designer." msgstr "Erro ao salvar coordenada para o Designer." -#: js/messages.php:59 libraries/messages.inc.php:351 +#: js/messages.php:59 libraries/messages.inc.php:347 #: libraries/relation.lib.php:107 msgid "General relation features" msgstr "Recursos de relações gerais" -#: js/messages.php:59 libraries/messages.inc.php:260 +#: js/messages.php:59 libraries/messages.inc.php:256 #: libraries/relation.lib.php:101 libraries/relation.lib.php:108 msgid "Disabled" msgstr "Desabilitado" -#: js/messages.php:60 libraries/messages.inc.php:850 +#: js/messages.php:60 libraries/messages.inc.php:846 msgid "Select referenced key" msgstr "Seleciona chave referenciada" -#: js/messages.php:61 libraries/messages.inc.php:848 +#: js/messages.php:61 libraries/messages.inc.php:844 msgid "Select Foreign Key" msgstr "Selecionar Chave Estrangeira" -#: js/messages.php:62 libraries/messages.inc.php:653 +#: js/messages.php:62 libraries/messages.inc.php:649 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 libraries/messages.inc.php:142 pmd_general.php:77 +#: js/messages.php:63 libraries/messages.inc.php:138 pmd_general.php:77 #: tbl_relation.php:548 msgid "Choose field to display" msgstr "Escolha o campo para exibir" @@ -1091,9 +1091,9 @@ msgid "Prev" msgstr "Anterior" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2332 -#: libraries/common.lib.php:2335 libraries/display_tbl.lib.php:338 -#: libraries/messages.inc.php:543 server_binlog.php:205 server_binlog.php:207 +#: js/messages.php:77 libraries/common.lib.php:2344 +#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: libraries/messages.inc.php:539 server_binlog.php:205 server_binlog.php:207 #: tbl_printview.php:424 tbl_structure.php:802 msgid "Next" msgstr "Próximo" @@ -1168,27 +1168,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1543 +#: js/messages.php:97 libraries/common.lib.php:1555 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1545 +#: js/messages.php:99 libraries/common.lib.php:1557 msgid "Feb" msgstr "Fev" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1547 +#: js/messages.php:101 libraries/common.lib.php:1559 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1549 +#: js/messages.php:103 libraries/common.lib.php:1561 msgid "Apr" msgstr "Abr" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1551 +#: js/messages.php:105 libraries/common.lib.php:1563 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1196,37 +1196,37 @@ msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1553 +#: js/messages.php:107 libraries/common.lib.php:1565 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1555 +#: js/messages.php:109 libraries/common.lib.php:1567 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1557 +#: js/messages.php:111 libraries/common.lib.php:1569 msgid "Aug" msgstr "Ago" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1559 +#: js/messages.php:113 libraries/common.lib.php:1571 msgid "Sep" msgstr "Set" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1561 +#: js/messages.php:115 libraries/common.lib.php:1573 msgid "Oct" msgstr "Out" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1563 +#: js/messages.php:117 libraries/common.lib.php:1575 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1565 +#: js/messages.php:119 libraries/common.lib.php:1577 msgid "Dec" msgstr "Dez" @@ -1267,37 +1267,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1568 +#: js/messages.php:132 libraries/common.lib.php:1580 msgid "Sun" msgstr "Dom" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1570 +#: js/messages.php:134 libraries/common.lib.php:1582 msgid "Mon" msgstr "Seg" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1572 +#: js/messages.php:136 libraries/common.lib.php:1584 msgid "Tue" msgstr "Ter" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1574 +#: js/messages.php:138 libraries/common.lib.php:1586 msgid "Wed" msgstr "Qua" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1576 +#: js/messages.php:140 libraries/common.lib.php:1588 msgid "Thu" msgstr "Qui" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1578 +#: js/messages.php:142 libraries/common.lib.php:1590 msgid "Fri" msgstr "Sex" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1580 +#: js/messages.php:144 libraries/common.lib.php:1592 msgid "Sat" msgstr "Sab" @@ -1371,23 +1371,23 @@ msgstr "em uso" msgid "Second" msgstr "por segundo" -#: libraries/Config.class.php:1015 libraries/messages.inc.php:338 +#: libraries/Config.class.php:1015 libraries/messages.inc.php:334 msgid "Font size" msgstr "Tamanho da fonte" #: libraries/File.class.php:344 libraries/File.class.php:432 #: libraries/File.class.php:569 libraries/File.class.php:708 -#: libraries/messages.inc.php:1201 +#: libraries/messages.inc.php:1197 msgid "Unknown error in file upload." msgstr "Erro desconhecido no carregamento do arquivo." -#: libraries/File.class.php:414 libraries/messages.inc.php:1198 +#: libraries/File.class.php:414 libraries/messages.inc.php:1194 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "O arquivo carregado excede o tamanho definido na diretriz " "upload_max_filesize no php.ini." -#: libraries/File.class.php:417 libraries/messages.inc.php:1197 +#: libraries/File.class.php:417 libraries/messages.inc.php:1193 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -1395,56 +1395,56 @@ msgstr "" "O arquivo carregado excede o tamanho definido na diretriz MAX_FILE_SIZE do " "formulário HTM." -#: libraries/File.class.php:420 libraries/messages.inc.php:1200 +#: libraries/File.class.php:420 libraries/messages.inc.php:1196 msgid "The uploaded file was only partially uploaded." msgstr "Carregamento do arquivo foi apenas parcial." -#: libraries/File.class.php:423 libraries/messages.inc.php:1199 +#: libraries/File.class.php:423 libraries/messages.inc.php:1195 msgid "Missing a temporary folder." msgstr "Pasta temporária não encontrada." -#: libraries/File.class.php:426 libraries/messages.inc.php:1195 +#: libraries/File.class.php:426 libraries/messages.inc.php:1191 msgid "Failed to write file to disk." msgstr "Falhou ao salvar arquivo no disco." -#: libraries/File.class.php:429 libraries/messages.inc.php:1196 +#: libraries/File.class.php:429 libraries/messages.inc.php:1192 msgid "File upload stopped by extension." msgstr "Carregamento do arquivo parado pela extenção." -#: libraries/File.class.php:908 libraries/messages.inc.php:319 +#: libraries/File.class.php:908 libraries/messages.inc.php:315 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "Erro ao mover o arquivo carregado, veja FAQ 1.11" -#: libraries/Index.class.php:428 libraries/messages.inc.php:554 +#: libraries/Index.class.php:428 libraries/messages.inc.php:550 #: tbl_relation.php:529 msgid "No index defined!" msgstr "Nenhum índice definido!" -#: libraries/Index.class.php:433 libraries/messages.inc.php:411 +#: libraries/Index.class.php:433 libraries/messages.inc.php:407 #: server_databases.php:132 tbl_tracking.php:316 msgid "Indexes" msgstr "Índices" -#: libraries/Index.class.php:444 libraries/messages.inc.php:1186 +#: libraries/Index.class.php:444 libraries/messages.inc.php:1182 #: 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:475 tbl_tracking.php:322 msgid "Unique" msgstr "Único" -#: libraries/Index.class.php:445 libraries/messages.inc.php:596 +#: libraries/Index.class.php:445 libraries/messages.inc.php:592 #: tbl_tracking.php:323 msgid "Packed" msgstr "Pacote" -#: libraries/Index.class.php:447 libraries/messages.inc.php:131 +#: libraries/Index.class.php:447 libraries/messages.inc.php:127 #: tbl_tracking.php:325 msgid "Cardinality" msgstr "Cardinalidade" -#: libraries/Index.class.php:450 libraries/messages.inc.php:162 +#: libraries/Index.class.php:450 libraries/messages.inc.php:158 #: tbl_tracking.php:279 tbl_tracking.php:328 msgid "Comment" msgstr "Cometário" @@ -1452,22 +1452,22 @@ msgstr "Cometário" #: libraries/Index.class.php:466 libraries/common.lib.php:616 #: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:280 pdf_pages.php:280 +#: libraries/messages.inc.php:276 pdf_pages.php:280 #: setup/frames/index.inc.php:124 setup/lib/messages.inc.php:352 #: tbl_row_action.php:69 msgid "Edit" msgstr "Editar" -#: libraries/Index.class.php:472 libraries/messages.inc.php:666 +#: libraries/Index.class.php:472 libraries/messages.inc.php:662 msgid "The primary key has been dropped" msgstr "A chave primária foi deletada" -#: libraries/Index.class.php:476 libraries/messages.inc.php:413 +#: libraries/Index.class.php:476 libraries/messages.inc.php:409 #, php-format msgid "Index %s has been dropped" msgstr "Índice %s foi eliminado" -#: libraries/Index.class.php:576 libraries/messages.inc.php:412 +#: libraries/Index.class.php:576 libraries/messages.inc.php:408 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -1476,7 +1476,7 @@ 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/messages.inc.php:218 +#: libraries/List_Database.class.php:431 libraries/messages.inc.php:214 #: libraries/server_links.inc.php:41 server_databases.php:88 #: server_privileges.php:1621 setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" @@ -1506,87 +1506,87 @@ msgid_plural "%1$d rows inserted." msgstr[0] "%1$d linha(s) inseridas." msgstr[1] "%1$d linha(s) inseridas." -#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:549 +#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:545 msgid "" "There is no detailed status information available for this storage engine." msgstr "" "Não há nenhuma informação detalhada do status disponível para esta storage " "engine." -#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:291 +#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:287 #, php-format msgid "%s is available on this MySQL server." msgstr "%s está disponível neste servidor MySQL." -#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:292 +#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:288 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s está desabilitado neste servidor MySQL." -#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:294 +#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:290 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "Esse servidor MySQL não suporta o stored engine %s." -#: libraries/Table.class.php:1019 libraries/messages.inc.php:443 +#: libraries/Table.class.php:1019 libraries/messages.inc.php:439 msgid "Invalid database" msgstr "Banco de Dados inválido" -#: libraries/Table.class.php:1033 libraries/messages.inc.php:450 +#: libraries/Table.class.php:1033 libraries/messages.inc.php:446 #: tbl_get_field.php:26 msgid "Invalid table name" msgstr "Nome de tabela inválida" -#: libraries/Table.class.php:1048 libraries/messages.inc.php:301 +#: libraries/Table.class.php:1048 libraries/messages.inc.php:297 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "Erro ao renomear tabela %1$s para %2$s" -#: libraries/Table.class.php:1132 libraries/messages.inc.php:754 +#: libraries/Table.class.php:1132 libraries/messages.inc.php:750 #, php-format msgid "Table %s has been renamed to %s" msgstr "Tabela %s renomeada para %s" -#: libraries/Theme.class.php:162 libraries/messages.inc.php:1099 +#: libraries/Theme.class.php:162 libraries/messages.inc.php:1095 #, php-format msgid "No valid image path for theme %s found!" msgstr "Encontrado caminho inválido para imagens para o tema %s!" -#: libraries/Theme.class.php:384 libraries/messages.inc.php:1097 +#: libraries/Theme.class.php:384 libraries/messages.inc.php:1093 msgid "No preview available." msgstr "Nenhuma pré-visualização disponível." -#: libraries/Theme.class.php:387 libraries/messages.inc.php:1089 +#: libraries/Theme.class.php:387 libraries/messages.inc.php:1085 msgid "take it" msgstr "tome" -#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1096 +#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1092 #, php-format msgid "Default theme %s not found!" msgstr "Tema padrão %s não encontrado!" -#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1098 +#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1094 #, php-format msgid "Theme %s not found!" msgstr "Tema %s não encontrado!" -#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1100 +#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1096 #, php-format msgid "Theme path not found for theme %s!" msgstr "Encontrado caminho inválido para o tema %s!" -#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1101 +#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1097 #: test/theme.php:161 themes.php:21 themes.php:41 msgid "Theme / Style" msgstr "Tema / Estilo" -#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:172 +#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:168 msgid "Cannot connect: invalid settings." msgstr "Não pode conectar: configurações inválidas." #: libraries/auth/config.auth.lib.php:92 #: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65 -#: libraries/messages.inc.php:1238 test/theme.php:152 +#: libraries/messages.inc.php:1234 test/theme.php:152 #, php-format msgid "Welcome to %s" msgstr "Bem vindo ao %s" @@ -1612,104 +1612,104 @@ msgstr "" "certificar que correspondam com as informações fornecidas pelo administrador " "do servidor MySQL." -#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:488 +#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:484 msgid "Log in" msgstr "Autenticação" #: libraries/auth/cookie.auth.lib.php:246 -#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:659 +#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:655 #: libraries/navigation_header.inc.php:93 #: libraries/navigation_header.inc.php:95 msgid "phpMyAdmin documentation" msgstr "Documentação do phpMyAdmin " #: libraries/auth/cookie.auth.lib.php:258 -#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:492 +#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:488 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:493 +#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:489 msgid "Server:" msgstr "Servidor" -#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:494 +#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:490 msgid "Username:" msgstr "Usuário:" -#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:491 +#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:487 msgid "Password:" msgstr "Senha:" -#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:854 +#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:850 msgid "Server Choice" msgstr "Seleção do Servidor" #: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 -#: libraries/messages.inc.php:177 +#: libraries/messages.inc.php:173 msgid "Cookies must be enabled past this point." msgstr "Cookies devem estar ativos após este ponto." #: libraries/auth/cookie.auth.lib.php:671 -#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:489 +#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:485 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" #: libraries/auth/cookie.auth.lib.php:675 -#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:544 +#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:540 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "Sem atividade por %s segundos ou mais, faça o login novamente" #: libraries/auth/cookie.auth.lib.php:685 #: libraries/auth/cookie.auth.lib.php:687 -#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:126 +#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:122 msgid "Cannot log in to the MySQL server" msgstr "Não foi possível se logar no servidor MySQL" -#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1245 +#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1241 msgid "Wrong username/password. Access denied." msgstr "Usuário ou senha incorreta. Acesso negado." #: libraries/auth/swekey/swekey.auth.lib.php:118 -#: libraries/messages.inc.php:1057 +#: libraries/messages.inc.php:1053 #, php-format msgid "File %s does not contain any key id" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:157 #: libraries/auth/swekey/swekey.auth.lib.php:180 -#: libraries/messages.inc.php:1056 +#: libraries/messages.inc.php:1052 msgid "Hardware authentication failed" msgstr "Falha na autenticação de hardware" #: libraries/auth/swekey/swekey.auth.lib.php:166 -#: libraries/messages.inc.php:1058 +#: libraries/messages.inc.php:1054 msgid "No valid authentication key plugged" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:202 -#: libraries/messages.inc.php:1055 +#: libraries/messages.inc.php:1051 msgid "Authenticating..." msgstr "Autenticando..." -#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1230 +#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1226 msgid "View image" msgstr "" -#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:652 +#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:648 msgid "Play audio" msgstr "" -#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1232 +#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1228 msgid "View video" msgstr "" -#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:269 +#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:265 msgid "Download file" msgstr "" -#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:128 +#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:124 msgid "" "Couldn't load the iconv or recode extension needed for charset conversion. " "Either configure PHP to enable these extensions or disable charset " @@ -1722,7 +1722,7 @@ msgstr "" #: libraries/charset_conversion.lib.php:79 #: libraries/charset_conversion.lib.php:90 -#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:130 +#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:126 msgid "" "Couldn't use the iconv, libiconv, or recode_string functions, although the " "necessary extensions appear to be loaded. Check your PHP configuration." @@ -1731,7 +1731,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/messages.inc.php:170 +#: libraries/common.inc.php:583 libraries/messages.inc.php:166 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!" @@ -1765,23 +1765,23 @@ msgstr "A variável $cfg['PmaAbsoluteUri'] deve ser setada" msgid "Invalid server index: %s" msgstr "Índice de servidor inválido: \"%s\"" -#: libraries/common.inc.php:636 libraries/messages.inc.php:448 +#: libraries/common.inc.php:636 libraries/messages.inc.php:444 #, 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/messages.inc.php:856 libraries/select_server.lib.php:41 +#: libraries/messages.inc.php:852 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/messages.inc.php:437 +#: libraries/common.inc.php:823 libraries/messages.inc.php:433 msgid "Invalid authentication method set in configuration:" msgstr "Método de autenticação inválido informado nas configurações:" -#: libraries/common.lib.php:147 libraries/messages.inc.php:499 +#: libraries/common.lib.php:147 libraries/messages.inc.php:495 #, php-format msgid "Max: %s%s" msgstr "Tamanho máximo: %s%s" @@ -1801,7 +1801,7 @@ msgstr "en" #: libraries/common.lib.php:428 libraries/common.lib.php:430 #: libraries/common.lib.php:432 libraries/common.lib.php:448 #: libraries/common.lib.php:450 libraries/dbg/setup.php:25 -#: libraries/display_export.lib.php:164 libraries/messages.inc.php:267 +#: libraries/display_export.lib.php:164 libraries/messages.inc.php:263 #: libraries/relation.lib.php:97 libraries/sql_query_form.lib.php:451 #: libraries/sql_query_form.lib.php:454 main.php:229 pdf_pages.php:37 #: pdf_pages.php:43 pdf_pages.php:49 pdf_pages.php:54 @@ -1811,55 +1811,55 @@ msgstr "Documentação" #: libraries/common.lib.php:581 libraries/core.lib.php:234 #: libraries/core.lib.php:263 libraries/import.lib.php:134 -#: libraries/messages.inc.php:297 pdf_schema.php:32 pdf_schema.php:232 +#: libraries/messages.inc.php:293 pdf_schema.php:32 pdf_schema.php:232 #: tbl_change.php:1027 tbl_operations.php:213 tbl_relation.php:290 #: view_operations.php:62 msgid "Error" msgstr "Erro" #: libraries/common.lib.php:595 libraries/header_printview.inc.php:61 -#: libraries/messages.inc.php:1023 server_processlist.php:60 +#: libraries/messages.inc.php:1019 server_processlist.php:60 #: server_status.php:247 msgid "SQL query" msgstr "consulta SQL" -#: libraries/common.lib.php:634 libraries/messages.inc.php:538 +#: libraries/common.lib.php:634 libraries/messages.inc.php:534 msgid "MySQL said: " msgstr "Mensagens do MySQL : " -#: libraries/common.lib.php:667 libraries/messages.inc.php:76 +#: libraries/common.lib.php:667 libraries/messages.inc.php:72 #: pdf_schema.php:241 user_password.php:115 msgid "Back" msgstr "Voltar" -#: libraries/common.lib.php:1177 libraries/messages.inc.php:309 +#: libraries/common.lib.php:1177 libraries/messages.inc.php:305 #: setup/lib/messages.inc.php:353 msgid "Explain SQL" msgstr "Explicar SQL" -#: libraries/common.lib.php:1180 libraries/messages.inc.php:551 +#: libraries/common.lib.php:1180 libraries/messages.inc.php:547 msgid "Skip Explain SQL" msgstr "Pular Explicação SQL" -#: libraries/common.lib.php:1212 libraries/messages.inc.php:563 +#: libraries/common.lib.php:1212 libraries/messages.inc.php:559 msgid "Without PHP Code" msgstr "sem código PHP" -#: libraries/common.lib.php:1215 libraries/messages.inc.php:649 +#: libraries/common.lib.php:1215 libraries/messages.inc.php:645 #: setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "Criar código PHP" -#: libraries/common.lib.php:1233 libraries/messages.inc.php:737 +#: libraries/common.lib.php:1233 libraries/messages.inc.php:733 #: server_status.php:341 setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "Atualizar" -#: libraries/common.lib.php:1242 libraries/messages.inc.php:575 +#: libraries/common.lib.php:1242 libraries/messages.inc.php:571 msgid "Skip Validate SQL" msgstr "Pular validação SQL" -#: libraries/common.lib.php:1245 libraries/messages.inc.php:1220 +#: libraries/common.lib.php:1245 libraries/messages.inc.php:1216 #: setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "Validar SQL" @@ -1875,11 +1875,11 @@ msgid "Inline" msgstr "Engines" #: libraries/common.lib.php:1332 libraries/common.lib.php:1347 -#: libraries/messages.inc.php:713 +#: libraries/messages.inc.php:709 msgid "Profiling" msgstr "Perfil" -#: libraries/common.lib.php:1351 libraries/messages.inc.php:1108 +#: libraries/common.lib.php:1351 libraries/messages.inc.php:1104 #: libraries/tbl_triggers.lib.php:28 server_processlist.php:58 msgid "Time" msgstr "Tempo" @@ -1913,46 +1913,56 @@ msgstr "PB" msgid "EiB" msgstr "EB" +#. l10n: Thousands separator +#: libraries/common.lib.php:1417 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: libraries/common.lib.php:1419 +msgid "." +msgstr "." + #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1584 +#: libraries/common.lib.php:1596 #: libraries/transformations/text_plain__dateformat.inc.php:28 msgid "%B %d, %Y at %I:%M %p" msgstr "%d/%m/%Y às %Hh%Mmin" -#: libraries/common.lib.php:1886 +#: libraries/common.lib.php:1898 #, 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:2301 libraries/common.lib.php:2304 -#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:664 +#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:660 #: server_status.php:608 msgid "Begin" msgstr "Início" -#: libraries/common.lib.php:2302 libraries/common.lib.php:2305 -#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:665 +#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:661 #: server_binlog.php:168 server_binlog.php:170 msgid "Previous" msgstr "Anterior" -#: libraries/common.lib.php:2333 libraries/common.lib.php:2336 -#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:289 +#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:285 msgid "End" msgstr "Fim" -#: libraries/common.lib.php:2409 libraries/messages.inc.php:455 +#: libraries/common.lib.php:2421 libraries/messages.inc.php:451 #, php-format msgid "Jump to database "%s"." msgstr "Ir para o Banco de Dados "%s"." -#: libraries/common.lib.php:2429 libraries/messages.inc.php:461 +#: libraries/common.lib.php:2441 libraries/messages.inc.php:457 #, 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/core.lib.php:286 libraries/dbg/setup.php:22 -#: libraries/messages.inc.php:127 +#: libraries/messages.inc.php:123 #, php-format msgid "" "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " @@ -1960,117 +1970,117 @@ msgid "" msgstr "não carregou extensão %s,
verifique a configurações do php" #: libraries/db_events.inc.php:20 libraries/db_events.inc.php:22 -#: libraries/export/sql.php:415 libraries/messages.inc.php:306 +#: libraries/export/sql.php:415 libraries/messages.inc.php:302 msgid "Events" msgstr "Eventos" #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 -#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:541 +#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:537 #: libraries/tbl_triggers.lib.php:27 setup/frames/index.inc.php:112 msgid "Name" msgstr "Nome" -#: libraries/db_links.inc.php:45 libraries/messages.inc.php:216 +#: libraries/db_links.inc.php:45 libraries/messages.inc.php:212 #, php-format msgid "Database %s has been dropped." msgstr "Banco de Dados %s foi eliminado." #: libraries/db_links.inc.php:57 libraries/db_links.inc.php:58 -#: libraries/db_links.inc.php:59 libraries/messages.inc.php:234 +#: libraries/db_links.inc.php:59 libraries/messages.inc.php:230 msgid "Database seems to be empty!" msgstr "Banco de Dados parece estar vazio!" -#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1025 +#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1021 #: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60 #: querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1152 +#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1148 #: libraries/tbl_links.inc.php:69 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:86 libraries/messages.inc.php:719 +#: libraries/db_links.inc.php:86 libraries/messages.inc.php:715 msgid "Query" msgstr "Procurar por exemplo" -#: libraries/db_links.inc.php:91 libraries/messages.inc.php:253 +#: libraries/db_links.inc.php:91 libraries/messages.inc.php:249 msgid "Designer" msgstr "Designer" -#: libraries/db_links.inc.php:98 libraries/messages.inc.php:397 +#: libraries/db_links.inc.php:98 libraries/messages.inc.php:393 #: libraries/server_links.inc.php:88 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:104 libraries/messages.inc.php:587 +#: libraries/db_links.inc.php:104 libraries/messages.inc.php:583 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" msgstr "Operações" -#: libraries/db_links.inc.php:111 libraries/messages.inc.php:709 +#: libraries/db_links.inc.php:111 libraries/messages.inc.php:705 #: libraries/server_links.inc.php:66 server_privileges.php:72 #: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117 msgid "Privileges" msgstr "Privilégios" #: libraries/db_routines.inc.php:30 libraries/db_routines.inc.php:32 -#: libraries/messages.inc.php:812 +#: libraries/messages.inc.php:808 msgid "Routines" msgstr "Rotinas" -#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:811 +#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:807 msgid "Return type" msgstr "Tipo de returno" #: libraries/db_structure.lib.php:57 libraries/display_tbl.lib.php:1848 -#: libraries/messages.inc.php:65 +#: libraries/messages.inc.php:61 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "Pode ser aproximado. Veja o FAQ 3.11" -#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:593 +#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:589 #: server_databases.php:142 tbl_printview.php:336 tbl_structure.php:683 msgid "Overhead" msgstr "Sobrecarga" #: libraries/dbi/mysql.dbi.lib.php:112 libraries/dbi/mysqli.dbi.lib.php:124 -#: libraries/messages.inc.php:176 +#: libraries/messages.inc.php:172 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Conexão para controle do usuário como definido nas configurações falhou." #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 -#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:855 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:851 msgid "The server is not responding" msgstr "O servidor não está respondendo" #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:1010 +#: libraries/messages.inc.php:1006 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 libraries/messages.inc.php:255 +#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:251 #: tbl_structure.php:609 msgid "Details..." msgstr "Detalhes..." -#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:143 +#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:139 #: main.php:91 user_password.php:111 user_password.php:129 msgid "Change password" msgstr "Alterar a senha" -#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:561 +#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:557 #: libraries/replication_gui.lib.php:341 server_privileges.php:768 msgid "No Password" msgstr "Sem senha" -#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:610 +#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:606 #: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60 #: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335 #: libraries/replication_gui.lib.php:345 server_privileges.php:757 @@ -2079,13 +2089,13 @@ msgstr "Sem senha" msgid "Password" msgstr "Senha" -#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:806 +#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:802 #: libraries/replication_gui.lib.php:349 libraries/replication_gui.lib.php:352 #: server_privileges.php:776 server_privileges.php:779 msgid "Re-type" msgstr "Re-digite" -#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:608 +#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:604 msgid "Password Hashing" msgstr "Hashing da senha" @@ -2095,89 +2105,89 @@ msgstr "Hashing da senha" msgid "MySQL 4.0 compatible" msgstr "Compatível com MySQL 4.0" -#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:353 +#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:349 #: libraries/replication_gui.lib.php:356 server_privileges.php:783 msgid "Generate Password" msgstr "Gerar Senha" -#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:352 +#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:348 #: libraries/replication_gui.lib.php:359 server_privileges.php:786 msgid "Generate" msgstr "Gerar" #: libraries/display_create_database.lib.php:22 -#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:189 +#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:185 msgid "Create new database" msgstr "Criar novo Banco de Dados" -#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:185 +#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:181 msgid "Create" msgstr "Criar" -#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:564 +#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:560 #: server_privileges.php:74 server_privileges.php:1388 #: server_replication.php:35 msgid "No Privileges" msgstr "Sem privilégios" -#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:445 +#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:441 msgid "Table must have at least one field." msgstr "Tabela deve ter pelo menos um campo." -#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:190 +#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:186 #, php-format msgid "Create table on database %s" msgstr "Criar nova tabela no Banco de Dados %s" -#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:577 +#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:573 msgid "Number of fields" msgstr "Número de arquivos" -#: libraries/display_export.lib.php:42 libraries/messages.inc.php:124 +#: libraries/display_export.lib.php:42 libraries/messages.inc.php:120 msgid "Could not load export plugins, please check your installation!" msgstr "Não pode carregar exportação dos plugins, verifique sua instalação!" -#: libraries/display_export.lib.php:107 libraries/messages.inc.php:277 +#: libraries/display_export.lib.php:107 libraries/messages.inc.php:273 #, php-format msgid "Dump %s row(s) starting at record # %s" msgstr "Dumpar %s registros, começando pelo registro %s." -#: libraries/display_export.lib.php:115 libraries/messages.inc.php:274 +#: libraries/display_export.lib.php:115 libraries/messages.inc.php:270 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:125 libraries/messages.inc.php:852 +#: libraries/display_export.lib.php:125 libraries/messages.inc.php:848 #: setup/lib/messages.inc.php:82 msgid "Save as file" msgstr "Enviado" -#: libraries/display_export.lib.php:134 libraries/messages.inc.php:828 +#: libraries/display_export.lib.php:134 libraries/messages.inc.php:824 #, php-format msgid "Save on server in %s directory" msgstr "Salvar no servidor no diretório %s" -#: libraries/display_export.lib.php:142 libraries/messages.inc.php:594 +#: libraries/display_export.lib.php:142 libraries/messages.inc.php:590 #: setup/lib/messages.inc.php:90 msgid "Overwrite existing file(s)" msgstr "Sobrescrever arquivo(s) existente(s)" -#: libraries/display_export.lib.php:148 libraries/messages.inc.php:330 +#: libraries/display_export.lib.php:148 libraries/messages.inc.php:326 msgid "File name template" msgstr "Nome do arquivo do modelo" -#: libraries/display_export.lib.php:152 libraries/messages.inc.php:327 +#: libraries/display_export.lib.php:152 libraries/messages.inc.php:323 msgid "server name" msgstr "nome do servidor" -#: libraries/display_export.lib.php:155 libraries/messages.inc.php:326 +#: libraries/display_export.lib.php:155 libraries/messages.inc.php:322 msgid "database name" msgstr "nome do Banco de Dados" -#: libraries/display_export.lib.php:158 libraries/messages.inc.php:328 +#: libraries/display_export.lib.php:158 libraries/messages.inc.php:324 msgid "table name" msgstr "nome da tabela" -#: libraries/display_export.lib.php:162 libraries/messages.inc.php:329 +#: libraries/display_export.lib.php:162 libraries/messages.inc.php:325 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2188,24 +2198,24 @@ msgstr "" "strings de formatação de tempo. Adicionalmente a seguinte transformação " "ocorrerá: %3$s. Outros textos serão mantidos como são." -#: libraries/display_export.lib.php:202 libraries/messages.inc.php:331 +#: libraries/display_export.lib.php:202 libraries/messages.inc.php:327 msgid "remember template" msgstr "lembrar modelo" #: libraries/display_export.lib.php:210 libraries/display_import.lib.php:178 -#: libraries/display_import.lib.php:191 libraries/messages.inc.php:145 +#: libraries/display_import.lib.php:191 libraries/messages.inc.php:141 #: libraries/sql_query_form.lib.php:549 msgid "Character set of the file:" msgstr "Conjunto de caracteres do arquivo" -#: libraries/display_export.lib.php:235 libraries/messages.inc.php:166 +#: libraries/display_export.lib.php:235 libraries/messages.inc.php:162 #: setup/lib/messages.inc.php:84 msgid "Compression" 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/messages.inc.php:558 +#: libraries/export/sql.php:868 libraries/messages.inc.php:554 #: libraries/tbl_properties.inc.php:575 server_privileges.php:1836 #: server_processlist.php:75 msgid "None" @@ -2229,61 +2239,61 @@ msgstr "\"compactado com gzip\"" msgid "bzipped" msgstr "\"compactado com bzip\"" -#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1018 +#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1014 msgid "SQL compatibility mode" msgstr "Modo de compatibilidade SQL" -#: libraries/display_import.lib.php:67 libraries/messages.inc.php:398 +#: libraries/display_import.lib.php:67 libraries/messages.inc.php:394 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " "browsers." msgstr "" -#: libraries/display_import.lib.php:77 libraries/messages.inc.php:406 +#: libraries/display_import.lib.php:77 libraries/messages.inc.php:402 msgid "The file is being processed, please be patient." msgstr "" -#: libraries/display_import.lib.php:99 libraries/messages.inc.php:408 +#: libraries/display_import.lib.php:99 libraries/messages.inc.php:404 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." msgstr "" -#: libraries/display_import.lib.php:126 libraries/messages.inc.php:333 +#: libraries/display_import.lib.php:126 libraries/messages.inc.php:329 msgid "File to import" msgstr "Arquivo para importar" -#: libraries/display_import.lib.php:137 libraries/messages.inc.php:486 +#: libraries/display_import.lib.php:137 libraries/messages.inc.php:482 #: libraries/sql_query_form.lib.php:524 msgid "Location of the text file" msgstr "Localização do arquivo texto" -#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1203 +#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1199 msgid "File uploads are not allowed on this server." msgstr "Não é permitido subir arquivos neste servidor." -#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1235 +#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1231 #: libraries/sql_query_form.lib.php:533 tbl_change.php:1028 msgid "The directory you set for upload work cannot be reached" msgstr "" "O diretório que você especificou para subir arquivos não foi encontrado." -#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1236 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1232 #: libraries/sql_query_form.lib.php:536 tbl_change.php:1031 msgid "web server upload directory" msgstr "Servidor web subiu o diretório" -#: libraries/display_import.lib.php:212 libraries/messages.inc.php:167 +#: libraries/display_import.lib.php:212 libraries/messages.inc.php:163 #, php-format msgid "Imported file compression will be automatically detected from: %s" msgstr "Compressão do arquivo importado será automaticamente detectada de: %s" -#: libraries/display_import.lib.php:219 libraries/messages.inc.php:600 +#: libraries/display_import.lib.php:219 libraries/messages.inc.php:596 msgid "Partial import" msgstr "Importação parcial" -#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1105 +#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1101 #, php-format msgid "" "Previous import timed out, after resubmitting will continue from position %d." @@ -2291,7 +2301,7 @@ msgstr "" "Importação anterior passou do tempo limite, depois de reenviar, irá " "continuar na posição %d." -#: libraries/display_import.lib.php:232 libraries/messages.inc.php:51 +#: libraries/display_import.lib.php:232 libraries/messages.inc.php:47 msgid "" "Allow the interruption of an import in case the script detects it is close " "to the PHP timeout limit. This might be good way to import large files, " @@ -2301,179 +2311,179 @@ msgstr "" "perto do tempo limite. Isso pode ser um bom caminho para importar arquivos " "grandes, entretanto isso pode interromper as transações." -#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1004 +#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1000 #: setup/lib/messages.inc.php:161 msgid "Number of records (queries) to skip from start" msgstr "Número de registros (consultas) ignoradas no início" -#: libraries/display_import.lib.php:255 libraries/messages.inc.php:396 +#: libraries/display_import.lib.php:255 libraries/messages.inc.php:392 #: setup/lib/messages.inc.php:160 msgid "Format of imported file" msgstr "Formato do arquivo importado" #: libraries/display_select_lang.lib.php:45 -#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:465 +#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:461 #: setup/frames/index.inc.php:70 msgid "Language" msgstr "Linguagem" -#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:447 +#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:443 #, php-format msgid "%d is not valid row number." msgstr "%d não é um número de linha válido." -#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:814 +#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:810 msgid "row(s) starting from record #" msgstr "registro(s) começando de" -#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:817 +#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:813 msgid "horizontal" msgstr "horizontal" -#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:816 +#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:812 msgid "horizontal (rotated headers)" msgstr "horizontal (cabeçalhos rotacionados)" -#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:819 +#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:815 msgid "vertical" msgstr "vertical" -#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:818 +#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:814 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "no modo %s e repetindo cabeçalhos após %s células" -#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:495 +#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:491 msgid "This operation could take a long time. Proceed anyway?" msgstr "Esta operação pode ser demorada. Deseja prosseguir?" -#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1012 +#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1008 msgid "Sort by key" msgstr "Ordenar pela chave" #: libraries/display_tbl.lib.php:555 libraries/import.lib.php:1082 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:591 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:587 #: tbl_select.php:267 tbl_structure.php:754 msgid "Options" msgstr "Opções" #: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:570 -#: libraries/messages.inc.php:601 +#: libraries/messages.inc.php:597 msgid "Partial Texts" msgstr "Textos parciais" #: libraries/display_tbl.lib.php:561 libraries/display_tbl.lib.php:574 -#: libraries/messages.inc.php:346 +#: libraries/messages.inc.php:342 msgid "Full Texts" msgstr "Textos completos" -#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:739 +#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:735 msgid "Relational key" msgstr "Chave de relação" -#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:738 +#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:734 msgid "Relational display field" msgstr "" -#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:872 +#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:868 msgid "Show binary contents" msgstr "" -#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:873 +#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:869 msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:871 +#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:867 msgid "Show binary contents as HEX" msgstr "" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:375 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:371 #: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320 msgid "Hide" msgstr "Ocultar" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:508 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:504 #: libraries/tbl_properties.inc.php:144 transformation_overview.php:47 msgid "Browser transformation" msgstr "Transformações do navegador" #: libraries/display_tbl.lib.php:1126 libraries/display_tbl.lib.php:1130 -#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:308 +#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:304 msgid "Execute bookmarked query" msgstr "Executar consulta marcada" #: libraries/display_tbl.lib.php:1145 libraries/display_tbl.lib.php:1157 -#: libraries/messages.inc.php:244 +#: libraries/messages.inc.php:240 msgid "The row has been deleted" msgstr "Registro eliminado" #: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056 -#: libraries/messages.inc.php:460 server_processlist.php:71 +#: libraries/messages.inc.php:456 server_processlist.php:71 #: tbl_row_action.php:64 msgid "Kill" msgstr "Matar" -#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:849 +#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:845 msgid "in query" msgstr "na consulta" -#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:881 +#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:877 msgid "Showing rows" msgstr "Mostrando registros " -#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1113 +#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1109 msgid "total" msgstr "total" -#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:727 +#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:723 #: sql.php:524 #, php-format msgid "Query took %01.4f sec" msgstr "Consulta levou %01.4f segundos" -#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:135 +#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:131 #: 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:471 msgid "Change" msgstr "Alterar" -#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:724 +#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:720 msgid "Query results operations" msgstr "Operações resultantes das consultas" -#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:671 +#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:667 msgid "Print view (with full texts)" msgstr "Ver impressão (com textos completos)" -#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:482 +#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:478 msgid "Link not found" msgstr "Link não encontrado" -#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1224 +#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1220 #: main.php:228 msgid "Version information" msgstr "Informações da versão" -#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:423 +#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:419 msgid "Data home directory" msgstr "Diretório raiz de dados" -#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:424 +#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:420 msgid "The common part of the directory path for all InnoDB data files." msgstr "" "A parte comum do caminho do diretório para todos os arquivos de dados do " "InnoDB." -#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:422 +#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:418 msgid "Data files" msgstr "Arquivos de dados" -#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:418 +#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:414 msgid "Autoextend increment" msgstr "Incremento autoextendido" -#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:419 +#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:415 msgid "" " The increment size for extending the size of an autoextending tablespace " "when it becomes full." @@ -2481,11 +2491,11 @@ msgstr "" "O tamanho do incremento para extender o tamanho de um tamanho de tabela " "autoextendida quando ela começar à ficar cheia." -#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:420 +#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:416 msgid "Buffer pool size" msgstr "Tamanho do Buffer Pool" -#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:421 +#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:417 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." @@ -2493,87 +2503,87 @@ msgstr "" "O tamanho do buffer de memória que o InnoDB usa para dados do cache e " "índices nas suas tabelas." -#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:112 +#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:108 msgid "Buffer Pool" msgstr "Buffer Pool" -#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:426 +#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:422 #: server_status.php:306 msgid "InnoDB Status" msgstr "Status do InnoDB" -#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:113 +#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:109 msgid "Buffer Pool Usage" msgstr "Uso do Buffer Pool" -#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1114 +#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1110 #: server_databases.php:137 server_databases.php:305 server_status.php:414 #: server_status.php:475 server_status.php:496 tbl_printview.php:351 #: tbl_structure.php:697 msgid "Total" msgstr "Total" -#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:425 +#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:421 msgid "pages" msgstr "páginas" -#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:343 +#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:339 msgid "Free pages" msgstr "Páginas livres" -#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:259 +#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:255 msgid "Dirty pages" msgstr "Páginas sujas" -#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:230 +#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:226 msgid "Pages containing data" msgstr "Páginas contendo dados" -#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:598 +#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:594 msgid "Pages to be flushed" msgstr "Páginas para serem niveladas" -#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:119 +#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:115 msgid "Busy pages" msgstr "Página ocupadas" -#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:467 +#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:463 msgid "Latched pages" msgstr "Páginas trancadas" -#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:111 +#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:107 msgid "Buffer Pool Activity" msgstr "Atividade do Buffer Pool" -#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:731 +#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:727 msgid "Read requests" msgstr "Leitura requisitada" -#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1244 +#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1240 msgid "Write requests" msgstr "Escrita requisitada" -#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:115 +#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:111 msgid "Read misses" msgstr "Leitura falhou" -#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:117 +#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:113 msgid "Write waits" msgstr "Escrever as esperas" -#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:114 +#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:110 msgid "Read misses in %" msgstr "Leitura falhou em %" -#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:116 +#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:112 msgid "Write waits in %" msgstr "Escrita esperada em %" -#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:522 +#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:518 msgid "Data pointer size" msgstr "Tamanho do ponteiro de dados" -#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:523 +#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:519 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." @@ -2581,11 +2591,11 @@ msgstr "" "O tamanho padrão do ponteiro em bytes, para ser usado por CREATE TABLE para " "tabelas MyISAM quando a opção MAX_ROWS não é especificada." -#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:528 +#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:524 msgid "Automatic recovery mode" msgstr "Modo de recuperação automático" -#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:529 +#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:525 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." @@ -2593,11 +2603,11 @@ msgstr "" "O modo para recuperação automática de tabelas MyISAM danificadas, como " "configurado pela opção de inicialização do servidor --myisam-recover." -#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:527 +#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:523 msgid "Maximum size for temporary sort files" msgstr "Tamanho máximo para os arquivos temporários de ordenação" -#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:526 +#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:522 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " @@ -2607,11 +2617,11 @@ msgstr "" "recriar um índice MyISAM (durante REPAIR TABLE, ALTER TABLE ou LOAD DATA " "INFILE)." -#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:525 +#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:521 msgid "Maximum size for temporary files on index creation" msgstr "Tamanho máximo para arquivos temporários na criação do índice" -#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:524 +#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:520 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " @@ -2621,11 +2631,11 @@ msgstr "" "forem maiores do que usando a chave do cache pela quantidade especificada " "aqui, prefira o método chave do cache." -#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:531 +#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:527 msgid "Repair threads" msgstr "Processos de reparo" -#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:530 +#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:526 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." @@ -2634,11 +2644,11 @@ msgstr "" "paralelo (cada índice tem seu próprio processo) durante o Reparo pelo " "processo de ordenação." -#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:533 +#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:529 msgid "Sort buffer size" msgstr "Tamanho do buffer de ordenação" -#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:532 +#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:528 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." @@ -2646,73 +2656,73 @@ msgstr "" "O buffer que é alocado quando são ordenados índices MyISAM durante um REPAIR " "TABLE ou quando são criados índices com CREATE INDEX ou ALTER TABLE." -#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:620 +#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:616 msgid "Index cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:619 +#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:615 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." msgstr "" -#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:630 +#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:626 msgid "Record cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:629 +#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:625 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " "to the handle data (.xtd) and row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:624 +#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:620 #, fuzzy msgid "Log cache size" msgstr "Tamanho do buffer de ordenação" -#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:623 +#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:619 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:628 +#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:624 msgid "Log file threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:627 +#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:623 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:634 +#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:630 msgid "Transaction buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:633 +#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:629 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." msgstr "" -#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:611 +#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:607 msgid "Checkpoint frequency" msgstr "" -#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:612 +#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:608 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." msgstr "" -#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:615 +#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:611 msgid "Data log threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:616 +#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:612 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -2720,49 +2730,49 @@ msgid "" "that can be stored in the database." msgstr "" -#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:618 +#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:614 msgid "Garbage threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:617 +#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:613 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." msgstr "" -#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:622 +#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:618 #, fuzzy msgid "Log buffer size" msgstr "Tamanho do buffer de ordenação" -#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:621 +#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:617 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " "required to write a data log." msgstr "" -#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:613 +#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:609 msgid "Data file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:614 +#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:610 msgid "The grow size of the handle data (.xtd) files." msgstr "" -#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:632 +#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:628 msgid "Row file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:631 +#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:627 msgid "The grow size of the row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:626 +#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:622 msgid "Log file count" msgstr "" -#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:625 +#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:621 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -2772,19 +2782,19 @@ msgstr "" #: libraries/export/htmlword.php:132 libraries/export/odt.php:168 #: libraries/export/sql.php:881 libraries/export/texytext.php:130 -#: libraries/messages.inc.php:275 +#: libraries/messages.inc.php:271 msgid "Dumping data for table" msgstr "Extraindo dados da tabela" #: libraries/export/htmlword.php:185 libraries/export/odt.php:238 #: libraries/export/sql.php:785 libraries/export/texytext.php:177 -#: libraries/messages.inc.php:1086 +#: libraries/messages.inc.php:1082 msgid "Table structure for table" msgstr "Estrutura da tabela" #: libraries/export/latex.php:125 libraries/export/sql.php:232 #: libraries/export/xml.php:102 libraries/header_printview.inc.php:57 -#: libraries/messages.inc.php:381 libraries/replication_gui.lib.php:63 +#: libraries/messages.inc.php:377 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:170 libraries/replication_gui.lib.php:265 #: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325 #: server_privileges.php:692 server_privileges.php:695 @@ -2796,186 +2806,186 @@ msgstr "Servidor" #: libraries/export/latex.php:130 libraries/export/sql.php:233 #: libraries/export/xml.php:107 libraries/header_printview.inc.php:59 -#: libraries/messages.inc.php:354 +#: libraries/messages.inc.php:350 msgid "Generation Time" msgstr "Tempo de Geração" #: libraries/export/latex.php:131 libraries/export/sql.php:235 -#: libraries/export/xml.php:108 libraries/messages.inc.php:864 main.php:186 +#: libraries/export/xml.php:108 libraries/messages.inc.php:860 main.php:186 msgid "Server version" msgstr "Versão do Servidor" #: libraries/export/latex.php:132 libraries/export/sql.php:236 -#: libraries/export/xml.php:109 libraries/messages.inc.php:651 +#: libraries/export/xml.php:109 libraries/messages.inc.php:647 msgid "PHP Version" msgstr "Versão do PHP" #: libraries/export/latex.php:201 libraries/export/sql.php:868 -#: libraries/messages.inc.php:226 server_databases.php:127 +#: libraries/messages.inc.php:222 server_databases.php:127 #: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317 #: tbl_structure.php:666 msgid "Data" msgstr "Dados" -#: libraries/export/odt.php:318 libraries/messages.inc.php:506 +#: libraries/export/odt.php:318 libraries/messages.inc.php:502 #: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "MIME-type" -#: libraries/export/sql.php:387 libraries/messages.inc.php:711 +#: libraries/export/sql.php:387 libraries/messages.inc.php:707 msgid "Procedures" msgstr "Procedimentos" -#: libraries/export/sql.php:401 libraries/messages.inc.php:348 +#: libraries/export/sql.php:401 libraries/messages.inc.php:344 msgid "Functions" msgstr "Funções" -#: libraries/export/sql.php:618 libraries/messages.inc.php:174 +#: libraries/export/sql.php:618 libraries/messages.inc.php:170 msgid "Constraints for dumped tables" msgstr "Restrições para as tabelas dumpadas" -#: libraries/export/sql.php:627 libraries/messages.inc.php:175 +#: libraries/export/sql.php:627 libraries/messages.inc.php:171 msgid "Constraints for table" msgstr "Restrições para a tabela" -#: libraries/export/sql.php:727 libraries/messages.inc.php:512 +#: libraries/export/sql.php:727 libraries/messages.inc.php:508 msgid "MIME TYPES FOR TABLE" msgstr "MIME-TYPES PARA AS TABELAS" -#: libraries/export/sql.php:739 libraries/messages.inc.php:743 +#: libraries/export/sql.php:739 libraries/messages.inc.php:739 msgid "RELATIONS FOR TABLE" msgstr "RELAÇÕES PARA A TABELA" -#: libraries/export/sql.php:796 libraries/messages.inc.php:1178 +#: libraries/export/sql.php:796 libraries/messages.inc.php:1174 #: libraries/tbl_triggers.lib.php:19 msgid "Triggers" msgstr "Gatilhos" -#: libraries/export/sql.php:808 libraries/messages.inc.php:1046 +#: libraries/export/sql.php:808 libraries/messages.inc.php:1042 msgid "Structure for view" msgstr "Estrutura para visualizar" -#: libraries/export/sql.php:817 libraries/messages.inc.php:1029 +#: libraries/export/sql.php:817 libraries/messages.inc.php:1025 msgid "Stand-in structure for view" msgstr "Estrutura stand-in para visualizar" #: libraries/footer.inc.php:184 libraries/footer.inc.php:195 -#: libraries/footer.inc.php:198 libraries/messages.inc.php:586 +#: libraries/footer.inc.php:198 libraries/messages.inc.php:582 msgid "Open new phpMyAdmin window" msgstr "Abrir nova janela do phpMyAdmin" -#: libraries/header.inc.php:115 libraries/messages.inc.php:542 +#: libraries/header.inc.php:115 libraries/messages.inc.php:538 msgid "New table" msgstr "Nova tabela" #: libraries/header_printview.inc.php:50 libraries/header_printview.inc.php:55 -#: libraries/messages.inc.php:1024 +#: libraries/messages.inc.php:1020 msgid "SQL result" msgstr "Resultado SQL" -#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:350 +#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:346 msgid "Generated by" msgstr "Gerado por" #: libraries/header_printview.inc.php:63 libraries/import.lib.php:145 -#: libraries/messages.inc.php:820 navigation.php:652 navigation.php:674 +#: libraries/messages.inc.php:816 navigation.php:652 navigation.php:674 #: server_databases.php:122 tbl_printview.php:394 tbl_structure.php:366 #: tbl_structure.php:778 msgid "Rows" msgstr "Registros" -#: libraries/import.lib.php:150 libraries/messages.inc.php:285 sql.php:520 +#: libraries/import.lib.php:150 libraries/messages.inc.php:281 sql.php:520 #: tbl_change.php:181 tbl_get_field.php:35 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL retornou um conjunto vazio (ex. zero registros)." -#: libraries/import.lib.php:1078 libraries/messages.inc.php:399 +#: libraries/import.lib.php:1078 libraries/messages.inc.php:395 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1079 libraries/messages.inc.php:400 +#: libraries/import.lib.php:1079 libraries/messages.inc.php:396 msgid "View a structure`s contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1080 libraries/messages.inc.php:401 +#: libraries/import.lib.php:1080 libraries/messages.inc.php:397 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1081 libraries/messages.inc.php:402 +#: libraries/import.lib.php:1081 libraries/messages.inc.php:398 msgid "Edit its structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1084 libraries/messages.inc.php:362 +#: libraries/import.lib.php:1084 libraries/messages.inc.php:358 #, fuzzy msgid "Go to database" msgstr "Sem bases" #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:869 +#: libraries/messages.inc.php:865 msgid "settings" msgstr "" -#: libraries/import.lib.php:1106 libraries/messages.inc.php:363 +#: libraries/import.lib.php:1106 libraries/messages.inc.php:359 #, fuzzy msgid "Go to table" msgstr "Sem bases" -#: libraries/import.lib.php:1109 libraries/messages.inc.php:1047 +#: libraries/import.lib.php:1109 libraries/messages.inc.php:1043 #, fuzzy msgid "structure" msgstr "Estrutura" -#: libraries/import.lib.php:1115 libraries/messages.inc.php:364 +#: libraries/import.lib.php:1115 libraries/messages.inc.php:360 msgid "Go to view" msgstr "" #: libraries/import/csv.php:58 libraries/import/csv.php:70 #: libraries/import/csv.php:74 libraries/import/csv.php:78 -#: libraries/messages.inc.php:442 +#: libraries/messages.inc.php:438 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "Parâmetro inválido para importação CSV: %s" -#: libraries/import/csv.php:59 libraries/messages.inc.php:323 +#: libraries/import/csv.php:59 libraries/messages.inc.php:319 msgid "Fields terminated by" msgstr "Campos terminados por" -#: libraries/import/csv.php:71 libraries/messages.inc.php:320 +#: libraries/import/csv.php:71 libraries/messages.inc.php:316 msgid "Fields enclosed by" msgstr "Campos delimitados por" -#: libraries/import/csv.php:75 libraries/messages.inc.php:321 +#: libraries/import/csv.php:75 libraries/messages.inc.php:317 msgid "Fields escaped by" msgstr "Campos contornados por" -#: libraries/import/csv.php:79 libraries/messages.inc.php:481 +#: libraries/import/csv.php:79 libraries/messages.inc.php:477 msgid "Lines terminated by" msgstr "Linhas terminadas por" -#: libraries/import/csv.php:119 libraries/messages.inc.php:439 +#: libraries/import/csv.php:119 libraries/messages.inc.php:435 #, php-format msgid "Invalid column (%s) specified!" msgstr "Coluna especificada (%s) é inválida!" #: libraries/import/csv.php:177 libraries/import/csv.php:424 -#: libraries/messages.inc.php:441 +#: libraries/messages.inc.php:437 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "Formato inválido na linha %d da entrada CSV." -#: libraries/import/csv.php:312 libraries/messages.inc.php:440 +#: libraries/import/csv.php:312 libraries/messages.inc.php:436 #, php-format msgid "Invalid field count in CSV input on line %d." msgstr "Contador de campo inválido na linha %d da entrada CSV." -#: libraries/import/ldi.php:55 libraries/messages.inc.php:446 +#: libraries/import/ldi.php:55 libraries/messages.inc.php:442 msgid "This plugin does not support compressed imports!" msgstr "Esse plugin não suporta importações comprimidas!" #: libraries/import/xml.php:74 libraries/import/xml.php:130 -#: libraries/messages.inc.php:1247 +#: libraries/messages.inc.php:1243 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -3005,323 +3015,313 @@ msgstr "" msgid "ltr" msgstr "ltr" -#. l10n: Thousands separator -#: libraries/messages.inc.php:21 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: libraries/messages.inc.php:23 -msgid "." -msgstr "." - -#: libraries/messages.inc.php:25 server_status.php:461 +#: libraries/messages.inc.php:21 server_status.php:461 msgid "Aborted" msgstr "Abortado" -#: libraries/messages.inc.php:28 main.php:68 +#: libraries/messages.inc.php:24 main.php:68 msgid "Actions" msgstr "Ações" -#: libraries/messages.inc.php:34 libraries/tbl_properties.inc.php:780 +#: libraries/messages.inc.php:30 libraries/tbl_properties.inc.php:780 #: tbl_structure.php:543 #, php-format msgid "Add %s field(s)" msgstr "Adicionar %s campo(s)" -#: libraries/messages.inc.php:35 +#: libraries/messages.inc.php:31 msgid "Add custom comment into header (\\n splits lines)" msgstr "Adicionar comentário pessoal no cabeçalho (\\n quebra linhas)" -#: libraries/messages.inc.php:36 +#: libraries/messages.inc.php:32 msgid "Add into comments" msgstr "Adicionar nos comentários" -#: libraries/messages.inc.php:37 tbl_structure.php:541 +#: libraries/messages.inc.php:33 tbl_structure.php:541 msgid "Add new field" msgstr "Adicionar novo campo" -#: libraries/messages.inc.php:38 server_privileges.php:1886 +#: libraries/messages.inc.php:34 server_privileges.php:1886 msgid "Add privileges on the following database" msgstr "Adicionar privilégios nas seguintes Banco de Dados" -#: libraries/messages.inc.php:39 server_privileges.php:1907 +#: libraries/messages.inc.php:35 server_privileges.php:1907 msgid "Add privileges on the following table" msgstr "Adicionar privilégios nas seguintes tabelas" -#: libraries/messages.inc.php:40 tbl_select.php:288 +#: libraries/messages.inc.php:36 tbl_select.php:288 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Condição de Pesquisa (complemento da cláusula \"onde\"):" -#: libraries/messages.inc.php:41 tbl_indexes.php:251 +#: libraries/messages.inc.php:37 tbl_indexes.php:251 #, php-format msgid "Add to index  %s column(s)" msgstr "Adicionar ao índice  %s coluna(s)" -#: libraries/messages.inc.php:42 server_privileges.php:1570 +#: libraries/messages.inc.php:38 server_privileges.php:1570 #: server_privileges.php:1594 server_privileges.php:1988 #: server_privileges.php:2177 msgid "Add a new User" msgstr "Adicionar novo usuário" -#: libraries/messages.inc.php:43 server_privileges.php:931 +#: libraries/messages.inc.php:39 server_privileges.php:931 msgid "You have added a new user." msgstr "Adicionado usuário" -#: libraries/messages.inc.php:44 server_privileges.php:571 +#: libraries/messages.inc.php:40 server_privileges.php:571 msgid "Administration" msgstr "Administração" -#: libraries/messages.inc.php:45 tbl_structure.php:557 +#: libraries/messages.inc.php:41 tbl_structure.php:557 #, php-format msgid "After %s" msgstr "Depois %s" -#: libraries/messages.inc.php:46 tbl_change.php:1147 +#: libraries/messages.inc.php:42 tbl_change.php:1147 msgid "Go back to previous page" msgstr "Retornar" -#: libraries/messages.inc.php:47 tbl_change.php:1148 +#: libraries/messages.inc.php:43 tbl_change.php:1148 msgid "Insert another new row" msgstr "Inserir novo registro" -#: libraries/messages.inc.php:48 tbl_change.php:1160 +#: libraries/messages.inc.php:44 tbl_change.php:1160 msgid "Edit next row" msgstr "Editar próximo registro" -#: libraries/messages.inc.php:49 tbl_change.php:1152 +#: libraries/messages.inc.php:45 tbl_change.php:1152 msgid "Go back to this page" msgstr "Voltar para esta página" -#: libraries/messages.inc.php:50 querywindow.php:115 +#: libraries/messages.inc.php:46 querywindow.php:115 msgid "All" msgstr "Todos" -#: libraries/messages.inc.php:53 tbl_operations.php:249 +#: libraries/messages.inc.php:49 tbl_operations.php:249 msgid "Alter table order by" msgstr "Alterar tabela ordenada por" -#: libraries/messages.inc.php:54 tbl_operations.php:660 +#: libraries/messages.inc.php:50 tbl_operations.php:660 msgid "Analyze" msgstr "Analizar" -#: libraries/messages.inc.php:57 +#: libraries/messages.inc.php:53 msgid "and" msgstr "e" -#: libraries/messages.inc.php:59 pmd_general.php:87 +#: libraries/messages.inc.php:55 pmd_general.php:87 msgid "Angular links" msgstr "Links Angulares" -#: libraries/messages.inc.php:60 tbl_structure.php:401 tbl_structure.php:415 +#: libraries/messages.inc.php:56 tbl_structure.php:401 tbl_structure.php:415 #: tbl_structure.php:429 #, php-format msgid "An index has been added on %s" msgstr "Um índice foi adicionado a %s" -#: libraries/messages.inc.php:61 server_privileges.php:1521 +#: libraries/messages.inc.php:57 server_privileges.php:1521 #: server_privileges.php:2123 msgid "Any" msgstr "Qualquer" -#: libraries/messages.inc.php:62 libraries/replication_gui.lib.php:298 +#: libraries/messages.inc.php:58 libraries/replication_gui.lib.php:298 #: server_privileges.php:725 msgid "Any host" msgstr "Qualquer servidor" -#: libraries/messages.inc.php:63 libraries/replication_gui.lib.php:250 +#: libraries/messages.inc.php:59 libraries/replication_gui.lib.php:250 #: server_privileges.php:677 msgid "Any user" msgstr "Qualquer usuário" -#: libraries/messages.inc.php:64 server_synchronize.php:449 +#: libraries/messages.inc.php:60 server_synchronize.php:449 #: server_synchronize.php:894 msgid "Apply Selected Changes" msgstr "" -#: libraries/messages.inc.php:66 tbl_structure.php:386 +#: libraries/messages.inc.php:62 tbl_structure.php:386 #, php-format msgid "A primary key has been added on %s" msgstr "Uma chave primária foi adicionada a %s" -#: libraries/messages.inc.php:67 libraries/mysql_charsets.lib.php:368 +#: libraries/messages.inc.php:63 libraries/mysql_charsets.lib.php:368 msgid "Arabic" msgstr "Árabe" -#: libraries/messages.inc.php:68 libraries/mysql_charsets.lib.php:359 +#: libraries/messages.inc.php:64 libraries/mysql_charsets.lib.php:359 msgid "Armenian" msgstr "Armêno" -#: libraries/messages.inc.php:70 libraries/tbl_properties.inc.php:394 +#: libraries/messages.inc.php:66 libraries/tbl_properties.inc.php:394 msgid "As defined:" msgstr "" -#: libraries/messages.inc.php:71 tbl_structure.php:556 +#: libraries/messages.inc.php:67 tbl_structure.php:556 msgid "At Beginning of Table" msgstr "No início da tabela" -#: libraries/messages.inc.php:72 tbl_structure.php:555 +#: libraries/messages.inc.php:68 tbl_structure.php:555 msgid "At End of Table" msgstr "No final da tabela" -#: libraries/messages.inc.php:73 libraries/tbl_properties.inc.php:108 +#: libraries/messages.inc.php:69 libraries/tbl_properties.inc.php:108 #: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:144 #: tbl_structure.php:180 msgid "Attributes" msgstr "Atributos" -#: libraries/messages.inc.php:74 pdf_pages.php:303 pdf_pages.php:306 +#: libraries/messages.inc.php:70 pdf_pages.php:303 pdf_pages.php:306 msgid "Automatic layout" msgstr "Leiaute automático" -#: libraries/messages.inc.php:77 libraries/mysql_charsets.lib.php:354 +#: libraries/messages.inc.php:73 libraries/mysql_charsets.lib.php:354 msgid "Baltic" msgstr "Báltico" -#: libraries/messages.inc.php:78 libraries/sqlparser.lib.php:175 +#: libraries/messages.inc.php:74 libraries/sqlparser.lib.php:175 msgid "BEGIN CUT" msgstr "INICIO CORTE" -#: libraries/messages.inc.php:79 libraries/sqlparser.lib.php:179 +#: libraries/messages.inc.php:75 libraries/sqlparser.lib.php:179 msgid "BEGIN RAW" msgstr "INICIO CRU" -#: libraries/messages.inc.php:80 libraries/mysql_charsets.lib.php:201 +#: libraries/messages.inc.php:76 libraries/mysql_charsets.lib.php:201 #: libraries/mysql_charsets.lib.php:402 tbl_change.php:518 msgid "Binary" msgstr " Binário " -#: libraries/messages.inc.php:81 tbl_change.php:894 +#: libraries/messages.inc.php:77 tbl_change.php:894 msgid "Binary - do not edit" msgstr " Binário - não edite " -#: libraries/messages.inc.php:82 libraries/server_links.inc.php:76 +#: libraries/messages.inc.php:78 libraries/server_links.inc.php:76 #: server_binlog.php:110 server_status.php:253 test/theme.php:121 msgid "Binary log" msgstr "Log binário" -#: libraries/messages.inc.php:83 server_binlog.php:217 +#: libraries/messages.inc.php:79 server_binlog.php:217 msgid "Event type" msgstr "Tipo de evento" -#: libraries/messages.inc.php:84 server_binlog.php:220 +#: libraries/messages.inc.php:80 server_binlog.php:220 msgid "Information" msgstr "Informação" -#: libraries/messages.inc.php:85 server_binlog.php:215 +#: libraries/messages.inc.php:81 server_binlog.php:215 msgid "Log name" msgstr "Nome do log" -#: libraries/messages.inc.php:86 server_binlog.php:219 +#: libraries/messages.inc.php:82 server_binlog.php:219 msgid "Original position" msgstr "Posição original" -#: libraries/messages.inc.php:87 server_binlog.php:216 +#: libraries/messages.inc.php:83 server_binlog.php:216 msgid "Position" msgstr "Posição" -#: libraries/messages.inc.php:88 libraries/replication_gui.lib.php:169 +#: libraries/messages.inc.php:84 libraries/replication_gui.lib.php:169 #: server_binlog.php:218 msgid "Server ID" msgstr "ID do Servidor" -#: libraries/messages.inc.php:92 +#: libraries/messages.inc.php:88 msgctxt "$strBLOBRepositoryDisabled" msgid "Disabled" msgstr "Desabilitado" -#: libraries/messages.inc.php:95 +#: libraries/messages.inc.php:91 msgctxt "$strBLOBRepositoryEnabled" msgid "Enabled" msgstr "Habilitado" -#: libraries/messages.inc.php:97 tbl_change.php:888 +#: libraries/messages.inc.php:93 tbl_change.php:888 msgid "Remove BLOB Repository Reference" msgstr "" -#: libraries/messages.inc.php:98 +#: libraries/messages.inc.php:94 msgctxt "$strBLOBRepositoryRepair" msgid "Repair" msgstr "Reparar" -#: libraries/messages.inc.php:99 tbl_change.php:987 +#: libraries/messages.inc.php:95 tbl_change.php:987 msgid "Upload to BLOB repository" msgstr "" -#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:359 +#: libraries/messages.inc.php:96 libraries/sql_query_form.lib.php:359 #: sql.php:677 msgid "Let every user access this bookmark" msgstr "Deixar qualquer usuário acessar esse marcador" -#: libraries/messages.inc.php:103 sql.php:671 +#: libraries/messages.inc.php:99 sql.php:671 msgid "Label" msgstr "Nome" -#: libraries/messages.inc.php:104 libraries/sql_query_form.lib.php:433 +#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:433 msgid "Bookmarked SQL query" msgstr "Consulta SQL gravada" -#: libraries/messages.inc.php:105 libraries/sql_query_form.lib.php:365 +#: libraries/messages.inc.php:101 libraries/sql_query_form.lib.php:365 msgid "Replace existing bookmark of same name" msgstr "Substituir marcador de mesmo nome existente" -#: libraries/messages.inc.php:106 libraries/sql_query_form.lib.php:352 +#: libraries/messages.inc.php:102 libraries/sql_query_form.lib.php:352 #: sql.php:665 sql.php:666 sql.php:683 msgid "Bookmark this SQL query" msgstr "Gravar essa consulta SQL" -#: libraries/messages.inc.php:107 libraries/sql_query_form.lib.php:466 +#: libraries/messages.inc.php:103 libraries/sql_query_form.lib.php:466 msgid "View only" msgstr "Apenas visualizar" -#: libraries/messages.inc.php:109 tbl_structure.php:161 +#: libraries/messages.inc.php:105 tbl_structure.php:161 msgid "Browse distinct values" msgstr "Navegador distingue valores" -#: libraries/messages.inc.php:110 tbl_change.php:252 tbl_select.php:27 +#: libraries/messages.inc.php:106 tbl_change.php:252 tbl_select.php:27 #: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34 msgid "Browse foreign values" msgstr "Visualizar valores estrangeiros" -#: libraries/messages.inc.php:118 libraries/mysql_charsets.lib.php:213 +#: libraries/messages.inc.php:114 libraries/mysql_charsets.lib.php:213 msgid "Bulgarian" msgstr "Bulgaro" -#: libraries/messages.inc.php:120 +#: libraries/messages.inc.php:116 msgid "\"bzipped\"" msgstr "\"compactado com bzip\"" -#: libraries/messages.inc.php:122 +#: libraries/messages.inc.php:118 msgid "Calendar" msgstr "Calendário" -#: libraries/messages.inc.php:129 tbl_indexes.php:75 +#: libraries/messages.inc.php:125 tbl_indexes.php:75 msgid "Can't rename index to PRIMARY!" msgstr "Não foi possível renomear o índice para \"PRIMARY\"!" -#: libraries/messages.inc.php:132 libraries/mysql_charsets.lib.php:223 +#: libraries/messages.inc.php:128 libraries/mysql_charsets.lib.php:223 #: libraries/mysql_charsets.lib.php:409 msgid "case-insensitive" msgstr "Não diferencia maiúsculas/minúsculas" -#: libraries/messages.inc.php:133 libraries/mysql_charsets.lib.php:226 +#: libraries/messages.inc.php:129 libraries/mysql_charsets.lib.php:226 #: libraries/mysql_charsets.lib.php:411 msgid "case-sensitive" msgstr "Diferencia maiúsculas/minúsculas" -#: libraries/messages.inc.php:134 libraries/mysql_charsets.lib.php:332 +#: libraries/messages.inc.php:130 libraries/mysql_charsets.lib.php:332 msgid "Central European" msgstr "Europeu Central" -#: libraries/messages.inc.php:136 server_privileges.php:1969 +#: libraries/messages.inc.php:132 server_privileges.php:1969 msgid "... keep the old one." msgstr "... manter o antigo." -#: libraries/messages.inc.php:137 server_privileges.php:1967 +#: libraries/messages.inc.php:133 server_privileges.php:1967 msgid "Create a new user with the same privileges and ..." msgstr "Criar um novo usuário com os mesmos privilégios e ..." -#: libraries/messages.inc.php:138 server_privileges.php:1972 +#: libraries/messages.inc.php:134 server_privileges.php:1972 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -3329,113 +3329,113 @@ msgstr "" " ... apagar o antigo da tabela de usuários e depois recarregar os " "privilégios." -#: libraries/messages.inc.php:139 server_privileges.php:1970 +#: libraries/messages.inc.php:135 server_privileges.php:1970 msgid " ... delete the old one from the user tables." msgstr " ... apagar o antigo da tabela de usuários." -#: libraries/messages.inc.php:140 server_privileges.php:1971 +#: libraries/messages.inc.php:136 server_privileges.php:1971 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." -#: libraries/messages.inc.php:141 server_privileges.php:1964 +#: libraries/messages.inc.php:137 server_privileges.php:1964 msgid "Change Login Information / Copy User" msgstr "Mudar informações de login / Copiar usuário" -#: libraries/messages.inc.php:144 libraries/mysql_charsets.lib.php:107 +#: libraries/messages.inc.php:140 libraries/mysql_charsets.lib.php:107 msgid "Charset" msgstr "Conjunto de caracteres" -#: libraries/messages.inc.php:146 server_collations.php:40 +#: libraries/messages.inc.php:142 server_collations.php:40 msgid "Character Sets and Collations" msgstr "Conjuntos de caracteres e Collations" -#: libraries/messages.inc.php:147 libraries/server_links.inc.php:57 +#: libraries/messages.inc.php:143 libraries/server_links.inc.php:57 #: test/theme.php:109 msgid "Charsets" msgstr "Conjuntos de caracteres" -#: libraries/messages.inc.php:149 tbl_operations.php:661 +#: libraries/messages.inc.php:145 tbl_operations.php:661 msgid "Check" msgstr "Checar" -#: libraries/messages.inc.php:151 server_databases.php:293 +#: libraries/messages.inc.php:147 server_databases.php:293 #: server_databases.php:294 msgid "Check Privileges" msgstr "Verificar privilégios" -#: libraries/messages.inc.php:152 server_databases.php:289 +#: libraries/messages.inc.php:148 server_databases.php:289 #, php-format msgid "Check privileges for database "%s"." msgstr "Verificar privilégios para a Banco de Dados "%s"." -#: libraries/messages.inc.php:154 pdf_pages.php:261 +#: libraries/messages.inc.php:150 pdf_pages.php:261 msgid "Please choose a page to edit" msgstr "Escolha a página para editar" -#: libraries/messages.inc.php:157 +#: libraries/messages.inc.php:153 msgid "Displaying Column Comments" msgstr "Exibindo comentários da coluna" -#: libraries/messages.inc.php:159 pdf_pages.php:483 view_create.php:148 +#: libraries/messages.inc.php:155 pdf_pages.php:483 view_create.php:148 msgid "Column names" msgstr "Nome das colunas" -#: libraries/messages.inc.php:160 server_privileges.php:1685 +#: libraries/messages.inc.php:156 server_privileges.php:1685 msgid "Column-specific privileges" msgstr "Privilégios específicos da coluna" -#: libraries/messages.inc.php:164 +#: libraries/messages.inc.php:160 msgid "MySQL 4.0 compatible" msgstr "Compatível com MySQL 4.0" -#: libraries/messages.inc.php:165 +#: libraries/messages.inc.php:161 msgid "Complete inserts" msgstr "Inserções completas" -#: libraries/messages.inc.php:168 +#: libraries/messages.inc.php:164 #, php-format msgid "Could not load default configuration from: \"%1$s\"" msgstr "Não foi possível carregar configuração padrão de: \"%1$s\"" -#: libraries/messages.inc.php:169 main.php:306 +#: libraries/messages.inc.php:165 main.php:306 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: libraries/messages.inc.php:171 pdf_schema.php:672 +#: libraries/messages.inc.php:167 pdf_schema.php:672 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Configure as coordenadas para a tabela %s" -#: libraries/messages.inc.php:173 server_status.php:433 +#: libraries/messages.inc.php:169 server_status.php:433 msgid "Connections" msgstr "Conexões" -#: libraries/messages.inc.php:179 tbl_operations.php:509 +#: libraries/messages.inc.php:175 tbl_operations.php:509 msgid "Copy table to (database.table):" msgstr "Copiar tabela para (Banco de Dados.tabela):" -#: libraries/messages.inc.php:180 tbl_move_copy.php:58 +#: libraries/messages.inc.php:176 tbl_move_copy.php:58 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabela %s copiada para %s." -#: libraries/messages.inc.php:181 tbl_move_copy.php:48 +#: libraries/messages.inc.php:177 tbl_move_copy.php:48 msgid "Can't copy table to same one!" msgstr "Não pode copiar a tabela para ela mesma!" -#: libraries/messages.inc.php:182 server_synchronize.php:94 +#: libraries/messages.inc.php:178 server_synchronize.php:94 msgid "Could not connect to the source" msgstr "" -#: libraries/messages.inc.php:183 server_synchronize.php:97 +#: libraries/messages.inc.php:179 server_synchronize.php:97 msgid "Could not connect to the target" msgstr "" -#: libraries/messages.inc.php:184 server_processlist.php:24 +#: libraries/messages.inc.php:180 server_processlist.php:24 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -3443,132 +3443,132 @@ msgstr "" "phpMyAdmin não foi capaz de matar o processo %s. É possível que ele já " "esteja fechado." -#: libraries/messages.inc.php:187 +#: libraries/messages.inc.php:183 #, php-format msgid "Create an index on %s columns" msgstr "Criar um índice em %s colunas" -#: libraries/messages.inc.php:188 tbl_indexes.php:160 +#: libraries/messages.inc.php:184 tbl_indexes.php:160 msgid "Create a new index" msgstr "Criar um novo índice" -#: libraries/messages.inc.php:191 pdf_pages.php:297 pmd_pdf.php:114 +#: libraries/messages.inc.php:187 pdf_pages.php:297 pmd_pdf.php:114 msgid "Create a page" msgstr "Criar uma nova página" -#: libraries/messages.inc.php:192 +#: libraries/messages.inc.php:188 msgid "Creation of PDFs" msgstr "Criação de PDFs" -#: libraries/messages.inc.php:193 pmd_general.php:74 pmd_general.php:306 +#: libraries/messages.inc.php:189 pmd_general.php:74 pmd_general.php:306 msgid "Create relation" msgstr "Criar relacionamento" -#: libraries/messages.inc.php:194 pmd_general.php:71 +#: libraries/messages.inc.php:190 pmd_general.php:71 #: server_synchronize.php:429 server_synchronize.php:872 msgid "Create table" msgstr "Criar tabela" -#: libraries/messages.inc.php:195 +#: libraries/messages.inc.php:191 msgctxt "$strCreateTableShort" msgid "Create table" msgstr "Criar tabela" -#: libraries/messages.inc.php:196 server_privileges.php:1994 +#: libraries/messages.inc.php:192 server_privileges.php:1994 msgid "Database for user" msgstr "Banco de Dados para usuário" -#: libraries/messages.inc.php:197 server_privileges.php:1999 +#: libraries/messages.inc.php:193 server_privileges.php:1999 msgid "Create database with same name and grant all privileges" msgstr "Criar Banco de Dados com o mesmo nome e conceder todos os privilégios" -#: libraries/messages.inc.php:198 +#: libraries/messages.inc.php:194 msgctxt "$strCreateUserDatabaseNone" msgid "None" msgstr "Nenhum" -#: libraries/messages.inc.php:199 server_privileges.php:2003 +#: libraries/messages.inc.php:195 server_privileges.php:2003 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Conceder todos os privilégios no banco de dados "%s"" -#: libraries/messages.inc.php:200 server_privileges.php:2000 +#: libraries/messages.inc.php:196 server_privileges.php:2000 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Conceder todos os privilégios no nome coringa (nome_do_usuário_%)" -#: libraries/messages.inc.php:201 +#: libraries/messages.inc.php:197 msgid "Creation/Update/Check dates" msgstr "Criar/Atualizar/Verificar datas" -#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:229 +#: libraries/messages.inc.php:199 libraries/mysql_charsets.lib.php:229 msgid "Croatian" msgstr "Croata" -#: libraries/messages.inc.php:204 +#: libraries/messages.inc.php:200 msgid "CSV" msgstr "CSV" -#: libraries/messages.inc.php:205 libraries/server_synchronize.lib.php:1343 +#: libraries/messages.inc.php:201 libraries/server_synchronize.lib.php:1343 #: libraries/server_synchronize.lib.php:1369 msgid "Current server" msgstr "" -#: libraries/messages.inc.php:206 main.php:159 +#: libraries/messages.inc.php:202 main.php:159 msgid "Custom color" msgstr "" -#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:365 +#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:365 msgid "Cyrillic" msgstr "Cirílico" -#: libraries/messages.inc.php:208 libraries/mysql_charsets.lib.php:232 +#: libraries/messages.inc.php:204 libraries/mysql_charsets.lib.php:232 msgid "Czech" msgstr "Tcheco" -#: libraries/messages.inc.php:209 libraries/mysql_charsets.lib.php:383 +#: libraries/messages.inc.php:205 libraries/mysql_charsets.lib.php:383 msgid "Czech-Slovak" msgstr "Tcheco-Eslováquio" -#: libraries/messages.inc.php:211 libraries/mysql_charsets.lib.php:235 +#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:235 msgid "Danish" msgstr "Dinamarquês" -#: libraries/messages.inc.php:214 +#: libraries/messages.inc.php:210 msgid "Database export options" msgstr "Opções de exportação do Banco de Dados" -#: libraries/messages.inc.php:217 server_synchronize.php:122 +#: libraries/messages.inc.php:213 server_synchronize.php:122 #: server_synchronize.php:125 tbl_create.php:82 tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "" -#: libraries/messages.inc.php:219 server_databases.php:63 +#: libraries/messages.inc.php:215 server_databases.php:63 #, php-format msgid "%s databases have been dropped successfully." msgstr "Banco de Dados %s foi eliminado com sucesso!" -#: libraries/messages.inc.php:220 libraries/server_synchronize.lib.php:1341 +#: libraries/messages.inc.php:216 libraries/server_synchronize.lib.php:1341 #: server_synchronize.php:1110 #, fuzzy msgid "Source database" msgstr "Procurar no Banco de Dados" -#: libraries/messages.inc.php:221 server_databases.php:88 +#: libraries/messages.inc.php:217 server_databases.php:88 msgid "Databases statistics" msgstr "Estatísticas do Banco de Dados" -#: libraries/messages.inc.php:222 server_databases.php:362 +#: libraries/messages.inc.php:218 server_databases.php:362 #: server_databases.php:363 msgid "Disable Statistics" msgstr "Disabilitar estatísticas" -#: libraries/messages.inc.php:223 server_databases.php:358 +#: libraries/messages.inc.php:219 server_databases.php:358 #: server_databases.php:359 msgid "Enable Statistics" msgstr "Habilitar estatísticas" -#: libraries/messages.inc.php:224 server_databases.php:366 +#: libraries/messages.inc.php:220 server_databases.php:366 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -3576,32 +3576,32 @@ msgstr "" "Nota: Ativar as estatísticas pode causar um grande volume de tráfego de " "dados entre o servidor web e o servidor MySQL." -#: libraries/messages.inc.php:225 libraries/server_synchronize.lib.php:1367 +#: libraries/messages.inc.php:221 libraries/server_synchronize.lib.php:1367 #: server_synchronize.php:1112 #, fuzzy msgid "Target database" msgstr "Procurar no Banco de Dados" -#: libraries/messages.inc.php:228 server_synchronize.php:425 +#: libraries/messages.inc.php:224 server_synchronize.php:425 #: server_synchronize.php:868 #, fuzzy msgid "Data Difference" msgstr "Estrutura para visualizar" -#: libraries/messages.inc.php:231 server_synchronize.php:272 +#: libraries/messages.inc.php:227 server_synchronize.php:272 msgid "Data Synchronization" msgstr "" -#: libraries/messages.inc.php:235 server_privileges.php:526 +#: libraries/messages.inc.php:231 server_privileges.php:526 #: server_privileges.php:1679 msgid "Database-specific privileges" msgstr "Privilégios específicos do Banco de Dados" -#: libraries/messages.inc.php:237 server_privileges.php:2136 +#: libraries/messages.inc.php:233 server_privileges.php:2136 msgid "database-specific" msgstr "Específico do Banco de Dados" -#: libraries/messages.inc.php:240 libraries/tbl_properties.inc.php:106 +#: libraries/messages.inc.php:236 libraries/tbl_properties.inc.php:106 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" @@ -3609,32 +3609,32 @@ msgstr "" "Para valores padrão, digite um valor simples, sem barras de escape ou aspas, " "use este formato: a" -#: libraries/messages.inc.php:241 tbl_operations.php:589 +#: libraries/messages.inc.php:237 tbl_operations.php:589 msgid "Defragment table" msgstr "Desfragmentar tabela" -#: libraries/messages.inc.php:242 +#: libraries/messages.inc.php:238 msgid "Use delayed inserts" msgstr "Usar inserções demoradas" -#: libraries/messages.inc.php:245 server_privileges.php:1243 +#: libraries/messages.inc.php:241 server_privileges.php:1243 msgid "No users selected for deleting!" msgstr "Nenhum usuário selecionado para exclusão!" -#: libraries/messages.inc.php:246 pmd_general.php:372 +#: libraries/messages.inc.php:242 pmd_general.php:372 msgid "Delete relation" msgstr "Apagar relacionamento" -#: libraries/messages.inc.php:248 server_privileges.php:1232 +#: libraries/messages.inc.php:244 server_privileges.php:1232 #, php-format msgid "Deleting %s" msgstr "Eliminando %s" -#: libraries/messages.inc.php:249 libraries/sql_query_form.lib.php:388 +#: libraries/messages.inc.php:245 libraries/sql_query_form.lib.php:388 msgid "Delimiter" msgstr "Delimitadores" -#: libraries/messages.inc.php:250 pdf_pages.php:506 +#: libraries/messages.inc.php:246 pdf_pages.php:506 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -3642,7 +3642,7 @@ msgstr "" "A Página atual contêm referências para uma tabela que não existe. Gostaria " "de eliminar estas referências?" -#: libraries/messages.inc.php:254 pmd_help.php:29 +#: libraries/messages.inc.php:250 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 " @@ -3652,142 +3652,142 @@ msgstr "" "campo de exibição, clique no ícone \"Escolher campo para exibição\", então " "clique no nome do campo apropriado." -#: libraries/messages.inc.php:256 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:252 libraries/mysql_charsets.lib.php:247 msgid "dictionary" msgstr "dicionário" -#: libraries/messages.inc.php:257 libraries/server_synchronize.lib.php:1348 +#: libraries/messages.inc.php:253 libraries/server_synchronize.lib.php:1348 msgid "Difference" msgstr "" -#: libraries/messages.inc.php:258 pmd_general.php:87 +#: libraries/messages.inc.php:254 pmd_general.php:87 msgid "Direct links" msgstr "Links diretos" -#: libraries/messages.inc.php:261 +#: libraries/messages.inc.php:257 msgid "Disable foreign key checks" msgstr "Desabilitar verificação de chaves estrangeiras" -#: libraries/messages.inc.php:262 +#: libraries/messages.inc.php:258 msgid "Display Features" msgstr "Exibir recursos" -#: libraries/messages.inc.php:263 tbl_select.php:301 +#: libraries/messages.inc.php:259 tbl_select.php:301 msgid "Display order:" msgstr "Ordenado por:" -#: libraries/messages.inc.php:265 tbl_select.php:132 +#: libraries/messages.inc.php:261 tbl_select.php:132 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Faça uma \"consulta por exemplo\" (coringa: \"%\")" -#: libraries/messages.inc.php:266 +#: libraries/messages.inc.php:262 msgid "DocSQL" msgstr "DocSQL" -#: libraries/messages.inc.php:268 +#: libraries/messages.inc.php:264 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/messages.inc.php:273 server_privileges.php:1579 +#: libraries/messages.inc.php:269 server_privileges.php:1579 #: server_privileges.php:1580 server_privileges.php:1581 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." -#: libraries/messages.inc.php:278 tbl_printview.php:382 tbl_structure.php:743 +#: libraries/messages.inc.php:274 tbl_printview.php:382 tbl_structure.php:743 msgid "dynamic" msgstr "dinâmico" -#: libraries/messages.inc.php:282 server_privileges.php:1324 +#: libraries/messages.inc.php:278 server_privileges.php:1324 #: server_privileges.php:1610 msgid "Edit Privileges" msgstr "Editar Privilégios" -#: libraries/messages.inc.php:283 tbl_printview.php:341 tbl_structure.php:688 +#: libraries/messages.inc.php:279 tbl_printview.php:341 tbl_structure.php:688 msgid "Effective" msgstr "Efetivo" -#: libraries/messages.inc.php:286 libraries/relation.lib.php:100 +#: libraries/messages.inc.php:282 libraries/relation.lib.php:100 msgid "Enabled" msgstr "Habilitado" -#: libraries/messages.inc.php:287 +#: libraries/messages.inc.php:283 msgid "Enclose export in a transaction" msgstr "Encapsular exportação numa transação" -#: libraries/messages.inc.php:288 libraries/sqlparser.lib.php:177 +#: libraries/messages.inc.php:284 libraries/sqlparser.lib.php:177 msgid "END CUT" msgstr "FIM CORTE" -#: libraries/messages.inc.php:290 libraries/sqlparser.lib.php:183 +#: libraries/messages.inc.php:286 libraries/sqlparser.lib.php:183 msgid "END RAW" msgstr "FIM CRU" -#: libraries/messages.inc.php:293 libraries/server_links.inc.php:61 +#: libraries/messages.inc.php:289 libraries/server_links.inc.php:61 #: test/theme.php:113 msgid "Engines" msgstr "Engines" -#: libraries/messages.inc.php:295 libraries/mysql_charsets.lib.php:238 +#: libraries/messages.inc.php:291 libraries/mysql_charsets.lib.php:238 msgid "English" msgstr "Inglês" -#: libraries/messages.inc.php:296 server_privileges.php:393 +#: libraries/messages.inc.php:292 server_privileges.php:393 #: server_privileges.php:535 server_privileges.php:1501 msgid " Note: MySQL privilege names are expressed in English " msgstr " Nota: nomes de privilégios do MySQL são expressos em inglês " -#: libraries/messages.inc.php:298 libraries/zip_extension.lib.php:49 +#: libraries/messages.inc.php:294 libraries/zip_extension.lib.php:49 #: libraries/zip_extension.lib.php:51 libraries/zip_extension.lib.php:66 msgid "Error in ZIP archive:" msgstr "Erro no arquivo ZIP:" -#: libraries/messages.inc.php:303 libraries/mysql_charsets.lib.php:241 +#: libraries/messages.inc.php:299 libraries/mysql_charsets.lib.php:241 msgid "Esperanto" msgstr "Esperanto" -#: libraries/messages.inc.php:304 libraries/mysql_charsets.lib.php:244 +#: libraries/messages.inc.php:300 libraries/mysql_charsets.lib.php:244 msgid "Estonian" msgstr "Estoniano" -#: libraries/messages.inc.php:305 libraries/tbl_triggers.lib.php:29 +#: libraries/messages.inc.php:301 libraries/tbl_triggers.lib.php:29 msgid "Event" msgstr "Evento" -#: libraries/messages.inc.php:307 +#: libraries/messages.inc.php:303 msgid "Excel edition" msgstr "Edição do Excel" -#: libraries/messages.inc.php:311 pmd_pdf.php:85 +#: libraries/messages.inc.php:307 pmd_pdf.php:85 msgid "Export/Import to scale" msgstr "Exportar/Importar para escala" -#: libraries/messages.inc.php:313 +#: libraries/messages.inc.php:309 msgid "Extended inserts" msgstr "Inserções extendidas" -#: libraries/messages.inc.php:314 pdf_schema.php:1267 pdf_schema.php:1288 +#: libraries/messages.inc.php:310 pdf_schema.php:1267 pdf_schema.php:1288 #: tbl_printview.php:147 tbl_structure.php:183 tbl_tracking.php:278 msgid "Extra" msgstr "Extra" -#: libraries/messages.inc.php:316 server_status.php:447 +#: libraries/messages.inc.php:312 server_status.php:447 msgid "Failed attempts" msgstr "Tentativas falharam" -#: libraries/messages.inc.php:318 tbl_structure.php:375 +#: libraries/messages.inc.php:314 tbl_structure.php:375 #, php-format msgid "Field %s has been dropped" msgstr "Campo %s foi deletado" -#: libraries/messages.inc.php:322 libraries/sql_query_form.lib.php:317 +#: libraries/messages.inc.php:318 libraries/sql_query_form.lib.php:317 msgid "Fields" msgstr "Campos" -#: libraries/messages.inc.php:332 server_binlog.php:136 +#: libraries/messages.inc.php:328 server_binlog.php:136 msgid "Files" msgstr "Arquivos" -#: libraries/messages.inc.php:334 server_privileges.php:1597 +#: libraries/messages.inc.php:330 server_privileges.php:1597 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -3800,219 +3800,219 @@ 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.." -#: libraries/messages.inc.php:335 server_status.php:289 +#: libraries/messages.inc.php:331 server_status.php:289 msgid "Flush query cache" msgstr "Nivelar cache da consulta" -#: libraries/messages.inc.php:336 +#: libraries/messages.inc.php:332 msgid "Flush the table (\"FLUSH\")" msgstr "Limpar a tabela (\"LIMPAR\")" -#: libraries/messages.inc.php:337 server_status.php:271 +#: libraries/messages.inc.php:333 server_status.php:271 msgid "Flush (close) all tables" msgstr "Nivelar (fechar) todas as tabelas" -#: libraries/messages.inc.php:339 tbl_relation.php:279 +#: libraries/messages.inc.php:335 tbl_relation.php:279 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "Erro ao criar chave externa no %1$s (check data types)" -#: libraries/messages.inc.php:341 setup/lib/messages.inc.php:88 +#: libraries/messages.inc.php:337 setup/lib/messages.inc.php:88 #: tbl_printview.php:376 tbl_structure.php:738 msgid "Format" msgstr "Formato" -#: libraries/messages.inc.php:344 server_replication.php:325 +#: libraries/messages.inc.php:340 server_replication.php:325 #, fuzzy msgid "Full start" msgstr "Texto completo" -#: libraries/messages.inc.php:345 server_replication.php:325 +#: libraries/messages.inc.php:341 server_replication.php:325 #, fuzzy msgid "Full stop" msgstr "Texto completo" -#: libraries/messages.inc.php:347 tbl_change.php:282 tbl_change.php:320 +#: libraries/messages.inc.php:343 tbl_change.php:282 tbl_change.php:320 msgid "Function" msgstr "Funções" -#: libraries/messages.inc.php:355 libraries/mysql_charsets.lib.php:377 +#: libraries/messages.inc.php:351 libraries/mysql_charsets.lib.php:377 msgid "Georgian" msgstr "Georgiano" -#: libraries/messages.inc.php:356 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:352 libraries/mysql_charsets.lib.php:247 #: libraries/mysql_charsets.lib.php:250 msgid "German" msgstr "Alemão" -#: libraries/messages.inc.php:357 themes.php:42 +#: libraries/messages.inc.php:353 themes.php:42 msgid "Get more themes!" msgstr "" -#: libraries/messages.inc.php:358 server_privileges.php:2134 +#: libraries/messages.inc.php:354 server_privileges.php:2134 msgid "global" msgstr "global" -#: libraries/messages.inc.php:359 server_privileges.php:524 +#: libraries/messages.inc.php:355 server_privileges.php:524 #: server_privileges.php:1500 msgid "Global privileges" msgstr "Privilégios globais" -#: libraries/messages.inc.php:360 server_variables.php:55 +#: libraries/messages.inc.php:356 server_variables.php:55 #: server_variables.php:89 msgid "Global value" msgstr "Valor global" -#: libraries/messages.inc.php:365 server_privileges.php:1502 +#: libraries/messages.inc.php:361 server_privileges.php:1502 #: server_privileges.php:1684 server_privileges.php:2033 msgid "Grant" msgstr "Conceder/Grant" -#: libraries/messages.inc.php:366 libraries/mysql_charsets.lib.php:380 +#: libraries/messages.inc.php:362 libraries/mysql_charsets.lib.php:380 msgid "Greek" msgstr "Grego" -#: libraries/messages.inc.php:367 +#: libraries/messages.inc.php:363 msgid "\"gzipped\"" msgstr "\"compactado com gzip\"" -#: libraries/messages.inc.php:369 server_status.php:250 +#: libraries/messages.inc.php:365 server_status.php:250 msgid "Handler" msgstr "Alimentador" -#: libraries/messages.inc.php:370 server_synchronize.php:464 +#: libraries/messages.inc.php:366 server_synchronize.php:464 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: libraries/messages.inc.php:372 libraries/mysql_charsets.lib.php:374 +#: libraries/messages.inc.php:368 libraries/mysql_charsets.lib.php:374 msgid "Hebrew" msgstr "Hebreu" -#: libraries/messages.inc.php:373 pmd_general.php:83 +#: libraries/messages.inc.php:369 pmd_general.php:83 msgid "Help" msgstr "Ajuda" -#: libraries/messages.inc.php:374 +#: libraries/messages.inc.php:370 msgid "Use hexadecimal for BLOB" msgstr "Usar hexadecimal para BLOB" -#: libraries/messages.inc.php:376 pmd_general.php:120 +#: libraries/messages.inc.php:372 pmd_general.php:120 msgid "Hide/Show all" msgstr "Ocultar/Exibir tudo" -#: libraries/messages.inc.php:377 pmd_general.php:124 +#: libraries/messages.inc.php:373 pmd_general.php:124 msgid "Hide/Show Tables with no relation" msgstr "Ocultar/Exibir Tabelas sem relacionamento" -#: libraries/messages.inc.php:378 libraries/navigation_header.inc.php:54 +#: libraries/messages.inc.php:374 libraries/navigation_header.inc.php:54 #: libraries/navigation_header.inc.php:57 #: libraries/navigation_header.inc.php:58 msgid "Home" msgstr "Principal" -#: libraries/messages.inc.php:379 main.php:233 +#: libraries/messages.inc.php:375 main.php:233 msgid "Official Homepage" msgstr "Página Oficial do phpMyAdmin" -#: libraries/messages.inc.php:382 libraries/replication_gui.lib.php:327 +#: libraries/messages.inc.php:378 libraries/replication_gui.lib.php:327 #: server_privileges.php:753 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/messages.inc.php:383 +#: libraries/messages.inc.php:379 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/messages.inc.php:384 libraries/mysql_charsets.lib.php:253 +#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:253 msgid "Hungarian" msgstr "Húngaro" -#: libraries/messages.inc.php:386 libraries/mysql_charsets.lib.php:256 +#: libraries/messages.inc.php:382 libraries/mysql_charsets.lib.php:256 msgid "Icelandic" msgstr "Islandês" -#: libraries/messages.inc.php:387 server_processlist.php:53 +#: libraries/messages.inc.php:383 server_processlist.php:53 msgid "ID" msgstr "ID" -#: libraries/messages.inc.php:388 libraries/mult_submits.inc.php:108 +#: libraries/messages.inc.php:384 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:479 msgid "Fulltext" msgstr "Texto completo" -#: libraries/messages.inc.php:389 +#: libraries/messages.inc.php:385 msgid "Ignore duplicate rows" msgstr "Ignorar linhas duplicadas" -#: libraries/messages.inc.php:390 tbl_change.php:302 tbl_indexes.php:200 +#: libraries/messages.inc.php:386 tbl_change.php:302 tbl_indexes.php:200 #: tbl_indexes.php:225 msgid "Ignore" msgstr "Ignorar" -#: libraries/messages.inc.php:391 +#: libraries/messages.inc.php:387 msgid "Use ignore inserts" msgstr "Usar inserções ignoradas" -#: libraries/messages.inc.php:392 +#: libraries/messages.inc.php:388 msgid "Column names in first row" msgstr "" -#: libraries/messages.inc.php:393 +#: libraries/messages.inc.php:389 msgid "Do not import empty rows" msgstr "" -#: libraries/messages.inc.php:394 pmd_general.php:104 +#: libraries/messages.inc.php:390 pmd_general.php:104 msgid "Import/Export coordinates for PDF schema" msgstr "Importar/Exportar coordenadas para esquema PDF" -#: libraries/messages.inc.php:395 querywindow.php:104 +#: libraries/messages.inc.php:391 querywindow.php:104 msgid "Import files" msgstr "Importar arquivos" -#: libraries/messages.inc.php:403 +#: libraries/messages.inc.php:399 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/messages.inc.php:404 libraries/messages.inc.php:584 +#: libraries/messages.inc.php:400 libraries/messages.inc.php:580 msgid "Open Document Spreadsheet" msgstr "Planilha Open Document" -#: libraries/messages.inc.php:405 +#: libraries/messages.inc.php:401 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/messages.inc.php:409 +#: libraries/messages.inc.php:405 msgid "Excel 97-2003 XLS Workbook" msgstr "" -#: libraries/messages.inc.php:410 +#: libraries/messages.inc.php:406 msgid "Excel 2007 XLSX Workbook" msgstr "" -#: libraries/messages.inc.php:414 libraries/mult_submits.inc.php:98 +#: libraries/messages.inc.php:410 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:476 tbl_structure.php:674 msgid "Index" msgstr "Índice" -#: libraries/messages.inc.php:415 tbl_indexes.php:168 +#: libraries/messages.inc.php:411 tbl_indexes.php:168 msgid "Index name:" msgstr "Nome do índice:" -#: libraries/messages.inc.php:416 tbl_indexes.php:174 +#: libraries/messages.inc.php:412 tbl_indexes.php:174 msgid "Index type:" msgstr "Tipo de índice:" -#: libraries/messages.inc.php:417 sql.php:639 +#: libraries/messages.inc.php:413 sql.php:639 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemas com o índice da tabela `%s`" -#: libraries/messages.inc.php:427 main.php:266 +#: libraries/messages.inc.php:423 main.php:266 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -4024,163 +4024,163 @@ msgstr "" "com esse padrão estará aberto a invasões, você realmente deveria corrigir " "este furo de segurança." -#: libraries/messages.inc.php:428 tbl_change.php:1130 +#: libraries/messages.inc.php:424 tbl_change.php:1130 msgid "Insert as new row" msgstr "Inserir como um novo registro" -#: libraries/messages.inc.php:429 sql.php:496 tbl_replace.php:386 +#: libraries/messages.inc.php:425 sql.php:496 tbl_replace.php:386 #, php-format msgid "Inserted row id: %1$d" msgstr "Id da linha inserida: %1$d" -#: libraries/messages.inc.php:430 tbl_change.php:1131 +#: libraries/messages.inc.php:426 tbl_change.php:1131 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/messages.inc.php:432 main.php:139 +#: libraries/messages.inc.php:428 main.php:139 msgid "Interface" msgstr "Interface" -#: libraries/messages.inc.php:433 tbl_relation.php:407 +#: libraries/messages.inc.php:429 tbl_relation.php:407 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: libraries/messages.inc.php:435 pdf_pages.php:303 +#: libraries/messages.inc.php:431 pdf_pages.php:303 msgid "Internal relations" msgstr "Relações internas" -#: libraries/messages.inc.php:438 tbl_indexes.php:256 tbl_structure.php:590 +#: libraries/messages.inc.php:434 tbl_indexes.php:256 tbl_structure.php:590 #: tbl_structure.php:601 msgid "Column count has to be larger than zero." msgstr "Contador da coluna deve ser maior que zero." -#: libraries/messages.inc.php:444 libraries/tbl_properties.inc.php:784 +#: libraries/messages.inc.php:440 libraries/tbl_properties.inc.php:784 #: tbl_structure.php:537 msgid "You have to add at least one field." msgstr "Você deve adicionar pelo menos um campo." -#: libraries/messages.inc.php:449 +#: libraries/messages.inc.php:445 #, php-format msgid "Invalid server index: \"%s\"" msgstr "Índice de servidor inválido: \"%s\"" -#: libraries/messages.inc.php:452 libraries/mysql_charsets.lib.php:259 +#: libraries/messages.inc.php:448 libraries/mysql_charsets.lib.php:259 #: libraries/mysql_charsets.lib.php:349 msgid "Japanese" msgstr "Japonês" -#: libraries/messages.inc.php:453 main.php:331 +#: libraries/messages.inc.php:449 main.php:331 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: libraries/messages.inc.php:454 server_status.php:257 +#: libraries/messages.inc.php:450 server_status.php:257 msgid "Joins" msgstr "Junções" -#: libraries/messages.inc.php:457 server_privileges.php:763 +#: libraries/messages.inc.php:453 server_privileges.php:763 msgid "Do not change the password" msgstr "Não mudar a senha" -#: libraries/messages.inc.php:458 server_status.php:256 +#: libraries/messages.inc.php:454 server_status.php:256 msgid "Key cache" msgstr "Chave do cache" -#: libraries/messages.inc.php:462 libraries/mysql_charsets.lib.php:268 +#: libraries/messages.inc.php:458 libraries/mysql_charsets.lib.php:268 #: libraries/mysql_charsets.lib.php:371 msgid "Korean" msgstr "Coreano" -#: libraries/messages.inc.php:466 libraries/select_lang.lib.php:480 +#: libraries/messages.inc.php:462 libraries/select_lang.lib.php:480 #: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492 #, php-format msgid "Unknown language: %1$s." msgstr "Linguagem desconhecida: %1$s." -#: libraries/messages.inc.php:468 +#: libraries/messages.inc.php:464 msgid "Table caption" msgstr "Leganda da Tabela" -#: libraries/messages.inc.php:469 +#: libraries/messages.inc.php:465 msgid "Content of table __TABLE__" msgstr "Conteúdo da tabela __TABLE__" -#: libraries/messages.inc.php:470 +#: libraries/messages.inc.php:466 msgid "Continued table caption" msgstr "Continuação da legenda da tabela" -#: libraries/messages.inc.php:471 +#: libraries/messages.inc.php:467 msgid "(continued)" msgstr "(continuação)" -#: libraries/messages.inc.php:472 +#: libraries/messages.inc.php:468 msgid "Include table caption" msgstr "Incluir legenda da tabela" -#: libraries/messages.inc.php:473 +#: libraries/messages.inc.php:469 msgid "Label key" msgstr "Rótulo da chave" -#: libraries/messages.inc.php:474 +#: libraries/messages.inc.php:470 msgid "LaTeX" msgstr "LaTeX" -#: libraries/messages.inc.php:475 +#: libraries/messages.inc.php:471 msgid "Structure of table __TABLE__" msgstr "Estrutura da tabela __TABLE__" -#: libraries/messages.inc.php:476 libraries/mysql_charsets.lib.php:262 +#: libraries/messages.inc.php:472 libraries/mysql_charsets.lib.php:262 msgid "Latvian" msgstr "Letonês" -#: libraries/messages.inc.php:477 +#: libraries/messages.inc.php:473 msgid "CSV using LOAD DATA" msgstr "CSV usando LOAD DATA" -#: libraries/messages.inc.php:478 +#: libraries/messages.inc.php:474 msgid "Use LOCAL keyword" msgstr "Usar palavra-chave LOCAL" -#: libraries/messages.inc.php:479 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:475 libraries/tbl_properties.inc.php:105 msgid "Length/Values" msgstr "Tamanho/Definir*" -#: libraries/messages.inc.php:480 tbl_select.php:295 +#: libraries/messages.inc.php:476 tbl_select.php:295 msgid "Number of rows per page" msgstr "registros por página" -#: libraries/messages.inc.php:484 libraries/mysql_charsets.lib.php:265 +#: libraries/messages.inc.php:480 libraries/mysql_charsets.lib.php:265 msgid "Lithuanian" msgstr "Lituânio" -#: libraries/messages.inc.php:485 libraries/replication_gui.lib.php:302 +#: libraries/messages.inc.php:481 libraries/replication_gui.lib.php:302 #: server_privileges.php:729 msgid "Local" msgstr "Local" -#: libraries/messages.inc.php:487 server_privileges.php:669 +#: libraries/messages.inc.php:483 server_privileges.php:669 msgid "Login Information" msgstr "Informação de login" -#: libraries/messages.inc.php:490 libraries/navigation_header.inc.php:67 +#: libraries/messages.inc.php:486 libraries/navigation_header.inc.php:67 #: libraries/navigation_header.inc.php:70 #: libraries/navigation_header.inc.php:71 main.php:99 msgid "Log out" msgstr "Sair" -#: libraries/messages.inc.php:497 server_status.php:440 +#: libraries/messages.inc.php:493 server_status.php:440 msgid "max. concurrent connections" msgstr "máx. de conexões concorrentes" -#: libraries/messages.inc.php:498 +#: libraries/messages.inc.php:494 msgid "Maximal length of created query" msgstr "Tamanho máximo da consulta gerada" -#: libraries/messages.inc.php:500 main.php:282 +#: libraries/messages.inc.php:496 main.php:282 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -4191,7 +4191,7 @@ msgstr "" "será capaz de dividir as strings corretamente isso pode causar resultados " "inesperados." -#: libraries/messages.inc.php:501 main.php:274 +#: libraries/messages.inc.php:497 main.php:274 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -4200,24 +4200,24 @@ msgstr "" "Você habilitou mbstring.func_overload nas configurações do PHP. Essa opção é " "incompatível com o phpMyAdmin e certamente causará a perda de algum dado!" -#: libraries/messages.inc.php:502 +#: libraries/messages.inc.php:498 msgid "MediaWiki Table" msgstr "" -#: libraries/messages.inc.php:503 transformation_overview.php:25 +#: libraries/messages.inc.php:499 transformation_overview.php:25 msgid "Available MIME types" msgstr "MIME-type disponíveis" -#: libraries/messages.inc.php:504 transformation_overview.php:43 +#: libraries/messages.inc.php:500 transformation_overview.php:43 msgid "Available transformations" msgstr "Transformações disponíveis" -#: libraries/messages.inc.php:505 +#: libraries/messages.inc.php:501 msgctxt "$strMIME_description" msgid "Description" msgstr "Descrição" -#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:580 +#: libraries/messages.inc.php:503 libraries/tbl_properties.inc.php:580 #: transformation_overview.php:60 #, php-format msgid "" @@ -4227,7 +4227,7 @@ msgstr "" "Sem descrição disponível para essa transformação.
Pergunte ao autor o " "que %s faz." -#: libraries/messages.inc.php:509 libraries/tbl_properties.inc.php:137 +#: libraries/messages.inc.php:505 libraries/tbl_properties.inc.php:137 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -4236,7 +4236,7 @@ msgstr "" "Para uma lista de opções de transformação disponíveis e suas transformações " "MIME-type, clique em %sdescrição de transformações%s" -#: libraries/messages.inc.php:510 libraries/tbl_properties.inc.php:146 +#: libraries/messages.inc.php:506 libraries/tbl_properties.inc.php:146 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -4248,56 +4248,56 @@ msgstr "" "ou aspas (\"'\") no meio desses valores, faça-o usando outra contra-barra " "(por exemplo '\\\\xyz' ou 'a\\'b')." -#: libraries/messages.inc.php:511 libraries/tbl_properties.inc.php:145 +#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:145 msgid "Transformation options" msgstr "Opções de transformação" -#: libraries/messages.inc.php:513 transformation_overview.php:38 +#: libraries/messages.inc.php:509 transformation_overview.php:38 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "MIME-types em itálico não têm uma função de transformação separada" -#: libraries/messages.inc.php:515 tbl_indexes.php:162 +#: libraries/messages.inc.php:511 tbl_indexes.php:162 msgid "Modify an index" msgstr "Modificar um índice" -#: libraries/messages.inc.php:517 pmd_general.php:108 +#: libraries/messages.inc.php:513 pmd_general.php:108 msgid "Move Menu" msgstr "Mover Menu" -#: libraries/messages.inc.php:518 tbl_operations.php:276 +#: libraries/messages.inc.php:514 tbl_operations.php:276 msgid "Move table to (database.table):" msgstr "Mover tabela para (Banco de Dados.tabela):" -#: libraries/messages.inc.php:519 tbl_move_copy.php:56 +#: libraries/messages.inc.php:515 tbl_move_copy.php:56 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabela %s foi movida para %s." -#: libraries/messages.inc.php:520 tbl_move_copy.php:46 +#: libraries/messages.inc.php:516 tbl_move_copy.php:46 msgid "Can't move table to same one!" msgstr "Não pode mover a tabela para ela mesma!" -#: libraries/messages.inc.php:521 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:517 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 #: libraries/mysql_charsets.lib.php:332 libraries/mysql_charsets.lib.php:354 #: libraries/mysql_charsets.lib.php:365 msgid "multilingual" msgstr "multi-linguagem" -#: libraries/messages.inc.php:534 main.php:193 +#: libraries/messages.inc.php:530 main.php:193 msgid "MySQL charset" msgstr "Conjunto de caracteres MySQL" -#: libraries/messages.inc.php:535 main.php:211 +#: libraries/messages.inc.php:531 main.php:211 msgid "MySQL client version" msgstr "Versão do cliente MySQL" -#: libraries/messages.inc.php:536 main.php:125 +#: libraries/messages.inc.php:532 main.php:125 msgid "MySQL connection collation" msgstr "Collation de conexão do MySQL" -#: libraries/messages.inc.php:537 main.php:346 +#: libraries/messages.inc.php:533 main.php:346 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -4306,54 +4306,54 @@ msgstr "" "Sua versão %s da biblioteca MySQL do PHP difere da versão %s do seu servidor " "MySQL. Isso pode causar um comportamento estranho." -#: libraries/messages.inc.php:539 server_status.php:294 +#: libraries/messages.inc.php:535 server_status.php:294 msgid "Show processes" msgstr "Mostrar os Processos" -#: libraries/messages.inc.php:545 navigation.php:210 server_databases.php:371 +#: libraries/messages.inc.php:541 navigation.php:210 server_databases.php:371 #: server_synchronize.php:1191 msgid "No databases" msgstr "Sem bases" -#: libraries/messages.inc.php:546 server_databases.php:52 +#: libraries/messages.inc.php:542 server_databases.php:52 msgid "No databases selected." msgstr "Nenhum Banco de Dados selecionado." -#: libraries/messages.inc.php:548 libraries/relation.lib.php:1173 +#: libraries/messages.inc.php:544 libraries/relation.lib.php:1173 msgid "no description" msgstr "sem Descrição" -#: libraries/messages.inc.php:552 libraries/zip_extension.lib.php:26 +#: libraries/messages.inc.php:548 libraries/zip_extension.lib.php:26 msgid "No files found inside ZIP archive!" msgstr "Nenhum arquivo encontrado dentro do arquivo ZIP!" -#: libraries/messages.inc.php:555 tbl_indexes.php:91 +#: libraries/messages.inc.php:551 tbl_indexes.php:91 msgid "No index parts defined!" msgstr "Nenhuma parte de índice definida!" -#: libraries/messages.inc.php:556 libraries/mult_submits.inc.php:435 +#: libraries/messages.inc.php:552 libraries/mult_submits.inc.php:435 #: tbl_replace.php:331 msgid "No change" msgstr "Sem Mudança" -#: libraries/messages.inc.php:557 +#: libraries/messages.inc.php:553 msgctxt "$strNoneDefault" msgid "None" msgstr "Nenhum" -#: libraries/messages.inc.php:560 libraries/plugin_interface.lib.php:312 +#: libraries/messages.inc.php:556 libraries/plugin_interface.lib.php:312 msgid "This format has no options" msgstr "Esse formato não tem opções" -#: libraries/messages.inc.php:565 user_password.php:54 +#: libraries/messages.inc.php:561 user_password.php:54 msgid "You don't have sufficient privileges to be here right now!" msgstr "Você não tem direitos suficientes para estar aqui agora!" -#: libraries/messages.inc.php:566 tbl_row_action.php:29 +#: libraries/messages.inc.php:562 tbl_row_action.php:29 msgid "No rows selected" msgstr "Nenhum registro selecionado" -#: libraries/messages.inc.php:569 themes.php:32 +#: libraries/messages.inc.php:565 themes.php:32 #, php-format msgid "" "No themes support; please check your configuration and/or your themes in " @@ -4362,293 +4362,293 @@ msgstr "" "Sem suporte a Temas, verifique suas configurações e/ou seus Temas no " "diretório %s." -#: libraries/messages.inc.php:571 libraries/relation.lib.php:95 +#: libraries/messages.inc.php:567 libraries/relation.lib.php:95 msgid "not OK" msgstr "não está OK" -#: libraries/messages.inc.php:572 server_synchronize.php:400 +#: libraries/messages.inc.php:568 server_synchronize.php:400 #: server_synchronize.php:839 msgid "not present" msgstr "" -#: libraries/messages.inc.php:573 pdf_pages.php:36 pdf_pages.php:42 +#: libraries/messages.inc.php:569 pdf_pages.php:36 pdf_pages.php:42 #: pdf_pages.php:48 pdf_pages.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "%s tabela não encontrada ou não configurada em %s" -#: libraries/messages.inc.php:574 server_privileges.php:804 +#: libraries/messages.inc.php:570 server_privileges.php:804 #: server_privileges.php:2166 msgid "No user(s) found." msgstr "Nenhum usuário(s) encontrado." -#: libraries/messages.inc.php:578 pmd_general.php:164 +#: libraries/messages.inc.php:574 pmd_general.php:164 msgid "Number of tables" msgstr "Numero de tabelas" -#: libraries/messages.inc.php:581 server_databases.php:117 +#: libraries/messages.inc.php:577 server_databases.php:117 #: server_status.php:260 setup/lib/messages.inc.php:117 msgid "Tables" msgstr "Tabelas" -#: libraries/messages.inc.php:583 libraries/relation.lib.php:99 +#: libraries/messages.inc.php:579 libraries/relation.lib.php:99 #: pmd_general.php:340 msgid "OK" msgstr "OK" -#: libraries/messages.inc.php:585 +#: libraries/messages.inc.php:581 msgid "Open Document Text" msgstr "Abrir Documento de Texto" -#: libraries/messages.inc.php:588 tbl_select.php:138 +#: libraries/messages.inc.php:584 tbl_select.php:138 msgid "Operator" msgstr "Operador" -#: libraries/messages.inc.php:589 tbl_operations.php:662 +#: libraries/messages.inc.php:585 tbl_operations.php:662 msgid "Optimize" msgstr "Otimizar" -#: libraries/messages.inc.php:602 libraries/tbl_properties.inc.php:755 +#: libraries/messages.inc.php:598 libraries/tbl_properties.inc.php:755 msgid "PARTITION definition" msgstr "Definição da PARTIÇÃO" -#: libraries/messages.inc.php:603 tbl_structure.php:757 +#: libraries/messages.inc.php:599 tbl_structure.php:757 msgid "partitioned" msgstr "Particionado" -#: libraries/messages.inc.php:604 tbl_operations.php:649 +#: libraries/messages.inc.php:600 tbl_operations.php:649 msgid "Partition maintenance" msgstr "Manutenção da partição" -#: libraries/messages.inc.php:605 tbl_operations.php:657 +#: libraries/messages.inc.php:601 tbl_operations.php:657 #, php-format msgid "Partition %s" msgstr "Partição %s" -#: libraries/messages.inc.php:606 server_privileges.php:1212 +#: libraries/messages.inc.php:602 server_privileges.php:1212 #, php-format msgid "The password for %s was changed successfully." msgstr "A senha para %s foi modificada com sucesso." -#: libraries/messages.inc.php:635 +#: libraries/messages.inc.php:631 #, php-format msgid "Schema of the \"%s\" database - Page %s" msgstr "Esquema do Banco de Dados \"%s\" - Página %s" -#: libraries/messages.inc.php:636 +#: libraries/messages.inc.php:632 #, php-format msgid "The \"%s\" table doesn't exist!" msgstr "A tabela \"%s\" não existe!" -#: libraries/messages.inc.php:637 pdf_schema.php:1013 +#: libraries/messages.inc.php:633 pdf_schema.php:1013 msgid "No tables" msgstr "Sem tabelas" -#: libraries/messages.inc.php:638 pmd_pdf.php:63 +#: libraries/messages.inc.php:634 pmd_pdf.php:63 msgid "Page has been created" msgstr "A página foi criada" -#: libraries/messages.inc.php:639 pmd_pdf.php:65 +#: libraries/messages.inc.php:635 pmd_pdf.php:65 msgid "Page creation failed" msgstr "" -#: libraries/messages.inc.php:640 +#: libraries/messages.inc.php:636 msgid "PDF" msgstr "PDF" -#: libraries/messages.inc.php:641 +#: libraries/messages.inc.php:637 msgid "(Generates a report containing the data of a single table)" msgstr "(Gerado um relatório contendo dados da tabela simples)" -#: libraries/messages.inc.php:642 +#: libraries/messages.inc.php:638 msgid "Report title" msgstr "Título do Relatório" -#: libraries/messages.inc.php:643 server_status.php:389 server_status.php:434 +#: libraries/messages.inc.php:639 server_status.php:389 server_status.php:434 #: server_status.php:497 server_status.php:555 msgid "per hour" msgstr "por hora" -#: libraries/messages.inc.php:644 server_status.php:498 +#: libraries/messages.inc.php:640 server_status.php:498 msgid "per minute" msgstr "por minuto" -#: libraries/messages.inc.php:645 server_status.php:499 +#: libraries/messages.inc.php:641 server_status.php:499 msgid "per second" msgstr "por segundo" -#: libraries/messages.inc.php:646 libraries/mysql_charsets.lib.php:271 +#: libraries/messages.inc.php:642 libraries/mysql_charsets.lib.php:271 msgid "Persian" msgstr "Pérsa" -#: libraries/messages.inc.php:647 libraries/mysql_charsets.lib.php:250 +#: libraries/messages.inc.php:643 libraries/mysql_charsets.lib.php:250 msgid "phone book" msgstr "Agenda de telefones" -#: libraries/messages.inc.php:648 +#: libraries/messages.inc.php:644 msgid "PHP array" msgstr "" -#: libraries/messages.inc.php:650 main.php:213 +#: libraries/messages.inc.php:646 main.php:213 msgid "PHP extension" msgstr "Extensão do PHP" -#: libraries/messages.inc.php:654 libraries/relation.lib.php:163 +#: libraries/messages.inc.php:650 libraries/relation.lib.php:163 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/messages.inc.php:655 libraries/relation.lib.php:159 +#: libraries/messages.inc.php:651 libraries/relation.lib.php:159 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/messages.inc.php:656 libraries/relation.lib.php:161 +#: libraries/messages.inc.php:652 libraries/relation.lib.php:161 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" -#: libraries/messages.inc.php:657 libraries/relation.lib.php:162 +#: libraries/messages.inc.php:653 libraries/relation.lib.php:162 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/messages.inc.php:658 libraries/relation.lib.php:164 +#: libraries/messages.inc.php:654 libraries/relation.lib.php:164 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/messages.inc.php:661 libraries/mysql_charsets.lib.php:274 +#: libraries/messages.inc.php:657 libraries/mysql_charsets.lib.php:274 msgid "Polish" msgstr "Polonês" -#: libraries/messages.inc.php:662 libraries/replication_gui.lib.php:67 +#: libraries/messages.inc.php:658 libraries/replication_gui.lib.php:67 #: server_synchronize.php:1163 msgid "Port" msgstr "Porta" -#: libraries/messages.inc.php:667 tbl_indexes.php:67 +#: libraries/messages.inc.php:663 tbl_indexes.php:67 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "O nome da chave primária deve ser... \"PRIMARY\"!" -#: libraries/messages.inc.php:668 tbl_indexes.php:184 +#: libraries/messages.inc.php:664 tbl_indexes.php:184 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" "(\"PRIMARY\" precisa ser o nome de e apenas da chave " "primária!)" -#: libraries/messages.inc.php:669 libraries/mult_submits.inc.php:76 +#: libraries/messages.inc.php:665 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:474 msgid "Primary" msgstr "Primária" -#: libraries/messages.inc.php:673 server_privileges.php:227 +#: libraries/messages.inc.php:669 server_privileges.php:227 msgid "Includes all privileges except GRANT." msgstr "Incluir todos os privilégios, exceto GRANT." -#: libraries/messages.inc.php:674 server_privileges.php:153 +#: libraries/messages.inc.php:670 server_privileges.php:153 #: server_privileges.php:476 msgid "Allows altering the structure of existing tables." msgstr "Permitir alterar a estrutura das tabelas existentes." -#: libraries/messages.inc.php:675 server_privileges.php:169 +#: libraries/messages.inc.php:671 server_privileges.php:169 #: server_privileges.php:482 msgid "Allows altering and dropping stored routines." msgstr "Permitir alterar e apagar stored routines." -#: libraries/messages.inc.php:676 server_privileges.php:145 +#: libraries/messages.inc.php:672 server_privileges.php:145 #: server_privileges.php:475 msgid "Allows creating new databases and tables." msgstr "Permitir criar novas tabelas e Banco de Dados." -#: libraries/messages.inc.php:677 server_privileges.php:168 +#: libraries/messages.inc.php:673 server_privileges.php:168 #: server_privileges.php:481 msgid "Allows creating stored routines." msgstr "Permitir criar stored routines." -#: libraries/messages.inc.php:678 server_privileges.php:475 +#: libraries/messages.inc.php:674 server_privileges.php:475 msgid "Allows creating new tables." msgstr "Permitir criar novas tabelas." -#: libraries/messages.inc.php:679 server_privileges.php:156 +#: libraries/messages.inc.php:675 server_privileges.php:156 #: server_privileges.php:479 msgid "Allows creating temporary tables." msgstr "Permitir criar tabelas temporárias." -#: libraries/messages.inc.php:680 server_privileges.php:170 +#: libraries/messages.inc.php:676 server_privileges.php:170 #: server_privileges.php:515 msgid "Allows creating, dropping and renaming user accounts." msgstr "Permitir criar, apagar e renomear contas dos usuários." -#: libraries/messages.inc.php:681 server_privileges.php:160 +#: libraries/messages.inc.php:677 server_privileges.php:160 #: server_privileges.php:164 server_privileges.php:487 #: server_privileges.php:491 msgid "Allows creating new views." msgstr "Permitir criar novas visões." -#: libraries/messages.inc.php:682 server_privileges.php:144 +#: libraries/messages.inc.php:678 server_privileges.php:144 #: server_privileges.php:467 msgid "Allows deleting data." msgstr "Permitir apagar dados." -#: libraries/messages.inc.php:683 server_privileges.php:146 +#: libraries/messages.inc.php:679 server_privileges.php:146 #: server_privileges.php:478 msgid "Allows dropping databases and tables." msgstr "Permitir eliminar Banco de Dados e tabelas." -#: libraries/messages.inc.php:684 server_privileges.php:478 +#: libraries/messages.inc.php:680 server_privileges.php:478 msgid "Allows dropping tables." msgstr "Permitir eliminar tabelas." -#: libraries/messages.inc.php:685 server_privileges.php:161 +#: libraries/messages.inc.php:681 server_privileges.php:161 #: server_privileges.php:495 msgid "Allows to set up events for the event scheduler" msgstr "Permitir iniciar eventos no cronograma de eventos" -#: libraries/messages.inc.php:686 server_privileges.php:171 +#: libraries/messages.inc.php:682 server_privileges.php:171 #: server_privileges.php:483 msgid "Allows executing stored routines." msgstr "Permitir executar stored routines." -#: libraries/messages.inc.php:687 server_privileges.php:150 +#: libraries/messages.inc.php:683 server_privileges.php:150 #: server_privileges.php:470 msgid "Allows importing data from and exporting data into files." msgstr "Permitir importar dados e exportar dados em arquivos." -#: libraries/messages.inc.php:688 server_privileges.php:501 +#: libraries/messages.inc.php:684 server_privileges.php:501 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Permitir adicionar usuários e privilégios sem recarregar a tabela de " "privilégios." -#: libraries/messages.inc.php:689 server_privileges.php:152 +#: libraries/messages.inc.php:685 server_privileges.php:152 #: server_privileges.php:477 msgid "Allows creating and dropping indexes." msgstr "Permitir criar e eliminar índices." -#: libraries/messages.inc.php:690 server_privileges.php:142 +#: libraries/messages.inc.php:686 server_privileges.php:142 #: server_privileges.php:403 server_privileges.php:465 msgid "Allows inserting and replacing data." msgstr "Permitir inserir e substituir dados." -#: libraries/messages.inc.php:691 server_privileges.php:157 +#: libraries/messages.inc.php:687 server_privileges.php:157 #: server_privileges.php:510 msgid "Allows locking tables for the current thread." msgstr "Permitir bloquear tabelas para a processo atual." -#: libraries/messages.inc.php:692 server_privileges.php:607 +#: libraries/messages.inc.php:688 server_privileges.php:607 #: server_privileges.php:609 msgid "Limits the number of new connections the user may open per hour." msgstr "Limitar o numero de novas conexões que o usuário pode abrir por hora." -#: libraries/messages.inc.php:693 server_privileges.php:595 +#: libraries/messages.inc.php:689 server_privileges.php:595 #: server_privileges.php:597 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Limitar o número de consultas que podem ser enviadas ao servidor por hora." -#: libraries/messages.inc.php:694 server_privileges.php:601 +#: libraries/messages.inc.php:690 server_privileges.php:601 #: server_privileges.php:603 msgid "" "Limits the number of commands that change any table or database the user may " @@ -4657,59 +4657,59 @@ msgstr "" "Limitar o número de comandos que alteram Bancos de Dados ou tabelas que o " "usuário pode executar por hora." -#: libraries/messages.inc.php:695 server_privileges.php:613 +#: libraries/messages.inc.php:691 server_privileges.php:613 #: server_privileges.php:615 msgid "Limits the number of simultaneous connections the user may have." msgstr "Limitar o número de conexões simultâneas que o usuário pode ter." -#: libraries/messages.inc.php:696 server_privileges.php:149 +#: libraries/messages.inc.php:692 server_privileges.php:149 #: server_privileges.php:505 msgid "Allows viewing processes of all users" msgstr "Permitir visualizar processos de todos os usuários" -#: libraries/messages.inc.php:697 server_privileges.php:151 +#: libraries/messages.inc.php:693 server_privileges.php:151 #: server_privileges.php:409 server_privileges.php:511 msgid "Has no effect in this MySQL version." msgstr "Sem efeitos nesta versão do MySQL." -#: libraries/messages.inc.php:698 server_privileges.php:147 +#: libraries/messages.inc.php:694 server_privileges.php:147 #: server_privileges.php:506 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Permitir recarregar configurações do servidor e descarregar o cache do " "servidor." -#: libraries/messages.inc.php:699 server_privileges.php:159 +#: libraries/messages.inc.php:695 server_privileges.php:159 #: server_privileges.php:513 msgid "Allows the user to ask where the slaves / masters are." msgstr "Permitir que o usuário pergunte onde estão os escravos / mestres." -#: libraries/messages.inc.php:700 server_privileges.php:158 +#: libraries/messages.inc.php:696 server_privileges.php:158 #: server_privileges.php:514 msgid "Needed for the replication slaves." msgstr "Precisar dos escravos de replicação." -#: libraries/messages.inc.php:701 server_privileges.php:141 +#: libraries/messages.inc.php:697 server_privileges.php:141 #: server_privileges.php:400 server_privileges.php:464 msgid "Allows reading data." msgstr "Permitir leitura dos dados." -#: libraries/messages.inc.php:702 server_privileges.php:154 +#: libraries/messages.inc.php:698 server_privileges.php:154 #: server_privileges.php:508 msgid "Gives access to the complete list of databases." msgstr "Permitir acesso completo à lista de Bancos de Dados." -#: libraries/messages.inc.php:703 server_privileges.php:165 +#: libraries/messages.inc.php:699 server_privileges.php:165 #: server_privileges.php:167 server_privileges.php:480 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Permitir executar consultas SHOW CREATE VIEW." -#: libraries/messages.inc.php:704 server_privileges.php:148 +#: libraries/messages.inc.php:700 server_privileges.php:148 #: server_privileges.php:507 msgid "Allows shutting down the server." msgstr "Permitir desligar o servidor." -#: libraries/messages.inc.php:705 server_privileges.php:155 +#: libraries/messages.inc.php:701 server_privileges.php:155 #: server_privileges.php:504 msgid "" "Allows connecting, even if maximum number of connections is reached; " @@ -4720,55 +4720,55 @@ msgstr "" "para muitas operações administrativas, como setar variáveis globais e matar " "processos de outros usuários." -#: libraries/messages.inc.php:706 server_privileges.php:162 +#: libraries/messages.inc.php:702 server_privileges.php:162 #: server_privileges.php:496 msgid "Allows creating and dropping triggers" msgstr "Permitir criar e e largar em cadeia" -#: libraries/messages.inc.php:707 server_privileges.php:143 +#: libraries/messages.inc.php:703 server_privileges.php:143 #: server_privileges.php:406 server_privileges.php:466 msgid "Allows changing data." msgstr "Permitir modificar dados." -#: libraries/messages.inc.php:708 server_privileges.php:221 +#: libraries/messages.inc.php:704 server_privileges.php:221 msgid "No privileges." msgstr "Sem privilégios." -#: libraries/messages.inc.php:710 server_privileges.php:1296 +#: libraries/messages.inc.php:706 server_privileges.php:1296 msgid "The privileges were reloaded successfully." msgstr "Os privilégios foram recarregados com sucesso." -#: libraries/messages.inc.php:712 libraries/server_links.inc.php:80 +#: libraries/messages.inc.php:708 libraries/server_links.inc.php:80 msgid "Processes" msgstr "Processos" -#: libraries/messages.inc.php:714 main.php:187 +#: libraries/messages.inc.php:710 main.php:187 msgid "Protocol version" msgstr "Versão do Protocolo" -#: libraries/messages.inc.php:715 +#: libraries/messages.inc.php:711 msgid "Put fields names in the first row" msgstr "Colocar nome do campo na primeira linha" -#: libraries/messages.inc.php:720 server_synchronize.php:1003 +#: libraries/messages.inc.php:716 server_synchronize.php:1003 msgid "The following queries have been executed:" msgstr "" -#: libraries/messages.inc.php:721 server_status.php:251 +#: libraries/messages.inc.php:717 server_status.php:251 msgid "Query cache" msgstr "Consulta do cache" -#: libraries/messages.inc.php:722 libraries/navigation_header.inc.php:80 +#: libraries/messages.inc.php:718 libraries/navigation_header.inc.php:80 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 setup/lib/messages.inc.php:122 msgid "Query window" msgstr "Janela de consulta" -#: libraries/messages.inc.php:725 querywindow.php:109 querywindow.php:217 +#: libraries/messages.inc.php:721 querywindow.php:109 querywindow.php:217 msgid "SQL history" msgstr "Histórico de consultas" -#: libraries/messages.inc.php:726 server_status.php:490 +#: libraries/messages.inc.php:722 server_status.php:490 #, php-format msgid "" "Query statistics: Since its startup, %s queries have been sent to the " @@ -4777,136 +4777,136 @@ msgstr "" "Estatísticas das consultas: Desde o início, %s consultas foram " "enviadas para o servidor." -#: libraries/messages.inc.php:728 server_status.php:554 +#: libraries/messages.inc.php:724 server_status.php:554 msgid "Query type" msgstr "Tipo de consulta" -#: libraries/messages.inc.php:729 libraries/sql_query_form.lib.php:381 +#: libraries/messages.inc.php:725 libraries/sql_query_form.lib.php:381 msgid "Do not overwrite this query from outside the window" msgstr "Não sobrescrever esta consulta fora desta janela" -#: libraries/messages.inc.php:732 tbl_operations.php:663 +#: libraries/messages.inc.php:728 tbl_operations.php:663 msgid "Rebuild" msgstr "Reconstruir" -#: libraries/messages.inc.php:733 server_status.php:394 +#: libraries/messages.inc.php:729 server_status.php:394 msgid "Received" msgstr "Recebido" -#: libraries/messages.inc.php:734 pmd_pdf.php:89 +#: libraries/messages.inc.php:730 pmd_pdf.php:89 msgid "recommended" msgstr "recomendado" -#: libraries/messages.inc.php:736 tbl_operations.php:702 +#: libraries/messages.inc.php:732 tbl_operations.php:702 msgid "Check referential integrity:" msgstr "Verificar integridade referencial:" -#: libraries/messages.inc.php:740 pdf_schema.php:1032 pdf_schema.php:1141 +#: libraries/messages.inc.php:736 pdf_schema.php:1032 pdf_schema.php:1141 msgid "Relational schema" msgstr "Esquema relacional" -#: libraries/messages.inc.php:744 tbl_relation.php:399 +#: libraries/messages.inc.php:740 tbl_relation.php:399 msgid "Relations" msgstr "Relações" -#: libraries/messages.inc.php:745 tbl_structure.php:507 tbl_structure.php:509 +#: libraries/messages.inc.php:741 tbl_structure.php:507 tbl_structure.php:509 msgid "Relation view" msgstr "Ver relações" -#: libraries/messages.inc.php:746 server_privileges.php:1246 +#: libraries/messages.inc.php:742 server_privileges.php:1246 msgid "Reloading the privileges" msgstr "Recarregando os privilégios" -#: libraries/messages.inc.php:747 navigation.php:66 navigation.php:67 +#: libraries/messages.inc.php:743 navigation.php:66 navigation.php:67 #: navigation.php:70 msgid "Reload navigation frame" msgstr "" -#: libraries/messages.inc.php:748 pmd_general.php:80 +#: libraries/messages.inc.php:744 pmd_general.php:80 msgid "Reload" msgstr "Recarregar" -#: libraries/messages.inc.php:749 libraries/server_synchronize.lib.php:1345 +#: libraries/messages.inc.php:745 libraries/server_synchronize.lib.php:1345 #: libraries/server_synchronize.lib.php:1371 msgid "Remote server" msgstr "" -#: libraries/messages.inc.php:750 +#: libraries/messages.inc.php:746 msgid "Remove CRLF characters within fields" msgstr "" -#: libraries/messages.inc.php:751 tbl_operations.php:676 +#: libraries/messages.inc.php:747 tbl_operations.php:676 msgid "Remove partitioning" msgstr "Remover partição" -#: libraries/messages.inc.php:752 server_privileges.php:1575 +#: libraries/messages.inc.php:748 server_privileges.php:1575 msgid "Remove selected users" msgstr "Remover os usuários selecionados" -#: libraries/messages.inc.php:755 tbl_operations.php:338 +#: libraries/messages.inc.php:751 tbl_operations.php:338 msgid "Rename table to" msgstr "Renomear a tabela para " -#: libraries/messages.inc.php:756 view_operations.php:93 +#: libraries/messages.inc.php:752 view_operations.php:93 #, fuzzy msgid "Rename view to" msgstr "Renomear a tabela para " -#: libraries/messages.inc.php:757 tbl_operations.php:664 +#: libraries/messages.inc.php:753 tbl_operations.php:664 msgid "Repair" msgstr "Reparar" -#: libraries/messages.inc.php:759 +#: libraries/messages.inc.php:755 msgid "Replace NULL by" msgstr "Substituir NULL por" -#: libraries/messages.inc.php:760 +#: libraries/messages.inc.php:756 msgid "Replace table data with file" msgstr "Substituir os dados da tabela pelos do arquivo" -#: libraries/messages.inc.php:761 server_replication.php:228 +#: libraries/messages.inc.php:757 server_replication.php:228 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: libraries/messages.inc.php:762 libraries/replication_gui.lib.php:236 +#: libraries/messages.inc.php:758 libraries/replication_gui.lib.php:236 #: server_replication.php:194 msgid "Add slave replication user" msgstr "" -#: libraries/messages.inc.php:763 server_replication.php:74 +#: libraries/messages.inc.php:759 server_replication.php:74 #, php-format msgid "Master server changed succesfully to %s" msgstr "" -#: libraries/messages.inc.php:764 server_replication.php:182 +#: libraries/messages.inc.php:760 server_replication.php:182 msgid "This server is configured as master in a replication process." msgstr "" -#: libraries/messages.inc.php:765 server_replication.php:322 +#: libraries/messages.inc.php:761 server_replication.php:322 msgid "Control slave:" msgstr "" -#: libraries/messages.inc.php:766 server_replication.php:65 +#: libraries/messages.inc.php:762 server_replication.php:65 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: libraries/messages.inc.php:767 server_replication.php:58 +#: libraries/messages.inc.php:763 server_replication.php:58 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: libraries/messages.inc.php:768 server_replication.php:221 +#: libraries/messages.inc.php:764 server_replication.php:221 msgid "Replicate all databases; Ignore:" msgstr "" -#: libraries/messages.inc.php:769 server_replication.php:222 +#: libraries/messages.inc.php:765 server_replication.php:222 msgid "Ignore all databases; Replicate:" msgstr "" -#: libraries/messages.inc.php:770 server_replication.php:218 +#: libraries/messages.inc.php:766 server_replication.php:218 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -4915,122 +4915,122 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: libraries/messages.inc.php:771 server_replication.php:217 +#: libraries/messages.inc.php:767 server_replication.php:217 msgid "Master configuration" msgstr "" -#: libraries/messages.inc.php:772 server_replication.php:181 +#: libraries/messages.inc.php:768 server_replication.php:181 #: server_replication.php:209 msgid "Master replication" msgstr "" -#: libraries/messages.inc.php:774 server_replication.php:230 +#: libraries/messages.inc.php:770 server_replication.php:230 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: libraries/messages.inc.php:775 server_replication.php:225 +#: libraries/messages.inc.php:771 server_replication.php:225 #, fuzzy msgid "Please select databases:" msgstr "Selecionar um Banco de Dados" -#: libraries/messages.inc.php:776 server_replication.php:210 +#: libraries/messages.inc.php:772 server_replication.php:210 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:188 +#: libraries/messages.inc.php:773 libraries/replication_gui.lib.php:188 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/messages.inc.php:778 server_replication.php:187 +#: libraries/messages.inc.php:774 server_replication.php:187 msgid "Show connected slaves" msgstr "" -#: libraries/messages.inc.php:779 libraries/messages.inc.php:885 +#: libraries/messages.inc.php:775 libraries/messages.inc.php:881 #: server_replication.php:184 server_status.php:281 #, fuzzy msgid "Show master status" msgstr "Exibir status dos escravos" -#: libraries/messages.inc.php:780 server_replication.php:334 +#: libraries/messages.inc.php:776 server_replication.php:334 msgid "Skipping error(s) might lead into unsynchronized master and slave!" msgstr "" -#: libraries/messages.inc.php:781 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:51 #: server_replication.php:347 msgid "Change or reconfigure master server" msgstr "" -#: libraries/messages.inc.php:782 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:778 libraries/replication_gui.lib.php:51 msgid "Slave configuration" msgstr "" -#: libraries/messages.inc.php:783 server_replication.php:305 +#: libraries/messages.inc.php:779 server_replication.php:305 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: libraries/messages.inc.php:784 server_replication.php:332 +#: libraries/messages.inc.php:780 server_replication.php:332 msgid "Error management:" msgstr "" -#: libraries/messages.inc.php:785 server_replication.php:328 +#: libraries/messages.inc.php:781 server_replication.php:328 #, php-format msgid "IO Thread %s only" msgstr "" -#: libraries/messages.inc.php:786 server_replication.php:296 +#: libraries/messages.inc.php:782 server_replication.php:296 msgid "Slave IO Thread not running!" msgstr "" -#: libraries/messages.inc.php:787 server_replication.php:355 +#: libraries/messages.inc.php:783 server_replication.php:355 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/messages.inc.php:788 server_replication.php:326 +#: libraries/messages.inc.php:784 server_replication.php:326 msgid "Reset slave" msgstr "" -#: libraries/messages.inc.php:789 server_replication.php:308 +#: libraries/messages.inc.php:785 server_replication.php:308 msgid "See slave status table" msgstr "" -#: libraries/messages.inc.php:790 server_replication.php:336 +#: libraries/messages.inc.php:786 server_replication.php:336 msgid "Skip current error" msgstr "" -#: libraries/messages.inc.php:791 server_replication.php:340 +#: libraries/messages.inc.php:787 server_replication.php:340 msgid "errors." msgstr "" -#: libraries/messages.inc.php:792 server_replication.php:337 +#: libraries/messages.inc.php:788 server_replication.php:337 msgid "Skip next" msgstr "" -#: libraries/messages.inc.php:793 server_replication.php:248 +#: libraries/messages.inc.php:789 server_replication.php:248 msgid "Slave replication" msgstr "" -#: libraries/messages.inc.php:794 server_replication.php:293 +#: libraries/messages.inc.php:790 server_replication.php:293 msgid "Slave SQL Thread not running!" msgstr "" -#: libraries/messages.inc.php:795 server_replication.php:327 +#: libraries/messages.inc.php:791 server_replication.php:327 #, php-format msgid "SQL Thread %s only" msgstr "" -#: libraries/messages.inc.php:796 +#: libraries/messages.inc.php:792 #, php-format msgid "" "This MySQL server works as %s in replication process. For further " @@ -5038,162 +5038,162 @@ msgid "" "\"#replication\">replication section." msgstr "" -#: libraries/messages.inc.php:797 +#: libraries/messages.inc.php:793 #, fuzzy msgid "Master status" msgstr "Exibir status dos escravos" -#: libraries/messages.inc.php:798 server_status.php:721 +#: libraries/messages.inc.php:794 server_status.php:721 #, fuzzy msgid "Replication status" msgstr "Replicação" -#: libraries/messages.inc.php:799 +#: libraries/messages.inc.php:795 #, fuzzy msgid "Slave status" msgstr "Exibir status dos escravos" -#: libraries/messages.inc.php:800 server_replication.php:311 +#: libraries/messages.inc.php:796 server_replication.php:311 msgid "Synchronize databases with master" msgstr "" -#: libraries/messages.inc.php:801 server_replication.php:71 +#: libraries/messages.inc.php:797 server_replication.php:71 msgid "Unable to change master" msgstr "" -#: libraries/messages.inc.php:802 server_replication.php:51 +#: libraries/messages.inc.php:798 server_replication.php:51 msgid "Unknown error" msgstr "" -#: libraries/messages.inc.php:803 main.php:163 pdf_pages.php:344 +#: libraries/messages.inc.php:799 main.php:163 pdf_pages.php:344 #: setup/lib/FormDisplay.tpl.php:216 tbl_change.php:1175 msgid "Reset" msgstr "Restaurar" -#: libraries/messages.inc.php:804 server_privileges.php:591 +#: libraries/messages.inc.php:800 server_privileges.php:591 msgid "Resource limits" msgstr "Limite dos recursos" -#: libraries/messages.inc.php:805 tbl_change.php:1209 +#: libraries/messages.inc.php:801 tbl_change.php:1209 #, php-format msgid "Restart insertion with %s rows" msgstr "Reiniciar inserção com %s registros" -#: libraries/messages.inc.php:807 server_privileges.php:1578 +#: libraries/messages.inc.php:803 server_privileges.php:1578 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." -#: libraries/messages.inc.php:808 server_privileges.php:1176 +#: libraries/messages.inc.php:804 server_privileges.php:1176 #, php-format msgid "You have revoked the privileges for %s" msgstr "Você revogou os privilégios para %s" -#: libraries/messages.inc.php:809 server_privileges.php:1333 +#: libraries/messages.inc.php:805 server_privileges.php:1333 msgid "Revoke" msgstr "Revogar" -#: libraries/messages.inc.php:810 libraries/mysql_charsets.lib.php:280 +#: libraries/messages.inc.php:806 libraries/mysql_charsets.lib.php:280 msgid "Romanian" msgstr "Romêno" -#: libraries/messages.inc.php:813 tbl_printview.php:404 tbl_structure.php:786 +#: libraries/messages.inc.php:809 tbl_printview.php:404 tbl_structure.php:786 msgid "Row length" msgstr "Tamanho do registro" -#: libraries/messages.inc.php:815 tbl_printview.php:414 tbl_structure.php:794 +#: libraries/messages.inc.php:811 tbl_printview.php:414 tbl_structure.php:794 msgid " Row size " msgstr " Tamanho do registro " -#: libraries/messages.inc.php:821 tbl_printview.php:366 tbl_structure.php:726 +#: libraries/messages.inc.php:817 tbl_printview.php:366 tbl_structure.php:726 msgid "Row Statistics" msgstr "Estatísticas do registros" -#: libraries/messages.inc.php:822 +#: libraries/messages.inc.php:818 #, php-format msgid "running on %s" msgstr "Rodando em %s" -#: libraries/messages.inc.php:824 libraries/sql_query_form.lib.php:223 +#: libraries/messages.inc.php:820 libraries/sql_query_form.lib.php:223 #, php-format msgid "Run SQL query/queries on server %s" msgstr "Rodar consulta(s) SQL no servidor %s" -#: libraries/messages.inc.php:825 libraries/sql_query_form.lib.php:240 +#: libraries/messages.inc.php:821 libraries/sql_query_form.lib.php:240 #: libraries/sql_query_form.lib.php:265 #, php-format msgid "Run SQL query/queries on database %s" msgstr "Fazer consulta SQL no Banco de Dados %s" -#: libraries/messages.inc.php:826 libraries/mysql_charsets.lib.php:337 +#: libraries/messages.inc.php:822 libraries/mysql_charsets.lib.php:337 msgid "Russian" msgstr "Russo" -#: libraries/messages.inc.php:829 pmd_general.php:68 +#: libraries/messages.inc.php:825 pmd_general.php:68 msgid "Save position" msgstr "Salvar posição" -#: libraries/messages.inc.php:830 libraries/tbl_properties.inc.php:776 +#: libraries/messages.inc.php:826 libraries/tbl_properties.inc.php:776 #: pdf_pages.php:484 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:214 setup/lib/FormDisplay.tpl.php:215 #: tbl_change.php:1126 tbl_indexes.php:248 tbl_relation.php:566 msgid "Save" msgstr "Salvar" -#: libraries/messages.inc.php:831 +#: libraries/messages.inc.php:827 msgid "The scale factor is too small to fit the schema on one page" msgstr "A escala é muito pequena para ajustar o esquema em uma página" -#: libraries/messages.inc.php:843 main.php:298 +#: libraries/messages.inc.php:839 main.php:298 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "O arquivo de configuração agora precisa de uma frase secreta com senha " "(blowfish_secret)." -#: libraries/messages.inc.php:844 navigation.php:353 navigation.php:516 +#: libraries/messages.inc.php:840 navigation.php:353 navigation.php:516 msgid "Please select a database" msgstr "Selecionar um Banco de Dados" -#: libraries/messages.inc.php:846 server_binlog.php:120 +#: libraries/messages.inc.php:842 server_binlog.php:120 msgid "Select binary log to view" msgstr "Selecionar log binário para exibir" -#: libraries/messages.inc.php:847 tbl_select.php:270 +#: libraries/messages.inc.php:843 tbl_select.php:270 msgid "Select fields (at least one):" msgstr "Selecionar os campos (no mínimo 1)" -#: libraries/messages.inc.php:851 pdf_pages.php:320 +#: libraries/messages.inc.php:847 pdf_pages.php:320 msgid "Select Tables" msgstr "Tabelas selecionadas" -#: libraries/messages.inc.php:853 server_status.php:404 +#: libraries/messages.inc.php:849 server_status.php:404 msgid "Sent" msgstr "Enviar" -#: libraries/messages.inc.php:857 libraries/select_server.lib.php:45 +#: libraries/messages.inc.php:853 libraries/select_server.lib.php:45 #: setup/frames/index.inc.php:97 setup/lib/messages.inc.php:115 msgid "Servers" msgstr "Servidores" -#: libraries/messages.inc.php:858 server_status.php:255 +#: libraries/messages.inc.php:854 server_status.php:255 msgid "Delayed inserts" msgstr "Inserções demoradas" -#: libraries/messages.inc.php:859 server_status.php:46 +#: libraries/messages.inc.php:855 server_status.php:46 msgid "Runtime Information" msgstr "Informações de Runtime" -#: libraries/messages.inc.php:860 server_status.php:350 +#: libraries/messages.inc.php:856 server_status.php:350 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Esse servidor MySQL está rodando por %s. Ele foi iniciado em %s." -#: libraries/messages.inc.php:861 libraries/server_links.inc.php:53 +#: libraries/messages.inc.php:857 libraries/server_links.inc.php:53 #: server_engines.php:112 server_engines.php:116 server_status.php:304 #: test/theme.php:105 msgid "Variables" msgstr "Variáveis" -#: libraries/messages.inc.php:862 server_status.php:383 +#: libraries/messages.inc.php:858 server_status.php:383 msgid "" "Server traffic: These tables show the network traffic statistics of " "this MySQL server since its startup." @@ -5201,11 +5201,11 @@ msgstr "" "Tráfico do servidor: Essas tabelas mostram as estatísticas do tráfico " "da rede neste servidor MySQL desde o início." -#: libraries/messages.inc.php:863 server_variables.php:35 +#: libraries/messages.inc.php:859 server_variables.php:35 msgid "Server variables and settings" msgstr "Variáveis e configurações do servidor" -#: libraries/messages.inc.php:865 main.php:290 +#: libraries/messages.inc.php:861 main.php:290 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -5213,7 +5213,7 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: libraries/messages.inc.php:866 +#: libraries/messages.inc.php:862 msgid "" "Cannot start session without errors, please check errors given in your PHP " "and/or webserver log file and configure your PHP installation properly." @@ -5221,11 +5221,11 @@ msgstr "" "Não pôde iniciar a sessão sem erros, cheque os erros ocorridos nos logs do " "PHP e/ou do seu servidor web e configure a instalação do PHP corretamente." -#: libraries/messages.inc.php:867 server_variables.php:55 +#: libraries/messages.inc.php:863 server_variables.php:55 msgid "Session value" msgstr "Valor da sessão" -#: libraries/messages.inc.php:868 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:864 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 " @@ -5237,45 +5237,45 @@ msgstr "" "(\"\\\") ou aspas simples (\"'\") entre os valores, coloque uma barra " "contrária antes (por exemplo '\\\\xyz' ou 'a\\'b')." -#: libraries/messages.inc.php:876 server_binlog.php:192 server_binlog.php:195 +#: libraries/messages.inc.php:872 server_binlog.php:192 server_binlog.php:195 #: server_processlist.php:49 server_processlist.php:51 msgid "Show Full Queries" msgstr "Mostrar consultas completas" -#: libraries/messages.inc.php:878 pmd_general.php:64 +#: libraries/messages.inc.php:874 pmd_general.php:64 msgid "Show/Hide left menu" msgstr "Exibir/Ocultar menu da esquerda" -#: libraries/messages.inc.php:880 sql.php:513 +#: libraries/messages.inc.php:876 sql.php:513 msgid "Showing as PHP code" msgstr "Exibindo como código PHP" -#: libraries/messages.inc.php:882 sql.php:516 tbl_replace.php:360 +#: libraries/messages.inc.php:878 sql.php:516 tbl_replace.php:360 msgid "Showing SQL query" msgstr "Exibindo consulta SQL" -#: libraries/messages.inc.php:883 tbl_change.php:1132 +#: libraries/messages.inc.php:879 tbl_change.php:1132 #, fuzzy msgid "Show insert query" msgstr "Exibindo consulta SQL" -#: libraries/messages.inc.php:886 server_status.php:273 +#: libraries/messages.inc.php:882 server_status.php:273 msgid "Show open tables" msgstr "Exibir tabelas abertas" -#: libraries/messages.inc.php:887 main.php:219 +#: libraries/messages.inc.php:883 main.php:219 msgid "Show PHP information" msgstr "Mostrar informações do PHP" -#: libraries/messages.inc.php:889 server_status.php:278 +#: libraries/messages.inc.php:885 server_status.php:278 msgid "Show slave hosts" msgstr "Exibir servidores escravos" -#: libraries/messages.inc.php:890 server_status.php:284 +#: libraries/messages.inc.php:886 server_status.php:284 msgid "Show slave status" msgstr "Exibir status dos escravos" -#: libraries/messages.inc.php:891 +#: libraries/messages.inc.php:887 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -5285,11 +5285,11 @@ msgstr "" "excederam o valor do binlog_cache_size e usaram o arquivo temporário para " "armazenar enunciados da transação." -#: libraries/messages.inc.php:892 +#: libraries/messages.inc.php:888 msgid "The number of transactions that used the temporary binary log cache." msgstr "O número de transações que usaram o cache do log binário temporário." -#: libraries/messages.inc.php:893 +#: libraries/messages.inc.php:889 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -5301,11 +5301,11 @@ msgstr "" "grande, você pode aumentar o valor de tmp_table_size para fazer as tabelas " "temporárias serem baseadas na memória ou invés de baseadas no disco" -#: libraries/messages.inc.php:894 +#: libraries/messages.inc.php:890 msgid "How many temporary files mysqld has created." msgstr "Quantos arquivos temporários o MySQL tinha criado." -#: libraries/messages.inc.php:895 +#: libraries/messages.inc.php:891 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -5313,7 +5313,7 @@ msgstr "" "O número de tabelas temporárias na memória criadas automaticamente pelo " "servidor enquanto executava os enunciados." -#: libraries/messages.inc.php:896 +#: libraries/messages.inc.php:892 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -5321,7 +5321,7 @@ msgstr "" "O número de linhas escritas com INSERT DELAYED para cada erro ocorrido " "(provavelmente chave duplicada)." -#: libraries/messages.inc.php:897 +#: libraries/messages.inc.php:893 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -5329,23 +5329,23 @@ msgstr "" "O número de processos manipuladores de INSERT DELAYED em uso. Cada tabela " "diferente em que se usa INSERT DELAYED começa seu próprio processo." -#: libraries/messages.inc.php:898 +#: libraries/messages.inc.php:894 msgid "The number of INSERT DELAYED rows written." msgstr "O número de linhas INSERT DELAYED escritas." -#: libraries/messages.inc.php:899 +#: libraries/messages.inc.php:895 msgid "The number of executed FLUSH statements." msgstr "O número de enunciados FLUSH executados." -#: libraries/messages.inc.php:900 +#: libraries/messages.inc.php:896 msgid "The number of internal COMMIT statements." msgstr "O número de enunciados COMMIT internos." -#: libraries/messages.inc.php:901 +#: libraries/messages.inc.php:897 msgid "The number of times a row was deleted from a table." msgstr "O número de vezes que uma linha foi deletada de uma tabela." -#: libraries/messages.inc.php:902 +#: libraries/messages.inc.php:898 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -5355,7 +5355,7 @@ msgstr "" "ele sabe sobre uma tabela com um nome dado. Isto é chamado descoberta. " "Handler_discover indica o número de vezes que tabelas foram descobertas." -#: libraries/messages.inc.php:903 +#: libraries/messages.inc.php:899 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -5365,7 +5365,7 @@ msgstr "" "alto, sugere que o usuário está fazendo muitas varreduras completas do " "índice; por exemplo, SELECT col1 FROM foo, supondo que col1 é um índice." -#: libraries/messages.inc.php:904 +#: libraries/messages.inc.php:900 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -5374,7 +5374,7 @@ msgstr "" "alto, é uma boa indicação de que suas consultas e tabelas estejam " "corretamente indexadas." -#: libraries/messages.inc.php:905 +#: libraries/messages.inc.php:901 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -5384,7 +5384,7 @@ msgstr "" "incrementado se você estiver consultando uma coluna do índice com uma " "restrição da escala ou se você estiver fazendo uma varredura do índice." -#: libraries/messages.inc.php:906 +#: libraries/messages.inc.php:902 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -5392,7 +5392,7 @@ msgstr "" "O número de requisições para ler a linha precedente na ordem da chave. Este " "método de leitura é usado principalmente para otimizar ORDER B" -#: libraries/messages.inc.php:907 +#: libraries/messages.inc.php:903 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -5405,7 +5405,7 @@ msgstr "" "faça a varredura de tabelas inteiras ou você tem junções que não usam as " "chaves corretamente." -#: libraries/messages.inc.php:908 +#: libraries/messages.inc.php:904 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -5417,37 +5417,37 @@ msgstr "" "sugere que suas tabelas não estão corretamente indexadas ou que suas " "consultas não estão escritas para tomar vantagem dos índices que você têm." -#: libraries/messages.inc.php:909 +#: libraries/messages.inc.php:905 msgid "The number of internal ROLLBACK statements." msgstr "O número de enunciados ROLLBACK internos." -#: libraries/messages.inc.php:910 +#: libraries/messages.inc.php:906 msgid "The number of requests to update a row in a table." msgstr "O número de requisições para atualizar uma linha na tabela." -#: libraries/messages.inc.php:911 +#: libraries/messages.inc.php:907 msgid "The number of requests to insert a row in a table." msgstr "O número de requisições para inserir uma linha na tabela." -#: libraries/messages.inc.php:912 +#: libraries/messages.inc.php:908 msgid "The number of pages containing data (dirty or clean)." msgstr "O número de páginas que contém dados (sujos ou limpos)." -#: libraries/messages.inc.php:913 +#: libraries/messages.inc.php:909 msgid "The number of pages currently dirty." msgstr "O número de páginas atualmente sujas." -#: libraries/messages.inc.php:914 +#: libraries/messages.inc.php:910 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" "O número de páginas do buffer pool que foram requisitadas para serem " "niveladas." -#: libraries/messages.inc.php:915 +#: libraries/messages.inc.php:911 msgid "The number of free pages." msgstr "O número de páginas livres." -#: libraries/messages.inc.php:916 +#: libraries/messages.inc.php:912 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -5457,7 +5457,7 @@ msgstr "" "que estão sendo lidas ou escritas atualmente ou aquela não pode ser nivelada " "ou removido por alguma outra razão." -#: libraries/messages.inc.php:917 +#: libraries/messages.inc.php:913 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -5469,11 +5469,11 @@ msgstr "" "Este valor pode também ser calculado como Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: libraries/messages.inc.php:918 +#: libraries/messages.inc.php:914 msgid "Total size of buffer pool, in pages." msgstr "Tamanho total do buffer pool, em páginas." -#: libraries/messages.inc.php:919 +#: libraries/messages.inc.php:915 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -5482,7 +5482,7 @@ msgstr "" "uma consulta faz a varredura de uma parcela grande de uma tabela mas na " "ordem aleatória." -#: libraries/messages.inc.php:920 +#: libraries/messages.inc.php:916 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -5490,11 +5490,11 @@ msgstr "" "O número de ler-adiante sequenciais InnoDB iniciado. Isto acontece quando o " "InnoDB faz uma varredura sequencial completa da tabela." -#: libraries/messages.inc.php:921 +#: libraries/messages.inc.php:917 msgid "The number of logical read requests InnoDB has done." msgstr "O número de requisições de leitura lógica InnoDB que foram feitas." -#: libraries/messages.inc.php:922 +#: libraries/messages.inc.php:918 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -5502,7 +5502,7 @@ msgstr "" "O número de leituras lógicas que o InnoDB não pode satisfer do buffer pool e " "teria que fazer uma leitura de página simples" -#: libraries/messages.inc.php:923 +#: libraries/messages.inc.php:919 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -5516,55 +5516,55 @@ msgstr "" "primeiramente. Este contador conta instâncias dessas esperas. Se o tamanho " "do buffer pool for ajustado corretamente, este valor deve ser pequeno." -#: libraries/messages.inc.php:924 +#: libraries/messages.inc.php:920 msgid "The number writes done to the InnoDB buffer pool." msgstr "O número de escritas feitas para o buffer pool do InnoDB." -#: libraries/messages.inc.php:925 +#: libraries/messages.inc.php:921 msgid "The number of fsync() operations so far." msgstr "O número de operações fsync() à fazer." -#: libraries/messages.inc.php:926 +#: libraries/messages.inc.php:922 msgid "The current number of pending fsync() operations." msgstr "O número atual de operações fsync() pendentes." -#: libraries/messages.inc.php:927 +#: libraries/messages.inc.php:923 msgid "The current number of pending reads." msgstr "O número atual de leituras pendentes." -#: libraries/messages.inc.php:928 +#: libraries/messages.inc.php:924 msgid "The current number of pending writes." msgstr "O número atual de escritas pendentes." -#: libraries/messages.inc.php:929 +#: libraries/messages.inc.php:925 msgid "The amount of data read so far, in bytes." msgstr "O montante de leitura de dados à fazer, em bytes." -#: libraries/messages.inc.php:930 +#: libraries/messages.inc.php:926 msgid "The total number of data reads." msgstr "O número total de dados lidos." -#: libraries/messages.inc.php:931 +#: libraries/messages.inc.php:927 msgid "The total number of data writes." msgstr "O número total de dados escritos." -#: libraries/messages.inc.php:932 +#: libraries/messages.inc.php:928 msgid "The amount of data written so far, in bytes." msgstr "O montante de escrita de dados à fazer, em bytes." -#: libraries/messages.inc.php:933 +#: libraries/messages.inc.php:929 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "O número de escritas doublewrite que foram executadas e o número de páginas " "que foram escritas para esta finalidade." -#: libraries/messages.inc.php:934 +#: libraries/messages.inc.php:930 msgid "The number of doublewrite operations that have been performed." msgstr "" "O número de escritas doublewrite que foram executadas e o número de páginas " "que foram escritas para esta finalidade." -#: libraries/messages.inc.php:935 +#: libraries/messages.inc.php:931 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -5572,35 +5572,35 @@ msgstr "" "O número de esperas geradas porque o buffer do log era muito pequeno e teve " "que esperar que fosse nivelada antes de continuar." -#: libraries/messages.inc.php:936 +#: libraries/messages.inc.php:932 msgid "The number of log write requests." msgstr "O número de requisições de escrita de log." -#: libraries/messages.inc.php:937 +#: libraries/messages.inc.php:933 msgid "The number of physical writes to the log file." msgstr "O número de escritas físicas para o arquivo de log." -#: libraries/messages.inc.php:938 +#: libraries/messages.inc.php:934 msgid "The number of fsync() writes done to the log file." msgstr "O número de escritas fsyncs feitas no arquivo de log." -#: libraries/messages.inc.php:939 +#: libraries/messages.inc.php:935 msgid "The number of pending log file fsyncs." msgstr "O número de arquivos de log fsyncs pendentes." -#: libraries/messages.inc.php:940 +#: libraries/messages.inc.php:936 msgid "Pending log file writes." msgstr "Escrita de arquivos de log pendentes." -#: libraries/messages.inc.php:941 +#: libraries/messages.inc.php:937 msgid "The number of bytes written to the log file." msgstr "O número de bytes escritos para o arquivo de log." -#: libraries/messages.inc.php:942 +#: libraries/messages.inc.php:938 msgid "The number of pages created." msgstr "O número de páginas criadas." -#: libraries/messages.inc.php:943 +#: libraries/messages.inc.php:939 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -5609,52 +5609,52 @@ msgstr "" "contados em páginas; o tamanho de página permite que sejam facilmente " "convertidos em bytes." -#: libraries/messages.inc.php:944 +#: libraries/messages.inc.php:940 msgid "The number of pages read." msgstr "O número de páginas lidas." -#: libraries/messages.inc.php:945 +#: libraries/messages.inc.php:941 msgid "The number of pages written." msgstr "O número de páginas escritas." -#: libraries/messages.inc.php:946 +#: libraries/messages.inc.php:942 msgid "The number of row locks currently being waited for." msgstr "O número de linhas trancadas que estão esperando atualmente." -#: libraries/messages.inc.php:947 +#: libraries/messages.inc.php:943 msgid "The average time to acquire a row lock, in milliseconds." msgstr "O tempo médio para recuperar uma linha trancada, em milísegundo." -#: libraries/messages.inc.php:948 +#: libraries/messages.inc.php:944 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "O tempo total gasto para recuperar linhas trancadas, em milísegundo." -#: libraries/messages.inc.php:949 +#: libraries/messages.inc.php:945 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "O máximo de tempo para recuperar uma linha trancada, em milísegundo." -#: libraries/messages.inc.php:950 +#: libraries/messages.inc.php:946 msgid "The number of times a row lock had to be waited for." msgstr "" "O número de vezes que uma linhas trancada teve que esperar para ser escrita." -#: libraries/messages.inc.php:951 +#: libraries/messages.inc.php:947 msgid "The number of rows deleted from InnoDB tables." msgstr "O número de linhas deletadas de tabelas InnoDB." -#: libraries/messages.inc.php:952 +#: libraries/messages.inc.php:948 msgid "The number of rows inserted in InnoDB tables." msgstr "O número de linhas inseridas em tabelas InnoDB." -#: libraries/messages.inc.php:953 +#: libraries/messages.inc.php:949 msgid "The number of rows read from InnoDB tables." msgstr "O número de linhas lidas de tabelas InnoDB." -#: libraries/messages.inc.php:954 +#: libraries/messages.inc.php:950 msgid "The number of rows updated in InnoDB tables." msgstr "O número de linhas atualizadas em tabelas InnoDB." -#: libraries/messages.inc.php:955 +#: libraries/messages.inc.php:951 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -5662,7 +5662,7 @@ msgstr "" "O número de blocos chave no cache chave que mudaram mas não foram nivelados " "ainda ao disco. Antes era chamado de Not_flushed_key_blocks." -#: libraries/messages.inc.php:956 +#: libraries/messages.inc.php:952 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -5670,7 +5670,7 @@ msgstr "" "O número de blocos não usados no cache chave. Você pode usar este valor para " "determinar quanto do cache chave está no uso." -#: libraries/messages.inc.php:957 +#: libraries/messages.inc.php:953 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -5680,11 +5680,11 @@ msgstr "" "indica o número máximo de blocos que estiveram sempre em uso em algum " "momento." -#: libraries/messages.inc.php:958 +#: libraries/messages.inc.php:954 msgid "The number of requests to read a key block from the cache." msgstr "O número de requisições para ler um bloco chave do cache." -#: libraries/messages.inc.php:959 +#: libraries/messages.inc.php:955 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -5694,15 +5694,15 @@ msgstr "" "alto, então seu valor do key_buffer_size é provavelmente muito baixo. A taxa " "de falta de cache pode ser calculada como Key_reads/Key_read_requests." -#: libraries/messages.inc.php:960 +#: libraries/messages.inc.php:956 msgid "The number of requests to write a key block to the cache." msgstr "O número de requisições para escrever um bloco chave para o cache." -#: libraries/messages.inc.php:961 +#: libraries/messages.inc.php:957 msgid "The number of physical writes of a key block to disk." msgstr "O número de escritas físicas para um bloco chave para o disco." -#: libraries/messages.inc.php:962 +#: libraries/messages.inc.php:958 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -5713,12 +5713,12 @@ msgstr "" "a mesma consulta. O valor padrão 0 significa que nenhuma consulta foi " "compilada ainda." -#: libraries/messages.inc.php:963 +#: libraries/messages.inc.php:959 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" "O número de linhas esperando para serem escritas na fila de INSERT DELAYED." -#: libraries/messages.inc.php:964 +#: libraries/messages.inc.php:960 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -5726,36 +5726,36 @@ msgstr "" "O número de tabelas que devem estar abertas. Se aberta, as tabelas são " "grandes, o valor do cache de suas tabelas é provavelmente muito pequeno." -#: libraries/messages.inc.php:965 +#: libraries/messages.inc.php:961 msgid "The number of files that are open." msgstr "O número de arquivos que estão abertos." -#: libraries/messages.inc.php:966 +#: libraries/messages.inc.php:962 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "O número de streams que estão abertos (usados principalmente para log)." -#: libraries/messages.inc.php:967 +#: libraries/messages.inc.php:963 msgid "The number of tables that are open." msgstr "O número de tabelas que estão abertas." -#: libraries/messages.inc.php:968 +#: libraries/messages.inc.php:964 msgid "The number of free memory blocks in query cache." msgstr "O número de blocos de memória livre na consulta do cache." -#: libraries/messages.inc.php:969 +#: libraries/messages.inc.php:965 msgid "The amount of free memory for query cache." msgstr "O montante de memória livre para a consulta do cache." -#: libraries/messages.inc.php:970 +#: libraries/messages.inc.php:966 msgid "The number of cache hits." msgstr "O número de hits do cache." -#: libraries/messages.inc.php:971 +#: libraries/messages.inc.php:967 msgid "The number of queries added to the cache." msgstr "O número de consultas adicionadas no cache." -#: libraries/messages.inc.php:972 +#: libraries/messages.inc.php:968 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -5768,7 +5768,7 @@ msgstr "" "recentemente\" (LRU - least recently used) para decidir qual consulta " "remover do cache." -#: libraries/messages.inc.php:973 +#: libraries/messages.inc.php:969 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -5776,24 +5776,24 @@ msgstr "" "O número de consultas sem cache (não cacheável, ou não pode ser cacheável " "devido à configuração em query_cache_type)." -#: libraries/messages.inc.php:974 +#: libraries/messages.inc.php:970 msgid "The number of queries registered in the cache." msgstr "O número de consultas registradas no cache." -#: libraries/messages.inc.php:975 +#: libraries/messages.inc.php:971 msgid "The total number of blocks in the query cache." msgstr "O número total de blocos na consulta do cache." -#: libraries/messages.inc.php:976 +#: libraries/messages.inc.php:972 msgctxt "$strShowStatusReset" msgid "Reset" msgstr "Resetar" -#: libraries/messages.inc.php:977 +#: libraries/messages.inc.php:973 msgid "The status of failsafe replication (not yet implemented)." msgstr "O status da replicação à prova de falhas (não implementado)." -#: libraries/messages.inc.php:978 +#: libraries/messages.inc.php:974 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -5801,13 +5801,13 @@ msgstr "" "O número de junções que não usaram índices. Se este valor não for 0, você " "deve cuidadosamente verificar os índices de suas tabelas." -#: libraries/messages.inc.php:979 +#: libraries/messages.inc.php:975 msgid "The number of joins that used a range search on a reference table." msgstr "" "O número de junções que usaram uma pesquisa de escala na tabela de " "referência." -#: libraries/messages.inc.php:980 +#: libraries/messages.inc.php:976 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -5816,7 +5816,7 @@ msgstr "" "após cada linha. (Se este não for 0, você deve cuidadosamente verificar os " "índices de suas tabelas.)" -#: libraries/messages.inc.php:981 +#: libraries/messages.inc.php:977 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -5824,16 +5824,16 @@ msgstr "" "O número de junções que usaram escalas na primeira tabela. (Não é " "normalmente crítico mesmo se este for grande.)" -#: libraries/messages.inc.php:982 +#: libraries/messages.inc.php:978 msgid "The number of joins that did a full scan of the first table." msgstr "O número junções que fez uma varredura completa da primeira tabela." -#: libraries/messages.inc.php:983 +#: libraries/messages.inc.php:979 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "O número de tabelas temporárias abertas atualmente pelo processo SQL escravo." -#: libraries/messages.inc.php:984 +#: libraries/messages.inc.php:980 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -5841,11 +5841,11 @@ msgstr "" "Número total (desde o início) de vezes que o processo SQL escravo de " "replicação teve que tentar transações." -#: libraries/messages.inc.php:985 +#: libraries/messages.inc.php:981 msgid "This is ON if this server is a slave that is connected to a master." msgstr "Isto é ON se este servidor é um escravo conectado à um mestre." -#: libraries/messages.inc.php:986 +#: libraries/messages.inc.php:982 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -5853,12 +5853,12 @@ msgstr "" "O número de processos que levaram mais que slow_launch_time segundos para " "serem criadas." -#: libraries/messages.inc.php:987 +#: libraries/messages.inc.php:983 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "O número de consultas que levaram mais que long_query_time segundos." -#: libraries/messages.inc.php:988 +#: libraries/messages.inc.php:984 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -5868,24 +5868,24 @@ msgstr "" "valor for alto, você deve considerar aumentar o valor da variável " "sort_buffer_size do sistema." -#: libraries/messages.inc.php:989 +#: libraries/messages.inc.php:985 msgid "The number of sorts that were done with ranges." msgstr "O número de ordenações que foram feitas com escalas." -#: libraries/messages.inc.php:990 +#: libraries/messages.inc.php:986 msgid "The number of sorted rows." msgstr "O número de linhas ordenadas." -#: libraries/messages.inc.php:991 +#: libraries/messages.inc.php:987 msgid "The number of sorts that were done by scanning the table." msgstr "O número de ordenações que foram feitas scaneando a tabela." -#: libraries/messages.inc.php:992 +#: libraries/messages.inc.php:988 msgid "The number of times that a table lock was acquired immediately." msgstr "" "O número de vezes que uma tabela trancada foi recuperada imediatamente." -#: libraries/messages.inc.php:993 +#: libraries/messages.inc.php:989 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -5897,7 +5897,7 @@ msgstr "" "performance, você precisa primeiramente otimizar suas consultas e então, ou " "dividir sua tabela ou usar replicação." -#: libraries/messages.inc.php:994 +#: libraries/messages.inc.php:990 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -5907,11 +5907,11 @@ msgstr "" "ser calculada como Threads_created/conexões. Se este valor for vermelho você " "deve aumentar seu thread_cache_size" -#: libraries/messages.inc.php:995 +#: libraries/messages.inc.php:991 msgid "The number of currently open connections." msgstr "O número de conexões atualmente abertas." -#: libraries/messages.inc.php:996 +#: libraries/messages.inc.php:992 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -5923,74 +5923,74 @@ msgstr "" "isso não da um aumento notável de performance se você tem uma boa " "implementação de processos.)" -#: libraries/messages.inc.php:997 +#: libraries/messages.inc.php:993 msgid "The number of threads that are not sleeping." msgstr "O número de processos que não estão dormindo." -#: libraries/messages.inc.php:999 tbl_printview.php:75 +#: libraries/messages.inc.php:995 tbl_printview.php:75 msgid "Show tables" msgstr "Mostrar tabelas" -#: libraries/messages.inc.php:1000 libraries/sql_query_form.lib.php:396 +#: libraries/messages.inc.php:996 libraries/sql_query_form.lib.php:396 msgid " Show this query here again " msgstr " Mostrar esta consulta SQL novamente " -#: libraries/messages.inc.php:1001 libraries/mysql_charsets.lib.php:217 +#: libraries/messages.inc.php:997 libraries/mysql_charsets.lib.php:217 #: libraries/mysql_charsets.lib.php:342 msgid "Simplified Chinese" msgstr "Chinês Simplificado" -#: libraries/messages.inc.php:1002 tbl_operations.php:258 +#: libraries/messages.inc.php:998 tbl_operations.php:258 msgid "(singly)" msgstr "(singularmente)" -#: libraries/messages.inc.php:1005 libraries/replication_gui.lib.php:52 +#: libraries/messages.inc.php:1001 libraries/replication_gui.lib.php:52 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" msgstr "" -#: libraries/messages.inc.php:1006 libraries/mysql_charsets.lib.php:283 +#: libraries/messages.inc.php:1002 libraries/mysql_charsets.lib.php:283 msgid "Slovak" msgstr "Eslováquio" -#: libraries/messages.inc.php:1007 libraries/mysql_charsets.lib.php:286 +#: libraries/messages.inc.php:1003 libraries/mysql_charsets.lib.php:286 msgid "Slovenian" msgstr "Eslovênio" -#: libraries/messages.inc.php:1008 pmd_general.php:95 +#: libraries/messages.inc.php:1004 pmd_general.php:95 msgid "Small/Big All" msgstr "Tudo Pequeno/Grande" -#: libraries/messages.inc.php:1009 pmd_general.php:91 +#: libraries/messages.inc.php:1005 pmd_general.php:91 msgid "Snap to grid" msgstr "Ajustar à grade" -#: libraries/messages.inc.php:1011 server_synchronize.php:1167 +#: libraries/messages.inc.php:1007 server_synchronize.php:1167 msgid "Socket" msgstr "" -#: libraries/messages.inc.php:1013 server_status.php:259 +#: libraries/messages.inc.php:1009 server_status.php:259 msgid "Sorting" msgstr "Ordenando" -#: libraries/messages.inc.php:1015 tbl_printview.php:310 tbl_structure.php:657 +#: libraries/messages.inc.php:1011 tbl_printview.php:310 tbl_structure.php:657 msgid "Space usage" msgstr "Uso do espaço" -#: libraries/messages.inc.php:1016 libraries/mysql_charsets.lib.php:289 +#: libraries/messages.inc.php:1012 libraries/mysql_charsets.lib.php:289 msgid "Spanish" msgstr "Espanhol" -#: libraries/messages.inc.php:1019 +#: libraries/messages.inc.php:1015 msgid "Export type" msgstr "Tipo de exportação" -#: libraries/messages.inc.php:1020 +#: libraries/messages.inc.php:1016 msgid "Export time in UTC" msgstr "" -#: libraries/messages.inc.php:1021 libraries/sqlparser.lib.php:173 +#: libraries/messages.inc.php:1017 libraries/sqlparser.lib.php:173 msgid "" "There is a chance that you may have found a bug in the SQL parser. Please " "examine your query closely, and check that the quotes are correct and not " @@ -6013,7 +6013,7 @@ msgstr "" "entrada da consulta SQL até aquele que causou o problema, e envie o " "relatório de bug com os dados do chunk da seção CORTE abaixo:" -#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:137 +#: libraries/messages.inc.php:1018 libraries/sqlparser.lib.php:137 msgid "" "There seems to be an error in your SQL query. The MySQL server error output " "below, if there is any, may also help you in diagnosing the problem" @@ -6021,33 +6021,33 @@ msgstr "" "Parece haver um erro na sua consulta SQL. A saída do servidor MySQL abaixo, " "isto se existir alguma, também poderá ajudar a diagnosticar o problema." -#: libraries/messages.inc.php:1026 libraries/sqlparser.lib.php:495 +#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:495 msgid "Invalid Identifer" msgstr "Identificador inválido" -#: libraries/messages.inc.php:1027 libraries/sqlparser.lib.php:344 +#: libraries/messages.inc.php:1023 libraries/sqlparser.lib.php:344 msgid "Unclosed quote" msgstr "Aspas não fechada" -#: libraries/messages.inc.php:1028 libraries/sqlparser.lib.php:612 +#: libraries/messages.inc.php:1024 libraries/sqlparser.lib.php:612 msgid "Unknown Punctuation String" msgstr "String de pontuação desconhecida" -#: libraries/messages.inc.php:1030 server_replication.php:327 +#: libraries/messages.inc.php:1026 server_replication.php:327 #: server_replication.php:328 #, fuzzy msgid "Start" msgstr "Sab" -#: libraries/messages.inc.php:1033 tbl_printview.php:369 tbl_structure.php:729 +#: libraries/messages.inc.php:1029 tbl_printview.php:369 tbl_structure.php:729 msgid "Statements" msgstr "Comandos" -#: libraries/messages.inc.php:1034 tbl_printview.php:380 tbl_structure.php:741 +#: libraries/messages.inc.php:1030 tbl_printview.php:380 tbl_structure.php:741 msgid "static" msgstr "" -#: libraries/messages.inc.php:1035 server_status.php:388 +#: libraries/messages.inc.php:1031 server_status.php:388 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -6055,43 +6055,43 @@ msgstr "" "Em servidores ocupados, os contadores de byte podem sobrecarregar, então as " "estatísticas como relatadas pelo servidor MySQL podem estar incorretas." -#: libraries/messages.inc.php:1038 server_replication.php:327 +#: libraries/messages.inc.php:1034 server_replication.php:327 #: server_replication.php:328 msgid "Stop" msgstr "" -#: libraries/messages.inc.php:1039 server_engines.php:49 +#: libraries/messages.inc.php:1035 server_engines.php:49 msgid "Storage Engines" msgstr "Storage Engines" -#: libraries/messages.inc.php:1040 libraries/tbl_properties.inc.php:726 +#: libraries/messages.inc.php:1036 libraries/tbl_properties.inc.php:726 #: server_engines.php:58 tbl_operations.php:353 msgid "Storage Engine" msgstr "Storage Engine" -#: libraries/messages.inc.php:1042 +#: libraries/messages.inc.php:1038 msgid "CSV for MS Excel" msgstr "CSV para dados MS Excel" -#: libraries/messages.inc.php:1044 tbl_structure.php:516 tbl_structure.php:518 +#: libraries/messages.inc.php:1040 tbl_structure.php:516 tbl_structure.php:518 msgid "Propose table structure" msgstr "Propor estrutura da tabela" -#: libraries/messages.inc.php:1045 server_synchronize.php:424 +#: libraries/messages.inc.php:1041 server_synchronize.php:424 #: server_synchronize.php:867 #, fuzzy msgid "Structure Difference" msgstr "Estrutura para visualizar" -#: libraries/messages.inc.php:1049 server_synchronize.php:265 +#: libraries/messages.inc.php:1045 server_synchronize.php:265 msgid "Structure Synchronization" msgstr "" -#: libraries/messages.inc.php:1050 libraries/sql_query_form.lib.php:462 +#: libraries/messages.inc.php:1046 libraries/sql_query_form.lib.php:462 msgid "Submit" msgstr "Submeter" -#: libraries/messages.inc.php:1052 main.php:358 +#: libraries/messages.inc.php:1048 main.php:358 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -6100,160 +6100,160 @@ msgstr "" "Servidor rodando com 'Suhosin'. Verifique a %sdocumentation%s para possíveis " "razões do erro." -#: libraries/messages.inc.php:1054 libraries/mysql_charsets.lib.php:295 +#: libraries/messages.inc.php:1050 libraries/mysql_charsets.lib.php:295 #: libraries/mysql_charsets.lib.php:392 msgid "Swedish" msgstr "Suéco" -#: libraries/messages.inc.php:1060 tbl_operations.php:556 +#: libraries/messages.inc.php:1056 tbl_operations.php:556 msgid "Switch to copied table" msgstr "Mudar para a tabela copiada" -#: libraries/messages.inc.php:1061 server_synchronize.php:1213 +#: libraries/messages.inc.php:1057 server_synchronize.php:1213 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." msgstr "" -#: libraries/messages.inc.php:1062 server_synchronize.php:451 +#: libraries/messages.inc.php:1058 server_synchronize.php:451 #: server_synchronize.php:896 msgid "Synchronize Databases" msgstr "" -#: libraries/messages.inc.php:1063 libraries/server_links.inc.php:92 +#: libraries/messages.inc.php:1059 libraries/server_links.inc.php:92 #: server_synchronize.php:1092 server_synchronize.php:1100 msgid "Synchronize" msgstr "" -#: libraries/messages.inc.php:1065 server_synchronize.php:430 +#: libraries/messages.inc.php:1061 server_synchronize.php:430 #: server_synchronize.php:873 msgid "Add column(s)" msgstr "" -#: libraries/messages.inc.php:1066 tbl_create.php:62 +#: libraries/messages.inc.php:1062 tbl_create.php:62 #, php-format msgid "Table %s already exists!" msgstr "Tabela %s já existe!" -#: libraries/messages.inc.php:1067 server_synchronize.php:432 +#: libraries/messages.inc.php:1063 server_synchronize.php:432 #: server_synchronize.php:875 msgid "Alter column(s)" msgstr "" -#: libraries/messages.inc.php:1068 tbl_addfield.php:189 tbl_alter.php:103 +#: libraries/messages.inc.php:1064 tbl_addfield.php:189 tbl_alter.php:103 #: tbl_indexes.php:98 #, php-format msgid "Table %1$s has been altered successfully" msgstr "A tabela %1$s foi alterada com sucesso" -#: libraries/messages.inc.php:1069 server_synchronize.php:434 +#: libraries/messages.inc.php:1065 server_synchronize.php:434 #: server_synchronize.php:877 msgid "Apply index(s)" msgstr "" -#: libraries/messages.inc.php:1071 server_synchronize.php:446 +#: libraries/messages.inc.php:1067 server_synchronize.php:446 #: server_synchronize.php:890 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: libraries/messages.inc.php:1072 tbl_move_copy.php:82 +#: libraries/messages.inc.php:1068 tbl_move_copy.php:82 msgid "The table name is empty!" msgstr "O Nome da Tabela está vazio!" -#: libraries/messages.inc.php:1073 tbl_create.php:249 +#: libraries/messages.inc.php:1069 tbl_create.php:249 #, php-format msgid "Table %1$s has been created." msgstr "A tabela %1$s foi criada." -#: libraries/messages.inc.php:1076 tbl_operations.php:628 +#: libraries/messages.inc.php:1072 tbl_operations.php:628 #, php-format msgid "Table %s has been flushed" msgstr "Tabela %s foi limpa" -#: libraries/messages.inc.php:1077 server_synchronize.php:436 +#: libraries/messages.inc.php:1073 server_synchronize.php:436 #: server_synchronize.php:879 msgid "Insert row(s)" msgstr "" -#: libraries/messages.inc.php:1078 libraries/tbl_links.inc.php:107 +#: libraries/messages.inc.php:1074 libraries/tbl_links.inc.php:107 #: libraries/tbl_links.inc.php:140 libraries/tbl_links.inc.php:141 msgid "Table seems to be empty!" msgstr "Tabela para estar vazia!" -#: libraries/messages.inc.php:1079 tbl_operations.php:568 +#: libraries/messages.inc.php:1075 tbl_operations.php:568 msgid "Table maintenance" msgstr "Tabela de Manutenção" -#: libraries/messages.inc.php:1080 libraries/tbl_properties.inc.php:618 +#: libraries/messages.inc.php:1076 libraries/tbl_properties.inc.php:618 #: server_synchronize.php:428 server_synchronize.php:871 msgid "Table name" msgstr "Nome da Tabela" -#: libraries/messages.inc.php:1081 pdf_schema.php:1116 +#: libraries/messages.inc.php:1077 pdf_schema.php:1116 msgid "Table of contents" msgstr "Tabela de conteúdos" -#: libraries/messages.inc.php:1082 tbl_operations.php:334 +#: libraries/messages.inc.php:1078 tbl_operations.php:334 msgid "Table options" msgstr "Opções da tabela" -#: libraries/messages.inc.php:1083 server_synchronize.php:431 +#: libraries/messages.inc.php:1079 server_synchronize.php:431 #: server_synchronize.php:874 msgid "Remove column(s)" msgstr "" -#: libraries/messages.inc.php:1084 server_synchronize.php:433 +#: libraries/messages.inc.php:1080 server_synchronize.php:433 #: server_synchronize.php:876 msgid "Remove index(s)" msgstr "" -#: libraries/messages.inc.php:1088 server_synchronize.php:435 +#: libraries/messages.inc.php:1084 server_synchronize.php:435 #: server_synchronize.php:878 msgid "Update row(s)" msgstr "" -#: libraries/messages.inc.php:1090 server_synchronize.php:942 +#: libraries/messages.inc.php:1086 server_synchronize.php:942 msgid "Target database has been synchronized with source database" msgstr "" -#: libraries/messages.inc.php:1091 server_privileges.php:392 +#: libraries/messages.inc.php:1087 server_privileges.php:392 #: server_privileges.php:527 server_privileges.php:1679 #: server_privileges.php:1685 msgid "Table-specific privileges" msgstr "Privilégios específicos da tabela" -#: libraries/messages.inc.php:1092 server_status.php:254 +#: libraries/messages.inc.php:1088 server_status.php:254 msgid "Temporary data" msgstr "Dados temporários" -#: libraries/messages.inc.php:1093 tbl_change.php:728 +#: libraries/messages.inc.php:1089 tbl_change.php:728 msgid " Because of its length,
this field might not be editable " msgstr " Por causa da sua largura,
esse campo pode não ser editável " -#: libraries/messages.inc.php:1094 +#: libraries/messages.inc.php:1090 msgid "Texy! text" msgstr "Texy! texto" -#: libraries/messages.inc.php:1095 libraries/mysql_charsets.lib.php:298 +#: libraries/messages.inc.php:1091 libraries/mysql_charsets.lib.php:298 #: libraries/mysql_charsets.lib.php:395 msgid "Thai" msgstr "Thailandês" -#: libraries/messages.inc.php:1102 libraries/replication_gui.lib.php:308 +#: libraries/messages.inc.php:1098 libraries/replication_gui.lib.php:308 #: server_privileges.php:734 msgid "This Host" msgstr "Esse Servidor" -#: libraries/messages.inc.php:1103 server_status.php:252 +#: libraries/messages.inc.php:1099 server_status.php:252 msgid "Threads" msgstr "Processos" -#: libraries/messages.inc.php:1104 server_processlist.php:22 +#: libraries/messages.inc.php:1100 server_processlist.php:22 #, php-format msgid "Thread %s was successfully killed." msgstr "Processo %s foi morto com sucesso." -#: libraries/messages.inc.php:1106 +#: libraries/messages.inc.php:1102 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -6262,185 +6262,185 @@ msgstr "" "que o phpMyAdmin não é capaz de finalizar essa importação à menos que você " "aumente o tempo limite do PHP." -#: libraries/messages.inc.php:1109 pmd_pdf.php:94 +#: libraries/messages.inc.php:1105 pmd_pdf.php:94 msgid "to/from page" msgstr "página de/para" -#: libraries/messages.inc.php:1110 pdf_pages.php:343 +#: libraries/messages.inc.php:1106 pdf_pages.php:343 msgid "Toggle scratchboard" msgstr "mudar o estado do Scratchboard" -#: libraries/messages.inc.php:1111 pmd_general.php:99 +#: libraries/messages.inc.php:1107 pmd_general.php:99 msgid "Toggle small/big" msgstr "Mudar para pequeno/grande" -#: libraries/messages.inc.php:1112 pmd_help.php:27 +#: libraries/messages.inc.php:1108 pmd_help.php:27 msgid "To select relation, click :" msgstr "Para selecionar relacionamento, clique :" -#: libraries/messages.inc.php:1115 libraries/tbl_links.inc.php:149 +#: libraries/messages.inc.php:1111 libraries/tbl_links.inc.php:149 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" -#: libraries/messages.inc.php:1116 tbl_tracking.php:655 +#: libraries/messages.inc.php:1112 tbl_tracking.php:655 msgid "Activate now" msgstr "" -#: libraries/messages.inc.php:1117 tbl_tracking.php:653 +#: libraries/messages.inc.php:1113 tbl_tracking.php:653 #, php-format msgid "Activate tracking for %s.%s" msgstr "" -#: libraries/messages.inc.php:1118 tbl_tracking.php:221 +#: libraries/messages.inc.php:1114 tbl_tracking.php:221 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/messages.inc.php:1119 tbl_tracking.php:688 +#: libraries/messages.inc.php:1115 tbl_tracking.php:688 #, fuzzy msgid "Create version" msgstr "Criar relacionamento" -#: libraries/messages.inc.php:1120 tbl_tracking.php:668 +#: libraries/messages.inc.php:1116 tbl_tracking.php:668 #, php-format msgid "Create version %s of %s.%s" msgstr "" -#: libraries/messages.inc.php:1122 tbl_tracking.php:412 +#: libraries/messages.inc.php:1118 tbl_tracking.php:412 msgid "Data definition statement" msgstr "" -#: libraries/messages.inc.php:1123 tbl_tracking.php:463 +#: libraries/messages.inc.php:1119 tbl_tracking.php:463 msgid "Data manipulation statement" msgstr "" -#: libraries/messages.inc.php:1124 tbl_tracking.php:410 tbl_tracking.php:461 +#: libraries/messages.inc.php:1120 tbl_tracking.php:410 tbl_tracking.php:461 #, fuzzy msgid "Date" msgstr "Dados" -#: libraries/messages.inc.php:1125 tbl_tracking.php:642 +#: libraries/messages.inc.php:1121 tbl_tracking.php:642 msgid "Deactivate now" msgstr "" -#: libraries/messages.inc.php:1126 tbl_tracking.php:640 +#: libraries/messages.inc.php:1122 tbl_tracking.php:640 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "" -#: libraries/messages.inc.php:1127 tbl_tracking.php:521 +#: libraries/messages.inc.php:1123 tbl_tracking.php:521 #, fuzzy, php-format msgid "Export as %s" msgstr "Tipo de exportação" -#: libraries/messages.inc.php:1130 tbl_tracking.php:251 tbl_tracking.php:379 +#: libraries/messages.inc.php:1126 tbl_tracking.php:251 tbl_tracking.php:379 msgid "Close" msgstr "" -#: libraries/messages.inc.php:1131 tbl_tracking.php:114 +#: libraries/messages.inc.php:1127 tbl_tracking.php:114 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/messages.inc.php:1133 tbl_tracking.php:397 tbl_tracking.php:504 +#: libraries/messages.inc.php:1129 tbl_tracking.php:397 tbl_tracking.php:504 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "" -#: libraries/messages.inc.php:1134 tbl_tracking.php:561 +#: libraries/messages.inc.php:1130 tbl_tracking.php:561 msgid "Show versions" msgstr "" -#: libraries/messages.inc.php:1135 tbl_tracking.php:507 +#: libraries/messages.inc.php:1131 tbl_tracking.php:507 msgid "SQL dump (file download)" msgstr "" -#: libraries/messages.inc.php:1136 tbl_tracking.php:508 +#: libraries/messages.inc.php:1132 tbl_tracking.php:508 msgid "SQL dump" msgstr "" -#: libraries/messages.inc.php:1137 tbl_tracking.php:213 +#: libraries/messages.inc.php:1133 tbl_tracking.php:213 msgid "SQL statements executed." msgstr "" -#: libraries/messages.inc.php:1138 +#: libraries/messages.inc.php:1134 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/messages.inc.php:1139 tbl_tracking.php:509 +#: libraries/messages.inc.php:1135 tbl_tracking.php:509 msgid "SQL execution" msgstr "" -#: libraries/messages.inc.php:1140 tbl_tracking.php:230 +#: libraries/messages.inc.php:1136 tbl_tracking.php:230 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/messages.inc.php:1141 tbl_tracking.php:381 +#: libraries/messages.inc.php:1137 tbl_tracking.php:381 msgid "Tracking statements" msgstr "" -#: libraries/messages.inc.php:1148 tbl_tracking.php:593 +#: libraries/messages.inc.php:1144 tbl_tracking.php:593 #, fuzzy msgid "Version" msgstr "Pérsa" -#: libraries/messages.inc.php:1149 tbl_tracking.php:672 +#: libraries/messages.inc.php:1145 tbl_tracking.php:672 msgid "Track these data definition statements:" msgstr "" -#: libraries/messages.inc.php:1150 tbl_tracking.php:680 +#: libraries/messages.inc.php:1146 tbl_tracking.php:680 msgid "Track these data manipulation statements:" msgstr "" -#: libraries/messages.inc.php:1155 tbl_tracking.php:411 tbl_tracking.php:462 +#: libraries/messages.inc.php:1151 tbl_tracking.php:411 tbl_tracking.php:462 #, fuzzy msgid "Username" msgstr "Usuário:" -#: libraries/messages.inc.php:1156 tbl_tracking.php:203 +#: libraries/messages.inc.php:1152 tbl_tracking.php:203 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "" -#: libraries/messages.inc.php:1157 tbl_tracking.php:187 +#: libraries/messages.inc.php:1153 tbl_tracking.php:187 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "" -#: libraries/messages.inc.php:1158 tbl_tracking.php:195 +#: libraries/messages.inc.php:1154 tbl_tracking.php:195 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "" -#: libraries/messages.inc.php:1159 tbl_tracking.php:262 +#: libraries/messages.inc.php:1155 tbl_tracking.php:262 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/messages.inc.php:1161 tbl_tracking.php:220 +#: libraries/messages.inc.php:1157 tbl_tracking.php:220 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/messages.inc.php:1162 libraries/mysql_charsets.lib.php:219 +#: libraries/messages.inc.php:1158 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:362 msgid "Traditional Chinese" msgstr "Chinês Tradicional" -#: libraries/messages.inc.php:1163 libraries/mysql_charsets.lib.php:292 +#: libraries/messages.inc.php:1159 libraries/mysql_charsets.lib.php:292 msgid "Traditional Spanish" msgstr "Espanhol Traditional" -#: libraries/messages.inc.php:1164 server_status.php:388 +#: libraries/messages.inc.php:1160 server_status.php:388 msgid "Traffic" msgstr "Tráfego" -#: libraries/messages.inc.php:1165 server_status.php:261 +#: libraries/messages.inc.php:1161 server_status.php:261 msgid "Transaction coordinator" msgstr "Coordenador da transação" -#: libraries/messages.inc.php:1166 +#: libraries/messages.inc.php:1162 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 " @@ -6452,7 +6452,7 @@ msgstr "" "linha da tabela que contém o nome do arquivo. Se você usar a segunda opção " "precisa colocar na primeira opção uma string em branco" -#: libraries/messages.inc.php:1167 +#: libraries/messages.inc.php:1163 msgid "" "Displays hexadecimal representation of data. Optional first parameter " "specifies how often space will be added (defaults to 2 nibbles)." @@ -6461,7 +6461,7 @@ msgstr "" "especifica como frequentemente espaços serão adicionados (padrão para 2 " "mordidelas)." -#: libraries/messages.inc.php:1168 +#: libraries/messages.inc.php:1164 msgid "" "Displays a clickable thumbnail. The options are the maximum width and height " "in pixels. The original aspect ratio is preserved." @@ -6469,15 +6469,15 @@ msgstr "" "Mostrar uma miniatura clicável; opções: largura,altura em pixels (mantém a " "proporção original)" -#: libraries/messages.inc.php:1169 +#: libraries/messages.inc.php:1165 msgid "Displays a link to download this image." msgstr "Mostrar o link para esta imagem (ex.: blob download direto)." -#: libraries/messages.inc.php:1170 +#: libraries/messages.inc.php:1166 msgid "See image/jpeg: inline" msgstr "Ver imagem/jpeg: em linha" -#: libraries/messages.inc.php:1171 +#: libraries/messages.inc.php:1167 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 " @@ -6497,7 +6497,7 @@ msgstr "" "\"local\" veja a documentação do PHP para função strftime() e para \"utc\" " "isso é feito usando a função gmdate()." -#: libraries/messages.inc.php:1172 +#: libraries/messages.inc.php:1168 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 " @@ -6521,13 +6521,13 @@ msgstr "" "por um NOWRAP para o conteúdo da célula, de forma que a saída inteira será " "mostrada sem reformatação(Padrão é 1)" -#: libraries/messages.inc.php:1173 +#: libraries/messages.inc.php:1169 msgid "" "Displays the contents of the field as-is, without running it through " "htmlspecialchars(). That is, the field is assumed to contain valid HTML." msgstr "Preservar a formatação original campo. Sem escape." -#: libraries/messages.inc.php:1174 +#: libraries/messages.inc.php:1170 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 " @@ -6537,7 +6537,7 @@ msgstr "" "opção é um prefixo tipo \"http://domain.com/\", segunda opção é a largura em " "pixels, o terceiro é a altura." -#: libraries/messages.inc.php:1175 +#: libraries/messages.inc.php:1171 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 " @@ -6546,11 +6546,11 @@ msgstr "" "Mostrar um link, o campo contém o nome do arquivo, primeira opção é um " "prefixo tipo \"http://domain.com/\", segunda opção é um título para o link." -#: libraries/messages.inc.php:1176 +#: libraries/messages.inc.php:1172 msgid "Formats text as SQL query with syntax highlighting." msgstr "Formatar texto como consulta SQL com síntaxe colorida." -#: libraries/messages.inc.php:1177 +#: libraries/messages.inc.php:1173 msgid "" "Displays a part of a string. The first option is the number of characters to " "skip from the beginning of the string (Default 0). The second option is the " @@ -6564,70 +6564,70 @@ msgstr "" "texto. Terceira opção define quais caracteres serão acrescentados na " "substring retornada (Padrão: ...)." -#: libraries/messages.inc.php:1179 server_binlog.php:183 server_binlog.php:186 +#: libraries/messages.inc.php:1175 server_binlog.php:183 server_binlog.php:186 #: server_processlist.php:49 server_processlist.php:51 msgid "Truncate Shown Queries" msgstr "Truncar as consultas SQL exibidas" -#: libraries/messages.inc.php:1180 libraries/mysql_charsets.lib.php:301 +#: libraries/messages.inc.php:1176 libraries/mysql_charsets.lib.php:301 #: libraries/mysql_charsets.lib.php:389 msgid "Turkish" msgstr "Turco" -#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:304 +#: libraries/messages.inc.php:1179 libraries/mysql_charsets.lib.php:304 #: libraries/mysql_charsets.lib.php:386 msgid "Ukrainian" msgstr "Ucraniano" -#: libraries/messages.inc.php:1185 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:1181 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 msgid "Unicode" msgstr "Unicode" -#: libraries/messages.inc.php:1187 libraries/mysql_charsets.lib.php:398 +#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:398 #: libraries/mysql_charsets.lib.php:405 msgid "unknown" msgstr "desconhecido" -#: libraries/messages.inc.php:1190 server_privileges.php:1152 +#: libraries/messages.inc.php:1186 server_privileges.php:1152 #, php-format msgid "You have updated the privileges for %s." msgstr "Você mudou os priviléios para %s." -#: libraries/messages.inc.php:1191 user_password.php:112 +#: libraries/messages.inc.php:1187 user_password.php:112 msgid "The profile has been updated." msgstr "A configuração foi atualizada." -#: libraries/messages.inc.php:1193 libraries/relation.lib.php:138 +#: libraries/messages.inc.php:1189 libraries/relation.lib.php:138 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "Consulte a documentação sobre como atualizar sua tabela Column_comments" -#: libraries/messages.inc.php:1194 +#: libraries/messages.inc.php:1190 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Você deveria atualizar para %s %s ou posterior." -#: libraries/messages.inc.php:1204 tbl_printview.php:314 tbl_structure.php:661 +#: libraries/messages.inc.php:1200 tbl_printview.php:314 tbl_structure.php:661 msgid "Usage" msgstr "Uso" -#: libraries/messages.inc.php:1205 +#: libraries/messages.inc.php:1201 msgid "Enclose table and field names with backquotes" msgstr "Usar aspas simples nos nomes de tabelas e campos" -#: libraries/messages.inc.php:1206 libraries/replication_gui.lib.php:314 +#: libraries/messages.inc.php:1202 libraries/replication_gui.lib.php:314 #: server_privileges.php:740 msgid "Use Host Table" msgstr "Usar Tabela do Servidor" -#: libraries/messages.inc.php:1207 server_privileges.php:848 +#: libraries/messages.inc.php:1203 server_privileges.php:848 #, php-format msgid "The user %s already exists!" msgstr "O usuário %s já existe!" -#: libraries/messages.inc.php:1209 libraries/replication_gui.lib.php:55 +#: libraries/messages.inc.php:1205 libraries/replication_gui.lib.php:55 #: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245 #: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255 #: server_privileges.php:672 server_privileges.php:675 @@ -6635,37 +6635,37 @@ msgstr "O usuário %s já existe!" msgid "User name" msgstr "Nome do usuário" -#: libraries/messages.inc.php:1210 server_privileges.php:1645 +#: libraries/messages.inc.php:1206 server_privileges.php:1645 msgid "The selected user was not found in the privilege table." msgstr "O usuário selecionado não foi encontrado na tabela de privilégios." -#: libraries/messages.inc.php:1211 server_privileges.php:1365 +#: libraries/messages.inc.php:1207 server_privileges.php:1365 msgid "User overview" msgstr "Avaliação dos usuários" -#: libraries/messages.inc.php:1212 server_privileges.php:1261 +#: libraries/messages.inc.php:1208 server_privileges.php:1261 msgid "The selected users have been deleted successfully." msgstr "Os usuários selecionados foram apagados com sucesso." -#: libraries/messages.inc.php:1213 server_privileges.php:2026 +#: libraries/messages.inc.php:1209 server_privileges.php:2026 #, php-format msgid "Users having access to "%s"" msgstr "Usuários que têm acesso à "%s"" -#: libraries/messages.inc.php:1214 main.php:189 server_privileges.php:1350 +#: libraries/messages.inc.php:1210 main.php:189 server_privileges.php:1350 #: server_privileges.php:1497 server_privileges.php:1611 #: server_privileges.php:2029 server_processlist.php:54 msgid "User" msgstr "Usuário" -#: libraries/messages.inc.php:1215 tbl_change.php:1171 +#: libraries/messages.inc.php:1211 tbl_change.php:1171 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Usar a tecla TAB para se mover de valor em valor, ou CTRL+setas para mover " "em qualquer direção" -#: libraries/messages.inc.php:1217 libraries/replication_gui.lib.php:251 +#: libraries/messages.inc.php:1213 libraries/replication_gui.lib.php:251 #: libraries/replication_gui.lib.php:319 libraries/replication_gui.lib.php:342 #: server_privileges.php:678 server_privileges.php:745 #: server_privileges.php:769 server_privileges.php:1889 @@ -6673,7 +6673,7 @@ msgstr "" msgid "Use text field" msgstr "Usar campo texto" -#: libraries/messages.inc.php:1221 libraries/sqlvalidator.lib.php:68 +#: libraries/messages.inc.php:1217 libraries/sqlvalidator.lib.php:68 #, php-format msgid "" "The SQL validator could not be initialized. Please check if you have " @@ -6682,88 +6682,88 @@ msgstr "" "O Validador SQL não pode ser inicializado. Verifique se você instalou a " "extenção necessária do php conforme está escrito em %sdocumentation%s." -#: libraries/messages.inc.php:1222 libraries/replication_gui.lib.php:111 +#: libraries/messages.inc.php:1218 libraries/replication_gui.lib.php:111 #: server_status.php:627 tbl_change.php:324 tbl_printview.php:370 #: tbl_select.php:139 tbl_structure.php:730 msgid "Value" msgstr "Valor" -#: libraries/messages.inc.php:1223 libraries/replication_gui.lib.php:110 +#: libraries/messages.inc.php:1219 libraries/replication_gui.lib.php:110 #: libraries/sql_query_form.lib.php:445 server_status.php:626 #: server_variables.php:52 msgid "Variable" msgstr "Variáveis" -#: libraries/messages.inc.php:1225 server_export.php:21 +#: libraries/messages.inc.php:1221 server_export.php:21 msgid "View dump (schema) of databases" msgstr "Ver dump (esquema) dos Bancos de Dados" -#: libraries/messages.inc.php:1227 tbl_export.php:23 +#: libraries/messages.inc.php:1223 tbl_export.php:23 msgid "View dump (schema) of table" msgstr "Ver o esquema da tabela" -#: libraries/messages.inc.php:1231 view_create.php:142 +#: libraries/messages.inc.php:1227 view_create.php:142 msgid "VIEW name" msgstr "Nome da VISÃO" -#: libraries/messages.inc.php:1237 main.php:205 +#: libraries/messages.inc.php:1233 main.php:205 msgid "Web server" msgstr "" -#: libraries/messages.inc.php:1239 libraries/mysql_charsets.lib.php:277 +#: libraries/messages.inc.php:1235 libraries/mysql_charsets.lib.php:277 #: libraries/mysql_charsets.lib.php:325 msgid "West European" msgstr "Oeste Europeu" -#: libraries/messages.inc.php:1240 main.php:230 +#: libraries/messages.inc.php:1236 main.php:230 msgid "Wiki" msgstr "" -#: libraries/messages.inc.php:1241 server_privileges.php:2138 +#: libraries/messages.inc.php:1237 server_privileges.php:2138 msgid "wildcard" msgstr "coringa" -#: libraries/messages.inc.php:1248 +#: libraries/messages.inc.php:1244 #, fuzzy msgid "Export contents" msgstr "Tipo de exportação" -#: libraries/messages.inc.php:1249 +#: libraries/messages.inc.php:1245 msgid "Export functions" msgstr "" -#: libraries/messages.inc.php:1250 +#: libraries/messages.inc.php:1246 msgid "Export procedures" msgstr "" -#: libraries/messages.inc.php:1251 +#: libraries/messages.inc.php:1247 msgid "Export Structure Schemas (recommended)" msgstr "" -#: libraries/messages.inc.php:1252 +#: libraries/messages.inc.php:1248 #, fuzzy msgid "Export tables" msgstr "Tipo de exportação" -#: libraries/messages.inc.php:1253 +#: libraries/messages.inc.php:1249 #, fuzzy msgid "Export triggers" msgstr "Tipo de exportação" -#: libraries/messages.inc.php:1254 +#: libraries/messages.inc.php:1250 #, fuzzy msgid "Export views" msgstr "Tipo de exportação" -#: libraries/messages.inc.php:1255 +#: libraries/messages.inc.php:1251 msgid "XML" msgstr "XML" -#: libraries/messages.inc.php:1259 server_privileges.php:592 +#: libraries/messages.inc.php:1255 server_privileges.php:592 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Nota: Ajustar essa opção para 0 (zero) remove os limites." -#: libraries/messages.inc.php:1260 +#: libraries/messages.inc.php:1256 msgid "\"zipped\"" msgstr "\"compactado com zip\"" diff --git a/po/ro.po b/po/ro.po index 3cb34a164..d073c1ebf 100644 --- 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-05-13 11:25+0200\n" +"POT-Creation-Date: 2010-05-13 11:30+0200\n" "PO-Revision-Date: 2010-03-13 00:41+0200\n" "Last-Translator: \n" "Language-Team: romanian \n" @@ -16,19 +16,19 @@ msgstr "" "X-Generator: Pootle 2.0.1\n" #: browse_foreigners.php:38 browse_foreigners.php:59 -#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:870 +#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:866 #: server_privileges.php:1475 msgid "Show all" msgstr "Arată toate" #: browse_foreigners.php:82 db_operations.php:648 -#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:394 -#: libraries/export/pdf.php:147 libraries/messages.inc.php:597 +#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394 +#: libraries/export/pdf.php:147 libraries/messages.inc.php:593 #: pdf_schema.php:283 pdf_schema.php:1123 pdf_schema.php:1139 msgid "Page number:" msgstr "Numărul paginii:" -#: browse_foreigners.php:132 libraries/messages.inc.php:1242 +#: browse_foreigners.php:132 libraries/messages.inc.php:1238 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -41,7 +41,7 @@ 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/db_links.inc.php:75 -#: libraries/messages.inc.php:841 libraries/tbl_links.inc.php:63 +#: libraries/messages.inc.php:837 libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Caută" @@ -50,12 +50,12 @@ msgstr "Caută" #: db_search.php:362 db_structure.php:567 js/messages.php:48 #: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2267 +#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 #: 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 #: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614 -#: libraries/messages.inc.php:361 libraries/replication_gui.lib.php:73 +#: libraries/messages.inc.php:357 libraries/replication_gui.lib.php:73 #: libraries/replication_gui.lib.php:365 libraries/select_server.lib.php:104 #: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477 #: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782 @@ -75,33 +75,33 @@ msgid "Go" msgstr "Execută" #: browse_foreigners.php:168 browse_foreigners.php:172 -#: libraries/Index.class.php:442 libraries/messages.inc.php:459 +#: libraries/Index.class.php:442 libraries/messages.inc.php:455 #: tbl_tracking.php:320 msgid "Keyname" msgstr "Nume cheie" #: browse_foreigners.php:169 browse_foreigners.php:171 -#: libraries/messages.inc.php:252 server_collations.php:55 +#: libraries/messages.inc.php:248 server_collations.php:55 #: server_collations.php:67 server_engines.php:59 server_status.php:628 msgid "Description" msgstr "Descriere" #: browse_foreigners.php:247 browse_foreigners.php:256 #: browse_foreigners.php:268 browse_foreigners.php:276 -#: libraries/messages.inc.php:1218 +#: libraries/messages.inc.php:1214 msgid "Use this value" msgstr "Folosește această valoare" -#: db_create.php:46 libraries/messages.inc.php:215 +#: db_create.php:46 libraries/messages.inc.php:211 #, php-format msgid "Database %1$s has been created." msgstr "Baza de date %1$s a fost creată." -#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:232 +#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:228 msgid "Database comment: " msgstr "Comentarii referitoare la baza de date: " -#: db_datadict.php:165 libraries/messages.inc.php:1070 +#: db_datadict.php:165 libraries/messages.inc.php:1066 #: libraries/tbl_properties.inc.php:724 pdf_schema.php:1236 #: tbl_operations.php:345 tbl_printview.php:130 msgid "Table comments" @@ -110,7 +110,7 @@ msgstr "Comentarii tabel" #: db_datadict.php:174 db_qbe.php:174 libraries/Index.class.php:446 #: libraries/export/htmlword.php:244 libraries/export/latex.php:360 #: libraries/export/odt.php:294 libraries/export/texytext.php:233 -#: libraries/messages.inc.php:317 libraries/tbl_properties.inc.php:99 +#: libraries/messages.inc.php:313 libraries/tbl_properties.inc.php:99 #: libraries/tbl_properties.inc.php:275 pdf_schema.php:1262 #: pdf_schema.php:1283 tbl_change.php:308 tbl_indexes.php:189 #: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135 @@ -122,7 +122,7 @@ msgstr "Cîmp" #: libraries/db_events.inc.php:31 libraries/db_routines.inc.php:42 #: 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/messages.inc.php:1181 +#: libraries/export/texytext.php:234 libraries/messages.inc.php:1177 #: libraries/tbl_properties.inc.php:100 pdf_schema.php:1263 #: pdf_schema.php:1284 server_privileges.php:2031 tbl_change.php:287 #: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313 @@ -134,7 +134,7 @@ msgstr "Tip" #: db_datadict.php:177 libraries/Index.class.php:449 #: libraries/export/htmlword.php:246 libraries/export/latex.php:360 #: libraries/export/odt.php:300 libraries/export/texytext.php:235 -#: libraries/messages.inc.php:576 libraries/tbl_properties.inc.php:109 +#: libraries/messages.inc.php:572 libraries/tbl_properties.inc.php:109 #: pdf_schema.php:1265 pdf_schema.php:1286 tbl_change.php:323 #: tbl_printview.php:145 tbl_structure.php:181 tbl_tracking.php:276 #: tbl_tracking.php:327 @@ -143,7 +143,7 @@ msgstr "Nul" #: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 -#: libraries/export/texytext.php:236 libraries/messages.inc.php:238 +#: libraries/export/texytext.php:236 libraries/messages.inc.php:234 #: libraries/tbl_properties.inc.php:106 pdf_schema.php:1266 #: pdf_schema.php:1287 tbl_printview.php:146 tbl_structure.php:182 #: tbl_tracking.php:277 @@ -152,14 +152,14 @@ msgstr "Setare de bază" #: db_datadict.php:182 libraries/export/htmlword.php:249 #: libraries/export/latex.php:362 libraries/export/odt.php:307 -#: libraries/export/texytext.php:238 libraries/messages.inc.php:483 +#: libraries/export/texytext.php:238 libraries/messages.inc.php:479 #: pdf_schema.php:1268 pdf_schema.php:1289 tbl_printview.php:150 msgid "Links to" msgstr "Trimitere la" #: db_datadict.php:184 db_printview.php:112 libraries/export/htmlword.php:252 #: libraries/export/latex.php:365 libraries/export/odt.php:312 -#: libraries/export/texytext.php:241 libraries/messages.inc.php:163 +#: libraries/export/texytext.php:241 libraries/messages.inc.php:159 #: libraries/tbl_properties.inc.php:130 pdf_schema.php:1279 #: pdf_schema.php:1290 tbl_printview.php:152 msgid "Comments" @@ -168,7 +168,7 @@ msgstr "Comentarii" #: db_datadict.php:267 libraries/Index.class.php:359 #: 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/messages.inc.php:559 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:555 #: libraries/mult_submits.inc.php:263 pdf_schema.php:1344 #: server_privileges.php:1529 server_privileges.php:1540 #: server_privileges.php:1850 server_privileges.php:1855 @@ -180,7 +180,7 @@ msgstr "Nu" #: db_datadict.php:267 libraries/Index.class.php:360 #: libraries/Index.class.php:385 libraries/export/htmlword.php:322 #: libraries/export/latex.php:430 libraries/export/odt.php:368 -#: libraries/export/texytext.php:311 libraries/messages.inc.php:1257 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:1253 #: libraries/mult_submits.inc.php:45 libraries/mult_submits.inc.php:50 #: libraries/mult_submits.inc.php:55 libraries/mult_submits.inc.php:60 #: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:101 @@ -194,108 +194,108 @@ msgstr "Nu" msgid "Yes" msgstr "Da" -#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:670 +#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:666 #: tbl_printview.php:498 msgid "Print" msgstr "Listare" -#: db_export.php:29 libraries/messages.inc.php:1226 +#: db_export.php:29 libraries/messages.inc.php:1222 msgid "View dump (schema) of database" msgstr "Vizualizarea schemei bazei de date" #: db_export.php:33 db_printview.php:96 db_qbe.php:102 db_structure.php:51 -#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:568 +#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:564 #: navigation.php:346 msgid "No tables found in database." msgstr "Nu s-a găsit nici un tabel în baza de date." -#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:845 +#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:841 #: server_export.php:27 msgid "Select All" msgstr "Selectează tot" -#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1188 +#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1184 #: server_export.php:29 msgid "Unselect All" msgstr "Deselectează tot" -#: db_operations.php:38 libraries/messages.inc.php:213 tbl_create.php:54 +#: db_operations.php:38 libraries/messages.inc.php:209 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 libraries/messages.inc.php:753 +#: db_operations.php:236 libraries/messages.inc.php:749 #, php-format msgid "Database %s has been renamed to %s" msgstr "Baza de date %s a fost redenumită în %s" -#: db_operations.php:240 libraries/messages.inc.php:178 +#: db_operations.php:240 libraries/messages.inc.php:174 #, php-format msgid "Database %s has been copied to %s" msgstr "Baza de date %s a fost copiata la %s" -#: db_operations.php:410 libraries/messages.inc.php:236 +#: db_operations.php:410 libraries/messages.inc.php:232 msgid "Rename database to" msgstr "Redenumire bază de date în" -#: db_operations.php:415 libraries/messages.inc.php:161 +#: db_operations.php:415 libraries/messages.inc.php:157 #: server_processlist.php:57 msgid "Command" msgstr "Comanda" -#: db_operations.php:425 libraries/messages.inc.php:58 tbl_change.php:1143 +#: db_operations.php:425 libraries/messages.inc.php:54 tbl_change.php:1143 msgid "and then" msgstr "și apoi" -#: db_operations.php:451 libraries/messages.inc.php:233 +#: db_operations.php:451 libraries/messages.inc.php:229 msgid "Copy database to" msgstr "Copiază baza de date" -#: db_operations.php:458 libraries/messages.inc.php:1043 +#: db_operations.php:458 libraries/messages.inc.php:1039 #: tbl_operations.php:526 tbl_tracking.php:388 msgid "Structure only" msgstr "Numai structura" -#: db_operations.php:459 libraries/messages.inc.php:1041 +#: db_operations.php:459 libraries/messages.inc.php:1037 #: tbl_operations.php:527 tbl_tracking.php:390 msgid "Structure and data" msgstr "Structura și date" -#: db_operations.php:460 libraries/messages.inc.php:229 tbl_operations.php:528 +#: db_operations.php:460 libraries/messages.inc.php:225 tbl_operations.php:528 #: tbl_tracking.php:389 msgid "Data only" msgstr "Numai date" -#: db_operations.php:468 libraries/messages.inc.php:186 +#: db_operations.php:468 libraries/messages.inc.php:182 msgid "CREATE DATABASE before copying" msgstr "CREEAZĂ BAZA DE DATE înainte de copiere" #: db_operations.php:471 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 -#: libraries/export/sql.php:82 libraries/messages.inc.php:30 +#: libraries/export/sql.php:82 libraries/messages.inc.php:26 #: tbl_operations.php:534 #, php-format msgid "Add %s" msgstr "Adăugare %s" -#: db_operations.php:475 libraries/messages.inc.php:29 tbl_operations.php:297 +#: db_operations.php:475 libraries/messages.inc.php:25 tbl_operations.php:297 #: tbl_operations.php:536 msgid "Add AUTO_INCREMENT value" msgstr "Adaugă valoare pentru AUTO_INCREMENT" -#: db_operations.php:479 libraries/messages.inc.php:31 tbl_operations.php:543 +#: db_operations.php:479 libraries/messages.inc.php:27 tbl_operations.php:543 msgid "Add constraints" msgstr "Adaugă constrîngere" -#: db_operations.php:492 libraries/messages.inc.php:1059 +#: db_operations.php:492 libraries/messages.inc.php:1055 msgid "Switch to copied database" msgstr "Schimbă la tabela copiată" -#: db_operations.php:533 libraries/messages.inc.php:89 +#: db_operations.php:533 libraries/messages.inc.php:85 msgid "BLOB Repository" msgstr "BLOB Repository" #: db_operations.php:536 db_tracking.php:76 libraries/common.lib.php:1350 -#: libraries/messages.inc.php:1037 libraries/server_links.inc.php:49 +#: libraries/messages.inc.php:1033 libraries/server_links.inc.php:49 #: server_processlist.php:59 tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "Stare" @@ -307,11 +307,11 @@ msgctxt "BLOB repository" msgid "Enabled" msgstr "Activat" -#: db_operations.php:548 libraries/messages.inc.php:93 +#: db_operations.php:548 libraries/messages.inc.php:89 msgid "Disable" msgstr "Dezactivează" -#: db_operations.php:558 libraries/messages.inc.php:90 +#: db_operations.php:558 libraries/messages.inc.php:86 msgid "Damaged" msgstr "Deteriorat" @@ -329,12 +329,12 @@ msgctxt "BLOB repository" msgid "Disabled" msgstr "Dezactivat" -#: db_operations.php:574 libraries/messages.inc.php:96 +#: db_operations.php:574 libraries/messages.inc.php:92 msgid "Enable" msgstr "Activează" #: db_operations.php:598 libraries/Index.class.php:448 -#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:158 +#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:154 #: 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:361 @@ -343,7 +343,7 @@ msgstr "Activează" msgid "Collation" msgstr "Interclasare" -#: db_operations.php:609 libraries/messages.inc.php:742 main.php:316 +#: db_operations.php:609 libraries/messages.inc.php:738 main.php:316 #: pdf_schema.php:34 #, php-format msgid "" @@ -353,58 +353,58 @@ msgstr "" "Opțiunile adiționale pentru folosirea tabelelor intercalate au fost " "dezactivate. Pentru a afla de ce ... %shere%s." -#: db_operations.php:645 libraries/messages.inc.php:264 pdf_pages.php:528 +#: db_operations.php:645 libraries/messages.inc.php:260 pdf_pages.php:528 msgid "Display PDF schema" msgstr "Arată schema PDF" -#: db_operations.php:661 libraries/messages.inc.php:877 pdf_pages.php:529 +#: db_operations.php:661 libraries/messages.inc.php:873 pdf_pages.php:529 msgid "Show grid" msgstr "Arată grila" -#: db_operations.php:664 libraries/messages.inc.php:874 pdf_pages.php:530 +#: db_operations.php:664 libraries/messages.inc.php:870 pdf_pages.php:530 msgid "Show color" msgstr "Arată culoarea" -#: db_operations.php:666 libraries/messages.inc.php:998 pdf_pages.php:531 +#: db_operations.php:666 libraries/messages.inc.php:994 pdf_pages.php:531 msgid "Show dimension of tables" msgstr "Arată dimensiunile tabelei" -#: db_operations.php:669 libraries/messages.inc.php:52 pdf_pages.php:532 +#: db_operations.php:669 libraries/messages.inc.php:48 pdf_pages.php:532 msgid "Display all tables with the same width" msgstr "Arată toate tabelele cu aceeaăi mărime?" -#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:227 +#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:223 #: pdf_pages.php:533 msgid "Data Dictionary" msgstr "Dicționar de date" -#: db_operations.php:674 libraries/messages.inc.php:884 pdf_pages.php:534 +#: db_operations.php:674 libraries/messages.inc.php:880 pdf_pages.php:534 msgid "Only show keys" msgstr "" -#: db_operations.php:676 libraries/messages.inc.php:875 pdf_pages.php:535 +#: db_operations.php:676 libraries/messages.inc.php:871 pdf_pages.php:535 msgid "Data Dictionary Format" msgstr "Data Dictionary Format" -#: db_operations.php:678 libraries/messages.inc.php:464 pdf_pages.php:537 +#: db_operations.php:678 libraries/messages.inc.php:460 pdf_pages.php:537 msgid "Landscape" msgstr "Portret" -#: db_operations.php:679 libraries/messages.inc.php:663 pdf_pages.php:538 +#: db_operations.php:679 libraries/messages.inc.php:659 pdf_pages.php:538 msgid "Portrait" msgstr "Portret" -#: db_operations.php:682 libraries/messages.inc.php:599 pdf_pages.php:541 +#: db_operations.php:682 libraries/messages.inc.php:595 pdf_pages.php:541 msgid "Paper size" msgstr "Mărime hîrtie" -#: db_operations.php:706 libraries/messages.inc.php:281 +#: db_operations.php:706 libraries/messages.inc.php:277 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 libraries/messages.inc.php:1087 +#: libraries/header.inc.php:126 libraries/messages.inc.php:1083 #: pdf_pages.php:405 server_privileges.php:1626 server_privileges.php:1682 #: server_privileges.php:1946 server_synchronize.php:423 #: server_synchronize.php:866 tbl_tracking.php:592 test/theme.php:75 @@ -412,176 +412,176 @@ msgid "Table" msgstr "Tabel" #: db_printview.php:105 libraries/db_structure.lib.php:56 -#: libraries/messages.inc.php:735 +#: libraries/messages.inc.php:731 msgid "Records" msgstr "Înregistrări" #: db_printview.php:109 libraries/db_structure.lib.php:67 -#: libraries/messages.inc.php:1003 tbl_indexes.php:190 +#: libraries/messages.inc.php:999 tbl_indexes.php:190 msgid "Size" msgstr "Mărime" #: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 -#: libraries/export/sql.php:899 libraries/messages.inc.php:436 +#: libraries/export/sql.php:899 libraries/messages.inc.php:432 msgid "in use" msgstr "în folosință" #: db_printview.php:187 libraries/db_info.inc.php:88 -#: libraries/export/sql.php:514 libraries/messages.inc.php:1032 +#: libraries/export/sql.php:514 libraries/messages.inc.php:1028 #: pdf_schema.php:1241 tbl_printview.php:434 tbl_structure.php:810 msgid "Creation" msgstr "Creare" #: db_printview.php:196 libraries/db_info.inc.php:93 -#: libraries/export/sql.php:519 libraries/messages.inc.php:1036 +#: libraries/export/sql.php:519 libraries/messages.inc.php:1032 #: pdf_schema.php:1246 tbl_printview.php:444 tbl_structure.php:818 msgid "Last update" msgstr "Ultima actualizare" #: db_printview.php:205 libraries/db_info.inc.php:98 -#: libraries/export/sql.php:524 libraries/messages.inc.php:1031 +#: libraries/export/sql.php:524 libraries/messages.inc.php:1027 #: pdf_schema.php:1251 tbl_printview.php:454 tbl_structure.php:826 msgid "Last check" msgstr "Ultima verficare" -#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1085 +#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1081 #, php-format msgid "%s table(s)" msgstr "%s tabele" #: db_qbe.php:29 libraries/display_tbl.lib.php:1981 -#: libraries/messages.inc.php:1051 libraries/sql_query_form.lib.php:140 +#: libraries/messages.inc.php:1047 libraries/sql_query_form.lib.php:140 #: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131 #: view_operations.php:62 msgid "Your SQL query has been executed successfully" msgstr "Comanda dumneavoastră SQL a fost executată cu succes" -#: db_qbe.php:42 libraries/messages.inc.php:371 +#: db_qbe.php:42 libraries/messages.inc.php:367 msgid "You have to choose at least one column to display" msgstr "Trebuie să alegeți cel puțin o coloană pentru a putea afișa" #: db_qbe.php:200 libraries/db_structure.lib.php:104 -#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1014 +#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1010 msgid "Sort" msgstr "Sortare" #: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111 #: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828 -#: libraries/messages.inc.php:69 server_databases.php:170 +#: libraries/messages.inc.php:65 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314 msgid "Ascending" msgstr "Crescătoare" #: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119 #: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825 -#: libraries/messages.inc.php:251 server_databases.php:170 +#: libraries/messages.inc.php:247 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315 msgid "Descending" msgstr "Descrescător" #: db_qbe.php:264 db_tracking.php:78 libraries/display_tbl.lib.php:308 -#: libraries/messages.inc.php:888 tbl_change.php:277 tbl_tracking.php:597 +#: libraries/messages.inc.php:884 tbl_change.php:277 tbl_tracking.php:597 msgid "Show" msgstr "Afișează" -#: db_qbe.php:300 libraries/messages.inc.php:202 +#: db_qbe.php:300 libraries/messages.inc.php:198 msgid "Criteria" msgstr "Criteriu" #: db_qbe.php:353 db_qbe.php:435 db_qbe.php:527 db_qbe.php:558 -#: libraries/messages.inc.php:718 +#: libraries/messages.inc.php:714 msgid "Ins" msgstr "Ins" #: db_qbe.php:357 db_qbe.php:439 db_qbe.php:524 db_qbe.php:555 -#: libraries/messages.inc.php:56 +#: libraries/messages.inc.php:52 msgid "And" msgstr "Și" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:529 db_qbe.php:560 -#: libraries/messages.inc.php:717 +#: libraries/messages.inc.php:713 msgid "Del" 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/messages.inc.php:592 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:588 #: libraries/tbl_properties.inc.php:779 server_privileges.php:258 #: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288 msgid "Or" msgstr "Sau" -#: db_qbe.php:507 libraries/messages.inc.php:516 +#: db_qbe.php:507 libraries/messages.inc.php:512 msgid "Modify" msgstr "Modificare" -#: db_qbe.php:584 libraries/messages.inc.php:33 +#: db_qbe.php:584 libraries/messages.inc.php:29 msgid "Add/Delete Criteria Row" msgstr "Adaugă/șterge criteriu" -#: db_qbe.php:596 libraries/messages.inc.php:32 +#: db_qbe.php:596 libraries/messages.inc.php:28 msgid "Add/Delete Field Columns" msgstr "Adaugă/șterge coloane" -#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1192 +#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1188 msgid "Update Query" msgstr "Reînnoire comandă" -#: db_qbe.php:617 libraries/messages.inc.php:1216 +#: db_qbe.php:617 libraries/messages.inc.php:1212 msgid "Use Tables" msgstr "Utilizare tabele" -#: db_qbe.php:640 libraries/messages.inc.php:723 +#: db_qbe.php:640 libraries/messages.inc.php:719 #, php-format msgid "SQL query on database %s:" msgstr "Comandă SQL pe baza de date %s:" -#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:823 +#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:819 msgid "Submit Query" msgstr "Trimite comanda" #: db_search.php:68 libraries/auth/config.auth.lib.php:84 #: libraries/auth/config.auth.lib.php:103 #: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52 -#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:26 +#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:22 msgid "Access denied" msgstr "Acces interzis" -#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:836 +#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:832 msgid "at least one of the words" msgstr "cel puțin unul dintre cuvinte" -#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:837 +#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:833 msgid "all words" msgstr "toate cuvintele" -#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:838 +#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:834 msgid "the exact phrase" msgstr "fraza exactă" -#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:839 +#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:835 msgid "as regular expression" msgstr "ca o expresie" -#: db_search.php:242 libraries/messages.inc.php:840 +#: db_search.php:242 libraries/messages.inc.php:836 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Caută rezultate pentru \"%s\" %s:" -#: db_search.php:260 libraries/messages.inc.php:579 +#: db_search.php:260 libraries/messages.inc.php:575 #, php-format msgid "%s match(es) inside table %s" 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/messages.inc.php:108 +#: db_structure.php:105 libraries/messages.inc.php:104 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468 msgid "Browse" msgstr "Navigare" #: db_search.php:272 libraries/display_tbl.lib.php:1165 -#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:243 +#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:239 #: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406 #: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377 #: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216 @@ -589,45 +589,45 @@ msgstr "Navigare" msgid "Delete" msgstr "Șterge" -#: db_search.php:285 libraries/messages.inc.php:580 +#: db_search.php:285 libraries/messages.inc.php:576 #, php-format msgid "Total: %s match(es)" msgstr "Total: %s rezultat(e)" -#: db_search.php:299 libraries/messages.inc.php:832 +#: db_search.php:299 libraries/messages.inc.php:828 msgid "Search in database" msgstr "Caută în baza de date" -#: db_search.php:302 libraries/messages.inc.php:835 +#: db_search.php:302 libraries/messages.inc.php:831 msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgstr "Cuvînt/valoare de căutat (metacaracter: \"%\"):" -#: db_search.php:307 libraries/messages.inc.php:842 +#: db_search.php:307 libraries/messages.inc.php:838 msgid "Find:" msgstr "Găsește:" -#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1017 +#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1013 msgid "Words are separated by a space character (\" \")." msgstr "Cuvinte despărțite de un spațiu (\" \")." -#: db_search.php:325 libraries/messages.inc.php:834 +#: db_search.php:325 libraries/messages.inc.php:830 msgid "Inside table(s):" msgstr "În interiorul tabelei(lor):" -#: db_search.php:355 libraries/messages.inc.php:833 +#: db_search.php:355 libraries/messages.inc.php:829 msgid "Inside field:" 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/messages.inc.php:431 libraries/sql_query_form.lib.php:334 +#: libraries/messages.inc.php:427 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/db_links.inc.php:63 libraries/export/latex.php:337 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:1048 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:1044 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 #: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269 msgid "Structure" @@ -636,8 +636,8 @@ 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:1642 -#: libraries/db_links.inc.php:100 libraries/messages.inc.php:272 +#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/db_links.inc.php:100 libraries/messages.inc.php:268 #: 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 @@ -647,40 +647,40 @@ 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:1641 -#: libraries/messages.inc.php:284 libraries/mult_submits.inc.php:39 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: libraries/messages.inc.php:280 libraries/mult_submits.inc.php:39 #: libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Golește" -#: db_structure.php:316 libraries/messages.inc.php:1075 +#: db_structure.php:316 libraries/messages.inc.php:1071 #: libraries/tbl_links.inc.php:100 #, php-format msgid "Table %s has been emptied" msgstr "Tabelul %s a fost golit" -#: db_structure.php:326 libraries/messages.inc.php:1229 +#: db_structure.php:326 libraries/messages.inc.php:1225 #: 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/messages.inc.php:1074 +#: db_structure.php:326 libraries/messages.inc.php:1070 #: libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "Tabelul %s a fost aruncat" -#: db_structure.php:333 libraries/messages.inc.php:1128 +#: db_structure.php:333 libraries/messages.inc.php:1124 msgid "Tracking is active." msgstr "" -#: db_structure.php:335 libraries/messages.inc.php:1129 +#: db_structure.php:335 libraries/messages.inc.php:1125 msgid "Tracking is not active." msgstr "" #: db_structure.php:420 libraries/display_tbl.lib.php:1944 -#: libraries/messages.inc.php:1228 +#: libraries/messages.inc.php:1224 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -689,83 +689,83 @@ 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 -#: libraries/messages.inc.php:1233 libraries/tbl_info.inc.php:66 +#: libraries/messages.inc.php:1229 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/messages.inc.php:773 libraries/server_links.inc.php:70 +#: libraries/messages.inc.php:769 libraries/server_links.inc.php:70 #: server_replication.php:33 server_replication.php:164 server_status.php:258 msgid "Replication" msgstr "Replicare" -#: db_structure.php:489 libraries/messages.inc.php:1053 +#: db_structure.php:489 libraries/messages.inc.php:1049 msgid "Sum" msgstr "Sumă" #: db_structure.php:496 libraries/StorageEngine.class.php:356 -#: libraries/messages.inc.php:239 +#: libraries/messages.inc.php:235 #, 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 #: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086 -#: libraries/messages.inc.php:1243 libraries/mult_submits.inc.php:16 +#: libraries/messages.inc.php:1239 libraries/mult_submits.inc.php:16 #: server_databases.php:346 server_databases.php:351 #: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465 msgid "With selected:" msgstr "Cele bifate:" #: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: libraries/messages.inc.php:148 server_databases.php:348 +#: libraries/messages.inc.php:144 server_databases.php:348 #: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459 msgid "Check All" msgstr "Marchează toate" #: db_structure.php:531 libraries/display_tbl.lib.php:2077 -#: libraries/messages.inc.php:1184 libraries/replication_gui.lib.php:33 +#: libraries/messages.inc.php:1180 libraries/replication_gui.lib.php:33 #: server_databases.php:350 server_privileges.php:533 #: server_privileges.php:1564 tbl_structure.php:463 msgid "Uncheck All" msgstr "Deselectează toate" -#: db_structure.php:536 libraries/messages.inc.php:150 +#: db_structure.php:536 libraries/messages.inc.php:146 msgid "Check tables having overhead" msgstr "Verificare depășit" #: db_structure.php:547 db_structure.php:548 db_structure.php:599 -#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:672 +#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:668 #: libraries/mult_submits.inc.php:28 tbl_structure.php:493 #: tbl_structure.php:495 msgid "Print view" msgstr "Viziualizare imprimare" -#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:153 +#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:149 #: libraries/mult_submits.inc.php:42 tbl_operations.php:579 msgid "Check table" msgstr "Verificare tabel" -#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:590 +#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:586 #: libraries/mult_submits.inc.php:47 tbl_operations.php:619 #: tbl_structure.php:710 tbl_structure.php:712 msgid "Optimize table" msgstr "Optimizare tabel" -#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:758 +#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:754 #: libraries/mult_submits.inc.php:52 tbl_operations.php:609 msgid "Repair table" msgstr "Reparare tabel" -#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:55 +#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:51 #: libraries/mult_submits.inc.php:57 tbl_operations.php:599 msgid "Analyze table" msgstr "Analizare tabel" #: db_structure.php:557 db_structure.php:558 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/messages.inc.php:310 +#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:306 #: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84 #: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109 #: server_privileges.php:1341 setup/frames/menu.inc.php:22 @@ -773,7 +773,7 @@ msgstr "Analizare tabel" msgid "Export" msgstr "Exportă" -#: db_tracking.php:66 libraries/messages.inc.php:1151 +#: db_tracking.php:66 libraries/messages.inc.php:1147 #, fuzzy msgid "Tracked tables" msgstr "Verificare tabel" @@ -782,7 +782,7 @@ msgstr "Verificare tabel" #: 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/header_printview.inc.php:58 libraries/messages.inc.php:212 +#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:208 #: navigation.php:233 server_databases.php:169 server_privileges.php:1621 #: server_privileges.php:1682 server_privileges.php:1940 #: server_processlist.php:56 server_synchronize.php:1179 @@ -790,83 +790,83 @@ msgstr "Verificare tabel" msgid "Database" msgstr "Baza de date" -#: db_tracking.php:73 libraries/messages.inc.php:1146 +#: db_tracking.php:73 libraries/messages.inc.php:1142 #, fuzzy msgid "Last version" msgstr "Creare relație" -#: db_tracking.php:74 libraries/messages.inc.php:1145 tbl_tracking.php:594 +#: db_tracking.php:74 libraries/messages.inc.php:1141 tbl_tracking.php:594 #, fuzzy msgid "Created" msgstr "Creează" -#: db_tracking.php:75 libraries/messages.inc.php:1147 tbl_tracking.php:595 +#: db_tracking.php:75 libraries/messages.inc.php:1143 tbl_tracking.php:595 msgid "Updated" msgstr "" #: db_tracking.php:77 libraries/Index.class.php:440 -#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:27 +#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:23 #: server_databases.php:203 server_privileges.php:1503 #: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187 msgid "Action" msgstr "Acțiune" -#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:247 +#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:243 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:106 libraries/messages.inc.php:1142 tbl_tracking.php:548 +#: db_tracking.php:106 libraries/messages.inc.php:1138 tbl_tracking.php:548 #: tbl_tracking.php:606 tbl_tracking.php:613 msgid "active" msgstr "" -#: db_tracking.php:108 libraries/messages.inc.php:1143 tbl_tracking.php:550 +#: db_tracking.php:108 libraries/messages.inc.php:1139 tbl_tracking.php:550 #: tbl_tracking.php:608 tbl_tracking.php:610 msgid "not active" msgstr "" -#: db_tracking.php:121 libraries/messages.inc.php:1160 +#: db_tracking.php:121 libraries/messages.inc.php:1156 #, fuzzy msgid "Versions" msgstr "Persană" -#: db_tracking.php:122 libraries/messages.inc.php:1132 tbl_tracking.php:379 +#: db_tracking.php:122 libraries/messages.inc.php:1128 tbl_tracking.php:379 #: tbl_tracking.php:624 msgid "Tracking report" msgstr "" -#: db_tracking.php:123 libraries/messages.inc.php:1144 tbl_tracking.php:251 +#: db_tracking.php:123 libraries/messages.inc.php:1140 tbl_tracking.php:251 #: tbl_tracking.php:624 #, fuzzy msgid "Structure snapshot" msgstr "Numai structura" -#: db_tracking.php:152 libraries/messages.inc.php:1154 +#: db_tracking.php:152 libraries/messages.inc.php:1150 #, fuzzy msgid "Untracked tables" msgstr "Verificare tabel" -#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1153 +#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1149 #: tbl_structure.php:529 tbl_structure.php:531 #, fuzzy msgid "Track table" msgstr "Verificare tabel" -#: db_tracking.php:200 libraries/messages.inc.php:1121 +#: db_tracking.php:200 libraries/messages.inc.php:1117 #, fuzzy msgid "Database Log" msgstr "Baza de date" -#: export.php:62 libraries/messages.inc.php:312 +#: export.php:62 libraries/messages.inc.php:308 msgid "Selected export type has to be saved in file!" msgstr "Tipul selectat pentru export trebuie salvat într-un fișier!" -#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:567 +#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:563 #, php-format msgid "Insufficient space to save the file %s." msgstr "Spațiu insuficient pentru salvarea fișierului %s." -#: export.php:294 libraries/messages.inc.php:324 +#: export.php:294 libraries/messages.inc.php:320 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -874,17 +874,17 @@ msgstr "" "Fișierul %s există deja pe server. Schimbați denumirea fișierului sau bifați " "opțiunea de suprascriere." -#: export.php:298 export.php:302 libraries/messages.inc.php:562 +#: export.php:298 export.php:302 libraries/messages.inc.php:558 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Serverul web nu poate salva fișierul %s." -#: export.php:629 libraries/messages.inc.php:276 +#: export.php:629 libraries/messages.inc.php:272 #, php-format msgid "Dump has been saved to file %s." msgstr "Copia a fost salvată în fișierul %s." -#: import.php:60 libraries/messages.inc.php:1202 +#: import.php:60 libraries/messages.inc.php:1198 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation%" @@ -894,14 +894,14 @@ msgstr "" "sdocumentație%s pentru căi de ocolire a acestei limite." #: import.php:279 import.php:332 libraries/File.class.php:849 -#: libraries/File.class.php:961 libraries/messages.inc.php:325 +#: libraries/File.class.php:961 libraries/messages.inc.php:321 msgid "File could not be read" msgstr "Fișierul nu poate fi citit" #: import.php:287 import.php:296 import.php:315 import.php:324 #: libraries/File.class.php:1031 libraries/File.class.php:1039 #: libraries/File.class.php:1055 libraries/File.class.php:1063 -#: libraries/messages.inc.php:1189 +#: libraries/messages.inc.php:1185 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -911,7 +911,7 @@ msgstr "" "suportul pentru aceasta nu este implementat, fie este dezactivat de " "configurația dumneavoastră." -#: import.php:337 libraries/messages.inc.php:547 +#: import.php:337 libraries/messages.inc.php:543 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -922,31 +922,31 @@ msgstr "" "configurația PHP-ului dumneavoastră. Vedeți FAQ 1.16." #: import.php:372 libraries/display_import.lib.php:24 -#: libraries/messages.inc.php:125 +#: libraries/messages.inc.php:121 msgid "Could not load import plugins, please check your installation!" msgstr "" "Nu au putut fi încărcate modulele adiționale de import, vă rog verificați " "instalarea!" -#: import.php:397 libraries/messages.inc.php:102 +#: import.php:397 libraries/messages.inc.php:98 msgid "The bookmark has been deleted." msgstr "Eticheta a fost ștearsă." -#: import.php:401 libraries/messages.inc.php:879 +#: import.php:401 libraries/messages.inc.php:875 msgid "Showing bookmark" msgstr "Afișînd semn de carte" -#: import.php:403 libraries/messages.inc.php:101 +#: import.php:403 libraries/messages.inc.php:97 #, php-format msgid "Bookmark %s created" msgstr "Semnul de carte %s a fost creat" -#: import.php:409 import.php:415 libraries/messages.inc.php:407 +#: import.php:409 import.php:415 libraries/messages.inc.php:403 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Importul s-a terminat cu succes, %d interogări executate." -#: import.php:424 libraries/messages.inc.php:1107 +#: import.php:424 libraries/messages.inc.php:1103 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -954,13 +954,13 @@ msgstr "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." -#: index.php:190 libraries/messages.inc.php:553 +#: index.php:190 libraries/messages.inc.php:549 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" "phpMyAdmin are o interfață mai prietenoasă cu un navigator ce lucreaza cu " "cadre." -#: js/messages.php:25 libraries/messages.inc.php:155 +#: js/messages.php:25 libraries/messages.inc.php:151 #: server_synchronize.php:345 server_synchronize.php:357 #: server_synchronize.php:373 server_synchronize.php:380 #: server_synchronize.php:739 server_synchronize.php:767 @@ -968,116 +968,116 @@ msgstr "" msgid "Click to select" msgstr "" -#: js/messages.php:26 libraries/messages.inc.php:156 +#: js/messages.php:26 libraries/messages.inc.php:152 msgid "Click to unselect" msgstr "" #: js/messages.php:27 libraries/import.lib.php:103 -#: libraries/messages.inc.php:550 sql.php:89 +#: libraries/messages.inc.php:546 sql.php:89 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Comenzile \"DROP DATABASE\" sînt dezactivate." -#: js/messages.php:30 libraries/messages.inc.php:270 +#: js/messages.php:30 libraries/messages.inc.php:266 #: libraries/mult_submits.inc.php:258 sql.php:188 msgid "Do you really want to " msgstr "Sigur doriți să " -#: js/messages.php:31 libraries/messages.inc.php:271 +#: js/messages.php:31 libraries/messages.inc.php:267 #: libraries/mult_submits.inc.php:258 sql.php:172 msgid "You are about to DESTROY a complete database!" msgstr "Sînteți pe cale să DISTRUGEȚI o întreagă bază de date!" -#: js/messages.php:34 libraries/messages.inc.php:94 +#: js/messages.php:34 libraries/messages.inc.php:90 msgid "You are about to DISABLE a BLOB Repository!" msgstr "You are about to DISABLE a BLOB Repository!" -#: js/messages.php:35 libraries/messages.inc.php:91 +#: js/messages.php:35 libraries/messages.inc.php:87 #, php-format msgid "Are you sure you want to disable all BLOB references for database %s?" msgstr "Are you sure you want to disable all BLOB references for database %s?" -#: js/messages.php:38 libraries/messages.inc.php:342 +#: js/messages.php:38 libraries/messages.inc.php:338 msgid "Missing value in the form!" msgstr "Valoarea lipsește în formular !" -#: js/messages.php:39 libraries/messages.inc.php:570 +#: js/messages.php:39 libraries/messages.inc.php:566 msgid "This is not a number!" msgstr "Acesta nu este un număr!" -#: js/messages.php:42 libraries/messages.inc.php:380 +#: js/messages.php:42 libraries/messages.inc.php:376 msgid "The host name is empty!" msgstr "Numele gazdei este gol!" -#: js/messages.php:43 libraries/messages.inc.php:1208 +#: js/messages.php:43 libraries/messages.inc.php:1204 msgid "The user name is empty!" msgstr "Numele de utilizator este gol!" -#: js/messages.php:44 libraries/messages.inc.php:607 +#: js/messages.php:44 libraries/messages.inc.php:603 #: server_privileges.php:1197 user_password.php:70 msgid "The password is empty!" msgstr "Parola este goală!" -#: js/messages.php:45 libraries/messages.inc.php:609 +#: js/messages.php:45 libraries/messages.inc.php:605 #: server_privileges.php:1195 user_password.php:73 msgid "The passwords aren't the same!" msgstr "Parolele nu corespund!" -#: js/messages.php:49 libraries/messages.inc.php:123 pmd_general.php:342 +#: js/messages.php:49 libraries/messages.inc.php:119 pmd_general.php:342 #: pmd_general.php:379 msgid "Cancel" msgstr "Renunță" -#: js/messages.php:52 libraries/messages.inc.php:514 +#: js/messages.php:52 libraries/messages.inc.php:510 msgid "Modifications have been saved" msgstr "Modificările au fost salvate" -#: js/messages.php:53 libraries/messages.inc.php:741 +#: js/messages.php:53 libraries/messages.inc.php:737 msgid "Relation deleted" msgstr "Relație ștearsă" -#: js/messages.php:54 libraries/messages.inc.php:340 +#: js/messages.php:54 libraries/messages.inc.php:336 msgid "FOREIGN KEY relation added" msgstr "FOREIGN KEY relation added" -#: js/messages.php:55 libraries/messages.inc.php:434 +#: js/messages.php:55 libraries/messages.inc.php:430 msgid "Internal relation added" msgstr "Relație internă adăugată" -#: js/messages.php:56 libraries/messages.inc.php:299 +#: js/messages.php:56 libraries/messages.inc.php:295 msgid "Error: Relation not added." msgstr "Eroare: Relația nu a fost adăugată." -#: js/messages.php:57 libraries/messages.inc.php:300 +#: js/messages.php:57 libraries/messages.inc.php:296 msgid "Error: relation already exists." msgstr "Eroare: relația deja există." -#: js/messages.php:58 libraries/messages.inc.php:302 +#: js/messages.php:58 libraries/messages.inc.php:298 msgid "Error saving coordinates for Designer." msgstr "Eroare la salvarea coordonatelor pentru Designer." -#: js/messages.php:59 libraries/messages.inc.php:351 +#: js/messages.php:59 libraries/messages.inc.php:347 #: libraries/relation.lib.php:107 msgid "General relation features" msgstr "Facilități generale" -#: js/messages.php:59 libraries/messages.inc.php:260 +#: js/messages.php:59 libraries/messages.inc.php:256 #: libraries/relation.lib.php:101 libraries/relation.lib.php:108 msgid "Disabled" msgstr "Dezactivat" -#: js/messages.php:60 libraries/messages.inc.php:850 +#: js/messages.php:60 libraries/messages.inc.php:846 msgid "Select referenced key" msgstr "Alegere cheie referențiată" -#: js/messages.php:61 libraries/messages.inc.php:848 +#: js/messages.php:61 libraries/messages.inc.php:844 msgid "Select Foreign Key" msgstr "Alegeți cheia străină" -#: js/messages.php:62 libraries/messages.inc.php:653 +#: js/messages.php:62 libraries/messages.inc.php:649 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 libraries/messages.inc.php:142 pmd_general.php:77 +#: js/messages.php:63 libraries/messages.inc.php:138 pmd_general.php:77 #: tbl_relation.php:548 msgid "Choose field to display" msgstr "Selectează un cîmp" @@ -1096,9 +1096,9 @@ msgid "Prev" msgstr "Anterior" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2332 -#: libraries/common.lib.php:2335 libraries/display_tbl.lib.php:338 -#: libraries/messages.inc.php:543 server_binlog.php:205 server_binlog.php:207 +#: js/messages.php:77 libraries/common.lib.php:2344 +#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: libraries/messages.inc.php:539 server_binlog.php:205 server_binlog.php:207 #: tbl_printview.php:424 tbl_structure.php:802 msgid "Next" msgstr "Următorul" @@ -1173,27 +1173,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1543 +#: js/messages.php:97 libraries/common.lib.php:1555 msgid "Jan" msgstr "Ian" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1545 +#: js/messages.php:99 libraries/common.lib.php:1557 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1547 +#: js/messages.php:101 libraries/common.lib.php:1559 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1549 +#: js/messages.php:103 libraries/common.lib.php:1561 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1551 +#: js/messages.php:105 libraries/common.lib.php:1563 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1201,37 +1201,37 @@ msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1553 +#: js/messages.php:107 libraries/common.lib.php:1565 msgid "Jun" msgstr "Iun" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1555 +#: js/messages.php:109 libraries/common.lib.php:1567 msgid "Jul" msgstr "Iul" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1557 +#: js/messages.php:111 libraries/common.lib.php:1569 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1559 +#: js/messages.php:113 libraries/common.lib.php:1571 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1561 +#: js/messages.php:115 libraries/common.lib.php:1573 msgid "Oct" msgstr "Oct" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1563 +#: js/messages.php:117 libraries/common.lib.php:1575 msgid "Nov" msgstr "Noi" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1565 +#: js/messages.php:119 libraries/common.lib.php:1577 msgid "Dec" msgstr "Dec" @@ -1272,37 +1272,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1568 +#: js/messages.php:132 libraries/common.lib.php:1580 msgid "Sun" msgstr "Dum" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1570 +#: js/messages.php:134 libraries/common.lib.php:1582 msgid "Mon" msgstr "Lun" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1572 +#: js/messages.php:136 libraries/common.lib.php:1584 msgid "Tue" msgstr "Mar" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1574 +#: js/messages.php:138 libraries/common.lib.php:1586 msgid "Wed" msgstr "Mie" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1576 +#: js/messages.php:140 libraries/common.lib.php:1588 msgid "Thu" msgstr "Joi" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1578 +#: js/messages.php:142 libraries/common.lib.php:1590 msgid "Fri" msgstr "Vin" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1580 +#: js/messages.php:144 libraries/common.lib.php:1592 msgid "Sat" msgstr "Sâm" @@ -1378,21 +1378,21 @@ msgstr "în folosință" msgid "Second" msgstr "pe secundă" -#: libraries/Config.class.php:1015 libraries/messages.inc.php:338 +#: libraries/Config.class.php:1015 libraries/messages.inc.php:334 msgid "Font size" msgstr "Dimensiune font" #: libraries/File.class.php:344 libraries/File.class.php:432 #: libraries/File.class.php:569 libraries/File.class.php:708 -#: libraries/messages.inc.php:1201 +#: libraries/messages.inc.php:1197 msgid "Unknown error in file upload." msgstr "Eroare necunoscută la încărcarea fișierului." -#: libraries/File.class.php:414 libraries/messages.inc.php:1198 +#: libraries/File.class.php:414 libraries/messages.inc.php:1194 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "Fișierul încărcat depășește condiția upload_max_filesize din php.ini." -#: libraries/File.class.php:417 libraries/messages.inc.php:1197 +#: libraries/File.class.php:417 libraries/messages.inc.php:1193 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -1400,56 +1400,56 @@ msgstr "" "Fișierul încărcat depășește directiva MAX_FILE_SIZE specificată în " "formularul HTML." -#: libraries/File.class.php:420 libraries/messages.inc.php:1200 +#: libraries/File.class.php:420 libraries/messages.inc.php:1196 msgid "The uploaded file was only partially uploaded." msgstr "Fișierul a fost încărcat numai parțial." -#: libraries/File.class.php:423 libraries/messages.inc.php:1199 +#: libraries/File.class.php:423 libraries/messages.inc.php:1195 msgid "Missing a temporary folder." msgstr "Lipsește un dosar temporar." -#: libraries/File.class.php:426 libraries/messages.inc.php:1195 +#: libraries/File.class.php:426 libraries/messages.inc.php:1191 msgid "Failed to write file to disk." msgstr "Eșec la scrierea fișierului pe disc." -#: libraries/File.class.php:429 libraries/messages.inc.php:1196 +#: libraries/File.class.php:429 libraries/messages.inc.php:1192 msgid "File upload stopped by extension." msgstr "Încărcarea fișierului a fost împiedicată de extensie." -#: libraries/File.class.php:908 libraries/messages.inc.php:319 +#: libraries/File.class.php:908 libraries/messages.inc.php:315 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "Eroare la mutarea fișierului încărcat, vezi FAQ 1.11" -#: libraries/Index.class.php:428 libraries/messages.inc.php:554 +#: libraries/Index.class.php:428 libraries/messages.inc.php:550 #: tbl_relation.php:529 msgid "No index defined!" msgstr "Index nu este definit!" -#: libraries/Index.class.php:433 libraries/messages.inc.php:411 +#: libraries/Index.class.php:433 libraries/messages.inc.php:407 #: server_databases.php:132 tbl_tracking.php:316 msgid "Indexes" msgstr "Indexuri" -#: libraries/Index.class.php:444 libraries/messages.inc.php:1186 +#: libraries/Index.class.php:444 libraries/messages.inc.php:1182 #: 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:475 tbl_tracking.php:322 msgid "Unique" msgstr "Unic" -#: libraries/Index.class.php:445 libraries/messages.inc.php:596 +#: libraries/Index.class.php:445 libraries/messages.inc.php:592 #: tbl_tracking.php:323 msgid "Packed" msgstr "Împachetat" -#: libraries/Index.class.php:447 libraries/messages.inc.php:131 +#: libraries/Index.class.php:447 libraries/messages.inc.php:127 #: tbl_tracking.php:325 msgid "Cardinality" msgstr "Cardinalitate" -#: libraries/Index.class.php:450 libraries/messages.inc.php:162 +#: libraries/Index.class.php:450 libraries/messages.inc.php:158 #: tbl_tracking.php:279 tbl_tracking.php:328 msgid "Comment" msgstr "Comentariu" @@ -1457,29 +1457,29 @@ msgstr "Comentariu" #: libraries/Index.class.php:466 libraries/common.lib.php:616 #: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:280 pdf_pages.php:280 +#: libraries/messages.inc.php:276 pdf_pages.php:280 #: setup/frames/index.inc.php:124 setup/lib/messages.inc.php:352 #: tbl_row_action.php:69 msgid "Edit" msgstr "Editare" -#: libraries/Index.class.php:472 libraries/messages.inc.php:666 +#: libraries/Index.class.php:472 libraries/messages.inc.php:662 msgid "The primary key has been dropped" msgstr "Cheia primară a fost aruncată" -#: libraries/Index.class.php:476 libraries/messages.inc.php:413 +#: libraries/Index.class.php:476 libraries/messages.inc.php:409 #, php-format msgid "Index %s has been dropped" msgstr "Indexul %s a fost aruncat" -#: libraries/Index.class.php:576 libraries/messages.inc.php:412 +#: libraries/Index.class.php:576 libraries/messages.inc.php:408 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "Indecșii %1$s și %2$s par a fi egali și unul din ei poate fi șters." -#: libraries/List_Database.class.php:431 libraries/messages.inc.php:218 +#: libraries/List_Database.class.php:431 libraries/messages.inc.php:214 #: libraries/server_links.inc.php:41 server_databases.php:88 #: server_privileges.php:1621 setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" @@ -1512,87 +1512,87 @@ msgstr[0] "%1$d rînd(uri) inserat(e)." msgstr[1] "%1$d rînd(uri) inserat(e)." msgstr[2] "%1$d rînd(uri) inserat(e)." -#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:549 +#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:545 msgid "" "There is no detailed status information available for this storage engine." msgstr "" "Nu există informații detaliate de stare disponibile pentru motorul de " "stocare." -#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:291 +#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:287 #, php-format msgid "%s is available on this MySQL server." msgstr "%s este disponibil pentru acest server MySQL." -#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:292 +#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:288 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s a fost dezactivat pentru acest server MySQL." -#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:294 +#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:290 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "Acest server MySQL nu susține motorul de stocare %s." -#: libraries/Table.class.php:1019 libraries/messages.inc.php:443 +#: libraries/Table.class.php:1019 libraries/messages.inc.php:439 msgid "Invalid database" msgstr "Bază de date nevalidă" -#: libraries/Table.class.php:1033 libraries/messages.inc.php:450 +#: libraries/Table.class.php:1033 libraries/messages.inc.php:446 #: tbl_get_field.php:26 msgid "Invalid table name" msgstr "Denumire de tabel nevalidă" -#: libraries/Table.class.php:1048 libraries/messages.inc.php:301 +#: libraries/Table.class.php:1048 libraries/messages.inc.php:297 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "Eroare la redenumirea tabelului %1$s în %2$s" -#: libraries/Table.class.php:1132 libraries/messages.inc.php:754 +#: libraries/Table.class.php:1132 libraries/messages.inc.php:750 #, php-format msgid "Table %s has been renamed to %s" msgstr "Tabelului %s i s-a dat un numele de %s" -#: libraries/Theme.class.php:162 libraries/messages.inc.php:1099 +#: libraries/Theme.class.php:162 libraries/messages.inc.php:1095 #, php-format msgid "No valid image path for theme %s found!" msgstr "No valid image path for theme %s found!" -#: libraries/Theme.class.php:384 libraries/messages.inc.php:1097 +#: libraries/Theme.class.php:384 libraries/messages.inc.php:1093 msgid "No preview available." msgstr "Nici o previzualizare disponibilă." -#: libraries/Theme.class.php:387 libraries/messages.inc.php:1089 +#: libraries/Theme.class.php:387 libraries/messages.inc.php:1085 msgid "take it" msgstr "alege" -#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1096 +#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1092 #, php-format msgid "Default theme %s not found!" msgstr "Tema implicită %s nu a fost găsită!" -#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1098 +#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1094 #, php-format msgid "Theme %s not found!" msgstr "Tema %s nu a fost găsită!" -#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1100 +#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1096 #, php-format msgid "Theme path not found for theme %s!" msgstr "Calea temei nu a fost găsită pentru tema %s!" -#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1101 +#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1097 #: test/theme.php:161 themes.php:21 themes.php:41 msgid "Theme / Style" msgstr "Șablon/stil" -#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:172 +#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:168 msgid "Cannot connect: invalid settings." msgstr "Conexiune esuata: setari invalide." #: libraries/auth/config.auth.lib.php:92 #: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65 -#: libraries/messages.inc.php:1238 test/theme.php:152 +#: libraries/messages.inc.php:1234 test/theme.php:152 #, php-format msgid "Welcome to %s" msgstr "Bine ați venit la %s" @@ -1619,51 +1619,51 @@ msgstr "" "fișierul de configurare și asigurați-vă că ele corespund informațiilor " "furnizate de administratorul serverului MySQL." -#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:488 +#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:484 msgid "Log in" msgstr "Autentificare" #: libraries/auth/cookie.auth.lib.php:246 -#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:659 +#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:655 #: libraries/navigation_header.inc.php:93 #: libraries/navigation_header.inc.php:95 msgid "phpMyAdmin documentation" msgstr "Documentație phpMyAdmin" #: libraries/auth/cookie.auth.lib.php:258 -#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:492 +#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:488 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:493 +#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:489 msgid "Server:" msgstr "Server" -#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:494 +#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:490 msgid "Username:" msgstr "Nume utilizator:" -#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:491 +#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:487 msgid "Password:" msgstr "Parolă:" -#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:854 +#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:850 msgid "Server Choice" msgstr "Alegerea serverului" #: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 -#: libraries/messages.inc.php:177 +#: libraries/messages.inc.php:173 msgid "Cookies must be enabled past this point." msgstr "Trebuie sa aveti activat \"cookies\"." #: libraries/auth/cookie.auth.lib.php:671 -#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:489 +#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:485 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" #: libraries/auth/cookie.auth.lib.php:675 -#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:544 +#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:540 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" @@ -1672,53 +1672,53 @@ msgstr "" #: libraries/auth/cookie.auth.lib.php:685 #: libraries/auth/cookie.auth.lib.php:687 -#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:126 +#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:122 msgid "Cannot log in to the MySQL server" msgstr "Nu pot face conexiunea catre serverul MySQL" -#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1245 +#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1241 msgid "Wrong username/password. Access denied." msgstr "Nume de utilizator/parolă incorecte. Accesul interzis." #: libraries/auth/swekey/swekey.auth.lib.php:118 -#: libraries/messages.inc.php:1057 +#: libraries/messages.inc.php:1053 #, php-format msgid "File %s does not contain any key id" msgstr "File %s does not contain any key id" #: libraries/auth/swekey/swekey.auth.lib.php:157 #: libraries/auth/swekey/swekey.auth.lib.php:180 -#: libraries/messages.inc.php:1056 +#: libraries/messages.inc.php:1052 msgid "Hardware authentication failed" msgstr "Hardware authentication failed" #: libraries/auth/swekey/swekey.auth.lib.php:166 -#: libraries/messages.inc.php:1058 +#: libraries/messages.inc.php:1054 msgid "No valid authentication key plugged" msgstr "No valid authentication key plugged" #: libraries/auth/swekey/swekey.auth.lib.php:202 -#: libraries/messages.inc.php:1055 +#: libraries/messages.inc.php:1051 msgid "Authenticating..." msgstr "Authenticating..." -#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1230 +#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1226 msgid "View image" msgstr "Vizualizează imaginea" -#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:652 +#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:648 msgid "Play audio" msgstr "Redă audio" -#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1232 +#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1228 msgid "View video" msgstr "Vizualizează video" -#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:269 +#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:265 msgid "Download file" msgstr "Descarcă fișierul" -#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:128 +#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:124 msgid "" "Couldn't load the iconv or recode extension needed for charset conversion. " "Either configure PHP to enable these extensions or disable charset " @@ -1730,7 +1730,7 @@ msgstr "" #: libraries/charset_conversion.lib.php:79 #: libraries/charset_conversion.lib.php:90 -#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:130 +#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:126 msgid "" "Couldn't use the iconv, libiconv, or recode_string functions, although the " "necessary extensions appear to be loaded. Check your PHP configuration." @@ -1738,7 +1738,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/messages.inc.php:170 +#: libraries/common.inc.php:583 libraries/messages.inc.php:166 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!" @@ -1774,7 +1774,7 @@ msgstr "" msgid "Invalid server index: %s" msgstr "Index de server nevalid: „%s”" -#: libraries/common.inc.php:636 libraries/messages.inc.php:448 +#: libraries/common.inc.php:636 libraries/messages.inc.php:444 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" @@ -1782,16 +1782,16 @@ msgstr "" "dumneavoastră." #: libraries/common.inc.php:645 libraries/header.inc.php:96 -#: libraries/messages.inc.php:856 libraries/select_server.lib.php:41 +#: libraries/messages.inc.php:852 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/messages.inc.php:437 +#: libraries/common.inc.php:823 libraries/messages.inc.php:433 msgid "Invalid authentication method set in configuration:" msgstr "Metodă de autentificare nevalidă stabilită în configurație:" -#: libraries/common.lib.php:147 libraries/messages.inc.php:499 +#: libraries/common.lib.php:147 libraries/messages.inc.php:495 #, php-format msgid "Max: %s%s" msgstr "Mărime maximă: %s%s" @@ -1812,7 +1812,7 @@ msgstr "en" #: libraries/common.lib.php:428 libraries/common.lib.php:430 #: libraries/common.lib.php:432 libraries/common.lib.php:448 #: libraries/common.lib.php:450 libraries/dbg/setup.php:25 -#: libraries/display_export.lib.php:164 libraries/messages.inc.php:267 +#: libraries/display_export.lib.php:164 libraries/messages.inc.php:263 #: libraries/relation.lib.php:97 libraries/sql_query_form.lib.php:451 #: libraries/sql_query_form.lib.php:454 main.php:229 pdf_pages.php:37 #: pdf_pages.php:43 pdf_pages.php:49 pdf_pages.php:54 @@ -1822,55 +1822,55 @@ msgstr "Documentație" #: libraries/common.lib.php:581 libraries/core.lib.php:234 #: libraries/core.lib.php:263 libraries/import.lib.php:134 -#: libraries/messages.inc.php:297 pdf_schema.php:32 pdf_schema.php:232 +#: libraries/messages.inc.php:293 pdf_schema.php:32 pdf_schema.php:232 #: tbl_change.php:1027 tbl_operations.php:213 tbl_relation.php:290 #: view_operations.php:62 msgid "Error" msgstr "Eroare" #: libraries/common.lib.php:595 libraries/header_printview.inc.php:61 -#: libraries/messages.inc.php:1023 server_processlist.php:60 +#: libraries/messages.inc.php:1019 server_processlist.php:60 #: server_status.php:247 msgid "SQL query" msgstr "Comanda SQL" -#: libraries/common.lib.php:634 libraries/messages.inc.php:538 +#: libraries/common.lib.php:634 libraries/messages.inc.php:534 msgid "MySQL said: " msgstr "MySQL zice: " -#: libraries/common.lib.php:667 libraries/messages.inc.php:76 +#: libraries/common.lib.php:667 libraries/messages.inc.php:72 #: pdf_schema.php:241 user_password.php:115 msgid "Back" msgstr "Înapoi" -#: libraries/common.lib.php:1177 libraries/messages.inc.php:309 +#: libraries/common.lib.php:1177 libraries/messages.inc.php:305 #: setup/lib/messages.inc.php:353 msgid "Explain SQL" msgstr "Explică SQL" -#: libraries/common.lib.php:1180 libraries/messages.inc.php:551 +#: libraries/common.lib.php:1180 libraries/messages.inc.php:547 msgid "Skip Explain SQL" msgstr "Sari peste explicarea SQL" -#: libraries/common.lib.php:1212 libraries/messages.inc.php:563 +#: libraries/common.lib.php:1212 libraries/messages.inc.php:559 msgid "Without PHP Code" msgstr "fără cod PHP" -#: libraries/common.lib.php:1215 libraries/messages.inc.php:649 +#: libraries/common.lib.php:1215 libraries/messages.inc.php:645 #: setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "Creează cod PHP" -#: libraries/common.lib.php:1233 libraries/messages.inc.php:737 +#: libraries/common.lib.php:1233 libraries/messages.inc.php:733 #: server_status.php:341 setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "Reîncarcă" -#: libraries/common.lib.php:1242 libraries/messages.inc.php:575 +#: libraries/common.lib.php:1242 libraries/messages.inc.php:571 msgid "Skip Validate SQL" msgstr "Sari peste validarea SQL" -#: libraries/common.lib.php:1245 libraries/messages.inc.php:1220 +#: libraries/common.lib.php:1245 libraries/messages.inc.php:1216 #: setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "Validează SQL" @@ -1886,11 +1886,11 @@ msgid "Inline" msgstr "Motoare" #: libraries/common.lib.php:1332 libraries/common.lib.php:1347 -#: libraries/messages.inc.php:713 +#: libraries/messages.inc.php:709 msgid "Profiling" msgstr "Creare profil" -#: libraries/common.lib.php:1351 libraries/messages.inc.php:1108 +#: libraries/common.lib.php:1351 libraries/messages.inc.php:1104 #: libraries/tbl_triggers.lib.php:28 server_processlist.php:58 msgid "Time" msgstr "Timp" @@ -1924,46 +1924,56 @@ msgstr "PiO" msgid "EiB" msgstr "EiO" +#. l10n: Thousands separator +#: libraries/common.lib.php:1417 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: libraries/common.lib.php:1419 +msgid "." +msgstr "." + #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1584 +#: libraries/common.lib.php:1596 #: libraries/transformations/text_plain__dateformat.inc.php:28 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y la %H:%M" -#: libraries/common.lib.php:1886 +#: libraries/common.lib.php:1898 #, 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:2301 libraries/common.lib.php:2304 -#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:664 +#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:660 #: server_status.php:608 msgid "Begin" msgstr "Începe" -#: libraries/common.lib.php:2302 libraries/common.lib.php:2305 -#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:665 +#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:661 #: server_binlog.php:168 server_binlog.php:170 msgid "Previous" msgstr "Anterior" -#: libraries/common.lib.php:2333 libraries/common.lib.php:2336 -#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:289 +#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:285 msgid "End" msgstr "Sfîrșit" -#: libraries/common.lib.php:2409 libraries/messages.inc.php:455 +#: libraries/common.lib.php:2421 libraries/messages.inc.php:451 #, php-format msgid "Jump to database "%s"." msgstr "Sari la baza de date "%s"." -#: libraries/common.lib.php:2429 libraries/messages.inc.php:461 +#: libraries/common.lib.php:2441 libraries/messages.inc.php:457 #, 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/core.lib.php:286 libraries/dbg/setup.php:22 -#: libraries/messages.inc.php:127 +#: libraries/messages.inc.php:123 #, php-format msgid "" "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " @@ -1973,115 +1983,115 @@ msgstr "" "PHP." #: libraries/db_events.inc.php:20 libraries/db_events.inc.php:22 -#: libraries/export/sql.php:415 libraries/messages.inc.php:306 +#: libraries/export/sql.php:415 libraries/messages.inc.php:302 msgid "Events" msgstr "Evenimente" #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 -#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:541 +#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:537 #: libraries/tbl_triggers.lib.php:27 setup/frames/index.inc.php:112 msgid "Name" msgstr "Nume" -#: libraries/db_links.inc.php:45 libraries/messages.inc.php:216 +#: libraries/db_links.inc.php:45 libraries/messages.inc.php:212 #, php-format msgid "Database %s has been dropped." msgstr "Baza de date %s a fost aruncată." #: libraries/db_links.inc.php:57 libraries/db_links.inc.php:58 -#: libraries/db_links.inc.php:59 libraries/messages.inc.php:234 +#: libraries/db_links.inc.php:59 libraries/messages.inc.php:230 msgid "Database seems to be empty!" msgstr "Baza de date pare a fi goală!" -#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1025 +#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1021 #: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60 #: querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1152 +#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1148 #: libraries/tbl_links.inc.php:69 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:86 libraries/messages.inc.php:719 +#: libraries/db_links.inc.php:86 libraries/messages.inc.php:715 msgid "Query" msgstr "Interogare prin exemplu" -#: libraries/db_links.inc.php:91 libraries/messages.inc.php:253 +#: libraries/db_links.inc.php:91 libraries/messages.inc.php:249 msgid "Designer" msgstr "Designer" -#: libraries/db_links.inc.php:98 libraries/messages.inc.php:397 +#: libraries/db_links.inc.php:98 libraries/messages.inc.php:393 #: libraries/server_links.inc.php:88 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:104 libraries/messages.inc.php:587 +#: libraries/db_links.inc.php:104 libraries/messages.inc.php:583 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" msgstr "Operații" -#: libraries/db_links.inc.php:111 libraries/messages.inc.php:709 +#: libraries/db_links.inc.php:111 libraries/messages.inc.php:705 #: libraries/server_links.inc.php:66 server_privileges.php:72 #: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117 msgid "Privileges" msgstr "Drepturi de acces" #: libraries/db_routines.inc.php:30 libraries/db_routines.inc.php:32 -#: libraries/messages.inc.php:812 +#: libraries/messages.inc.php:808 msgid "Routines" msgstr "Rutine" -#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:811 +#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:807 msgid "Return type" msgstr "Tipul întors" #: libraries/db_structure.lib.php:57 libraries/display_tbl.lib.php:1848 -#: libraries/messages.inc.php:65 +#: libraries/messages.inc.php:61 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "Poate fi aproximativ. Vezi FAQ 3.11" -#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:593 +#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:589 #: server_databases.php:142 tbl_printview.php:336 tbl_structure.php:683 msgid "Overhead" msgstr "Asupra" #: libraries/dbi/mysql.dbi.lib.php:112 libraries/dbi/mysqli.dbi.lib.php:124 -#: libraries/messages.inc.php:176 +#: libraries/messages.inc.php:172 msgid "Connection for controluser as defined in your configuration failed." msgstr "Connection for controluser as defined in your configuration failed." #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 -#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:855 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:851 msgid "The server is not responding" msgstr "Serverul nu răspunde" #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:1010 +#: libraries/messages.inc.php:1006 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 libraries/messages.inc.php:255 +#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:251 #: tbl_structure.php:609 msgid "Details..." msgstr "Detalii..." -#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:143 +#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:139 #: main.php:91 user_password.php:111 user_password.php:129 msgid "Change password" msgstr "Schimbare parolă" -#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:561 +#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:557 #: libraries/replication_gui.lib.php:341 server_privileges.php:768 msgid "No Password" msgstr "Nu există parolă" -#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:610 +#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:606 #: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60 #: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335 #: libraries/replication_gui.lib.php:345 server_privileges.php:757 @@ -2090,13 +2100,13 @@ msgstr "Nu există parolă" msgid "Password" msgstr "Parola" -#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:806 +#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:802 #: libraries/replication_gui.lib.php:349 libraries/replication_gui.lib.php:352 #: server_privileges.php:776 server_privileges.php:779 msgid "Re-type" msgstr "Re-tastează" -#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:608 +#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:604 msgid "Password Hashing" msgstr "Password Hashing" @@ -2106,91 +2116,91 @@ msgstr "Password Hashing" msgid "MySQL 4.0 compatible" msgstr "Compatibil MySQL 4.0" -#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:353 +#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:349 #: libraries/replication_gui.lib.php:356 server_privileges.php:783 msgid "Generate Password" msgstr "Generează parolă" -#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:352 +#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:348 #: libraries/replication_gui.lib.php:359 server_privileges.php:786 msgid "Generate" msgstr "Generează" #: libraries/display_create_database.lib.php:22 -#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:189 +#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:185 msgid "Create new database" msgstr "Creează bază de date nouă" -#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:185 +#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:181 msgid "Create" msgstr "Creează" -#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:564 +#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:560 #: server_privileges.php:74 server_privileges.php:1388 #: server_replication.php:35 msgid "No Privileges" msgstr "Nu există drepturi de acces" -#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:445 +#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:441 msgid "Table must have at least one field." msgstr "Tabelul trebuie să conțină cel puțin un cîmp." -#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:190 +#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:186 #, php-format msgid "Create table on database %s" msgstr "Creează tabel nou în baza de date %s" -#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:577 +#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:573 msgid "Number of fields" msgstr "Număr de cîmpuri" -#: libraries/display_export.lib.php:42 libraries/messages.inc.php:124 +#: libraries/display_export.lib.php:42 libraries/messages.inc.php:120 msgid "Could not load export plugins, please check your installation!" msgstr "" "Nu au putut fi încărcate modulele de export adiționale, vă rog verificați " "instalarea!" -#: libraries/display_export.lib.php:107 libraries/messages.inc.php:277 +#: libraries/display_export.lib.php:107 libraries/messages.inc.php:273 #, php-format msgid "Dump %s row(s) starting at record # %s" msgstr "Aruncă %s rînduri, începînd de la rîndul %s." -#: libraries/display_export.lib.php:115 libraries/messages.inc.php:274 +#: libraries/display_export.lib.php:115 libraries/messages.inc.php:270 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:125 libraries/messages.inc.php:852 +#: libraries/display_export.lib.php:125 libraries/messages.inc.php:848 #: setup/lib/messages.inc.php:82 msgid "Save as file" msgstr "Trimite" -#: libraries/display_export.lib.php:134 libraries/messages.inc.php:828 +#: libraries/display_export.lib.php:134 libraries/messages.inc.php:824 #, php-format msgid "Save on server in %s directory" msgstr "Salveaza pe server în directorul %s" -#: libraries/display_export.lib.php:142 libraries/messages.inc.php:594 +#: libraries/display_export.lib.php:142 libraries/messages.inc.php:590 #: setup/lib/messages.inc.php:90 msgid "Overwrite existing file(s)" msgstr "Suprascrie fișier(e) existent(e)" -#: libraries/display_export.lib.php:148 libraries/messages.inc.php:330 +#: libraries/display_export.lib.php:148 libraries/messages.inc.php:326 msgid "File name template" msgstr "Șablon nume fișier" -#: libraries/display_export.lib.php:152 libraries/messages.inc.php:327 +#: libraries/display_export.lib.php:152 libraries/messages.inc.php:323 msgid "server name" msgstr "nume server" -#: libraries/display_export.lib.php:155 libraries/messages.inc.php:326 +#: libraries/display_export.lib.php:155 libraries/messages.inc.php:322 msgid "database name" msgstr "nume bază de date" -#: libraries/display_export.lib.php:158 libraries/messages.inc.php:328 +#: libraries/display_export.lib.php:158 libraries/messages.inc.php:324 msgid "table name" msgstr "nume tabel" -#: libraries/display_export.lib.php:162 libraries/messages.inc.php:329 +#: libraries/display_export.lib.php:162 libraries/messages.inc.php:325 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2201,24 +2211,24 @@ msgstr "" "formatting strings. Additionally the following transformations will happen: %" "3$s. Other text will be kept as is." -#: libraries/display_export.lib.php:202 libraries/messages.inc.php:331 +#: libraries/display_export.lib.php:202 libraries/messages.inc.php:327 msgid "remember template" msgstr "ține minte șablonul" #: libraries/display_export.lib.php:210 libraries/display_import.lib.php:178 -#: libraries/display_import.lib.php:191 libraries/messages.inc.php:145 +#: libraries/display_import.lib.php:191 libraries/messages.inc.php:141 #: libraries/sql_query_form.lib.php:549 msgid "Character set of the file:" msgstr "Setul de caractere al fișierului:" -#: libraries/display_export.lib.php:235 libraries/messages.inc.php:166 +#: libraries/display_export.lib.php:235 libraries/messages.inc.php:162 #: setup/lib/messages.inc.php:84 msgid "Compression" 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/messages.inc.php:558 +#: libraries/export/sql.php:868 libraries/messages.inc.php:554 #: libraries/tbl_properties.inc.php:575 server_privileges.php:1836 #: server_processlist.php:75 msgid "None" @@ -2242,67 +2252,67 @@ msgstr "cu „gzip”" msgid "bzipped" msgstr "cu „bzip2”" -#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1018 +#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1014 msgid "SQL compatibility mode" msgstr "Regim de compatibilitate SQL" -#: libraries/display_import.lib.php:67 libraries/messages.inc.php:398 +#: libraries/display_import.lib.php:67 libraries/messages.inc.php:394 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " "browsers." msgstr "" -#: libraries/display_import.lib.php:77 libraries/messages.inc.php:406 +#: libraries/display_import.lib.php:77 libraries/messages.inc.php:402 msgid "The file is being processed, please be patient." msgstr "" -#: libraries/display_import.lib.php:99 libraries/messages.inc.php:408 +#: libraries/display_import.lib.php:99 libraries/messages.inc.php:404 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." msgstr "" -#: libraries/display_import.lib.php:126 libraries/messages.inc.php:333 +#: libraries/display_import.lib.php:126 libraries/messages.inc.php:329 msgid "File to import" msgstr "Fișier de importat" -#: libraries/display_import.lib.php:137 libraries/messages.inc.php:486 +#: libraries/display_import.lib.php:137 libraries/messages.inc.php:482 #: libraries/sql_query_form.lib.php:524 msgid "Location of the text file" msgstr "Locația fișierului textual" -#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1203 +#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1199 msgid "File uploads are not allowed on this server." msgstr "Încărcările de fișiere nu sînt permise pe acest server." -#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1235 +#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1231 #: libraries/sql_query_form.lib.php:533 tbl_change.php:1028 msgid "The directory you set for upload work cannot be reached" msgstr "Directorul stabilit pentru încărcare nu poate fi găsit" -#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1236 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1232 #: libraries/sql_query_form.lib.php:536 tbl_change.php:1031 msgid "web server upload directory" msgstr "director de încărcare al serverului Web" -#: libraries/display_import.lib.php:212 libraries/messages.inc.php:167 +#: libraries/display_import.lib.php:212 libraries/messages.inc.php:163 #, php-format msgid "Imported file compression will be automatically detected from: %s" msgstr "Compresia fișierului importat va fi detectată automat din: %s" -#: libraries/display_import.lib.php:219 libraries/messages.inc.php:600 +#: libraries/display_import.lib.php:219 libraries/messages.inc.php:596 msgid "Partial import" msgstr "Importare parțială" -#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1105 +#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1101 #, php-format msgid "" "Previous import timed out, after resubmitting will continue from position %d." msgstr "" "Previous import timed out, after resubmitting will continue from position %d." -#: libraries/display_import.lib.php:232 libraries/messages.inc.php:51 +#: libraries/display_import.lib.php:232 libraries/messages.inc.php:47 msgid "" "Allow the interruption of an import in case the script detects it is close " "to the PHP timeout limit. This might be good way to import large files, " @@ -2312,177 +2322,177 @@ msgstr "" "apropie de limita de timp. Aceasta poate fi o metodă bună de a importa " "fișiere mari, deși poate strica tranzacții." -#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1004 +#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1000 #: setup/lib/messages.inc.php:161 msgid "Number of records (queries) to skip from start" msgstr "Number of records(queries) to skip from start" -#: libraries/display_import.lib.php:255 libraries/messages.inc.php:396 +#: libraries/display_import.lib.php:255 libraries/messages.inc.php:392 #: setup/lib/messages.inc.php:160 msgid "Format of imported file" msgstr "Formatul fișierului importat" #: libraries/display_select_lang.lib.php:45 -#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:465 +#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:461 #: setup/frames/index.inc.php:70 msgid "Language" msgstr "Limbă" -#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:447 +#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:443 #, php-format msgid "%d is not valid row number." msgstr "%d nu este un număr valid de rînduri." -#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:814 +#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:810 msgid "row(s) starting from record #" msgstr "linii începînd cu" -#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:817 +#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:813 msgid "horizontal" msgstr "orizontal" -#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:816 +#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:812 msgid "horizontal (rotated headers)" msgstr "orizontal (colontitlu rotativ)" -#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:819 +#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:815 msgid "vertical" msgstr "vertical" -#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:818 +#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:814 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "în mod %s și repetare colontitlu după %s celule" -#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:495 +#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:491 msgid "This operation could take a long time. Proceed anyway?" msgstr "Această operație poate dura. Doriți totuși să fie executată?" -#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1012 +#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1008 msgid "Sort by key" msgstr "Sortare după cheie" #: libraries/display_tbl.lib.php:555 libraries/import.lib.php:1082 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:591 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:587 #: tbl_select.php:267 tbl_structure.php:754 msgid "Options" msgstr "Opțiuni" #: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:570 -#: libraries/messages.inc.php:601 +#: libraries/messages.inc.php:597 msgid "Partial Texts" msgstr "Texte parțiale" #: libraries/display_tbl.lib.php:561 libraries/display_tbl.lib.php:574 -#: libraries/messages.inc.php:346 +#: libraries/messages.inc.php:342 msgid "Full Texts" msgstr "Texte întregi" -#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:739 +#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:735 msgid "Relational key" msgstr "Cheie relațională" -#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:738 +#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:734 msgid "Relational display field" msgstr "Relational display field" -#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:872 +#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:868 msgid "Show binary contents" msgstr "" -#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:873 +#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:869 msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:871 +#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:867 msgid "Show binary contents as HEX" msgstr "" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:375 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:371 #: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320 msgid "Hide" msgstr "Ascunde" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:508 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:504 #: libraries/tbl_properties.inc.php:144 transformation_overview.php:47 msgid "Browser transformation" msgstr "Transformare navigator" #: libraries/display_tbl.lib.php:1126 libraries/display_tbl.lib.php:1130 -#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:308 +#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:304 msgid "Execute bookmarked query" msgstr "Executare comandă marcată" #: libraries/display_tbl.lib.php:1145 libraries/display_tbl.lib.php:1157 -#: libraries/messages.inc.php:244 +#: libraries/messages.inc.php:240 msgid "The row has been deleted" msgstr "Linia a fost ștearsă" #: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056 -#: libraries/messages.inc.php:460 server_processlist.php:71 +#: libraries/messages.inc.php:456 server_processlist.php:71 #: tbl_row_action.php:64 msgid "Kill" msgstr "Oprește" -#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:849 +#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:845 msgid "in query" msgstr "în interogarea" -#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:881 +#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:877 msgid "Showing rows" msgstr "Afișează înregistrări" -#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1113 +#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1109 msgid "total" msgstr "total" -#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:727 +#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:723 #: sql.php:524 #, php-format msgid "Query took %01.4f sec" msgstr "comanda a durat %01.4f sec" -#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:135 +#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:131 #: 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:471 msgid "Change" msgstr "Schimbare" -#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:724 +#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:720 msgid "Query results operations" msgstr "Operațiuni asupra rezultatelor interogării" -#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:671 +#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:667 msgid "Print view (with full texts)" msgstr "Vizualizare listare (împreună cu text)" -#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:482 +#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:478 msgid "Link not found" msgstr "Legatură nevalidă" -#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1224 +#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1220 #: main.php:228 msgid "Version information" msgstr "Informații despre versiune" -#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:423 +#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:419 msgid "Data home directory" msgstr "Directorul de bază pentru date" -#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:424 +#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:420 msgid "The common part of the directory path for all InnoDB data files." msgstr "The common part of the directory path for all InnoDB data files." -#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:422 +#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:418 msgid "Data files" msgstr "Fișiere cu date" -#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:418 +#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:414 msgid "Autoextend increment" msgstr "Auto-extinde incrementarea" -#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:419 +#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:415 msgid "" " The increment size for extending the size of an autoextending tablespace " "when it becomes full." @@ -2490,11 +2500,11 @@ msgstr "" " The increment size for extending the size of an autoextending tablespace " "when it becomes full." -#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:420 +#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:416 msgid "Buffer pool size" msgstr "Buffer pool size" -#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:421 +#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:417 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." @@ -2502,87 +2512,87 @@ msgstr "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." -#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:112 +#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:108 msgid "Buffer Pool" msgstr "Buffer Pool" -#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:426 +#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:422 #: server_status.php:306 msgid "InnoDB Status" msgstr "Stare InnoDB" -#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:113 +#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:109 msgid "Buffer Pool Usage" msgstr "Buffer Pool Usage" -#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1114 +#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1110 #: server_databases.php:137 server_databases.php:305 server_status.php:414 #: server_status.php:475 server_status.php:496 tbl_printview.php:351 #: tbl_structure.php:697 msgid "Total" msgstr "Total" -#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:425 +#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:421 msgid "pages" msgstr "pagini" -#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:343 +#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:339 msgid "Free pages" msgstr "Pagini libere" -#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:259 +#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:255 msgid "Dirty pages" msgstr "Pagini murdare" -#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:230 +#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:226 msgid "Pages containing data" msgstr "Pagini ce conțin date" -#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:598 +#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:594 msgid "Pages to be flushed" msgstr "Pagini de golit" -#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:119 +#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:115 msgid "Busy pages" msgstr "Pagini ocupate" -#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:467 +#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:463 msgid "Latched pages" msgstr "Latched pages" -#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:111 +#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:107 msgid "Buffer Pool Activity" msgstr "Buffer Pool Activity" -#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:731 +#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:727 msgid "Read requests" msgstr "Cereri de citire" -#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1244 +#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1240 msgid "Write requests" msgstr "Cereri de scriere" -#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:115 +#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:111 msgid "Read misses" msgstr "Read misses" -#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:117 +#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:113 msgid "Write waits" msgstr "Scrierea așteaptă" -#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:114 +#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:110 msgid "Read misses in %" msgstr "Read misses in %" -#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:116 +#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:112 msgid "Write waits in %" msgstr "Scrierea așteaptă în %" -#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:522 +#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:518 msgid "Data pointer size" msgstr "Mărime pointer date" -#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:523 +#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:519 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." @@ -2591,11 +2601,11 @@ msgstr "" "pentru tabelele MyISAM atunci cînd nu este specificată nici o opțiune " "MAX_ROWS." -#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:528 +#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:524 msgid "Automatic recovery mode" msgstr "Regim de recuperare automată" -#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:529 +#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:525 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." @@ -2603,11 +2613,11 @@ msgstr "" "Regimul de recuperare automată a tabelelor MyISAM deteriorate, stabilit prin " "opțiunea startup --myisam-recover server." -#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:527 +#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:523 msgid "Maximum size for temporary sort files" msgstr "Mărimea maximă pentru fișierele de sortare temporare" -#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:526 +#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:522 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " @@ -2617,11 +2627,11 @@ msgstr "" "recreării unui index MyISAM (în timpul operațiunilor REPAIR TABLE, ALTER " "TABLE, sau LOAD DATA INFILE)." -#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:525 +#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:521 msgid "Maximum size for temporary files on index creation" msgstr "Mărimea maximă pentru fișierele temporare la crearea indexului" -#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:524 +#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:520 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " @@ -2631,11 +2641,11 @@ msgstr "" "fi mai mare decît dacă s-ar utiliza cache-ul de chei. Se preferă utilizarea " "metodei „cache chei”." -#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:531 +#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:527 msgid "Repair threads" msgstr "Repară firele de execuție" -#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:530 +#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:526 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." @@ -2644,11 +2654,11 @@ msgstr "" "create în paralel (fiecare index în firul de execuție propriu) în tipul " "operațiunii de reparare prin procesul de sortare." -#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:533 +#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:529 msgid "Sort buffer size" msgstr "Sortare Mărime tampon" -#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:532 +#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:528 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." @@ -2656,11 +2666,11 @@ msgstr "" "Tamponul alocat la sortarea indexurilor MyISAM în timpul unei operațiuni " "REPAIR TABLE sau la crearea indexurilor cu CREATE INDEX sau ALTER TABLE." -#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:620 +#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:616 msgid "Index cache size" msgstr "Dimensiune cache index" -#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:619 +#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:615 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." @@ -2668,11 +2678,11 @@ msgstr "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." -#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:630 +#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:626 msgid "Record cache size" msgstr "Dimensiune cache înregistrare" -#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:629 +#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:625 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " @@ -2682,11 +2692,11 @@ msgstr "" "table data. The default value is 32MB. This memory is used to cache changes " "to the handle data (.xtd) and row pointer (.xtr) files." -#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:624 +#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:620 msgid "Log cache size" msgstr "Dimensiune cache jurnal" -#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:623 +#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:619 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." @@ -2694,11 +2704,11 @@ msgstr "" "Cantitatea de memorie alocată pentru cache-ul jurnalului tranzacției, " "utilizat pentru a depozita datele jurnalului. Implicit este 16MO." -#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:628 +#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:624 msgid "Log file threshold" msgstr "Prag fișiere-jurnal" -#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:627 +#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:623 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." @@ -2706,11 +2716,11 @@ msgstr "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." -#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:634 +#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:630 msgid "Transaction buffer size" msgstr "Dimensiune tampon tranzacție" -#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:633 +#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:629 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." @@ -2718,11 +2728,11 @@ msgstr "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." -#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:611 +#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:607 msgid "Checkpoint frequency" msgstr "Checkpoint frequency" -#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:612 +#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:608 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." @@ -2730,11 +2740,11 @@ msgstr "" "Mărimea datelor scrise în jurnalul tranzacțiilor înaintea efectuării unei " "verificări. Mărimea implicită este 24MO." -#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:615 +#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:611 msgid "Data log threshold" msgstr "Data log threshold" -#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:616 +#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:612 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -2746,11 +2756,11 @@ msgstr "" "value of this variable can be increased to increase the total amount of data " "that can be stored in the database." -#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:618 +#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:614 msgid "Garbage threshold" msgstr "Prag gunoi" -#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:617 +#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:613 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." @@ -2758,11 +2768,11 @@ msgstr "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." -#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:622 +#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:618 msgid "Log buffer size" msgstr "Dimensiune tampon jurnal" -#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:621 +#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:617 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " @@ -2772,27 +2782,27 @@ msgstr "" "The engine allocates one buffer per thread, but only if the thread is " "required to write a data log." -#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:613 +#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:609 msgid "Data file grow size" msgstr "Data file grow size" -#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:614 +#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:610 msgid "The grow size of the handle data (.xtd) files." msgstr "The grow size of the handle data (.xtd) files." -#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:632 +#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:628 msgid "Row file grow size" msgstr "Row file grow size" -#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:631 +#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:627 msgid "The grow size of the row pointer (.xtr) files." msgstr "The grow size of the row pointer (.xtr) files." -#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:626 +#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:622 msgid "Log file count" msgstr "Număr de fișiere-jurnal" -#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:625 +#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:621 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -2806,19 +2816,19 @@ msgstr "" #: libraries/export/htmlword.php:132 libraries/export/odt.php:168 #: libraries/export/sql.php:881 libraries/export/texytext.php:130 -#: libraries/messages.inc.php:275 +#: libraries/messages.inc.php:271 msgid "Dumping data for table" msgstr "Salvarea datelor din tabel" #: libraries/export/htmlword.php:185 libraries/export/odt.php:238 #: libraries/export/sql.php:785 libraries/export/texytext.php:177 -#: libraries/messages.inc.php:1086 +#: libraries/messages.inc.php:1082 msgid "Table structure for table" msgstr "Structura de tabel pentru tabelul" #: libraries/export/latex.php:125 libraries/export/sql.php:232 #: libraries/export/xml.php:102 libraries/header_printview.inc.php:57 -#: libraries/messages.inc.php:381 libraries/replication_gui.lib.php:63 +#: libraries/messages.inc.php:377 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:170 libraries/replication_gui.lib.php:265 #: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325 #: server_privileges.php:692 server_privileges.php:695 @@ -2830,187 +2840,187 @@ msgstr "Gazda" #: libraries/export/latex.php:130 libraries/export/sql.php:233 #: libraries/export/xml.php:107 libraries/header_printview.inc.php:59 -#: libraries/messages.inc.php:354 +#: libraries/messages.inc.php:350 msgid "Generation Time" msgstr "Timp de generare" #: libraries/export/latex.php:131 libraries/export/sql.php:235 -#: libraries/export/xml.php:108 libraries/messages.inc.php:864 main.php:186 +#: libraries/export/xml.php:108 libraries/messages.inc.php:860 main.php:186 msgid "Server version" msgstr "Versiune server" #: libraries/export/latex.php:132 libraries/export/sql.php:236 -#: libraries/export/xml.php:109 libraries/messages.inc.php:651 +#: libraries/export/xml.php:109 libraries/messages.inc.php:647 msgid "PHP Version" msgstr "Versiune PHP" #: libraries/export/latex.php:201 libraries/export/sql.php:868 -#: libraries/messages.inc.php:226 server_databases.php:127 +#: libraries/messages.inc.php:222 server_databases.php:127 #: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317 #: tbl_structure.php:666 msgid "Data" msgstr "Date" -#: libraries/export/odt.php:318 libraries/messages.inc.php:506 +#: libraries/export/odt.php:318 libraries/messages.inc.php:502 #: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "Tip MIME" -#: libraries/export/sql.php:387 libraries/messages.inc.php:711 +#: libraries/export/sql.php:387 libraries/messages.inc.php:707 msgid "Procedures" msgstr "Proceduri" -#: libraries/export/sql.php:401 libraries/messages.inc.php:348 +#: libraries/export/sql.php:401 libraries/messages.inc.php:344 msgid "Functions" msgstr "Funcții" -#: libraries/export/sql.php:618 libraries/messages.inc.php:174 +#: libraries/export/sql.php:618 libraries/messages.inc.php:170 msgid "Constraints for dumped tables" msgstr "Restrictii pentru tabele sterse" -#: libraries/export/sql.php:627 libraries/messages.inc.php:175 +#: libraries/export/sql.php:627 libraries/messages.inc.php:171 msgid "Constraints for table" msgstr "Restrictii pentru tabele" -#: libraries/export/sql.php:727 libraries/messages.inc.php:512 +#: libraries/export/sql.php:727 libraries/messages.inc.php:508 msgid "MIME TYPES FOR TABLE" msgstr "TIPURI MIME PENTRU TABEL" -#: libraries/export/sql.php:739 libraries/messages.inc.php:743 +#: libraries/export/sql.php:739 libraries/messages.inc.php:739 msgid "RELATIONS FOR TABLE" msgstr "RELAȚII PENTRU TABEL" -#: libraries/export/sql.php:796 libraries/messages.inc.php:1178 +#: libraries/export/sql.php:796 libraries/messages.inc.php:1174 #: libraries/tbl_triggers.lib.php:19 msgid "Triggers" msgstr "Declanșatori" -#: libraries/export/sql.php:808 libraries/messages.inc.php:1046 +#: libraries/export/sql.php:808 libraries/messages.inc.php:1042 msgid "Structure for view" msgstr "Structură pentru vizualizare" -#: libraries/export/sql.php:817 libraries/messages.inc.php:1029 +#: libraries/export/sql.php:817 libraries/messages.inc.php:1025 msgid "Stand-in structure for view" msgstr "Stand-in structure for view" #: libraries/footer.inc.php:184 libraries/footer.inc.php:195 -#: libraries/footer.inc.php:198 libraries/messages.inc.php:586 +#: libraries/footer.inc.php:198 libraries/messages.inc.php:582 msgid "Open new phpMyAdmin window" msgstr "Deschide fereastră phpMyAdmin nouă" -#: libraries/header.inc.php:115 libraries/messages.inc.php:542 +#: libraries/header.inc.php:115 libraries/messages.inc.php:538 #, fuzzy msgid "New table" msgstr "Nu există tabele" #: libraries/header_printview.inc.php:50 libraries/header_printview.inc.php:55 -#: libraries/messages.inc.php:1024 +#: libraries/messages.inc.php:1020 msgid "SQL result" msgstr "Rezultat SQL" -#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:350 +#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:346 msgid "Generated by" msgstr "Generat de" #: libraries/header_printview.inc.php:63 libraries/import.lib.php:145 -#: libraries/messages.inc.php:820 navigation.php:652 navigation.php:674 +#: libraries/messages.inc.php:816 navigation.php:652 navigation.php:674 #: server_databases.php:122 tbl_printview.php:394 tbl_structure.php:366 #: tbl_structure.php:778 msgid "Rows" msgstr "Linie" -#: libraries/import.lib.php:150 libraries/messages.inc.php:285 sql.php:520 +#: libraries/import.lib.php:150 libraries/messages.inc.php:281 sql.php:520 #: tbl_change.php:181 tbl_get_field.php:35 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL a dat un set de rezultate gol (zero linii)." -#: libraries/import.lib.php:1078 libraries/messages.inc.php:399 +#: libraries/import.lib.php:1078 libraries/messages.inc.php:395 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1079 libraries/messages.inc.php:400 +#: libraries/import.lib.php:1079 libraries/messages.inc.php:396 msgid "View a structure`s contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1080 libraries/messages.inc.php:401 +#: libraries/import.lib.php:1080 libraries/messages.inc.php:397 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1081 libraries/messages.inc.php:402 +#: libraries/import.lib.php:1081 libraries/messages.inc.php:398 msgid "Edit its structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1084 libraries/messages.inc.php:362 +#: libraries/import.lib.php:1084 libraries/messages.inc.php:358 #, fuzzy msgid "Go to database" msgstr "Nu sînt baze de date" #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:869 +#: libraries/messages.inc.php:865 msgid "settings" msgstr "" -#: libraries/import.lib.php:1106 libraries/messages.inc.php:363 +#: libraries/import.lib.php:1106 libraries/messages.inc.php:359 #, fuzzy msgid "Go to table" msgstr "Nu sînt baze de date" -#: libraries/import.lib.php:1109 libraries/messages.inc.php:1047 +#: libraries/import.lib.php:1109 libraries/messages.inc.php:1043 #, fuzzy msgid "structure" msgstr "Structură" -#: libraries/import.lib.php:1115 libraries/messages.inc.php:364 +#: libraries/import.lib.php:1115 libraries/messages.inc.php:360 msgid "Go to view" msgstr "" #: libraries/import/csv.php:58 libraries/import/csv.php:70 #: libraries/import/csv.php:74 libraries/import/csv.php:78 -#: libraries/messages.inc.php:442 +#: libraries/messages.inc.php:438 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "Invalid parameter for CSV import: %s" -#: libraries/import/csv.php:59 libraries/messages.inc.php:323 +#: libraries/import/csv.php:59 libraries/messages.inc.php:319 msgid "Fields terminated by" msgstr "Cîmpuri terminate de" -#: libraries/import/csv.php:71 libraries/messages.inc.php:320 +#: libraries/import/csv.php:71 libraries/messages.inc.php:316 msgid "Fields enclosed by" msgstr "Cîmpuri încadrate de" -#: libraries/import/csv.php:75 libraries/messages.inc.php:321 +#: libraries/import/csv.php:75 libraries/messages.inc.php:317 msgid "Fields escaped by" msgstr "Cîmpuri realizate de" -#: libraries/import/csv.php:79 libraries/messages.inc.php:481 +#: libraries/import/csv.php:79 libraries/messages.inc.php:477 msgid "Lines terminated by" msgstr "Linii terminate de" -#: libraries/import/csv.php:119 libraries/messages.inc.php:439 +#: libraries/import/csv.php:119 libraries/messages.inc.php:435 #, php-format msgid "Invalid column (%s) specified!" msgstr "Coloană nevalidă (%s) specificată!" #: libraries/import/csv.php:177 libraries/import/csv.php:424 -#: libraries/messages.inc.php:441 +#: libraries/messages.inc.php:437 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "Invalid format of CSV input on line %d." -#: libraries/import/csv.php:312 libraries/messages.inc.php:440 +#: libraries/import/csv.php:312 libraries/messages.inc.php:436 #, php-format msgid "Invalid field count in CSV input on line %d." msgstr "Invalid field count in CSV input on line %d." -#: libraries/import/ldi.php:55 libraries/messages.inc.php:446 +#: libraries/import/ldi.php:55 libraries/messages.inc.php:442 msgid "This plugin does not support compressed imports!" msgstr "Modulul opțional nu suportă importuri comprimate!" #: libraries/import/xml.php:74 libraries/import/xml.php:130 -#: libraries/messages.inc.php:1247 +#: libraries/messages.inc.php:1243 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -3040,444 +3050,434 @@ msgstr "" msgid "ltr" msgstr "ltr" -#. l10n: Thousands separator -#: libraries/messages.inc.php:21 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: libraries/messages.inc.php:23 -msgid "." -msgstr "." - -#: libraries/messages.inc.php:25 server_status.php:461 +#: libraries/messages.inc.php:21 server_status.php:461 msgid "Aborted" msgstr "Întrerupt" -#: libraries/messages.inc.php:28 main.php:68 +#: libraries/messages.inc.php:24 main.php:68 msgid "Actions" msgstr "Acțiuni" -#: libraries/messages.inc.php:34 libraries/tbl_properties.inc.php:780 +#: libraries/messages.inc.php:30 libraries/tbl_properties.inc.php:780 #: tbl_structure.php:543 #, php-format msgid "Add %s field(s)" msgstr "Adaugă %s cîmp(uri)" -#: libraries/messages.inc.php:35 +#: libraries/messages.inc.php:31 msgid "Add custom comment into header (\\n splits lines)" msgstr "Adăugare comentariu la antet (\\n înseamnă delimitare de rînd)" -#: libraries/messages.inc.php:36 +#: libraries/messages.inc.php:32 msgid "Add into comments" msgstr "Adăugare la comentarii" -#: libraries/messages.inc.php:37 tbl_structure.php:541 +#: libraries/messages.inc.php:33 tbl_structure.php:541 msgid "Add new field" msgstr "Adaugă cîmp nou" -#: libraries/messages.inc.php:38 server_privileges.php:1886 +#: libraries/messages.inc.php:34 server_privileges.php:1886 msgid "Add privileges on the following database" msgstr "Adaugă drepturi la baza de date următoare" -#: libraries/messages.inc.php:39 server_privileges.php:1907 +#: libraries/messages.inc.php:35 server_privileges.php:1907 msgid "Add privileges on the following table" msgstr "Adaugă drepturi la următorul tabel" -#: libraries/messages.inc.php:40 tbl_select.php:288 +#: libraries/messages.inc.php:36 tbl_select.php:288 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Adaugă condiție de căutare (parte a comenzii \"where\"):" -#: libraries/messages.inc.php:41 tbl_indexes.php:251 +#: libraries/messages.inc.php:37 tbl_indexes.php:251 #, php-format msgid "Add to index  %s column(s)" msgstr "Adaugă la coloana(ele) index  %s " -#: libraries/messages.inc.php:42 server_privileges.php:1570 +#: libraries/messages.inc.php:38 server_privileges.php:1570 #: server_privileges.php:1594 server_privileges.php:1988 #: server_privileges.php:2177 msgid "Add a new User" msgstr "Adaugă un utilizator nou" -#: libraries/messages.inc.php:43 server_privileges.php:931 +#: libraries/messages.inc.php:39 server_privileges.php:931 msgid "You have added a new user." msgstr "Ați adăugat un nou utilizator." -#: libraries/messages.inc.php:44 server_privileges.php:571 +#: libraries/messages.inc.php:40 server_privileges.php:571 msgid "Administration" msgstr "Administrare" -#: libraries/messages.inc.php:45 tbl_structure.php:557 +#: libraries/messages.inc.php:41 tbl_structure.php:557 #, php-format msgid "After %s" msgstr "După %s" -#: libraries/messages.inc.php:46 tbl_change.php:1147 +#: libraries/messages.inc.php:42 tbl_change.php:1147 msgid "Go back to previous page" msgstr "Revenire" -#: libraries/messages.inc.php:47 tbl_change.php:1148 +#: libraries/messages.inc.php:43 tbl_change.php:1148 msgid "Insert another new row" msgstr "Adaugă o nouă înregistrare" -#: libraries/messages.inc.php:48 tbl_change.php:1160 +#: libraries/messages.inc.php:44 tbl_change.php:1160 msgid "Edit next row" msgstr "Editează rîndul următor" -#: libraries/messages.inc.php:49 tbl_change.php:1152 +#: libraries/messages.inc.php:45 tbl_change.php:1152 msgid "Go back to this page" msgstr "Înapoi la această pagină" -#: libraries/messages.inc.php:50 querywindow.php:115 +#: libraries/messages.inc.php:46 querywindow.php:115 msgid "All" msgstr "Toate" -#: libraries/messages.inc.php:53 tbl_operations.php:249 +#: libraries/messages.inc.php:49 tbl_operations.php:249 msgid "Alter table order by" msgstr "Alterare „ordonare tabel după”" -#: libraries/messages.inc.php:54 tbl_operations.php:660 +#: libraries/messages.inc.php:50 tbl_operations.php:660 msgid "Analyze" msgstr "Analizează" -#: libraries/messages.inc.php:57 +#: libraries/messages.inc.php:53 #, fuzzy msgid "and" msgstr "Și" -#: libraries/messages.inc.php:59 pmd_general.php:87 +#: libraries/messages.inc.php:55 pmd_general.php:87 msgid "Angular links" msgstr "Legături unghiulare" -#: libraries/messages.inc.php:60 tbl_structure.php:401 tbl_structure.php:415 +#: libraries/messages.inc.php:56 tbl_structure.php:401 tbl_structure.php:415 #: tbl_structure.php:429 #, php-format msgid "An index has been added on %s" msgstr "A fost adăugat un index la %s" -#: libraries/messages.inc.php:61 server_privileges.php:1521 +#: libraries/messages.inc.php:57 server_privileges.php:1521 #: server_privileges.php:2123 msgid "Any" msgstr "Oricare" -#: libraries/messages.inc.php:62 libraries/replication_gui.lib.php:298 +#: libraries/messages.inc.php:58 libraries/replication_gui.lib.php:298 #: server_privileges.php:725 msgid "Any host" msgstr "Oricare gazdă" -#: libraries/messages.inc.php:63 libraries/replication_gui.lib.php:250 +#: libraries/messages.inc.php:59 libraries/replication_gui.lib.php:250 #: server_privileges.php:677 msgid "Any user" msgstr "Oricare utilizator" -#: libraries/messages.inc.php:64 server_synchronize.php:449 +#: libraries/messages.inc.php:60 server_synchronize.php:449 #: server_synchronize.php:894 msgid "Apply Selected Changes" msgstr "Faceți modificările selectate" -#: libraries/messages.inc.php:66 tbl_structure.php:386 +#: libraries/messages.inc.php:62 tbl_structure.php:386 #, php-format msgid "A primary key has been added on %s" msgstr "A fost adăugată o cheie primară la %s" -#: libraries/messages.inc.php:67 libraries/mysql_charsets.lib.php:368 +#: libraries/messages.inc.php:63 libraries/mysql_charsets.lib.php:368 msgid "Arabic" msgstr "Arab" -#: libraries/messages.inc.php:68 libraries/mysql_charsets.lib.php:359 +#: libraries/messages.inc.php:64 libraries/mysql_charsets.lib.php:359 msgid "Armenian" msgstr "Armean" -#: libraries/messages.inc.php:70 libraries/tbl_properties.inc.php:394 +#: libraries/messages.inc.php:66 libraries/tbl_properties.inc.php:394 msgid "As defined:" msgstr "Conform definiției:" -#: libraries/messages.inc.php:71 tbl_structure.php:556 +#: libraries/messages.inc.php:67 tbl_structure.php:556 msgid "At Beginning of Table" msgstr "La începutul tabelului" -#: libraries/messages.inc.php:72 tbl_structure.php:555 +#: libraries/messages.inc.php:68 tbl_structure.php:555 msgid "At End of Table" msgstr "La sfîrșitul tabelului" -#: libraries/messages.inc.php:73 libraries/tbl_properties.inc.php:108 +#: libraries/messages.inc.php:69 libraries/tbl_properties.inc.php:108 #: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:144 #: tbl_structure.php:180 msgid "Attributes" msgstr "Proprietăți" -#: libraries/messages.inc.php:74 pdf_pages.php:303 pdf_pages.php:306 +#: libraries/messages.inc.php:70 pdf_pages.php:303 pdf_pages.php:306 msgid "Automatic layout" msgstr "Așezare automată" -#: libraries/messages.inc.php:77 libraries/mysql_charsets.lib.php:354 +#: libraries/messages.inc.php:73 libraries/mysql_charsets.lib.php:354 msgid "Baltic" msgstr "Baltic" -#: libraries/messages.inc.php:78 libraries/sqlparser.lib.php:175 +#: libraries/messages.inc.php:74 libraries/sqlparser.lib.php:175 msgid "BEGIN CUT" msgstr "DE TĂIAT - ÎNCEPUT" -#: libraries/messages.inc.php:79 libraries/sqlparser.lib.php:179 +#: libraries/messages.inc.php:75 libraries/sqlparser.lib.php:179 msgid "BEGIN RAW" msgstr "ÎNCEPUT RAW" -#: libraries/messages.inc.php:80 libraries/mysql_charsets.lib.php:201 +#: libraries/messages.inc.php:76 libraries/mysql_charsets.lib.php:201 #: libraries/mysql_charsets.lib.php:402 tbl_change.php:518 msgid "Binary" msgstr "Binar" -#: libraries/messages.inc.php:81 tbl_change.php:894 +#: libraries/messages.inc.php:77 tbl_change.php:894 msgid "Binary - do not edit" msgstr "Binar - a nu se edita" -#: libraries/messages.inc.php:82 libraries/server_links.inc.php:76 +#: libraries/messages.inc.php:78 libraries/server_links.inc.php:76 #: server_binlog.php:110 server_status.php:253 test/theme.php:121 msgid "Binary log" msgstr "Jurnal binar" -#: libraries/messages.inc.php:83 server_binlog.php:217 +#: libraries/messages.inc.php:79 server_binlog.php:217 msgid "Event type" msgstr "Tip eveniment" -#: libraries/messages.inc.php:84 server_binlog.php:220 +#: libraries/messages.inc.php:80 server_binlog.php:220 msgid "Information" msgstr "Informație" -#: libraries/messages.inc.php:85 server_binlog.php:215 +#: libraries/messages.inc.php:81 server_binlog.php:215 msgid "Log name" msgstr "Denumire jurnal" -#: libraries/messages.inc.php:86 server_binlog.php:219 +#: libraries/messages.inc.php:82 server_binlog.php:219 msgid "Original position" msgstr "Pozitie originală" -#: libraries/messages.inc.php:87 server_binlog.php:216 +#: libraries/messages.inc.php:83 server_binlog.php:216 msgid "Position" msgstr "Poziție" -#: libraries/messages.inc.php:88 libraries/replication_gui.lib.php:169 +#: libraries/messages.inc.php:84 libraries/replication_gui.lib.php:169 #: server_binlog.php:218 msgid "Server ID" msgstr "ID server" -#: libraries/messages.inc.php:92 +#: libraries/messages.inc.php:88 #, fuzzy msgctxt "$strBLOBRepositoryDisabled" msgid "Disabled" msgstr "Dezactivat" -#: libraries/messages.inc.php:95 +#: libraries/messages.inc.php:91 #, fuzzy msgctxt "$strBLOBRepositoryEnabled" msgid "Enabled" msgstr "Activat" -#: libraries/messages.inc.php:97 tbl_change.php:888 +#: libraries/messages.inc.php:93 tbl_change.php:888 msgid "Remove BLOB Repository Reference" msgstr "Remove BLOB Repository Reference" -#: libraries/messages.inc.php:98 +#: libraries/messages.inc.php:94 #, fuzzy msgctxt "$strBLOBRepositoryRepair" msgid "Repair" msgstr "Repară" -#: libraries/messages.inc.php:99 tbl_change.php:987 +#: libraries/messages.inc.php:95 tbl_change.php:987 msgid "Upload to BLOB repository" msgstr "Upload to BLOB repository" -#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:359 +#: libraries/messages.inc.php:96 libraries/sql_query_form.lib.php:359 #: sql.php:677 msgid "Let every user access this bookmark" msgstr "Permite tuturor utilizatorilor să acceseze acest semn de carte" -#: libraries/messages.inc.php:103 sql.php:671 +#: libraries/messages.inc.php:99 sql.php:671 msgid "Label" msgstr "Etichetă" -#: libraries/messages.inc.php:104 libraries/sql_query_form.lib.php:433 +#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:433 msgid "Bookmarked SQL query" msgstr "Comandă SQL salvată" -#: libraries/messages.inc.php:105 libraries/sql_query_form.lib.php:365 +#: libraries/messages.inc.php:101 libraries/sql_query_form.lib.php:365 msgid "Replace existing bookmark of same name" msgstr "Înlocuiește semnul de carte cu același nume" -#: libraries/messages.inc.php:106 libraries/sql_query_form.lib.php:352 +#: libraries/messages.inc.php:102 libraries/sql_query_form.lib.php:352 #: sql.php:665 sql.php:666 sql.php:683 msgid "Bookmark this SQL query" msgstr "Pune semn de carte la această comandă SQL" -#: libraries/messages.inc.php:107 libraries/sql_query_form.lib.php:466 +#: libraries/messages.inc.php:103 libraries/sql_query_form.lib.php:466 msgid "View only" msgstr "Numai vizualizare" -#: libraries/messages.inc.php:109 tbl_structure.php:161 +#: libraries/messages.inc.php:105 tbl_structure.php:161 msgid "Browse distinct values" msgstr "Răsfoiește valori distincte" -#: libraries/messages.inc.php:110 tbl_change.php:252 tbl_select.php:27 +#: libraries/messages.inc.php:106 tbl_change.php:252 tbl_select.php:27 #: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34 msgid "Browse foreign values" msgstr "Caută printre valori necunoscute" -#: libraries/messages.inc.php:118 libraries/mysql_charsets.lib.php:213 +#: libraries/messages.inc.php:114 libraries/mysql_charsets.lib.php:213 msgid "Bulgarian" msgstr "Bulgar" -#: libraries/messages.inc.php:120 +#: libraries/messages.inc.php:116 msgid "\"bzipped\"" msgstr "cu „bzip2”" -#: libraries/messages.inc.php:122 +#: libraries/messages.inc.php:118 msgid "Calendar" msgstr "Calendar" -#: libraries/messages.inc.php:129 tbl_indexes.php:75 +#: libraries/messages.inc.php:125 tbl_indexes.php:75 msgid "Can't rename index to PRIMARY!" msgstr "Nu puteți redenumi index-ul la un nume PRIMARY!" -#: libraries/messages.inc.php:132 libraries/mysql_charsets.lib.php:223 +#: libraries/messages.inc.php:128 libraries/mysql_charsets.lib.php:223 #: libraries/mysql_charsets.lib.php:409 msgid "case-insensitive" msgstr "insensibil la registru" -#: libraries/messages.inc.php:133 libraries/mysql_charsets.lib.php:226 +#: libraries/messages.inc.php:129 libraries/mysql_charsets.lib.php:226 #: libraries/mysql_charsets.lib.php:411 msgid "case-sensitive" msgstr "sensibil la registru" -#: libraries/messages.inc.php:134 libraries/mysql_charsets.lib.php:332 +#: libraries/messages.inc.php:130 libraries/mysql_charsets.lib.php:332 msgid "Central European" msgstr "European de est" -#: libraries/messages.inc.php:136 server_privileges.php:1969 +#: libraries/messages.inc.php:132 server_privileges.php:1969 msgid "... keep the old one." msgstr "... menține cel vechi." -#: libraries/messages.inc.php:137 server_privileges.php:1967 +#: libraries/messages.inc.php:133 server_privileges.php:1967 msgid "Create a new user with the same privileges and ..." msgstr "Creează un utilizator nou cu aceleași privilegii și..." -#: libraries/messages.inc.php:138 server_privileges.php:1972 +#: libraries/messages.inc.php:134 server_privileges.php:1972 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" " ... șterge cel vechi din tabelul de utilizatori și reîncarcă privilegiile." -#: libraries/messages.inc.php:139 server_privileges.php:1970 +#: libraries/messages.inc.php:135 server_privileges.php:1970 msgid " ... delete the old one from the user tables." msgstr " ... șterge cel vechi din tabelul de utilizatori." -#: libraries/messages.inc.php:140 server_privileges.php:1971 +#: libraries/messages.inc.php:136 server_privileges.php:1971 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "" " ...revocă toate privilegiile active de la utilizatorul vechi și șterge-l " "după aceea." -#: libraries/messages.inc.php:141 server_privileges.php:1964 +#: libraries/messages.inc.php:137 server_privileges.php:1964 msgid "Change Login Information / Copy User" msgstr "Schimbă informațiile de autentificare/Copiază utilizator" -#: libraries/messages.inc.php:144 libraries/mysql_charsets.lib.php:107 +#: libraries/messages.inc.php:140 libraries/mysql_charsets.lib.php:107 msgid "Charset" msgstr "Set de caractere" -#: libraries/messages.inc.php:146 server_collations.php:40 +#: libraries/messages.inc.php:142 server_collations.php:40 msgid "Character Sets and Collations" msgstr "Set de caractere și gestiunea acestora" -#: libraries/messages.inc.php:147 libraries/server_links.inc.php:57 +#: libraries/messages.inc.php:143 libraries/server_links.inc.php:57 #: test/theme.php:109 msgid "Charsets" msgstr "Seturi de caractere" -#: libraries/messages.inc.php:149 tbl_operations.php:661 +#: libraries/messages.inc.php:145 tbl_operations.php:661 msgid "Check" msgstr "Verifică" -#: libraries/messages.inc.php:151 server_databases.php:293 +#: libraries/messages.inc.php:147 server_databases.php:293 #: server_databases.php:294 msgid "Check Privileges" msgstr "Verifică privilegiile" -#: libraries/messages.inc.php:152 server_databases.php:289 +#: libraries/messages.inc.php:148 server_databases.php:289 #, php-format msgid "Check privileges for database "%s"." msgstr "Verifică privilegiile pentru baza de date "%s"." -#: libraries/messages.inc.php:154 pdf_pages.php:261 +#: libraries/messages.inc.php:150 pdf_pages.php:261 msgid "Please choose a page to edit" msgstr "Selectează o pagină pentru a fi editată" -#: libraries/messages.inc.php:157 +#: libraries/messages.inc.php:153 msgid "Displaying Column Comments" msgstr "Arată comentariile coloanei" -#: libraries/messages.inc.php:159 pdf_pages.php:483 view_create.php:148 +#: libraries/messages.inc.php:155 pdf_pages.php:483 view_create.php:148 msgid "Column names" msgstr "Denumirile coloanelor" -#: libraries/messages.inc.php:160 server_privileges.php:1685 +#: libraries/messages.inc.php:156 server_privileges.php:1685 msgid "Column-specific privileges" msgstr "Drepturi specifice coloanei" -#: libraries/messages.inc.php:164 +#: libraries/messages.inc.php:160 msgid "MySQL 4.0 compatible" msgstr "Compatibil MySQL 4.0" -#: libraries/messages.inc.php:165 +#: libraries/messages.inc.php:161 msgid "Complete inserts" msgstr "Inserări complete" -#: libraries/messages.inc.php:168 +#: libraries/messages.inc.php:164 #, php-format msgid "Could not load default configuration from: \"%1$s\"" msgstr "Nu s-a putut încărca configurația implicită din: „%1$s”" -#: libraries/messages.inc.php:169 main.php:306 +#: libraries/messages.inc.php:165 main.php:306 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: libraries/messages.inc.php:171 pdf_schema.php:672 +#: libraries/messages.inc.php:167 pdf_schema.php:672 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Configureaza coordonatelepentru tabelul %s" -#: libraries/messages.inc.php:173 server_status.php:433 +#: libraries/messages.inc.php:169 server_status.php:433 msgid "Connections" msgstr "Conexiuni" -#: libraries/messages.inc.php:179 tbl_operations.php:509 +#: libraries/messages.inc.php:175 tbl_operations.php:509 msgid "Copy table to (database.table):" msgstr "Copiază tabelul la (bază_de_date.tabel):" -#: libraries/messages.inc.php:180 tbl_move_copy.php:58 +#: libraries/messages.inc.php:176 tbl_move_copy.php:58 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabelul %s a fost copiat la %s." -#: libraries/messages.inc.php:181 tbl_move_copy.php:48 +#: libraries/messages.inc.php:177 tbl_move_copy.php:48 msgid "Can't copy table to same one!" msgstr "Nu se poate copia tabelul pe cel existent pentru ca este acelasi" -#: libraries/messages.inc.php:182 server_synchronize.php:94 +#: libraries/messages.inc.php:178 server_synchronize.php:94 #, fuzzy msgid "Could not connect to the source" msgstr "Comprimă conexiunea la serverul MySQL" -#: libraries/messages.inc.php:183 server_synchronize.php:97 +#: libraries/messages.inc.php:179 server_synchronize.php:97 #, fuzzy msgid "Could not connect to the target" msgstr "Comprimă conexiunea la serverul MySQL" -#: libraries/messages.inc.php:184 server_processlist.php:24 +#: libraries/messages.inc.php:180 server_processlist.php:24 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -3485,134 +3485,134 @@ msgstr "" "phpMyAdmin n-a reusit sa opreasca firul de executie %s. Probabil a fost " "deja oprit." -#: libraries/messages.inc.php:187 +#: libraries/messages.inc.php:183 #, php-format msgid "Create an index on %s columns" msgstr "Creează un index pe %s coloană" -#: libraries/messages.inc.php:188 tbl_indexes.php:160 +#: libraries/messages.inc.php:184 tbl_indexes.php:160 msgid "Create a new index" msgstr "Creează un nou index" -#: libraries/messages.inc.php:191 pdf_pages.php:297 pmd_pdf.php:114 +#: libraries/messages.inc.php:187 pdf_pages.php:297 pmd_pdf.php:114 msgid "Create a page" msgstr "Creează o nouă pagină" -#: libraries/messages.inc.php:192 +#: libraries/messages.inc.php:188 msgid "Creation of PDFs" msgstr "Creare PDF" -#: libraries/messages.inc.php:193 pmd_general.php:74 pmd_general.php:306 +#: libraries/messages.inc.php:189 pmd_general.php:74 pmd_general.php:306 msgid "Create relation" msgstr "Creare relație" -#: libraries/messages.inc.php:194 pmd_general.php:71 +#: libraries/messages.inc.php:190 pmd_general.php:71 #: server_synchronize.php:429 server_synchronize.php:872 msgid "Create table" msgstr "Creare tabel" -#: libraries/messages.inc.php:195 +#: libraries/messages.inc.php:191 #, fuzzy msgctxt "$strCreateTableShort" msgid "Create table" msgstr "Creare tabel" -#: libraries/messages.inc.php:196 server_privileges.php:1994 +#: libraries/messages.inc.php:192 server_privileges.php:1994 msgid "Database for user" msgstr "Bază de date pentru utilizatorul" -#: libraries/messages.inc.php:197 server_privileges.php:1999 +#: libraries/messages.inc.php:193 server_privileges.php:1999 msgid "Create database with same name and grant all privileges" msgstr "Creează o bază de date cu același nume și acordă toate privilegiile" -#: libraries/messages.inc.php:198 +#: libraries/messages.inc.php:194 #, fuzzy msgctxt "$strCreateUserDatabaseNone" msgid "None" msgstr "Nici unul(a)" -#: libraries/messages.inc.php:199 server_privileges.php:2003 +#: libraries/messages.inc.php:195 server_privileges.php:2003 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "Verifică privilegiile pentru baza de date "%s"." -#: libraries/messages.inc.php:200 server_privileges.php:2000 +#: libraries/messages.inc.php:196 server_privileges.php:2000 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Grant all privileges on wildcard name (username\\_%)" -#: libraries/messages.inc.php:201 +#: libraries/messages.inc.php:197 msgid "Creation/Update/Check dates" msgstr "Creare/reînnoire/verificare date" -#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:229 +#: libraries/messages.inc.php:199 libraries/mysql_charsets.lib.php:229 msgid "Croatian" msgstr "Croat" -#: libraries/messages.inc.php:204 +#: libraries/messages.inc.php:200 msgid "CSV" msgstr "CSV" -#: libraries/messages.inc.php:205 libraries/server_synchronize.lib.php:1343 +#: libraries/messages.inc.php:201 libraries/server_synchronize.lib.php:1343 #: libraries/server_synchronize.lib.php:1369 msgid "Current server" msgstr "" -#: libraries/messages.inc.php:206 main.php:159 +#: libraries/messages.inc.php:202 main.php:159 msgid "Custom color" msgstr "Culoare personalizată" -#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:365 +#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:365 msgid "Cyrillic" msgstr "Chirilic" -#: libraries/messages.inc.php:208 libraries/mysql_charsets.lib.php:232 +#: libraries/messages.inc.php:204 libraries/mysql_charsets.lib.php:232 msgid "Czech" msgstr "Ceh" -#: libraries/messages.inc.php:209 libraries/mysql_charsets.lib.php:383 +#: libraries/messages.inc.php:205 libraries/mysql_charsets.lib.php:383 msgid "Czech-Slovak" msgstr "Cehoslovac" -#: libraries/messages.inc.php:211 libraries/mysql_charsets.lib.php:235 +#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:235 msgid "Danish" msgstr "Danez" -#: libraries/messages.inc.php:214 +#: libraries/messages.inc.php:210 msgid "Database export options" msgstr "Opțiuni de exportare a bazei de date" -#: libraries/messages.inc.php:217 server_synchronize.php:122 +#: libraries/messages.inc.php:213 server_synchronize.php:122 #: server_synchronize.php:125 tbl_create.php:82 tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "" -#: libraries/messages.inc.php:219 server_databases.php:63 +#: libraries/messages.inc.php:215 server_databases.php:63 #, php-format msgid "%s databases have been dropped successfully." msgstr "%s baza(ele) de data(e) au fost aruncate." -#: libraries/messages.inc.php:220 libraries/server_synchronize.lib.php:1341 +#: libraries/messages.inc.php:216 libraries/server_synchronize.lib.php:1341 #: server_synchronize.php:1110 #, fuzzy msgid "Source database" msgstr "Caută în baza de date" -#: libraries/messages.inc.php:221 server_databases.php:88 +#: libraries/messages.inc.php:217 server_databases.php:88 msgid "Databases statistics" msgstr "Statisticile bazelor de date" -#: libraries/messages.inc.php:222 server_databases.php:362 +#: libraries/messages.inc.php:218 server_databases.php:362 #: server_databases.php:363 msgid "Disable Statistics" msgstr "Dezactivează statisticile" -#: libraries/messages.inc.php:223 server_databases.php:358 +#: libraries/messages.inc.php:219 server_databases.php:358 #: server_databases.php:359 msgid "Enable Statistics" msgstr "Activează statisticile" -#: libraries/messages.inc.php:224 server_databases.php:366 +#: libraries/messages.inc.php:220 server_databases.php:366 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -3620,32 +3620,32 @@ msgstr "" "Notă: Activarea statisticilor pentru baza de date poate cauza creșterea " "traficului între MySQL și serverul Web." -#: libraries/messages.inc.php:225 libraries/server_synchronize.lib.php:1367 +#: libraries/messages.inc.php:221 libraries/server_synchronize.lib.php:1367 #: server_synchronize.php:1112 #, fuzzy msgid "Target database" msgstr "Caută în baza de date" -#: libraries/messages.inc.php:228 server_synchronize.php:425 +#: libraries/messages.inc.php:224 server_synchronize.php:425 #: server_synchronize.php:868 #, fuzzy msgid "Data Difference" msgstr "Structură pentru vizualizare" -#: libraries/messages.inc.php:231 server_synchronize.php:272 +#: libraries/messages.inc.php:227 server_synchronize.php:272 msgid "Data Synchronization" msgstr "" -#: libraries/messages.inc.php:235 server_privileges.php:526 +#: libraries/messages.inc.php:231 server_privileges.php:526 #: server_privileges.php:1679 msgid "Database-specific privileges" msgstr "Drepturi specifice bazei de date" -#: libraries/messages.inc.php:237 server_privileges.php:2136 +#: libraries/messages.inc.php:233 server_privileges.php:2136 msgid "database-specific" msgstr "specific bazei de date" -#: libraries/messages.inc.php:240 libraries/tbl_properties.inc.php:106 +#: libraries/messages.inc.php:236 libraries/tbl_properties.inc.php:106 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" @@ -3653,32 +3653,32 @@ msgstr "" "Pentru valorile implicite, vă rugăm să introduceți o singură valoare, fără " "backslash, escape sau ghilimele, folosind formatul: a" -#: libraries/messages.inc.php:241 tbl_operations.php:589 +#: libraries/messages.inc.php:237 tbl_operations.php:589 msgid "Defragment table" msgstr "Defragmentare tabel" -#: libraries/messages.inc.php:242 +#: libraries/messages.inc.php:238 msgid "Use delayed inserts" msgstr "Folosește inserări întîrziate" -#: libraries/messages.inc.php:245 server_privileges.php:1243 +#: libraries/messages.inc.php:241 server_privileges.php:1243 msgid "No users selected for deleting!" msgstr "Nici un utilizator ales pentru ștergere!" -#: libraries/messages.inc.php:246 pmd_general.php:372 +#: libraries/messages.inc.php:242 pmd_general.php:372 msgid "Delete relation" msgstr "Șterge relația" -#: libraries/messages.inc.php:248 server_privileges.php:1232 +#: libraries/messages.inc.php:244 server_privileges.php:1232 #, php-format msgid "Deleting %s" msgstr "Șterge %s" -#: libraries/messages.inc.php:249 libraries/sql_query_form.lib.php:388 +#: libraries/messages.inc.php:245 libraries/sql_query_form.lib.php:388 msgid "Delimiter" msgstr "Delimitator" -#: libraries/messages.inc.php:250 pdf_pages.php:506 +#: libraries/messages.inc.php:246 pdf_pages.php:506 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -3686,7 +3686,7 @@ msgstr "" "Pagina curentă se leagă de tabele care nu mai există. Doriți ștergerea " "acestor legături?" -#: libraries/messages.inc.php:254 pmd_help.php:29 +#: libraries/messages.inc.php:250 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 " @@ -3696,142 +3696,142 @@ msgstr "" "field, click the \"Choose field to display\" icon, then click on the " "appropriate field name." -#: libraries/messages.inc.php:256 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:252 libraries/mysql_charsets.lib.php:247 msgid "dictionary" msgstr "dicționar" -#: libraries/messages.inc.php:257 libraries/server_synchronize.lib.php:1348 +#: libraries/messages.inc.php:253 libraries/server_synchronize.lib.php:1348 msgid "Difference" msgstr "" -#: libraries/messages.inc.php:258 pmd_general.php:87 +#: libraries/messages.inc.php:254 pmd_general.php:87 msgid "Direct links" msgstr "Legături directe" -#: libraries/messages.inc.php:261 +#: libraries/messages.inc.php:257 msgid "Disable foreign key checks" msgstr "Dezactivare verificări de cheie străine" -#: libraries/messages.inc.php:262 +#: libraries/messages.inc.php:258 msgid "Display Features" msgstr "Arată facilitățile" -#: libraries/messages.inc.php:263 tbl_select.php:301 +#: libraries/messages.inc.php:259 tbl_select.php:301 msgid "Display order:" msgstr "Ordine de afișare:" -#: libraries/messages.inc.php:265 tbl_select.php:132 +#: libraries/messages.inc.php:261 tbl_select.php:132 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Execută o interogare prin exemplu (metacaracter: \"%\")" -#: libraries/messages.inc.php:266 +#: libraries/messages.inc.php:262 msgid "DocSQL" msgstr "DocSQL" -#: libraries/messages.inc.php:268 +#: libraries/messages.inc.php:264 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/messages.inc.php:273 server_privileges.php:1579 +#: libraries/messages.inc.php:269 server_privileges.php:1579 #: server_privileges.php:1580 server_privileges.php:1581 msgid "Drop the databases that have the same names as the users." msgstr "Aruncă baza de date care are același nume ca utilizatorul." -#: libraries/messages.inc.php:278 tbl_printview.php:382 tbl_structure.php:743 +#: libraries/messages.inc.php:274 tbl_printview.php:382 tbl_structure.php:743 msgid "dynamic" msgstr "dinamic" -#: libraries/messages.inc.php:282 server_privileges.php:1324 +#: libraries/messages.inc.php:278 server_privileges.php:1324 #: server_privileges.php:1610 msgid "Edit Privileges" msgstr "Editează drepturile de acces" -#: libraries/messages.inc.php:283 tbl_printview.php:341 tbl_structure.php:688 +#: libraries/messages.inc.php:279 tbl_printview.php:341 tbl_structure.php:688 msgid "Effective" msgstr "Efectiv" -#: libraries/messages.inc.php:286 libraries/relation.lib.php:100 +#: libraries/messages.inc.php:282 libraries/relation.lib.php:100 msgid "Enabled" msgstr "Activat" -#: libraries/messages.inc.php:287 +#: libraries/messages.inc.php:283 msgid "Enclose export in a transaction" msgstr "Cuprinde exportarea într-o tranzacție" -#: libraries/messages.inc.php:288 libraries/sqlparser.lib.php:177 +#: libraries/messages.inc.php:284 libraries/sqlparser.lib.php:177 msgid "END CUT" msgstr "DE TĂIAT - SFÎRȘIT" -#: libraries/messages.inc.php:290 libraries/sqlparser.lib.php:183 +#: libraries/messages.inc.php:286 libraries/sqlparser.lib.php:183 msgid "END RAW" msgstr "SFÎRȘIT BRUT" -#: libraries/messages.inc.php:293 libraries/server_links.inc.php:61 +#: libraries/messages.inc.php:289 libraries/server_links.inc.php:61 #: test/theme.php:113 msgid "Engines" msgstr "Motoare" -#: libraries/messages.inc.php:295 libraries/mysql_charsets.lib.php:238 +#: libraries/messages.inc.php:291 libraries/mysql_charsets.lib.php:238 msgid "English" msgstr "Englez" -#: libraries/messages.inc.php:296 server_privileges.php:393 +#: libraries/messages.inc.php:292 server_privileges.php:393 #: server_privileges.php:535 server_privileges.php:1501 msgid " Note: MySQL privilege names are expressed in English " msgstr " Important: numele drepturilor de acces MySQL apar în engleză" -#: libraries/messages.inc.php:298 libraries/zip_extension.lib.php:49 +#: libraries/messages.inc.php:294 libraries/zip_extension.lib.php:49 #: libraries/zip_extension.lib.php:51 libraries/zip_extension.lib.php:66 msgid "Error in ZIP archive:" msgstr "Eroare în arhiva ZIP:" -#: libraries/messages.inc.php:303 libraries/mysql_charsets.lib.php:241 +#: libraries/messages.inc.php:299 libraries/mysql_charsets.lib.php:241 msgid "Esperanto" msgstr "Esperanto" -#: libraries/messages.inc.php:304 libraries/mysql_charsets.lib.php:244 +#: libraries/messages.inc.php:300 libraries/mysql_charsets.lib.php:244 msgid "Estonian" msgstr "Estoniană" -#: libraries/messages.inc.php:305 libraries/tbl_triggers.lib.php:29 +#: libraries/messages.inc.php:301 libraries/tbl_triggers.lib.php:29 msgid "Event" msgstr "Eveniment" -#: libraries/messages.inc.php:307 +#: libraries/messages.inc.php:303 msgid "Excel edition" msgstr "Ediția Excel" -#: libraries/messages.inc.php:311 pmd_pdf.php:85 +#: libraries/messages.inc.php:307 pmd_pdf.php:85 msgid "Export/Import to scale" msgstr "Exportă/Importă la scală" -#: libraries/messages.inc.php:313 +#: libraries/messages.inc.php:309 msgid "Extended inserts" msgstr "Inserări extinse" -#: libraries/messages.inc.php:314 pdf_schema.php:1267 pdf_schema.php:1288 +#: libraries/messages.inc.php:310 pdf_schema.php:1267 pdf_schema.php:1288 #: tbl_printview.php:147 tbl_structure.php:183 tbl_tracking.php:278 msgid "Extra" msgstr "Extra" -#: libraries/messages.inc.php:316 server_status.php:447 +#: libraries/messages.inc.php:312 server_status.php:447 msgid "Failed attempts" msgstr "Încercări nereușite" -#: libraries/messages.inc.php:318 tbl_structure.php:375 +#: libraries/messages.inc.php:314 tbl_structure.php:375 #, php-format msgid "Field %s has been dropped" msgstr "Cîmpul %s a fost aruncat" -#: libraries/messages.inc.php:322 libraries/sql_query_form.lib.php:317 +#: libraries/messages.inc.php:318 libraries/sql_query_form.lib.php:317 msgid "Fields" msgstr "Cîmpuri" -#: libraries/messages.inc.php:332 server_binlog.php:136 +#: libraries/messages.inc.php:328 server_binlog.php:136 msgid "Files" msgstr "Fișiere" -#: libraries/messages.inc.php:334 server_privileges.php:1597 +#: libraries/messages.inc.php:330 server_privileges.php:1597 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -3844,219 +3844,219 @@ msgstr "" "În acest caz, reîncărcați de aici înainte de a continua %sreîncărcarea " "drepturilor%s." -#: libraries/messages.inc.php:335 server_status.php:289 +#: libraries/messages.inc.php:331 server_status.php:289 msgid "Flush query cache" msgstr "Reinițializare cache interogare" -#: libraries/messages.inc.php:336 +#: libraries/messages.inc.php:332 msgid "Flush the table (\"FLUSH\")" msgstr "Curățarea tabelului (\"FLUSH\")" -#: libraries/messages.inc.php:337 server_status.php:271 +#: libraries/messages.inc.php:333 server_status.php:271 msgid "Flush (close) all tables" msgstr "Flush (close) all tables" -#: libraries/messages.inc.php:339 tbl_relation.php:279 +#: libraries/messages.inc.php:335 tbl_relation.php:279 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "Error creating foreign key on %1$s (check data types)" -#: libraries/messages.inc.php:341 setup/lib/messages.inc.php:88 +#: libraries/messages.inc.php:337 setup/lib/messages.inc.php:88 #: tbl_printview.php:376 tbl_structure.php:738 msgid "Format" msgstr "Format" -#: libraries/messages.inc.php:344 server_replication.php:325 +#: libraries/messages.inc.php:340 server_replication.php:325 #, fuzzy msgid "Full start" msgstr "Tot textul" -#: libraries/messages.inc.php:345 server_replication.php:325 +#: libraries/messages.inc.php:341 server_replication.php:325 #, fuzzy msgid "Full stop" msgstr "Tot textul" -#: libraries/messages.inc.php:347 tbl_change.php:282 tbl_change.php:320 +#: libraries/messages.inc.php:343 tbl_change.php:282 tbl_change.php:320 msgid "Function" msgstr "Funcție" -#: libraries/messages.inc.php:355 libraries/mysql_charsets.lib.php:377 +#: libraries/messages.inc.php:351 libraries/mysql_charsets.lib.php:377 msgid "Georgian" msgstr "Georgiană" -#: libraries/messages.inc.php:356 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:352 libraries/mysql_charsets.lib.php:247 #: libraries/mysql_charsets.lib.php:250 msgid "German" msgstr "Germană" -#: libraries/messages.inc.php:357 themes.php:42 +#: libraries/messages.inc.php:353 themes.php:42 msgid "Get more themes!" msgstr "" -#: libraries/messages.inc.php:358 server_privileges.php:2134 +#: libraries/messages.inc.php:354 server_privileges.php:2134 msgid "global" msgstr "global" -#: libraries/messages.inc.php:359 server_privileges.php:524 +#: libraries/messages.inc.php:355 server_privileges.php:524 #: server_privileges.php:1500 msgid "Global privileges" msgstr "Privilegii globale" -#: libraries/messages.inc.php:360 server_variables.php:55 +#: libraries/messages.inc.php:356 server_variables.php:55 #: server_variables.php:89 msgid "Global value" msgstr "Valoare globală" -#: libraries/messages.inc.php:365 server_privileges.php:1502 +#: libraries/messages.inc.php:361 server_privileges.php:1502 #: server_privileges.php:1684 server_privileges.php:2033 msgid "Grant" msgstr "Permite" -#: libraries/messages.inc.php:366 libraries/mysql_charsets.lib.php:380 +#: libraries/messages.inc.php:362 libraries/mysql_charsets.lib.php:380 msgid "Greek" msgstr "Grec" -#: libraries/messages.inc.php:367 +#: libraries/messages.inc.php:363 msgid "\"gzipped\"" msgstr "cu „gzip”" -#: libraries/messages.inc.php:369 server_status.php:250 +#: libraries/messages.inc.php:365 server_status.php:250 msgid "Handler" msgstr "Gestionar" -#: libraries/messages.inc.php:370 server_synchronize.php:464 +#: libraries/messages.inc.php:366 server_synchronize.php:464 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: libraries/messages.inc.php:372 libraries/mysql_charsets.lib.php:374 +#: libraries/messages.inc.php:368 libraries/mysql_charsets.lib.php:374 msgid "Hebrew" msgstr "Ebraică" -#: libraries/messages.inc.php:373 pmd_general.php:83 +#: libraries/messages.inc.php:369 pmd_general.php:83 msgid "Help" msgstr "Ajutor" -#: libraries/messages.inc.php:374 +#: libraries/messages.inc.php:370 msgid "Use hexadecimal for BLOB" msgstr "Folosește hexazecimale pentru BLOB" -#: libraries/messages.inc.php:376 pmd_general.php:120 +#: libraries/messages.inc.php:372 pmd_general.php:120 msgid "Hide/Show all" msgstr "Arată/ascunde toate" -#: libraries/messages.inc.php:377 pmd_general.php:124 +#: libraries/messages.inc.php:373 pmd_general.php:124 msgid "Hide/Show Tables with no relation" msgstr "Arată/ascunde tabele fără realție" -#: libraries/messages.inc.php:378 libraries/navigation_header.inc.php:54 +#: libraries/messages.inc.php:374 libraries/navigation_header.inc.php:54 #: libraries/navigation_header.inc.php:57 #: libraries/navigation_header.inc.php:58 msgid "Home" msgstr "Pagina de pornire" -#: libraries/messages.inc.php:379 main.php:233 +#: libraries/messages.inc.php:375 main.php:233 msgid "Official Homepage" msgstr "Pagina oficială phpMyAdmin" -#: libraries/messages.inc.php:382 libraries/replication_gui.lib.php:327 +#: libraries/messages.inc.php:378 libraries/replication_gui.lib.php:327 #: server_privileges.php:753 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/messages.inc.php:383 +#: libraries/messages.inc.php:379 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/messages.inc.php:384 libraries/mysql_charsets.lib.php:253 +#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:253 msgid "Hungarian" msgstr "Maghiar" -#: libraries/messages.inc.php:386 libraries/mysql_charsets.lib.php:256 +#: libraries/messages.inc.php:382 libraries/mysql_charsets.lib.php:256 msgid "Icelandic" msgstr "Islandez" -#: libraries/messages.inc.php:387 server_processlist.php:53 +#: libraries/messages.inc.php:383 server_processlist.php:53 msgid "ID" msgstr "ID" -#: libraries/messages.inc.php:388 libraries/mult_submits.inc.php:108 +#: libraries/messages.inc.php:384 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:479 msgid "Fulltext" msgstr "Tot textul" -#: libraries/messages.inc.php:389 +#: libraries/messages.inc.php:385 msgid "Ignore duplicate rows" msgstr "Ignoră rînduri duplicate" -#: libraries/messages.inc.php:390 tbl_change.php:302 tbl_indexes.php:200 +#: libraries/messages.inc.php:386 tbl_change.php:302 tbl_indexes.php:200 #: tbl_indexes.php:225 msgid "Ignore" msgstr "Ignoră" -#: libraries/messages.inc.php:391 +#: libraries/messages.inc.php:387 msgid "Use ignore inserts" msgstr "Utilizați ignorare inserări" -#: libraries/messages.inc.php:392 +#: libraries/messages.inc.php:388 msgid "Column names in first row" msgstr "" -#: libraries/messages.inc.php:393 +#: libraries/messages.inc.php:389 msgid "Do not import empty rows" msgstr "" -#: libraries/messages.inc.php:394 pmd_general.php:104 +#: libraries/messages.inc.php:390 pmd_general.php:104 msgid "Import/Export coordinates for PDF schema" msgstr "Import/Export coordinates for PDF schema" -#: libraries/messages.inc.php:395 querywindow.php:104 +#: libraries/messages.inc.php:391 querywindow.php:104 msgid "Import files" msgstr "Import fișiere" -#: libraries/messages.inc.php:403 +#: libraries/messages.inc.php:399 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/messages.inc.php:404 libraries/messages.inc.php:584 +#: libraries/messages.inc.php:400 libraries/messages.inc.php:580 msgid "Open Document Spreadsheet" msgstr "Foaie de calcul Open Document" -#: libraries/messages.inc.php:405 +#: libraries/messages.inc.php:401 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/messages.inc.php:409 +#: libraries/messages.inc.php:405 msgid "Excel 97-2003 XLS Workbook" msgstr "" -#: libraries/messages.inc.php:410 +#: libraries/messages.inc.php:406 msgid "Excel 2007 XLSX Workbook" msgstr "" -#: libraries/messages.inc.php:414 libraries/mult_submits.inc.php:98 +#: libraries/messages.inc.php:410 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:476 tbl_structure.php:674 msgid "Index" msgstr "Index" -#: libraries/messages.inc.php:415 tbl_indexes.php:168 +#: libraries/messages.inc.php:411 tbl_indexes.php:168 msgid "Index name:" msgstr "Nume index :" -#: libraries/messages.inc.php:416 tbl_indexes.php:174 +#: libraries/messages.inc.php:412 tbl_indexes.php:174 msgid "Index type:" msgstr "Tip index :" -#: libraries/messages.inc.php:417 sql.php:639 +#: libraries/messages.inc.php:413 sql.php:639 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Probleme cu indexul tabelului `%s`" -#: libraries/messages.inc.php:427 main.php:266 +#: libraries/messages.inc.php:423 main.php:266 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -4067,24 +4067,24 @@ msgstr "" "Serverul MySQL poate fi astfel vulnerabil. Reparați neapărat această " "greșeală." -#: libraries/messages.inc.php:428 tbl_change.php:1130 +#: libraries/messages.inc.php:424 tbl_change.php:1130 msgid "Insert as new row" msgstr "Inserează ca o nouă linie" -#: libraries/messages.inc.php:429 sql.php:496 tbl_replace.php:386 +#: libraries/messages.inc.php:425 sql.php:496 tbl_replace.php:386 #, php-format msgid "Inserted row id: %1$d" msgstr "ID rînd inserat: %1$d" -#: libraries/messages.inc.php:430 tbl_change.php:1131 +#: libraries/messages.inc.php:426 tbl_change.php:1131 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/messages.inc.php:432 main.php:139 +#: libraries/messages.inc.php:428 main.php:139 msgid "Interface" msgstr "Interfață" -#: libraries/messages.inc.php:433 tbl_relation.php:407 +#: libraries/messages.inc.php:429 tbl_relation.php:407 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -4092,140 +4092,140 @@ msgstr "" "Nu este necesară o relație internă atunci cînd există o cheie externă " "corespondentă." -#: libraries/messages.inc.php:435 pdf_pages.php:303 +#: libraries/messages.inc.php:431 pdf_pages.php:303 msgid "Internal relations" msgstr "Relații interne" -#: libraries/messages.inc.php:438 tbl_indexes.php:256 tbl_structure.php:590 +#: libraries/messages.inc.php:434 tbl_indexes.php:256 tbl_structure.php:590 #: tbl_structure.php:601 msgid "Column count has to be larger than zero." msgstr "Numărul coloanelor trebuie să fie mai mare de zero." -#: libraries/messages.inc.php:444 libraries/tbl_properties.inc.php:784 +#: libraries/messages.inc.php:440 libraries/tbl_properties.inc.php:784 #: tbl_structure.php:537 msgid "You have to add at least one field." msgstr "Trebuie să adăugați cel puțin un cîmp." -#: libraries/messages.inc.php:449 +#: libraries/messages.inc.php:445 #, php-format msgid "Invalid server index: \"%s\"" msgstr "Index de server nevalid: „%s”" -#: libraries/messages.inc.php:452 libraries/mysql_charsets.lib.php:259 +#: libraries/messages.inc.php:448 libraries/mysql_charsets.lib.php:259 #: libraries/mysql_charsets.lib.php:349 msgid "Japanese" msgstr "Japonez" -#: libraries/messages.inc.php:453 main.php:331 +#: libraries/messages.inc.php:449 main.php:331 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: libraries/messages.inc.php:454 server_status.php:257 +#: libraries/messages.inc.php:450 server_status.php:257 msgid "Joins" msgstr "Joncțiuni" -#: libraries/messages.inc.php:457 server_privileges.php:763 +#: libraries/messages.inc.php:453 server_privileges.php:763 msgid "Do not change the password" msgstr "Nu schimbați parola" -#: libraries/messages.inc.php:458 server_status.php:256 +#: libraries/messages.inc.php:454 server_status.php:256 msgid "Key cache" msgstr "Key cache" -#: libraries/messages.inc.php:462 libraries/mysql_charsets.lib.php:268 +#: libraries/messages.inc.php:458 libraries/mysql_charsets.lib.php:268 #: libraries/mysql_charsets.lib.php:371 msgid "Korean" msgstr "Coreean" -#: libraries/messages.inc.php:466 libraries/select_lang.lib.php:480 +#: libraries/messages.inc.php:462 libraries/select_lang.lib.php:480 #: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492 #, php-format msgid "Unknown language: %1$s." msgstr "Limbă necunoscută: %1$s." -#: libraries/messages.inc.php:468 +#: libraries/messages.inc.php:464 msgid "Table caption" msgstr "Captură tabel" -#: libraries/messages.inc.php:469 +#: libraries/messages.inc.php:465 msgid "Content of table __TABLE__" msgstr "Conținutul tabelului __TABLE__" -#: libraries/messages.inc.php:470 +#: libraries/messages.inc.php:466 msgid "Continued table caption" msgstr "Continuare captură tabel" -#: libraries/messages.inc.php:471 +#: libraries/messages.inc.php:467 msgid "(continued)" msgstr "(continuare)" -#: libraries/messages.inc.php:472 +#: libraries/messages.inc.php:468 msgid "Include table caption" msgstr "Include captură tabel" -#: libraries/messages.inc.php:473 +#: libraries/messages.inc.php:469 msgid "Label key" msgstr "Tasta label" -#: libraries/messages.inc.php:474 +#: libraries/messages.inc.php:470 msgid "LaTeX" msgstr "LaTeX" -#: libraries/messages.inc.php:475 +#: libraries/messages.inc.php:471 msgid "Structure of table __TABLE__" msgstr "Structura tabelului __TABLE__" -#: libraries/messages.inc.php:476 libraries/mysql_charsets.lib.php:262 +#: libraries/messages.inc.php:472 libraries/mysql_charsets.lib.php:262 msgid "Latvian" msgstr "Leton" -#: libraries/messages.inc.php:477 +#: libraries/messages.inc.php:473 msgid "CSV using LOAD DATA" msgstr "CSV folosind LOAD DATA" -#: libraries/messages.inc.php:478 +#: libraries/messages.inc.php:474 msgid "Use LOCAL keyword" msgstr "Folosește cuvîntul-cheie LOCAL" -#: libraries/messages.inc.php:479 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:475 libraries/tbl_properties.inc.php:105 msgid "Length/Values" msgstr "Lungime/Setare" -#: libraries/messages.inc.php:480 tbl_select.php:295 +#: libraries/messages.inc.php:476 tbl_select.php:295 msgid "Number of rows per page" msgstr "Numărul de înregistrări pe pagină" -#: libraries/messages.inc.php:484 libraries/mysql_charsets.lib.php:265 +#: libraries/messages.inc.php:480 libraries/mysql_charsets.lib.php:265 msgid "Lithuanian" msgstr "Lituanian" -#: libraries/messages.inc.php:485 libraries/replication_gui.lib.php:302 +#: libraries/messages.inc.php:481 libraries/replication_gui.lib.php:302 #: server_privileges.php:729 msgid "Local" msgstr "Local" -#: libraries/messages.inc.php:487 server_privileges.php:669 +#: libraries/messages.inc.php:483 server_privileges.php:669 msgid "Login Information" msgstr "Informații de autentificare" -#: libraries/messages.inc.php:490 libraries/navigation_header.inc.php:67 +#: libraries/messages.inc.php:486 libraries/navigation_header.inc.php:67 #: libraries/navigation_header.inc.php:70 #: libraries/navigation_header.inc.php:71 main.php:99 msgid "Log out" msgstr "Deconectare" -#: libraries/messages.inc.php:497 server_status.php:440 +#: libraries/messages.inc.php:493 server_status.php:440 msgid "max. concurrent connections" msgstr "conexiuni concurente (maxim)" -#: libraries/messages.inc.php:498 +#: libraries/messages.inc.php:494 msgid "Maximal length of created query" msgstr "Lungimea maximă a interogării create" -#: libraries/messages.inc.php:500 main.php:282 +#: libraries/messages.inc.php:496 main.php:282 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -4235,7 +4235,7 @@ msgstr "" "charactere multi-octet. Fără extensia mbstring, phpMyAdmin nu poate diviza " "șirurile corect și aceasta poate duce la rezultate neașteptate." -#: libraries/messages.inc.php:501 main.php:274 +#: libraries/messages.inc.php:497 main.php:274 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -4244,24 +4244,24 @@ msgstr "" "Ați activat mbstring.func_overload în configurația PHP. Această opțiune nu " "este compatibilă cu phpMyAdmin și poate duce la pierderea unor date!" -#: libraries/messages.inc.php:502 +#: libraries/messages.inc.php:498 msgid "MediaWiki Table" msgstr "" -#: libraries/messages.inc.php:503 transformation_overview.php:25 +#: libraries/messages.inc.php:499 transformation_overview.php:25 msgid "Available MIME types" msgstr "Tipuri MIME disponibile" -#: libraries/messages.inc.php:504 transformation_overview.php:43 +#: libraries/messages.inc.php:500 transformation_overview.php:43 msgid "Available transformations" msgstr "Informații disponibile" -#: libraries/messages.inc.php:505 +#: libraries/messages.inc.php:501 msgctxt "$strMIME_description" msgid "Description" msgstr "Descriere" -#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:580 +#: libraries/messages.inc.php:503 libraries/tbl_properties.inc.php:580 #: transformation_overview.php:60 #, php-format msgid "" @@ -4271,7 +4271,7 @@ msgstr "" "Nu este disponibilă nici o descriere pentru această transformare.
Întrebați autorul de funcțiile îndeplinite de %s." -#: libraries/messages.inc.php:509 libraries/tbl_properties.inc.php:137 +#: libraries/messages.inc.php:505 libraries/tbl_properties.inc.php:137 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -4280,7 +4280,7 @@ msgstr "" "Pentru lista opțiunilor de transformare disponibile și transformările MIME-" "type, apăsați pe %stransformation descriptions%s" -#: libraries/messages.inc.php:510 libraries/tbl_properties.inc.php:146 +#: libraries/messages.inc.php:506 libraries/tbl_properties.inc.php:146 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -4292,57 +4292,57 @@ msgstr "" "sau apostrof (\"'\") in aceste valori, introduceți backslash-uri (ex. '\\" "\\xyz' sau 'a\\'b')." -#: libraries/messages.inc.php:511 libraries/tbl_properties.inc.php:145 +#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:145 msgid "Transformation options" msgstr "Opțiuni de transformare" -#: libraries/messages.inc.php:513 transformation_overview.php:38 +#: libraries/messages.inc.php:509 transformation_overview.php:38 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "" "Tipurile MIME enumerate cursiv nu au o funcție de transformare separată" -#: libraries/messages.inc.php:515 tbl_indexes.php:162 +#: libraries/messages.inc.php:511 tbl_indexes.php:162 msgid "Modify an index" msgstr "Modifică un index" -#: libraries/messages.inc.php:517 pmd_general.php:108 +#: libraries/messages.inc.php:513 pmd_general.php:108 msgid "Move Menu" msgstr "Mutare meniu" -#: libraries/messages.inc.php:518 tbl_operations.php:276 +#: libraries/messages.inc.php:514 tbl_operations.php:276 msgid "Move table to (database.table):" msgstr "Mută tabelul la (bază_de_date.tabel):" -#: libraries/messages.inc.php:519 tbl_move_copy.php:56 +#: libraries/messages.inc.php:515 tbl_move_copy.php:56 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabelul %s a fost mutat la %s." -#: libraries/messages.inc.php:520 tbl_move_copy.php:46 +#: libraries/messages.inc.php:516 tbl_move_copy.php:46 msgid "Can't move table to same one!" msgstr "Nu se poate copia tabelul peste cel existent pentru că este același!" -#: libraries/messages.inc.php:521 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:517 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 #: libraries/mysql_charsets.lib.php:332 libraries/mysql_charsets.lib.php:354 #: libraries/mysql_charsets.lib.php:365 msgid "multilingual" msgstr "Poliglot" -#: libraries/messages.inc.php:534 main.php:193 +#: libraries/messages.inc.php:530 main.php:193 msgid "MySQL charset" msgstr "Setul de caractere MySQL" -#: libraries/messages.inc.php:535 main.php:211 +#: libraries/messages.inc.php:531 main.php:211 msgid "MySQL client version" msgstr "Versiunea clientului MySQL" -#: libraries/messages.inc.php:536 main.php:125 +#: libraries/messages.inc.php:532 main.php:125 msgid "MySQL connection collation" msgstr "MySQL connection collation" -#: libraries/messages.inc.php:537 main.php:346 +#: libraries/messages.inc.php:533 main.php:346 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -4352,55 +4352,55 @@ msgstr "" "%s a serverului dumneavoastră MySQL. Această diferență poate cauza " "comportamente imprevizibile." -#: libraries/messages.inc.php:539 server_status.php:294 +#: libraries/messages.inc.php:535 server_status.php:294 msgid "Show processes" msgstr "Afișează procesele" -#: libraries/messages.inc.php:545 navigation.php:210 server_databases.php:371 +#: libraries/messages.inc.php:541 navigation.php:210 server_databases.php:371 #: server_synchronize.php:1191 msgid "No databases" msgstr "Nu sînt baze de date" -#: libraries/messages.inc.php:546 server_databases.php:52 +#: libraries/messages.inc.php:542 server_databases.php:52 msgid "No databases selected." msgstr "Nu este selectată nici o bază de date." -#: libraries/messages.inc.php:548 libraries/relation.lib.php:1173 +#: libraries/messages.inc.php:544 libraries/relation.lib.php:1173 msgid "no description" msgstr "Nu există descriere" -#: libraries/messages.inc.php:552 libraries/zip_extension.lib.php:26 +#: libraries/messages.inc.php:548 libraries/zip_extension.lib.php:26 msgid "No files found inside ZIP archive!" msgstr "Niciun fișier nu a fost găsit în arhiva ZIP!" -#: libraries/messages.inc.php:555 tbl_indexes.php:91 +#: libraries/messages.inc.php:551 tbl_indexes.php:91 msgid "No index parts defined!" msgstr "Nu sînt definite părți din index!" -#: libraries/messages.inc.php:556 libraries/mult_submits.inc.php:435 +#: libraries/messages.inc.php:552 libraries/mult_submits.inc.php:435 #: tbl_replace.php:331 msgid "No change" msgstr "Nici o schimbare" -#: libraries/messages.inc.php:557 +#: libraries/messages.inc.php:553 #, fuzzy msgctxt "$strNoneDefault" msgid "None" msgstr "Nici unul(a)" -#: libraries/messages.inc.php:560 libraries/plugin_interface.lib.php:312 +#: libraries/messages.inc.php:556 libraries/plugin_interface.lib.php:312 msgid "This format has no options" msgstr "Acest format nu are opțiuni" -#: libraries/messages.inc.php:565 user_password.php:54 +#: libraries/messages.inc.php:561 user_password.php:54 msgid "You don't have sufficient privileges to be here right now!" msgstr "Nu dețineți drepturi de acces pentru a vă afla aici!" -#: libraries/messages.inc.php:566 tbl_row_action.php:29 +#: libraries/messages.inc.php:562 tbl_row_action.php:29 msgid "No rows selected" msgstr "Nu e nici un rînd selectat" -#: libraries/messages.inc.php:569 themes.php:32 +#: libraries/messages.inc.php:565 themes.php:32 #, php-format msgid "" "No themes support; please check your configuration and/or your themes in " @@ -4409,298 +4409,298 @@ msgstr "" "Nu există suport pentru tematici, vă rugăm să verificați configurația și/sau " "designurile în directorul %s." -#: libraries/messages.inc.php:571 libraries/relation.lib.php:95 +#: libraries/messages.inc.php:567 libraries/relation.lib.php:95 msgid "not OK" msgstr "Nu este bine" -#: libraries/messages.inc.php:572 server_synchronize.php:400 +#: libraries/messages.inc.php:568 server_synchronize.php:400 #: server_synchronize.php:839 msgid "not present" msgstr "" -#: libraries/messages.inc.php:573 pdf_pages.php:36 pdf_pages.php:42 +#: libraries/messages.inc.php:569 pdf_pages.php:36 pdf_pages.php:42 #: pdf_pages.php:48 pdf_pages.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "%s tabelul nu a fost găsit sau nu este stabilit în %s" -#: libraries/messages.inc.php:574 server_privileges.php:804 +#: libraries/messages.inc.php:570 server_privileges.php:804 #: server_privileges.php:2166 msgid "No user(s) found." msgstr "Nu s-a găsit nici un utilizator." -#: libraries/messages.inc.php:578 pmd_general.php:164 +#: libraries/messages.inc.php:574 pmd_general.php:164 msgid "Number of tables" msgstr "Număr de tabele" -#: libraries/messages.inc.php:581 server_databases.php:117 +#: libraries/messages.inc.php:577 server_databases.php:117 #: server_status.php:260 setup/lib/messages.inc.php:117 msgid "Tables" msgstr "Tabele" -#: libraries/messages.inc.php:583 libraries/relation.lib.php:99 +#: libraries/messages.inc.php:579 libraries/relation.lib.php:99 #: pmd_general.php:340 msgid "OK" msgstr "E bine" -#: libraries/messages.inc.php:585 +#: libraries/messages.inc.php:581 msgid "Open Document Text" msgstr "Text Open Document" -#: libraries/messages.inc.php:588 tbl_select.php:138 +#: libraries/messages.inc.php:584 tbl_select.php:138 msgid "Operator" msgstr "Operand" -#: libraries/messages.inc.php:589 tbl_operations.php:662 +#: libraries/messages.inc.php:585 tbl_operations.php:662 msgid "Optimize" msgstr "Optimizează" -#: libraries/messages.inc.php:602 libraries/tbl_properties.inc.php:755 +#: libraries/messages.inc.php:598 libraries/tbl_properties.inc.php:755 msgid "PARTITION definition" msgstr "Definiție PARTIȚIE" -#: libraries/messages.inc.php:603 tbl_structure.php:757 +#: libraries/messages.inc.php:599 tbl_structure.php:757 msgid "partitioned" msgstr "partiționat" -#: libraries/messages.inc.php:604 tbl_operations.php:649 +#: libraries/messages.inc.php:600 tbl_operations.php:649 msgid "Partition maintenance" msgstr "Întreținerea partiției" -#: libraries/messages.inc.php:605 tbl_operations.php:657 +#: libraries/messages.inc.php:601 tbl_operations.php:657 #, php-format msgid "Partition %s" msgstr "Partiția %s" -#: libraries/messages.inc.php:606 server_privileges.php:1212 +#: libraries/messages.inc.php:602 server_privileges.php:1212 #, php-format msgid "The password for %s was changed successfully." msgstr "Parola pentru %s a fost schimbată cu succes." -#: libraries/messages.inc.php:635 +#: libraries/messages.inc.php:631 #, php-format msgid "Schema of the \"%s\" database - Page %s" msgstr "Schema bazei de date \"%s\" - Pagina %s" -#: libraries/messages.inc.php:636 +#: libraries/messages.inc.php:632 #, php-format msgid "The \"%s\" table doesn't exist!" msgstr "Tabelul „%s” nu există!" -#: libraries/messages.inc.php:637 pdf_schema.php:1013 +#: libraries/messages.inc.php:633 pdf_schema.php:1013 msgid "No tables" msgstr "Nu există tabele" -#: libraries/messages.inc.php:638 pmd_pdf.php:63 +#: libraries/messages.inc.php:634 pmd_pdf.php:63 #, fuzzy msgid "Page has been created" msgstr "Tabelul %1$s a fost creat." -#: libraries/messages.inc.php:639 pmd_pdf.php:65 +#: libraries/messages.inc.php:635 pmd_pdf.php:65 msgid "Page creation failed" msgstr "" -#: libraries/messages.inc.php:640 +#: libraries/messages.inc.php:636 msgid "PDF" msgstr "PDF" -#: libraries/messages.inc.php:641 +#: libraries/messages.inc.php:637 msgid "(Generates a report containing the data of a single table)" msgstr "(Generează un raport conținînd datele unui singur tabel)" -#: libraries/messages.inc.php:642 +#: libraries/messages.inc.php:638 msgid "Report title" msgstr "Titlu raport" -#: libraries/messages.inc.php:643 server_status.php:389 server_status.php:434 +#: libraries/messages.inc.php:639 server_status.php:389 server_status.php:434 #: server_status.php:497 server_status.php:555 msgid "per hour" msgstr "pe oră" -#: libraries/messages.inc.php:644 server_status.php:498 +#: libraries/messages.inc.php:640 server_status.php:498 msgid "per minute" msgstr "pe minut" -#: libraries/messages.inc.php:645 server_status.php:499 +#: libraries/messages.inc.php:641 server_status.php:499 msgid "per second" msgstr "pe secundă" -#: libraries/messages.inc.php:646 libraries/mysql_charsets.lib.php:271 +#: libraries/messages.inc.php:642 libraries/mysql_charsets.lib.php:271 msgid "Persian" msgstr "Persană" -#: libraries/messages.inc.php:647 libraries/mysql_charsets.lib.php:250 +#: libraries/messages.inc.php:643 libraries/mysql_charsets.lib.php:250 msgid "phone book" msgstr "carte de telefoane" -#: libraries/messages.inc.php:648 +#: libraries/messages.inc.php:644 msgid "PHP array" msgstr "" -#: libraries/messages.inc.php:650 main.php:213 +#: libraries/messages.inc.php:646 main.php:213 msgid "PHP extension" msgstr "Extensie PHP" -#: libraries/messages.inc.php:654 libraries/relation.lib.php:163 +#: libraries/messages.inc.php:650 libraries/relation.lib.php:163 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/messages.inc.php:655 libraries/relation.lib.php:159 +#: libraries/messages.inc.php:651 libraries/relation.lib.php:159 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/messages.inc.php:656 libraries/relation.lib.php:161 +#: libraries/messages.inc.php:652 libraries/relation.lib.php:161 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" -#: libraries/messages.inc.php:657 libraries/relation.lib.php:162 +#: libraries/messages.inc.php:653 libraries/relation.lib.php:162 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/messages.inc.php:658 libraries/relation.lib.php:164 +#: libraries/messages.inc.php:654 libraries/relation.lib.php:164 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/messages.inc.php:661 libraries/mysql_charsets.lib.php:274 +#: libraries/messages.inc.php:657 libraries/mysql_charsets.lib.php:274 msgid "Polish" msgstr "Polononez" -#: libraries/messages.inc.php:662 libraries/replication_gui.lib.php:67 +#: libraries/messages.inc.php:658 libraries/replication_gui.lib.php:67 #: server_synchronize.php:1163 #, fuzzy msgid "Port" msgstr "Sortare" -#: libraries/messages.inc.php:667 tbl_indexes.php:67 +#: libraries/messages.inc.php:663 tbl_indexes.php:67 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Numele cheii primare trebuie să fie... PRIMARY!" -#: libraries/messages.inc.php:668 tbl_indexes.php:184 +#: libraries/messages.inc.php:664 tbl_indexes.php:184 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" "(Numele „PRIMARY” trebuie să fie numai la cheia primară!)" -#: libraries/messages.inc.php:669 libraries/mult_submits.inc.php:76 +#: libraries/messages.inc.php:665 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:474 msgid "Primary" msgstr "Primar" -#: libraries/messages.inc.php:673 server_privileges.php:227 +#: libraries/messages.inc.php:669 server_privileges.php:227 msgid "Includes all privileges except GRANT." msgstr "Include toate privilegiile, excluzand GRANT." -#: libraries/messages.inc.php:674 server_privileges.php:153 +#: libraries/messages.inc.php:670 server_privileges.php:153 #: server_privileges.php:476 msgid "Allows altering the structure of existing tables." msgstr "Permite alterarea structurii la tabelele deja existente." -#: libraries/messages.inc.php:675 server_privileges.php:169 +#: libraries/messages.inc.php:671 server_privileges.php:169 #: server_privileges.php:482 msgid "Allows altering and dropping stored routines." msgstr "Permite alterarea și aruncarea rutinelor stocate." -#: libraries/messages.inc.php:676 server_privileges.php:145 +#: libraries/messages.inc.php:672 server_privileges.php:145 #: server_privileges.php:475 msgid "Allows creating new databases and tables." msgstr "Permite crearea de noi baze de date și tabele." -#: libraries/messages.inc.php:677 server_privileges.php:168 +#: libraries/messages.inc.php:673 server_privileges.php:168 #: server_privileges.php:481 msgid "Allows creating stored routines." msgstr "Permite crearea rutinelor stocate." -#: libraries/messages.inc.php:678 server_privileges.php:475 +#: libraries/messages.inc.php:674 server_privileges.php:475 msgid "Allows creating new tables." msgstr "Permite crearea de noi tabele." -#: libraries/messages.inc.php:679 server_privileges.php:156 +#: libraries/messages.inc.php:675 server_privileges.php:156 #: server_privileges.php:479 msgid "Allows creating temporary tables." msgstr "Permite crearea de tabele temporare." -#: libraries/messages.inc.php:680 server_privileges.php:170 +#: libraries/messages.inc.php:676 server_privileges.php:170 #: server_privileges.php:515 msgid "Allows creating, dropping and renaming user accounts." msgstr "Permite crearea, aruncarea și redenumirea conturilor de utilizator." -#: libraries/messages.inc.php:681 server_privileges.php:160 +#: libraries/messages.inc.php:677 server_privileges.php:160 #: server_privileges.php:164 server_privileges.php:487 #: server_privileges.php:491 msgid "Allows creating new views." msgstr "Permite crearea noilor viziuni." -#: libraries/messages.inc.php:682 server_privileges.php:144 +#: libraries/messages.inc.php:678 server_privileges.php:144 #: server_privileges.php:467 msgid "Allows deleting data." msgstr "Permite stergere de date." -#: libraries/messages.inc.php:683 server_privileges.php:146 +#: libraries/messages.inc.php:679 server_privileges.php:146 #: server_privileges.php:478 msgid "Allows dropping databases and tables." msgstr "Permite stergerea unei baze de date sau a unor tabele." -#: libraries/messages.inc.php:684 server_privileges.php:478 +#: libraries/messages.inc.php:680 server_privileges.php:478 msgid "Allows dropping tables." msgstr "Permite aruncarea a unei baze de date." -#: libraries/messages.inc.php:685 server_privileges.php:161 +#: libraries/messages.inc.php:681 server_privileges.php:161 #: server_privileges.php:495 msgid "Allows to set up events for the event scheduler" msgstr "Permite configurarea evenimentelor pentru planificatorul de evenimente" -#: libraries/messages.inc.php:686 server_privileges.php:171 +#: libraries/messages.inc.php:682 server_privileges.php:171 #: server_privileges.php:483 msgid "Allows executing stored routines." msgstr "Permite executarea rutinelor stocate." -#: libraries/messages.inc.php:687 server_privileges.php:150 +#: libraries/messages.inc.php:683 server_privileges.php:150 #: server_privileges.php:470 msgid "Allows importing data from and exporting data into files." msgstr "" "Permite importarea datelor in fisiere și exportarea acestora din fisiere." -#: libraries/messages.inc.php:688 server_privileges.php:501 +#: libraries/messages.inc.php:684 server_privileges.php:501 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Permite adaugarea utilizatorilor și drepturilor fara reincarcarea tabelelor " "de drepturi." -#: libraries/messages.inc.php:689 server_privileges.php:152 +#: libraries/messages.inc.php:685 server_privileges.php:152 #: server_privileges.php:477 msgid "Allows creating and dropping indexes." msgstr "Permite crearea și stergerea indexurilor." -#: libraries/messages.inc.php:690 server_privileges.php:142 +#: libraries/messages.inc.php:686 server_privileges.php:142 #: server_privileges.php:403 server_privileges.php:465 msgid "Allows inserting and replacing data." msgstr "Permite inserarea și înlocuirea datelor." -#: libraries/messages.inc.php:691 server_privileges.php:157 +#: libraries/messages.inc.php:687 server_privileges.php:157 #: server_privileges.php:510 msgid "Allows locking tables for the current thread." msgstr "Permite blocarea tabelelor din firul curent de execuție." -#: libraries/messages.inc.php:692 server_privileges.php:607 +#: libraries/messages.inc.php:688 server_privileges.php:607 #: server_privileges.php:609 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Limitează numărul de noi conexiuni care pot fi deschise de utilizator într-o " "oră." -#: libraries/messages.inc.php:693 server_privileges.php:595 +#: libraries/messages.inc.php:689 server_privileges.php:595 #: server_privileges.php:597 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Limiteaza numarul de comenzi care pot fi trimise de utilizator către server " "într-o oră." -#: libraries/messages.inc.php:694 server_privileges.php:601 +#: libraries/messages.inc.php:690 server_privileges.php:601 #: server_privileges.php:603 msgid "" "Limits the number of commands that change any table or database the user may " @@ -4709,60 +4709,60 @@ msgstr "" "Limitează numărul de comenzi pentru schimbarea vreunui tabel sau vreunei " "baze de date executabile de utilizator într-o oră." -#: libraries/messages.inc.php:695 server_privileges.php:613 +#: libraries/messages.inc.php:691 server_privileges.php:613 #: server_privileges.php:615 msgid "Limits the number of simultaneous connections the user may have." msgstr "" "Limitează numărul conexiunilor simultane pe care le poate avea utilizatorul." -#: libraries/messages.inc.php:696 server_privileges.php:149 +#: libraries/messages.inc.php:692 server_privileges.php:149 #: server_privileges.php:505 msgid "Allows viewing processes of all users" msgstr "Permite vizualizarea proceselor tuturor utilizatorilor" -#: libraries/messages.inc.php:697 server_privileges.php:151 +#: libraries/messages.inc.php:693 server_privileges.php:151 #: server_privileges.php:409 server_privileges.php:511 msgid "Has no effect in this MySQL version." msgstr "Nu are efect în această versiune MySQL." -#: libraries/messages.inc.php:698 server_privileges.php:147 +#: libraries/messages.inc.php:694 server_privileges.php:147 #: server_privileges.php:506 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Permite reîncărcarea setărilor de server și golirea memoriei cache a " "serverului." -#: libraries/messages.inc.php:699 server_privileges.php:159 +#: libraries/messages.inc.php:695 server_privileges.php:159 #: server_privileges.php:513 msgid "Allows the user to ask where the slaves / masters are." msgstr "Permite utilizatorului de a interoga locația slave/master." -#: libraries/messages.inc.php:700 server_privileges.php:158 +#: libraries/messages.inc.php:696 server_privileges.php:158 #: server_privileges.php:514 msgid "Needed for the replication slaves." msgstr "Necesară pentru „slave replication”." -#: libraries/messages.inc.php:701 server_privileges.php:141 +#: libraries/messages.inc.php:697 server_privileges.php:141 #: server_privileges.php:400 server_privileges.php:464 msgid "Allows reading data." msgstr "Permite citirea datelor." -#: libraries/messages.inc.php:702 server_privileges.php:154 +#: libraries/messages.inc.php:698 server_privileges.php:154 #: server_privileges.php:508 msgid "Gives access to the complete list of databases." msgstr "Permite accesul la lista completă a bazelor de date." -#: libraries/messages.inc.php:703 server_privileges.php:165 +#: libraries/messages.inc.php:699 server_privileges.php:165 #: server_privileges.php:167 server_privileges.php:480 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Permite executarea interogărilor SHOW CREATE VIEW." -#: libraries/messages.inc.php:704 server_privileges.php:148 +#: libraries/messages.inc.php:700 server_privileges.php:148 #: server_privileges.php:507 msgid "Allows shutting down the server." msgstr "Permite oprirea serverului." -#: libraries/messages.inc.php:705 server_privileges.php:155 +#: libraries/messages.inc.php:701 server_privileges.php:155 #: server_privileges.php:504 msgid "" "Allows connecting, even if maximum number of connections is reached; " @@ -4773,55 +4773,55 @@ msgstr "" "pentru majoritatea operațiunilor administrative, cum ar fi setarea " "variabilelor globale sau oprirea firelor de execuție a altor utilizatori." -#: libraries/messages.inc.php:706 server_privileges.php:162 +#: libraries/messages.inc.php:702 server_privileges.php:162 #: server_privileges.php:496 msgid "Allows creating and dropping triggers" msgstr "Permite crearea și eliminarea declanșatorilor" -#: libraries/messages.inc.php:707 server_privileges.php:143 +#: libraries/messages.inc.php:703 server_privileges.php:143 #: server_privileges.php:406 server_privileges.php:466 msgid "Allows changing data." msgstr "Permite schimbarea datelor." -#: libraries/messages.inc.php:708 server_privileges.php:221 +#: libraries/messages.inc.php:704 server_privileges.php:221 msgid "No privileges." msgstr "Fără drepturi." -#: libraries/messages.inc.php:710 server_privileges.php:1296 +#: libraries/messages.inc.php:706 server_privileges.php:1296 msgid "The privileges were reloaded successfully." msgstr "Drepturile au fost reîncarcate cu succes." -#: libraries/messages.inc.php:712 libraries/server_links.inc.php:80 +#: libraries/messages.inc.php:708 libraries/server_links.inc.php:80 msgid "Processes" msgstr "Procese" -#: libraries/messages.inc.php:714 main.php:187 +#: libraries/messages.inc.php:710 main.php:187 msgid "Protocol version" msgstr "Versiune protocol" -#: libraries/messages.inc.php:715 +#: libraries/messages.inc.php:711 msgid "Put fields names in the first row" msgstr "Pune numele cîmpului în primul rînd" -#: libraries/messages.inc.php:720 server_synchronize.php:1003 +#: libraries/messages.inc.php:716 server_synchronize.php:1003 msgid "The following queries have been executed:" msgstr "" -#: libraries/messages.inc.php:721 server_status.php:251 +#: libraries/messages.inc.php:717 server_status.php:251 msgid "Query cache" msgstr "Cache interogări" -#: libraries/messages.inc.php:722 libraries/navigation_header.inc.php:80 +#: libraries/messages.inc.php:718 libraries/navigation_header.inc.php:80 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 setup/lib/messages.inc.php:122 msgid "Query window" msgstr "Fereastra de comandă" -#: libraries/messages.inc.php:725 querywindow.php:109 querywindow.php:217 +#: libraries/messages.inc.php:721 querywindow.php:109 querywindow.php:217 msgid "SQL history" msgstr "Istoric SQL" -#: libraries/messages.inc.php:726 server_status.php:490 +#: libraries/messages.inc.php:722 server_status.php:490 #, php-format msgid "" "Query statistics: Since its startup, %s queries have been sent to the " @@ -4830,138 +4830,138 @@ msgstr "" "Statistică interogări: De la început, s-au trimis %s interogări la " "server." -#: libraries/messages.inc.php:728 server_status.php:554 +#: libraries/messages.inc.php:724 server_status.php:554 msgid "Query type" msgstr "Tip interogare" -#: libraries/messages.inc.php:729 libraries/sql_query_form.lib.php:381 +#: libraries/messages.inc.php:725 libraries/sql_query_form.lib.php:381 msgid "Do not overwrite this query from outside the window" msgstr "A nu se suprascrie peste această interogare din cealaltă fereastră" -#: libraries/messages.inc.php:732 tbl_operations.php:663 +#: libraries/messages.inc.php:728 tbl_operations.php:663 msgid "Rebuild" msgstr "Reconstruiește" -#: libraries/messages.inc.php:733 server_status.php:394 +#: libraries/messages.inc.php:729 server_status.php:394 msgid "Received" msgstr "Recepționat" -#: libraries/messages.inc.php:734 pmd_pdf.php:89 +#: libraries/messages.inc.php:730 pmd_pdf.php:89 msgid "recommended" msgstr "recomandat" -#: libraries/messages.inc.php:736 tbl_operations.php:702 +#: libraries/messages.inc.php:732 tbl_operations.php:702 msgid "Check referential integrity:" msgstr "Verificarea integrității referinței:" -#: libraries/messages.inc.php:740 pdf_schema.php:1032 pdf_schema.php:1141 +#: libraries/messages.inc.php:736 pdf_schema.php:1032 pdf_schema.php:1141 msgid "Relational schema" msgstr "Schema relațională" -#: libraries/messages.inc.php:744 tbl_relation.php:399 +#: libraries/messages.inc.php:740 tbl_relation.php:399 msgid "Relations" msgstr "Legături" -#: libraries/messages.inc.php:745 tbl_structure.php:507 tbl_structure.php:509 +#: libraries/messages.inc.php:741 tbl_structure.php:507 tbl_structure.php:509 msgid "Relation view" msgstr "Vizualizare relațională" -#: libraries/messages.inc.php:746 server_privileges.php:1246 +#: libraries/messages.inc.php:742 server_privileges.php:1246 msgid "Reloading the privileges" msgstr "Reîncărcarea drepturilor" -#: libraries/messages.inc.php:747 navigation.php:66 navigation.php:67 +#: libraries/messages.inc.php:743 navigation.php:66 navigation.php:67 #: navigation.php:70 #, fuzzy msgid "Reload navigation frame" msgstr "Personalizează cadrul principal" -#: libraries/messages.inc.php:748 pmd_general.php:80 +#: libraries/messages.inc.php:744 pmd_general.php:80 msgid "Reload" msgstr "Reîncarcă" -#: libraries/messages.inc.php:749 libraries/server_synchronize.lib.php:1345 +#: libraries/messages.inc.php:745 libraries/server_synchronize.lib.php:1345 #: libraries/server_synchronize.lib.php:1371 #, fuzzy msgid "Remote server" msgstr "Server Web" -#: libraries/messages.inc.php:750 +#: libraries/messages.inc.php:746 msgid "Remove CRLF characters within fields" msgstr "" -#: libraries/messages.inc.php:751 tbl_operations.php:676 +#: libraries/messages.inc.php:747 tbl_operations.php:676 msgid "Remove partitioning" msgstr "Elimină partiționarea" -#: libraries/messages.inc.php:752 server_privileges.php:1575 +#: libraries/messages.inc.php:748 server_privileges.php:1575 msgid "Remove selected users" msgstr "Eliminarea utilizatorilor selectați" -#: libraries/messages.inc.php:755 tbl_operations.php:338 +#: libraries/messages.inc.php:751 tbl_operations.php:338 msgid "Rename table to" msgstr "Redenumire tabel la" -#: libraries/messages.inc.php:756 view_operations.php:93 +#: libraries/messages.inc.php:752 view_operations.php:93 #, fuzzy msgid "Rename view to" msgstr "Redenumire tabel la" -#: libraries/messages.inc.php:757 tbl_operations.php:664 +#: libraries/messages.inc.php:753 tbl_operations.php:664 msgid "Repair" msgstr "Repară" -#: libraries/messages.inc.php:759 +#: libraries/messages.inc.php:755 msgid "Replace NULL by" msgstr "Înlocuire NULL cu" -#: libraries/messages.inc.php:760 +#: libraries/messages.inc.php:756 msgid "Replace table data with file" msgstr "Înlocuiește datele tabelului cu fișier" -#: libraries/messages.inc.php:761 server_replication.php:228 +#: libraries/messages.inc.php:757 server_replication.php:228 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: libraries/messages.inc.php:762 libraries/replication_gui.lib.php:236 +#: libraries/messages.inc.php:758 libraries/replication_gui.lib.php:236 #: server_replication.php:194 msgid "Add slave replication user" msgstr "" -#: libraries/messages.inc.php:763 server_replication.php:74 +#: libraries/messages.inc.php:759 server_replication.php:74 #, php-format msgid "Master server changed succesfully to %s" msgstr "" -#: libraries/messages.inc.php:764 server_replication.php:182 +#: libraries/messages.inc.php:760 server_replication.php:182 msgid "This server is configured as master in a replication process." msgstr "" -#: libraries/messages.inc.php:765 server_replication.php:322 +#: libraries/messages.inc.php:761 server_replication.php:322 msgid "Control slave:" msgstr "" -#: libraries/messages.inc.php:766 server_replication.php:65 +#: libraries/messages.inc.php:762 server_replication.php:65 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: libraries/messages.inc.php:767 server_replication.php:58 +#: libraries/messages.inc.php:763 server_replication.php:58 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: libraries/messages.inc.php:768 server_replication.php:221 +#: libraries/messages.inc.php:764 server_replication.php:221 msgid "Replicate all databases; Ignore:" msgstr "" -#: libraries/messages.inc.php:769 server_replication.php:222 +#: libraries/messages.inc.php:765 server_replication.php:222 msgid "Ignore all databases; Replicate:" msgstr "" -#: libraries/messages.inc.php:770 server_replication.php:218 +#: libraries/messages.inc.php:766 server_replication.php:218 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -4970,122 +4970,122 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: libraries/messages.inc.php:771 server_replication.php:217 +#: libraries/messages.inc.php:767 server_replication.php:217 msgid "Master configuration" msgstr "" -#: libraries/messages.inc.php:772 server_replication.php:181 +#: libraries/messages.inc.php:768 server_replication.php:181 #: server_replication.php:209 msgid "Master replication" msgstr "" -#: libraries/messages.inc.php:774 server_replication.php:230 +#: libraries/messages.inc.php:770 server_replication.php:230 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: libraries/messages.inc.php:775 server_replication.php:225 +#: libraries/messages.inc.php:771 server_replication.php:225 #, fuzzy msgid "Please select databases:" msgstr "Selectați baza de date" -#: libraries/messages.inc.php:776 server_replication.php:210 +#: libraries/messages.inc.php:772 server_replication.php:210 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:188 +#: libraries/messages.inc.php:773 libraries/replication_gui.lib.php:188 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/messages.inc.php:778 server_replication.php:187 +#: libraries/messages.inc.php:774 server_replication.php:187 msgid "Show connected slaves" msgstr "" -#: libraries/messages.inc.php:779 libraries/messages.inc.php:885 +#: libraries/messages.inc.php:775 libraries/messages.inc.php:881 #: server_replication.php:184 server_status.php:281 #, fuzzy msgid "Show master status" msgstr "Afișează stare sclav" -#: libraries/messages.inc.php:780 server_replication.php:334 +#: libraries/messages.inc.php:776 server_replication.php:334 msgid "Skipping error(s) might lead into unsynchronized master and slave!" msgstr "" -#: libraries/messages.inc.php:781 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:51 #: server_replication.php:347 msgid "Change or reconfigure master server" msgstr "" -#: libraries/messages.inc.php:782 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:778 libraries/replication_gui.lib.php:51 msgid "Slave configuration" msgstr "" -#: libraries/messages.inc.php:783 server_replication.php:305 +#: libraries/messages.inc.php:779 server_replication.php:305 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: libraries/messages.inc.php:784 server_replication.php:332 +#: libraries/messages.inc.php:780 server_replication.php:332 msgid "Error management:" msgstr "" -#: libraries/messages.inc.php:785 server_replication.php:328 +#: libraries/messages.inc.php:781 server_replication.php:328 #, php-format msgid "IO Thread %s only" msgstr "" -#: libraries/messages.inc.php:786 server_replication.php:296 +#: libraries/messages.inc.php:782 server_replication.php:296 msgid "Slave IO Thread not running!" msgstr "" -#: libraries/messages.inc.php:787 server_replication.php:355 +#: libraries/messages.inc.php:783 server_replication.php:355 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/messages.inc.php:788 server_replication.php:326 +#: libraries/messages.inc.php:784 server_replication.php:326 msgid "Reset slave" msgstr "" -#: libraries/messages.inc.php:789 server_replication.php:308 +#: libraries/messages.inc.php:785 server_replication.php:308 msgid "See slave status table" msgstr "" -#: libraries/messages.inc.php:790 server_replication.php:336 +#: libraries/messages.inc.php:786 server_replication.php:336 msgid "Skip current error" msgstr "" -#: libraries/messages.inc.php:791 server_replication.php:340 +#: libraries/messages.inc.php:787 server_replication.php:340 msgid "errors." msgstr "" -#: libraries/messages.inc.php:792 server_replication.php:337 +#: libraries/messages.inc.php:788 server_replication.php:337 msgid "Skip next" msgstr "" -#: libraries/messages.inc.php:793 server_replication.php:248 +#: libraries/messages.inc.php:789 server_replication.php:248 msgid "Slave replication" msgstr "" -#: libraries/messages.inc.php:794 server_replication.php:293 +#: libraries/messages.inc.php:790 server_replication.php:293 msgid "Slave SQL Thread not running!" msgstr "" -#: libraries/messages.inc.php:795 server_replication.php:327 +#: libraries/messages.inc.php:791 server_replication.php:327 #, php-format msgid "SQL Thread %s only" msgstr "" -#: libraries/messages.inc.php:796 +#: libraries/messages.inc.php:792 #, php-format msgid "" "This MySQL server works as %s in replication process. For further " @@ -5093,164 +5093,164 @@ msgid "" "\"#replication\">replication section." msgstr "" -#: libraries/messages.inc.php:797 +#: libraries/messages.inc.php:793 #, fuzzy msgid "Master status" msgstr "Afișează stare sclav" -#: libraries/messages.inc.php:798 server_status.php:721 +#: libraries/messages.inc.php:794 server_status.php:721 #, fuzzy msgid "Replication status" msgstr "Replicare" -#: libraries/messages.inc.php:799 +#: libraries/messages.inc.php:795 #, fuzzy msgid "Slave status" msgstr "Afișează stare sclav" -#: libraries/messages.inc.php:800 server_replication.php:311 +#: libraries/messages.inc.php:796 server_replication.php:311 msgid "Synchronize databases with master" msgstr "" -#: libraries/messages.inc.php:801 server_replication.php:71 +#: libraries/messages.inc.php:797 server_replication.php:71 msgid "Unable to change master" msgstr "" -#: libraries/messages.inc.php:802 server_replication.php:51 +#: libraries/messages.inc.php:798 server_replication.php:51 msgid "Unknown error" msgstr "" -#: libraries/messages.inc.php:803 main.php:163 pdf_pages.php:344 +#: libraries/messages.inc.php:799 main.php:163 pdf_pages.php:344 #: setup/lib/FormDisplay.tpl.php:216 tbl_change.php:1175 msgid "Reset" msgstr "Resetare" -#: libraries/messages.inc.php:804 server_privileges.php:591 +#: libraries/messages.inc.php:800 server_privileges.php:591 msgid "Resource limits" msgstr "Limitare de resurse" -#: libraries/messages.inc.php:805 tbl_change.php:1209 +#: libraries/messages.inc.php:801 tbl_change.php:1209 #, php-format msgid "Restart insertion with %s rows" msgstr "Repornește inserția cu %s rînduri" -#: libraries/messages.inc.php:807 server_privileges.php:1578 +#: libraries/messages.inc.php:803 server_privileges.php:1578 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Revocarea tuturor drepturilor active ale utilizatorilor și stergerea " "acestora." -#: libraries/messages.inc.php:808 server_privileges.php:1176 +#: libraries/messages.inc.php:804 server_privileges.php:1176 #, php-format msgid "You have revoked the privileges for %s" msgstr "Drepturile tale au fost revocate pentru %s" -#: libraries/messages.inc.php:809 server_privileges.php:1333 +#: libraries/messages.inc.php:805 server_privileges.php:1333 msgid "Revoke" msgstr "Revocare" -#: libraries/messages.inc.php:810 libraries/mysql_charsets.lib.php:280 +#: libraries/messages.inc.php:806 libraries/mysql_charsets.lib.php:280 msgid "Romanian" msgstr "Român" -#: libraries/messages.inc.php:813 tbl_printview.php:404 tbl_structure.php:786 +#: libraries/messages.inc.php:809 tbl_printview.php:404 tbl_structure.php:786 msgid "Row length" msgstr "Lungime linie" -#: libraries/messages.inc.php:815 tbl_printview.php:414 tbl_structure.php:794 +#: libraries/messages.inc.php:811 tbl_printview.php:414 tbl_structure.php:794 msgid " Row size " msgstr " Mărime linie " -#: libraries/messages.inc.php:821 tbl_printview.php:366 tbl_structure.php:726 +#: libraries/messages.inc.php:817 tbl_printview.php:366 tbl_structure.php:726 msgid "Row Statistics" msgstr "Statisticile rîndului" -#: libraries/messages.inc.php:822 +#: libraries/messages.inc.php:818 #, php-format msgid "running on %s" msgstr "rulînd pe %s" -#: libraries/messages.inc.php:824 libraries/sql_query_form.lib.php:223 +#: libraries/messages.inc.php:820 libraries/sql_query_form.lib.php:223 #, php-format msgid "Run SQL query/queries on server %s" msgstr "Execută interogare/interogări SQL pe serverul %s" -#: libraries/messages.inc.php:825 libraries/sql_query_form.lib.php:240 +#: libraries/messages.inc.php:821 libraries/sql_query_form.lib.php:240 #: libraries/sql_query_form.lib.php:265 #, php-format msgid "Run SQL query/queries on database %s" msgstr "Execută interogare SQL asupra bazei de date %s" -#: libraries/messages.inc.php:826 libraries/mysql_charsets.lib.php:337 +#: libraries/messages.inc.php:822 libraries/mysql_charsets.lib.php:337 msgid "Russian" msgstr "Rus" -#: libraries/messages.inc.php:829 pmd_general.php:68 +#: libraries/messages.inc.php:825 pmd_general.php:68 msgid "Save position" msgstr "Salvează poziție" -#: libraries/messages.inc.php:830 libraries/tbl_properties.inc.php:776 +#: libraries/messages.inc.php:826 libraries/tbl_properties.inc.php:776 #: pdf_pages.php:484 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:214 setup/lib/FormDisplay.tpl.php:215 #: tbl_change.php:1126 tbl_indexes.php:248 tbl_relation.php:566 msgid "Save" msgstr "Salveaza" -#: libraries/messages.inc.php:831 +#: libraries/messages.inc.php:827 msgid "The scale factor is too small to fit the schema on one page" msgstr "Factorul de scalare este prea mica pentru a inchepe in pagina" -#: libraries/messages.inc.php:843 main.php:298 +#: libraries/messages.inc.php:839 main.php:298 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "Fișierul de configurare necesită o expresie de protecție secretă " "(blowfish_secret)." -#: libraries/messages.inc.php:844 navigation.php:353 navigation.php:516 +#: libraries/messages.inc.php:840 navigation.php:353 navigation.php:516 msgid "Please select a database" msgstr "Selectați baza de date" -#: libraries/messages.inc.php:846 server_binlog.php:120 +#: libraries/messages.inc.php:842 server_binlog.php:120 msgid "Select binary log to view" msgstr "Selectați jurnalul binar pentru vizualizare" -#: libraries/messages.inc.php:847 tbl_select.php:270 +#: libraries/messages.inc.php:843 tbl_select.php:270 msgid "Select fields (at least one):" msgstr "Selectează cîmpurile (cel puțin unul):" -#: libraries/messages.inc.php:851 pdf_pages.php:320 +#: libraries/messages.inc.php:847 pdf_pages.php:320 msgid "Select Tables" msgstr "Selectează tabele" -#: libraries/messages.inc.php:853 server_status.php:404 +#: libraries/messages.inc.php:849 server_status.php:404 msgid "Sent" msgstr "Trimis" -#: libraries/messages.inc.php:857 libraries/select_server.lib.php:45 +#: libraries/messages.inc.php:853 libraries/select_server.lib.php:45 #: setup/frames/index.inc.php:97 setup/lib/messages.inc.php:115 msgid "Servers" msgstr "Servere" -#: libraries/messages.inc.php:858 server_status.php:255 +#: libraries/messages.inc.php:854 server_status.php:255 msgid "Delayed inserts" msgstr "Inserări întîrziate" -#: libraries/messages.inc.php:859 server_status.php:46 +#: libraries/messages.inc.php:855 server_status.php:46 msgid "Runtime Information" msgstr "Informații rulare" -#: libraries/messages.inc.php:860 server_status.php:350 +#: libraries/messages.inc.php:856 server_status.php:350 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Acest server MySQL rulează de %s. S-a lansat la %s." -#: libraries/messages.inc.php:861 libraries/server_links.inc.php:53 +#: libraries/messages.inc.php:857 libraries/server_links.inc.php:53 #: server_engines.php:112 server_engines.php:116 server_status.php:304 #: test/theme.php:105 msgid "Variables" msgstr "Variabile" -#: libraries/messages.inc.php:862 server_status.php:383 +#: libraries/messages.inc.php:858 server_status.php:383 msgid "" "Server traffic: These tables show the network traffic statistics of " "this MySQL server since its startup." @@ -5258,11 +5258,11 @@ msgstr "" "Trafic server: Aceste tabele arată statistica de trafic în retea a " "acestui server MySQL de la lansare." -#: libraries/messages.inc.php:863 server_variables.php:35 +#: libraries/messages.inc.php:859 server_variables.php:35 msgid "Server variables and settings" msgstr "Variabile și configurări de server" -#: libraries/messages.inc.php:865 main.php:290 +#: libraries/messages.inc.php:861 main.php:290 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -5270,7 +5270,7 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: libraries/messages.inc.php:866 +#: libraries/messages.inc.php:862 msgid "" "Cannot start session without errors, please check errors given in your PHP " "and/or webserver log file and configure your PHP installation properly." @@ -5278,11 +5278,11 @@ msgstr "" "Cannot start session without errors, please check errors given in your PHP " "and/or webserver log file and configure your PHP installation properly." -#: libraries/messages.inc.php:867 server_variables.php:55 +#: libraries/messages.inc.php:863 server_variables.php:55 msgid "Session value" msgstr "Valoare sesiune" -#: libraries/messages.inc.php:868 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:864 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 " @@ -5294,45 +5294,45 @@ msgstr "" "(backslash) (\"\\\") sau semnul (\"'\") la aceste valori, folosiți exemplul " "( '\\\\xyz' or 'a\\'b')." -#: libraries/messages.inc.php:876 server_binlog.php:192 server_binlog.php:195 +#: libraries/messages.inc.php:872 server_binlog.php:192 server_binlog.php:195 #: server_processlist.php:49 server_processlist.php:51 msgid "Show Full Queries" msgstr "Afișare comandă întreagă" -#: libraries/messages.inc.php:878 pmd_general.php:64 +#: libraries/messages.inc.php:874 pmd_general.php:64 msgid "Show/Hide left menu" msgstr "Arată/ascunde meniul stîng" -#: libraries/messages.inc.php:880 sql.php:513 +#: libraries/messages.inc.php:876 sql.php:513 msgid "Showing as PHP code" msgstr "Afișare ca și cod PHP" -#: libraries/messages.inc.php:882 sql.php:516 tbl_replace.php:360 +#: libraries/messages.inc.php:878 sql.php:516 tbl_replace.php:360 msgid "Showing SQL query" msgstr "Afișare interogare SQL" -#: libraries/messages.inc.php:883 tbl_change.php:1132 +#: libraries/messages.inc.php:879 tbl_change.php:1132 #, fuzzy msgid "Show insert query" msgstr "Afișare interogare SQL" -#: libraries/messages.inc.php:886 server_status.php:273 +#: libraries/messages.inc.php:882 server_status.php:273 msgid "Show open tables" msgstr "Afișează tabele deschise" -#: libraries/messages.inc.php:887 main.php:219 +#: libraries/messages.inc.php:883 main.php:219 msgid "Show PHP information" msgstr "Arată informația PHP" -#: libraries/messages.inc.php:889 server_status.php:278 +#: libraries/messages.inc.php:885 server_status.php:278 msgid "Show slave hosts" msgstr "Afișează gazde sclavi" -#: libraries/messages.inc.php:890 server_status.php:284 +#: libraries/messages.inc.php:886 server_status.php:284 msgid "Show slave status" msgstr "Afișează stare sclav" -#: libraries/messages.inc.php:891 +#: libraries/messages.inc.php:887 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -5342,11 +5342,11 @@ msgstr "" "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." -#: libraries/messages.inc.php:892 +#: libraries/messages.inc.php:888 msgid "The number of transactions that used the temporary binary log cache." msgstr "The number of transactions that used the temporary binary log cache." -#: libraries/messages.inc.php:893 +#: libraries/messages.inc.php:889 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -5358,11 +5358,11 @@ msgstr "" "to increase the tmp_table_size value to cause temporary tables to be memory-" "based instead of disk-based." -#: libraries/messages.inc.php:894 +#: libraries/messages.inc.php:890 msgid "How many temporary files mysqld has created." msgstr "Cîte fișiere temporare a creat mysqld." -#: libraries/messages.inc.php:895 +#: libraries/messages.inc.php:891 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -5370,7 +5370,7 @@ msgstr "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." -#: libraries/messages.inc.php:896 +#: libraries/messages.inc.php:892 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -5378,7 +5378,7 @@ msgstr "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." -#: libraries/messages.inc.php:897 +#: libraries/messages.inc.php:893 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -5386,23 +5386,23 @@ msgstr "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." -#: libraries/messages.inc.php:898 +#: libraries/messages.inc.php:894 msgid "The number of INSERT DELAYED rows written." msgstr "The number of INSERT DELAYED rows written." -#: libraries/messages.inc.php:899 +#: libraries/messages.inc.php:895 msgid "The number of executed FLUSH statements." msgstr "The number of executed FLUSH statements." -#: libraries/messages.inc.php:900 +#: libraries/messages.inc.php:896 msgid "The number of internal COMMIT statements." msgstr "The number of internal COMMIT statements." -#: libraries/messages.inc.php:901 +#: libraries/messages.inc.php:897 msgid "The number of times a row was deleted from a table." msgstr "The number of times a row was deleted from a table." -#: libraries/messages.inc.php:902 +#: libraries/messages.inc.php:898 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -5412,96 +5412,96 @@ msgstr "" "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." +#: libraries/messages.inc.php:899 +msgid "" +"The number of times the first entry was read from an index. If this is high, " +"it suggests that the server is doing a lot of full index scans; for example, " +"SELECT col1 FROM foo, assuming that col1 is indexed." +msgstr "" +"The number of times the first entry was read from an index. If this is high, " +"it suggests that the server is doing a lot of full index scans; for example, " +"SELECT col1 FROM foo, assuming that col1 is indexed." + +#: libraries/messages.inc.php:900 +msgid "" +"The number of requests to read a row based on a key. If this is high, it is " +"a good indication that your queries and tables are properly indexed." +msgstr "" +"The number of requests to read a row based on a key. If this is high, it is " +"a good indication that your queries and tables are properly indexed." + +#: libraries/messages.inc.php:901 +msgid "" +"The number of requests to read the next row in key order. This is " +"incremented if you are querying an index column with a range constraint or " +"if you are doing an index scan." +msgstr "" +"The number of requests to read the next row in key order. This is " +"incremented if you are querying an index column with a range constraint or " +"if you are doing an index scan." + +#: libraries/messages.inc.php:902 +msgid "" +"The number of requests to read the previous row in key order. This read " +"method is mainly used to optimize ORDER BY ... DESC." +msgstr "" +"The number of requests to read the previous row in key order. This read " +"method is mainly used to optimize ORDER BY ... DESC." + #: libraries/messages.inc.php:903 msgid "" -"The number of times the first entry was read from an index. If this is high, " -"it suggests that the server is doing a lot of full index scans; for example, " -"SELECT col1 FROM foo, assuming that col1 is indexed." +"The number of requests to read a row based on a fixed position. This is high " +"if you are doing a lot of queries that require sorting of the result. You " +"probably have a lot of queries that require MySQL to scan whole tables or " +"you have joins that don't use keys properly." msgstr "" -"The number of times the first entry was read from an index. If this is high, " -"it suggests that the server is doing a lot of full index scans; for example, " -"SELECT col1 FROM foo, assuming that col1 is indexed." +"The number of requests to read a row based on a fixed position. This is high " +"if you are doing a lot of queries that require sorting of the result. You " +"probably have a lot of queries that require MySQL to scan whole tables or " +"you have joins that don't use keys properly." #: libraries/messages.inc.php:904 msgid "" -"The number of requests to read a row based on a key. If this is high, it is " -"a good indication that your queries and tables are properly indexed." +"The number of requests to read the next row in the data file. This is high " +"if you are doing a lot of table scans. Generally this suggests that your " +"tables are not properly indexed or that your queries are not written to take " +"advantage of the indexes you have." msgstr "" -"The number of requests to read a row based on a key. If this is high, it is " -"a good indication that your queries and tables are properly indexed." +"The number of requests to read the next row in the data file. This is high " +"if you are doing a lot of table scans. Generally this suggests that your " +"tables are not properly indexed or that your queries are not written to take " +"advantage of the indexes you have." #: libraries/messages.inc.php:905 -msgid "" -"The number of requests to read the next row in key order. This is " -"incremented if you are querying an index column with a range constraint or " -"if you are doing an index scan." -msgstr "" -"The number of requests to read the next row in key order. This is " -"incremented if you are querying an index column with a range constraint or " -"if you are doing an index scan." - -#: libraries/messages.inc.php:906 -msgid "" -"The number of requests to read the previous row in key order. This read " -"method is mainly used to optimize ORDER BY ... DESC." -msgstr "" -"The number of requests to read the previous row in key order. This read " -"method is mainly used to optimize ORDER BY ... DESC." - -#: libraries/messages.inc.php:907 -msgid "" -"The number of requests to read a row based on a fixed position. This is high " -"if you are doing a lot of queries that require sorting of the result. You " -"probably have a lot of queries that require MySQL to scan whole tables or " -"you have joins that don't use keys properly." -msgstr "" -"The number of requests to read a row based on a fixed position. This is high " -"if you are doing a lot of queries that require sorting of the result. You " -"probably have a lot of queries that require MySQL to scan whole tables or " -"you have joins that don't use keys properly." - -#: libraries/messages.inc.php:908 -msgid "" -"The number of requests to read the next row in the data file. This is high " -"if you are doing a lot of table scans. Generally this suggests that your " -"tables are not properly indexed or that your queries are not written to take " -"advantage of the indexes you have." -msgstr "" -"The number of requests to read the next row in the data file. This is high " -"if you are doing a lot of table scans. Generally this suggests that your " -"tables are not properly indexed or that your queries are not written to take " -"advantage of the indexes you have." - -#: libraries/messages.inc.php:909 msgid "The number of internal ROLLBACK statements." msgstr "The number of internal ROLLBACK statements." -#: libraries/messages.inc.php:910 +#: libraries/messages.inc.php:906 msgid "The number of requests to update a row in a table." msgstr "The number of requests to update a row in a table." -#: libraries/messages.inc.php:911 +#: libraries/messages.inc.php:907 msgid "The number of requests to insert a row in a table." msgstr "Numărul de cereri de a insera un rînd într-un tabel." -#: libraries/messages.inc.php:912 +#: libraries/messages.inc.php:908 msgid "The number of pages containing data (dirty or clean)." msgstr "Numărul de pagini conținînd date (curate sau murdare)." -#: libraries/messages.inc.php:913 +#: libraries/messages.inc.php:909 msgid "The number of pages currently dirty." msgstr "Numărul de pagini actualmente murdare." -#: libraries/messages.inc.php:914 +#: libraries/messages.inc.php:910 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" "The number of buffer pool pages that have been requested to be flushed." -#: libraries/messages.inc.php:915 +#: libraries/messages.inc.php:911 msgid "The number of free pages." msgstr "Numărul de pagini libere." -#: libraries/messages.inc.php:916 +#: libraries/messages.inc.php:912 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -5511,7 +5511,7 @@ msgstr "" "being read or written or that can't be flushed or removed for some other " "reason." -#: libraries/messages.inc.php:917 +#: libraries/messages.inc.php:913 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -5523,11 +5523,11 @@ msgstr "" "be calculated as Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: libraries/messages.inc.php:918 +#: libraries/messages.inc.php:914 msgid "Total size of buffer pool, in pages." msgstr "Total size of buffer pool, in pages." -#: libraries/messages.inc.php:919 +#: libraries/messages.inc.php:915 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -5535,7 +5535,7 @@ msgstr "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." -#: libraries/messages.inc.php:920 +#: libraries/messages.inc.php:916 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -5543,11 +5543,11 @@ msgstr "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." -#: libraries/messages.inc.php:921 +#: libraries/messages.inc.php:917 msgid "The number of logical read requests InnoDB has done." msgstr "The number of logical read requests InnoDB has done." -#: libraries/messages.inc.php:922 +#: libraries/messages.inc.php:918 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -5555,7 +5555,7 @@ msgstr "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." -#: libraries/messages.inc.php:923 +#: libraries/messages.inc.php:919 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -5569,55 +5569,55 @@ msgstr "" "counter counts instances of these waits. If the buffer pool size was set " "properly, this value should be small." -#: libraries/messages.inc.php:924 +#: libraries/messages.inc.php:920 msgid "The number writes done to the InnoDB buffer pool." msgstr "The number writes done to the InnoDB buffer pool." -#: libraries/messages.inc.php:925 +#: libraries/messages.inc.php:921 msgid "The number of fsync() operations so far." msgstr "The number of fsync() operations so far." -#: libraries/messages.inc.php:926 +#: libraries/messages.inc.php:922 msgid "The current number of pending fsync() operations." msgstr "The current number of pending fsync() operations." -#: libraries/messages.inc.php:927 +#: libraries/messages.inc.php:923 msgid "The current number of pending reads." msgstr "The current number of pending reads." -#: libraries/messages.inc.php:928 +#: libraries/messages.inc.php:924 msgid "The current number of pending writes." msgstr "The current number of pending writes." -#: libraries/messages.inc.php:929 +#: libraries/messages.inc.php:925 msgid "The amount of data read so far, in bytes." msgstr "The amount of data read so far, in bytes." -#: libraries/messages.inc.php:930 +#: libraries/messages.inc.php:926 msgid "The total number of data reads." msgstr "The total number of data reads." -#: libraries/messages.inc.php:931 +#: libraries/messages.inc.php:927 msgid "The total number of data writes." msgstr "The total number of data writes." -#: libraries/messages.inc.php:932 +#: libraries/messages.inc.php:928 msgid "The amount of data written so far, in bytes." msgstr "The amount of data written so far, in bytes." -#: libraries/messages.inc.php:933 +#: libraries/messages.inc.php:929 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "The number of doublewrite writes that have been performed and the number of " "pages that have been written for this purpose." -#: libraries/messages.inc.php:934 +#: libraries/messages.inc.php:930 msgid "The number of doublewrite operations that have been performed." msgstr "" "The number of doublewrite writes that have been performed and the number of " "pages that have been written for this purpose." -#: libraries/messages.inc.php:935 +#: libraries/messages.inc.php:931 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -5625,35 +5625,35 @@ msgstr "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." -#: libraries/messages.inc.php:936 +#: libraries/messages.inc.php:932 msgid "The number of log write requests." msgstr "The number of log write requests." -#: libraries/messages.inc.php:937 +#: libraries/messages.inc.php:933 msgid "The number of physical writes to the log file." msgstr "The number of physical writes to the log file." -#: libraries/messages.inc.php:938 +#: libraries/messages.inc.php:934 msgid "The number of fsync() writes done to the log file." msgstr "The number of fsyncs writes done to the log file." -#: libraries/messages.inc.php:939 +#: libraries/messages.inc.php:935 msgid "The number of pending log file fsyncs." msgstr "The number of pending log file fsyncs." -#: libraries/messages.inc.php:940 +#: libraries/messages.inc.php:936 msgid "Pending log file writes." msgstr "Pending log file writes." -#: libraries/messages.inc.php:941 +#: libraries/messages.inc.php:937 msgid "The number of bytes written to the log file." msgstr "The number of bytes written to the log file." -#: libraries/messages.inc.php:942 +#: libraries/messages.inc.php:938 msgid "The number of pages created." msgstr "Numărul de pagini create." -#: libraries/messages.inc.php:943 +#: libraries/messages.inc.php:939 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -5661,51 +5661,51 @@ msgstr "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." -#: libraries/messages.inc.php:944 +#: libraries/messages.inc.php:940 msgid "The number of pages read." msgstr "Numărul de pagini citite." -#: libraries/messages.inc.php:945 +#: libraries/messages.inc.php:941 msgid "The number of pages written." msgstr "Numărul de pagini scrise." -#: libraries/messages.inc.php:946 +#: libraries/messages.inc.php:942 msgid "The number of row locks currently being waited for." msgstr "The number of row locks currently being waited for." -#: libraries/messages.inc.php:947 +#: libraries/messages.inc.php:943 msgid "The average time to acquire a row lock, in milliseconds." msgstr "The average time to acquire a row lock, in milliseconds." -#: libraries/messages.inc.php:948 +#: libraries/messages.inc.php:944 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "The total time spent in acquiring row locks, in milliseconds." -#: libraries/messages.inc.php:949 +#: libraries/messages.inc.php:945 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "The maximum time to acquire a row lock, in milliseconds." -#: libraries/messages.inc.php:950 +#: libraries/messages.inc.php:946 msgid "The number of times a row lock had to be waited for." msgstr "The number of times a row lock had to be waited for." -#: libraries/messages.inc.php:951 +#: libraries/messages.inc.php:947 msgid "The number of rows deleted from InnoDB tables." msgstr "The number of rows deleted from InnoDB tables." -#: libraries/messages.inc.php:952 +#: libraries/messages.inc.php:948 msgid "The number of rows inserted in InnoDB tables." msgstr "The number of rows inserted in InnoDB tables." -#: libraries/messages.inc.php:953 +#: libraries/messages.inc.php:949 msgid "The number of rows read from InnoDB tables." msgstr "Numărul de rînduri citite din tabelele InnoDB." -#: libraries/messages.inc.php:954 +#: libraries/messages.inc.php:950 msgid "The number of rows updated in InnoDB tables." msgstr "Numărul de rînduri actualizate în tabelele InnoDB." -#: libraries/messages.inc.php:955 +#: libraries/messages.inc.php:951 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -5713,7 +5713,7 @@ msgstr "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." -#: libraries/messages.inc.php:956 +#: libraries/messages.inc.php:952 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -5721,7 +5721,7 @@ msgstr "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." -#: libraries/messages.inc.php:957 +#: libraries/messages.inc.php:953 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -5731,11 +5731,11 @@ msgstr "" "that indicates the maximum number of blocks that have ever been in use at " "one time." -#: libraries/messages.inc.php:958 +#: libraries/messages.inc.php:954 msgid "The number of requests to read a key block from the cache." msgstr "The number of requests to read a key block from the cache." -#: libraries/messages.inc.php:959 +#: libraries/messages.inc.php:955 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -5745,15 +5745,15 @@ msgstr "" "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." -#: libraries/messages.inc.php:960 +#: libraries/messages.inc.php:956 msgid "The number of requests to write a key block to the cache." msgstr "The number of requests to write a key block to the cache." -#: libraries/messages.inc.php:961 +#: libraries/messages.inc.php:957 msgid "The number of physical writes of a key block to disk." msgstr "The number of physical writes of a key block to disk." -#: libraries/messages.inc.php:962 +#: libraries/messages.inc.php:958 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -5763,11 +5763,11 @@ msgstr "" "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." -#: libraries/messages.inc.php:963 +#: libraries/messages.inc.php:959 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "The number of rows waiting to be written in INSERT DELAYED queues." -#: libraries/messages.inc.php:964 +#: libraries/messages.inc.php:960 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -5775,35 +5775,35 @@ msgstr "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." -#: libraries/messages.inc.php:965 +#: libraries/messages.inc.php:961 msgid "The number of files that are open." msgstr "The number of files that are open." -#: libraries/messages.inc.php:966 +#: libraries/messages.inc.php:962 msgid "The number of streams that are open (used mainly for logging)." msgstr "The number of streams that are open (used mainly for logging)." -#: libraries/messages.inc.php:967 +#: libraries/messages.inc.php:963 msgid "The number of tables that are open." msgstr "Numărul de tabele ce sînt deschise." -#: libraries/messages.inc.php:968 +#: libraries/messages.inc.php:964 msgid "The number of free memory blocks in query cache." msgstr "The number of free memory blocks in query cache." -#: libraries/messages.inc.php:969 +#: libraries/messages.inc.php:965 msgid "The amount of free memory for query cache." msgstr "The amount of free memory for query cache." -#: libraries/messages.inc.php:970 +#: libraries/messages.inc.php:966 msgid "The number of cache hits." msgstr "Numărul de nimeriri în cache." -#: libraries/messages.inc.php:971 +#: libraries/messages.inc.php:967 msgid "The number of queries added to the cache." msgstr "Numărul de interogări adăugate la cache." -#: libraries/messages.inc.php:972 +#: libraries/messages.inc.php:968 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -5815,7 +5815,7 @@ msgstr "" "cache size. The query cache uses a least recently used (LRU) strategy to " "decide which queries to remove from the cache." -#: libraries/messages.inc.php:973 +#: libraries/messages.inc.php:969 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -5823,24 +5823,24 @@ msgstr "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." -#: libraries/messages.inc.php:974 +#: libraries/messages.inc.php:970 msgid "The number of queries registered in the cache." msgstr "Numărul de interogări înregistrate în cache." -#: libraries/messages.inc.php:975 +#: libraries/messages.inc.php:971 msgid "The total number of blocks in the query cache." msgstr "Numărul total de blocuri în cache-ul interogării." -#: libraries/messages.inc.php:976 +#: libraries/messages.inc.php:972 msgctxt "$strShowStatusReset" msgid "Reset" msgstr "Reinițializare" -#: libraries/messages.inc.php:977 +#: libraries/messages.inc.php:973 msgid "The status of failsafe replication (not yet implemented)." msgstr "The status of failsafe replication (not yet implemented)." -#: libraries/messages.inc.php:978 +#: libraries/messages.inc.php:974 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -5848,11 +5848,11 @@ msgstr "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." -#: libraries/messages.inc.php:979 +#: libraries/messages.inc.php:975 msgid "The number of joins that used a range search on a reference table." msgstr "The number of joins that used a range search on a reference table." -#: libraries/messages.inc.php:980 +#: libraries/messages.inc.php:976 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -5860,7 +5860,7 @@ msgstr "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" -#: libraries/messages.inc.php:981 +#: libraries/messages.inc.php:977 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -5868,15 +5868,15 @@ msgstr "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" -#: libraries/messages.inc.php:982 +#: libraries/messages.inc.php:978 msgid "The number of joins that did a full scan of the first table." msgstr "The number of joins that did a full scan of the first table." -#: libraries/messages.inc.php:983 +#: libraries/messages.inc.php:979 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "The number of temporary tables currently open by the slave SQL thread." -#: libraries/messages.inc.php:984 +#: libraries/messages.inc.php:980 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -5884,11 +5884,11 @@ msgstr "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." -#: libraries/messages.inc.php:985 +#: libraries/messages.inc.php:981 msgid "This is ON if this server is a slave that is connected to a master." msgstr "This is ON if this server is a slave that is connected to a master." -#: libraries/messages.inc.php:986 +#: libraries/messages.inc.php:982 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -5896,13 +5896,13 @@ msgstr "" "The number of threads that have taken more than slow_launch_time seconds to " "create." -#: libraries/messages.inc.php:987 +#: libraries/messages.inc.php:983 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "The number of queries that have taken more than long_query_time seconds." -#: libraries/messages.inc.php:988 +#: libraries/messages.inc.php:984 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -5912,23 +5912,23 @@ msgstr "" "is large, you should consider increasing the value of the sort_buffer_size " "system variable." -#: libraries/messages.inc.php:989 +#: libraries/messages.inc.php:985 msgid "The number of sorts that were done with ranges." msgstr "The number of sorts that were done with ranges." -#: libraries/messages.inc.php:990 +#: libraries/messages.inc.php:986 msgid "The number of sorted rows." msgstr "Numărul de rînduri sortate." -#: libraries/messages.inc.php:991 +#: libraries/messages.inc.php:987 msgid "The number of sorts that were done by scanning the table." msgstr "The number of sorts that were done by scanning the table." -#: libraries/messages.inc.php:992 +#: libraries/messages.inc.php:988 msgid "The number of times that a table lock was acquired immediately." msgstr "The number of times that a table lock was acquired immediately." -#: libraries/messages.inc.php:993 +#: libraries/messages.inc.php:989 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -5940,7 +5940,7 @@ msgstr "" "should first optimize your queries, and then either split your table or " "tables or use replication." -#: libraries/messages.inc.php:994 +#: libraries/messages.inc.php:990 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -5950,11 +5950,11 @@ msgstr "" "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." -#: libraries/messages.inc.php:995 +#: libraries/messages.inc.php:991 msgid "The number of currently open connections." msgstr "Numărul de conexiuni deschise momentan." -#: libraries/messages.inc.php:996 +#: libraries/messages.inc.php:992 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -5966,74 +5966,74 @@ msgstr "" "doesn't give a notable performance improvement if you have a good thread " "implementation.)" -#: libraries/messages.inc.php:997 +#: libraries/messages.inc.php:993 msgid "The number of threads that are not sleeping." msgstr "The number of threads that are not sleeping." -#: libraries/messages.inc.php:999 tbl_printview.php:75 +#: libraries/messages.inc.php:995 tbl_printview.php:75 msgid "Show tables" msgstr "Arată tabelele" -#: libraries/messages.inc.php:1000 libraries/sql_query_form.lib.php:396 +#: libraries/messages.inc.php:996 libraries/sql_query_form.lib.php:396 msgid " Show this query here again " msgstr " Afișează această comandă din nou aici " -#: libraries/messages.inc.php:1001 libraries/mysql_charsets.lib.php:217 +#: libraries/messages.inc.php:997 libraries/mysql_charsets.lib.php:217 #: libraries/mysql_charsets.lib.php:342 msgid "Simplified Chinese" msgstr "Chineză simplificată" -#: libraries/messages.inc.php:1002 tbl_operations.php:258 +#: libraries/messages.inc.php:998 tbl_operations.php:258 msgid "(singly)" msgstr "(singly)" -#: libraries/messages.inc.php:1005 libraries/replication_gui.lib.php:52 +#: libraries/messages.inc.php:1001 libraries/replication_gui.lib.php:52 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" msgstr "" -#: libraries/messages.inc.php:1006 libraries/mysql_charsets.lib.php:283 +#: libraries/messages.inc.php:1002 libraries/mysql_charsets.lib.php:283 msgid "Slovak" msgstr "Slovacă" -#: libraries/messages.inc.php:1007 libraries/mysql_charsets.lib.php:286 +#: libraries/messages.inc.php:1003 libraries/mysql_charsets.lib.php:286 msgid "Slovenian" msgstr "Slovenă" -#: libraries/messages.inc.php:1008 pmd_general.php:95 +#: libraries/messages.inc.php:1004 pmd_general.php:95 msgid "Small/Big All" msgstr "Small/Big All" -#: libraries/messages.inc.php:1009 pmd_general.php:91 +#: libraries/messages.inc.php:1005 pmd_general.php:91 msgid "Snap to grid" msgstr "Aliniere la grilă" -#: libraries/messages.inc.php:1011 server_synchronize.php:1167 +#: libraries/messages.inc.php:1007 server_synchronize.php:1167 msgid "Socket" msgstr "" -#: libraries/messages.inc.php:1013 server_status.php:259 +#: libraries/messages.inc.php:1009 server_status.php:259 msgid "Sorting" msgstr "Sortare" -#: libraries/messages.inc.php:1015 tbl_printview.php:310 tbl_structure.php:657 +#: libraries/messages.inc.php:1011 tbl_printview.php:310 tbl_structure.php:657 msgid "Space usage" msgstr "Utilizare spațiu" -#: libraries/messages.inc.php:1016 libraries/mysql_charsets.lib.php:289 +#: libraries/messages.inc.php:1012 libraries/mysql_charsets.lib.php:289 msgid "Spanish" msgstr "Spaniolă" -#: libraries/messages.inc.php:1019 +#: libraries/messages.inc.php:1015 msgid "Export type" msgstr "Modul de export" -#: libraries/messages.inc.php:1020 +#: libraries/messages.inc.php:1016 msgid "Export time in UTC" msgstr "" -#: libraries/messages.inc.php:1021 libraries/sqlparser.lib.php:173 +#: libraries/messages.inc.php:1017 libraries/sqlparser.lib.php:173 msgid "" "There is a chance that you may have found a bug in the SQL parser. Please " "examine your query closely, and check that the quotes are correct and not " @@ -6054,7 +6054,7 @@ msgstr "" "parte din comanda la aceea parte care cauzeaza problema și raporteaza acesta " "ca un BUG in sectiunea DE TAIAT" -#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:137 +#: libraries/messages.inc.php:1018 libraries/sqlparser.lib.php:137 msgid "" "There seems to be an error in your SQL query. The MySQL server error output " "below, if there is any, may also help you in diagnosing the problem" @@ -6062,33 +6062,33 @@ msgstr "" "Pare sa fie o eroare in comanda SQL. Eroarea MySQL de mai jos, daca e " "vreuna, poate sa te ajute la diagnosticarea problemei" -#: libraries/messages.inc.php:1026 libraries/sqlparser.lib.php:495 +#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:495 msgid "Invalid Identifer" msgstr "Identificator nevalid" -#: libraries/messages.inc.php:1027 libraries/sqlparser.lib.php:344 +#: libraries/messages.inc.php:1023 libraries/sqlparser.lib.php:344 msgid "Unclosed quote" msgstr "Citare neînchisă" -#: libraries/messages.inc.php:1028 libraries/sqlparser.lib.php:612 +#: libraries/messages.inc.php:1024 libraries/sqlparser.lib.php:612 msgid "Unknown Punctuation String" msgstr "Înșiruire de punctuație necunoscută" -#: libraries/messages.inc.php:1030 server_replication.php:327 +#: libraries/messages.inc.php:1026 server_replication.php:327 #: server_replication.php:328 #, fuzzy msgid "Start" msgstr "Dum" -#: libraries/messages.inc.php:1033 tbl_printview.php:369 tbl_structure.php:729 +#: libraries/messages.inc.php:1029 tbl_printview.php:369 tbl_structure.php:729 msgid "Statements" msgstr "Comenzi" -#: libraries/messages.inc.php:1034 tbl_printview.php:380 tbl_structure.php:741 +#: libraries/messages.inc.php:1030 tbl_printview.php:380 tbl_structure.php:741 msgid "static" msgstr "" -#: libraries/messages.inc.php:1035 server_status.php:388 +#: libraries/messages.inc.php:1031 server_status.php:388 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -6096,43 +6096,43 @@ msgstr "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." -#: libraries/messages.inc.php:1038 server_replication.php:327 +#: libraries/messages.inc.php:1034 server_replication.php:327 #: server_replication.php:328 msgid "Stop" msgstr "" -#: libraries/messages.inc.php:1039 server_engines.php:49 +#: libraries/messages.inc.php:1035 server_engines.php:49 msgid "Storage Engines" msgstr "Motoare de stocare" -#: libraries/messages.inc.php:1040 libraries/tbl_properties.inc.php:726 +#: libraries/messages.inc.php:1036 libraries/tbl_properties.inc.php:726 #: server_engines.php:58 tbl_operations.php:353 msgid "Storage Engine" msgstr "Motor de stocare" -#: libraries/messages.inc.php:1042 +#: libraries/messages.inc.php:1038 msgid "CSV for MS Excel" msgstr "Date CSV pentru MS Excel" -#: libraries/messages.inc.php:1044 tbl_structure.php:516 tbl_structure.php:518 +#: libraries/messages.inc.php:1040 tbl_structure.php:516 tbl_structure.php:518 msgid "Propose table structure" msgstr "Propune structura de tabele" -#: libraries/messages.inc.php:1045 server_synchronize.php:424 +#: libraries/messages.inc.php:1041 server_synchronize.php:424 #: server_synchronize.php:867 #, fuzzy msgid "Structure Difference" msgstr "Structură pentru vizualizare" -#: libraries/messages.inc.php:1049 server_synchronize.php:265 +#: libraries/messages.inc.php:1045 server_synchronize.php:265 msgid "Structure Synchronization" msgstr "" -#: libraries/messages.inc.php:1050 libraries/sql_query_form.lib.php:462 +#: libraries/messages.inc.php:1046 libraries/sql_query_form.lib.php:462 msgid "Submit" msgstr "Trimite" -#: libraries/messages.inc.php:1052 main.php:358 +#: libraries/messages.inc.php:1048 main.php:358 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -6141,161 +6141,161 @@ msgstr "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " "issues." -#: libraries/messages.inc.php:1054 libraries/mysql_charsets.lib.php:295 +#: libraries/messages.inc.php:1050 libraries/mysql_charsets.lib.php:295 #: libraries/mysql_charsets.lib.php:392 msgid "Swedish" msgstr "Suedez" -#: libraries/messages.inc.php:1060 tbl_operations.php:556 +#: libraries/messages.inc.php:1056 tbl_operations.php:556 msgid "Switch to copied table" msgstr "Schimbă la tabela copiată" -#: libraries/messages.inc.php:1061 server_synchronize.php:1213 +#: libraries/messages.inc.php:1057 server_synchronize.php:1213 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." msgstr "" -#: libraries/messages.inc.php:1062 server_synchronize.php:451 +#: libraries/messages.inc.php:1058 server_synchronize.php:451 #: server_synchronize.php:896 msgid "Synchronize Databases" msgstr "" -#: libraries/messages.inc.php:1063 libraries/server_links.inc.php:92 +#: libraries/messages.inc.php:1059 libraries/server_links.inc.php:92 #: server_synchronize.php:1092 server_synchronize.php:1100 msgid "Synchronize" msgstr "" -#: libraries/messages.inc.php:1065 server_synchronize.php:430 +#: libraries/messages.inc.php:1061 server_synchronize.php:430 #: server_synchronize.php:873 msgid "Add column(s)" msgstr "" -#: libraries/messages.inc.php:1066 tbl_create.php:62 +#: libraries/messages.inc.php:1062 tbl_create.php:62 #, php-format msgid "Table %s already exists!" msgstr "Tabelul %s există deja!" -#: libraries/messages.inc.php:1067 server_synchronize.php:432 +#: libraries/messages.inc.php:1063 server_synchronize.php:432 #: server_synchronize.php:875 msgid "Alter column(s)" msgstr "" -#: libraries/messages.inc.php:1068 tbl_addfield.php:189 tbl_alter.php:103 +#: libraries/messages.inc.php:1064 tbl_addfield.php:189 tbl_alter.php:103 #: tbl_indexes.php:98 #, php-format msgid "Table %1$s has been altered successfully" msgstr "Tabelul %1$s a fost alterat cu succes" -#: libraries/messages.inc.php:1069 server_synchronize.php:434 +#: libraries/messages.inc.php:1065 server_synchronize.php:434 #: server_synchronize.php:877 msgid "Apply index(s)" msgstr "" -#: libraries/messages.inc.php:1071 server_synchronize.php:446 +#: libraries/messages.inc.php:1067 server_synchronize.php:446 #: server_synchronize.php:890 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: libraries/messages.inc.php:1072 tbl_move_copy.php:82 +#: libraries/messages.inc.php:1068 tbl_move_copy.php:82 msgid "The table name is empty!" msgstr "Numele de tabel este gol!" -#: libraries/messages.inc.php:1073 tbl_create.php:249 +#: libraries/messages.inc.php:1069 tbl_create.php:249 #, php-format msgid "Table %1$s has been created." msgstr "Tabelul %1$s a fost creat." -#: libraries/messages.inc.php:1076 tbl_operations.php:628 +#: libraries/messages.inc.php:1072 tbl_operations.php:628 #, php-format msgid "Table %s has been flushed" msgstr "Tabelul %s a fost curățat" -#: libraries/messages.inc.php:1077 server_synchronize.php:436 +#: libraries/messages.inc.php:1073 server_synchronize.php:436 #: server_synchronize.php:879 msgid "Insert row(s)" msgstr "" -#: libraries/messages.inc.php:1078 libraries/tbl_links.inc.php:107 +#: libraries/messages.inc.php:1074 libraries/tbl_links.inc.php:107 #: libraries/tbl_links.inc.php:140 libraries/tbl_links.inc.php:141 msgid "Table seems to be empty!" msgstr "Tabelul pare a fi gol!" -#: libraries/messages.inc.php:1079 tbl_operations.php:568 +#: libraries/messages.inc.php:1075 tbl_operations.php:568 msgid "Table maintenance" msgstr "Administrare tabel" -#: libraries/messages.inc.php:1080 libraries/tbl_properties.inc.php:618 +#: libraries/messages.inc.php:1076 libraries/tbl_properties.inc.php:618 #: server_synchronize.php:428 server_synchronize.php:871 msgid "Table name" msgstr "Denumire tabel" -#: libraries/messages.inc.php:1081 pdf_schema.php:1116 +#: libraries/messages.inc.php:1077 pdf_schema.php:1116 msgid "Table of contents" msgstr "Sumar" -#: libraries/messages.inc.php:1082 tbl_operations.php:334 +#: libraries/messages.inc.php:1078 tbl_operations.php:334 msgid "Table options" msgstr "Opțiuni tabel" -#: libraries/messages.inc.php:1083 server_synchronize.php:431 +#: libraries/messages.inc.php:1079 server_synchronize.php:431 #: server_synchronize.php:874 msgid "Remove column(s)" msgstr "" -#: libraries/messages.inc.php:1084 server_synchronize.php:433 +#: libraries/messages.inc.php:1080 server_synchronize.php:433 #: server_synchronize.php:876 msgid "Remove index(s)" msgstr "" -#: libraries/messages.inc.php:1088 server_synchronize.php:435 +#: libraries/messages.inc.php:1084 server_synchronize.php:435 #: server_synchronize.php:878 msgid "Update row(s)" msgstr "" -#: libraries/messages.inc.php:1090 server_synchronize.php:942 +#: libraries/messages.inc.php:1086 server_synchronize.php:942 msgid "Target database has been synchronized with source database" msgstr "" -#: libraries/messages.inc.php:1091 server_privileges.php:392 +#: libraries/messages.inc.php:1087 server_privileges.php:392 #: server_privileges.php:527 server_privileges.php:1679 #: server_privileges.php:1685 msgid "Table-specific privileges" msgstr "Drepturi specifice de tabele" -#: libraries/messages.inc.php:1092 server_status.php:254 +#: libraries/messages.inc.php:1088 server_status.php:254 msgid "Temporary data" msgstr "Date temporare" -#: libraries/messages.inc.php:1093 tbl_change.php:728 +#: libraries/messages.inc.php:1089 tbl_change.php:728 msgid " Because of its length,
this field might not be editable " msgstr "" "Datorită lungimii sale,
acest cîmp s-ar putea să nu fie editabil" -#: libraries/messages.inc.php:1094 +#: libraries/messages.inc.php:1090 msgid "Texy! text" msgstr "Texy! text" -#: libraries/messages.inc.php:1095 libraries/mysql_charsets.lib.php:298 +#: libraries/messages.inc.php:1091 libraries/mysql_charsets.lib.php:298 #: libraries/mysql_charsets.lib.php:395 msgid "Thai" msgstr "Tailandez" -#: libraries/messages.inc.php:1102 libraries/replication_gui.lib.php:308 +#: libraries/messages.inc.php:1098 libraries/replication_gui.lib.php:308 #: server_privileges.php:734 msgid "This Host" msgstr "Această gazdă" -#: libraries/messages.inc.php:1103 server_status.php:252 +#: libraries/messages.inc.php:1099 server_status.php:252 msgid "Threads" msgstr "Fire" -#: libraries/messages.inc.php:1104 server_processlist.php:22 +#: libraries/messages.inc.php:1100 server_processlist.php:22 #, php-format msgid "Thread %s was successfully killed." msgstr "Firul de execuție %s a fost oprit cu succes." -#: libraries/messages.inc.php:1106 +#: libraries/messages.inc.php:1102 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -6303,185 +6303,185 @@ msgstr "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." -#: libraries/messages.inc.php:1109 pmd_pdf.php:94 +#: libraries/messages.inc.php:1105 pmd_pdf.php:94 msgid "to/from page" msgstr "în/din pagină" -#: libraries/messages.inc.php:1110 pdf_pages.php:343 +#: libraries/messages.inc.php:1106 pdf_pages.php:343 msgid "Toggle scratchboard" msgstr "dezactivare scratchboard" -#: libraries/messages.inc.php:1111 pmd_general.php:99 +#: libraries/messages.inc.php:1107 pmd_general.php:99 msgid "Toggle small/big" msgstr "Comutare mare/mică" -#: libraries/messages.inc.php:1112 pmd_help.php:27 +#: libraries/messages.inc.php:1108 pmd_help.php:27 msgid "To select relation, click :" msgstr "Pentru a alege relația, faceți clic:" -#: libraries/messages.inc.php:1115 libraries/tbl_links.inc.php:149 +#: libraries/messages.inc.php:1111 libraries/tbl_links.inc.php:149 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" -#: libraries/messages.inc.php:1116 tbl_tracking.php:655 +#: libraries/messages.inc.php:1112 tbl_tracking.php:655 msgid "Activate now" msgstr "" -#: libraries/messages.inc.php:1117 tbl_tracking.php:653 +#: libraries/messages.inc.php:1113 tbl_tracking.php:653 #, php-format msgid "Activate tracking for %s.%s" msgstr "" -#: libraries/messages.inc.php:1118 tbl_tracking.php:221 +#: libraries/messages.inc.php:1114 tbl_tracking.php:221 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/messages.inc.php:1119 tbl_tracking.php:688 +#: libraries/messages.inc.php:1115 tbl_tracking.php:688 #, fuzzy msgid "Create version" msgstr "Creare relație" -#: libraries/messages.inc.php:1120 tbl_tracking.php:668 +#: libraries/messages.inc.php:1116 tbl_tracking.php:668 #, php-format msgid "Create version %s of %s.%s" msgstr "" -#: libraries/messages.inc.php:1122 tbl_tracking.php:412 +#: libraries/messages.inc.php:1118 tbl_tracking.php:412 msgid "Data definition statement" msgstr "" -#: libraries/messages.inc.php:1123 tbl_tracking.php:463 +#: libraries/messages.inc.php:1119 tbl_tracking.php:463 msgid "Data manipulation statement" msgstr "" -#: libraries/messages.inc.php:1124 tbl_tracking.php:410 tbl_tracking.php:461 +#: libraries/messages.inc.php:1120 tbl_tracking.php:410 tbl_tracking.php:461 #, fuzzy msgid "Date" msgstr "Date" -#: libraries/messages.inc.php:1125 tbl_tracking.php:642 +#: libraries/messages.inc.php:1121 tbl_tracking.php:642 msgid "Deactivate now" msgstr "" -#: libraries/messages.inc.php:1126 tbl_tracking.php:640 +#: libraries/messages.inc.php:1122 tbl_tracking.php:640 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "" -#: libraries/messages.inc.php:1127 tbl_tracking.php:521 +#: libraries/messages.inc.php:1123 tbl_tracking.php:521 #, fuzzy, php-format msgid "Export as %s" msgstr "Modul de export" -#: libraries/messages.inc.php:1130 tbl_tracking.php:251 tbl_tracking.php:379 +#: libraries/messages.inc.php:1126 tbl_tracking.php:251 tbl_tracking.php:379 msgid "Close" msgstr "" -#: libraries/messages.inc.php:1131 tbl_tracking.php:114 +#: libraries/messages.inc.php:1127 tbl_tracking.php:114 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/messages.inc.php:1133 tbl_tracking.php:397 tbl_tracking.php:504 +#: libraries/messages.inc.php:1129 tbl_tracking.php:397 tbl_tracking.php:504 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "" -#: libraries/messages.inc.php:1134 tbl_tracking.php:561 +#: libraries/messages.inc.php:1130 tbl_tracking.php:561 msgid "Show versions" msgstr "" -#: libraries/messages.inc.php:1135 tbl_tracking.php:507 +#: libraries/messages.inc.php:1131 tbl_tracking.php:507 msgid "SQL dump (file download)" msgstr "" -#: libraries/messages.inc.php:1136 tbl_tracking.php:508 +#: libraries/messages.inc.php:1132 tbl_tracking.php:508 msgid "SQL dump" msgstr "" -#: libraries/messages.inc.php:1137 tbl_tracking.php:213 +#: libraries/messages.inc.php:1133 tbl_tracking.php:213 msgid "SQL statements executed." msgstr "" -#: libraries/messages.inc.php:1138 +#: libraries/messages.inc.php:1134 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/messages.inc.php:1139 tbl_tracking.php:509 +#: libraries/messages.inc.php:1135 tbl_tracking.php:509 msgid "SQL execution" msgstr "" -#: libraries/messages.inc.php:1140 tbl_tracking.php:230 +#: libraries/messages.inc.php:1136 tbl_tracking.php:230 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/messages.inc.php:1141 tbl_tracking.php:381 +#: libraries/messages.inc.php:1137 tbl_tracking.php:381 msgid "Tracking statements" msgstr "" -#: libraries/messages.inc.php:1148 tbl_tracking.php:593 +#: libraries/messages.inc.php:1144 tbl_tracking.php:593 #, fuzzy msgid "Version" msgstr "Persană" -#: libraries/messages.inc.php:1149 tbl_tracking.php:672 +#: libraries/messages.inc.php:1145 tbl_tracking.php:672 msgid "Track these data definition statements:" msgstr "" -#: libraries/messages.inc.php:1150 tbl_tracking.php:680 +#: libraries/messages.inc.php:1146 tbl_tracking.php:680 msgid "Track these data manipulation statements:" msgstr "" -#: libraries/messages.inc.php:1155 tbl_tracking.php:411 tbl_tracking.php:462 +#: libraries/messages.inc.php:1151 tbl_tracking.php:411 tbl_tracking.php:462 #, fuzzy msgid "Username" msgstr "Nume utilizator:" -#: libraries/messages.inc.php:1156 tbl_tracking.php:203 +#: libraries/messages.inc.php:1152 tbl_tracking.php:203 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "" -#: libraries/messages.inc.php:1157 tbl_tracking.php:187 +#: libraries/messages.inc.php:1153 tbl_tracking.php:187 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "" -#: libraries/messages.inc.php:1158 tbl_tracking.php:195 +#: libraries/messages.inc.php:1154 tbl_tracking.php:195 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "" -#: libraries/messages.inc.php:1159 tbl_tracking.php:262 +#: libraries/messages.inc.php:1155 tbl_tracking.php:262 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/messages.inc.php:1161 tbl_tracking.php:220 +#: libraries/messages.inc.php:1157 tbl_tracking.php:220 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/messages.inc.php:1162 libraries/mysql_charsets.lib.php:219 +#: libraries/messages.inc.php:1158 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:362 msgid "Traditional Chinese" msgstr "Chineza Traditionala" -#: libraries/messages.inc.php:1163 libraries/mysql_charsets.lib.php:292 +#: libraries/messages.inc.php:1159 libraries/mysql_charsets.lib.php:292 msgid "Traditional Spanish" msgstr "Spaniola traditionala" -#: libraries/messages.inc.php:1164 server_status.php:388 +#: libraries/messages.inc.php:1160 server_status.php:388 msgid "Traffic" msgstr "Trafic" -#: libraries/messages.inc.php:1165 server_status.php:261 +#: libraries/messages.inc.php:1161 server_status.php:261 msgid "Transaction coordinator" msgstr "Coordonator tranzacție" -#: libraries/messages.inc.php:1166 +#: libraries/messages.inc.php:1162 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 " @@ -6494,7 +6494,7 @@ msgstr "" "setati și o a doua optiune, trebuie sa aveti prima optiune setata ca și " "empty string" -#: libraries/messages.inc.php:1167 +#: libraries/messages.inc.php:1163 msgid "" "Displays hexadecimal representation of data. Optional first parameter " "specifies how often space will be added (defaults to 2 nibbles)." @@ -6502,7 +6502,7 @@ msgstr "" "Displays hexadecimal representation of data. Optional first parameter " "specifies how often space will be added (defaults to 2 nibbles)." -#: libraries/messages.inc.php:1168 +#: libraries/messages.inc.php:1164 msgid "" "Displays a clickable thumbnail. The options are the maximum width and height " "in pixels. The original aspect ratio is preserved." @@ -6510,15 +6510,15 @@ msgstr "" "Afișează o imagine mica clicabila ; optiuni: latime, inaltime in pixeli " "(metine dimensiunile originale)" -#: libraries/messages.inc.php:1169 +#: libraries/messages.inc.php:1165 msgid "Displays a link to download this image." msgstr "Afișează un link la imagine (direct blob download, i.e.)." -#: libraries/messages.inc.php:1170 +#: libraries/messages.inc.php:1166 msgid "See image/jpeg: inline" msgstr "Vezi imagine/jpeg: inline" -#: libraries/messages.inc.php:1171 +#: libraries/messages.inc.php:1167 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 " @@ -6538,7 +6538,7 @@ msgstr "" "documentation for PHP's strftime() function and for \"utc\" it is done using " "gmdate() function." -#: libraries/messages.inc.php:1172 +#: libraries/messages.inc.php:1168 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 " @@ -6562,13 +6562,13 @@ msgstr "" "dacă este stabilit la 1, va aplica NOWRAP la conținut, astfel încît întregul " "output va fi afișat fără reformatare (implicit 1)" -#: libraries/messages.inc.php:1173 +#: libraries/messages.inc.php:1169 msgid "" "Displays the contents of the field as-is, without running it through " "htmlspecialchars(). That is, the field is assumed to contain valid HTML." msgstr "Menține formatarea originală a cîmpului." -#: libraries/messages.inc.php:1174 +#: libraries/messages.inc.php:1170 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 " @@ -6578,7 +6578,7 @@ msgstr "" "optiune este un prefix cum ar fi \"http://domain.com/\", a doua optiune este " "latimea in pixeli, iar a treia este inaltimea." -#: libraries/messages.inc.php:1175 +#: libraries/messages.inc.php:1171 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 " @@ -6588,11 +6588,11 @@ msgstr "" "un prefix cum ar fi \"http://domain.com/\", a doua optiune este un titlu " "pentru link." -#: libraries/messages.inc.php:1176 +#: libraries/messages.inc.php:1172 msgid "Formats text as SQL query with syntax highlighting." msgstr "Formatează textul ca interogare SQL cu evidențierea sintaxei." -#: libraries/messages.inc.php:1177 +#: libraries/messages.inc.php:1173 msgid "" "Displays a part of a string. The first option is the number of characters to " "skip from the beginning of the string (Default 0). The second option is the " @@ -6606,70 +6606,70 @@ msgstr "" "textul ramas. A treia optiune defineste caracterele care vor fi atasate la " "output la returnarea unui substring (Default: ...) ." -#: libraries/messages.inc.php:1179 server_binlog.php:183 server_binlog.php:186 +#: libraries/messages.inc.php:1175 server_binlog.php:183 server_binlog.php:186 #: server_processlist.php:49 server_processlist.php:51 msgid "Truncate Shown Queries" msgstr "Truncare comenzi afișate" -#: libraries/messages.inc.php:1180 libraries/mysql_charsets.lib.php:301 +#: libraries/messages.inc.php:1176 libraries/mysql_charsets.lib.php:301 #: libraries/mysql_charsets.lib.php:389 msgid "Turkish" msgstr "Turc" -#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:304 +#: libraries/messages.inc.php:1179 libraries/mysql_charsets.lib.php:304 #: libraries/mysql_charsets.lib.php:386 msgid "Ukrainian" msgstr "Ucrainean" -#: libraries/messages.inc.php:1185 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:1181 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 msgid "Unicode" msgstr "Unicod" -#: libraries/messages.inc.php:1187 libraries/mysql_charsets.lib.php:398 +#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:398 #: libraries/mysql_charsets.lib.php:405 msgid "unknown" msgstr "necunoscut" -#: libraries/messages.inc.php:1190 server_privileges.php:1152 +#: libraries/messages.inc.php:1186 server_privileges.php:1152 #, php-format msgid "You have updated the privileges for %s." msgstr "Ați actualizat privilegiile pentru %s." -#: libraries/messages.inc.php:1191 user_password.php:112 +#: libraries/messages.inc.php:1187 user_password.php:112 msgid "The profile has been updated." msgstr "Profilul a fost actualizat." -#: libraries/messages.inc.php:1193 libraries/relation.lib.php:138 +#: libraries/messages.inc.php:1189 libraries/relation.lib.php:138 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "Parcurgeti documentatia pentru modul de updatare a Column_comments Table" -#: libraries/messages.inc.php:1194 +#: libraries/messages.inc.php:1190 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Ar trebui sa reactualizati serverul %s %s la o versiune mai noua." -#: libraries/messages.inc.php:1204 tbl_printview.php:314 tbl_structure.php:661 +#: libraries/messages.inc.php:1200 tbl_printview.php:314 tbl_structure.php:661 msgid "Usage" msgstr "Utilizare" -#: libraries/messages.inc.php:1205 +#: libraries/messages.inc.php:1201 msgid "Enclose table and field names with backquotes" msgstr "Utilizati apostroful pentru numele tabelelor și a campurilor" -#: libraries/messages.inc.php:1206 libraries/replication_gui.lib.php:314 +#: libraries/messages.inc.php:1202 libraries/replication_gui.lib.php:314 #: server_privileges.php:740 msgid "Use Host Table" msgstr "Utilizare tabel gazde" -#: libraries/messages.inc.php:1207 server_privileges.php:848 +#: libraries/messages.inc.php:1203 server_privileges.php:848 #, php-format msgid "The user %s already exists!" msgstr "Utilizatorul %s există deja!" -#: libraries/messages.inc.php:1209 libraries/replication_gui.lib.php:55 +#: libraries/messages.inc.php:1205 libraries/replication_gui.lib.php:55 #: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245 #: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255 #: server_privileges.php:672 server_privileges.php:675 @@ -6677,37 +6677,37 @@ msgstr "Utilizatorul %s există deja!" msgid "User name" msgstr "Nume utilizator" -#: libraries/messages.inc.php:1210 server_privileges.php:1645 +#: libraries/messages.inc.php:1206 server_privileges.php:1645 msgid "The selected user was not found in the privilege table." msgstr "Utilizatorul selectat nu a fost găsit în tabelul de drepturi." -#: libraries/messages.inc.php:1211 server_privileges.php:1365 +#: libraries/messages.inc.php:1207 server_privileges.php:1365 msgid "User overview" msgstr "Descriere utilizator" -#: libraries/messages.inc.php:1212 server_privileges.php:1261 +#: libraries/messages.inc.php:1208 server_privileges.php:1261 msgid "The selected users have been deleted successfully." msgstr "Utilizatorii selectați au fost eliminați." -#: libraries/messages.inc.php:1213 server_privileges.php:2026 +#: libraries/messages.inc.php:1209 server_privileges.php:2026 #, php-format msgid "Users having access to "%s"" msgstr "Utilizatorul are acces la "%s"" -#: libraries/messages.inc.php:1214 main.php:189 server_privileges.php:1350 +#: libraries/messages.inc.php:1210 main.php:189 server_privileges.php:1350 #: server_privileges.php:1497 server_privileges.php:1611 #: server_privileges.php:2029 server_processlist.php:54 msgid "User" msgstr "Utilizator" -#: libraries/messages.inc.php:1215 tbl_change.php:1171 +#: libraries/messages.inc.php:1211 tbl_change.php:1171 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Folosiți tasta TAB pentru a trece de la o valoare la alta sau CTRL+săgeți " "pentru a merge în oricare direcție" -#: libraries/messages.inc.php:1217 libraries/replication_gui.lib.php:251 +#: libraries/messages.inc.php:1213 libraries/replication_gui.lib.php:251 #: libraries/replication_gui.lib.php:319 libraries/replication_gui.lib.php:342 #: server_privileges.php:678 server_privileges.php:745 #: server_privileges.php:769 server_privileges.php:1889 @@ -6715,7 +6715,7 @@ msgstr "" msgid "Use text field" msgstr "Utilizare cîmp text" -#: libraries/messages.inc.php:1221 libraries/sqlvalidator.lib.php:68 +#: libraries/messages.inc.php:1217 libraries/sqlvalidator.lib.php:68 #, php-format msgid "" "The SQL validator could not be initialized. Please check if you have " @@ -6724,90 +6724,90 @@ msgstr "" "Validatorul SQL nu poate fi inițializat. Verificați dacă e instalată " "extesnsia necesară PHP, așa cum e descris în %sdocumentation%s." -#: libraries/messages.inc.php:1222 libraries/replication_gui.lib.php:111 +#: libraries/messages.inc.php:1218 libraries/replication_gui.lib.php:111 #: server_status.php:627 tbl_change.php:324 tbl_printview.php:370 #: tbl_select.php:139 tbl_structure.php:730 msgid "Value" msgstr "Valoare" -#: libraries/messages.inc.php:1223 libraries/replication_gui.lib.php:110 +#: libraries/messages.inc.php:1219 libraries/replication_gui.lib.php:110 #: libraries/sql_query_form.lib.php:445 server_status.php:626 #: server_variables.php:52 msgid "Variable" msgstr "Variabil" -#: libraries/messages.inc.php:1225 server_export.php:21 +#: libraries/messages.inc.php:1221 server_export.php:21 msgid "View dump (schema) of databases" msgstr "Vizualizarea schemei bazei de date" -#: libraries/messages.inc.php:1227 tbl_export.php:23 +#: libraries/messages.inc.php:1223 tbl_export.php:23 msgid "View dump (schema) of table" msgstr "Vizualizarea schemei tabelului" -#: libraries/messages.inc.php:1231 view_create.php:142 +#: libraries/messages.inc.php:1227 view_create.php:142 msgid "VIEW name" msgstr "Denumire VIZIUNE" -#: libraries/messages.inc.php:1237 main.php:205 +#: libraries/messages.inc.php:1233 main.php:205 msgid "Web server" msgstr "Server Web" -#: libraries/messages.inc.php:1239 libraries/mysql_charsets.lib.php:277 +#: libraries/messages.inc.php:1235 libraries/mysql_charsets.lib.php:277 #: libraries/mysql_charsets.lib.php:325 msgid "West European" msgstr "European de vest" -#: libraries/messages.inc.php:1240 main.php:230 +#: libraries/messages.inc.php:1236 main.php:230 msgid "Wiki" msgstr "Wiki" -#: libraries/messages.inc.php:1241 server_privileges.php:2138 +#: libraries/messages.inc.php:1237 server_privileges.php:2138 msgid "wildcard" msgstr "Metacaracter" -#: libraries/messages.inc.php:1248 +#: libraries/messages.inc.php:1244 #, fuzzy msgid "Export contents" msgstr "Modul de export" -#: libraries/messages.inc.php:1249 +#: libraries/messages.inc.php:1245 msgid "Export functions" msgstr "" -#: libraries/messages.inc.php:1250 +#: libraries/messages.inc.php:1246 msgid "Export procedures" msgstr "" -#: libraries/messages.inc.php:1251 +#: libraries/messages.inc.php:1247 msgid "Export Structure Schemas (recommended)" msgstr "" -#: libraries/messages.inc.php:1252 +#: libraries/messages.inc.php:1248 #, fuzzy msgid "Export tables" msgstr "Modul de export" -#: libraries/messages.inc.php:1253 +#: libraries/messages.inc.php:1249 #, fuzzy msgid "Export triggers" msgstr "Modul de export" -#: libraries/messages.inc.php:1254 +#: libraries/messages.inc.php:1250 #, fuzzy msgid "Export views" msgstr "Modul de export" -#: libraries/messages.inc.php:1255 +#: libraries/messages.inc.php:1251 msgid "XML" msgstr "XML" -#: libraries/messages.inc.php:1259 server_privileges.php:592 +#: libraries/messages.inc.php:1255 server_privileges.php:592 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" "Observație: Prin stabilirea acestor opțiuni la 0 (zero) se elimină " "restricția." -#: libraries/messages.inc.php:1260 +#: libraries/messages.inc.php:1256 msgid "\"zipped\"" msgstr "„arhivat”" diff --git a/po/ru.po b/po/ru.po index 983761848..88fa2d2c2 100644 --- 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-05-13 11:25+0200\n" +"POT-Creation-Date: 2010-05-13 11:30+0200\n" "PO-Revision-Date: 2010-03-30 23:23+0200\n" "Last-Translator: Michal \n" "Language-Team: russian \n" @@ -16,19 +16,19 @@ msgstr "" "X-Generator: Pootle 2.0.1\n" #: browse_foreigners.php:38 browse_foreigners.php:59 -#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:870 +#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:866 #: server_privileges.php:1475 msgid "Show all" msgstr "Показать все" #: browse_foreigners.php:82 db_operations.php:648 -#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:394 -#: libraries/export/pdf.php:147 libraries/messages.inc.php:597 +#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394 +#: libraries/export/pdf.php:147 libraries/messages.inc.php:593 #: pdf_schema.php:283 pdf_schema.php:1123 pdf_schema.php:1139 msgid "Page number:" msgstr "Номер страницы:" -#: browse_foreigners.php:132 libraries/messages.inc.php:1242 +#: browse_foreigners.php:132 libraries/messages.inc.php:1238 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -41,7 +41,7 @@ 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/db_links.inc.php:75 -#: libraries/messages.inc.php:841 libraries/tbl_links.inc.php:63 +#: libraries/messages.inc.php:837 libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Поиск" @@ -50,12 +50,12 @@ msgstr "Поиск" #: db_search.php:362 db_structure.php:567 js/messages.php:48 #: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2267 +#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 #: 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 #: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614 -#: libraries/messages.inc.php:361 libraries/replication_gui.lib.php:73 +#: libraries/messages.inc.php:357 libraries/replication_gui.lib.php:73 #: libraries/replication_gui.lib.php:365 libraries/select_server.lib.php:104 #: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477 #: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782 @@ -75,33 +75,33 @@ msgid "Go" msgstr "OK" #: browse_foreigners.php:168 browse_foreigners.php:172 -#: libraries/Index.class.php:442 libraries/messages.inc.php:459 +#: libraries/Index.class.php:442 libraries/messages.inc.php:455 #: tbl_tracking.php:320 msgid "Keyname" msgstr "Имя индекса" #: browse_foreigners.php:169 browse_foreigners.php:171 -#: libraries/messages.inc.php:252 server_collations.php:55 +#: libraries/messages.inc.php:248 server_collations.php:55 #: server_collations.php:67 server_engines.php:59 server_status.php:628 msgid "Description" msgstr "Описание" #: browse_foreigners.php:247 browse_foreigners.php:256 #: browse_foreigners.php:268 browse_foreigners.php:276 -#: libraries/messages.inc.php:1218 +#: libraries/messages.inc.php:1214 msgid "Use this value" msgstr "Использовать это значение" -#: db_create.php:46 libraries/messages.inc.php:215 +#: db_create.php:46 libraries/messages.inc.php:211 #, php-format msgid "Database %1$s has been created." msgstr "База данных %1$s была создана." -#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:232 +#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:228 msgid "Database comment: " msgstr "Комментарий к базе данных:" -#: db_datadict.php:165 libraries/messages.inc.php:1070 +#: db_datadict.php:165 libraries/messages.inc.php:1066 #: libraries/tbl_properties.inc.php:724 pdf_schema.php:1236 #: tbl_operations.php:345 tbl_printview.php:130 msgid "Table comments" @@ -110,7 +110,7 @@ msgstr "Комментарий к таблице" #: db_datadict.php:174 db_qbe.php:174 libraries/Index.class.php:446 #: libraries/export/htmlword.php:244 libraries/export/latex.php:360 #: libraries/export/odt.php:294 libraries/export/texytext.php:233 -#: libraries/messages.inc.php:317 libraries/tbl_properties.inc.php:99 +#: libraries/messages.inc.php:313 libraries/tbl_properties.inc.php:99 #: libraries/tbl_properties.inc.php:275 pdf_schema.php:1262 #: pdf_schema.php:1283 tbl_change.php:308 tbl_indexes.php:189 #: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135 @@ -122,7 +122,7 @@ msgstr "Поле" #: libraries/db_events.inc.php:31 libraries/db_routines.inc.php:42 #: 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/messages.inc.php:1181 +#: libraries/export/texytext.php:234 libraries/messages.inc.php:1177 #: libraries/tbl_properties.inc.php:100 pdf_schema.php:1263 #: pdf_schema.php:1284 server_privileges.php:2031 tbl_change.php:287 #: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313 @@ -134,7 +134,7 @@ msgstr "Тип" #: db_datadict.php:177 libraries/Index.class.php:449 #: libraries/export/htmlword.php:246 libraries/export/latex.php:360 #: libraries/export/odt.php:300 libraries/export/texytext.php:235 -#: libraries/messages.inc.php:576 libraries/tbl_properties.inc.php:109 +#: libraries/messages.inc.php:572 libraries/tbl_properties.inc.php:109 #: pdf_schema.php:1265 pdf_schema.php:1286 tbl_change.php:323 #: tbl_printview.php:145 tbl_structure.php:181 tbl_tracking.php:276 #: tbl_tracking.php:327 @@ -143,7 +143,7 @@ msgstr "Null" #: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 -#: libraries/export/texytext.php:236 libraries/messages.inc.php:238 +#: libraries/export/texytext.php:236 libraries/messages.inc.php:234 #: libraries/tbl_properties.inc.php:106 pdf_schema.php:1266 #: pdf_schema.php:1287 tbl_printview.php:146 tbl_structure.php:182 #: tbl_tracking.php:277 @@ -152,14 +152,14 @@ msgstr "По умолчанию" #: db_datadict.php:182 libraries/export/htmlword.php:249 #: libraries/export/latex.php:362 libraries/export/odt.php:307 -#: libraries/export/texytext.php:238 libraries/messages.inc.php:483 +#: libraries/export/texytext.php:238 libraries/messages.inc.php:479 #: pdf_schema.php:1268 pdf_schema.php:1289 tbl_printview.php:150 msgid "Links to" msgstr "Связи" #: db_datadict.php:184 db_printview.php:112 libraries/export/htmlword.php:252 #: libraries/export/latex.php:365 libraries/export/odt.php:312 -#: libraries/export/texytext.php:241 libraries/messages.inc.php:163 +#: libraries/export/texytext.php:241 libraries/messages.inc.php:159 #: libraries/tbl_properties.inc.php:130 pdf_schema.php:1279 #: pdf_schema.php:1290 tbl_printview.php:152 msgid "Comments" @@ -168,7 +168,7 @@ msgstr "Комментарии" #: db_datadict.php:267 libraries/Index.class.php:359 #: 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/messages.inc.php:559 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:555 #: libraries/mult_submits.inc.php:263 pdf_schema.php:1344 #: server_privileges.php:1529 server_privileges.php:1540 #: server_privileges.php:1850 server_privileges.php:1855 @@ -180,7 +180,7 @@ msgstr "Нет" #: db_datadict.php:267 libraries/Index.class.php:360 #: libraries/Index.class.php:385 libraries/export/htmlword.php:322 #: libraries/export/latex.php:430 libraries/export/odt.php:368 -#: libraries/export/texytext.php:311 libraries/messages.inc.php:1257 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:1253 #: libraries/mult_submits.inc.php:45 libraries/mult_submits.inc.php:50 #: libraries/mult_submits.inc.php:55 libraries/mult_submits.inc.php:60 #: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:101 @@ -194,108 +194,108 @@ msgstr "Нет" msgid "Yes" msgstr "Да" -#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:670 +#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:666 #: tbl_printview.php:498 msgid "Print" msgstr "Печать" -#: db_export.php:29 libraries/messages.inc.php:1226 +#: db_export.php:29 libraries/messages.inc.php:1222 msgid "View dump (schema) of database" msgstr "Отобразить дамп (схему) базы данных" #: db_export.php:33 db_printview.php:96 db_qbe.php:102 db_structure.php:51 -#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:568 +#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:564 #: navigation.php:346 msgid "No tables found in database." msgstr "Таблиц в базе данных не обнаружено." -#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:845 +#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:841 #: server_export.php:27 msgid "Select All" msgstr "Выделить все" -#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1188 +#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1184 #: server_export.php:29 msgid "Unselect All" msgstr "Снять выделение" -#: db_operations.php:38 libraries/messages.inc.php:213 tbl_create.php:54 +#: db_operations.php:38 libraries/messages.inc.php:209 tbl_create.php:54 msgid "The database name is empty!" msgstr "Не указано имя базы данных!" -#: db_operations.php:236 libraries/messages.inc.php:753 +#: db_operations.php:236 libraries/messages.inc.php:749 #, php-format msgid "Database %s has been renamed to %s" msgstr "База данных `%s` переименована в `%s`." -#: db_operations.php:240 libraries/messages.inc.php:178 +#: db_operations.php:240 libraries/messages.inc.php:174 #, php-format msgid "Database %s has been copied to %s" msgstr "База данных %s была скопирована в %s" -#: db_operations.php:410 libraries/messages.inc.php:236 +#: db_operations.php:410 libraries/messages.inc.php:232 msgid "Rename database to" msgstr "Переименовать базу данных в" -#: db_operations.php:415 libraries/messages.inc.php:161 +#: db_operations.php:415 libraries/messages.inc.php:157 #: server_processlist.php:57 msgid "Command" msgstr "Команда" -#: db_operations.php:425 libraries/messages.inc.php:58 tbl_change.php:1143 +#: db_operations.php:425 libraries/messages.inc.php:54 tbl_change.php:1143 msgid "and then" msgstr "и затем" -#: db_operations.php:451 libraries/messages.inc.php:233 +#: db_operations.php:451 libraries/messages.inc.php:229 msgid "Copy database to" msgstr "Скопировать базу данных в" -#: db_operations.php:458 libraries/messages.inc.php:1043 +#: db_operations.php:458 libraries/messages.inc.php:1039 #: tbl_operations.php:526 tbl_tracking.php:388 msgid "Structure only" msgstr "Только структура" -#: db_operations.php:459 libraries/messages.inc.php:1041 +#: db_operations.php:459 libraries/messages.inc.php:1037 #: tbl_operations.php:527 tbl_tracking.php:390 msgid "Structure and data" msgstr "Структура и данные" -#: db_operations.php:460 libraries/messages.inc.php:229 tbl_operations.php:528 +#: db_operations.php:460 libraries/messages.inc.php:225 tbl_operations.php:528 #: tbl_tracking.php:389 msgid "Data only" msgstr "Только данные" -#: db_operations.php:468 libraries/messages.inc.php:186 +#: db_operations.php:468 libraries/messages.inc.php:182 msgid "CREATE DATABASE before copying" msgstr "Перед копированием создать базу данных (CREATE DATABASE)" #: db_operations.php:471 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 -#: libraries/export/sql.php:82 libraries/messages.inc.php:30 +#: libraries/export/sql.php:82 libraries/messages.inc.php:26 #: tbl_operations.php:534 #, php-format msgid "Add %s" msgstr "Добавить %s" -#: db_operations.php:475 libraries/messages.inc.php:29 tbl_operations.php:297 +#: db_operations.php:475 libraries/messages.inc.php:25 tbl_operations.php:297 #: tbl_operations.php:536 msgid "Add AUTO_INCREMENT value" msgstr "Добавить AUTO_INCREMENT" -#: db_operations.php:479 libraries/messages.inc.php:31 tbl_operations.php:543 +#: db_operations.php:479 libraries/messages.inc.php:27 tbl_operations.php:543 msgid "Add constraints" msgstr "Добавить ограничения" -#: db_operations.php:492 libraries/messages.inc.php:1059 +#: db_operations.php:492 libraries/messages.inc.php:1055 msgid "Switch to copied database" msgstr "Переключиться на скопированную базу данных" -#: db_operations.php:533 libraries/messages.inc.php:89 +#: db_operations.php:533 libraries/messages.inc.php:85 msgid "BLOB Repository" msgstr "Хранилище данных типа BLOB" #: db_operations.php:536 db_tracking.php:76 libraries/common.lib.php:1350 -#: libraries/messages.inc.php:1037 libraries/server_links.inc.php:49 +#: libraries/messages.inc.php:1033 libraries/server_links.inc.php:49 #: server_processlist.php:59 tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "Состояние" @@ -307,11 +307,11 @@ msgctxt "BLOB repository" msgid "Enabled" msgstr "Доступно" -#: db_operations.php:548 libraries/messages.inc.php:93 +#: db_operations.php:548 libraries/messages.inc.php:89 msgid "Disable" msgstr "Отключить" -#: db_operations.php:558 libraries/messages.inc.php:90 +#: db_operations.php:558 libraries/messages.inc.php:86 msgid "Damaged" msgstr "Повреждено" @@ -329,12 +329,12 @@ msgctxt "BLOB repository" msgid "Disabled" msgstr "Недоступно" -#: db_operations.php:574 libraries/messages.inc.php:96 +#: db_operations.php:574 libraries/messages.inc.php:92 msgid "Enable" msgstr "Включить" #: db_operations.php:598 libraries/Index.class.php:448 -#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:158 +#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:154 #: 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:361 @@ -343,7 +343,7 @@ msgstr "Включить" msgid "Collation" msgstr "Сравнение" -#: db_operations.php:609 libraries/messages.inc.php:742 main.php:316 +#: db_operations.php:609 libraries/messages.inc.php:738 main.php:316 #: pdf_schema.php:34 #, php-format msgid "" @@ -353,58 +353,58 @@ msgstr "" "Дополнительные возможности для работы со связанными таблицами недоступны. " "Для определения причины нажмите %sздесь%s." -#: db_operations.php:645 libraries/messages.inc.php:264 pdf_pages.php:528 +#: db_operations.php:645 libraries/messages.inc.php:260 pdf_pages.php:528 msgid "Display PDF schema" msgstr "Показать PDF-схему" -#: db_operations.php:661 libraries/messages.inc.php:877 pdf_pages.php:529 +#: db_operations.php:661 libraries/messages.inc.php:873 pdf_pages.php:529 msgid "Show grid" msgstr "Отображать сетку" -#: db_operations.php:664 libraries/messages.inc.php:874 pdf_pages.php:530 +#: db_operations.php:664 libraries/messages.inc.php:870 pdf_pages.php:530 msgid "Show color" msgstr "Отображать в цвете" -#: db_operations.php:666 libraries/messages.inc.php:998 pdf_pages.php:531 +#: db_operations.php:666 libraries/messages.inc.php:994 pdf_pages.php:531 msgid "Show dimension of tables" msgstr "Отображать размерность таблиц" -#: db_operations.php:669 libraries/messages.inc.php:52 pdf_pages.php:532 +#: db_operations.php:669 libraries/messages.inc.php:48 pdf_pages.php:532 msgid "Display all tables with the same width" msgstr "Показать все таблицы одинаковой ширины" -#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:227 +#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:223 #: pdf_pages.php:533 msgid "Data Dictionary" msgstr "Словарь данных" -#: db_operations.php:674 libraries/messages.inc.php:884 pdf_pages.php:534 +#: db_operations.php:674 libraries/messages.inc.php:880 pdf_pages.php:534 msgid "Only show keys" msgstr "Only show keys" -#: db_operations.php:676 libraries/messages.inc.php:875 pdf_pages.php:535 +#: db_operations.php:676 libraries/messages.inc.php:871 pdf_pages.php:535 msgid "Data Dictionary Format" msgstr "Ориентация страниц словаря данных" -#: db_operations.php:678 libraries/messages.inc.php:464 pdf_pages.php:537 +#: db_operations.php:678 libraries/messages.inc.php:460 pdf_pages.php:537 msgid "Landscape" msgstr "Альбомная" -#: db_operations.php:679 libraries/messages.inc.php:663 pdf_pages.php:538 +#: db_operations.php:679 libraries/messages.inc.php:659 pdf_pages.php:538 msgid "Portrait" msgstr "Книжная" -#: db_operations.php:682 libraries/messages.inc.php:599 pdf_pages.php:541 +#: db_operations.php:682 libraries/messages.inc.php:595 pdf_pages.php:541 msgid "Paper size" msgstr "Размер бумаги" -#: db_operations.php:706 libraries/messages.inc.php:281 +#: db_operations.php:706 libraries/messages.inc.php:277 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 libraries/messages.inc.php:1087 +#: libraries/header.inc.php:126 libraries/messages.inc.php:1083 #: pdf_pages.php:405 server_privileges.php:1626 server_privileges.php:1682 #: server_privileges.php:1946 server_synchronize.php:423 #: server_synchronize.php:866 tbl_tracking.php:592 test/theme.php:75 @@ -412,177 +412,177 @@ msgid "Table" msgstr "Таблица " #: db_printview.php:105 libraries/db_structure.lib.php:56 -#: libraries/messages.inc.php:735 +#: libraries/messages.inc.php:731 msgid "Records" msgstr "Записи" #: db_printview.php:109 libraries/db_structure.lib.php:67 -#: libraries/messages.inc.php:1003 tbl_indexes.php:190 +#: libraries/messages.inc.php:999 tbl_indexes.php:190 msgid "Size" msgstr "Размер" #: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 -#: libraries/export/sql.php:899 libraries/messages.inc.php:436 +#: libraries/export/sql.php:899 libraries/messages.inc.php:432 msgid "in use" msgstr "используется" #: db_printview.php:187 libraries/db_info.inc.php:88 -#: libraries/export/sql.php:514 libraries/messages.inc.php:1032 +#: libraries/export/sql.php:514 libraries/messages.inc.php:1028 #: pdf_schema.php:1241 tbl_printview.php:434 tbl_structure.php:810 msgid "Creation" msgstr "Создание" #: db_printview.php:196 libraries/db_info.inc.php:93 -#: libraries/export/sql.php:519 libraries/messages.inc.php:1036 +#: libraries/export/sql.php:519 libraries/messages.inc.php:1032 #: pdf_schema.php:1246 tbl_printview.php:444 tbl_structure.php:818 msgid "Last update" msgstr "Последнее обновление" #: db_printview.php:205 libraries/db_info.inc.php:98 -#: libraries/export/sql.php:524 libraries/messages.inc.php:1031 +#: libraries/export/sql.php:524 libraries/messages.inc.php:1027 #: pdf_schema.php:1251 tbl_printview.php:454 tbl_structure.php:826 msgid "Last check" msgstr "Последняя проверка" -#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1085 +#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1081 #, php-format msgid "%s table(s)" msgstr "Таблиц: %s" #: db_qbe.php:29 libraries/display_tbl.lib.php:1981 -#: libraries/messages.inc.php:1051 libraries/sql_query_form.lib.php:140 +#: libraries/messages.inc.php:1047 libraries/sql_query_form.lib.php:140 #: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131 #: view_operations.php:62 msgid "Your SQL query has been executed successfully" msgstr "SQL-запрос был успешно выполнен" -#: db_qbe.php:42 libraries/messages.inc.php:371 +#: db_qbe.php:42 libraries/messages.inc.php:367 msgid "You have to choose at least one column to display" msgstr "" "Для выполнения запроса, должен быть выбран отображаемый столбец/столбцы." #: db_qbe.php:200 libraries/db_structure.lib.php:104 -#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1014 +#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1010 msgid "Sort" msgstr "Отсортировать" #: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111 #: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828 -#: libraries/messages.inc.php:69 server_databases.php:170 +#: libraries/messages.inc.php:65 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314 msgid "Ascending" msgstr "По возрастанию" #: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119 #: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825 -#: libraries/messages.inc.php:251 server_databases.php:170 +#: libraries/messages.inc.php:247 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315 msgid "Descending" msgstr "По убыванию" #: db_qbe.php:264 db_tracking.php:78 libraries/display_tbl.lib.php:308 -#: libraries/messages.inc.php:888 tbl_change.php:277 tbl_tracking.php:597 +#: libraries/messages.inc.php:884 tbl_change.php:277 tbl_tracking.php:597 msgid "Show" msgstr "Показать" -#: db_qbe.php:300 libraries/messages.inc.php:202 +#: db_qbe.php:300 libraries/messages.inc.php:198 msgid "Criteria" msgstr "Критерий" #: db_qbe.php:353 db_qbe.php:435 db_qbe.php:527 db_qbe.php:558 -#: libraries/messages.inc.php:718 +#: libraries/messages.inc.php:714 msgid "Ins" msgstr "Вставить" #: db_qbe.php:357 db_qbe.php:439 db_qbe.php:524 db_qbe.php:555 -#: libraries/messages.inc.php:56 +#: libraries/messages.inc.php:52 msgid "And" msgstr "И" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:529 db_qbe.php:560 -#: libraries/messages.inc.php:717 +#: libraries/messages.inc.php:713 msgid "Del" msgstr "Удалить" #: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553 -#: libraries/display_import.lib.php:166 libraries/messages.inc.php:592 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:588 #: libraries/tbl_properties.inc.php:779 server_privileges.php:258 #: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288 msgid "Or" msgstr "Или" -#: db_qbe.php:507 libraries/messages.inc.php:516 +#: db_qbe.php:507 libraries/messages.inc.php:512 msgid "Modify" msgstr "Изменить" -#: db_qbe.php:584 libraries/messages.inc.php:33 +#: db_qbe.php:584 libraries/messages.inc.php:29 msgid "Add/Delete Criteria Row" msgstr "Добавить/удалить ряд критерия" -#: db_qbe.php:596 libraries/messages.inc.php:32 +#: db_qbe.php:596 libraries/messages.inc.php:28 msgid "Add/Delete Field Columns" msgstr "Добавить/удалить столбец критерия" -#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1192 +#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1188 msgid "Update Query" msgstr "Дополнить запрос" -#: db_qbe.php:617 libraries/messages.inc.php:1216 +#: db_qbe.php:617 libraries/messages.inc.php:1212 msgid "Use Tables" msgstr "Использовать таблицы" -#: db_qbe.php:640 libraries/messages.inc.php:723 +#: db_qbe.php:640 libraries/messages.inc.php:719 #, php-format msgid "SQL query on database %s:" msgstr "SQL-запрос к базе данных %s:" -#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:823 +#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:819 msgid "Submit Query" msgstr "Выполнить запрос" #: db_search.php:68 libraries/auth/config.auth.lib.php:84 #: libraries/auth/config.auth.lib.php:103 #: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52 -#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:26 +#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:22 msgid "Access denied" msgstr "В доступе отказано" -#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:836 +#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:832 msgid "at least one of the words" msgstr "любое из слов" -#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:837 +#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:833 msgid "all words" msgstr "все слова" -#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:838 +#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:834 msgid "the exact phrase" msgstr "точное соответствие" -#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:839 +#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:835 msgid "as regular expression" msgstr "регулярное выражение" -#: db_search.php:242 libraries/messages.inc.php:840 +#: db_search.php:242 libraries/messages.inc.php:836 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Результаты поиска по "%s" %s:" -#: db_search.php:260 libraries/messages.inc.php:579 +#: db_search.php:260 libraries/messages.inc.php:575 #, php-format msgid "%s match(es) inside table %s" 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/messages.inc.php:108 +#: db_structure.php:105 libraries/messages.inc.php:104 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468 msgid "Browse" msgstr "Обзор" #: db_search.php:272 libraries/display_tbl.lib.php:1165 -#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:243 +#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:239 #: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406 #: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377 #: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216 @@ -590,45 +590,45 @@ msgstr "Обзор" msgid "Delete" msgstr "Удалить" -#: db_search.php:285 libraries/messages.inc.php:580 +#: db_search.php:285 libraries/messages.inc.php:576 #, php-format msgid "Total: %s match(es)" msgstr "Итого: %s вхождения(ий)" -#: db_search.php:299 libraries/messages.inc.php:832 +#: db_search.php:299 libraries/messages.inc.php:828 msgid "Search in database" msgstr "Поиск в базе данных" -#: db_search.php:302 libraries/messages.inc.php:835 +#: db_search.php:302 libraries/messages.inc.php:831 msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgstr "Слово(а) или значение(я) для поиска (групповой символ: "%"):" -#: db_search.php:307 libraries/messages.inc.php:842 +#: db_search.php:307 libraries/messages.inc.php:838 msgid "Find:" msgstr "Искать:" -#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1017 +#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1013 msgid "Words are separated by a space character (\" \")." msgstr "Слова разделяются пробелом (\" \")." -#: db_search.php:325 libraries/messages.inc.php:834 +#: db_search.php:325 libraries/messages.inc.php:830 msgid "Inside table(s):" msgstr "В таблице/таблицах:" -#: db_search.php:355 libraries/messages.inc.php:833 +#: db_search.php:355 libraries/messages.inc.php:829 msgid "Inside field:" 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/messages.inc.php:431 libraries/sql_query_form.lib.php:334 +#: libraries/messages.inc.php:427 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/db_links.inc.php:63 libraries/export/latex.php:337 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:1048 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:1044 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 #: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269 msgid "Structure" @@ -637,8 +637,8 @@ 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:1642 -#: libraries/db_links.inc.php:100 libraries/messages.inc.php:272 +#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/db_links.inc.php:100 libraries/messages.inc.php:268 #: 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 @@ -648,40 +648,40 @@ 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:1641 -#: libraries/messages.inc.php:284 libraries/mult_submits.inc.php:39 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: libraries/messages.inc.php:280 libraries/mult_submits.inc.php:39 #: libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Очистить" -#: db_structure.php:316 libraries/messages.inc.php:1075 +#: db_structure.php:316 libraries/messages.inc.php:1071 #: libraries/tbl_links.inc.php:100 #, php-format msgid "Table %s has been emptied" msgstr "Таблица %s была очищена" -#: db_structure.php:326 libraries/messages.inc.php:1229 +#: db_structure.php:326 libraries/messages.inc.php:1225 #: libraries/tbl_links.inc.php:133 #, php-format msgid "View %s has been dropped" msgstr "Представление %s было удалено" -#: db_structure.php:326 libraries/messages.inc.php:1074 +#: db_structure.php:326 libraries/messages.inc.php:1070 #: libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "Таблица %s была удалена" -#: db_structure.php:333 libraries/messages.inc.php:1128 +#: db_structure.php:333 libraries/messages.inc.php:1124 msgid "Tracking is active." msgstr "Слежение включено." -#: db_structure.php:335 libraries/messages.inc.php:1129 +#: db_structure.php:335 libraries/messages.inc.php:1125 msgid "Tracking is not active." msgstr "Слежение выключено." #: db_structure.php:420 libraries/display_tbl.lib.php:1944 -#: libraries/messages.inc.php:1228 +#: libraries/messages.inc.php:1224 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -691,83 +691,83 @@ msgstr "" "Пожалуйста, обратитесь к %sдокументации%s." #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 -#: libraries/messages.inc.php:1233 libraries/tbl_info.inc.php:66 +#: libraries/messages.inc.php:1229 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/messages.inc.php:773 libraries/server_links.inc.php:70 +#: libraries/messages.inc.php:769 libraries/server_links.inc.php:70 #: server_replication.php:33 server_replication.php:164 server_status.php:258 msgid "Replication" msgstr "Репликация" -#: db_structure.php:489 libraries/messages.inc.php:1053 +#: db_structure.php:489 libraries/messages.inc.php:1049 msgid "Sum" msgstr "Всего" #: db_structure.php:496 libraries/StorageEngine.class.php:356 -#: libraries/messages.inc.php:239 +#: libraries/messages.inc.php:235 #, 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 #: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086 -#: libraries/messages.inc.php:1243 libraries/mult_submits.inc.php:16 +#: libraries/messages.inc.php:1239 libraries/mult_submits.inc.php:16 #: server_databases.php:346 server_databases.php:351 #: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465 msgid "With selected:" msgstr "С отмеченными:" #: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: libraries/messages.inc.php:148 server_databases.php:348 +#: libraries/messages.inc.php:144 server_databases.php:348 #: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459 msgid "Check All" msgstr "Отметить все" #: db_structure.php:531 libraries/display_tbl.lib.php:2077 -#: libraries/messages.inc.php:1184 libraries/replication_gui.lib.php:33 +#: libraries/messages.inc.php:1180 libraries/replication_gui.lib.php:33 #: server_databases.php:350 server_privileges.php:533 #: server_privileges.php:1564 tbl_structure.php:463 msgid "Uncheck All" msgstr "Снять выделение" -#: db_structure.php:536 libraries/messages.inc.php:150 +#: db_structure.php:536 libraries/messages.inc.php:146 msgid "Check tables having overhead" msgstr "Отметить требующие оптимизации" #: db_structure.php:547 db_structure.php:548 db_structure.php:599 -#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:672 +#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:668 #: libraries/mult_submits.inc.php:28 tbl_structure.php:493 #: tbl_structure.php:495 msgid "Print view" msgstr "Версия для печати" -#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:153 +#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:149 #: libraries/mult_submits.inc.php:42 tbl_operations.php:579 msgid "Check table" msgstr "Проверить таблицу" -#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:590 +#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:586 #: libraries/mult_submits.inc.php:47 tbl_operations.php:619 #: tbl_structure.php:710 tbl_structure.php:712 msgid "Optimize table" msgstr "Оптимизировать таблицу" -#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:758 +#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:754 #: libraries/mult_submits.inc.php:52 tbl_operations.php:609 msgid "Repair table" msgstr "Восстановить таблицу" -#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:55 +#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:51 #: libraries/mult_submits.inc.php:57 tbl_operations.php:599 msgid "Analyze table" msgstr "Анализ таблицы" #: db_structure.php:557 db_structure.php:558 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/messages.inc.php:310 +#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:306 #: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84 #: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109 #: server_privileges.php:1341 setup/frames/menu.inc.php:22 @@ -775,7 +775,7 @@ msgstr "Анализ таблицы" msgid "Export" msgstr "Экспорт" -#: db_tracking.php:66 libraries/messages.inc.php:1151 +#: db_tracking.php:66 libraries/messages.inc.php:1147 msgid "Tracked tables" msgstr "Отслеживаемые таблицы" @@ -783,7 +783,7 @@ msgstr "Отслеживаемые таблицы" #: 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/header_printview.inc.php:58 libraries/messages.inc.php:212 +#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:208 #: navigation.php:233 server_databases.php:169 server_privileges.php:1621 #: server_privileges.php:1682 server_privileges.php:1940 #: server_processlist.php:56 server_synchronize.php:1179 @@ -791,76 +791,76 @@ msgstr "Отслеживаемые таблицы" msgid "Database" msgstr "База данных" -#: db_tracking.php:73 libraries/messages.inc.php:1146 +#: db_tracking.php:73 libraries/messages.inc.php:1142 msgid "Last version" msgstr "Последняя версия" -#: db_tracking.php:74 libraries/messages.inc.php:1145 tbl_tracking.php:594 +#: db_tracking.php:74 libraries/messages.inc.php:1141 tbl_tracking.php:594 msgid "Created" msgstr "Создан" -#: db_tracking.php:75 libraries/messages.inc.php:1147 tbl_tracking.php:595 +#: db_tracking.php:75 libraries/messages.inc.php:1143 tbl_tracking.php:595 msgid "Updated" msgstr "Обновлён" #: db_tracking.php:77 libraries/Index.class.php:440 -#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:27 +#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:23 #: server_databases.php:203 server_privileges.php:1503 #: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187 msgid "Action" msgstr "Действие" -#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:247 +#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:243 msgid "Delete tracking data for this table" msgstr "Удалить данные слежения за таблицей" -#: db_tracking.php:106 libraries/messages.inc.php:1142 tbl_tracking.php:548 +#: db_tracking.php:106 libraries/messages.inc.php:1138 tbl_tracking.php:548 #: tbl_tracking.php:606 tbl_tracking.php:613 msgid "active" msgstr "включено" -#: db_tracking.php:108 libraries/messages.inc.php:1143 tbl_tracking.php:550 +#: db_tracking.php:108 libraries/messages.inc.php:1139 tbl_tracking.php:550 #: tbl_tracking.php:608 tbl_tracking.php:610 msgid "not active" msgstr "выключено" -#: db_tracking.php:121 libraries/messages.inc.php:1160 +#: db_tracking.php:121 libraries/messages.inc.php:1156 msgid "Versions" msgstr "Версии" -#: db_tracking.php:122 libraries/messages.inc.php:1132 tbl_tracking.php:379 +#: db_tracking.php:122 libraries/messages.inc.php:1128 tbl_tracking.php:379 #: tbl_tracking.php:624 msgid "Tracking report" msgstr "Отчёт слежения" -#: db_tracking.php:123 libraries/messages.inc.php:1144 tbl_tracking.php:251 +#: db_tracking.php:123 libraries/messages.inc.php:1140 tbl_tracking.php:251 #: tbl_tracking.php:624 msgid "Structure snapshot" msgstr "Обзор структуры" -#: db_tracking.php:152 libraries/messages.inc.php:1154 +#: db_tracking.php:152 libraries/messages.inc.php:1150 msgid "Untracked tables" msgstr "Неотслеживаемые таблицы" -#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1153 +#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1149 #: tbl_structure.php:529 tbl_structure.php:531 msgid "Track table" msgstr "Отслеживать таблицу" -#: db_tracking.php:200 libraries/messages.inc.php:1121 +#: db_tracking.php:200 libraries/messages.inc.php:1117 msgid "Database Log" msgstr "Журнал базы данных" -#: export.php:62 libraries/messages.inc.php:312 +#: export.php:62 libraries/messages.inc.php:308 msgid "Selected export type has to be saved in file!" msgstr "Выбранный тип экспорта возможен только в файл!" -#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:567 +#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:563 #, php-format msgid "Insufficient space to save the file %s." msgstr "Для сохранения файла %s недостаточно дискового пространства." -#: export.php:294 libraries/messages.inc.php:324 +#: export.php:294 libraries/messages.inc.php:320 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -868,17 +868,17 @@ msgstr "" "Файл %s уже существует на сервере, измените имя или включите параметр " "перезаписи." -#: export.php:298 export.php:302 libraries/messages.inc.php:562 +#: export.php:298 export.php:302 libraries/messages.inc.php:558 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Не достаточно прав для сохранения файла %s на веб-сервере." -#: export.php:629 libraries/messages.inc.php:276 +#: export.php:629 libraries/messages.inc.php:272 #, php-format msgid "Dump has been saved to file %s." msgstr "Дамп был сохранен в файл %s." -#: import.php:60 libraries/messages.inc.php:1202 +#: import.php:60 libraries/messages.inc.php:1198 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation%" @@ -888,14 +888,14 @@ msgstr "" "ограничения описаны в %sдокументации%s." #: import.php:279 import.php:332 libraries/File.class.php:849 -#: libraries/File.class.php:961 libraries/messages.inc.php:325 +#: libraries/File.class.php:961 libraries/messages.inc.php:321 msgid "File could not be read" msgstr "Ошибка при чтении файла" #: import.php:287 import.php:296 import.php:315 import.php:324 #: libraries/File.class.php:1031 libraries/File.class.php:1039 #: libraries/File.class.php:1055 libraries/File.class.php:1063 -#: libraries/messages.inc.php:1189 +#: libraries/messages.inc.php:1185 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -905,7 +905,7 @@ msgstr "" "может быть импортирован. Поддержка данного метода еще не реализована, либо " "отключена при конфигурировании." -#: import.php:337 libraries/messages.inc.php:547 +#: import.php:337 libraries/messages.inc.php:543 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -916,31 +916,31 @@ msgstr "" "PHP. См. FAQ 1.16" #: import.php:372 libraries/display_import.lib.php:24 -#: libraries/messages.inc.php:125 +#: libraries/messages.inc.php:121 msgid "Could not load import plugins, please check your installation!" msgstr "" "Модули импорта - отсутствуют! Проверьте содержимое каталога libraries/import " "установленной копии phpMyAdmin." -#: import.php:397 libraries/messages.inc.php:102 +#: import.php:397 libraries/messages.inc.php:98 msgid "The bookmark has been deleted." msgstr "Закладка удалена." -#: import.php:401 libraries/messages.inc.php:879 +#: import.php:401 libraries/messages.inc.php:875 msgid "Showing bookmark" msgstr "Отображение закладки" -#: import.php:403 libraries/messages.inc.php:101 +#: import.php:403 libraries/messages.inc.php:97 #, php-format msgid "Bookmark %s created" msgstr "Закладка "%s" создана" -#: import.php:409 import.php:415 libraries/messages.inc.php:407 +#: import.php:409 import.php:415 libraries/messages.inc.php:403 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Импорт успешно завершен, запросов выполнено: %d." -#: import.php:424 libraries/messages.inc.php:1107 +#: import.php:424 libraries/messages.inc.php:1103 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -949,11 +949,11 @@ msgstr "" "его выбрав тот же файл, и процесс продолжится с того места на котором " "остановился." -#: index.php:190 libraries/messages.inc.php:553 +#: index.php:190 libraries/messages.inc.php:549 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "Для работы phpMyAdmin нужен браузер с поддержкой фреймов." -#: js/messages.php:25 libraries/messages.inc.php:155 +#: js/messages.php:25 libraries/messages.inc.php:151 #: server_synchronize.php:345 server_synchronize.php:357 #: server_synchronize.php:373 server_synchronize.php:380 #: server_synchronize.php:739 server_synchronize.php:767 @@ -961,118 +961,118 @@ msgstr "Для работы phpMyAdmin нужен браузер с поддер msgid "Click to select" msgstr "Выделение" -#: js/messages.php:26 libraries/messages.inc.php:156 +#: js/messages.php:26 libraries/messages.inc.php:152 msgid "Click to unselect" msgstr "Снятие выделения" #: js/messages.php:27 libraries/import.lib.php:103 -#: libraries/messages.inc.php:550 sql.php:89 +#: libraries/messages.inc.php:546 sql.php:89 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Команда \"DROP DATABASE\" (удалить базу данных) - отключена." -#: js/messages.php:30 libraries/messages.inc.php:270 +#: js/messages.php:30 libraries/messages.inc.php:266 #: libraries/mult_submits.inc.php:258 sql.php:188 msgid "Do you really want to " msgstr "Вы действительно хотите выполнить запрос" -#: js/messages.php:31 libraries/messages.inc.php:271 +#: js/messages.php:31 libraries/messages.inc.php:267 #: libraries/mult_submits.inc.php:258 sql.php:172 msgid "You are about to DESTROY a complete database!" msgstr "База данных будет полностью удалена!" -#: js/messages.php:34 libraries/messages.inc.php:94 +#: js/messages.php:34 libraries/messages.inc.php:90 msgid "You are about to DISABLE a BLOB Repository!" msgstr "Вы собираетесь ОТКЛЮЧИТЬ хранилище BLOB данных!" -#: js/messages.php:35 libraries/messages.inc.php:91 +#: js/messages.php:35 libraries/messages.inc.php:87 #, php-format msgid "Are you sure you want to disable all BLOB references for database %s?" msgstr "Вы уверены, что хотите отключить все BLOB ссылки для базы данных %s?" -#: js/messages.php:38 libraries/messages.inc.php:342 +#: js/messages.php:38 libraries/messages.inc.php:338 msgid "Missing value in the form!" msgstr "Не заполнены необходимые поля формы!" -#: js/messages.php:39 libraries/messages.inc.php:570 +#: js/messages.php:39 libraries/messages.inc.php:566 msgid "This is not a number!" msgstr "Введите число!" -#: js/messages.php:42 libraries/messages.inc.php:380 +#: js/messages.php:42 libraries/messages.inc.php:376 msgid "The host name is empty!" msgstr "Пустое имя хоста!" -#: js/messages.php:43 libraries/messages.inc.php:1208 +#: js/messages.php:43 libraries/messages.inc.php:1204 msgid "The user name is empty!" msgstr "Не задано имя пользователя!" -#: js/messages.php:44 libraries/messages.inc.php:607 +#: js/messages.php:44 libraries/messages.inc.php:603 #: server_privileges.php:1197 user_password.php:70 msgid "The password is empty!" msgstr "Пароль не задан!" -#: js/messages.php:45 libraries/messages.inc.php:609 +#: js/messages.php:45 libraries/messages.inc.php:605 #: server_privileges.php:1195 user_password.php:73 msgid "The passwords aren't the same!" msgstr "Некорректное подтверждение пароля!" -#: js/messages.php:49 libraries/messages.inc.php:123 pmd_general.php:342 +#: js/messages.php:49 libraries/messages.inc.php:119 pmd_general.php:342 #: pmd_general.php:379 msgid "Cancel" msgstr "Отмена" -#: js/messages.php:52 libraries/messages.inc.php:514 +#: js/messages.php:52 libraries/messages.inc.php:510 msgid "Modifications have been saved" msgstr "Изменения сохранены" -#: js/messages.php:53 libraries/messages.inc.php:741 +#: js/messages.php:53 libraries/messages.inc.php:737 msgid "Relation deleted" msgstr "Связь удалена" -#: js/messages.php:54 libraries/messages.inc.php:340 +#: js/messages.php:54 libraries/messages.inc.php:336 msgid "FOREIGN KEY relation added" msgstr "Добавлена связь на внешний ключ (FOREIGN KEY)" -#: js/messages.php:55 libraries/messages.inc.php:434 +#: js/messages.php:55 libraries/messages.inc.php:430 msgid "Internal relation added" msgstr "Добавлена внутренняя связь" -#: js/messages.php:56 libraries/messages.inc.php:299 +#: js/messages.php:56 libraries/messages.inc.php:295 msgid "Error: Relation not added." msgstr "Ошибка: Связь не добавлена." -#: js/messages.php:57 libraries/messages.inc.php:300 +#: js/messages.php:57 libraries/messages.inc.php:296 msgid "Error: relation already exists." msgstr "Ошибка: Связь уже существует." -#: js/messages.php:58 libraries/messages.inc.php:302 +#: js/messages.php:58 libraries/messages.inc.php:298 msgid "Error saving coordinates for Designer." msgstr "Ошибка сохранения координат." -#: js/messages.php:59 libraries/messages.inc.php:351 +#: js/messages.php:59 libraries/messages.inc.php:347 #: libraries/relation.lib.php:107 msgid "General relation features" msgstr "Основные возможности связей" -#: js/messages.php:59 libraries/messages.inc.php:260 +#: js/messages.php:59 libraries/messages.inc.php:256 #: libraries/relation.lib.php:101 libraries/relation.lib.php:108 msgid "Disabled" msgstr "Недоступно" -#: js/messages.php:60 libraries/messages.inc.php:850 +#: js/messages.php:60 libraries/messages.inc.php:846 msgid "Select referenced key" msgstr "Выберите ссылочный ключ" -#: js/messages.php:61 libraries/messages.inc.php:848 +#: js/messages.php:61 libraries/messages.inc.php:844 msgid "Select Foreign Key" msgstr "Выберите внешний ключ" -#: js/messages.php:62 libraries/messages.inc.php:653 +#: js/messages.php:62 libraries/messages.inc.php:649 msgid "Please select the primary key or a unique key" msgstr "" "Выберите поле являющееся первичным (PRIMARY), или уникальным (UNIQUE) " "индексом!" -#: js/messages.php:63 libraries/messages.inc.php:142 pmd_general.php:77 +#: js/messages.php:63 libraries/messages.inc.php:138 pmd_general.php:77 #: tbl_relation.php:548 msgid "Choose field to display" msgstr "Выбор отображаемого столбца" @@ -1092,9 +1092,9 @@ msgid "Prev" msgstr "Назад" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2332 -#: libraries/common.lib.php:2335 libraries/display_tbl.lib.php:338 -#: libraries/messages.inc.php:543 server_binlog.php:205 server_binlog.php:207 +#: js/messages.php:77 libraries/common.lib.php:2344 +#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: libraries/messages.inc.php:539 server_binlog.php:205 server_binlog.php:207 #: tbl_printview.php:424 tbl_structure.php:802 msgid "Next" msgstr "Следующий" @@ -1169,27 +1169,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1543 +#: js/messages.php:97 libraries/common.lib.php:1555 msgid "Jan" msgstr "Янв" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1545 +#: js/messages.php:99 libraries/common.lib.php:1557 msgid "Feb" msgstr "Фев" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1547 +#: js/messages.php:101 libraries/common.lib.php:1559 msgid "Mar" msgstr "Мар" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1549 +#: js/messages.php:103 libraries/common.lib.php:1561 msgid "Apr" msgstr "Апр" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1551 +#: js/messages.php:105 libraries/common.lib.php:1563 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1197,37 +1197,37 @@ msgid "May" msgstr "Май" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1553 +#: js/messages.php:107 libraries/common.lib.php:1565 msgid "Jun" msgstr "Июн" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1555 +#: js/messages.php:109 libraries/common.lib.php:1567 msgid "Jul" msgstr "Июл" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1557 +#: js/messages.php:111 libraries/common.lib.php:1569 msgid "Aug" msgstr "Авг" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1559 +#: js/messages.php:113 libraries/common.lib.php:1571 msgid "Sep" msgstr "Сен" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1561 +#: js/messages.php:115 libraries/common.lib.php:1573 msgid "Oct" msgstr "Окт" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1563 +#: js/messages.php:117 libraries/common.lib.php:1575 msgid "Nov" msgstr "Ноя" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1565 +#: js/messages.php:119 libraries/common.lib.php:1577 msgid "Dec" msgstr "Дек" @@ -1268,37 +1268,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1568 +#: js/messages.php:132 libraries/common.lib.php:1580 msgid "Sun" msgstr "Вс" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1570 +#: js/messages.php:134 libraries/common.lib.php:1582 msgid "Mon" msgstr "Пн" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1572 +#: js/messages.php:136 libraries/common.lib.php:1584 msgid "Tue" msgstr "Вт" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1574 +#: js/messages.php:138 libraries/common.lib.php:1586 msgid "Wed" msgstr "Ср" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1576 +#: js/messages.php:140 libraries/common.lib.php:1588 msgid "Thu" msgstr "Чт" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1578 +#: js/messages.php:142 libraries/common.lib.php:1590 msgid "Fri" msgstr "Пт" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1580 +#: js/messages.php:144 libraries/common.lib.php:1592 msgid "Sat" msgstr "Сб" @@ -1374,23 +1374,23 @@ msgstr "используется" msgid "Second" msgstr "в секунду" -#: libraries/Config.class.php:1015 libraries/messages.inc.php:338 +#: libraries/Config.class.php:1015 libraries/messages.inc.php:334 msgid "Font size" msgstr "Размер шрифта" #: libraries/File.class.php:344 libraries/File.class.php:432 #: libraries/File.class.php:569 libraries/File.class.php:708 -#: libraries/messages.inc.php:1201 +#: libraries/messages.inc.php:1197 msgid "Unknown error in file upload." msgstr "При время загрузке файла произошла неизвестная ошибка." -#: libraries/File.class.php:414 libraries/messages.inc.php:1198 +#: libraries/File.class.php:414 libraries/messages.inc.php:1194 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "Размер загружаемого файла превышает значение директивы upload_max_filesize " "установленное в конфигурационном файле PHP (php.ini)." -#: libraries/File.class.php:417 libraries/messages.inc.php:1197 +#: libraries/File.class.php:417 libraries/messages.inc.php:1193 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -1398,56 +1398,56 @@ msgstr "" "Размер загружаемого файла превышает значение директивы MAX_FILE_SIZE, " "определенной в HTML форме." -#: libraries/File.class.php:420 libraries/messages.inc.php:1200 +#: libraries/File.class.php:420 libraries/messages.inc.php:1196 msgid "The uploaded file was only partially uploaded." msgstr "Загруженный файл был загружен только частично." -#: libraries/File.class.php:423 libraries/messages.inc.php:1199 +#: libraries/File.class.php:423 libraries/messages.inc.php:1195 msgid "Missing a temporary folder." msgstr "Не найден каталог для хранения временных файлов." -#: libraries/File.class.php:426 libraries/messages.inc.php:1195 +#: libraries/File.class.php:426 libraries/messages.inc.php:1191 msgid "Failed to write file to disk." msgstr "Ошибка при попытке записи файла на диск." -#: libraries/File.class.php:429 libraries/messages.inc.php:1196 +#: libraries/File.class.php:429 libraries/messages.inc.php:1192 msgid "File upload stopped by extension." msgstr "Загрузка файла остановлена из-за расширения." -#: libraries/File.class.php:908 libraries/messages.inc.php:319 +#: libraries/File.class.php:908 libraries/messages.inc.php:315 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "Ошибка при перемещении загруженного файла, см. FAQ 1.11" -#: libraries/Index.class.php:428 libraries/messages.inc.php:554 +#: libraries/Index.class.php:428 libraries/messages.inc.php:550 #: tbl_relation.php:529 msgid "No index defined!" msgstr "Индекс не определен!" -#: libraries/Index.class.php:433 libraries/messages.inc.php:411 +#: libraries/Index.class.php:433 libraries/messages.inc.php:407 #: server_databases.php:132 tbl_tracking.php:316 msgid "Indexes" msgstr "Индексы" -#: libraries/Index.class.php:444 libraries/messages.inc.php:1186 +#: libraries/Index.class.php:444 libraries/messages.inc.php:1182 #: 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:475 tbl_tracking.php:322 msgid "Unique" msgstr "Уникальный" -#: libraries/Index.class.php:445 libraries/messages.inc.php:596 +#: libraries/Index.class.php:445 libraries/messages.inc.php:592 #: tbl_tracking.php:323 msgid "Packed" msgstr "Упакован" -#: libraries/Index.class.php:447 libraries/messages.inc.php:131 +#: libraries/Index.class.php:447 libraries/messages.inc.php:127 #: tbl_tracking.php:325 msgid "Cardinality" msgstr "Уникальных элементов" -#: libraries/Index.class.php:450 libraries/messages.inc.php:162 +#: libraries/Index.class.php:450 libraries/messages.inc.php:158 #: tbl_tracking.php:279 tbl_tracking.php:328 msgid "Comment" msgstr "Комментарий" @@ -1455,29 +1455,29 @@ msgstr "Комментарий" #: libraries/Index.class.php:466 libraries/common.lib.php:616 #: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:280 pdf_pages.php:280 +#: libraries/messages.inc.php:276 pdf_pages.php:280 #: setup/frames/index.inc.php:124 setup/lib/messages.inc.php:352 #: tbl_row_action.php:69 msgid "Edit" msgstr "Изменить" -#: libraries/Index.class.php:472 libraries/messages.inc.php:666 +#: libraries/Index.class.php:472 libraries/messages.inc.php:662 msgid "The primary key has been dropped" msgstr "Первичный ключ был удален" -#: libraries/Index.class.php:476 libraries/messages.inc.php:413 +#: libraries/Index.class.php:476 libraries/messages.inc.php:409 #, php-format msgid "Index %s has been dropped" msgstr "Индекс %s был удален" -#: libraries/Index.class.php:576 libraries/messages.inc.php:412 +#: libraries/Index.class.php:576 libraries/messages.inc.php:408 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "Индексы %1$s и %2$s равнозначны и один из них может быть удалён." -#: libraries/List_Database.class.php:431 libraries/messages.inc.php:218 +#: libraries/List_Database.class.php:431 libraries/messages.inc.php:214 #: libraries/server_links.inc.php:41 server_databases.php:88 #: server_privileges.php:1621 setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" @@ -1507,86 +1507,86 @@ msgid_plural "%1$d rows inserted." msgstr[0] "Вставлено строк: %1$d." msgstr[1] "Вставлено строк: %1$d." -#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:549 +#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:545 msgid "" "There is no detailed status information available for this storage engine." msgstr "" "Дополнительная информация о состоянии данного типа таблиц - отсутствует." -#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:291 +#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:287 #, php-format msgid "%s is available on this MySQL server." msgstr "Данный MySQL-сервер поддерживает таблицы типа %s." -#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:292 +#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:288 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "Тип таблиц %s был отключен на данном MySQL сервере." -#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:294 +#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:290 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "Данный сервер MySQL не поддерживает тип таблиц %s." -#: libraries/Table.class.php:1019 libraries/messages.inc.php:443 +#: libraries/Table.class.php:1019 libraries/messages.inc.php:439 msgid "Invalid database" msgstr "Некорректная база данных" -#: libraries/Table.class.php:1033 libraries/messages.inc.php:450 +#: libraries/Table.class.php:1033 libraries/messages.inc.php:446 #: tbl_get_field.php:26 msgid "Invalid table name" msgstr "Неправильное имя таблицы" -#: libraries/Table.class.php:1048 libraries/messages.inc.php:301 +#: libraries/Table.class.php:1048 libraries/messages.inc.php:297 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "Ошибка при переименовании таблицы %1$s в %2$s" -#: libraries/Table.class.php:1132 libraries/messages.inc.php:754 +#: libraries/Table.class.php:1132 libraries/messages.inc.php:750 #, php-format msgid "Table %s has been renamed to %s" msgstr "Таблица `%s` была переименована в `%s`." -#: libraries/Theme.class.php:162 libraries/messages.inc.php:1099 +#: libraries/Theme.class.php:162 libraries/messages.inc.php:1095 #, php-format msgid "No valid image path for theme %s found!" msgstr "Не найден правильный путь к изображениям для темы %s!" -#: libraries/Theme.class.php:384 libraries/messages.inc.php:1097 +#: libraries/Theme.class.php:384 libraries/messages.inc.php:1093 msgid "No preview available." msgstr "Предпросмотр не доступен." -#: libraries/Theme.class.php:387 libraries/messages.inc.php:1089 +#: libraries/Theme.class.php:387 libraries/messages.inc.php:1085 msgid "take it" msgstr "Применить" -#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1096 +#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1092 #, php-format msgid "Default theme %s not found!" msgstr "Тема по-умолчанию %s не найдена!" -#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1098 +#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1094 #, php-format msgid "Theme %s not found!" msgstr "Тема %s не найдена!" -#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1100 +#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1096 #, php-format msgid "Theme path not found for theme %s!" msgstr "Путь к файлам темы %s не найден!" -#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1101 +#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1097 #: test/theme.php:161 themes.php:21 themes.php:41 msgid "Theme / Style" msgstr "Тема / Стиль" -#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:172 +#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:168 msgid "Cannot connect: invalid settings." msgstr "Соединение невозможно! Неверные настройки." #: libraries/auth/config.auth.lib.php:92 #: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65 -#: libraries/messages.inc.php:1238 test/theme.php:152 +#: libraries/messages.inc.php:1234 test/theme.php:152 #, php-format msgid "Welcome to %s" msgstr "Добро пожаловать в %s" @@ -1612,51 +1612,51 @@ msgstr "" "php и удостоверьтесь, что они соответствуют данным полученным от " "администратора сервера MySQL." -#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:488 +#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:484 msgid "Log in" msgstr "Авторизация" #: libraries/auth/cookie.auth.lib.php:246 -#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:659 +#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:655 #: libraries/navigation_header.inc.php:93 #: libraries/navigation_header.inc.php:95 msgid "phpMyAdmin documentation" msgstr "Документация phpMyAdmin" #: libraries/auth/cookie.auth.lib.php:258 -#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:492 +#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:488 msgid "You can enter hostname/IP address and port separated by space." msgstr "Вы можете ввести хост/IP адрес и порт разделенные пробелом." -#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:493 +#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:489 msgid "Server:" msgstr "Сервер" -#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:494 +#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:490 msgid "Username:" msgstr "Пользователь:" -#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:491 +#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:487 msgid "Password:" msgstr "Пароль:" -#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:854 +#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:850 msgid "Server Choice" msgstr "Выбор сервера" #: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 -#: libraries/messages.inc.php:177 +#: libraries/messages.inc.php:173 msgid "Cookies must be enabled past this point." msgstr "Для полноценной работы необходима поддержка cookies браузером." #: libraries/auth/cookie.auth.lib.php:671 -#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:489 +#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:485 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "Вход без пароля запрещен при конфигурации (смотрите AllowNoPassword)" #: libraries/auth/cookie.auth.lib.php:675 -#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:544 +#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:540 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" @@ -1664,53 +1664,53 @@ msgstr "" #: libraries/auth/cookie.auth.lib.php:685 #: libraries/auth/cookie.auth.lib.php:687 -#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:126 +#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:122 msgid "Cannot log in to the MySQL server" msgstr "Невозможно подключиться к серверу MySQL" -#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1245 +#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1241 msgid "Wrong username/password. Access denied." msgstr "Данные для входа не верны. В доступе отказано." #: libraries/auth/swekey/swekey.auth.lib.php:118 -#: libraries/messages.inc.php:1057 +#: libraries/messages.inc.php:1053 #, php-format msgid "File %s does not contain any key id" msgstr "Файл %s не содержит ключа идентификации" #: libraries/auth/swekey/swekey.auth.lib.php:157 #: libraries/auth/swekey/swekey.auth.lib.php:180 -#: libraries/messages.inc.php:1056 +#: libraries/messages.inc.php:1052 msgid "Hardware authentication failed" msgstr "Ошибка аппаратной идентификации" #: libraries/auth/swekey/swekey.auth.lib.php:166 -#: libraries/messages.inc.php:1058 +#: libraries/messages.inc.php:1054 msgid "No valid authentication key plugged" msgstr "Отсутствует действенный подключенный ключ идентификации" #: libraries/auth/swekey/swekey.auth.lib.php:202 -#: libraries/messages.inc.php:1055 +#: libraries/messages.inc.php:1051 msgid "Authenticating..." msgstr "Идентификация..." -#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1230 +#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1226 msgid "View image" msgstr "Просмотреть изображение" -#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:652 +#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:648 msgid "Play audio" msgstr "Воспроизвести аудио" -#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1232 +#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1228 msgid "View video" msgstr "Просмотреть видео" -#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:269 +#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:265 msgid "Download file" msgstr "Загрузить файл" -#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:128 +#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:124 msgid "" "Couldn't load the iconv or recode extension needed for charset conversion. " "Either configure PHP to enable these extensions or disable charset " @@ -1722,7 +1722,7 @@ msgstr "" #: libraries/charset_conversion.lib.php:79 #: libraries/charset_conversion.lib.php:90 -#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:130 +#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:126 msgid "" "Couldn't use the iconv, libiconv, or recode_string functions, although the " "necessary extensions appear to be loaded. Check your PHP configuration." @@ -1730,7 +1730,7 @@ msgstr "" "Несмотря на то что необходимые расширения загружены, использование функций " "iconv, libiconv или recode_string - невозможно. Проверьте настройки PHP." -#: libraries/common.inc.php:583 libraries/messages.inc.php:170 +#: libraries/common.inc.php:583 libraries/messages.inc.php:166 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!" @@ -1766,7 +1766,7 @@ msgstr "" msgid "Invalid server index: %s" msgstr "Неправильный номер сервера: "%s"" -#: libraries/common.inc.php:636 libraries/messages.inc.php:448 +#: libraries/common.inc.php:636 libraries/messages.inc.php:444 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" @@ -1774,17 +1774,17 @@ msgstr "" "конфигурационном файле phpMyAdmin." #: libraries/common.inc.php:645 libraries/header.inc.php:96 -#: libraries/messages.inc.php:856 libraries/select_server.lib.php:41 +#: libraries/messages.inc.php:852 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/messages.inc.php:437 +#: libraries/common.inc.php:823 libraries/messages.inc.php:433 msgid "Invalid authentication method set in configuration:" msgstr "" "В конфигурационном файле phpMyAdmin установлен неверный метод аутентификации:" -#: libraries/common.lib.php:147 libraries/messages.inc.php:499 +#: libraries/common.lib.php:147 libraries/messages.inc.php:495 #, php-format msgid "Max: %s%s" msgstr "Максимальный размер: %s%s" @@ -1804,7 +1804,7 @@ msgstr "en" #: libraries/common.lib.php:428 libraries/common.lib.php:430 #: libraries/common.lib.php:432 libraries/common.lib.php:448 #: libraries/common.lib.php:450 libraries/dbg/setup.php:25 -#: libraries/display_export.lib.php:164 libraries/messages.inc.php:267 +#: libraries/display_export.lib.php:164 libraries/messages.inc.php:263 #: libraries/relation.lib.php:97 libraries/sql_query_form.lib.php:451 #: libraries/sql_query_form.lib.php:454 main.php:229 pdf_pages.php:37 #: pdf_pages.php:43 pdf_pages.php:49 pdf_pages.php:54 @@ -1814,55 +1814,55 @@ msgstr "Документация" #: libraries/common.lib.php:581 libraries/core.lib.php:234 #: libraries/core.lib.php:263 libraries/import.lib.php:134 -#: libraries/messages.inc.php:297 pdf_schema.php:32 pdf_schema.php:232 +#: libraries/messages.inc.php:293 pdf_schema.php:32 pdf_schema.php:232 #: tbl_change.php:1027 tbl_operations.php:213 tbl_relation.php:290 #: view_operations.php:62 msgid "Error" msgstr "Ошибка" #: libraries/common.lib.php:595 libraries/header_printview.inc.php:61 -#: libraries/messages.inc.php:1023 server_processlist.php:60 +#: libraries/messages.inc.php:1019 server_processlist.php:60 #: server_status.php:247 msgid "SQL query" msgstr "SQL-запрос" -#: libraries/common.lib.php:634 libraries/messages.inc.php:538 +#: libraries/common.lib.php:634 libraries/messages.inc.php:534 msgid "MySQL said: " msgstr "Ответ MySQL: " -#: libraries/common.lib.php:667 libraries/messages.inc.php:76 +#: libraries/common.lib.php:667 libraries/messages.inc.php:72 #: pdf_schema.php:241 user_password.php:115 msgid "Back" msgstr "Назад" -#: libraries/common.lib.php:1177 libraries/messages.inc.php:309 +#: libraries/common.lib.php:1177 libraries/messages.inc.php:305 #: setup/lib/messages.inc.php:353 msgid "Explain SQL" msgstr "Анализ запроса" -#: libraries/common.lib.php:1180 libraries/messages.inc.php:551 +#: libraries/common.lib.php:1180 libraries/messages.inc.php:547 msgid "Skip Explain SQL" msgstr "Убрать анализ" -#: libraries/common.lib.php:1212 libraries/messages.inc.php:563 +#: libraries/common.lib.php:1212 libraries/messages.inc.php:559 msgid "Without PHP Code" msgstr "Убрать PHP-код" -#: libraries/common.lib.php:1215 libraries/messages.inc.php:649 +#: libraries/common.lib.php:1215 libraries/messages.inc.php:645 #: setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "PHP-код" -#: libraries/common.lib.php:1233 libraries/messages.inc.php:737 +#: libraries/common.lib.php:1233 libraries/messages.inc.php:733 #: server_status.php:341 setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "Обновить" -#: libraries/common.lib.php:1242 libraries/messages.inc.php:575 +#: libraries/common.lib.php:1242 libraries/messages.inc.php:571 msgid "Skip Validate SQL" msgstr "Убрать проверку синтаксиса SQL" -#: libraries/common.lib.php:1245 libraries/messages.inc.php:1220 +#: libraries/common.lib.php:1245 libraries/messages.inc.php:1216 #: setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "Проверка синтаксиса" @@ -1878,11 +1878,11 @@ msgid "Inline" msgstr "Типы таблиц" #: libraries/common.lib.php:1332 libraries/common.lib.php:1347 -#: libraries/messages.inc.php:713 +#: libraries/messages.inc.php:709 msgid "Profiling" msgstr "Профилирование" -#: libraries/common.lib.php:1351 libraries/messages.inc.php:1108 +#: libraries/common.lib.php:1351 libraries/messages.inc.php:1104 #: libraries/tbl_triggers.lib.php:28 server_processlist.php:58 msgid "Time" msgstr "Время" @@ -1916,47 +1916,57 @@ msgstr "ПБ" msgid "EiB" msgstr "ЭБ" +#. l10n: Thousands separator +#: libraries/common.lib.php:1417 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: libraries/common.lib.php:1419 +msgid "." +msgstr "." + #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1584 +#: libraries/common.lib.php:1596 #: libraries/transformations/text_plain__dateformat.inc.php:28 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d %Y г., %H:%M" -#: libraries/common.lib.php:1886 +#: libraries/common.lib.php:1898 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s дней, %s часов, %s минут и %s секунд" -#: libraries/common.lib.php:2301 libraries/common.lib.php:2304 -#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:664 +#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:660 #: server_status.php:608 msgid "Begin" msgstr "Начало" -#: libraries/common.lib.php:2302 libraries/common.lib.php:2305 -#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:665 +#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:661 #: server_binlog.php:168 server_binlog.php:170 msgid "Previous" msgstr "Назад" -#: libraries/common.lib.php:2333 libraries/common.lib.php:2336 -#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:289 +#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:285 msgid "End" msgstr "Конец" -#: libraries/common.lib.php:2409 libraries/messages.inc.php:455 +#: libraries/common.lib.php:2421 libraries/messages.inc.php:451 #, php-format msgid "Jump to database "%s"." msgstr "Перейти к базе данных "%s"" -#: libraries/common.lib.php:2429 libraries/messages.inc.php:461 +#: libraries/common.lib.php:2441 libraries/messages.inc.php:457 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" "Работа параметра "%s" подвержена ошибке, описание смотрите на %s" #: libraries/core.lib.php:286 libraries/dbg/setup.php:22 -#: libraries/messages.inc.php:127 +#: libraries/messages.inc.php:123 #, php-format msgid "" "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " @@ -1966,86 +1976,86 @@ msgstr "" "[/em][/a]! Проверьте настройки PHP." #: libraries/db_events.inc.php:20 libraries/db_events.inc.php:22 -#: libraries/export/sql.php:415 libraries/messages.inc.php:306 +#: libraries/export/sql.php:415 libraries/messages.inc.php:302 msgid "Events" msgstr "События" #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 -#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:541 +#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:537 #: libraries/tbl_triggers.lib.php:27 setup/frames/index.inc.php:112 msgid "Name" msgstr "Имя" -#: libraries/db_links.inc.php:45 libraries/messages.inc.php:216 +#: libraries/db_links.inc.php:45 libraries/messages.inc.php:212 #, php-format msgid "Database %s has been dropped." msgstr "База данных %s была удалена." #: libraries/db_links.inc.php:57 libraries/db_links.inc.php:58 -#: libraries/db_links.inc.php:59 libraries/messages.inc.php:234 +#: libraries/db_links.inc.php:59 libraries/messages.inc.php:230 msgid "Database seems to be empty!" msgstr "База данных - пуста!" -#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1025 +#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1021 #: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60 #: querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1152 +#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1148 #: libraries/tbl_links.inc.php:69 msgid "Tracking" msgstr "Слежение" -#: libraries/db_links.inc.php:86 libraries/messages.inc.php:719 +#: libraries/db_links.inc.php:86 libraries/messages.inc.php:715 msgid "Query" msgstr "Запрос по шаблону" -#: libraries/db_links.inc.php:91 libraries/messages.inc.php:253 +#: libraries/db_links.inc.php:91 libraries/messages.inc.php:249 msgid "Designer" msgstr "Дизайнер" -#: libraries/db_links.inc.php:98 libraries/messages.inc.php:397 +#: libraries/db_links.inc.php:98 libraries/messages.inc.php:393 #: libraries/server_links.inc.php:88 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:104 libraries/messages.inc.php:587 +#: libraries/db_links.inc.php:104 libraries/messages.inc.php:583 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" msgstr "Операции" -#: libraries/db_links.inc.php:111 libraries/messages.inc.php:709 +#: libraries/db_links.inc.php:111 libraries/messages.inc.php:705 #: libraries/server_links.inc.php:66 server_privileges.php:72 #: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117 msgid "Privileges" msgstr "Привилегии" #: libraries/db_routines.inc.php:30 libraries/db_routines.inc.php:32 -#: libraries/messages.inc.php:812 +#: libraries/messages.inc.php:808 msgid "Routines" msgstr "Процедуры" -#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:811 +#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:807 msgid "Return type" msgstr "Возвращаемый тип" #: libraries/db_structure.lib.php:57 libraries/display_tbl.lib.php:1848 -#: libraries/messages.inc.php:65 +#: libraries/messages.inc.php:61 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "Может быть приблизительно. См. FAQ 3.11" -#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:593 +#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:589 #: server_databases.php:142 tbl_printview.php:336 tbl_structure.php:683 msgid "Overhead" msgstr "Фрагментировано" #: libraries/dbi/mysql.dbi.lib.php:112 libraries/dbi/mysqli.dbi.lib.php:124 -#: libraries/messages.inc.php:176 +#: libraries/messages.inc.php:172 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Не удалось установить подключение для пользователя указанного в директиве " @@ -2053,31 +2063,31 @@ msgstr "" "config.inc.php." #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 -#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:855 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:851 msgid "The server is not responding" msgstr "Сервер не отвечает" #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:1010 +#: libraries/messages.inc.php:1006 msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "(либо сокет локального MySQL-сервера некорректно настроен)" -#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:255 +#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:251 #: tbl_structure.php:609 msgid "Details..." msgstr "Детали..." -#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:143 +#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:139 #: main.php:91 user_password.php:111 user_password.php:129 msgid "Change password" msgstr "Изменить пароль" -#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:561 +#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:557 #: libraries/replication_gui.lib.php:341 server_privileges.php:768 msgid "No Password" msgstr "Без пароля" -#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:610 +#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:606 #: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60 #: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335 #: libraries/replication_gui.lib.php:345 server_privileges.php:757 @@ -2086,13 +2096,13 @@ msgstr "Без пароля" msgid "Password" msgstr "Пароль" -#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:806 +#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:802 #: libraries/replication_gui.lib.php:349 libraries/replication_gui.lib.php:352 #: server_privileges.php:776 server_privileges.php:779 msgid "Re-type" msgstr "Подтверждение" -#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:608 +#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:604 msgid "Password Hashing" msgstr "Хеширование пароля" @@ -2102,91 +2112,91 @@ msgstr "Хеширование пароля" msgid "MySQL 4.0 compatible" msgstr "MySQL 4.0 совместимо" -#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:353 +#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:349 #: libraries/replication_gui.lib.php:356 server_privileges.php:783 msgid "Generate Password" msgstr "Создать пароль" -#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:352 +#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:348 #: libraries/replication_gui.lib.php:359 server_privileges.php:786 msgid "Generate" msgstr "Генерировать" #: libraries/display_create_database.lib.php:22 -#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:189 +#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:185 msgid "Create new database" msgstr "Новая база данных" -#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:185 +#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:181 msgid "Create" msgstr "Создать" -#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:564 +#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:560 #: server_privileges.php:74 server_privileges.php:1388 #: server_replication.php:35 msgid "No Privileges" msgstr "Нет привилегий" -#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:445 +#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:441 msgid "Table must have at least one field." msgstr "У таблицы должно быть, как минимум, одно поле." -#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:190 +#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:186 #, php-format msgid "Create table on database %s" msgstr "Создать новую таблицу в базе данных %s" -#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:577 +#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:573 msgid "Number of fields" msgstr "Количество полей" -#: libraries/display_export.lib.php:42 libraries/messages.inc.php:124 +#: libraries/display_export.lib.php:42 libraries/messages.inc.php:120 msgid "Could not load export plugins, please check your installation!" msgstr "" "Модули экспорта, отсутствуют! Проверьте содержимое каталога libraries/export " "установленной копии phpMyAdmin." -#: libraries/display_export.lib.php:107 libraries/messages.inc.php:277 +#: libraries/display_export.lib.php:107 libraries/messages.inc.php:273 #, php-format msgid "Dump %s row(s) starting at record # %s" msgstr "Дамп из %s строк, начиная с записи # %s." -#: libraries/display_export.lib.php:115 libraries/messages.inc.php:274 +#: libraries/display_export.lib.php:115 libraries/messages.inc.php:270 msgid "Dump all rows" msgstr "Выгрузить все строки" -#: libraries/display_export.lib.php:125 libraries/messages.inc.php:852 +#: libraries/display_export.lib.php:125 libraries/messages.inc.php:848 #: setup/lib/messages.inc.php:82 msgid "Save as file" msgstr "Сохранить как файл" -#: libraries/display_export.lib.php:134 libraries/messages.inc.php:828 +#: libraries/display_export.lib.php:134 libraries/messages.inc.php:824 #, php-format msgid "Save on server in %s directory" msgstr "Сохранить на сервере в каталоге %s" -#: libraries/display_export.lib.php:142 libraries/messages.inc.php:594 +#: libraries/display_export.lib.php:142 libraries/messages.inc.php:590 #: setup/lib/messages.inc.php:90 msgid "Overwrite existing file(s)" msgstr "Перезаписать существующий(е) файл(ы)" -#: libraries/display_export.lib.php:148 libraries/messages.inc.php:330 +#: libraries/display_export.lib.php:148 libraries/messages.inc.php:326 msgid "File name template" msgstr "Шаблон имени файла" -#: libraries/display_export.lib.php:152 libraries/messages.inc.php:327 +#: libraries/display_export.lib.php:152 libraries/messages.inc.php:323 msgid "server name" msgstr "имя сервера" -#: libraries/display_export.lib.php:155 libraries/messages.inc.php:326 +#: libraries/display_export.lib.php:155 libraries/messages.inc.php:322 msgid "database name" msgstr "имя базы данных" -#: libraries/display_export.lib.php:158 libraries/messages.inc.php:328 +#: libraries/display_export.lib.php:158 libraries/messages.inc.php:324 msgid "table name" msgstr "имя таблицы" -#: libraries/display_export.lib.php:162 libraries/messages.inc.php:329 +#: libraries/display_export.lib.php:162 libraries/messages.inc.php:325 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2197,24 +2207,24 @@ msgstr "" "вставка текущей даты и времени. Дополнительно могут быть использованы " "следующие подстановки: %3$s. Остальной текст останется без изменений." -#: libraries/display_export.lib.php:202 libraries/messages.inc.php:331 +#: libraries/display_export.lib.php:202 libraries/messages.inc.php:327 msgid "remember template" msgstr "запомнить шаблон" #: libraries/display_export.lib.php:210 libraries/display_import.lib.php:178 -#: libraries/display_import.lib.php:191 libraries/messages.inc.php:145 +#: libraries/display_import.lib.php:191 libraries/messages.inc.php:141 #: libraries/sql_query_form.lib.php:549 msgid "Character set of the file:" msgstr "Кодировка файла:" -#: libraries/display_export.lib.php:235 libraries/messages.inc.php:166 +#: libraries/display_export.lib.php:235 libraries/messages.inc.php:162 #: setup/lib/messages.inc.php:84 msgid "Compression" 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/messages.inc.php:558 +#: libraries/export/sql.php:868 libraries/messages.inc.php:554 #: libraries/tbl_properties.inc.php:575 server_privileges.php:1836 #: server_processlist.php:75 msgid "None" @@ -2238,11 +2248,11 @@ msgstr "gzip" msgid "bzipped" msgstr "bzip" -#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1018 +#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1014 msgid "SQL compatibility mode" msgstr "Режим совместимости SQL" -#: libraries/display_import.lib.php:67 libraries/messages.inc.php:398 +#: libraries/display_import.lib.php:67 libraries/messages.inc.php:394 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " @@ -2252,49 +2262,49 @@ msgstr "" "либо ошибка связана с использованием веб-ориентированных браузеров (Safari, " "Google Chrome, Arora и др.)." -#: libraries/display_import.lib.php:77 libraries/messages.inc.php:406 +#: libraries/display_import.lib.php:77 libraries/messages.inc.php:402 msgid "The file is being processed, please be patient." msgstr "Пожалуйста, подождите, файл находится в обработке." -#: libraries/display_import.lib.php:99 libraries/messages.inc.php:408 +#: libraries/display_import.lib.php:99 libraries/messages.inc.php:404 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." msgstr "Пожалуйста, подождите, файл был загружен. Детали загрузки недоступны." -#: libraries/display_import.lib.php:126 libraries/messages.inc.php:333 +#: libraries/display_import.lib.php:126 libraries/messages.inc.php:329 msgid "File to import" msgstr "Импортируемый файл" -#: libraries/display_import.lib.php:137 libraries/messages.inc.php:486 +#: libraries/display_import.lib.php:137 libraries/messages.inc.php:482 #: libraries/sql_query_form.lib.php:524 msgid "Location of the text file" msgstr "Выбор файла" -#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1203 +#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1199 msgid "File uploads are not allowed on this server." msgstr "Загрузка файлов на сервер, невозможна." -#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1235 +#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1231 #: libraries/sql_query_form.lib.php:533 tbl_change.php:1028 msgid "The directory you set for upload work cannot be reached" msgstr "Установленный каталог загрузки не доступен" -#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1236 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1232 #: libraries/sql_query_form.lib.php:536 tbl_change.php:1031 msgid "web server upload directory" msgstr "Из каталога загрузки" -#: libraries/display_import.lib.php:212 libraries/messages.inc.php:167 +#: libraries/display_import.lib.php:212 libraries/messages.inc.php:163 #, php-format msgid "Imported file compression will be automatically detected from: %s" msgstr "Автоматическое определение типа сжатия, варианты: %s" -#: libraries/display_import.lib.php:219 libraries/messages.inc.php:600 +#: libraries/display_import.lib.php:219 libraries/messages.inc.php:596 msgid "Partial import" msgstr "Частичный импорт" -#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1105 +#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1101 #, php-format msgid "" "Previous import timed out, after resubmitting will continue from position %d." @@ -2302,7 +2312,7 @@ msgstr "" "Процесс импорта был прерван из-за приближения временного лимита, после " "перезапуска импорт будет продолжен с позиции %d." -#: libraries/display_import.lib.php:232 libraries/messages.inc.php:51 +#: libraries/display_import.lib.php:232 libraries/messages.inc.php:47 msgid "" "Allow the interruption of an import in case the script detects it is close " "to the PHP timeout limit. This might be good way to import large files, " @@ -2311,177 +2321,177 @@ msgstr "" "Разрешить скрипту разбивать процесс импорта при приближении временного " "лимита. Может быть использовано при импорте файлов большого размера." -#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1004 +#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1000 #: setup/lib/messages.inc.php:161 msgid "Number of records (queries) to skip from start" msgstr "Количество запросов пропускаемых от начала импорта" -#: libraries/display_import.lib.php:255 libraries/messages.inc.php:396 +#: libraries/display_import.lib.php:255 libraries/messages.inc.php:392 #: setup/lib/messages.inc.php:160 msgid "Format of imported file" msgstr "Формат импортируемого файла" #: libraries/display_select_lang.lib.php:45 -#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:465 +#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:461 #: setup/frames/index.inc.php:70 msgid "Language" msgstr "Язык" -#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:447 +#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:443 #, php-format msgid "%d is not valid row number." msgstr "Число %d не является правильным номером строки." -#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:814 +#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:810 msgid "row(s) starting from record #" msgstr "строк начиная с" -#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:817 +#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:813 msgid "horizontal" msgstr "горизонтальном" -#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:816 +#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:812 msgid "horizontal (rotated headers)" msgstr "горизонтальном (повернутые заголовки)" -#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:819 +#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:815 msgid "vertical" msgstr "вертикальном" -#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:818 +#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:814 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "в %s режиме, заголовки после каждых %s ячеек" -#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:495 +#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:491 msgid "This operation could take a long time. Proceed anyway?" msgstr "Выполнение данной операции может занять длительное время. Продолжить?" -#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1012 +#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1008 msgid "Sort by key" msgstr "Сортировать по индексу" #: libraries/display_tbl.lib.php:555 libraries/import.lib.php:1082 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:591 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:587 #: tbl_select.php:267 tbl_structure.php:754 msgid "Options" msgstr "Параметры" #: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:570 -#: libraries/messages.inc.php:601 +#: libraries/messages.inc.php:597 msgid "Partial Texts" msgstr "Сокращенное отображение данных" #: libraries/display_tbl.lib.php:561 libraries/display_tbl.lib.php:574 -#: libraries/messages.inc.php:346 +#: libraries/messages.inc.php:342 msgid "Full Texts" msgstr "Развернутое отображение данных" -#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:739 +#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:735 msgid "Relational key" msgstr "Ссылочный ключ" -#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:738 +#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:734 msgid "Relational display field" msgstr "Значение связанного поля" -#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:872 +#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:868 msgid "Show binary contents" msgstr "Показать бинарные данные" -#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:873 +#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:869 msgid "Show BLOB contents" msgstr "Показать BLOB содержимое" -#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:871 +#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:867 msgid "Show binary contents as HEX" msgstr "Показывать бинарные данные в виде HEX значений" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:375 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:371 #: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320 msgid "Hide" msgstr "Скрыть" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:508 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:504 #: libraries/tbl_properties.inc.php:144 transformation_overview.php:47 msgid "Browser transformation" msgstr "Преобразование" #: libraries/display_tbl.lib.php:1126 libraries/display_tbl.lib.php:1130 -#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:308 +#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:304 msgid "Execute bookmarked query" msgstr "Выполнить отмеченный запрос" #: libraries/display_tbl.lib.php:1145 libraries/display_tbl.lib.php:1157 -#: libraries/messages.inc.php:244 +#: libraries/messages.inc.php:240 msgid "The row has been deleted" msgstr "Запись была удалена" #: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056 -#: libraries/messages.inc.php:460 server_processlist.php:71 +#: libraries/messages.inc.php:456 server_processlist.php:71 #: tbl_row_action.php:64 msgid "Kill" msgstr "Завершить" -#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:849 +#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:845 msgid "in query" msgstr "по запросу" -#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:881 +#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:877 msgid "Showing rows" msgstr "Отображает строки" -#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1113 +#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1109 msgid "total" msgstr "всего" -#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:727 +#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:723 #: sql.php:524 #, php-format msgid "Query took %01.4f sec" msgstr "запрос занял %01.4f сек." -#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:135 +#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:131 #: 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:471 msgid "Change" msgstr "Изменить" -#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:724 +#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:720 msgid "Query results operations" msgstr "Использование результатов запроса" -#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:671 +#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:667 msgid "Print view (with full texts)" msgstr "Версия для печати (полностью)" -#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:482 +#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:478 msgid "Link not found" msgstr "Связь не найдена" -#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1224 +#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1220 #: main.php:228 msgid "Version information" msgstr "Информация о версии" -#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:423 +#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:419 msgid "Data home directory" msgstr "Домашний каталог для данных" -#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:424 +#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:420 msgid "The common part of the directory path for all InnoDB data files." msgstr "Общая часть пути к каталогу для всех файлов данных InnoDB" -#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:422 +#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:418 msgid "Data files" msgstr "Файлы данных" -#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:418 +#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:414 msgid "Autoextend increment" msgstr "Автоматическое увеличение" -#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:419 +#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:415 msgid "" " The increment size for extending the size of an autoextending tablespace " "when it becomes full." @@ -2489,11 +2499,11 @@ msgstr "" "Размер (в мегабайтах) автоматического увеличения файла данных при " "переполнении табличной области" -#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:420 +#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:416 msgid "Buffer pool size" msgstr "Размер буферного пула" -#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:421 +#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:417 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." @@ -2501,87 +2511,87 @@ msgstr "" "Размер буфера памяти, который InnoDB использует для кеширования данных и " "индексов своих таблиц" -#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:112 +#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:108 msgid "Buffer Pool" msgstr "Буферный пул" -#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:426 +#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:422 #: server_status.php:306 msgid "InnoDB Status" msgstr "Состояние InnoDB" -#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:113 +#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:109 msgid "Buffer Pool Usage" msgstr "Использование" -#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1114 +#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1110 #: server_databases.php:137 server_databases.php:305 server_status.php:414 #: server_status.php:475 server_status.php:496 tbl_printview.php:351 #: tbl_structure.php:697 msgid "Total" msgstr "Всего" -#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:425 +#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:421 msgid "pages" msgstr "страниц" -#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:343 +#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:339 msgid "Free pages" msgstr "Чистых страниц" -#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:259 +#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:255 msgid "Dirty pages" msgstr "Грязных страниц" -#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:230 +#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:226 msgid "Pages containing data" msgstr "Страниц с данными" -#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:598 +#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:594 msgid "Pages to be flushed" msgstr "Страниц к очистке" -#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:119 +#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:115 msgid "Busy pages" msgstr "Занятых страниц" -#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:467 +#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:463 msgid "Latched pages" msgstr "Блокированных страниц" -#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:111 +#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:107 msgid "Buffer Pool Activity" msgstr "Активность" -#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:731 +#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:727 msgid "Read requests" msgstr "Запросы на чтение" -#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1244 +#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1240 msgid "Write requests" msgstr "Запросы на запись" -#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:115 +#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:111 msgid "Read misses" msgstr "Пропуски при чтении" -#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:117 +#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:113 msgid "Write waits" msgstr "Ожидание очистки" -#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:114 +#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:110 msgid "Read misses in %" msgstr "Пропуски при чтении, в %" -#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:116 +#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:112 msgid "Write waits in %" msgstr "Ожидание очистки, в %" -#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:522 +#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:518 msgid "Data pointer size" msgstr "Размер указателя в файле данных" -#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:523 +#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:519 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." @@ -2590,11 +2600,11 @@ msgstr "" "TABLE) типа MyISAM, с неустановленным параметром максимального числа строк " "(MAX_ROWS)." -#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:528 +#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:524 msgid "Automatic recovery mode" msgstr "Режим автоматического восстановления" -#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:529 +#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:525 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." @@ -2602,11 +2612,11 @@ msgstr "" "Режим автоматического восстановления таблиц после сбоя. Устанавливается " "параметром --myisam-recover, при запуске сервера." -#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:527 +#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:523 msgid "Maximum size for temporary sort files" msgstr "Максимальный размер временных индексных файлов" -#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:526 +#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:522 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " @@ -2618,11 +2628,11 @@ msgstr "" "индекс будет создаваться при помощи кеша индексов (такой алгоритм работает " "несколько медленнее, но более надежно)." -#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:525 +#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:521 msgid "Maximum size for temporary files on index creation" msgstr "Максимальный размер временного файла при создании индекса" -#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:524 +#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:520 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " @@ -2633,11 +2643,11 @@ msgstr "" "индекса, то предпочтение отдается менее быстрому, но более надежному методу " "кеширования индекса." -#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:531 +#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:527 msgid "Repair threads" msgstr "Потоков восстановления" -#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:530 +#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:526 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." @@ -2646,11 +2656,11 @@ msgstr "" "(каждый индекс в своем потоке) во время процесса восстановления с помощью " "сортировки (Repair by sorting)." -#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:533 +#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:529 msgid "Sort buffer size" msgstr "Размер буфера сортировки" -#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:532 +#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:528 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." @@ -2659,11 +2669,11 @@ msgstr "" "REPAIR TABLE или для создания индексов при помощи команд CREATE INDEX или " "ALTER TABLE." -#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:620 +#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:616 msgid "Index cache size" msgstr "Размер кеша индекса" -#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:619 +#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:615 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." @@ -2672,11 +2682,11 @@ msgstr "" "Выделенная здесь память используется только для кеширования индексных " "страниц." -#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:630 +#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:626 msgid "Record cache size" msgstr "Размер кеша записи" -#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:629 +#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:625 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " @@ -2686,11 +2696,11 @@ msgstr "" "32MB. Данная память используется для кеширования изменений в файлах хранения " "данных (.xtd) и указателей строк (.xtr)." -#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:624 +#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:620 msgid "Log cache size" msgstr "Размер кеша журнала" -#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:623 +#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:619 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." @@ -2698,11 +2708,11 @@ msgstr "" "Объём памяти выделенной для кеширования данных журнала транзакций. " "Изначальное значение 16MB." -#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:628 +#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:624 msgid "Log file threshold" msgstr "Порог файла журнала" -#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:627 +#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:623 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." @@ -2710,11 +2720,11 @@ msgstr "" "Размер журнала транзакций до отката, и создания нового журнала. Изначальное " "значение 16MB." -#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:634 +#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:630 msgid "Transaction buffer size" msgstr "Размер буфера транзакций" -#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:633 +#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:629 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." @@ -2722,11 +2732,11 @@ msgstr "" "Размер глобального буфера журнала транзакций (движок выделяет 2 буфера " "данного размера). Изначальное значение 1MB." -#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:611 +#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:607 msgid "Checkpoint frequency" msgstr "Частота проверки" -#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:612 +#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:608 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." @@ -2734,11 +2744,11 @@ msgstr "" "Объем записанных данных в журнал транзакций, до произведения проверки. " "Изначальное значение 24MB." -#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:615 +#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:611 msgid "Data log threshold" msgstr "Порог журнала данных" -#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:616 +#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:612 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -2750,11 +2760,11 @@ msgstr "" "таблицами. Таким образом, значение данной переменной может быть увеличено " "для увеличения общего объема данных, которые могут храниться в базе данных." -#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:618 +#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:614 msgid "Garbage threshold" msgstr "Порог захламления" -#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:617 +#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:613 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." @@ -2762,11 +2772,11 @@ msgstr "" "Процентное соотношение захламления в файле журнала данных до его компоновки. " "Значение между 1 и 99. Изначальное значение 50." -#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:622 +#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:618 msgid "Log buffer size" msgstr "Размер буфера журнала" -#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:621 +#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:617 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " @@ -2776,27 +2786,27 @@ msgstr "" "Движок выделяет один буфер на поток, но только если поток требуется для " "записи данных журнала." -#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:613 +#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:609 msgid "Data file grow size" msgstr "Размер возрастания файла данных" -#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:614 +#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:610 msgid "The grow size of the handle data (.xtd) files." msgstr "Размер возрастания файлов хранения данных (.xtd)." -#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:632 +#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:628 msgid "Row file grow size" msgstr "Размер возрастания файла строк" -#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:631 +#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:627 msgid "The grow size of the row pointer (.xtr) files." msgstr "Размер возрастания файлов указателей строк (.xtr)." -#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:626 +#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:622 msgid "Log file count" msgstr "Количество файлов журнала" -#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:625 +#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:621 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -2810,19 +2820,19 @@ msgstr "" #: libraries/export/htmlword.php:132 libraries/export/odt.php:168 #: libraries/export/sql.php:881 libraries/export/texytext.php:130 -#: libraries/messages.inc.php:275 +#: libraries/messages.inc.php:271 msgid "Dumping data for table" msgstr "Дамп данных таблицы" #: libraries/export/htmlword.php:185 libraries/export/odt.php:238 #: libraries/export/sql.php:785 libraries/export/texytext.php:177 -#: libraries/messages.inc.php:1086 +#: libraries/messages.inc.php:1082 msgid "Table structure for table" msgstr "Структура таблицы" #: libraries/export/latex.php:125 libraries/export/sql.php:232 #: libraries/export/xml.php:102 libraries/header_printview.inc.php:57 -#: libraries/messages.inc.php:381 libraries/replication_gui.lib.php:63 +#: libraries/messages.inc.php:377 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:170 libraries/replication_gui.lib.php:265 #: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325 #: server_privileges.php:692 server_privileges.php:695 @@ -2834,184 +2844,184 @@ msgstr "Хост" #: libraries/export/latex.php:130 libraries/export/sql.php:233 #: libraries/export/xml.php:107 libraries/header_printview.inc.php:59 -#: libraries/messages.inc.php:354 +#: libraries/messages.inc.php:350 msgid "Generation Time" msgstr "Время создания" #: libraries/export/latex.php:131 libraries/export/sql.php:235 -#: libraries/export/xml.php:108 libraries/messages.inc.php:864 main.php:186 +#: libraries/export/xml.php:108 libraries/messages.inc.php:860 main.php:186 msgid "Server version" msgstr "Версия сервера" #: libraries/export/latex.php:132 libraries/export/sql.php:236 -#: libraries/export/xml.php:109 libraries/messages.inc.php:651 +#: libraries/export/xml.php:109 libraries/messages.inc.php:647 msgid "PHP Version" msgstr "Версия PHP" #: libraries/export/latex.php:201 libraries/export/sql.php:868 -#: libraries/messages.inc.php:226 server_databases.php:127 +#: libraries/messages.inc.php:222 server_databases.php:127 #: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317 #: tbl_structure.php:666 msgid "Data" msgstr "Данные" -#: libraries/export/odt.php:318 libraries/messages.inc.php:506 +#: libraries/export/odt.php:318 libraries/messages.inc.php:502 #: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "MIME-тип" -#: libraries/export/sql.php:387 libraries/messages.inc.php:711 +#: libraries/export/sql.php:387 libraries/messages.inc.php:707 msgid "Procedures" msgstr "Процедуры" -#: libraries/export/sql.php:401 libraries/messages.inc.php:348 +#: libraries/export/sql.php:401 libraries/messages.inc.php:344 msgid "Functions" msgstr "Функции" -#: libraries/export/sql.php:618 libraries/messages.inc.php:174 +#: libraries/export/sql.php:618 libraries/messages.inc.php:170 msgid "Constraints for dumped tables" msgstr "Ограничения внешнего ключа сохраненных таблиц" -#: libraries/export/sql.php:627 libraries/messages.inc.php:175 +#: libraries/export/sql.php:627 libraries/messages.inc.php:171 msgid "Constraints for table" msgstr "Ограничения внешнего ключа таблицы" -#: libraries/export/sql.php:727 libraries/messages.inc.php:512 +#: libraries/export/sql.php:727 libraries/messages.inc.php:508 msgid "MIME TYPES FOR TABLE" msgstr "MIME-ТИПЫ ТАБЛИЦЫ" -#: libraries/export/sql.php:739 libraries/messages.inc.php:743 +#: libraries/export/sql.php:739 libraries/messages.inc.php:739 msgid "RELATIONS FOR TABLE" msgstr "Связи таблицы" -#: libraries/export/sql.php:796 libraries/messages.inc.php:1178 +#: libraries/export/sql.php:796 libraries/messages.inc.php:1174 #: libraries/tbl_triggers.lib.php:19 msgid "Triggers" msgstr "Триггеры" -#: libraries/export/sql.php:808 libraries/messages.inc.php:1046 +#: libraries/export/sql.php:808 libraries/messages.inc.php:1042 msgid "Structure for view" msgstr "Структура для представления" -#: libraries/export/sql.php:817 libraries/messages.inc.php:1029 +#: libraries/export/sql.php:817 libraries/messages.inc.php:1025 msgid "Stand-in structure for view" msgstr "Дублирующая структура для представления" #: libraries/footer.inc.php:184 libraries/footer.inc.php:195 -#: libraries/footer.inc.php:198 libraries/messages.inc.php:586 +#: libraries/footer.inc.php:198 libraries/messages.inc.php:582 msgid "Open new phpMyAdmin window" msgstr "Открыть phpMyAdmin в новом окне" -#: libraries/header.inc.php:115 libraries/messages.inc.php:542 +#: libraries/header.inc.php:115 libraries/messages.inc.php:538 #, fuzzy msgid "New table" msgstr "Нет таблиц" #: libraries/header_printview.inc.php:50 libraries/header_printview.inc.php:55 -#: libraries/messages.inc.php:1024 +#: libraries/messages.inc.php:1020 msgid "SQL result" msgstr "Результат SQL-запроса" -#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:350 +#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:346 msgid "Generated by" msgstr "Создан" #: libraries/header_printview.inc.php:63 libraries/import.lib.php:145 -#: libraries/messages.inc.php:820 navigation.php:652 navigation.php:674 +#: libraries/messages.inc.php:816 navigation.php:652 navigation.php:674 #: server_databases.php:122 tbl_printview.php:394 tbl_structure.php:366 #: tbl_structure.php:778 msgid "Rows" msgstr "Строки" -#: libraries/import.lib.php:150 libraries/messages.inc.php:285 sql.php:520 +#: libraries/import.lib.php:150 libraries/messages.inc.php:281 sql.php:520 #: tbl_change.php:181 tbl_get_field.php:35 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL вернула пустой результат (т.е. ноль строк)." -#: libraries/import.lib.php:1078 libraries/messages.inc.php:399 +#: libraries/import.lib.php:1078 libraries/messages.inc.php:395 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "Следующие структуры были созданы, либо изменены. Вы можете:" -#: libraries/import.lib.php:1079 libraries/messages.inc.php:400 +#: libraries/import.lib.php:1079 libraries/messages.inc.php:396 msgid "View a structure`s contents by clicking on its name" msgstr "Просмотреть детали структуры нажав на её имя" -#: libraries/import.lib.php:1080 libraries/messages.inc.php:401 +#: libraries/import.lib.php:1080 libraries/messages.inc.php:397 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "Изменить любой параметр нажав на соответствующую ссылку Параметр" -#: libraries/import.lib.php:1081 libraries/messages.inc.php:402 +#: libraries/import.lib.php:1081 libraries/messages.inc.php:398 msgid "Edit its structure by following the \"Structure\" link" msgstr "Отредактировать структуру перейдя по ссылке Структура" -#: libraries/import.lib.php:1084 libraries/messages.inc.php:362 +#: libraries/import.lib.php:1084 libraries/messages.inc.php:358 msgid "Go to database" msgstr "Перейти к базе данных" #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:869 +#: libraries/messages.inc.php:865 msgid "settings" msgstr "настройки" -#: libraries/import.lib.php:1106 libraries/messages.inc.php:363 +#: libraries/import.lib.php:1106 libraries/messages.inc.php:359 msgid "Go to table" msgstr "Перейти к таблице" -#: libraries/import.lib.php:1109 libraries/messages.inc.php:1047 +#: libraries/import.lib.php:1109 libraries/messages.inc.php:1043 msgid "structure" msgstr "структура" -#: libraries/import.lib.php:1115 libraries/messages.inc.php:364 +#: libraries/import.lib.php:1115 libraries/messages.inc.php:360 msgid "Go to view" msgstr "Перейти к отображению (VIEW)" #: libraries/import/csv.php:58 libraries/import/csv.php:70 #: libraries/import/csv.php:74 libraries/import/csv.php:78 -#: libraries/messages.inc.php:442 +#: libraries/messages.inc.php:438 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "Неправильный параметр импорта CSV: %s" -#: libraries/import/csv.php:59 libraries/messages.inc.php:323 +#: libraries/import/csv.php:59 libraries/messages.inc.php:319 msgid "Fields terminated by" msgstr "Разделитель полей" -#: libraries/import/csv.php:71 libraries/messages.inc.php:320 +#: libraries/import/csv.php:71 libraries/messages.inc.php:316 msgid "Fields enclosed by" msgstr "Значения полей обрамлены" -#: libraries/import/csv.php:75 libraries/messages.inc.php:321 +#: libraries/import/csv.php:75 libraries/messages.inc.php:317 msgid "Fields escaped by" msgstr "Символ экранирования" -#: libraries/import/csv.php:79 libraries/messages.inc.php:481 +#: libraries/import/csv.php:79 libraries/messages.inc.php:477 msgid "Lines terminated by" msgstr "Разделитель строк" -#: libraries/import/csv.php:119 libraries/messages.inc.php:439 +#: libraries/import/csv.php:119 libraries/messages.inc.php:435 #, php-format msgid "Invalid column (%s) specified!" msgstr "Выбран неверный столбец (%s)!" #: libraries/import/csv.php:177 libraries/import/csv.php:424 -#: libraries/messages.inc.php:441 +#: libraries/messages.inc.php:437 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "Неправильный формат входных CSV-данных в строке %d." -#: libraries/import/csv.php:312 libraries/messages.inc.php:440 +#: libraries/import/csv.php:312 libraries/messages.inc.php:436 #, php-format msgid "Invalid field count in CSV input on line %d." msgstr "Неправильное количество полей во входных CSV-данных в строке %d." -#: libraries/import/ldi.php:55 libraries/messages.inc.php:446 +#: libraries/import/ldi.php:55 libraries/messages.inc.php:442 msgid "This plugin does not support compressed imports!" msgstr "Этот модуль не поддерживает импорт сжатых данных!" #: libraries/import/xml.php:74 libraries/import/xml.php:130 -#: libraries/messages.inc.php:1247 +#: libraries/messages.inc.php:1243 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -3044,401 +3054,391 @@ msgstr "" msgid "ltr" msgstr "ltr" -#. l10n: Thousands separator -#: libraries/messages.inc.php:21 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: libraries/messages.inc.php:23 -msgid "." -msgstr "." - -#: libraries/messages.inc.php:25 server_status.php:461 +#: libraries/messages.inc.php:21 server_status.php:461 msgid "Aborted" msgstr "Прерваны" -#: libraries/messages.inc.php:28 main.php:68 +#: libraries/messages.inc.php:24 main.php:68 msgid "Actions" msgstr "Действия" -#: libraries/messages.inc.php:34 libraries/tbl_properties.inc.php:780 +#: libraries/messages.inc.php:30 libraries/tbl_properties.inc.php:780 #: tbl_structure.php:543 #, php-format msgid "Add %s field(s)" msgstr "Добавить %s поле(я)" -#: libraries/messages.inc.php:35 +#: libraries/messages.inc.php:31 msgid "Add custom comment into header (\\n splits lines)" msgstr "Добавить собственный комментарий в заголовок (перевод строки: \\n)" -#: libraries/messages.inc.php:36 +#: libraries/messages.inc.php:32 msgid "Add into comments" msgstr "Добавить в комментарии" -#: libraries/messages.inc.php:37 tbl_structure.php:541 +#: libraries/messages.inc.php:33 tbl_structure.php:541 msgid "Add new field" msgstr "Добавить новое поле" -#: libraries/messages.inc.php:38 server_privileges.php:1886 +#: libraries/messages.inc.php:34 server_privileges.php:1886 msgid "Add privileges on the following database" msgstr "Добавить привилегии на следующую базу" -#: libraries/messages.inc.php:39 server_privileges.php:1907 +#: libraries/messages.inc.php:35 server_privileges.php:1907 msgid "Add privileges on the following table" msgstr " Добавить привилегии на следующую таблицу" -#: libraries/messages.inc.php:40 tbl_select.php:288 +#: libraries/messages.inc.php:36 tbl_select.php:288 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Добавить условия поиска (тело для условия \"WHERE\"):" -#: libraries/messages.inc.php:41 tbl_indexes.php:251 +#: libraries/messages.inc.php:37 tbl_indexes.php:251 #, php-format msgid "Add to index  %s column(s)" msgstr "Добавить к индексу %s столбец(ы)" -#: libraries/messages.inc.php:42 server_privileges.php:1570 +#: libraries/messages.inc.php:38 server_privileges.php:1570 #: server_privileges.php:1594 server_privileges.php:1988 #: server_privileges.php:2177 msgid "Add a new User" msgstr "Добавить нового пользователя" -#: libraries/messages.inc.php:43 server_privileges.php:931 +#: libraries/messages.inc.php:39 server_privileges.php:931 msgid "You have added a new user." msgstr "Был добавлен новый пользователь." -#: libraries/messages.inc.php:44 server_privileges.php:571 +#: libraries/messages.inc.php:40 server_privileges.php:571 msgid "Administration" msgstr "Администрирование" -#: libraries/messages.inc.php:45 tbl_structure.php:557 +#: libraries/messages.inc.php:41 tbl_structure.php:557 #, php-format msgid "After %s" msgstr "После %s" -#: libraries/messages.inc.php:46 tbl_change.php:1147 +#: libraries/messages.inc.php:42 tbl_change.php:1147 msgid "Go back to previous page" msgstr "Вернуться на предыдущую страницу" -#: libraries/messages.inc.php:47 tbl_change.php:1148 +#: libraries/messages.inc.php:43 tbl_change.php:1148 msgid "Insert another new row" msgstr "Добавить новую запись" -#: libraries/messages.inc.php:48 tbl_change.php:1160 +#: libraries/messages.inc.php:44 tbl_change.php:1160 msgid "Edit next row" msgstr "Редактировать следующую строку" -#: libraries/messages.inc.php:49 tbl_change.php:1152 +#: libraries/messages.inc.php:45 tbl_change.php:1152 msgid "Go back to this page" msgstr "Вернуться к данной странице" -#: libraries/messages.inc.php:50 querywindow.php:115 +#: libraries/messages.inc.php:46 querywindow.php:115 msgid "All" msgstr "Все" -#: libraries/messages.inc.php:53 tbl_operations.php:249 +#: libraries/messages.inc.php:49 tbl_operations.php:249 msgid "Alter table order by" msgstr "Изменить сортировку таблицы" -#: libraries/messages.inc.php:54 tbl_operations.php:660 +#: libraries/messages.inc.php:50 tbl_operations.php:660 msgid "Analyze" msgstr "Анализ" -#: libraries/messages.inc.php:57 +#: libraries/messages.inc.php:53 msgid "and" msgstr "и" -#: libraries/messages.inc.php:59 pmd_general.php:87 +#: libraries/messages.inc.php:55 pmd_general.php:87 msgid "Angular links" msgstr "Угловые линии связей" -#: libraries/messages.inc.php:60 tbl_structure.php:401 tbl_structure.php:415 +#: libraries/messages.inc.php:56 tbl_structure.php:401 tbl_structure.php:415 #: tbl_structure.php:429 #, php-format msgid "An index has been added on %s" msgstr "Был добавлен индекс для %s" -#: libraries/messages.inc.php:61 server_privileges.php:1521 +#: libraries/messages.inc.php:57 server_privileges.php:1521 #: server_privileges.php:2123 msgid "Any" msgstr "Любой" -#: libraries/messages.inc.php:62 libraries/replication_gui.lib.php:298 +#: libraries/messages.inc.php:58 libraries/replication_gui.lib.php:298 #: server_privileges.php:725 msgid "Any host" msgstr "Любой хост" -#: libraries/messages.inc.php:63 libraries/replication_gui.lib.php:250 +#: libraries/messages.inc.php:59 libraries/replication_gui.lib.php:250 #: server_privileges.php:677 msgid "Any user" msgstr "Любой пользователь" -#: libraries/messages.inc.php:64 server_synchronize.php:449 +#: libraries/messages.inc.php:60 server_synchronize.php:449 #: server_synchronize.php:894 msgid "Apply Selected Changes" msgstr "Применить выбранные изменения" -#: libraries/messages.inc.php:66 tbl_structure.php:386 +#: libraries/messages.inc.php:62 tbl_structure.php:386 #, php-format msgid "A primary key has been added on %s" msgstr "Был добавлен первичный ключ к %s" -#: libraries/messages.inc.php:67 libraries/mysql_charsets.lib.php:368 +#: libraries/messages.inc.php:63 libraries/mysql_charsets.lib.php:368 msgid "Arabic" msgstr "Арабский" -#: libraries/messages.inc.php:68 libraries/mysql_charsets.lib.php:359 +#: libraries/messages.inc.php:64 libraries/mysql_charsets.lib.php:359 msgid "Armenian" msgstr "Армянский" -#: libraries/messages.inc.php:70 libraries/tbl_properties.inc.php:394 +#: libraries/messages.inc.php:66 libraries/tbl_properties.inc.php:394 msgid "As defined:" msgstr "Как определено:" -#: libraries/messages.inc.php:71 tbl_structure.php:556 +#: libraries/messages.inc.php:67 tbl_structure.php:556 msgid "At Beginning of Table" msgstr "В начало таблицы" -#: libraries/messages.inc.php:72 tbl_structure.php:555 +#: libraries/messages.inc.php:68 tbl_structure.php:555 msgid "At End of Table" msgstr "В конец таблицы" -#: libraries/messages.inc.php:73 libraries/tbl_properties.inc.php:108 +#: libraries/messages.inc.php:69 libraries/tbl_properties.inc.php:108 #: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:144 #: tbl_structure.php:180 msgid "Attributes" msgstr "Атрибуты" -#: libraries/messages.inc.php:74 pdf_pages.php:303 pdf_pages.php:306 +#: libraries/messages.inc.php:70 pdf_pages.php:303 pdf_pages.php:306 msgid "Automatic layout" msgstr "Автоматическая раскладка" -#: libraries/messages.inc.php:77 libraries/mysql_charsets.lib.php:354 +#: libraries/messages.inc.php:73 libraries/mysql_charsets.lib.php:354 msgid "Baltic" msgstr "Балтийский" -#: libraries/messages.inc.php:78 libraries/sqlparser.lib.php:175 +#: libraries/messages.inc.php:74 libraries/sqlparser.lib.php:175 msgid "BEGIN CUT" msgstr "BEGIN CUT" -#: libraries/messages.inc.php:79 libraries/sqlparser.lib.php:179 +#: libraries/messages.inc.php:75 libraries/sqlparser.lib.php:179 msgid "BEGIN RAW" msgstr "BEGIN RAW" -#: libraries/messages.inc.php:80 libraries/mysql_charsets.lib.php:201 +#: libraries/messages.inc.php:76 libraries/mysql_charsets.lib.php:201 #: libraries/mysql_charsets.lib.php:402 tbl_change.php:518 msgid "Binary" msgstr "Двоичный" -#: libraries/messages.inc.php:81 tbl_change.php:894 +#: libraries/messages.inc.php:77 tbl_change.php:894 msgid "Binary - do not edit" msgstr "Двоичные данные - не редактируются" -#: libraries/messages.inc.php:82 libraries/server_links.inc.php:76 +#: libraries/messages.inc.php:78 libraries/server_links.inc.php:76 #: server_binlog.php:110 server_status.php:253 test/theme.php:121 msgid "Binary log" msgstr "Бинарный журнал" -#: libraries/messages.inc.php:83 server_binlog.php:217 +#: libraries/messages.inc.php:79 server_binlog.php:217 msgid "Event type" msgstr "Тип события" -#: libraries/messages.inc.php:84 server_binlog.php:220 +#: libraries/messages.inc.php:80 server_binlog.php:220 msgid "Information" msgstr "Информация" -#: libraries/messages.inc.php:85 server_binlog.php:215 +#: libraries/messages.inc.php:81 server_binlog.php:215 msgid "Log name" msgstr "Файл журнала" -#: libraries/messages.inc.php:86 server_binlog.php:219 +#: libraries/messages.inc.php:82 server_binlog.php:219 msgid "Original position" msgstr "Исходная позиция" -#: libraries/messages.inc.php:87 server_binlog.php:216 +#: libraries/messages.inc.php:83 server_binlog.php:216 msgid "Position" msgstr "Позиция" -#: libraries/messages.inc.php:88 libraries/replication_gui.lib.php:169 +#: libraries/messages.inc.php:84 libraries/replication_gui.lib.php:169 #: server_binlog.php:218 msgid "Server ID" msgstr "ID сервера" -#: libraries/messages.inc.php:92 +#: libraries/messages.inc.php:88 #, fuzzy msgctxt "$strBLOBRepositoryDisabled" msgid "Disabled" msgstr "Отключено" -#: libraries/messages.inc.php:95 +#: libraries/messages.inc.php:91 #, fuzzy msgctxt "$strBLOBRepositoryEnabled" msgid "Enabled" msgstr "Включено" -#: libraries/messages.inc.php:97 tbl_change.php:888 +#: libraries/messages.inc.php:93 tbl_change.php:888 msgid "Remove BLOB Repository Reference" msgstr "Удалить ссылку хранилища BLOB данных" -#: libraries/messages.inc.php:98 +#: libraries/messages.inc.php:94 #, fuzzy msgctxt "$strBLOBRepositoryRepair" msgid "Repair" msgstr "Восстановить" -#: libraries/messages.inc.php:99 tbl_change.php:987 +#: libraries/messages.inc.php:95 tbl_change.php:987 msgid "Upload to BLOB repository" msgstr "Загрузить в хранилище BLOB данных" -#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:359 +#: libraries/messages.inc.php:96 libraries/sql_query_form.lib.php:359 #: sql.php:677 msgid "Let every user access this bookmark" msgstr "Доступна для всех пользователей" -#: libraries/messages.inc.php:103 sql.php:671 +#: libraries/messages.inc.php:99 sql.php:671 msgid "Label" msgstr "Метка" -#: libraries/messages.inc.php:104 libraries/sql_query_form.lib.php:433 +#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:433 msgid "Bookmarked SQL query" msgstr "Созданные закладки" -#: libraries/messages.inc.php:105 libraries/sql_query_form.lib.php:365 +#: libraries/messages.inc.php:101 libraries/sql_query_form.lib.php:365 msgid "Replace existing bookmark of same name" msgstr "Заменить существующую с таким же именем" -#: libraries/messages.inc.php:106 libraries/sql_query_form.lib.php:352 +#: libraries/messages.inc.php:102 libraries/sql_query_form.lib.php:352 #: sql.php:665 sql.php:666 sql.php:683 msgid "Bookmark this SQL query" msgstr "Создание закладки" -#: libraries/messages.inc.php:107 libraries/sql_query_form.lib.php:466 +#: libraries/messages.inc.php:103 libraries/sql_query_form.lib.php:466 msgid "View only" msgstr "Просмотр" -#: libraries/messages.inc.php:109 tbl_structure.php:161 +#: libraries/messages.inc.php:105 tbl_structure.php:161 msgid "Browse distinct values" msgstr "Обзор уникальных значений" -#: libraries/messages.inc.php:110 tbl_change.php:252 tbl_select.php:27 +#: libraries/messages.inc.php:106 tbl_change.php:252 tbl_select.php:27 #: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34 msgid "Browse foreign values" msgstr "Обзор внешних значений" -#: libraries/messages.inc.php:118 libraries/mysql_charsets.lib.php:213 +#: libraries/messages.inc.php:114 libraries/mysql_charsets.lib.php:213 msgid "Bulgarian" msgstr "Болгарский" -#: libraries/messages.inc.php:120 +#: libraries/messages.inc.php:116 msgid "\"bzipped\"" msgstr "bzip" -#: libraries/messages.inc.php:122 +#: libraries/messages.inc.php:118 msgid "Calendar" msgstr "Календарь" -#: libraries/messages.inc.php:129 tbl_indexes.php:75 +#: libraries/messages.inc.php:125 tbl_indexes.php:75 msgid "Can't rename index to PRIMARY!" msgstr "Невозможно переименовать индекс в PRIMARY!" -#: libraries/messages.inc.php:132 libraries/mysql_charsets.lib.php:223 +#: libraries/messages.inc.php:128 libraries/mysql_charsets.lib.php:223 #: libraries/mysql_charsets.lib.php:409 msgid "case-insensitive" msgstr "регистронезависимый" -#: libraries/messages.inc.php:133 libraries/mysql_charsets.lib.php:226 +#: libraries/messages.inc.php:129 libraries/mysql_charsets.lib.php:226 #: libraries/mysql_charsets.lib.php:411 msgid "case-sensitive" msgstr "регистрозависымый" -#: libraries/messages.inc.php:134 libraries/mysql_charsets.lib.php:332 +#: libraries/messages.inc.php:130 libraries/mysql_charsets.lib.php:332 msgid "Central European" msgstr "Центрально-Европейский" -#: libraries/messages.inc.php:136 server_privileges.php:1969 +#: libraries/messages.inc.php:132 server_privileges.php:1969 msgid "... keep the old one." msgstr "и сохранить старого." -#: libraries/messages.inc.php:137 server_privileges.php:1967 +#: libraries/messages.inc.php:133 server_privileges.php:1967 msgid "Create a new user with the same privileges and ..." msgstr "Создать нового пользователя с такими же привилегиями..." -#: libraries/messages.inc.php:138 server_privileges.php:1972 +#: libraries/messages.inc.php:134 server_privileges.php:1972 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr ", удалить старого из таблиц пользователей и перезагрузить привилегии." -#: libraries/messages.inc.php:139 server_privileges.php:1970 +#: libraries/messages.inc.php:135 server_privileges.php:1970 msgid " ... delete the old one from the user tables." msgstr "и удалить старого из таблиц пользователей." -#: libraries/messages.inc.php:140 server_privileges.php:1971 +#: libraries/messages.inc.php:136 server_privileges.php:1971 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr ", отменить все активные привилегии старого и затем удалить его." -#: libraries/messages.inc.php:141 server_privileges.php:1964 +#: libraries/messages.inc.php:137 server_privileges.php:1964 msgid "Change Login Information / Copy User" msgstr "Изменить/Копировать учетную запись" -#: libraries/messages.inc.php:144 libraries/mysql_charsets.lib.php:107 +#: libraries/messages.inc.php:140 libraries/mysql_charsets.lib.php:107 msgid "Charset" msgstr "Кодировка" -#: libraries/messages.inc.php:146 server_collations.php:40 +#: libraries/messages.inc.php:142 server_collations.php:40 msgid "Character Sets and Collations" msgstr "Кодировки и сравнения" -#: libraries/messages.inc.php:147 libraries/server_links.inc.php:57 +#: libraries/messages.inc.php:143 libraries/server_links.inc.php:57 #: test/theme.php:109 msgid "Charsets" msgstr "Кодировки" -#: libraries/messages.inc.php:149 tbl_operations.php:661 +#: libraries/messages.inc.php:145 tbl_operations.php:661 msgid "Check" msgstr "Проверка" -#: libraries/messages.inc.php:151 server_databases.php:293 +#: libraries/messages.inc.php:147 server_databases.php:293 #: server_databases.php:294 msgid "Check Privileges" msgstr "Проверить привилегии" -#: libraries/messages.inc.php:152 server_databases.php:289 +#: libraries/messages.inc.php:148 server_databases.php:289 #, php-format msgid "Check privileges for database "%s"." msgstr "Проверить привилегии для базы данных "%s"" -#: libraries/messages.inc.php:154 pdf_pages.php:261 +#: libraries/messages.inc.php:150 pdf_pages.php:261 msgid "Please choose a page to edit" msgstr "Выбор страницы для редактирования" -#: libraries/messages.inc.php:157 +#: libraries/messages.inc.php:153 msgid "Displaying Column Comments" msgstr "Отображать комментарии столбцов" -#: libraries/messages.inc.php:159 pdf_pages.php:483 view_create.php:148 +#: libraries/messages.inc.php:155 pdf_pages.php:483 view_create.php:148 msgid "Column names" msgstr "Названия столбцов" -#: libraries/messages.inc.php:160 server_privileges.php:1685 +#: libraries/messages.inc.php:156 server_privileges.php:1685 msgid "Column-specific privileges" msgstr "Привилегии уровня столбца" -#: libraries/messages.inc.php:164 +#: libraries/messages.inc.php:160 msgid "MySQL 4.0 compatible" msgstr "MySQL 4.0 совместимо" -#: libraries/messages.inc.php:165 +#: libraries/messages.inc.php:161 msgid "Complete inserts" msgstr "Полная вставка" -#: libraries/messages.inc.php:168 +#: libraries/messages.inc.php:164 #, php-format msgid "Could not load default configuration from: \"%1$s\"" msgstr "Невозможно загрузить изначальную конфигурацию из: "%1$s"" -#: libraries/messages.inc.php:169 main.php:306 +#: libraries/messages.inc.php:165 main.php:306 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " @@ -3448,37 +3448,37 @@ msgstr "" "находится в установочной директории phpMyAdmin. Обязательно удалите его " "сразу после настройки phpMyAdmin." -#: libraries/messages.inc.php:171 pdf_schema.php:672 +#: libraries/messages.inc.php:167 pdf_schema.php:672 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Измените координаты таблицы %s" -#: libraries/messages.inc.php:173 server_status.php:433 +#: libraries/messages.inc.php:169 server_status.php:433 msgid "Connections" msgstr "Соединения" -#: libraries/messages.inc.php:179 tbl_operations.php:509 +#: libraries/messages.inc.php:175 tbl_operations.php:509 msgid "Copy table to (database.table):" msgstr "Скопировать таблицу в (база данных.таблица):" -#: libraries/messages.inc.php:180 tbl_move_copy.php:58 +#: libraries/messages.inc.php:176 tbl_move_copy.php:58 #, php-format msgid "Table %s has been copied to %s." msgstr "Таблица %s была скопирована в %s." -#: libraries/messages.inc.php:181 tbl_move_copy.php:48 +#: libraries/messages.inc.php:177 tbl_move_copy.php:48 msgid "Can't copy table to same one!" msgstr "Невозможно скопировать таблицу саму в себя!" -#: libraries/messages.inc.php:182 server_synchronize.php:94 +#: libraries/messages.inc.php:178 server_synchronize.php:94 msgid "Could not connect to the source" msgstr "Не получилось соединиться с источником" -#: libraries/messages.inc.php:183 server_synchronize.php:97 +#: libraries/messages.inc.php:179 server_synchronize.php:97 msgid "Could not connect to the target" msgstr "Не получилось соединиться с целевой базой данных" -#: libraries/messages.inc.php:184 server_processlist.php:24 +#: libraries/messages.inc.php:180 server_processlist.php:24 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -3486,137 +3486,137 @@ msgstr "" "phpMyAdmin не смог завершить работу потока с ID %s. Вероятно, он уже был " "закрыт." -#: libraries/messages.inc.php:187 +#: libraries/messages.inc.php:183 #, php-format msgid "Create an index on %s columns" msgstr "Создать индекс для  %s  столбца/ов" -#: libraries/messages.inc.php:188 tbl_indexes.php:160 +#: libraries/messages.inc.php:184 tbl_indexes.php:160 msgid "Create a new index" msgstr "Создать новый индекс" -#: libraries/messages.inc.php:191 pdf_pages.php:297 pmd_pdf.php:114 +#: libraries/messages.inc.php:187 pdf_pages.php:297 pmd_pdf.php:114 msgid "Create a page" msgstr "Создать новую страницу" -#: libraries/messages.inc.php:192 +#: libraries/messages.inc.php:188 msgid "Creation of PDFs" msgstr "Создание PDF-схемы" -#: libraries/messages.inc.php:193 pmd_general.php:74 pmd_general.php:306 +#: libraries/messages.inc.php:189 pmd_general.php:74 pmd_general.php:306 msgid "Create relation" msgstr "Создать связь" -#: libraries/messages.inc.php:194 pmd_general.php:71 +#: libraries/messages.inc.php:190 pmd_general.php:71 #: server_synchronize.php:429 server_synchronize.php:872 msgid "Create table" msgstr "Создать таблицу" -#: libraries/messages.inc.php:195 +#: libraries/messages.inc.php:191 #, fuzzy msgctxt "$strCreateTableShort" msgid "Create table" msgstr "Создать таблицу" -#: libraries/messages.inc.php:196 server_privileges.php:1994 +#: libraries/messages.inc.php:192 server_privileges.php:1994 msgid "Database for user" msgstr "База данных для пользователя" -#: libraries/messages.inc.php:197 server_privileges.php:1999 +#: libraries/messages.inc.php:193 server_privileges.php:1999 msgid "Create database with same name and grant all privileges" msgstr "" "Создать базу данных с именем пользователя в названии и предоставить на нее " "полные привилегии" -#: libraries/messages.inc.php:198 +#: libraries/messages.inc.php:194 #, fuzzy msgctxt "$strCreateUserDatabaseNone" msgid "None" msgstr "Нет" -#: libraries/messages.inc.php:199 server_privileges.php:2003 +#: libraries/messages.inc.php:195 server_privileges.php:2003 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Выставить полные привилегии на базу данных "%s"" -#: libraries/messages.inc.php:200 server_privileges.php:2000 +#: libraries/messages.inc.php:196 server_privileges.php:2000 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" "Предоставить полные привилегии на базы данных подпадающие под шаблон (имя " "пользователя\\_%)" -#: libraries/messages.inc.php:201 +#: libraries/messages.inc.php:197 msgid "Creation/Update/Check dates" msgstr "Даты создания, обновления и проверки" -#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:229 +#: libraries/messages.inc.php:199 libraries/mysql_charsets.lib.php:229 msgid "Croatian" msgstr "Хорватский" -#: libraries/messages.inc.php:204 +#: libraries/messages.inc.php:200 msgid "CSV" msgstr "CSV" -#: libraries/messages.inc.php:205 libraries/server_synchronize.lib.php:1343 +#: libraries/messages.inc.php:201 libraries/server_synchronize.lib.php:1343 #: libraries/server_synchronize.lib.php:1369 msgid "Current server" msgstr "Текущий сервер" -#: libraries/messages.inc.php:206 main.php:159 +#: libraries/messages.inc.php:202 main.php:159 msgid "Custom color" msgstr "Выбрать цвет" -#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:365 +#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:365 msgid "Cyrillic" msgstr "Кириллический" -#: libraries/messages.inc.php:208 libraries/mysql_charsets.lib.php:232 +#: libraries/messages.inc.php:204 libraries/mysql_charsets.lib.php:232 msgid "Czech" msgstr "Чешский" -#: libraries/messages.inc.php:209 libraries/mysql_charsets.lib.php:383 +#: libraries/messages.inc.php:205 libraries/mysql_charsets.lib.php:383 msgid "Czech-Slovak" msgstr "Чехословацкий" -#: libraries/messages.inc.php:211 libraries/mysql_charsets.lib.php:235 +#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:235 msgid "Danish" msgstr "Датский" -#: libraries/messages.inc.php:214 +#: libraries/messages.inc.php:210 msgid "Database export options" msgstr "Параметры экспорта базы данных" -#: libraries/messages.inc.php:217 server_synchronize.php:122 +#: libraries/messages.inc.php:213 server_synchronize.php:122 #: server_synchronize.php:125 tbl_create.php:82 tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "База данных '%s' не существует." -#: libraries/messages.inc.php:219 server_databases.php:63 +#: libraries/messages.inc.php:215 server_databases.php:63 #, php-format msgid "%s databases have been dropped successfully." msgstr "Удалено баз данных: %s" -#: libraries/messages.inc.php:220 libraries/server_synchronize.lib.php:1341 +#: libraries/messages.inc.php:216 libraries/server_synchronize.lib.php:1341 #: server_synchronize.php:1110 msgid "Source database" msgstr "Источник" -#: libraries/messages.inc.php:221 server_databases.php:88 +#: libraries/messages.inc.php:217 server_databases.php:88 msgid "Databases statistics" msgstr "Статистика баз данных" -#: libraries/messages.inc.php:222 server_databases.php:362 +#: libraries/messages.inc.php:218 server_databases.php:362 #: server_databases.php:363 msgid "Disable Statistics" msgstr "Отключить статистику" -#: libraries/messages.inc.php:223 server_databases.php:358 +#: libraries/messages.inc.php:219 server_databases.php:358 #: server_databases.php:359 msgid "Enable Statistics" msgstr "Включить статистику" -#: libraries/messages.inc.php:224 server_databases.php:366 +#: libraries/messages.inc.php:220 server_databases.php:366 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -3624,30 +3624,30 @@ msgstr "" "Примечание: Включение статистики баз данных может спровоцировать большой " "трафик между веб-сервером и сервером MySQL." -#: libraries/messages.inc.php:225 libraries/server_synchronize.lib.php:1367 +#: libraries/messages.inc.php:221 libraries/server_synchronize.lib.php:1367 #: server_synchronize.php:1112 msgid "Target database" msgstr "Целевая база данных" -#: libraries/messages.inc.php:228 server_synchronize.php:425 +#: libraries/messages.inc.php:224 server_synchronize.php:425 #: server_synchronize.php:868 msgid "Data Difference" msgstr "Различие данных" -#: libraries/messages.inc.php:231 server_synchronize.php:272 +#: libraries/messages.inc.php:227 server_synchronize.php:272 msgid "Data Synchronization" msgstr "Синхронизация данных" -#: libraries/messages.inc.php:235 server_privileges.php:526 +#: libraries/messages.inc.php:231 server_privileges.php:526 #: server_privileges.php:1679 msgid "Database-specific privileges" msgstr "Привилегии уровня базы данных" -#: libraries/messages.inc.php:237 server_privileges.php:2136 +#: libraries/messages.inc.php:233 server_privileges.php:2136 msgid "database-specific" msgstr "Уровень базы данных" -#: libraries/messages.inc.php:240 libraries/tbl_properties.inc.php:106 +#: libraries/messages.inc.php:236 libraries/tbl_properties.inc.php:106 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" @@ -3655,32 +3655,32 @@ msgstr "" "Для значений поля \"По умолчанию\" не используйте символы экранирования и " "кавычек." -#: libraries/messages.inc.php:241 tbl_operations.php:589 +#: libraries/messages.inc.php:237 tbl_operations.php:589 msgid "Defragment table" msgstr "Дефрагментировать таблицу" -#: libraries/messages.inc.php:242 +#: libraries/messages.inc.php:238 msgid "Use delayed inserts" msgstr "Использовать отложенные вставки (DELAYED)" -#: libraries/messages.inc.php:245 server_privileges.php:1243 +#: libraries/messages.inc.php:241 server_privileges.php:1243 msgid "No users selected for deleting!" msgstr "Не выбраны пользователи подлежащие удалению!" -#: libraries/messages.inc.php:246 pmd_general.php:372 +#: libraries/messages.inc.php:242 pmd_general.php:372 msgid "Delete relation" msgstr "Удалить связь" -#: libraries/messages.inc.php:248 server_privileges.php:1232 +#: libraries/messages.inc.php:244 server_privileges.php:1232 #, php-format msgid "Deleting %s" msgstr "Удаление %s" -#: libraries/messages.inc.php:249 libraries/sql_query_form.lib.php:388 +#: libraries/messages.inc.php:245 libraries/sql_query_form.lib.php:388 msgid "Delimiter" msgstr "Разделитель" -#: libraries/messages.inc.php:250 pdf_pages.php:506 +#: libraries/messages.inc.php:246 pdf_pages.php:506 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -3688,7 +3688,7 @@ msgstr "" "На текущей странице присутствуют ссылки на таблицы, которые больше не " "существуют. Удалить эти ссылки?" -#: libraries/messages.inc.php:254 pmd_help.php:29 +#: libraries/messages.inc.php:250 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 " @@ -3698,142 +3698,142 @@ msgstr "" "отображаемого столбца\" и выберите необходимый столбец. Отображаемые столбцы " "подсвечиваются розовым цветом." -#: libraries/messages.inc.php:256 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:252 libraries/mysql_charsets.lib.php:247 msgid "dictionary" msgstr "словарь" -#: libraries/messages.inc.php:257 libraries/server_synchronize.lib.php:1348 +#: libraries/messages.inc.php:253 libraries/server_synchronize.lib.php:1348 msgid "Difference" msgstr "Различие" -#: libraries/messages.inc.php:258 pmd_general.php:87 +#: libraries/messages.inc.php:254 pmd_general.php:87 msgid "Direct links" msgstr "Прямые линии связей" -#: libraries/messages.inc.php:261 +#: libraries/messages.inc.php:257 msgid "Disable foreign key checks" msgstr "Отключить проверку внешних ключей" -#: libraries/messages.inc.php:262 +#: libraries/messages.inc.php:258 msgid "Display Features" msgstr "Показать возможности" -#: libraries/messages.inc.php:263 tbl_select.php:301 +#: libraries/messages.inc.php:259 tbl_select.php:301 msgid "Display order:" msgstr "Сортировка:" -#: libraries/messages.inc.php:265 tbl_select.php:132 +#: libraries/messages.inc.php:261 tbl_select.php:132 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Выполнить \"запрос по образцу\" (групповой символ: \"%\")" -#: libraries/messages.inc.php:266 +#: libraries/messages.inc.php:262 msgid "DocSQL" msgstr "DocSQL" -#: libraries/messages.inc.php:268 +#: libraries/messages.inc.php:264 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Не используйте параметр AUTO_INCREMENT для нулевых значений" -#: libraries/messages.inc.php:273 server_privileges.php:1579 +#: libraries/messages.inc.php:269 server_privileges.php:1579 #: server_privileges.php:1580 server_privileges.php:1581 msgid "Drop the databases that have the same names as the users." msgstr "Удалить базы данных, имена которых совпадают с именами пользователей." -#: libraries/messages.inc.php:278 tbl_printview.php:382 tbl_structure.php:743 +#: libraries/messages.inc.php:274 tbl_printview.php:382 tbl_structure.php:743 msgid "dynamic" msgstr "динамический" -#: libraries/messages.inc.php:282 server_privileges.php:1324 +#: libraries/messages.inc.php:278 server_privileges.php:1324 #: server_privileges.php:1610 msgid "Edit Privileges" msgstr "Редактирование привилегий" -#: libraries/messages.inc.php:283 tbl_printview.php:341 tbl_structure.php:688 +#: libraries/messages.inc.php:279 tbl_printview.php:341 tbl_structure.php:688 msgid "Effective" msgstr "Эффективность" -#: libraries/messages.inc.php:286 libraries/relation.lib.php:100 +#: libraries/messages.inc.php:282 libraries/relation.lib.php:100 msgid "Enabled" msgstr "Доступно" -#: libraries/messages.inc.php:287 +#: libraries/messages.inc.php:283 msgid "Enclose export in a transaction" msgstr "Заключить экспорт в транзакцию" -#: libraries/messages.inc.php:288 libraries/sqlparser.lib.php:177 +#: libraries/messages.inc.php:284 libraries/sqlparser.lib.php:177 msgid "END CUT" msgstr "END CUT" -#: libraries/messages.inc.php:290 libraries/sqlparser.lib.php:183 +#: libraries/messages.inc.php:286 libraries/sqlparser.lib.php:183 msgid "END RAW" msgstr "END RAW" -#: libraries/messages.inc.php:293 libraries/server_links.inc.php:61 +#: libraries/messages.inc.php:289 libraries/server_links.inc.php:61 #: test/theme.php:113 msgid "Engines" msgstr "Типы таблиц" -#: libraries/messages.inc.php:295 libraries/mysql_charsets.lib.php:238 +#: libraries/messages.inc.php:291 libraries/mysql_charsets.lib.php:238 msgid "English" msgstr "Английский" -#: libraries/messages.inc.php:296 server_privileges.php:393 +#: libraries/messages.inc.php:292 server_privileges.php:393 #: server_privileges.php:535 server_privileges.php:1501 msgid " Note: MySQL privilege names are expressed in English " msgstr "Примечание: типы привилегий MySQL отображаются по-английски." -#: libraries/messages.inc.php:298 libraries/zip_extension.lib.php:49 +#: libraries/messages.inc.php:294 libraries/zip_extension.lib.php:49 #: libraries/zip_extension.lib.php:51 libraries/zip_extension.lib.php:66 msgid "Error in ZIP archive:" msgstr "Ошибка в ZIP-архиве:" -#: libraries/messages.inc.php:303 libraries/mysql_charsets.lib.php:241 +#: libraries/messages.inc.php:299 libraries/mysql_charsets.lib.php:241 msgid "Esperanto" msgstr "Эсперанто" -#: libraries/messages.inc.php:304 libraries/mysql_charsets.lib.php:244 +#: libraries/messages.inc.php:300 libraries/mysql_charsets.lib.php:244 msgid "Estonian" msgstr "Эстонский" -#: libraries/messages.inc.php:305 libraries/tbl_triggers.lib.php:29 +#: libraries/messages.inc.php:301 libraries/tbl_triggers.lib.php:29 msgid "Event" msgstr "Событие" -#: libraries/messages.inc.php:307 +#: libraries/messages.inc.php:303 msgid "Excel edition" msgstr "Excel-версия" -#: libraries/messages.inc.php:311 pmd_pdf.php:85 +#: libraries/messages.inc.php:307 pmd_pdf.php:85 msgid "Export/Import to scale" msgstr "Масштаб" -#: libraries/messages.inc.php:313 +#: libraries/messages.inc.php:309 msgid "Extended inserts" msgstr "Расширенные вставки" -#: libraries/messages.inc.php:314 pdf_schema.php:1267 pdf_schema.php:1288 +#: libraries/messages.inc.php:310 pdf_schema.php:1267 pdf_schema.php:1288 #: tbl_printview.php:147 tbl_structure.php:183 tbl_tracking.php:278 msgid "Extra" msgstr "Дополнительно" -#: libraries/messages.inc.php:316 server_status.php:447 +#: libraries/messages.inc.php:312 server_status.php:447 msgid "Failed attempts" msgstr "Неудачных попыток" -#: libraries/messages.inc.php:318 tbl_structure.php:375 +#: libraries/messages.inc.php:314 tbl_structure.php:375 #, php-format msgid "Field %s has been dropped" msgstr "Поле "%s" было удалено" -#: libraries/messages.inc.php:322 libraries/sql_query_form.lib.php:317 +#: libraries/messages.inc.php:318 libraries/sql_query_form.lib.php:317 msgid "Fields" msgstr "Поля" -#: libraries/messages.inc.php:332 server_binlog.php:136 +#: libraries/messages.inc.php:328 server_binlog.php:136 msgid "Files" msgstr "Файлов" -#: libraries/messages.inc.php:334 server_privileges.php:1597 +#: libraries/messages.inc.php:330 server_privileges.php:1597 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -3846,119 +3846,119 @@ msgstr "" "отличаться от привилегий, используемых сервером, если они были изменены " "вручную. В таком случае необходимо %sперезагрузить привилегии%s." -#: libraries/messages.inc.php:335 server_status.php:289 +#: libraries/messages.inc.php:331 server_status.php:289 msgid "Flush query cache" msgstr "Дефрагментировать кеш запросов" -#: libraries/messages.inc.php:336 +#: libraries/messages.inc.php:332 msgid "Flush the table (\"FLUSH\")" msgstr "Обновить кеш таблицы ("FLUSH")" -#: libraries/messages.inc.php:337 server_status.php:271 +#: libraries/messages.inc.php:333 server_status.php:271 msgid "Flush (close) all tables" msgstr "Закрыть все таблицы" -#: libraries/messages.inc.php:339 tbl_relation.php:279 +#: libraries/messages.inc.php:335 tbl_relation.php:279 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "Ошибка создания внешнего ключа на %1$s (проверьте типы данных)" -#: libraries/messages.inc.php:341 setup/lib/messages.inc.php:88 +#: libraries/messages.inc.php:337 setup/lib/messages.inc.php:88 #: tbl_printview.php:376 tbl_structure.php:738 msgid "Format" msgstr "Формат" -#: libraries/messages.inc.php:344 server_replication.php:325 +#: libraries/messages.inc.php:340 server_replication.php:325 msgid "Full start" msgstr "Полный запуск" -#: libraries/messages.inc.php:345 server_replication.php:325 +#: libraries/messages.inc.php:341 server_replication.php:325 msgid "Full stop" msgstr "Полная остановка" -#: libraries/messages.inc.php:347 tbl_change.php:282 tbl_change.php:320 +#: libraries/messages.inc.php:343 tbl_change.php:282 tbl_change.php:320 msgid "Function" msgstr "Функция" -#: libraries/messages.inc.php:355 libraries/mysql_charsets.lib.php:377 +#: libraries/messages.inc.php:351 libraries/mysql_charsets.lib.php:377 msgid "Georgian" msgstr "Грузинский" -#: libraries/messages.inc.php:356 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:352 libraries/mysql_charsets.lib.php:247 #: libraries/mysql_charsets.lib.php:250 msgid "German" msgstr "Немецкий" -#: libraries/messages.inc.php:357 themes.php:42 +#: libraries/messages.inc.php:353 themes.php:42 msgid "Get more themes!" msgstr "Другие темы!" -#: libraries/messages.inc.php:358 server_privileges.php:2134 +#: libraries/messages.inc.php:354 server_privileges.php:2134 msgid "global" msgstr "Глобальный уровень" -#: libraries/messages.inc.php:359 server_privileges.php:524 +#: libraries/messages.inc.php:355 server_privileges.php:524 #: server_privileges.php:1500 msgid "Global privileges" msgstr "Глобальные привилегии" -#: libraries/messages.inc.php:360 server_variables.php:55 +#: libraries/messages.inc.php:356 server_variables.php:55 #: server_variables.php:89 msgid "Global value" msgstr "Глобальное значение" -#: libraries/messages.inc.php:365 server_privileges.php:1502 +#: libraries/messages.inc.php:361 server_privileges.php:1502 #: server_privileges.php:1684 server_privileges.php:2033 msgid "Grant" msgstr "GRANT" -#: libraries/messages.inc.php:366 libraries/mysql_charsets.lib.php:380 +#: libraries/messages.inc.php:362 libraries/mysql_charsets.lib.php:380 msgid "Greek" msgstr "Греческий" -#: libraries/messages.inc.php:367 +#: libraries/messages.inc.php:363 msgid "\"gzipped\"" msgstr "gzip" -#: libraries/messages.inc.php:369 server_status.php:250 +#: libraries/messages.inc.php:365 server_status.php:250 msgid "Handler" msgstr "Обработчик" -#: libraries/messages.inc.php:370 server_synchronize.php:464 +#: libraries/messages.inc.php:366 server_synchronize.php:464 msgid "Selected target tables have been synchronized with source tables." msgstr "Выбранные целевые таблицы были синхронизированы с таблицами источника." -#: libraries/messages.inc.php:372 libraries/mysql_charsets.lib.php:374 +#: libraries/messages.inc.php:368 libraries/mysql_charsets.lib.php:374 msgid "Hebrew" msgstr "Иврит" -#: libraries/messages.inc.php:373 pmd_general.php:83 +#: libraries/messages.inc.php:369 pmd_general.php:83 msgid "Help" msgstr "Помощь" -#: libraries/messages.inc.php:374 +#: libraries/messages.inc.php:370 msgid "Use hexadecimal for BLOB" msgstr "Использовать шестнадцатеричное отображение для полей типа BLOB" -#: libraries/messages.inc.php:376 pmd_general.php:120 +#: libraries/messages.inc.php:372 pmd_general.php:120 msgid "Hide/Show all" msgstr "Скрыть/отобразить все таблицы" -#: libraries/messages.inc.php:377 pmd_general.php:124 +#: libraries/messages.inc.php:373 pmd_general.php:124 msgid "Hide/Show Tables with no relation" msgstr "Скрыть/отобразить таблицы не имеющие связей" -#: libraries/messages.inc.php:378 libraries/navigation_header.inc.php:54 +#: libraries/messages.inc.php:374 libraries/navigation_header.inc.php:54 #: libraries/navigation_header.inc.php:57 #: libraries/navigation_header.inc.php:58 msgid "Home" msgstr "К началу" -#: libraries/messages.inc.php:379 main.php:233 +#: libraries/messages.inc.php:375 main.php:233 msgid "Official Homepage" msgstr "Официальная страница phpMyAdmin" -#: libraries/messages.inc.php:382 libraries/replication_gui.lib.php:327 +#: libraries/messages.inc.php:378 libraries/replication_gui.lib.php:327 #: server_privileges.php:753 msgid "" "When Host table is used, this field is ignored and values stored in Host " @@ -3967,98 +3967,98 @@ msgstr "" "При использовании таблицы хостов, данное поле игнорируется и значения " "берутся из прописанных при конфигурации." -#: libraries/messages.inc.php:383 +#: libraries/messages.inc.php:379 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/messages.inc.php:384 libraries/mysql_charsets.lib.php:253 +#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:253 msgid "Hungarian" msgstr "Венгерский" -#: libraries/messages.inc.php:386 libraries/mysql_charsets.lib.php:256 +#: libraries/messages.inc.php:382 libraries/mysql_charsets.lib.php:256 msgid "Icelandic" msgstr "Исландский" -#: libraries/messages.inc.php:387 server_processlist.php:53 +#: libraries/messages.inc.php:383 server_processlist.php:53 msgid "ID" msgstr "ID" -#: libraries/messages.inc.php:388 libraries/mult_submits.inc.php:108 +#: libraries/messages.inc.php:384 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:479 msgid "Fulltext" msgstr "Полнотекстовый" -#: libraries/messages.inc.php:389 +#: libraries/messages.inc.php:385 msgid "Ignore duplicate rows" msgstr "Игнорировать повторяющиеся строки" -#: libraries/messages.inc.php:390 tbl_change.php:302 tbl_indexes.php:200 +#: libraries/messages.inc.php:386 tbl_change.php:302 tbl_indexes.php:200 #: tbl_indexes.php:225 msgid "Ignore" msgstr "Игнорировать" -#: libraries/messages.inc.php:391 +#: libraries/messages.inc.php:387 msgid "Use ignore inserts" msgstr "Использовать игнорирующие вставки (IGNORE)" -#: libraries/messages.inc.php:392 +#: libraries/messages.inc.php:388 msgid "Column names in first row" msgstr "Имена таблиц в первой строке" -#: libraries/messages.inc.php:393 +#: libraries/messages.inc.php:389 msgid "Do not import empty rows" msgstr "Пропускать пустые строки" -#: libraries/messages.inc.php:394 pmd_general.php:104 +#: libraries/messages.inc.php:390 pmd_general.php:104 msgid "Import/Export coordinates for PDF schema" msgstr "Импорт/экспорт координат таблиц в/из PDF-схемы" -#: libraries/messages.inc.php:395 querywindow.php:104 +#: libraries/messages.inc.php:391 querywindow.php:104 msgid "Import files" msgstr "Импорт файлов" -#: libraries/messages.inc.php:403 +#: libraries/messages.inc.php:399 msgid "Import currencies ($5.00 to 5.00)" msgstr "Импортировать денежные единицы ($5.00 в 5.00)" -#: libraries/messages.inc.php:404 libraries/messages.inc.php:584 +#: libraries/messages.inc.php:400 libraries/messages.inc.php:580 msgid "Open Document Spreadsheet" msgstr "Open Document Spreadsheet" -#: libraries/messages.inc.php:405 +#: libraries/messages.inc.php:401 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "Импортировать проценты в виде десятичных значений (12.00% в .12)" -#: libraries/messages.inc.php:409 +#: libraries/messages.inc.php:405 msgid "Excel 97-2003 XLS Workbook" msgstr "Excel 97-2003 XLS Workbook" -#: libraries/messages.inc.php:410 +#: libraries/messages.inc.php:406 msgid "Excel 2007 XLSX Workbook" msgstr "Excel 2007 XLSX Workbook" -#: libraries/messages.inc.php:414 libraries/mult_submits.inc.php:98 +#: libraries/messages.inc.php:410 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:476 tbl_structure.php:674 msgid "Index" msgstr "Индекс" -#: libraries/messages.inc.php:415 tbl_indexes.php:168 +#: libraries/messages.inc.php:411 tbl_indexes.php:168 msgid "Index name:" msgstr "Имя индекса :" -#: libraries/messages.inc.php:416 tbl_indexes.php:174 +#: libraries/messages.inc.php:412 tbl_indexes.php:174 msgid "Index type:" msgstr "Тип индекса :" -#: libraries/messages.inc.php:417 sql.php:639 +#: libraries/messages.inc.php:413 sql.php:639 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Проблемы с индексами таблицы `%s`" -#: libraries/messages.inc.php:427 main.php:266 +#: libraries/messages.inc.php:423 main.php:266 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -4071,24 +4071,24 @@ msgstr "" "несанкционированного доступа, поэтому настоятельно рекомендуется установить " "пароль для пользователя "root"." -#: libraries/messages.inc.php:428 tbl_change.php:1130 +#: libraries/messages.inc.php:424 tbl_change.php:1130 msgid "Insert as new row" msgstr "Вставить запись" -#: libraries/messages.inc.php:429 sql.php:496 tbl_replace.php:386 +#: libraries/messages.inc.php:425 sql.php:496 tbl_replace.php:386 #, php-format msgid "Inserted row id: %1$d" msgstr "Идентификатор вставленной строки: %1$d" -#: libraries/messages.inc.php:430 tbl_change.php:1131 +#: libraries/messages.inc.php:426 tbl_change.php:1131 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/messages.inc.php:432 main.php:139 +#: libraries/messages.inc.php:428 main.php:139 msgid "Interface" msgstr "Отображение" -#: libraries/messages.inc.php:433 tbl_relation.php:407 +#: libraries/messages.inc.php:429 tbl_relation.php:407 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -4096,140 +4096,140 @@ msgstr "" "Внутренняя связь не обязательна, если существует соответствующая связь с " "помощью внешнего ключа (FOREIGN KEY)." -#: libraries/messages.inc.php:435 pdf_pages.php:303 +#: libraries/messages.inc.php:431 pdf_pages.php:303 msgid "Internal relations" msgstr "Внутренние связи" -#: libraries/messages.inc.php:438 tbl_indexes.php:256 tbl_structure.php:590 +#: libraries/messages.inc.php:434 tbl_indexes.php:256 tbl_structure.php:590 #: tbl_structure.php:601 msgid "Column count has to be larger than zero." msgstr "Количество столбцов должно быть больше нуля." -#: libraries/messages.inc.php:444 libraries/tbl_properties.inc.php:784 +#: libraries/messages.inc.php:440 libraries/tbl_properties.inc.php:784 #: tbl_structure.php:537 msgid "You have to add at least one field." msgstr "Необходимо добавить хотя бы одно поле." -#: libraries/messages.inc.php:449 +#: libraries/messages.inc.php:445 #, php-format msgid "Invalid server index: \"%s\"" msgstr "Неправильный номер сервера: "%s"" -#: libraries/messages.inc.php:452 libraries/mysql_charsets.lib.php:259 +#: libraries/messages.inc.php:448 libraries/mysql_charsets.lib.php:259 #: libraries/mysql_charsets.lib.php:349 msgid "Japanese" msgstr "Японский" -#: libraries/messages.inc.php:453 main.php:331 +#: libraries/messages.inc.php:449 main.php:331 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: libraries/messages.inc.php:454 server_status.php:257 +#: libraries/messages.inc.php:450 server_status.php:257 msgid "Joins" msgstr "Объединения" -#: libraries/messages.inc.php:457 server_privileges.php:763 +#: libraries/messages.inc.php:453 server_privileges.php:763 msgid "Do not change the password" msgstr "Не менять пароль" -#: libraries/messages.inc.php:458 server_status.php:256 +#: libraries/messages.inc.php:454 server_status.php:256 msgid "Key cache" msgstr "Кеш индекса" -#: libraries/messages.inc.php:462 libraries/mysql_charsets.lib.php:268 +#: libraries/messages.inc.php:458 libraries/mysql_charsets.lib.php:268 #: libraries/mysql_charsets.lib.php:371 msgid "Korean" msgstr "Корейский" -#: libraries/messages.inc.php:466 libraries/select_lang.lib.php:480 +#: libraries/messages.inc.php:462 libraries/select_lang.lib.php:480 #: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492 #, php-format msgid "Unknown language: %1$s." msgstr "Неизвестный язык: %1$s." -#: libraries/messages.inc.php:468 +#: libraries/messages.inc.php:464 msgid "Table caption" msgstr "Заголовок таблицы" -#: libraries/messages.inc.php:469 +#: libraries/messages.inc.php:465 msgid "Content of table __TABLE__" msgstr "Содержимое таблицы __TABLE__" -#: libraries/messages.inc.php:470 +#: libraries/messages.inc.php:466 msgid "Continued table caption" msgstr "Заголовок таблицы (продолжение)" -#: libraries/messages.inc.php:471 +#: libraries/messages.inc.php:467 msgid "(continued)" msgstr "(продолжение)" -#: libraries/messages.inc.php:472 +#: libraries/messages.inc.php:468 msgid "Include table caption" msgstr "Добавить заголовок таблицы" -#: libraries/messages.inc.php:473 +#: libraries/messages.inc.php:469 msgid "Label key" msgstr "Идентификатор метки" -#: libraries/messages.inc.php:474 +#: libraries/messages.inc.php:470 msgid "LaTeX" msgstr "LaTeX" -#: libraries/messages.inc.php:475 +#: libraries/messages.inc.php:471 msgid "Structure of table __TABLE__" msgstr "Структура таблицы __TABLE__" -#: libraries/messages.inc.php:476 libraries/mysql_charsets.lib.php:262 +#: libraries/messages.inc.php:472 libraries/mysql_charsets.lib.php:262 msgid "Latvian" msgstr "Латвийский" -#: libraries/messages.inc.php:477 +#: libraries/messages.inc.php:473 msgid "CSV using LOAD DATA" msgstr "CSV, используя LOAD DATA" -#: libraries/messages.inc.php:478 +#: libraries/messages.inc.php:474 msgid "Use LOCAL keyword" msgstr "Использовать ключевое слово LOCAL" -#: libraries/messages.inc.php:479 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:475 libraries/tbl_properties.inc.php:105 msgid "Length/Values" msgstr "Длина/значения" -#: libraries/messages.inc.php:480 tbl_select.php:295 +#: libraries/messages.inc.php:476 tbl_select.php:295 msgid "Number of rows per page" msgstr "Количество строк на странице" -#: libraries/messages.inc.php:484 libraries/mysql_charsets.lib.php:265 +#: libraries/messages.inc.php:480 libraries/mysql_charsets.lib.php:265 msgid "Lithuanian" msgstr "Литовский" -#: libraries/messages.inc.php:485 libraries/replication_gui.lib.php:302 +#: libraries/messages.inc.php:481 libraries/replication_gui.lib.php:302 #: server_privileges.php:729 msgid "Local" msgstr "Локальный" -#: libraries/messages.inc.php:487 server_privileges.php:669 +#: libraries/messages.inc.php:483 server_privileges.php:669 msgid "Login Information" msgstr "Информация учетной записи" -#: libraries/messages.inc.php:490 libraries/navigation_header.inc.php:67 +#: libraries/messages.inc.php:486 libraries/navigation_header.inc.php:67 #: libraries/navigation_header.inc.php:70 #: libraries/navigation_header.inc.php:71 main.php:99 msgid "Log out" msgstr "Выход" -#: libraries/messages.inc.php:497 server_status.php:440 +#: libraries/messages.inc.php:493 server_status.php:440 msgid "max. concurrent connections" msgstr "Максимально одновременных" -#: libraries/messages.inc.php:498 +#: libraries/messages.inc.php:494 msgid "Maximal length of created query" msgstr "Максимальная длина создаваемого запроса" -#: libraries/messages.inc.php:500 main.php:282 +#: libraries/messages.inc.php:496 main.php:282 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -4240,7 +4240,7 @@ msgstr "" "разбиение строк, что может привести к непредсказуемым результатам. " "Установите расширение PHP "mbstring"." -#: libraries/messages.inc.php:501 main.php:274 +#: libraries/messages.inc.php:497 main.php:274 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -4250,24 +4250,24 @@ msgstr "" "func_overload. Для предотвращения возможной потери данных, данный параметр " "должен быть выключен!" -#: libraries/messages.inc.php:502 +#: libraries/messages.inc.php:498 msgid "MediaWiki Table" msgstr "Таблица MediaWiki" -#: libraries/messages.inc.php:503 transformation_overview.php:25 +#: libraries/messages.inc.php:499 transformation_overview.php:25 msgid "Available MIME types" msgstr "Доступные MIME-типы" -#: libraries/messages.inc.php:504 transformation_overview.php:43 +#: libraries/messages.inc.php:500 transformation_overview.php:43 msgid "Available transformations" msgstr "Доступные преобразования" -#: libraries/messages.inc.php:505 +#: libraries/messages.inc.php:501 msgctxt "$strMIME_description" msgid "Description" msgstr "Описание" -#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:580 +#: libraries/messages.inc.php:503 libraries/tbl_properties.inc.php:580 #: transformation_overview.php:60 #, php-format msgid "" @@ -4277,7 +4277,7 @@ msgstr "" "На данный момент описание отсутствует.
Работа используемой функции " "отображения преобразования %s, будет в скором времени описана." -#: libraries/messages.inc.php:509 libraries/tbl_properties.inc.php:137 +#: libraries/messages.inc.php:505 libraries/tbl_properties.inc.php:137 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -4286,7 +4286,7 @@ msgstr "" "Для просмотра доступных MIME-типов и параметров преобразований " "воспользуйтесь данной ссылкой - %sописание преобразований%s" -#: libraries/messages.inc.php:510 libraries/tbl_properties.inc.php:146 +#: libraries/messages.inc.php:506 libraries/tbl_properties.inc.php:146 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -4298,57 +4298,57 @@ msgstr "" "экранировать (предварять) символом обратной косой черты, например: '\\\\xyz' " "или 'a\\'b'." -#: libraries/messages.inc.php:511 libraries/tbl_properties.inc.php:145 +#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:145 msgid "Transformation options" msgstr "Параметры преобразований" -#: libraries/messages.inc.php:513 transformation_overview.php:38 +#: libraries/messages.inc.php:509 transformation_overview.php:38 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "" "MIME-типы, выделенные курсивом, не имеют отдельной функции трансформации" -#: libraries/messages.inc.php:515 tbl_indexes.php:162 +#: libraries/messages.inc.php:511 tbl_indexes.php:162 msgid "Modify an index" msgstr "Изменить индекс" -#: libraries/messages.inc.php:517 pmd_general.php:108 +#: libraries/messages.inc.php:513 pmd_general.php:108 msgid "Move Menu" msgstr "Переместить меню" -#: libraries/messages.inc.php:518 tbl_operations.php:276 +#: libraries/messages.inc.php:514 tbl_operations.php:276 msgid "Move table to (database.table):" msgstr "Переместить таблицы в (база данных.таблица):" -#: libraries/messages.inc.php:519 tbl_move_copy.php:56 +#: libraries/messages.inc.php:515 tbl_move_copy.php:56 #, php-format msgid "Table %s has been moved to %s." msgstr "Таблица %s была перемещена в %s." -#: libraries/messages.inc.php:520 tbl_move_copy.php:46 +#: libraries/messages.inc.php:516 tbl_move_copy.php:46 msgid "Can't move table to same one!" msgstr "Не возможно переместить таблицу саму в себя!" -#: libraries/messages.inc.php:521 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:517 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 #: libraries/mysql_charsets.lib.php:332 libraries/mysql_charsets.lib.php:354 #: libraries/mysql_charsets.lib.php:365 msgid "multilingual" msgstr "многоязычный" -#: libraries/messages.inc.php:534 main.php:193 +#: libraries/messages.inc.php:530 main.php:193 msgid "MySQL charset" msgstr "MySQL-кодировка" -#: libraries/messages.inc.php:535 main.php:211 +#: libraries/messages.inc.php:531 main.php:211 msgid "MySQL client version" msgstr "Версия MySQL-клиента" -#: libraries/messages.inc.php:536 main.php:125 +#: libraries/messages.inc.php:532 main.php:125 msgid "MySQL connection collation" msgstr "Сопоставление соединения с MySQL" -#: libraries/messages.inc.php:537 main.php:346 +#: libraries/messages.inc.php:533 main.php:346 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -4357,54 +4357,54 @@ msgstr "" "Версия клиентской библиотеки MySQL (%s) отличается от версии установленного " "MySQL-сервера (%s). Это может привести к некорректной работе." -#: libraries/messages.inc.php:539 server_status.php:294 +#: libraries/messages.inc.php:535 server_status.php:294 msgid "Show processes" msgstr "Список процессов" -#: libraries/messages.inc.php:545 navigation.php:210 server_databases.php:371 +#: libraries/messages.inc.php:541 navigation.php:210 server_databases.php:371 #: server_synchronize.php:1191 msgid "No databases" msgstr "Базы данных отсутствуют" -#: libraries/messages.inc.php:546 server_databases.php:52 +#: libraries/messages.inc.php:542 server_databases.php:52 msgid "No databases selected." msgstr "Ни одна база данных не выбрана." -#: libraries/messages.inc.php:548 libraries/relation.lib.php:1173 +#: libraries/messages.inc.php:544 libraries/relation.lib.php:1173 msgid "no description" msgstr "нет описания" -#: libraries/messages.inc.php:552 libraries/zip_extension.lib.php:26 +#: libraries/messages.inc.php:548 libraries/zip_extension.lib.php:26 msgid "No files found inside ZIP archive!" msgstr "Файлов внутри ZIP-архива не найдено!" -#: libraries/messages.inc.php:555 tbl_indexes.php:91 +#: libraries/messages.inc.php:551 tbl_indexes.php:91 msgid "No index parts defined!" msgstr "Части индекса не определены!" -#: libraries/messages.inc.php:556 libraries/mult_submits.inc.php:435 +#: libraries/messages.inc.php:552 libraries/mult_submits.inc.php:435 #: tbl_replace.php:331 msgid "No change" msgstr "Нет изменений" -#: libraries/messages.inc.php:557 +#: libraries/messages.inc.php:553 msgctxt "$strNoneDefault" msgid "None" msgstr "Нет" -#: libraries/messages.inc.php:560 libraries/plugin_interface.lib.php:312 +#: libraries/messages.inc.php:556 libraries/plugin_interface.lib.php:312 msgid "This format has no options" msgstr "Для этого формата нет настраиваемых параметров" -#: libraries/messages.inc.php:565 user_password.php:54 +#: libraries/messages.inc.php:561 user_password.php:54 msgid "You don't have sufficient privileges to be here right now!" msgstr "Для доступа к данной странице у вас недостаточно прав!" -#: libraries/messages.inc.php:566 tbl_row_action.php:29 +#: libraries/messages.inc.php:562 tbl_row_action.php:29 msgid "No rows selected" msgstr "Для совершения действия необходимо выбрать одну или несколько строк" -#: libraries/messages.inc.php:569 themes.php:32 +#: libraries/messages.inc.php:565 themes.php:32 #, php-format msgid "" "No themes support; please check your configuration and/or your themes in " @@ -4413,296 +4413,296 @@ msgstr "" "Поддержка тем не работает, проверьте конфигурацию и наличие тем в каталоге %" "s." -#: libraries/messages.inc.php:571 libraries/relation.lib.php:95 +#: libraries/messages.inc.php:567 libraries/relation.lib.php:95 msgid "not OK" msgstr "Не готово" -#: libraries/messages.inc.php:572 server_synchronize.php:400 +#: libraries/messages.inc.php:568 server_synchronize.php:400 #: server_synchronize.php:839 msgid "not present" msgstr "отсутствует" -#: libraries/messages.inc.php:573 pdf_pages.php:36 pdf_pages.php:42 +#: libraries/messages.inc.php:569 pdf_pages.php:36 pdf_pages.php:42 #: pdf_pages.php:48 pdf_pages.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "Таблица %s не найдена или не установлена в %s" -#: libraries/messages.inc.php:574 server_privileges.php:804 +#: libraries/messages.inc.php:570 server_privileges.php:804 #: server_privileges.php:2166 msgid "No user(s) found." msgstr "Пользователей не найдено." -#: libraries/messages.inc.php:578 pmd_general.php:164 +#: libraries/messages.inc.php:574 pmd_general.php:164 msgid "Number of tables" msgstr "Количество таблиц" -#: libraries/messages.inc.php:581 server_databases.php:117 +#: libraries/messages.inc.php:577 server_databases.php:117 #: server_status.php:260 setup/lib/messages.inc.php:117 msgid "Tables" msgstr "Таблицы" -#: libraries/messages.inc.php:583 libraries/relation.lib.php:99 +#: libraries/messages.inc.php:579 libraries/relation.lib.php:99 #: pmd_general.php:340 msgid "OK" msgstr "OK" -#: libraries/messages.inc.php:585 +#: libraries/messages.inc.php:581 msgid "Open Document Text" msgstr "OpenDocument текст" -#: libraries/messages.inc.php:588 tbl_select.php:138 +#: libraries/messages.inc.php:584 tbl_select.php:138 msgid "Operator" msgstr "Оператор" -#: libraries/messages.inc.php:589 tbl_operations.php:662 +#: libraries/messages.inc.php:585 tbl_operations.php:662 msgid "Optimize" msgstr "Оптимизация" -#: libraries/messages.inc.php:602 libraries/tbl_properties.inc.php:755 +#: libraries/messages.inc.php:598 libraries/tbl_properties.inc.php:755 msgid "PARTITION definition" msgstr "Определение разделов (PARTITION)" -#: libraries/messages.inc.php:603 tbl_structure.php:757 +#: libraries/messages.inc.php:599 tbl_structure.php:757 msgid "partitioned" msgstr "разделён" -#: libraries/messages.inc.php:604 tbl_operations.php:649 +#: libraries/messages.inc.php:600 tbl_operations.php:649 msgid "Partition maintenance" msgstr "Обслуживание разделов" -#: libraries/messages.inc.php:605 tbl_operations.php:657 +#: libraries/messages.inc.php:601 tbl_operations.php:657 #, php-format msgid "Partition %s" msgstr "Раздел %s" -#: libraries/messages.inc.php:606 server_privileges.php:1212 +#: libraries/messages.inc.php:602 server_privileges.php:1212 #, php-format msgid "The password for %s was changed successfully." msgstr "Пароль для %s был успешно изменен." -#: libraries/messages.inc.php:635 +#: libraries/messages.inc.php:631 #, php-format msgid "Schema of the \"%s\" database - Page %s" msgstr "Структура базы данных \"%s\" - Страница %s" -#: libraries/messages.inc.php:636 +#: libraries/messages.inc.php:632 #, php-format msgid "The \"%s\" table doesn't exist!" msgstr "Таблица \"%s\" не существует!" -#: libraries/messages.inc.php:637 pdf_schema.php:1013 +#: libraries/messages.inc.php:633 pdf_schema.php:1013 msgid "No tables" msgstr "Нет таблиц" -#: libraries/messages.inc.php:638 pmd_pdf.php:63 +#: libraries/messages.inc.php:634 pmd_pdf.php:63 #, fuzzy msgid "Page has been created" msgstr "Таблица %1$s была создана." -#: libraries/messages.inc.php:639 pmd_pdf.php:65 +#: libraries/messages.inc.php:635 pmd_pdf.php:65 msgid "Page creation failed" msgstr "" -#: libraries/messages.inc.php:640 +#: libraries/messages.inc.php:636 msgid "PDF" msgstr "PDF" -#: libraries/messages.inc.php:641 +#: libraries/messages.inc.php:637 msgid "(Generates a report containing the data of a single table)" msgstr "(Создание отчета содержащего данные одной таблицы)" -#: libraries/messages.inc.php:642 +#: libraries/messages.inc.php:638 msgid "Report title" msgstr "Заголовок отчета" -#: libraries/messages.inc.php:643 server_status.php:389 server_status.php:434 +#: libraries/messages.inc.php:639 server_status.php:389 server_status.php:434 #: server_status.php:497 server_status.php:555 msgid "per hour" msgstr "в час" -#: libraries/messages.inc.php:644 server_status.php:498 +#: libraries/messages.inc.php:640 server_status.php:498 msgid "per minute" msgstr "в минуту" -#: libraries/messages.inc.php:645 server_status.php:499 +#: libraries/messages.inc.php:641 server_status.php:499 msgid "per second" msgstr "в секунду" -#: libraries/messages.inc.php:646 libraries/mysql_charsets.lib.php:271 +#: libraries/messages.inc.php:642 libraries/mysql_charsets.lib.php:271 msgid "Persian" msgstr "Персидский" -#: libraries/messages.inc.php:647 libraries/mysql_charsets.lib.php:250 +#: libraries/messages.inc.php:643 libraries/mysql_charsets.lib.php:250 msgid "phone book" msgstr "телефонная книга" -#: libraries/messages.inc.php:648 +#: libraries/messages.inc.php:644 msgid "PHP array" msgstr "Массив PHP" -#: libraries/messages.inc.php:650 main.php:213 +#: libraries/messages.inc.php:646 main.php:213 msgid "PHP extension" msgstr "PHP расширение" -#: libraries/messages.inc.php:654 libraries/relation.lib.php:163 +#: libraries/messages.inc.php:650 libraries/relation.lib.php:163 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/messages.inc.php:655 libraries/relation.lib.php:159 +#: libraries/messages.inc.php:651 libraries/relation.lib.php:159 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/messages.inc.php:656 libraries/relation.lib.php:161 +#: libraries/messages.inc.php:652 libraries/relation.lib.php:161 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" -#: libraries/messages.inc.php:657 libraries/relation.lib.php:162 +#: libraries/messages.inc.php:653 libraries/relation.lib.php:162 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/messages.inc.php:658 libraries/relation.lib.php:164 +#: libraries/messages.inc.php:654 libraries/relation.lib.php:164 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/messages.inc.php:661 libraries/mysql_charsets.lib.php:274 +#: libraries/messages.inc.php:657 libraries/mysql_charsets.lib.php:274 msgid "Polish" msgstr "Польский" -#: libraries/messages.inc.php:662 libraries/replication_gui.lib.php:67 +#: libraries/messages.inc.php:658 libraries/replication_gui.lib.php:67 #: server_synchronize.php:1163 msgid "Port" msgstr "Порт" -#: libraries/messages.inc.php:667 tbl_indexes.php:67 +#: libraries/messages.inc.php:663 tbl_indexes.php:67 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Имя первичного индекса должно быть PRIMARY!" -#: libraries/messages.inc.php:668 tbl_indexes.php:184 +#: libraries/messages.inc.php:664 tbl_indexes.php:184 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "(Имя "PRIMARY" должен иметь только первичный индекс!)" -#: libraries/messages.inc.php:669 libraries/mult_submits.inc.php:76 +#: libraries/messages.inc.php:665 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:474 msgid "Primary" msgstr "Первичный" -#: libraries/messages.inc.php:673 server_privileges.php:227 +#: libraries/messages.inc.php:669 server_privileges.php:227 msgid "Includes all privileges except GRANT." msgstr "Содержит все привилегии, за исключением GRANT" -#: libraries/messages.inc.php:674 server_privileges.php:153 +#: libraries/messages.inc.php:670 server_privileges.php:153 #: server_privileges.php:476 msgid "Allows altering the structure of existing tables." msgstr "Разрешает изменение структуры существующих таблиц" -#: libraries/messages.inc.php:675 server_privileges.php:169 +#: libraries/messages.inc.php:671 server_privileges.php:169 #: server_privileges.php:482 msgid "Allows altering and dropping stored routines." msgstr "Разрешает изменение и удаление хранимых процедур" -#: libraries/messages.inc.php:676 server_privileges.php:145 +#: libraries/messages.inc.php:672 server_privileges.php:145 #: server_privileges.php:475 msgid "Allows creating new databases and tables." msgstr "Разрешает создание новых баз данных и таблиц" -#: libraries/messages.inc.php:677 server_privileges.php:168 +#: libraries/messages.inc.php:673 server_privileges.php:168 #: server_privileges.php:481 msgid "Allows creating stored routines." msgstr "Разрешает создание хранимых процедур" -#: libraries/messages.inc.php:678 server_privileges.php:475 +#: libraries/messages.inc.php:674 server_privileges.php:475 msgid "Allows creating new tables." msgstr "Разрешает создание новых таблиц" -#: libraries/messages.inc.php:679 server_privileges.php:156 +#: libraries/messages.inc.php:675 server_privileges.php:156 #: server_privileges.php:479 msgid "Allows creating temporary tables." msgstr "Разрешает создание временных таблиц" -#: libraries/messages.inc.php:680 server_privileges.php:170 +#: libraries/messages.inc.php:676 server_privileges.php:170 #: server_privileges.php:515 msgid "Allows creating, dropping and renaming user accounts." msgstr "" "Разрешает создание, удаление и переименование учетных записей пользователей" -#: libraries/messages.inc.php:681 server_privileges.php:160 +#: libraries/messages.inc.php:677 server_privileges.php:160 #: server_privileges.php:164 server_privileges.php:487 #: server_privileges.php:491 msgid "Allows creating new views." msgstr "Разрешает создание новых представлений (CREATE VIEW)" -#: libraries/messages.inc.php:682 server_privileges.php:144 +#: libraries/messages.inc.php:678 server_privileges.php:144 #: server_privileges.php:467 msgid "Allows deleting data." msgstr "Разрешает удаление данных" -#: libraries/messages.inc.php:683 server_privileges.php:146 +#: libraries/messages.inc.php:679 server_privileges.php:146 #: server_privileges.php:478 msgid "Allows dropping databases and tables." msgstr "Разрешает удаление баз данных и таблиц" -#: libraries/messages.inc.php:684 server_privileges.php:478 +#: libraries/messages.inc.php:680 server_privileges.php:478 msgid "Allows dropping tables." msgstr "Разрешает удаление таблиц" -#: libraries/messages.inc.php:685 server_privileges.php:161 +#: libraries/messages.inc.php:681 server_privileges.php:161 #: server_privileges.php:495 msgid "Allows to set up events for the event scheduler" msgstr "Разрешает настройку отложенных событий" -#: libraries/messages.inc.php:686 server_privileges.php:171 +#: libraries/messages.inc.php:682 server_privileges.php:171 #: server_privileges.php:483 msgid "Allows executing stored routines." msgstr "Разрешает выполнение хранимых процедур" -#: libraries/messages.inc.php:687 server_privileges.php:150 +#: libraries/messages.inc.php:683 server_privileges.php:150 #: server_privileges.php:470 msgid "Allows importing data from and exporting data into files." msgstr "Разрешает импорт и экспорт данных в файлы" -#: libraries/messages.inc.php:688 server_privileges.php:501 +#: libraries/messages.inc.php:684 server_privileges.php:501 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Разрешает добавление пользователей и привилегий без перезагрузки таблиц " "привилегий" -#: libraries/messages.inc.php:689 server_privileges.php:152 +#: libraries/messages.inc.php:685 server_privileges.php:152 #: server_privileges.php:477 msgid "Allows creating and dropping indexes." msgstr "Разрешает создание и удаление индексов" -#: libraries/messages.inc.php:690 server_privileges.php:142 +#: libraries/messages.inc.php:686 server_privileges.php:142 #: server_privileges.php:403 server_privileges.php:465 msgid "Allows inserting and replacing data." msgstr "Разрешает вставку и замену данных" -#: libraries/messages.inc.php:691 server_privileges.php:157 +#: libraries/messages.inc.php:687 server_privileges.php:157 #: server_privileges.php:510 msgid "Allows locking tables for the current thread." msgstr "Разрешает блокировку таблиц для текущего потока" -#: libraries/messages.inc.php:692 server_privileges.php:607 +#: libraries/messages.inc.php:688 server_privileges.php:607 #: server_privileges.php:609 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Максимальное количество новых подключений, которые пользователь может " "установить в течение часа" -#: libraries/messages.inc.php:693 server_privileges.php:595 +#: libraries/messages.inc.php:689 server_privileges.php:595 #: server_privileges.php:597 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Максимальное количество запросов, которые пользователь может отправить в " "течение часа" -#: libraries/messages.inc.php:694 server_privileges.php:601 +#: libraries/messages.inc.php:690 server_privileges.php:601 #: server_privileges.php:603 msgid "" "Limits the number of commands that change any table or database the user may " @@ -4711,57 +4711,57 @@ msgstr "" "Максимальное количество команд изменяющих какую-либо таблицу или базу " "данных, которые пользователь может выполнить в течение часа" -#: libraries/messages.inc.php:695 server_privileges.php:613 +#: libraries/messages.inc.php:691 server_privileges.php:613 #: server_privileges.php:615 msgid "Limits the number of simultaneous connections the user may have." msgstr "Максимальное количество одновременных подключений одного пользователя" -#: libraries/messages.inc.php:696 server_privileges.php:149 +#: libraries/messages.inc.php:692 server_privileges.php:149 #: server_privileges.php:505 msgid "Allows viewing processes of all users" msgstr "Разрешает просмотр процессов всех пользователей" -#: libraries/messages.inc.php:697 server_privileges.php:151 +#: libraries/messages.inc.php:693 server_privileges.php:151 #: server_privileges.php:409 server_privileges.php:511 msgid "Has no effect in this MySQL version." msgstr "Не доступно в данной версии MySQL!" -#: libraries/messages.inc.php:698 server_privileges.php:147 +#: libraries/messages.inc.php:694 server_privileges.php:147 #: server_privileges.php:506 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Разрешает перезагрузку настроек сервера и очистку его кешей" -#: libraries/messages.inc.php:699 server_privileges.php:159 +#: libraries/messages.inc.php:695 server_privileges.php:159 #: server_privileges.php:513 msgid "Allows the user to ask where the slaves / masters are." msgstr "Разрешает запрашивать местонахождение головного и подчиненных серверов" -#: libraries/messages.inc.php:700 server_privileges.php:158 +#: libraries/messages.inc.php:696 server_privileges.php:158 #: server_privileges.php:514 msgid "Needed for the replication slaves." msgstr "Необходимо для подчиненных серверов при репликации" -#: libraries/messages.inc.php:701 server_privileges.php:141 +#: libraries/messages.inc.php:697 server_privileges.php:141 #: server_privileges.php:400 server_privileges.php:464 msgid "Allows reading data." msgstr "Разрешает выборку данных" -#: libraries/messages.inc.php:702 server_privileges.php:154 +#: libraries/messages.inc.php:698 server_privileges.php:154 #: server_privileges.php:508 msgid "Gives access to the complete list of databases." msgstr "Разрешает доступ к полному списку баз данных" -#: libraries/messages.inc.php:703 server_privileges.php:165 +#: libraries/messages.inc.php:699 server_privileges.php:165 #: server_privileges.php:167 server_privileges.php:480 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Разрешает вывод запроса создающего представление (SHOW CREATE VIEW)" -#: libraries/messages.inc.php:704 server_privileges.php:148 +#: libraries/messages.inc.php:700 server_privileges.php:148 #: server_privileges.php:507 msgid "Allows shutting down the server." msgstr "Разрешает остановку сервера" -#: libraries/messages.inc.php:705 server_privileges.php:155 +#: libraries/messages.inc.php:701 server_privileges.php:155 #: server_privileges.php:504 msgid "" "Allows connecting, even if maximum number of connections is reached; " @@ -4773,55 +4773,55 @@ msgstr "" "установка глобальных переменных или завершение процессов других " "пользователей)" -#: libraries/messages.inc.php:706 server_privileges.php:162 +#: libraries/messages.inc.php:702 server_privileges.php:162 #: server_privileges.php:496 msgid "Allows creating and dropping triggers" msgstr "Разрешает создание и удаление триггеров" -#: libraries/messages.inc.php:707 server_privileges.php:143 +#: libraries/messages.inc.php:703 server_privileges.php:143 #: server_privileges.php:406 server_privileges.php:466 msgid "Allows changing data." msgstr "Разрешает изменение данных" -#: libraries/messages.inc.php:708 server_privileges.php:221 +#: libraries/messages.inc.php:704 server_privileges.php:221 msgid "No privileges." msgstr "Нет привилегий" -#: libraries/messages.inc.php:710 server_privileges.php:1296 +#: libraries/messages.inc.php:706 server_privileges.php:1296 msgid "The privileges were reloaded successfully." msgstr "Привилегии были успешно перезагружены." -#: libraries/messages.inc.php:712 libraries/server_links.inc.php:80 +#: libraries/messages.inc.php:708 libraries/server_links.inc.php:80 msgid "Processes" msgstr "Процессы" -#: libraries/messages.inc.php:714 main.php:187 +#: libraries/messages.inc.php:710 main.php:187 msgid "Protocol version" msgstr "Версия протокола" -#: libraries/messages.inc.php:715 +#: libraries/messages.inc.php:711 msgid "Put fields names in the first row" msgstr "Поместить названия полей в первой строке" -#: libraries/messages.inc.php:720 server_synchronize.php:1003 +#: libraries/messages.inc.php:716 server_synchronize.php:1003 msgid "The following queries have been executed:" msgstr "Выполнены следующие запросы:" -#: libraries/messages.inc.php:721 server_status.php:251 +#: libraries/messages.inc.php:717 server_status.php:251 msgid "Query cache" msgstr "Кеш запросов" -#: libraries/messages.inc.php:722 libraries/navigation_header.inc.php:80 +#: libraries/messages.inc.php:718 libraries/navigation_header.inc.php:80 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 setup/lib/messages.inc.php:122 msgid "Query window" msgstr "Окно запроса" -#: libraries/messages.inc.php:725 querywindow.php:109 querywindow.php:217 +#: libraries/messages.inc.php:721 querywindow.php:109 querywindow.php:217 msgid "SQL history" msgstr "История SQL-запросов" -#: libraries/messages.inc.php:726 server_status.php:490 +#: libraries/messages.inc.php:722 server_status.php:490 #, php-format msgid "" "Query statistics: Since its startup, %s queries have been sent to the " @@ -4830,95 +4830,95 @@ msgstr "" "Статистика запросов: со времени запуска, на сервер было отослано запросов - %" "s." -#: libraries/messages.inc.php:728 server_status.php:554 +#: libraries/messages.inc.php:724 server_status.php:554 msgid "Query type" msgstr "Тип запроса" -#: libraries/messages.inc.php:729 libraries/sql_query_form.lib.php:381 +#: libraries/messages.inc.php:725 libraries/sql_query_form.lib.php:381 msgid "Do not overwrite this query from outside the window" msgstr "Заблокировать содержимое окна запросов" -#: libraries/messages.inc.php:732 tbl_operations.php:663 +#: libraries/messages.inc.php:728 tbl_operations.php:663 msgid "Rebuild" msgstr "Перестройка" -#: libraries/messages.inc.php:733 server_status.php:394 +#: libraries/messages.inc.php:729 server_status.php:394 msgid "Received" msgstr "Принято" -#: libraries/messages.inc.php:734 pmd_pdf.php:89 +#: libraries/messages.inc.php:730 pmd_pdf.php:89 msgid "recommended" msgstr "рекомендуемый" -#: libraries/messages.inc.php:736 tbl_operations.php:702 +#: libraries/messages.inc.php:732 tbl_operations.php:702 msgid "Check referential integrity:" msgstr "Проверить целостность данных:" -#: libraries/messages.inc.php:740 pdf_schema.php:1032 pdf_schema.php:1141 +#: libraries/messages.inc.php:736 pdf_schema.php:1032 pdf_schema.php:1141 msgid "Relational schema" msgstr "Cхема связей" -#: libraries/messages.inc.php:744 tbl_relation.php:399 +#: libraries/messages.inc.php:740 tbl_relation.php:399 msgid "Relations" msgstr "Связи" -#: libraries/messages.inc.php:745 tbl_structure.php:507 tbl_structure.php:509 +#: libraries/messages.inc.php:741 tbl_structure.php:507 tbl_structure.php:509 msgid "Relation view" msgstr "Связи" -#: libraries/messages.inc.php:746 server_privileges.php:1246 +#: libraries/messages.inc.php:742 server_privileges.php:1246 msgid "Reloading the privileges" msgstr "Перезагрузка привилегий" -#: libraries/messages.inc.php:747 navigation.php:66 navigation.php:67 +#: libraries/messages.inc.php:743 navigation.php:66 navigation.php:67 #: navigation.php:70 #, fuzzy msgid "Reload navigation frame" msgstr "Модифицировать фрейм навигации" -#: libraries/messages.inc.php:748 pmd_general.php:80 +#: libraries/messages.inc.php:744 pmd_general.php:80 msgid "Reload" msgstr "Обновить" -#: libraries/messages.inc.php:749 libraries/server_synchronize.lib.php:1345 +#: libraries/messages.inc.php:745 libraries/server_synchronize.lib.php:1345 #: libraries/server_synchronize.lib.php:1371 msgid "Remote server" msgstr "Удалённый сервер" -#: libraries/messages.inc.php:750 +#: libraries/messages.inc.php:746 msgid "Remove CRLF characters within fields" msgstr "Удалите из полей символы CRLF" -#: libraries/messages.inc.php:751 tbl_operations.php:676 +#: libraries/messages.inc.php:747 tbl_operations.php:676 msgid "Remove partitioning" msgstr "Удалить разделение" -#: libraries/messages.inc.php:752 server_privileges.php:1575 +#: libraries/messages.inc.php:748 server_privileges.php:1575 msgid "Remove selected users" msgstr "Удалить выделенных пользователей" -#: libraries/messages.inc.php:755 tbl_operations.php:338 +#: libraries/messages.inc.php:751 tbl_operations.php:338 msgid "Rename table to" msgstr "Переименовать таблицу в" -#: libraries/messages.inc.php:756 view_operations.php:93 +#: libraries/messages.inc.php:752 view_operations.php:93 #, fuzzy msgid "Rename view to" msgstr "Переименовать таблицу в" -#: libraries/messages.inc.php:757 tbl_operations.php:664 +#: libraries/messages.inc.php:753 tbl_operations.php:664 msgid "Repair" msgstr "Исправление" -#: libraries/messages.inc.php:759 +#: libraries/messages.inc.php:755 msgid "Replace NULL by" msgstr "Заменить NULL на" -#: libraries/messages.inc.php:760 +#: libraries/messages.inc.php:756 msgid "Replace table data with file" msgstr "Заместить данные таблицы данными из файла" -#: libraries/messages.inc.php:761 server_replication.php:228 +#: libraries/messages.inc.php:757 server_replication.php:228 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -4926,45 +4926,45 @@ msgstr "" "Теперь добавьте данные строки в конец конфигурационного файла my.cnf, после " "чего перезапустите сервер MySQL." -#: libraries/messages.inc.php:762 libraries/replication_gui.lib.php:236 +#: libraries/messages.inc.php:758 libraries/replication_gui.lib.php:236 #: server_replication.php:194 msgid "Add slave replication user" msgstr "Добавьте подчиненного пользователя репликации" -#: libraries/messages.inc.php:763 server_replication.php:74 +#: libraries/messages.inc.php:759 server_replication.php:74 #, php-format msgid "Master server changed succesfully to %s" msgstr "Головной сервер успешно изменён на %s" -#: libraries/messages.inc.php:764 server_replication.php:182 +#: libraries/messages.inc.php:760 server_replication.php:182 msgid "This server is configured as master in a replication process." msgstr "Данный сервер настроен головным в процессе репликации." -#: libraries/messages.inc.php:765 server_replication.php:322 +#: libraries/messages.inc.php:761 server_replication.php:322 msgid "Control slave:" msgstr "Контролировать подчинённый сервер:" -#: libraries/messages.inc.php:766 server_replication.php:65 +#: libraries/messages.inc.php:762 server_replication.php:65 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" "Невозможно прочесть позицию журнала у головного сервера. Вероятно проблема в " "настройке привилегий головного сервера." -#: libraries/messages.inc.php:767 server_replication.php:58 +#: libraries/messages.inc.php:763 server_replication.php:58 #, php-format msgid "Unable to connect to master %s." msgstr "Невозможно соединиться с головным сервером %s." -#: libraries/messages.inc.php:768 server_replication.php:221 +#: libraries/messages.inc.php:764 server_replication.php:221 msgid "Replicate all databases; Ignore:" msgstr "Репликация всех баз данных; игнорировать:" -#: libraries/messages.inc.php:769 server_replication.php:222 +#: libraries/messages.inc.php:765 server_replication.php:222 msgid "Ignore all databases; Replicate:" msgstr "Игнорировать все базы данных; репликация:" -#: libraries/messages.inc.php:770 server_replication.php:218 +#: libraries/messages.inc.php:766 server_replication.php:218 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -4978,16 +4978,16 @@ msgstr "" "выбрать игнорирование всех баз данных по умолчанию и разрешение для " "репликации только определенных. Пожалуйста, выберите желаемый режим:" -#: libraries/messages.inc.php:771 server_replication.php:217 +#: libraries/messages.inc.php:767 server_replication.php:217 msgid "Master configuration" msgstr "Настройка головного сервера" -#: libraries/messages.inc.php:772 server_replication.php:181 +#: libraries/messages.inc.php:768 server_replication.php:181 #: server_replication.php:209 msgid "Master replication" msgstr "Репликация головного сервера" -#: libraries/messages.inc.php:774 server_replication.php:230 +#: libraries/messages.inc.php:770 server_replication.php:230 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " @@ -4997,11 +4997,11 @@ msgstr "" "чего вы должны увидеть сообщение указывающее, что данный сервер настроен как головной." -#: libraries/messages.inc.php:775 server_replication.php:225 +#: libraries/messages.inc.php:771 server_replication.php:225 msgid "Please select databases:" msgstr "Пожалуйста, выберите базы данных:" -#: libraries/messages.inc.php:776 server_replication.php:210 +#: libraries/messages.inc.php:772 server_replication.php:210 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -5010,7 +5010,7 @@ msgstr "" "Данный сервер не настроен в качестве головного для процесса репликации. " "Хотите произвести настройку?" -#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:188 +#: libraries/messages.inc.php:773 libraries/replication_gui.lib.php:188 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." @@ -5018,51 +5018,51 @@ msgstr "" "Только подчиненные сервера запущенные с ключом --report-host=host_name " "option видимы в данном списке." -#: libraries/messages.inc.php:778 server_replication.php:187 +#: libraries/messages.inc.php:774 server_replication.php:187 msgid "Show connected slaves" msgstr "Показать соединённые подчиненные сервера" -#: libraries/messages.inc.php:779 libraries/messages.inc.php:885 +#: libraries/messages.inc.php:775 libraries/messages.inc.php:881 #: server_replication.php:184 server_status.php:281 msgid "Show master status" msgstr "Показать состояние головного сервера" -#: libraries/messages.inc.php:780 server_replication.php:334 +#: libraries/messages.inc.php:776 server_replication.php:334 msgid "Skipping error(s) might lead into unsynchronized master and slave!" msgstr "" "Игнорирование ошибок может привести к рассинхронизации головного и " "подчинённого сервера!" -#: libraries/messages.inc.php:781 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:51 #: server_replication.php:347 msgid "Change or reconfigure master server" msgstr "Изменить, или перенастроить головной сервер" -#: libraries/messages.inc.php:782 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:778 libraries/replication_gui.lib.php:51 msgid "Slave configuration" msgstr "Настройка подчиненного сервера" -#: libraries/messages.inc.php:783 server_replication.php:305 +#: libraries/messages.inc.php:779 server_replication.php:305 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" "Сервер настроен в качестве подчиненного для процесса репликации. Произвести " "действие:" -#: libraries/messages.inc.php:784 server_replication.php:332 +#: libraries/messages.inc.php:780 server_replication.php:332 msgid "Error management:" msgstr "Управление ошибками:" -#: libraries/messages.inc.php:785 server_replication.php:328 +#: libraries/messages.inc.php:781 server_replication.php:328 #, php-format msgid "IO Thread %s only" msgstr "IO только поток %s" -#: libraries/messages.inc.php:786 server_replication.php:296 +#: libraries/messages.inc.php:782 server_replication.php:296 msgid "Slave IO Thread not running!" msgstr "" -#: libraries/messages.inc.php:787 server_replication.php:355 +#: libraries/messages.inc.php:783 server_replication.php:355 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -5071,40 +5071,40 @@ msgstr "" "Данный сервер не настроен в качестве подчинённого для процесса репликации. " "Хотите произвести настройку?" -#: libraries/messages.inc.php:788 server_replication.php:326 +#: libraries/messages.inc.php:784 server_replication.php:326 msgid "Reset slave" msgstr "Сбросить подчиненный сервер" -#: libraries/messages.inc.php:789 server_replication.php:308 +#: libraries/messages.inc.php:785 server_replication.php:308 msgid "See slave status table" msgstr "Смотрите таблицу состояния подчинённого сервера" -#: libraries/messages.inc.php:790 server_replication.php:336 +#: libraries/messages.inc.php:786 server_replication.php:336 msgid "Skip current error" msgstr "Игнорировать текущую ошибку" -#: libraries/messages.inc.php:791 server_replication.php:340 +#: libraries/messages.inc.php:787 server_replication.php:340 msgid "errors." msgstr "ошибки." -#: libraries/messages.inc.php:792 server_replication.php:337 +#: libraries/messages.inc.php:788 server_replication.php:337 msgid "Skip next" msgstr "Пропустить следующую" -#: libraries/messages.inc.php:793 server_replication.php:248 +#: libraries/messages.inc.php:789 server_replication.php:248 msgid "Slave replication" msgstr "Репликация подчинённого сервера" -#: libraries/messages.inc.php:794 server_replication.php:293 +#: libraries/messages.inc.php:790 server_replication.php:293 msgid "Slave SQL Thread not running!" msgstr "" -#: libraries/messages.inc.php:795 server_replication.php:327 +#: libraries/messages.inc.php:791 server_replication.php:327 #, php-format msgid "SQL Thread %s only" msgstr "SQL только поток %s" -#: libraries/messages.inc.php:796 +#: libraries/messages.inc.php:792 #, php-format msgid "" "This MySQL server works as %s in replication process. For further " @@ -5115,170 +5115,170 @@ msgstr "" "получения подробной информации о состоянии репликации сервера, пожалуйста, " "перейдите в раздел репликации." -#: libraries/messages.inc.php:797 +#: libraries/messages.inc.php:793 msgid "Master status" msgstr "Статус Master" -#: libraries/messages.inc.php:798 server_status.php:721 +#: libraries/messages.inc.php:794 server_status.php:721 msgid "Replication status" msgstr "Состояние репликации" -#: libraries/messages.inc.php:799 +#: libraries/messages.inc.php:795 msgid "Slave status" msgstr "Статус Slave" -#: libraries/messages.inc.php:800 server_replication.php:311 +#: libraries/messages.inc.php:796 server_replication.php:311 msgid "Synchronize databases with master" msgstr "Синхронизировать базы данных с головным сервером" -#: libraries/messages.inc.php:801 server_replication.php:71 +#: libraries/messages.inc.php:797 server_replication.php:71 msgid "Unable to change master" msgstr "Невозможно изменить головной сервер" -#: libraries/messages.inc.php:802 server_replication.php:51 +#: libraries/messages.inc.php:798 server_replication.php:51 msgid "Unknown error" msgstr "Неизвестная ошибка" -#: libraries/messages.inc.php:803 main.php:163 pdf_pages.php:344 +#: libraries/messages.inc.php:799 main.php:163 pdf_pages.php:344 #: setup/lib/FormDisplay.tpl.php:216 tbl_change.php:1175 msgid "Reset" msgstr "Сбросить" -#: libraries/messages.inc.php:804 server_privileges.php:591 +#: libraries/messages.inc.php:800 server_privileges.php:591 msgid "Resource limits" msgstr "Ограничение на использование ресурсов" -#: libraries/messages.inc.php:805 tbl_change.php:1209 +#: libraries/messages.inc.php:801 tbl_change.php:1209 #, php-format msgid "Restart insertion with %s rows" msgstr "Количество вставляемых строк: %s" -#: libraries/messages.inc.php:807 server_privileges.php:1578 +#: libraries/messages.inc.php:803 server_privileges.php:1578 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Отменить все активные привилегии пользователей и затем удалить их." -#: libraries/messages.inc.php:808 server_privileges.php:1176 +#: libraries/messages.inc.php:804 server_privileges.php:1176 #, php-format msgid "You have revoked the privileges for %s" msgstr "Отменены привилегии для %s." -#: libraries/messages.inc.php:809 server_privileges.php:1333 +#: libraries/messages.inc.php:805 server_privileges.php:1333 msgid "Revoke" msgstr "Отменить" -#: libraries/messages.inc.php:810 libraries/mysql_charsets.lib.php:280 +#: libraries/messages.inc.php:806 libraries/mysql_charsets.lib.php:280 msgid "Romanian" msgstr "Румынский" -#: libraries/messages.inc.php:813 tbl_printview.php:404 tbl_structure.php:786 +#: libraries/messages.inc.php:809 tbl_printview.php:404 tbl_structure.php:786 msgid "Row length" msgstr "Длина строки" -#: libraries/messages.inc.php:815 tbl_printview.php:414 tbl_structure.php:794 +#: libraries/messages.inc.php:811 tbl_printview.php:414 tbl_structure.php:794 msgid " Row size " msgstr "Размер строки" -#: libraries/messages.inc.php:821 tbl_printview.php:366 tbl_structure.php:726 +#: libraries/messages.inc.php:817 tbl_printview.php:366 tbl_structure.php:726 msgid "Row Statistics" msgstr "Статистика строк" -#: libraries/messages.inc.php:822 +#: libraries/messages.inc.php:818 #, php-format msgid "running on %s" msgstr "на %s" -#: libraries/messages.inc.php:824 libraries/sql_query_form.lib.php:223 +#: libraries/messages.inc.php:820 libraries/sql_query_form.lib.php:223 #, php-format msgid "Run SQL query/queries on server %s" msgstr "Выполнить SQL-запрос(ы) на сервере %s" -#: libraries/messages.inc.php:825 libraries/sql_query_form.lib.php:240 +#: libraries/messages.inc.php:821 libraries/sql_query_form.lib.php:240 #: libraries/sql_query_form.lib.php:265 #, php-format msgid "Run SQL query/queries on database %s" msgstr "Выполнить SQL-запрос(ы) к базе данных %s" -#: libraries/messages.inc.php:826 libraries/mysql_charsets.lib.php:337 +#: libraries/messages.inc.php:822 libraries/mysql_charsets.lib.php:337 msgid "Russian" msgstr "Русский" -#: libraries/messages.inc.php:829 pmd_general.php:68 +#: libraries/messages.inc.php:825 pmd_general.php:68 msgid "Save position" msgstr "Сохранить расположение таблиц" -#: libraries/messages.inc.php:830 libraries/tbl_properties.inc.php:776 +#: libraries/messages.inc.php:826 libraries/tbl_properties.inc.php:776 #: pdf_pages.php:484 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:214 setup/lib/FormDisplay.tpl.php:215 #: tbl_change.php:1126 tbl_indexes.php:248 tbl_relation.php:566 msgid "Save" msgstr "Сохранить" -#: libraries/messages.inc.php:831 +#: libraries/messages.inc.php:827 msgid "The scale factor is too small to fit the schema on one page" msgstr "Схема не помещается на одной странице. Необходимо уменьшить масштаб." -#: libraries/messages.inc.php:843 main.php:298 +#: libraries/messages.inc.php:839 main.php:298 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "При cookie-аутентификации, в конфигурационном файле необходимо задать " "парольную фразу установив значение директивы $cfg['blowfish_secret']." -#: libraries/messages.inc.php:844 navigation.php:353 navigation.php:516 +#: libraries/messages.inc.php:840 navigation.php:353 navigation.php:516 msgid "Please select a database" msgstr "Выберите базу данных" -#: libraries/messages.inc.php:846 server_binlog.php:120 +#: libraries/messages.inc.php:842 server_binlog.php:120 msgid "Select binary log to view" msgstr "Выберите бинарный журнал для просмотра" -#: libraries/messages.inc.php:847 tbl_select.php:270 +#: libraries/messages.inc.php:843 tbl_select.php:270 msgid "Select fields (at least one):" msgstr "Выберите поля (не менее одного):" -#: libraries/messages.inc.php:851 pdf_pages.php:320 +#: libraries/messages.inc.php:847 pdf_pages.php:320 msgid "Select Tables" msgstr "Выберите таблицы" -#: libraries/messages.inc.php:853 server_status.php:404 +#: libraries/messages.inc.php:849 server_status.php:404 msgid "Sent" msgstr "Отправлено" -#: libraries/messages.inc.php:857 libraries/select_server.lib.php:45 +#: libraries/messages.inc.php:853 libraries/select_server.lib.php:45 #: setup/frames/index.inc.php:97 setup/lib/messages.inc.php:115 msgid "Servers" msgstr "Сервера" -#: libraries/messages.inc.php:858 server_status.php:255 +#: libraries/messages.inc.php:854 server_status.php:255 msgid "Delayed inserts" msgstr "Отложенные вставки" -#: libraries/messages.inc.php:859 server_status.php:46 +#: libraries/messages.inc.php:855 server_status.php:46 msgid "Runtime Information" msgstr "Текущее состояние MySQL" -#: libraries/messages.inc.php:860 server_status.php:350 +#: libraries/messages.inc.php:856 server_status.php:350 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "MySQL сервер работает %s. Время запуска: %s." -#: libraries/messages.inc.php:861 libraries/server_links.inc.php:53 +#: libraries/messages.inc.php:857 libraries/server_links.inc.php:53 #: server_engines.php:112 server_engines.php:116 server_status.php:304 #: test/theme.php:105 msgid "Variables" msgstr "Переменные" -#: libraries/messages.inc.php:862 server_status.php:383 +#: libraries/messages.inc.php:858 server_status.php:383 msgid "" "Server traffic: These tables show the network traffic statistics of " "this MySQL server since its startup." msgstr "" "Трафик: статистика по сетевому трафику MySQL-сервера со времени его запуска." -#: libraries/messages.inc.php:863 server_variables.php:35 +#: libraries/messages.inc.php:859 server_variables.php:35 msgid "Server variables and settings" msgstr "Серверные переменные и настройки" -#: libraries/messages.inc.php:865 main.php:290 +#: libraries/messages.inc.php:861 main.php:290 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -5290,7 +5290,7 @@ msgstr "" "cookie определенная в phpMyAdmin, по этой причине, данные входа истекут " "быстрее установленных." -#: libraries/messages.inc.php:866 +#: libraries/messages.inc.php:862 msgid "" "Cannot start session without errors, please check errors given in your PHP " "and/or webserver log file and configure your PHP installation properly." @@ -5299,11 +5299,11 @@ msgstr "" "или Веб-сервера на наличие ошибок, и произведите их корректное " "конфигурирование." -#: libraries/messages.inc.php:867 server_variables.php:55 +#: libraries/messages.inc.php:863 server_variables.php:55 msgid "Session value" msgstr "Значение сессии" -#: libraries/messages.inc.php:868 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:864 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 " @@ -5315,45 +5315,45 @@ msgstr "" "одинарной кавычки (') необходимо экранировать (предварять) символом обратной " "косой черты, например: '\\\\xyz' или 'a\\'b'." -#: libraries/messages.inc.php:876 server_binlog.php:192 server_binlog.php:195 +#: libraries/messages.inc.php:872 server_binlog.php:192 server_binlog.php:195 #: server_processlist.php:49 server_processlist.php:51 msgid "Show Full Queries" msgstr "Развернутое отображение запросов" -#: libraries/messages.inc.php:878 pmd_general.php:64 +#: libraries/messages.inc.php:874 pmd_general.php:64 msgid "Show/Hide left menu" msgstr "Показать/скрыть левое меню" -#: libraries/messages.inc.php:880 sql.php:513 +#: libraries/messages.inc.php:876 sql.php:513 msgid "Showing as PHP code" msgstr "Отображает как PHP-код" -#: libraries/messages.inc.php:882 sql.php:516 tbl_replace.php:360 +#: libraries/messages.inc.php:878 sql.php:516 tbl_replace.php:360 msgid "Showing SQL query" msgstr "Отображает SQL-запрос" -#: libraries/messages.inc.php:883 tbl_change.php:1132 +#: libraries/messages.inc.php:879 tbl_change.php:1132 #, fuzzy msgid "Show insert query" msgstr "Отображает SQL-запрос" -#: libraries/messages.inc.php:886 server_status.php:273 +#: libraries/messages.inc.php:882 server_status.php:273 msgid "Show open tables" msgstr "Список открытых таблиц" -#: libraries/messages.inc.php:887 main.php:219 +#: libraries/messages.inc.php:883 main.php:219 msgid "Show PHP information" msgstr "Показать информацию PHP" -#: libraries/messages.inc.php:889 server_status.php:278 +#: libraries/messages.inc.php:885 server_status.php:278 msgid "Show slave hosts" msgstr "Информация о подчиненных серверах" -#: libraries/messages.inc.php:890 server_status.php:284 +#: libraries/messages.inc.php:886 server_status.php:284 msgid "Show slave status" msgstr "Информация о состоянии сервера репликации" -#: libraries/messages.inc.php:891 +#: libraries/messages.inc.php:887 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -5363,11 +5363,11 @@ msgstr "" "значение binlog_cache_size, вследствие чего содержащиеся в них SQL-выражения " "были сохранены во временном файле." -#: libraries/messages.inc.php:892 +#: libraries/messages.inc.php:888 msgid "The number of transactions that used the temporary binary log cache." msgstr "Количество транзакций, использовавших кеш бинарного журнала." -#: libraries/messages.inc.php:893 +#: libraries/messages.inc.php:889 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -5379,11 +5379,11 @@ msgstr "" "велико, следует увеличить значение переменной tmp_table_size, чтобы " "временные таблицы располагались в памяти, а не на жестком диске." -#: libraries/messages.inc.php:894 +#: libraries/messages.inc.php:890 msgid "How many temporary files mysqld has created." msgstr "Количество временных файлов, созданных MySQL-сервером (mysqld)." -#: libraries/messages.inc.php:895 +#: libraries/messages.inc.php:891 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -5391,7 +5391,7 @@ msgstr "" "Количество временных таблиц в памяти, созданных сервером автоматически в " "процессе выполнения SQL-выражений." -#: libraries/messages.inc.php:896 +#: libraries/messages.inc.php:892 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -5399,31 +5399,31 @@ msgstr "" "Количество ошибок, возникших в процессе обработки запросов INSERT DELAYED, " "например, из-за дублирования ключей." -#: libraries/messages.inc.php:897 +#: libraries/messages.inc.php:893 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "Количество обрабатываемых запросов INSERT DELAYED." -#: libraries/messages.inc.php:898 +#: libraries/messages.inc.php:894 msgid "The number of INSERT DELAYED rows written." msgstr "" "Количество строк записанных в режиме отложенной вставки данных (INSERT " "DELAYED)." -#: libraries/messages.inc.php:899 +#: libraries/messages.inc.php:895 msgid "The number of executed FLUSH statements." msgstr "Количество выполненных команд FLUSH." -#: libraries/messages.inc.php:900 +#: libraries/messages.inc.php:896 msgid "The number of internal COMMIT statements." msgstr "Количество внутренних команд COMMIT." -#: libraries/messages.inc.php:901 +#: libraries/messages.inc.php:897 msgid "The number of times a row was deleted from a table." msgstr "Количество запросов на удаление строк из таблицы." -#: libraries/messages.inc.php:902 +#: libraries/messages.inc.php:898 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -5433,7 +5433,7 @@ msgstr "" "определенным именем. Этот процесс называется обнаружением. Handler_discover " "- число обнаружений таблиц." -#: libraries/messages.inc.php:903 +#: libraries/messages.inc.php:899 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -5444,7 +5444,7 @@ msgstr "" "индекса. Например, SELECT col1 FROM foo, при условии, что col1 " "проиндексирован." -#: libraries/messages.inc.php:904 +#: libraries/messages.inc.php:900 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -5453,7 +5453,7 @@ msgstr "" "значение переменной говорит о том, что запросы и таблицы проиндексированы " "надлежащим образом." -#: libraries/messages.inc.php:905 +#: libraries/messages.inc.php:901 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -5463,7 +5463,7 @@ msgstr "" "индексов. Значение увеличивается при запросе индексного столбца с " "ограничением по размеру или при сканировании индекса." -#: libraries/messages.inc.php:906 +#: libraries/messages.inc.php:902 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -5471,7 +5471,7 @@ msgstr "" "Количество запросов на чтение предыдущей строки при ниспадающей сортировке " "индекса. Обычно используется при оптимизации: ORDER BY ... DESC." -#: libraries/messages.inc.php:907 +#: libraries/messages.inc.php:903 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -5484,7 +5484,7 @@ msgstr "" "требующих полного сканирования таблиц, наличием объединений не использующих " "индексы надлежащим образом." -#: libraries/messages.inc.php:908 +#: libraries/messages.inc.php:904 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -5496,39 +5496,39 @@ msgstr "" "что таблицы не проиндексированы надлежащим образом или запросы не используют " "преимущества индексов." -#: libraries/messages.inc.php:909 +#: libraries/messages.inc.php:905 msgid "The number of internal ROLLBACK statements." msgstr "Количество внутренних команд ROLLBACK." -#: libraries/messages.inc.php:910 +#: libraries/messages.inc.php:906 msgid "The number of requests to update a row in a table." msgstr "Количество запросов на обновление строк в таблице." -#: libraries/messages.inc.php:911 +#: libraries/messages.inc.php:907 msgid "The number of requests to insert a row in a table." msgstr "Количество запросов на вставку строк в таблицу." -#: libraries/messages.inc.php:912 +#: libraries/messages.inc.php:908 msgid "The number of pages containing data (dirty or clean)." msgstr "" "Количество страниц содержащих данные ("грязные" или "" "чистые")." -#: libraries/messages.inc.php:913 +#: libraries/messages.inc.php:909 msgid "The number of pages currently dirty." msgstr "Текущее количество "грязных" страниц." -#: libraries/messages.inc.php:914 +#: libraries/messages.inc.php:910 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" "Количество страниц буферного пула, над которыми был осуществлен процесс " "очистки (FLUSH)." -#: libraries/messages.inc.php:915 +#: libraries/messages.inc.php:911 msgid "The number of free pages." msgstr "Количество свободных страниц." -#: libraries/messages.inc.php:916 +#: libraries/messages.inc.php:912 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -5538,7 +5538,7 @@ msgstr "" "страницами осуществляется процесс чтения или записи, либо они не могут быть " "очищены или удалены по какой-либо другой причине." -#: libraries/messages.inc.php:917 +#: libraries/messages.inc.php:913 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -5550,11 +5550,11 @@ msgstr "" "Значение можно рассчитать по формуле: Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: libraries/messages.inc.php:918 +#: libraries/messages.inc.php:914 msgid "Total size of buffer pool, in pages." msgstr "Общий размер буферного пула (в страницах)." -#: libraries/messages.inc.php:919 +#: libraries/messages.inc.php:915 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -5563,7 +5563,7 @@ msgstr "" "Это происходит, когда запрос сканирует большую часть таблицы в случайном " "порядке." -#: libraries/messages.inc.php:920 +#: libraries/messages.inc.php:916 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -5572,11 +5572,11 @@ msgstr "" "происходит, когда InnoDB выполняет полное последовательное сканирование " "таблицы." -#: libraries/messages.inc.php:921 +#: libraries/messages.inc.php:917 msgid "The number of logical read requests InnoDB has done." msgstr "Количество последовательных запросов на чтение, выполненных InnoDB." -#: libraries/messages.inc.php:922 +#: libraries/messages.inc.php:918 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -5584,7 +5584,7 @@ msgstr "" "Количество последовательных запросов на чтение, которые InnoDB не смог " "выполнить из буферного пула и использовал постраничное чтение." -#: libraries/messages.inc.php:923 +#: libraries/messages.inc.php:919 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -5598,55 +5598,55 @@ msgstr "" "ожиданий. Если размер буферного пула был установлен должным образом, " "значение будет небольшим." -#: libraries/messages.inc.php:924 +#: libraries/messages.inc.php:920 msgid "The number writes done to the InnoDB buffer pool." msgstr "Количество записей, выполненных в буферный пул InnoDB." -#: libraries/messages.inc.php:925 +#: libraries/messages.inc.php:921 msgid "The number of fsync() operations so far." msgstr "Количество операций fsync(), выполненных на данный момент." -#: libraries/messages.inc.php:926 +#: libraries/messages.inc.php:922 msgid "The current number of pending fsync() operations." msgstr "Текущее количество незавершенных операций fsync()." -#: libraries/messages.inc.php:927 +#: libraries/messages.inc.php:923 msgid "The current number of pending reads." msgstr "Текущее количество незавершенных операций чтения." -#: libraries/messages.inc.php:928 +#: libraries/messages.inc.php:924 msgid "The current number of pending writes." msgstr "Текущее количество незавершенных операций записи." -#: libraries/messages.inc.php:929 +#: libraries/messages.inc.php:925 msgid "The amount of data read so far, in bytes." msgstr "Сумма данных (в байтах), прочитанных на данный момент." -#: libraries/messages.inc.php:930 +#: libraries/messages.inc.php:926 msgid "The total number of data reads." msgstr "Общее количество операций чтения данных." -#: libraries/messages.inc.php:931 +#: libraries/messages.inc.php:927 msgid "The total number of data writes." msgstr "Общее количество операций записи данных." -#: libraries/messages.inc.php:932 +#: libraries/messages.inc.php:928 msgid "The amount of data written so far, in bytes." msgstr "Сумма данных (в байтах), записанных на данный момент." -#: libraries/messages.inc.php:933 +#: libraries/messages.inc.php:929 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Количество записей в буфер doublewrite, и количество созданных для этого " "страниц." -#: libraries/messages.inc.php:934 +#: libraries/messages.inc.php:930 msgid "The number of doublewrite operations that have been performed." msgstr "" "Количество записей в буфер doublewrite, и количество созданных для этого " "страниц." -#: libraries/messages.inc.php:935 +#: libraries/messages.inc.php:931 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -5654,36 +5654,36 @@ msgstr "" "Количество ожиданий очистки журнального буфера, вследствие малого его " "размера." -#: libraries/messages.inc.php:936 +#: libraries/messages.inc.php:932 msgid "The number of log write requests." msgstr "Количество запросов на запись в журнал." -#: libraries/messages.inc.php:937 +#: libraries/messages.inc.php:933 msgid "The number of physical writes to the log file." msgstr "Количество физических записей в файл журнала." -#: libraries/messages.inc.php:938 +#: libraries/messages.inc.php:934 msgid "The number of fsync() writes done to the log file." msgstr "Количество записей с помощью fsync(), сделанных в файл журнала." -#: libraries/messages.inc.php:939 +#: libraries/messages.inc.php:935 msgid "The number of pending log file fsyncs." msgstr "" "Количество незавершенных попыток синхронизации с помощью операции fsync()." -#: libraries/messages.inc.php:940 +#: libraries/messages.inc.php:936 msgid "Pending log file writes." msgstr "Количество незавершенных запросов на запись в журнал." -#: libraries/messages.inc.php:941 +#: libraries/messages.inc.php:937 msgid "The number of bytes written to the log file." msgstr "Объем данных в байтах, записанных в файл журнала." -#: libraries/messages.inc.php:942 +#: libraries/messages.inc.php:938 msgid "The number of pages created." msgstr "Количество созданных страниц." -#: libraries/messages.inc.php:943 +#: libraries/messages.inc.php:939 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -5692,51 +5692,51 @@ msgstr "" "приводятся в страницах, но зная объем страницы, можно перевести эти значения " "в байты." -#: libraries/messages.inc.php:944 +#: libraries/messages.inc.php:940 msgid "The number of pages read." msgstr "Количество прочитанных страниц." -#: libraries/messages.inc.php:945 +#: libraries/messages.inc.php:941 msgid "The number of pages written." msgstr "Количество записанных страниц." -#: libraries/messages.inc.php:946 +#: libraries/messages.inc.php:942 msgid "The number of row locks currently being waited for." msgstr "Текущее количество ожиданий блокировок строк." -#: libraries/messages.inc.php:947 +#: libraries/messages.inc.php:943 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Среднее время ожидания блокировки строк (в миллисекундах)." -#: libraries/messages.inc.php:948 +#: libraries/messages.inc.php:944 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Общее время, ожидания блокировок строк (в миллисекундах)." -#: libraries/messages.inc.php:949 +#: libraries/messages.inc.php:945 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Максимальное время ожидания блокировки строк (в миллисекундах)." -#: libraries/messages.inc.php:950 +#: libraries/messages.inc.php:946 msgid "The number of times a row lock had to be waited for." msgstr "Общее количество ожиданий блокировки строк." -#: libraries/messages.inc.php:951 +#: libraries/messages.inc.php:947 msgid "The number of rows deleted from InnoDB tables." msgstr "Количество строк, удаленных из таблиц InnoDB." -#: libraries/messages.inc.php:952 +#: libraries/messages.inc.php:948 msgid "The number of rows inserted in InnoDB tables." msgstr "Количество строк, добавленных в таблицы InnoDB." -#: libraries/messages.inc.php:953 +#: libraries/messages.inc.php:949 msgid "The number of rows read from InnoDB tables." msgstr "Количество строк, прочитанных из таблиц InnoDB." -#: libraries/messages.inc.php:954 +#: libraries/messages.inc.php:950 msgid "The number of rows updated in InnoDB tables." msgstr "Количество строк, обновленных в таблицах InnoDB." -#: libraries/messages.inc.php:955 +#: libraries/messages.inc.php:951 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -5744,7 +5744,7 @@ msgstr "" "Количество блоков в кеше индекса, которые были изменены, но еще не записаны " "на диск. Данный параметр также известен как Not_flushed_key_blocks." -#: libraries/messages.inc.php:956 +#: libraries/messages.inc.php:952 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -5752,7 +5752,7 @@ msgstr "" "Количество неиспользуемых блоков в кеше индекса. Данный параметр позволяет " "определить как полно используется кеш индекса." -#: libraries/messages.inc.php:957 +#: libraries/messages.inc.php:953 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -5761,11 +5761,11 @@ msgstr "" "Количество используемых блоков в кеше индекса. Данное значение - " "максимальное количество блоков, использованных одновременно." -#: libraries/messages.inc.php:958 +#: libraries/messages.inc.php:954 msgid "The number of requests to read a key block from the cache." msgstr "Количество запросов на чтение блока из кеша индексов." -#: libraries/messages.inc.php:959 +#: libraries/messages.inc.php:955 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -5776,15 +5776,15 @@ msgstr "" "key_buffer_size. Коэффициент неудачных обращений к кешу может быть рассчитан " "как: Key_reads/Key_read_requests." -#: libraries/messages.inc.php:960 +#: libraries/messages.inc.php:956 msgid "The number of requests to write a key block to the cache." msgstr "Количество запросов на запись блока в кеш индекса." -#: libraries/messages.inc.php:961 +#: libraries/messages.inc.php:957 msgid "The number of physical writes of a key block to disk." msgstr "Количество физических операций записи блока индексов на диск." -#: libraries/messages.inc.php:962 +#: libraries/messages.inc.php:958 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -5795,11 +5795,11 @@ msgstr "" "одного запроса. Изначальное нулевое значение, означает, что процесса " "компиляции запроса еще не было." -#: libraries/messages.inc.php:963 +#: libraries/messages.inc.php:959 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Количество строк, ожидающих вставки в запросах INSERT DELAYED." -#: libraries/messages.inc.php:964 +#: libraries/messages.inc.php:960 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -5807,39 +5807,39 @@ msgstr "" "Общее количество открывавшихся таблиц. При большом значении переменной " "рекомендуется увеличить размер кеша таблиц (table_cache)." -#: libraries/messages.inc.php:965 +#: libraries/messages.inc.php:961 msgid "The number of files that are open." msgstr "Количество открытых файлов." -#: libraries/messages.inc.php:966 +#: libraries/messages.inc.php:962 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Количество открытых потоков (применяется к файлам журналов). Потоком " "называется файл, открытый с помощью функции fopen()." -#: libraries/messages.inc.php:967 +#: libraries/messages.inc.php:963 msgid "The number of tables that are open." msgstr "Количество открытых таблиц." -#: libraries/messages.inc.php:968 +#: libraries/messages.inc.php:964 msgid "The number of free memory blocks in query cache." msgstr "Количество свободных блоков памяти в кеше запросов." -#: libraries/messages.inc.php:969 +#: libraries/messages.inc.php:965 msgid "The amount of free memory for query cache." msgstr "Объем свободной памяти для кеша запросов." -#: libraries/messages.inc.php:970 +#: libraries/messages.inc.php:966 msgid "The number of cache hits." msgstr "" "Количество "попаданий" в кеш запросов, т.е. сколько запросов было " "удовлетворено запросами, находящимися в кеше." -#: libraries/messages.inc.php:971 +#: libraries/messages.inc.php:967 msgid "The number of queries added to the cache." msgstr "Количество запросов, добавленных в кеш запросов." -#: libraries/messages.inc.php:972 +#: libraries/messages.inc.php:968 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -5852,7 +5852,7 @@ msgstr "" "не использующиеся страницы заменяются новыми) при принятии решения об " "удаления запроса из кеша." -#: libraries/messages.inc.php:973 +#: libraries/messages.inc.php:969 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -5860,24 +5860,24 @@ msgstr "" "Количество запросов, которые оказались некешируемыми или для которых " "кеширование было подавлено с помощью ключевого слова SQL_NO_CACHE." -#: libraries/messages.inc.php:974 +#: libraries/messages.inc.php:970 msgid "The number of queries registered in the cache." msgstr "Количество запросов, зарегистрированных в кеше." -#: libraries/messages.inc.php:975 +#: libraries/messages.inc.php:971 msgid "The total number of blocks in the query cache." msgstr "Суммарное количество блоков памяти, отведенных под кеш запросов." -#: libraries/messages.inc.php:976 +#: libraries/messages.inc.php:972 msgctxt "$strShowStatusReset" msgid "Reset" msgstr "Сбросить" -#: libraries/messages.inc.php:977 +#: libraries/messages.inc.php:973 msgid "The status of failsafe replication (not yet implemented)." msgstr "Состояние отказоустойчивой репликации (пока не реализовано)." -#: libraries/messages.inc.php:978 +#: libraries/messages.inc.php:974 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -5885,13 +5885,13 @@ msgstr "" "Количество запросов-объединений, выполненных без использования индексов. " "Если значение переменной не равно 0, рекомендуется проверить индексы таблиц." -#: libraries/messages.inc.php:979 +#: libraries/messages.inc.php:975 msgid "The number of joins that used a range search on a reference table." msgstr "" "Количество запросов-объединений, выполненных с использованием поиска по " "диапазону в таблице, на которую делается ссылка." -#: libraries/messages.inc.php:980 +#: libraries/messages.inc.php:976 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -5900,7 +5900,7 @@ msgstr "" "диапазону для выборки строк из вторичной таблицы. Если значение переменной " "не равно 0, рекомендуется проверить индексы таблиц." -#: libraries/messages.inc.php:981 +#: libraries/messages.inc.php:977 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -5909,18 +5909,18 @@ msgstr "" "диапазону в первой таблице. Обычно значение этой переменной не критично, " "даже если оно велико." -#: libraries/messages.inc.php:982 +#: libraries/messages.inc.php:978 msgid "The number of joins that did a full scan of the first table." msgstr "" "Количество запросов-объединений, выполненных с использованием полного поиска " "по первой таблице." -#: libraries/messages.inc.php:983 +#: libraries/messages.inc.php:979 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "Количество временных таблиц, открытых в настоящий момент подчиненным потоком." -#: libraries/messages.inc.php:984 +#: libraries/messages.inc.php:980 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -5928,13 +5928,13 @@ msgstr "" "Общее количество повторов транзакций подчиненным потоком репликации с " "момента запуска." -#: libraries/messages.inc.php:985 +#: libraries/messages.inc.php:981 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Присваивается значение ON, если данный сервер функционирует как подчиненный, " "подключенный к главному." -#: libraries/messages.inc.php:986 +#: libraries/messages.inc.php:982 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -5942,12 +5942,12 @@ msgstr "" "Количество потоков, на создание которых потребовалось более чем " "slow_launch_time секунд." -#: libraries/messages.inc.php:987 +#: libraries/messages.inc.php:983 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "Количество запросов, выполнявшихся более long_query_time секунд." -#: libraries/messages.inc.php:988 +#: libraries/messages.inc.php:984 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -5956,28 +5956,28 @@ msgstr "" "Количество проходов, сделанных алгоритмом сортировки. При большом значении " "следует увеличить значение переменной sort_buffer_size." -#: libraries/messages.inc.php:989 +#: libraries/messages.inc.php:985 msgid "The number of sorts that were done with ranges." msgstr "" "Количество операций сортировки, выполненных с использованием диапазона." -#: libraries/messages.inc.php:990 +#: libraries/messages.inc.php:986 msgid "The number of sorted rows." msgstr "Количество отсортированных строк." -#: libraries/messages.inc.php:991 +#: libraries/messages.inc.php:987 msgid "The number of sorts that were done by scanning the table." msgstr "" "Количество операций сортировки, выполненных с использованием полного " "сканирования таблицы." -#: libraries/messages.inc.php:992 +#: libraries/messages.inc.php:988 msgid "The number of times that a table lock was acquired immediately." msgstr "" "Количество запросов на блокировку таблицы, которые были удовлетворены " "немедленно." -#: libraries/messages.inc.php:993 +#: libraries/messages.inc.php:989 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -5989,7 +5989,7 @@ msgstr "" "производительностью, необходимо сначала оптимизировать свои запросы, а затем " "разбить свою таблицу (или таблицы) или использовать репликацию." -#: libraries/messages.inc.php:994 +#: libraries/messages.inc.php:990 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -5999,11 +5999,11 @@ msgstr "" "вычислить по формуле Threads_created/Connections. Если это значение окрашено " "в красный цвет - вам следует увеличить thread_cache_size." -#: libraries/messages.inc.php:995 +#: libraries/messages.inc.php:991 msgid "The number of currently open connections." msgstr "Количество открытых текущих соединений." -#: libraries/messages.inc.php:996 +#: libraries/messages.inc.php:992 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -6015,28 +6015,28 @@ msgstr "" "thread_cache_size (это не даст существенного выигрыша в производительности, " "при хорошей реализации потоков)." -#: libraries/messages.inc.php:997 +#: libraries/messages.inc.php:993 msgid "The number of threads that are not sleeping." msgstr "Количество процессов, находящихся в активном состоянии." -#: libraries/messages.inc.php:999 tbl_printview.php:75 +#: libraries/messages.inc.php:995 tbl_printview.php:75 msgid "Show tables" msgstr "Отображение таблиц" -#: libraries/messages.inc.php:1000 libraries/sql_query_form.lib.php:396 +#: libraries/messages.inc.php:996 libraries/sql_query_form.lib.php:396 msgid " Show this query here again " msgstr "Показать данный запрос снова" -#: libraries/messages.inc.php:1001 libraries/mysql_charsets.lib.php:217 +#: libraries/messages.inc.php:997 libraries/mysql_charsets.lib.php:217 #: libraries/mysql_charsets.lib.php:342 msgid "Simplified Chinese" msgstr "Китайский упрощенный" -#: libraries/messages.inc.php:1002 tbl_operations.php:258 +#: libraries/messages.inc.php:998 tbl_operations.php:258 msgid "(singly)" msgstr "(столбец)" -#: libraries/messages.inc.php:1005 libraries/replication_gui.lib.php:52 +#: libraries/messages.inc.php:1001 libraries/replication_gui.lib.php:52 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" @@ -6044,47 +6044,47 @@ msgstr "" "Убедитесь, что в конфигурационном файле (my.cnf) имеется уникальное значение " "server-id. При необходимости, добавьте следующую строку в раздел [mysqld]:" -#: libraries/messages.inc.php:1006 libraries/mysql_charsets.lib.php:283 +#: libraries/messages.inc.php:1002 libraries/mysql_charsets.lib.php:283 msgid "Slovak" msgstr "Словацкий" -#: libraries/messages.inc.php:1007 libraries/mysql_charsets.lib.php:286 +#: libraries/messages.inc.php:1003 libraries/mysql_charsets.lib.php:286 msgid "Slovenian" msgstr "Словенский" -#: libraries/messages.inc.php:1008 pmd_general.php:95 +#: libraries/messages.inc.php:1004 pmd_general.php:95 msgid "Small/Big All" msgstr "Свернуть/развернуть отображение всех таблиц" -#: libraries/messages.inc.php:1009 pmd_general.php:91 +#: libraries/messages.inc.php:1005 pmd_general.php:91 msgid "Snap to grid" msgstr "Привязать к сетке" -#: libraries/messages.inc.php:1011 server_synchronize.php:1167 +#: libraries/messages.inc.php:1007 server_synchronize.php:1167 msgid "Socket" msgstr "Сокет" -#: libraries/messages.inc.php:1013 server_status.php:259 +#: libraries/messages.inc.php:1009 server_status.php:259 msgid "Sorting" msgstr "Сортировка" -#: libraries/messages.inc.php:1015 tbl_printview.php:310 tbl_structure.php:657 +#: libraries/messages.inc.php:1011 tbl_printview.php:310 tbl_structure.php:657 msgid "Space usage" msgstr "Используемое пространство" -#: libraries/messages.inc.php:1016 libraries/mysql_charsets.lib.php:289 +#: libraries/messages.inc.php:1012 libraries/mysql_charsets.lib.php:289 msgid "Spanish" msgstr "Испанский" -#: libraries/messages.inc.php:1019 +#: libraries/messages.inc.php:1015 msgid "Export type" msgstr "Тип экспорта" -#: libraries/messages.inc.php:1020 +#: libraries/messages.inc.php:1016 msgid "Export time in UTC" msgstr "" -#: libraries/messages.inc.php:1021 libraries/sqlparser.lib.php:173 +#: libraries/messages.inc.php:1017 libraries/sqlparser.lib.php:173 msgid "" "There is a chance that you may have found a bug in the SQL parser. Please " "examine your query closely, and check that the quotes are correct and not " @@ -6106,7 +6106,7 @@ msgstr "" "которая вызывает ошибку и отправьте разработчикам описание ошибки, снабдив " "его данными из секции CUT выведенной ниже:" -#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:137 +#: libraries/messages.inc.php:1018 libraries/sqlparser.lib.php:137 msgid "" "There seems to be an error in your SQL query. The MySQL server error output " "below, if there is any, may also help you in diagnosing the problem" @@ -6114,32 +6114,32 @@ msgstr "" "Вероятно, SQL-запрос содержит ошибку. При наличии таковой, ниже будет " "выведена ошибка MySQL-сервера, облегчающая диагностику проблемы." -#: libraries/messages.inc.php:1026 libraries/sqlparser.lib.php:495 +#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:495 msgid "Invalid Identifer" msgstr "Неправильный идентификатор" -#: libraries/messages.inc.php:1027 libraries/sqlparser.lib.php:344 +#: libraries/messages.inc.php:1023 libraries/sqlparser.lib.php:344 msgid "Unclosed quote" msgstr "Незакрытая кавычка" -#: libraries/messages.inc.php:1028 libraries/sqlparser.lib.php:612 +#: libraries/messages.inc.php:1024 libraries/sqlparser.lib.php:612 msgid "Unknown Punctuation String" msgstr "Неизвестная пунктуация" -#: libraries/messages.inc.php:1030 server_replication.php:327 +#: libraries/messages.inc.php:1026 server_replication.php:327 #: server_replication.php:328 msgid "Start" msgstr "Старт" -#: libraries/messages.inc.php:1033 tbl_printview.php:369 tbl_structure.php:729 +#: libraries/messages.inc.php:1029 tbl_printview.php:369 tbl_structure.php:729 msgid "Statements" msgstr "Характеристика" -#: libraries/messages.inc.php:1034 tbl_printview.php:380 tbl_structure.php:741 +#: libraries/messages.inc.php:1030 tbl_printview.php:380 tbl_structure.php:741 msgid "static" msgstr "статический" -#: libraries/messages.inc.php:1035 server_status.php:388 +#: libraries/messages.inc.php:1031 server_status.php:388 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -6147,42 +6147,42 @@ msgstr "" "На загруженном сервере, побайтовые счетчики могут переполняться, таким " "образом, статистика, передаваемая MySQL-сервером, может быть некорректной." -#: libraries/messages.inc.php:1038 server_replication.php:327 +#: libraries/messages.inc.php:1034 server_replication.php:327 #: server_replication.php:328 msgid "Stop" msgstr "Стоп" -#: libraries/messages.inc.php:1039 server_engines.php:49 +#: libraries/messages.inc.php:1035 server_engines.php:49 msgid "Storage Engines" msgstr "Типы таблиц" -#: libraries/messages.inc.php:1040 libraries/tbl_properties.inc.php:726 +#: libraries/messages.inc.php:1036 libraries/tbl_properties.inc.php:726 #: server_engines.php:58 tbl_operations.php:353 msgid "Storage Engine" msgstr "Тип таблиц" -#: libraries/messages.inc.php:1042 +#: libraries/messages.inc.php:1038 msgid "CSV for MS Excel" msgstr "CSV для MS Excel" -#: libraries/messages.inc.php:1044 tbl_structure.php:516 tbl_structure.php:518 +#: libraries/messages.inc.php:1040 tbl_structure.php:516 tbl_structure.php:518 msgid "Propose table structure" msgstr "Анализ структуры таблицы" -#: libraries/messages.inc.php:1045 server_synchronize.php:424 +#: libraries/messages.inc.php:1041 server_synchronize.php:424 #: server_synchronize.php:867 msgid "Structure Difference" msgstr "Различие структуры" -#: libraries/messages.inc.php:1049 server_synchronize.php:265 +#: libraries/messages.inc.php:1045 server_synchronize.php:265 msgid "Structure Synchronization" msgstr "Синхронизация структуры" -#: libraries/messages.inc.php:1050 libraries/sql_query_form.lib.php:462 +#: libraries/messages.inc.php:1046 libraries/sql_query_form.lib.php:462 msgid "Submit" msgstr "Выполнить" -#: libraries/messages.inc.php:1052 main.php:358 +#: libraries/messages.inc.php:1048 main.php:358 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -6191,16 +6191,16 @@ msgstr "" "Сервер использует защитную систему Suhosin. Для решения возможных проблем " "обратитесь к %sдокументации%s." -#: libraries/messages.inc.php:1054 libraries/mysql_charsets.lib.php:295 +#: libraries/messages.inc.php:1050 libraries/mysql_charsets.lib.php:295 #: libraries/mysql_charsets.lib.php:392 msgid "Swedish" msgstr "Шведский" -#: libraries/messages.inc.php:1060 tbl_operations.php:556 +#: libraries/messages.inc.php:1056 tbl_operations.php:556 msgid "Switch to copied table" msgstr "Переключиться на скопированную таблицу" -#: libraries/messages.inc.php:1061 server_synchronize.php:1213 +#: libraries/messages.inc.php:1057 server_synchronize.php:1213 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -6208,145 +6208,145 @@ msgstr "" "Целевая база данных будет полностью синхронизована с источником. База данных " "источника останется неизменной." -#: libraries/messages.inc.php:1062 server_synchronize.php:451 +#: libraries/messages.inc.php:1058 server_synchronize.php:451 #: server_synchronize.php:896 msgid "Synchronize Databases" msgstr "Синхронизировать базы данных" -#: libraries/messages.inc.php:1063 libraries/server_links.inc.php:92 +#: libraries/messages.inc.php:1059 libraries/server_links.inc.php:92 #: server_synchronize.php:1092 server_synchronize.php:1100 msgid "Synchronize" msgstr "Синхронизировать" -#: libraries/messages.inc.php:1065 server_synchronize.php:430 +#: libraries/messages.inc.php:1061 server_synchronize.php:430 #: server_synchronize.php:873 msgid "Add column(s)" msgstr "Добавить поле(я)" -#: libraries/messages.inc.php:1066 tbl_create.php:62 +#: libraries/messages.inc.php:1062 tbl_create.php:62 #, php-format msgid "Table %s already exists!" msgstr "Таблица %s уже существует!" -#: libraries/messages.inc.php:1067 server_synchronize.php:432 +#: libraries/messages.inc.php:1063 server_synchronize.php:432 #: server_synchronize.php:875 msgid "Alter column(s)" msgstr "Изменить поле(я)" -#: libraries/messages.inc.php:1068 tbl_addfield.php:189 tbl_alter.php:103 +#: libraries/messages.inc.php:1064 tbl_addfield.php:189 tbl_alter.php:103 #: tbl_indexes.php:98 #, php-format msgid "Table %1$s has been altered successfully" msgstr "Таблица %1$s была успешно изменена" -#: libraries/messages.inc.php:1069 server_synchronize.php:434 +#: libraries/messages.inc.php:1065 server_synchronize.php:434 #: server_synchronize.php:877 msgid "Apply index(s)" msgstr "Применить индекс(ы)" -#: libraries/messages.inc.php:1071 server_synchronize.php:446 +#: libraries/messages.inc.php:1067 server_synchronize.php:446 #: server_synchronize.php:890 msgid "Would you like to delete all the previous rows from target tables?" msgstr "Удалить все предыдущие строки из целевой таблицы?" -#: libraries/messages.inc.php:1072 tbl_move_copy.php:82 +#: libraries/messages.inc.php:1068 tbl_move_copy.php:82 msgid "The table name is empty!" msgstr "Не задано имя таблицы!" -#: libraries/messages.inc.php:1073 tbl_create.php:249 +#: libraries/messages.inc.php:1069 tbl_create.php:249 #, php-format msgid "Table %1$s has been created." msgstr "Таблица %1$s была создана." -#: libraries/messages.inc.php:1076 tbl_operations.php:628 +#: libraries/messages.inc.php:1072 tbl_operations.php:628 #, php-format msgid "Table %s has been flushed" msgstr "Обновлен кеш таблицы %s" -#: libraries/messages.inc.php:1077 server_synchronize.php:436 +#: libraries/messages.inc.php:1073 server_synchronize.php:436 #: server_synchronize.php:879 msgid "Insert row(s)" msgstr "Вставить строку(и)" -#: libraries/messages.inc.php:1078 libraries/tbl_links.inc.php:107 +#: libraries/messages.inc.php:1074 libraries/tbl_links.inc.php:107 #: libraries/tbl_links.inc.php:140 libraries/tbl_links.inc.php:141 msgid "Table seems to be empty!" msgstr "Таблица - пуста!" -#: libraries/messages.inc.php:1079 tbl_operations.php:568 +#: libraries/messages.inc.php:1075 tbl_operations.php:568 msgid "Table maintenance" msgstr "Обслуживание таблицы" -#: libraries/messages.inc.php:1080 libraries/tbl_properties.inc.php:618 +#: libraries/messages.inc.php:1076 libraries/tbl_properties.inc.php:618 #: server_synchronize.php:428 server_synchronize.php:871 msgid "Table name" msgstr "Имя таблицы" -#: libraries/messages.inc.php:1081 pdf_schema.php:1116 +#: libraries/messages.inc.php:1077 pdf_schema.php:1116 msgid "Table of contents" msgstr "Содержание" -#: libraries/messages.inc.php:1082 tbl_operations.php:334 +#: libraries/messages.inc.php:1078 tbl_operations.php:334 msgid "Table options" msgstr "Параметры таблицы" -#: libraries/messages.inc.php:1083 server_synchronize.php:431 +#: libraries/messages.inc.php:1079 server_synchronize.php:431 #: server_synchronize.php:874 msgid "Remove column(s)" msgstr "Удалить поле(я)" -#: libraries/messages.inc.php:1084 server_synchronize.php:433 +#: libraries/messages.inc.php:1080 server_synchronize.php:433 #: server_synchronize.php:876 msgid "Remove index(s)" msgstr "Удалить индекс(ы)" -#: libraries/messages.inc.php:1088 server_synchronize.php:435 +#: libraries/messages.inc.php:1084 server_synchronize.php:435 #: server_synchronize.php:878 msgid "Update row(s)" msgstr "Обновить строку(и)" -#: libraries/messages.inc.php:1090 server_synchronize.php:942 +#: libraries/messages.inc.php:1086 server_synchronize.php:942 msgid "Target database has been synchronized with source database" msgstr "Целевая база данных была синхронизирована с базой данных источника" -#: libraries/messages.inc.php:1091 server_privileges.php:392 +#: libraries/messages.inc.php:1087 server_privileges.php:392 #: server_privileges.php:527 server_privileges.php:1679 #: server_privileges.php:1685 msgid "Table-specific privileges" msgstr " Привилегии уровня таблицы" -#: libraries/messages.inc.php:1092 server_status.php:254 +#: libraries/messages.inc.php:1088 server_status.php:254 msgid "Temporary data" msgstr "Временные данные" -#: libraries/messages.inc.php:1093 tbl_change.php:728 +#: libraries/messages.inc.php:1089 tbl_change.php:728 msgid " Because of its length,
this field might not be editable " msgstr "Из-за большого количества данных
изменение может быть затруднено" -#: libraries/messages.inc.php:1094 +#: libraries/messages.inc.php:1090 msgid "Texy! text" msgstr "Texy! текст" -#: libraries/messages.inc.php:1095 libraries/mysql_charsets.lib.php:298 +#: libraries/messages.inc.php:1091 libraries/mysql_charsets.lib.php:298 #: libraries/mysql_charsets.lib.php:395 msgid "Thai" msgstr "Таи" -#: libraries/messages.inc.php:1102 libraries/replication_gui.lib.php:308 +#: libraries/messages.inc.php:1098 libraries/replication_gui.lib.php:308 #: server_privileges.php:734 msgid "This Host" msgstr "Этот хост" -#: libraries/messages.inc.php:1103 server_status.php:252 +#: libraries/messages.inc.php:1099 server_status.php:252 msgid "Threads" msgstr "Потоки" -#: libraries/messages.inc.php:1104 server_processlist.php:22 +#: libraries/messages.inc.php:1100 server_processlist.php:22 #, php-format msgid "Thread %s was successfully killed." msgstr "Процесс %s был успешно завершен." -#: libraries/messages.inc.php:1106 +#: libraries/messages.inc.php:1102 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -6355,159 +6355,159 @@ msgstr "" "означает, что phpMyAdmin не сможет завершить процесс импорта до тех пор, " "пока не будет увеличено ограничение времени выполнения php-сценариев." -#: libraries/messages.inc.php:1109 pmd_pdf.php:94 +#: libraries/messages.inc.php:1105 pmd_pdf.php:94 msgid "to/from page" msgstr "Страница" -#: libraries/messages.inc.php:1110 pdf_pages.php:343 +#: libraries/messages.inc.php:1106 pdf_pages.php:343 msgid "Toggle scratchboard" msgstr "Отображение" -#: libraries/messages.inc.php:1111 pmd_general.php:99 +#: libraries/messages.inc.php:1107 pmd_general.php:99 msgid "Toggle small/big" msgstr "Обратное отображение" -#: libraries/messages.inc.php:1112 pmd_help.php:27 +#: libraries/messages.inc.php:1108 pmd_help.php:27 msgid "To select relation, click :" msgstr "" "Для выбора связи нажмите на точке соединения, как показано на картинке:" -#: libraries/messages.inc.php:1115 libraries/tbl_links.inc.php:149 +#: libraries/messages.inc.php:1111 libraries/tbl_links.inc.php:149 #, php-format msgid "Tracking of %s.%s is activated." msgstr "Слежение за %s.%s включено." -#: libraries/messages.inc.php:1116 tbl_tracking.php:655 +#: libraries/messages.inc.php:1112 tbl_tracking.php:655 msgid "Activate now" msgstr "Включить" -#: libraries/messages.inc.php:1117 tbl_tracking.php:653 +#: libraries/messages.inc.php:1113 tbl_tracking.php:653 #, php-format msgid "Activate tracking for %s.%s" msgstr "Включить слежение за %s.%s" -#: libraries/messages.inc.php:1118 tbl_tracking.php:221 +#: libraries/messages.inc.php:1114 tbl_tracking.php:221 msgid "Comment out these two lines if you do not need them." msgstr "Закомментируйте эти две строки, если они вам не нужны." -#: libraries/messages.inc.php:1119 tbl_tracking.php:688 +#: libraries/messages.inc.php:1115 tbl_tracking.php:688 msgid "Create version" msgstr "Создать версию" -#: libraries/messages.inc.php:1120 tbl_tracking.php:668 +#: libraries/messages.inc.php:1116 tbl_tracking.php:668 #, php-format msgid "Create version %s of %s.%s" msgstr "Создать версию %s из %s.%s" -#: libraries/messages.inc.php:1122 tbl_tracking.php:412 +#: libraries/messages.inc.php:1118 tbl_tracking.php:412 msgid "Data definition statement" msgstr "Выражение определяющее структуру" -#: libraries/messages.inc.php:1123 tbl_tracking.php:463 +#: libraries/messages.inc.php:1119 tbl_tracking.php:463 msgid "Data manipulation statement" msgstr "Выражение изменяющее данные" -#: libraries/messages.inc.php:1124 tbl_tracking.php:410 tbl_tracking.php:461 +#: libraries/messages.inc.php:1120 tbl_tracking.php:410 tbl_tracking.php:461 msgid "Date" msgstr "Дата" -#: libraries/messages.inc.php:1125 tbl_tracking.php:642 +#: libraries/messages.inc.php:1121 tbl_tracking.php:642 msgid "Deactivate now" msgstr "Выключить" -#: libraries/messages.inc.php:1126 tbl_tracking.php:640 +#: libraries/messages.inc.php:1122 tbl_tracking.php:640 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "Выключить слежение за %s.%s" -#: libraries/messages.inc.php:1127 tbl_tracking.php:521 +#: libraries/messages.inc.php:1123 tbl_tracking.php:521 #, php-format msgid "Export as %s" msgstr "Экспортировать как %s" -#: libraries/messages.inc.php:1130 tbl_tracking.php:251 tbl_tracking.php:379 +#: libraries/messages.inc.php:1126 tbl_tracking.php:251 tbl_tracking.php:379 msgid "Close" msgstr "Закрыть" -#: libraries/messages.inc.php:1131 tbl_tracking.php:114 +#: libraries/messages.inc.php:1127 tbl_tracking.php:114 #, php-format msgid "Tracking report for table `%s`" msgstr "Отчёт слежения для таблицы `%s`" -#: libraries/messages.inc.php:1133 tbl_tracking.php:397 tbl_tracking.php:504 +#: libraries/messages.inc.php:1129 tbl_tracking.php:397 tbl_tracking.php:504 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "Вывести %s с датой от %s до %s пользователя %s %s" -#: libraries/messages.inc.php:1134 tbl_tracking.php:561 +#: libraries/messages.inc.php:1130 tbl_tracking.php:561 msgid "Show versions" msgstr "Показать версии" -#: libraries/messages.inc.php:1135 tbl_tracking.php:507 +#: libraries/messages.inc.php:1131 tbl_tracking.php:507 msgid "SQL dump (file download)" msgstr "Выгрузка SQL (файл)" -#: libraries/messages.inc.php:1136 tbl_tracking.php:508 +#: libraries/messages.inc.php:1132 tbl_tracking.php:508 msgid "SQL dump" msgstr "Выгрузка SQL" -#: libraries/messages.inc.php:1137 tbl_tracking.php:213 +#: libraries/messages.inc.php:1133 tbl_tracking.php:213 msgid "SQL statements executed." msgstr "Выполненные SQL запросы." -#: libraries/messages.inc.php:1138 +#: libraries/messages.inc.php:1134 msgid "This option will replace your table and contained data." msgstr "Данный параметр заместит таблицу и содержащиеся в ней данные." -#: libraries/messages.inc.php:1139 tbl_tracking.php:509 +#: libraries/messages.inc.php:1135 tbl_tracking.php:509 msgid "SQL execution" msgstr "Выполнение SQL запроса" -#: libraries/messages.inc.php:1140 tbl_tracking.php:230 +#: libraries/messages.inc.php:1136 tbl_tracking.php:230 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "SQL выражения успешно выгружены; скопируйте, либо выполните их." -#: libraries/messages.inc.php:1141 tbl_tracking.php:381 +#: libraries/messages.inc.php:1137 tbl_tracking.php:381 msgid "Tracking statements" msgstr "Отслеживаемые выражения" -#: libraries/messages.inc.php:1148 tbl_tracking.php:593 +#: libraries/messages.inc.php:1144 tbl_tracking.php:593 msgid "Version" msgstr "Версия" -#: libraries/messages.inc.php:1149 tbl_tracking.php:672 +#: libraries/messages.inc.php:1145 tbl_tracking.php:672 msgid "Track these data definition statements:" msgstr "Отслеживать выражения определяющие структуру:" -#: libraries/messages.inc.php:1150 tbl_tracking.php:680 +#: libraries/messages.inc.php:1146 tbl_tracking.php:680 msgid "Track these data manipulation statements:" msgstr "Отслеживать выражения изменяющие данные:" -#: libraries/messages.inc.php:1155 tbl_tracking.php:411 tbl_tracking.php:462 +#: libraries/messages.inc.php:1151 tbl_tracking.php:411 tbl_tracking.php:462 msgid "Username" msgstr "Пользователь" -#: libraries/messages.inc.php:1156 tbl_tracking.php:203 +#: libraries/messages.inc.php:1152 tbl_tracking.php:203 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "Отслеживание %s.%s, версии %s включено." -#: libraries/messages.inc.php:1157 tbl_tracking.php:187 +#: libraries/messages.inc.php:1153 tbl_tracking.php:187 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "Версия %s создана, отслеживание %s.%s включено." -#: libraries/messages.inc.php:1158 tbl_tracking.php:195 +#: libraries/messages.inc.php:1154 tbl_tracking.php:195 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "Отслеживание %s.%s, версии %s выключено." -#: libraries/messages.inc.php:1159 tbl_tracking.php:262 +#: libraries/messages.inc.php:1155 tbl_tracking.php:262 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Обзор версии %s (SQL код)" -#: libraries/messages.inc.php:1161 tbl_tracking.php:220 +#: libraries/messages.inc.php:1157 tbl_tracking.php:220 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -6516,24 +6516,24 @@ msgstr "" "временную базу данных. Убедитесь, что у вас есть для этого достаточные " "привилегии." -#: libraries/messages.inc.php:1162 libraries/mysql_charsets.lib.php:219 +#: libraries/messages.inc.php:1158 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:362 msgid "Traditional Chinese" msgstr "Китайский традиционный" -#: libraries/messages.inc.php:1163 libraries/mysql_charsets.lib.php:292 +#: libraries/messages.inc.php:1159 libraries/mysql_charsets.lib.php:292 msgid "Traditional Spanish" msgstr "Испанский традиционный" -#: libraries/messages.inc.php:1164 server_status.php:388 +#: libraries/messages.inc.php:1160 server_status.php:388 msgid "Traffic" msgstr "Трафик" -#: libraries/messages.inc.php:1165 server_status.php:261 +#: libraries/messages.inc.php:1161 server_status.php:261 msgid "Transaction coordinator" msgstr "Координатор транзакций" -#: libraries/messages.inc.php:1166 +#: libraries/messages.inc.php:1162 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 " @@ -6546,7 +6546,7 @@ msgstr "" "использования второго параметра, первый необходимо установить в виде пустой " "строки." -#: libraries/messages.inc.php:1167 +#: libraries/messages.inc.php:1163 msgid "" "Displays hexadecimal representation of data. Optional first parameter " "specifies how often space will be added (defaults to 2 nibbles)." @@ -6555,7 +6555,7 @@ msgstr "" "параметр может быть использован для указания на то, через какие промежутки " "будет добавляться пробел (по умолчанию после двух полубайтов)." -#: libraries/messages.inc.php:1168 +#: libraries/messages.inc.php:1164 msgid "" "Displays a clickable thumbnail. The options are the maximum width and height " "in pixels. The original aspect ratio is preserved." @@ -6564,18 +6564,18 @@ msgstr "" "увеличения. Параметрами задается максимальная ширина и высота картинки в " "пикселях. Изначальное соотношение сторон, сохраняется." -#: libraries/messages.inc.php:1169 +#: libraries/messages.inc.php:1165 msgid "Displays a link to download this image." msgstr "Отображает ссылку для загрузки изображения" -#: libraries/messages.inc.php:1170 +#: libraries/messages.inc.php:1166 msgid "See image/jpeg: inline" msgstr "" "Отображает уменьшенную иконку изображения, на которую можно нажать для " "увеличения. Параметрами задается максимальная ширина и высота картинки в " "пикселях. Изначальное соотношение сторон, сохраняется." -#: libraries/messages.inc.php:1171 +#: libraries/messages.inc.php:1167 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 " @@ -6594,7 +6594,7 @@ msgstr "" "третьим параметром формат даты должен иметь различные значения - для \"local" "\" смотрите описание функции PHP strftime(), для \"utc\" - gmdate()." -#: libraries/messages.inc.php:1172 +#: libraries/messages.inc.php:1168 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 " @@ -6618,7 +6618,7 @@ msgstr "" "параметра в 1, предотвратит переносы строки и выведет данные в одну строку " "(по умолчанию: 1)." -#: libraries/messages.inc.php:1173 +#: libraries/messages.inc.php:1169 msgid "" "Displays the contents of the field as-is, without running it through " "htmlspecialchars(). That is, the field is assumed to contain valid HTML." @@ -6626,7 +6626,7 @@ msgstr "" "Отображает содержимое поля как есть, без преобразования данных функцией PHP " "htmlspecialchars(). Таким образом поле может содержать рабочий HTML-код." -#: libraries/messages.inc.php:1174 +#: libraries/messages.inc.php:1170 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 " @@ -6636,7 +6636,7 @@ msgstr "" "является URL-префиксом, например \"http://domain.com/\". Второй и третий " "параметр - ширина и высота изображения в пикселях." -#: libraries/messages.inc.php:1175 +#: libraries/messages.inc.php:1171 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 " @@ -6645,11 +6645,11 @@ msgstr "" "Отображает ссылку; поле содержит имя файла. Первый параметр - URL-префикс, " "например \"http://www.example.com/\". Второй параметр - заголовок ссылки." -#: libraries/messages.inc.php:1176 +#: libraries/messages.inc.php:1172 msgid "Formats text as SQL query with syntax highlighting." msgstr "Форматирует текст в виде SQL запроса с подсветкой синтаксиса" -#: libraries/messages.inc.php:1177 +#: libraries/messages.inc.php:1173 msgid "" "Displays a part of a string. The first option is the number of characters to " "skip from the beginning of the string (Default 0). The second option is the " @@ -6663,70 +6663,70 @@ msgstr "" "определяет строку добавляемую вначале и/или в конце существующего отрывка " "(по умолчанию: \"...\")." -#: libraries/messages.inc.php:1179 server_binlog.php:183 server_binlog.php:186 +#: libraries/messages.inc.php:1175 server_binlog.php:183 server_binlog.php:186 #: server_processlist.php:49 server_processlist.php:51 msgid "Truncate Shown Queries" msgstr "Сокращенное отображение запросов" -#: libraries/messages.inc.php:1180 libraries/mysql_charsets.lib.php:301 +#: libraries/messages.inc.php:1176 libraries/mysql_charsets.lib.php:301 #: libraries/mysql_charsets.lib.php:389 msgid "Turkish" msgstr "Турецкий" -#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:304 +#: libraries/messages.inc.php:1179 libraries/mysql_charsets.lib.php:304 #: libraries/mysql_charsets.lib.php:386 msgid "Ukrainian" msgstr "Украинский" -#: libraries/messages.inc.php:1185 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:1181 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 msgid "Unicode" msgstr "Юникод" -#: libraries/messages.inc.php:1187 libraries/mysql_charsets.lib.php:398 +#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:398 #: libraries/mysql_charsets.lib.php:405 msgid "unknown" msgstr "неизвестно" -#: libraries/messages.inc.php:1190 server_privileges.php:1152 +#: libraries/messages.inc.php:1186 server_privileges.php:1152 #, php-format msgid "You have updated the privileges for %s." msgstr "Были изменены привилегии для %s." -#: libraries/messages.inc.php:1191 user_password.php:112 +#: libraries/messages.inc.php:1187 user_password.php:112 msgid "The profile has been updated." msgstr "Профиль был обновлен." -#: libraries/messages.inc.php:1193 libraries/relation.lib.php:138 +#: libraries/messages.inc.php:1189 libraries/relation.lib.php:138 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "Необходимо обновить таблицу column_comments. Детали смотрите в документации." -#: libraries/messages.inc.php:1194 +#: libraries/messages.inc.php:1190 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Необходимо обновить %s до версии %s или выше." -#: libraries/messages.inc.php:1204 tbl_printview.php:314 tbl_structure.php:661 +#: libraries/messages.inc.php:1200 tbl_printview.php:314 tbl_structure.php:661 msgid "Usage" msgstr "Использование" -#: libraries/messages.inc.php:1205 +#: libraries/messages.inc.php:1201 msgid "Enclose table and field names with backquotes" msgstr "Заключить названия таблиц и полей в косые кавычки" -#: libraries/messages.inc.php:1206 libraries/replication_gui.lib.php:314 +#: libraries/messages.inc.php:1202 libraries/replication_gui.lib.php:314 #: server_privileges.php:740 msgid "Use Host Table" msgstr "Использовать таблицу хостов" -#: libraries/messages.inc.php:1207 server_privileges.php:848 +#: libraries/messages.inc.php:1203 server_privileges.php:848 #, php-format msgid "The user %s already exists!" msgstr "Пользователь %s уже существует!" -#: libraries/messages.inc.php:1209 libraries/replication_gui.lib.php:55 +#: libraries/messages.inc.php:1205 libraries/replication_gui.lib.php:55 #: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245 #: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255 #: server_privileges.php:672 server_privileges.php:675 @@ -6734,37 +6734,37 @@ msgstr "Пользователь %s уже существует!" msgid "User name" msgstr "Имя пользователя" -#: libraries/messages.inc.php:1210 server_privileges.php:1645 +#: libraries/messages.inc.php:1206 server_privileges.php:1645 msgid "The selected user was not found in the privilege table." msgstr "Выделенный пользователь не был найден в таблице привилегий." -#: libraries/messages.inc.php:1211 server_privileges.php:1365 +#: libraries/messages.inc.php:1207 server_privileges.php:1365 msgid "User overview" msgstr "Обзор учетных записей" -#: libraries/messages.inc.php:1212 server_privileges.php:1261 +#: libraries/messages.inc.php:1208 server_privileges.php:1261 msgid "The selected users have been deleted successfully." msgstr "Выбранные пользователи были успешно удалены." -#: libraries/messages.inc.php:1213 server_privileges.php:2026 +#: libraries/messages.inc.php:1209 server_privileges.php:2026 #, php-format msgid "Users having access to "%s"" msgstr "Пользователи с правами доступа к "%s"" -#: libraries/messages.inc.php:1214 main.php:189 server_privileges.php:1350 +#: libraries/messages.inc.php:1210 main.php:189 server_privileges.php:1350 #: server_privileges.php:1497 server_privileges.php:1611 #: server_privileges.php:2029 server_processlist.php:54 msgid "User" msgstr "Пользователь" -#: libraries/messages.inc.php:1215 tbl_change.php:1171 +#: libraries/messages.inc.php:1211 tbl_change.php:1171 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Для перемещения между полями значения, используйте клавишу TAB, либо CTRL" "+клавиши со стрелками - для свободного перемещения" -#: libraries/messages.inc.php:1217 libraries/replication_gui.lib.php:251 +#: libraries/messages.inc.php:1213 libraries/replication_gui.lib.php:251 #: libraries/replication_gui.lib.php:319 libraries/replication_gui.lib.php:342 #: server_privileges.php:678 server_privileges.php:745 #: server_privileges.php:769 server_privileges.php:1889 @@ -6772,7 +6772,7 @@ msgstr "" msgid "Use text field" msgstr "Использовать текстовое поле" -#: libraries/messages.inc.php:1221 libraries/sqlvalidator.lib.php:68 +#: libraries/messages.inc.php:1217 libraries/sqlvalidator.lib.php:68 #, php-format msgid "" "The SQL validator could not be initialized. Please check if you have " @@ -6781,85 +6781,85 @@ msgstr "" "Проверка синтаксиса SQL не осуществима. Проверьте, установлены ли " "необходимые модули расширений для PHP, описанные в %sдокументации%s." -#: libraries/messages.inc.php:1222 libraries/replication_gui.lib.php:111 +#: libraries/messages.inc.php:1218 libraries/replication_gui.lib.php:111 #: server_status.php:627 tbl_change.php:324 tbl_printview.php:370 #: tbl_select.php:139 tbl_structure.php:730 msgid "Value" msgstr "Значение" -#: libraries/messages.inc.php:1223 libraries/replication_gui.lib.php:110 +#: libraries/messages.inc.php:1219 libraries/replication_gui.lib.php:110 #: libraries/sql_query_form.lib.php:445 server_status.php:626 #: server_variables.php:52 msgid "Variable" msgstr "Переменная" -#: libraries/messages.inc.php:1225 server_export.php:21 +#: libraries/messages.inc.php:1221 server_export.php:21 msgid "View dump (schema) of databases" msgstr "Отобразить дамп (схему) баз данных" -#: libraries/messages.inc.php:1227 tbl_export.php:23 +#: libraries/messages.inc.php:1223 tbl_export.php:23 msgid "View dump (schema) of table" msgstr "Отобразить дамп (схему) таблицы" -#: libraries/messages.inc.php:1231 view_create.php:142 +#: libraries/messages.inc.php:1227 view_create.php:142 msgid "VIEW name" msgstr "VIEW название" -#: libraries/messages.inc.php:1237 main.php:205 +#: libraries/messages.inc.php:1233 main.php:205 msgid "Web server" msgstr "Веб-сервер" -#: libraries/messages.inc.php:1239 libraries/mysql_charsets.lib.php:277 +#: libraries/messages.inc.php:1235 libraries/mysql_charsets.lib.php:277 #: libraries/mysql_charsets.lib.php:325 msgid "West European" msgstr "Западно-Европейский" -#: libraries/messages.inc.php:1240 main.php:230 +#: libraries/messages.inc.php:1236 main.php:230 msgid "Wiki" msgstr "Вики" -#: libraries/messages.inc.php:1241 server_privileges.php:2138 +#: libraries/messages.inc.php:1237 server_privileges.php:2138 msgid "wildcard" msgstr "Групповой символ" -#: libraries/messages.inc.php:1248 +#: libraries/messages.inc.php:1244 msgid "Export contents" msgstr "Экспортировать содержимое" -#: libraries/messages.inc.php:1249 +#: libraries/messages.inc.php:1245 msgid "Export functions" msgstr "Экспортировать функции" -#: libraries/messages.inc.php:1250 +#: libraries/messages.inc.php:1246 msgid "Export procedures" msgstr "Экспортировать процедуры" -#: libraries/messages.inc.php:1251 +#: libraries/messages.inc.php:1247 msgid "Export Structure Schemas (recommended)" msgstr "Экспортировать структуру (рекомендуется)" -#: libraries/messages.inc.php:1252 +#: libraries/messages.inc.php:1248 msgid "Export tables" msgstr "Экспортировать таблицы" -#: libraries/messages.inc.php:1253 +#: libraries/messages.inc.php:1249 msgid "Export triggers" msgstr "Экспортировать триггеры" -#: libraries/messages.inc.php:1254 +#: libraries/messages.inc.php:1250 msgid "Export views" msgstr "Экспортировать отображения (VIEW)" -#: libraries/messages.inc.php:1255 +#: libraries/messages.inc.php:1251 msgid "XML" msgstr "XML" -#: libraries/messages.inc.php:1259 server_privileges.php:592 +#: libraries/messages.inc.php:1255 server_privileges.php:592 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" "Замечание: Установка значения параметров в 0 (ноль), снимает ограничения." -#: libraries/messages.inc.php:1260 +#: libraries/messages.inc.php:1256 msgid "\"zipped\"" msgstr "zip" diff --git a/po/si.po b/po/si.po index 705bd1665..7a0b7eab1 100644 --- 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-05-13 11:25+0200\n" +"POT-Creation-Date: 2010-05-13 11:30+0200\n" "PO-Revision-Date: 2010-03-30 23:09+0200\n" "Last-Translator: Michal \n" "Language-Team: sinhala \n" @@ -14,19 +14,19 @@ msgstr "" "X-Generator: Pootle 2.0.1\n" #: browse_foreigners.php:38 browse_foreigners.php:59 -#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:870 +#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:866 #: server_privileges.php:1475 msgid "Show all" msgstr "සියල්ල පෙන්වන්න" #: browse_foreigners.php:82 db_operations.php:648 -#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:394 -#: libraries/export/pdf.php:147 libraries/messages.inc.php:597 +#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394 +#: libraries/export/pdf.php:147 libraries/messages.inc.php:593 #: pdf_schema.php:283 pdf_schema.php:1123 pdf_schema.php:1139 msgid "Page number:" msgstr "පිටු අංකය:" -#: browse_foreigners.php:132 libraries/messages.inc.php:1242 +#: browse_foreigners.php:132 libraries/messages.inc.php:1238 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -39,7 +39,7 @@ 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/db_links.inc.php:75 -#: libraries/messages.inc.php:841 libraries/tbl_links.inc.php:63 +#: libraries/messages.inc.php:837 libraries/tbl_links.inc.php:63 msgid "Search" msgstr "සෙවීම" @@ -48,12 +48,12 @@ msgstr "සෙවීම" #: db_search.php:362 db_structure.php:567 js/messages.php:48 #: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2267 +#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 #: 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 #: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614 -#: libraries/messages.inc.php:361 libraries/replication_gui.lib.php:73 +#: libraries/messages.inc.php:357 libraries/replication_gui.lib.php:73 #: libraries/replication_gui.lib.php:365 libraries/select_server.lib.php:104 #: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477 #: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782 @@ -73,33 +73,33 @@ msgid "Go" msgstr "යන්න" #: browse_foreigners.php:168 browse_foreigners.php:172 -#: libraries/Index.class.php:442 libraries/messages.inc.php:459 +#: libraries/Index.class.php:442 libraries/messages.inc.php:455 #: tbl_tracking.php:320 msgid "Keyname" msgstr "යතුරු නම" #: browse_foreigners.php:169 browse_foreigners.php:171 -#: libraries/messages.inc.php:252 server_collations.php:55 +#: libraries/messages.inc.php:248 server_collations.php:55 #: server_collations.php:67 server_engines.php:59 server_status.php:628 msgid "Description" msgstr "විස්තරය" #: browse_foreigners.php:247 browse_foreigners.php:256 #: browse_foreigners.php:268 browse_foreigners.php:276 -#: libraries/messages.inc.php:1218 +#: libraries/messages.inc.php:1214 msgid "Use this value" msgstr "Use this value" -#: db_create.php:46 libraries/messages.inc.php:215 +#: db_create.php:46 libraries/messages.inc.php:211 #, fuzzy, php-format msgid "Database %1$s has been created." msgstr "%s දත්තගබඩාව හලන ලදි." -#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:232 +#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:228 msgid "Database comment: " msgstr "දත්තගබඩා විස්තර: " -#: db_datadict.php:165 libraries/messages.inc.php:1070 +#: db_datadict.php:165 libraries/messages.inc.php:1066 #: libraries/tbl_properties.inc.php:724 pdf_schema.php:1236 #: tbl_operations.php:345 tbl_printview.php:130 msgid "Table comments" @@ -108,7 +108,7 @@ msgstr "වගු විස්තර" #: db_datadict.php:174 db_qbe.php:174 libraries/Index.class.php:446 #: libraries/export/htmlword.php:244 libraries/export/latex.php:360 #: libraries/export/odt.php:294 libraries/export/texytext.php:233 -#: libraries/messages.inc.php:317 libraries/tbl_properties.inc.php:99 +#: libraries/messages.inc.php:313 libraries/tbl_properties.inc.php:99 #: libraries/tbl_properties.inc.php:275 pdf_schema.php:1262 #: pdf_schema.php:1283 tbl_change.php:308 tbl_indexes.php:189 #: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135 @@ -120,7 +120,7 @@ msgstr "ක්ෂේත්‍රය" #: libraries/db_events.inc.php:31 libraries/db_routines.inc.php:42 #: 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/messages.inc.php:1181 +#: libraries/export/texytext.php:234 libraries/messages.inc.php:1177 #: libraries/tbl_properties.inc.php:100 pdf_schema.php:1263 #: pdf_schema.php:1284 server_privileges.php:2031 tbl_change.php:287 #: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313 @@ -132,7 +132,7 @@ msgstr "වර්ගය" #: db_datadict.php:177 libraries/Index.class.php:449 #: libraries/export/htmlword.php:246 libraries/export/latex.php:360 #: libraries/export/odt.php:300 libraries/export/texytext.php:235 -#: libraries/messages.inc.php:576 libraries/tbl_properties.inc.php:109 +#: libraries/messages.inc.php:572 libraries/tbl_properties.inc.php:109 #: pdf_schema.php:1265 pdf_schema.php:1286 tbl_change.php:323 #: tbl_printview.php:145 tbl_structure.php:181 tbl_tracking.php:276 #: tbl_tracking.php:327 @@ -141,7 +141,7 @@ msgstr "Null" #: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 -#: libraries/export/texytext.php:236 libraries/messages.inc.php:238 +#: libraries/export/texytext.php:236 libraries/messages.inc.php:234 #: libraries/tbl_properties.inc.php:106 pdf_schema.php:1266 #: pdf_schema.php:1287 tbl_printview.php:146 tbl_structure.php:182 #: tbl_tracking.php:277 @@ -150,14 +150,14 @@ msgstr "සාමාන්‍යයෙන් පවතින" #: db_datadict.php:182 libraries/export/htmlword.php:249 #: libraries/export/latex.php:362 libraries/export/odt.php:307 -#: libraries/export/texytext.php:238 libraries/messages.inc.php:483 +#: libraries/export/texytext.php:238 libraries/messages.inc.php:479 #: pdf_schema.php:1268 pdf_schema.php:1289 tbl_printview.php:150 msgid "Links to" msgstr "Links to" #: db_datadict.php:184 db_printview.php:112 libraries/export/htmlword.php:252 #: libraries/export/latex.php:365 libraries/export/odt.php:312 -#: libraries/export/texytext.php:241 libraries/messages.inc.php:163 +#: libraries/export/texytext.php:241 libraries/messages.inc.php:159 #: libraries/tbl_properties.inc.php:130 pdf_schema.php:1279 #: pdf_schema.php:1290 tbl_printview.php:152 msgid "Comments" @@ -166,7 +166,7 @@ msgstr "විස්තරය" #: db_datadict.php:267 libraries/Index.class.php:359 #: 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/messages.inc.php:559 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:555 #: libraries/mult_submits.inc.php:263 pdf_schema.php:1344 #: server_privileges.php:1529 server_privileges.php:1540 #: server_privileges.php:1850 server_privileges.php:1855 @@ -178,7 +178,7 @@ msgstr "නැත" #: db_datadict.php:267 libraries/Index.class.php:360 #: libraries/Index.class.php:385 libraries/export/htmlword.php:322 #: libraries/export/latex.php:430 libraries/export/odt.php:368 -#: libraries/export/texytext.php:311 libraries/messages.inc.php:1257 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:1253 #: libraries/mult_submits.inc.php:45 libraries/mult_submits.inc.php:50 #: libraries/mult_submits.inc.php:55 libraries/mult_submits.inc.php:60 #: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:101 @@ -192,108 +192,108 @@ msgstr "නැත" msgid "Yes" msgstr "ඔව්" -#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:670 +#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:666 #: tbl_printview.php:498 msgid "Print" msgstr "මුද්‍රණය කරන්න" -#: db_export.php:29 libraries/messages.inc.php:1226 +#: db_export.php:29 libraries/messages.inc.php:1222 msgid "View dump (schema) of database" msgstr "View dump (schema) of database" #: db_export.php:33 db_printview.php:96 db_qbe.php:102 db_structure.php:51 -#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:568 +#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:564 #: navigation.php:346 msgid "No tables found in database." msgstr "දත්තගබඩාවේ වගු කිසිවක් සොයා ගැනීමට නොමැත." -#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:845 +#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:841 #: server_export.php:27 msgid "Select All" msgstr "සියල්ල තෝරන්න" -#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1188 +#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1184 #: server_export.php:29 msgid "Unselect All" msgstr "සියල්ලේ තෝරාගැනීම ඉවත් කරන්න‍" -#: db_operations.php:38 libraries/messages.inc.php:213 tbl_create.php:54 +#: db_operations.php:38 libraries/messages.inc.php:209 tbl_create.php:54 msgid "The database name is empty!" msgstr "දත්තගබඩා නම හිස්ව පවතී!" -#: db_operations.php:236 libraries/messages.inc.php:753 +#: db_operations.php:236 libraries/messages.inc.php:749 #, php-format msgid "Database %s has been renamed to %s" msgstr "%s දත්තගබඩාව %s බවට නම වෙනස් කරන ලදි" -#: db_operations.php:240 libraries/messages.inc.php:178 +#: db_operations.php:240 libraries/messages.inc.php:174 #, php-format msgid "Database %s has been copied to %s" msgstr "%s දත්තගබඩාව %s වෙතට පිටපත් කරන ලදි" -#: db_operations.php:410 libraries/messages.inc.php:236 +#: db_operations.php:410 libraries/messages.inc.php:232 msgid "Rename database to" msgstr "බවට දත්තගබඩාවේ නම වෙනස් කරන්න" -#: db_operations.php:415 libraries/messages.inc.php:161 +#: db_operations.php:415 libraries/messages.inc.php:157 #: server_processlist.php:57 msgid "Command" msgstr "විධානය" -#: db_operations.php:425 libraries/messages.inc.php:58 tbl_change.php:1143 +#: db_operations.php:425 libraries/messages.inc.php:54 tbl_change.php:1143 msgid "and then" msgstr "සහ එවිට" -#: db_operations.php:451 libraries/messages.inc.php:233 +#: db_operations.php:451 libraries/messages.inc.php:229 msgid "Copy database to" msgstr "වෙත දත්තගබඩාව පිටවත් කරන්න" -#: db_operations.php:458 libraries/messages.inc.php:1043 +#: db_operations.php:458 libraries/messages.inc.php:1039 #: tbl_operations.php:526 tbl_tracking.php:388 msgid "Structure only" msgstr "Structure only" -#: db_operations.php:459 libraries/messages.inc.php:1041 +#: db_operations.php:459 libraries/messages.inc.php:1037 #: tbl_operations.php:527 tbl_tracking.php:390 msgid "Structure and data" msgstr "සැකිල්ල සහ දත්ත" -#: db_operations.php:460 libraries/messages.inc.php:229 tbl_operations.php:528 +#: db_operations.php:460 libraries/messages.inc.php:225 tbl_operations.php:528 #: tbl_tracking.php:389 msgid "Data only" msgstr "දත්ත පමණයි" -#: db_operations.php:468 libraries/messages.inc.php:186 +#: db_operations.php:468 libraries/messages.inc.php:182 msgid "CREATE DATABASE before copying" msgstr "පිටපත් කිරීමට ප්‍රථම දත්තගබඩාවක් සාදන්න" #: db_operations.php:471 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 -#: libraries/export/sql.php:82 libraries/messages.inc.php:30 +#: libraries/export/sql.php:82 libraries/messages.inc.php:26 #: tbl_operations.php:534 #, php-format msgid "Add %s" msgstr "%s එක් කරන්න" -#: db_operations.php:475 libraries/messages.inc.php:29 tbl_operations.php:297 +#: db_operations.php:475 libraries/messages.inc.php:25 tbl_operations.php:297 #: tbl_operations.php:536 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT අගයක් එක් කරන්න" -#: db_operations.php:479 libraries/messages.inc.php:31 tbl_operations.php:543 +#: db_operations.php:479 libraries/messages.inc.php:27 tbl_operations.php:543 msgid "Add constraints" msgstr "සීමා බාධවන් එක් කරන්න" -#: db_operations.php:492 libraries/messages.inc.php:1059 +#: db_operations.php:492 libraries/messages.inc.php:1055 msgid "Switch to copied database" msgstr "Switch to copied database" -#: db_operations.php:533 libraries/messages.inc.php:89 +#: db_operations.php:533 libraries/messages.inc.php:85 msgid "BLOB Repository" msgstr "" #: db_operations.php:536 db_tracking.php:76 libraries/common.lib.php:1350 -#: libraries/messages.inc.php:1037 libraries/server_links.inc.php:49 +#: libraries/messages.inc.php:1033 libraries/server_links.inc.php:49 #: server_processlist.php:59 tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "තත්වය" @@ -305,12 +305,12 @@ msgctxt "BLOB repository" msgid "Enabled" msgstr "සක්‍රිය කරන් ලද" -#: db_operations.php:548 libraries/messages.inc.php:93 +#: db_operations.php:548 libraries/messages.inc.php:89 #, fuzzy msgid "Disable" msgstr "අක්‍රිය කරන ලද" -#: db_operations.php:558 libraries/messages.inc.php:90 +#: db_operations.php:558 libraries/messages.inc.php:86 msgid "Damaged" msgstr "" @@ -327,13 +327,13 @@ msgctxt "BLOB repository" msgid "Disabled" msgstr "අක්‍රිය කරන ලද" -#: db_operations.php:574 libraries/messages.inc.php:96 +#: db_operations.php:574 libraries/messages.inc.php:92 #, fuzzy msgid "Enable" msgstr "සක්‍රිය කරන් ලද" #: db_operations.php:598 libraries/Index.class.php:448 -#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:158 +#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:154 #: 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:361 @@ -342,7 +342,7 @@ msgstr "සක්‍රිය කරන් ලද" msgid "Collation" msgstr "Collation" -#: db_operations.php:609 libraries/messages.inc.php:742 main.php:316 +#: db_operations.php:609 libraries/messages.inc.php:738 main.php:316 #: pdf_schema.php:34 #, php-format msgid "" @@ -352,58 +352,58 @@ msgstr "" "The additional features for working with linked tables have been " "deactivated. To find out why click %shere%s." -#: db_operations.php:645 libraries/messages.inc.php:264 pdf_pages.php:528 +#: db_operations.php:645 libraries/messages.inc.php:260 pdf_pages.php:528 msgid "Display PDF schema" msgstr "PDF නිරූපනය පෙන්වන්න" -#: db_operations.php:661 libraries/messages.inc.php:877 pdf_pages.php:529 +#: db_operations.php:661 libraries/messages.inc.php:873 pdf_pages.php:529 msgid "Show grid" msgstr "කොටු සැලැස්ම පෙන්වන්න" -#: db_operations.php:664 libraries/messages.inc.php:874 pdf_pages.php:530 +#: db_operations.php:664 libraries/messages.inc.php:870 pdf_pages.php:530 msgid "Show color" msgstr "වර්ණය පෙන්වන්න" -#: db_operations.php:666 libraries/messages.inc.php:998 pdf_pages.php:531 +#: db_operations.php:666 libraries/messages.inc.php:994 pdf_pages.php:531 msgid "Show dimension of tables" msgstr "Show dimension of tables" -#: db_operations.php:669 libraries/messages.inc.php:52 pdf_pages.php:532 +#: db_operations.php:669 libraries/messages.inc.php:48 pdf_pages.php:532 msgid "Display all tables with the same width" msgstr "එකම ප්‍රමාණයේ සියලු වගු පෙන්වන්න?" -#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:227 +#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:223 #: pdf_pages.php:533 msgid "Data Dictionary" msgstr "දත්ත කෝෂය" -#: db_operations.php:674 libraries/messages.inc.php:884 pdf_pages.php:534 +#: db_operations.php:674 libraries/messages.inc.php:880 pdf_pages.php:534 msgid "Only show keys" msgstr "" -#: db_operations.php:676 libraries/messages.inc.php:875 pdf_pages.php:535 +#: db_operations.php:676 libraries/messages.inc.php:871 pdf_pages.php:535 msgid "Data Dictionary Format" msgstr "දත්ත‍ Format" -#: db_operations.php:678 libraries/messages.inc.php:464 pdf_pages.php:537 +#: db_operations.php:678 libraries/messages.inc.php:460 pdf_pages.php:537 msgid "Landscape" msgstr "භූමි දර්ශනය" -#: db_operations.php:679 libraries/messages.inc.php:663 pdf_pages.php:538 +#: db_operations.php:679 libraries/messages.inc.php:659 pdf_pages.php:538 msgid "Portrait" msgstr "Portrait" -#: db_operations.php:682 libraries/messages.inc.php:599 pdf_pages.php:541 +#: db_operations.php:682 libraries/messages.inc.php:595 pdf_pages.php:541 msgid "Paper size" msgstr "පිටුවේ ප්‍රමාණය" -#: db_operations.php:706 libraries/messages.inc.php:281 +#: db_operations.php:706 libraries/messages.inc.php:277 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 libraries/messages.inc.php:1087 +#: libraries/header.inc.php:126 libraries/messages.inc.php:1083 #: pdf_pages.php:405 server_privileges.php:1626 server_privileges.php:1682 #: server_privileges.php:1946 server_synchronize.php:423 #: server_synchronize.php:866 tbl_tracking.php:592 test/theme.php:75 @@ -411,176 +411,176 @@ msgid "Table" msgstr "වගුව" #: db_printview.php:105 libraries/db_structure.lib.php:56 -#: libraries/messages.inc.php:735 +#: libraries/messages.inc.php:731 msgid "Records" msgstr "වාර්තා" #: db_printview.php:109 libraries/db_structure.lib.php:67 -#: libraries/messages.inc.php:1003 tbl_indexes.php:190 +#: libraries/messages.inc.php:999 tbl_indexes.php:190 msgid "Size" msgstr "ප්‍රමාණය" #: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 -#: libraries/export/sql.php:899 libraries/messages.inc.php:436 +#: libraries/export/sql.php:899 libraries/messages.inc.php:432 msgid "in use" msgstr "භාවිතා වෙමින් පවතී" #: db_printview.php:187 libraries/db_info.inc.php:88 -#: libraries/export/sql.php:514 libraries/messages.inc.php:1032 +#: libraries/export/sql.php:514 libraries/messages.inc.php:1028 #: pdf_schema.php:1241 tbl_printview.php:434 tbl_structure.php:810 msgid "Creation" msgstr "සෑදීම" #: db_printview.php:196 libraries/db_info.inc.php:93 -#: libraries/export/sql.php:519 libraries/messages.inc.php:1036 +#: libraries/export/sql.php:519 libraries/messages.inc.php:1032 #: pdf_schema.php:1246 tbl_printview.php:444 tbl_structure.php:818 msgid "Last update" msgstr "අවසන් යාවත් කාලීන කිරීම" #: db_printview.php:205 libraries/db_info.inc.php:98 -#: libraries/export/sql.php:524 libraries/messages.inc.php:1031 +#: libraries/export/sql.php:524 libraries/messages.inc.php:1027 #: pdf_schema.php:1251 tbl_printview.php:454 tbl_structure.php:826 msgid "Last check" msgstr "අවසන් පරීක්ෂාව" -#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1085 +#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1081 #, php-format msgid "%s table(s)" msgstr "%s table(s)" #: db_qbe.php:29 libraries/display_tbl.lib.php:1981 -#: libraries/messages.inc.php:1051 libraries/sql_query_form.lib.php:140 +#: libraries/messages.inc.php:1047 libraries/sql_query_form.lib.php:140 #: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131 #: view_operations.php:62 msgid "Your SQL query has been executed successfully" msgstr "ඔබගේ SQL විමසුම සාර්ථකව ක්‍රියාවට නංවන ලදි" -#: db_qbe.php:42 libraries/messages.inc.php:371 +#: db_qbe.php:42 libraries/messages.inc.php:367 msgid "You have to choose at least one column to display" msgstr "පෙන්වීම සඳහා අවම වශයෙන් එක් තීරයක්වත් තෝරාගත යුතුයි" #: db_qbe.php:200 libraries/db_structure.lib.php:104 -#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1014 +#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1010 msgid "Sort" msgstr "‍තෝරනවා" #: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111 #: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828 -#: libraries/messages.inc.php:69 server_databases.php:170 +#: libraries/messages.inc.php:65 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314 msgid "Ascending" msgstr "ආරෝහන" #: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119 #: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825 -#: libraries/messages.inc.php:251 server_databases.php:170 +#: libraries/messages.inc.php:247 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315 msgid "Descending" msgstr "අවරෝහන" #: db_qbe.php:264 db_tracking.php:78 libraries/display_tbl.lib.php:308 -#: libraries/messages.inc.php:888 tbl_change.php:277 tbl_tracking.php:597 +#: libraries/messages.inc.php:884 tbl_change.php:277 tbl_tracking.php:597 msgid "Show" msgstr "පෙන්වන්න" -#: db_qbe.php:300 libraries/messages.inc.php:202 +#: db_qbe.php:300 libraries/messages.inc.php:198 msgid "Criteria" msgstr "නිර්ණායක" #: db_qbe.php:353 db_qbe.php:435 db_qbe.php:527 db_qbe.php:558 -#: libraries/messages.inc.php:718 +#: libraries/messages.inc.php:714 msgid "Ins" msgstr "Ins" #: db_qbe.php:357 db_qbe.php:439 db_qbe.php:524 db_qbe.php:555 -#: libraries/messages.inc.php:56 +#: libraries/messages.inc.php:52 msgid "And" msgstr "සහ" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:529 db_qbe.php:560 -#: libraries/messages.inc.php:717 +#: libraries/messages.inc.php:713 msgid "Del" 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/messages.inc.php:592 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:588 #: libraries/tbl_properties.inc.php:779 server_privileges.php:258 #: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288 msgid "Or" msgstr "හෝ" -#: db_qbe.php:507 libraries/messages.inc.php:516 +#: db_qbe.php:507 libraries/messages.inc.php:512 msgid "Modify" msgstr "වෙනස් කිරීම" -#: db_qbe.php:584 libraries/messages.inc.php:33 +#: db_qbe.php:584 libraries/messages.inc.php:29 msgid "Add/Delete Criteria Row" msgstr "නිර්ණායක පේළියක් එක් කරන්න/ඉවත් කරන්න" -#: db_qbe.php:596 libraries/messages.inc.php:32 +#: db_qbe.php:596 libraries/messages.inc.php:28 msgid "Add/Delete Field Columns" msgstr "ක්ෂේත්‍ර තීර එක් කරන්න/ඉවත් කරන්න" -#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1192 +#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1188 msgid "Update Query" msgstr "Update Query" -#: db_qbe.php:617 libraries/messages.inc.php:1216 +#: db_qbe.php:617 libraries/messages.inc.php:1212 msgid "Use Tables" msgstr "Use Tables" -#: db_qbe.php:640 libraries/messages.inc.php:723 +#: db_qbe.php:640 libraries/messages.inc.php:719 #, php-format msgid "SQL query on database %s:" msgstr "SQL query on database %s:" -#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:823 +#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:819 msgid "Submit Query" msgstr "විමසුම ඉදිරිපත් කරන්න" #: db_search.php:68 libraries/auth/config.auth.lib.php:84 #: libraries/auth/config.auth.lib.php:103 #: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52 -#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:26 +#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:22 msgid "Access denied" msgstr "පිවිසුම වලක්වා ඇත" -#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:836 +#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:832 msgid "at least one of the words" msgstr "අවම වශයෙන් එක් වචනයක්වත්" -#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:837 +#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:833 msgid "all words" msgstr "සියලු වචන" -#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:838 +#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:834 msgid "the exact phrase" msgstr "හරියටම වාක්‍යාංශය" -#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:839 +#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:835 msgid "as regular expression" msgstr "as regular expression" -#: db_search.php:242 libraries/messages.inc.php:840 +#: db_search.php:242 libraries/messages.inc.php:836 #, php-format msgid "Search results for \"%s\" %s:" msgstr "\"%s\" %s සඳහා සෙවීම් ප්‍රතිළුල:" -#: db_search.php:260 libraries/messages.inc.php:579 +#: db_search.php:260 libraries/messages.inc.php:575 #, php-format msgid "%s match(es) inside table %s" 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/messages.inc.php:108 +#: db_structure.php:105 libraries/messages.inc.php:104 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468 msgid "Browse" msgstr "බ්‍රවුස් කරන්න" #: db_search.php:272 libraries/display_tbl.lib.php:1165 -#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:243 +#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:239 #: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406 #: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377 #: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216 @@ -588,45 +588,45 @@ msgstr "බ්‍රවුස් කරන්න" msgid "Delete" msgstr "ඉවත් කරන්න" -#: db_search.php:285 libraries/messages.inc.php:580 +#: db_search.php:285 libraries/messages.inc.php:576 #, php-format msgid "Total: %s match(es)" msgstr "Total: %s match(es)" -#: db_search.php:299 libraries/messages.inc.php:832 +#: db_search.php:299 libraries/messages.inc.php:828 msgid "Search in database" msgstr "දත්තගබඩාවේ සොයන්න" -#: db_search.php:302 libraries/messages.inc.php:835 +#: db_search.php:302 libraries/messages.inc.php:831 msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgstr "Word(s) or value(s) to search for (wildcard: \"%\"):" -#: db_search.php:307 libraries/messages.inc.php:842 +#: db_search.php:307 libraries/messages.inc.php:838 msgid "Find:" msgstr "සොයන්න:" -#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1017 +#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1013 msgid "Words are separated by a space character (\" \")." msgstr "Words are separated by a space character (\" \")." -#: db_search.php:325 libraries/messages.inc.php:834 +#: db_search.php:325 libraries/messages.inc.php:830 msgid "Inside table(s):" msgstr "වගු(ව) තුල:" -#: db_search.php:355 libraries/messages.inc.php:833 +#: db_search.php:355 libraries/messages.inc.php:829 msgid "Inside field:" 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/messages.inc.php:431 libraries/sql_query_form.lib.php:334 +#: libraries/messages.inc.php:427 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/db_links.inc.php:63 libraries/export/latex.php:337 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:1048 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:1044 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 #: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269 msgid "Structure" @@ -635,8 +635,8 @@ 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:1642 -#: libraries/db_links.inc.php:100 libraries/messages.inc.php:272 +#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/db_links.inc.php:100 libraries/messages.inc.php:268 #: 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 @@ -646,40 +646,40 @@ 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:1641 -#: libraries/messages.inc.php:284 libraries/mult_submits.inc.php:39 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: libraries/messages.inc.php:280 libraries/mult_submits.inc.php:39 #: libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "හිස්" -#: db_structure.php:316 libraries/messages.inc.php:1075 +#: db_structure.php:316 libraries/messages.inc.php:1071 #: libraries/tbl_links.inc.php:100 #, php-format msgid "Table %s has been emptied" msgstr "%s වගුව හිස් කරන ලදි" -#: db_structure.php:326 libraries/messages.inc.php:1229 +#: db_structure.php:326 libraries/messages.inc.php:1225 #: 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/messages.inc.php:1074 +#: db_structure.php:326 libraries/messages.inc.php:1070 #: libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "%s වගුව හලන ලදි" -#: db_structure.php:333 libraries/messages.inc.php:1128 +#: db_structure.php:333 libraries/messages.inc.php:1124 msgid "Tracking is active." msgstr "" -#: db_structure.php:335 libraries/messages.inc.php:1129 +#: db_structure.php:335 libraries/messages.inc.php:1125 msgid "Tracking is not active." msgstr "" #: db_structure.php:420 libraries/display_tbl.lib.php:1944 -#: libraries/messages.inc.php:1228 +#: libraries/messages.inc.php:1224 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -687,83 +687,83 @@ msgid "" msgstr "" #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 -#: libraries/messages.inc.php:1233 libraries/tbl_info.inc.php:66 +#: libraries/messages.inc.php:1229 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/messages.inc.php:773 libraries/server_links.inc.php:70 +#: libraries/messages.inc.php:769 libraries/server_links.inc.php:70 #: server_replication.php:33 server_replication.php:164 server_status.php:258 msgid "Replication" msgstr "Replication" -#: db_structure.php:489 libraries/messages.inc.php:1053 +#: db_structure.php:489 libraries/messages.inc.php:1049 msgid "Sum" msgstr "එකතුව" #: db_structure.php:496 libraries/StorageEngine.class.php:356 -#: libraries/messages.inc.php:239 +#: libraries/messages.inc.php:235 #, 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 #: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086 -#: libraries/messages.inc.php:1243 libraries/mult_submits.inc.php:16 +#: libraries/messages.inc.php:1239 libraries/mult_submits.inc.php:16 #: server_databases.php:346 server_databases.php:351 #: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465 msgid "With selected:" msgstr "තෝරාගත්:" #: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: libraries/messages.inc.php:148 server_databases.php:348 +#: libraries/messages.inc.php:144 server_databases.php:348 #: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459 msgid "Check All" msgstr "සියල්ල කතිර කොටුගත කරන්න" #: db_structure.php:531 libraries/display_tbl.lib.php:2077 -#: libraries/messages.inc.php:1184 libraries/replication_gui.lib.php:33 +#: libraries/messages.inc.php:1180 libraries/replication_gui.lib.php:33 #: server_databases.php:350 server_privileges.php:533 #: server_privileges.php:1564 tbl_structure.php:463 msgid "Uncheck All" msgstr "කතිර කොටුගත කිරීම ඉවත් කරන්න" -#: db_structure.php:536 libraries/messages.inc.php:150 +#: db_structure.php:536 libraries/messages.inc.php:146 msgid "Check tables having overhead" msgstr "Check tables having overhead" #: db_structure.php:547 db_structure.php:548 db_structure.php:599 -#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:672 +#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:668 #: libraries/mult_submits.inc.php:28 tbl_structure.php:493 #: tbl_structure.php:495 msgid "Print view" msgstr "මුද්‍රණ දර්ශනය" -#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:153 +#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:149 #: libraries/mult_submits.inc.php:42 tbl_operations.php:579 msgid "Check table" msgstr "වගුව පරීක්ෂා කරන්න" -#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:590 +#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:586 #: libraries/mult_submits.inc.php:47 tbl_operations.php:619 #: tbl_structure.php:710 tbl_structure.php:712 msgid "Optimize table" msgstr "ප්‍රශස්තගත වගුව" -#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:758 +#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:754 #: libraries/mult_submits.inc.php:52 tbl_operations.php:609 msgid "Repair table" msgstr "වගුව ප්‍රතිසංස්කරණය කරන්න" -#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:55 +#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:51 #: libraries/mult_submits.inc.php:57 tbl_operations.php:599 msgid "Analyze table" msgstr "වගුව විශ්ලේෂණය කරන්න" #: db_structure.php:557 db_structure.php:558 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/messages.inc.php:310 +#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:306 #: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84 #: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109 #: server_privileges.php:1341 setup/frames/menu.inc.php:22 @@ -771,7 +771,7 @@ msgstr "වගුව විශ්ලේෂණය කරන්න" msgid "Export" msgstr "අපනයනය" -#: db_tracking.php:66 libraries/messages.inc.php:1151 +#: db_tracking.php:66 libraries/messages.inc.php:1147 #, fuzzy msgid "Tracked tables" msgstr "වගුව පරීක්ෂා කරන්න" @@ -780,7 +780,7 @@ msgstr "වගුව පරීක්ෂා කරන්න" #: 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/header_printview.inc.php:58 libraries/messages.inc.php:212 +#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:208 #: navigation.php:233 server_databases.php:169 server_privileges.php:1621 #: server_privileges.php:1682 server_privileges.php:1940 #: server_processlist.php:56 server_synchronize.php:1179 @@ -788,100 +788,100 @@ msgstr "වගුව පරීක්ෂා කරන්න" msgid "Database" msgstr "දත්තගබඩාව" -#: db_tracking.php:73 libraries/messages.inc.php:1146 +#: db_tracking.php:73 libraries/messages.inc.php:1142 #, fuzzy msgid "Last version" msgstr "සර්වරයේ සංස්කරණය" -#: db_tracking.php:74 libraries/messages.inc.php:1145 tbl_tracking.php:594 +#: db_tracking.php:74 libraries/messages.inc.php:1141 tbl_tracking.php:594 #, fuzzy msgid "Created" msgstr "සාදන්න" -#: db_tracking.php:75 libraries/messages.inc.php:1147 tbl_tracking.php:595 +#: db_tracking.php:75 libraries/messages.inc.php:1143 tbl_tracking.php:595 msgid "Updated" msgstr "" #: db_tracking.php:77 libraries/Index.class.php:440 -#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:27 +#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:23 #: server_databases.php:203 server_privileges.php:1503 #: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187 msgid "Action" msgstr "ක්‍රියාව" -#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:247 +#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:243 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:106 libraries/messages.inc.php:1142 tbl_tracking.php:548 +#: db_tracking.php:106 libraries/messages.inc.php:1138 tbl_tracking.php:548 #: tbl_tracking.php:606 tbl_tracking.php:613 msgid "active" msgstr "" -#: db_tracking.php:108 libraries/messages.inc.php:1143 tbl_tracking.php:550 +#: db_tracking.php:108 libraries/messages.inc.php:1139 tbl_tracking.php:550 #: tbl_tracking.php:608 tbl_tracking.php:610 msgid "not active" msgstr "" -#: db_tracking.php:121 libraries/messages.inc.php:1160 +#: db_tracking.php:121 libraries/messages.inc.php:1156 #, fuzzy msgid "Versions" msgstr "පර්සියානු" -#: db_tracking.php:122 libraries/messages.inc.php:1132 tbl_tracking.php:379 +#: db_tracking.php:122 libraries/messages.inc.php:1128 tbl_tracking.php:379 #: tbl_tracking.php:624 msgid "Tracking report" msgstr "" -#: db_tracking.php:123 libraries/messages.inc.php:1144 tbl_tracking.php:251 +#: db_tracking.php:123 libraries/messages.inc.php:1140 tbl_tracking.php:251 #: tbl_tracking.php:624 #, fuzzy msgid "Structure snapshot" msgstr "Structure only" -#: db_tracking.php:152 libraries/messages.inc.php:1154 +#: db_tracking.php:152 libraries/messages.inc.php:1150 #, fuzzy msgid "Untracked tables" msgstr "වගුව පරීක්ෂා කරන්න" -#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1153 +#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1149 #: tbl_structure.php:529 tbl_structure.php:531 #, fuzzy msgid "Track table" msgstr "වගුව පරීක්ෂා කරන්න" -#: db_tracking.php:200 libraries/messages.inc.php:1121 +#: db_tracking.php:200 libraries/messages.inc.php:1117 #, fuzzy msgid "Database Log" msgstr "දත්තගබඩාව" -#: export.php:62 libraries/messages.inc.php:312 +#: export.php:62 libraries/messages.inc.php:308 msgid "Selected export type has to be saved in file!" msgstr "Selected export type has to be saved in file!" -#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:567 +#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:563 #, php-format msgid "Insufficient space to save the file %s." msgstr "Insufficient space to save the file %s ගොනුව සේව් කිරීමට ප්‍රමාණවත් ." -#: export.php:294 libraries/messages.inc.php:324 +#: export.php:294 libraries/messages.inc.php:320 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "" "File %s already exists on server, change filename or check overwrite option." -#: export.php:298 export.php:302 libraries/messages.inc.php:562 +#: export.php:298 export.php:302 libraries/messages.inc.php:558 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "The web server does not have permission to save the file %s." -#: export.php:629 libraries/messages.inc.php:276 +#: export.php:629 libraries/messages.inc.php:272 #, php-format msgid "Dump has been saved to file %s." msgstr "%s ගොනුවට නික්ෂේප දත්ත සේව් කරන ලදි." -#: import.php:60 libraries/messages.inc.php:1202 +#: import.php:60 libraries/messages.inc.php:1198 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation%" @@ -891,14 +891,14 @@ msgstr "" "s for ways to workaround this limit." #: import.php:279 import.php:332 libraries/File.class.php:849 -#: libraries/File.class.php:961 libraries/messages.inc.php:325 +#: libraries/File.class.php:961 libraries/messages.inc.php:321 msgid "File could not be read" msgstr "ගොනුව කියවිය නොහැක" #: import.php:287 import.php:296 import.php:315 import.php:324 #: libraries/File.class.php:1031 libraries/File.class.php:1039 #: libraries/File.class.php:1055 libraries/File.class.php:1063 -#: libraries/messages.inc.php:1189 +#: libraries/messages.inc.php:1185 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -907,7 +907,7 @@ msgstr "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." -#: import.php:337 libraries/messages.inc.php:547 +#: import.php:337 libraries/messages.inc.php:543 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -918,29 +918,29 @@ msgstr "" "FAQ 1.16." #: import.php:372 libraries/display_import.lib.php:24 -#: libraries/messages.inc.php:125 +#: libraries/messages.inc.php:121 msgid "Could not load import plugins, please check your installation!" msgstr "Could not load import plugins, please check your installation!" -#: import.php:397 libraries/messages.inc.php:102 +#: import.php:397 libraries/messages.inc.php:98 msgid "The bookmark has been deleted." msgstr "පොත් සලකුණ ඉවත් කරන ලදි." -#: import.php:401 libraries/messages.inc.php:879 +#: import.php:401 libraries/messages.inc.php:875 msgid "Showing bookmark" msgstr "පොත් සලකුණ පෙන්වන්න" -#: import.php:403 libraries/messages.inc.php:101 +#: import.php:403 libraries/messages.inc.php:97 #, php-format msgid "Bookmark %s created" msgstr "%s පොත් සලකුණ සාදන ලදි" -#: import.php:409 import.php:415 libraries/messages.inc.php:407 +#: import.php:409 import.php:415 libraries/messages.inc.php:403 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "ආනයනය සාර්ථකව අවසන් කරන ලදි, විමසුම්%d ක්‍රියාත්මක කරන ලදි." -#: import.php:424 libraries/messages.inc.php:1107 +#: import.php:424 libraries/messages.inc.php:1103 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -948,11 +948,11 @@ msgstr "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." -#: index.php:190 libraries/messages.inc.php:553 +#: index.php:190 libraries/messages.inc.php:549 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin is more friendly with a frames-capable browser." -#: js/messages.php:25 libraries/messages.inc.php:155 +#: js/messages.php:25 libraries/messages.inc.php:151 #: server_synchronize.php:345 server_synchronize.php:357 #: server_synchronize.php:373 server_synchronize.php:380 #: server_synchronize.php:739 server_synchronize.php:767 @@ -960,118 +960,118 @@ msgstr "phpMyAdmin is more friendly with a frames-capable browser." msgid "Click to select" msgstr "" -#: js/messages.php:26 libraries/messages.inc.php:156 +#: js/messages.php:26 libraries/messages.inc.php:152 msgid "Click to unselect" msgstr "" #: js/messages.php:27 libraries/import.lib.php:103 -#: libraries/messages.inc.php:550 sql.php:89 +#: libraries/messages.inc.php:546 sql.php:89 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" statements are disabled." -#: js/messages.php:30 libraries/messages.inc.php:270 +#: js/messages.php:30 libraries/messages.inc.php:266 #: libraries/mult_submits.inc.php:258 sql.php:188 msgid "Do you really want to " msgstr "ඔබට ඇත්තෙන්ම අවශ්‍යද" -#: js/messages.php:31 libraries/messages.inc.php:271 +#: js/messages.php:31 libraries/messages.inc.php:267 #: libraries/mult_submits.inc.php:258 sql.php:172 msgid "You are about to DESTROY a complete database!" msgstr "ඔබ සූදානම් වන්නේ සම්පූර්ණ දත්තගබඩාවක් විනාශකර දැමීමටයි!" -#: js/messages.php:34 libraries/messages.inc.php:94 +#: js/messages.php:34 libraries/messages.inc.php:90 msgid "You are about to DISABLE a BLOB Repository!" msgstr "" -#: js/messages.php:35 libraries/messages.inc.php:91 +#: js/messages.php:35 libraries/messages.inc.php:87 #, php-format msgid "Are you sure you want to disable all BLOB references for database %s?" msgstr "" -#: js/messages.php:38 libraries/messages.inc.php:342 +#: js/messages.php:38 libraries/messages.inc.php:338 msgid "Missing value in the form!" msgstr "පෝරම‍යේ අස්ථනගත වූ අගයන් ඇත!" -#: js/messages.php:39 libraries/messages.inc.php:570 +#: js/messages.php:39 libraries/messages.inc.php:566 msgid "This is not a number!" msgstr "මෙය අංකයක් නොවේ!" -#: js/messages.php:42 libraries/messages.inc.php:380 +#: js/messages.php:42 libraries/messages.inc.php:376 msgid "The host name is empty!" msgstr "දාරක නම හිස්ව පවතී!" -#: js/messages.php:43 libraries/messages.inc.php:1208 +#: js/messages.php:43 libraries/messages.inc.php:1204 msgid "The user name is empty!" msgstr "භාවිත නාමය හිස්ව පවතී!" -#: js/messages.php:44 libraries/messages.inc.php:607 +#: js/messages.php:44 libraries/messages.inc.php:603 #: server_privileges.php:1197 user_password.php:70 msgid "The password is empty!" msgstr "The password is empty!" -#: js/messages.php:45 libraries/messages.inc.php:609 +#: js/messages.php:45 libraries/messages.inc.php:605 #: server_privileges.php:1195 user_password.php:73 msgid "The passwords aren't the same!" msgstr "The passwords aren't the same!" -#: js/messages.php:49 libraries/messages.inc.php:123 pmd_general.php:342 +#: js/messages.php:49 libraries/messages.inc.php:119 pmd_general.php:342 #: pmd_general.php:379 msgid "Cancel" msgstr "" -#: js/messages.php:52 libraries/messages.inc.php:514 +#: js/messages.php:52 libraries/messages.inc.php:510 msgid "Modifications have been saved" msgstr "වෙනස් කිරීම් සේව් කරන ලදි" -#: js/messages.php:53 libraries/messages.inc.php:741 +#: js/messages.php:53 libraries/messages.inc.php:737 #, fuzzy msgid "Relation deleted" msgstr "Relation view" -#: js/messages.php:54 libraries/messages.inc.php:340 +#: js/messages.php:54 libraries/messages.inc.php:336 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:55 libraries/messages.inc.php:434 +#: js/messages.php:55 libraries/messages.inc.php:430 #, fuzzy msgid "Internal relation added" msgstr "Internal relations" -#: js/messages.php:56 libraries/messages.inc.php:299 +#: js/messages.php:56 libraries/messages.inc.php:295 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:57 libraries/messages.inc.php:300 +#: js/messages.php:57 libraries/messages.inc.php:296 msgid "Error: relation already exists." msgstr "" -#: js/messages.php:58 libraries/messages.inc.php:302 +#: js/messages.php:58 libraries/messages.inc.php:298 msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:59 libraries/messages.inc.php:351 +#: js/messages.php:59 libraries/messages.inc.php:347 #: libraries/relation.lib.php:107 msgid "General relation features" msgstr "General relation features" -#: js/messages.php:59 libraries/messages.inc.php:260 +#: js/messages.php:59 libraries/messages.inc.php:256 #: libraries/relation.lib.php:101 libraries/relation.lib.php:108 msgid "Disabled" msgstr "අක්‍රිය කරන ලද" -#: js/messages.php:60 libraries/messages.inc.php:850 +#: js/messages.php:60 libraries/messages.inc.php:846 msgid "Select referenced key" msgstr "" -#: js/messages.php:61 libraries/messages.inc.php:848 +#: js/messages.php:61 libraries/messages.inc.php:844 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:62 libraries/messages.inc.php:653 +#: js/messages.php:62 libraries/messages.inc.php:649 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:63 libraries/messages.inc.php:142 pmd_general.php:77 +#: js/messages.php:63 libraries/messages.inc.php:138 pmd_general.php:77 #: tbl_relation.php:548 msgid "Choose field to display" msgstr "පෙන්වීම සඳහා ක්ෂේත්‍රයක් ‍තෝරාගන්න" @@ -1090,9 +1090,9 @@ msgid "Prev" msgstr "පෙර" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2332 -#: libraries/common.lib.php:2335 libraries/display_tbl.lib.php:338 -#: libraries/messages.inc.php:543 server_binlog.php:205 server_binlog.php:207 +#: js/messages.php:77 libraries/common.lib.php:2344 +#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: libraries/messages.inc.php:539 server_binlog.php:205 server_binlog.php:207 #: tbl_printview.php:424 tbl_structure.php:802 msgid "Next" msgstr "මීලඟ" @@ -1167,27 +1167,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1543 +#: js/messages.php:97 libraries/common.lib.php:1555 msgid "Jan" msgstr "ජනවාරි" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1545 +#: js/messages.php:99 libraries/common.lib.php:1557 msgid "Feb" msgstr "පෙබරවාරි" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1547 +#: js/messages.php:101 libraries/common.lib.php:1559 msgid "Mar" msgstr "මාර්තු" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1549 +#: js/messages.php:103 libraries/common.lib.php:1561 msgid "Apr" msgstr "අ‍ප්‍රේල්" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1551 +#: js/messages.php:105 libraries/common.lib.php:1563 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1195,37 +1195,37 @@ msgid "May" msgstr "මැයි" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1553 +#: js/messages.php:107 libraries/common.lib.php:1565 msgid "Jun" msgstr "ජූනි" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1555 +#: js/messages.php:109 libraries/common.lib.php:1567 msgid "Jul" msgstr "ජූලි" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1557 +#: js/messages.php:111 libraries/common.lib.php:1569 msgid "Aug" msgstr "අගෝස්තු" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1559 +#: js/messages.php:113 libraries/common.lib.php:1571 msgid "Sep" msgstr "සැප්තැම්බර්" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1561 +#: js/messages.php:115 libraries/common.lib.php:1573 msgid "Oct" msgstr "ඔක්තෝම්බර්" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1563 +#: js/messages.php:117 libraries/common.lib.php:1575 msgid "Nov" msgstr "නොවැම්බර්" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1565 +#: js/messages.php:119 libraries/common.lib.php:1577 msgid "Dec" msgstr "දෙසැම්බර්" @@ -1266,37 +1266,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1568 +#: js/messages.php:132 libraries/common.lib.php:1580 msgid "Sun" msgstr "ඉරිදා" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1570 +#: js/messages.php:134 libraries/common.lib.php:1582 msgid "Mon" msgstr "සදුදා" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1572 +#: js/messages.php:136 libraries/common.lib.php:1584 msgid "Tue" msgstr "අගහරු‍වදා" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1574 +#: js/messages.php:138 libraries/common.lib.php:1586 msgid "Wed" msgstr "බදාදා" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1576 +#: js/messages.php:140 libraries/common.lib.php:1588 msgid "Thu" msgstr "බ්‍රහස්පතින්දා" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1578 +#: js/messages.php:142 libraries/common.lib.php:1590 msgid "Fri" msgstr "සිකුරාදා:" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1580 +#: js/messages.php:144 libraries/common.lib.php:1592 msgid "Sat" msgstr "සෙනසුරාදා" @@ -1370,77 +1370,77 @@ msgstr "භාවිතා වෙමින් පවතී" msgid "Second" msgstr "තප්පරයකට" -#: libraries/Config.class.php:1015 libraries/messages.inc.php:338 +#: libraries/Config.class.php:1015 libraries/messages.inc.php:334 msgid "Font size" msgstr "ෆොන්ට් එකෙහි ප්‍රමාණය" #: libraries/File.class.php:344 libraries/File.class.php:432 #: libraries/File.class.php:569 libraries/File.class.php:708 -#: libraries/messages.inc.php:1201 +#: libraries/messages.inc.php:1197 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.class.php:414 libraries/messages.inc.php:1198 +#: libraries/File.class.php:414 libraries/messages.inc.php:1194 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:417 libraries/messages.inc.php:1197 +#: libraries/File.class.php:417 libraries/messages.inc.php:1193 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:420 libraries/messages.inc.php:1200 +#: libraries/File.class.php:420 libraries/messages.inc.php:1196 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:423 libraries/messages.inc.php:1199 +#: libraries/File.class.php:423 libraries/messages.inc.php:1195 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:426 libraries/messages.inc.php:1195 +#: libraries/File.class.php:426 libraries/messages.inc.php:1191 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:429 libraries/messages.inc.php:1196 +#: libraries/File.class.php:429 libraries/messages.inc.php:1192 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:908 libraries/messages.inc.php:319 +#: libraries/File.class.php:908 libraries/messages.inc.php:315 #, fuzzy msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "සමහර විට ආසන්න වශයෙන්. FAQ 3.11 බලන්න" -#: libraries/Index.class.php:428 libraries/messages.inc.php:554 +#: libraries/Index.class.php:428 libraries/messages.inc.php:550 #: tbl_relation.php:529 msgid "No index defined!" msgstr "No index defined!" -#: libraries/Index.class.php:433 libraries/messages.inc.php:411 +#: libraries/Index.class.php:433 libraries/messages.inc.php:407 #: server_databases.php:132 tbl_tracking.php:316 msgid "Indexes" msgstr "සූචියන්" -#: libraries/Index.class.php:444 libraries/messages.inc.php:1186 +#: libraries/Index.class.php:444 libraries/messages.inc.php:1182 #: 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:475 tbl_tracking.php:322 msgid "Unique" msgstr "අනන්‍ය" -#: libraries/Index.class.php:445 libraries/messages.inc.php:596 +#: libraries/Index.class.php:445 libraries/messages.inc.php:592 #: tbl_tracking.php:323 msgid "Packed" msgstr "" -#: libraries/Index.class.php:447 libraries/messages.inc.php:131 +#: libraries/Index.class.php:447 libraries/messages.inc.php:127 #: tbl_tracking.php:325 msgid "Cardinality" msgstr "Cardinality" -#: libraries/Index.class.php:450 libraries/messages.inc.php:162 +#: libraries/Index.class.php:450 libraries/messages.inc.php:158 #: tbl_tracking.php:279 tbl_tracking.php:328 #, fuzzy msgid "Comment" @@ -1449,29 +1449,29 @@ msgstr "විස්තරය" #: libraries/Index.class.php:466 libraries/common.lib.php:616 #: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:280 pdf_pages.php:280 +#: libraries/messages.inc.php:276 pdf_pages.php:280 #: setup/frames/index.inc.php:124 setup/lib/messages.inc.php:352 #: tbl_row_action.php:69 msgid "Edit" msgstr "සංස්කරණය කරන්න" -#: libraries/Index.class.php:472 libraries/messages.inc.php:666 +#: libraries/Index.class.php:472 libraries/messages.inc.php:662 msgid "The primary key has been dropped" msgstr "The primary key has been dropped" -#: libraries/Index.class.php:476 libraries/messages.inc.php:413 +#: libraries/Index.class.php:476 libraries/messages.inc.php:409 #, php-format msgid "Index %s has been dropped" msgstr "%s සූචිය හලන ලදි" -#: libraries/Index.class.php:576 libraries/messages.inc.php:412 +#: libraries/Index.class.php:576 libraries/messages.inc.php:408 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "" -#: libraries/List_Database.class.php:431 libraries/messages.inc.php:218 +#: libraries/List_Database.class.php:431 libraries/messages.inc.php:214 #: libraries/server_links.inc.php:41 server_databases.php:88 #: server_privileges.php:1621 setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" @@ -1500,86 +1500,86 @@ msgid_plural "%1$d rows inserted." msgstr[0] "පේළි කිසිවක් තෝරගෙන නැත" msgstr[1] "පේළි කිසිවක් තෝරගෙන නැත" -#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:549 +#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:545 msgid "" "There is no detailed status information available for this storage engine." msgstr "" "There is no detailed status information available for this storage engine." -#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:291 +#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:287 #, php-format msgid "%s is available on this MySQL server." msgstr "%s is available on this MySQL server." -#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:292 +#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:288 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s has been disabled for this MySQL server." -#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:294 +#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:290 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "This MySQL server does not support the %s storage engine." -#: libraries/Table.class.php:1019 libraries/messages.inc.php:443 +#: libraries/Table.class.php:1019 libraries/messages.inc.php:439 msgid "Invalid database" msgstr "වලංගු නොවන දත්තගබඩාව" -#: libraries/Table.class.php:1033 libraries/messages.inc.php:450 +#: libraries/Table.class.php:1033 libraries/messages.inc.php:446 #: tbl_get_field.php:26 msgid "Invalid table name" msgstr "වලංගු නොවන වගු නම" -#: libraries/Table.class.php:1048 libraries/messages.inc.php:301 +#: libraries/Table.class.php:1048 libraries/messages.inc.php:297 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "%1$s සිට %2$s දක්වා වගුවේ නම් වෙනස් කිරීමේ දෝෂයක් ඇත" -#: libraries/Table.class.php:1132 libraries/messages.inc.php:754 +#: libraries/Table.class.php:1132 libraries/messages.inc.php:750 #, php-format msgid "Table %s has been renamed to %s" msgstr "%s වගුව %s බවට නම වෙනස් කරන ලදි" -#: libraries/Theme.class.php:162 libraries/messages.inc.php:1099 +#: libraries/Theme.class.php:162 libraries/messages.inc.php:1095 #, php-format msgid "No valid image path for theme %s found!" msgstr "No valid image path for theme %s found!" -#: libraries/Theme.class.php:384 libraries/messages.inc.php:1097 +#: libraries/Theme.class.php:384 libraries/messages.inc.php:1093 msgid "No preview available." msgstr "No preview available." -#: libraries/Theme.class.php:387 libraries/messages.inc.php:1089 +#: libraries/Theme.class.php:387 libraries/messages.inc.php:1085 msgid "take it" msgstr "take it" -#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1096 +#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1092 #, php-format msgid "Default theme %s not found!" msgstr "‍%s සාමාන්‍යයෙන් පවතින තේමාව සොයාගැනීමට නොමැත!" -#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1098 +#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1094 #, php-format msgid "Theme %s not found!" msgstr "Theme %s not found!" -#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1100 +#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1096 #, php-format msgid "Theme path not found for theme %s!" msgstr "Theme path not found for theme %s!" -#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1101 +#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1097 #: test/theme.php:161 themes.php:21 themes.php:41 msgid "Theme / Style" msgstr "තේමාව / ශෛලිය" -#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:172 +#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:168 msgid "Cannot connect: invalid settings." msgstr "සම්බන්ධ විය නොහැක : වලංගු නොවන සැකසුමකි." #: libraries/auth/config.auth.lib.php:92 #: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65 -#: libraries/messages.inc.php:1238 test/theme.php:152 +#: libraries/messages.inc.php:1234 test/theme.php:152 #, php-format msgid "Welcome to %s" msgstr "%s වෙත ආයුබෝවන්" @@ -1605,104 +1605,104 @@ msgstr "" "configuration and make sure that they correspond to the information given by " "the administrator of the MySQL server." -#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:488 +#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:484 msgid "Log in" msgstr "ලොගින් වන්න" #: libraries/auth/cookie.auth.lib.php:246 -#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:659 +#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:655 #: libraries/navigation_header.inc.php:93 #: libraries/navigation_header.inc.php:95 msgid "phpMyAdmin documentation" msgstr "phpMyAdmin ලියකියවිලි" #: libraries/auth/cookie.auth.lib.php:258 -#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:492 +#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:488 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:493 +#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:489 msgid "Server:" msgstr "සර්වරය" -#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:494 +#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:490 msgid "Username:" msgstr "භාවිත නාමය:" -#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:491 +#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:487 msgid "Password:" msgstr "මුරපදය:" -#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:854 +#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:850 msgid "Server Choice" msgstr "සර්වරයේ තේරීම" #: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 -#: libraries/messages.inc.php:177 +#: libraries/messages.inc.php:173 msgid "Cookies must be enabled past this point." msgstr "මෙම ස්ථානය පසු කිරීම සඳහා කුකීස් - Cookies සක්‍රිය කල යුතුයි." #: libraries/auth/cookie.auth.lib.php:671 -#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:489 +#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:485 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" #: libraries/auth/cookie.auth.lib.php:675 -#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:544 +#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:540 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "No activity within %s seconds; please log in again" #: libraries/auth/cookie.auth.lib.php:685 #: libraries/auth/cookie.auth.lib.php:687 -#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:126 +#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:122 msgid "Cannot log in to the MySQL server" msgstr "MySQL සර්වරයට ලොග් විය නොහැක" -#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1245 +#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1241 msgid "Wrong username/password. Access denied." msgstr "වැරදි භාවිත නාමය/මුරපදය. පිවිසුම වලක්වා ඇත." #: libraries/auth/swekey/swekey.auth.lib.php:118 -#: libraries/messages.inc.php:1057 +#: libraries/messages.inc.php:1053 #, php-format msgid "File %s does not contain any key id" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:157 #: libraries/auth/swekey/swekey.auth.lib.php:180 -#: libraries/messages.inc.php:1056 +#: libraries/messages.inc.php:1052 msgid "Hardware authentication failed" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:166 -#: libraries/messages.inc.php:1058 +#: libraries/messages.inc.php:1054 msgid "No valid authentication key plugged" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:202 -#: libraries/messages.inc.php:1055 +#: libraries/messages.inc.php:1051 msgid "Authenticating..." msgstr "" -#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1230 +#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1226 msgid "View image" msgstr "" -#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:652 +#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:648 msgid "Play audio" msgstr "" -#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1232 +#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1228 msgid "View video" msgstr "" -#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:269 +#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:265 msgid "Download file" msgstr "" -#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:128 +#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:124 msgid "" "Couldn't load the iconv or recode extension needed for charset conversion. " "Either configure PHP to enable these extensions or disable charset " @@ -1714,7 +1714,7 @@ msgstr "" #: libraries/charset_conversion.lib.php:79 #: libraries/charset_conversion.lib.php:90 -#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:130 +#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:126 msgid "" "Couldn't use the iconv, libiconv, or recode_string functions, although the " "necessary extensions appear to be loaded. Check your PHP configuration." @@ -1722,7 +1722,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/messages.inc.php:170 +#: libraries/common.inc.php:583 libraries/messages.inc.php:166 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!" @@ -1758,22 +1758,22 @@ msgstr "" msgid "Invalid server index: %s" msgstr "Invalid server index: \"%s\"" -#: libraries/common.inc.php:636 libraries/messages.inc.php:448 +#: libraries/common.inc.php:636 libraries/messages.inc.php:444 #, 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/messages.inc.php:856 libraries/select_server.lib.php:41 +#: libraries/messages.inc.php:852 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/messages.inc.php:437 +#: libraries/common.inc.php:823 libraries/messages.inc.php:433 msgid "Invalid authentication method set in configuration:" msgstr "Invalid authentication method set in configuration:" -#: libraries/common.lib.php:147 libraries/messages.inc.php:499 +#: libraries/common.lib.php:147 libraries/messages.inc.php:495 #, php-format msgid "Max: %s%s" msgstr "Max: %s%s" @@ -1793,7 +1793,7 @@ msgstr "en" #: libraries/common.lib.php:428 libraries/common.lib.php:430 #: libraries/common.lib.php:432 libraries/common.lib.php:448 #: libraries/common.lib.php:450 libraries/dbg/setup.php:25 -#: libraries/display_export.lib.php:164 libraries/messages.inc.php:267 +#: libraries/display_export.lib.php:164 libraries/messages.inc.php:263 #: libraries/relation.lib.php:97 libraries/sql_query_form.lib.php:451 #: libraries/sql_query_form.lib.php:454 main.php:229 pdf_pages.php:37 #: pdf_pages.php:43 pdf_pages.php:49 pdf_pages.php:54 @@ -1803,55 +1803,55 @@ msgstr "ලියකියවිලි" #: libraries/common.lib.php:581 libraries/core.lib.php:234 #: libraries/core.lib.php:263 libraries/import.lib.php:134 -#: libraries/messages.inc.php:297 pdf_schema.php:32 pdf_schema.php:232 +#: libraries/messages.inc.php:293 pdf_schema.php:32 pdf_schema.php:232 #: tbl_change.php:1027 tbl_operations.php:213 tbl_relation.php:290 #: view_operations.php:62 msgid "Error" msgstr "දෝෂය" #: libraries/common.lib.php:595 libraries/header_printview.inc.php:61 -#: libraries/messages.inc.php:1023 server_processlist.php:60 +#: libraries/messages.inc.php:1019 server_processlist.php:60 #: server_status.php:247 msgid "SQL query" msgstr "SQL විමසුම" -#: libraries/common.lib.php:634 libraries/messages.inc.php:538 +#: libraries/common.lib.php:634 libraries/messages.inc.php:534 msgid "MySQL said: " msgstr "MySQL said: " -#: libraries/common.lib.php:667 libraries/messages.inc.php:76 +#: libraries/common.lib.php:667 libraries/messages.inc.php:72 #: pdf_schema.php:241 user_password.php:115 msgid "Back" msgstr "ආපසු" -#: libraries/common.lib.php:1177 libraries/messages.inc.php:309 +#: libraries/common.lib.php:1177 libraries/messages.inc.php:305 #: setup/lib/messages.inc.php:353 msgid "Explain SQL" msgstr "SQL ය පහදන්න " -#: libraries/common.lib.php:1180 libraries/messages.inc.php:551 +#: libraries/common.lib.php:1180 libraries/messages.inc.php:547 msgid "Skip Explain SQL" msgstr "Skip Explain SQL" -#: libraries/common.lib.php:1212 libraries/messages.inc.php:563 +#: libraries/common.lib.php:1212 libraries/messages.inc.php:559 msgid "Without PHP Code" msgstr "PHP කේත නොමැතිව" -#: libraries/common.lib.php:1215 libraries/messages.inc.php:649 +#: libraries/common.lib.php:1215 libraries/messages.inc.php:645 #: setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "PHP කේත සාදන්න" -#: libraries/common.lib.php:1233 libraries/messages.inc.php:737 +#: libraries/common.lib.php:1233 libraries/messages.inc.php:733 #: server_status.php:341 setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "අලුත් කරන්න" -#: libraries/common.lib.php:1242 libraries/messages.inc.php:575 +#: libraries/common.lib.php:1242 libraries/messages.inc.php:571 msgid "Skip Validate SQL" msgstr "Skip Validate SQL" -#: libraries/common.lib.php:1245 libraries/messages.inc.php:1220 +#: libraries/common.lib.php:1245 libraries/messages.inc.php:1216 #: setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "Validate SQL" @@ -1867,11 +1867,11 @@ msgid "Inline" msgstr "යන්ත්‍රයන්" #: libraries/common.lib.php:1332 libraries/common.lib.php:1347 -#: libraries/messages.inc.php:713 +#: libraries/messages.inc.php:709 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1351 libraries/messages.inc.php:1108 +#: libraries/common.lib.php:1351 libraries/messages.inc.php:1104 #: libraries/tbl_triggers.lib.php:28 server_processlist.php:58 msgid "Time" msgstr "වේලාව" @@ -1905,46 +1905,56 @@ msgstr "PiB" msgid "EiB" msgstr "EiB" +#. l10n: Thousands separator +#: libraries/common.lib.php:1417 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: libraries/common.lib.php:1419 +msgid "." +msgstr "." + #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1584 +#: libraries/common.lib.php:1596 #: libraries/transformations/text_plain__dateformat.inc.php:28 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y at %I:%M %p" -#: libraries/common.lib.php:1886 +#: libraries/common.lib.php:1898 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "දින %s, පැය %s, මිනිත්තු %s සහ තප්පර %s" -#: libraries/common.lib.php:2301 libraries/common.lib.php:2304 -#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:664 +#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:660 #: server_status.php:608 msgid "Begin" msgstr "Begin" -#: libraries/common.lib.php:2302 libraries/common.lib.php:2305 -#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:665 +#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:661 #: server_binlog.php:168 server_binlog.php:170 msgid "Previous" msgstr "පෙර" -#: libraries/common.lib.php:2333 libraries/common.lib.php:2336 -#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:289 +#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:285 msgid "End" msgstr "අවසානය‍" -#: libraries/common.lib.php:2409 libraries/messages.inc.php:455 +#: libraries/common.lib.php:2421 libraries/messages.inc.php:451 #, php-format msgid "Jump to database "%s"." msgstr ""%s" දත්තගබඩාව වෙත යන්න ." -#: libraries/common.lib.php:2429 libraries/messages.inc.php:461 +#: libraries/common.lib.php:2441 libraries/messages.inc.php:457 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/core.lib.php:286 libraries/dbg/setup.php:22 -#: libraries/messages.inc.php:127 +#: libraries/messages.inc.php:123 #, php-format msgid "" "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " @@ -1954,116 +1964,116 @@ msgstr "" "extension. Please check your PHP configuration." #: libraries/db_events.inc.php:20 libraries/db_events.inc.php:22 -#: libraries/export/sql.php:415 libraries/messages.inc.php:306 +#: libraries/export/sql.php:415 libraries/messages.inc.php:302 #, fuzzy msgid "Events" msgstr "යවන ලද" #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 -#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:541 +#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:537 #: libraries/tbl_triggers.lib.php:27 setup/frames/index.inc.php:112 msgid "Name" msgstr "නම" -#: libraries/db_links.inc.php:45 libraries/messages.inc.php:216 +#: libraries/db_links.inc.php:45 libraries/messages.inc.php:212 #, php-format msgid "Database %s has been dropped." msgstr "%s දත්තගබඩාව හලන ලදි." #: libraries/db_links.inc.php:57 libraries/db_links.inc.php:58 -#: libraries/db_links.inc.php:59 libraries/messages.inc.php:234 +#: libraries/db_links.inc.php:59 libraries/messages.inc.php:230 msgid "Database seems to be empty!" msgstr "" -#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1025 +#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1021 #: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60 #: querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1152 +#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1148 #: libraries/tbl_links.inc.php:69 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:86 libraries/messages.inc.php:719 +#: libraries/db_links.inc.php:86 libraries/messages.inc.php:715 msgid "Query" msgstr "විමසුම" -#: libraries/db_links.inc.php:91 libraries/messages.inc.php:253 +#: libraries/db_links.inc.php:91 libraries/messages.inc.php:249 msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:98 libraries/messages.inc.php:397 +#: libraries/db_links.inc.php:98 libraries/messages.inc.php:393 #: libraries/server_links.inc.php:88 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:104 libraries/messages.inc.php:587 +#: libraries/db_links.inc.php:104 libraries/messages.inc.php:583 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" msgstr "මෙහෙයුම්" -#: libraries/db_links.inc.php:111 libraries/messages.inc.php:709 +#: libraries/db_links.inc.php:111 libraries/messages.inc.php:705 #: libraries/server_links.inc.php:66 server_privileges.php:72 #: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117 msgid "Privileges" msgstr "වරප්‍රසාද" #: libraries/db_routines.inc.php:30 libraries/db_routines.inc.php:32 -#: libraries/messages.inc.php:812 +#: libraries/messages.inc.php:808 msgid "Routines" msgstr "" -#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:811 +#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:807 msgid "Return type" msgstr "" #: libraries/db_structure.lib.php:57 libraries/display_tbl.lib.php:1848 -#: libraries/messages.inc.php:65 +#: libraries/messages.inc.php:61 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "සමහර විට ආසන්න වශයෙන්. FAQ 3.11 බලන්න" -#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:593 +#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:589 #: server_databases.php:142 tbl_printview.php:336 tbl_structure.php:683 msgid "Overhead" msgstr "පිරිවැය" #: libraries/dbi/mysql.dbi.lib.php:112 libraries/dbi/mysqli.dbi.lib.php:124 -#: libraries/messages.inc.php:176 +#: libraries/messages.inc.php:172 msgid "Connection for controluser as defined in your configuration failed." msgstr "" #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 -#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:855 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:851 msgid "The server is not responding" msgstr "සර්වරය ප්‍රතිචාර නොදක්වයි" #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:1010 +#: libraries/messages.inc.php:1006 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 libraries/messages.inc.php:255 +#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:251 #: tbl_structure.php:609 msgid "Details..." msgstr "" -#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:143 +#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:139 #: main.php:91 user_password.php:111 user_password.php:129 msgid "Change password" msgstr "මුරපදය වෙනස් කරන්න" -#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:561 +#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:557 #: libraries/replication_gui.lib.php:341 server_privileges.php:768 msgid "No Password" msgstr "මුරපදයක් නැත" -#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:610 +#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:606 #: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60 #: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335 #: libraries/replication_gui.lib.php:345 server_privileges.php:757 @@ -2072,13 +2082,13 @@ msgstr "මුරපදයක් නැත" msgid "Password" msgstr "මුරපදය" -#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:806 +#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:802 #: libraries/replication_gui.lib.php:349 libraries/replication_gui.lib.php:352 #: server_privileges.php:776 server_privileges.php:779 msgid "Re-type" msgstr "නැවත ටයිප් කරන්න" -#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:608 +#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:604 msgid "Password Hashing" msgstr "Password Hashing" @@ -2088,89 +2098,89 @@ msgstr "Password Hashing" msgid "MySQL 4.0 compatible" msgstr "MySQL 4.0 compatible" -#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:353 +#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:349 #: libraries/replication_gui.lib.php:356 server_privileges.php:783 msgid "Generate Password" msgstr "මුරපදය උත්පාදනය කරන්න" -#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:352 +#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:348 #: libraries/replication_gui.lib.php:359 server_privileges.php:786 msgid "Generate" msgstr "උත්පාදනය කරන්න" #: libraries/display_create_database.lib.php:22 -#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:189 +#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:185 msgid "Create new database" msgstr "නව දත්තගබඩාවක් සාදන්න" -#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:185 +#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:181 msgid "Create" msgstr "සාදන්න" -#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:564 +#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:560 #: server_privileges.php:74 server_privileges.php:1388 #: server_replication.php:35 msgid "No Privileges" msgstr "වරප්‍රසාද නොමැත" -#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:445 +#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:441 msgid "Table must have at least one field." msgstr "වගුවේ අවම වශයෙන් එක් ක්ෂේත්‍රයක්වත් තිබිය යුතුයි." -#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:190 +#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:186 #, php-format msgid "Create table on database %s" msgstr "%s දත්තගබඩාවේ නව වගුවක් සාදන්න" -#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:577 +#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:573 msgid "Number of fields" msgstr "ක්ෂේත්‍ර ගණන" -#: libraries/display_export.lib.php:42 libraries/messages.inc.php:124 +#: libraries/display_export.lib.php:42 libraries/messages.inc.php:120 msgid "Could not load export plugins, please check your installation!" msgstr "Could not load export plugins, please check your installation!" -#: libraries/display_export.lib.php:107 libraries/messages.inc.php:277 +#: libraries/display_export.lib.php:107 libraries/messages.inc.php:273 #, php-format msgid "Dump %s row(s) starting at record # %s" msgstr "Dump %s row(s) starting at record # %s." -#: libraries/display_export.lib.php:115 libraries/messages.inc.php:274 +#: libraries/display_export.lib.php:115 libraries/messages.inc.php:270 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:125 libraries/messages.inc.php:852 +#: libraries/display_export.lib.php:125 libraries/messages.inc.php:848 #: setup/lib/messages.inc.php:82 msgid "Save as file" msgstr "ගොනුවක් ලෙස තෝරන්න" -#: libraries/display_export.lib.php:134 libraries/messages.inc.php:828 +#: libraries/display_export.lib.php:134 libraries/messages.inc.php:824 #, php-format msgid "Save on server in %s directory" msgstr "සර්වරයේ %s ඩිරෙක්ටරියේ සේව් කරන්න" -#: libraries/display_export.lib.php:142 libraries/messages.inc.php:594 +#: libraries/display_export.lib.php:142 libraries/messages.inc.php:590 #: setup/lib/messages.inc.php:90 msgid "Overwrite existing file(s)" msgstr "Overwrite existing file(s)" -#: libraries/display_export.lib.php:148 libraries/messages.inc.php:330 +#: libraries/display_export.lib.php:148 libraries/messages.inc.php:326 msgid "File name template" msgstr "ෆයිල් නම් ටෙම්ප්ලේටය" -#: libraries/display_export.lib.php:152 libraries/messages.inc.php:327 +#: libraries/display_export.lib.php:152 libraries/messages.inc.php:323 msgid "server name" msgstr "සර්වරයේ නම" -#: libraries/display_export.lib.php:155 libraries/messages.inc.php:326 +#: libraries/display_export.lib.php:155 libraries/messages.inc.php:322 msgid "database name" msgstr "දත්තගබඩාවේ නම" -#: libraries/display_export.lib.php:158 libraries/messages.inc.php:328 +#: libraries/display_export.lib.php:158 libraries/messages.inc.php:324 msgid "table name" msgstr "වගුවේ නම" -#: libraries/display_export.lib.php:162 libraries/messages.inc.php:329 +#: libraries/display_export.lib.php:162 libraries/messages.inc.php:325 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2181,24 +2191,24 @@ msgstr "" "formatting strings. Additionally the following transformations will happen: %" "3$s. Other text will be kept as is." -#: libraries/display_export.lib.php:202 libraries/messages.inc.php:331 +#: libraries/display_export.lib.php:202 libraries/messages.inc.php:327 msgid "remember template" msgstr "ටෙම්ප්ලේටය මතක තබා ගන්න" #: libraries/display_export.lib.php:210 libraries/display_import.lib.php:178 -#: libraries/display_import.lib.php:191 libraries/messages.inc.php:145 +#: libraries/display_import.lib.php:191 libraries/messages.inc.php:141 #: libraries/sql_query_form.lib.php:549 msgid "Character set of the file:" msgstr "ගොනුවේ අක්ෂර කට්ටලය:" -#: libraries/display_export.lib.php:235 libraries/messages.inc.php:166 +#: libraries/display_export.lib.php:235 libraries/messages.inc.php:162 #: setup/lib/messages.inc.php:84 msgid "Compression" 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/messages.inc.php:558 +#: libraries/export/sql.php:868 libraries/messages.inc.php:554 #: libraries/tbl_properties.inc.php:575 server_privileges.php:1836 #: server_processlist.php:75 msgid "None" @@ -2222,67 +2232,67 @@ msgstr "\"gzipp ගත කරන ලදි\"" msgid "bzipped" msgstr "\"bzipp ගතකරන ලදි\"" -#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1018 +#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1014 msgid "SQL compatibility mode" msgstr "SQL compatibility mode" -#: libraries/display_import.lib.php:67 libraries/messages.inc.php:398 +#: libraries/display_import.lib.php:67 libraries/messages.inc.php:394 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " "browsers." msgstr "" -#: libraries/display_import.lib.php:77 libraries/messages.inc.php:406 +#: libraries/display_import.lib.php:77 libraries/messages.inc.php:402 msgid "The file is being processed, please be patient." msgstr "" -#: libraries/display_import.lib.php:99 libraries/messages.inc.php:408 +#: libraries/display_import.lib.php:99 libraries/messages.inc.php:404 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." msgstr "" -#: libraries/display_import.lib.php:126 libraries/messages.inc.php:333 +#: libraries/display_import.lib.php:126 libraries/messages.inc.php:329 msgid "File to import" msgstr "ආනයනය සඳහා වූ ගොනුව" -#: libraries/display_import.lib.php:137 libraries/messages.inc.php:486 +#: libraries/display_import.lib.php:137 libraries/messages.inc.php:482 #: libraries/sql_query_form.lib.php:524 msgid "Location of the text file" msgstr "පාඨ ගොනුවෙහි පිහිටුම" -#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1203 +#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1199 msgid "File uploads are not allowed on this server." msgstr "File uploads are not allowed on this server." -#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1235 +#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1231 #: libraries/sql_query_form.lib.php:533 tbl_change.php:1028 msgid "The directory you set for upload work cannot be reached" msgstr "අප්ලෝඩ් කිරීම් සඳහා සැකසූ ඩිරෙක්ටරිය වෙත පිවිසිය නොහැක" -#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1236 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1232 #: libraries/sql_query_form.lib.php:536 tbl_change.php:1031 msgid "web server upload directory" msgstr "අන්තර්ජාල සර්වරයේ අප්ලෝඩ් ඩිරෙක්ටරිය" -#: libraries/display_import.lib.php:212 libraries/messages.inc.php:167 +#: libraries/display_import.lib.php:212 libraries/messages.inc.php:163 #, php-format msgid "Imported file compression will be automatically detected from: %s" msgstr "Imported file compression will be automatically detected from: %s" -#: libraries/display_import.lib.php:219 libraries/messages.inc.php:600 +#: libraries/display_import.lib.php:219 libraries/messages.inc.php:596 msgid "Partial import" msgstr "Partial import" -#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1105 +#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1101 #, php-format msgid "" "Previous import timed out, after resubmitting will continue from position %d." msgstr "" "Previous import timed out, after resubmitting will continue from position %d." -#: libraries/display_import.lib.php:232 libraries/messages.inc.php:51 +#: libraries/display_import.lib.php:232 libraries/messages.inc.php:47 msgid "" "Allow the interruption of an import in case the script detects it is close " "to the PHP timeout limit. This might be good way to import large files, " @@ -2292,179 +2302,179 @@ msgstr "" "This might be good way to import large files, however it can break " "transactions." -#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1004 +#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1000 #: setup/lib/messages.inc.php:161 msgid "Number of records (queries) to skip from start" msgstr "Number of records(queries) to skip from start" -#: libraries/display_import.lib.php:255 libraries/messages.inc.php:396 +#: libraries/display_import.lib.php:255 libraries/messages.inc.php:392 #: setup/lib/messages.inc.php:160 msgid "Format of imported file" msgstr "ආනයනය කරන ලද ගොනුවේ ආකෘතිය" #: libraries/display_select_lang.lib.php:45 -#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:465 +#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:461 #: setup/frames/index.inc.php:70 msgid "Language" msgstr "භාෂාව" -#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:447 +#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:443 #, php-format msgid "%d is not valid row number." msgstr "%d is not valid row number." -#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:814 +#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:810 msgid "row(s) starting from record #" msgstr "row(s) starting from record #" -#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:817 +#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:813 msgid "horizontal" msgstr "horizontal" -#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:816 +#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:812 msgid "horizontal (rotated headers)" msgstr "horizontal (rotated headers)" -#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:819 +#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:815 msgid "vertical" msgstr "vertical" -#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:818 +#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:814 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "in %s mode and repeat headers after %s cells" -#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:495 +#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:491 msgid "This operation could take a long time. Proceed anyway?" msgstr "This operation could take a long time. Proceed anyway?" -#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1012 +#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1008 msgid "Sort by key" msgstr "යතුර අනුව තෝරන්න" #: libraries/display_tbl.lib.php:555 libraries/import.lib.php:1082 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:591 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:587 #: tbl_select.php:267 tbl_structure.php:754 #, fuzzy msgid "Options" msgstr "මෙහෙයුම්" #: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:570 -#: libraries/messages.inc.php:601 +#: libraries/messages.inc.php:597 msgid "Partial Texts" msgstr "Partial Texts" #: libraries/display_tbl.lib.php:561 libraries/display_tbl.lib.php:574 -#: libraries/messages.inc.php:346 +#: libraries/messages.inc.php:342 msgid "Full Texts" msgstr "සම්පූර්ණ පාඨ" -#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:739 +#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:735 #, fuzzy msgid "Relational key" msgstr "Relational schema" -#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:738 +#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:734 msgid "Relational display field" msgstr "" -#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:872 +#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:868 msgid "Show binary contents" msgstr "" -#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:873 +#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:869 msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:871 +#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:867 msgid "Show binary contents as HEX" msgstr "" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:375 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:371 #: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320 msgid "Hide" msgstr "" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:508 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:504 #: libraries/tbl_properties.inc.php:144 transformation_overview.php:47 msgid "Browser transformation" msgstr "Browser transformation" #: libraries/display_tbl.lib.php:1126 libraries/display_tbl.lib.php:1130 -#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:308 +#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:304 msgid "Execute bookmarked query" msgstr "Execute bookmarked query" #: libraries/display_tbl.lib.php:1145 libraries/display_tbl.lib.php:1157 -#: libraries/messages.inc.php:244 +#: libraries/messages.inc.php:240 msgid "The row has been deleted" msgstr "පෙළ ඉවත් කරන ලදි" #: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056 -#: libraries/messages.inc.php:460 server_processlist.php:71 +#: libraries/messages.inc.php:456 server_processlist.php:71 #: tbl_row_action.php:64 msgid "Kill" msgstr "Kill" -#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:849 +#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:845 msgid "in query" msgstr "in query" -#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:881 +#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:877 msgid "Showing rows" msgstr "පේළි පෙන්වන්න" -#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1113 +#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1109 msgid "total" msgstr "මුළු එකතුව" -#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:727 +#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:723 #: sql.php:524 #, php-format msgid "Query took %01.4f sec" msgstr "Query took %01.4f sec" -#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:135 +#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:131 #: 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:471 msgid "Change" msgstr "වෙනස් කරන්න" -#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:724 +#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:720 msgid "Query results operations" msgstr "Query results operations" -#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:671 +#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:667 msgid "Print view (with full texts)" msgstr "Print view (with full texts)" -#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:482 +#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:478 msgid "Link not found" msgstr "Link not found" -#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1224 +#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1220 #: main.php:228 msgid "Version information" msgstr "Version information" -#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:423 +#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:419 msgid "Data home directory" msgstr "දත්ත මුල් පිටුව" -#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:424 +#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:420 msgid "The common part of the directory path for all InnoDB data files." msgstr "The common part of the directory path for all InnoDB data files." -#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:422 +#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:418 msgid "Data files" msgstr "දත්ත ගොනු" -#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:418 +#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:414 msgid "Autoextend increment" msgstr "Autoextend increment" -#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:419 +#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:415 msgid "" " The increment size for extending the size of an autoextending tablespace " "when it becomes full." @@ -2472,11 +2482,11 @@ msgstr "" " The increment size for extending the size of an autoextending tablespace " "when it becomes full." -#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:420 +#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:416 msgid "Buffer pool size" msgstr "Buffer pool size" -#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:421 +#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:417 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." @@ -2484,87 +2494,87 @@ msgstr "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." -#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:112 +#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:108 msgid "Buffer Pool" msgstr "Buffer Pool" -#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:426 +#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:422 #: server_status.php:306 msgid "InnoDB Status" msgstr "InnoDB Status" -#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:113 +#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:109 msgid "Buffer Pool Usage" msgstr "Buffer Pool Usage" -#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1114 +#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1110 #: server_databases.php:137 server_databases.php:305 server_status.php:414 #: server_status.php:475 server_status.php:496 tbl_printview.php:351 #: tbl_structure.php:697 msgid "Total" msgstr "මුළු එකතුව" -#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:425 +#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:421 msgid "pages" msgstr "පිටු" -#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:343 +#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:339 msgid "Free pages" msgstr "නිදහස් පිටු" -#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:259 +#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:255 msgid "Dirty pages" msgstr "අපවිත්‍ර පිටු" -#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:230 +#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:226 msgid "Pages containing data" msgstr "දත්ත අඩංගු පිටු" -#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:598 +#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:594 msgid "Pages to be flushed" msgstr "Pages to be flushed" -#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:119 +#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:115 msgid "Busy pages" msgstr "කාර්ය බහුල පිටු" -#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:467 +#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:463 msgid "Latched pages" msgstr "Latched pages" -#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:111 +#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:107 msgid "Buffer Pool Activity" msgstr "Buffer Pool Activity" -#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:731 +#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:727 msgid "Read requests" msgstr "Read requests" -#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1244 +#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1240 msgid "Write requests" msgstr "ලිවීම සඳහා වූ ඉල්ලීම්" -#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:115 +#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:111 msgid "Read misses" msgstr "Read misses" -#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:117 +#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:113 msgid "Write waits" msgstr "Write waits" -#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:114 +#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:110 msgid "Read misses in %" msgstr "Read misses in %" -#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:116 +#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:112 msgid "Write waits in %" msgstr "Write waits in %" -#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:522 +#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:518 msgid "Data pointer size" msgstr "Data pointer size" -#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:523 +#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:519 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." @@ -2572,11 +2582,11 @@ msgstr "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." -#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:528 +#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:524 msgid "Automatic recovery mode" msgstr "Automatic recovery mode" -#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:529 +#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:525 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." @@ -2584,11 +2594,11 @@ msgstr "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." -#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:527 +#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:523 msgid "Maximum size for temporary sort files" msgstr "Maximum size for temporary sort files" -#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:526 +#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:522 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " @@ -2598,11 +2608,11 @@ msgstr "" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " "INFILE)." -#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:525 +#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:521 msgid "Maximum size for temporary files on index creation" msgstr "Maximum size for temporary files on index creation" -#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:524 +#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:520 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " @@ -2612,11 +2622,11 @@ msgstr "" "than using the key cache by the amount specified here, prefer the key cache " "method." -#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:531 +#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:527 msgid "Repair threads" msgstr "Repair threads" -#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:530 +#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:526 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." @@ -2624,11 +2634,11 @@ msgstr "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." -#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:533 +#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:529 msgid "Sort buffer size" msgstr "Sort buffer size" -#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:532 +#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:528 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." @@ -2636,73 +2646,73 @@ msgstr "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." -#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:620 +#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:616 msgid "Index cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:619 +#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:615 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." msgstr "" -#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:630 +#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:626 msgid "Record cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:629 +#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:625 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " "to the handle data (.xtd) and row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:624 +#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:620 #, fuzzy msgid "Log cache size" msgstr "Sort buffer size" -#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:623 +#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:619 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:628 +#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:624 msgid "Log file threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:627 +#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:623 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:634 +#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:630 msgid "Transaction buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:633 +#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:629 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." msgstr "" -#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:611 +#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:607 msgid "Checkpoint frequency" msgstr "" -#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:612 +#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:608 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." msgstr "" -#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:615 +#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:611 msgid "Data log threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:616 +#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:612 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -2710,49 +2720,49 @@ msgid "" "that can be stored in the database." msgstr "" -#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:618 +#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:614 msgid "Garbage threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:617 +#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:613 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." msgstr "" -#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:622 +#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:618 #, fuzzy msgid "Log buffer size" msgstr "Sort buffer size" -#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:621 +#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:617 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " "required to write a data log." msgstr "" -#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:613 +#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:609 msgid "Data file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:614 +#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:610 msgid "The grow size of the handle data (.xtd) files." msgstr "" -#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:632 +#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:628 msgid "Row file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:631 +#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:627 msgid "The grow size of the row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:626 +#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:622 msgid "Log file count" msgstr "" -#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:625 +#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:621 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -2762,19 +2772,19 @@ msgstr "" #: libraries/export/htmlword.php:132 libraries/export/odt.php:168 #: libraries/export/sql.php:881 libraries/export/texytext.php:130 -#: libraries/messages.inc.php:275 +#: libraries/messages.inc.php:271 msgid "Dumping data for table" msgstr "වගු සඳහා නික්ෂේප දත්ත" #: libraries/export/htmlword.php:185 libraries/export/odt.php:238 #: libraries/export/sql.php:785 libraries/export/texytext.php:177 -#: libraries/messages.inc.php:1086 +#: libraries/messages.inc.php:1082 msgid "Table structure for table" msgstr "වගුවක් සඳහා වගු සැකිල්ල" #: libraries/export/latex.php:125 libraries/export/sql.php:232 #: libraries/export/xml.php:102 libraries/header_printview.inc.php:57 -#: libraries/messages.inc.php:381 libraries/replication_gui.lib.php:63 +#: libraries/messages.inc.php:377 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:170 libraries/replication_gui.lib.php:265 #: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325 #: server_privileges.php:692 server_privileges.php:695 @@ -2786,189 +2796,189 @@ msgstr "දායකයා" #: libraries/export/latex.php:130 libraries/export/sql.php:233 #: libraries/export/xml.php:107 libraries/header_printview.inc.php:59 -#: libraries/messages.inc.php:354 +#: libraries/messages.inc.php:350 msgid "Generation Time" msgstr "උත්පාදන වේලාව" #: libraries/export/latex.php:131 libraries/export/sql.php:235 -#: libraries/export/xml.php:108 libraries/messages.inc.php:864 main.php:186 +#: libraries/export/xml.php:108 libraries/messages.inc.php:860 main.php:186 msgid "Server version" msgstr "සර්වරයේ සංස්කරණය" #: libraries/export/latex.php:132 libraries/export/sql.php:236 -#: libraries/export/xml.php:109 libraries/messages.inc.php:651 +#: libraries/export/xml.php:109 libraries/messages.inc.php:647 msgid "PHP Version" msgstr "PHP සංස්කරණය" #: libraries/export/latex.php:201 libraries/export/sql.php:868 -#: libraries/messages.inc.php:226 server_databases.php:127 +#: libraries/messages.inc.php:222 server_databases.php:127 #: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317 #: tbl_structure.php:666 msgid "Data" msgstr "දත්ත" -#: libraries/export/odt.php:318 libraries/messages.inc.php:506 +#: libraries/export/odt.php:318 libraries/messages.inc.php:502 #: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "MIME වර්ගය" -#: libraries/export/sql.php:387 libraries/messages.inc.php:711 +#: libraries/export/sql.php:387 libraries/messages.inc.php:707 msgid "Procedures" msgstr "ක්‍රියාපටිපාටිය" -#: libraries/export/sql.php:401 libraries/messages.inc.php:348 +#: libraries/export/sql.php:401 libraries/messages.inc.php:344 msgid "Functions" msgstr "ශ්‍රිත" -#: libraries/export/sql.php:618 libraries/messages.inc.php:174 +#: libraries/export/sql.php:618 libraries/messages.inc.php:170 msgid "Constraints for dumped tables" msgstr "නික්ෂේපනය කරන ලද වගු සඳහා සීමා බාධක" -#: libraries/export/sql.php:627 libraries/messages.inc.php:175 +#: libraries/export/sql.php:627 libraries/messages.inc.php:171 msgid "Constraints for table" msgstr "වගුව සඳහා සීමා බාධක" -#: libraries/export/sql.php:727 libraries/messages.inc.php:512 +#: libraries/export/sql.php:727 libraries/messages.inc.php:508 msgid "MIME TYPES FOR TABLE" msgstr "MIME TYPES FOR TABLE" -#: libraries/export/sql.php:739 libraries/messages.inc.php:743 +#: libraries/export/sql.php:739 libraries/messages.inc.php:739 msgid "RELATIONS FOR TABLE" msgstr "RELATIONS FOR TABLE" -#: libraries/export/sql.php:796 libraries/messages.inc.php:1178 +#: libraries/export/sql.php:796 libraries/messages.inc.php:1174 #: libraries/tbl_triggers.lib.php:19 msgid "Triggers" msgstr "" -#: libraries/export/sql.php:808 libraries/messages.inc.php:1046 +#: libraries/export/sql.php:808 libraries/messages.inc.php:1042 #, fuzzy msgid "Structure for view" msgstr "Structure only" -#: libraries/export/sql.php:817 libraries/messages.inc.php:1029 +#: libraries/export/sql.php:817 libraries/messages.inc.php:1025 #, fuzzy msgid "Stand-in structure for view" msgstr "Structure only" #: libraries/footer.inc.php:184 libraries/footer.inc.php:195 -#: libraries/footer.inc.php:198 libraries/messages.inc.php:586 +#: libraries/footer.inc.php:198 libraries/messages.inc.php:582 msgid "Open new phpMyAdmin window" msgstr "Open new phpMyAdmin window" -#: libraries/header.inc.php:115 libraries/messages.inc.php:542 +#: libraries/header.inc.php:115 libraries/messages.inc.php:538 #, fuzzy msgid "New table" msgstr "වගු නොමැත" #: libraries/header_printview.inc.php:50 libraries/header_printview.inc.php:55 -#: libraries/messages.inc.php:1024 +#: libraries/messages.inc.php:1020 msgid "SQL result" msgstr "SQL ප්‍රතිළුල" -#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:350 +#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:346 msgid "Generated by" msgstr "උත්පාදනය කරන ලද්දේ" #: libraries/header_printview.inc.php:63 libraries/import.lib.php:145 -#: libraries/messages.inc.php:820 navigation.php:652 navigation.php:674 +#: libraries/messages.inc.php:816 navigation.php:652 navigation.php:674 #: server_databases.php:122 tbl_printview.php:394 tbl_structure.php:366 #: tbl_structure.php:778 msgid "Rows" msgstr "පේළි" -#: libraries/import.lib.php:150 libraries/messages.inc.php:285 sql.php:520 +#: libraries/import.lib.php:150 libraries/messages.inc.php:281 sql.php:520 #: tbl_change.php:181 tbl_get_field.php:35 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL returned an empty result set (i.e. zero rows)." -#: libraries/import.lib.php:1078 libraries/messages.inc.php:399 +#: libraries/import.lib.php:1078 libraries/messages.inc.php:395 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1079 libraries/messages.inc.php:400 +#: libraries/import.lib.php:1079 libraries/messages.inc.php:396 msgid "View a structure`s contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1080 libraries/messages.inc.php:401 +#: libraries/import.lib.php:1080 libraries/messages.inc.php:397 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1081 libraries/messages.inc.php:402 +#: libraries/import.lib.php:1081 libraries/messages.inc.php:398 msgid "Edit its structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1084 libraries/messages.inc.php:362 +#: libraries/import.lib.php:1084 libraries/messages.inc.php:358 #, fuzzy msgid "Go to database" msgstr "දත්තගබඩා නොමැත" #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:869 +#: libraries/messages.inc.php:865 msgid "settings" msgstr "" -#: libraries/import.lib.php:1106 libraries/messages.inc.php:363 +#: libraries/import.lib.php:1106 libraries/messages.inc.php:359 #, fuzzy msgid "Go to table" msgstr "දත්තගබඩා නොමැත" -#: libraries/import.lib.php:1109 libraries/messages.inc.php:1047 +#: libraries/import.lib.php:1109 libraries/messages.inc.php:1043 #, fuzzy msgid "structure" msgstr "සැකිල්ල" -#: libraries/import.lib.php:1115 libraries/messages.inc.php:364 +#: libraries/import.lib.php:1115 libraries/messages.inc.php:360 msgid "Go to view" msgstr "" #: libraries/import/csv.php:58 libraries/import/csv.php:70 #: libraries/import/csv.php:74 libraries/import/csv.php:78 -#: libraries/messages.inc.php:442 +#: libraries/messages.inc.php:438 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "Invalid parameter for CSV import: %s" -#: libraries/import/csv.php:59 libraries/messages.inc.php:323 +#: libraries/import/csv.php:59 libraries/messages.inc.php:319 msgid "Fields terminated by" msgstr "Fields terminated by" -#: libraries/import/csv.php:71 libraries/messages.inc.php:320 +#: libraries/import/csv.php:71 libraries/messages.inc.php:316 msgid "Fields enclosed by" msgstr "Fields enclosed by" -#: libraries/import/csv.php:75 libraries/messages.inc.php:321 +#: libraries/import/csv.php:75 libraries/messages.inc.php:317 msgid "Fields escaped by" msgstr "Fields escaped by" -#: libraries/import/csv.php:79 libraries/messages.inc.php:481 +#: libraries/import/csv.php:79 libraries/messages.inc.php:477 msgid "Lines terminated by" msgstr "Lines terminated by" -#: libraries/import/csv.php:119 libraries/messages.inc.php:439 +#: libraries/import/csv.php:119 libraries/messages.inc.php:435 #, php-format msgid "Invalid column (%s) specified!" msgstr "Invalid column (%s) specified!" #: libraries/import/csv.php:177 libraries/import/csv.php:424 -#: libraries/messages.inc.php:441 +#: libraries/messages.inc.php:437 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "Invalid format of CSV input on line %d." -#: libraries/import/csv.php:312 libraries/messages.inc.php:440 +#: libraries/import/csv.php:312 libraries/messages.inc.php:436 #, php-format msgid "Invalid field count in CSV input on line %d." msgstr "Invalid field count in CSV input on line %d." -#: libraries/import/ldi.php:55 libraries/messages.inc.php:446 +#: libraries/import/ldi.php:55 libraries/messages.inc.php:442 msgid "This plugin does not support compressed imports!" msgstr "This plugin does not support compressed imports!" #: libraries/import/xml.php:74 libraries/import/xml.php:130 -#: libraries/messages.inc.php:1247 +#: libraries/messages.inc.php:1243 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -2998,578 +3008,568 @@ msgstr "" msgid "ltr" msgstr "ltr" -#. l10n: Thousands separator -#: libraries/messages.inc.php:21 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: libraries/messages.inc.php:23 -msgid "." -msgstr "." - -#: libraries/messages.inc.php:25 server_status.php:461 +#: libraries/messages.inc.php:21 server_status.php:461 msgid "Aborted" msgstr "අත්හැර දමන ලදි" -#: libraries/messages.inc.php:28 main.php:68 +#: libraries/messages.inc.php:24 main.php:68 #, fuzzy msgid "Actions" msgstr "ක්‍රියාව" -#: libraries/messages.inc.php:34 libraries/tbl_properties.inc.php:780 +#: libraries/messages.inc.php:30 libraries/tbl_properties.inc.php:780 #: tbl_structure.php:543 #, php-format msgid "Add %s field(s)" msgstr "%s ක්ෂේත්‍ර(යක්) එක් කරන්න" -#: libraries/messages.inc.php:35 +#: libraries/messages.inc.php:31 msgid "Add custom comment into header (\\n splits lines)" msgstr "හෙඩිමට වෙනත් විස්තර එක් කරන්න (\\n පේළි වි‍භේදනය)" -#: libraries/messages.inc.php:36 +#: libraries/messages.inc.php:32 msgid "Add into comments" msgstr "විස්තර තුලට එක් කරන්න" -#: libraries/messages.inc.php:37 tbl_structure.php:541 +#: libraries/messages.inc.php:33 tbl_structure.php:541 msgid "Add new field" msgstr "නව ක්ෂේත්‍රයක් එක් කරන්න" -#: libraries/messages.inc.php:38 server_privileges.php:1886 +#: libraries/messages.inc.php:34 server_privileges.php:1886 msgid "Add privileges on the following database" msgstr "පහත දත්තගබඩාවට වරප්‍රසාද එක් කරන්න" -#: libraries/messages.inc.php:39 server_privileges.php:1907 +#: libraries/messages.inc.php:35 server_privileges.php:1907 msgid "Add privileges on the following table" msgstr "පහත වගුවට වරප්‍රසාද එක් කරන්න" -#: libraries/messages.inc.php:40 tbl_select.php:288 +#: libraries/messages.inc.php:36 tbl_select.php:288 msgid "Add search conditions (body of the \"where\" clause):" msgstr "සෙවීම් කොන්දේසි එක් කරන්න (\"where\" වාක්‍යාංශය යටතේ):" -#: libraries/messages.inc.php:41 tbl_indexes.php:251 +#: libraries/messages.inc.php:37 tbl_indexes.php:251 #, php-format msgid "Add to index  %s column(s)" msgstr " %s තීර(ය) සූචියට එක් කරන්න" -#: libraries/messages.inc.php:42 server_privileges.php:1570 +#: libraries/messages.inc.php:38 server_privileges.php:1570 #: server_privileges.php:1594 server_privileges.php:1988 #: server_privileges.php:2177 msgid "Add a new User" msgstr "නව භාවිතා කරන්නේක් එක් කරන්න" -#: libraries/messages.inc.php:43 server_privileges.php:931 +#: libraries/messages.inc.php:39 server_privileges.php:931 msgid "You have added a new user." msgstr "ඔබ නව භාවිතා කරන්නනෙක් එක් කරන ලදි." -#: libraries/messages.inc.php:44 server_privileges.php:571 +#: libraries/messages.inc.php:40 server_privileges.php:571 msgid "Administration" msgstr "පරිපාලනය" -#: libraries/messages.inc.php:45 tbl_structure.php:557 +#: libraries/messages.inc.php:41 tbl_structure.php:557 #, php-format msgid "After %s" msgstr "%s ට පසු" -#: libraries/messages.inc.php:46 tbl_change.php:1147 +#: libraries/messages.inc.php:42 tbl_change.php:1147 msgid "Go back to previous page" msgstr "පෙර පිටුවට ආපසු යන්න" -#: libraries/messages.inc.php:47 tbl_change.php:1148 +#: libraries/messages.inc.php:43 tbl_change.php:1148 msgid "Insert another new row" msgstr "නව පේළියක් එක් කරන්න" -#: libraries/messages.inc.php:48 tbl_change.php:1160 +#: libraries/messages.inc.php:44 tbl_change.php:1160 msgid "Edit next row" msgstr "මීලඟ පේළිය එක් කරන්න" -#: libraries/messages.inc.php:49 tbl_change.php:1152 +#: libraries/messages.inc.php:45 tbl_change.php:1152 msgid "Go back to this page" msgstr "මෙම පිටුව වෙත ආපසු යන්න" -#: libraries/messages.inc.php:50 querywindow.php:115 +#: libraries/messages.inc.php:46 querywindow.php:115 msgid "All" msgstr "සියලු" -#: libraries/messages.inc.php:53 tbl_operations.php:249 +#: libraries/messages.inc.php:49 tbl_operations.php:249 msgid "Alter table order by" msgstr "අනුව වගු අනුපිළිවෙල වෙනස් කරන්න" -#: libraries/messages.inc.php:54 tbl_operations.php:660 +#: libraries/messages.inc.php:50 tbl_operations.php:660 msgid "Analyze" msgstr "" -#: libraries/messages.inc.php:57 +#: libraries/messages.inc.php:53 #, fuzzy msgid "and" msgstr "සහ" -#: libraries/messages.inc.php:59 pmd_general.php:87 +#: libraries/messages.inc.php:55 pmd_general.php:87 msgid "Angular links" msgstr "" -#: libraries/messages.inc.php:60 tbl_structure.php:401 tbl_structure.php:415 +#: libraries/messages.inc.php:56 tbl_structure.php:401 tbl_structure.php:415 #: tbl_structure.php:429 #, php-format msgid "An index has been added on %s" msgstr "%s සඳහා සූචියක් එක්කරන ලදි" -#: libraries/messages.inc.php:61 server_privileges.php:1521 +#: libraries/messages.inc.php:57 server_privileges.php:1521 #: server_privileges.php:2123 msgid "Any" msgstr "ඕනෑම" -#: libraries/messages.inc.php:62 libraries/replication_gui.lib.php:298 +#: libraries/messages.inc.php:58 libraries/replication_gui.lib.php:298 #: server_privileges.php:725 msgid "Any host" msgstr "ඕනෑම දායකයෙක්" -#: libraries/messages.inc.php:63 libraries/replication_gui.lib.php:250 +#: libraries/messages.inc.php:59 libraries/replication_gui.lib.php:250 #: server_privileges.php:677 msgid "Any user" msgstr "ඕනෑම භාවිතා කරන්නෙක්" -#: libraries/messages.inc.php:64 server_synchronize.php:449 +#: libraries/messages.inc.php:60 server_synchronize.php:449 #: server_synchronize.php:894 msgid "Apply Selected Changes" msgstr "" -#: libraries/messages.inc.php:66 tbl_structure.php:386 +#: libraries/messages.inc.php:62 tbl_structure.php:386 #, php-format msgid "A primary key has been added on %s" msgstr "%s ට මූලික යතුරක් එක් කරන ලදි" -#: libraries/messages.inc.php:67 libraries/mysql_charsets.lib.php:368 +#: libraries/messages.inc.php:63 libraries/mysql_charsets.lib.php:368 msgid "Arabic" msgstr "අරාබියානු" -#: libraries/messages.inc.php:68 libraries/mysql_charsets.lib.php:359 +#: libraries/messages.inc.php:64 libraries/mysql_charsets.lib.php:359 msgid "Armenian" msgstr "ඇමෙරිකානු" -#: libraries/messages.inc.php:70 libraries/tbl_properties.inc.php:394 +#: libraries/messages.inc.php:66 libraries/tbl_properties.inc.php:394 msgid "As defined:" msgstr "" -#: libraries/messages.inc.php:71 tbl_structure.php:556 +#: libraries/messages.inc.php:67 tbl_structure.php:556 msgid "At Beginning of Table" msgstr "වගුව මුලදී" -#: libraries/messages.inc.php:72 tbl_structure.php:555 +#: libraries/messages.inc.php:68 tbl_structure.php:555 msgid "At End of Table" msgstr "වගුව අවසනදී" -#: libraries/messages.inc.php:73 libraries/tbl_properties.inc.php:108 +#: libraries/messages.inc.php:69 libraries/tbl_properties.inc.php:108 #: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:144 #: tbl_structure.php:180 msgid "Attributes" msgstr "ගුණාංග" -#: libraries/messages.inc.php:74 pdf_pages.php:303 pdf_pages.php:306 +#: libraries/messages.inc.php:70 pdf_pages.php:303 pdf_pages.php:306 msgid "Automatic layout" msgstr "ස්වයංක්‍රීය සැලැස්ම" -#: libraries/messages.inc.php:77 libraries/mysql_charsets.lib.php:354 +#: libraries/messages.inc.php:73 libraries/mysql_charsets.lib.php:354 msgid "Baltic" msgstr "බෝල්ටික" -#: libraries/messages.inc.php:78 libraries/sqlparser.lib.php:175 +#: libraries/messages.inc.php:74 libraries/sqlparser.lib.php:175 msgid "BEGIN CUT" msgstr "BEGIN CUT" -#: libraries/messages.inc.php:79 libraries/sqlparser.lib.php:179 +#: libraries/messages.inc.php:75 libraries/sqlparser.lib.php:179 msgid "BEGIN RAW" msgstr "BEGIN RAW" -#: libraries/messages.inc.php:80 libraries/mysql_charsets.lib.php:201 +#: libraries/messages.inc.php:76 libraries/mysql_charsets.lib.php:201 #: libraries/mysql_charsets.lib.php:402 tbl_change.php:518 msgid "Binary" msgstr "ද්වීමය" -#: libraries/messages.inc.php:81 tbl_change.php:894 +#: libraries/messages.inc.php:77 tbl_change.php:894 msgid "Binary - do not edit" msgstr "ද්වීමය - සංස්කරණය නොකරන්න" -#: libraries/messages.inc.php:82 libraries/server_links.inc.php:76 +#: libraries/messages.inc.php:78 libraries/server_links.inc.php:76 #: server_binlog.php:110 server_status.php:253 test/theme.php:121 msgid "Binary log" msgstr "ද්වීමය ලොගය" -#: libraries/messages.inc.php:83 server_binlog.php:217 +#: libraries/messages.inc.php:79 server_binlog.php:217 msgid "Event type" msgstr "සිදුවීමේ වර්ගය" -#: libraries/messages.inc.php:84 server_binlog.php:220 +#: libraries/messages.inc.php:80 server_binlog.php:220 msgid "Information" msgstr "තොරතුරු" -#: libraries/messages.inc.php:85 server_binlog.php:215 +#: libraries/messages.inc.php:81 server_binlog.php:215 msgid "Log name" msgstr "ලොග් නම" -#: libraries/messages.inc.php:86 server_binlog.php:219 +#: libraries/messages.inc.php:82 server_binlog.php:219 msgid "Original position" msgstr "මුල් පිහිටුම" -#: libraries/messages.inc.php:87 server_binlog.php:216 +#: libraries/messages.inc.php:83 server_binlog.php:216 msgid "Position" msgstr "පිහිටුම" -#: libraries/messages.inc.php:88 libraries/replication_gui.lib.php:169 +#: libraries/messages.inc.php:84 libraries/replication_gui.lib.php:169 #: server_binlog.php:218 msgid "Server ID" msgstr "සර්වරයේ හැඳුනුම් අංකය" -#: libraries/messages.inc.php:92 +#: libraries/messages.inc.php:88 #, fuzzy msgctxt "$strBLOBRepositoryDisabled" msgid "Disabled" msgstr "අක්‍රිය කරන ලද" -#: libraries/messages.inc.php:95 +#: libraries/messages.inc.php:91 #, fuzzy msgctxt "$strBLOBRepositoryEnabled" msgid "Enabled" msgstr "සක්‍රිය කරන් ලද" -#: libraries/messages.inc.php:97 tbl_change.php:888 +#: libraries/messages.inc.php:93 tbl_change.php:888 msgid "Remove BLOB Repository Reference" msgstr "" -#: libraries/messages.inc.php:98 +#: libraries/messages.inc.php:94 #, fuzzy msgctxt "$strBLOBRepositoryRepair" msgid "Repair" msgstr "වගුව ප්‍රතිසංස්කරණය කරන්න" -#: libraries/messages.inc.php:99 tbl_change.php:987 +#: libraries/messages.inc.php:95 tbl_change.php:987 msgid "Upload to BLOB repository" msgstr "" -#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:359 +#: libraries/messages.inc.php:96 libraries/sql_query_form.lib.php:359 #: sql.php:677 msgid "Let every user access this bookmark" msgstr "සියලු භාවිතා කරන්නනට මෙම පොත් සලකුණට පිවිසීමට ඉඩ දෙන්න" -#: libraries/messages.inc.php:103 sql.php:671 +#: libraries/messages.inc.php:99 sql.php:671 msgid "Label" msgstr "ලේබලය" -#: libraries/messages.inc.php:104 libraries/sql_query_form.lib.php:433 +#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:433 msgid "Bookmarked SQL query" msgstr "පොත් සලකුණු කරන ලද SQL විමසුම" -#: libraries/messages.inc.php:105 libraries/sql_query_form.lib.php:365 +#: libraries/messages.inc.php:101 libraries/sql_query_form.lib.php:365 msgid "Replace existing bookmark of same name" msgstr "එකම නම ඇති පොත් සලකුණ ප්‍රතිස්ථාපනය කරන්න" -#: libraries/messages.inc.php:106 libraries/sql_query_form.lib.php:352 +#: libraries/messages.inc.php:102 libraries/sql_query_form.lib.php:352 #: sql.php:665 sql.php:666 sql.php:683 msgid "Bookmark this SQL query" msgstr "මෙම SQL විමසුම පොත් සලකුණුගත කරන්න" -#: libraries/messages.inc.php:107 libraries/sql_query_form.lib.php:466 +#: libraries/messages.inc.php:103 libraries/sql_query_form.lib.php:466 msgid "View only" msgstr "දර්ශනය කිරීම පමණි" -#: libraries/messages.inc.php:109 tbl_structure.php:161 +#: libraries/messages.inc.php:105 tbl_structure.php:161 msgid "Browse distinct values" msgstr "එකිනෙකට වෙනස් අගයන් බ්‍රවුස් කරන්න" -#: libraries/messages.inc.php:110 tbl_change.php:252 tbl_select.php:27 +#: libraries/messages.inc.php:106 tbl_change.php:252 tbl_select.php:27 #: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34 msgid "Browse foreign values" msgstr "අන්‍ය අගයන් බ්‍රවුස් කරන්න" -#: libraries/messages.inc.php:118 libraries/mysql_charsets.lib.php:213 +#: libraries/messages.inc.php:114 libraries/mysql_charsets.lib.php:213 msgid "Bulgarian" msgstr "බල්ගේරියානු" -#: libraries/messages.inc.php:120 +#: libraries/messages.inc.php:116 msgid "\"bzipped\"" msgstr "\"bzipp ගතකරන ලදි\"" -#: libraries/messages.inc.php:122 +#: libraries/messages.inc.php:118 msgid "Calendar" msgstr "දින දර්ශනය" -#: libraries/messages.inc.php:129 tbl_indexes.php:75 +#: libraries/messages.inc.php:125 tbl_indexes.php:75 msgid "Can't rename index to PRIMARY!" msgstr "Can't rename index to PRIMARY!" -#: libraries/messages.inc.php:132 libraries/mysql_charsets.lib.php:223 +#: libraries/messages.inc.php:128 libraries/mysql_charsets.lib.php:223 #: libraries/mysql_charsets.lib.php:409 msgid "case-insensitive" msgstr "පුවරු සංවේදී නොවන" -#: libraries/messages.inc.php:133 libraries/mysql_charsets.lib.php:226 +#: libraries/messages.inc.php:129 libraries/mysql_charsets.lib.php:226 #: libraries/mysql_charsets.lib.php:411 msgid "case-sensitive" msgstr "පුවරු සංවේදී" -#: libraries/messages.inc.php:134 libraries/mysql_charsets.lib.php:332 +#: libraries/messages.inc.php:130 libraries/mysql_charsets.lib.php:332 msgid "Central European" msgstr "මධ්‍යම යුරෝපියානු" -#: libraries/messages.inc.php:136 server_privileges.php:1969 +#: libraries/messages.inc.php:132 server_privileges.php:1969 msgid "... keep the old one." msgstr "... පැරණි එක තබා ගන්න." -#: libraries/messages.inc.php:137 server_privileges.php:1967 +#: libraries/messages.inc.php:133 server_privileges.php:1967 msgid "Create a new user with the same privileges and ..." msgstr "සහ එකම වරප්‍රසාද සහිතව නව භාවිතා කරන්නෙක් එක් කරන්න..." -#: libraries/messages.inc.php:138 server_privileges.php:1972 +#: libraries/messages.inc.php:134 server_privileges.php:1972 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr ".. භාවිතා කරන්නන්ගේ වගුවෙන් පැරණි එක ඉවත් කර වරප්‍රසාද නැවත අලුත් කරන්න." -#: libraries/messages.inc.php:139 server_privileges.php:1970 +#: libraries/messages.inc.php:135 server_privileges.php:1970 msgid " ... delete the old one from the user tables." msgstr " ... භාවිතා කරන්නන්ගේ වගුවෙන් පැරණි එක ඉවත් කරන්න." -#: libraries/messages.inc.php:140 server_privileges.php:1971 +#: libraries/messages.inc.php:136 server_privileges.php:1971 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "" " ... revoke all active privileges from the old one and delete it afterwards." -#: libraries/messages.inc.php:141 server_privileges.php:1964 +#: libraries/messages.inc.php:137 server_privileges.php:1964 msgid "Change Login Information / Copy User" msgstr "ලොගින් තොරතුරු වෙනස් කරන්න / භාවිතා කරන්නා පිටපත් කරන්න" -#: libraries/messages.inc.php:144 libraries/mysql_charsets.lib.php:107 +#: libraries/messages.inc.php:140 libraries/mysql_charsets.lib.php:107 msgid "Charset" msgstr "අක්ෂර කට්ටලය" -#: libraries/messages.inc.php:146 server_collations.php:40 +#: libraries/messages.inc.php:142 server_collations.php:40 msgid "Character Sets and Collations" msgstr "අක්ෂර කට්ටල සහ ‍Collations" -#: libraries/messages.inc.php:147 libraries/server_links.inc.php:57 +#: libraries/messages.inc.php:143 libraries/server_links.inc.php:57 #: test/theme.php:109 msgid "Charsets" msgstr "අක්ෂර කට්ටලය" -#: libraries/messages.inc.php:149 tbl_operations.php:661 +#: libraries/messages.inc.php:145 tbl_operations.php:661 #, fuzzy msgid "Check" msgstr "චෙකොස්ලෝවැකියානු" -#: libraries/messages.inc.php:151 server_databases.php:293 +#: libraries/messages.inc.php:147 server_databases.php:293 #: server_databases.php:294 msgid "Check Privileges" msgstr "වරප්‍රසාද පරීක්ෂා කරන්න" -#: libraries/messages.inc.php:152 server_databases.php:289 +#: libraries/messages.inc.php:148 server_databases.php:289 #, php-format msgid "Check privileges for database "%s"." msgstr ""%s" දත්තගබඩාව සඳහා වරප්‍රසාද පරීක්ෂා කරන්න." -#: libraries/messages.inc.php:154 pdf_pages.php:261 +#: libraries/messages.inc.php:150 pdf_pages.php:261 msgid "Please choose a page to edit" msgstr "සංස්කරණය සඳහා පිටුවක් තෝරාගන්න" -#: libraries/messages.inc.php:157 +#: libraries/messages.inc.php:153 msgid "Displaying Column Comments" msgstr "තීර විස්තර පෙන්වීම" -#: libraries/messages.inc.php:159 pdf_pages.php:483 view_create.php:148 +#: libraries/messages.inc.php:155 pdf_pages.php:483 view_create.php:148 msgid "Column names" msgstr "තීර නම්" -#: libraries/messages.inc.php:160 server_privileges.php:1685 +#: libraries/messages.inc.php:156 server_privileges.php:1685 msgid "Column-specific privileges" msgstr "Column-specific privileges" -#: libraries/messages.inc.php:164 +#: libraries/messages.inc.php:160 msgid "MySQL 4.0 compatible" msgstr "MySQL 4.0 compatible" -#: libraries/messages.inc.php:165 +#: libraries/messages.inc.php:161 msgid "Complete inserts" msgstr "Complete inserts" -#: libraries/messages.inc.php:168 +#: libraries/messages.inc.php:164 #, php-format msgid "Could not load default configuration from: \"%1$s\"" msgstr "Could not load default configuration from: \"%1$s\"" -#: libraries/messages.inc.php:169 main.php:306 +#: libraries/messages.inc.php:165 main.php:306 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: libraries/messages.inc.php:171 pdf_schema.php:672 +#: libraries/messages.inc.php:167 pdf_schema.php:672 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Please configure the coordinates for table %s" -#: libraries/messages.inc.php:173 server_status.php:433 +#: libraries/messages.inc.php:169 server_status.php:433 msgid "Connections" msgstr "සම්බන්ධතා" -#: libraries/messages.inc.php:179 tbl_operations.php:509 +#: libraries/messages.inc.php:175 tbl_operations.php:509 msgid "Copy table to (database.table):" msgstr "වගුව (දත්තගබඩාව.වගුව) වෙතට පිටපත් කරන්න:" -#: libraries/messages.inc.php:180 tbl_move_copy.php:58 +#: libraries/messages.inc.php:176 tbl_move_copy.php:58 #, php-format msgid "Table %s has been copied to %s." msgstr "%s වගුව %s වෙතට පිටපත් කරන ලදි." -#: libraries/messages.inc.php:181 tbl_move_copy.php:48 +#: libraries/messages.inc.php:177 tbl_move_copy.php:48 msgid "Can't copy table to same one!" msgstr "එම වගුවටම පිටපත් කල නොහැක!" -#: libraries/messages.inc.php:182 server_synchronize.php:94 +#: libraries/messages.inc.php:178 server_synchronize.php:94 msgid "Could not connect to the source" msgstr "" -#: libraries/messages.inc.php:183 server_synchronize.php:97 +#: libraries/messages.inc.php:179 server_synchronize.php:97 msgid "Could not connect to the target" msgstr "" -#: libraries/messages.inc.php:184 server_processlist.php:24 +#: libraries/messages.inc.php:180 server_processlist.php:24 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." -#: libraries/messages.inc.php:187 +#: libraries/messages.inc.php:183 #, php-format msgid "Create an index on %s columns" msgstr "Create an index on %s columns" -#: libraries/messages.inc.php:188 tbl_indexes.php:160 +#: libraries/messages.inc.php:184 tbl_indexes.php:160 msgid "Create a new index" msgstr "නව සූචියක් සාදන්න" -#: libraries/messages.inc.php:191 pdf_pages.php:297 pmd_pdf.php:114 +#: libraries/messages.inc.php:187 pdf_pages.php:297 pmd_pdf.php:114 msgid "Create a page" msgstr "නව පිටුවක් සාදන්න" -#: libraries/messages.inc.php:192 +#: libraries/messages.inc.php:188 msgid "Creation of PDFs" msgstr "PDF සෑදීම" -#: libraries/messages.inc.php:193 pmd_general.php:74 pmd_general.php:306 +#: libraries/messages.inc.php:189 pmd_general.php:74 pmd_general.php:306 #, fuzzy msgid "Create relation" msgstr "සර්වරයේ සංස්කරණය" -#: libraries/messages.inc.php:194 pmd_general.php:71 +#: libraries/messages.inc.php:190 pmd_general.php:71 #: server_synchronize.php:429 server_synchronize.php:872 #, fuzzy msgid "Create table" msgstr "නව පිටුවක් සාදන්න" -#: libraries/messages.inc.php:195 +#: libraries/messages.inc.php:191 #, fuzzy msgctxt "$strCreateTableShort" msgid "Create table" msgstr "නව පිටුවක් සාදන්න" -#: libraries/messages.inc.php:196 server_privileges.php:1994 +#: libraries/messages.inc.php:192 server_privileges.php:1994 msgid "Database for user" msgstr "භාවිතා කරන්නා සඳහා දත්තගබඩාව" -#: libraries/messages.inc.php:197 server_privileges.php:1999 +#: libraries/messages.inc.php:193 server_privileges.php:1999 msgid "Create database with same name and grant all privileges" msgstr "එකම නමින් දත්තගබඩාවක සාදා සියලු වරප්‍රසාද එයට දෙන්න" -#: libraries/messages.inc.php:198 +#: libraries/messages.inc.php:194 #, fuzzy msgctxt "$strCreateUserDatabaseNone" msgid "None" msgstr "කිසිවක් නැත" -#: libraries/messages.inc.php:199 server_privileges.php:2003 +#: libraries/messages.inc.php:195 server_privileges.php:2003 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr ""%s" දත්තගබඩාව සඳහා වරප්‍රසාද පරීක්ෂා කරන්න." -#: libraries/messages.inc.php:200 server_privileges.php:2000 +#: libraries/messages.inc.php:196 server_privileges.php:2000 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "අභිමත ආදේශක නාමයන් සඳහා සියලු වරප්‍රසාද දෙන්න (භාවිත නාමය_%)" -#: libraries/messages.inc.php:201 +#: libraries/messages.inc.php:197 msgid "Creation/Update/Check dates" msgstr "සෑදීම/යාවත් කාලීන/පරීක්ෂා කිරීමේ දින" -#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:229 +#: libraries/messages.inc.php:199 libraries/mysql_charsets.lib.php:229 msgid "Croatian" msgstr "ක්‍රොයේශියානු" -#: libraries/messages.inc.php:204 +#: libraries/messages.inc.php:200 msgid "CSV" msgstr "CSV" -#: libraries/messages.inc.php:205 libraries/server_synchronize.lib.php:1343 +#: libraries/messages.inc.php:201 libraries/server_synchronize.lib.php:1343 #: libraries/server_synchronize.lib.php:1369 msgid "Current server" msgstr "" -#: libraries/messages.inc.php:206 main.php:159 +#: libraries/messages.inc.php:202 main.php:159 msgid "Custom color" msgstr "" -#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:365 +#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:365 msgid "Cyrillic" msgstr "සිරිලික්" -#: libraries/messages.inc.php:208 libraries/mysql_charsets.lib.php:232 +#: libraries/messages.inc.php:204 libraries/mysql_charsets.lib.php:232 msgid "Czech" msgstr "චෙකොස්ලෝවැකියානු" -#: libraries/messages.inc.php:209 libraries/mysql_charsets.lib.php:383 +#: libraries/messages.inc.php:205 libraries/mysql_charsets.lib.php:383 msgid "Czech-Slovak" msgstr "චෙකොස්ලෝවැකියානු-ස්ලෝවැකියානු" -#: libraries/messages.inc.php:211 libraries/mysql_charsets.lib.php:235 +#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:235 msgid "Danish" msgstr "ඩෙන්මාර්කියානු" -#: libraries/messages.inc.php:214 +#: libraries/messages.inc.php:210 msgid "Database export options" msgstr "දත්තගබඩා අපනයන විකල්ප" -#: libraries/messages.inc.php:217 server_synchronize.php:122 +#: libraries/messages.inc.php:213 server_synchronize.php:122 #: server_synchronize.php:125 tbl_create.php:82 tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "" -#: libraries/messages.inc.php:219 server_databases.php:63 +#: libraries/messages.inc.php:215 server_databases.php:63 #, php-format msgid "%s databases have been dropped successfully." msgstr "%s දත්තගබඩාව සාර්ථකව හලන ලදි." -#: libraries/messages.inc.php:220 libraries/server_synchronize.lib.php:1341 +#: libraries/messages.inc.php:216 libraries/server_synchronize.lib.php:1341 #: server_synchronize.php:1110 #, fuzzy msgid "Source database" msgstr "දත්තගබඩාවේ සොයන්න" -#: libraries/messages.inc.php:221 server_databases.php:88 +#: libraries/messages.inc.php:217 server_databases.php:88 msgid "Databases statistics" msgstr "දත්තගබඩා සංඛ්‍යා ලේඛන" -#: libraries/messages.inc.php:222 server_databases.php:362 +#: libraries/messages.inc.php:218 server_databases.php:362 #: server_databases.php:363 msgid "Disable Statistics" msgstr "සංඛ්‍යා ලේඛන අක්‍රිය කරන්න" -#: libraries/messages.inc.php:223 server_databases.php:358 +#: libraries/messages.inc.php:219 server_databases.php:358 #: server_databases.php:359 msgid "Enable Statistics" msgstr "සංඛ්‍යා ලේඛන සක්‍රිය කරන්න" -#: libraries/messages.inc.php:224 server_databases.php:366 +#: libraries/messages.inc.php:220 server_databases.php:366 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -3577,31 +3577,31 @@ msgstr "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." -#: libraries/messages.inc.php:225 libraries/server_synchronize.lib.php:1367 +#: libraries/messages.inc.php:221 libraries/server_synchronize.lib.php:1367 #: server_synchronize.php:1112 #, fuzzy msgid "Target database" msgstr "දත්තගබඩාවේ සොයන්න" -#: libraries/messages.inc.php:228 server_synchronize.php:425 +#: libraries/messages.inc.php:224 server_synchronize.php:425 #: server_synchronize.php:868 msgid "Data Difference" msgstr "" -#: libraries/messages.inc.php:231 server_synchronize.php:272 +#: libraries/messages.inc.php:227 server_synchronize.php:272 msgid "Data Synchronization" msgstr "" -#: libraries/messages.inc.php:235 server_privileges.php:526 +#: libraries/messages.inc.php:231 server_privileges.php:526 #: server_privileges.php:1679 msgid "Database-specific privileges" msgstr "දත්තගබඩා විශේෂිත වරප්‍රසාද" -#: libraries/messages.inc.php:237 server_privileges.php:2136 +#: libraries/messages.inc.php:233 server_privileges.php:2136 msgid "database-specific" msgstr "දත්තගබඩා විශේෂිත" -#: libraries/messages.inc.php:240 libraries/tbl_properties.inc.php:106 +#: libraries/messages.inc.php:236 libraries/tbl_properties.inc.php:106 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" @@ -3609,32 +3609,32 @@ msgstr "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" -#: libraries/messages.inc.php:241 tbl_operations.php:589 +#: libraries/messages.inc.php:237 tbl_operations.php:589 msgid "Defragment table" msgstr "Defragment table" -#: libraries/messages.inc.php:242 +#: libraries/messages.inc.php:238 msgid "Use delayed inserts" msgstr "ප්‍රමාද කරන ලද ඇතුල් කිරීම භාවිතා කරන්න" -#: libraries/messages.inc.php:245 server_privileges.php:1243 +#: libraries/messages.inc.php:241 server_privileges.php:1243 msgid "No users selected for deleting!" msgstr "ඉවත් කිරීම සඳහා භාවිතා කරන්නන් කිසිවෙක් තෝරාගෙන නොමැත!" -#: libraries/messages.inc.php:246 pmd_general.php:372 +#: libraries/messages.inc.php:242 pmd_general.php:372 msgid "Delete relation" msgstr "" -#: libraries/messages.inc.php:248 server_privileges.php:1232 +#: libraries/messages.inc.php:244 server_privileges.php:1232 #, php-format msgid "Deleting %s" msgstr "%s ඉවත් කරමින් පවතී" -#: libraries/messages.inc.php:249 libraries/sql_query_form.lib.php:388 +#: libraries/messages.inc.php:245 libraries/sql_query_form.lib.php:388 msgid "Delimiter" msgstr "පරිසීමකය" -#: libraries/messages.inc.php:250 pdf_pages.php:506 +#: libraries/messages.inc.php:246 pdf_pages.php:506 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -3642,151 +3642,151 @@ msgstr "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" -#: libraries/messages.inc.php:254 pmd_help.php:29 +#: libraries/messages.inc.php:250 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." msgstr "" -#: libraries/messages.inc.php:256 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:252 libraries/mysql_charsets.lib.php:247 msgid "dictionary" msgstr "කෝෂය" -#: libraries/messages.inc.php:257 libraries/server_synchronize.lib.php:1348 +#: libraries/messages.inc.php:253 libraries/server_synchronize.lib.php:1348 msgid "Difference" msgstr "" -#: libraries/messages.inc.php:258 pmd_general.php:87 +#: libraries/messages.inc.php:254 pmd_general.php:87 msgid "Direct links" msgstr "" -#: libraries/messages.inc.php:261 +#: libraries/messages.inc.php:257 msgid "Disable foreign key checks" msgstr "අන්‍ය යතුරු පරීක්ෂා අක්‍රිය කරන්න" -#: libraries/messages.inc.php:262 +#: libraries/messages.inc.php:258 msgid "Display Features" msgstr "දර්ශන ලක්ෂණ" -#: libraries/messages.inc.php:263 tbl_select.php:301 +#: libraries/messages.inc.php:259 tbl_select.php:301 msgid "Display order:" msgstr "දර්ශනය කිරීමේ අනුපිළිවෙල:" -#: libraries/messages.inc.php:265 tbl_select.php:132 +#: libraries/messages.inc.php:261 tbl_select.php:132 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Do a \"query by example\" (wildcard: \"%\")" -#: libraries/messages.inc.php:266 +#: libraries/messages.inc.php:262 msgid "DocSQL" msgstr "" -#: libraries/messages.inc.php:268 +#: libraries/messages.inc.php:264 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/messages.inc.php:273 server_privileges.php:1579 +#: libraries/messages.inc.php:269 server_privileges.php:1579 #: server_privileges.php:1580 server_privileges.php:1581 msgid "Drop the databases that have the same names as the users." msgstr "භාවිතා කරන්නන් හා සමාන නම් ඇති දත්තගබඩා හලන්න." -#: libraries/messages.inc.php:278 tbl_printview.php:382 tbl_structure.php:743 +#: libraries/messages.inc.php:274 tbl_printview.php:382 tbl_structure.php:743 msgid "dynamic" msgstr "ගතික" -#: libraries/messages.inc.php:282 server_privileges.php:1324 +#: libraries/messages.inc.php:278 server_privileges.php:1324 #: server_privileges.php:1610 msgid "Edit Privileges" msgstr "වරප්‍රසාද සංස්කරණය කරන්න" -#: libraries/messages.inc.php:283 tbl_printview.php:341 tbl_structure.php:688 +#: libraries/messages.inc.php:279 tbl_printview.php:341 tbl_structure.php:688 msgid "Effective" msgstr "Effective" -#: libraries/messages.inc.php:286 libraries/relation.lib.php:100 +#: libraries/messages.inc.php:282 libraries/relation.lib.php:100 msgid "Enabled" msgstr "සක්‍රිය කරන් ලද" -#: libraries/messages.inc.php:287 +#: libraries/messages.inc.php:283 msgid "Enclose export in a transaction" msgstr "Enclose export in a transaction" -#: libraries/messages.inc.php:288 libraries/sqlparser.lib.php:177 +#: libraries/messages.inc.php:284 libraries/sqlparser.lib.php:177 msgid "END CUT" msgstr "END CUT" -#: libraries/messages.inc.php:290 libraries/sqlparser.lib.php:183 +#: libraries/messages.inc.php:286 libraries/sqlparser.lib.php:183 msgid "END RAW" msgstr "END RAW" -#: libraries/messages.inc.php:293 libraries/server_links.inc.php:61 +#: libraries/messages.inc.php:289 libraries/server_links.inc.php:61 #: test/theme.php:113 msgid "Engines" msgstr "යන්ත්‍රයන්" -#: libraries/messages.inc.php:295 libraries/mysql_charsets.lib.php:238 +#: libraries/messages.inc.php:291 libraries/mysql_charsets.lib.php:238 msgid "English" msgstr "ඉංග්‍රීසි" -#: libraries/messages.inc.php:296 server_privileges.php:393 +#: libraries/messages.inc.php:292 server_privileges.php:393 #: server_privileges.php:535 server_privileges.php:1501 msgid " Note: MySQL privilege names are expressed in English " msgstr " Note: MySQL privilege names are expressed in English " -#: libraries/messages.inc.php:298 libraries/zip_extension.lib.php:49 +#: libraries/messages.inc.php:294 libraries/zip_extension.lib.php:49 #: libraries/zip_extension.lib.php:51 libraries/zip_extension.lib.php:66 msgid "Error in ZIP archive:" msgstr "සිප් ආරක්ෂණයේ දෝෂයක් ඇත:" -#: libraries/messages.inc.php:303 libraries/mysql_charsets.lib.php:241 +#: libraries/messages.inc.php:299 libraries/mysql_charsets.lib.php:241 msgid "Esperanto" msgstr "Esperanto" -#: libraries/messages.inc.php:304 libraries/mysql_charsets.lib.php:244 +#: libraries/messages.inc.php:300 libraries/mysql_charsets.lib.php:244 msgid "Estonian" msgstr "එස්තෝනියානු" -#: libraries/messages.inc.php:305 libraries/tbl_triggers.lib.php:29 +#: libraries/messages.inc.php:301 libraries/tbl_triggers.lib.php:29 #, fuzzy msgid "Event" msgstr "යවන ලද" -#: libraries/messages.inc.php:307 +#: libraries/messages.inc.php:303 msgid "Excel edition" msgstr "එක්සෙල් සංස්කරණය" -#: libraries/messages.inc.php:311 pmd_pdf.php:85 +#: libraries/messages.inc.php:307 pmd_pdf.php:85 msgid "Export/Import to scale" msgstr "" -#: libraries/messages.inc.php:313 +#: libraries/messages.inc.php:309 msgid "Extended inserts" msgstr "Extended inserts" -#: libraries/messages.inc.php:314 pdf_schema.php:1267 pdf_schema.php:1288 +#: libraries/messages.inc.php:310 pdf_schema.php:1267 pdf_schema.php:1288 #: tbl_printview.php:147 tbl_structure.php:183 tbl_tracking.php:278 msgid "Extra" msgstr "අතිරේක" -#: libraries/messages.inc.php:316 server_status.php:447 +#: libraries/messages.inc.php:312 server_status.php:447 msgid "Failed attempts" msgstr "අසාර්ථක උත්සාහයන්" -#: libraries/messages.inc.php:318 tbl_structure.php:375 +#: libraries/messages.inc.php:314 tbl_structure.php:375 #, php-format msgid "Field %s has been dropped" msgstr "%s ක්ෂේත්‍රය ඉවත් කරන ලදි" -#: libraries/messages.inc.php:322 libraries/sql_query_form.lib.php:317 +#: libraries/messages.inc.php:318 libraries/sql_query_form.lib.php:317 msgid "Fields" msgstr "ක්ෂේත්‍ර" -#: libraries/messages.inc.php:332 server_binlog.php:136 +#: libraries/messages.inc.php:328 server_binlog.php:136 #, fuzzy msgid "Files" msgstr "ක්ෂේත්‍ර" -#: libraries/messages.inc.php:334 server_privileges.php:1597 +#: libraries/messages.inc.php:330 server_privileges.php:1597 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -3799,220 +3799,220 @@ msgstr "" "server uses, if they have been changed manually. In this case, you should %" "sreload the privileges%s before you continue." -#: libraries/messages.inc.php:335 server_status.php:289 +#: libraries/messages.inc.php:331 server_status.php:289 msgid "Flush query cache" msgstr "Flush query cache" -#: libraries/messages.inc.php:336 +#: libraries/messages.inc.php:332 msgid "Flush the table (\"FLUSH\")" msgstr "Flush the table (\"FLUSH\")" -#: libraries/messages.inc.php:337 server_status.php:271 +#: libraries/messages.inc.php:333 server_status.php:271 msgid "Flush (close) all tables" msgstr "Flush (close) all tables" -#: libraries/messages.inc.php:339 tbl_relation.php:279 +#: libraries/messages.inc.php:335 tbl_relation.php:279 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" -#: libraries/messages.inc.php:341 setup/lib/messages.inc.php:88 +#: libraries/messages.inc.php:337 setup/lib/messages.inc.php:88 #: tbl_printview.php:376 tbl_structure.php:738 msgid "Format" msgstr "ආකෘතිය" -#: libraries/messages.inc.php:344 server_replication.php:325 +#: libraries/messages.inc.php:340 server_replication.php:325 #, fuzzy msgid "Full start" msgstr "සම්පූර්ණ පාඨය" -#: libraries/messages.inc.php:345 server_replication.php:325 +#: libraries/messages.inc.php:341 server_replication.php:325 #, fuzzy msgid "Full stop" msgstr "සම්පූර්ණ පාඨය" -#: libraries/messages.inc.php:347 tbl_change.php:282 tbl_change.php:320 +#: libraries/messages.inc.php:343 tbl_change.php:282 tbl_change.php:320 msgid "Function" msgstr "ශ්‍රිතය" -#: libraries/messages.inc.php:355 libraries/mysql_charsets.lib.php:377 +#: libraries/messages.inc.php:351 libraries/mysql_charsets.lib.php:377 msgid "Georgian" msgstr "ජෝජියානු‍" -#: libraries/messages.inc.php:356 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:352 libraries/mysql_charsets.lib.php:247 #: libraries/mysql_charsets.lib.php:250 msgid "German" msgstr "ජර්මානු" -#: libraries/messages.inc.php:357 themes.php:42 +#: libraries/messages.inc.php:353 themes.php:42 msgid "Get more themes!" msgstr "" -#: libraries/messages.inc.php:358 server_privileges.php:2134 +#: libraries/messages.inc.php:354 server_privileges.php:2134 msgid "global" msgstr "ගෝලීම" -#: libraries/messages.inc.php:359 server_privileges.php:524 +#: libraries/messages.inc.php:355 server_privileges.php:524 #: server_privileges.php:1500 msgid "Global privileges" msgstr "ගෝලීය වරප්‍රසාද" -#: libraries/messages.inc.php:360 server_variables.php:55 +#: libraries/messages.inc.php:356 server_variables.php:55 #: server_variables.php:89 msgid "Global value" msgstr "ගෝලීය අගය" -#: libraries/messages.inc.php:365 server_privileges.php:1502 +#: libraries/messages.inc.php:361 server_privileges.php:1502 #: server_privileges.php:1684 server_privileges.php:2033 msgid "Grant" msgstr "ප්‍රදානය කරන්න" -#: libraries/messages.inc.php:366 libraries/mysql_charsets.lib.php:380 +#: libraries/messages.inc.php:362 libraries/mysql_charsets.lib.php:380 msgid "Greek" msgstr "ග්‍රීක්" -#: libraries/messages.inc.php:367 +#: libraries/messages.inc.php:363 msgid "\"gzipped\"" msgstr "\"gzipp ගත කරන ලදි\"" -#: libraries/messages.inc.php:369 server_status.php:250 +#: libraries/messages.inc.php:365 server_status.php:250 msgid "Handler" msgstr "Handler" -#: libraries/messages.inc.php:370 server_synchronize.php:464 +#: libraries/messages.inc.php:366 server_synchronize.php:464 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: libraries/messages.inc.php:372 libraries/mysql_charsets.lib.php:374 +#: libraries/messages.inc.php:368 libraries/mysql_charsets.lib.php:374 msgid "Hebrew" msgstr "හීබෲ" -#: libraries/messages.inc.php:373 pmd_general.php:83 +#: libraries/messages.inc.php:369 pmd_general.php:83 msgid "Help" msgstr "" -#: libraries/messages.inc.php:374 +#: libraries/messages.inc.php:370 msgid "Use hexadecimal for BLOB" msgstr "" -#: libraries/messages.inc.php:376 pmd_general.php:120 +#: libraries/messages.inc.php:372 pmd_general.php:120 #, fuzzy msgid "Hide/Show all" msgstr "සියල්ල පෙන්වන්න" -#: libraries/messages.inc.php:377 pmd_general.php:124 +#: libraries/messages.inc.php:373 pmd_general.php:124 msgid "Hide/Show Tables with no relation" msgstr "" -#: libraries/messages.inc.php:378 libraries/navigation_header.inc.php:54 +#: libraries/messages.inc.php:374 libraries/navigation_header.inc.php:54 #: libraries/navigation_header.inc.php:57 #: libraries/navigation_header.inc.php:58 msgid "Home" msgstr "මුල් පිටුව" -#: libraries/messages.inc.php:379 main.php:233 +#: libraries/messages.inc.php:375 main.php:233 msgid "Official Homepage" msgstr "නිල phpMyAdmin මුල් පිටුව" -#: libraries/messages.inc.php:382 libraries/replication_gui.lib.php:327 +#: libraries/messages.inc.php:378 libraries/replication_gui.lib.php:327 #: server_privileges.php:753 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/messages.inc.php:383 +#: libraries/messages.inc.php:379 msgid "Microsoft Word 2000" msgstr "මෛක්‍රොසොෆ්ට් වර්ඩ් 2000" -#: libraries/messages.inc.php:384 libraries/mysql_charsets.lib.php:253 +#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:253 msgid "Hungarian" msgstr "හංගේරියානු" -#: libraries/messages.inc.php:386 libraries/mysql_charsets.lib.php:256 +#: libraries/messages.inc.php:382 libraries/mysql_charsets.lib.php:256 msgid "Icelandic" msgstr "අයිස්ලන්තියානු" -#: libraries/messages.inc.php:387 server_processlist.php:53 +#: libraries/messages.inc.php:383 server_processlist.php:53 msgid "ID" msgstr "හැඳුනුම් අංකය (ID)" -#: libraries/messages.inc.php:388 libraries/mult_submits.inc.php:108 +#: libraries/messages.inc.php:384 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:479 msgid "Fulltext" msgstr "සම්පූර්ණ පාඨය" -#: libraries/messages.inc.php:389 +#: libraries/messages.inc.php:385 msgid "Ignore duplicate rows" msgstr "Ignore duplicate rows" -#: libraries/messages.inc.php:390 tbl_change.php:302 tbl_indexes.php:200 +#: libraries/messages.inc.php:386 tbl_change.php:302 tbl_indexes.php:200 #: tbl_indexes.php:225 msgid "Ignore" msgstr "අත්හැර දමන්න" -#: libraries/messages.inc.php:391 +#: libraries/messages.inc.php:387 msgid "Use ignore inserts" msgstr "Use ignore inserts" -#: libraries/messages.inc.php:392 +#: libraries/messages.inc.php:388 msgid "Column names in first row" msgstr "" -#: libraries/messages.inc.php:393 +#: libraries/messages.inc.php:389 msgid "Do not import empty rows" msgstr "" -#: libraries/messages.inc.php:394 pmd_general.php:104 +#: libraries/messages.inc.php:390 pmd_general.php:104 msgid "Import/Export coordinates for PDF schema" msgstr "" -#: libraries/messages.inc.php:395 querywindow.php:104 +#: libraries/messages.inc.php:391 querywindow.php:104 msgid "Import files" msgstr "ගොනු ආනයනය" -#: libraries/messages.inc.php:403 +#: libraries/messages.inc.php:399 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/messages.inc.php:404 libraries/messages.inc.php:584 +#: libraries/messages.inc.php:400 libraries/messages.inc.php:580 msgid "Open Document Spreadsheet" msgstr "Open Document Spreadsheet" -#: libraries/messages.inc.php:405 +#: libraries/messages.inc.php:401 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/messages.inc.php:409 +#: libraries/messages.inc.php:405 msgid "Excel 97-2003 XLS Workbook" msgstr "" -#: libraries/messages.inc.php:410 +#: libraries/messages.inc.php:406 msgid "Excel 2007 XLSX Workbook" msgstr "" -#: libraries/messages.inc.php:414 libraries/mult_submits.inc.php:98 +#: libraries/messages.inc.php:410 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:476 tbl_structure.php:674 msgid "Index" msgstr "සූචිය" -#: libraries/messages.inc.php:415 tbl_indexes.php:168 +#: libraries/messages.inc.php:411 tbl_indexes.php:168 msgid "Index name:" msgstr "සූචියේ නම:" -#: libraries/messages.inc.php:416 tbl_indexes.php:174 +#: libraries/messages.inc.php:412 tbl_indexes.php:174 msgid "Index type:" msgstr "සූචි වර්ගය:" -#: libraries/messages.inc.php:417 sql.php:639 +#: libraries/messages.inc.php:413 sql.php:639 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problems with indexes of table `%s`" -#: libraries/messages.inc.php:427 main.php:266 +#: libraries/messages.inc.php:423 main.php:266 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -4024,163 +4024,163 @@ msgstr "" "running with this default, is open to intrusion, and you really should fix " "this security hole." -#: libraries/messages.inc.php:428 tbl_change.php:1130 +#: libraries/messages.inc.php:424 tbl_change.php:1130 msgid "Insert as new row" msgstr "Insert as new row" -#: libraries/messages.inc.php:429 sql.php:496 tbl_replace.php:386 +#: libraries/messages.inc.php:425 sql.php:496 tbl_replace.php:386 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: libraries/messages.inc.php:430 tbl_change.php:1131 +#: libraries/messages.inc.php:426 tbl_change.php:1131 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/messages.inc.php:432 main.php:139 +#: libraries/messages.inc.php:428 main.php:139 msgid "Interface" msgstr "" -#: libraries/messages.inc.php:433 tbl_relation.php:407 +#: libraries/messages.inc.php:429 tbl_relation.php:407 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: libraries/messages.inc.php:435 pdf_pages.php:303 +#: libraries/messages.inc.php:431 pdf_pages.php:303 msgid "Internal relations" msgstr "Internal relations" -#: libraries/messages.inc.php:438 tbl_indexes.php:256 tbl_structure.php:590 +#: libraries/messages.inc.php:434 tbl_indexes.php:256 tbl_structure.php:590 #: tbl_structure.php:601 msgid "Column count has to be larger than zero." msgstr "Column count has to be larger than zero." -#: libraries/messages.inc.php:444 libraries/tbl_properties.inc.php:784 +#: libraries/messages.inc.php:440 libraries/tbl_properties.inc.php:784 #: tbl_structure.php:537 msgid "You have to add at least one field." msgstr "ඔබ අවම වශයෙන් එක් ක්ෂේත්‍රයක්වත් එක් කල යුතුයි." -#: libraries/messages.inc.php:449 +#: libraries/messages.inc.php:445 #, php-format msgid "Invalid server index: \"%s\"" msgstr "Invalid server index: \"%s\"" -#: libraries/messages.inc.php:452 libraries/mysql_charsets.lib.php:259 +#: libraries/messages.inc.php:448 libraries/mysql_charsets.lib.php:259 #: libraries/mysql_charsets.lib.php:349 msgid "Japanese" msgstr "ජපන්" -#: libraries/messages.inc.php:453 main.php:331 +#: libraries/messages.inc.php:449 main.php:331 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: libraries/messages.inc.php:454 server_status.php:257 +#: libraries/messages.inc.php:450 server_status.php:257 msgid "Joins" msgstr "Joins" -#: libraries/messages.inc.php:457 server_privileges.php:763 +#: libraries/messages.inc.php:453 server_privileges.php:763 msgid "Do not change the password" msgstr "මුරපදය වෙනස් නොකරන්න" -#: libraries/messages.inc.php:458 server_status.php:256 +#: libraries/messages.inc.php:454 server_status.php:256 msgid "Key cache" msgstr "යතුරු කෑෂ් කිරීම" -#: libraries/messages.inc.php:462 libraries/mysql_charsets.lib.php:268 +#: libraries/messages.inc.php:458 libraries/mysql_charsets.lib.php:268 #: libraries/mysql_charsets.lib.php:371 msgid "Korean" msgstr "කොරියානු" -#: libraries/messages.inc.php:466 libraries/select_lang.lib.php:480 +#: libraries/messages.inc.php:462 libraries/select_lang.lib.php:480 #: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492 #, php-format msgid "Unknown language: %1$s." msgstr "%1$s නොදන්නා භාෂාවකි." -#: libraries/messages.inc.php:468 +#: libraries/messages.inc.php:464 msgid "Table caption" msgstr "වගු සිරස් තලය" -#: libraries/messages.inc.php:469 +#: libraries/messages.inc.php:465 msgid "Content of table __TABLE__" msgstr "Content of table __TABLE__" -#: libraries/messages.inc.php:470 +#: libraries/messages.inc.php:466 msgid "Continued table caption" msgstr "Continued table caption" -#: libraries/messages.inc.php:471 +#: libraries/messages.inc.php:467 msgid "(continued)" msgstr "(ඉදිරියට)" -#: libraries/messages.inc.php:472 +#: libraries/messages.inc.php:468 msgid "Include table caption" msgstr "වගු ශිර්ෂ පාඨ ඇතුලත් කරන්න" -#: libraries/messages.inc.php:473 +#: libraries/messages.inc.php:469 msgid "Label key" msgstr "ලේබල යතුර" -#: libraries/messages.inc.php:474 +#: libraries/messages.inc.php:470 msgid "LaTeX" msgstr "LaTeX" -#: libraries/messages.inc.php:475 +#: libraries/messages.inc.php:471 msgid "Structure of table __TABLE__" msgstr "Structure of table __TABLE__" -#: libraries/messages.inc.php:476 libraries/mysql_charsets.lib.php:262 +#: libraries/messages.inc.php:472 libraries/mysql_charsets.lib.php:262 msgid "Latvian" msgstr "ලැට්වියානු" -#: libraries/messages.inc.php:477 +#: libraries/messages.inc.php:473 msgid "CSV using LOAD DATA" msgstr "CSV using LOAD DATA" -#: libraries/messages.inc.php:478 +#: libraries/messages.inc.php:474 msgid "Use LOCAL keyword" msgstr "Use LOCAL keyword" -#: libraries/messages.inc.php:479 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:475 libraries/tbl_properties.inc.php:105 msgid "Length/Values" msgstr "දිග/අගයන්" -#: libraries/messages.inc.php:480 tbl_select.php:295 +#: libraries/messages.inc.php:476 tbl_select.php:295 msgid "Number of rows per page" msgstr "පිටුවකට පේළි ගණන" -#: libraries/messages.inc.php:484 libraries/mysql_charsets.lib.php:265 +#: libraries/messages.inc.php:480 libraries/mysql_charsets.lib.php:265 msgid "Lithuanian" msgstr "ලිතුවේනියානු" -#: libraries/messages.inc.php:485 libraries/replication_gui.lib.php:302 +#: libraries/messages.inc.php:481 libraries/replication_gui.lib.php:302 #: server_privileges.php:729 msgid "Local" msgstr "ස්වදේශී" -#: libraries/messages.inc.php:487 server_privileges.php:669 +#: libraries/messages.inc.php:483 server_privileges.php:669 msgid "Login Information" msgstr "ලොගින තොරතුරු" -#: libraries/messages.inc.php:490 libraries/navigation_header.inc.php:67 +#: libraries/messages.inc.php:486 libraries/navigation_header.inc.php:67 #: libraries/navigation_header.inc.php:70 #: libraries/navigation_header.inc.php:71 main.php:99 msgid "Log out" msgstr "ලොග්අවුට් වන්න" -#: libraries/messages.inc.php:497 server_status.php:440 +#: libraries/messages.inc.php:493 server_status.php:440 msgid "max. concurrent connections" msgstr "max. concurrent connections" -#: libraries/messages.inc.php:498 +#: libraries/messages.inc.php:494 msgid "Maximal length of created query" msgstr "Maximal length of created query" -#: libraries/messages.inc.php:500 main.php:282 +#: libraries/messages.inc.php:496 main.php:282 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -4190,7 +4190,7 @@ msgstr "" "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " "split strings correctly and it may result in unexpected results." -#: libraries/messages.inc.php:501 main.php:274 +#: libraries/messages.inc.php:497 main.php:274 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -4200,24 +4200,24 @@ msgstr "" "option is incompatible with phpMyAdmin and might cause some data to be " "corrupted!" -#: libraries/messages.inc.php:502 +#: libraries/messages.inc.php:498 msgid "MediaWiki Table" msgstr "" -#: libraries/messages.inc.php:503 transformation_overview.php:25 +#: libraries/messages.inc.php:499 transformation_overview.php:25 msgid "Available MIME types" msgstr "Available MIME types" -#: libraries/messages.inc.php:504 transformation_overview.php:43 +#: libraries/messages.inc.php:500 transformation_overview.php:43 msgid "Available transformations" msgstr "Available transformations" -#: libraries/messages.inc.php:505 +#: libraries/messages.inc.php:501 msgctxt "$strMIME_description" msgid "Description" msgstr "විස්තරය" -#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:580 +#: libraries/messages.inc.php:503 libraries/tbl_properties.inc.php:580 #: transformation_overview.php:60 #, php-format msgid "" @@ -4227,7 +4227,7 @@ msgstr "" "No description is available for this transformation.
Please ask the " "author what %s does." -#: libraries/messages.inc.php:509 libraries/tbl_properties.inc.php:137 +#: libraries/messages.inc.php:505 libraries/tbl_properties.inc.php:137 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -4236,7 +4236,7 @@ msgstr "" "For a list of available transformation options and their MIME type " "transformations, click on %stransformation descriptions%s" -#: libraries/messages.inc.php:510 libraries/tbl_properties.inc.php:146 +#: libraries/messages.inc.php:506 libraries/tbl_properties.inc.php:146 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -4248,112 +4248,112 @@ msgstr "" "quote (\"'\") amongst those values, precede it with a backslash (for example " "'\\\\xyz' or 'a\\'b')." -#: libraries/messages.inc.php:511 libraries/tbl_properties.inc.php:145 +#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:145 msgid "Transformation options" msgstr "Transformation options" -#: libraries/messages.inc.php:513 transformation_overview.php:38 +#: libraries/messages.inc.php:509 transformation_overview.php:38 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "" "MIME types printed in italics do not have a separate transformation function" -#: libraries/messages.inc.php:515 tbl_indexes.php:162 +#: libraries/messages.inc.php:511 tbl_indexes.php:162 msgid "Modify an index" msgstr "සූචිය වෙනස් කරන්න" -#: libraries/messages.inc.php:517 pmd_general.php:108 +#: libraries/messages.inc.php:513 pmd_general.php:108 msgid "Move Menu" msgstr "" -#: libraries/messages.inc.php:518 tbl_operations.php:276 +#: libraries/messages.inc.php:514 tbl_operations.php:276 msgid "Move table to (database.table):" msgstr "වගුව (දත්තගබඩාව.වගුව) වෙතට ගෙන යන්න:" -#: libraries/messages.inc.php:519 tbl_move_copy.php:56 +#: libraries/messages.inc.php:515 tbl_move_copy.php:56 #, php-format msgid "Table %s has been moved to %s." msgstr "%s වගුව %s වෙතට ගෙනයන ලදි." -#: libraries/messages.inc.php:520 tbl_move_copy.php:46 +#: libraries/messages.inc.php:516 tbl_move_copy.php:46 msgid "Can't move table to same one!" msgstr "Can't move table to same one!" -#: libraries/messages.inc.php:521 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:517 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 #: libraries/mysql_charsets.lib.php:332 libraries/mysql_charsets.lib.php:354 #: libraries/mysql_charsets.lib.php:365 msgid "multilingual" msgstr "multilingual" -#: libraries/messages.inc.php:534 main.php:193 +#: libraries/messages.inc.php:530 main.php:193 msgid "MySQL charset" msgstr "MySQL අක්ෂර කට්ටලය" -#: libraries/messages.inc.php:535 main.php:211 +#: libraries/messages.inc.php:531 main.php:211 msgid "MySQL client version" msgstr "MySQL සේවාදායකයාගේ සංස්කරණය" -#: libraries/messages.inc.php:536 main.php:125 +#: libraries/messages.inc.php:532 main.php:125 msgid "MySQL connection collation" msgstr "MySQL සම්බන්ධතා collation" -#: libraries/messages.inc.php:537 main.php:346 +#: libraries/messages.inc.php:533 main.php:346 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: libraries/messages.inc.php:539 server_status.php:294 +#: libraries/messages.inc.php:535 server_status.php:294 msgid "Show processes" msgstr "ක්‍රියාවලිය පෙන්වන්න" -#: libraries/messages.inc.php:545 navigation.php:210 server_databases.php:371 +#: libraries/messages.inc.php:541 navigation.php:210 server_databases.php:371 #: server_synchronize.php:1191 msgid "No databases" msgstr "දත්තගබඩා නොමැත" -#: libraries/messages.inc.php:546 server_databases.php:52 +#: libraries/messages.inc.php:542 server_databases.php:52 msgid "No databases selected." msgstr "දත්තගබඩාවක් තෝරාගෙන නොමැත." -#: libraries/messages.inc.php:548 libraries/relation.lib.php:1173 +#: libraries/messages.inc.php:544 libraries/relation.lib.php:1173 msgid "no description" msgstr "no description" -#: libraries/messages.inc.php:552 libraries/zip_extension.lib.php:26 +#: libraries/messages.inc.php:548 libraries/zip_extension.lib.php:26 msgid "No files found inside ZIP archive!" msgstr "No files found inside ZIP archive!" -#: libraries/messages.inc.php:555 tbl_indexes.php:91 +#: libraries/messages.inc.php:551 tbl_indexes.php:91 msgid "No index parts defined!" msgstr "No index parts defined!" -#: libraries/messages.inc.php:556 libraries/mult_submits.inc.php:435 +#: libraries/messages.inc.php:552 libraries/mult_submits.inc.php:435 #: tbl_replace.php:331 msgid "No change" msgstr "වෙනස්කම් නැත" -#: libraries/messages.inc.php:557 +#: libraries/messages.inc.php:553 #, fuzzy msgctxt "$strNoneDefault" msgid "None" msgstr "කිසිවක් නැත" -#: libraries/messages.inc.php:560 libraries/plugin_interface.lib.php:312 +#: libraries/messages.inc.php:556 libraries/plugin_interface.lib.php:312 msgid "This format has no options" msgstr "මෙම ආකෘතියේ විකල්ප කිසිවක් නැත" -#: libraries/messages.inc.php:565 user_password.php:54 +#: libraries/messages.inc.php:561 user_password.php:54 msgid "You don't have sufficient privileges to be here right now!" msgstr "You don't have sufficient privileges to be here right now!" -#: libraries/messages.inc.php:566 tbl_row_action.php:29 +#: libraries/messages.inc.php:562 tbl_row_action.php:29 msgid "No rows selected" msgstr "පේළි කිසිවක් තෝරගෙන නැත" -#: libraries/messages.inc.php:569 themes.php:32 +#: libraries/messages.inc.php:565 themes.php:32 #, php-format msgid "" "No themes support; please check your configuration and/or your themes in " @@ -4362,295 +4362,295 @@ msgstr "" "No themes support; please check your configuration and/or your themes in " "directory %s." -#: libraries/messages.inc.php:571 libraries/relation.lib.php:95 +#: libraries/messages.inc.php:567 libraries/relation.lib.php:95 msgid "not OK" msgstr "OK නැත" -#: libraries/messages.inc.php:572 server_synchronize.php:400 +#: libraries/messages.inc.php:568 server_synchronize.php:400 #: server_synchronize.php:839 msgid "not present" msgstr "" -#: libraries/messages.inc.php:573 pdf_pages.php:36 pdf_pages.php:42 +#: libraries/messages.inc.php:569 pdf_pages.php:36 pdf_pages.php:42 #: pdf_pages.php:48 pdf_pages.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "%s table not found or not set in %s" -#: libraries/messages.inc.php:574 server_privileges.php:804 +#: libraries/messages.inc.php:570 server_privileges.php:804 #: server_privileges.php:2166 msgid "No user(s) found." msgstr "No user(s) found." -#: libraries/messages.inc.php:578 pmd_general.php:164 +#: libraries/messages.inc.php:574 pmd_general.php:164 #, fuzzy msgid "Number of tables" msgstr "ක්ෂේත්‍ර ගණන" -#: libraries/messages.inc.php:581 server_databases.php:117 +#: libraries/messages.inc.php:577 server_databases.php:117 #: server_status.php:260 setup/lib/messages.inc.php:117 msgid "Tables" msgstr "වගු" -#: libraries/messages.inc.php:583 libraries/relation.lib.php:99 +#: libraries/messages.inc.php:579 libraries/relation.lib.php:99 #: pmd_general.php:340 msgid "OK" msgstr "OK" -#: libraries/messages.inc.php:585 +#: libraries/messages.inc.php:581 msgid "Open Document Text" msgstr "Open Document Text" -#: libraries/messages.inc.php:588 tbl_select.php:138 +#: libraries/messages.inc.php:584 tbl_select.php:138 msgid "Operator" msgstr "මෙහෙයවනය" -#: libraries/messages.inc.php:589 tbl_operations.php:662 +#: libraries/messages.inc.php:585 tbl_operations.php:662 msgid "Optimize" msgstr "" -#: libraries/messages.inc.php:602 libraries/tbl_properties.inc.php:755 +#: libraries/messages.inc.php:598 libraries/tbl_properties.inc.php:755 msgid "PARTITION definition" msgstr "" -#: libraries/messages.inc.php:603 tbl_structure.php:757 +#: libraries/messages.inc.php:599 tbl_structure.php:757 msgid "partitioned" msgstr "" -#: libraries/messages.inc.php:604 tbl_operations.php:649 +#: libraries/messages.inc.php:600 tbl_operations.php:649 #, fuzzy msgid "Partition maintenance" msgstr "වගු නඩත්තුව" -#: libraries/messages.inc.php:605 tbl_operations.php:657 +#: libraries/messages.inc.php:601 tbl_operations.php:657 #, php-format msgid "Partition %s" msgstr "" -#: libraries/messages.inc.php:606 server_privileges.php:1212 +#: libraries/messages.inc.php:602 server_privileges.php:1212 #, php-format msgid "The password for %s was changed successfully." msgstr "The password for %s was changed successfully." -#: libraries/messages.inc.php:635 +#: libraries/messages.inc.php:631 #, php-format msgid "Schema of the \"%s\" database - Page %s" msgstr "Schema of the \"%s\" database - Page %s" -#: libraries/messages.inc.php:636 +#: libraries/messages.inc.php:632 #, php-format msgid "The \"%s\" table doesn't exist!" msgstr "The \"%s\" table doesn't exist!" -#: libraries/messages.inc.php:637 pdf_schema.php:1013 +#: libraries/messages.inc.php:633 pdf_schema.php:1013 msgid "No tables" msgstr "වගු නොමැත" -#: libraries/messages.inc.php:638 pmd_pdf.php:63 +#: libraries/messages.inc.php:634 pmd_pdf.php:63 #, fuzzy msgid "Page has been created" msgstr "%s වගුව හලන ලදි" -#: libraries/messages.inc.php:639 pmd_pdf.php:65 +#: libraries/messages.inc.php:635 pmd_pdf.php:65 msgid "Page creation failed" msgstr "" -#: libraries/messages.inc.php:640 +#: libraries/messages.inc.php:636 msgid "PDF" msgstr "PDF" -#: libraries/messages.inc.php:641 +#: libraries/messages.inc.php:637 msgid "(Generates a report containing the data of a single table)" msgstr "(Generates a report containing the data of a single table)" -#: libraries/messages.inc.php:642 +#: libraries/messages.inc.php:638 msgid "Report title" msgstr "වාර්තා මාතෘකාව" -#: libraries/messages.inc.php:643 server_status.php:389 server_status.php:434 +#: libraries/messages.inc.php:639 server_status.php:389 server_status.php:434 #: server_status.php:497 server_status.php:555 msgid "per hour" msgstr "පැයකට" -#: libraries/messages.inc.php:644 server_status.php:498 +#: libraries/messages.inc.php:640 server_status.php:498 msgid "per minute" msgstr "මිනිත්තුවකට" -#: libraries/messages.inc.php:645 server_status.php:499 +#: libraries/messages.inc.php:641 server_status.php:499 msgid "per second" msgstr "තප්පරයකට" -#: libraries/messages.inc.php:646 libraries/mysql_charsets.lib.php:271 +#: libraries/messages.inc.php:642 libraries/mysql_charsets.lib.php:271 msgid "Persian" msgstr "පර්සියානු" -#: libraries/messages.inc.php:647 libraries/mysql_charsets.lib.php:250 +#: libraries/messages.inc.php:643 libraries/mysql_charsets.lib.php:250 msgid "phone book" msgstr "දුරකථන පොත" -#: libraries/messages.inc.php:648 +#: libraries/messages.inc.php:644 msgid "PHP array" msgstr "" -#: libraries/messages.inc.php:650 main.php:213 +#: libraries/messages.inc.php:646 main.php:213 #, fuzzy msgid "PHP extension" msgstr "PHP සංස්කරණය" -#: libraries/messages.inc.php:654 libraries/relation.lib.php:163 +#: libraries/messages.inc.php:650 libraries/relation.lib.php:163 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/messages.inc.php:655 libraries/relation.lib.php:159 +#: libraries/messages.inc.php:651 libraries/relation.lib.php:159 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/messages.inc.php:656 libraries/relation.lib.php:161 +#: libraries/messages.inc.php:652 libraries/relation.lib.php:161 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" -#: libraries/messages.inc.php:657 libraries/relation.lib.php:162 +#: libraries/messages.inc.php:653 libraries/relation.lib.php:162 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/messages.inc.php:658 libraries/relation.lib.php:164 +#: libraries/messages.inc.php:654 libraries/relation.lib.php:164 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/messages.inc.php:661 libraries/mysql_charsets.lib.php:274 +#: libraries/messages.inc.php:657 libraries/mysql_charsets.lib.php:274 msgid "Polish" msgstr "පෝලන්ත" -#: libraries/messages.inc.php:662 libraries/replication_gui.lib.php:67 +#: libraries/messages.inc.php:658 libraries/replication_gui.lib.php:67 #: server_synchronize.php:1163 #, fuzzy msgid "Port" msgstr "‍තෝරනවා" -#: libraries/messages.inc.php:667 tbl_indexes.php:67 +#: libraries/messages.inc.php:663 tbl_indexes.php:67 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "The name of the primary key must be \"PRIMARY\"!" -#: libraries/messages.inc.php:668 tbl_indexes.php:184 +#: libraries/messages.inc.php:664 tbl_indexes.php:184 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" "(\"PRIMARY\" must be the name of and only of a primary key!)" -#: libraries/messages.inc.php:669 libraries/mult_submits.inc.php:76 +#: libraries/messages.inc.php:665 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:474 msgid "Primary" msgstr "මූලික" -#: libraries/messages.inc.php:673 server_privileges.php:227 +#: libraries/messages.inc.php:669 server_privileges.php:227 msgid "Includes all privileges except GRANT." msgstr "Includes all privileges except GRANT." -#: libraries/messages.inc.php:674 server_privileges.php:153 +#: libraries/messages.inc.php:670 server_privileges.php:153 #: server_privileges.php:476 msgid "Allows altering the structure of existing tables." msgstr "Allows altering the structure of existing tables." -#: libraries/messages.inc.php:675 server_privileges.php:169 +#: libraries/messages.inc.php:671 server_privileges.php:169 #: server_privileges.php:482 msgid "Allows altering and dropping stored routines." msgstr "Allows altering and dropping stored routines." -#: libraries/messages.inc.php:676 server_privileges.php:145 +#: libraries/messages.inc.php:672 server_privileges.php:145 #: server_privileges.php:475 msgid "Allows creating new databases and tables." msgstr "Allows creating new databases and tables." -#: libraries/messages.inc.php:677 server_privileges.php:168 +#: libraries/messages.inc.php:673 server_privileges.php:168 #: server_privileges.php:481 msgid "Allows creating stored routines." msgstr "Allows creating stored routines." -#: libraries/messages.inc.php:678 server_privileges.php:475 +#: libraries/messages.inc.php:674 server_privileges.php:475 msgid "Allows creating new tables." msgstr "Allows creating new tables." -#: libraries/messages.inc.php:679 server_privileges.php:156 +#: libraries/messages.inc.php:675 server_privileges.php:156 #: server_privileges.php:479 msgid "Allows creating temporary tables." msgstr "Allows creating temporary tables." -#: libraries/messages.inc.php:680 server_privileges.php:170 +#: libraries/messages.inc.php:676 server_privileges.php:170 #: server_privileges.php:515 msgid "Allows creating, dropping and renaming user accounts." msgstr "Allows creating, dropping and renaming user accounts." -#: libraries/messages.inc.php:681 server_privileges.php:160 +#: libraries/messages.inc.php:677 server_privileges.php:160 #: server_privileges.php:164 server_privileges.php:487 #: server_privileges.php:491 msgid "Allows creating new views." msgstr "Allows creating new views." -#: libraries/messages.inc.php:682 server_privileges.php:144 +#: libraries/messages.inc.php:678 server_privileges.php:144 #: server_privileges.php:467 msgid "Allows deleting data." msgstr "Allows deleting data." -#: libraries/messages.inc.php:683 server_privileges.php:146 +#: libraries/messages.inc.php:679 server_privileges.php:146 #: server_privileges.php:478 msgid "Allows dropping databases and tables." msgstr "Allows dropping databases and tables." -#: libraries/messages.inc.php:684 server_privileges.php:478 +#: libraries/messages.inc.php:680 server_privileges.php:478 msgid "Allows dropping tables." msgstr "Allows dropping tables." -#: libraries/messages.inc.php:685 server_privileges.php:161 +#: libraries/messages.inc.php:681 server_privileges.php:161 #: server_privileges.php:495 msgid "Allows to set up events for the event scheduler" msgstr "" -#: libraries/messages.inc.php:686 server_privileges.php:171 +#: libraries/messages.inc.php:682 server_privileges.php:171 #: server_privileges.php:483 msgid "Allows executing stored routines." msgstr "Allows executing stored routines." -#: libraries/messages.inc.php:687 server_privileges.php:150 +#: libraries/messages.inc.php:683 server_privileges.php:150 #: server_privileges.php:470 msgid "Allows importing data from and exporting data into files." msgstr "Allows importing data from and exporting data into files." -#: libraries/messages.inc.php:688 server_privileges.php:501 +#: libraries/messages.inc.php:684 server_privileges.php:501 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Allows adding users and privileges without reloading the privilege tables." -#: libraries/messages.inc.php:689 server_privileges.php:152 +#: libraries/messages.inc.php:685 server_privileges.php:152 #: server_privileges.php:477 msgid "Allows creating and dropping indexes." msgstr "Allows creating and dropping indexes." -#: libraries/messages.inc.php:690 server_privileges.php:142 +#: libraries/messages.inc.php:686 server_privileges.php:142 #: server_privileges.php:403 server_privileges.php:465 msgid "Allows inserting and replacing data." msgstr "Allows inserting and replacing data." -#: libraries/messages.inc.php:691 server_privileges.php:157 +#: libraries/messages.inc.php:687 server_privileges.php:157 #: server_privileges.php:510 msgid "Allows locking tables for the current thread." msgstr "Allows locking tables for the current thread." -#: libraries/messages.inc.php:692 server_privileges.php:607 +#: libraries/messages.inc.php:688 server_privileges.php:607 #: server_privileges.php:609 msgid "Limits the number of new connections the user may open per hour." msgstr "Limits the number of new connections the user may open per hour." -#: libraries/messages.inc.php:693 server_privileges.php:595 +#: libraries/messages.inc.php:689 server_privileges.php:595 #: server_privileges.php:597 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Limits the number of queries the user may send to the server per hour." -#: libraries/messages.inc.php:694 server_privileges.php:601 +#: libraries/messages.inc.php:690 server_privileges.php:601 #: server_privileges.php:603 msgid "" "Limits the number of commands that change any table or database the user may " @@ -4659,57 +4659,57 @@ msgstr "" "Limits the number of commands that change any table or database the user may " "execute per hour." -#: libraries/messages.inc.php:695 server_privileges.php:613 +#: libraries/messages.inc.php:691 server_privileges.php:613 #: server_privileges.php:615 msgid "Limits the number of simultaneous connections the user may have." msgstr "Limits the number of simultaneous connections the user may have." -#: libraries/messages.inc.php:696 server_privileges.php:149 +#: libraries/messages.inc.php:692 server_privileges.php:149 #: server_privileges.php:505 msgid "Allows viewing processes of all users" msgstr "" -#: libraries/messages.inc.php:697 server_privileges.php:151 +#: libraries/messages.inc.php:693 server_privileges.php:151 #: server_privileges.php:409 server_privileges.php:511 msgid "Has no effect in this MySQL version." msgstr "Has no effect in this MySQL version." -#: libraries/messages.inc.php:698 server_privileges.php:147 +#: libraries/messages.inc.php:694 server_privileges.php:147 #: server_privileges.php:506 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Allows reloading server settings and flushing the server's caches." -#: libraries/messages.inc.php:699 server_privileges.php:159 +#: libraries/messages.inc.php:695 server_privileges.php:159 #: server_privileges.php:513 msgid "Allows the user to ask where the slaves / masters are." msgstr "Allows the user to ask where the slaves / masters are." -#: libraries/messages.inc.php:700 server_privileges.php:158 +#: libraries/messages.inc.php:696 server_privileges.php:158 #: server_privileges.php:514 msgid "Needed for the replication slaves." msgstr "Needed for the replication slaves." -#: libraries/messages.inc.php:701 server_privileges.php:141 +#: libraries/messages.inc.php:697 server_privileges.php:141 #: server_privileges.php:400 server_privileges.php:464 msgid "Allows reading data." msgstr "Allows reading data." -#: libraries/messages.inc.php:702 server_privileges.php:154 +#: libraries/messages.inc.php:698 server_privileges.php:154 #: server_privileges.php:508 msgid "Gives access to the complete list of databases." msgstr "Gives access to the complete list of databases." -#: libraries/messages.inc.php:703 server_privileges.php:165 +#: libraries/messages.inc.php:699 server_privileges.php:165 #: server_privileges.php:167 server_privileges.php:480 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Allows performing SHOW CREATE VIEW queries." -#: libraries/messages.inc.php:704 server_privileges.php:148 +#: libraries/messages.inc.php:700 server_privileges.php:148 #: server_privileges.php:507 msgid "Allows shutting down the server." msgstr "Allows shutting down the server." -#: libraries/messages.inc.php:705 server_privileges.php:155 +#: libraries/messages.inc.php:701 server_privileges.php:155 #: server_privileges.php:504 msgid "" "Allows connecting, even if maximum number of connections is reached; " @@ -4720,56 +4720,56 @@ msgstr "" "required for most administrative operations like setting global variables or " "killing threads of other users." -#: libraries/messages.inc.php:706 server_privileges.php:162 +#: libraries/messages.inc.php:702 server_privileges.php:162 #: server_privileges.php:496 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "Allows creating and dropping indexes." -#: libraries/messages.inc.php:707 server_privileges.php:143 +#: libraries/messages.inc.php:703 server_privileges.php:143 #: server_privileges.php:406 server_privileges.php:466 msgid "Allows changing data." msgstr "Allows changing data." -#: libraries/messages.inc.php:708 server_privileges.php:221 +#: libraries/messages.inc.php:704 server_privileges.php:221 msgid "No privileges." msgstr "වරප්‍රසාද නොමැත." -#: libraries/messages.inc.php:710 server_privileges.php:1296 +#: libraries/messages.inc.php:706 server_privileges.php:1296 msgid "The privileges were reloaded successfully." msgstr "The privileges were reloaded successfully." -#: libraries/messages.inc.php:712 libraries/server_links.inc.php:80 +#: libraries/messages.inc.php:708 libraries/server_links.inc.php:80 msgid "Processes" msgstr "ක්‍රියාවලිය" -#: libraries/messages.inc.php:714 main.php:187 +#: libraries/messages.inc.php:710 main.php:187 msgid "Protocol version" msgstr "ප්‍රෝටකෝල සංස්කරණය" -#: libraries/messages.inc.php:715 +#: libraries/messages.inc.php:711 msgid "Put fields names in the first row" msgstr "Put fields names in the first row" -#: libraries/messages.inc.php:720 server_synchronize.php:1003 +#: libraries/messages.inc.php:716 server_synchronize.php:1003 msgid "The following queries have been executed:" msgstr "" -#: libraries/messages.inc.php:721 server_status.php:251 +#: libraries/messages.inc.php:717 server_status.php:251 msgid "Query cache" msgstr "Query cache" -#: libraries/messages.inc.php:722 libraries/navigation_header.inc.php:80 +#: libraries/messages.inc.php:718 libraries/navigation_header.inc.php:80 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 setup/lib/messages.inc.php:122 msgid "Query window" msgstr "Query window" -#: libraries/messages.inc.php:725 querywindow.php:109 querywindow.php:217 +#: libraries/messages.inc.php:721 querywindow.php:109 querywindow.php:217 msgid "SQL history" msgstr "SQL ඉතිහාසය" -#: libraries/messages.inc.php:726 server_status.php:490 +#: libraries/messages.inc.php:722 server_status.php:490 #, php-format msgid "" "Query statistics: Since its startup, %s queries have been sent to the " @@ -4778,137 +4778,137 @@ msgstr "" "Query statistics: Since its startup, %s queries have been sent to the " "server." -#: libraries/messages.inc.php:728 server_status.php:554 +#: libraries/messages.inc.php:724 server_status.php:554 msgid "Query type" msgstr "විමසුම් වර්ගය" -#: libraries/messages.inc.php:729 libraries/sql_query_form.lib.php:381 +#: libraries/messages.inc.php:725 libraries/sql_query_form.lib.php:381 msgid "Do not overwrite this query from outside the window" msgstr "Do not overwrite this query from outside the window" -#: libraries/messages.inc.php:732 tbl_operations.php:663 +#: libraries/messages.inc.php:728 tbl_operations.php:663 msgid "Rebuild" msgstr "" -#: libraries/messages.inc.php:733 server_status.php:394 +#: libraries/messages.inc.php:729 server_status.php:394 msgid "Received" msgstr "ලබන ලද" -#: libraries/messages.inc.php:734 pmd_pdf.php:89 +#: libraries/messages.inc.php:730 pmd_pdf.php:89 msgid "recommended" msgstr "" -#: libraries/messages.inc.php:736 tbl_operations.php:702 +#: libraries/messages.inc.php:732 tbl_operations.php:702 msgid "Check referential integrity:" msgstr "Check referential integrity:" -#: libraries/messages.inc.php:740 pdf_schema.php:1032 pdf_schema.php:1141 +#: libraries/messages.inc.php:736 pdf_schema.php:1032 pdf_schema.php:1141 msgid "Relational schema" msgstr "Relational schema" -#: libraries/messages.inc.php:744 tbl_relation.php:399 +#: libraries/messages.inc.php:740 tbl_relation.php:399 msgid "Relations" msgstr "Relations" -#: libraries/messages.inc.php:745 tbl_structure.php:507 tbl_structure.php:509 +#: libraries/messages.inc.php:741 tbl_structure.php:507 tbl_structure.php:509 msgid "Relation view" msgstr "Relation view" -#: libraries/messages.inc.php:746 server_privileges.php:1246 +#: libraries/messages.inc.php:742 server_privileges.php:1246 msgid "Reloading the privileges" msgstr "Reloading the privileges" -#: libraries/messages.inc.php:747 navigation.php:66 navigation.php:67 +#: libraries/messages.inc.php:743 navigation.php:66 navigation.php:67 #: navigation.php:70 msgid "Reload navigation frame" msgstr "" -#: libraries/messages.inc.php:748 pmd_general.php:80 +#: libraries/messages.inc.php:744 pmd_general.php:80 msgid "Reload" msgstr "" -#: libraries/messages.inc.php:749 libraries/server_synchronize.lib.php:1345 +#: libraries/messages.inc.php:745 libraries/server_synchronize.lib.php:1345 #: libraries/server_synchronize.lib.php:1371 msgid "Remote server" msgstr "" -#: libraries/messages.inc.php:750 +#: libraries/messages.inc.php:746 msgid "Remove CRLF characters within fields" msgstr "" -#: libraries/messages.inc.php:751 tbl_operations.php:676 +#: libraries/messages.inc.php:747 tbl_operations.php:676 msgid "Remove partitioning" msgstr "" -#: libraries/messages.inc.php:752 server_privileges.php:1575 +#: libraries/messages.inc.php:748 server_privileges.php:1575 msgid "Remove selected users" msgstr "තෝරාගත් භාවිතා කරන්නන් ඉවත් කරන්න" -#: libraries/messages.inc.php:755 tbl_operations.php:338 +#: libraries/messages.inc.php:751 tbl_operations.php:338 msgid "Rename table to" msgstr "වගුව බවට නම වෙනස් කරන්න" -#: libraries/messages.inc.php:756 view_operations.php:93 +#: libraries/messages.inc.php:752 view_operations.php:93 #, fuzzy msgid "Rename view to" msgstr "වගුව බවට නම වෙනස් කරන්න" -#: libraries/messages.inc.php:757 tbl_operations.php:664 +#: libraries/messages.inc.php:753 tbl_operations.php:664 #, fuzzy msgid "Repair" msgstr "වගුව ප්‍රතිසංස්කරණය කරන්න" -#: libraries/messages.inc.php:759 +#: libraries/messages.inc.php:755 msgid "Replace NULL by" msgstr "Replace NULL by" -#: libraries/messages.inc.php:760 +#: libraries/messages.inc.php:756 msgid "Replace table data with file" msgstr "Replace table data with file" -#: libraries/messages.inc.php:761 server_replication.php:228 +#: libraries/messages.inc.php:757 server_replication.php:228 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: libraries/messages.inc.php:762 libraries/replication_gui.lib.php:236 +#: libraries/messages.inc.php:758 libraries/replication_gui.lib.php:236 #: server_replication.php:194 msgid "Add slave replication user" msgstr "" -#: libraries/messages.inc.php:763 server_replication.php:74 +#: libraries/messages.inc.php:759 server_replication.php:74 #, php-format msgid "Master server changed succesfully to %s" msgstr "" -#: libraries/messages.inc.php:764 server_replication.php:182 +#: libraries/messages.inc.php:760 server_replication.php:182 msgid "This server is configured as master in a replication process." msgstr "" -#: libraries/messages.inc.php:765 server_replication.php:322 +#: libraries/messages.inc.php:761 server_replication.php:322 msgid "Control slave:" msgstr "" -#: libraries/messages.inc.php:766 server_replication.php:65 +#: libraries/messages.inc.php:762 server_replication.php:65 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: libraries/messages.inc.php:767 server_replication.php:58 +#: libraries/messages.inc.php:763 server_replication.php:58 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: libraries/messages.inc.php:768 server_replication.php:221 +#: libraries/messages.inc.php:764 server_replication.php:221 msgid "Replicate all databases; Ignore:" msgstr "" -#: libraries/messages.inc.php:769 server_replication.php:222 +#: libraries/messages.inc.php:765 server_replication.php:222 msgid "Ignore all databases; Replicate:" msgstr "" -#: libraries/messages.inc.php:770 server_replication.php:218 +#: libraries/messages.inc.php:766 server_replication.php:218 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -4917,122 +4917,122 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: libraries/messages.inc.php:771 server_replication.php:217 +#: libraries/messages.inc.php:767 server_replication.php:217 msgid "Master configuration" msgstr "" -#: libraries/messages.inc.php:772 server_replication.php:181 +#: libraries/messages.inc.php:768 server_replication.php:181 #: server_replication.php:209 msgid "Master replication" msgstr "" -#: libraries/messages.inc.php:774 server_replication.php:230 +#: libraries/messages.inc.php:770 server_replication.php:230 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: libraries/messages.inc.php:775 server_replication.php:225 +#: libraries/messages.inc.php:771 server_replication.php:225 #, fuzzy msgid "Please select databases:" msgstr "කරුණාකර දත්තගබඩාවක් තෝරන්න" -#: libraries/messages.inc.php:776 server_replication.php:210 +#: libraries/messages.inc.php:772 server_replication.php:210 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:188 +#: libraries/messages.inc.php:773 libraries/replication_gui.lib.php:188 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/messages.inc.php:778 server_replication.php:187 +#: libraries/messages.inc.php:774 server_replication.php:187 msgid "Show connected slaves" msgstr "" -#: libraries/messages.inc.php:779 libraries/messages.inc.php:885 +#: libraries/messages.inc.php:775 libraries/messages.inc.php:881 #: server_replication.php:184 server_status.php:281 #, fuzzy msgid "Show master status" msgstr "උපතත්වයන් පෙන්වන්න" -#: libraries/messages.inc.php:780 server_replication.php:334 +#: libraries/messages.inc.php:776 server_replication.php:334 msgid "Skipping error(s) might lead into unsynchronized master and slave!" msgstr "" -#: libraries/messages.inc.php:781 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:51 #: server_replication.php:347 msgid "Change or reconfigure master server" msgstr "" -#: libraries/messages.inc.php:782 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:778 libraries/replication_gui.lib.php:51 msgid "Slave configuration" msgstr "" -#: libraries/messages.inc.php:783 server_replication.php:305 +#: libraries/messages.inc.php:779 server_replication.php:305 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: libraries/messages.inc.php:784 server_replication.php:332 +#: libraries/messages.inc.php:780 server_replication.php:332 msgid "Error management:" msgstr "" -#: libraries/messages.inc.php:785 server_replication.php:328 +#: libraries/messages.inc.php:781 server_replication.php:328 #, php-format msgid "IO Thread %s only" msgstr "" -#: libraries/messages.inc.php:786 server_replication.php:296 +#: libraries/messages.inc.php:782 server_replication.php:296 msgid "Slave IO Thread not running!" msgstr "" -#: libraries/messages.inc.php:787 server_replication.php:355 +#: libraries/messages.inc.php:783 server_replication.php:355 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/messages.inc.php:788 server_replication.php:326 +#: libraries/messages.inc.php:784 server_replication.php:326 msgid "Reset slave" msgstr "" -#: libraries/messages.inc.php:789 server_replication.php:308 +#: libraries/messages.inc.php:785 server_replication.php:308 msgid "See slave status table" msgstr "" -#: libraries/messages.inc.php:790 server_replication.php:336 +#: libraries/messages.inc.php:786 server_replication.php:336 msgid "Skip current error" msgstr "" -#: libraries/messages.inc.php:791 server_replication.php:340 +#: libraries/messages.inc.php:787 server_replication.php:340 msgid "errors." msgstr "" -#: libraries/messages.inc.php:792 server_replication.php:337 +#: libraries/messages.inc.php:788 server_replication.php:337 msgid "Skip next" msgstr "" -#: libraries/messages.inc.php:793 server_replication.php:248 +#: libraries/messages.inc.php:789 server_replication.php:248 msgid "Slave replication" msgstr "" -#: libraries/messages.inc.php:794 server_replication.php:293 +#: libraries/messages.inc.php:790 server_replication.php:293 msgid "Slave SQL Thread not running!" msgstr "" -#: libraries/messages.inc.php:795 server_replication.php:327 +#: libraries/messages.inc.php:791 server_replication.php:327 #, php-format msgid "SQL Thread %s only" msgstr "" -#: libraries/messages.inc.php:796 +#: libraries/messages.inc.php:792 #, php-format msgid "" "This MySQL server works as %s in replication process. For further " @@ -5040,162 +5040,162 @@ msgid "" "\"#replication\">replication section." msgstr "" -#: libraries/messages.inc.php:797 +#: libraries/messages.inc.php:793 #, fuzzy msgid "Master status" msgstr "උපතත්වයන් පෙන්වන්න" -#: libraries/messages.inc.php:798 server_status.php:721 +#: libraries/messages.inc.php:794 server_status.php:721 #, fuzzy msgid "Replication status" msgstr "Replication" -#: libraries/messages.inc.php:799 +#: libraries/messages.inc.php:795 #, fuzzy msgid "Slave status" msgstr "උපතත්වයන් පෙන්වන්න" -#: libraries/messages.inc.php:800 server_replication.php:311 +#: libraries/messages.inc.php:796 server_replication.php:311 msgid "Synchronize databases with master" msgstr "" -#: libraries/messages.inc.php:801 server_replication.php:71 +#: libraries/messages.inc.php:797 server_replication.php:71 msgid "Unable to change master" msgstr "" -#: libraries/messages.inc.php:802 server_replication.php:51 +#: libraries/messages.inc.php:798 server_replication.php:51 msgid "Unknown error" msgstr "" -#: libraries/messages.inc.php:803 main.php:163 pdf_pages.php:344 +#: libraries/messages.inc.php:799 main.php:163 pdf_pages.php:344 #: setup/lib/FormDisplay.tpl.php:216 tbl_change.php:1175 msgid "Reset" msgstr "ප්‍රතිසකසන්න" -#: libraries/messages.inc.php:804 server_privileges.php:591 +#: libraries/messages.inc.php:800 server_privileges.php:591 msgid "Resource limits" msgstr "සම්පත් සීමා" -#: libraries/messages.inc.php:805 tbl_change.php:1209 +#: libraries/messages.inc.php:801 tbl_change.php:1209 #, php-format msgid "Restart insertion with %s rows" msgstr "" -#: libraries/messages.inc.php:807 server_privileges.php:1578 +#: libraries/messages.inc.php:803 server_privileges.php:1578 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Revoke all active privileges from the users and delete them afterwards." -#: libraries/messages.inc.php:808 server_privileges.php:1176 +#: libraries/messages.inc.php:804 server_privileges.php:1176 #, php-format msgid "You have revoked the privileges for %s" msgstr "You have revoked the privileges for %s" -#: libraries/messages.inc.php:809 server_privileges.php:1333 +#: libraries/messages.inc.php:805 server_privileges.php:1333 msgid "Revoke" msgstr "Revoke" -#: libraries/messages.inc.php:810 libraries/mysql_charsets.lib.php:280 +#: libraries/messages.inc.php:806 libraries/mysql_charsets.lib.php:280 msgid "Romanian" msgstr "රුමේනියානු" -#: libraries/messages.inc.php:813 tbl_printview.php:404 tbl_structure.php:786 +#: libraries/messages.inc.php:809 tbl_printview.php:404 tbl_structure.php:786 msgid "Row length" msgstr "පේළියේ දිග" -#: libraries/messages.inc.php:815 tbl_printview.php:414 tbl_structure.php:794 +#: libraries/messages.inc.php:811 tbl_printview.php:414 tbl_structure.php:794 msgid " Row size " msgstr "පේළියේ ප්‍රමාණය" -#: libraries/messages.inc.php:821 tbl_printview.php:366 tbl_structure.php:726 +#: libraries/messages.inc.php:817 tbl_printview.php:366 tbl_structure.php:726 msgid "Row Statistics" msgstr "පේළි සංඛ්‍ය ලේඛන" -#: libraries/messages.inc.php:822 +#: libraries/messages.inc.php:818 #, php-format msgid "running on %s" msgstr "%s මත ධාවනය වේ" -#: libraries/messages.inc.php:824 libraries/sql_query_form.lib.php:223 +#: libraries/messages.inc.php:820 libraries/sql_query_form.lib.php:223 #, php-format msgid "Run SQL query/queries on server %s" msgstr "Run SQL query/queries on server %s" -#: libraries/messages.inc.php:825 libraries/sql_query_form.lib.php:240 +#: libraries/messages.inc.php:821 libraries/sql_query_form.lib.php:240 #: libraries/sql_query_form.lib.php:265 #, php-format msgid "Run SQL query/queries on database %s" msgstr "Run SQL query/queries on database %s" -#: libraries/messages.inc.php:826 libraries/mysql_charsets.lib.php:337 +#: libraries/messages.inc.php:822 libraries/mysql_charsets.lib.php:337 msgid "Russian" msgstr "රුසියානු" -#: libraries/messages.inc.php:829 pmd_general.php:68 +#: libraries/messages.inc.php:825 pmd_general.php:68 msgid "Save position" msgstr "" -#: libraries/messages.inc.php:830 libraries/tbl_properties.inc.php:776 +#: libraries/messages.inc.php:826 libraries/tbl_properties.inc.php:776 #: pdf_pages.php:484 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:214 setup/lib/FormDisplay.tpl.php:215 #: tbl_change.php:1126 tbl_indexes.php:248 tbl_relation.php:566 msgid "Save" msgstr "සේව් කරන්න" -#: libraries/messages.inc.php:831 +#: libraries/messages.inc.php:827 msgid "The scale factor is too small to fit the schema on one page" msgstr "The scale factor is too small to fit the schema on one page" -#: libraries/messages.inc.php:843 main.php:298 +#: libraries/messages.inc.php:839 main.php:298 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "The configuration file now needs a secret passphrase (blowfish_secret)." -#: libraries/messages.inc.php:844 navigation.php:353 navigation.php:516 +#: libraries/messages.inc.php:840 navigation.php:353 navigation.php:516 msgid "Please select a database" msgstr "කරුණාකර දත්තගබඩාවක් තෝරන්න" -#: libraries/messages.inc.php:846 server_binlog.php:120 +#: libraries/messages.inc.php:842 server_binlog.php:120 msgid "Select binary log to view" msgstr "පෙන්වීම සඳහා ද්වීමය ලොගය තෝරන්න" -#: libraries/messages.inc.php:847 tbl_select.php:270 +#: libraries/messages.inc.php:843 tbl_select.php:270 msgid "Select fields (at least one):" msgstr "Select fields (at least one):" -#: libraries/messages.inc.php:851 pdf_pages.php:320 +#: libraries/messages.inc.php:847 pdf_pages.php:320 msgid "Select Tables" msgstr "වගු තෝරන්න" -#: libraries/messages.inc.php:853 server_status.php:404 +#: libraries/messages.inc.php:849 server_status.php:404 msgid "Sent" msgstr "යවන ලද" -#: libraries/messages.inc.php:857 libraries/select_server.lib.php:45 +#: libraries/messages.inc.php:853 libraries/select_server.lib.php:45 #: setup/frames/index.inc.php:97 setup/lib/messages.inc.php:115 msgid "Servers" msgstr "සර්වරයන්" -#: libraries/messages.inc.php:858 server_status.php:255 +#: libraries/messages.inc.php:854 server_status.php:255 msgid "Delayed inserts" msgstr "Delayed inserts" -#: libraries/messages.inc.php:859 server_status.php:46 +#: libraries/messages.inc.php:855 server_status.php:46 msgid "Runtime Information" msgstr "ධාවන කාල තොරතුරු" -#: libraries/messages.inc.php:860 server_status.php:350 +#: libraries/messages.inc.php:856 server_status.php:350 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "This MySQL server has been running for %s. It started up on %s." -#: libraries/messages.inc.php:861 libraries/server_links.inc.php:53 +#: libraries/messages.inc.php:857 libraries/server_links.inc.php:53 #: server_engines.php:112 server_engines.php:116 server_status.php:304 #: test/theme.php:105 msgid "Variables" msgstr "විචල්‍යනයන්" -#: libraries/messages.inc.php:862 server_status.php:383 +#: libraries/messages.inc.php:858 server_status.php:383 msgid "" "Server traffic: These tables show the network traffic statistics of " "this MySQL server since its startup." @@ -5203,11 +5203,11 @@ msgstr "" "Server traffic: These tables show the network traffic statistics of " "this MySQL server since its startup." -#: libraries/messages.inc.php:863 server_variables.php:35 +#: libraries/messages.inc.php:859 server_variables.php:35 msgid "Server variables and settings" msgstr "Server variables and settings" -#: libraries/messages.inc.php:865 main.php:290 +#: libraries/messages.inc.php:861 main.php:290 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -5215,17 +5215,17 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: libraries/messages.inc.php:866 +#: libraries/messages.inc.php:862 msgid "" "Cannot start session without errors, please check errors given in your PHP " "and/or webserver log file and configure your PHP installation properly." msgstr "" -#: libraries/messages.inc.php:867 server_variables.php:55 +#: libraries/messages.inc.php:863 server_variables.php:55 msgid "Session value" msgstr "සැසි අගය" -#: libraries/messages.inc.php:868 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:864 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 " @@ -5237,45 +5237,45 @@ msgstr "" "a single quote (\"'\") amongst those values, precede it with a backslash " "(for example '\\\\xyz' or 'a\\'b')." -#: libraries/messages.inc.php:876 server_binlog.php:192 server_binlog.php:195 +#: libraries/messages.inc.php:872 server_binlog.php:192 server_binlog.php:195 #: server_processlist.php:49 server_processlist.php:51 msgid "Show Full Queries" msgstr "සම්පූර්ණ විමසුම් පෙන්වන්න" -#: libraries/messages.inc.php:878 pmd_general.php:64 +#: libraries/messages.inc.php:874 pmd_general.php:64 msgid "Show/Hide left menu" msgstr "" -#: libraries/messages.inc.php:880 sql.php:513 +#: libraries/messages.inc.php:876 sql.php:513 msgid "Showing as PHP code" msgstr "" -#: libraries/messages.inc.php:882 sql.php:516 tbl_replace.php:360 +#: libraries/messages.inc.php:878 sql.php:516 tbl_replace.php:360 #, fuzzy msgid "Showing SQL query" msgstr "සම්පූර්ණ විමසුම් පෙන්වන්න" -#: libraries/messages.inc.php:883 tbl_change.php:1132 +#: libraries/messages.inc.php:879 tbl_change.php:1132 msgid "Show insert query" msgstr "" -#: libraries/messages.inc.php:886 server_status.php:273 +#: libraries/messages.inc.php:882 server_status.php:273 msgid "Show open tables" msgstr "විවෘත වගු පෙන්වන්න" -#: libraries/messages.inc.php:887 main.php:219 +#: libraries/messages.inc.php:883 main.php:219 msgid "Show PHP information" msgstr "PHP තොරතුරු පෙන්වන්න" -#: libraries/messages.inc.php:889 server_status.php:278 +#: libraries/messages.inc.php:885 server_status.php:278 msgid "Show slave hosts" msgstr "උපදායකයන් පෙන්වන්න" -#: libraries/messages.inc.php:890 server_status.php:284 +#: libraries/messages.inc.php:886 server_status.php:284 msgid "Show slave status" msgstr "උපතත්වයන් පෙන්වන්න" -#: libraries/messages.inc.php:891 +#: libraries/messages.inc.php:887 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -5285,11 +5285,11 @@ msgstr "" "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." -#: libraries/messages.inc.php:892 +#: libraries/messages.inc.php:888 msgid "The number of transactions that used the temporary binary log cache." msgstr "The number of transactions that used the temporary binary log cache." -#: libraries/messages.inc.php:893 +#: libraries/messages.inc.php:889 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -5301,11 +5301,11 @@ msgstr "" "to increase the tmp_table_size value to cause temporary tables to be memory-" "based instead of disk-based." -#: libraries/messages.inc.php:894 +#: libraries/messages.inc.php:890 msgid "How many temporary files mysqld has created." msgstr "How many temporary files mysqld has created." -#: libraries/messages.inc.php:895 +#: libraries/messages.inc.php:891 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -5313,7 +5313,7 @@ msgstr "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." -#: libraries/messages.inc.php:896 +#: libraries/messages.inc.php:892 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -5321,7 +5321,7 @@ msgstr "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." -#: libraries/messages.inc.php:897 +#: libraries/messages.inc.php:893 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -5329,23 +5329,23 @@ msgstr "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." -#: libraries/messages.inc.php:898 +#: libraries/messages.inc.php:894 msgid "The number of INSERT DELAYED rows written." msgstr "The number of INSERT DELAYED rows written." -#: libraries/messages.inc.php:899 +#: libraries/messages.inc.php:895 msgid "The number of executed FLUSH statements." msgstr "The number of executed FLUSH statements." -#: libraries/messages.inc.php:900 +#: libraries/messages.inc.php:896 msgid "The number of internal COMMIT statements." msgstr "The number of internal COMMIT statements." -#: libraries/messages.inc.php:901 +#: libraries/messages.inc.php:897 msgid "The number of times a row was deleted from a table." msgstr "The number of times a row was deleted from a table." -#: libraries/messages.inc.php:902 +#: libraries/messages.inc.php:898 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -5355,96 +5355,96 @@ msgstr "" "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." +#: libraries/messages.inc.php:899 +msgid "" +"The number of times the first entry was read from an index. If this is high, " +"it suggests that the server is doing a lot of full index scans; for example, " +"SELECT col1 FROM foo, assuming that col1 is indexed." +msgstr "" +"The number of times the first entry was read from an index. If this is high, " +"it suggests that the server is doing a lot of full index scans; for example, " +"SELECT col1 FROM foo, assuming that col1 is indexed." + +#: libraries/messages.inc.php:900 +msgid "" +"The number of requests to read a row based on a key. If this is high, it is " +"a good indication that your queries and tables are properly indexed." +msgstr "" +"The number of requests to read a row based on a key. If this is high, it is " +"a good indication that your queries and tables are properly indexed." + +#: libraries/messages.inc.php:901 +msgid "" +"The number of requests to read the next row in key order. This is " +"incremented if you are querying an index column with a range constraint or " +"if you are doing an index scan." +msgstr "" +"The number of requests to read the next row in key order. This is " +"incremented if you are querying an index column with a range constraint or " +"if you are doing an index scan." + +#: libraries/messages.inc.php:902 +msgid "" +"The number of requests to read the previous row in key order. This read " +"method is mainly used to optimize ORDER BY ... DESC." +msgstr "" +"The number of requests to read the previous row in key order. This read " +"method is mainly used to optimize ORDER BY ... DESC." + #: libraries/messages.inc.php:903 msgid "" -"The number of times the first entry was read from an index. If this is high, " -"it suggests that the server is doing a lot of full index scans; for example, " -"SELECT col1 FROM foo, assuming that col1 is indexed." +"The number of requests to read a row based on a fixed position. This is high " +"if you are doing a lot of queries that require sorting of the result. You " +"probably have a lot of queries that require MySQL to scan whole tables or " +"you have joins that don't use keys properly." msgstr "" -"The number of times the first entry was read from an index. If this is high, " -"it suggests that the server is doing a lot of full index scans; for example, " -"SELECT col1 FROM foo, assuming that col1 is indexed." +"The number of requests to read a row based on a fixed position. This is high " +"if you are doing a lot of queries that require sorting of the result. You " +"probably have a lot of queries that require MySQL to scan whole tables or " +"you have joins that don't use keys properly." #: libraries/messages.inc.php:904 msgid "" -"The number of requests to read a row based on a key. If this is high, it is " -"a good indication that your queries and tables are properly indexed." +"The number of requests to read the next row in the data file. This is high " +"if you are doing a lot of table scans. Generally this suggests that your " +"tables are not properly indexed or that your queries are not written to take " +"advantage of the indexes you have." msgstr "" -"The number of requests to read a row based on a key. If this is high, it is " -"a good indication that your queries and tables are properly indexed." +"The number of requests to read the next row in the data file. This is high " +"if you are doing a lot of table scans. Generally this suggests that your " +"tables are not properly indexed or that your queries are not written to take " +"advantage of the indexes you have." #: libraries/messages.inc.php:905 -msgid "" -"The number of requests to read the next row in key order. This is " -"incremented if you are querying an index column with a range constraint or " -"if you are doing an index scan." -msgstr "" -"The number of requests to read the next row in key order. This is " -"incremented if you are querying an index column with a range constraint or " -"if you are doing an index scan." - -#: libraries/messages.inc.php:906 -msgid "" -"The number of requests to read the previous row in key order. This read " -"method is mainly used to optimize ORDER BY ... DESC." -msgstr "" -"The number of requests to read the previous row in key order. This read " -"method is mainly used to optimize ORDER BY ... DESC." - -#: libraries/messages.inc.php:907 -msgid "" -"The number of requests to read a row based on a fixed position. This is high " -"if you are doing a lot of queries that require sorting of the result. You " -"probably have a lot of queries that require MySQL to scan whole tables or " -"you have joins that don't use keys properly." -msgstr "" -"The number of requests to read a row based on a fixed position. This is high " -"if you are doing a lot of queries that require sorting of the result. You " -"probably have a lot of queries that require MySQL to scan whole tables or " -"you have joins that don't use keys properly." - -#: libraries/messages.inc.php:908 -msgid "" -"The number of requests to read the next row in the data file. This is high " -"if you are doing a lot of table scans. Generally this suggests that your " -"tables are not properly indexed or that your queries are not written to take " -"advantage of the indexes you have." -msgstr "" -"The number of requests to read the next row in the data file. This is high " -"if you are doing a lot of table scans. Generally this suggests that your " -"tables are not properly indexed or that your queries are not written to take " -"advantage of the indexes you have." - -#: libraries/messages.inc.php:909 msgid "The number of internal ROLLBACK statements." msgstr "The number of internal ROLLBACK statements." -#: libraries/messages.inc.php:910 +#: libraries/messages.inc.php:906 msgid "The number of requests to update a row in a table." msgstr "The number of requests to update a row in a table." -#: libraries/messages.inc.php:911 +#: libraries/messages.inc.php:907 msgid "The number of requests to insert a row in a table." msgstr "The number of requests to insert a row in a table." -#: libraries/messages.inc.php:912 +#: libraries/messages.inc.php:908 msgid "The number of pages containing data (dirty or clean)." msgstr "The number of pages containing data (dirty or clean)." -#: libraries/messages.inc.php:913 +#: libraries/messages.inc.php:909 msgid "The number of pages currently dirty." msgstr "The number of pages currently dirty." -#: libraries/messages.inc.php:914 +#: libraries/messages.inc.php:910 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" "The number of buffer pool pages that have been requested to be flushed." -#: libraries/messages.inc.php:915 +#: libraries/messages.inc.php:911 msgid "The number of free pages." msgstr "නිදහස් පිටු ගණන." -#: libraries/messages.inc.php:916 +#: libraries/messages.inc.php:912 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -5454,7 +5454,7 @@ msgstr "" "being read or written or that can't be flushed or removed for some other " "reason." -#: libraries/messages.inc.php:917 +#: libraries/messages.inc.php:913 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -5466,11 +5466,11 @@ msgstr "" "be calculated as Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: libraries/messages.inc.php:918 +#: libraries/messages.inc.php:914 msgid "Total size of buffer pool, in pages." msgstr "Total size of buffer pool, in pages." -#: libraries/messages.inc.php:919 +#: libraries/messages.inc.php:915 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -5478,7 +5478,7 @@ msgstr "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." -#: libraries/messages.inc.php:920 +#: libraries/messages.inc.php:916 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -5486,11 +5486,11 @@ msgstr "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." -#: libraries/messages.inc.php:921 +#: libraries/messages.inc.php:917 msgid "The number of logical read requests InnoDB has done." msgstr "The number of logical read requests InnoDB has done." -#: libraries/messages.inc.php:922 +#: libraries/messages.inc.php:918 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -5498,7 +5498,7 @@ msgstr "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." -#: libraries/messages.inc.php:923 +#: libraries/messages.inc.php:919 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -5512,55 +5512,55 @@ msgstr "" "counter counts instances of these waits. If the buffer pool size was set " "properly, this value should be small." -#: libraries/messages.inc.php:924 +#: libraries/messages.inc.php:920 msgid "The number writes done to the InnoDB buffer pool." msgstr "The number writes done to the InnoDB buffer pool." -#: libraries/messages.inc.php:925 +#: libraries/messages.inc.php:921 msgid "The number of fsync() operations so far." msgstr "The number of fsync() operations so far." -#: libraries/messages.inc.php:926 +#: libraries/messages.inc.php:922 msgid "The current number of pending fsync() operations." msgstr "The current number of pending fsync() operations." -#: libraries/messages.inc.php:927 +#: libraries/messages.inc.php:923 msgid "The current number of pending reads." msgstr "The current number of pending reads." -#: libraries/messages.inc.php:928 +#: libraries/messages.inc.php:924 msgid "The current number of pending writes." msgstr "The current number of pending writes." -#: libraries/messages.inc.php:929 +#: libraries/messages.inc.php:925 msgid "The amount of data read so far, in bytes." msgstr "The amount of data read so far, in bytes." -#: libraries/messages.inc.php:930 +#: libraries/messages.inc.php:926 msgid "The total number of data reads." msgstr "The total number of data reads." -#: libraries/messages.inc.php:931 +#: libraries/messages.inc.php:927 msgid "The total number of data writes." msgstr "The total number of data writes." -#: libraries/messages.inc.php:932 +#: libraries/messages.inc.php:928 msgid "The amount of data written so far, in bytes." msgstr "The amount of data written so far, in bytes." -#: libraries/messages.inc.php:933 +#: libraries/messages.inc.php:929 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "The number of doublewrite writes that have been performed and the number of " "pages that have been written for this purpose." -#: libraries/messages.inc.php:934 +#: libraries/messages.inc.php:930 msgid "The number of doublewrite operations that have been performed." msgstr "" "The number of doublewrite writes that have been performed and the number of " "pages that have been written for this purpose." -#: libraries/messages.inc.php:935 +#: libraries/messages.inc.php:931 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -5568,35 +5568,35 @@ msgstr "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." -#: libraries/messages.inc.php:936 +#: libraries/messages.inc.php:932 msgid "The number of log write requests." msgstr "The number of log write requests." -#: libraries/messages.inc.php:937 +#: libraries/messages.inc.php:933 msgid "The number of physical writes to the log file." msgstr "The number of physical writes to the log file." -#: libraries/messages.inc.php:938 +#: libraries/messages.inc.php:934 msgid "The number of fsync() writes done to the log file." msgstr "The number of fsyncs writes done to the log file." -#: libraries/messages.inc.php:939 +#: libraries/messages.inc.php:935 msgid "The number of pending log file fsyncs." msgstr "The number of pending log file fsyncs." -#: libraries/messages.inc.php:940 +#: libraries/messages.inc.php:936 msgid "Pending log file writes." msgstr "Pending log file writes." -#: libraries/messages.inc.php:941 +#: libraries/messages.inc.php:937 msgid "The number of bytes written to the log file." msgstr "The number of bytes written to the log file." -#: libraries/messages.inc.php:942 +#: libraries/messages.inc.php:938 msgid "The number of pages created." msgstr "The number of pages created." -#: libraries/messages.inc.php:943 +#: libraries/messages.inc.php:939 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -5604,51 +5604,51 @@ msgstr "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." -#: libraries/messages.inc.php:944 +#: libraries/messages.inc.php:940 msgid "The number of pages read." msgstr "කියවන ලද පිටු ගණන." -#: libraries/messages.inc.php:945 +#: libraries/messages.inc.php:941 msgid "The number of pages written." msgstr "ලියන ලද පිටු ගණන." -#: libraries/messages.inc.php:946 +#: libraries/messages.inc.php:942 msgid "The number of row locks currently being waited for." msgstr "The number of row locks currently being waited for." -#: libraries/messages.inc.php:947 +#: libraries/messages.inc.php:943 msgid "The average time to acquire a row lock, in milliseconds." msgstr "The average time to acquire a row lock, in milliseconds." -#: libraries/messages.inc.php:948 +#: libraries/messages.inc.php:944 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "The total time spent in acquiring row locks, in milliseconds." -#: libraries/messages.inc.php:949 +#: libraries/messages.inc.php:945 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "The maximum time to acquire a row lock, in milliseconds." -#: libraries/messages.inc.php:950 +#: libraries/messages.inc.php:946 msgid "The number of times a row lock had to be waited for." msgstr "The number of times a row lock had to be waited for." -#: libraries/messages.inc.php:951 +#: libraries/messages.inc.php:947 msgid "The number of rows deleted from InnoDB tables." msgstr "The number of rows deleted from InnoDB tables." -#: libraries/messages.inc.php:952 +#: libraries/messages.inc.php:948 msgid "The number of rows inserted in InnoDB tables." msgstr "The number of rows inserted in InnoDB tables." -#: libraries/messages.inc.php:953 +#: libraries/messages.inc.php:949 msgid "The number of rows read from InnoDB tables." msgstr "The number of rows read from InnoDB tables." -#: libraries/messages.inc.php:954 +#: libraries/messages.inc.php:950 msgid "The number of rows updated in InnoDB tables." msgstr "The number of rows updated in InnoDB tables." -#: libraries/messages.inc.php:955 +#: libraries/messages.inc.php:951 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -5656,7 +5656,7 @@ msgstr "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." -#: libraries/messages.inc.php:956 +#: libraries/messages.inc.php:952 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -5664,7 +5664,7 @@ msgstr "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." -#: libraries/messages.inc.php:957 +#: libraries/messages.inc.php:953 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -5674,11 +5674,11 @@ msgstr "" "that indicates the maximum number of blocks that have ever been in use at " "one time." -#: libraries/messages.inc.php:958 +#: libraries/messages.inc.php:954 msgid "The number of requests to read a key block from the cache." msgstr "The number of requests to read a key block from the cache." -#: libraries/messages.inc.php:959 +#: libraries/messages.inc.php:955 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -5688,15 +5688,15 @@ msgstr "" "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." -#: libraries/messages.inc.php:960 +#: libraries/messages.inc.php:956 msgid "The number of requests to write a key block to the cache." msgstr "The number of requests to write a key block to the cache." -#: libraries/messages.inc.php:961 +#: libraries/messages.inc.php:957 msgid "The number of physical writes of a key block to disk." msgstr "The number of physical writes of a key block to disk." -#: libraries/messages.inc.php:962 +#: libraries/messages.inc.php:958 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -5706,11 +5706,11 @@ msgstr "" "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." -#: libraries/messages.inc.php:963 +#: libraries/messages.inc.php:959 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "The number of rows waiting to be written in INSERT DELAYED queues." -#: libraries/messages.inc.php:964 +#: libraries/messages.inc.php:960 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -5718,35 +5718,35 @@ msgstr "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." -#: libraries/messages.inc.php:965 +#: libraries/messages.inc.php:961 msgid "The number of files that are open." msgstr "The number of files that are open." -#: libraries/messages.inc.php:966 +#: libraries/messages.inc.php:962 msgid "The number of streams that are open (used mainly for logging)." msgstr "The number of streams that are open (used mainly for logging)." -#: libraries/messages.inc.php:967 +#: libraries/messages.inc.php:963 msgid "The number of tables that are open." msgstr "The number of tables that are open." -#: libraries/messages.inc.php:968 +#: libraries/messages.inc.php:964 msgid "The number of free memory blocks in query cache." msgstr "The number of free memory blocks in query cache." -#: libraries/messages.inc.php:969 +#: libraries/messages.inc.php:965 msgid "The amount of free memory for query cache." msgstr "The amount of free memory for query cache." -#: libraries/messages.inc.php:970 +#: libraries/messages.inc.php:966 msgid "The number of cache hits." msgstr "The number of cache hits." -#: libraries/messages.inc.php:971 +#: libraries/messages.inc.php:967 msgid "The number of queries added to the cache." msgstr "The number of queries added to the cache." -#: libraries/messages.inc.php:972 +#: libraries/messages.inc.php:968 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -5758,7 +5758,7 @@ msgstr "" "cache size. The query cache uses a least recently used (LRU) strategy to " "decide which queries to remove from the cache." -#: libraries/messages.inc.php:973 +#: libraries/messages.inc.php:969 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -5766,24 +5766,24 @@ msgstr "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." -#: libraries/messages.inc.php:974 +#: libraries/messages.inc.php:970 msgid "The number of queries registered in the cache." msgstr "The number of queries registered in the cache." -#: libraries/messages.inc.php:975 +#: libraries/messages.inc.php:971 msgid "The total number of blocks in the query cache." msgstr "The total number of blocks in the query cache." -#: libraries/messages.inc.php:976 +#: libraries/messages.inc.php:972 msgctxt "$strShowStatusReset" msgid "Reset" msgstr "Reset" -#: libraries/messages.inc.php:977 +#: libraries/messages.inc.php:973 msgid "The status of failsafe replication (not yet implemented)." msgstr "The status of failsafe replication (not yet implemented)." -#: libraries/messages.inc.php:978 +#: libraries/messages.inc.php:974 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -5791,11 +5791,11 @@ msgstr "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." -#: libraries/messages.inc.php:979 +#: libraries/messages.inc.php:975 msgid "The number of joins that used a range search on a reference table." msgstr "The number of joins that used a range search on a reference table." -#: libraries/messages.inc.php:980 +#: libraries/messages.inc.php:976 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -5803,7 +5803,7 @@ msgstr "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" -#: libraries/messages.inc.php:981 +#: libraries/messages.inc.php:977 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -5811,15 +5811,15 @@ msgstr "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" -#: libraries/messages.inc.php:982 +#: libraries/messages.inc.php:978 msgid "The number of joins that did a full scan of the first table." msgstr "The number of joins that did a full scan of the first table." -#: libraries/messages.inc.php:983 +#: libraries/messages.inc.php:979 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "The number of temporary tables currently open by the slave SQL thread." -#: libraries/messages.inc.php:984 +#: libraries/messages.inc.php:980 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -5827,11 +5827,11 @@ msgstr "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." -#: libraries/messages.inc.php:985 +#: libraries/messages.inc.php:981 msgid "This is ON if this server is a slave that is connected to a master." msgstr "This is ON if this server is a slave that is connected to a master." -#: libraries/messages.inc.php:986 +#: libraries/messages.inc.php:982 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -5839,13 +5839,13 @@ msgstr "" "The number of threads that have taken more than slow_launch_time seconds to " "create." -#: libraries/messages.inc.php:987 +#: libraries/messages.inc.php:983 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "The number of queries that have taken more than long_query_time seconds." -#: libraries/messages.inc.php:988 +#: libraries/messages.inc.php:984 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -5855,23 +5855,23 @@ msgstr "" "is large, you should consider increasing the value of the sort_buffer_size " "system variable." -#: libraries/messages.inc.php:989 +#: libraries/messages.inc.php:985 msgid "The number of sorts that were done with ranges." msgstr "The number of sorts that were done with ranges." -#: libraries/messages.inc.php:990 +#: libraries/messages.inc.php:986 msgid "The number of sorted rows." msgstr "The number of sorted rows." -#: libraries/messages.inc.php:991 +#: libraries/messages.inc.php:987 msgid "The number of sorts that were done by scanning the table." msgstr "The number of sorts that were done by scanning the table." -#: libraries/messages.inc.php:992 +#: libraries/messages.inc.php:988 msgid "The number of times that a table lock was acquired immediately." msgstr "The number of times that a table lock was acquired immediately." -#: libraries/messages.inc.php:993 +#: libraries/messages.inc.php:989 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -5883,7 +5883,7 @@ msgstr "" "should first optimize your queries, and then either split your table or " "tables or use replication." -#: libraries/messages.inc.php:994 +#: libraries/messages.inc.php:990 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -5893,11 +5893,11 @@ msgstr "" "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." -#: libraries/messages.inc.php:995 +#: libraries/messages.inc.php:991 msgid "The number of currently open connections." msgstr "The number of currently open connections." -#: libraries/messages.inc.php:996 +#: libraries/messages.inc.php:992 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -5909,74 +5909,74 @@ msgstr "" "doesn't give a notable performance improvement if you have a good thread " "implementation.)" -#: libraries/messages.inc.php:997 +#: libraries/messages.inc.php:993 msgid "The number of threads that are not sleeping." msgstr "The number of threads that are not sleeping." -#: libraries/messages.inc.php:999 tbl_printview.php:75 +#: libraries/messages.inc.php:995 tbl_printview.php:75 msgid "Show tables" msgstr "වගු පෙන්වන්න" -#: libraries/messages.inc.php:1000 libraries/sql_query_form.lib.php:396 +#: libraries/messages.inc.php:996 libraries/sql_query_form.lib.php:396 msgid " Show this query here again " msgstr "මෙම විමසුම මෙහි නැවත පෙන්වන්න " -#: libraries/messages.inc.php:1001 libraries/mysql_charsets.lib.php:217 +#: libraries/messages.inc.php:997 libraries/mysql_charsets.lib.php:217 #: libraries/mysql_charsets.lib.php:342 msgid "Simplified Chinese" msgstr "සරලකරන ලද චීන" -#: libraries/messages.inc.php:1002 tbl_operations.php:258 +#: libraries/messages.inc.php:998 tbl_operations.php:258 msgid "(singly)" msgstr "(singly)" -#: libraries/messages.inc.php:1005 libraries/replication_gui.lib.php:52 +#: libraries/messages.inc.php:1001 libraries/replication_gui.lib.php:52 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" msgstr "" -#: libraries/messages.inc.php:1006 libraries/mysql_charsets.lib.php:283 +#: libraries/messages.inc.php:1002 libraries/mysql_charsets.lib.php:283 msgid "Slovak" msgstr "ස්ලෝවැකි" -#: libraries/messages.inc.php:1007 libraries/mysql_charsets.lib.php:286 +#: libraries/messages.inc.php:1003 libraries/mysql_charsets.lib.php:286 msgid "Slovenian" msgstr "ස්ලෝවේනියානු" -#: libraries/messages.inc.php:1008 pmd_general.php:95 +#: libraries/messages.inc.php:1004 pmd_general.php:95 msgid "Small/Big All" msgstr "" -#: libraries/messages.inc.php:1009 pmd_general.php:91 +#: libraries/messages.inc.php:1005 pmd_general.php:91 msgid "Snap to grid" msgstr "" -#: libraries/messages.inc.php:1011 server_synchronize.php:1167 +#: libraries/messages.inc.php:1007 server_synchronize.php:1167 msgid "Socket" msgstr "" -#: libraries/messages.inc.php:1013 server_status.php:259 +#: libraries/messages.inc.php:1009 server_status.php:259 msgid "Sorting" msgstr "තේරීම" -#: libraries/messages.inc.php:1015 tbl_printview.php:310 tbl_structure.php:657 +#: libraries/messages.inc.php:1011 tbl_printview.php:310 tbl_structure.php:657 msgid "Space usage" msgstr "අවකාශ භාවිතය" -#: libraries/messages.inc.php:1016 libraries/mysql_charsets.lib.php:289 +#: libraries/messages.inc.php:1012 libraries/mysql_charsets.lib.php:289 msgid "Spanish" msgstr "ස්පාඤ්ඤ" -#: libraries/messages.inc.php:1019 +#: libraries/messages.inc.php:1015 msgid "Export type" msgstr "අපනයන වර්ගය" -#: libraries/messages.inc.php:1020 +#: libraries/messages.inc.php:1016 msgid "Export time in UTC" msgstr "" -#: libraries/messages.inc.php:1021 libraries/sqlparser.lib.php:173 +#: libraries/messages.inc.php:1017 libraries/sqlparser.lib.php:173 msgid "" "There is a chance that you may have found a bug in the SQL parser. Please " "examine your query closely, and check that the quotes are correct and not " @@ -5998,7 +5998,7 @@ msgstr "" "please reduce your SQL query input to the single query that causes problems, " "and submit a bug report with the data chunk in the CUT section below:" -#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:137 +#: libraries/messages.inc.php:1018 libraries/sqlparser.lib.php:137 msgid "" "There seems to be an error in your SQL query. The MySQL server error output " "below, if there is any, may also help you in diagnosing the problem" @@ -6006,33 +6006,33 @@ msgstr "" "There seems to be an error in your SQL query. The MySQL server error output " "below, if there is any, may also help you in diagnosing the problem" -#: libraries/messages.inc.php:1026 libraries/sqlparser.lib.php:495 +#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:495 msgid "Invalid Identifer" msgstr "වලංගු නොවන හඳුන්වනය" -#: libraries/messages.inc.php:1027 libraries/sqlparser.lib.php:344 +#: libraries/messages.inc.php:1023 libraries/sqlparser.lib.php:344 msgid "Unclosed quote" msgstr "නොවසන ලද උද්ධරනය" -#: libraries/messages.inc.php:1028 libraries/sqlparser.lib.php:612 +#: libraries/messages.inc.php:1024 libraries/sqlparser.lib.php:612 msgid "Unknown Punctuation String" msgstr "නොදන්නා විරාම අකුරු වැල" -#: libraries/messages.inc.php:1030 server_replication.php:327 +#: libraries/messages.inc.php:1026 server_replication.php:327 #: server_replication.php:328 #, fuzzy msgid "Start" msgstr "සෙනසුරාදා" -#: libraries/messages.inc.php:1033 tbl_printview.php:369 tbl_structure.php:729 +#: libraries/messages.inc.php:1029 tbl_printview.php:369 tbl_structure.php:729 msgid "Statements" msgstr "ප්‍රකාශය" -#: libraries/messages.inc.php:1034 tbl_printview.php:380 tbl_structure.php:741 +#: libraries/messages.inc.php:1030 tbl_printview.php:380 tbl_structure.php:741 msgid "static" msgstr "" -#: libraries/messages.inc.php:1035 server_status.php:388 +#: libraries/messages.inc.php:1031 server_status.php:388 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -6040,204 +6040,204 @@ msgstr "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." -#: libraries/messages.inc.php:1038 server_replication.php:327 +#: libraries/messages.inc.php:1034 server_replication.php:327 #: server_replication.php:328 msgid "Stop" msgstr "" -#: libraries/messages.inc.php:1039 server_engines.php:49 +#: libraries/messages.inc.php:1035 server_engines.php:49 msgid "Storage Engines" msgstr "ගබඩා යන්ත්‍ර" -#: libraries/messages.inc.php:1040 libraries/tbl_properties.inc.php:726 +#: libraries/messages.inc.php:1036 libraries/tbl_properties.inc.php:726 #: server_engines.php:58 tbl_operations.php:353 msgid "Storage Engine" msgstr "ගබඩා යන්ත්‍ර‍" -#: libraries/messages.inc.php:1042 +#: libraries/messages.inc.php:1038 msgid "CSV for MS Excel" msgstr "MS එක්සෙල් සඳහා CSV " -#: libraries/messages.inc.php:1044 tbl_structure.php:516 tbl_structure.php:518 +#: libraries/messages.inc.php:1040 tbl_structure.php:516 tbl_structure.php:518 msgid "Propose table structure" msgstr "Propose table structure" -#: libraries/messages.inc.php:1045 server_synchronize.php:424 +#: libraries/messages.inc.php:1041 server_synchronize.php:424 #: server_synchronize.php:867 #, fuzzy msgid "Structure Difference" msgstr "Structure only" -#: libraries/messages.inc.php:1049 server_synchronize.php:265 +#: libraries/messages.inc.php:1045 server_synchronize.php:265 msgid "Structure Synchronization" msgstr "" -#: libraries/messages.inc.php:1050 libraries/sql_query_form.lib.php:462 +#: libraries/messages.inc.php:1046 libraries/sql_query_form.lib.php:462 msgid "Submit" msgstr "ඉදිරිපත් කරන්න" -#: libraries/messages.inc.php:1052 main.php:358 +#: libraries/messages.inc.php:1048 main.php:358 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " "issues." msgstr "" -#: libraries/messages.inc.php:1054 libraries/mysql_charsets.lib.php:295 +#: libraries/messages.inc.php:1050 libraries/mysql_charsets.lib.php:295 #: libraries/mysql_charsets.lib.php:392 msgid "Swedish" msgstr "ස්වීඩීනියානු" -#: libraries/messages.inc.php:1060 tbl_operations.php:556 +#: libraries/messages.inc.php:1056 tbl_operations.php:556 msgid "Switch to copied table" msgstr "Switch to copied table" -#: libraries/messages.inc.php:1061 server_synchronize.php:1213 +#: libraries/messages.inc.php:1057 server_synchronize.php:1213 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." msgstr "" -#: libraries/messages.inc.php:1062 server_synchronize.php:451 +#: libraries/messages.inc.php:1058 server_synchronize.php:451 #: server_synchronize.php:896 msgid "Synchronize Databases" msgstr "" -#: libraries/messages.inc.php:1063 libraries/server_links.inc.php:92 +#: libraries/messages.inc.php:1059 libraries/server_links.inc.php:92 #: server_synchronize.php:1092 server_synchronize.php:1100 msgid "Synchronize" msgstr "" -#: libraries/messages.inc.php:1065 server_synchronize.php:430 +#: libraries/messages.inc.php:1061 server_synchronize.php:430 #: server_synchronize.php:873 msgid "Add column(s)" msgstr "" -#: libraries/messages.inc.php:1066 tbl_create.php:62 +#: libraries/messages.inc.php:1062 tbl_create.php:62 #, php-format msgid "Table %s already exists!" msgstr " %s වගුව දැනටමත් පවතී!" -#: libraries/messages.inc.php:1067 server_synchronize.php:432 +#: libraries/messages.inc.php:1063 server_synchronize.php:432 #: server_synchronize.php:875 msgid "Alter column(s)" msgstr "" -#: libraries/messages.inc.php:1068 tbl_addfield.php:189 tbl_alter.php:103 +#: libraries/messages.inc.php:1064 tbl_addfield.php:189 tbl_alter.php:103 #: tbl_indexes.php:98 #, fuzzy, php-format msgid "Table %1$s has been altered successfully" msgstr "The selected users have been deleted successfully." -#: libraries/messages.inc.php:1069 server_synchronize.php:434 +#: libraries/messages.inc.php:1065 server_synchronize.php:434 #: server_synchronize.php:877 msgid "Apply index(s)" msgstr "" -#: libraries/messages.inc.php:1071 server_synchronize.php:446 +#: libraries/messages.inc.php:1067 server_synchronize.php:446 #: server_synchronize.php:890 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: libraries/messages.inc.php:1072 tbl_move_copy.php:82 +#: libraries/messages.inc.php:1068 tbl_move_copy.php:82 msgid "The table name is empty!" msgstr "වගුවෙහි නම හිස්ව ඇත!" -#: libraries/messages.inc.php:1073 tbl_create.php:249 +#: libraries/messages.inc.php:1069 tbl_create.php:249 #, fuzzy, php-format msgid "Table %1$s has been created." msgstr "%s වගුව හලන ලදි" -#: libraries/messages.inc.php:1076 tbl_operations.php:628 +#: libraries/messages.inc.php:1072 tbl_operations.php:628 #, php-format msgid "Table %s has been flushed" msgstr "Table %s has been flushed" -#: libraries/messages.inc.php:1077 server_synchronize.php:436 +#: libraries/messages.inc.php:1073 server_synchronize.php:436 #: server_synchronize.php:879 msgid "Insert row(s)" msgstr "" -#: libraries/messages.inc.php:1078 libraries/tbl_links.inc.php:107 +#: libraries/messages.inc.php:1074 libraries/tbl_links.inc.php:107 #: libraries/tbl_links.inc.php:140 libraries/tbl_links.inc.php:141 msgid "Table seems to be empty!" msgstr "" -#: libraries/messages.inc.php:1079 tbl_operations.php:568 +#: libraries/messages.inc.php:1075 tbl_operations.php:568 msgid "Table maintenance" msgstr "වගු නඩත්තුව" -#: libraries/messages.inc.php:1080 libraries/tbl_properties.inc.php:618 +#: libraries/messages.inc.php:1076 libraries/tbl_properties.inc.php:618 #: server_synchronize.php:428 server_synchronize.php:871 #, fuzzy msgid "Table name" msgstr "වගුවේ නම" -#: libraries/messages.inc.php:1081 pdf_schema.php:1116 +#: libraries/messages.inc.php:1077 pdf_schema.php:1116 msgid "Table of contents" msgstr "පටුන" -#: libraries/messages.inc.php:1082 tbl_operations.php:334 +#: libraries/messages.inc.php:1078 tbl_operations.php:334 msgid "Table options" msgstr "වගු විකල්ප" -#: libraries/messages.inc.php:1083 server_synchronize.php:431 +#: libraries/messages.inc.php:1079 server_synchronize.php:431 #: server_synchronize.php:874 msgid "Remove column(s)" msgstr "" -#: libraries/messages.inc.php:1084 server_synchronize.php:433 +#: libraries/messages.inc.php:1080 server_synchronize.php:433 #: server_synchronize.php:876 msgid "Remove index(s)" msgstr "" -#: libraries/messages.inc.php:1088 server_synchronize.php:435 +#: libraries/messages.inc.php:1084 server_synchronize.php:435 #: server_synchronize.php:878 msgid "Update row(s)" msgstr "" -#: libraries/messages.inc.php:1090 server_synchronize.php:942 +#: libraries/messages.inc.php:1086 server_synchronize.php:942 msgid "Target database has been synchronized with source database" msgstr "" -#: libraries/messages.inc.php:1091 server_privileges.php:392 +#: libraries/messages.inc.php:1087 server_privileges.php:392 #: server_privileges.php:527 server_privileges.php:1679 #: server_privileges.php:1685 msgid "Table-specific privileges" msgstr "Table-specific privileges" -#: libraries/messages.inc.php:1092 server_status.php:254 +#: libraries/messages.inc.php:1088 server_status.php:254 msgid "Temporary data" msgstr "තාවකාලික දත්ත" -#: libraries/messages.inc.php:1093 tbl_change.php:728 +#: libraries/messages.inc.php:1089 tbl_change.php:728 msgid " Because of its length,
this field might not be editable " msgstr " Because of its length,
this field might not be editable " -#: libraries/messages.inc.php:1094 +#: libraries/messages.inc.php:1090 msgid "Texy! text" msgstr "" -#: libraries/messages.inc.php:1095 libraries/mysql_charsets.lib.php:298 +#: libraries/messages.inc.php:1091 libraries/mysql_charsets.lib.php:298 #: libraries/mysql_charsets.lib.php:395 msgid "Thai" msgstr "තායි" -#: libraries/messages.inc.php:1102 libraries/replication_gui.lib.php:308 +#: libraries/messages.inc.php:1098 libraries/replication_gui.lib.php:308 #: server_privileges.php:734 msgid "This Host" msgstr "this host" -#: libraries/messages.inc.php:1103 server_status.php:252 +#: libraries/messages.inc.php:1099 server_status.php:252 msgid "Threads" msgstr "ත්‍රෙඩයන්" -#: libraries/messages.inc.php:1104 server_processlist.php:22 +#: libraries/messages.inc.php:1100 server_processlist.php:22 #, php-format msgid "Thread %s was successfully killed." msgstr "Thread %s was successfully killed." -#: libraries/messages.inc.php:1106 +#: libraries/messages.inc.php:1102 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -6245,185 +6245,185 @@ msgstr "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." -#: libraries/messages.inc.php:1109 pmd_pdf.php:94 +#: libraries/messages.inc.php:1105 pmd_pdf.php:94 msgid "to/from page" msgstr "" -#: libraries/messages.inc.php:1110 pdf_pages.php:343 +#: libraries/messages.inc.php:1106 pdf_pages.php:343 msgid "Toggle scratchboard" msgstr "Toggle scratchboard" -#: libraries/messages.inc.php:1111 pmd_general.php:99 +#: libraries/messages.inc.php:1107 pmd_general.php:99 msgid "Toggle small/big" msgstr "" -#: libraries/messages.inc.php:1112 pmd_help.php:27 +#: libraries/messages.inc.php:1108 pmd_help.php:27 msgid "To select relation, click :" msgstr "" -#: libraries/messages.inc.php:1115 libraries/tbl_links.inc.php:149 +#: libraries/messages.inc.php:1111 libraries/tbl_links.inc.php:149 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" -#: libraries/messages.inc.php:1116 tbl_tracking.php:655 +#: libraries/messages.inc.php:1112 tbl_tracking.php:655 msgid "Activate now" msgstr "" -#: libraries/messages.inc.php:1117 tbl_tracking.php:653 +#: libraries/messages.inc.php:1113 tbl_tracking.php:653 #, php-format msgid "Activate tracking for %s.%s" msgstr "" -#: libraries/messages.inc.php:1118 tbl_tracking.php:221 +#: libraries/messages.inc.php:1114 tbl_tracking.php:221 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/messages.inc.php:1119 tbl_tracking.php:688 +#: libraries/messages.inc.php:1115 tbl_tracking.php:688 #, fuzzy msgid "Create version" msgstr "සර්වරයේ සංස්කරණය" -#: libraries/messages.inc.php:1120 tbl_tracking.php:668 +#: libraries/messages.inc.php:1116 tbl_tracking.php:668 #, php-format msgid "Create version %s of %s.%s" msgstr "" -#: libraries/messages.inc.php:1122 tbl_tracking.php:412 +#: libraries/messages.inc.php:1118 tbl_tracking.php:412 msgid "Data definition statement" msgstr "" -#: libraries/messages.inc.php:1123 tbl_tracking.php:463 +#: libraries/messages.inc.php:1119 tbl_tracking.php:463 msgid "Data manipulation statement" msgstr "" -#: libraries/messages.inc.php:1124 tbl_tracking.php:410 tbl_tracking.php:461 +#: libraries/messages.inc.php:1120 tbl_tracking.php:410 tbl_tracking.php:461 #, fuzzy msgid "Date" msgstr "දත්ත" -#: libraries/messages.inc.php:1125 tbl_tracking.php:642 +#: libraries/messages.inc.php:1121 tbl_tracking.php:642 msgid "Deactivate now" msgstr "" -#: libraries/messages.inc.php:1126 tbl_tracking.php:640 +#: libraries/messages.inc.php:1122 tbl_tracking.php:640 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "" -#: libraries/messages.inc.php:1127 tbl_tracking.php:521 +#: libraries/messages.inc.php:1123 tbl_tracking.php:521 #, fuzzy, php-format msgid "Export as %s" msgstr "අපනයන වර්ගය" -#: libraries/messages.inc.php:1130 tbl_tracking.php:251 tbl_tracking.php:379 +#: libraries/messages.inc.php:1126 tbl_tracking.php:251 tbl_tracking.php:379 msgid "Close" msgstr "" -#: libraries/messages.inc.php:1131 tbl_tracking.php:114 +#: libraries/messages.inc.php:1127 tbl_tracking.php:114 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/messages.inc.php:1133 tbl_tracking.php:397 tbl_tracking.php:504 +#: libraries/messages.inc.php:1129 tbl_tracking.php:397 tbl_tracking.php:504 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "" -#: libraries/messages.inc.php:1134 tbl_tracking.php:561 +#: libraries/messages.inc.php:1130 tbl_tracking.php:561 msgid "Show versions" msgstr "" -#: libraries/messages.inc.php:1135 tbl_tracking.php:507 +#: libraries/messages.inc.php:1131 tbl_tracking.php:507 msgid "SQL dump (file download)" msgstr "" -#: libraries/messages.inc.php:1136 tbl_tracking.php:508 +#: libraries/messages.inc.php:1132 tbl_tracking.php:508 msgid "SQL dump" msgstr "" -#: libraries/messages.inc.php:1137 tbl_tracking.php:213 +#: libraries/messages.inc.php:1133 tbl_tracking.php:213 msgid "SQL statements executed." msgstr "" -#: libraries/messages.inc.php:1138 +#: libraries/messages.inc.php:1134 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/messages.inc.php:1139 tbl_tracking.php:509 +#: libraries/messages.inc.php:1135 tbl_tracking.php:509 msgid "SQL execution" msgstr "" -#: libraries/messages.inc.php:1140 tbl_tracking.php:230 +#: libraries/messages.inc.php:1136 tbl_tracking.php:230 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/messages.inc.php:1141 tbl_tracking.php:381 +#: libraries/messages.inc.php:1137 tbl_tracking.php:381 msgid "Tracking statements" msgstr "" -#: libraries/messages.inc.php:1148 tbl_tracking.php:593 +#: libraries/messages.inc.php:1144 tbl_tracking.php:593 #, fuzzy msgid "Version" msgstr "පර්සියානු" -#: libraries/messages.inc.php:1149 tbl_tracking.php:672 +#: libraries/messages.inc.php:1145 tbl_tracking.php:672 msgid "Track these data definition statements:" msgstr "" -#: libraries/messages.inc.php:1150 tbl_tracking.php:680 +#: libraries/messages.inc.php:1146 tbl_tracking.php:680 msgid "Track these data manipulation statements:" msgstr "" -#: libraries/messages.inc.php:1155 tbl_tracking.php:411 tbl_tracking.php:462 +#: libraries/messages.inc.php:1151 tbl_tracking.php:411 tbl_tracking.php:462 #, fuzzy msgid "Username" msgstr "භාවිත නාමය:" -#: libraries/messages.inc.php:1156 tbl_tracking.php:203 +#: libraries/messages.inc.php:1152 tbl_tracking.php:203 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "" -#: libraries/messages.inc.php:1157 tbl_tracking.php:187 +#: libraries/messages.inc.php:1153 tbl_tracking.php:187 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "" -#: libraries/messages.inc.php:1158 tbl_tracking.php:195 +#: libraries/messages.inc.php:1154 tbl_tracking.php:195 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "" -#: libraries/messages.inc.php:1159 tbl_tracking.php:262 +#: libraries/messages.inc.php:1155 tbl_tracking.php:262 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/messages.inc.php:1161 tbl_tracking.php:220 +#: libraries/messages.inc.php:1157 tbl_tracking.php:220 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/messages.inc.php:1162 libraries/mysql_charsets.lib.php:219 +#: libraries/messages.inc.php:1158 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:362 msgid "Traditional Chinese" msgstr "සාම්ප්‍රධායික චීන" -#: libraries/messages.inc.php:1163 libraries/mysql_charsets.lib.php:292 +#: libraries/messages.inc.php:1159 libraries/mysql_charsets.lib.php:292 msgid "Traditional Spanish" msgstr "සාම්ප්‍රධායික ස්පාඤ්ඤ" -#: libraries/messages.inc.php:1164 server_status.php:388 +#: libraries/messages.inc.php:1160 server_status.php:388 msgid "Traffic" msgstr "තදබදය" -#: libraries/messages.inc.php:1165 server_status.php:261 +#: libraries/messages.inc.php:1161 server_status.php:261 msgid "Transaction coordinator" msgstr "Transaction coordinator" -#: libraries/messages.inc.php:1166 +#: libraries/messages.inc.php:1162 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 " @@ -6435,7 +6435,7 @@ msgstr "" "of a field which contains the filename. If you use the second option, you " "need to set the first option to the empty string." -#: libraries/messages.inc.php:1167 +#: libraries/messages.inc.php:1163 msgid "" "Displays hexadecimal representation of data. Optional first parameter " "specifies how often space will be added (defaults to 2 nibbles)." @@ -6443,7 +6443,7 @@ msgstr "" "Displays hexadecimal representation of data. Optional first parameter " "specifies how often space will be added (defaults to 2 nibbles)." -#: libraries/messages.inc.php:1168 +#: libraries/messages.inc.php:1164 msgid "" "Displays a clickable thumbnail. The options are the maximum width and height " "in pixels. The original aspect ratio is preserved." @@ -6451,15 +6451,15 @@ msgstr "" "Displays a clickable thumbnail. The options are the maximum width and height " "in pixels. The original aspect ratio is preserved." -#: libraries/messages.inc.php:1169 +#: libraries/messages.inc.php:1165 msgid "Displays a link to download this image." msgstr "Displays a link to download this image." -#: libraries/messages.inc.php:1170 +#: libraries/messages.inc.php:1166 msgid "See image/jpeg: inline" msgstr "See image/jpeg: inline" -#: libraries/messages.inc.php:1171 +#: libraries/messages.inc.php:1167 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 " @@ -6471,63 +6471,63 @@ msgid "" "gmdate() function." msgstr "" +#: libraries/messages.inc.php:1168 +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)." +msgstr "" +"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)." + +#: libraries/messages.inc.php:1169 +msgid "" +"Displays the contents of the field as-is, without running it through " +"htmlspecialchars(). That is, the field is assumed to contain valid HTML." +msgstr "" +"Displays the contents of the field as-is, without running it through " +"htmlspecialchars(). That is, the field is assumed to contain valid HTML." + +#: libraries/messages.inc.php:1170 +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." +msgstr "" +"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." + +#: libraries/messages.inc.php:1171 +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." +msgstr "" +"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." + #: libraries/messages.inc.php:1172 -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)." -msgstr "" -"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)." - -#: libraries/messages.inc.php:1173 -msgid "" -"Displays the contents of the field as-is, without running it through " -"htmlspecialchars(). That is, the field is assumed to contain valid HTML." -msgstr "" -"Displays the contents of the field as-is, without running it through " -"htmlspecialchars(). That is, the field is assumed to contain valid HTML." - -#: libraries/messages.inc.php:1174 -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." -msgstr "" -"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." - -#: libraries/messages.inc.php:1175 -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." -msgstr "" -"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." - -#: libraries/messages.inc.php:1176 msgid "Formats text as SQL query with syntax highlighting." msgstr "Formats text as SQL query with syntax highlighting." -#: libraries/messages.inc.php:1177 +#: libraries/messages.inc.php:1173 msgid "" "Displays a part of a string. The first option is the number of characters to " "skip from the beginning of the string (Default 0). The second option is the " @@ -6541,70 +6541,70 @@ msgstr "" "option is the string to append and/or prepend when truncation occurs " "(Default: \"...\")." -#: libraries/messages.inc.php:1179 server_binlog.php:183 server_binlog.php:186 +#: libraries/messages.inc.php:1175 server_binlog.php:183 server_binlog.php:186 #: server_processlist.php:49 server_processlist.php:51 msgid "Truncate Shown Queries" msgstr "Truncate Shown Queries" -#: libraries/messages.inc.php:1180 libraries/mysql_charsets.lib.php:301 +#: libraries/messages.inc.php:1176 libraries/mysql_charsets.lib.php:301 #: libraries/mysql_charsets.lib.php:389 msgid "Turkish" msgstr "තුර්කියානු" -#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:304 +#: libraries/messages.inc.php:1179 libraries/mysql_charsets.lib.php:304 #: libraries/mysql_charsets.lib.php:386 msgid "Ukrainian" msgstr "යුක්රේනියානු" -#: libraries/messages.inc.php:1185 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:1181 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 msgid "Unicode" msgstr "යුනිකෝඩ්" -#: libraries/messages.inc.php:1187 libraries/mysql_charsets.lib.php:398 +#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:398 #: libraries/mysql_charsets.lib.php:405 msgid "unknown" msgstr "නොදන්නා" -#: libraries/messages.inc.php:1190 server_privileges.php:1152 +#: libraries/messages.inc.php:1186 server_privileges.php:1152 #, php-format msgid "You have updated the privileges for %s." msgstr "You have updated the privileges for %s." -#: libraries/messages.inc.php:1191 user_password.php:112 +#: libraries/messages.inc.php:1187 user_password.php:112 msgid "The profile has been updated." msgstr "The profile has been updated." -#: libraries/messages.inc.php:1193 libraries/relation.lib.php:138 +#: libraries/messages.inc.php:1189 libraries/relation.lib.php:138 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "Please see the documentation on how to update your column_comments table" -#: libraries/messages.inc.php:1194 +#: libraries/messages.inc.php:1190 #, php-format msgid "You should upgrade to %s %s or later." msgstr "You should upgrade to %s %s or later." -#: libraries/messages.inc.php:1204 tbl_printview.php:314 tbl_structure.php:661 +#: libraries/messages.inc.php:1200 tbl_printview.php:314 tbl_structure.php:661 msgid "Usage" msgstr "භාවිතය" -#: libraries/messages.inc.php:1205 +#: libraries/messages.inc.php:1201 msgid "Enclose table and field names with backquotes" msgstr "Enclose table and field names with backquotes" -#: libraries/messages.inc.php:1206 libraries/replication_gui.lib.php:314 +#: libraries/messages.inc.php:1202 libraries/replication_gui.lib.php:314 #: server_privileges.php:740 msgid "Use Host Table" msgstr "දායක වගුව භාවිතා කරන්න" -#: libraries/messages.inc.php:1207 server_privileges.php:848 +#: libraries/messages.inc.php:1203 server_privileges.php:848 #, php-format msgid "The user %s already exists!" msgstr "%s භාවිතා කරන්නා දැනටමත් පවතී!" -#: libraries/messages.inc.php:1209 libraries/replication_gui.lib.php:55 +#: libraries/messages.inc.php:1205 libraries/replication_gui.lib.php:55 #: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245 #: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255 #: server_privileges.php:672 server_privileges.php:675 @@ -6612,36 +6612,36 @@ msgstr "%s භාවිතා කරන්නා දැනටමත් පවත msgid "User name" msgstr "භාවිත නාමය" -#: libraries/messages.inc.php:1210 server_privileges.php:1645 +#: libraries/messages.inc.php:1206 server_privileges.php:1645 msgid "The selected user was not found in the privilege table." msgstr "The selected user was not found in the privilege table." -#: libraries/messages.inc.php:1211 server_privileges.php:1365 +#: libraries/messages.inc.php:1207 server_privileges.php:1365 msgid "User overview" msgstr "User overview" -#: libraries/messages.inc.php:1212 server_privileges.php:1261 +#: libraries/messages.inc.php:1208 server_privileges.php:1261 msgid "The selected users have been deleted successfully." msgstr "The selected users have been deleted successfully." -#: libraries/messages.inc.php:1213 server_privileges.php:2026 +#: libraries/messages.inc.php:1209 server_privileges.php:2026 #, php-format msgid "Users having access to "%s"" msgstr "Users having access to "%s"" -#: libraries/messages.inc.php:1214 main.php:189 server_privileges.php:1350 +#: libraries/messages.inc.php:1210 main.php:189 server_privileges.php:1350 #: server_privileges.php:1497 server_privileges.php:1611 #: server_privileges.php:2029 server_processlist.php:54 msgid "User" msgstr "භාවිතා කරන්නා" -#: libraries/messages.inc.php:1215 tbl_change.php:1171 +#: libraries/messages.inc.php:1211 tbl_change.php:1171 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" -#: libraries/messages.inc.php:1217 libraries/replication_gui.lib.php:251 +#: libraries/messages.inc.php:1213 libraries/replication_gui.lib.php:251 #: libraries/replication_gui.lib.php:319 libraries/replication_gui.lib.php:342 #: server_privileges.php:678 server_privileges.php:745 #: server_privileges.php:769 server_privileges.php:1889 @@ -6649,7 +6649,7 @@ msgstr "" msgid "Use text field" msgstr "Use text field" -#: libraries/messages.inc.php:1221 libraries/sqlvalidator.lib.php:68 +#: libraries/messages.inc.php:1217 libraries/sqlvalidator.lib.php:68 #, php-format msgid "" "The SQL validator could not be initialized. Please check if you have " @@ -6658,88 +6658,88 @@ msgstr "" "The SQL validator could not be initialized. Please check if you have " "installed the necessary PHP extensions as described in the %sdocumentation%s." -#: libraries/messages.inc.php:1222 libraries/replication_gui.lib.php:111 +#: libraries/messages.inc.php:1218 libraries/replication_gui.lib.php:111 #: server_status.php:627 tbl_change.php:324 tbl_printview.php:370 #: tbl_select.php:139 tbl_structure.php:730 msgid "Value" msgstr "Value" -#: libraries/messages.inc.php:1223 libraries/replication_gui.lib.php:110 +#: libraries/messages.inc.php:1219 libraries/replication_gui.lib.php:110 #: libraries/sql_query_form.lib.php:445 server_status.php:626 #: server_variables.php:52 msgid "Variable" msgstr "Variable" -#: libraries/messages.inc.php:1225 server_export.php:21 +#: libraries/messages.inc.php:1221 server_export.php:21 msgid "View dump (schema) of databases" msgstr "View dump (schema) of databases" -#: libraries/messages.inc.php:1227 tbl_export.php:23 +#: libraries/messages.inc.php:1223 tbl_export.php:23 msgid "View dump (schema) of table" msgstr "View dump (schema) of table" -#: libraries/messages.inc.php:1231 view_create.php:142 +#: libraries/messages.inc.php:1227 view_create.php:142 msgid "VIEW name" msgstr "" -#: libraries/messages.inc.php:1237 main.php:205 +#: libraries/messages.inc.php:1233 main.php:205 msgid "Web server" msgstr "" -#: libraries/messages.inc.php:1239 libraries/mysql_charsets.lib.php:277 +#: libraries/messages.inc.php:1235 libraries/mysql_charsets.lib.php:277 #: libraries/mysql_charsets.lib.php:325 msgid "West European" msgstr "බටහිර යුරෝපියානු" -#: libraries/messages.inc.php:1240 main.php:230 +#: libraries/messages.inc.php:1236 main.php:230 msgid "Wiki" msgstr "" -#: libraries/messages.inc.php:1241 server_privileges.php:2138 +#: libraries/messages.inc.php:1237 server_privileges.php:2138 msgid "wildcard" msgstr "wildcard" -#: libraries/messages.inc.php:1248 +#: libraries/messages.inc.php:1244 #, fuzzy msgid "Export contents" msgstr "අපනයන වර්ගය" -#: libraries/messages.inc.php:1249 +#: libraries/messages.inc.php:1245 msgid "Export functions" msgstr "" -#: libraries/messages.inc.php:1250 +#: libraries/messages.inc.php:1246 msgid "Export procedures" msgstr "" -#: libraries/messages.inc.php:1251 +#: libraries/messages.inc.php:1247 msgid "Export Structure Schemas (recommended)" msgstr "" -#: libraries/messages.inc.php:1252 +#: libraries/messages.inc.php:1248 #, fuzzy msgid "Export tables" msgstr "අපනයන වර්ගය" -#: libraries/messages.inc.php:1253 +#: libraries/messages.inc.php:1249 #, fuzzy msgid "Export triggers" msgstr "අපනයන වර්ගය" -#: libraries/messages.inc.php:1254 +#: libraries/messages.inc.php:1250 #, fuzzy msgid "Export views" msgstr "අපනයන වර්ගය" -#: libraries/messages.inc.php:1255 +#: libraries/messages.inc.php:1251 msgid "XML" msgstr "XML" -#: libraries/messages.inc.php:1259 server_privileges.php:592 +#: libraries/messages.inc.php:1255 server_privileges.php:592 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "සටහන: මෙම විකල්පය 0 (බිංදුවට) පත් කිරීම මගින්සීමා ඉවත් වනු ලැ‍‍බේ." -#: libraries/messages.inc.php:1260 +#: libraries/messages.inc.php:1256 msgid "\"zipped\"" msgstr "\"සිප්ගත කරන ලද\"" diff --git a/po/sk.po b/po/sk.po index 4363b6ed2..579a938b6 100644 --- 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-05-13 11:25+0200\n" +"POT-Creation-Date: 2010-05-13 11:30+0200\n" "PO-Revision-Date: 2010-03-30 23:47+0200\n" "Last-Translator: Michal \n" "Language-Team: slovak \n" @@ -15,19 +15,19 @@ msgstr "" "X-Generator: Pootle 2.0.1\n" #: browse_foreigners.php:38 browse_foreigners.php:59 -#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:870 +#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:866 #: server_privileges.php:1475 msgid "Show all" msgstr "Zobraziť všetko" #: browse_foreigners.php:82 db_operations.php:648 -#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:394 -#: libraries/export/pdf.php:147 libraries/messages.inc.php:597 +#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394 +#: libraries/export/pdf.php:147 libraries/messages.inc.php:593 #: pdf_schema.php:283 pdf_schema.php:1123 pdf_schema.php:1139 msgid "Page number:" msgstr "Číslo stránky:" -#: browse_foreigners.php:132 libraries/messages.inc.php:1242 +#: browse_foreigners.php:132 libraries/messages.inc.php:1238 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -40,7 +40,7 @@ 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/db_links.inc.php:75 -#: libraries/messages.inc.php:841 libraries/tbl_links.inc.php:63 +#: libraries/messages.inc.php:837 libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Hľadať" @@ -49,12 +49,12 @@ msgstr "Hľadať" #: db_search.php:362 db_structure.php:567 js/messages.php:48 #: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2267 +#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 #: 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 #: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614 -#: libraries/messages.inc.php:361 libraries/replication_gui.lib.php:73 +#: libraries/messages.inc.php:357 libraries/replication_gui.lib.php:73 #: libraries/replication_gui.lib.php:365 libraries/select_server.lib.php:104 #: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477 #: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782 @@ -74,33 +74,33 @@ msgid "Go" msgstr "Vykonaj" #: browse_foreigners.php:168 browse_foreigners.php:172 -#: libraries/Index.class.php:442 libraries/messages.inc.php:459 +#: libraries/Index.class.php:442 libraries/messages.inc.php:455 #: tbl_tracking.php:320 msgid "Keyname" msgstr "Kľúčový názov" #: browse_foreigners.php:169 browse_foreigners.php:171 -#: libraries/messages.inc.php:252 server_collations.php:55 +#: libraries/messages.inc.php:248 server_collations.php:55 #: server_collations.php:67 server_engines.php:59 server_status.php:628 msgid "Description" msgstr "Popis" #: browse_foreigners.php:247 browse_foreigners.php:256 #: browse_foreigners.php:268 browse_foreigners.php:276 -#: libraries/messages.inc.php:1218 +#: libraries/messages.inc.php:1214 msgid "Use this value" msgstr "Použiť túto hodnotu" -#: db_create.php:46 libraries/messages.inc.php:215 +#: db_create.php:46 libraries/messages.inc.php:211 #, php-format msgid "Database %1$s has been created." msgstr "Databáza %1$s bola vytvorená." -#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:232 +#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:228 msgid "Database comment: " msgstr "Komentár k databáze: " -#: db_datadict.php:165 libraries/messages.inc.php:1070 +#: db_datadict.php:165 libraries/messages.inc.php:1066 #: libraries/tbl_properties.inc.php:724 pdf_schema.php:1236 #: tbl_operations.php:345 tbl_printview.php:130 msgid "Table comments" @@ -109,7 +109,7 @@ msgstr "Komentár k tabuľke" #: db_datadict.php:174 db_qbe.php:174 libraries/Index.class.php:446 #: libraries/export/htmlword.php:244 libraries/export/latex.php:360 #: libraries/export/odt.php:294 libraries/export/texytext.php:233 -#: libraries/messages.inc.php:317 libraries/tbl_properties.inc.php:99 +#: libraries/messages.inc.php:313 libraries/tbl_properties.inc.php:99 #: libraries/tbl_properties.inc.php:275 pdf_schema.php:1262 #: pdf_schema.php:1283 tbl_change.php:308 tbl_indexes.php:189 #: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135 @@ -121,7 +121,7 @@ msgstr "Pole" #: libraries/db_events.inc.php:31 libraries/db_routines.inc.php:42 #: 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/messages.inc.php:1181 +#: libraries/export/texytext.php:234 libraries/messages.inc.php:1177 #: libraries/tbl_properties.inc.php:100 pdf_schema.php:1263 #: pdf_schema.php:1284 server_privileges.php:2031 tbl_change.php:287 #: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313 @@ -133,7 +133,7 @@ msgstr "Typ" #: db_datadict.php:177 libraries/Index.class.php:449 #: libraries/export/htmlword.php:246 libraries/export/latex.php:360 #: libraries/export/odt.php:300 libraries/export/texytext.php:235 -#: libraries/messages.inc.php:576 libraries/tbl_properties.inc.php:109 +#: libraries/messages.inc.php:572 libraries/tbl_properties.inc.php:109 #: pdf_schema.php:1265 pdf_schema.php:1286 tbl_change.php:323 #: tbl_printview.php:145 tbl_structure.php:181 tbl_tracking.php:276 #: tbl_tracking.php:327 @@ -142,7 +142,7 @@ msgstr "Nulový" #: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 -#: libraries/export/texytext.php:236 libraries/messages.inc.php:238 +#: libraries/export/texytext.php:236 libraries/messages.inc.php:234 #: libraries/tbl_properties.inc.php:106 pdf_schema.php:1266 #: pdf_schema.php:1287 tbl_printview.php:146 tbl_structure.php:182 #: tbl_tracking.php:277 @@ -151,14 +151,14 @@ msgstr "Predvolené" #: db_datadict.php:182 libraries/export/htmlword.php:249 #: libraries/export/latex.php:362 libraries/export/odt.php:307 -#: libraries/export/texytext.php:238 libraries/messages.inc.php:483 +#: libraries/export/texytext.php:238 libraries/messages.inc.php:479 #: pdf_schema.php:1268 pdf_schema.php:1289 tbl_printview.php:150 msgid "Links to" msgstr "Linkovať na" #: db_datadict.php:184 db_printview.php:112 libraries/export/htmlword.php:252 #: libraries/export/latex.php:365 libraries/export/odt.php:312 -#: libraries/export/texytext.php:241 libraries/messages.inc.php:163 +#: libraries/export/texytext.php:241 libraries/messages.inc.php:159 #: libraries/tbl_properties.inc.php:130 pdf_schema.php:1279 #: pdf_schema.php:1290 tbl_printview.php:152 msgid "Comments" @@ -167,7 +167,7 @@ msgstr "Komentáre" #: db_datadict.php:267 libraries/Index.class.php:359 #: 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/messages.inc.php:559 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:555 #: libraries/mult_submits.inc.php:263 pdf_schema.php:1344 #: server_privileges.php:1529 server_privileges.php:1540 #: server_privileges.php:1850 server_privileges.php:1855 @@ -179,7 +179,7 @@ msgstr "Nie" #: db_datadict.php:267 libraries/Index.class.php:360 #: libraries/Index.class.php:385 libraries/export/htmlword.php:322 #: libraries/export/latex.php:430 libraries/export/odt.php:368 -#: libraries/export/texytext.php:311 libraries/messages.inc.php:1257 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:1253 #: libraries/mult_submits.inc.php:45 libraries/mult_submits.inc.php:50 #: libraries/mult_submits.inc.php:55 libraries/mult_submits.inc.php:60 #: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:101 @@ -193,108 +193,108 @@ msgstr "Nie" msgid "Yes" msgstr "Áno" -#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:670 +#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:666 #: tbl_printview.php:498 msgid "Print" msgstr "Vytlačiť" -#: db_export.php:29 libraries/messages.inc.php:1226 +#: db_export.php:29 libraries/messages.inc.php:1222 msgid "View dump (schema) of database" msgstr "Zobraziť dump (schému) databázy" #: db_export.php:33 db_printview.php:96 db_qbe.php:102 db_structure.php:51 -#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:568 +#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:564 #: navigation.php:346 msgid "No tables found in database." msgstr "Neboli nájdené žiadne tabuľky v tejto datábaze." -#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:845 +#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:841 #: server_export.php:27 msgid "Select All" msgstr "Označiť všetko" -#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1188 +#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1184 #: server_export.php:29 msgid "Unselect All" msgstr "Odznačiť všetko" -#: db_operations.php:38 libraries/messages.inc.php:213 tbl_create.php:54 +#: db_operations.php:38 libraries/messages.inc.php:209 tbl_create.php:54 msgid "The database name is empty!" msgstr "Meno databázy je prázdne!" -#: db_operations.php:236 libraries/messages.inc.php:753 +#: db_operations.php:236 libraries/messages.inc.php:749 #, php-format msgid "Database %s has been renamed to %s" msgstr "Databáza %s bola premenovaná na %s" -#: db_operations.php:240 libraries/messages.inc.php:178 +#: db_operations.php:240 libraries/messages.inc.php:174 #, php-format msgid "Database %s has been copied to %s" msgstr "Databáza %s bola skopírovaná na %s" -#: db_operations.php:410 libraries/messages.inc.php:236 +#: db_operations.php:410 libraries/messages.inc.php:232 msgid "Rename database to" msgstr "Premenovať databázu na" -#: db_operations.php:415 libraries/messages.inc.php:161 +#: db_operations.php:415 libraries/messages.inc.php:157 #: server_processlist.php:57 msgid "Command" msgstr "Príkaz" -#: db_operations.php:425 libraries/messages.inc.php:58 tbl_change.php:1143 +#: db_operations.php:425 libraries/messages.inc.php:54 tbl_change.php:1143 msgid "and then" msgstr "a potom" -#: db_operations.php:451 libraries/messages.inc.php:233 +#: db_operations.php:451 libraries/messages.inc.php:229 msgid "Copy database to" msgstr "Skopírovať databázu na" -#: db_operations.php:458 libraries/messages.inc.php:1043 +#: db_operations.php:458 libraries/messages.inc.php:1039 #: tbl_operations.php:526 tbl_tracking.php:388 msgid "Structure only" msgstr "Iba štruktúru" -#: db_operations.php:459 libraries/messages.inc.php:1041 +#: db_operations.php:459 libraries/messages.inc.php:1037 #: tbl_operations.php:527 tbl_tracking.php:390 msgid "Structure and data" msgstr "Štruktúru a dáta" -#: db_operations.php:460 libraries/messages.inc.php:229 tbl_operations.php:528 +#: db_operations.php:460 libraries/messages.inc.php:225 tbl_operations.php:528 #: tbl_tracking.php:389 msgid "Data only" msgstr "Iba dáta" -#: db_operations.php:468 libraries/messages.inc.php:186 +#: db_operations.php:468 libraries/messages.inc.php:182 msgid "CREATE DATABASE before copying" msgstr "Vytvoriť databázu (CREATE DATABASE) pred kopírovaním" #: db_operations.php:471 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 -#: libraries/export/sql.php:82 libraries/messages.inc.php:30 +#: libraries/export/sql.php:82 libraries/messages.inc.php:26 #: tbl_operations.php:534 #, php-format msgid "Add %s" msgstr "Pridať %s" -#: db_operations.php:475 libraries/messages.inc.php:29 tbl_operations.php:297 +#: db_operations.php:475 libraries/messages.inc.php:25 tbl_operations.php:297 #: tbl_operations.php:536 msgid "Add AUTO_INCREMENT value" msgstr "Pridať hodnotu AUTO_INCREMENT" -#: db_operations.php:479 libraries/messages.inc.php:31 tbl_operations.php:543 +#: db_operations.php:479 libraries/messages.inc.php:27 tbl_operations.php:543 msgid "Add constraints" msgstr "Pridať obmedzenia" -#: db_operations.php:492 libraries/messages.inc.php:1059 +#: db_operations.php:492 libraries/messages.inc.php:1055 msgid "Switch to copied database" msgstr "Prepnúť na skopírovanú databázu" -#: db_operations.php:533 libraries/messages.inc.php:89 +#: db_operations.php:533 libraries/messages.inc.php:85 msgid "BLOB Repository" msgstr "" #: db_operations.php:536 db_tracking.php:76 libraries/common.lib.php:1350 -#: libraries/messages.inc.php:1037 libraries/server_links.inc.php:49 +#: libraries/messages.inc.php:1033 libraries/server_links.inc.php:49 #: server_processlist.php:59 tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "Stav" @@ -306,12 +306,12 @@ msgctxt "BLOB repository" msgid "Enabled" msgstr "Zapnuté" -#: db_operations.php:548 libraries/messages.inc.php:93 +#: db_operations.php:548 libraries/messages.inc.php:89 #, fuzzy msgid "Disable" msgstr "Vypnuté" -#: db_operations.php:558 libraries/messages.inc.php:90 +#: db_operations.php:558 libraries/messages.inc.php:86 msgid "Damaged" msgstr "Poškodené" @@ -329,13 +329,13 @@ msgctxt "BLOB repository" msgid "Disabled" msgstr "Vypnuté" -#: db_operations.php:574 libraries/messages.inc.php:96 +#: db_operations.php:574 libraries/messages.inc.php:92 #, fuzzy msgid "Enable" msgstr "Zapnuté" #: db_operations.php:598 libraries/Index.class.php:448 -#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:158 +#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:154 #: 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:361 @@ -344,7 +344,7 @@ msgstr "Zapnuté" msgid "Collation" msgstr "Zotriedenie" -#: db_operations.php:609 libraries/messages.inc.php:742 main.php:316 +#: db_operations.php:609 libraries/messages.inc.php:738 main.php:316 #: pdf_schema.php:34 #, php-format msgid "" @@ -354,58 +354,58 @@ 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:645 libraries/messages.inc.php:264 pdf_pages.php:528 +#: db_operations.php:645 libraries/messages.inc.php:260 pdf_pages.php:528 msgid "Display PDF schema" msgstr "Zobraziť schému PDF" -#: db_operations.php:661 libraries/messages.inc.php:877 pdf_pages.php:529 +#: db_operations.php:661 libraries/messages.inc.php:873 pdf_pages.php:529 msgid "Show grid" msgstr "Zobraziť mriežku" -#: db_operations.php:664 libraries/messages.inc.php:874 pdf_pages.php:530 +#: db_operations.php:664 libraries/messages.inc.php:870 pdf_pages.php:530 msgid "Show color" msgstr "Zobraziť farbu" -#: db_operations.php:666 libraries/messages.inc.php:998 pdf_pages.php:531 +#: db_operations.php:666 libraries/messages.inc.php:994 pdf_pages.php:531 msgid "Show dimension of tables" msgstr "Zobraziť rozmery tabuliek" -#: db_operations.php:669 libraries/messages.inc.php:52 pdf_pages.php:532 +#: db_operations.php:669 libraries/messages.inc.php:48 pdf_pages.php:532 msgid "Display all tables with the same width" msgstr "zobraziť všetky tabuľky s rovnakou šírkou?" -#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:227 +#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:223 #: pdf_pages.php:533 msgid "Data Dictionary" msgstr "Dátový slovník" -#: db_operations.php:674 libraries/messages.inc.php:884 pdf_pages.php:534 +#: db_operations.php:674 libraries/messages.inc.php:880 pdf_pages.php:534 msgid "Only show keys" msgstr "" -#: db_operations.php:676 libraries/messages.inc.php:875 pdf_pages.php:535 +#: db_operations.php:676 libraries/messages.inc.php:871 pdf_pages.php:535 msgid "Data Dictionary Format" msgstr "Formát dátového slovníka" -#: db_operations.php:678 libraries/messages.inc.php:464 pdf_pages.php:537 +#: db_operations.php:678 libraries/messages.inc.php:460 pdf_pages.php:537 msgid "Landscape" msgstr "Na šírku" -#: db_operations.php:679 libraries/messages.inc.php:663 pdf_pages.php:538 +#: db_operations.php:679 libraries/messages.inc.php:659 pdf_pages.php:538 msgid "Portrait" msgstr "Na výšku" -#: db_operations.php:682 libraries/messages.inc.php:599 pdf_pages.php:541 +#: db_operations.php:682 libraries/messages.inc.php:595 pdf_pages.php:541 msgid "Paper size" msgstr "Veľkosť stránky" -#: db_operations.php:706 libraries/messages.inc.php:281 +#: db_operations.php:706 libraries/messages.inc.php:277 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 libraries/messages.inc.php:1087 +#: libraries/header.inc.php:126 libraries/messages.inc.php:1083 #: pdf_pages.php:405 server_privileges.php:1626 server_privileges.php:1682 #: server_privileges.php:1946 server_synchronize.php:423 #: server_synchronize.php:866 tbl_tracking.php:592 test/theme.php:75 @@ -413,176 +413,176 @@ msgid "Table" msgstr "Tabuľka" #: db_printview.php:105 libraries/db_structure.lib.php:56 -#: libraries/messages.inc.php:735 +#: libraries/messages.inc.php:731 msgid "Records" msgstr "Záznamov" #: db_printview.php:109 libraries/db_structure.lib.php:67 -#: libraries/messages.inc.php:1003 tbl_indexes.php:190 +#: libraries/messages.inc.php:999 tbl_indexes.php:190 msgid "Size" msgstr "Veľkosť" #: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 -#: libraries/export/sql.php:899 libraries/messages.inc.php:436 +#: libraries/export/sql.php:899 libraries/messages.inc.php:432 msgid "in use" msgstr "práve sa používa" #: db_printview.php:187 libraries/db_info.inc.php:88 -#: libraries/export/sql.php:514 libraries/messages.inc.php:1032 +#: libraries/export/sql.php:514 libraries/messages.inc.php:1028 #: pdf_schema.php:1241 tbl_printview.php:434 tbl_structure.php:810 msgid "Creation" msgstr "Vytvorenie" #: db_printview.php:196 libraries/db_info.inc.php:93 -#: libraries/export/sql.php:519 libraries/messages.inc.php:1036 +#: libraries/export/sql.php:519 libraries/messages.inc.php:1032 #: pdf_schema.php:1246 tbl_printview.php:444 tbl_structure.php:818 msgid "Last update" msgstr "Posledná zmena" #: db_printview.php:205 libraries/db_info.inc.php:98 -#: libraries/export/sql.php:524 libraries/messages.inc.php:1031 +#: libraries/export/sql.php:524 libraries/messages.inc.php:1027 #: pdf_schema.php:1251 tbl_printview.php:454 tbl_structure.php:826 msgid "Last check" msgstr "Posledná kontrola" -#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1085 +#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1081 #, php-format msgid "%s table(s)" msgstr "%s tabuľka(y)" #: db_qbe.php:29 libraries/display_tbl.lib.php:1981 -#: libraries/messages.inc.php:1051 libraries/sql_query_form.lib.php:140 +#: libraries/messages.inc.php:1047 libraries/sql_query_form.lib.php:140 #: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131 #: view_operations.php:62 msgid "Your SQL query has been executed successfully" msgstr "SQL dopyt bol úspešne vykonaný" -#: db_qbe.php:42 libraries/messages.inc.php:371 +#: db_qbe.php:42 libraries/messages.inc.php:367 msgid "You have to choose at least one column to display" msgstr "Zvolte prosím aspoň jeden stĺpec, ktorý chcete zobraziť" #: db_qbe.php:200 libraries/db_structure.lib.php:104 -#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1014 +#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1010 msgid "Sort" msgstr "Triediť" #: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111 #: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828 -#: libraries/messages.inc.php:69 server_databases.php:170 +#: libraries/messages.inc.php:65 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314 msgid "Ascending" msgstr "Vzostupne" #: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119 #: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825 -#: libraries/messages.inc.php:251 server_databases.php:170 +#: libraries/messages.inc.php:247 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315 msgid "Descending" msgstr "Zostupne" #: db_qbe.php:264 db_tracking.php:78 libraries/display_tbl.lib.php:308 -#: libraries/messages.inc.php:888 tbl_change.php:277 tbl_tracking.php:597 +#: libraries/messages.inc.php:884 tbl_change.php:277 tbl_tracking.php:597 msgid "Show" msgstr "Ukázať" -#: db_qbe.php:300 libraries/messages.inc.php:202 +#: db_qbe.php:300 libraries/messages.inc.php:198 msgid "Criteria" msgstr "Kritéria" #: db_qbe.php:353 db_qbe.php:435 db_qbe.php:527 db_qbe.php:558 -#: libraries/messages.inc.php:718 +#: libraries/messages.inc.php:714 msgid "Ins" msgstr "Vložiť" #: db_qbe.php:357 db_qbe.php:439 db_qbe.php:524 db_qbe.php:555 -#: libraries/messages.inc.php:56 +#: libraries/messages.inc.php:52 msgid "And" msgstr "a" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:529 db_qbe.php:560 -#: libraries/messages.inc.php:717 +#: libraries/messages.inc.php:713 msgid "Del" 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/messages.inc.php:592 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:588 #: libraries/tbl_properties.inc.php:779 server_privileges.php:258 #: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288 msgid "Or" msgstr "alebo" -#: db_qbe.php:507 libraries/messages.inc.php:516 +#: db_qbe.php:507 libraries/messages.inc.php:512 msgid "Modify" msgstr "Zmeniť" -#: db_qbe.php:584 libraries/messages.inc.php:33 +#: db_qbe.php:584 libraries/messages.inc.php:29 msgid "Add/Delete Criteria Row" msgstr "Pridať/Odobrať kritéria riadku" -#: db_qbe.php:596 libraries/messages.inc.php:32 +#: db_qbe.php:596 libraries/messages.inc.php:28 msgid "Add/Delete Field Columns" msgstr "Pridať/Odobrať polia stĺpcov" -#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1192 +#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1188 msgid "Update Query" msgstr "Aktualizovať dopyt" -#: db_qbe.php:617 libraries/messages.inc.php:1216 +#: db_qbe.php:617 libraries/messages.inc.php:1212 msgid "Use Tables" msgstr "Použiť tabuľky" -#: db_qbe.php:640 libraries/messages.inc.php:723 +#: db_qbe.php:640 libraries/messages.inc.php:719 #, php-format msgid "SQL query on database %s:" msgstr " SQL dopyt v databáze %s:" -#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:823 +#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:819 msgid "Submit Query" msgstr "Odošli dopyt" #: db_search.php:68 libraries/auth/config.auth.lib.php:84 #: libraries/auth/config.auth.lib.php:103 #: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52 -#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:26 +#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:22 msgid "Access denied" msgstr "Prístup zamietnutý" -#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:836 +#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:832 msgid "at least one of the words" msgstr "najmenej jedno zo slov" -#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:837 +#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:833 msgid "all words" msgstr "všetky slová" -#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:838 +#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:834 msgid "the exact phrase" msgstr "presný výraz" -#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:839 +#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:835 msgid "as regular expression" msgstr "ako regulárny výraz" -#: db_search.php:242 libraries/messages.inc.php:840 +#: db_search.php:242 libraries/messages.inc.php:836 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Prehľadať výsledky na \"%s\" %s:" -#: db_search.php:260 libraries/messages.inc.php:579 +#: db_search.php:260 libraries/messages.inc.php:575 #, php-format msgid "%s match(es) inside table %s" 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/messages.inc.php:108 +#: db_structure.php:105 libraries/messages.inc.php:104 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468 msgid "Browse" msgstr "Prechádzať" #: db_search.php:272 libraries/display_tbl.lib.php:1165 -#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:243 +#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:239 #: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406 #: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377 #: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216 @@ -590,46 +590,46 @@ msgstr "Prechádzať" msgid "Delete" msgstr "Zmazať" -#: db_search.php:285 libraries/messages.inc.php:580 +#: db_search.php:285 libraries/messages.inc.php:576 #, php-format msgid "Total: %s match(es)" msgstr "Celkovo: %s výskyt(ov)" -#: db_search.php:299 libraries/messages.inc.php:832 +#: db_search.php:299 libraries/messages.inc.php:828 msgid "Search in database" msgstr "Hľadať v databáze" -#: db_search.php:302 libraries/messages.inc.php:835 +#: db_search.php:302 libraries/messages.inc.php:831 msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgstr "" "Slovo(á) alebo hodnotu(y), ktoré chcete vyhľadať (nahradzujúci znak: \"%\"):" -#: db_search.php:307 libraries/messages.inc.php:842 +#: db_search.php:307 libraries/messages.inc.php:838 msgid "Find:" msgstr "Nájdi:" -#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1017 +#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1013 msgid "Words are separated by a space character (\" \")." msgstr "Slová sú rozdelené medzerou (\" \")." -#: db_search.php:325 libraries/messages.inc.php:834 +#: db_search.php:325 libraries/messages.inc.php:830 msgid "Inside table(s):" msgstr "V tabuľke(ách):" -#: db_search.php:355 libraries/messages.inc.php:833 +#: db_search.php:355 libraries/messages.inc.php:829 msgid "Inside field:" 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/messages.inc.php:431 libraries/sql_query_form.lib.php:334 +#: libraries/messages.inc.php:427 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/db_links.inc.php:63 libraries/export/latex.php:337 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:1048 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:1044 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 #: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269 msgid "Structure" @@ -638,8 +638,8 @@ 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:1642 -#: libraries/db_links.inc.php:100 libraries/messages.inc.php:272 +#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/db_links.inc.php:100 libraries/messages.inc.php:268 #: 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 @@ -649,40 +649,40 @@ 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:1641 -#: libraries/messages.inc.php:284 libraries/mult_submits.inc.php:39 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: libraries/messages.inc.php:280 libraries/mult_submits.inc.php:39 #: libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Vyprázdniť" -#: db_structure.php:316 libraries/messages.inc.php:1075 +#: db_structure.php:316 libraries/messages.inc.php:1071 #: libraries/tbl_links.inc.php:100 #, php-format msgid "Table %s has been emptied" msgstr "Tabuľka %s bola vyprázdená" -#: db_structure.php:326 libraries/messages.inc.php:1229 +#: db_structure.php:326 libraries/messages.inc.php:1225 #: 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/messages.inc.php:1074 +#: db_structure.php:326 libraries/messages.inc.php:1070 #: 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 libraries/messages.inc.php:1128 +#: db_structure.php:333 libraries/messages.inc.php:1124 msgid "Tracking is active." msgstr "" -#: db_structure.php:335 libraries/messages.inc.php:1129 +#: db_structure.php:335 libraries/messages.inc.php:1125 msgid "Tracking is not active." msgstr "" #: db_structure.php:420 libraries/display_tbl.lib.php:1944 -#: libraries/messages.inc.php:1228 +#: libraries/messages.inc.php:1224 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -690,83 +690,83 @@ msgid "" msgstr "" #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 -#: libraries/messages.inc.php:1233 libraries/tbl_info.inc.php:66 +#: libraries/messages.inc.php:1229 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/messages.inc.php:773 libraries/server_links.inc.php:70 +#: libraries/messages.inc.php:769 libraries/server_links.inc.php:70 #: server_replication.php:33 server_replication.php:164 server_status.php:258 msgid "Replication" msgstr "Replikácia" -#: db_structure.php:489 libraries/messages.inc.php:1053 +#: db_structure.php:489 libraries/messages.inc.php:1049 msgid "Sum" msgstr "Celkom" #: db_structure.php:496 libraries/StorageEngine.class.php:356 -#: libraries/messages.inc.php:239 +#: libraries/messages.inc.php:235 #, 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 #: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086 -#: libraries/messages.inc.php:1243 libraries/mult_submits.inc.php:16 +#: libraries/messages.inc.php:1239 libraries/mult_submits.inc.php:16 #: server_databases.php:346 server_databases.php:351 #: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465 msgid "With selected:" msgstr "Výber:" #: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: libraries/messages.inc.php:148 server_databases.php:348 +#: libraries/messages.inc.php:144 server_databases.php:348 #: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459 msgid "Check All" msgstr "Označiť všetko" #: db_structure.php:531 libraries/display_tbl.lib.php:2077 -#: libraries/messages.inc.php:1184 libraries/replication_gui.lib.php:33 +#: libraries/messages.inc.php:1180 libraries/replication_gui.lib.php:33 #: server_databases.php:350 server_privileges.php:533 #: server_privileges.php:1564 tbl_structure.php:463 msgid "Uncheck All" msgstr "Odznačiť všetko" -#: db_structure.php:536 libraries/messages.inc.php:150 +#: db_structure.php:536 libraries/messages.inc.php:146 msgid "Check tables having overhead" msgstr "Zvoliť neoptimálne" #: db_structure.php:547 db_structure.php:548 db_structure.php:599 -#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:672 +#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:668 #: libraries/mult_submits.inc.php:28 tbl_structure.php:493 #: tbl_structure.php:495 msgid "Print view" msgstr "Náhľad k tlači" -#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:153 +#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:149 #: libraries/mult_submits.inc.php:42 tbl_operations.php:579 msgid "Check table" msgstr "Skontrolovať tabuľku" -#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:590 +#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:586 #: libraries/mult_submits.inc.php:47 tbl_operations.php:619 #: tbl_structure.php:710 tbl_structure.php:712 msgid "Optimize table" msgstr "Optimalizovať tabuľku" -#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:758 +#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:754 #: libraries/mult_submits.inc.php:52 tbl_operations.php:609 msgid "Repair table" msgstr "Opraviť tabuľku" -#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:55 +#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:51 #: libraries/mult_submits.inc.php:57 tbl_operations.php:599 msgid "Analyze table" msgstr "Analyzovať tabuľku" #: db_structure.php:557 db_structure.php:558 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/messages.inc.php:310 +#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:306 #: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84 #: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109 #: server_privileges.php:1341 setup/frames/menu.inc.php:22 @@ -774,7 +774,7 @@ msgstr "Analyzovať tabuľku" msgid "Export" msgstr "Exportovať" -#: db_tracking.php:66 libraries/messages.inc.php:1151 +#: db_tracking.php:66 libraries/messages.inc.php:1147 msgid "Tracked tables" msgstr "" @@ -782,7 +782,7 @@ msgstr "" #: 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/header_printview.inc.php:58 libraries/messages.inc.php:212 +#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:208 #: navigation.php:233 server_databases.php:169 server_privileges.php:1621 #: server_privileges.php:1682 server_privileges.php:1940 #: server_processlist.php:56 server_synchronize.php:1179 @@ -790,81 +790,81 @@ msgstr "" msgid "Database" msgstr "Databáza" -#: db_tracking.php:73 libraries/messages.inc.php:1146 +#: db_tracking.php:73 libraries/messages.inc.php:1142 msgid "Last version" msgstr "" -#: db_tracking.php:74 libraries/messages.inc.php:1145 tbl_tracking.php:594 +#: db_tracking.php:74 libraries/messages.inc.php:1141 tbl_tracking.php:594 #, fuzzy msgid "Created" msgstr "Vytvoriť" -#: db_tracking.php:75 libraries/messages.inc.php:1147 tbl_tracking.php:595 +#: db_tracking.php:75 libraries/messages.inc.php:1143 tbl_tracking.php:595 msgid "Updated" msgstr "" #: db_tracking.php:77 libraries/Index.class.php:440 -#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:27 +#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:23 #: server_databases.php:203 server_privileges.php:1503 #: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187 msgid "Action" msgstr "Akcia" -#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:247 +#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:243 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:106 libraries/messages.inc.php:1142 tbl_tracking.php:548 +#: db_tracking.php:106 libraries/messages.inc.php:1138 tbl_tracking.php:548 #: tbl_tracking.php:606 tbl_tracking.php:613 msgid "active" msgstr "" -#: db_tracking.php:108 libraries/messages.inc.php:1143 tbl_tracking.php:550 +#: db_tracking.php:108 libraries/messages.inc.php:1139 tbl_tracking.php:550 #: tbl_tracking.php:608 tbl_tracking.php:610 msgid "not active" msgstr "" -#: db_tracking.php:121 libraries/messages.inc.php:1160 +#: db_tracking.php:121 libraries/messages.inc.php:1156 #, fuzzy msgid "Versions" msgstr "Perština" -#: db_tracking.php:122 libraries/messages.inc.php:1132 tbl_tracking.php:379 +#: db_tracking.php:122 libraries/messages.inc.php:1128 tbl_tracking.php:379 #: tbl_tracking.php:624 msgid "Tracking report" msgstr "" -#: db_tracking.php:123 libraries/messages.inc.php:1144 tbl_tracking.php:251 +#: db_tracking.php:123 libraries/messages.inc.php:1140 tbl_tracking.php:251 #: tbl_tracking.php:624 #, fuzzy msgid "Structure snapshot" msgstr "Iba štruktúru" -#: db_tracking.php:152 libraries/messages.inc.php:1154 +#: db_tracking.php:152 libraries/messages.inc.php:1150 msgid "Untracked tables" msgstr "" -#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1153 +#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1149 #: tbl_structure.php:529 tbl_structure.php:531 #, fuzzy msgid "Track table" msgstr "Skontrolovať tabuľku" -#: db_tracking.php:200 libraries/messages.inc.php:1121 +#: db_tracking.php:200 libraries/messages.inc.php:1117 #, fuzzy msgid "Database Log" msgstr "Databáza" -#: export.php:62 libraries/messages.inc.php:312 +#: export.php:62 libraries/messages.inc.php:308 msgid "Selected export type has to be saved in file!" msgstr "Vybraný typ exportu musí byť uložený do súboru!" -#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:567 +#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:563 #, php-format msgid "Insufficient space to save the file %s." msgstr "Nedostatok miesta pre uloženie súboru %s." -#: export.php:294 libraries/messages.inc.php:324 +#: export.php:294 libraries/messages.inc.php:320 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -872,17 +872,17 @@ msgstr "" "Súbor %s už existuje na servery, zmente názov súboru alebo zvolte prepísanie " "súboru." -#: export.php:298 export.php:302 libraries/messages.inc.php:562 +#: export.php:298 export.php:302 libraries/messages.inc.php:558 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Web server nemá oprávenia na uloženie do súboru %s." -#: export.php:629 libraries/messages.inc.php:276 +#: export.php:629 libraries/messages.inc.php:272 #, php-format msgid "Dump has been saved to file %s." msgstr "Dump (schéma) bol uložený do súboru %s." -#: import.php:60 libraries/messages.inc.php:1202 +#: import.php:60 libraries/messages.inc.php:1198 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation%" @@ -892,14 +892,14 @@ msgstr "" "prosím %sdokumentáciu%s, ako sa dá toto obmedzenie obísť." #: import.php:279 import.php:332 libraries/File.class.php:849 -#: libraries/File.class.php:961 libraries/messages.inc.php:325 +#: libraries/File.class.php:961 libraries/messages.inc.php:321 msgid "File could not be read" msgstr "Súbor sa nedá prečítať" #: import.php:287 import.php:296 import.php:315 import.php:324 #: libraries/File.class.php:1031 libraries/File.class.php:1039 #: libraries/File.class.php:1055 libraries/File.class.php:1063 -#: libraries/messages.inc.php:1189 +#: libraries/messages.inc.php:1185 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -908,7 +908,7 @@ msgstr "" "Pokúsili ste sa načítať súbor s nepodporovanou kompresiou (%s). Buď nie je " "zahrnutá podpora tejto kompresie alebo bola deaktivovaná v konfigurácii." -#: import.php:337 libraries/messages.inc.php:547 +#: import.php:337 libraries/messages.inc.php:543 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -918,31 +918,31 @@ msgstr "" "jeho veľkosť prekročila maximálnu veľkosť povolenú v PHP. Pozri FAQ 1.16." #: import.php:372 libraries/display_import.lib.php:24 -#: libraries/messages.inc.php:125 +#: libraries/messages.inc.php:121 msgid "Could not load import plugins, please check your installation!" msgstr "" "Nebolo možné načítať importovacie pluginy, skontrolujte prosím vašu " "inštaláciu!" -#: import.php:397 libraries/messages.inc.php:102 +#: import.php:397 libraries/messages.inc.php:98 msgid "The bookmark has been deleted." msgstr "Záznam z obľúbených bol zmazaný." -#: import.php:401 libraries/messages.inc.php:879 +#: import.php:401 libraries/messages.inc.php:875 msgid "Showing bookmark" msgstr "Zobrazujem obľúbený príkaz" -#: import.php:403 libraries/messages.inc.php:101 +#: import.php:403 libraries/messages.inc.php:97 #, php-format msgid "Bookmark %s created" msgstr "Príkaz %s bol zaradený medzi obľúbené" -#: import.php:409 import.php:415 libraries/messages.inc.php:407 +#: import.php:409 import.php:415 libraries/messages.inc.php:403 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Import bol úspešne ukončený, bolo vykonaných %d dopytov." -#: import.php:424 libraries/messages.inc.php:1107 +#: import.php:424 libraries/messages.inc.php:1103 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -950,11 +950,11 @@ msgstr "" "Časový limit behu skriptu vypršal. Ak chcete import súboru dokončiť, " "odošlite znova formulár a import bude pokračovať." -#: index.php:190 libraries/messages.inc.php:553 +#: index.php:190 libraries/messages.inc.php:549 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin funguje lepšie s prehliadačmi podporujúcimi rámy." -#: js/messages.php:25 libraries/messages.inc.php:155 +#: js/messages.php:25 libraries/messages.inc.php:151 #: server_synchronize.php:345 server_synchronize.php:357 #: server_synchronize.php:373 server_synchronize.php:380 #: server_synchronize.php:739 server_synchronize.php:767 @@ -962,118 +962,118 @@ msgstr "phpMyAdmin funguje lepšie s prehliadačmi podporujúcimi rámy." msgid "Click to select" msgstr "" -#: js/messages.php:26 libraries/messages.inc.php:156 +#: js/messages.php:26 libraries/messages.inc.php:152 msgid "Click to unselect" msgstr "" #: js/messages.php:27 libraries/import.lib.php:103 -#: libraries/messages.inc.php:550 sql.php:89 +#: libraries/messages.inc.php:546 sql.php:89 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Možnosť \"DROP DATABASE\" vypnutá." -#: js/messages.php:30 libraries/messages.inc.php:270 +#: js/messages.php:30 libraries/messages.inc.php:266 #: libraries/mult_submits.inc.php:258 sql.php:188 msgid "Do you really want to " msgstr "Skutočne chcete vykonať príkaz " -#: js/messages.php:31 libraries/messages.inc.php:271 +#: js/messages.php:31 libraries/messages.inc.php:267 #: libraries/mult_submits.inc.php:258 sql.php:172 msgid "You are about to DESTROY a complete database!" msgstr "Chystáte sa ZRUŠIŤ celú databázu!" -#: js/messages.php:34 libraries/messages.inc.php:94 +#: js/messages.php:34 libraries/messages.inc.php:90 msgid "You are about to DISABLE a BLOB Repository!" msgstr "" -#: js/messages.php:35 libraries/messages.inc.php:91 +#: js/messages.php:35 libraries/messages.inc.php:87 #, php-format msgid "Are you sure you want to disable all BLOB references for database %s?" msgstr "" -#: js/messages.php:38 libraries/messages.inc.php:342 +#: js/messages.php:38 libraries/messages.inc.php:338 msgid "Missing value in the form!" msgstr "Chýbajúca položka vo formulári !" -#: js/messages.php:39 libraries/messages.inc.php:570 +#: js/messages.php:39 libraries/messages.inc.php:566 msgid "This is not a number!" msgstr "Toto nie je číslo!" -#: js/messages.php:42 libraries/messages.inc.php:380 +#: js/messages.php:42 libraries/messages.inc.php:376 msgid "The host name is empty!" msgstr "Názov hostiteľa je prázdny!" -#: js/messages.php:43 libraries/messages.inc.php:1208 +#: js/messages.php:43 libraries/messages.inc.php:1204 msgid "The user name is empty!" msgstr "Meno používateľa je prázdne!" -#: js/messages.php:44 libraries/messages.inc.php:607 +#: js/messages.php:44 libraries/messages.inc.php:603 #: server_privileges.php:1197 user_password.php:70 msgid "The password is empty!" msgstr "Heslo je prázdne!" -#: js/messages.php:45 libraries/messages.inc.php:609 +#: js/messages.php:45 libraries/messages.inc.php:605 #: server_privileges.php:1195 user_password.php:73 msgid "The passwords aren't the same!" msgstr "Heslá sa nezhodujú!" -#: js/messages.php:49 libraries/messages.inc.php:123 pmd_general.php:342 +#: js/messages.php:49 libraries/messages.inc.php:119 pmd_general.php:342 #: pmd_general.php:379 msgid "Cancel" msgstr "Zrušiť" -#: js/messages.php:52 libraries/messages.inc.php:514 +#: js/messages.php:52 libraries/messages.inc.php:510 msgid "Modifications have been saved" msgstr "Zmeny boli uložené" -#: js/messages.php:53 libraries/messages.inc.php:741 +#: js/messages.php:53 libraries/messages.inc.php:737 #, fuzzy msgid "Relation deleted" msgstr "Zobraziť prepojenia" -#: js/messages.php:54 libraries/messages.inc.php:340 +#: js/messages.php:54 libraries/messages.inc.php:336 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:55 libraries/messages.inc.php:434 +#: js/messages.php:55 libraries/messages.inc.php:430 #, fuzzy msgid "Internal relation added" msgstr "Interné vzťahy" -#: js/messages.php:56 libraries/messages.inc.php:299 +#: js/messages.php:56 libraries/messages.inc.php:295 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:57 libraries/messages.inc.php:300 +#: js/messages.php:57 libraries/messages.inc.php:296 msgid "Error: relation already exists." msgstr "" -#: js/messages.php:58 libraries/messages.inc.php:302 +#: js/messages.php:58 libraries/messages.inc.php:298 msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:59 libraries/messages.inc.php:351 +#: js/messages.php:59 libraries/messages.inc.php:347 #: libraries/relation.lib.php:107 msgid "General relation features" msgstr "Možnosti všeobecných vzťahov" -#: js/messages.php:59 libraries/messages.inc.php:260 +#: js/messages.php:59 libraries/messages.inc.php:256 #: libraries/relation.lib.php:101 libraries/relation.lib.php:108 msgid "Disabled" msgstr "Vypnuté" -#: js/messages.php:60 libraries/messages.inc.php:850 +#: js/messages.php:60 libraries/messages.inc.php:846 msgid "Select referenced key" msgstr "" -#: js/messages.php:61 libraries/messages.inc.php:848 +#: js/messages.php:61 libraries/messages.inc.php:844 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:62 libraries/messages.inc.php:653 +#: js/messages.php:62 libraries/messages.inc.php:649 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:63 libraries/messages.inc.php:142 pmd_general.php:77 +#: js/messages.php:63 libraries/messages.inc.php:138 pmd_general.php:77 #: tbl_relation.php:548 msgid "Choose field to display" msgstr "Zvolte, ktoré pole zobraziť" @@ -1093,9 +1093,9 @@ msgid "Prev" msgstr "Predchádzajúci" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2332 -#: libraries/common.lib.php:2335 libraries/display_tbl.lib.php:338 -#: libraries/messages.inc.php:543 server_binlog.php:205 server_binlog.php:207 +#: js/messages.php:77 libraries/common.lib.php:2344 +#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: libraries/messages.inc.php:539 server_binlog.php:205 server_binlog.php:207 #: tbl_printview.php:424 tbl_structure.php:802 msgid "Next" msgstr "Ďalší" @@ -1170,27 +1170,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1543 +#: js/messages.php:97 libraries/common.lib.php:1555 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1545 +#: js/messages.php:99 libraries/common.lib.php:1557 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1547 +#: js/messages.php:101 libraries/common.lib.php:1559 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1549 +#: js/messages.php:103 libraries/common.lib.php:1561 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1551 +#: js/messages.php:105 libraries/common.lib.php:1563 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1198,37 +1198,37 @@ msgid "May" msgstr "Máj" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1553 +#: js/messages.php:107 libraries/common.lib.php:1565 msgid "Jun" msgstr "Jún" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1555 +#: js/messages.php:109 libraries/common.lib.php:1567 msgid "Jul" msgstr "Júl" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1557 +#: js/messages.php:111 libraries/common.lib.php:1569 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1559 +#: js/messages.php:113 libraries/common.lib.php:1571 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1561 +#: js/messages.php:115 libraries/common.lib.php:1573 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1563 +#: js/messages.php:117 libraries/common.lib.php:1575 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1565 +#: js/messages.php:119 libraries/common.lib.php:1577 msgid "Dec" msgstr "Dec" @@ -1269,37 +1269,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1568 +#: js/messages.php:132 libraries/common.lib.php:1580 msgid "Sun" msgstr "Ne" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1570 +#: js/messages.php:134 libraries/common.lib.php:1582 msgid "Mon" msgstr "Po" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1572 +#: js/messages.php:136 libraries/common.lib.php:1584 msgid "Tue" msgstr "Út" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1574 +#: js/messages.php:138 libraries/common.lib.php:1586 msgid "Wed" msgstr "St" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1576 +#: js/messages.php:140 libraries/common.lib.php:1588 msgid "Thu" msgstr "Št" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1578 +#: js/messages.php:142 libraries/common.lib.php:1590 msgid "Fri" msgstr "Pi" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1580 +#: js/messages.php:144 libraries/common.lib.php:1592 msgid "Sat" msgstr "So" @@ -1375,76 +1375,76 @@ msgstr "práve sa používa" msgid "Second" msgstr "za sekundu" -#: libraries/Config.class.php:1015 libraries/messages.inc.php:338 +#: libraries/Config.class.php:1015 libraries/messages.inc.php:334 msgid "Font size" msgstr "Veľkosť písma" #: libraries/File.class.php:344 libraries/File.class.php:432 #: libraries/File.class.php:569 libraries/File.class.php:708 -#: libraries/messages.inc.php:1201 +#: libraries/messages.inc.php:1197 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.class.php:414 libraries/messages.inc.php:1198 +#: libraries/File.class.php:414 libraries/messages.inc.php:1194 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:417 libraries/messages.inc.php:1197 +#: libraries/File.class.php:417 libraries/messages.inc.php:1193 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:420 libraries/messages.inc.php:1200 +#: libraries/File.class.php:420 libraries/messages.inc.php:1196 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:423 libraries/messages.inc.php:1199 +#: libraries/File.class.php:423 libraries/messages.inc.php:1195 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:426 libraries/messages.inc.php:1195 +#: libraries/File.class.php:426 libraries/messages.inc.php:1191 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:429 libraries/messages.inc.php:1196 +#: libraries/File.class.php:429 libraries/messages.inc.php:1192 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:908 libraries/messages.inc.php:319 +#: libraries/File.class.php:908 libraries/messages.inc.php:315 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "Chyba pri presune súboru, pozrite FAQ 1.11" -#: libraries/Index.class.php:428 libraries/messages.inc.php:554 +#: libraries/Index.class.php:428 libraries/messages.inc.php:550 #: tbl_relation.php:529 msgid "No index defined!" msgstr "Nebol definovaný žiadny index!" -#: libraries/Index.class.php:433 libraries/messages.inc.php:411 +#: libraries/Index.class.php:433 libraries/messages.inc.php:407 #: server_databases.php:132 tbl_tracking.php:316 msgid "Indexes" msgstr "Indexy" -#: libraries/Index.class.php:444 libraries/messages.inc.php:1186 +#: libraries/Index.class.php:444 libraries/messages.inc.php:1182 #: 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:475 tbl_tracking.php:322 msgid "Unique" msgstr "Unikátny" -#: libraries/Index.class.php:445 libraries/messages.inc.php:596 +#: libraries/Index.class.php:445 libraries/messages.inc.php:592 #: tbl_tracking.php:323 msgid "Packed" msgstr "" -#: libraries/Index.class.php:447 libraries/messages.inc.php:131 +#: libraries/Index.class.php:447 libraries/messages.inc.php:127 #: tbl_tracking.php:325 msgid "Cardinality" msgstr "Mohutnosť" -#: libraries/Index.class.php:450 libraries/messages.inc.php:162 +#: libraries/Index.class.php:450 libraries/messages.inc.php:158 #: tbl_tracking.php:279 tbl_tracking.php:328 msgid "Comment" msgstr "Komentár" @@ -1452,29 +1452,29 @@ msgstr "Komentár" #: libraries/Index.class.php:466 libraries/common.lib.php:616 #: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:280 pdf_pages.php:280 +#: libraries/messages.inc.php:276 pdf_pages.php:280 #: setup/frames/index.inc.php:124 setup/lib/messages.inc.php:352 #: tbl_row_action.php:69 msgid "Edit" msgstr "Upraviť" -#: libraries/Index.class.php:472 libraries/messages.inc.php:666 +#: libraries/Index.class.php:472 libraries/messages.inc.php:662 msgid "The primary key has been dropped" msgstr "Primárny kľúč bol zrušený" -#: libraries/Index.class.php:476 libraries/messages.inc.php:413 +#: libraries/Index.class.php:476 libraries/messages.inc.php:409 #, php-format msgid "Index %s has been dropped" msgstr "Index pre %s bol odstránený" -#: libraries/Index.class.php:576 libraries/messages.inc.php:412 +#: libraries/Index.class.php:576 libraries/messages.inc.php:408 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "" -#: libraries/List_Database.class.php:431 libraries/messages.inc.php:218 +#: libraries/List_Database.class.php:431 libraries/messages.inc.php:214 #: libraries/server_links.inc.php:41 server_databases.php:88 #: server_privileges.php:1621 setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" @@ -1504,86 +1504,86 @@ msgid_plural "%1$d rows inserted." msgstr[0] "%1$d riadok/riadkov vložených." msgstr[1] "%1$d riadok/riadkov vložených." -#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:549 +#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:545 msgid "" "There is no detailed status information available for this storage engine." msgstr "" "Pre tento úložný systém nie sú dostupné žiadne podrobnejšie informácie." -#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:291 +#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:287 #, php-format msgid "%s is available on this MySQL server." msgstr "Úložný systém %s je na tomto MySQL servri dostupný." -#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:292 +#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:288 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "Úložný systém %s bol na tomto MySQL servri deaktivovaný." -#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:294 +#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:290 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "Tento MySQL server nepodporuje úložný systém %s." -#: libraries/Table.class.php:1019 libraries/messages.inc.php:443 +#: libraries/Table.class.php:1019 libraries/messages.inc.php:439 msgid "Invalid database" msgstr "Chybná databáza" -#: libraries/Table.class.php:1033 libraries/messages.inc.php:450 +#: libraries/Table.class.php:1033 libraries/messages.inc.php:446 #: tbl_get_field.php:26 msgid "Invalid table name" msgstr "Chybné meno tabuľky" -#: libraries/Table.class.php:1048 libraries/messages.inc.php:301 +#: libraries/Table.class.php:1048 libraries/messages.inc.php:297 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "Chyba pri premenovaní tabuľky %1$s na %2$s" -#: libraries/Table.class.php:1132 libraries/messages.inc.php:754 +#: libraries/Table.class.php:1132 libraries/messages.inc.php:750 #, php-format msgid "Table %s has been renamed to %s" msgstr "Tabuľka %s bola premenovaná na %s" -#: libraries/Theme.class.php:162 libraries/messages.inc.php:1099 +#: libraries/Theme.class.php:162 libraries/messages.inc.php:1095 #, php-format msgid "No valid image path for theme %s found!" msgstr "Nebola nájdená platná cesta k obrázkom pre vzhľad %s!" -#: libraries/Theme.class.php:384 libraries/messages.inc.php:1097 +#: libraries/Theme.class.php:384 libraries/messages.inc.php:1093 msgid "No preview available." msgstr "Náhľad nie je dostupný." -#: libraries/Theme.class.php:387 libraries/messages.inc.php:1089 +#: libraries/Theme.class.php:387 libraries/messages.inc.php:1085 msgid "take it" msgstr "zvoliť" -#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1096 +#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1092 #, php-format msgid "Default theme %s not found!" msgstr "Predvolený vzhľad %s nebol nájdený!" -#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1098 +#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1094 #, php-format msgid "Theme %s not found!" msgstr "Vzhľad %s nebol nájdený!" -#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1100 +#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1096 #, php-format msgid "Theme path not found for theme %s!" msgstr "Nebola nájdená platná cesta ku vzhľadu %s!" -#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1101 +#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1097 #: test/theme.php:161 themes.php:21 themes.php:41 msgid "Theme / Style" msgstr "Vzhľad" -#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:172 +#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:168 msgid "Cannot connect: invalid settings." msgstr "Nepodarilo sa pripojiť: chybné nastavenia." #: libraries/auth/config.auth.lib.php:92 #: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65 -#: libraries/messages.inc.php:1238 test/theme.php:152 +#: libraries/messages.inc.php:1234 test/theme.php:152 #, php-format msgid "Welcome to %s" msgstr "Vitajte v %s" @@ -1608,105 +1608,105 @@ msgstr "" "Skontrolujte prosím meno serveru, používateľské meno a heslo v súbore config." "inc.php a s tým, ktoré ste dostali o administrátora MySQL servera." -#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:488 +#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:484 msgid "Log in" msgstr "Login" #: libraries/auth/cookie.auth.lib.php:246 -#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:659 +#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:655 #: libraries/navigation_header.inc.php:93 #: libraries/navigation_header.inc.php:95 msgid "phpMyAdmin documentation" msgstr "phpMyAdmin Dokumentácia" #: libraries/auth/cookie.auth.lib.php:258 -#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:492 +#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:488 msgid "You can enter hostname/IP address and port separated by space." msgstr "Možete zadať medzerou oddelený hostname/IP adresu a port." -#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:493 +#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:489 msgid "Server:" msgstr "Server" -#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:494 +#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:490 msgid "Username:" msgstr "Používateľ:" -#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:491 +#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:487 msgid "Password:" msgstr "Heslo:" -#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:854 +#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:850 msgid "Server Choice" msgstr "Voľba serveru" #: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 -#: libraries/messages.inc.php:177 +#: libraries/messages.inc.php:173 msgid "Cookies must be enabled past this point." msgstr "Cookies musia byť povolené, pokiaľ chcete pokračovať." #: libraries/auth/cookie.auth.lib.php:671 -#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:489 +#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:485 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" "Prihlásenie bez hesla je zakázané v konfigurácií (pozri AllowNoPassword)" #: libraries/auth/cookie.auth.lib.php:675 -#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:544 +#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:540 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "Boli ste neaktívni viac ako %s sekúnd, prihláste sa prosím znovu" #: libraries/auth/cookie.auth.lib.php:685 #: libraries/auth/cookie.auth.lib.php:687 -#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:126 +#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:122 msgid "Cannot log in to the MySQL server" msgstr "Nedá sa prihlásiť k MySQL serveru" -#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1245 +#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1241 msgid "Wrong username/password. Access denied." msgstr "Zlé používateľské meno alebo heslo. Prístup zamietnutý." #: libraries/auth/swekey/swekey.auth.lib.php:118 -#: libraries/messages.inc.php:1057 +#: libraries/messages.inc.php:1053 #, php-format msgid "File %s does not contain any key id" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:157 #: libraries/auth/swekey/swekey.auth.lib.php:180 -#: libraries/messages.inc.php:1056 +#: libraries/messages.inc.php:1052 msgid "Hardware authentication failed" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:166 -#: libraries/messages.inc.php:1058 +#: libraries/messages.inc.php:1054 msgid "No valid authentication key plugged" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:202 -#: libraries/messages.inc.php:1055 +#: libraries/messages.inc.php:1051 msgid "Authenticating..." msgstr "" -#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1230 +#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1226 msgid "View image" msgstr "" -#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:652 +#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:648 msgid "Play audio" msgstr "" -#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1232 +#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1228 msgid "View video" msgstr "" -#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:269 +#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:265 msgid "Download file" msgstr "Stiahnuť súbor" -#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:128 +#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:124 msgid "" "Couldn't load the iconv or recode extension needed for charset conversion. " "Either configure PHP to enable these extensions or disable charset " @@ -1718,7 +1718,7 @@ msgstr "" #: libraries/charset_conversion.lib.php:79 #: libraries/charset_conversion.lib.php:90 -#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:130 +#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:126 msgid "" "Couldn't use the iconv, libiconv, or recode_string functions, although the " "necessary extensions appear to be loaded. Check your PHP configuration." @@ -1726,7 +1726,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/messages.inc.php:170 +#: libraries/common.inc.php:583 libraries/messages.inc.php:166 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!" @@ -1762,22 +1762,22 @@ msgstr "" msgid "Invalid server index: %s" msgstr "Chybný index serveru: \"%s\"" -#: libraries/common.inc.php:636 libraries/messages.inc.php:448 +#: libraries/common.inc.php:636 libraries/messages.inc.php:444 #, 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/messages.inc.php:856 libraries/select_server.lib.php:41 +#: libraries/messages.inc.php:852 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/messages.inc.php:437 +#: libraries/common.inc.php:823 libraries/messages.inc.php:433 msgid "Invalid authentication method set in configuration:" msgstr "V konfigurácii je nastavená nesprávna autentifikačná metóda:" -#: libraries/common.lib.php:147 libraries/messages.inc.php:499 +#: libraries/common.lib.php:147 libraries/messages.inc.php:495 #, php-format msgid "Max: %s%s" msgstr "Maximálna veľkosť: %s%s" @@ -1797,7 +1797,7 @@ msgstr "en" #: libraries/common.lib.php:428 libraries/common.lib.php:430 #: libraries/common.lib.php:432 libraries/common.lib.php:448 #: libraries/common.lib.php:450 libraries/dbg/setup.php:25 -#: libraries/display_export.lib.php:164 libraries/messages.inc.php:267 +#: libraries/display_export.lib.php:164 libraries/messages.inc.php:263 #: libraries/relation.lib.php:97 libraries/sql_query_form.lib.php:451 #: libraries/sql_query_form.lib.php:454 main.php:229 pdf_pages.php:37 #: pdf_pages.php:43 pdf_pages.php:49 pdf_pages.php:54 @@ -1807,55 +1807,55 @@ msgstr "Dokumentácia" #: libraries/common.lib.php:581 libraries/core.lib.php:234 #: libraries/core.lib.php:263 libraries/import.lib.php:134 -#: libraries/messages.inc.php:297 pdf_schema.php:32 pdf_schema.php:232 +#: libraries/messages.inc.php:293 pdf_schema.php:32 pdf_schema.php:232 #: tbl_change.php:1027 tbl_operations.php:213 tbl_relation.php:290 #: view_operations.php:62 msgid "Error" msgstr "Chyba" #: libraries/common.lib.php:595 libraries/header_printview.inc.php:61 -#: libraries/messages.inc.php:1023 server_processlist.php:60 +#: libraries/messages.inc.php:1019 server_processlist.php:60 #: server_status.php:247 msgid "SQL query" msgstr "SQL dopyt" -#: libraries/common.lib.php:634 libraries/messages.inc.php:538 +#: libraries/common.lib.php:634 libraries/messages.inc.php:534 msgid "MySQL said: " msgstr "MySQL hlási: " -#: libraries/common.lib.php:667 libraries/messages.inc.php:76 +#: libraries/common.lib.php:667 libraries/messages.inc.php:72 #: pdf_schema.php:241 user_password.php:115 msgid "Back" msgstr "Späť" -#: libraries/common.lib.php:1177 libraries/messages.inc.php:309 +#: libraries/common.lib.php:1177 libraries/messages.inc.php:305 #: setup/lib/messages.inc.php:353 msgid "Explain SQL" msgstr "Vysvetliť SQL" -#: libraries/common.lib.php:1180 libraries/messages.inc.php:551 +#: libraries/common.lib.php:1180 libraries/messages.inc.php:547 msgid "Skip Explain SQL" msgstr "Preskočiť vysvetlenie SQL" -#: libraries/common.lib.php:1212 libraries/messages.inc.php:563 +#: libraries/common.lib.php:1212 libraries/messages.inc.php:559 msgid "Without PHP Code" msgstr "bez PHP kódu" -#: libraries/common.lib.php:1215 libraries/messages.inc.php:649 +#: libraries/common.lib.php:1215 libraries/messages.inc.php:645 #: setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "Vytvoriť PHP kód" -#: libraries/common.lib.php:1233 libraries/messages.inc.php:737 +#: libraries/common.lib.php:1233 libraries/messages.inc.php:733 #: server_status.php:341 setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "Obnoviť" -#: libraries/common.lib.php:1242 libraries/messages.inc.php:575 +#: libraries/common.lib.php:1242 libraries/messages.inc.php:571 msgid "Skip Validate SQL" msgstr "Preskočiť potvrdenie platnosti SQL" -#: libraries/common.lib.php:1245 libraries/messages.inc.php:1220 +#: libraries/common.lib.php:1245 libraries/messages.inc.php:1216 #: setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "Potvrdiť platnosť SQL" @@ -1871,11 +1871,11 @@ msgid "Inline" msgstr "Systémy" #: libraries/common.lib.php:1332 libraries/common.lib.php:1347 -#: libraries/messages.inc.php:713 +#: libraries/messages.inc.php:709 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1351 libraries/messages.inc.php:1108 +#: libraries/common.lib.php:1351 libraries/messages.inc.php:1104 #: libraries/tbl_triggers.lib.php:28 server_processlist.php:58 msgid "Time" msgstr "Čas" @@ -1909,46 +1909,56 @@ msgstr "PB" msgid "EiB" msgstr "EB" +#. l10n: Thousands separator +#: libraries/common.lib.php:1417 +msgid "," +msgstr " " + +#. l10n: Decimal separator +#: libraries/common.lib.php:1419 +msgid "." +msgstr "," + #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1584 +#: libraries/common.lib.php:1596 #: libraries/transformations/text_plain__dateformat.inc.php:28 msgid "%B %d, %Y at %I:%M %p" msgstr "%d.%B, %Y - %H:%M" -#: libraries/common.lib.php:1886 +#: libraries/common.lib.php:1898 #, 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:2301 libraries/common.lib.php:2304 -#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:664 +#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:660 #: server_status.php:608 msgid "Begin" msgstr "Začiatok" -#: libraries/common.lib.php:2302 libraries/common.lib.php:2305 -#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:665 +#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:661 #: server_binlog.php:168 server_binlog.php:170 msgid "Previous" msgstr "Predchádzajúci" -#: libraries/common.lib.php:2333 libraries/common.lib.php:2336 -#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:289 +#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:285 msgid "End" msgstr "Koniec" -#: libraries/common.lib.php:2409 libraries/messages.inc.php:455 +#: libraries/common.lib.php:2421 libraries/messages.inc.php:451 #, php-format msgid "Jump to database "%s"." msgstr "Na databázu "%s"." -#: libraries/common.lib.php:2429 libraries/messages.inc.php:461 +#: libraries/common.lib.php:2441 libraries/messages.inc.php:457 #, 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/core.lib.php:286 libraries/dbg/setup.php:22 -#: libraries/messages.inc.php:127 +#: libraries/messages.inc.php:123 #, php-format msgid "" "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " @@ -1956,115 +1966,115 @@ msgid "" msgstr "nedá sa nahrať rozšírenie %s, prosím skontrolujte konfiguráciu PHP" #: libraries/db_events.inc.php:20 libraries/db_events.inc.php:22 -#: libraries/export/sql.php:415 libraries/messages.inc.php:306 +#: libraries/export/sql.php:415 libraries/messages.inc.php:302 msgid "Events" msgstr "Udalosti" #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 -#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:541 +#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:537 #: libraries/tbl_triggers.lib.php:27 setup/frames/index.inc.php:112 msgid "Name" msgstr "Názov" -#: libraries/db_links.inc.php:45 libraries/messages.inc.php:216 +#: libraries/db_links.inc.php:45 libraries/messages.inc.php:212 #, php-format msgid "Database %s has been dropped." msgstr "Databáza %s bola zmazaná." #: libraries/db_links.inc.php:57 libraries/db_links.inc.php:58 -#: libraries/db_links.inc.php:59 libraries/messages.inc.php:234 +#: libraries/db_links.inc.php:59 libraries/messages.inc.php:230 msgid "Database seems to be empty!" msgstr "Databáza vyzerá prázdna!" -#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1025 +#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1021 #: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60 #: querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1152 +#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1148 #: libraries/tbl_links.inc.php:69 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:86 libraries/messages.inc.php:719 +#: libraries/db_links.inc.php:86 libraries/messages.inc.php:715 msgid "Query" msgstr "Dopyt podľa príkladu" -#: libraries/db_links.inc.php:91 libraries/messages.inc.php:253 +#: libraries/db_links.inc.php:91 libraries/messages.inc.php:249 msgid "Designer" msgstr "Dizajnér" -#: libraries/db_links.inc.php:98 libraries/messages.inc.php:397 +#: libraries/db_links.inc.php:98 libraries/messages.inc.php:393 #: libraries/server_links.inc.php:88 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:104 libraries/messages.inc.php:587 +#: libraries/db_links.inc.php:104 libraries/messages.inc.php:583 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" msgstr "Operácie" -#: libraries/db_links.inc.php:111 libraries/messages.inc.php:709 +#: libraries/db_links.inc.php:111 libraries/messages.inc.php:705 #: libraries/server_links.inc.php:66 server_privileges.php:72 #: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117 msgid "Privileges" msgstr "Oprávnenia" #: libraries/db_routines.inc.php:30 libraries/db_routines.inc.php:32 -#: libraries/messages.inc.php:812 +#: libraries/messages.inc.php:808 msgid "Routines" msgstr "" -#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:811 +#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:807 msgid "Return type" msgstr "" #: libraries/db_structure.lib.php:57 libraries/display_tbl.lib.php:1848 -#: libraries/messages.inc.php:65 +#: libraries/messages.inc.php:61 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "Môže byť nepresné. Pozri FAQ 3.11" -#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:593 +#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:589 #: server_databases.php:142 tbl_printview.php:336 tbl_structure.php:683 msgid "Overhead" msgstr "Naviac" #: libraries/dbi/mysql.dbi.lib.php:112 libraries/dbi/mysqli.dbi.lib.php:124 -#: libraries/messages.inc.php:176 +#: libraries/messages.inc.php:172 msgid "Connection for controluser as defined in your configuration failed." msgstr "Nepodarilo sa pripojiť ku controluser podľa nastavení z konfigurácie." #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 -#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:855 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:851 msgid "The server is not responding" msgstr "Server neodpovedá" #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:1010 +#: libraries/messages.inc.php:1006 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 libraries/messages.inc.php:255 +#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:251 #: tbl_structure.php:609 msgid "Details..." msgstr "" -#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:143 +#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:139 #: main.php:91 user_password.php:111 user_password.php:129 msgid "Change password" msgstr "Zmeniť heslo" -#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:561 +#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:557 #: libraries/replication_gui.lib.php:341 server_privileges.php:768 msgid "No Password" msgstr "Žiadne heslo" -#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:610 +#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:606 #: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60 #: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335 #: libraries/replication_gui.lib.php:345 server_privileges.php:757 @@ -2073,13 +2083,13 @@ msgstr "Žiadne heslo" msgid "Password" msgstr "Heslo" -#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:806 +#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:802 #: libraries/replication_gui.lib.php:349 libraries/replication_gui.lib.php:352 #: server_privileges.php:776 server_privileges.php:779 msgid "Re-type" msgstr "Potvrdiť" -#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:608 +#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:604 msgid "Password Hashing" msgstr "Hashovanie hesla" @@ -2089,90 +2099,90 @@ msgstr "Hashovanie hesla" msgid "MySQL 4.0 compatible" msgstr "Kompatibilné s MySQL 4.0" -#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:353 +#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:349 #: libraries/replication_gui.lib.php:356 server_privileges.php:783 msgid "Generate Password" msgstr "Vytvoriť Heslo" -#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:352 +#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:348 #: libraries/replication_gui.lib.php:359 server_privileges.php:786 msgid "Generate" msgstr "Vytvoriť" #: libraries/display_create_database.lib.php:22 -#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:189 +#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:185 msgid "Create new database" msgstr "Vytvoriť novú databázu" -#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:185 +#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:181 msgid "Create" msgstr "Vytvoriť" -#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:564 +#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:560 #: server_privileges.php:74 server_privileges.php:1388 #: server_replication.php:35 msgid "No Privileges" msgstr "Žiadne oprávnenia" -#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:445 +#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:441 msgid "Table must have at least one field." msgstr "Tabuľka musí obsahovať aspoň jeden stĺpec." -#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:190 +#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:186 #, php-format msgid "Create table on database %s" msgstr "Vytvoriť novú tabuľku v databáze %s" -#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:577 +#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:573 msgid "Number of fields" msgstr "Počet polí" -#: libraries/display_export.lib.php:42 libraries/messages.inc.php:124 +#: libraries/display_export.lib.php:42 libraries/messages.inc.php:120 msgid "Could not load export plugins, please check your installation!" msgstr "" "Nepodarilo sa načítať exportné pluginy, skontrolujte prosím vašu inštaláciu!" -#: libraries/display_export.lib.php:107 libraries/messages.inc.php:277 +#: libraries/display_export.lib.php:107 libraries/messages.inc.php:273 #, php-format msgid "Dump %s row(s) starting at record # %s" msgstr "Zobraziť %s riadkov od riadku %s." -#: libraries/display_export.lib.php:115 libraries/messages.inc.php:274 +#: libraries/display_export.lib.php:115 libraries/messages.inc.php:270 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:125 libraries/messages.inc.php:852 +#: libraries/display_export.lib.php:125 libraries/messages.inc.php:848 #: setup/lib/messages.inc.php:82 msgid "Save as file" msgstr "Pošli" -#: libraries/display_export.lib.php:134 libraries/messages.inc.php:828 +#: libraries/display_export.lib.php:134 libraries/messages.inc.php:824 #, php-format msgid "Save on server in %s directory" msgstr "Uložiť na server do adresára %s" -#: libraries/display_export.lib.php:142 libraries/messages.inc.php:594 +#: libraries/display_export.lib.php:142 libraries/messages.inc.php:590 #: setup/lib/messages.inc.php:90 msgid "Overwrite existing file(s)" msgstr "Prepísať existujúci súbor(y)" -#: libraries/display_export.lib.php:148 libraries/messages.inc.php:330 +#: libraries/display_export.lib.php:148 libraries/messages.inc.php:326 msgid "File name template" msgstr "Vzor pre názov súboru" -#: libraries/display_export.lib.php:152 libraries/messages.inc.php:327 +#: libraries/display_export.lib.php:152 libraries/messages.inc.php:323 msgid "server name" msgstr "meno servera" -#: libraries/display_export.lib.php:155 libraries/messages.inc.php:326 +#: libraries/display_export.lib.php:155 libraries/messages.inc.php:322 msgid "database name" msgstr "meno databázy" -#: libraries/display_export.lib.php:158 libraries/messages.inc.php:328 +#: libraries/display_export.lib.php:158 libraries/messages.inc.php:324 msgid "table name" msgstr "meno tabuľky" -#: libraries/display_export.lib.php:162 libraries/messages.inc.php:329 +#: libraries/display_export.lib.php:162 libraries/messages.inc.php:325 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2183,24 +2193,24 @@ msgstr "" "reťazec pre formátovanie dátumu a času. Naviac budú vykonané tieto " "nahradenia: %3$s. Ostatný text bude zachovaný." -#: libraries/display_export.lib.php:202 libraries/messages.inc.php:331 +#: libraries/display_export.lib.php:202 libraries/messages.inc.php:327 msgid "remember template" msgstr "zapamätať si vzor" #: libraries/display_export.lib.php:210 libraries/display_import.lib.php:178 -#: libraries/display_import.lib.php:191 libraries/messages.inc.php:145 +#: libraries/display_import.lib.php:191 libraries/messages.inc.php:141 #: libraries/sql_query_form.lib.php:549 msgid "Character set of the file:" msgstr "Znaková sada súboru:" -#: libraries/display_export.lib.php:235 libraries/messages.inc.php:166 +#: libraries/display_export.lib.php:235 libraries/messages.inc.php:162 #: setup/lib/messages.inc.php:84 msgid "Compression" 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/messages.inc.php:558 +#: libraries/export/sql.php:868 libraries/messages.inc.php:554 #: libraries/tbl_properties.inc.php:575 server_privileges.php:1836 #: server_processlist.php:75 msgid "None" @@ -2224,11 +2234,11 @@ msgstr "\"gzip-ované\"" msgid "bzipped" msgstr "\"bzipped\"" -#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1018 +#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1014 msgid "SQL compatibility mode" msgstr "Režim kompatibility SQL" -#: libraries/display_import.lib.php:67 libraries/messages.inc.php:398 +#: libraries/display_import.lib.php:67 libraries/messages.inc.php:394 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " @@ -2238,50 +2248,50 @@ msgstr "" "alebo je toto známa chyba v prehliadačoch založených na gecko (Safari, " "Google Chrome, Arora etc.)." -#: libraries/display_import.lib.php:77 libraries/messages.inc.php:406 +#: libraries/display_import.lib.php:77 libraries/messages.inc.php:402 msgid "The file is being processed, please be patient." msgstr "" -#: libraries/display_import.lib.php:99 libraries/messages.inc.php:408 +#: libraries/display_import.lib.php:99 libraries/messages.inc.php:404 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." msgstr "" -#: libraries/display_import.lib.php:126 libraries/messages.inc.php:333 +#: libraries/display_import.lib.php:126 libraries/messages.inc.php:329 msgid "File to import" msgstr "Súbor na importovanie" -#: libraries/display_import.lib.php:137 libraries/messages.inc.php:486 +#: libraries/display_import.lib.php:137 libraries/messages.inc.php:482 #: libraries/sql_query_form.lib.php:524 msgid "Location of the text file" msgstr "Lokácia textového súboru" -#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1203 +#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1199 msgid "File uploads are not allowed on this server." msgstr "Ukladanie súborov na server nie je povolené." -#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1235 +#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1231 #: libraries/sql_query_form.lib.php:533 tbl_change.php:1028 msgid "The directory you set for upload work cannot be reached" msgstr "Adresár určený pre upload súborov sa nedá otvoriť" -#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1236 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1232 #: libraries/sql_query_form.lib.php:536 tbl_change.php:1031 msgid "web server upload directory" msgstr "upload adresár web serveru" -#: libraries/display_import.lib.php:212 libraries/messages.inc.php:167 +#: libraries/display_import.lib.php:212 libraries/messages.inc.php:163 #, php-format msgid "Imported file compression will be automatically detected from: %s" msgstr "" "Kompresia importovaného súboru bude rozpoznaná automaticky. Podporované: %s" -#: libraries/display_import.lib.php:219 libraries/messages.inc.php:600 +#: libraries/display_import.lib.php:219 libraries/messages.inc.php:596 msgid "Partial import" msgstr "Čiastočný import" -#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1105 +#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1101 #, php-format msgid "" "Previous import timed out, after resubmitting will continue from position %d." @@ -2289,7 +2299,7 @@ msgstr "" "Predchádzajúcemu importu vypršal časový limit. Po znovuodoslaní formulára sa " "bude pokračovať od pozície %d." -#: libraries/display_import.lib.php:232 libraries/messages.inc.php:51 +#: libraries/display_import.lib.php:232 libraries/messages.inc.php:47 msgid "" "Allow the interruption of an import in case the script detects it is close " "to the PHP timeout limit. This might be good way to import large files, " @@ -2299,179 +2309,179 @@ msgstr "" "Týmto spôsobom sa môžu importovať aj veľké súbory, ale môže to zároveň " "spôsobiť problémy s transakciami." -#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1004 +#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1000 #: setup/lib/messages.inc.php:161 msgid "Number of records (queries) to skip from start" msgstr "Počet záznamov (príkazov), ktoré sa majú zo začiatku preskočiť" -#: libraries/display_import.lib.php:255 libraries/messages.inc.php:396 +#: libraries/display_import.lib.php:255 libraries/messages.inc.php:392 #: setup/lib/messages.inc.php:160 msgid "Format of imported file" msgstr "Formát importovaného súboru" #: libraries/display_select_lang.lib.php:45 -#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:465 +#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:461 #: setup/frames/index.inc.php:70 msgid "Language" msgstr "Jazyk" -#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:447 +#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:443 #, php-format msgid "%d is not valid row number." msgstr "%d nie je platné číslo riadku." -#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:814 +#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:810 msgid "row(s) starting from record #" msgstr "riadky začínajú od" -#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:817 +#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:813 msgid "horizontal" msgstr "horizontálnom" -#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:816 +#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:812 msgid "horizontal (rotated headers)" msgstr "vodorovnom (otočené hlavičky)" -#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:819 +#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:815 msgid "vertical" msgstr "vertikálnom" -#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:818 +#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:814 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "v(o) %s móde a opakovať hlavičky po každých %s bunkách" -#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:495 +#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:491 msgid "This operation could take a long time. Proceed anyway?" msgstr "" "Táto operácia môže trvať veľmi dlho. Chcete ju aj napriek tomu vykonať?" -#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1012 +#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1008 msgid "Sort by key" msgstr "Zoradiť podľa kľúča" #: libraries/display_tbl.lib.php:555 libraries/import.lib.php:1082 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:591 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:587 #: tbl_select.php:267 tbl_structure.php:754 msgid "Options" msgstr "Nastavenia" #: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:570 -#: libraries/messages.inc.php:601 +#: libraries/messages.inc.php:597 msgid "Partial Texts" msgstr "Čiastočné texty" #: libraries/display_tbl.lib.php:561 libraries/display_tbl.lib.php:574 -#: libraries/messages.inc.php:346 +#: libraries/messages.inc.php:342 msgid "Full Texts" msgstr "Plné texty" -#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:739 +#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:735 #, fuzzy msgid "Relational key" msgstr "Relačná schéma" -#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:738 +#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:734 msgid "Relational display field" msgstr "" -#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:872 +#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:868 msgid "Show binary contents" msgstr "" -#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:873 +#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:869 msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:871 +#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:867 msgid "Show binary contents as HEX" msgstr "" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:375 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:371 #: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320 msgid "Hide" msgstr "Skryť" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:508 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:504 #: libraries/tbl_properties.inc.php:144 transformation_overview.php:47 msgid "Browser transformation" msgstr "Transformácia pri prehliadaní" #: libraries/display_tbl.lib.php:1126 libraries/display_tbl.lib.php:1130 -#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:308 +#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:304 msgid "Execute bookmarked query" msgstr "Spustiť obľúbený dopyt" #: libraries/display_tbl.lib.php:1145 libraries/display_tbl.lib.php:1157 -#: libraries/messages.inc.php:244 +#: libraries/messages.inc.php:240 msgid "The row has been deleted" msgstr "Riadok bol zmazaný" #: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056 -#: libraries/messages.inc.php:460 server_processlist.php:71 +#: libraries/messages.inc.php:456 server_processlist.php:71 #: tbl_row_action.php:64 msgid "Kill" msgstr "Zabiť" -#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:849 +#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:845 msgid "in query" msgstr "v dopyte" -#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:881 +#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:877 msgid "Showing rows" msgstr "Ukázať záznamy " -#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1113 +#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1109 msgid "total" msgstr "celkovo" -#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:727 +#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:723 #: sql.php:524 #, php-format msgid "Query took %01.4f sec" msgstr "Dopyt zabral %01.4f sek." -#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:135 +#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:131 #: 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:471 msgid "Change" msgstr "Zmeniť" -#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:724 +#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:720 msgid "Query results operations" msgstr "Operácie s výsledkami dopytu" -#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:671 +#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:667 msgid "Print view (with full texts)" msgstr "Náhľad tlače (s kompletnými textami)" -#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:482 +#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:478 msgid "Link not found" msgstr "Linka nebola nájdená" -#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1224 +#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1220 #: main.php:228 msgid "Version information" msgstr "Informácie o verzii" -#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:423 +#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:419 msgid "Data home directory" msgstr "Domovský adresár pre dáta" -#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:424 +#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:420 msgid "The common part of the directory path for all InnoDB data files." msgstr "Spoločná časť cesty k adresáru s InnoDB súbormi s dátami." -#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:422 +#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:418 msgid "Data files" msgstr "Súbory s dátami" -#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:418 +#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:414 msgid "Autoextend increment" msgstr "Navýšenie pri automatickom zväčšovaní" -#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:419 +#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:415 msgid "" " The increment size for extending the size of an autoextending tablespace " "when it becomes full." @@ -2479,98 +2489,98 @@ msgstr "" " Veľkosť, o ktorú je zväčšený automaticky sa zväčšujúci priestor tabuľky pri " "zaplnení." -#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:420 +#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:416 msgid "Buffer pool size" msgstr "Veľkosť vyrovnávacej pamäte" -#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:421 +#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:417 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." msgstr "" "Veľkosť pamäte, ktorú InnoDB používa pre cachovanie dát a indexov tabuliek." -#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:112 +#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:108 msgid "Buffer Pool" msgstr "Vyrovnávacia Pamäť" -#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:426 +#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:422 #: server_status.php:306 msgid "InnoDB Status" msgstr "Stav InnoDB" -#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:113 +#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:109 msgid "Buffer Pool Usage" msgstr "Využitie Vyrovnávacej Pamäte" -#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1114 +#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1110 #: server_databases.php:137 server_databases.php:305 server_status.php:414 #: server_status.php:475 server_status.php:496 tbl_printview.php:351 #: tbl_structure.php:697 msgid "Total" msgstr "Celkom" -#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:425 +#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:421 msgid "pages" msgstr "stránok" -#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:343 +#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:339 msgid "Free pages" msgstr "Prázdnych stránok" -#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:259 +#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:255 msgid "Dirty pages" msgstr "Zmenených stránok" -#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:230 +#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:226 msgid "Pages containing data" msgstr "Stránky obsahujúce dáta" -#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:598 +#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:594 msgid "Pages to be flushed" msgstr "Stránok určených k uvoľneniu" -#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:119 +#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:115 msgid "Busy pages" msgstr "Spracovávaných stránok" -#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:467 +#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:463 msgid "Latched pages" msgstr "Uzavretých stránok" -#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:111 +#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:107 msgid "Buffer Pool Activity" msgstr "Aktivita Vyrovnávacej Pamäte" -#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:731 +#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:727 msgid "Read requests" msgstr "Požiadavkov na čítanie" -#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1244 +#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1240 msgid "Write requests" msgstr "Požiadavkov na zápis" -#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:115 +#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:111 msgid "Read misses" msgstr "Výpadkov pri čítaní" -#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:117 +#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:113 msgid "Write waits" msgstr "Čakaní na zápis" -#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:114 +#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:110 msgid "Read misses in %" msgstr "Výpadkov pri čítaní v %" -#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:116 +#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:112 msgid "Write waits in %" msgstr "Čakaní na zápis v %" -#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:522 +#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:518 msgid "Data pointer size" msgstr "Veľkosť smerníka na dáta" -#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:523 +#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:519 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." @@ -2579,11 +2589,11 @@ msgstr "" "MyISAM tabuliek príkazom CREATE TABLE, v prípade keď nie je zadaná hodnota " "MAX_ROWS." -#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:528 +#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:524 msgid "Automatic recovery mode" msgstr "Režim automatickej obnovy" -#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:529 +#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:525 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." @@ -2591,11 +2601,11 @@ msgstr "" "Režim automatickej obnovy poškodených MyISAM tabuliek, ktorý sa dá nastaviť " "parametrom --myisam-recover pri spúšťaní servra." -#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:527 +#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:523 msgid "Maximum size for temporary sort files" msgstr "Maximálna veľkosť dočasných zoraďovacích súborov" -#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:526 +#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:522 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " @@ -2605,11 +2615,11 @@ msgstr "" "MyISAM indexu (počas vykonávania príkazov REPAIR TABLE, ALTER TABLE alebo " "LOAD DATA INFILE)." -#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:525 +#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:521 msgid "Maximum size for temporary files on index creation" msgstr "Maximálna veľkosť dočasných súborov pre vytvorenie indexu" -#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:524 +#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:520 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " @@ -2618,11 +2628,11 @@ msgstr "" "Ak je veľkosť dočasného súboru, použitého pre rýchlejšie vytváranie MyISAM " "indexov, väčšia ako pri použití cache, použije sa metóda cachovania indexu." -#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:531 +#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:527 msgid "Repair threads" msgstr "Opravné vlákna" -#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:530 +#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:526 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." @@ -2630,11 +2640,11 @@ msgstr "" "Ak je táto hodnota vyššia ako 1, počas procesu Opravy Zoradením sú indexy " "MyISAM tabuľky vytvárané paralelne (každý index vo svojom vlákne)." -#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:533 +#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:529 msgid "Sort buffer size" msgstr "Veľkosť zoraďovacej pamäte" -#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:532 +#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:528 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." @@ -2643,72 +2653,72 @@ msgstr "" "príkazu REPAIR TABLE, alebo pri vytváraní indexov príkazmi CREATE INDEX " "alebo ALTER TABLE." -#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:620 +#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:616 msgid "Index cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:619 +#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:615 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." msgstr "" -#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:630 +#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:626 msgid "Record cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:629 +#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:625 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " "to the handle data (.xtd) and row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:624 +#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:620 msgid "Log cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:623 +#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:619 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:628 +#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:624 msgid "Log file threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:627 +#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:623 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:634 +#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:630 msgid "Transaction buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:633 +#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:629 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." msgstr "" -#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:611 +#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:607 msgid "Checkpoint frequency" msgstr "" -#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:612 +#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:608 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." msgstr "" -#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:615 +#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:611 msgid "Data log threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:616 +#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:612 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -2716,49 +2726,49 @@ msgid "" "that can be stored in the database." msgstr "" -#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:618 +#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:614 msgid "Garbage threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:617 +#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:613 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." msgstr "" -#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:622 +#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:618 #, fuzzy msgid "Log buffer size" msgstr "Veľkosť zoraďovacej pamäte" -#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:621 +#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:617 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " "required to write a data log." msgstr "" -#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:613 +#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:609 msgid "Data file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:614 +#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:610 msgid "The grow size of the handle data (.xtd) files." msgstr "" -#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:632 +#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:628 msgid "Row file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:631 +#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:627 msgid "The grow size of the row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:626 +#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:622 msgid "Log file count" msgstr "" -#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:625 +#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:621 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -2768,19 +2778,19 @@ msgstr "" #: libraries/export/htmlword.php:132 libraries/export/odt.php:168 #: libraries/export/sql.php:881 libraries/export/texytext.php:130 -#: libraries/messages.inc.php:275 +#: libraries/messages.inc.php:271 msgid "Dumping data for table" msgstr "Sťahujem dáta pre tabuľku" #: libraries/export/htmlword.php:185 libraries/export/odt.php:238 #: libraries/export/sql.php:785 libraries/export/texytext.php:177 -#: libraries/messages.inc.php:1086 +#: libraries/messages.inc.php:1082 msgid "Table structure for table" msgstr "Štruktúra tabuľky pre tabuľku" #: libraries/export/latex.php:125 libraries/export/sql.php:232 #: libraries/export/xml.php:102 libraries/header_printview.inc.php:57 -#: libraries/messages.inc.php:381 libraries/replication_gui.lib.php:63 +#: libraries/messages.inc.php:377 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:170 libraries/replication_gui.lib.php:265 #: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325 #: server_privileges.php:692 server_privileges.php:695 @@ -2792,186 +2802,186 @@ msgstr "Hostiteľ" #: libraries/export/latex.php:130 libraries/export/sql.php:233 #: libraries/export/xml.php:107 libraries/header_printview.inc.php:59 -#: libraries/messages.inc.php:354 +#: libraries/messages.inc.php:350 msgid "Generation Time" msgstr "Vygenerované:" #: libraries/export/latex.php:131 libraries/export/sql.php:235 -#: libraries/export/xml.php:108 libraries/messages.inc.php:864 main.php:186 +#: libraries/export/xml.php:108 libraries/messages.inc.php:860 main.php:186 msgid "Server version" msgstr "Verzia serveru" #: libraries/export/latex.php:132 libraries/export/sql.php:236 -#: libraries/export/xml.php:109 libraries/messages.inc.php:651 +#: libraries/export/xml.php:109 libraries/messages.inc.php:647 msgid "PHP Version" msgstr "Verzia PHP" #: libraries/export/latex.php:201 libraries/export/sql.php:868 -#: libraries/messages.inc.php:226 server_databases.php:127 +#: libraries/messages.inc.php:222 server_databases.php:127 #: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317 #: tbl_structure.php:666 msgid "Data" msgstr "Dáta" -#: libraries/export/odt.php:318 libraries/messages.inc.php:506 +#: libraries/export/odt.php:318 libraries/messages.inc.php:502 #: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "MIME typ" -#: libraries/export/sql.php:387 libraries/messages.inc.php:711 +#: libraries/export/sql.php:387 libraries/messages.inc.php:707 msgid "Procedures" msgstr "Procedúry" -#: libraries/export/sql.php:401 libraries/messages.inc.php:348 +#: libraries/export/sql.php:401 libraries/messages.inc.php:344 msgid "Functions" msgstr "Funkcie" -#: libraries/export/sql.php:618 libraries/messages.inc.php:174 +#: libraries/export/sql.php:618 libraries/messages.inc.php:170 msgid "Constraints for dumped tables" msgstr "Obmedzenie pre exportované tabuľky" -#: libraries/export/sql.php:627 libraries/messages.inc.php:175 +#: libraries/export/sql.php:627 libraries/messages.inc.php:171 msgid "Constraints for table" msgstr "Obmedzenie pre tabuľku" -#: libraries/export/sql.php:727 libraries/messages.inc.php:512 +#: libraries/export/sql.php:727 libraries/messages.inc.php:508 msgid "MIME TYPES FOR TABLE" msgstr "MIME TYPY PRE TABUĽKU" -#: libraries/export/sql.php:739 libraries/messages.inc.php:743 +#: libraries/export/sql.php:739 libraries/messages.inc.php:739 msgid "RELATIONS FOR TABLE" msgstr "PREPOJENIA PRE TABUĽKU" -#: libraries/export/sql.php:796 libraries/messages.inc.php:1178 +#: libraries/export/sql.php:796 libraries/messages.inc.php:1174 #: libraries/tbl_triggers.lib.php:19 msgid "Triggers" msgstr "" -#: libraries/export/sql.php:808 libraries/messages.inc.php:1046 +#: libraries/export/sql.php:808 libraries/messages.inc.php:1042 #, fuzzy msgid "Structure for view" msgstr "Iba štruktúru" -#: libraries/export/sql.php:817 libraries/messages.inc.php:1029 +#: libraries/export/sql.php:817 libraries/messages.inc.php:1025 msgid "Stand-in structure for view" msgstr "" #: libraries/footer.inc.php:184 libraries/footer.inc.php:195 -#: libraries/footer.inc.php:198 libraries/messages.inc.php:586 +#: libraries/footer.inc.php:198 libraries/messages.inc.php:582 msgid "Open new phpMyAdmin window" msgstr "Otvoriť nové okno phpMyAdmina" -#: libraries/header.inc.php:115 libraries/messages.inc.php:542 +#: libraries/header.inc.php:115 libraries/messages.inc.php:538 #, fuzzy msgid "New table" msgstr "Žiadne tabuľky" #: libraries/header_printview.inc.php:50 libraries/header_printview.inc.php:55 -#: libraries/messages.inc.php:1024 +#: libraries/messages.inc.php:1020 msgid "SQL result" msgstr "výsledok SQL" -#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:350 +#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:346 msgid "Generated by" msgstr "Vygenerované" #: libraries/header_printview.inc.php:63 libraries/import.lib.php:145 -#: libraries/messages.inc.php:820 navigation.php:652 navigation.php:674 +#: libraries/messages.inc.php:816 navigation.php:652 navigation.php:674 #: server_databases.php:122 tbl_printview.php:394 tbl_structure.php:366 #: tbl_structure.php:778 msgid "Rows" msgstr "Riadkov" -#: libraries/import.lib.php:150 libraries/messages.inc.php:285 sql.php:520 +#: libraries/import.lib.php:150 libraries/messages.inc.php:281 sql.php:520 #: tbl_change.php:181 tbl_get_field.php:35 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL vrátil prázdny výsledok (tj. nulový počet riadkov)." -#: libraries/import.lib.php:1078 libraries/messages.inc.php:399 +#: libraries/import.lib.php:1078 libraries/messages.inc.php:395 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "Nasledujúce tabuľky boli vytvorené alebo zmenené. Teraz možete:" -#: libraries/import.lib.php:1079 libraries/messages.inc.php:400 +#: libraries/import.lib.php:1079 libraries/messages.inc.php:396 msgid "View a structure`s contents by clicking on its name" msgstr "Zobraziť obsah tabuľky kliknuťím na jej názov" -#: libraries/import.lib.php:1080 libraries/messages.inc.php:401 +#: libraries/import.lib.php:1080 libraries/messages.inc.php:397 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "Zmeniť ľubovolné nastavenia kliknutím na odkaz \"Nastavenia\"" -#: libraries/import.lib.php:1081 libraries/messages.inc.php:402 +#: libraries/import.lib.php:1081 libraries/messages.inc.php:398 msgid "Edit its structure by following the \"Structure\" link" msgstr "Upraviť štruktúru kliknutím na odkaz \"Štruktúra\"" -#: libraries/import.lib.php:1084 libraries/messages.inc.php:362 +#: libraries/import.lib.php:1084 libraries/messages.inc.php:358 msgid "Go to database" msgstr "Prejsť do databázy" #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:869 +#: libraries/messages.inc.php:865 msgid "settings" msgstr "nastavenia" -#: libraries/import.lib.php:1106 libraries/messages.inc.php:363 +#: libraries/import.lib.php:1106 libraries/messages.inc.php:359 msgid "Go to table" msgstr "Prejsť do tabuľky" -#: libraries/import.lib.php:1109 libraries/messages.inc.php:1047 +#: libraries/import.lib.php:1109 libraries/messages.inc.php:1043 #, fuzzy msgid "structure" msgstr "Štruktúra" -#: libraries/import.lib.php:1115 libraries/messages.inc.php:364 +#: libraries/import.lib.php:1115 libraries/messages.inc.php:360 msgid "Go to view" msgstr "Prejsť na Prejsť na pohľad" #: libraries/import/csv.php:58 libraries/import/csv.php:70 #: libraries/import/csv.php:74 libraries/import/csv.php:78 -#: libraries/messages.inc.php:442 +#: libraries/messages.inc.php:438 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "Chybný parameter pre CSV import: %s" -#: libraries/import/csv.php:59 libraries/messages.inc.php:323 +#: libraries/import/csv.php:59 libraries/messages.inc.php:319 msgid "Fields terminated by" msgstr "Polia ukončené" -#: libraries/import/csv.php:71 libraries/messages.inc.php:320 +#: libraries/import/csv.php:71 libraries/messages.inc.php:316 msgid "Fields enclosed by" msgstr "Polia uzatvorené" -#: libraries/import/csv.php:75 libraries/messages.inc.php:321 +#: libraries/import/csv.php:75 libraries/messages.inc.php:317 msgid "Fields escaped by" msgstr "Polia uvedené pomocou" -#: libraries/import/csv.php:79 libraries/messages.inc.php:481 +#: libraries/import/csv.php:79 libraries/messages.inc.php:477 msgid "Lines terminated by" msgstr "Riadky ukončené" -#: libraries/import/csv.php:119 libraries/messages.inc.php:439 +#: libraries/import/csv.php:119 libraries/messages.inc.php:435 #, php-format msgid "Invalid column (%s) specified!" msgstr "Bol zadaný chybný stĺpec (%s)!" #: libraries/import/csv.php:177 libraries/import/csv.php:424 -#: libraries/messages.inc.php:441 +#: libraries/messages.inc.php:437 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "Chybný formát v CSV vstupe na riadku %d." -#: libraries/import/csv.php:312 libraries/messages.inc.php:440 +#: libraries/import/csv.php:312 libraries/messages.inc.php:436 #, php-format msgid "Invalid field count in CSV input on line %d." msgstr "Chybný počet položiek v CSV vstupe na riadku %d." -#: libraries/import/ldi.php:55 libraries/messages.inc.php:446 +#: libraries/import/ldi.php:55 libraries/messages.inc.php:442 msgid "This plugin does not support compressed imports!" msgstr "Tento plug-in nepodporuje import komprimovaných súborov!" #: libraries/import/xml.php:74 libraries/import/xml.php:130 -#: libraries/messages.inc.php:1247 +#: libraries/messages.inc.php:1243 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -3001,326 +3011,316 @@ msgstr "" msgid "ltr" msgstr "ltr" -#. l10n: Thousands separator -#: libraries/messages.inc.php:21 -msgid "," -msgstr " " - -#. l10n: Decimal separator -#: libraries/messages.inc.php:23 -msgid "." -msgstr "," - -#: libraries/messages.inc.php:25 server_status.php:461 +#: libraries/messages.inc.php:21 server_status.php:461 msgid "Aborted" msgstr "Prerušené" -#: libraries/messages.inc.php:28 main.php:68 +#: libraries/messages.inc.php:24 main.php:68 msgid "Actions" msgstr "Akcie" -#: libraries/messages.inc.php:34 libraries/tbl_properties.inc.php:780 +#: libraries/messages.inc.php:30 libraries/tbl_properties.inc.php:780 #: tbl_structure.php:543 #, php-format msgid "Add %s field(s)" msgstr "Pridať %s položiek" -#: libraries/messages.inc.php:35 +#: libraries/messages.inc.php:31 msgid "Add custom comment into header (\\n splits lines)" msgstr "Pridať vlastný komentár do hlavičky (\\n oddeľuje riadky)" -#: libraries/messages.inc.php:36 +#: libraries/messages.inc.php:32 msgid "Add into comments" msgstr "Pridať do komentárov" -#: libraries/messages.inc.php:37 tbl_structure.php:541 +#: libraries/messages.inc.php:33 tbl_structure.php:541 msgid "Add new field" msgstr "Pridať nové pole" -#: libraries/messages.inc.php:38 server_privileges.php:1886 +#: libraries/messages.inc.php:34 server_privileges.php:1886 msgid "Add privileges on the following database" msgstr "Pridať oprávnenia pre nasledujúcu databázu" -#: libraries/messages.inc.php:39 server_privileges.php:1907 +#: libraries/messages.inc.php:35 server_privileges.php:1907 msgid "Add privileges on the following table" msgstr "Pridať oprávnenia pre nasledujúcu tabuľku" -#: libraries/messages.inc.php:40 tbl_select.php:288 +#: libraries/messages.inc.php:36 tbl_select.php:288 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Pridať vyhľadávacie parametre (obsah dopytu po \"where\" príkaze):" -#: libraries/messages.inc.php:41 tbl_indexes.php:251 +#: libraries/messages.inc.php:37 tbl_indexes.php:251 #, php-format msgid "Add to index  %s column(s)" msgstr "Pridať do indexu  %s stĺpec" -#: libraries/messages.inc.php:42 server_privileges.php:1570 +#: libraries/messages.inc.php:38 server_privileges.php:1570 #: server_privileges.php:1594 server_privileges.php:1988 #: server_privileges.php:2177 msgid "Add a new User" msgstr "Pridať nového používateľa" -#: libraries/messages.inc.php:43 server_privileges.php:931 +#: libraries/messages.inc.php:39 server_privileges.php:931 msgid "You have added a new user." msgstr "Používateľ bol pridaný." -#: libraries/messages.inc.php:44 server_privileges.php:571 +#: libraries/messages.inc.php:40 server_privileges.php:571 msgid "Administration" msgstr "Administrácia" -#: libraries/messages.inc.php:45 tbl_structure.php:557 +#: libraries/messages.inc.php:41 tbl_structure.php:557 #, php-format msgid "After %s" msgstr "Po %s" -#: libraries/messages.inc.php:46 tbl_change.php:1147 +#: libraries/messages.inc.php:42 tbl_change.php:1147 msgid "Go back to previous page" msgstr "Späť" -#: libraries/messages.inc.php:47 tbl_change.php:1148 +#: libraries/messages.inc.php:43 tbl_change.php:1148 msgid "Insert another new row" msgstr "Vložiť nový záznam" -#: libraries/messages.inc.php:48 tbl_change.php:1160 +#: libraries/messages.inc.php:44 tbl_change.php:1160 msgid "Edit next row" msgstr "Upraviť nasledujúci riadok" -#: libraries/messages.inc.php:49 tbl_change.php:1152 +#: libraries/messages.inc.php:45 tbl_change.php:1152 msgid "Go back to this page" msgstr "Späť na túto stránku" -#: libraries/messages.inc.php:50 querywindow.php:115 +#: libraries/messages.inc.php:46 querywindow.php:115 msgid "All" msgstr "Všetko" -#: libraries/messages.inc.php:53 tbl_operations.php:249 +#: libraries/messages.inc.php:49 tbl_operations.php:249 msgid "Alter table order by" msgstr "Zmeniť poradie tabuľky podľa" -#: libraries/messages.inc.php:54 tbl_operations.php:660 +#: libraries/messages.inc.php:50 tbl_operations.php:660 msgid "Analyze" msgstr "Analyzovať" -#: libraries/messages.inc.php:57 +#: libraries/messages.inc.php:53 msgid "and" msgstr "a" -#: libraries/messages.inc.php:59 pmd_general.php:87 +#: libraries/messages.inc.php:55 pmd_general.php:87 msgid "Angular links" msgstr "Pravouhlé spoje" -#: libraries/messages.inc.php:60 tbl_structure.php:401 tbl_structure.php:415 +#: libraries/messages.inc.php:56 tbl_structure.php:401 tbl_structure.php:415 #: tbl_structure.php:429 #, php-format msgid "An index has been added on %s" msgstr "Bol pridaný index pre %s" -#: libraries/messages.inc.php:61 server_privileges.php:1521 +#: libraries/messages.inc.php:57 server_privileges.php:1521 #: server_privileges.php:2123 msgid "Any" msgstr "Akýkoľvek" -#: libraries/messages.inc.php:62 libraries/replication_gui.lib.php:298 +#: libraries/messages.inc.php:58 libraries/replication_gui.lib.php:298 #: server_privileges.php:725 msgid "Any host" msgstr "Akýkoľvek hostiteľ" -#: libraries/messages.inc.php:63 libraries/replication_gui.lib.php:250 +#: libraries/messages.inc.php:59 libraries/replication_gui.lib.php:250 #: server_privileges.php:677 msgid "Any user" msgstr "Akýkoľvek používateľ" -#: libraries/messages.inc.php:64 server_synchronize.php:449 +#: libraries/messages.inc.php:60 server_synchronize.php:449 #: server_synchronize.php:894 msgid "Apply Selected Changes" msgstr "Aplikovať Vybrané Zmeny" -#: libraries/messages.inc.php:66 tbl_structure.php:386 +#: libraries/messages.inc.php:62 tbl_structure.php:386 #, php-format msgid "A primary key has been added on %s" msgstr "Bol pridaný primárny kľúč pre %s" -#: libraries/messages.inc.php:67 libraries/mysql_charsets.lib.php:368 +#: libraries/messages.inc.php:63 libraries/mysql_charsets.lib.php:368 msgid "Arabic" msgstr "Arabština" -#: libraries/messages.inc.php:68 libraries/mysql_charsets.lib.php:359 +#: libraries/messages.inc.php:64 libraries/mysql_charsets.lib.php:359 msgid "Armenian" msgstr "Arménština" -#: libraries/messages.inc.php:70 libraries/tbl_properties.inc.php:394 +#: libraries/messages.inc.php:66 libraries/tbl_properties.inc.php:394 msgid "As defined:" msgstr "Podľa zadania:" -#: libraries/messages.inc.php:71 tbl_structure.php:556 +#: libraries/messages.inc.php:67 tbl_structure.php:556 msgid "At Beginning of Table" msgstr "Na začiatku tabuľky" -#: libraries/messages.inc.php:72 tbl_structure.php:555 +#: libraries/messages.inc.php:68 tbl_structure.php:555 msgid "At End of Table" msgstr "Na konci tabuľky" -#: libraries/messages.inc.php:73 libraries/tbl_properties.inc.php:108 +#: libraries/messages.inc.php:69 libraries/tbl_properties.inc.php:108 #: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:144 #: tbl_structure.php:180 msgid "Attributes" msgstr "Atribúty" -#: libraries/messages.inc.php:74 pdf_pages.php:303 pdf_pages.php:306 +#: libraries/messages.inc.php:70 pdf_pages.php:303 pdf_pages.php:306 msgid "Automatic layout" msgstr "Automatické rozvrhnutie" -#: libraries/messages.inc.php:77 libraries/mysql_charsets.lib.php:354 +#: libraries/messages.inc.php:73 libraries/mysql_charsets.lib.php:354 msgid "Baltic" msgstr "Baltické" -#: libraries/messages.inc.php:78 libraries/sqlparser.lib.php:175 +#: libraries/messages.inc.php:74 libraries/sqlparser.lib.php:175 msgid "BEGIN CUT" msgstr "ZAČIATOK VÝSEKU" -#: libraries/messages.inc.php:79 libraries/sqlparser.lib.php:179 +#: libraries/messages.inc.php:75 libraries/sqlparser.lib.php:179 msgid "BEGIN RAW" msgstr "ZAČIATOK TOKU" -#: libraries/messages.inc.php:80 libraries/mysql_charsets.lib.php:201 +#: libraries/messages.inc.php:76 libraries/mysql_charsets.lib.php:201 #: libraries/mysql_charsets.lib.php:402 tbl_change.php:518 msgid "Binary" msgstr "Binárny" -#: libraries/messages.inc.php:81 tbl_change.php:894 +#: libraries/messages.inc.php:77 tbl_change.php:894 msgid "Binary - do not edit" msgstr "Binárny - neupravujte " -#: libraries/messages.inc.php:82 libraries/server_links.inc.php:76 +#: libraries/messages.inc.php:78 libraries/server_links.inc.php:76 #: server_binlog.php:110 server_status.php:253 test/theme.php:121 msgid "Binary log" msgstr "Binárny log" -#: libraries/messages.inc.php:83 server_binlog.php:217 +#: libraries/messages.inc.php:79 server_binlog.php:217 msgid "Event type" msgstr "Typ udalosti" -#: libraries/messages.inc.php:84 server_binlog.php:220 +#: libraries/messages.inc.php:80 server_binlog.php:220 msgid "Information" msgstr "Informácia" -#: libraries/messages.inc.php:85 server_binlog.php:215 +#: libraries/messages.inc.php:81 server_binlog.php:215 msgid "Log name" msgstr "Názov logu" -#: libraries/messages.inc.php:86 server_binlog.php:219 +#: libraries/messages.inc.php:82 server_binlog.php:219 msgid "Original position" msgstr "Pôvodná pozícia" -#: libraries/messages.inc.php:87 server_binlog.php:216 +#: libraries/messages.inc.php:83 server_binlog.php:216 msgid "Position" msgstr "Pozícia" -#: libraries/messages.inc.php:88 libraries/replication_gui.lib.php:169 +#: libraries/messages.inc.php:84 libraries/replication_gui.lib.php:169 #: server_binlog.php:218 msgid "Server ID" msgstr "ID servra" -#: libraries/messages.inc.php:92 +#: libraries/messages.inc.php:88 #, fuzzy msgctxt "$strBLOBRepositoryDisabled" msgid "Disabled" msgstr "Vypnuté" -#: libraries/messages.inc.php:95 +#: libraries/messages.inc.php:91 #, fuzzy msgctxt "$strBLOBRepositoryEnabled" msgid "Enabled" msgstr "Zapnuté" -#: libraries/messages.inc.php:97 tbl_change.php:888 +#: libraries/messages.inc.php:93 tbl_change.php:888 msgid "Remove BLOB Repository Reference" msgstr "" -#: libraries/messages.inc.php:98 +#: libraries/messages.inc.php:94 #, fuzzy msgctxt "$strBLOBRepositoryRepair" msgid "Repair" msgstr "Opraviť" -#: libraries/messages.inc.php:99 tbl_change.php:987 +#: libraries/messages.inc.php:95 tbl_change.php:987 msgid "Upload to BLOB repository" msgstr "" -#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:359 +#: libraries/messages.inc.php:96 libraries/sql_query_form.lib.php:359 #: sql.php:677 msgid "Let every user access this bookmark" msgstr "Dovoliť používať túto položku všetkým používateľom" -#: libraries/messages.inc.php:103 sql.php:671 +#: libraries/messages.inc.php:99 sql.php:671 msgid "Label" msgstr "Názov" -#: libraries/messages.inc.php:104 libraries/sql_query_form.lib.php:433 +#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:433 msgid "Bookmarked SQL query" msgstr "Obľúbený SQL dopyt" -#: libraries/messages.inc.php:105 libraries/sql_query_form.lib.php:365 +#: libraries/messages.inc.php:101 libraries/sql_query_form.lib.php:365 msgid "Replace existing bookmark of same name" msgstr "Prepísať existujúci príkaz s rovnakým menom" -#: libraries/messages.inc.php:106 libraries/sql_query_form.lib.php:352 +#: libraries/messages.inc.php:102 libraries/sql_query_form.lib.php:352 #: sql.php:665 sql.php:666 sql.php:683 msgid "Bookmark this SQL query" msgstr "Pridať tento SQL dopyt do obľúbených" -#: libraries/messages.inc.php:107 libraries/sql_query_form.lib.php:466 +#: libraries/messages.inc.php:103 libraries/sql_query_form.lib.php:466 msgid "View only" msgstr "Iba prezrieť" -#: libraries/messages.inc.php:109 tbl_structure.php:161 +#: libraries/messages.inc.php:105 tbl_structure.php:161 msgid "Browse distinct values" msgstr "Prechádzať iné hodnoty" -#: libraries/messages.inc.php:110 tbl_change.php:252 tbl_select.php:27 +#: libraries/messages.inc.php:106 tbl_change.php:252 tbl_select.php:27 #: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34 msgid "Browse foreign values" msgstr "Prejsť hodnoty cudzích kľúčov" -#: libraries/messages.inc.php:118 libraries/mysql_charsets.lib.php:213 +#: libraries/messages.inc.php:114 libraries/mysql_charsets.lib.php:213 msgid "Bulgarian" msgstr "Bulharsky" -#: libraries/messages.inc.php:120 +#: libraries/messages.inc.php:116 msgid "\"bzipped\"" msgstr "\"bzipped\"" -#: libraries/messages.inc.php:122 +#: libraries/messages.inc.php:118 msgid "Calendar" msgstr "Kalendár" -#: libraries/messages.inc.php:129 tbl_indexes.php:75 +#: libraries/messages.inc.php:125 tbl_indexes.php:75 msgid "Can't rename index to PRIMARY!" msgstr "Nie je možné premenovať index na PRIMARY!" -#: libraries/messages.inc.php:132 libraries/mysql_charsets.lib.php:223 +#: libraries/messages.inc.php:128 libraries/mysql_charsets.lib.php:223 #: libraries/mysql_charsets.lib.php:409 msgid "case-insensitive" msgstr "nerozlišovať veľké a malé písmená" -#: libraries/messages.inc.php:133 libraries/mysql_charsets.lib.php:226 +#: libraries/messages.inc.php:129 libraries/mysql_charsets.lib.php:226 #: libraries/mysql_charsets.lib.php:411 msgid "case-sensitive" msgstr "rozlišovať veľké a malé písmená" -#: libraries/messages.inc.php:134 libraries/mysql_charsets.lib.php:332 +#: libraries/messages.inc.php:130 libraries/mysql_charsets.lib.php:332 msgid "Central European" msgstr "Stredná Európa" -#: libraries/messages.inc.php:136 server_privileges.php:1969 +#: libraries/messages.inc.php:132 server_privileges.php:1969 msgid "... keep the old one." msgstr "... zachovať pôvodného používateľa." -#: libraries/messages.inc.php:137 server_privileges.php:1967 +#: libraries/messages.inc.php:133 server_privileges.php:1967 msgid "Create a new user with the same privileges and ..." msgstr "Vytvoriť používateľa s rovnakými právami a..." -#: libraries/messages.inc.php:138 server_privileges.php:1972 +#: libraries/messages.inc.php:134 server_privileges.php:1972 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -3328,77 +3328,77 @@ msgstr "" " ... zmazať pôvodného používateľa z tabuliek používateľov a potom " "znovunačítať oprávnenia." -#: libraries/messages.inc.php:139 server_privileges.php:1970 +#: libraries/messages.inc.php:135 server_privileges.php:1970 msgid " ... delete the old one from the user tables." msgstr " ... zmazať pôvodného používateľa z tabuliek používateľov." -#: libraries/messages.inc.php:140 server_privileges.php:1971 +#: libraries/messages.inc.php:136 server_privileges.php:1971 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "" " ... odobrať všetky oprávnenia pôvodnému používateľovi a následne ho zmazať." -#: libraries/messages.inc.php:141 server_privileges.php:1964 +#: libraries/messages.inc.php:137 server_privileges.php:1964 msgid "Change Login Information / Copy User" msgstr "Zmeniť informácie o používateľovi / Kopírovať používateľa" -#: libraries/messages.inc.php:144 libraries/mysql_charsets.lib.php:107 +#: libraries/messages.inc.php:140 libraries/mysql_charsets.lib.php:107 msgid "Charset" msgstr "Znaková sada" -#: libraries/messages.inc.php:146 server_collations.php:40 +#: libraries/messages.inc.php:142 server_collations.php:40 msgid "Character Sets and Collations" msgstr "Znakové sady a Zotriedenia" -#: libraries/messages.inc.php:147 libraries/server_links.inc.php:57 +#: libraries/messages.inc.php:143 libraries/server_links.inc.php:57 #: test/theme.php:109 msgid "Charsets" msgstr "Znakové sady" -#: libraries/messages.inc.php:149 tbl_operations.php:661 +#: libraries/messages.inc.php:145 tbl_operations.php:661 msgid "Check" msgstr "Skontrolovať" -#: libraries/messages.inc.php:151 server_databases.php:293 +#: libraries/messages.inc.php:147 server_databases.php:293 #: server_databases.php:294 msgid "Check Privileges" msgstr "Skontrolovať oprávnenia" -#: libraries/messages.inc.php:152 server_databases.php:289 +#: libraries/messages.inc.php:148 server_databases.php:289 #, php-format msgid "Check privileges for database "%s"." msgstr "Skontrolovať oprávnenia pre databázu "%s"." -#: libraries/messages.inc.php:154 pdf_pages.php:261 +#: libraries/messages.inc.php:150 pdf_pages.php:261 msgid "Please choose a page to edit" msgstr "Prosím zvolte si Stránku, ktorú chcete upraviť" -#: libraries/messages.inc.php:157 +#: libraries/messages.inc.php:153 msgid "Displaying Column Comments" msgstr "Zobrazovať komentáre stĺpcov" -#: libraries/messages.inc.php:159 pdf_pages.php:483 view_create.php:148 +#: libraries/messages.inc.php:155 pdf_pages.php:483 view_create.php:148 msgid "Column names" msgstr "Názvy stĺpcov" -#: libraries/messages.inc.php:160 server_privileges.php:1685 +#: libraries/messages.inc.php:156 server_privileges.php:1685 msgid "Column-specific privileges" msgstr "Oprávnenia pre jednotlivé stĺpce" -#: libraries/messages.inc.php:164 +#: libraries/messages.inc.php:160 msgid "MySQL 4.0 compatible" msgstr "Kompatibilné s MySQL 4.0" -#: libraries/messages.inc.php:165 +#: libraries/messages.inc.php:161 msgid "Complete inserts" msgstr "Úplné vloženie" -#: libraries/messages.inc.php:168 +#: libraries/messages.inc.php:164 #, php-format msgid "Could not load default configuration from: \"%1$s\"" msgstr "Nepodarilo sa načítať prednastavenú konfiguráciu zo súboru: \"%1$s\"" -#: libraries/messages.inc.php:169 main.php:306 +#: libraries/messages.inc.php:165 main.php:306 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " @@ -3408,169 +3408,169 @@ msgstr "" "vašom phpMyAdmin adresári. Mali by ste ho odstrániť, ak je phpMyAdmin " "nakonfigurovaný." -#: libraries/messages.inc.php:171 pdf_schema.php:672 +#: libraries/messages.inc.php:167 pdf_schema.php:672 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Prosím skonfigurujte koordináty pre tabuľku %s" -#: libraries/messages.inc.php:173 server_status.php:433 +#: libraries/messages.inc.php:169 server_status.php:433 msgid "Connections" msgstr "Spojenia" -#: libraries/messages.inc.php:179 tbl_operations.php:509 +#: libraries/messages.inc.php:175 tbl_operations.php:509 msgid "Copy table to (database.table):" msgstr "Skopírovať tabuľku do (databáza.tabuľka):" -#: libraries/messages.inc.php:180 tbl_move_copy.php:58 +#: libraries/messages.inc.php:176 tbl_move_copy.php:58 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabuľka %s bola skorírovaná do %s." -#: libraries/messages.inc.php:181 tbl_move_copy.php:48 +#: libraries/messages.inc.php:177 tbl_move_copy.php:48 msgid "Can't copy table to same one!" msgstr "Nedá sa skopírovať tabuľka sama do seba!" -#: libraries/messages.inc.php:182 server_synchronize.php:94 +#: libraries/messages.inc.php:178 server_synchronize.php:94 msgid "Could not connect to the source" msgstr "Nepodarilo sa pripojiť k zdroju" -#: libraries/messages.inc.php:183 server_synchronize.php:97 +#: libraries/messages.inc.php:179 server_synchronize.php:97 msgid "Could not connect to the target" msgstr "Nepodarilo sa pripojiť k cieľu" -#: libraries/messages.inc.php:184 server_processlist.php:24 +#: libraries/messages.inc.php:180 server_processlist.php:24 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "Neporadilo za zabiť vlákno %s. Jeho beh bol pravdepodobne už ukončený." -#: libraries/messages.inc.php:187 +#: libraries/messages.inc.php:183 #, php-format msgid "Create an index on %s columns" msgstr "Vytvoriť index na %s stĺpcoch" -#: libraries/messages.inc.php:188 tbl_indexes.php:160 +#: libraries/messages.inc.php:184 tbl_indexes.php:160 msgid "Create a new index" msgstr "Vytvoriť nový index" -#: libraries/messages.inc.php:191 pdf_pages.php:297 pmd_pdf.php:114 +#: libraries/messages.inc.php:187 pdf_pages.php:297 pmd_pdf.php:114 msgid "Create a page" msgstr "Vytvoriť novú Stránku" -#: libraries/messages.inc.php:192 +#: libraries/messages.inc.php:188 msgid "Creation of PDFs" msgstr "Vytváranie PDF" -#: libraries/messages.inc.php:193 pmd_general.php:74 pmd_general.php:306 +#: libraries/messages.inc.php:189 pmd_general.php:74 pmd_general.php:306 msgid "Create relation" msgstr "Vytvoriť relaciu" -#: libraries/messages.inc.php:194 pmd_general.php:71 +#: libraries/messages.inc.php:190 pmd_general.php:71 #: server_synchronize.php:429 server_synchronize.php:872 msgid "Create table" msgstr "Vytvoriť tabuľku" -#: libraries/messages.inc.php:195 +#: libraries/messages.inc.php:191 #, fuzzy msgctxt "$strCreateTableShort" msgid "Create table" msgstr "Vytvoriť tabuľku" -#: libraries/messages.inc.php:196 server_privileges.php:1994 +#: libraries/messages.inc.php:192 server_privileges.php:1994 msgid "Database for user" msgstr "Databáza pre používateľa" -#: libraries/messages.inc.php:197 server_privileges.php:1999 +#: libraries/messages.inc.php:193 server_privileges.php:1999 msgid "Create database with same name and grant all privileges" msgstr "Vytvoriť databázu s rovnakým menom a prideliť všetky oprávnenia" -#: libraries/messages.inc.php:198 +#: libraries/messages.inc.php:194 #, fuzzy msgctxt "$strCreateUserDatabaseNone" msgid "None" msgstr "Žiadny" -#: libraries/messages.inc.php:199 server_privileges.php:2003 +#: libraries/messages.inc.php:195 server_privileges.php:2003 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Prideliť všetky oprávnenia na databázu "%s"" -#: libraries/messages.inc.php:200 server_privileges.php:2000 +#: libraries/messages.inc.php:196 server_privileges.php:2000 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Prideliť všetky oprávnenia pomocou masky (používateľ_%)" -#: libraries/messages.inc.php:201 +#: libraries/messages.inc.php:197 msgid "Creation/Update/Check dates" msgstr "Dátum vytvorenia, poslednej zmeny a kontroly" -#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:229 +#: libraries/messages.inc.php:199 libraries/mysql_charsets.lib.php:229 msgid "Croatian" msgstr "Chorvátsky" -#: libraries/messages.inc.php:204 +#: libraries/messages.inc.php:200 msgid "CSV" msgstr "CSV dáta" -#: libraries/messages.inc.php:205 libraries/server_synchronize.lib.php:1343 +#: libraries/messages.inc.php:201 libraries/server_synchronize.lib.php:1343 #: libraries/server_synchronize.lib.php:1369 msgid "Current server" msgstr "Aktuálny server" -#: libraries/messages.inc.php:206 main.php:159 +#: libraries/messages.inc.php:202 main.php:159 msgid "Custom color" msgstr "Vlastná farba" -#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:365 +#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:365 msgid "Cyrillic" msgstr "Cyrilika" -#: libraries/messages.inc.php:208 libraries/mysql_charsets.lib.php:232 +#: libraries/messages.inc.php:204 libraries/mysql_charsets.lib.php:232 msgid "Czech" msgstr "Česky" -#: libraries/messages.inc.php:209 libraries/mysql_charsets.lib.php:383 +#: libraries/messages.inc.php:205 libraries/mysql_charsets.lib.php:383 msgid "Czech-Slovak" msgstr "Čeština/Slovenčina" -#: libraries/messages.inc.php:211 libraries/mysql_charsets.lib.php:235 +#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:235 msgid "Danish" msgstr "Dánsky" -#: libraries/messages.inc.php:214 +#: libraries/messages.inc.php:210 msgid "Database export options" msgstr "Nastavenia exportu databáz" -#: libraries/messages.inc.php:217 server_synchronize.php:122 +#: libraries/messages.inc.php:213 server_synchronize.php:122 #: server_synchronize.php:125 tbl_create.php:82 tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "'%s' databáza neexistuje." -#: libraries/messages.inc.php:219 server_databases.php:63 +#: libraries/messages.inc.php:215 server_databases.php:63 #, php-format msgid "%s databases have been dropped successfully." msgstr "Úspešne zrušených databáz: %s." -#: libraries/messages.inc.php:220 libraries/server_synchronize.lib.php:1341 +#: libraries/messages.inc.php:216 libraries/server_synchronize.lib.php:1341 #: server_synchronize.php:1110 msgid "Source database" msgstr "Zdrojová databáza" -#: libraries/messages.inc.php:221 server_databases.php:88 +#: libraries/messages.inc.php:217 server_databases.php:88 msgid "Databases statistics" msgstr "Štatistiky databázy" -#: libraries/messages.inc.php:222 server_databases.php:362 +#: libraries/messages.inc.php:218 server_databases.php:362 #: server_databases.php:363 msgid "Disable Statistics" msgstr "Skryť štatistiky" -#: libraries/messages.inc.php:223 server_databases.php:358 +#: libraries/messages.inc.php:219 server_databases.php:358 #: server_databases.php:359 msgid "Enable Statistics" msgstr "Zobraziť štatistiky" -#: libraries/messages.inc.php:224 server_databases.php:366 +#: libraries/messages.inc.php:220 server_databases.php:366 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -3578,30 +3578,30 @@ msgstr "" "Poznámka: Aktivovanie štatistík databázy môže spôsobiť značné zvýšenie " "sieťovej prevádzky medzi databázou a web serverom." -#: libraries/messages.inc.php:225 libraries/server_synchronize.lib.php:1367 +#: libraries/messages.inc.php:221 libraries/server_synchronize.lib.php:1367 #: server_synchronize.php:1112 msgid "Target database" msgstr "Cieľová databáza" -#: libraries/messages.inc.php:228 server_synchronize.php:425 +#: libraries/messages.inc.php:224 server_synchronize.php:425 #: server_synchronize.php:868 msgid "Data Difference" msgstr "" -#: libraries/messages.inc.php:231 server_synchronize.php:272 +#: libraries/messages.inc.php:227 server_synchronize.php:272 msgid "Data Synchronization" msgstr "" -#: libraries/messages.inc.php:235 server_privileges.php:526 +#: libraries/messages.inc.php:231 server_privileges.php:526 #: server_privileges.php:1679 msgid "Database-specific privileges" msgstr "Oprávnenia pre jednotlivé databázy" -#: libraries/messages.inc.php:237 server_privileges.php:2136 +#: libraries/messages.inc.php:233 server_privileges.php:2136 msgid "database-specific" msgstr "závislé na databáze" -#: libraries/messages.inc.php:240 libraries/tbl_properties.inc.php:106 +#: libraries/messages.inc.php:236 libraries/tbl_properties.inc.php:106 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" @@ -3609,33 +3609,33 @@ msgstr "" "Pre predvolené hodnoty, prosím zadajte iba jednu hodnotu bez úvodzoviek " "alebo uvádzacích znakov, napr.: a" -#: libraries/messages.inc.php:241 tbl_operations.php:589 +#: libraries/messages.inc.php:237 tbl_operations.php:589 msgid "Defragment table" msgstr "Defragmentovať tabuľku" -#: libraries/messages.inc.php:242 +#: libraries/messages.inc.php:238 msgid "Use delayed inserts" msgstr "Použiť oneskorené vloženia" -#: libraries/messages.inc.php:245 server_privileges.php:1243 +#: libraries/messages.inc.php:241 server_privileges.php:1243 msgid "No users selected for deleting!" msgstr "Na odstránenie neboli vybraní žiadni používatelia!" -#: libraries/messages.inc.php:246 pmd_general.php:372 +#: libraries/messages.inc.php:242 pmd_general.php:372 #, fuzzy msgid "Delete relation" msgstr "Vytvoriť relaciu" -#: libraries/messages.inc.php:248 server_privileges.php:1232 +#: libraries/messages.inc.php:244 server_privileges.php:1232 #, php-format msgid "Deleting %s" msgstr "Odstraňuje sa %s" -#: libraries/messages.inc.php:249 libraries/sql_query_form.lib.php:388 +#: libraries/messages.inc.php:245 libraries/sql_query_form.lib.php:388 msgid "Delimiter" msgstr "Oddeľovač" -#: libraries/messages.inc.php:250 pdf_pages.php:506 +#: libraries/messages.inc.php:246 pdf_pages.php:506 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -3643,149 +3643,149 @@ msgstr "" "Aktuálna stránka sa odkazuje na tabuľky, ktoré už neexistujú, želáte si " "odstrániť tieto odkazy?" -#: libraries/messages.inc.php:254 pmd_help.php:29 +#: libraries/messages.inc.php:250 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." msgstr "" -#: libraries/messages.inc.php:256 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:252 libraries/mysql_charsets.lib.php:247 msgid "dictionary" msgstr "slovník" -#: libraries/messages.inc.php:257 libraries/server_synchronize.lib.php:1348 +#: libraries/messages.inc.php:253 libraries/server_synchronize.lib.php:1348 msgid "Difference" msgstr "" -#: libraries/messages.inc.php:258 pmd_general.php:87 +#: libraries/messages.inc.php:254 pmd_general.php:87 msgid "Direct links" msgstr "Priame odkazy" -#: libraries/messages.inc.php:261 +#: libraries/messages.inc.php:257 msgid "Disable foreign key checks" msgstr "Vypnúť kontrolu cudzích kľúčov" -#: libraries/messages.inc.php:262 +#: libraries/messages.inc.php:258 msgid "Display Features" msgstr "Zobraziť vlastnosti" -#: libraries/messages.inc.php:263 tbl_select.php:301 +#: libraries/messages.inc.php:259 tbl_select.php:301 msgid "Display order:" msgstr "Zobraziť zoradené:" -#: libraries/messages.inc.php:265 tbl_select.php:132 +#: libraries/messages.inc.php:261 tbl_select.php:132 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Vykonať \"dopyt podľa príkladu\" (nahradzujúci znak: \"%\")" -#: libraries/messages.inc.php:266 +#: libraries/messages.inc.php:262 msgid "DocSQL" msgstr "" -#: libraries/messages.inc.php:268 +#: libraries/messages.inc.php:264 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Nepoužívať AUTO_INCREMENT pre nulové hodnoty" -#: libraries/messages.inc.php:273 server_privileges.php:1579 +#: libraries/messages.inc.php:269 server_privileges.php:1579 #: server_privileges.php:1580 server_privileges.php:1581 msgid "Drop the databases that have the same names as the users." msgstr "Odstrániť databázy s rovnakým menom ako majú používatelia." -#: libraries/messages.inc.php:278 tbl_printview.php:382 tbl_structure.php:743 +#: libraries/messages.inc.php:274 tbl_printview.php:382 tbl_structure.php:743 msgid "dynamic" msgstr "dynamický" -#: libraries/messages.inc.php:282 server_privileges.php:1324 +#: libraries/messages.inc.php:278 server_privileges.php:1324 #: server_privileges.php:1610 msgid "Edit Privileges" msgstr "Upraviť oprávnenia" -#: libraries/messages.inc.php:283 tbl_printview.php:341 tbl_structure.php:688 +#: libraries/messages.inc.php:279 tbl_printview.php:341 tbl_structure.php:688 msgid "Effective" msgstr "Efektívny" -#: libraries/messages.inc.php:286 libraries/relation.lib.php:100 +#: libraries/messages.inc.php:282 libraries/relation.lib.php:100 msgid "Enabled" msgstr "Zapnuté" -#: libraries/messages.inc.php:287 +#: libraries/messages.inc.php:283 msgid "Enclose export in a transaction" msgstr "Uzatvoriť príkazy v transakcii" -#: libraries/messages.inc.php:288 libraries/sqlparser.lib.php:177 +#: libraries/messages.inc.php:284 libraries/sqlparser.lib.php:177 msgid "END CUT" msgstr "KONIEC VÝSEKU" -#: libraries/messages.inc.php:290 libraries/sqlparser.lib.php:183 +#: libraries/messages.inc.php:286 libraries/sqlparser.lib.php:183 msgid "END RAW" msgstr "KONIEC TOKU" -#: libraries/messages.inc.php:293 libraries/server_links.inc.php:61 +#: libraries/messages.inc.php:289 libraries/server_links.inc.php:61 #: test/theme.php:113 msgid "Engines" msgstr "Systémy" -#: libraries/messages.inc.php:295 libraries/mysql_charsets.lib.php:238 +#: libraries/messages.inc.php:291 libraries/mysql_charsets.lib.php:238 msgid "English" msgstr "Anglicky" -#: libraries/messages.inc.php:296 server_privileges.php:393 +#: libraries/messages.inc.php:292 server_privileges.php:393 #: server_privileges.php:535 server_privileges.php:1501 msgid " Note: MySQL privilege names are expressed in English " msgstr " Poznámka: názvy MySQL oprávnení sú uvádzané v angličtine. " -#: libraries/messages.inc.php:298 libraries/zip_extension.lib.php:49 +#: libraries/messages.inc.php:294 libraries/zip_extension.lib.php:49 #: libraries/zip_extension.lib.php:51 libraries/zip_extension.lib.php:66 msgid "Error in ZIP archive:" msgstr "Chyba v ZIP archíve:" -#: libraries/messages.inc.php:303 libraries/mysql_charsets.lib.php:241 +#: libraries/messages.inc.php:299 libraries/mysql_charsets.lib.php:241 msgid "Esperanto" msgstr "Esperanto" -#: libraries/messages.inc.php:304 libraries/mysql_charsets.lib.php:244 +#: libraries/messages.inc.php:300 libraries/mysql_charsets.lib.php:244 msgid "Estonian" msgstr "Estónsky" -#: libraries/messages.inc.php:305 libraries/tbl_triggers.lib.php:29 +#: libraries/messages.inc.php:301 libraries/tbl_triggers.lib.php:29 msgid "Event" msgstr "Udalosť" -#: libraries/messages.inc.php:307 +#: libraries/messages.inc.php:303 msgid "Excel edition" msgstr "Verzia Excelu" -#: libraries/messages.inc.php:311 pmd_pdf.php:85 +#: libraries/messages.inc.php:307 pmd_pdf.php:85 msgid "Export/Import to scale" msgstr "" -#: libraries/messages.inc.php:313 +#: libraries/messages.inc.php:309 msgid "Extended inserts" msgstr "Rozšírené vkladanie" -#: libraries/messages.inc.php:314 pdf_schema.php:1267 pdf_schema.php:1288 +#: libraries/messages.inc.php:310 pdf_schema.php:1267 pdf_schema.php:1288 #: tbl_printview.php:147 tbl_structure.php:183 tbl_tracking.php:278 msgid "Extra" msgstr "Extra" -#: libraries/messages.inc.php:316 server_status.php:447 +#: libraries/messages.inc.php:312 server_status.php:447 msgid "Failed attempts" msgstr "Nepodarených pokusov" -#: libraries/messages.inc.php:318 tbl_structure.php:375 +#: libraries/messages.inc.php:314 tbl_structure.php:375 #, php-format msgid "Field %s has been dropped" msgstr "Pole %s bolo odstránené" -#: libraries/messages.inc.php:322 libraries/sql_query_form.lib.php:317 +#: libraries/messages.inc.php:318 libraries/sql_query_form.lib.php:317 msgid "Fields" msgstr "Polia" -#: libraries/messages.inc.php:332 server_binlog.php:136 +#: libraries/messages.inc.php:328 server_binlog.php:136 msgid "Files" msgstr "Súbory" -#: libraries/messages.inc.php:334 server_privileges.php:1597 +#: libraries/messages.inc.php:330 server_privileges.php:1597 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -3798,121 +3798,121 @@ msgstr "" "tieto tabuľky ručne upravené. V tomto prípade sa odporúča vykonať %" "sznovunačítanie práv%s predtým ako budete pokračovať." -#: libraries/messages.inc.php:335 server_status.php:289 +#: libraries/messages.inc.php:331 server_status.php:289 msgid "Flush query cache" msgstr "Vyprázdniť vyrovnávaciu pamäť príkazov" -#: libraries/messages.inc.php:336 +#: libraries/messages.inc.php:332 msgid "Flush the table (\"FLUSH\")" msgstr "Vyprázdniť tabuľku (\"FLUSH\")" -#: libraries/messages.inc.php:337 server_status.php:271 +#: libraries/messages.inc.php:333 server_status.php:271 msgid "Flush (close) all tables" msgstr "Vyprázdniť (uzavrieť) všetky tabuľky" -#: libraries/messages.inc.php:339 tbl_relation.php:279 +#: libraries/messages.inc.php:335 tbl_relation.php:279 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" -#: libraries/messages.inc.php:341 setup/lib/messages.inc.php:88 +#: libraries/messages.inc.php:337 setup/lib/messages.inc.php:88 #: tbl_printview.php:376 tbl_structure.php:738 msgid "Format" msgstr "Formát" -#: libraries/messages.inc.php:344 server_replication.php:325 +#: libraries/messages.inc.php:340 server_replication.php:325 #, fuzzy msgid "Full start" msgstr "Celý text" -#: libraries/messages.inc.php:345 server_replication.php:325 +#: libraries/messages.inc.php:341 server_replication.php:325 msgid "Full stop" msgstr "" -#: libraries/messages.inc.php:347 tbl_change.php:282 tbl_change.php:320 +#: libraries/messages.inc.php:343 tbl_change.php:282 tbl_change.php:320 msgid "Function" msgstr "Funkcia" -#: libraries/messages.inc.php:355 libraries/mysql_charsets.lib.php:377 +#: libraries/messages.inc.php:351 libraries/mysql_charsets.lib.php:377 msgid "Georgian" msgstr "Gruzínčina" -#: libraries/messages.inc.php:356 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:352 libraries/mysql_charsets.lib.php:247 #: libraries/mysql_charsets.lib.php:250 msgid "German" msgstr "Nemecky" -#: libraries/messages.inc.php:357 themes.php:42 +#: libraries/messages.inc.php:353 themes.php:42 msgid "Get more themes!" msgstr "Získať viac tém!" -#: libraries/messages.inc.php:358 server_privileges.php:2134 +#: libraries/messages.inc.php:354 server_privileges.php:2134 msgid "global" msgstr "globálny" -#: libraries/messages.inc.php:359 server_privileges.php:524 +#: libraries/messages.inc.php:355 server_privileges.php:524 #: server_privileges.php:1500 msgid "Global privileges" msgstr "Globálne práva" -#: libraries/messages.inc.php:360 server_variables.php:55 +#: libraries/messages.inc.php:356 server_variables.php:55 #: server_variables.php:89 msgid "Global value" msgstr "Globálna hodnota" -#: libraries/messages.inc.php:365 server_privileges.php:1502 +#: libraries/messages.inc.php:361 server_privileges.php:1502 #: server_privileges.php:1684 server_privileges.php:2033 msgid "Grant" msgstr "Prideliť" -#: libraries/messages.inc.php:366 libraries/mysql_charsets.lib.php:380 +#: libraries/messages.inc.php:362 libraries/mysql_charsets.lib.php:380 msgid "Greek" msgstr "Gréčtina" -#: libraries/messages.inc.php:367 +#: libraries/messages.inc.php:363 msgid "\"gzipped\"" msgstr "\"gzip-ované\"" -#: libraries/messages.inc.php:369 server_status.php:250 +#: libraries/messages.inc.php:365 server_status.php:250 msgid "Handler" msgstr "Manipulačná Rutina" -#: libraries/messages.inc.php:370 server_synchronize.php:464 +#: libraries/messages.inc.php:366 server_synchronize.php:464 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: libraries/messages.inc.php:372 libraries/mysql_charsets.lib.php:374 +#: libraries/messages.inc.php:368 libraries/mysql_charsets.lib.php:374 msgid "Hebrew" msgstr "Hebrejsky" -#: libraries/messages.inc.php:373 pmd_general.php:83 +#: libraries/messages.inc.php:369 pmd_general.php:83 msgid "Help" msgstr "Pomoc" -#: libraries/messages.inc.php:374 +#: libraries/messages.inc.php:370 msgid "Use hexadecimal for BLOB" msgstr "" -#: libraries/messages.inc.php:376 pmd_general.php:120 +#: libraries/messages.inc.php:372 pmd_general.php:120 #, fuzzy msgid "Hide/Show all" msgstr "Zobraziť všetko" -#: libraries/messages.inc.php:377 pmd_general.php:124 +#: libraries/messages.inc.php:373 pmd_general.php:124 msgid "Hide/Show Tables with no relation" msgstr "" -#: libraries/messages.inc.php:378 libraries/navigation_header.inc.php:54 +#: libraries/messages.inc.php:374 libraries/navigation_header.inc.php:54 #: libraries/navigation_header.inc.php:57 #: libraries/navigation_header.inc.php:58 msgid "Home" msgstr "Domov" -#: libraries/messages.inc.php:379 main.php:233 +#: libraries/messages.inc.php:375 main.php:233 msgid "Official Homepage" msgstr "Oficiálne stránky phpMyAdmin" -#: libraries/messages.inc.php:382 libraries/replication_gui.lib.php:327 +#: libraries/messages.inc.php:378 libraries/replication_gui.lib.php:327 #: server_privileges.php:753 msgid "" "When Host table is used, this field is ignored and values stored in Host " @@ -3921,98 +3921,98 @@ msgstr "" "Ak sa použije Host tabuľka, toto políčko je ignorovné a namiesto toho sa " "použijú hodnoty z tabuľky Host." -#: libraries/messages.inc.php:383 +#: libraries/messages.inc.php:379 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/messages.inc.php:384 libraries/mysql_charsets.lib.php:253 +#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:253 msgid "Hungarian" msgstr "Maďarsky" -#: libraries/messages.inc.php:386 libraries/mysql_charsets.lib.php:256 +#: libraries/messages.inc.php:382 libraries/mysql_charsets.lib.php:256 msgid "Icelandic" msgstr "Islandčina" -#: libraries/messages.inc.php:387 server_processlist.php:53 +#: libraries/messages.inc.php:383 server_processlist.php:53 msgid "ID" msgstr "ID" -#: libraries/messages.inc.php:388 libraries/mult_submits.inc.php:108 +#: libraries/messages.inc.php:384 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:479 msgid "Fulltext" msgstr "Celý text" -#: libraries/messages.inc.php:389 +#: libraries/messages.inc.php:385 msgid "Ignore duplicate rows" msgstr "Ignorovať opakujúce sa riadky" -#: libraries/messages.inc.php:390 tbl_change.php:302 tbl_indexes.php:200 +#: libraries/messages.inc.php:386 tbl_change.php:302 tbl_indexes.php:200 #: tbl_indexes.php:225 msgid "Ignore" msgstr "Ignorovať" -#: libraries/messages.inc.php:391 +#: libraries/messages.inc.php:387 msgid "Use ignore inserts" msgstr "Použiť IGNORE" -#: libraries/messages.inc.php:392 +#: libraries/messages.inc.php:388 msgid "Column names in first row" msgstr "Mená stĺpcov na prvom riadku" -#: libraries/messages.inc.php:393 +#: libraries/messages.inc.php:389 msgid "Do not import empty rows" msgstr "Neimportovať prázdne riadky" -#: libraries/messages.inc.php:394 pmd_general.php:104 +#: libraries/messages.inc.php:390 pmd_general.php:104 msgid "Import/Export coordinates for PDF schema" msgstr "Import/Export koordináty pre PDF schému" -#: libraries/messages.inc.php:395 querywindow.php:104 +#: libraries/messages.inc.php:391 querywindow.php:104 msgid "Import files" msgstr "Importovať súbory" -#: libraries/messages.inc.php:403 +#: libraries/messages.inc.php:399 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/messages.inc.php:404 libraries/messages.inc.php:584 +#: libraries/messages.inc.php:400 libraries/messages.inc.php:580 msgid "Open Document Spreadsheet" msgstr "Tabuľkový procesor Open Document" -#: libraries/messages.inc.php:405 +#: libraries/messages.inc.php:401 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/messages.inc.php:409 +#: libraries/messages.inc.php:405 msgid "Excel 97-2003 XLS Workbook" msgstr "" -#: libraries/messages.inc.php:410 +#: libraries/messages.inc.php:406 msgid "Excel 2007 XLSX Workbook" msgstr "" -#: libraries/messages.inc.php:414 libraries/mult_submits.inc.php:98 +#: libraries/messages.inc.php:410 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:476 tbl_structure.php:674 msgid "Index" msgstr "Index" -#: libraries/messages.inc.php:415 tbl_indexes.php:168 +#: libraries/messages.inc.php:411 tbl_indexes.php:168 msgid "Index name:" msgstr "Meno indexu :" -#: libraries/messages.inc.php:416 tbl_indexes.php:174 +#: libraries/messages.inc.php:412 tbl_indexes.php:174 msgid "Index type:" msgstr "Typ indexu :" -#: libraries/messages.inc.php:417 sql.php:639 +#: libraries/messages.inc.php:413 sql.php:639 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problémy s indexami v tabuľke `%s`" -#: libraries/messages.inc.php:427 main.php:266 +#: libraries/messages.inc.php:423 main.php:266 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -4024,163 +4024,163 @@ msgstr "" "nastavením, nie je zabezpečený proti napadnutiu, táto bezpečnostná chyba by " "mala byť urýchlene odstránená." -#: libraries/messages.inc.php:428 tbl_change.php:1130 +#: libraries/messages.inc.php:424 tbl_change.php:1130 msgid "Insert as new row" msgstr "Vložiť ako nový riadok" -#: libraries/messages.inc.php:429 sql.php:496 tbl_replace.php:386 +#: libraries/messages.inc.php:425 sql.php:496 tbl_replace.php:386 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: libraries/messages.inc.php:430 tbl_change.php:1131 +#: libraries/messages.inc.php:426 tbl_change.php:1131 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/messages.inc.php:432 main.php:139 +#: libraries/messages.inc.php:428 main.php:139 msgid "Interface" msgstr "" -#: libraries/messages.inc.php:433 tbl_relation.php:407 +#: libraries/messages.inc.php:429 tbl_relation.php:407 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: libraries/messages.inc.php:435 pdf_pages.php:303 +#: libraries/messages.inc.php:431 pdf_pages.php:303 msgid "Internal relations" msgstr "Interné vzťahy" -#: libraries/messages.inc.php:438 tbl_indexes.php:256 tbl_structure.php:590 +#: libraries/messages.inc.php:434 tbl_indexes.php:256 tbl_structure.php:590 #: tbl_structure.php:601 msgid "Column count has to be larger than zero." msgstr "Počet stĺpcov musí byť väčší ako nula." -#: libraries/messages.inc.php:444 libraries/tbl_properties.inc.php:784 +#: libraries/messages.inc.php:440 libraries/tbl_properties.inc.php:784 #: tbl_structure.php:537 msgid "You have to add at least one field." msgstr "Musíte pridať aspoň jeden stĺpec." -#: libraries/messages.inc.php:449 +#: libraries/messages.inc.php:445 #, php-format msgid "Invalid server index: \"%s\"" msgstr "Chybný index serveru: \"%s\"" -#: libraries/messages.inc.php:452 libraries/mysql_charsets.lib.php:259 +#: libraries/messages.inc.php:448 libraries/mysql_charsets.lib.php:259 #: libraries/mysql_charsets.lib.php:349 msgid "Japanese" msgstr "Japončina" -#: libraries/messages.inc.php:453 main.php:331 +#: libraries/messages.inc.php:449 main.php:331 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: libraries/messages.inc.php:454 server_status.php:257 +#: libraries/messages.inc.php:450 server_status.php:257 msgid "Joins" msgstr "Zjednotenia" -#: libraries/messages.inc.php:457 server_privileges.php:763 +#: libraries/messages.inc.php:453 server_privileges.php:763 msgid "Do not change the password" msgstr "Nezmeniť heslo" -#: libraries/messages.inc.php:458 server_status.php:256 +#: libraries/messages.inc.php:454 server_status.php:256 msgid "Key cache" msgstr "Vyrovnávacia pamäť kľúčov" -#: libraries/messages.inc.php:462 libraries/mysql_charsets.lib.php:268 +#: libraries/messages.inc.php:458 libraries/mysql_charsets.lib.php:268 #: libraries/mysql_charsets.lib.php:371 msgid "Korean" msgstr "Kórejčina" -#: libraries/messages.inc.php:466 libraries/select_lang.lib.php:480 +#: libraries/messages.inc.php:462 libraries/select_lang.lib.php:480 #: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492 #, php-format msgid "Unknown language: %1$s." msgstr "Neznámy jazyk: %1$s." -#: libraries/messages.inc.php:468 +#: libraries/messages.inc.php:464 msgid "Table caption" msgstr "Nadpis tabuľky" -#: libraries/messages.inc.php:469 +#: libraries/messages.inc.php:465 msgid "Content of table __TABLE__" msgstr "Obsah tabuľky __TABLE__" -#: libraries/messages.inc.php:470 +#: libraries/messages.inc.php:466 msgid "Continued table caption" msgstr "Nadpis pokračovania tabuľky" -#: libraries/messages.inc.php:471 +#: libraries/messages.inc.php:467 msgid "(continued)" msgstr "(pokračovanie)" -#: libraries/messages.inc.php:472 +#: libraries/messages.inc.php:468 msgid "Include table caption" msgstr "Zahrnúť nadpis tabuľky" -#: libraries/messages.inc.php:473 +#: libraries/messages.inc.php:469 msgid "Label key" msgstr "Návestie" -#: libraries/messages.inc.php:474 +#: libraries/messages.inc.php:470 msgid "LaTeX" msgstr "LaTeX" -#: libraries/messages.inc.php:475 +#: libraries/messages.inc.php:471 msgid "Structure of table __TABLE__" msgstr "Štruktúra tabuľky __TABLE__" -#: libraries/messages.inc.php:476 libraries/mysql_charsets.lib.php:262 +#: libraries/messages.inc.php:472 libraries/mysql_charsets.lib.php:262 msgid "Latvian" msgstr "Lotyšstina" -#: libraries/messages.inc.php:477 +#: libraries/messages.inc.php:473 msgid "CSV using LOAD DATA" msgstr "CSV pomocou LOAD DATA" -#: libraries/messages.inc.php:478 +#: libraries/messages.inc.php:474 msgid "Use LOCAL keyword" msgstr "Použiť kľúčové slovo LOCAL" -#: libraries/messages.inc.php:479 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:475 libraries/tbl_properties.inc.php:105 msgid "Length/Values" msgstr "Dĺžka/Nastaviť*" -#: libraries/messages.inc.php:480 tbl_select.php:295 +#: libraries/messages.inc.php:476 tbl_select.php:295 msgid "Number of rows per page" msgstr "záznamov na stránku" -#: libraries/messages.inc.php:484 libraries/mysql_charsets.lib.php:265 +#: libraries/messages.inc.php:480 libraries/mysql_charsets.lib.php:265 msgid "Lithuanian" msgstr "Litovsky" -#: libraries/messages.inc.php:485 libraries/replication_gui.lib.php:302 +#: libraries/messages.inc.php:481 libraries/replication_gui.lib.php:302 #: server_privileges.php:729 msgid "Local" msgstr "Lokálny" -#: libraries/messages.inc.php:487 server_privileges.php:669 +#: libraries/messages.inc.php:483 server_privileges.php:669 msgid "Login Information" msgstr "Prihlásenie" -#: libraries/messages.inc.php:490 libraries/navigation_header.inc.php:67 +#: libraries/messages.inc.php:486 libraries/navigation_header.inc.php:67 #: libraries/navigation_header.inc.php:70 #: libraries/navigation_header.inc.php:71 main.php:99 msgid "Log out" msgstr "Odhlásiť sa" -#: libraries/messages.inc.php:497 server_status.php:440 +#: libraries/messages.inc.php:493 server_status.php:440 msgid "max. concurrent connections" msgstr "max. súčasných pripojení" -#: libraries/messages.inc.php:498 +#: libraries/messages.inc.php:494 msgid "Maximal length of created query" msgstr "Maximálna veľkosť vytvoreného príkazu" -#: libraries/messages.inc.php:500 main.php:282 +#: libraries/messages.inc.php:496 main.php:282 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -4191,7 +4191,7 @@ msgstr "" "rozdeľovať reťazce kódované v týchto znakových sadách a môže to viesť k " "nečakaným výsledkom." -#: libraries/messages.inc.php:501 main.php:274 +#: libraries/messages.inc.php:497 main.php:274 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -4200,24 +4200,24 @@ msgstr "" "V nastavení PHP je aktívna funkcia mbstring.func_overload, ktorá nie je " "kompatibilná s phpMyAdmin-om a môže spôsobiť stratu dát!" -#: libraries/messages.inc.php:502 +#: libraries/messages.inc.php:498 msgid "MediaWiki Table" msgstr "" -#: libraries/messages.inc.php:503 transformation_overview.php:25 +#: libraries/messages.inc.php:499 transformation_overview.php:25 msgid "Available MIME types" msgstr "Dostupné MIME typy" -#: libraries/messages.inc.php:504 transformation_overview.php:43 +#: libraries/messages.inc.php:500 transformation_overview.php:43 msgid "Available transformations" msgstr "Dostupné transformácie" -#: libraries/messages.inc.php:505 +#: libraries/messages.inc.php:501 msgctxt "$strMIME_description" msgid "Description" msgstr "Popis" -#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:580 +#: libraries/messages.inc.php:503 libraries/tbl_properties.inc.php:580 #: transformation_overview.php:60 #, php-format msgid "" @@ -4227,7 +4227,7 @@ msgstr "" "Nie je dostupný žiadny popis pre túto transformáciu.
Kontaktujte " "autora, ktorý %s vytára." -#: libraries/messages.inc.php:509 libraries/tbl_properties.inc.php:137 +#: libraries/messages.inc.php:505 libraries/tbl_properties.inc.php:137 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -4236,7 +4236,7 @@ msgstr "" "Pre zoznam dostupných parametrov a ich MIME typov kliknite na %spopisy " "transformácií%s" -#: libraries/messages.inc.php:510 libraries/tbl_properties.inc.php:146 +#: libraries/messages.inc.php:506 libraries/tbl_properties.inc.php:146 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -4248,56 +4248,56 @@ msgstr "" "jednoduché úvodzovky (\"'\") medzi týmito hodnotami, vložte pred nich spätné " "lomítko (napr. '\\\\xyz' alebo 'a\\'b')." -#: libraries/messages.inc.php:511 libraries/tbl_properties.inc.php:145 +#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:145 msgid "Transformation options" msgstr "Parametre transformácie" -#: libraries/messages.inc.php:513 transformation_overview.php:38 +#: libraries/messages.inc.php:509 transformation_overview.php:38 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "MIME typy zobrazené kurzívou nemajú vlastnú transformačnú funkciu" -#: libraries/messages.inc.php:515 tbl_indexes.php:162 +#: libraries/messages.inc.php:511 tbl_indexes.php:162 msgid "Modify an index" msgstr "Modifikovať index" -#: libraries/messages.inc.php:517 pmd_general.php:108 +#: libraries/messages.inc.php:513 pmd_general.php:108 msgid "Move Menu" msgstr "Presunúť Menu" -#: libraries/messages.inc.php:518 tbl_operations.php:276 +#: libraries/messages.inc.php:514 tbl_operations.php:276 msgid "Move table to (database.table):" msgstr "Presunúť tabuľku do (databáza.tabuľka):" -#: libraries/messages.inc.php:519 tbl_move_copy.php:56 +#: libraries/messages.inc.php:515 tbl_move_copy.php:56 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabuľka %s bola presunutá do %s." -#: libraries/messages.inc.php:520 tbl_move_copy.php:46 +#: libraries/messages.inc.php:516 tbl_move_copy.php:46 msgid "Can't move table to same one!" msgstr "Nedá sa presunúť tabuľka sama do seba!" -#: libraries/messages.inc.php:521 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:517 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 #: libraries/mysql_charsets.lib.php:332 libraries/mysql_charsets.lib.php:354 #: libraries/mysql_charsets.lib.php:365 msgid "multilingual" msgstr "mnohojazyčný" -#: libraries/messages.inc.php:534 main.php:193 +#: libraries/messages.inc.php:530 main.php:193 msgid "MySQL charset" msgstr "Znaková sada v MySQL" -#: libraries/messages.inc.php:535 main.php:211 +#: libraries/messages.inc.php:531 main.php:211 msgid "MySQL client version" msgstr "Verzia MySQL klienta" -#: libraries/messages.inc.php:536 main.php:125 +#: libraries/messages.inc.php:532 main.php:125 msgid "MySQL connection collation" msgstr "Overenie MySQL spojenia" -#: libraries/messages.inc.php:537 main.php:346 +#: libraries/messages.inc.php:533 main.php:346 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -4306,54 +4306,54 @@ msgstr "" "Verzia Vašej PHP MySQL knižnice %s je rozdielna od MySQL server verzie %s. " "Toto môže spôsobiť nepredvídateľné správanie." -#: libraries/messages.inc.php:539 server_status.php:294 +#: libraries/messages.inc.php:535 server_status.php:294 msgid "Show processes" msgstr "Zobraziť procesy" -#: libraries/messages.inc.php:545 navigation.php:210 server_databases.php:371 +#: libraries/messages.inc.php:541 navigation.php:210 server_databases.php:371 #: server_synchronize.php:1191 msgid "No databases" msgstr "Žiadne databázy" -#: libraries/messages.inc.php:546 server_databases.php:52 +#: libraries/messages.inc.php:542 server_databases.php:52 msgid "No databases selected." msgstr "Neboli vybrané žiadne databázy." -#: libraries/messages.inc.php:548 libraries/relation.lib.php:1173 +#: libraries/messages.inc.php:544 libraries/relation.lib.php:1173 msgid "no description" msgstr "bez Popisu" -#: libraries/messages.inc.php:552 libraries/zip_extension.lib.php:26 +#: libraries/messages.inc.php:548 libraries/zip_extension.lib.php:26 msgid "No files found inside ZIP archive!" msgstr "V ZIP archíve neboli nájdené žiadne súbory!" -#: libraries/messages.inc.php:555 tbl_indexes.php:91 +#: libraries/messages.inc.php:551 tbl_indexes.php:91 msgid "No index parts defined!" msgstr "Časti indexu neboli definované!" -#: libraries/messages.inc.php:556 libraries/mult_submits.inc.php:435 +#: libraries/messages.inc.php:552 libraries/mult_submits.inc.php:435 #: tbl_replace.php:331 msgid "No change" msgstr "Žiadna zmena" -#: libraries/messages.inc.php:557 +#: libraries/messages.inc.php:553 msgctxt "$strNoneDefault" msgid "None" msgstr "Žiadna" -#: libraries/messages.inc.php:560 libraries/plugin_interface.lib.php:312 +#: libraries/messages.inc.php:556 libraries/plugin_interface.lib.php:312 msgid "This format has no options" msgstr "Tento formát nemá žiadne nastavenia" -#: libraries/messages.inc.php:565 user_password.php:54 +#: libraries/messages.inc.php:561 user_password.php:54 msgid "You don't have sufficient privileges to be here right now!" msgstr "Nemáte dostatočné práva na vykonanie tejto akcie!" -#: libraries/messages.inc.php:566 tbl_row_action.php:29 +#: libraries/messages.inc.php:562 tbl_row_action.php:29 msgid "No rows selected" msgstr "Nebol vybraný žiadny riadok" -#: libraries/messages.inc.php:569 themes.php:32 +#: libraries/messages.inc.php:565 themes.php:32 #, php-format msgid "" "No themes support; please check your configuration and/or your themes in " @@ -4362,291 +4362,291 @@ msgstr "" "Zmena vzhľadu nie je podporovaná, skontrolujte si nastavenia a vzhľady v " "adresári %s." -#: libraries/messages.inc.php:571 libraries/relation.lib.php:95 +#: libraries/messages.inc.php:567 libraries/relation.lib.php:95 msgid "not OK" msgstr "chyba" -#: libraries/messages.inc.php:572 server_synchronize.php:400 +#: libraries/messages.inc.php:568 server_synchronize.php:400 #: server_synchronize.php:839 msgid "not present" msgstr "" -#: libraries/messages.inc.php:573 pdf_pages.php:36 pdf_pages.php:42 +#: libraries/messages.inc.php:569 pdf_pages.php:36 pdf_pages.php:42 #: pdf_pages.php:48 pdf_pages.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "Tabuľka %s nebola nájdená alebo nie je nastavená v %s" -#: libraries/messages.inc.php:574 server_privileges.php:804 +#: libraries/messages.inc.php:570 server_privileges.php:804 #: server_privileges.php:2166 msgid "No user(s) found." msgstr "Nebol nájdený žiadny používateľ." -#: libraries/messages.inc.php:578 pmd_general.php:164 +#: libraries/messages.inc.php:574 pmd_general.php:164 msgid "Number of tables" msgstr "Počet tabuliek" -#: libraries/messages.inc.php:581 server_databases.php:117 +#: libraries/messages.inc.php:577 server_databases.php:117 #: server_status.php:260 setup/lib/messages.inc.php:117 msgid "Tables" msgstr "Tabuľky" -#: libraries/messages.inc.php:583 libraries/relation.lib.php:99 +#: libraries/messages.inc.php:579 libraries/relation.lib.php:99 #: pmd_general.php:340 msgid "OK" msgstr "OK" -#: libraries/messages.inc.php:585 +#: libraries/messages.inc.php:581 msgid "Open Document Text" msgstr "Open Document Text" -#: libraries/messages.inc.php:588 tbl_select.php:138 +#: libraries/messages.inc.php:584 tbl_select.php:138 msgid "Operator" msgstr "Operátor" -#: libraries/messages.inc.php:589 tbl_operations.php:662 +#: libraries/messages.inc.php:585 tbl_operations.php:662 msgid "Optimize" msgstr "Optimalizovať" -#: libraries/messages.inc.php:602 libraries/tbl_properties.inc.php:755 +#: libraries/messages.inc.php:598 libraries/tbl_properties.inc.php:755 msgid "PARTITION definition" msgstr "" -#: libraries/messages.inc.php:603 tbl_structure.php:757 +#: libraries/messages.inc.php:599 tbl_structure.php:757 msgid "partitioned" msgstr "" -#: libraries/messages.inc.php:604 tbl_operations.php:649 +#: libraries/messages.inc.php:600 tbl_operations.php:649 #, fuzzy msgid "Partition maintenance" msgstr "Údržba tabuľky" -#: libraries/messages.inc.php:605 tbl_operations.php:657 +#: libraries/messages.inc.php:601 tbl_operations.php:657 #, php-format msgid "Partition %s" msgstr "" -#: libraries/messages.inc.php:606 server_privileges.php:1212 +#: libraries/messages.inc.php:602 server_privileges.php:1212 #, php-format msgid "The password for %s was changed successfully." msgstr "Heslo pre %s bolo úspešne zmenené." -#: libraries/messages.inc.php:635 +#: libraries/messages.inc.php:631 #, php-format msgid "Schema of the \"%s\" database - Page %s" msgstr "Schéma databázy \"%s\" - Strana %s" -#: libraries/messages.inc.php:636 +#: libraries/messages.inc.php:632 #, php-format msgid "The \"%s\" table doesn't exist!" msgstr "Tabuľka \"%s\" neexistuje!" -#: libraries/messages.inc.php:637 pdf_schema.php:1013 +#: libraries/messages.inc.php:633 pdf_schema.php:1013 msgid "No tables" msgstr "Žiadne tabuľky" -#: libraries/messages.inc.php:638 pmd_pdf.php:63 +#: libraries/messages.inc.php:634 pmd_pdf.php:63 #, fuzzy msgid "Page has been created" msgstr "Tabuľka %1$s bola vytvorená." -#: libraries/messages.inc.php:639 pmd_pdf.php:65 +#: libraries/messages.inc.php:635 pmd_pdf.php:65 msgid "Page creation failed" msgstr "" -#: libraries/messages.inc.php:640 +#: libraries/messages.inc.php:636 msgid "PDF" msgstr "PDF" -#: libraries/messages.inc.php:641 +#: libraries/messages.inc.php:637 msgid "(Generates a report containing the data of a single table)" msgstr "(Generuje report obsahujúci dáta jednej tabuľky)" -#: libraries/messages.inc.php:642 +#: libraries/messages.inc.php:638 msgid "Report title" msgstr "Titulok výpisu" -#: libraries/messages.inc.php:643 server_status.php:389 server_status.php:434 +#: libraries/messages.inc.php:639 server_status.php:389 server_status.php:434 #: server_status.php:497 server_status.php:555 msgid "per hour" msgstr "za hodinu" -#: libraries/messages.inc.php:644 server_status.php:498 +#: libraries/messages.inc.php:640 server_status.php:498 msgid "per minute" msgstr "za minútu" -#: libraries/messages.inc.php:645 server_status.php:499 +#: libraries/messages.inc.php:641 server_status.php:499 msgid "per second" msgstr "za sekundu" -#: libraries/messages.inc.php:646 libraries/mysql_charsets.lib.php:271 +#: libraries/messages.inc.php:642 libraries/mysql_charsets.lib.php:271 msgid "Persian" msgstr "Perština" -#: libraries/messages.inc.php:647 libraries/mysql_charsets.lib.php:250 +#: libraries/messages.inc.php:643 libraries/mysql_charsets.lib.php:250 msgid "phone book" msgstr "adresár" -#: libraries/messages.inc.php:648 +#: libraries/messages.inc.php:644 msgid "PHP array" msgstr "PHP pole" -#: libraries/messages.inc.php:650 main.php:213 +#: libraries/messages.inc.php:646 main.php:213 msgid "PHP extension" msgstr "rozšírenie PHP" -#: libraries/messages.inc.php:654 libraries/relation.lib.php:163 +#: libraries/messages.inc.php:650 libraries/relation.lib.php:163 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/messages.inc.php:655 libraries/relation.lib.php:159 +#: libraries/messages.inc.php:651 libraries/relation.lib.php:159 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/messages.inc.php:656 libraries/relation.lib.php:161 +#: libraries/messages.inc.php:652 libraries/relation.lib.php:161 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" -#: libraries/messages.inc.php:657 libraries/relation.lib.php:162 +#: libraries/messages.inc.php:653 libraries/relation.lib.php:162 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/messages.inc.php:658 libraries/relation.lib.php:164 +#: libraries/messages.inc.php:654 libraries/relation.lib.php:164 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/messages.inc.php:661 libraries/mysql_charsets.lib.php:274 +#: libraries/messages.inc.php:657 libraries/mysql_charsets.lib.php:274 msgid "Polish" msgstr "Poľština" -#: libraries/messages.inc.php:662 libraries/replication_gui.lib.php:67 +#: libraries/messages.inc.php:658 libraries/replication_gui.lib.php:67 #: server_synchronize.php:1163 msgid "Port" msgstr "Port" -#: libraries/messages.inc.php:667 tbl_indexes.php:67 +#: libraries/messages.inc.php:663 tbl_indexes.php:67 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Názov primárneho kľúča musí byť... PRIMARY!" -#: libraries/messages.inc.php:668 tbl_indexes.php:184 +#: libraries/messages.inc.php:664 tbl_indexes.php:184 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "(\"PRIMARY\" musí byť iba meno primárneho kľúča!)" -#: libraries/messages.inc.php:669 libraries/mult_submits.inc.php:76 +#: libraries/messages.inc.php:665 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:474 msgid "Primary" msgstr "Primárny" -#: libraries/messages.inc.php:673 server_privileges.php:227 +#: libraries/messages.inc.php:669 server_privileges.php:227 msgid "Includes all privileges except GRANT." msgstr "Všetky oprávnenia okrem GRANT." -#: libraries/messages.inc.php:674 server_privileges.php:153 +#: libraries/messages.inc.php:670 server_privileges.php:153 #: server_privileges.php:476 msgid "Allows altering the structure of existing tables." msgstr "Povolí meniť štruktúru existujúcich tabuliek." -#: libraries/messages.inc.php:675 server_privileges.php:169 +#: libraries/messages.inc.php:671 server_privileges.php:169 #: server_privileges.php:482 msgid "Allows altering and dropping stored routines." msgstr "Umožňuje upravovať a odstraňovať uložené procedúry." -#: libraries/messages.inc.php:676 server_privileges.php:145 +#: libraries/messages.inc.php:672 server_privileges.php:145 #: server_privileges.php:475 msgid "Allows creating new databases and tables." msgstr "Povolí vytváranie nových databáz a tabuliek." -#: libraries/messages.inc.php:677 server_privileges.php:168 +#: libraries/messages.inc.php:673 server_privileges.php:168 #: server_privileges.php:481 msgid "Allows creating stored routines." msgstr "Umožňuje vytvárať uložené procedúry." -#: libraries/messages.inc.php:678 server_privileges.php:475 +#: libraries/messages.inc.php:674 server_privileges.php:475 msgid "Allows creating new tables." msgstr "Povolí vytváranie nových tabuliek." -#: libraries/messages.inc.php:679 server_privileges.php:156 +#: libraries/messages.inc.php:675 server_privileges.php:156 #: server_privileges.php:479 msgid "Allows creating temporary tables." msgstr "Povolí vytváranie dočasných tabuliek." -#: libraries/messages.inc.php:680 server_privileges.php:170 +#: libraries/messages.inc.php:676 server_privileges.php:170 #: server_privileges.php:515 msgid "Allows creating, dropping and renaming user accounts." msgstr "Umožňuje vytvárať, odstraňovať a premenovávať používateľské kontá." -#: libraries/messages.inc.php:681 server_privileges.php:160 +#: libraries/messages.inc.php:677 server_privileges.php:160 #: server_privileges.php:164 server_privileges.php:487 #: server_privileges.php:491 msgid "Allows creating new views." msgstr "Umožňuje vytvárať nové pohľady." -#: libraries/messages.inc.php:682 server_privileges.php:144 +#: libraries/messages.inc.php:678 server_privileges.php:144 #: server_privileges.php:467 msgid "Allows deleting data." msgstr "Povolí mazanie dát." -#: libraries/messages.inc.php:683 server_privileges.php:146 +#: libraries/messages.inc.php:679 server_privileges.php:146 #: server_privileges.php:478 msgid "Allows dropping databases and tables." msgstr "Povolí odstraňovanie databáz a tabuliek." -#: libraries/messages.inc.php:684 server_privileges.php:478 +#: libraries/messages.inc.php:680 server_privileges.php:478 msgid "Allows dropping tables." msgstr "Povolí odstraňovanie tabuliek." -#: libraries/messages.inc.php:685 server_privileges.php:161 +#: libraries/messages.inc.php:681 server_privileges.php:161 #: server_privileges.php:495 msgid "Allows to set up events for the event scheduler" msgstr "" -#: libraries/messages.inc.php:686 server_privileges.php:171 +#: libraries/messages.inc.php:682 server_privileges.php:171 #: server_privileges.php:483 msgid "Allows executing stored routines." msgstr "Umožňuje spúšťať uložené procedúry." -#: libraries/messages.inc.php:687 server_privileges.php:150 +#: libraries/messages.inc.php:683 server_privileges.php:150 #: server_privileges.php:470 msgid "Allows importing data from and exporting data into files." msgstr "Povolí importovanie a exportovanie dát zo/do súborov na serveri." -#: libraries/messages.inc.php:688 server_privileges.php:501 +#: libraries/messages.inc.php:684 server_privileges.php:501 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "Povolí pridávanie uživatelov a práv bez znovunačítania tabuliek práv." -#: libraries/messages.inc.php:689 server_privileges.php:152 +#: libraries/messages.inc.php:685 server_privileges.php:152 #: server_privileges.php:477 msgid "Allows creating and dropping indexes." msgstr "Povolí vytváranie a mazanie indexov." -#: libraries/messages.inc.php:690 server_privileges.php:142 +#: libraries/messages.inc.php:686 server_privileges.php:142 #: server_privileges.php:403 server_privileges.php:465 msgid "Allows inserting and replacing data." msgstr "Povolí vkladanie a nahradzovanie dát." -#: libraries/messages.inc.php:691 server_privileges.php:157 +#: libraries/messages.inc.php:687 server_privileges.php:157 #: server_privileges.php:510 msgid "Allows locking tables for the current thread." msgstr "Povolí zmaknutie tabuliek pre aktuálne vlákno." -#: libraries/messages.inc.php:692 server_privileges.php:607 +#: libraries/messages.inc.php:688 server_privileges.php:607 #: server_privileges.php:609 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Obmedzí počet nových spojení, ktoré môže používateľ vytvoriť za hodinu." -#: libraries/messages.inc.php:693 server_privileges.php:595 +#: libraries/messages.inc.php:689 server_privileges.php:595 #: server_privileges.php:597 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Obmedzí počet dopytov, ktoré môže používateľ odoslať za hodinu." -#: libraries/messages.inc.php:694 server_privileges.php:601 +#: libraries/messages.inc.php:690 server_privileges.php:601 #: server_privileges.php:603 msgid "" "Limits the number of commands that change any table or database the user may " @@ -4655,59 +4655,59 @@ msgstr "" "Obmedzí počet príkazov meniacich tabuľku alebo databázu, ktorá môže " "používateľ odoslať za hodinu." -#: libraries/messages.inc.php:695 server_privileges.php:613 +#: libraries/messages.inc.php:691 server_privileges.php:613 #: server_privileges.php:615 msgid "Limits the number of simultaneous connections the user may have." msgstr "Obmedzuje počet simultánnych pripojení používateľa." -#: libraries/messages.inc.php:696 server_privileges.php:149 +#: libraries/messages.inc.php:692 server_privileges.php:149 #: server_privileges.php:505 msgid "Allows viewing processes of all users" msgstr "" -#: libraries/messages.inc.php:697 server_privileges.php:151 +#: libraries/messages.inc.php:693 server_privileges.php:151 #: server_privileges.php:409 server_privileges.php:511 msgid "Has no effect in this MySQL version." msgstr "Nefunguje v tejto verzii MySQL." -#: libraries/messages.inc.php:698 server_privileges.php:147 +#: libraries/messages.inc.php:694 server_privileges.php:147 #: server_privileges.php:506 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Povolí znovunačítanie nastavení a vyprázdňovanie vyrovnávacích pamätí " "serveru." -#: libraries/messages.inc.php:699 server_privileges.php:159 +#: libraries/messages.inc.php:695 server_privileges.php:159 #: server_privileges.php:513 msgid "Allows the user to ask where the slaves / masters are." msgstr "Povolí používateľovi zistiť kde je hlavný / pomocný server." -#: libraries/messages.inc.php:700 server_privileges.php:158 +#: libraries/messages.inc.php:696 server_privileges.php:158 #: server_privileges.php:514 msgid "Needed for the replication slaves." msgstr "Potrebné pre replikáciu pomocných serverov." -#: libraries/messages.inc.php:701 server_privileges.php:141 +#: libraries/messages.inc.php:697 server_privileges.php:141 #: server_privileges.php:400 server_privileges.php:464 msgid "Allows reading data." msgstr "Povolí čítanie dát." -#: libraries/messages.inc.php:702 server_privileges.php:154 +#: libraries/messages.inc.php:698 server_privileges.php:154 #: server_privileges.php:508 msgid "Gives access to the complete list of databases." msgstr "Povolí prístup ku kompletnému zoznamu databáz." -#: libraries/messages.inc.php:703 server_privileges.php:165 +#: libraries/messages.inc.php:699 server_privileges.php:165 #: server_privileges.php:167 server_privileges.php:480 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Umožňuje spúšťať príkazy so SHOW CREATE VIEW." -#: libraries/messages.inc.php:704 server_privileges.php:148 +#: libraries/messages.inc.php:700 server_privileges.php:148 #: server_privileges.php:507 msgid "Allows shutting down the server." msgstr "Povolí vypnutie serveru." -#: libraries/messages.inc.php:705 server_privileges.php:155 +#: libraries/messages.inc.php:701 server_privileges.php:155 #: server_privileges.php:504 msgid "" "Allows connecting, even if maximum number of connections is reached; " @@ -4718,56 +4718,56 @@ msgstr "" "Potrebné pre väčšinu operácií pri správe serveru ako nastavovanie globálny " "premenných alebo zabíjanie procesov iných používateľov." -#: libraries/messages.inc.php:706 server_privileges.php:162 +#: libraries/messages.inc.php:702 server_privileges.php:162 #: server_privileges.php:496 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "Povolí vytváranie a mazanie indexov." -#: libraries/messages.inc.php:707 server_privileges.php:143 +#: libraries/messages.inc.php:703 server_privileges.php:143 #: server_privileges.php:406 server_privileges.php:466 msgid "Allows changing data." msgstr "Povolí menenie dát." -#: libraries/messages.inc.php:708 server_privileges.php:221 +#: libraries/messages.inc.php:704 server_privileges.php:221 msgid "No privileges." msgstr "Žiadne práva." -#: libraries/messages.inc.php:710 server_privileges.php:1296 +#: libraries/messages.inc.php:706 server_privileges.php:1296 msgid "The privileges were reloaded successfully." msgstr "Práva boli úspešne znovunačítané." -#: libraries/messages.inc.php:712 libraries/server_links.inc.php:80 +#: libraries/messages.inc.php:708 libraries/server_links.inc.php:80 msgid "Processes" msgstr "Procesy" -#: libraries/messages.inc.php:714 main.php:187 +#: libraries/messages.inc.php:710 main.php:187 msgid "Protocol version" msgstr "Verzia protokolu" -#: libraries/messages.inc.php:715 +#: libraries/messages.inc.php:711 msgid "Put fields names in the first row" msgstr "Pridať názvy polí na prvý riadok" -#: libraries/messages.inc.php:720 server_synchronize.php:1003 +#: libraries/messages.inc.php:716 server_synchronize.php:1003 msgid "The following queries have been executed:" msgstr "" -#: libraries/messages.inc.php:721 server_status.php:251 +#: libraries/messages.inc.php:717 server_status.php:251 msgid "Query cache" msgstr "Vyrovnávacia pamäť príkazov" -#: libraries/messages.inc.php:722 libraries/navigation_header.inc.php:80 +#: libraries/messages.inc.php:718 libraries/navigation_header.inc.php:80 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 setup/lib/messages.inc.php:122 msgid "Query window" msgstr "SQL okno" -#: libraries/messages.inc.php:725 querywindow.php:109 querywindow.php:217 +#: libraries/messages.inc.php:721 querywindow.php:109 querywindow.php:217 msgid "SQL history" msgstr "SQL história" -#: libraries/messages.inc.php:726 server_status.php:490 +#: libraries/messages.inc.php:722 server_status.php:490 #, php-format msgid "" "Query statistics: Since its startup, %s queries have been sent to the " @@ -4776,136 +4776,136 @@ msgstr "" "Query statistics: Since its startup, %s queries have been sent to the " "server." -#: libraries/messages.inc.php:728 server_status.php:554 +#: libraries/messages.inc.php:724 server_status.php:554 msgid "Query type" msgstr "Typ dopytu" -#: libraries/messages.inc.php:729 libraries/sql_query_form.lib.php:381 +#: libraries/messages.inc.php:725 libraries/sql_query_form.lib.php:381 msgid "Do not overwrite this query from outside the window" msgstr "Neprepisovať tento dopyt z hlavného okna" -#: libraries/messages.inc.php:732 tbl_operations.php:663 +#: libraries/messages.inc.php:728 tbl_operations.php:663 msgid "Rebuild" msgstr "" -#: libraries/messages.inc.php:733 server_status.php:394 +#: libraries/messages.inc.php:729 server_status.php:394 msgid "Received" msgstr "Prijaté" -#: libraries/messages.inc.php:734 pmd_pdf.php:89 +#: libraries/messages.inc.php:730 pmd_pdf.php:89 msgid "recommended" msgstr "" -#: libraries/messages.inc.php:736 tbl_operations.php:702 +#: libraries/messages.inc.php:732 tbl_operations.php:702 msgid "Check referential integrity:" msgstr "Skontrolovať referenčnú integritu:" -#: libraries/messages.inc.php:740 pdf_schema.php:1032 pdf_schema.php:1141 +#: libraries/messages.inc.php:736 pdf_schema.php:1032 pdf_schema.php:1141 msgid "Relational schema" msgstr "Relačná schéma" -#: libraries/messages.inc.php:744 tbl_relation.php:399 +#: libraries/messages.inc.php:740 tbl_relation.php:399 msgid "Relations" msgstr "Prepojenia" -#: libraries/messages.inc.php:745 tbl_structure.php:507 tbl_structure.php:509 +#: libraries/messages.inc.php:741 tbl_structure.php:507 tbl_structure.php:509 msgid "Relation view" msgstr "Zobraziť prepojenia" -#: libraries/messages.inc.php:746 server_privileges.php:1246 +#: libraries/messages.inc.php:742 server_privileges.php:1246 msgid "Reloading the privileges" msgstr "Znovunačítanie práv" -#: libraries/messages.inc.php:747 navigation.php:66 navigation.php:67 +#: libraries/messages.inc.php:743 navigation.php:66 navigation.php:67 #: navigation.php:70 msgid "Reload navigation frame" msgstr "" -#: libraries/messages.inc.php:748 pmd_general.php:80 +#: libraries/messages.inc.php:744 pmd_general.php:80 msgid "Reload" msgstr "Znovu načítať" -#: libraries/messages.inc.php:749 libraries/server_synchronize.lib.php:1345 +#: libraries/messages.inc.php:745 libraries/server_synchronize.lib.php:1345 #: libraries/server_synchronize.lib.php:1371 msgid "Remote server" msgstr "Vzdialený server" -#: libraries/messages.inc.php:750 +#: libraries/messages.inc.php:746 msgid "Remove CRLF characters within fields" msgstr "" -#: libraries/messages.inc.php:751 tbl_operations.php:676 +#: libraries/messages.inc.php:747 tbl_operations.php:676 msgid "Remove partitioning" msgstr "" -#: libraries/messages.inc.php:752 server_privileges.php:1575 +#: libraries/messages.inc.php:748 server_privileges.php:1575 msgid "Remove selected users" msgstr "Odstrániť vybraných používateľov" -#: libraries/messages.inc.php:755 tbl_operations.php:338 +#: libraries/messages.inc.php:751 tbl_operations.php:338 msgid "Rename table to" msgstr "Premenovať tabuľku na" -#: libraries/messages.inc.php:756 view_operations.php:93 +#: libraries/messages.inc.php:752 view_operations.php:93 #, fuzzy msgid "Rename view to" msgstr "Premenovať tabuľku na" -#: libraries/messages.inc.php:757 tbl_operations.php:664 +#: libraries/messages.inc.php:753 tbl_operations.php:664 msgid "Repair" msgstr "Opraviť" -#: libraries/messages.inc.php:759 +#: libraries/messages.inc.php:755 msgid "Replace NULL by" msgstr "Nahradiť NULL hodnoty" -#: libraries/messages.inc.php:760 +#: libraries/messages.inc.php:756 msgid "Replace table data with file" msgstr "Nahradiť dáta v tabuľke súborom" -#: libraries/messages.inc.php:761 server_replication.php:228 +#: libraries/messages.inc.php:757 server_replication.php:228 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: libraries/messages.inc.php:762 libraries/replication_gui.lib.php:236 +#: libraries/messages.inc.php:758 libraries/replication_gui.lib.php:236 #: server_replication.php:194 msgid "Add slave replication user" msgstr "Pridať replikačného užívateľa pre slave" -#: libraries/messages.inc.php:763 server_replication.php:74 +#: libraries/messages.inc.php:759 server_replication.php:74 #, php-format msgid "Master server changed succesfully to %s" msgstr "Master server zmenený úspešne na %s" -#: libraries/messages.inc.php:764 server_replication.php:182 +#: libraries/messages.inc.php:760 server_replication.php:182 msgid "This server is configured as master in a replication process." msgstr "Tento server je nakonfigurovaný ako master v replikačnom procese." -#: libraries/messages.inc.php:765 server_replication.php:322 +#: libraries/messages.inc.php:761 server_replication.php:322 msgid "Control slave:" msgstr "Ovládať slave:" -#: libraries/messages.inc.php:766 server_replication.php:65 +#: libraries/messages.inc.php:762 server_replication.php:65 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: libraries/messages.inc.php:767 server_replication.php:58 +#: libraries/messages.inc.php:763 server_replication.php:58 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: libraries/messages.inc.php:768 server_replication.php:221 +#: libraries/messages.inc.php:764 server_replication.php:221 msgid "Replicate all databases; Ignore:" msgstr "" -#: libraries/messages.inc.php:769 server_replication.php:222 +#: libraries/messages.inc.php:765 server_replication.php:222 msgid "Ignore all databases; Replicate:" msgstr "" -#: libraries/messages.inc.php:770 server_replication.php:218 +#: libraries/messages.inc.php:766 server_replication.php:218 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -4914,28 +4914,28 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: libraries/messages.inc.php:771 server_replication.php:217 +#: libraries/messages.inc.php:767 server_replication.php:217 #, fuzzy msgid "Master configuration" msgstr "Master replikácia" -#: libraries/messages.inc.php:772 server_replication.php:181 +#: libraries/messages.inc.php:768 server_replication.php:181 #: server_replication.php:209 msgid "Master replication" msgstr "Master replikácia" -#: libraries/messages.inc.php:774 server_replication.php:230 +#: libraries/messages.inc.php:770 server_replication.php:230 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: libraries/messages.inc.php:775 server_replication.php:225 +#: libraries/messages.inc.php:771 server_replication.php:225 msgid "Please select databases:" msgstr "Prosím, vyberte databázy:" -#: libraries/messages.inc.php:776 server_replication.php:210 +#: libraries/messages.inc.php:772 server_replication.php:210 #, fuzzy, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -4944,36 +4944,36 @@ msgstr "" "Tento server nie je nakonfigurovaný ako slave v replikačnom procese. Chceli " "by ste ho nakonfigurovať?" -#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:188 +#: libraries/messages.inc.php:773 libraries/replication_gui.lib.php:188 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/messages.inc.php:778 server_replication.php:187 +#: libraries/messages.inc.php:774 server_replication.php:187 msgid "Show connected slaves" msgstr "" -#: libraries/messages.inc.php:779 libraries/messages.inc.php:885 +#: libraries/messages.inc.php:775 libraries/messages.inc.php:881 #: server_replication.php:184 server_status.php:281 msgid "Show master status" msgstr "Zobraziť stav master replikácie" -#: libraries/messages.inc.php:780 server_replication.php:334 +#: libraries/messages.inc.php:776 server_replication.php:334 msgid "Skipping error(s) might lead into unsynchronized master and slave!" msgstr "" -#: libraries/messages.inc.php:781 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:51 #: server_replication.php:347 msgid "Change or reconfigure master server" msgstr "" -#: libraries/messages.inc.php:782 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:778 libraries/replication_gui.lib.php:51 #, fuzzy msgid "Slave configuration" msgstr "Slave replikácia" -#: libraries/messages.inc.php:783 server_replication.php:305 +#: libraries/messages.inc.php:779 server_replication.php:305 #, fuzzy msgid "" "Server is configured as slave in a replication process. Would you like to:" @@ -4981,20 +4981,20 @@ msgstr "" "Tento server nie je nakonfigurovaný ako slave v replikačnom procese. Chceli " "by ste ho nakonfigurovať?" -#: libraries/messages.inc.php:784 server_replication.php:332 +#: libraries/messages.inc.php:780 server_replication.php:332 msgid "Error management:" msgstr "" -#: libraries/messages.inc.php:785 server_replication.php:328 +#: libraries/messages.inc.php:781 server_replication.php:328 #, php-format msgid "IO Thread %s only" msgstr "" -#: libraries/messages.inc.php:786 server_replication.php:296 +#: libraries/messages.inc.php:782 server_replication.php:296 msgid "Slave IO Thread not running!" msgstr "" -#: libraries/messages.inc.php:787 server_replication.php:355 +#: libraries/messages.inc.php:783 server_replication.php:355 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -5003,40 +5003,40 @@ msgstr "" "Tento server nie je nakonfigurovaný ako slave v replikačnom procese. Chceli " "by ste ho nakonfigurovať?" -#: libraries/messages.inc.php:788 server_replication.php:326 +#: libraries/messages.inc.php:784 server_replication.php:326 msgid "Reset slave" msgstr "" -#: libraries/messages.inc.php:789 server_replication.php:308 +#: libraries/messages.inc.php:785 server_replication.php:308 msgid "See slave status table" msgstr "" -#: libraries/messages.inc.php:790 server_replication.php:336 +#: libraries/messages.inc.php:786 server_replication.php:336 msgid "Skip current error" msgstr "" -#: libraries/messages.inc.php:791 server_replication.php:340 +#: libraries/messages.inc.php:787 server_replication.php:340 msgid "errors." msgstr "" -#: libraries/messages.inc.php:792 server_replication.php:337 +#: libraries/messages.inc.php:788 server_replication.php:337 msgid "Skip next" msgstr "" -#: libraries/messages.inc.php:793 server_replication.php:248 +#: libraries/messages.inc.php:789 server_replication.php:248 msgid "Slave replication" msgstr "Slave replikácia" -#: libraries/messages.inc.php:794 server_replication.php:293 +#: libraries/messages.inc.php:790 server_replication.php:293 msgid "Slave SQL Thread not running!" msgstr "" -#: libraries/messages.inc.php:795 server_replication.php:327 +#: libraries/messages.inc.php:791 server_replication.php:327 #, php-format msgid "SQL Thread %s only" msgstr "" -#: libraries/messages.inc.php:796 +#: libraries/messages.inc.php:792 #, php-format msgid "" "This MySQL server works as %s in replication process. For further " @@ -5047,163 +5047,163 @@ msgstr "" "informácií o stave replikácie na tomto serveri navštívte prosím sekciu replikácie." -#: libraries/messages.inc.php:797 +#: libraries/messages.inc.php:793 #, fuzzy msgid "Master status" msgstr "Zobraziť stav master replikácie" -#: libraries/messages.inc.php:798 server_status.php:721 +#: libraries/messages.inc.php:794 server_status.php:721 msgid "Replication status" msgstr "Stav replikácie" -#: libraries/messages.inc.php:799 +#: libraries/messages.inc.php:795 #, fuzzy msgid "Slave status" msgstr "Zobraziť stav podriadených hostov" -#: libraries/messages.inc.php:800 server_replication.php:311 +#: libraries/messages.inc.php:796 server_replication.php:311 #, fuzzy msgid "Synchronize databases with master" msgstr "Synchronizovať Databázy" -#: libraries/messages.inc.php:801 server_replication.php:71 +#: libraries/messages.inc.php:797 server_replication.php:71 msgid "Unable to change master" msgstr "" -#: libraries/messages.inc.php:802 server_replication.php:51 +#: libraries/messages.inc.php:798 server_replication.php:51 msgid "Unknown error" msgstr "" -#: libraries/messages.inc.php:803 main.php:163 pdf_pages.php:344 +#: libraries/messages.inc.php:799 main.php:163 pdf_pages.php:344 #: setup/lib/FormDisplay.tpl.php:216 tbl_change.php:1175 msgid "Reset" msgstr "Vynulovať" -#: libraries/messages.inc.php:804 server_privileges.php:591 +#: libraries/messages.inc.php:800 server_privileges.php:591 msgid "Resource limits" msgstr "Obmedzenie zdrojov" -#: libraries/messages.inc.php:805 tbl_change.php:1209 +#: libraries/messages.inc.php:801 tbl_change.php:1209 #, php-format msgid "Restart insertion with %s rows" msgstr "" -#: libraries/messages.inc.php:807 server_privileges.php:1578 +#: libraries/messages.inc.php:803 server_privileges.php:1578 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." -#: libraries/messages.inc.php:808 server_privileges.php:1176 +#: libraries/messages.inc.php:804 server_privileges.php:1176 #, php-format msgid "You have revoked the privileges for %s" msgstr "Boli zrušené oprávnenia pre %s" -#: libraries/messages.inc.php:809 server_privileges.php:1333 +#: libraries/messages.inc.php:805 server_privileges.php:1333 msgid "Revoke" msgstr "Zrušiť" -#: libraries/messages.inc.php:810 libraries/mysql_charsets.lib.php:280 +#: libraries/messages.inc.php:806 libraries/mysql_charsets.lib.php:280 msgid "Romanian" msgstr "Rumunština" -#: libraries/messages.inc.php:813 tbl_printview.php:404 tbl_structure.php:786 +#: libraries/messages.inc.php:809 tbl_printview.php:404 tbl_structure.php:786 msgid "Row length" msgstr "Dĺžka riadku" -#: libraries/messages.inc.php:815 tbl_printview.php:414 tbl_structure.php:794 +#: libraries/messages.inc.php:811 tbl_printview.php:414 tbl_structure.php:794 msgid " Row size " msgstr " Veľkosť riadku " -#: libraries/messages.inc.php:821 tbl_printview.php:366 tbl_structure.php:726 +#: libraries/messages.inc.php:817 tbl_printview.php:366 tbl_structure.php:726 msgid "Row Statistics" msgstr "Štatistika riadku" -#: libraries/messages.inc.php:822 +#: libraries/messages.inc.php:818 #, php-format msgid "running on %s" msgstr "beží na %s" -#: libraries/messages.inc.php:824 libraries/sql_query_form.lib.php:223 +#: libraries/messages.inc.php:820 libraries/sql_query_form.lib.php:223 #, php-format msgid "Run SQL query/queries on server %s" msgstr "Spustiť SQL príkaz(y) na servri %s" -#: libraries/messages.inc.php:825 libraries/sql_query_form.lib.php:240 +#: libraries/messages.inc.php:821 libraries/sql_query_form.lib.php:240 #: libraries/sql_query_form.lib.php:265 #, php-format msgid "Run SQL query/queries on database %s" msgstr "Spustiť SQL dopyt/dopyty na databázu %s" -#: libraries/messages.inc.php:826 libraries/mysql_charsets.lib.php:337 +#: libraries/messages.inc.php:822 libraries/mysql_charsets.lib.php:337 msgid "Russian" msgstr "Ruština" -#: libraries/messages.inc.php:829 pmd_general.php:68 +#: libraries/messages.inc.php:825 pmd_general.php:68 msgid "Save position" msgstr "" -#: libraries/messages.inc.php:830 libraries/tbl_properties.inc.php:776 +#: libraries/messages.inc.php:826 libraries/tbl_properties.inc.php:776 #: pdf_pages.php:484 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:214 setup/lib/FormDisplay.tpl.php:215 #: tbl_change.php:1126 tbl_indexes.php:248 tbl_relation.php:566 msgid "Save" msgstr "Uložiť" -#: libraries/messages.inc.php:831 +#: libraries/messages.inc.php:827 msgid "The scale factor is too small to fit the schema on one page" msgstr "Mierka je príliš mala na roztiahnutie schémy na stránku" -#: libraries/messages.inc.php:843 main.php:298 +#: libraries/messages.inc.php:839 main.php:298 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "Nastavte prosím kľúč pre šifrovanie cookies v konfiguračnom súbore " "(blowfish_secret)." -#: libraries/messages.inc.php:844 navigation.php:353 navigation.php:516 +#: libraries/messages.inc.php:840 navigation.php:353 navigation.php:516 msgid "Please select a database" msgstr "Prosím vyberte si databázu" -#: libraries/messages.inc.php:846 server_binlog.php:120 +#: libraries/messages.inc.php:842 server_binlog.php:120 msgid "Select binary log to view" msgstr "Vyberte binárny log na zobrazenie" -#: libraries/messages.inc.php:847 tbl_select.php:270 +#: libraries/messages.inc.php:843 tbl_select.php:270 msgid "Select fields (at least one):" msgstr "Zvoliť pole (najmenej jedno):" -#: libraries/messages.inc.php:851 pdf_pages.php:320 +#: libraries/messages.inc.php:847 pdf_pages.php:320 msgid "Select Tables" msgstr "Vybrať Tabuľky" -#: libraries/messages.inc.php:853 server_status.php:404 +#: libraries/messages.inc.php:849 server_status.php:404 msgid "Sent" msgstr "Odoslané" -#: libraries/messages.inc.php:857 libraries/select_server.lib.php:45 +#: libraries/messages.inc.php:853 libraries/select_server.lib.php:45 #: setup/frames/index.inc.php:97 setup/lib/messages.inc.php:115 msgid "Servers" msgstr "Servery" -#: libraries/messages.inc.php:858 server_status.php:255 +#: libraries/messages.inc.php:854 server_status.php:255 msgid "Delayed inserts" msgstr "Odložené vloženia" -#: libraries/messages.inc.php:859 server_status.php:46 +#: libraries/messages.inc.php:855 server_status.php:46 msgid "Runtime Information" msgstr "Stav serveru" -#: libraries/messages.inc.php:860 server_status.php:350 +#: libraries/messages.inc.php:856 server_status.php:350 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Tento server beží %s. Bol spustený %s." -#: libraries/messages.inc.php:861 libraries/server_links.inc.php:53 +#: libraries/messages.inc.php:857 libraries/server_links.inc.php:53 #: server_engines.php:112 server_engines.php:116 server_status.php:304 #: test/theme.php:105 msgid "Variables" msgstr "Premenné" -#: libraries/messages.inc.php:862 server_status.php:383 +#: libraries/messages.inc.php:858 server_status.php:383 msgid "" "Server traffic: These tables show the network traffic statistics of " "this MySQL server since its startup." @@ -5211,11 +5211,11 @@ msgstr "" "Traffic serveru: Tieto tabuľky zobrazujú štatistiky sieťového " "trafficu na tomto MySQL serveri od jeho štartu." -#: libraries/messages.inc.php:863 server_variables.php:35 +#: libraries/messages.inc.php:859 server_variables.php:35 msgid "Server variables and settings" msgstr "Premenné a nastavenia serveru" -#: libraries/messages.inc.php:865 main.php:290 +#: libraries/messages.inc.php:861 main.php:290 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -5223,7 +5223,7 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: libraries/messages.inc.php:866 +#: libraries/messages.inc.php:862 msgid "" "Cannot start session without errors, please check errors given in your PHP " "and/or webserver log file and configure your PHP installation properly." @@ -5231,11 +5231,11 @@ msgstr "" "Nemôžem spustiť session bez chyby. Prosím skontrolujte chyby vo Vašom PHP a/" "alebo v logoch web serveru a nastavte Vaše PHP korektne." -#: libraries/messages.inc.php:867 server_variables.php:55 +#: libraries/messages.inc.php:863 server_variables.php:55 msgid "Session value" msgstr "Hodnota sedenia" -#: libraries/messages.inc.php:868 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:864 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 " @@ -5247,45 +5247,45 @@ msgstr "" "alebo apostrof (\"'\") pri týchto hodnotách, zadajte ich napríklad takto '\\" "\\xyz' alebo 'a\\'b'." -#: libraries/messages.inc.php:876 server_binlog.php:192 server_binlog.php:195 +#: libraries/messages.inc.php:872 server_binlog.php:192 server_binlog.php:195 #: server_processlist.php:49 server_processlist.php:51 msgid "Show Full Queries" msgstr "Zobraziť kompletné dopyty" -#: libraries/messages.inc.php:878 pmd_general.php:64 +#: libraries/messages.inc.php:874 pmd_general.php:64 msgid "Show/Hide left menu" msgstr "" -#: libraries/messages.inc.php:880 sql.php:513 +#: libraries/messages.inc.php:876 sql.php:513 msgid "Showing as PHP code" msgstr "Zobrazujem ako PHP kód" -#: libraries/messages.inc.php:882 sql.php:516 tbl_replace.php:360 +#: libraries/messages.inc.php:878 sql.php:516 tbl_replace.php:360 msgid "Showing SQL query" msgstr "Zobrazujem SQL dotaz" -#: libraries/messages.inc.php:883 tbl_change.php:1132 +#: libraries/messages.inc.php:879 tbl_change.php:1132 #, fuzzy msgid "Show insert query" msgstr "Zobrazujem SQL dotaz" -#: libraries/messages.inc.php:886 server_status.php:273 +#: libraries/messages.inc.php:882 server_status.php:273 msgid "Show open tables" msgstr "Zobraziť otvorené tabuľky" -#: libraries/messages.inc.php:887 main.php:219 +#: libraries/messages.inc.php:883 main.php:219 msgid "Show PHP information" msgstr "Zobraziť informácie o PHP" -#: libraries/messages.inc.php:889 server_status.php:278 +#: libraries/messages.inc.php:885 server_status.php:278 msgid "Show slave hosts" msgstr "Zobraziť podriadené hosty" -#: libraries/messages.inc.php:890 server_status.php:284 +#: libraries/messages.inc.php:886 server_status.php:284 msgid "Show slave status" msgstr "Zobraziť stav podriadených hostov" -#: libraries/messages.inc.php:891 +#: libraries/messages.inc.php:887 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -5295,11 +5295,11 @@ msgstr "" "ale zároveň prekročili hodnotu binlog_cache_size a museli tak použiť dočasný " "súbor na uloženie príkazov transakcie." -#: libraries/messages.inc.php:892 +#: libraries/messages.inc.php:888 msgid "The number of transactions that used the temporary binary log cache." msgstr "Počet transakcií, ktoré využili vyrovnávaciu pamäť binárneho logu." -#: libraries/messages.inc.php:893 +#: libraries/messages.inc.php:889 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -5311,11 +5311,11 @@ msgstr "" "hodnotu tmp_table_size, aby boli dočasné tabuľky ukladané do pamäte a nie na " "disk." -#: libraries/messages.inc.php:894 +#: libraries/messages.inc.php:890 msgid "How many temporary files mysqld has created." msgstr "Počet dočasných súborov vytvorených servrom mysqld." -#: libraries/messages.inc.php:895 +#: libraries/messages.inc.php:891 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -5323,7 +5323,7 @@ msgstr "" "Počet dočasných, v pamäti uložených tabuliek, vytvorených servrom pri " "vykonávaní príkazov." -#: libraries/messages.inc.php:896 +#: libraries/messages.inc.php:892 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -5331,7 +5331,7 @@ msgstr "" "Počet riadkov pridaných príkazom INSERT DELAYED, pri ktorých sa vyskytla " "chyba (pravdepodobne opakujúci sa kľúč)." -#: libraries/messages.inc.php:897 +#: libraries/messages.inc.php:893 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -5339,23 +5339,23 @@ msgstr "" "Počet vlákien používaných príkazmi INSERT DELAYED. Každá samostatná tabuľka, " "na ktorú je použitý príkaz INSERT DELAYED, ma svoje vlastné vlákno." -#: libraries/messages.inc.php:898 +#: libraries/messages.inc.php:894 msgid "The number of INSERT DELAYED rows written." msgstr "Počet riadkov vložených príkazom INSERT DELAYED." -#: libraries/messages.inc.php:899 +#: libraries/messages.inc.php:895 msgid "The number of executed FLUSH statements." msgstr "Počet vykonaných príkazov FLUSH." -#: libraries/messages.inc.php:900 +#: libraries/messages.inc.php:896 msgid "The number of internal COMMIT statements." msgstr "Počet interných príkazov COMMIT." -#: libraries/messages.inc.php:901 +#: libraries/messages.inc.php:897 msgid "The number of times a row was deleted from a table." msgstr "Koľkokrát bol z tabuľky odstránený riadok." -#: libraries/messages.inc.php:902 +#: libraries/messages.inc.php:898 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -5365,7 +5365,7 @@ msgstr "" "tabuľky s daným menom. Tento proces sa nazýva objavovanie. Handler_discover " "zobrazuje počet doposiaľ objavených tabuliek." -#: libraries/messages.inc.php:903 +#: libraries/messages.inc.php:899 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -5375,7 +5375,7 @@ msgstr "" "znamená to že server vykonáva príliš veľa kompletných prechádzaní indexov; " "napríklad, SELECT col1 FROM foo, za predpokladu že col1 je indexovaný." -#: libraries/messages.inc.php:904 +#: libraries/messages.inc.php:900 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -5383,7 +5383,7 @@ msgstr "" "Počet požiadavkov na načítanie riadku podľa kľúča. Ak je táto hodnota " "vysoká, je to dobrým znamením že sú príkazy a tabuľky správne indexované." -#: libraries/messages.inc.php:905 +#: libraries/messages.inc.php:901 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -5393,7 +5393,7 @@ msgstr "" "Táto hodnota sa zvyšuje ak sa načítava indexovaný stĺpec v danom rozsahu " "alebo ak sa vykonáva prehľadávanie indexu." -#: libraries/messages.inc.php:906 +#: libraries/messages.inc.php:902 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -5402,7 +5402,7 @@ msgstr "" "čítacia metóda sa použiva hlavne na optimalizáciu príkazov typu ORDER BY ... " "DESC." -#: libraries/messages.inc.php:907 +#: libraries/messages.inc.php:903 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -5415,7 +5415,7 @@ msgstr "" "kompletne prehľadávať tabuľky, alebo sa používajú zjednotenia, ktoré správne " "nevyužívajú kľúče." -#: libraries/messages.inc.php:908 +#: libraries/messages.inc.php:904 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -5427,35 +5427,35 @@ msgstr "" "tabuľky nie sú správne indexované alebo príkazy nedostatočne využívajú " "dostupné indexy." -#: libraries/messages.inc.php:909 +#: libraries/messages.inc.php:905 msgid "The number of internal ROLLBACK statements." msgstr "Počet interných príkazov ROLLBACK." -#: libraries/messages.inc.php:910 +#: libraries/messages.inc.php:906 msgid "The number of requests to update a row in a table." msgstr "Počet požiadavkov na zmenu záznamu (riadku) v tabuľke." -#: libraries/messages.inc.php:911 +#: libraries/messages.inc.php:907 msgid "The number of requests to insert a row in a table." msgstr "Počet požiadavkov na vloženie nového záznamu (riadku) do tabuľky." -#: libraries/messages.inc.php:912 +#: libraries/messages.inc.php:908 msgid "The number of pages containing data (dirty or clean)." msgstr "Počet stránok obsahujúcich dáta (nečistých aj čistých)." -#: libraries/messages.inc.php:913 +#: libraries/messages.inc.php:909 msgid "The number of pages currently dirty." msgstr "Počet nečistých stránok." -#: libraries/messages.inc.php:914 +#: libraries/messages.inc.php:910 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Počet stránok, na ktoré je požiadavka na vyprázdnenie." -#: libraries/messages.inc.php:915 +#: libraries/messages.inc.php:911 msgid "The number of free pages." msgstr "Počet voľných stránok." -#: libraries/messages.inc.php:916 +#: libraries/messages.inc.php:912 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -5465,7 +5465,7 @@ msgstr "" "momentálne číta alebo zapisuje, prípadne nemôžu byť vyprázdnené ani " "odstránené z nejakého iného dôvodu." -#: libraries/messages.inc.php:917 +#: libraries/messages.inc.php:913 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -5477,11 +5477,11 @@ msgstr "" "hodnota sa tiež môže vypočítať ako Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: libraries/messages.inc.php:918 +#: libraries/messages.inc.php:914 msgid "Total size of buffer pool, in pages." msgstr "Celkový počet stránok vo vyrovnávacej pamäti InnoDB." -#: libraries/messages.inc.php:919 +#: libraries/messages.inc.php:915 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -5489,7 +5489,7 @@ msgstr "" "Počet \"náhodných\" predčítaní vykonaných InnoDB. Táto situácia nastáva pri " "príkazoch, ktoré prehľadávajú veľkú časť tabuľky, ale v náhodnom poradí." -#: libraries/messages.inc.php:920 +#: libraries/messages.inc.php:916 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -5497,11 +5497,11 @@ msgstr "" "Počet sekvenčných predčítaní vykonaných InnoDB. Táto situácia nastáva pri " "vykonávaní sekvenčného prehľadávania celej tabuľky." -#: libraries/messages.inc.php:921 +#: libraries/messages.inc.php:917 msgid "The number of logical read requests InnoDB has done." msgstr "Počet požiadavkov na logické načítavanie." -#: libraries/messages.inc.php:922 +#: libraries/messages.inc.php:918 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -5509,7 +5509,7 @@ msgstr "" "Počet logických načítaní, ktoré sa nemohli vykonať z vyrovnávacej pamäte a " "namiesto toho bolo vykonané načítanie celej jednej stránky." -#: libraries/messages.inc.php:923 +#: libraries/messages.inc.php:919 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -5523,88 +5523,88 @@ msgstr "" "počet týchto čakaní a ak bola správne nastavená veľkosť vyrovnávacej pamäte, " "mala by byť nízka." -#: libraries/messages.inc.php:924 +#: libraries/messages.inc.php:920 msgid "The number writes done to the InnoDB buffer pool." msgstr "Počet zápisov do vyrovnávacej pamäte InnoDB." -#: libraries/messages.inc.php:925 +#: libraries/messages.inc.php:921 msgid "The number of fsync() operations so far." msgstr "Počet vykonaných fsync() operácií." -#: libraries/messages.inc.php:926 +#: libraries/messages.inc.php:922 msgid "The current number of pending fsync() operations." msgstr "Aktuálny počet prebiehajúcich fsync() operácií." -#: libraries/messages.inc.php:927 +#: libraries/messages.inc.php:923 msgid "The current number of pending reads." msgstr "Počet aktuálne prebiehajúcich načítavaní." -#: libraries/messages.inc.php:928 +#: libraries/messages.inc.php:924 msgid "The current number of pending writes." msgstr "Počet aktuálne prebiehajúcich zápisov." -#: libraries/messages.inc.php:929 +#: libraries/messages.inc.php:925 msgid "The amount of data read so far, in bytes." msgstr "Množstvo už načítaných dát, v bajtoch." -#: libraries/messages.inc.php:930 +#: libraries/messages.inc.php:926 msgid "The total number of data reads." msgstr "Celkový počet načítaní dát." -#: libraries/messages.inc.php:931 +#: libraries/messages.inc.php:927 msgid "The total number of data writes." msgstr "Celkový počet zápisov dát." -#: libraries/messages.inc.php:932 +#: libraries/messages.inc.php:928 msgid "The amount of data written so far, in bytes." msgstr "Množstvo už zapísaných dát, v bajtoch." -#: libraries/messages.inc.php:933 +#: libraries/messages.inc.php:929 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Počet vykonaných dvojitých zápisov a počet stránok zapísaných pre tento účel." -#: libraries/messages.inc.php:934 +#: libraries/messages.inc.php:930 msgid "The number of doublewrite operations that have been performed." msgstr "" "Počet vykonaných dvojitých zápisov a počet stránok zapísaných pre tento účel." -#: libraries/messages.inc.php:935 +#: libraries/messages.inc.php:931 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" "Počet čakaní na vyprázdnenie vyrovnávacej pamäte logu z dôvodu jej zaplnenia." -#: libraries/messages.inc.php:936 +#: libraries/messages.inc.php:932 msgid "The number of log write requests." msgstr "Počet požiadaviek na zápis do logovacieho súboru." -#: libraries/messages.inc.php:937 +#: libraries/messages.inc.php:933 msgid "The number of physical writes to the log file." msgstr "Počet fyzických zápisov do logovacieho súboru." -#: libraries/messages.inc.php:938 +#: libraries/messages.inc.php:934 msgid "The number of fsync() writes done to the log file." msgstr "Počet fsync zápisov vykonaných na logovacom súbore." -#: libraries/messages.inc.php:939 +#: libraries/messages.inc.php:935 msgid "The number of pending log file fsyncs." msgstr "Počet prebiehajúcich synchronizácií logovacieho súboru." -#: libraries/messages.inc.php:940 +#: libraries/messages.inc.php:936 msgid "Pending log file writes." msgstr "Počet prebiehajúcich zápisov do logovacieho súboru." -#: libraries/messages.inc.php:941 +#: libraries/messages.inc.php:937 msgid "The number of bytes written to the log file." msgstr "Množstvo bajtov zapísaných do logovacieho súboru." -#: libraries/messages.inc.php:942 +#: libraries/messages.inc.php:938 msgid "The number of pages created." msgstr "Počet vytvorených stránok." -#: libraries/messages.inc.php:943 +#: libraries/messages.inc.php:939 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -5613,51 +5613,51 @@ msgstr "" "hodnôt sa udáva v stránkach; pomocou veľkosti stránky je možné ich premeniť " "na bajty." -#: libraries/messages.inc.php:944 +#: libraries/messages.inc.php:940 msgid "The number of pages read." msgstr "Počet načítaných stránok." -#: libraries/messages.inc.php:945 +#: libraries/messages.inc.php:941 msgid "The number of pages written." msgstr "Počet zapísaných stránok." -#: libraries/messages.inc.php:946 +#: libraries/messages.inc.php:942 msgid "The number of row locks currently being waited for." msgstr "Počet zámkov na riadky, na ktoré sa čaká." -#: libraries/messages.inc.php:947 +#: libraries/messages.inc.php:943 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Priemerný čas potrebný na získanie zámku na riadok, v milisekundách." -#: libraries/messages.inc.php:948 +#: libraries/messages.inc.php:944 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Celkový čas potrebný na získanie zámku na riadok, v milisekundách." -#: libraries/messages.inc.php:949 +#: libraries/messages.inc.php:945 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Maximálny čas potrebný na získanie zámku na riadok, v milisekundách." -#: libraries/messages.inc.php:950 +#: libraries/messages.inc.php:946 msgid "The number of times a row lock had to be waited for." msgstr "Koľkokrát sa muselo čakať na zámok na riadok." -#: libraries/messages.inc.php:951 +#: libraries/messages.inc.php:947 msgid "The number of rows deleted from InnoDB tables." msgstr "Počet záznamov (riadkov) odstránených z InnoDB tabuliek." -#: libraries/messages.inc.php:952 +#: libraries/messages.inc.php:948 msgid "The number of rows inserted in InnoDB tables." msgstr "Počet záznamov (riadkov) vložených do InnoDB tabuliek." -#: libraries/messages.inc.php:953 +#: libraries/messages.inc.php:949 msgid "The number of rows read from InnoDB tables." msgstr "Počet načítaných záznamov (riadkov) z InnoDB tabuliek." -#: libraries/messages.inc.php:954 +#: libraries/messages.inc.php:950 msgid "The number of rows updated in InnoDB tables." msgstr "Počet upravených záznamov (riadkov) v InnoDB tabuľkách." -#: libraries/messages.inc.php:955 +#: libraries/messages.inc.php:951 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -5666,7 +5666,7 @@ msgstr "" "neboli zapísané na disk. Predtým sa táto hodnota nazývala " "Not_flushed_key_blocks." -#: libraries/messages.inc.php:956 +#: libraries/messages.inc.php:952 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -5674,7 +5674,7 @@ msgstr "" "Počet nevyužitých blokov vo vyrovnávacej pamäti kľúčov. Z tejto hodnoty " "môžete zistiť koľko vyrovnávacej pamäte sa práve používa." -#: libraries/messages.inc.php:957 +#: libraries/messages.inc.php:953 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -5683,11 +5683,11 @@ msgstr "" "Počet využitých blokov vo vyrovnávacej pamäti kľúčov. Táto hodnota určuje " "najväčšie množstvo blokov, ktoré kedy naraz použité." -#: libraries/messages.inc.php:958 +#: libraries/messages.inc.php:954 msgid "The number of requests to read a key block from the cache." msgstr "Počet požiadavkov na načítanie kľúčového bloku z vyrovnávacej pamäti." -#: libraries/messages.inc.php:959 +#: libraries/messages.inc.php:955 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -5698,15 +5698,15 @@ msgstr "" "je príliš malá. Úspešnosť vyrovnávacej pamäte si môžte vypočítať zo vzťahu " "Key_reads/Key_read_requests." -#: libraries/messages.inc.php:960 +#: libraries/messages.inc.php:956 msgid "The number of requests to write a key block to the cache." msgstr "Počet požiadavkov na zápis kľúčového bloku do vyrovnávacej pamäti." -#: libraries/messages.inc.php:961 +#: libraries/messages.inc.php:957 msgid "The number of physical writes of a key block to disk." msgstr "Počet fyzických zápisov kľúčového bloku na disk." -#: libraries/messages.inc.php:962 +#: libraries/messages.inc.php:958 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -5717,11 +5717,11 @@ msgstr "" "požiadavku. Prednastavená hodnota 0 znamená, že doposiaľ neboli skompilované " "žiadne príkazy." -#: libraries/messages.inc.php:963 +#: libraries/messages.inc.php:959 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Počet riadkov čakajúcich na zápis cez INSERT DELAYED." -#: libraries/messages.inc.php:964 +#: libraries/messages.inc.php:960 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -5729,35 +5729,35 @@ msgstr "" "Počet doposiaľ otvorených tabuliek. Ak je táto hodnota príliš vysoká, " "pravdepodobne je vyrovnávacia pamäť pre tabuľky príliš malá." -#: libraries/messages.inc.php:965 +#: libraries/messages.inc.php:961 msgid "The number of files that are open." msgstr "Počet otvorených súborov." -#: libraries/messages.inc.php:966 +#: libraries/messages.inc.php:962 msgid "The number of streams that are open (used mainly for logging)." msgstr "Počet otvorených streamov (väčšinou využívané na logovanie)." -#: libraries/messages.inc.php:967 +#: libraries/messages.inc.php:963 msgid "The number of tables that are open." msgstr "Počet práve otvorených tabuliek." -#: libraries/messages.inc.php:968 +#: libraries/messages.inc.php:964 msgid "The number of free memory blocks in query cache." msgstr "Množstvo voľných pamäťových blokov vo vyrovnávacej pamäti príkazov." -#: libraries/messages.inc.php:969 +#: libraries/messages.inc.php:965 msgid "The amount of free memory for query cache." msgstr "Veľkosť voľnej pamäti pre vyrovnávaciu pamäť príkazov." -#: libraries/messages.inc.php:970 +#: libraries/messages.inc.php:966 msgid "The number of cache hits." msgstr "Počet zásahov vyrovnávacej pamäti." -#: libraries/messages.inc.php:971 +#: libraries/messages.inc.php:967 msgid "The number of queries added to the cache." msgstr "Počet príkazov pridaných do vyrovnávacej pamäti." -#: libraries/messages.inc.php:972 +#: libraries/messages.inc.php:968 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -5770,7 +5770,7 @@ msgstr "" "vyrovnávacej pamäti sa používa stratégia LRU (tzn. najdlhšie nepoužité " "príkazy budú odstránené ako prvé)." -#: libraries/messages.inc.php:973 +#: libraries/messages.inc.php:969 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -5778,24 +5778,24 @@ msgstr "" "Počet príkazov neumiestnených do vyrovnávacej pamäti (nie sú cachovateľné " "alebo nevyhovujú nastaveniu query_cache_type)." -#: libraries/messages.inc.php:974 +#: libraries/messages.inc.php:970 msgid "The number of queries registered in the cache." msgstr "Počet príkazov registrovaných vo vyrovnávacej pamäti." -#: libraries/messages.inc.php:975 +#: libraries/messages.inc.php:971 msgid "The total number of blocks in the query cache." msgstr "Celkové množstvo blokov vo vyrovnávacej pamäti príkazov." -#: libraries/messages.inc.php:976 +#: libraries/messages.inc.php:972 msgctxt "$strShowStatusReset" msgid "Reset" msgstr "Vynulovať" -#: libraries/messages.inc.php:977 +#: libraries/messages.inc.php:973 msgid "The status of failsafe replication (not yet implemented)." msgstr "Stav failsafe replikácie (zatiaľ neimplementované)." -#: libraries/messages.inc.php:978 +#: libraries/messages.inc.php:974 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -5803,12 +5803,12 @@ msgstr "" "Počet spojení, ktoré nevyužívajú indexy. Ak sa táto hodnota nerovná 0, mali " "by ste starostlivo skontrolovať indexy vašich tabuliek." -#: libraries/messages.inc.php:979 +#: libraries/messages.inc.php:975 msgid "The number of joins that used a range search on a reference table." msgstr "" "Počet spojení, ktoré na referenčnej tabuľke využili intervalové vyhľadávanie." -#: libraries/messages.inc.php:980 +#: libraries/messages.inc.php:976 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -5817,7 +5817,7 @@ msgstr "" "(ak táto hodnota nie je 0, mali by ste starostlivo skontrolovať indexy " "vašich tabuliek)." -#: libraries/messages.inc.php:981 +#: libraries/messages.inc.php:977 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -5825,15 +5825,15 @@ msgstr "" "Počet spojení, ktoré na prvej tabuľke využili intervalové vyhľadávanie (táto " "hodnota nie je kritická ani v prípade, že je vysoká)." -#: libraries/messages.inc.php:982 +#: libraries/messages.inc.php:978 msgid "The number of joins that did a full scan of the first table." msgstr "Počet spojení, ktoré vykonali kompletné prehľadanie prvej tabuľky." -#: libraries/messages.inc.php:983 +#: libraries/messages.inc.php:979 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "Počet dočasných tabuliek, otvorených podriadeným SQL vláknom." -#: libraries/messages.inc.php:984 +#: libraries/messages.inc.php:980 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -5841,13 +5841,13 @@ msgstr "" "Celkový počet (od spustenia) pokusov replikačného podriadeného SQL vlákna o " "znovuobnovenie transakcie." -#: libraries/messages.inc.php:985 +#: libraries/messages.inc.php:981 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Táto položka obsahuje hodnotu ON ak je tento server podriadeným a je " "pripojený k prislúchajúcemu nadriadenému servru." -#: libraries/messages.inc.php:986 +#: libraries/messages.inc.php:982 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -5855,14 +5855,14 @@ msgstr "" "Počet vlákien, ktorých vytvorenie zabralo viac ako je hodnota " "slow_launch_time." -#: libraries/messages.inc.php:987 +#: libraries/messages.inc.php:983 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "Počet príkazov, ktorých vykonanie zabralo viac ako je hodnota " "long_query_time." -#: libraries/messages.inc.php:988 +#: libraries/messages.inc.php:984 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -5872,23 +5872,23 @@ msgstr "" "je táto hodnota prílis veľká, mali by ste pouvažovať nad zvýšením hodnoty " "systémového nastavania sort_buffer_size." -#: libraries/messages.inc.php:989 +#: libraries/messages.inc.php:985 msgid "The number of sorts that were done with ranges." msgstr "Počet rozsahom obmedzených zoraďovaní." -#: libraries/messages.inc.php:990 +#: libraries/messages.inc.php:986 msgid "The number of sorted rows." msgstr "Počet zoradených riadkov." -#: libraries/messages.inc.php:991 +#: libraries/messages.inc.php:987 msgid "The number of sorts that were done by scanning the table." msgstr "Počet zoradení uskutočnených prehľadávaním tabuľky." -#: libraries/messages.inc.php:992 +#: libraries/messages.inc.php:988 msgid "The number of times that a table lock was acquired immediately." msgstr "Počet zámkov tabuliek, ktoré boli získané okamžite." -#: libraries/messages.inc.php:993 +#: libraries/messages.inc.php:989 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -5900,7 +5900,7 @@ msgstr "" "najprv optimalizovať vaše príkazy a potom buď rozdeliť tabuľku/tabuľky alebo " "použiť replikáciu." -#: libraries/messages.inc.php:994 +#: libraries/messages.inc.php:990 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -5910,11 +5910,11 @@ msgstr "" "dá vypočítať zo vzťahu Threads_created/Connections. Ak je táto hodnota v " "červenom, mali by ste zvýšiť hodnotu thread_cache_size." -#: libraries/messages.inc.php:995 +#: libraries/messages.inc.php:991 msgid "The number of currently open connections." msgstr "Počet momentálne otvorených spojení." -#: libraries/messages.inc.php:996 +#: libraries/messages.inc.php:992 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -5925,74 +5925,74 @@ msgstr "" "Threads_created vysoká, mohli by ste zvýšiť hodnotu thread_cache_size (to " "však nespôsobí žiadnu citeľnú zmenu ak máte vlákna dobre implementované)." -#: libraries/messages.inc.php:997 +#: libraries/messages.inc.php:993 msgid "The number of threads that are not sleeping." msgstr "Počet aktívnych (nespiacich) vlákien." -#: libraries/messages.inc.php:999 tbl_printview.php:75 +#: libraries/messages.inc.php:995 tbl_printview.php:75 msgid "Show tables" msgstr "Zobraziť tabuľky" -#: libraries/messages.inc.php:1000 libraries/sql_query_form.lib.php:396 +#: libraries/messages.inc.php:996 libraries/sql_query_form.lib.php:396 msgid " Show this query here again " msgstr " Zobraziť tento dopyt znovu " -#: libraries/messages.inc.php:1001 libraries/mysql_charsets.lib.php:217 +#: libraries/messages.inc.php:997 libraries/mysql_charsets.lib.php:217 #: libraries/mysql_charsets.lib.php:342 msgid "Simplified Chinese" msgstr "Zjednodušená Čínština" -#: libraries/messages.inc.php:1002 tbl_operations.php:258 +#: libraries/messages.inc.php:998 tbl_operations.php:258 msgid "(singly)" msgstr "(po jednom)" -#: libraries/messages.inc.php:1005 libraries/replication_gui.lib.php:52 +#: libraries/messages.inc.php:1001 libraries/replication_gui.lib.php:52 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" msgstr "" -#: libraries/messages.inc.php:1006 libraries/mysql_charsets.lib.php:283 +#: libraries/messages.inc.php:1002 libraries/mysql_charsets.lib.php:283 msgid "Slovak" msgstr "Slovenčina" -#: libraries/messages.inc.php:1007 libraries/mysql_charsets.lib.php:286 +#: libraries/messages.inc.php:1003 libraries/mysql_charsets.lib.php:286 msgid "Slovenian" msgstr "Slovinčina" -#: libraries/messages.inc.php:1008 pmd_general.php:95 +#: libraries/messages.inc.php:1004 pmd_general.php:95 msgid "Small/Big All" msgstr "" -#: libraries/messages.inc.php:1009 pmd_general.php:91 +#: libraries/messages.inc.php:1005 pmd_general.php:91 msgid "Snap to grid" msgstr "" -#: libraries/messages.inc.php:1011 server_synchronize.php:1167 +#: libraries/messages.inc.php:1007 server_synchronize.php:1167 msgid "Socket" msgstr "Socket" -#: libraries/messages.inc.php:1013 server_status.php:259 +#: libraries/messages.inc.php:1009 server_status.php:259 msgid "Sorting" msgstr "Zoraďovanie" -#: libraries/messages.inc.php:1015 tbl_printview.php:310 tbl_structure.php:657 +#: libraries/messages.inc.php:1011 tbl_printview.php:310 tbl_structure.php:657 msgid "Space usage" msgstr "Zabrané miesto" -#: libraries/messages.inc.php:1016 libraries/mysql_charsets.lib.php:289 +#: libraries/messages.inc.php:1012 libraries/mysql_charsets.lib.php:289 msgid "Spanish" msgstr "Španielsky" -#: libraries/messages.inc.php:1019 +#: libraries/messages.inc.php:1015 msgid "Export type" msgstr "Typ vytvorených dopytov" -#: libraries/messages.inc.php:1020 +#: libraries/messages.inc.php:1016 msgid "Export time in UTC" msgstr "" -#: libraries/messages.inc.php:1021 libraries/sqlparser.lib.php:173 +#: libraries/messages.inc.php:1017 libraries/sqlparser.lib.php:173 msgid "" "There is a chance that you may have found a bug in the SQL parser. Please " "examine your query closely, and check that the quotes are correct and not " @@ -6014,7 +6014,7 @@ msgstr "" "problém ešte vyskytuje a ohláste chybu na stránke phpMyAdmina spolu so " "sekciou VÝPIS uvedenú nižšie:" -#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:137 +#: libraries/messages.inc.php:1018 libraries/sqlparser.lib.php:137 msgid "" "There seems to be an error in your SQL query. The MySQL server error output " "below, if there is any, may also help you in diagnosing the problem" @@ -6022,32 +6022,32 @@ msgstr "" "Vyskytla sa chyba v SQL dopyte. Nižšie uvedený MySQL výstup (ak je nejaký) " "Vám môže pomôcť odstrániť problém" -#: libraries/messages.inc.php:1026 libraries/sqlparser.lib.php:495 +#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:495 msgid "Invalid Identifer" msgstr "Neplatný identifikátor" -#: libraries/messages.inc.php:1027 libraries/sqlparser.lib.php:344 +#: libraries/messages.inc.php:1023 libraries/sqlparser.lib.php:344 msgid "Unclosed quote" msgstr "Neuzatvorené úvodzovky" -#: libraries/messages.inc.php:1028 libraries/sqlparser.lib.php:612 +#: libraries/messages.inc.php:1024 libraries/sqlparser.lib.php:612 msgid "Unknown Punctuation String" msgstr "Neznámy interpunkčný reťazec" -#: libraries/messages.inc.php:1030 server_replication.php:327 +#: libraries/messages.inc.php:1026 server_replication.php:327 #: server_replication.php:328 msgid "Start" msgstr "Štart" -#: libraries/messages.inc.php:1033 tbl_printview.php:369 tbl_structure.php:729 +#: libraries/messages.inc.php:1029 tbl_printview.php:369 tbl_structure.php:729 msgid "Statements" msgstr "Údaj" -#: libraries/messages.inc.php:1034 tbl_printview.php:380 tbl_structure.php:741 +#: libraries/messages.inc.php:1030 tbl_printview.php:380 tbl_structure.php:741 msgid "static" msgstr "" -#: libraries/messages.inc.php:1035 server_status.php:388 +#: libraries/messages.inc.php:1031 server_status.php:388 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -6055,203 +6055,203 @@ msgstr "" "Na vyťaženom serveri môže dôjsť k pretečeniu počítadiel, takže štatistiky " "servera môžu byť nepresné." -#: libraries/messages.inc.php:1038 server_replication.php:327 +#: libraries/messages.inc.php:1034 server_replication.php:327 #: server_replication.php:328 msgid "Stop" msgstr "Stop" -#: libraries/messages.inc.php:1039 server_engines.php:49 +#: libraries/messages.inc.php:1035 server_engines.php:49 msgid "Storage Engines" msgstr "Úložné Systémy" -#: libraries/messages.inc.php:1040 libraries/tbl_properties.inc.php:726 +#: libraries/messages.inc.php:1036 libraries/tbl_properties.inc.php:726 #: server_engines.php:58 tbl_operations.php:353 msgid "Storage Engine" msgstr "Úložný Systém" -#: libraries/messages.inc.php:1042 +#: libraries/messages.inc.php:1038 msgid "CSV for MS Excel" msgstr "CSV pre MS Excel dáta" -#: libraries/messages.inc.php:1044 tbl_structure.php:516 tbl_structure.php:518 +#: libraries/messages.inc.php:1040 tbl_structure.php:516 tbl_structure.php:518 msgid "Propose table structure" msgstr "Navrhnúť štruktúru tabuľky" -#: libraries/messages.inc.php:1045 server_synchronize.php:424 +#: libraries/messages.inc.php:1041 server_synchronize.php:424 #: server_synchronize.php:867 msgid "Structure Difference" msgstr "" -#: libraries/messages.inc.php:1049 server_synchronize.php:265 +#: libraries/messages.inc.php:1045 server_synchronize.php:265 msgid "Structure Synchronization" msgstr "" -#: libraries/messages.inc.php:1050 libraries/sql_query_form.lib.php:462 +#: libraries/messages.inc.php:1046 libraries/sql_query_form.lib.php:462 msgid "Submit" msgstr "Odošli" -#: libraries/messages.inc.php:1052 main.php:358 +#: libraries/messages.inc.php:1048 main.php:358 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " "issues." msgstr "" -#: libraries/messages.inc.php:1054 libraries/mysql_charsets.lib.php:295 +#: libraries/messages.inc.php:1050 libraries/mysql_charsets.lib.php:295 #: libraries/mysql_charsets.lib.php:392 msgid "Swedish" msgstr "Švédsky" -#: libraries/messages.inc.php:1060 tbl_operations.php:556 +#: libraries/messages.inc.php:1056 tbl_operations.php:556 msgid "Switch to copied table" msgstr "Prepnúť na skopírovanú tabuľku" -#: libraries/messages.inc.php:1061 server_synchronize.php:1213 +#: libraries/messages.inc.php:1057 server_synchronize.php:1213 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." msgstr "" -#: libraries/messages.inc.php:1062 server_synchronize.php:451 +#: libraries/messages.inc.php:1058 server_synchronize.php:451 #: server_synchronize.php:896 msgid "Synchronize Databases" msgstr "Synchronizovať Databázy" -#: libraries/messages.inc.php:1063 libraries/server_links.inc.php:92 +#: libraries/messages.inc.php:1059 libraries/server_links.inc.php:92 #: server_synchronize.php:1092 server_synchronize.php:1100 msgid "Synchronize" msgstr "Synchronizovať" -#: libraries/messages.inc.php:1065 server_synchronize.php:430 +#: libraries/messages.inc.php:1061 server_synchronize.php:430 #: server_synchronize.php:873 msgid "Add column(s)" msgstr "Pridať stĺpec/stĺpce" -#: libraries/messages.inc.php:1066 tbl_create.php:62 +#: libraries/messages.inc.php:1062 tbl_create.php:62 #, php-format msgid "Table %s already exists!" msgstr "Tabuľka %s už existuje!" -#: libraries/messages.inc.php:1067 server_synchronize.php:432 +#: libraries/messages.inc.php:1063 server_synchronize.php:432 #: server_synchronize.php:875 msgid "Alter column(s)" msgstr "Upraviť stĺpec/stĺpce" -#: libraries/messages.inc.php:1068 tbl_addfield.php:189 tbl_alter.php:103 +#: libraries/messages.inc.php:1064 tbl_addfield.php:189 tbl_alter.php:103 #: tbl_indexes.php:98 #, php-format msgid "Table %1$s has been altered successfully" msgstr "Tabuľka %1$s bola úspešné upravená" -#: libraries/messages.inc.php:1069 server_synchronize.php:434 +#: libraries/messages.inc.php:1065 server_synchronize.php:434 #: server_synchronize.php:877 #, fuzzy msgid "Apply index(s)" msgstr "Odstrániť index/indexy" -#: libraries/messages.inc.php:1071 server_synchronize.php:446 +#: libraries/messages.inc.php:1067 server_synchronize.php:446 #: server_synchronize.php:890 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: libraries/messages.inc.php:1072 tbl_move_copy.php:82 +#: libraries/messages.inc.php:1068 tbl_move_copy.php:82 msgid "The table name is empty!" msgstr "Tabuľka je prázdna!" -#: libraries/messages.inc.php:1073 tbl_create.php:249 +#: libraries/messages.inc.php:1069 tbl_create.php:249 #, php-format msgid "Table %1$s has been created." msgstr "Tabuľka %1$s bola vytvorená." -#: libraries/messages.inc.php:1076 tbl_operations.php:628 +#: libraries/messages.inc.php:1072 tbl_operations.php:628 #, php-format msgid "Table %s has been flushed" msgstr "Tabuľka %s bola vyprázdnená" -#: libraries/messages.inc.php:1077 server_synchronize.php:436 +#: libraries/messages.inc.php:1073 server_synchronize.php:436 #: server_synchronize.php:879 msgid "Insert row(s)" msgstr "Pridať riadok/riadky" -#: libraries/messages.inc.php:1078 libraries/tbl_links.inc.php:107 +#: libraries/messages.inc.php:1074 libraries/tbl_links.inc.php:107 #: libraries/tbl_links.inc.php:140 libraries/tbl_links.inc.php:141 msgid "Table seems to be empty!" msgstr "Tabuľka vyzerá prázdna!" -#: libraries/messages.inc.php:1079 tbl_operations.php:568 +#: libraries/messages.inc.php:1075 tbl_operations.php:568 msgid "Table maintenance" msgstr "Údržba tabuľky" -#: libraries/messages.inc.php:1080 libraries/tbl_properties.inc.php:618 +#: libraries/messages.inc.php:1076 libraries/tbl_properties.inc.php:618 #: server_synchronize.php:428 server_synchronize.php:871 msgid "Table name" msgstr "Názov tabuľky" -#: libraries/messages.inc.php:1081 pdf_schema.php:1116 +#: libraries/messages.inc.php:1077 pdf_schema.php:1116 msgid "Table of contents" msgstr "Obsah" -#: libraries/messages.inc.php:1082 tbl_operations.php:334 +#: libraries/messages.inc.php:1078 tbl_operations.php:334 msgid "Table options" msgstr "Parametre tabuľky" -#: libraries/messages.inc.php:1083 server_synchronize.php:431 +#: libraries/messages.inc.php:1079 server_synchronize.php:431 #: server_synchronize.php:874 msgid "Remove column(s)" msgstr "Odstrániť stĺpec/stĺpce" -#: libraries/messages.inc.php:1084 server_synchronize.php:433 +#: libraries/messages.inc.php:1080 server_synchronize.php:433 #: server_synchronize.php:876 msgid "Remove index(s)" msgstr "Odstrániť index/indexy" -#: libraries/messages.inc.php:1088 server_synchronize.php:435 +#: libraries/messages.inc.php:1084 server_synchronize.php:435 #: server_synchronize.php:878 msgid "Update row(s)" msgstr "Upraviť riadok/riadky" -#: libraries/messages.inc.php:1090 server_synchronize.php:942 +#: libraries/messages.inc.php:1086 server_synchronize.php:942 msgid "Target database has been synchronized with source database" msgstr "" -#: libraries/messages.inc.php:1091 server_privileges.php:392 +#: libraries/messages.inc.php:1087 server_privileges.php:392 #: server_privileges.php:527 server_privileges.php:1679 #: server_privileges.php:1685 msgid "Table-specific privileges" msgstr "Oprávnenia pre jednotlivé tabuľky" -#: libraries/messages.inc.php:1092 server_status.php:254 +#: libraries/messages.inc.php:1088 server_status.php:254 msgid "Temporary data" msgstr "Dočasné dáta" -#: libraries/messages.inc.php:1093 tbl_change.php:728 +#: libraries/messages.inc.php:1089 tbl_change.php:728 msgid " Because of its length,
this field might not be editable " msgstr " Toto možno nepôjde upraviť,
kvôli svojej dĺžke " -#: libraries/messages.inc.php:1094 +#: libraries/messages.inc.php:1090 msgid "Texy! text" msgstr "" -#: libraries/messages.inc.php:1095 libraries/mysql_charsets.lib.php:298 +#: libraries/messages.inc.php:1091 libraries/mysql_charsets.lib.php:298 #: libraries/mysql_charsets.lib.php:395 msgid "Thai" msgstr "Thajčina" -#: libraries/messages.inc.php:1102 libraries/replication_gui.lib.php:308 +#: libraries/messages.inc.php:1098 libraries/replication_gui.lib.php:308 #: server_privileges.php:734 msgid "This Host" msgstr "Tento počítač" -#: libraries/messages.inc.php:1103 server_status.php:252 +#: libraries/messages.inc.php:1099 server_status.php:252 msgid "Threads" msgstr "Počet vlákien" -#: libraries/messages.inc.php:1104 server_processlist.php:22 +#: libraries/messages.inc.php:1100 server_processlist.php:22 #, php-format msgid "Thread %s was successfully killed." msgstr "Vlákno %s bol úspešne zabité." -#: libraries/messages.inc.php:1106 +#: libraries/messages.inc.php:1102 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -6260,185 +6260,185 @@ msgstr "" "že phpMyAdmin nebude schopný dokončiť tento import, pokiaľ nebude zvýšený " "časový limit behu skriptu v php." -#: libraries/messages.inc.php:1109 pmd_pdf.php:94 +#: libraries/messages.inc.php:1105 pmd_pdf.php:94 msgid "to/from page" msgstr "" -#: libraries/messages.inc.php:1110 pdf_pages.php:343 +#: libraries/messages.inc.php:1106 pdf_pages.php:343 msgid "Toggle scratchboard" msgstr "zobraziť grafický návrh" -#: libraries/messages.inc.php:1111 pmd_general.php:99 +#: libraries/messages.inc.php:1107 pmd_general.php:99 msgid "Toggle small/big" msgstr "" -#: libraries/messages.inc.php:1112 pmd_help.php:27 +#: libraries/messages.inc.php:1108 pmd_help.php:27 msgid "To select relation, click :" msgstr "" -#: libraries/messages.inc.php:1115 libraries/tbl_links.inc.php:149 +#: libraries/messages.inc.php:1111 libraries/tbl_links.inc.php:149 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" -#: libraries/messages.inc.php:1116 tbl_tracking.php:655 +#: libraries/messages.inc.php:1112 tbl_tracking.php:655 msgid "Activate now" msgstr "" -#: libraries/messages.inc.php:1117 tbl_tracking.php:653 +#: libraries/messages.inc.php:1113 tbl_tracking.php:653 #, php-format msgid "Activate tracking for %s.%s" msgstr "" -#: libraries/messages.inc.php:1118 tbl_tracking.php:221 +#: libraries/messages.inc.php:1114 tbl_tracking.php:221 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/messages.inc.php:1119 tbl_tracking.php:688 +#: libraries/messages.inc.php:1115 tbl_tracking.php:688 #, fuzzy msgid "Create version" msgstr "Vytvoriť relaciu" -#: libraries/messages.inc.php:1120 tbl_tracking.php:668 +#: libraries/messages.inc.php:1116 tbl_tracking.php:668 #, php-format msgid "Create version %s of %s.%s" msgstr "" -#: libraries/messages.inc.php:1122 tbl_tracking.php:412 +#: libraries/messages.inc.php:1118 tbl_tracking.php:412 msgid "Data definition statement" msgstr "" -#: libraries/messages.inc.php:1123 tbl_tracking.php:463 +#: libraries/messages.inc.php:1119 tbl_tracking.php:463 msgid "Data manipulation statement" msgstr "" -#: libraries/messages.inc.php:1124 tbl_tracking.php:410 tbl_tracking.php:461 +#: libraries/messages.inc.php:1120 tbl_tracking.php:410 tbl_tracking.php:461 #, fuzzy msgid "Date" msgstr "Dáta" -#: libraries/messages.inc.php:1125 tbl_tracking.php:642 +#: libraries/messages.inc.php:1121 tbl_tracking.php:642 msgid "Deactivate now" msgstr "" -#: libraries/messages.inc.php:1126 tbl_tracking.php:640 +#: libraries/messages.inc.php:1122 tbl_tracking.php:640 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "" -#: libraries/messages.inc.php:1127 tbl_tracking.php:521 +#: libraries/messages.inc.php:1123 tbl_tracking.php:521 #, php-format msgid "Export as %s" msgstr "" -#: libraries/messages.inc.php:1130 tbl_tracking.php:251 tbl_tracking.php:379 +#: libraries/messages.inc.php:1126 tbl_tracking.php:251 tbl_tracking.php:379 msgid "Close" msgstr "" -#: libraries/messages.inc.php:1131 tbl_tracking.php:114 +#: libraries/messages.inc.php:1127 tbl_tracking.php:114 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/messages.inc.php:1133 tbl_tracking.php:397 tbl_tracking.php:504 +#: libraries/messages.inc.php:1129 tbl_tracking.php:397 tbl_tracking.php:504 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "" -#: libraries/messages.inc.php:1134 tbl_tracking.php:561 +#: libraries/messages.inc.php:1130 tbl_tracking.php:561 msgid "Show versions" msgstr "" -#: libraries/messages.inc.php:1135 tbl_tracking.php:507 +#: libraries/messages.inc.php:1131 tbl_tracking.php:507 msgid "SQL dump (file download)" msgstr "" -#: libraries/messages.inc.php:1136 tbl_tracking.php:508 +#: libraries/messages.inc.php:1132 tbl_tracking.php:508 msgid "SQL dump" msgstr "" -#: libraries/messages.inc.php:1137 tbl_tracking.php:213 +#: libraries/messages.inc.php:1133 tbl_tracking.php:213 msgid "SQL statements executed." msgstr "" -#: libraries/messages.inc.php:1138 +#: libraries/messages.inc.php:1134 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/messages.inc.php:1139 tbl_tracking.php:509 +#: libraries/messages.inc.php:1135 tbl_tracking.php:509 msgid "SQL execution" msgstr "" -#: libraries/messages.inc.php:1140 tbl_tracking.php:230 +#: libraries/messages.inc.php:1136 tbl_tracking.php:230 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/messages.inc.php:1141 tbl_tracking.php:381 +#: libraries/messages.inc.php:1137 tbl_tracking.php:381 msgid "Tracking statements" msgstr "" -#: libraries/messages.inc.php:1148 tbl_tracking.php:593 +#: libraries/messages.inc.php:1144 tbl_tracking.php:593 #, fuzzy msgid "Version" msgstr "Perština" -#: libraries/messages.inc.php:1149 tbl_tracking.php:672 +#: libraries/messages.inc.php:1145 tbl_tracking.php:672 msgid "Track these data definition statements:" msgstr "" -#: libraries/messages.inc.php:1150 tbl_tracking.php:680 +#: libraries/messages.inc.php:1146 tbl_tracking.php:680 msgid "Track these data manipulation statements:" msgstr "" -#: libraries/messages.inc.php:1155 tbl_tracking.php:411 tbl_tracking.php:462 +#: libraries/messages.inc.php:1151 tbl_tracking.php:411 tbl_tracking.php:462 #, fuzzy msgid "Username" msgstr "Používateľ:" -#: libraries/messages.inc.php:1156 tbl_tracking.php:203 +#: libraries/messages.inc.php:1152 tbl_tracking.php:203 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "" -#: libraries/messages.inc.php:1157 tbl_tracking.php:187 +#: libraries/messages.inc.php:1153 tbl_tracking.php:187 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "" -#: libraries/messages.inc.php:1158 tbl_tracking.php:195 +#: libraries/messages.inc.php:1154 tbl_tracking.php:195 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "" -#: libraries/messages.inc.php:1159 tbl_tracking.php:262 +#: libraries/messages.inc.php:1155 tbl_tracking.php:262 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/messages.inc.php:1161 tbl_tracking.php:220 +#: libraries/messages.inc.php:1157 tbl_tracking.php:220 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/messages.inc.php:1162 libraries/mysql_charsets.lib.php:219 +#: libraries/messages.inc.php:1158 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:362 msgid "Traditional Chinese" msgstr "Tradičná Čínština" -#: libraries/messages.inc.php:1163 libraries/mysql_charsets.lib.php:292 +#: libraries/messages.inc.php:1159 libraries/mysql_charsets.lib.php:292 msgid "Traditional Spanish" msgstr "Tradičná Španielčina" -#: libraries/messages.inc.php:1164 server_status.php:388 +#: libraries/messages.inc.php:1160 server_status.php:388 msgid "Traffic" msgstr "Prevádzka" -#: libraries/messages.inc.php:1165 server_status.php:261 +#: libraries/messages.inc.php:1161 server_status.php:261 msgid "Transaction coordinator" msgstr "Koordinátor transakcií" -#: libraries/messages.inc.php:1166 +#: libraries/messages.inc.php:1162 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 " @@ -6449,7 +6449,7 @@ msgstr "" "meno stĺpca v tabuľke obsahujúci meno súboru. Ak zadáte druhý parameter, " "prvý musí byť prázdny." -#: libraries/messages.inc.php:1167 +#: libraries/messages.inc.php:1163 msgid "" "Displays hexadecimal representation of data. Optional first parameter " "specifies how often space will be added (defaults to 2 nibbles)." @@ -6457,7 +6457,7 @@ msgstr "" "Zobrazí dáta v ich hexadecimálnej forme. Nepovinný parameter určuje po koľko " "znakoch je vkladaná medzera (štandardne po dvoch)." -#: libraries/messages.inc.php:1168 +#: libraries/messages.inc.php:1164 msgid "" "Displays a clickable thumbnail. The options are the maximum width and height " "in pixels. The original aspect ratio is preserved." @@ -6465,15 +6465,15 @@ msgstr "" "Zobrazí náhľad obrázku s odkazom na obrázok; parametre šírka a výška v " "bodoch (pomer strán obrázku zostane zachovaný)" -#: libraries/messages.inc.php:1169 +#: libraries/messages.inc.php:1165 msgid "Displays a link to download this image." msgstr "Zobrazí odkaz na obrázok (napr. stiahnutie poľa blob)." -#: libraries/messages.inc.php:1170 +#: libraries/messages.inc.php:1166 msgid "See image/jpeg: inline" msgstr "Zobrazí image/jpeg: inline" -#: libraries/messages.inc.php:1171 +#: libraries/messages.inc.php:1167 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 " @@ -6485,7 +6485,7 @@ msgid "" "gmdate() function." msgstr "" -#: libraries/messages.inc.php:1172 +#: libraries/messages.inc.php:1168 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 " @@ -6509,13 +6509,13 @@ msgstr "" "výstupnému textu parameter NOWRAP, čím zabezpečí zachovanie formátovania " "(predvolený je 1)" -#: libraries/messages.inc.php:1173 +#: libraries/messages.inc.php:1169 msgid "" "Displays the contents of the field as-is, without running it through " "htmlspecialchars(). That is, the field is assumed to contain valid HTML." msgstr "Zachová pôvodné formátovanie poľa tak ako je uložené v databáze." -#: libraries/messages.inc.php:1174 +#: libraries/messages.inc.php:1170 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 " @@ -6525,7 +6525,7 @@ msgstr "" "je prefix URL (napr. \"http://domena.sk/\"), druhý a tretí parameter určujú " "šírku a výšku obrázku." -#: libraries/messages.inc.php:1175 +#: libraries/messages.inc.php:1171 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 " @@ -6534,11 +6534,11 @@ msgstr "" "Zobrazí odkaz z poľa obsahujúceho odkaz. Prvý parameter je prefix URL (napr. " "\"http://domena.sk/\"), druhý parameter je text odkazu." -#: libraries/messages.inc.php:1176 +#: libraries/messages.inc.php:1172 msgid "Formats text as SQL query with syntax highlighting." msgstr "Formátuje text ako SQL príkaz pomocou syntaxového zvýrazňovania." -#: libraries/messages.inc.php:1177 +#: libraries/messages.inc.php:1173 msgid "" "Displays a part of a string. The first option is the number of characters to " "skip from the beginning of the string (Default 0). The second option is the " @@ -6551,71 +6551,71 @@ msgstr "" "zobrazený zvyšok textu. Tretí parameter určuje znaky, ktoré budú pridané na " "koniec skráteného textu (predvolené je ...)." -#: libraries/messages.inc.php:1179 server_binlog.php:183 server_binlog.php:186 +#: libraries/messages.inc.php:1175 server_binlog.php:183 server_binlog.php:186 #: server_processlist.php:49 server_processlist.php:51 msgid "Truncate Shown Queries" msgstr "Zobraziť skrátene dopyty" -#: libraries/messages.inc.php:1180 libraries/mysql_charsets.lib.php:301 +#: libraries/messages.inc.php:1176 libraries/mysql_charsets.lib.php:301 #: libraries/mysql_charsets.lib.php:389 msgid "Turkish" msgstr "Turecky" -#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:304 +#: libraries/messages.inc.php:1179 libraries/mysql_charsets.lib.php:304 #: libraries/mysql_charsets.lib.php:386 msgid "Ukrainian" msgstr "Ukrajinsky" -#: libraries/messages.inc.php:1185 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:1181 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 msgid "Unicode" msgstr "Unicode" -#: libraries/messages.inc.php:1187 libraries/mysql_charsets.lib.php:398 +#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:398 #: libraries/mysql_charsets.lib.php:405 msgid "unknown" msgstr "neznámy" -#: libraries/messages.inc.php:1190 server_privileges.php:1152 +#: libraries/messages.inc.php:1186 server_privileges.php:1152 #, php-format msgid "You have updated the privileges for %s." msgstr "Boli aktualizované oprávnenia pre %s." -#: libraries/messages.inc.php:1191 user_password.php:112 +#: libraries/messages.inc.php:1187 user_password.php:112 msgid "The profile has been updated." msgstr "Profil bol aktualizovaný." -#: libraries/messages.inc.php:1193 libraries/relation.lib.php:138 +#: libraries/messages.inc.php:1189 libraries/relation.lib.php:138 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "Prosím prečítajte si dokumentáciu ako aktualizovať tabuľku s informáciami o " "stĺpcoch (Column_comments Table)" -#: libraries/messages.inc.php:1194 +#: libraries/messages.inc.php:1190 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Mali by ste aktualizovať %s na verziu %s alebo vyššiu." -#: libraries/messages.inc.php:1204 tbl_printview.php:314 tbl_structure.php:661 +#: libraries/messages.inc.php:1200 tbl_printview.php:314 tbl_structure.php:661 msgid "Usage" msgstr "Využitie" -#: libraries/messages.inc.php:1205 +#: libraries/messages.inc.php:1201 msgid "Enclose table and field names with backquotes" msgstr " Použiť opačný apostrof pri názvoch tabuliek a polí " -#: libraries/messages.inc.php:1206 libraries/replication_gui.lib.php:314 +#: libraries/messages.inc.php:1202 libraries/replication_gui.lib.php:314 #: server_privileges.php:740 msgid "Use Host Table" msgstr "Použiť tabuľku s hostiteľmi" -#: libraries/messages.inc.php:1207 server_privileges.php:848 +#: libraries/messages.inc.php:1203 server_privileges.php:848 #, php-format msgid "The user %s already exists!" msgstr "Používateľ %s už existuje!" -#: libraries/messages.inc.php:1209 libraries/replication_gui.lib.php:55 +#: libraries/messages.inc.php:1205 libraries/replication_gui.lib.php:55 #: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245 #: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255 #: server_privileges.php:672 server_privileges.php:675 @@ -6623,37 +6623,37 @@ msgstr "Používateľ %s už existuje!" msgid "User name" msgstr "Meno používateľa" -#: libraries/messages.inc.php:1210 server_privileges.php:1645 +#: libraries/messages.inc.php:1206 server_privileges.php:1645 msgid "The selected user was not found in the privilege table." msgstr "Zvolený používateľ nebol nájdený v tabuľke práv." -#: libraries/messages.inc.php:1211 server_privileges.php:1365 +#: libraries/messages.inc.php:1207 server_privileges.php:1365 msgid "User overview" msgstr "Prehľad používatelov" -#: libraries/messages.inc.php:1212 server_privileges.php:1261 +#: libraries/messages.inc.php:1208 server_privileges.php:1261 msgid "The selected users have been deleted successfully." msgstr "Vybraní používatelia bol úspešne odstránený." -#: libraries/messages.inc.php:1213 server_privileges.php:2026 +#: libraries/messages.inc.php:1209 server_privileges.php:2026 #, php-format msgid "Users having access to "%s"" msgstr "Používatelia majúci prístup k "%s"" -#: libraries/messages.inc.php:1214 main.php:189 server_privileges.php:1350 +#: libraries/messages.inc.php:1210 main.php:189 server_privileges.php:1350 #: server_privileges.php:1497 server_privileges.php:1611 #: server_privileges.php:2029 server_processlist.php:54 msgid "User" msgstr "Používateľ" -#: libraries/messages.inc.php:1215 tbl_change.php:1171 +#: libraries/messages.inc.php:1211 tbl_change.php:1171 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Pre pohyb medzi hodnotami použite klávesu TAB alebo pre pohyb všetkými " "smermi klávesy CTRL+šípky" -#: libraries/messages.inc.php:1217 libraries/replication_gui.lib.php:251 +#: libraries/messages.inc.php:1213 libraries/replication_gui.lib.php:251 #: libraries/replication_gui.lib.php:319 libraries/replication_gui.lib.php:342 #: server_privileges.php:678 server_privileges.php:745 #: server_privileges.php:769 server_privileges.php:1889 @@ -6661,7 +6661,7 @@ msgstr "" msgid "Use text field" msgstr "Požiť textové pole" -#: libraries/messages.inc.php:1221 libraries/sqlvalidator.lib.php:68 +#: libraries/messages.inc.php:1217 libraries/sqlvalidator.lib.php:68 #, php-format msgid "" "The SQL validator could not be initialized. Please check if you have " @@ -6671,87 +6671,87 @@ msgstr "" "nainštalované všetky potrebné rozšírenia php, tak ako sú popísané v %" "sdocumentation%s." -#: libraries/messages.inc.php:1222 libraries/replication_gui.lib.php:111 +#: libraries/messages.inc.php:1218 libraries/replication_gui.lib.php:111 #: server_status.php:627 tbl_change.php:324 tbl_printview.php:370 #: tbl_select.php:139 tbl_structure.php:730 msgid "Value" msgstr "Hodnota" -#: libraries/messages.inc.php:1223 libraries/replication_gui.lib.php:110 +#: libraries/messages.inc.php:1219 libraries/replication_gui.lib.php:110 #: libraries/sql_query_form.lib.php:445 server_status.php:626 #: server_variables.php:52 msgid "Variable" msgstr "Premenná" -#: libraries/messages.inc.php:1225 server_export.php:21 +#: libraries/messages.inc.php:1221 server_export.php:21 msgid "View dump (schema) of databases" msgstr "Export databáz" -#: libraries/messages.inc.php:1227 tbl_export.php:23 +#: libraries/messages.inc.php:1223 tbl_export.php:23 msgid "View dump (schema) of table" msgstr "Zobraziť dump (schému) tabuľky" -#: libraries/messages.inc.php:1231 view_create.php:142 +#: libraries/messages.inc.php:1227 view_create.php:142 msgid "VIEW name" msgstr "" -#: libraries/messages.inc.php:1237 main.php:205 +#: libraries/messages.inc.php:1233 main.php:205 msgid "Web server" msgstr "Webový server" -#: libraries/messages.inc.php:1239 libraries/mysql_charsets.lib.php:277 +#: libraries/messages.inc.php:1235 libraries/mysql_charsets.lib.php:277 #: libraries/mysql_charsets.lib.php:325 msgid "West European" msgstr "Západná Európa" -#: libraries/messages.inc.php:1240 main.php:230 +#: libraries/messages.inc.php:1236 main.php:230 msgid "Wiki" msgstr "Wiki" -#: libraries/messages.inc.php:1241 server_privileges.php:2138 +#: libraries/messages.inc.php:1237 server_privileges.php:2138 msgid "wildcard" msgstr "nahradzujúci znak" -#: libraries/messages.inc.php:1248 +#: libraries/messages.inc.php:1244 msgid "Export contents" msgstr "" -#: libraries/messages.inc.php:1249 +#: libraries/messages.inc.php:1245 msgid "Export functions" msgstr "" -#: libraries/messages.inc.php:1250 +#: libraries/messages.inc.php:1246 msgid "Export procedures" msgstr "" -#: libraries/messages.inc.php:1251 +#: libraries/messages.inc.php:1247 msgid "Export Structure Schemas (recommended)" msgstr "" -#: libraries/messages.inc.php:1252 +#: libraries/messages.inc.php:1248 #, fuzzy msgid "Export tables" msgstr "Typ vytvorených dopytov" -#: libraries/messages.inc.php:1253 +#: libraries/messages.inc.php:1249 #, fuzzy msgid "Export triggers" msgstr "Typ vytvorených dopytov" -#: libraries/messages.inc.php:1254 +#: libraries/messages.inc.php:1250 msgid "Export views" msgstr "" -#: libraries/messages.inc.php:1255 +#: libraries/messages.inc.php:1251 msgid "XML" msgstr "XML" -#: libraries/messages.inc.php:1259 server_privileges.php:592 +#: libraries/messages.inc.php:1255 server_privileges.php:592 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" "Poznámka: Nastavenie týchto parametrov na 0 (nulu) odstráni obmedzenia." -#: libraries/messages.inc.php:1260 +#: libraries/messages.inc.php:1256 msgid "\"zipped\"" msgstr "\"zozipované\"" diff --git a/po/sl.po b/po/sl.po index 13b6040ed..538e260f8 100644 --- a/po/sl.po +++ b/po/sl.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-05-13 11:25+0200\n" +"POT-Creation-Date: 2010-05-13 11:30+0200\n" "PO-Revision-Date: 2010-05-07 23:30+0200\n" "Last-Translator: \n" "Language-Team: slovenian \n" @@ -16,19 +16,19 @@ msgstr "" "X-Generator: Pootle 2.0.1\n" #: browse_foreigners.php:38 browse_foreigners.php:59 -#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:870 +#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:866 #: server_privileges.php:1475 msgid "Show all" msgstr "Pokaži vse" #: browse_foreigners.php:82 db_operations.php:648 -#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:394 -#: libraries/export/pdf.php:147 libraries/messages.inc.php:597 +#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394 +#: libraries/export/pdf.php:147 libraries/messages.inc.php:593 #: pdf_schema.php:283 pdf_schema.php:1123 pdf_schema.php:1139 msgid "Page number:" msgstr "Številka strani:" -#: browse_foreigners.php:132 libraries/messages.inc.php:1242 +#: browse_foreigners.php:132 libraries/messages.inc.php:1238 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -40,7 +40,7 @@ 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/db_links.inc.php:75 -#: libraries/messages.inc.php:841 libraries/tbl_links.inc.php:63 +#: libraries/messages.inc.php:837 libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Iskanje" @@ -49,12 +49,12 @@ msgstr "Iskanje" #: db_search.php:362 db_structure.php:567 js/messages.php:48 #: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2267 +#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 #: 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 #: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614 -#: libraries/messages.inc.php:361 libraries/replication_gui.lib.php:73 +#: libraries/messages.inc.php:357 libraries/replication_gui.lib.php:73 #: libraries/replication_gui.lib.php:365 libraries/select_server.lib.php:104 #: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477 #: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782 @@ -74,33 +74,33 @@ msgid "Go" msgstr "Izvedi" #: browse_foreigners.php:168 browse_foreigners.php:172 -#: libraries/Index.class.php:442 libraries/messages.inc.php:459 +#: libraries/Index.class.php:442 libraries/messages.inc.php:455 #: tbl_tracking.php:320 msgid "Keyname" msgstr "Ime ključa" #: browse_foreigners.php:169 browse_foreigners.php:171 -#: libraries/messages.inc.php:252 server_collations.php:55 +#: libraries/messages.inc.php:248 server_collations.php:55 #: server_collations.php:67 server_engines.php:59 server_status.php:628 msgid "Description" msgstr "Opis" #: browse_foreigners.php:247 browse_foreigners.php:256 #: browse_foreigners.php:268 browse_foreigners.php:276 -#: libraries/messages.inc.php:1218 +#: libraries/messages.inc.php:1214 msgid "Use this value" msgstr "Uporabi to vrednost" -#: db_create.php:46 libraries/messages.inc.php:215 +#: db_create.php:46 libraries/messages.inc.php:211 #, php-format msgid "Database %1$s has been created." msgstr "Podatkovna zbirka %1$s je ustvarjena." -#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:232 +#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:228 msgid "Database comment: " msgstr "Komentar zbirke podatkov: " -#: db_datadict.php:165 libraries/messages.inc.php:1070 +#: db_datadict.php:165 libraries/messages.inc.php:1066 #: libraries/tbl_properties.inc.php:724 pdf_schema.php:1236 #: tbl_operations.php:345 tbl_printview.php:130 msgid "Table comments" @@ -109,7 +109,7 @@ msgstr "Komentar tabele" #: db_datadict.php:174 db_qbe.php:174 libraries/Index.class.php:446 #: libraries/export/htmlword.php:244 libraries/export/latex.php:360 #: libraries/export/odt.php:294 libraries/export/texytext.php:233 -#: libraries/messages.inc.php:317 libraries/tbl_properties.inc.php:99 +#: libraries/messages.inc.php:313 libraries/tbl_properties.inc.php:99 #: libraries/tbl_properties.inc.php:275 pdf_schema.php:1262 #: pdf_schema.php:1283 tbl_change.php:308 tbl_indexes.php:189 #: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135 @@ -121,7 +121,7 @@ msgstr "Polje" #: libraries/db_events.inc.php:31 libraries/db_routines.inc.php:42 #: 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/messages.inc.php:1181 +#: libraries/export/texytext.php:234 libraries/messages.inc.php:1177 #: libraries/tbl_properties.inc.php:100 pdf_schema.php:1263 #: pdf_schema.php:1284 server_privileges.php:2031 tbl_change.php:287 #: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313 @@ -133,7 +133,7 @@ msgstr "Vrsta" #: db_datadict.php:177 libraries/Index.class.php:449 #: libraries/export/htmlword.php:246 libraries/export/latex.php:360 #: libraries/export/odt.php:300 libraries/export/texytext.php:235 -#: libraries/messages.inc.php:576 libraries/tbl_properties.inc.php:109 +#: libraries/messages.inc.php:572 libraries/tbl_properties.inc.php:109 #: pdf_schema.php:1265 pdf_schema.php:1286 tbl_change.php:323 #: tbl_printview.php:145 tbl_structure.php:181 tbl_tracking.php:276 #: tbl_tracking.php:327 @@ -142,7 +142,7 @@ msgstr "Null" #: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 -#: libraries/export/texytext.php:236 libraries/messages.inc.php:238 +#: libraries/export/texytext.php:236 libraries/messages.inc.php:234 #: libraries/tbl_properties.inc.php:106 pdf_schema.php:1266 #: pdf_schema.php:1287 tbl_printview.php:146 tbl_structure.php:182 #: tbl_tracking.php:277 @@ -151,14 +151,14 @@ msgstr "Privzeto" #: db_datadict.php:182 libraries/export/htmlword.php:249 #: libraries/export/latex.php:362 libraries/export/odt.php:307 -#: libraries/export/texytext.php:238 libraries/messages.inc.php:483 +#: libraries/export/texytext.php:238 libraries/messages.inc.php:479 #: pdf_schema.php:1268 pdf_schema.php:1289 tbl_printview.php:150 msgid "Links to" msgstr "Povezave z" #: db_datadict.php:184 db_printview.php:112 libraries/export/htmlword.php:252 #: libraries/export/latex.php:365 libraries/export/odt.php:312 -#: libraries/export/texytext.php:241 libraries/messages.inc.php:163 +#: libraries/export/texytext.php:241 libraries/messages.inc.php:159 #: libraries/tbl_properties.inc.php:130 pdf_schema.php:1279 #: pdf_schema.php:1290 tbl_printview.php:152 msgid "Comments" @@ -167,7 +167,7 @@ msgstr "Komentarji" #: db_datadict.php:267 libraries/Index.class.php:359 #: 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/messages.inc.php:559 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:555 #: libraries/mult_submits.inc.php:263 pdf_schema.php:1344 #: server_privileges.php:1529 server_privileges.php:1540 #: server_privileges.php:1850 server_privileges.php:1855 @@ -179,7 +179,7 @@ msgstr "Ne" #: db_datadict.php:267 libraries/Index.class.php:360 #: libraries/Index.class.php:385 libraries/export/htmlword.php:322 #: libraries/export/latex.php:430 libraries/export/odt.php:368 -#: libraries/export/texytext.php:311 libraries/messages.inc.php:1257 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:1253 #: libraries/mult_submits.inc.php:45 libraries/mult_submits.inc.php:50 #: libraries/mult_submits.inc.php:55 libraries/mult_submits.inc.php:60 #: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:101 @@ -193,108 +193,108 @@ msgstr "Ne" msgid "Yes" msgstr "Da" -#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:670 +#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:666 #: tbl_printview.php:498 msgid "Print" msgstr "Natisni" -#: db_export.php:29 libraries/messages.inc.php:1226 +#: db_export.php:29 libraries/messages.inc.php:1222 msgid "View dump (schema) of database" msgstr "Preglej povzetek stanja podatkovne baze" #: db_export.php:33 db_printview.php:96 db_qbe.php:102 db_structure.php:51 -#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:568 +#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:564 #: navigation.php:346 msgid "No tables found in database." msgstr "V podatkovni zbirki ni mogoče najti tabel." -#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:845 +#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:841 #: server_export.php:27 msgid "Select All" msgstr "Izberi vse" -#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1188 +#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1184 #: server_export.php:29 msgid "Unselect All" msgstr "Prekliči izbor vsega" -#: db_operations.php:38 libraries/messages.inc.php:213 tbl_create.php:54 +#: db_operations.php:38 libraries/messages.inc.php:209 tbl_create.php:54 msgid "The database name is empty!" msgstr "Ime podatkovne zbirke je prazno!" -#: db_operations.php:236 libraries/messages.inc.php:753 +#: db_operations.php:236 libraries/messages.inc.php:749 #, php-format msgid "Database %s has been renamed to %s" msgstr "Zbirka podatkov %s je preimenovana v %s" -#: db_operations.php:240 libraries/messages.inc.php:178 +#: db_operations.php:240 libraries/messages.inc.php:174 #, php-format msgid "Database %s has been copied to %s" msgstr "Zbirka podatkov %s je kopirana v %s" -#: db_operations.php:410 libraries/messages.inc.php:236 +#: db_operations.php:410 libraries/messages.inc.php:232 msgid "Rename database to" msgstr "Preimenuj zbirko podatkov v" -#: db_operations.php:415 libraries/messages.inc.php:161 +#: db_operations.php:415 libraries/messages.inc.php:157 #: server_processlist.php:57 msgid "Command" msgstr "Ukaz" -#: db_operations.php:425 libraries/messages.inc.php:58 tbl_change.php:1143 +#: db_operations.php:425 libraries/messages.inc.php:54 tbl_change.php:1143 msgid "and then" msgstr "in potem" -#: db_operations.php:451 libraries/messages.inc.php:233 +#: db_operations.php:451 libraries/messages.inc.php:229 msgid "Copy database to" msgstr "Kopiraj zbirko podatkov v" -#: db_operations.php:458 libraries/messages.inc.php:1043 +#: db_operations.php:458 libraries/messages.inc.php:1039 #: tbl_operations.php:526 tbl_tracking.php:388 msgid "Structure only" msgstr "Samo struktura" -#: db_operations.php:459 libraries/messages.inc.php:1041 +#: db_operations.php:459 libraries/messages.inc.php:1037 #: tbl_operations.php:527 tbl_tracking.php:390 msgid "Structure and data" msgstr "Struktura in podatki" -#: db_operations.php:460 libraries/messages.inc.php:229 tbl_operations.php:528 +#: db_operations.php:460 libraries/messages.inc.php:225 tbl_operations.php:528 #: tbl_tracking.php:389 msgid "Data only" msgstr "Samo podatki" -#: db_operations.php:468 libraries/messages.inc.php:186 +#: db_operations.php:468 libraries/messages.inc.php:182 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE pred kopiranjem" #: db_operations.php:471 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 -#: libraries/export/sql.php:82 libraries/messages.inc.php:30 +#: libraries/export/sql.php:82 libraries/messages.inc.php:26 #: tbl_operations.php:534 #, php-format msgid "Add %s" msgstr "Dodaj %s" -#: db_operations.php:475 libraries/messages.inc.php:29 tbl_operations.php:297 +#: db_operations.php:475 libraries/messages.inc.php:25 tbl_operations.php:297 #: tbl_operations.php:536 msgid "Add AUTO_INCREMENT value" msgstr "Dodaj vrednost AUTO_INCREMENT" -#: db_operations.php:479 libraries/messages.inc.php:31 tbl_operations.php:543 +#: db_operations.php:479 libraries/messages.inc.php:27 tbl_operations.php:543 msgid "Add constraints" msgstr "Dodaj omejitve" -#: db_operations.php:492 libraries/messages.inc.php:1059 +#: db_operations.php:492 libraries/messages.inc.php:1055 msgid "Switch to copied database" msgstr "Preklopi na kopirano podatkovno zbirko" -#: db_operations.php:533 libraries/messages.inc.php:89 +#: db_operations.php:533 libraries/messages.inc.php:85 msgid "BLOB Repository" msgstr "Shramba BLOB" #: db_operations.php:536 db_tracking.php:76 libraries/common.lib.php:1350 -#: libraries/messages.inc.php:1037 libraries/server_links.inc.php:49 +#: libraries/messages.inc.php:1033 libraries/server_links.inc.php:49 #: server_processlist.php:59 tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "Stanje" @@ -304,11 +304,11 @@ msgctxt "BLOB repository" msgid "Enabled" msgstr "Omogočeno" -#: db_operations.php:548 libraries/messages.inc.php:93 +#: db_operations.php:548 libraries/messages.inc.php:89 msgid "Disable" msgstr "Onemogoči" -#: db_operations.php:558 libraries/messages.inc.php:90 +#: db_operations.php:558 libraries/messages.inc.php:86 msgid "Damaged" msgstr "Poškodovano" @@ -322,12 +322,12 @@ msgctxt "BLOB repository" msgid "Disabled" msgstr "Onemogočeno" -#: db_operations.php:574 libraries/messages.inc.php:96 +#: db_operations.php:574 libraries/messages.inc.php:92 msgid "Enable" msgstr "Omogoči" #: db_operations.php:598 libraries/Index.class.php:448 -#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:158 +#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:154 #: 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:361 @@ -336,7 +336,7 @@ msgstr "Omogoči" msgid "Collation" msgstr "Pravilo za razvrščanje znakov" -#: db_operations.php:609 libraries/messages.inc.php:742 main.php:316 +#: db_operations.php:609 libraries/messages.inc.php:738 main.php:316 #: pdf_schema.php:34 #, php-format msgid "" @@ -346,58 +346,58 @@ msgstr "" "Dodatne funkcije za delo s povezanimi tabelami so bile izkjučene. Če želite " "izvedeti zakaj, kliknite %stukaj%s." -#: db_operations.php:645 libraries/messages.inc.php:264 pdf_pages.php:528 +#: db_operations.php:645 libraries/messages.inc.php:260 pdf_pages.php:528 msgid "Display PDF schema" msgstr "Prikaži PDF-shemo" -#: db_operations.php:661 libraries/messages.inc.php:877 pdf_pages.php:529 +#: db_operations.php:661 libraries/messages.inc.php:873 pdf_pages.php:529 msgid "Show grid" msgstr "Pokaži mrežo" -#: db_operations.php:664 libraries/messages.inc.php:874 pdf_pages.php:530 +#: db_operations.php:664 libraries/messages.inc.php:870 pdf_pages.php:530 msgid "Show color" msgstr "Pokaži barvo" -#: db_operations.php:666 libraries/messages.inc.php:998 pdf_pages.php:531 +#: db_operations.php:666 libraries/messages.inc.php:994 pdf_pages.php:531 msgid "Show dimension of tables" msgstr "Pokaži dimenzije tabel" -#: db_operations.php:669 libraries/messages.inc.php:52 pdf_pages.php:532 +#: db_operations.php:669 libraries/messages.inc.php:48 pdf_pages.php:532 msgid "Display all tables with the same width" msgstr "Prikaži vse tabele enake širine" -#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:227 +#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:223 #: pdf_pages.php:533 msgid "Data Dictionary" msgstr "Slovar podatkov" -#: db_operations.php:674 libraries/messages.inc.php:884 pdf_pages.php:534 +#: db_operations.php:674 libraries/messages.inc.php:880 pdf_pages.php:534 msgid "Only show keys" msgstr "Prikaži samo ključe" -#: db_operations.php:676 libraries/messages.inc.php:875 pdf_pages.php:535 +#: db_operations.php:676 libraries/messages.inc.php:871 pdf_pages.php:535 msgid "Data Dictionary Format" msgstr "Oblika podatkovnega slovarja" -#: db_operations.php:678 libraries/messages.inc.php:464 pdf_pages.php:537 +#: db_operations.php:678 libraries/messages.inc.php:460 pdf_pages.php:537 msgid "Landscape" msgstr "Ležeče" -#: db_operations.php:679 libraries/messages.inc.php:663 pdf_pages.php:538 +#: db_operations.php:679 libraries/messages.inc.php:659 pdf_pages.php:538 msgid "Portrait" msgstr "Pokončno" -#: db_operations.php:682 libraries/messages.inc.php:599 pdf_pages.php:541 +#: db_operations.php:682 libraries/messages.inc.php:595 pdf_pages.php:541 msgid "Paper size" msgstr "Velikost papirja" -#: db_operations.php:706 libraries/messages.inc.php:281 +#: db_operations.php:706 libraries/messages.inc.php:277 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 libraries/messages.inc.php:1087 +#: libraries/header.inc.php:126 libraries/messages.inc.php:1083 #: pdf_pages.php:405 server_privileges.php:1626 server_privileges.php:1682 #: server_privileges.php:1946 server_synchronize.php:423 #: server_synchronize.php:866 tbl_tracking.php:592 test/theme.php:75 @@ -405,176 +405,176 @@ msgid "Table" msgstr "Tabela" #: db_printview.php:105 libraries/db_structure.lib.php:56 -#: libraries/messages.inc.php:735 +#: libraries/messages.inc.php:731 msgid "Records" msgstr "Zapisi" #: db_printview.php:109 libraries/db_structure.lib.php:67 -#: libraries/messages.inc.php:1003 tbl_indexes.php:190 +#: libraries/messages.inc.php:999 tbl_indexes.php:190 msgid "Size" msgstr "Velikost" #: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 -#: libraries/export/sql.php:899 libraries/messages.inc.php:436 +#: libraries/export/sql.php:899 libraries/messages.inc.php:432 msgid "in use" msgstr "v uporabi" #: db_printview.php:187 libraries/db_info.inc.php:88 -#: libraries/export/sql.php:514 libraries/messages.inc.php:1032 +#: libraries/export/sql.php:514 libraries/messages.inc.php:1028 #: pdf_schema.php:1241 tbl_printview.php:434 tbl_structure.php:810 msgid "Creation" msgstr "Ustvarjeno" #: db_printview.php:196 libraries/db_info.inc.php:93 -#: libraries/export/sql.php:519 libraries/messages.inc.php:1036 +#: libraries/export/sql.php:519 libraries/messages.inc.php:1032 #: pdf_schema.php:1246 tbl_printview.php:444 tbl_structure.php:818 msgid "Last update" msgstr "Zadnjič posodobljeno" #: db_printview.php:205 libraries/db_info.inc.php:98 -#: libraries/export/sql.php:524 libraries/messages.inc.php:1031 +#: libraries/export/sql.php:524 libraries/messages.inc.php:1027 #: pdf_schema.php:1251 tbl_printview.php:454 tbl_structure.php:826 msgid "Last check" msgstr "Zadnjič pregledano" -#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1085 +#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1081 #, php-format msgid "%s table(s)" msgstr "%s tabel" #: db_qbe.php:29 libraries/display_tbl.lib.php:1981 -#: libraries/messages.inc.php:1051 libraries/sql_query_form.lib.php:140 +#: libraries/messages.inc.php:1047 libraries/sql_query_form.lib.php:140 #: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131 #: view_operations.php:62 msgid "Your SQL query has been executed successfully" msgstr "Poizvedba SQL je bila uspešno izvedena" -#: db_qbe.php:42 libraries/messages.inc.php:371 +#: db_qbe.php:42 libraries/messages.inc.php:367 msgid "You have to choose at least one column to display" msgstr "Za prikaz morate izbrati morate vsaj en stolpec" #: db_qbe.php:200 libraries/db_structure.lib.php:104 -#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1014 +#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1010 msgid "Sort" msgstr "Razvrsti" #: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111 #: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828 -#: libraries/messages.inc.php:69 server_databases.php:170 +#: libraries/messages.inc.php:65 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314 msgid "Ascending" msgstr "Naraščajoče" #: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119 #: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825 -#: libraries/messages.inc.php:251 server_databases.php:170 +#: libraries/messages.inc.php:247 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315 msgid "Descending" msgstr "Padajoče" #: db_qbe.php:264 db_tracking.php:78 libraries/display_tbl.lib.php:308 -#: libraries/messages.inc.php:888 tbl_change.php:277 tbl_tracking.php:597 +#: libraries/messages.inc.php:884 tbl_change.php:277 tbl_tracking.php:597 msgid "Show" msgstr "Pokaži" -#: db_qbe.php:300 libraries/messages.inc.php:202 +#: db_qbe.php:300 libraries/messages.inc.php:198 msgid "Criteria" msgstr "Kriteriji" #: db_qbe.php:353 db_qbe.php:435 db_qbe.php:527 db_qbe.php:558 -#: libraries/messages.inc.php:718 +#: libraries/messages.inc.php:714 msgid "Ins" msgstr "Vstavi" #: db_qbe.php:357 db_qbe.php:439 db_qbe.php:524 db_qbe.php:555 -#: libraries/messages.inc.php:56 +#: libraries/messages.inc.php:52 msgid "And" msgstr "In" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:529 db_qbe.php:560 -#: libraries/messages.inc.php:717 +#: libraries/messages.inc.php:713 msgid "Del" 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/messages.inc.php:592 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:588 #: libraries/tbl_properties.inc.php:779 server_privileges.php:258 #: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288 msgid "Or" msgstr "Ali" -#: db_qbe.php:507 libraries/messages.inc.php:516 +#: db_qbe.php:507 libraries/messages.inc.php:512 msgid "Modify" msgstr "Spremeni" -#: db_qbe.php:584 libraries/messages.inc.php:33 +#: db_qbe.php:584 libraries/messages.inc.php:29 msgid "Add/Delete Criteria Row" msgstr "Dodaj/Odstrani vrstico kriterij" -#: db_qbe.php:596 libraries/messages.inc.php:32 +#: db_qbe.php:596 libraries/messages.inc.php:28 msgid "Add/Delete Field Columns" msgstr "Dodaj/Odstrani stolpce polj" -#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1192 +#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1188 msgid "Update Query" msgstr "Osveži poizvedbo" -#: db_qbe.php:617 libraries/messages.inc.php:1216 +#: db_qbe.php:617 libraries/messages.inc.php:1212 msgid "Use Tables" msgstr "Uporabi tabele" -#: db_qbe.php:640 libraries/messages.inc.php:723 +#: db_qbe.php:640 libraries/messages.inc.php:719 #, php-format msgid "SQL query on database %s:" msgstr "Poizvedba SQL na zbirki podatkov %s:" -#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:823 +#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:819 msgid "Submit Query" msgstr "Izvedi poizvedbo" #: db_search.php:68 libraries/auth/config.auth.lib.php:84 #: libraries/auth/config.auth.lib.php:103 #: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52 -#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:26 +#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:22 msgid "Access denied" msgstr "Dostop zavrnjen" -#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:836 +#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:832 msgid "at least one of the words" msgstr "katerokoli besedo" -#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:837 +#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:833 msgid "all words" msgstr "vse besede" -#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:838 +#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:834 msgid "the exact phrase" msgstr "točno določeno frazo" -#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:839 +#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:835 msgid "as regular expression" msgstr "kot običajni izraz (regular expression)" -#: db_search.php:242 libraries/messages.inc.php:840 +#: db_search.php:242 libraries/messages.inc.php:836 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Rezultati iskanja \"%s\" %s:" -#: db_search.php:260 libraries/messages.inc.php:579 +#: db_search.php:260 libraries/messages.inc.php:575 #, php-format msgid "%s match(es) inside table %s" 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/messages.inc.php:108 +#: db_structure.php:105 libraries/messages.inc.php:104 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468 msgid "Browse" msgstr "Prebrskaj" #: db_search.php:272 libraries/display_tbl.lib.php:1165 -#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:243 +#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:239 #: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406 #: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377 #: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216 @@ -582,45 +582,45 @@ msgstr "Prebrskaj" msgid "Delete" msgstr "Izbriši" -#: db_search.php:285 libraries/messages.inc.php:580 +#: db_search.php:285 libraries/messages.inc.php:576 #, php-format msgid "Total: %s match(es)" msgstr "Skupaj: %s zadetek(ov)" -#: db_search.php:299 libraries/messages.inc.php:832 +#: db_search.php:299 libraries/messages.inc.php:828 msgid "Search in database" msgstr "Išči v podatkovni zbirki" -#: db_search.php:302 libraries/messages.inc.php:835 +#: db_search.php:302 libraries/messages.inc.php:831 msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgstr "Iskane besede ali vrednosti (nadomestni znak: \"%\"):" -#: db_search.php:307 libraries/messages.inc.php:842 +#: db_search.php:307 libraries/messages.inc.php:838 msgid "Find:" msgstr "Najdi:" -#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1017 +#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1013 msgid "Words are separated by a space character (\" \")." msgstr "Besede so ločene s presledkom (\" \")." -#: db_search.php:325 libraries/messages.inc.php:834 +#: db_search.php:325 libraries/messages.inc.php:830 msgid "Inside table(s):" msgstr "V tabelah:" -#: db_search.php:355 libraries/messages.inc.php:833 +#: db_search.php:355 libraries/messages.inc.php:829 msgid "Inside field:" msgstr "V polju:" #: 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/messages.inc.php:431 libraries/sql_query_form.lib.php:334 +#: libraries/messages.inc.php:427 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/db_links.inc.php:63 libraries/export/latex.php:337 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:1048 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:1044 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 #: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269 msgid "Structure" @@ -629,8 +629,8 @@ 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:1642 -#: libraries/db_links.inc.php:100 libraries/messages.inc.php:272 +#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/db_links.inc.php:100 libraries/messages.inc.php:268 #: 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 @@ -640,40 +640,40 @@ msgstr "Zavrži" #: 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:1641 -#: libraries/messages.inc.php:284 libraries/mult_submits.inc.php:39 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: libraries/messages.inc.php:280 libraries/mult_submits.inc.php:39 #: libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Izprazni" -#: db_structure.php:316 libraries/messages.inc.php:1075 +#: db_structure.php:316 libraries/messages.inc.php:1071 #: libraries/tbl_links.inc.php:100 #, php-format msgid "Table %s has been emptied" msgstr "Tabela %s je izpraznjena" -#: db_structure.php:326 libraries/messages.inc.php:1229 +#: db_structure.php:326 libraries/messages.inc.php:1225 #: 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/messages.inc.php:1074 +#: db_structure.php:326 libraries/messages.inc.php:1070 #: libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "Tabela %s je zavržena" -#: db_structure.php:333 libraries/messages.inc.php:1128 +#: db_structure.php:333 libraries/messages.inc.php:1124 msgid "Tracking is active." msgstr "Sledenje je aktivno." -#: db_structure.php:335 libraries/messages.inc.php:1129 +#: db_structure.php:335 libraries/messages.inc.php:1125 msgid "Tracking is not active." msgstr "Sledenje ni aktivno." #: db_structure.php:420 libraries/display_tbl.lib.php:1944 -#: libraries/messages.inc.php:1228 +#: libraries/messages.inc.php:1224 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -681,83 +681,83 @@ msgid "" msgstr "Pogled ima vsaj toliko vrstic. Prosimo, oglejte si %sdokumentacijo%s." #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 -#: libraries/messages.inc.php:1233 libraries/tbl_info.inc.php:66 +#: libraries/messages.inc.php:1229 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/messages.inc.php:773 libraries/server_links.inc.php:70 +#: libraries/messages.inc.php:769 libraries/server_links.inc.php:70 #: server_replication.php:33 server_replication.php:164 server_status.php:258 msgid "Replication" msgstr "Podvojevanje" -#: db_structure.php:489 libraries/messages.inc.php:1053 +#: db_structure.php:489 libraries/messages.inc.php:1049 msgid "Sum" msgstr "Vsota" #: db_structure.php:496 libraries/StorageEngine.class.php:356 -#: libraries/messages.inc.php:239 +#: libraries/messages.inc.php:235 #, 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 #: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086 -#: libraries/messages.inc.php:1243 libraries/mult_submits.inc.php:16 +#: libraries/messages.inc.php:1239 libraries/mult_submits.inc.php:16 #: server_databases.php:346 server_databases.php:351 #: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465 msgid "With selected:" msgstr "Z označenim:" #: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: libraries/messages.inc.php:148 server_databases.php:348 +#: libraries/messages.inc.php:144 server_databases.php:348 #: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459 msgid "Check All" msgstr "Označi vse" #: db_structure.php:531 libraries/display_tbl.lib.php:2077 -#: libraries/messages.inc.php:1184 libraries/replication_gui.lib.php:33 +#: libraries/messages.inc.php:1180 libraries/replication_gui.lib.php:33 #: server_databases.php:350 server_privileges.php:533 #: server_privileges.php:1564 tbl_structure.php:463 msgid "Uncheck All" msgstr "Odznači vse" -#: db_structure.php:536 libraries/messages.inc.php:150 +#: db_structure.php:536 libraries/messages.inc.php:146 msgid "Check tables having overhead" msgstr "Preveri prekoračene" #: db_structure.php:547 db_structure.php:548 db_structure.php:599 -#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:672 +#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:668 #: libraries/mult_submits.inc.php:28 tbl_structure.php:493 #: tbl_structure.php:495 msgid "Print view" msgstr "Pogled za tiskanje" -#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:153 +#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:149 #: libraries/mult_submits.inc.php:42 tbl_operations.php:579 msgid "Check table" msgstr "Preveri tabelo" -#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:590 +#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:586 #: libraries/mult_submits.inc.php:47 tbl_operations.php:619 #: tbl_structure.php:710 tbl_structure.php:712 msgid "Optimize table" msgstr "Optimiraj tabelo" -#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:758 +#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:754 #: libraries/mult_submits.inc.php:52 tbl_operations.php:609 msgid "Repair table" msgstr "Popravi tabelo" -#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:55 +#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:51 #: libraries/mult_submits.inc.php:57 tbl_operations.php:599 msgid "Analyze table" msgstr "Analiziraj tabelo" #: db_structure.php:557 db_structure.php:558 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/messages.inc.php:310 +#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:306 #: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84 #: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109 #: server_privileges.php:1341 setup/frames/menu.inc.php:22 @@ -765,7 +765,7 @@ msgstr "Analiziraj tabelo" msgid "Export" msgstr "Izvozi" -#: db_tracking.php:66 libraries/messages.inc.php:1151 +#: db_tracking.php:66 libraries/messages.inc.php:1147 msgid "Tracked tables" msgstr "Sledene tabele" @@ -773,7 +773,7 @@ msgstr "Sledene tabele" #: 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/header_printview.inc.php:58 libraries/messages.inc.php:212 +#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:208 #: navigation.php:233 server_databases.php:169 server_privileges.php:1621 #: server_privileges.php:1682 server_privileges.php:1940 #: server_processlist.php:56 server_synchronize.php:1179 @@ -781,76 +781,76 @@ msgstr "Sledene tabele" msgid "Database" msgstr "Podatkovna zbirka" -#: db_tracking.php:73 libraries/messages.inc.php:1146 +#: db_tracking.php:73 libraries/messages.inc.php:1142 msgid "Last version" msgstr "Zadnja različica" -#: db_tracking.php:74 libraries/messages.inc.php:1145 tbl_tracking.php:594 +#: db_tracking.php:74 libraries/messages.inc.php:1141 tbl_tracking.php:594 msgid "Created" msgstr "Ustvarjeno" -#: db_tracking.php:75 libraries/messages.inc.php:1147 tbl_tracking.php:595 +#: db_tracking.php:75 libraries/messages.inc.php:1143 tbl_tracking.php:595 msgid "Updated" msgstr "Posodobljeno" #: db_tracking.php:77 libraries/Index.class.php:440 -#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:27 +#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:23 #: server_databases.php:203 server_privileges.php:1503 #: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187 msgid "Action" msgstr "Dejanje" -#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:247 +#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:243 msgid "Delete tracking data for this table" msgstr "Izbriši podatke sledenja te tabele" -#: db_tracking.php:106 libraries/messages.inc.php:1142 tbl_tracking.php:548 +#: db_tracking.php:106 libraries/messages.inc.php:1138 tbl_tracking.php:548 #: tbl_tracking.php:606 tbl_tracking.php:613 msgid "active" msgstr "aktivno" -#: db_tracking.php:108 libraries/messages.inc.php:1143 tbl_tracking.php:550 +#: db_tracking.php:108 libraries/messages.inc.php:1139 tbl_tracking.php:550 #: tbl_tracking.php:608 tbl_tracking.php:610 msgid "not active" msgstr "ni aktivno" -#: db_tracking.php:121 libraries/messages.inc.php:1160 +#: db_tracking.php:121 libraries/messages.inc.php:1156 msgid "Versions" msgstr "Različice" -#: db_tracking.php:122 libraries/messages.inc.php:1132 tbl_tracking.php:379 +#: db_tracking.php:122 libraries/messages.inc.php:1128 tbl_tracking.php:379 #: tbl_tracking.php:624 msgid "Tracking report" msgstr "Poročilo sledenja" -#: db_tracking.php:123 libraries/messages.inc.php:1144 tbl_tracking.php:251 +#: db_tracking.php:123 libraries/messages.inc.php:1140 tbl_tracking.php:251 #: tbl_tracking.php:624 msgid "Structure snapshot" msgstr "Posnetek strukture" -#: db_tracking.php:152 libraries/messages.inc.php:1154 +#: db_tracking.php:152 libraries/messages.inc.php:1150 msgid "Untracked tables" msgstr "Nesledene tabele" -#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1153 +#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1149 #: tbl_structure.php:529 tbl_structure.php:531 msgid "Track table" msgstr "Sledi tabeli" -#: db_tracking.php:200 libraries/messages.inc.php:1121 +#: db_tracking.php:200 libraries/messages.inc.php:1117 msgid "Database Log" msgstr "Dnevnik podatkovne zbirke" -#: export.php:62 libraries/messages.inc.php:312 +#: export.php:62 libraries/messages.inc.php:308 msgid "Selected export type has to be saved in file!" msgstr "Izbrana vrsta izvoza mora biti shranjena v datoteko!" -#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:567 +#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:563 #, php-format msgid "Insufficient space to save the file %s." msgstr "Ni dovolj prostora za shranjevanje datoteke %s." -#: export.php:294 libraries/messages.inc.php:324 +#: export.php:294 libraries/messages.inc.php:320 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -858,17 +858,17 @@ msgstr "" "Datoteka %s že obstaja na strežniku, spremenite ime novi ali prepišite " "obstoječo datoteko." -#: export.php:298 export.php:302 libraries/messages.inc.php:562 +#: export.php:298 export.php:302 libraries/messages.inc.php:558 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Spletni strežnik nima dovoljenja za shranjevanje datoteke %s." -#: export.php:629 libraries/messages.inc.php:276 +#: export.php:629 libraries/messages.inc.php:272 #, php-format msgid "Dump has been saved to file %s." msgstr "Dump je shranjen v datoteko %s." -#: import.php:60 libraries/messages.inc.php:1202 +#: import.php:60 libraries/messages.inc.php:1198 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation%" @@ -878,14 +878,14 @@ msgstr "" "%sdokumentacijo%s za načine, kako obiti to omejitev." #: import.php:279 import.php:332 libraries/File.class.php:849 -#: libraries/File.class.php:961 libraries/messages.inc.php:325 +#: libraries/File.class.php:961 libraries/messages.inc.php:321 msgid "File could not be read" msgstr "Ne morem prebrati datoteke" #: import.php:287 import.php:296 import.php:315 import.php:324 #: libraries/File.class.php:1031 libraries/File.class.php:1039 #: libraries/File.class.php:1055 libraries/File.class.php:1063 -#: libraries/messages.inc.php:1189 +#: libraries/messages.inc.php:1185 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -894,7 +894,7 @@ msgstr "" "Poskušali ste naložiti datoteko z nepodprtim stiskanjem (%s). Bodisi podpora " "za njega ni vključena ali pa je onemogočena z vašo konfiguracijo." -#: import.php:337 libraries/messages.inc.php:547 +#: import.php:337 libraries/messages.inc.php:543 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -905,30 +905,30 @@ msgstr "" "PHP. Glej [a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." #: import.php:372 libraries/display_import.lib.php:24 -#: libraries/messages.inc.php:125 +#: libraries/messages.inc.php:121 msgid "Could not load import plugins, please check your installation!" msgstr "" "Ne morem naložiti vtičnikov za uvoz, prosimo, preverite vašo namestitev!" -#: import.php:397 libraries/messages.inc.php:102 +#: import.php:397 libraries/messages.inc.php:98 msgid "The bookmark has been deleted." msgstr "Zaznamek je odstranjen." -#: import.php:401 libraries/messages.inc.php:879 +#: import.php:401 libraries/messages.inc.php:875 msgid "Showing bookmark" msgstr "Prikazovanje zaznamka" -#: import.php:403 libraries/messages.inc.php:101 +#: import.php:403 libraries/messages.inc.php:97 #, php-format msgid "Bookmark %s created" msgstr "Zaznamek %s je ustvarjen" -#: import.php:409 import.php:415 libraries/messages.inc.php:407 +#: import.php:409 import.php:415 libraries/messages.inc.php:403 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Uvažanje je uspešno zaključeno, izvedenih je bilo %d poizvedb." -#: import.php:424 libraries/messages.inc.php:1107 +#: import.php:424 libraries/messages.inc.php:1103 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -936,11 +936,11 @@ msgstr "" "Časovna omejitev skripta je potekla; če želite končati uvoz, prosimo, " "ponovno pošljite isto datoteko in uvoz se bo nadaljeval." -#: index.php:190 libraries/messages.inc.php:553 +#: index.php:190 libraries/messages.inc.php:549 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin je prijaznejši z brskalnikom, ki podpira okvirje." -#: js/messages.php:25 libraries/messages.inc.php:155 +#: js/messages.php:25 libraries/messages.inc.php:151 #: server_synchronize.php:345 server_synchronize.php:357 #: server_synchronize.php:373 server_synchronize.php:380 #: server_synchronize.php:739 server_synchronize.php:767 @@ -948,118 +948,118 @@ msgstr "phpMyAdmin je prijaznejši z brskalnikom, ki podpira okvirje." msgid "Click to select" msgstr "Kliknite za označitev" -#: js/messages.php:26 libraries/messages.inc.php:156 +#: js/messages.php:26 libraries/messages.inc.php:152 msgid "Click to unselect" msgstr "Kliknite za odznačitev" #: js/messages.php:27 libraries/import.lib.php:103 -#: libraries/messages.inc.php:550 sql.php:89 +#: libraries/messages.inc.php:546 sql.php:89 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Poizvedbe \"DROP DATABASE\" so izključene." -#: js/messages.php:30 libraries/messages.inc.php:270 +#: js/messages.php:30 libraries/messages.inc.php:266 #: libraries/mult_submits.inc.php:258 sql.php:188 msgid "Do you really want to " msgstr "Ali res želite " -#: js/messages.php:31 libraries/messages.inc.php:271 +#: js/messages.php:31 libraries/messages.inc.php:267 #: libraries/mult_submits.inc.php:258 sql.php:172 msgid "You are about to DESTROY a complete database!" msgstr "S tem dejanjem boste UNIČILI celotno zbirko podatkov!" -#: js/messages.php:34 libraries/messages.inc.php:94 +#: js/messages.php:34 libraries/messages.inc.php:90 msgid "You are about to DISABLE a BLOB Repository!" msgstr "ONEMOGOČILI boste shrambo BLOB!" -#: js/messages.php:35 libraries/messages.inc.php:91 +#: js/messages.php:35 libraries/messages.inc.php:87 #, php-format msgid "Are you sure you want to disable all BLOB references for database %s?" msgstr "" "Ali ste prepričani, da želite onemogočiti vse sklice BLOB za zbirko podatkov " "%s?" -#: js/messages.php:38 libraries/messages.inc.php:342 +#: js/messages.php:38 libraries/messages.inc.php:338 msgid "Missing value in the form!" msgstr "V obliki manjka vrednost!" -#: js/messages.php:39 libraries/messages.inc.php:570 +#: js/messages.php:39 libraries/messages.inc.php:566 msgid "This is not a number!" msgstr "To ni število!" -#: js/messages.php:42 libraries/messages.inc.php:380 +#: js/messages.php:42 libraries/messages.inc.php:376 msgid "The host name is empty!" msgstr "Ime gostitelja je prazno!" -#: js/messages.php:43 libraries/messages.inc.php:1208 +#: js/messages.php:43 libraries/messages.inc.php:1204 msgid "The user name is empty!" msgstr "Uporabniško ime je prazno!" -#: js/messages.php:44 libraries/messages.inc.php:607 +#: js/messages.php:44 libraries/messages.inc.php:603 #: server_privileges.php:1197 user_password.php:70 msgid "The password is empty!" msgstr "Geslo je prazno!" -#: js/messages.php:45 libraries/messages.inc.php:609 +#: js/messages.php:45 libraries/messages.inc.php:605 #: server_privileges.php:1195 user_password.php:73 msgid "The passwords aren't the same!" msgstr "Gesli se ne ujemata!" -#: js/messages.php:49 libraries/messages.inc.php:123 pmd_general.php:342 +#: js/messages.php:49 libraries/messages.inc.php:119 pmd_general.php:342 #: pmd_general.php:379 msgid "Cancel" msgstr "Prekliči" -#: js/messages.php:52 libraries/messages.inc.php:514 +#: js/messages.php:52 libraries/messages.inc.php:510 msgid "Modifications have been saved" msgstr "Spremembe so shranjene" -#: js/messages.php:53 libraries/messages.inc.php:741 +#: js/messages.php:53 libraries/messages.inc.php:737 msgid "Relation deleted" msgstr "Relacija je izbrisana" -#: js/messages.php:54 libraries/messages.inc.php:340 +#: js/messages.php:54 libraries/messages.inc.php:336 msgid "FOREIGN KEY relation added" msgstr "Dodano razmerje FOREIGN KEY" -#: js/messages.php:55 libraries/messages.inc.php:434 +#: js/messages.php:55 libraries/messages.inc.php:430 msgid "Internal relation added" msgstr "Dodana notranja razmerja" -#: js/messages.php:56 libraries/messages.inc.php:299 +#: js/messages.php:56 libraries/messages.inc.php:295 msgid "Error: Relation not added." msgstr "Napaka: Razmerje ni dodano." -#: js/messages.php:57 libraries/messages.inc.php:300 +#: js/messages.php:57 libraries/messages.inc.php:296 msgid "Error: relation already exists." msgstr "Napaka: razmerje že obstaja." -#: js/messages.php:58 libraries/messages.inc.php:302 +#: js/messages.php:58 libraries/messages.inc.php:298 msgid "Error saving coordinates for Designer." msgstr "Napaka pri shranjevanju koordinat Oblikovalnika." -#: js/messages.php:59 libraries/messages.inc.php:351 +#: js/messages.php:59 libraries/messages.inc.php:347 #: libraries/relation.lib.php:107 msgid "General relation features" msgstr "Splošne lastnosti relacij" -#: js/messages.php:59 libraries/messages.inc.php:260 +#: js/messages.php:59 libraries/messages.inc.php:256 #: libraries/relation.lib.php:101 libraries/relation.lib.php:108 msgid "Disabled" msgstr "Onemogočeno" -#: js/messages.php:60 libraries/messages.inc.php:850 +#: js/messages.php:60 libraries/messages.inc.php:846 msgid "Select referenced key" msgstr "Izberite referenčni ključ" -#: js/messages.php:61 libraries/messages.inc.php:848 +#: js/messages.php:61 libraries/messages.inc.php:844 msgid "Select Foreign Key" msgstr "Izberite tuji ključ" -#: js/messages.php:62 libraries/messages.inc.php:653 +#: js/messages.php:62 libraries/messages.inc.php:649 msgid "Please select the primary key or a unique key" msgstr "Prosimo, izberite primarni ključ ali unikatni ključ" -#: js/messages.php:63 libraries/messages.inc.php:142 pmd_general.php:77 +#: js/messages.php:63 libraries/messages.inc.php:138 pmd_general.php:77 #: tbl_relation.php:548 msgid "Choose field to display" msgstr "Izberite polje za prikaz" @@ -1075,9 +1075,9 @@ msgid "Prev" msgstr "Prejšnji" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2332 -#: libraries/common.lib.php:2335 libraries/display_tbl.lib.php:338 -#: libraries/messages.inc.php:543 server_binlog.php:205 server_binlog.php:207 +#: js/messages.php:77 libraries/common.lib.php:2344 +#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: libraries/messages.inc.php:539 server_binlog.php:205 server_binlog.php:207 #: tbl_printview.php:424 tbl_structure.php:802 msgid "Next" msgstr "Naslednji" @@ -1136,63 +1136,63 @@ msgid "December" msgstr "december" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1543 +#: js/messages.php:97 libraries/common.lib.php:1555 msgid "Jan" msgstr "jan" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1545 +#: js/messages.php:99 libraries/common.lib.php:1557 msgid "Feb" msgstr "feb" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1547 +#: js/messages.php:101 libraries/common.lib.php:1559 msgid "Mar" msgstr "mar" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1549 +#: js/messages.php:103 libraries/common.lib.php:1561 msgid "Apr" msgstr "apr" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1551 +#: js/messages.php:105 libraries/common.lib.php:1563 msgctxt "Short month name" msgid "May" msgstr "maj" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1553 +#: js/messages.php:107 libraries/common.lib.php:1565 msgid "Jun" msgstr "jun" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1555 +#: js/messages.php:109 libraries/common.lib.php:1567 msgid "Jul" msgstr "jul" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1557 +#: js/messages.php:111 libraries/common.lib.php:1569 msgid "Aug" msgstr "avg" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1559 +#: js/messages.php:113 libraries/common.lib.php:1571 msgid "Sep" msgstr "sep" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1561 +#: js/messages.php:115 libraries/common.lib.php:1573 msgid "Oct" msgstr "okt" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1563 +#: js/messages.php:117 libraries/common.lib.php:1575 msgid "Nov" msgstr "nov" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1565 +#: js/messages.php:119 libraries/common.lib.php:1577 msgid "Dec" msgstr "dec" @@ -1225,37 +1225,37 @@ msgid "Saturday" msgstr "sobota" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1568 +#: js/messages.php:132 libraries/common.lib.php:1580 msgid "Sun" msgstr "Ned" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1570 +#: js/messages.php:134 libraries/common.lib.php:1582 msgid "Mon" msgstr "Pon" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1572 +#: js/messages.php:136 libraries/common.lib.php:1584 msgid "Tue" msgstr "Tor" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1574 +#: js/messages.php:138 libraries/common.lib.php:1586 msgid "Wed" msgstr "Sre" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1576 +#: js/messages.php:140 libraries/common.lib.php:1588 msgid "Thu" msgstr "Čet" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1578 +#: js/messages.php:142 libraries/common.lib.php:1590 msgid "Fri" msgstr "Pet" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1580 +#: js/messages.php:144 libraries/common.lib.php:1592 msgid "Sat" msgstr "Sob" @@ -1311,21 +1311,21 @@ msgstr "Minute" msgid "Second" msgstr "Sekunde" -#: libraries/Config.class.php:1015 libraries/messages.inc.php:338 +#: libraries/Config.class.php:1015 libraries/messages.inc.php:334 msgid "Font size" msgstr "Velikost pisave" #: libraries/File.class.php:344 libraries/File.class.php:432 #: libraries/File.class.php:569 libraries/File.class.php:708 -#: libraries/messages.inc.php:1201 +#: libraries/messages.inc.php:1197 msgid "Unknown error in file upload." msgstr "Neznana napaka pri nalaganju datoteke." -#: libraries/File.class.php:414 libraries/messages.inc.php:1198 +#: libraries/File.class.php:414 libraries/messages.inc.php:1194 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "Naložena datotek presega napotek upload_max_filesize v php.ini." -#: libraries/File.class.php:417 libraries/messages.inc.php:1197 +#: libraries/File.class.php:417 libraries/messages.inc.php:1193 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -1333,23 +1333,23 @@ msgstr "" "Naložena datotek presega napotek MAX_FILE_SIZE, ki je bil določen v obrazcu " "HTML." -#: libraries/File.class.php:420 libraries/messages.inc.php:1200 +#: libraries/File.class.php:420 libraries/messages.inc.php:1196 msgid "The uploaded file was only partially uploaded." msgstr "Naložena datoteka je bila naložena samo delno." -#: libraries/File.class.php:423 libraries/messages.inc.php:1199 +#: libraries/File.class.php:423 libraries/messages.inc.php:1195 msgid "Missing a temporary folder." msgstr "Manjka začasna mapa." -#: libraries/File.class.php:426 libraries/messages.inc.php:1195 +#: libraries/File.class.php:426 libraries/messages.inc.php:1191 msgid "Failed to write file to disk." msgstr "Pisanje datoteke na disk je spodletelo." -#: libraries/File.class.php:429 libraries/messages.inc.php:1196 +#: libraries/File.class.php:429 libraries/messages.inc.php:1192 msgid "File upload stopped by extension." msgstr "Nalaganje datoteke je ustavila razširitev." -#: libraries/File.class.php:908 libraries/messages.inc.php:319 +#: libraries/File.class.php:908 libraries/messages.inc.php:315 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -1357,34 +1357,34 @@ msgstr "" "Napaka pri premikanju naložene datoteke, glej [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" -#: libraries/Index.class.php:428 libraries/messages.inc.php:554 +#: libraries/Index.class.php:428 libraries/messages.inc.php:550 #: tbl_relation.php:529 msgid "No index defined!" msgstr "Ni definiranega indeksa!" -#: libraries/Index.class.php:433 libraries/messages.inc.php:411 +#: libraries/Index.class.php:433 libraries/messages.inc.php:407 #: server_databases.php:132 tbl_tracking.php:316 msgid "Indexes" msgstr "Indeksi" -#: libraries/Index.class.php:444 libraries/messages.inc.php:1186 +#: libraries/Index.class.php:444 libraries/messages.inc.php:1182 #: 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:475 tbl_tracking.php:322 msgid "Unique" msgstr "Edinstven" -#: libraries/Index.class.php:445 libraries/messages.inc.php:596 +#: libraries/Index.class.php:445 libraries/messages.inc.php:592 #: tbl_tracking.php:323 msgid "Packed" msgstr "" -#: libraries/Index.class.php:447 libraries/messages.inc.php:131 +#: libraries/Index.class.php:447 libraries/messages.inc.php:127 #: tbl_tracking.php:325 msgid "Cardinality" msgstr "Kardinalnost" -#: libraries/Index.class.php:450 libraries/messages.inc.php:162 +#: libraries/Index.class.php:450 libraries/messages.inc.php:158 #: tbl_tracking.php:279 tbl_tracking.php:328 msgid "Comment" msgstr "Komentar" @@ -1392,22 +1392,22 @@ msgstr "Komentar" #: libraries/Index.class.php:466 libraries/common.lib.php:616 #: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:280 pdf_pages.php:280 +#: libraries/messages.inc.php:276 pdf_pages.php:280 #: setup/frames/index.inc.php:124 setup/lib/messages.inc.php:352 #: tbl_row_action.php:69 msgid "Edit" msgstr "Uredi" -#: libraries/Index.class.php:472 libraries/messages.inc.php:666 +#: libraries/Index.class.php:472 libraries/messages.inc.php:662 msgid "The primary key has been dropped" msgstr "Primarni ključ je zavržen" -#: libraries/Index.class.php:476 libraries/messages.inc.php:413 +#: libraries/Index.class.php:476 libraries/messages.inc.php:409 #, php-format msgid "Index %s has been dropped" msgstr "Indeks %s je zavržen" -#: libraries/Index.class.php:576 libraries/messages.inc.php:412 +#: libraries/Index.class.php:576 libraries/messages.inc.php:408 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -1416,7 +1416,7 @@ 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/messages.inc.php:218 +#: libraries/List_Database.class.php:431 libraries/messages.inc.php:214 #: libraries/server_links.inc.php:41 server_databases.php:88 #: server_privileges.php:1621 setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" @@ -1449,86 +1449,86 @@ msgstr[1] "Vstavljeni sta %1$d vrstici." msgstr[2] "Vstavljene so %1$d vrstice." msgstr[3] "Vstavljenih je %1$d vrstic." -#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:549 +#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:545 msgid "" "There is no detailed status information available for this storage engine." msgstr "" "Za ta skladiščni pogon ni na voljo nobenih podrobnejših informacij o stanju." -#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:291 +#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:287 #, php-format msgid "%s is available on this MySQL server." msgstr "%s je na voljo na tem strežniku MySQL." -#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:292 +#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:288 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s je onemogočeno za ta strežnik MySQL." -#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:294 +#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:290 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "Ta strežnik MySQL ne podpira skladiščnega pogona %s." -#: libraries/Table.class.php:1019 libraries/messages.inc.php:443 +#: libraries/Table.class.php:1019 libraries/messages.inc.php:439 msgid "Invalid database" msgstr "Neveljavna zbirka podatkov" -#: libraries/Table.class.php:1033 libraries/messages.inc.php:450 +#: libraries/Table.class.php:1033 libraries/messages.inc.php:446 #: tbl_get_field.php:26 msgid "Invalid table name" msgstr "Neveljavno ime tabele" -#: libraries/Table.class.php:1048 libraries/messages.inc.php:301 +#: libraries/Table.class.php:1048 libraries/messages.inc.php:297 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "Napaka pri preimenovanju tabele %1$s v %2$s" -#: libraries/Table.class.php:1132 libraries/messages.inc.php:754 +#: libraries/Table.class.php:1132 libraries/messages.inc.php:750 #, php-format msgid "Table %s has been renamed to %s" msgstr "Tabela %s je preimenovana v %s" -#: libraries/Theme.class.php:162 libraries/messages.inc.php:1099 +#: libraries/Theme.class.php:162 libraries/messages.inc.php:1095 #, php-format msgid "No valid image path for theme %s found!" msgstr "Za temo %s ni bila najdena veljavna pot slik!" -#: libraries/Theme.class.php:384 libraries/messages.inc.php:1097 +#: libraries/Theme.class.php:384 libraries/messages.inc.php:1093 msgid "No preview available." msgstr "Predogled ni na voljo." -#: libraries/Theme.class.php:387 libraries/messages.inc.php:1089 +#: libraries/Theme.class.php:387 libraries/messages.inc.php:1085 msgid "take it" msgstr "uporabi" -#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1096 +#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1092 #, php-format msgid "Default theme %s not found!" msgstr "Privzeta tema %s ni bila najdena!" -#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1098 +#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1094 #, php-format msgid "Theme %s not found!" msgstr "Tema %s ni bila najdena!" -#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1100 +#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1096 #, php-format msgid "Theme path not found for theme %s!" msgstr "Pot teme ni bila najdena za temo %s!" -#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1101 +#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1097 #: test/theme.php:161 themes.php:21 themes.php:41 msgid "Theme / Style" msgstr "Tema / Slog" -#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:172 +#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:168 msgid "Cannot connect: invalid settings." msgstr "Povezava ni mogoča: neveljavne nastavitve." #: libraries/auth/config.auth.lib.php:92 #: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65 -#: libraries/messages.inc.php:1238 test/theme.php:152 +#: libraries/messages.inc.php:1234 test/theme.php:152 #, php-format msgid "Welcome to %s" msgstr "Dobrodošli v %s" @@ -1553,105 +1553,105 @@ msgstr "" "povezavo. Preverite, ali gostitelj, uporabniško ime in geslo v datoteki " "config.inc.php ustrezajo podatkom administratorja strežnika MySQL." -#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:488 +#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:484 msgid "Log in" msgstr "Prijava" #: libraries/auth/cookie.auth.lib.php:246 -#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:659 +#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:655 #: libraries/navigation_header.inc.php:93 #: libraries/navigation_header.inc.php:95 msgid "phpMyAdmin documentation" msgstr "Dokumentacija phpMyAdmin" #: libraries/auth/cookie.auth.lib.php:258 -#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:492 +#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:488 msgid "You can enter hostname/IP address and port separated by space." msgstr "Vnesete lahko ime gostitelja/IP-naslov in vrata ločena s presledkom." -#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:493 +#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:489 msgid "Server:" msgstr "Strežnik:" -#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:494 +#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:490 msgid "Username:" msgstr "Uporabniško ime:" -#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:491 +#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:487 msgid "Password:" msgstr "Geslo:" -#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:854 +#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:850 msgid "Server Choice" msgstr "Izbira strežnika" #: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 -#: libraries/messages.inc.php:177 +#: libraries/messages.inc.php:173 msgid "Cookies must be enabled past this point." msgstr "Če želite še dalje uporabljati program, morate omogočiti piškotke." #: libraries/auth/cookie.auth.lib.php:671 -#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:489 +#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:485 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" "Prijava brez gesla je prepovedana s konfiguracijo (glej AllowNoPassword)" #: libraries/auth/cookie.auth.lib.php:675 -#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:544 +#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:540 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "Brez aktivnosti v zadnjih %s sekundah; prosimo, prijavite se znova" #: libraries/auth/cookie.auth.lib.php:685 #: libraries/auth/cookie.auth.lib.php:687 -#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:126 +#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:122 msgid "Cannot log in to the MySQL server" msgstr "Ne morem se prijaviti v strežnik MySQL" -#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1245 +#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1241 msgid "Wrong username/password. Access denied." msgstr "Napačno uporabniško ime/geslo. Dostop zavrnjen." #: libraries/auth/swekey/swekey.auth.lib.php:118 -#: libraries/messages.inc.php:1057 +#: libraries/messages.inc.php:1053 #, php-format msgid "File %s does not contain any key id" msgstr "Datoteka %s ne vsebuje nobenega ključa id" #: libraries/auth/swekey/swekey.auth.lib.php:157 #: libraries/auth/swekey/swekey.auth.lib.php:180 -#: libraries/messages.inc.php:1056 +#: libraries/messages.inc.php:1052 msgid "Hardware authentication failed" msgstr "Potrjevanje strojne opreme je spodletelo" #: libraries/auth/swekey/swekey.auth.lib.php:166 -#: libraries/messages.inc.php:1058 +#: libraries/messages.inc.php:1054 msgid "No valid authentication key plugged" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:202 -#: libraries/messages.inc.php:1055 +#: libraries/messages.inc.php:1051 msgid "Authenticating..." msgstr "Potrjevanje ..." -#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1230 +#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1226 msgid "View image" msgstr "Ogled slike" -#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:652 +#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:648 msgid "Play audio" msgstr "Predvajaj avdio" -#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1232 +#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1228 msgid "View video" msgstr "Ogled videa" -#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:269 +#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:265 msgid "Download file" msgstr "Prenesi datoteko" -#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:128 +#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:124 msgid "" "Couldn't load the iconv or recode extension needed for charset conversion. " "Either configure PHP to enable these extensions or disable charset " @@ -1663,7 +1663,7 @@ msgstr "" #: libraries/charset_conversion.lib.php:79 #: libraries/charset_conversion.lib.php:90 -#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:130 +#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:126 msgid "" "Couldn't use the iconv, libiconv, or recode_string functions, although the " "necessary extensions appear to be loaded. Check your PHP configuration." @@ -1671,7 +1671,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/messages.inc.php:170 +#: libraries/common.inc.php:583 libraries/messages.inc.php:166 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!" @@ -1705,7 +1705,7 @@ msgstr "" msgid "Invalid server index: %s" msgstr "Neveljaven indeks strežnika: %s" -#: libraries/common.inc.php:636 libraries/messages.inc.php:448 +#: libraries/common.inc.php:636 libraries/messages.inc.php:444 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" @@ -1713,16 +1713,16 @@ msgstr "" "konfiguracijo." #: libraries/common.inc.php:645 libraries/header.inc.php:96 -#: libraries/messages.inc.php:856 libraries/select_server.lib.php:41 +#: libraries/messages.inc.php:852 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/messages.inc.php:437 +#: libraries/common.inc.php:823 libraries/messages.inc.php:433 msgid "Invalid authentication method set in configuration:" msgstr "Neveljaven način overitve določen v konfiguracijski datoteki:" -#: libraries/common.lib.php:147 libraries/messages.inc.php:499 +#: libraries/common.lib.php:147 libraries/messages.inc.php:495 #, php-format msgid "Max: %s%s" msgstr "Največja velikost: %s%s" @@ -1742,7 +1742,7 @@ msgstr "en" #: libraries/common.lib.php:428 libraries/common.lib.php:430 #: libraries/common.lib.php:432 libraries/common.lib.php:448 #: libraries/common.lib.php:450 libraries/dbg/setup.php:25 -#: libraries/display_export.lib.php:164 libraries/messages.inc.php:267 +#: libraries/display_export.lib.php:164 libraries/messages.inc.php:263 #: libraries/relation.lib.php:97 libraries/sql_query_form.lib.php:451 #: libraries/sql_query_form.lib.php:454 main.php:229 pdf_pages.php:37 #: pdf_pages.php:43 pdf_pages.php:49 pdf_pages.php:54 @@ -1752,55 +1752,55 @@ msgstr "Dokumentacija" #: libraries/common.lib.php:581 libraries/core.lib.php:234 #: libraries/core.lib.php:263 libraries/import.lib.php:134 -#: libraries/messages.inc.php:297 pdf_schema.php:32 pdf_schema.php:232 +#: libraries/messages.inc.php:293 pdf_schema.php:32 pdf_schema.php:232 #: tbl_change.php:1027 tbl_operations.php:213 tbl_relation.php:290 #: view_operations.php:62 msgid "Error" msgstr "Napaka" #: libraries/common.lib.php:595 libraries/header_printview.inc.php:61 -#: libraries/messages.inc.php:1023 server_processlist.php:60 +#: libraries/messages.inc.php:1019 server_processlist.php:60 #: server_status.php:247 msgid "SQL query" msgstr "Poizvedba SQL" -#: libraries/common.lib.php:634 libraries/messages.inc.php:538 +#: libraries/common.lib.php:634 libraries/messages.inc.php:534 msgid "MySQL said: " msgstr "MySQL je vrnil: " -#: libraries/common.lib.php:667 libraries/messages.inc.php:76 +#: libraries/common.lib.php:667 libraries/messages.inc.php:72 #: pdf_schema.php:241 user_password.php:115 msgid "Back" msgstr "Nazaj" -#: libraries/common.lib.php:1177 libraries/messages.inc.php:309 +#: libraries/common.lib.php:1177 libraries/messages.inc.php:305 #: setup/lib/messages.inc.php:353 msgid "Explain SQL" msgstr "Razloži stavek SQL" -#: libraries/common.lib.php:1180 libraries/messages.inc.php:551 +#: libraries/common.lib.php:1180 libraries/messages.inc.php:547 msgid "Skip Explain SQL" msgstr "Preskoči razlago stavka SQL" -#: libraries/common.lib.php:1212 libraries/messages.inc.php:563 +#: libraries/common.lib.php:1212 libraries/messages.inc.php:559 msgid "Without PHP Code" msgstr "Brez kode PHP" -#: libraries/common.lib.php:1215 libraries/messages.inc.php:649 +#: libraries/common.lib.php:1215 libraries/messages.inc.php:645 #: setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "Ustvari kodo PHP" -#: libraries/common.lib.php:1233 libraries/messages.inc.php:737 +#: libraries/common.lib.php:1233 libraries/messages.inc.php:733 #: server_status.php:341 setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "Osveži" -#: libraries/common.lib.php:1242 libraries/messages.inc.php:575 +#: libraries/common.lib.php:1242 libraries/messages.inc.php:571 msgid "Skip Validate SQL" msgstr "Preskoči preverjanje pravilnosti SQL stavka" -#: libraries/common.lib.php:1245 libraries/messages.inc.php:1220 +#: libraries/common.lib.php:1245 libraries/messages.inc.php:1216 #: setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "Preveri pravilnost stavka SQL" @@ -1814,11 +1814,11 @@ msgid "Inline" msgstr "V vrstici" #: libraries/common.lib.php:1332 libraries/common.lib.php:1347 -#: libraries/messages.inc.php:713 +#: libraries/messages.inc.php:709 msgid "Profiling" msgstr "Profiliranje" -#: libraries/common.lib.php:1351 libraries/messages.inc.php:1108 +#: libraries/common.lib.php:1351 libraries/messages.inc.php:1104 #: libraries/tbl_triggers.lib.php:28 server_processlist.php:58 msgid "Time" msgstr "Čas" @@ -1852,46 +1852,56 @@ msgstr "PiB" msgid "EiB" msgstr "EiB" +#. l10n: Thousands separator +#: libraries/common.lib.php:1417 +msgid "," +msgstr "." + +#. l10n: Decimal separator +#: libraries/common.lib.php:1419 +msgid "." +msgstr "," + #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1584 +#: libraries/common.lib.php:1596 #: libraries/transformations/text_plain__dateformat.inc.php:28 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y ob %H.%M" -#: libraries/common.lib.php:1886 +#: libraries/common.lib.php:1898 #, 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:2301 libraries/common.lib.php:2304 -#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:664 +#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:660 #: server_status.php:608 msgid "Begin" msgstr "Začetek" -#: libraries/common.lib.php:2302 libraries/common.lib.php:2305 -#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:665 +#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:661 #: server_binlog.php:168 server_binlog.php:170 msgid "Previous" msgstr "Prejšnji" -#: libraries/common.lib.php:2333 libraries/common.lib.php:2336 -#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:289 +#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:285 msgid "End" msgstr "Konec" -#: libraries/common.lib.php:2409 libraries/messages.inc.php:455 +#: libraries/common.lib.php:2421 libraries/messages.inc.php:451 #, php-format msgid "Jump to database "%s"." msgstr "Preskoči na podatkovno zbirko "%s"." -#: libraries/common.lib.php:2429 libraries/messages.inc.php:461 +#: libraries/common.lib.php:2441 libraries/messages.inc.php:457 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Na funkcionalnost %s vpliva znan hrošč, glej %s" #: libraries/core.lib.php:286 libraries/dbg/setup.php:22 -#: libraries/messages.inc.php:127 +#: libraries/messages.inc.php:123 #, php-format msgid "" "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " @@ -1901,74 +1911,74 @@ msgstr "" "em][/a]. Prosim, preverite konfiguracijo PHP." #: libraries/db_events.inc.php:20 libraries/db_events.inc.php:22 -#: libraries/export/sql.php:415 libraries/messages.inc.php:306 +#: libraries/export/sql.php:415 libraries/messages.inc.php:302 msgid "Events" msgstr "Dogodki" #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 -#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:541 +#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:537 #: libraries/tbl_triggers.lib.php:27 setup/frames/index.inc.php:112 msgid "Name" msgstr "Ime" -#: libraries/db_links.inc.php:45 libraries/messages.inc.php:216 +#: libraries/db_links.inc.php:45 libraries/messages.inc.php:212 #, php-format msgid "Database %s has been dropped." msgstr "Podatkovna zbirka %s je zavržena." #: libraries/db_links.inc.php:57 libraries/db_links.inc.php:58 -#: libraries/db_links.inc.php:59 libraries/messages.inc.php:234 +#: libraries/db_links.inc.php:59 libraries/messages.inc.php:230 msgid "Database seems to be empty!" msgstr "Zbirka podatkov se zdi prazna!" -#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1025 +#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1021 #: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60 #: querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1152 +#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1148 #: libraries/tbl_links.inc.php:69 msgid "Tracking" msgstr "Sledenje" -#: libraries/db_links.inc.php:86 libraries/messages.inc.php:719 +#: libraries/db_links.inc.php:86 libraries/messages.inc.php:715 msgid "Query" msgstr "Poizvedba" -#: libraries/db_links.inc.php:91 libraries/messages.inc.php:253 +#: libraries/db_links.inc.php:91 libraries/messages.inc.php:249 msgid "Designer" msgstr "Oblikovalnik" -#: libraries/db_links.inc.php:98 libraries/messages.inc.php:397 +#: libraries/db_links.inc.php:98 libraries/messages.inc.php:393 #: libraries/server_links.inc.php:88 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:104 libraries/messages.inc.php:587 +#: libraries/db_links.inc.php:104 libraries/messages.inc.php:583 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" msgstr "Operacije" -#: libraries/db_links.inc.php:111 libraries/messages.inc.php:709 +#: libraries/db_links.inc.php:111 libraries/messages.inc.php:705 #: libraries/server_links.inc.php:66 server_privileges.php:72 #: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117 msgid "Privileges" msgstr "Privilegiji" #: libraries/db_routines.inc.php:30 libraries/db_routines.inc.php:32 -#: libraries/messages.inc.php:812 +#: libraries/messages.inc.php:808 msgid "Routines" msgstr "Rutina" -#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:811 +#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:807 msgid "Return type" msgstr "Vrnjena vrsta" #: libraries/db_structure.lib.php:57 libraries/display_tbl.lib.php:1848 -#: libraries/messages.inc.php:65 +#: libraries/messages.inc.php:61 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -1976,44 +1986,44 @@ msgstr "" "Morda je približno. Glej [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" -#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:593 +#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:589 #: server_databases.php:142 tbl_printview.php:336 tbl_structure.php:683 msgid "Overhead" msgstr "Presežek" #: libraries/dbi/mysql.dbi.lib.php:112 libraries/dbi/mysqli.dbi.lib.php:124 -#: libraries/messages.inc.php:176 +#: libraries/messages.inc.php:172 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Povezava za controluserja, kot je določena v vaši konfiguraciji, je " "spodletela." #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 -#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:855 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:851 msgid "The server is not responding" msgstr "Strežnik se ne odziva" #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:1010 +#: libraries/messages.inc.php:1006 msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "" -#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:255 +#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:251 #: tbl_structure.php:609 msgid "Details..." msgstr "Podrobnosti ..." -#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:143 +#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:139 #: main.php:91 user_password.php:111 user_password.php:129 msgid "Change password" msgstr "Spremeni geslo" -#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:561 +#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:557 #: libraries/replication_gui.lib.php:341 server_privileges.php:768 msgid "No Password" msgstr "Brez gesla" -#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:610 +#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:606 #: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60 #: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335 #: libraries/replication_gui.lib.php:345 server_privileges.php:757 @@ -2022,13 +2032,13 @@ msgstr "Brez gesla" msgid "Password" msgstr "Geslo" -#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:806 +#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:802 #: libraries/replication_gui.lib.php:349 libraries/replication_gui.lib.php:352 #: server_privileges.php:776 server_privileges.php:779 msgid "Re-type" msgstr "Ponovno vnesi" -#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:608 +#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:604 msgid "Password Hashing" msgstr "" @@ -2036,90 +2046,90 @@ msgstr "" msgid "MySQL 4.0 compatible" msgstr "Združljivo z MySQL 4.0" -#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:353 +#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:349 #: libraries/replication_gui.lib.php:356 server_privileges.php:783 msgid "Generate Password" msgstr "Ustvari geslo" -#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:352 +#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:348 #: libraries/replication_gui.lib.php:359 server_privileges.php:786 msgid "Generate" msgstr "Ustvari" #: libraries/display_create_database.lib.php:22 -#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:189 +#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:185 msgid "Create new database" msgstr "Ustvari novo zbirko podatkov" -#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:185 +#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:181 msgid "Create" msgstr "Ustvari" -#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:564 +#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:560 #: server_privileges.php:74 server_privileges.php:1388 #: server_replication.php:35 msgid "No Privileges" msgstr "Brez privilegijev" -#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:445 +#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:441 msgid "Table must have at least one field." msgstr "Tabele morajo imeti vsaj eno polje." -#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:190 +#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:186 #, php-format msgid "Create table on database %s" msgstr "Ustvari novo tabelo v podatkovni zbirki %s" -#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:577 +#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:573 msgid "Number of fields" msgstr "Število polj" -#: libraries/display_export.lib.php:42 libraries/messages.inc.php:124 +#: libraries/display_export.lib.php:42 libraries/messages.inc.php:120 msgid "Could not load export plugins, please check your installation!" msgstr "" "Ne morem naložiti vtičnikov za izvoz, prosimo, preverite vašo namestitev!" -#: libraries/display_export.lib.php:107 libraries/messages.inc.php:277 +#: libraries/display_export.lib.php:107 libraries/messages.inc.php:273 #, php-format msgid "Dump %s row(s) starting at record # %s" msgstr "Odloži %s vrstic, začni z zapisom # %s" -#: libraries/display_export.lib.php:115 libraries/messages.inc.php:274 +#: libraries/display_export.lib.php:115 libraries/messages.inc.php:270 msgid "Dump all rows" msgstr "Odloži vse vrstice" -#: libraries/display_export.lib.php:125 libraries/messages.inc.php:852 +#: libraries/display_export.lib.php:125 libraries/messages.inc.php:848 #: setup/lib/messages.inc.php:82 msgid "Save as file" msgstr "Shrani kot datoteko" -#: libraries/display_export.lib.php:134 libraries/messages.inc.php:828 +#: libraries/display_export.lib.php:134 libraries/messages.inc.php:824 #, php-format msgid "Save on server in %s directory" msgstr "Shrani na strežnik, v imenik %s" -#: libraries/display_export.lib.php:142 libraries/messages.inc.php:594 +#: libraries/display_export.lib.php:142 libraries/messages.inc.php:590 #: setup/lib/messages.inc.php:90 msgid "Overwrite existing file(s)" msgstr "Prepiši obstoječo(e) datoteko(e)" -#: libraries/display_export.lib.php:148 libraries/messages.inc.php:330 +#: libraries/display_export.lib.php:148 libraries/messages.inc.php:326 msgid "File name template" msgstr "Predloga datoteke" -#: libraries/display_export.lib.php:152 libraries/messages.inc.php:327 +#: libraries/display_export.lib.php:152 libraries/messages.inc.php:323 msgid "server name" msgstr "ime strežnika" -#: libraries/display_export.lib.php:155 libraries/messages.inc.php:326 +#: libraries/display_export.lib.php:155 libraries/messages.inc.php:322 msgid "database name" msgstr "ime podatkovne zbirke" -#: libraries/display_export.lib.php:158 libraries/messages.inc.php:328 +#: libraries/display_export.lib.php:158 libraries/messages.inc.php:324 msgid "table name" msgstr "ime tabele" -#: libraries/display_export.lib.php:162 libraries/messages.inc.php:329 +#: libraries/display_export.lib.php:162 libraries/messages.inc.php:325 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2130,24 +2140,24 @@ msgstr "" "nize za zapis časa. Dodatno bo prišlo še do naslednjih pretvorb: %3$s. " "Ostalo besedilo bo ostalo takšno, kot je." -#: libraries/display_export.lib.php:202 libraries/messages.inc.php:331 +#: libraries/display_export.lib.php:202 libraries/messages.inc.php:327 msgid "remember template" msgstr "shrani predlogo" #: libraries/display_export.lib.php:210 libraries/display_import.lib.php:178 -#: libraries/display_import.lib.php:191 libraries/messages.inc.php:145 +#: libraries/display_import.lib.php:191 libraries/messages.inc.php:141 #: libraries/sql_query_form.lib.php:549 msgid "Character set of the file:" msgstr "Nabor znakov datoteke:" -#: libraries/display_export.lib.php:235 libraries/messages.inc.php:166 +#: libraries/display_export.lib.php:235 libraries/messages.inc.php:162 #: setup/lib/messages.inc.php:84 msgid "Compression" 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/messages.inc.php:558 +#: libraries/export/sql.php:868 libraries/messages.inc.php:554 #: libraries/tbl_properties.inc.php:575 server_privileges.php:1836 #: server_processlist.php:75 msgid "None" @@ -2165,11 +2175,11 @@ msgstr "gzipano" msgid "bzipped" msgstr "bzipano" -#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1018 +#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1014 msgid "SQL compatibility mode" msgstr "Združljivostni način SQL" -#: libraries/display_import.lib.php:67 libraries/messages.inc.php:398 +#: libraries/display_import.lib.php:67 libraries/messages.inc.php:394 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " @@ -2179,11 +2189,11 @@ msgstr "" "pa gre za znan hrošč v brskalnikih, ki temeljijo na webkitu (Safari, Google " "Chrome, Arora itn.)." -#: libraries/display_import.lib.php:77 libraries/messages.inc.php:406 +#: libraries/display_import.lib.php:77 libraries/messages.inc.php:402 msgid "The file is being processed, please be patient." msgstr "Datoteka je v obdelavi, prosim, počakajte." -#: libraries/display_import.lib.php:99 libraries/messages.inc.php:408 +#: libraries/display_import.lib.php:99 libraries/messages.inc.php:404 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." @@ -2191,39 +2201,39 @@ msgstr "" "Prosim, bodite potrpežljivi, datoteka za nalaga. Podrobnosti o nalaganju " "niso na voljo." -#: libraries/display_import.lib.php:126 libraries/messages.inc.php:333 +#: libraries/display_import.lib.php:126 libraries/messages.inc.php:329 msgid "File to import" msgstr "Datoteka za uvoz" -#: libraries/display_import.lib.php:137 libraries/messages.inc.php:486 +#: libraries/display_import.lib.php:137 libraries/messages.inc.php:482 #: libraries/sql_query_form.lib.php:524 msgid "Location of the text file" msgstr "Mesto datoteke z besedilom" -#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1203 +#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1199 msgid "File uploads are not allowed on this server." msgstr "Nalaganje datotek na tem strežniku ni dovoljeno." -#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1235 +#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1231 #: libraries/sql_query_form.lib.php:533 tbl_change.php:1028 msgid "The directory you set for upload work cannot be reached" msgstr "Imenik, ki ste ga določili za nalaganje, je nedosegljiv" -#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1236 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1232 #: libraries/sql_query_form.lib.php:536 tbl_change.php:1031 msgid "web server upload directory" msgstr "imenik za nalaganje datotek" -#: libraries/display_import.lib.php:212 libraries/messages.inc.php:167 +#: libraries/display_import.lib.php:212 libraries/messages.inc.php:163 #, php-format msgid "Imported file compression will be automatically detected from: %s" msgstr "Stiskanje uvožene datoteke bo samodejno zaznano iz: %s" -#: libraries/display_import.lib.php:219 libraries/messages.inc.php:600 +#: libraries/display_import.lib.php:219 libraries/messages.inc.php:596 msgid "Partial import" msgstr "Delni uvoz" -#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1105 +#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1101 #, php-format msgid "" "Previous import timed out, after resubmitting will continue from position %d." @@ -2231,7 +2241,7 @@ msgstr "" "Čas prejšnjega uvoza se je iztekel, po ponovni potrditvi se bo nadaljeval od " "položaja %d." -#: libraries/display_import.lib.php:232 libraries/messages.inc.php:51 +#: libraries/display_import.lib.php:232 libraries/messages.inc.php:47 msgid "" "Allow the interruption of an import in case the script detects it is close " "to the PHP timeout limit. This might be good way to import large files, " @@ -2241,177 +2251,177 @@ msgstr "" "omejitve PHP. To je morda dober način za uvoz velikih datotek, čeprav lahko " "prekine transakcije." -#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1004 +#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1000 #: setup/lib/messages.inc.php:161 msgid "Number of records (queries) to skip from start" msgstr "Število zapisov (poizvedb), ki jih naj preskočim od začetka" -#: libraries/display_import.lib.php:255 libraries/messages.inc.php:396 +#: libraries/display_import.lib.php:255 libraries/messages.inc.php:392 #: setup/lib/messages.inc.php:160 msgid "Format of imported file" msgstr "Oblika uvožene datoteke" #: libraries/display_select_lang.lib.php:45 -#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:465 +#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:461 #: setup/frames/index.inc.php:70 msgid "Language" msgstr "Jezik" -#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:447 +#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:443 #, php-format msgid "%d is not valid row number." msgstr "%d ni veljavna številka vrstice." -#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:814 +#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:810 msgid "row(s) starting from record #" msgstr "vrstic naprej od zapisa #" -#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:817 +#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:813 msgid "horizontal" msgstr "vodoravnem" -#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:816 +#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:812 msgid "horizontal (rotated headers)" msgstr "vodoravno (zasukani naslovi)" -#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:819 +#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:815 msgid "vertical" msgstr "navpičnem" -#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:818 +#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:814 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "v %s načinu in ponovi glavo po %s celicah" -#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:495 +#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:491 msgid "This operation could take a long time. Proceed anyway?" msgstr "Ta operacija lahko traja dolgo časa. Vseeno nadaljujem?" -#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1012 +#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1008 msgid "Sort by key" msgstr "Uredi po ključu" #: libraries/display_tbl.lib.php:555 libraries/import.lib.php:1082 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:591 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:587 #: tbl_select.php:267 tbl_structure.php:754 msgid "Options" msgstr "Možnosti" #: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:570 -#: libraries/messages.inc.php:601 +#: libraries/messages.inc.php:597 msgid "Partial Texts" msgstr "Delna besedila" #: libraries/display_tbl.lib.php:561 libraries/display_tbl.lib.php:574 -#: libraries/messages.inc.php:346 +#: libraries/messages.inc.php:342 msgid "Full Texts" msgstr "Polna besedila" -#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:739 +#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:735 msgid "Relational key" msgstr "Relacijski ključ" -#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:738 +#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:734 msgid "Relational display field" msgstr "" -#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:872 +#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:868 msgid "Show binary contents" msgstr "Prikaži dvojiške vsebine" -#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:873 +#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:869 msgid "Show BLOB contents" msgstr "Prikaži vsebine BLOB" -#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:871 +#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:867 msgid "Show binary contents as HEX" msgstr "Prikaži dvojiške vsebine kot HEX" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:375 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:371 #: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320 msgid "Hide" msgstr "Skrij" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:508 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:504 #: libraries/tbl_properties.inc.php:144 transformation_overview.php:47 msgid "Browser transformation" msgstr "Pretvorba z brskalnikom" #: libraries/display_tbl.lib.php:1126 libraries/display_tbl.lib.php:1130 -#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:308 +#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:304 msgid "Execute bookmarked query" msgstr "Izvedi izbrano poizvedbo" #: libraries/display_tbl.lib.php:1145 libraries/display_tbl.lib.php:1157 -#: libraries/messages.inc.php:244 +#: libraries/messages.inc.php:240 msgid "The row has been deleted" msgstr "Vrstica je izbrisana" #: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056 -#: libraries/messages.inc.php:460 server_processlist.php:71 +#: libraries/messages.inc.php:456 server_processlist.php:71 #: tbl_row_action.php:64 msgid "Kill" msgstr "Prekini proces" -#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:849 +#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:845 msgid "in query" msgstr "v poizvedbi" -#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:881 +#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:877 msgid "Showing rows" msgstr "Prikazujem vrstice" -#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1113 +#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1109 msgid "total" msgstr "skupaj" -#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:727 +#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:723 #: sql.php:524 #, php-format msgid "Query took %01.4f sec" msgstr "Poizvedba je potrebovala %01.4f s" -#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:135 +#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:131 #: 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:471 msgid "Change" msgstr "Spremeni" -#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:724 +#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:720 msgid "Query results operations" msgstr "Dejanja rezultatov poizvedbe" -#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:671 +#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:667 msgid "Print view (with full texts)" msgstr "Pogled za tiskanje (s polnimi besedili)" -#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:482 +#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:478 msgid "Link not found" msgstr "Povezave ni mogoče najti" -#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1224 +#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1220 #: main.php:228 msgid "Version information" msgstr "Podatki o različici" -#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:423 +#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:419 msgid "Data home directory" msgstr "Domača mapa podatkov" -#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:424 +#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:420 msgid "The common part of the directory path for all InnoDB data files." msgstr "Pogosti del poti mape za vse podatkovne datoteke InnoDB." -#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:422 +#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:418 msgid "Data files" msgstr "Podatkovne datoteke" -#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:418 +#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:414 msgid "Autoextend increment" msgstr "Povečevanje pri samorazširitvi" -#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:419 +#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:415 msgid "" " The increment size for extending the size of an autoextending tablespace " "when it becomes full." @@ -2419,11 +2429,11 @@ msgstr "" " Velikost povečevanja pri razširjanju velikosti samorazširitvenega prostora " "v tabeli, ko ta postane poln." -#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:420 +#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:416 msgid "Buffer pool size" msgstr "" -#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:421 +#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:417 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." @@ -2431,87 +2441,87 @@ msgstr "" "Velikost spominskega medpomnilnika, ki ga InnoDB uporablja za predpomnjenje " "podatkov in indeksov svojih tabel." -#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:112 +#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:108 msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:426 +#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:422 #: server_status.php:306 msgid "InnoDB Status" msgstr "Stanje InnoDB" -#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:113 +#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:109 msgid "Buffer Pool Usage" msgstr "" -#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1114 +#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1110 #: server_databases.php:137 server_databases.php:305 server_status.php:414 #: server_status.php:475 server_status.php:496 tbl_printview.php:351 #: tbl_structure.php:697 msgid "Total" msgstr "Skupaj" -#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:425 +#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:421 msgid "pages" msgstr "strani" -#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:343 +#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:339 msgid "Free pages" msgstr "Proste strani" -#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:259 +#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:255 msgid "Dirty pages" msgstr "Umazane strani" -#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:230 +#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:226 msgid "Pages containing data" msgstr "Strani, ki vsebujejo podatke" -#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:598 +#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:594 msgid "Pages to be flushed" msgstr "Strani za izplakniti" -#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:119 +#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:115 msgid "Busy pages" msgstr "Zasedene strani" -#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:467 +#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:463 msgid "Latched pages" msgstr "" -#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:111 +#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:107 msgid "Buffer Pool Activity" msgstr "" -#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:731 +#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:727 msgid "Read requests" msgstr "" -#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1244 +#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1240 msgid "Write requests" msgstr "Zapiši prošnje" -#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:115 +#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:111 msgid "Read misses" msgstr "" -#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:117 +#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:113 msgid "Write waits" msgstr "" -#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:114 +#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:110 msgid "Read misses in %" msgstr "" -#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:116 +#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:112 msgid "Write waits in %" msgstr "" -#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:522 +#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:518 msgid "Data pointer size" msgstr "Velikost kazalca podatkov" -#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:523 +#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:519 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." @@ -2519,11 +2529,11 @@ msgstr "" "Privzeta velikost kazalca v bajtih, ki se naj uporablja s CREATE TABLE za " "tabele MyISAM, ko možnost MAX_ROWS ni določena." -#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:528 +#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:524 msgid "Automatic recovery mode" msgstr "Način samodejne obnovitve" -#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:529 +#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:525 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." @@ -2531,11 +2541,11 @@ msgstr "" "Način za samodejno obnovitev sesutih tabel MyISAM, ko je določen preko " "zagonske možnosti strežnika --myisam-recover." -#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:527 +#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:523 msgid "Maximum size for temporary sort files" msgstr "Največja velikost začasnih razvrstitvenih datotek" -#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:526 +#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:522 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " @@ -2544,103 +2554,103 @@ msgstr "" "Največja velikost začasnih datotek, ki jih lahko MySQL uporablja, ko ponovno " "ustvarja indeks MyISAM (med REPAIR TABLE, ALTER TABLE ali LOAD DATA INFILE)." -#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:525 +#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:521 msgid "Maximum size for temporary files on index creation" msgstr "Največja velikost začasnih datotek ob ustvarjanju indeksa" -#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:524 +#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:520 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " "method." msgstr "" -#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:531 +#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:527 msgid "Repair threads" msgstr "" -#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:530 +#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:526 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." msgstr "" -#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:533 +#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:529 msgid "Sort buffer size" msgstr "" -#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:532 +#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:528 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." msgstr "" -#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:620 +#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:616 msgid "Index cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:619 +#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:615 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." msgstr "" -#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:630 +#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:626 msgid "Record cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:629 +#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:625 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " "to the handle data (.xtd) and row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:624 +#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:620 msgid "Log cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:623 +#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:619 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:628 +#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:624 msgid "Log file threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:627 +#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:623 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:634 +#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:630 msgid "Transaction buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:633 +#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:629 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." msgstr "" -#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:611 +#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:607 msgid "Checkpoint frequency" msgstr "" -#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:612 +#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:608 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." msgstr "" -#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:615 +#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:611 msgid "Data log threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:616 +#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:612 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -2648,48 +2658,48 @@ msgid "" "that can be stored in the database." msgstr "" -#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:618 +#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:614 msgid "Garbage threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:617 +#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:613 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." msgstr "" -#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:622 +#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:618 msgid "Log buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:621 +#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:617 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " "required to write a data log." msgstr "" -#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:613 +#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:609 msgid "Data file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:614 +#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:610 msgid "The grow size of the handle data (.xtd) files." msgstr "" -#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:632 +#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:628 msgid "Row file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:631 +#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:627 msgid "The grow size of the row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:626 +#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:622 msgid "Log file count" msgstr "" -#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:625 +#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:621 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -2699,19 +2709,19 @@ msgstr "" #: libraries/export/htmlword.php:132 libraries/export/odt.php:168 #: libraries/export/sql.php:881 libraries/export/texytext.php:130 -#: libraries/messages.inc.php:275 +#: libraries/messages.inc.php:271 msgid "Dumping data for table" msgstr "Odloži podatke za tabelo" #: libraries/export/htmlword.php:185 libraries/export/odt.php:238 #: libraries/export/sql.php:785 libraries/export/texytext.php:177 -#: libraries/messages.inc.php:1086 +#: libraries/messages.inc.php:1082 msgid "Table structure for table" msgstr "Struktura tabele" #: libraries/export/latex.php:125 libraries/export/sql.php:232 #: libraries/export/xml.php:102 libraries/header_printview.inc.php:57 -#: libraries/messages.inc.php:381 libraries/replication_gui.lib.php:63 +#: libraries/messages.inc.php:377 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:170 libraries/replication_gui.lib.php:265 #: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325 #: server_privileges.php:692 server_privileges.php:695 @@ -2723,186 +2733,186 @@ msgstr "Gostitelj" #: libraries/export/latex.php:130 libraries/export/sql.php:233 #: libraries/export/xml.php:107 libraries/header_printview.inc.php:59 -#: libraries/messages.inc.php:354 +#: libraries/messages.inc.php:350 msgid "Generation Time" msgstr "Čas nastanka" #: libraries/export/latex.php:131 libraries/export/sql.php:235 -#: libraries/export/xml.php:108 libraries/messages.inc.php:864 main.php:186 +#: libraries/export/xml.php:108 libraries/messages.inc.php:860 main.php:186 msgid "Server version" msgstr "Različica strežnika" #: libraries/export/latex.php:132 libraries/export/sql.php:236 -#: libraries/export/xml.php:109 libraries/messages.inc.php:651 +#: libraries/export/xml.php:109 libraries/messages.inc.php:647 msgid "PHP Version" msgstr "Različica PHP" #: libraries/export/latex.php:201 libraries/export/sql.php:868 -#: libraries/messages.inc.php:226 server_databases.php:127 +#: libraries/messages.inc.php:222 server_databases.php:127 #: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317 #: tbl_structure.php:666 msgid "Data" msgstr "Podatki" -#: libraries/export/odt.php:318 libraries/messages.inc.php:506 +#: libraries/export/odt.php:318 libraries/messages.inc.php:502 #: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "Vrsta MIME" -#: libraries/export/sql.php:387 libraries/messages.inc.php:711 +#: libraries/export/sql.php:387 libraries/messages.inc.php:707 msgid "Procedures" msgstr "Procedure" -#: libraries/export/sql.php:401 libraries/messages.inc.php:348 +#: libraries/export/sql.php:401 libraries/messages.inc.php:344 msgid "Functions" msgstr "Funkcije" -#: libraries/export/sql.php:618 libraries/messages.inc.php:174 +#: libraries/export/sql.php:618 libraries/messages.inc.php:170 msgid "Constraints for dumped tables" msgstr "Omejitve tabel za povzetek stanja" -#: libraries/export/sql.php:627 libraries/messages.inc.php:175 +#: libraries/export/sql.php:627 libraries/messages.inc.php:171 msgid "Constraints for table" msgstr "Omejitve za tabelo" -#: libraries/export/sql.php:727 libraries/messages.inc.php:512 +#: libraries/export/sql.php:727 libraries/messages.inc.php:508 msgid "MIME TYPES FOR TABLE" msgstr "VRSTE MIME ZA TABELO" -#: libraries/export/sql.php:739 libraries/messages.inc.php:743 +#: libraries/export/sql.php:739 libraries/messages.inc.php:739 msgid "RELATIONS FOR TABLE" msgstr "RELACIJE ZA TABELO" -#: libraries/export/sql.php:796 libraries/messages.inc.php:1178 +#: libraries/export/sql.php:796 libraries/messages.inc.php:1174 #: libraries/tbl_triggers.lib.php:19 msgid "Triggers" msgstr "Sprožilci" -#: libraries/export/sql.php:808 libraries/messages.inc.php:1046 +#: libraries/export/sql.php:808 libraries/messages.inc.php:1042 msgid "Structure for view" msgstr "Struktura pogleda" -#: libraries/export/sql.php:817 libraries/messages.inc.php:1029 +#: libraries/export/sql.php:817 libraries/messages.inc.php:1025 msgid "Stand-in structure for view" msgstr "" #: libraries/footer.inc.php:184 libraries/footer.inc.php:195 -#: libraries/footer.inc.php:198 libraries/messages.inc.php:586 +#: libraries/footer.inc.php:198 libraries/messages.inc.php:582 msgid "Open new phpMyAdmin window" msgstr "Odpri novo okno phpMyAdmin" -#: libraries/header.inc.php:115 libraries/messages.inc.php:542 +#: libraries/header.inc.php:115 libraries/messages.inc.php:538 msgid "New table" msgstr "Nova tabela" #: libraries/header_printview.inc.php:50 libraries/header_printview.inc.php:55 -#: libraries/messages.inc.php:1024 +#: libraries/messages.inc.php:1020 msgid "SQL result" msgstr "Rezultat SQL" -#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:350 +#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:346 msgid "Generated by" msgstr "Ustvaril" #: libraries/header_printview.inc.php:63 libraries/import.lib.php:145 -#: libraries/messages.inc.php:820 navigation.php:652 navigation.php:674 +#: libraries/messages.inc.php:816 navigation.php:652 navigation.php:674 #: server_databases.php:122 tbl_printview.php:394 tbl_structure.php:366 #: tbl_structure.php:778 msgid "Rows" msgstr "Vrstice" -#: libraries/import.lib.php:150 libraries/messages.inc.php:285 sql.php:520 +#: libraries/import.lib.php:150 libraries/messages.inc.php:281 sql.php:520 #: tbl_change.php:181 tbl_get_field.php:35 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL je vrnil kot rezultat prazno množico (npr. nič vrstic)." -#: libraries/import.lib.php:1078 libraries/messages.inc.php:399 +#: libraries/import.lib.php:1078 libraries/messages.inc.php:395 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" "Naslednje strukture so bile ali ustvarjene ali spremenjene: Tukaj lahko:" -#: libraries/import.lib.php:1079 libraries/messages.inc.php:400 +#: libraries/import.lib.php:1079 libraries/messages.inc.php:396 msgid "View a structure`s contents by clicking on its name" msgstr "Oglejte si vsebino strukture s klikom na njeno ime" -#: libraries/import.lib.php:1080 libraries/messages.inc.php:401 +#: libraries/import.lib.php:1080 libraries/messages.inc.php:397 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" "Spremenite katero koli njeno nastavitev s klikom na pripadajočo povezavo " "\"Možnosti\"" -#: libraries/import.lib.php:1081 libraries/messages.inc.php:402 +#: libraries/import.lib.php:1081 libraries/messages.inc.php:398 msgid "Edit its structure by following the \"Structure\" link" msgstr "Uredite njeno strukturo s sledenjem povezavi \"Struktura\"" -#: libraries/import.lib.php:1084 libraries/messages.inc.php:362 +#: libraries/import.lib.php:1084 libraries/messages.inc.php:358 msgid "Go to database" msgstr "Pojdi v zbirko podatkov" #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:869 +#: libraries/messages.inc.php:865 msgid "settings" msgstr "nastavitve" -#: libraries/import.lib.php:1106 libraries/messages.inc.php:363 +#: libraries/import.lib.php:1106 libraries/messages.inc.php:359 msgid "Go to table" msgstr "Pojdi v tabelo" -#: libraries/import.lib.php:1109 libraries/messages.inc.php:1047 +#: libraries/import.lib.php:1109 libraries/messages.inc.php:1043 msgid "structure" msgstr "struktura" -#: libraries/import.lib.php:1115 libraries/messages.inc.php:364 +#: libraries/import.lib.php:1115 libraries/messages.inc.php:360 msgid "Go to view" msgstr "Pojdi na pogled" #: libraries/import/csv.php:58 libraries/import/csv.php:70 #: libraries/import/csv.php:74 libraries/import/csv.php:78 -#: libraries/messages.inc.php:442 +#: libraries/messages.inc.php:438 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "Neveljavni parameter za uvoz CSV: %s" -#: libraries/import/csv.php:59 libraries/messages.inc.php:323 +#: libraries/import/csv.php:59 libraries/messages.inc.php:319 msgid "Fields terminated by" msgstr "Polja zaključena z" -#: libraries/import/csv.php:71 libraries/messages.inc.php:320 +#: libraries/import/csv.php:71 libraries/messages.inc.php:316 msgid "Fields enclosed by" msgstr "Polja obdana z" -#: libraries/import/csv.php:75 libraries/messages.inc.php:321 +#: libraries/import/csv.php:75 libraries/messages.inc.php:317 msgid "Fields escaped by" msgstr "Polja izognjena z" -#: libraries/import/csv.php:79 libraries/messages.inc.php:481 +#: libraries/import/csv.php:79 libraries/messages.inc.php:477 msgid "Lines terminated by" msgstr "Vrstice zaključene z" -#: libraries/import/csv.php:119 libraries/messages.inc.php:439 +#: libraries/import/csv.php:119 libraries/messages.inc.php:435 #, php-format msgid "Invalid column (%s) specified!" msgstr "Določen neveljavni stolpec (%s)!" #: libraries/import/csv.php:177 libraries/import/csv.php:424 -#: libraries/messages.inc.php:441 +#: libraries/messages.inc.php:437 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "Neveljavna oblika vnosa CSV v vrstici %d." -#: libraries/import/csv.php:312 libraries/messages.inc.php:440 +#: libraries/import/csv.php:312 libraries/messages.inc.php:436 #, php-format msgid "Invalid field count in CSV input on line %d." msgstr "Neveljavno število polj v vnosu CSV v vrstici %d." -#: libraries/import/ldi.php:55 libraries/messages.inc.php:446 +#: libraries/import/ldi.php:55 libraries/messages.inc.php:442 msgid "This plugin does not support compressed imports!" msgstr "Ta vtičnik ne podpira kompresiranih uvozov!" #: libraries/import/xml.php:74 libraries/import/xml.php:130 -#: libraries/messages.inc.php:1247 +#: libraries/messages.inc.php:1243 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -2935,323 +2945,313 @@ msgstr "" msgid "ltr" msgstr "ltr" -#. l10n: Thousands separator -#: libraries/messages.inc.php:21 -msgid "," -msgstr "." - -#. l10n: Decimal separator -#: libraries/messages.inc.php:23 -msgid "." -msgstr "," - -#: libraries/messages.inc.php:25 server_status.php:461 +#: libraries/messages.inc.php:21 server_status.php:461 msgid "Aborted" msgstr "Prekinjeno" -#: libraries/messages.inc.php:28 main.php:68 +#: libraries/messages.inc.php:24 main.php:68 msgid "Actions" msgstr "Dejanja" -#: libraries/messages.inc.php:34 libraries/tbl_properties.inc.php:780 +#: libraries/messages.inc.php:30 libraries/tbl_properties.inc.php:780 #: tbl_structure.php:543 #, php-format msgid "Add %s field(s)" msgstr "Dodaj %s polj(e)" -#: libraries/messages.inc.php:35 +#: libraries/messages.inc.php:31 msgid "Add custom comment into header (\\n splits lines)" msgstr "Dodaj prilagojen komentar v glavo (\\n prelomi vrstice)" -#: libraries/messages.inc.php:36 +#: libraries/messages.inc.php:32 msgid "Add into comments" msgstr "Dodaj med komentarje" -#: libraries/messages.inc.php:37 tbl_structure.php:541 +#: libraries/messages.inc.php:33 tbl_structure.php:541 msgid "Add new field" msgstr "Dodaj novo polje" -#: libraries/messages.inc.php:38 server_privileges.php:1886 +#: libraries/messages.inc.php:34 server_privileges.php:1886 msgid "Add privileges on the following database" msgstr "Dodaj privilegije na naslednji podatkovni zbirki" -#: libraries/messages.inc.php:39 server_privileges.php:1907 +#: libraries/messages.inc.php:35 server_privileges.php:1907 msgid "Add privileges on the following table" msgstr "Dodaj privilegije na naslednji tabeli" -#: libraries/messages.inc.php:40 tbl_select.php:288 +#: libraries/messages.inc.php:36 tbl_select.php:288 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Dodaj iskalne pogoje (telo \"where\" stavka):" -#: libraries/messages.inc.php:41 tbl_indexes.php:251 +#: libraries/messages.inc.php:37 tbl_indexes.php:251 #, php-format msgid "Add to index  %s column(s)" msgstr "Dodaj indeksu  %s stolpec(ce)" -#: libraries/messages.inc.php:42 server_privileges.php:1570 +#: libraries/messages.inc.php:38 server_privileges.php:1570 #: server_privileges.php:1594 server_privileges.php:1988 #: server_privileges.php:2177 msgid "Add a new User" msgstr "Dodaj novega uporabnika" -#: libraries/messages.inc.php:43 server_privileges.php:931 +#: libraries/messages.inc.php:39 server_privileges.php:931 msgid "You have added a new user." msgstr "Dodali ste novega uporabnika." -#: libraries/messages.inc.php:44 server_privileges.php:571 +#: libraries/messages.inc.php:40 server_privileges.php:571 msgid "Administration" msgstr "Administracija" -#: libraries/messages.inc.php:45 tbl_structure.php:557 +#: libraries/messages.inc.php:41 tbl_structure.php:557 #, php-format msgid "After %s" msgstr "Po %s" -#: libraries/messages.inc.php:46 tbl_change.php:1147 +#: libraries/messages.inc.php:42 tbl_change.php:1147 msgid "Go back to previous page" msgstr "Nazaj na prejšnjo stran" -#: libraries/messages.inc.php:47 tbl_change.php:1148 +#: libraries/messages.inc.php:43 tbl_change.php:1148 msgid "Insert another new row" msgstr "Vstavi še eno novo vrstico" -#: libraries/messages.inc.php:48 tbl_change.php:1160 +#: libraries/messages.inc.php:44 tbl_change.php:1160 msgid "Edit next row" msgstr "Uredi naslednjo vrstico" -#: libraries/messages.inc.php:49 tbl_change.php:1152 +#: libraries/messages.inc.php:45 tbl_change.php:1152 msgid "Go back to this page" msgstr "Pojdi nazaj na stran" -#: libraries/messages.inc.php:50 querywindow.php:115 +#: libraries/messages.inc.php:46 querywindow.php:115 msgid "All" msgstr "Vse/Vsi" -#: libraries/messages.inc.php:53 tbl_operations.php:249 +#: libraries/messages.inc.php:49 tbl_operations.php:249 msgid "Alter table order by" msgstr "Spremeni vrstni red prikaza tabele za" -#: libraries/messages.inc.php:54 tbl_operations.php:660 +#: libraries/messages.inc.php:50 tbl_operations.php:660 msgid "Analyze" msgstr "Analiziraj" -#: libraries/messages.inc.php:57 +#: libraries/messages.inc.php:53 msgid "and" msgstr "in" -#: libraries/messages.inc.php:59 pmd_general.php:87 +#: libraries/messages.inc.php:55 pmd_general.php:87 msgid "Angular links" msgstr "" -#: libraries/messages.inc.php:60 tbl_structure.php:401 tbl_structure.php:415 +#: libraries/messages.inc.php:56 tbl_structure.php:401 tbl_structure.php:415 #: tbl_structure.php:429 #, php-format msgid "An index has been added on %s" msgstr "Na %s je dodan indeks" -#: libraries/messages.inc.php:61 server_privileges.php:1521 +#: libraries/messages.inc.php:57 server_privileges.php:1521 #: server_privileges.php:2123 msgid "Any" msgstr "Katerikoli" -#: libraries/messages.inc.php:62 libraries/replication_gui.lib.php:298 +#: libraries/messages.inc.php:58 libraries/replication_gui.lib.php:298 #: server_privileges.php:725 msgid "Any host" msgstr "Katerikoli gostitelj" -#: libraries/messages.inc.php:63 libraries/replication_gui.lib.php:250 +#: libraries/messages.inc.php:59 libraries/replication_gui.lib.php:250 #: server_privileges.php:677 msgid "Any user" msgstr "Katerikoli uporabnik" -#: libraries/messages.inc.php:64 server_synchronize.php:449 +#: libraries/messages.inc.php:60 server_synchronize.php:449 #: server_synchronize.php:894 msgid "Apply Selected Changes" msgstr "Uporabi izbrane spremembe" -#: libraries/messages.inc.php:66 tbl_structure.php:386 +#: libraries/messages.inc.php:62 tbl_structure.php:386 #, php-format msgid "A primary key has been added on %s" msgstr "Na %s je dodan primarni ključ" -#: libraries/messages.inc.php:67 libraries/mysql_charsets.lib.php:368 +#: libraries/messages.inc.php:63 libraries/mysql_charsets.lib.php:368 msgid "Arabic" msgstr "Arabsko" -#: libraries/messages.inc.php:68 libraries/mysql_charsets.lib.php:359 +#: libraries/messages.inc.php:64 libraries/mysql_charsets.lib.php:359 msgid "Armenian" msgstr "Armensko" -#: libraries/messages.inc.php:70 libraries/tbl_properties.inc.php:394 +#: libraries/messages.inc.php:66 libraries/tbl_properties.inc.php:394 msgid "As defined:" msgstr "Kot določeno:" -#: libraries/messages.inc.php:71 tbl_structure.php:556 +#: libraries/messages.inc.php:67 tbl_structure.php:556 msgid "At Beginning of Table" msgstr "Na začetku tabele" -#: libraries/messages.inc.php:72 tbl_structure.php:555 +#: libraries/messages.inc.php:68 tbl_structure.php:555 msgid "At End of Table" msgstr "Na koncu tabele" -#: libraries/messages.inc.php:73 libraries/tbl_properties.inc.php:108 +#: libraries/messages.inc.php:69 libraries/tbl_properties.inc.php:108 #: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:144 #: tbl_structure.php:180 msgid "Attributes" msgstr "Atributi" -#: libraries/messages.inc.php:74 pdf_pages.php:303 pdf_pages.php:306 +#: libraries/messages.inc.php:70 pdf_pages.php:303 pdf_pages.php:306 msgid "Automatic layout" msgstr "Samodejna postavitev" -#: libraries/messages.inc.php:77 libraries/mysql_charsets.lib.php:354 +#: libraries/messages.inc.php:73 libraries/mysql_charsets.lib.php:354 msgid "Baltic" msgstr "Baltsko" -#: libraries/messages.inc.php:78 libraries/sqlparser.lib.php:175 +#: libraries/messages.inc.php:74 libraries/sqlparser.lib.php:175 msgid "BEGIN CUT" msgstr "ZAČETEK IZREZA" -#: libraries/messages.inc.php:79 libraries/sqlparser.lib.php:179 +#: libraries/messages.inc.php:75 libraries/sqlparser.lib.php:179 msgid "BEGIN RAW" msgstr "BEGIN RAW" -#: libraries/messages.inc.php:80 libraries/mysql_charsets.lib.php:201 +#: libraries/messages.inc.php:76 libraries/mysql_charsets.lib.php:201 #: libraries/mysql_charsets.lib.php:402 tbl_change.php:518 msgid "Binary" msgstr "Dvojiško" -#: libraries/messages.inc.php:81 tbl_change.php:894 +#: libraries/messages.inc.php:77 tbl_change.php:894 msgid "Binary - do not edit" msgstr "Dvojiško - ne urejaj" -#: libraries/messages.inc.php:82 libraries/server_links.inc.php:76 +#: libraries/messages.inc.php:78 libraries/server_links.inc.php:76 #: server_binlog.php:110 server_status.php:253 test/theme.php:121 msgid "Binary log" msgstr "Dvojiški dnevnik" -#: libraries/messages.inc.php:83 server_binlog.php:217 +#: libraries/messages.inc.php:79 server_binlog.php:217 msgid "Event type" msgstr "Vrsta dogodka" -#: libraries/messages.inc.php:84 server_binlog.php:220 +#: libraries/messages.inc.php:80 server_binlog.php:220 msgid "Information" msgstr "Podatki" -#: libraries/messages.inc.php:85 server_binlog.php:215 +#: libraries/messages.inc.php:81 server_binlog.php:215 msgid "Log name" msgstr "Ime dnevnika" -#: libraries/messages.inc.php:86 server_binlog.php:219 +#: libraries/messages.inc.php:82 server_binlog.php:219 msgid "Original position" msgstr "Izvirni položaj" -#: libraries/messages.inc.php:87 server_binlog.php:216 +#: libraries/messages.inc.php:83 server_binlog.php:216 msgid "Position" msgstr "Položaj" -#: libraries/messages.inc.php:88 libraries/replication_gui.lib.php:169 +#: libraries/messages.inc.php:84 libraries/replication_gui.lib.php:169 #: server_binlog.php:218 msgid "Server ID" msgstr "ID strežnika" -#: libraries/messages.inc.php:92 +#: libraries/messages.inc.php:88 msgctxt "$strBLOBRepositoryDisabled" msgid "Disabled" msgstr "Onemogočeno" -#: libraries/messages.inc.php:95 +#: libraries/messages.inc.php:91 msgctxt "$strBLOBRepositoryEnabled" msgid "Enabled" msgstr "Omogočeno" -#: libraries/messages.inc.php:97 tbl_change.php:888 +#: libraries/messages.inc.php:93 tbl_change.php:888 msgid "Remove BLOB Repository Reference" msgstr "Odstrani sklic shrambe BLOB" -#: libraries/messages.inc.php:98 +#: libraries/messages.inc.php:94 msgctxt "$strBLOBRepositoryRepair" msgid "Repair" msgstr "Popravi" -#: libraries/messages.inc.php:99 tbl_change.php:987 +#: libraries/messages.inc.php:95 tbl_change.php:987 msgid "Upload to BLOB repository" msgstr "Naloži v shrambo BLOB" -#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:359 +#: libraries/messages.inc.php:96 libraries/sql_query_form.lib.php:359 #: sql.php:677 msgid "Let every user access this bookmark" msgstr "Dovoli dostop do zaznamka vsem uporabnikom" -#: libraries/messages.inc.php:103 sql.php:671 +#: libraries/messages.inc.php:99 sql.php:671 msgid "Label" msgstr "Oznaka" -#: libraries/messages.inc.php:104 libraries/sql_query_form.lib.php:433 +#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:433 msgid "Bookmarked SQL query" msgstr "Označena poizvedba SQL" -#: libraries/messages.inc.php:105 libraries/sql_query_form.lib.php:365 +#: libraries/messages.inc.php:101 libraries/sql_query_form.lib.php:365 msgid "Replace existing bookmark of same name" msgstr "Zamenjaj obstoječ zaznamek z istim imenom" -#: libraries/messages.inc.php:106 libraries/sql_query_form.lib.php:352 +#: libraries/messages.inc.php:102 libraries/sql_query_form.lib.php:352 #: sql.php:665 sql.php:666 sql.php:683 msgid "Bookmark this SQL query" msgstr "Označi to poizvedbo SQL" -#: libraries/messages.inc.php:107 libraries/sql_query_form.lib.php:466 +#: libraries/messages.inc.php:103 libraries/sql_query_form.lib.php:466 msgid "View only" msgstr "Samo pogled" -#: libraries/messages.inc.php:109 tbl_structure.php:161 +#: libraries/messages.inc.php:105 tbl_structure.php:161 msgid "Browse distinct values" msgstr "Prebrskaj različne vrednosti" -#: libraries/messages.inc.php:110 tbl_change.php:252 tbl_select.php:27 +#: libraries/messages.inc.php:106 tbl_change.php:252 tbl_select.php:27 #: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34 msgid "Browse foreign values" msgstr "Prebrskaj tuje vrednosti" -#: libraries/messages.inc.php:118 libraries/mysql_charsets.lib.php:213 +#: libraries/messages.inc.php:114 libraries/mysql_charsets.lib.php:213 msgid "Bulgarian" msgstr "Bolgarsko" -#: libraries/messages.inc.php:120 +#: libraries/messages.inc.php:116 msgid "\"bzipped\"" msgstr "\"bzipano\"" -#: libraries/messages.inc.php:122 +#: libraries/messages.inc.php:118 msgid "Calendar" msgstr "Koledar" -#: libraries/messages.inc.php:129 tbl_indexes.php:75 +#: libraries/messages.inc.php:125 tbl_indexes.php:75 msgid "Can't rename index to PRIMARY!" msgstr "Indeksa ni mogoče preimenovati v PRIMARY!" -#: libraries/messages.inc.php:132 libraries/mysql_charsets.lib.php:223 +#: libraries/messages.inc.php:128 libraries/mysql_charsets.lib.php:223 #: libraries/mysql_charsets.lib.php:409 msgid "case-insensitive" msgstr "ne razlikuj velikih in malih črk" -#: libraries/messages.inc.php:133 libraries/mysql_charsets.lib.php:226 +#: libraries/messages.inc.php:129 libraries/mysql_charsets.lib.php:226 #: libraries/mysql_charsets.lib.php:411 msgid "case-sensitive" msgstr "razlikuj velike in male črke" -#: libraries/messages.inc.php:134 libraries/mysql_charsets.lib.php:332 +#: libraries/messages.inc.php:130 libraries/mysql_charsets.lib.php:332 msgid "Central European" msgstr "Centralno evropsko" -#: libraries/messages.inc.php:136 server_privileges.php:1969 +#: libraries/messages.inc.php:132 server_privileges.php:1969 msgid "... keep the old one." msgstr "... obdrži starega." -#: libraries/messages.inc.php:137 server_privileges.php:1967 +#: libraries/messages.inc.php:133 server_privileges.php:1967 msgid "Create a new user with the same privileges and ..." msgstr "Ustvari novega uporabnika z enakimi pravicami in ..." -#: libraries/messages.inc.php:138 server_privileges.php:1972 +#: libraries/messages.inc.php:134 server_privileges.php:1972 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -3259,76 +3259,76 @@ msgstr "" " ... izbriši starega uporabnika s seznama uporabnikov ter ponovno naloži " "njegove pravice." -#: libraries/messages.inc.php:139 server_privileges.php:1970 +#: libraries/messages.inc.php:135 server_privileges.php:1970 msgid " ... delete the old one from the user tables." msgstr " ... izbriši starega s seznama uporabnikov." -#: libraries/messages.inc.php:140 server_privileges.php:1971 +#: libraries/messages.inc.php:136 server_privileges.php:1971 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr " ... prekliči vse aktivne pravice starega uporabnika ter jih izbriši." -#: libraries/messages.inc.php:141 server_privileges.php:1964 +#: libraries/messages.inc.php:137 server_privileges.php:1964 msgid "Change Login Information / Copy User" msgstr "Spremeni prijavne informacije / Kopiraj uporabnika" -#: libraries/messages.inc.php:144 libraries/mysql_charsets.lib.php:107 +#: libraries/messages.inc.php:140 libraries/mysql_charsets.lib.php:107 msgid "Charset" msgstr "Nabor znakov" -#: libraries/messages.inc.php:146 server_collations.php:40 +#: libraries/messages.inc.php:142 server_collations.php:40 msgid "Character Sets and Collations" msgstr "Nabori znakov in pravila za razvrščanje znakov" -#: libraries/messages.inc.php:147 libraries/server_links.inc.php:57 +#: libraries/messages.inc.php:143 libraries/server_links.inc.php:57 #: test/theme.php:109 msgid "Charsets" msgstr "Nabori znakov" -#: libraries/messages.inc.php:149 tbl_operations.php:661 +#: libraries/messages.inc.php:145 tbl_operations.php:661 msgid "Check" msgstr "Označi" -#: libraries/messages.inc.php:151 server_databases.php:293 +#: libraries/messages.inc.php:147 server_databases.php:293 #: server_databases.php:294 msgid "Check Privileges" msgstr "Preveri privilegije" -#: libraries/messages.inc.php:152 server_databases.php:289 +#: libraries/messages.inc.php:148 server_databases.php:289 #, php-format msgid "Check privileges for database "%s"." msgstr "Preveri privilegije za podatkovno zbirko "%s"." -#: libraries/messages.inc.php:154 pdf_pages.php:261 +#: libraries/messages.inc.php:150 pdf_pages.php:261 msgid "Please choose a page to edit" msgstr "Izberite stran za urejanje" -#: libraries/messages.inc.php:157 +#: libraries/messages.inc.php:153 msgid "Displaying Column Comments" msgstr "Prikazovanje komentarjev stolpcev" -#: libraries/messages.inc.php:159 pdf_pages.php:483 view_create.php:148 +#: libraries/messages.inc.php:155 pdf_pages.php:483 view_create.php:148 msgid "Column names" msgstr "Imena stolpcev" -#: libraries/messages.inc.php:160 server_privileges.php:1685 +#: libraries/messages.inc.php:156 server_privileges.php:1685 msgid "Column-specific privileges" msgstr "Privilegiji tipični za stolpec" -#: libraries/messages.inc.php:164 +#: libraries/messages.inc.php:160 msgid "MySQL 4.0 compatible" msgstr "Združljivo z MySQL 4.0" -#: libraries/messages.inc.php:165 +#: libraries/messages.inc.php:161 msgid "Complete inserts" msgstr "Popolne poizvedbe insert" -#: libraries/messages.inc.php:168 +#: libraries/messages.inc.php:164 #, php-format msgid "Could not load default configuration from: \"%1$s\"" msgstr "Ne morem naložiti privzete konfiguracije iz: \"%1$s\"" -#: libraries/messages.inc.php:169 main.php:306 +#: libraries/messages.inc.php:165 main.php:306 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " @@ -3338,168 +3338,168 @@ msgstr "" "obstaja v vaši mapi phpMyAdmin. Priporočljivo jo je odstraniti, ko je " "phpMyAdmin enkrat že konfiguriran." -#: libraries/messages.inc.php:171 pdf_schema.php:672 +#: libraries/messages.inc.php:167 pdf_schema.php:672 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Prosimo, konfigurirajte koordinate za tabelo %s" -#: libraries/messages.inc.php:173 server_status.php:433 +#: libraries/messages.inc.php:169 server_status.php:433 msgid "Connections" msgstr "Povezave" -#: libraries/messages.inc.php:179 tbl_operations.php:509 +#: libraries/messages.inc.php:175 tbl_operations.php:509 msgid "Copy table to (database.table):" msgstr "Kopiraj tabelo v (podatkovna_zbirka.tabela):" -#: libraries/messages.inc.php:180 tbl_move_copy.php:58 +#: libraries/messages.inc.php:176 tbl_move_copy.php:58 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabela %s je skopirana v %s." -#: libraries/messages.inc.php:181 tbl_move_copy.php:48 +#: libraries/messages.inc.php:177 tbl_move_copy.php:48 msgid "Can't copy table to same one!" msgstr "Tabele ni mogoče kopirati same vase!" -#: libraries/messages.inc.php:182 server_synchronize.php:94 +#: libraries/messages.inc.php:178 server_synchronize.php:94 msgid "Could not connect to the source" msgstr "Ne morem se povezati z virom" -#: libraries/messages.inc.php:183 server_synchronize.php:97 +#: libraries/messages.inc.php:179 server_synchronize.php:97 msgid "Could not connect to the target" msgstr "Ne morem se povezati s ciljem" -#: libraries/messages.inc.php:184 server_processlist.php:24 +#: libraries/messages.inc.php:180 server_processlist.php:24 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin ni uspel prekiniti teme %s. Verjetno je že prekinjena." -#: libraries/messages.inc.php:187 +#: libraries/messages.inc.php:183 #, php-format msgid "Create an index on %s columns" msgstr "Ustvari indeks na %s stolpcih" -#: libraries/messages.inc.php:188 tbl_indexes.php:160 +#: libraries/messages.inc.php:184 tbl_indexes.php:160 msgid "Create a new index" msgstr "Ustvari nov indeks" -#: libraries/messages.inc.php:191 pdf_pages.php:297 pmd_pdf.php:114 +#: libraries/messages.inc.php:187 pdf_pages.php:297 pmd_pdf.php:114 msgid "Create a page" msgstr "Ustvari novo stran" -#: libraries/messages.inc.php:192 +#: libraries/messages.inc.php:188 msgid "Creation of PDFs" msgstr "Ustvarjanje datotek PDF" -#: libraries/messages.inc.php:193 pmd_general.php:74 pmd_general.php:306 +#: libraries/messages.inc.php:189 pmd_general.php:74 pmd_general.php:306 msgid "Create relation" msgstr "Ustvari razmerje" -#: libraries/messages.inc.php:194 pmd_general.php:71 +#: libraries/messages.inc.php:190 pmd_general.php:71 #: server_synchronize.php:429 server_synchronize.php:872 msgid "Create table" msgstr "Ustvari tabelo" -#: libraries/messages.inc.php:195 +#: libraries/messages.inc.php:191 msgctxt "$strCreateTableShort" msgid "Create table" msgstr "Ustvari tabelo" -#: libraries/messages.inc.php:196 server_privileges.php:1994 +#: libraries/messages.inc.php:192 server_privileges.php:1994 msgid "Database for user" msgstr "Podatkovna zbirka za uporabnika" -#: libraries/messages.inc.php:197 server_privileges.php:1999 +#: libraries/messages.inc.php:193 server_privileges.php:1999 msgid "Create database with same name and grant all privileges" msgstr "Ustvari zbirko podatkov z enakim imenom in dodeli vse privilegije" -#: libraries/messages.inc.php:198 +#: libraries/messages.inc.php:194 msgctxt "$strCreateUserDatabaseNone" msgid "None" msgstr "Nobena" -#: libraries/messages.inc.php:199 server_privileges.php:2003 +#: libraries/messages.inc.php:195 server_privileges.php:2003 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Dodeli vse privilegije za podatkovno zbirko "%s"" -#: libraries/messages.inc.php:200 server_privileges.php:2000 +#: libraries/messages.inc.php:196 server_privileges.php:2000 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" "Dodeli vse privilegije na imenu z nadomestnim znakom (uporabniskoime\\_%)" -#: libraries/messages.inc.php:201 +#: libraries/messages.inc.php:197 msgid "Creation/Update/Check dates" msgstr "Datumi za ustvarjeno/posodobljeno/preverjeno" -#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:229 +#: libraries/messages.inc.php:199 libraries/mysql_charsets.lib.php:229 msgid "Croatian" msgstr "Hrvaško" -#: libraries/messages.inc.php:204 +#: libraries/messages.inc.php:200 msgid "CSV" msgstr "CSV-podatki" -#: libraries/messages.inc.php:205 libraries/server_synchronize.lib.php:1343 +#: libraries/messages.inc.php:201 libraries/server_synchronize.lib.php:1343 #: libraries/server_synchronize.lib.php:1369 msgid "Current server" msgstr "Trenutni strežnik" -#: libraries/messages.inc.php:206 main.php:159 +#: libraries/messages.inc.php:202 main.php:159 msgid "Custom color" msgstr "Barva po meri" -#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:365 +#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:365 msgid "Cyrillic" msgstr "Cirilica" -#: libraries/messages.inc.php:208 libraries/mysql_charsets.lib.php:232 +#: libraries/messages.inc.php:204 libraries/mysql_charsets.lib.php:232 msgid "Czech" msgstr "Češko" -#: libraries/messages.inc.php:209 libraries/mysql_charsets.lib.php:383 +#: libraries/messages.inc.php:205 libraries/mysql_charsets.lib.php:383 msgid "Czech-Slovak" msgstr "Češkoslovaško" -#: libraries/messages.inc.php:211 libraries/mysql_charsets.lib.php:235 +#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:235 msgid "Danish" msgstr "Dansko" -#: libraries/messages.inc.php:214 +#: libraries/messages.inc.php:210 msgid "Database export options" msgstr "Možnosti za izvoz zbirke podatkov" -#: libraries/messages.inc.php:217 server_synchronize.php:122 +#: libraries/messages.inc.php:213 server_synchronize.php:122 #: server_synchronize.php:125 tbl_create.php:82 tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "Podatkovna zbirka '%s' ne obstaja." -#: libraries/messages.inc.php:219 server_databases.php:63 +#: libraries/messages.inc.php:215 server_databases.php:63 #, php-format msgid "%s databases have been dropped successfully." msgstr "%s podatkovne zbirke so uspešno zavržene." -#: libraries/messages.inc.php:220 libraries/server_synchronize.lib.php:1341 +#: libraries/messages.inc.php:216 libraries/server_synchronize.lib.php:1341 #: server_synchronize.php:1110 msgid "Source database" msgstr "Izvorna zbirka podatkov" -#: libraries/messages.inc.php:221 server_databases.php:88 +#: libraries/messages.inc.php:217 server_databases.php:88 msgid "Databases statistics" msgstr "Statistika zbirk podatkov" -#: libraries/messages.inc.php:222 server_databases.php:362 +#: libraries/messages.inc.php:218 server_databases.php:362 #: server_databases.php:363 msgid "Disable Statistics" msgstr "Onemogoči statistiko" -#: libraries/messages.inc.php:223 server_databases.php:358 +#: libraries/messages.inc.php:219 server_databases.php:358 #: server_databases.php:359 msgid "Enable Statistics" msgstr "Omogoči statistiko" -#: libraries/messages.inc.php:224 server_databases.php:366 +#: libraries/messages.inc.php:220 server_databases.php:366 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -3507,30 +3507,30 @@ msgstr "" "Obvestilo: Omogočitev statistike podatkovne zbirke lahko povzroči močno " "povečan promet med spletnim in podatkovnim strežnikom." -#: libraries/messages.inc.php:225 libraries/server_synchronize.lib.php:1367 +#: libraries/messages.inc.php:221 libraries/server_synchronize.lib.php:1367 #: server_synchronize.php:1112 msgid "Target database" msgstr "Ciljna zbirka podatkov" -#: libraries/messages.inc.php:228 server_synchronize.php:425 +#: libraries/messages.inc.php:224 server_synchronize.php:425 #: server_synchronize.php:868 msgid "Data Difference" msgstr "Razlika podatkov" -#: libraries/messages.inc.php:231 server_synchronize.php:272 +#: libraries/messages.inc.php:227 server_synchronize.php:272 msgid "Data Synchronization" msgstr "Sinhronizacija podatkov" -#: libraries/messages.inc.php:235 server_privileges.php:526 +#: libraries/messages.inc.php:231 server_privileges.php:526 #: server_privileges.php:1679 msgid "Database-specific privileges" msgstr "Privilegiji tipični za podatkovno zbirko" -#: libraries/messages.inc.php:237 server_privileges.php:2136 +#: libraries/messages.inc.php:233 server_privileges.php:2136 msgid "database-specific" msgstr "glede na zbirko podatkov" -#: libraries/messages.inc.php:240 libraries/tbl_properties.inc.php:106 +#: libraries/messages.inc.php:236 libraries/tbl_properties.inc.php:106 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" @@ -3538,32 +3538,32 @@ msgstr "" "Za privzete vrednosti vnesite samo vrednosti, brez poševnice nazaj ali " "narekovaja, npr.: a" -#: libraries/messages.inc.php:241 tbl_operations.php:589 +#: libraries/messages.inc.php:237 tbl_operations.php:589 msgid "Defragment table" msgstr "Defragmentiraj tabelo" -#: libraries/messages.inc.php:242 +#: libraries/messages.inc.php:238 msgid "Use delayed inserts" msgstr "Uporabi zakasnjeno vstavljanje" -#: libraries/messages.inc.php:245 server_privileges.php:1243 +#: libraries/messages.inc.php:241 server_privileges.php:1243 msgid "No users selected for deleting!" msgstr "Ni izbranih uporabnikov za brisanje!" -#: libraries/messages.inc.php:246 pmd_general.php:372 +#: libraries/messages.inc.php:242 pmd_general.php:372 msgid "Delete relation" msgstr "Izbriši razmerje" -#: libraries/messages.inc.php:248 server_privileges.php:1232 +#: libraries/messages.inc.php:244 server_privileges.php:1232 #, php-format msgid "Deleting %s" msgstr "Brišem %s" -#: libraries/messages.inc.php:249 libraries/sql_query_form.lib.php:388 +#: libraries/messages.inc.php:245 libraries/sql_query_form.lib.php:388 msgid "Delimiter" msgstr "Ločilo" -#: libraries/messages.inc.php:250 pdf_pages.php:506 +#: libraries/messages.inc.php:246 pdf_pages.php:506 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -3571,149 +3571,149 @@ msgstr "" "Trenutna stran vsebuje sklice na tabele, ki ne obstajajo več. Ali želite " "izbrisati te sklice?" -#: libraries/messages.inc.php:254 pmd_help.php:29 +#: libraries/messages.inc.php:250 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." msgstr "" -#: libraries/messages.inc.php:256 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:252 libraries/mysql_charsets.lib.php:247 msgid "dictionary" msgstr "slovar" -#: libraries/messages.inc.php:257 libraries/server_synchronize.lib.php:1348 +#: libraries/messages.inc.php:253 libraries/server_synchronize.lib.php:1348 msgid "Difference" msgstr "Razlika" -#: libraries/messages.inc.php:258 pmd_general.php:87 +#: libraries/messages.inc.php:254 pmd_general.php:87 msgid "Direct links" msgstr "Neposredne povezave" -#: libraries/messages.inc.php:261 +#: libraries/messages.inc.php:257 msgid "Disable foreign key checks" msgstr "Onemogoči preverjanja tujih ključev" -#: libraries/messages.inc.php:262 +#: libraries/messages.inc.php:258 msgid "Display Features" msgstr "Prikaži lastnosti" -#: libraries/messages.inc.php:263 tbl_select.php:301 +#: libraries/messages.inc.php:259 tbl_select.php:301 msgid "Display order:" msgstr "Vrstni red prikaza:" -#: libraries/messages.inc.php:265 tbl_select.php:132 +#: libraries/messages.inc.php:261 tbl_select.php:132 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Izvedi \"query by example\" (nadomestni znak: \"%\")" -#: libraries/messages.inc.php:266 +#: libraries/messages.inc.php:262 msgid "DocSQL" msgstr "DocSQL" -#: libraries/messages.inc.php:268 +#: libraries/messages.inc.php:264 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Ne uporabi AUTO_INCREMENT za ničelne vrednosti" -#: libraries/messages.inc.php:273 server_privileges.php:1579 +#: libraries/messages.inc.php:269 server_privileges.php:1579 #: server_privileges.php:1580 server_privileges.php:1581 msgid "Drop the databases that have the same names as the users." msgstr "Izbriši podatkovne zbirke, ki imajo enako ime kot uporabniki." -#: libraries/messages.inc.php:278 tbl_printview.php:382 tbl_structure.php:743 +#: libraries/messages.inc.php:274 tbl_printview.php:382 tbl_structure.php:743 msgid "dynamic" msgstr "dinamično" -#: libraries/messages.inc.php:282 server_privileges.php:1324 +#: libraries/messages.inc.php:278 server_privileges.php:1324 #: server_privileges.php:1610 msgid "Edit Privileges" msgstr "Uredi privilegije" -#: libraries/messages.inc.php:283 tbl_printview.php:341 tbl_structure.php:688 +#: libraries/messages.inc.php:279 tbl_printview.php:341 tbl_structure.php:688 msgid "Effective" msgstr "Učinkovito" -#: libraries/messages.inc.php:286 libraries/relation.lib.php:100 +#: libraries/messages.inc.php:282 libraries/relation.lib.php:100 msgid "Enabled" msgstr "Omogočeno" -#: libraries/messages.inc.php:287 +#: libraries/messages.inc.php:283 msgid "Enclose export in a transaction" msgstr "Vključi izvoz v transakcijo" -#: libraries/messages.inc.php:288 libraries/sqlparser.lib.php:177 +#: libraries/messages.inc.php:284 libraries/sqlparser.lib.php:177 msgid "END CUT" msgstr "KONEC IZREZA" -#: libraries/messages.inc.php:290 libraries/sqlparser.lib.php:183 +#: libraries/messages.inc.php:286 libraries/sqlparser.lib.php:183 msgid "END RAW" msgstr "END RAW" -#: libraries/messages.inc.php:293 libraries/server_links.inc.php:61 +#: libraries/messages.inc.php:289 libraries/server_links.inc.php:61 #: test/theme.php:113 msgid "Engines" msgstr "Pogoni" -#: libraries/messages.inc.php:295 libraries/mysql_charsets.lib.php:238 +#: libraries/messages.inc.php:291 libraries/mysql_charsets.lib.php:238 msgid "English" msgstr "Angleško" -#: libraries/messages.inc.php:296 server_privileges.php:393 +#: libraries/messages.inc.php:292 server_privileges.php:393 #: server_privileges.php:535 server_privileges.php:1501 msgid " Note: MySQL privilege names are expressed in English " msgstr " Opomba: Imena privilegijev MySQL so zapisana v angleščini " -#: libraries/messages.inc.php:298 libraries/zip_extension.lib.php:49 +#: libraries/messages.inc.php:294 libraries/zip_extension.lib.php:49 #: libraries/zip_extension.lib.php:51 libraries/zip_extension.lib.php:66 msgid "Error in ZIP archive:" msgstr "Napaka v arhivu ZIP:" -#: libraries/messages.inc.php:303 libraries/mysql_charsets.lib.php:241 +#: libraries/messages.inc.php:299 libraries/mysql_charsets.lib.php:241 msgid "Esperanto" msgstr "Esperanto" -#: libraries/messages.inc.php:304 libraries/mysql_charsets.lib.php:244 +#: libraries/messages.inc.php:300 libraries/mysql_charsets.lib.php:244 msgid "Estonian" msgstr "Estonsko" -#: libraries/messages.inc.php:305 libraries/tbl_triggers.lib.php:29 +#: libraries/messages.inc.php:301 libraries/tbl_triggers.lib.php:29 msgid "Event" msgstr "Dogodek" -#: libraries/messages.inc.php:307 +#: libraries/messages.inc.php:303 msgid "Excel edition" msgstr "Izdaja za Excel" -#: libraries/messages.inc.php:311 pmd_pdf.php:85 +#: libraries/messages.inc.php:307 pmd_pdf.php:85 msgid "Export/Import to scale" msgstr "" -#: libraries/messages.inc.php:313 +#: libraries/messages.inc.php:309 msgid "Extended inserts" msgstr "Razširjene poizvedbe insert" -#: libraries/messages.inc.php:314 pdf_schema.php:1267 pdf_schema.php:1288 +#: libraries/messages.inc.php:310 pdf_schema.php:1267 pdf_schema.php:1288 #: tbl_printview.php:147 tbl_structure.php:183 tbl_tracking.php:278 msgid "Extra" msgstr "Dodatno" -#: libraries/messages.inc.php:316 server_status.php:447 +#: libraries/messages.inc.php:312 server_status.php:447 msgid "Failed attempts" msgstr "Neuspeli poizkusi" -#: libraries/messages.inc.php:318 tbl_structure.php:375 +#: libraries/messages.inc.php:314 tbl_structure.php:375 #, php-format msgid "Field %s has been dropped" msgstr "Polje %s je zavrženo" -#: libraries/messages.inc.php:322 libraries/sql_query_form.lib.php:317 +#: libraries/messages.inc.php:318 libraries/sql_query_form.lib.php:317 msgid "Fields" msgstr "Polja" -#: libraries/messages.inc.php:332 server_binlog.php:136 +#: libraries/messages.inc.php:328 server_binlog.php:136 msgid "Files" msgstr "Datoteke" -#: libraries/messages.inc.php:334 server_privileges.php:1597 +#: libraries/messages.inc.php:330 server_privileges.php:1597 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -3726,120 +3726,120 @@ msgstr "" "jih uporablja strežnik, če so bile tabele ročno spremenjene. V tem primeru " "morate pred nadaljevanjem %sosvežiti privilegije%s." -#: libraries/messages.inc.php:335 server_status.php:289 +#: libraries/messages.inc.php:331 server_status.php:289 msgid "Flush query cache" msgstr "Izplakni predpomnilnik poizvedb" -#: libraries/messages.inc.php:336 +#: libraries/messages.inc.php:332 msgid "Flush the table (\"FLUSH\")" msgstr "Počisti tabelo (\"FLUSH\")" -#: libraries/messages.inc.php:337 server_status.php:271 +#: libraries/messages.inc.php:333 server_status.php:271 msgid "Flush (close) all tables" msgstr "Izplakni (zapri) vse tabele" -#: libraries/messages.inc.php:339 tbl_relation.php:279 +#: libraries/messages.inc.php:335 tbl_relation.php:279 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" "Napaka pri ustvarjanju tujega ključa na %1$s (preverite podatkovne vrste)" -#: libraries/messages.inc.php:341 setup/lib/messages.inc.php:88 +#: libraries/messages.inc.php:337 setup/lib/messages.inc.php:88 #: tbl_printview.php:376 tbl_structure.php:738 msgid "Format" msgstr "Oblika" -#: libraries/messages.inc.php:344 server_replication.php:325 +#: libraries/messages.inc.php:340 server_replication.php:325 msgid "Full start" msgstr "Polni začetek" -#: libraries/messages.inc.php:345 server_replication.php:325 +#: libraries/messages.inc.php:341 server_replication.php:325 msgid "Full stop" msgstr "Polni konec" -#: libraries/messages.inc.php:347 tbl_change.php:282 tbl_change.php:320 +#: libraries/messages.inc.php:343 tbl_change.php:282 tbl_change.php:320 msgid "Function" msgstr "Funkcija" -#: libraries/messages.inc.php:355 libraries/mysql_charsets.lib.php:377 +#: libraries/messages.inc.php:351 libraries/mysql_charsets.lib.php:377 msgid "Georgian" msgstr "Gruzijsko" -#: libraries/messages.inc.php:356 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:352 libraries/mysql_charsets.lib.php:247 #: libraries/mysql_charsets.lib.php:250 msgid "German" msgstr "Nemško" -#: libraries/messages.inc.php:357 themes.php:42 +#: libraries/messages.inc.php:353 themes.php:42 msgid "Get more themes!" msgstr "Dobi več preoblek!" -#: libraries/messages.inc.php:358 server_privileges.php:2134 +#: libraries/messages.inc.php:354 server_privileges.php:2134 msgid "global" msgstr "globalno" -#: libraries/messages.inc.php:359 server_privileges.php:524 +#: libraries/messages.inc.php:355 server_privileges.php:524 #: server_privileges.php:1500 msgid "Global privileges" msgstr "Globalni privilegiji" -#: libraries/messages.inc.php:360 server_variables.php:55 +#: libraries/messages.inc.php:356 server_variables.php:55 #: server_variables.php:89 msgid "Global value" msgstr "Skupna vrednost" -#: libraries/messages.inc.php:365 server_privileges.php:1502 +#: libraries/messages.inc.php:361 server_privileges.php:1502 #: server_privileges.php:1684 server_privileges.php:2033 msgid "Grant" msgstr "Dovoli" -#: libraries/messages.inc.php:366 libraries/mysql_charsets.lib.php:380 +#: libraries/messages.inc.php:362 libraries/mysql_charsets.lib.php:380 msgid "Greek" msgstr "Grško" -#: libraries/messages.inc.php:367 +#: libraries/messages.inc.php:363 msgid "\"gzipped\"" msgstr "\"gzipano\"" -#: libraries/messages.inc.php:369 server_status.php:250 +#: libraries/messages.inc.php:365 server_status.php:250 msgid "Handler" msgstr "Upravljavec" -#: libraries/messages.inc.php:370 server_synchronize.php:464 +#: libraries/messages.inc.php:366 server_synchronize.php:464 msgid "Selected target tables have been synchronized with source tables." msgstr "Izbrane ciljne tabele so bile sinhronizirane z izvornimi tabelami." -#: libraries/messages.inc.php:372 libraries/mysql_charsets.lib.php:374 +#: libraries/messages.inc.php:368 libraries/mysql_charsets.lib.php:374 msgid "Hebrew" msgstr "Hebrejsko" -#: libraries/messages.inc.php:373 pmd_general.php:83 +#: libraries/messages.inc.php:369 pmd_general.php:83 msgid "Help" msgstr "Pomoč" -#: libraries/messages.inc.php:374 +#: libraries/messages.inc.php:370 msgid "Use hexadecimal for BLOB" msgstr "Uporabi šestnajstiško za BLOB" -#: libraries/messages.inc.php:376 pmd_general.php:120 +#: libraries/messages.inc.php:372 pmd_general.php:120 msgid "Hide/Show all" msgstr "Skrij/Pokaži vse" -#: libraries/messages.inc.php:377 pmd_general.php:124 +#: libraries/messages.inc.php:373 pmd_general.php:124 msgid "Hide/Show Tables with no relation" msgstr "Skrij/Pokaži tabele brez razmerij" -#: libraries/messages.inc.php:378 libraries/navigation_header.inc.php:54 +#: libraries/messages.inc.php:374 libraries/navigation_header.inc.php:54 #: libraries/navigation_header.inc.php:57 #: libraries/navigation_header.inc.php:58 msgid "Home" msgstr "Domov" -#: libraries/messages.inc.php:379 main.php:233 +#: libraries/messages.inc.php:375 main.php:233 msgid "Official Homepage" msgstr "Uradna domača stran phpMyAdmin" -#: libraries/messages.inc.php:382 libraries/replication_gui.lib.php:327 +#: libraries/messages.inc.php:378 libraries/replication_gui.lib.php:327 #: server_privileges.php:753 msgid "" "When Host table is used, this field is ignored and values stored in Host " @@ -3848,98 +3848,98 @@ msgstr "" "Ko je uporabljena tabela Host, je to polje prezrto in so namesto njega " "uporabljene vrednosti shranjene v tabeli Host." -#: libraries/messages.inc.php:383 +#: libraries/messages.inc.php:379 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/messages.inc.php:384 libraries/mysql_charsets.lib.php:253 +#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:253 msgid "Hungarian" msgstr "Madžarsko" -#: libraries/messages.inc.php:386 libraries/mysql_charsets.lib.php:256 +#: libraries/messages.inc.php:382 libraries/mysql_charsets.lib.php:256 msgid "Icelandic" msgstr "Islandsko" -#: libraries/messages.inc.php:387 server_processlist.php:53 +#: libraries/messages.inc.php:383 server_processlist.php:53 msgid "ID" msgstr "ID" -#: libraries/messages.inc.php:388 libraries/mult_submits.inc.php:108 +#: libraries/messages.inc.php:384 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:479 msgid "Fulltext" msgstr "Polno besedilo" -#: libraries/messages.inc.php:389 +#: libraries/messages.inc.php:385 msgid "Ignore duplicate rows" msgstr "Prezri podvojene vrstice" -#: libraries/messages.inc.php:390 tbl_change.php:302 tbl_indexes.php:200 +#: libraries/messages.inc.php:386 tbl_change.php:302 tbl_indexes.php:200 #: tbl_indexes.php:225 msgid "Ignore" msgstr "Prezri" -#: libraries/messages.inc.php:391 +#: libraries/messages.inc.php:387 msgid "Use ignore inserts" msgstr "Uporabi možnost prezri vstavke" -#: libraries/messages.inc.php:392 +#: libraries/messages.inc.php:388 msgid "Column names in first row" msgstr "Imena stolpcev v prvi vrstici" -#: libraries/messages.inc.php:393 +#: libraries/messages.inc.php:389 msgid "Do not import empty rows" msgstr "Ne uvozi praznih vrstic" -#: libraries/messages.inc.php:394 pmd_general.php:104 +#: libraries/messages.inc.php:390 pmd_general.php:104 msgid "Import/Export coordinates for PDF schema" msgstr "Uvozi/Izvozi koordinate za PDF-shemo" -#: libraries/messages.inc.php:395 querywindow.php:104 +#: libraries/messages.inc.php:391 querywindow.php:104 msgid "Import files" msgstr "Uvozi datoteke" -#: libraries/messages.inc.php:403 +#: libraries/messages.inc.php:399 msgid "Import currencies ($5.00 to 5.00)" msgstr "Uvozi denarne enote ($5.00 v 5.00)" -#: libraries/messages.inc.php:404 libraries/messages.inc.php:584 +#: libraries/messages.inc.php:400 libraries/messages.inc.php:580 msgid "Open Document Spreadsheet" msgstr "Preglednica Open Document" -#: libraries/messages.inc.php:405 +#: libraries/messages.inc.php:401 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "Uvozi odstotke kot ustrezne decimalne vrednosti (12.00% v ,12)" -#: libraries/messages.inc.php:409 +#: libraries/messages.inc.php:405 msgid "Excel 97-2003 XLS Workbook" msgstr "Excelov delovni zvezek 97-2003 XLS" -#: libraries/messages.inc.php:410 +#: libraries/messages.inc.php:406 msgid "Excel 2007 XLSX Workbook" msgstr "Excelov delovni zvezek 2007 XLSX" -#: libraries/messages.inc.php:414 libraries/mult_submits.inc.php:98 +#: libraries/messages.inc.php:410 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:476 tbl_structure.php:674 msgid "Index" msgstr "Indeks" -#: libraries/messages.inc.php:415 tbl_indexes.php:168 +#: libraries/messages.inc.php:411 tbl_indexes.php:168 msgid "Index name:" msgstr "Ime indeksa:" -#: libraries/messages.inc.php:416 tbl_indexes.php:174 +#: libraries/messages.inc.php:412 tbl_indexes.php:174 msgid "Index type:" msgstr "Vrsta indeksa:" -#: libraries/messages.inc.php:417 sql.php:639 +#: libraries/messages.inc.php:413 sql.php:639 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Težave z indeksi tabele `%s`" -#: libraries/messages.inc.php:427 main.php:266 +#: libraries/messages.inc.php:423 main.php:266 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -3951,54 +3951,54 @@ msgstr "" "privzetimi nastavitvami, zato je izpostavljen vdorom. Čimprej odpravite to " "varnostno luknjo tako, da uporabniku 'root' nastavite geslo." -#: libraries/messages.inc.php:428 tbl_change.php:1130 +#: libraries/messages.inc.php:424 tbl_change.php:1130 msgid "Insert as new row" msgstr "Vstavi kot novo vrstico" -#: libraries/messages.inc.php:429 sql.php:496 tbl_replace.php:386 +#: libraries/messages.inc.php:425 sql.php:496 tbl_replace.php:386 #, php-format msgid "Inserted row id: %1$d" msgstr "Id vstavljene vrstice: %1$d" -#: libraries/messages.inc.php:430 tbl_change.php:1131 +#: libraries/messages.inc.php:426 tbl_change.php:1131 msgid "Insert as new row and ignore errors" msgstr "Vstavi kot novo vrstico in presliši napake" -#: libraries/messages.inc.php:432 main.php:139 +#: libraries/messages.inc.php:428 main.php:139 msgid "Interface" msgstr "Vmesnik" -#: libraries/messages.inc.php:433 tbl_relation.php:407 +#: libraries/messages.inc.php:429 tbl_relation.php:407 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "Notranja relacija ni nujna, ko obstaja ustrezna relacija FOREIGN KEY." -#: libraries/messages.inc.php:435 pdf_pages.php:303 +#: libraries/messages.inc.php:431 pdf_pages.php:303 msgid "Internal relations" msgstr "Notranja razmerja" -#: libraries/messages.inc.php:438 tbl_indexes.php:256 tbl_structure.php:590 +#: libraries/messages.inc.php:434 tbl_indexes.php:256 tbl_structure.php:590 #: tbl_structure.php:601 msgid "Column count has to be larger than zero." msgstr "Število stolpcev mora biti večje od nič." -#: libraries/messages.inc.php:444 libraries/tbl_properties.inc.php:784 +#: libraries/messages.inc.php:440 libraries/tbl_properties.inc.php:784 #: tbl_structure.php:537 msgid "You have to add at least one field." msgstr "Dodati morate vsaj eno polje." -#: libraries/messages.inc.php:449 +#: libraries/messages.inc.php:445 #, php-format msgid "Invalid server index: \"%s\"" msgstr "Neveljaven indeks strežnika: \"%s\"" -#: libraries/messages.inc.php:452 libraries/mysql_charsets.lib.php:259 +#: libraries/messages.inc.php:448 libraries/mysql_charsets.lib.php:259 #: libraries/mysql_charsets.lib.php:349 msgid "Japanese" msgstr "Japonsko" -#: libraries/messages.inc.php:453 main.php:331 +#: libraries/messages.inc.php:449 main.php:331 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " @@ -4008,109 +4008,109 @@ msgstr "" "nekatere funkcije phpMyAdmina manjkale. Na primer navigacijski okvir se ne " "bo osveževal samodejno." -#: libraries/messages.inc.php:454 server_status.php:257 +#: libraries/messages.inc.php:450 server_status.php:257 msgid "Joins" msgstr "" -#: libraries/messages.inc.php:457 server_privileges.php:763 +#: libraries/messages.inc.php:453 server_privileges.php:763 msgid "Do not change the password" msgstr "Ne spreminjaj gesla" -#: libraries/messages.inc.php:458 server_status.php:256 +#: libraries/messages.inc.php:454 server_status.php:256 msgid "Key cache" msgstr "Predpomnilnik ključev" -#: libraries/messages.inc.php:462 libraries/mysql_charsets.lib.php:268 +#: libraries/messages.inc.php:458 libraries/mysql_charsets.lib.php:268 #: libraries/mysql_charsets.lib.php:371 msgid "Korean" msgstr "Korejsko" -#: libraries/messages.inc.php:466 libraries/select_lang.lib.php:480 +#: libraries/messages.inc.php:462 libraries/select_lang.lib.php:480 #: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492 #, php-format msgid "Unknown language: %1$s." msgstr "Neznani jezik: %1$s." -#: libraries/messages.inc.php:468 +#: libraries/messages.inc.php:464 msgid "Table caption" msgstr "Ime tabele" -#: libraries/messages.inc.php:469 +#: libraries/messages.inc.php:465 msgid "Content of table __TABLE__" msgstr "Vsebina tabele __TABLE__" -#: libraries/messages.inc.php:470 +#: libraries/messages.inc.php:466 msgid "Continued table caption" msgstr "Nadaljevanje imena tabele" -#: libraries/messages.inc.php:471 +#: libraries/messages.inc.php:467 msgid "(continued)" msgstr "(nadaljevanje)" -#: libraries/messages.inc.php:472 +#: libraries/messages.inc.php:468 msgid "Include table caption" msgstr "Vključi ime tabele" -#: libraries/messages.inc.php:473 +#: libraries/messages.inc.php:469 msgid "Label key" msgstr "Označi ključ" -#: libraries/messages.inc.php:474 +#: libraries/messages.inc.php:470 msgid "LaTeX" msgstr "LaTeX" -#: libraries/messages.inc.php:475 +#: libraries/messages.inc.php:471 msgid "Structure of table __TABLE__" msgstr "Struktura tabele __TABLE__" -#: libraries/messages.inc.php:476 libraries/mysql_charsets.lib.php:262 +#: libraries/messages.inc.php:472 libraries/mysql_charsets.lib.php:262 msgid "Latvian" msgstr "Latvijsko" -#: libraries/messages.inc.php:477 +#: libraries/messages.inc.php:473 msgid "CSV using LOAD DATA" msgstr "CSV z uporabo LOAD DATA" -#: libraries/messages.inc.php:478 +#: libraries/messages.inc.php:474 msgid "Use LOCAL keyword" msgstr "Uporabi ključno besedo LOCAL" -#: libraries/messages.inc.php:479 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:475 libraries/tbl_properties.inc.php:105 msgid "Length/Values" msgstr "Dolžina/Vrednosti*" -#: libraries/messages.inc.php:480 tbl_select.php:295 +#: libraries/messages.inc.php:476 tbl_select.php:295 msgid "Number of rows per page" msgstr "Število vrstic na stran" -#: libraries/messages.inc.php:484 libraries/mysql_charsets.lib.php:265 +#: libraries/messages.inc.php:480 libraries/mysql_charsets.lib.php:265 msgid "Lithuanian" msgstr "Litvansko" -#: libraries/messages.inc.php:485 libraries/replication_gui.lib.php:302 +#: libraries/messages.inc.php:481 libraries/replication_gui.lib.php:302 #: server_privileges.php:729 msgid "Local" msgstr "Lokalno" -#: libraries/messages.inc.php:487 server_privileges.php:669 +#: libraries/messages.inc.php:483 server_privileges.php:669 msgid "Login Information" msgstr "Podatki o prijavi" -#: libraries/messages.inc.php:490 libraries/navigation_header.inc.php:67 +#: libraries/messages.inc.php:486 libraries/navigation_header.inc.php:67 #: libraries/navigation_header.inc.php:70 #: libraries/navigation_header.inc.php:71 main.php:99 msgid "Log out" msgstr "Odjava" -#: libraries/messages.inc.php:497 server_status.php:440 +#: libraries/messages.inc.php:493 server_status.php:440 msgid "max. concurrent connections" msgstr "največ sočasnih povezav" -#: libraries/messages.inc.php:498 +#: libraries/messages.inc.php:494 msgid "Maximal length of created query" msgstr "Največja dolžina ustvarjene poizvedbe" -#: libraries/messages.inc.php:500 main.php:282 +#: libraries/messages.inc.php:496 main.php:282 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -4120,7 +4120,7 @@ msgstr "" "nabor znakov. Brez razširitve mbstring phpMyAdmin ni sposoben pravilno " "razcepiti nizov, kar lahko vodi v nepričakovane rezultate." -#: libraries/messages.inc.php:501 main.php:274 +#: libraries/messages.inc.php:497 main.php:274 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -4129,24 +4129,24 @@ msgstr "" "V vaši konfiguraciji PHP ste omogočili mbstring.func_overload. Ta možnost ni " "združljiva s phpMyAdminom in lahko pokvari nekatere podatke!" -#: libraries/messages.inc.php:502 +#: libraries/messages.inc.php:498 msgid "MediaWiki Table" msgstr "Tabela MediaWiki" -#: libraries/messages.inc.php:503 transformation_overview.php:25 +#: libraries/messages.inc.php:499 transformation_overview.php:25 msgid "Available MIME types" msgstr "Razpoložljive vrste MIME" -#: libraries/messages.inc.php:504 transformation_overview.php:43 +#: libraries/messages.inc.php:500 transformation_overview.php:43 msgid "Available transformations" msgstr "Razpoložljive pretvorbe" -#: libraries/messages.inc.php:505 +#: libraries/messages.inc.php:501 msgctxt "$strMIME_description" msgid "Description" msgstr "Opis" -#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:580 +#: libraries/messages.inc.php:503 libraries/tbl_properties.inc.php:580 #: transformation_overview.php:60 #, php-format msgid "" @@ -4156,7 +4156,7 @@ msgstr "" "Za to pretvorbo ni na voljo opisa.
Za funkcije %s se pozanimajte pri " "avtorju." -#: libraries/messages.inc.php:509 libraries/tbl_properties.inc.php:137 +#: libraries/messages.inc.php:505 libraries/tbl_properties.inc.php:137 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -4165,7 +4165,7 @@ msgstr "" "Seznam razpoložljivih možnosti pretvorbe in pretvorbe vrst MIME boste " "videli, če kliknete na %sopise transformacij%s" -#: libraries/messages.inc.php:510 libraries/tbl_properties.inc.php:146 +#: libraries/messages.inc.php:506 libraries/tbl_properties.inc.php:146 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -4177,56 +4177,56 @@ msgstr "" "enojni narekovaj (\"'\"), morate pred ta znak postaviti (še eno) poševnico " "nazaj (npr. '\\\\xyz' ali 'a\\'b')." -#: libraries/messages.inc.php:511 libraries/tbl_properties.inc.php:145 +#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:145 msgid "Transformation options" msgstr "Možnosti pretvorbe" -#: libraries/messages.inc.php:513 transformation_overview.php:38 +#: libraries/messages.inc.php:509 transformation_overview.php:38 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "Vrste MIME, ki so napisane ležeče, nimajo lastne pretvorbene funkcije" -#: libraries/messages.inc.php:515 tbl_indexes.php:162 +#: libraries/messages.inc.php:511 tbl_indexes.php:162 msgid "Modify an index" msgstr "Spremeni indeks" -#: libraries/messages.inc.php:517 pmd_general.php:108 +#: libraries/messages.inc.php:513 pmd_general.php:108 msgid "Move Menu" msgstr "Premakni meni" -#: libraries/messages.inc.php:518 tbl_operations.php:276 +#: libraries/messages.inc.php:514 tbl_operations.php:276 msgid "Move table to (database.table):" msgstr "Premakni tabelo v (podatkovna_zbirka.tabela):" -#: libraries/messages.inc.php:519 tbl_move_copy.php:56 +#: libraries/messages.inc.php:515 tbl_move_copy.php:56 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabela %s je bila premaknjena v %s." -#: libraries/messages.inc.php:520 tbl_move_copy.php:46 +#: libraries/messages.inc.php:516 tbl_move_copy.php:46 msgid "Can't move table to same one!" msgstr "Tabele ni mogoče premakniti same vase!" -#: libraries/messages.inc.php:521 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:517 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 #: libraries/mysql_charsets.lib.php:332 libraries/mysql_charsets.lib.php:354 #: libraries/mysql_charsets.lib.php:365 msgid "multilingual" msgstr "večjezično" -#: libraries/messages.inc.php:534 main.php:193 +#: libraries/messages.inc.php:530 main.php:193 msgid "MySQL charset" msgstr "Kodna tabela MySQL" -#: libraries/messages.inc.php:535 main.php:211 +#: libraries/messages.inc.php:531 main.php:211 msgid "MySQL client version" msgstr "Različica odjemalca MySQL" -#: libraries/messages.inc.php:536 main.php:125 +#: libraries/messages.inc.php:532 main.php:125 msgid "MySQL connection collation" msgstr "Razvrščanje znakov povezave MySQL" -#: libraries/messages.inc.php:537 main.php:346 +#: libraries/messages.inc.php:533 main.php:346 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -4235,54 +4235,54 @@ msgstr "" "Vaša PHP-knjižica MySQL različice %s se razlikuje od vašega strežnika MySQL " "različice %s. To lahko povzroči nepredvidljivo vedenje." -#: libraries/messages.inc.php:539 server_status.php:294 +#: libraries/messages.inc.php:535 server_status.php:294 msgid "Show processes" msgstr "Pokaži procese" -#: libraries/messages.inc.php:545 navigation.php:210 server_databases.php:371 +#: libraries/messages.inc.php:541 navigation.php:210 server_databases.php:371 #: server_synchronize.php:1191 msgid "No databases" msgstr "Brez zbirk podatkov" -#: libraries/messages.inc.php:546 server_databases.php:52 +#: libraries/messages.inc.php:542 server_databases.php:52 msgid "No databases selected." msgstr "Ni izbranih zbirk podatkov." -#: libraries/messages.inc.php:548 libraries/relation.lib.php:1173 +#: libraries/messages.inc.php:544 libraries/relation.lib.php:1173 msgid "no description" msgstr "brez opisa" -#: libraries/messages.inc.php:552 libraries/zip_extension.lib.php:26 +#: libraries/messages.inc.php:548 libraries/zip_extension.lib.php:26 msgid "No files found inside ZIP archive!" msgstr "V arhivu ZIP ni bilo najdenih datotek!" -#: libraries/messages.inc.php:555 tbl_indexes.php:91 +#: libraries/messages.inc.php:551 tbl_indexes.php:91 msgid "No index parts defined!" msgstr "Ni definiranega dela indeksa!" -#: libraries/messages.inc.php:556 libraries/mult_submits.inc.php:435 +#: libraries/messages.inc.php:552 libraries/mult_submits.inc.php:435 #: tbl_replace.php:331 msgid "No change" msgstr "Brez sprememb" -#: libraries/messages.inc.php:557 +#: libraries/messages.inc.php:553 msgctxt "$strNoneDefault" msgid "None" msgstr "Brez" -#: libraries/messages.inc.php:560 libraries/plugin_interface.lib.php:312 +#: libraries/messages.inc.php:556 libraries/plugin_interface.lib.php:312 msgid "This format has no options" msgstr "Za to obliko ni možnosti" -#: libraries/messages.inc.php:565 user_password.php:54 +#: libraries/messages.inc.php:561 user_password.php:54 msgid "You don't have sufficient privileges to be here right now!" msgstr "Nimate dovolj pravic, da bi bili sedaj tukaj!" -#: libraries/messages.inc.php:566 tbl_row_action.php:29 +#: libraries/messages.inc.php:562 tbl_row_action.php:29 msgid "No rows selected" msgstr "Ni izbranih vrstic" -#: libraries/messages.inc.php:569 themes.php:32 +#: libraries/messages.inc.php:565 themes.php:32 #, php-format msgid "" "No themes support; please check your configuration and/or your themes in " @@ -4291,138 +4291,138 @@ msgstr "" "Podprta ni nobena tema; prosimo, preverite vašo konfiguracijo in/ali dodajte " "teme v mapo %s." -#: libraries/messages.inc.php:571 libraries/relation.lib.php:95 +#: libraries/messages.inc.php:567 libraries/relation.lib.php:95 msgid "not OK" msgstr "ni v redu" -#: libraries/messages.inc.php:572 server_synchronize.php:400 +#: libraries/messages.inc.php:568 server_synchronize.php:400 #: server_synchronize.php:839 msgid "not present" msgstr "" -#: libraries/messages.inc.php:573 pdf_pages.php:36 pdf_pages.php:42 +#: libraries/messages.inc.php:569 pdf_pages.php:36 pdf_pages.php:42 #: pdf_pages.php:48 pdf_pages.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "Tabele %s ni mogoče najti ali pa ni v %s" -#: libraries/messages.inc.php:574 server_privileges.php:804 +#: libraries/messages.inc.php:570 server_privileges.php:804 #: server_privileges.php:2166 msgid "No user(s) found." msgstr "Ni mogoče najti uporabnika(-ov)." -#: libraries/messages.inc.php:578 pmd_general.php:164 +#: libraries/messages.inc.php:574 pmd_general.php:164 msgid "Number of tables" msgstr "Število tabel" -#: libraries/messages.inc.php:581 server_databases.php:117 +#: libraries/messages.inc.php:577 server_databases.php:117 #: server_status.php:260 setup/lib/messages.inc.php:117 msgid "Tables" msgstr "Tabele" -#: libraries/messages.inc.php:583 libraries/relation.lib.php:99 +#: libraries/messages.inc.php:579 libraries/relation.lib.php:99 #: pmd_general.php:340 msgid "OK" msgstr "V redu" -#: libraries/messages.inc.php:585 +#: libraries/messages.inc.php:581 msgid "Open Document Text" msgstr "Besedilo Open Document" -#: libraries/messages.inc.php:588 tbl_select.php:138 +#: libraries/messages.inc.php:584 tbl_select.php:138 msgid "Operator" msgstr "Operator" -#: libraries/messages.inc.php:589 tbl_operations.php:662 +#: libraries/messages.inc.php:585 tbl_operations.php:662 msgid "Optimize" msgstr "Optimiraj" -#: libraries/messages.inc.php:602 libraries/tbl_properties.inc.php:755 +#: libraries/messages.inc.php:598 libraries/tbl_properties.inc.php:755 msgid "PARTITION definition" msgstr "Definicija PARTITION" -#: libraries/messages.inc.php:603 tbl_structure.php:757 +#: libraries/messages.inc.php:599 tbl_structure.php:757 msgid "partitioned" msgstr "po particijah" -#: libraries/messages.inc.php:604 tbl_operations.php:649 +#: libraries/messages.inc.php:600 tbl_operations.php:649 msgid "Partition maintenance" msgstr "Vzdrževanje particij" -#: libraries/messages.inc.php:605 tbl_operations.php:657 +#: libraries/messages.inc.php:601 tbl_operations.php:657 #, php-format msgid "Partition %s" msgstr "Particija %s" -#: libraries/messages.inc.php:606 server_privileges.php:1212 +#: libraries/messages.inc.php:602 server_privileges.php:1212 #, php-format msgid "The password for %s was changed successfully." msgstr "Geslo za %s je uspešno spremenjeno." -#: libraries/messages.inc.php:635 +#: libraries/messages.inc.php:631 #, php-format msgid "Schema of the \"%s\" database - Page %s" msgstr "Shema podatkovne zbirke \"%s\" - Stran %s" -#: libraries/messages.inc.php:636 +#: libraries/messages.inc.php:632 #, php-format msgid "The \"%s\" table doesn't exist!" msgstr "Tabela \"%s\" ne obstaja!" -#: libraries/messages.inc.php:637 pdf_schema.php:1013 +#: libraries/messages.inc.php:633 pdf_schema.php:1013 msgid "No tables" msgstr "Ni tabel" -#: libraries/messages.inc.php:638 pmd_pdf.php:63 +#: libraries/messages.inc.php:634 pmd_pdf.php:63 msgid "Page has been created" msgstr "Stran je bila ustvarjena" -#: libraries/messages.inc.php:639 pmd_pdf.php:65 +#: libraries/messages.inc.php:635 pmd_pdf.php:65 msgid "Page creation failed" msgstr "Ustvarjanje strani je spodletelo" -#: libraries/messages.inc.php:640 +#: libraries/messages.inc.php:636 msgid "PDF" msgstr "PDF" -#: libraries/messages.inc.php:641 +#: libraries/messages.inc.php:637 msgid "(Generates a report containing the data of a single table)" msgstr "(Ustvari poročilo, ki vsebuje podatke tabele same)" -#: libraries/messages.inc.php:642 +#: libraries/messages.inc.php:638 msgid "Report title" msgstr "Naslov poročila" -#: libraries/messages.inc.php:643 server_status.php:389 server_status.php:434 +#: libraries/messages.inc.php:639 server_status.php:389 server_status.php:434 #: server_status.php:497 server_status.php:555 msgid "per hour" msgstr "na uro" -#: libraries/messages.inc.php:644 server_status.php:498 +#: libraries/messages.inc.php:640 server_status.php:498 msgid "per minute" msgstr "na minuto" -#: libraries/messages.inc.php:645 server_status.php:499 +#: libraries/messages.inc.php:641 server_status.php:499 msgid "per second" msgstr "na sekundo" -#: libraries/messages.inc.php:646 libraries/mysql_charsets.lib.php:271 +#: libraries/messages.inc.php:642 libraries/mysql_charsets.lib.php:271 msgid "Persian" msgstr "Perzijsko" -#: libraries/messages.inc.php:647 libraries/mysql_charsets.lib.php:250 +#: libraries/messages.inc.php:643 libraries/mysql_charsets.lib.php:250 msgid "phone book" msgstr "telefonski imenik" -#: libraries/messages.inc.php:648 +#: libraries/messages.inc.php:644 msgid "PHP array" msgstr "PHP-polje" -#: libraries/messages.inc.php:650 main.php:213 +#: libraries/messages.inc.php:646 main.php:213 msgid "PHP extension" msgstr "Razširitev PHP" -#: libraries/messages.inc.php:654 libraries/relation.lib.php:163 +#: libraries/messages.inc.php:650 libraries/relation.lib.php:163 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." @@ -4430,155 +4430,155 @@ msgstr "" "Omogočite napredne funkcije v konfiguracijski datoteki (config.inc." "php), za primer začnite z config.sample.inc.php." -#: libraries/messages.inc.php:655 libraries/relation.lib.php:159 +#: libraries/messages.inc.php:651 libraries/relation.lib.php:159 msgid "Quick steps to setup advanced features:" msgstr "Hitri koraki za namestitev naprednih funkcij:" -#: libraries/messages.inc.php:656 libraries/relation.lib.php:161 +#: libraries/messages.inc.php:652 libraries/relation.lib.php:161 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "Ustvari potrebne tabele s script/create_tables.sql." -#: libraries/messages.inc.php:657 libraries/relation.lib.php:162 +#: libraries/messages.inc.php:653 libraries/relation.lib.php:162 msgid "Create a pma user and give access to these tables." msgstr "Ustvari uporabnika pma in dovoli dostop do teh tabel." -#: libraries/messages.inc.php:658 libraries/relation.lib.php:164 +#: libraries/messages.inc.php:654 libraries/relation.lib.php:164 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" "Ponovno se prijavite v phpMyAdmin, da naložite posodobljeno konfiguracijsko " "datoteko." -#: libraries/messages.inc.php:661 libraries/mysql_charsets.lib.php:274 +#: libraries/messages.inc.php:657 libraries/mysql_charsets.lib.php:274 msgid "Polish" msgstr "Poljsko" -#: libraries/messages.inc.php:662 libraries/replication_gui.lib.php:67 +#: libraries/messages.inc.php:658 libraries/replication_gui.lib.php:67 #: server_synchronize.php:1163 msgid "Port" msgstr "Vrata" -#: libraries/messages.inc.php:667 tbl_indexes.php:67 +#: libraries/messages.inc.php:663 tbl_indexes.php:67 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Ime primarnega ključa mora biti \"PRIMARY\"!" -#: libraries/messages.inc.php:668 tbl_indexes.php:184 +#: libraries/messages.inc.php:664 tbl_indexes.php:184 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "(\"PRIMARY\" mora biti ime samo primarnega ključa!)" -#: libraries/messages.inc.php:669 libraries/mult_submits.inc.php:76 +#: libraries/messages.inc.php:665 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:474 msgid "Primary" msgstr "Primarni" -#: libraries/messages.inc.php:673 server_privileges.php:227 +#: libraries/messages.inc.php:669 server_privileges.php:227 msgid "Includes all privileges except GRANT." msgstr "Vsebuje vse privilegije razen GRANT." -#: libraries/messages.inc.php:674 server_privileges.php:153 +#: libraries/messages.inc.php:670 server_privileges.php:153 #: server_privileges.php:476 msgid "Allows altering the structure of existing tables." msgstr "Omogoča spreminjanje strukture obstoječih tabel." -#: libraries/messages.inc.php:675 server_privileges.php:169 +#: libraries/messages.inc.php:671 server_privileges.php:169 #: server_privileges.php:482 msgid "Allows altering and dropping stored routines." msgstr "Omogoča ustvarjanje in brisanje shranjenih rutin." -#: libraries/messages.inc.php:676 server_privileges.php:145 +#: libraries/messages.inc.php:672 server_privileges.php:145 #: server_privileges.php:475 msgid "Allows creating new databases and tables." msgstr "Omogoča ustvarjanje novih podatkovnih zbirk in tabel." -#: libraries/messages.inc.php:677 server_privileges.php:168 +#: libraries/messages.inc.php:673 server_privileges.php:168 #: server_privileges.php:481 msgid "Allows creating stored routines." msgstr "Omogoča ustvarjanje shranjenih rutin." -#: libraries/messages.inc.php:678 server_privileges.php:475 +#: libraries/messages.inc.php:674 server_privileges.php:475 msgid "Allows creating new tables." msgstr "Omogoča ustvarjanje novih tabel." -#: libraries/messages.inc.php:679 server_privileges.php:156 +#: libraries/messages.inc.php:675 server_privileges.php:156 #: server_privileges.php:479 msgid "Allows creating temporary tables." msgstr "Omogoča ustvarjanje začasnih tabel." -#: libraries/messages.inc.php:680 server_privileges.php:170 +#: libraries/messages.inc.php:676 server_privileges.php:170 #: server_privileges.php:515 msgid "Allows creating, dropping and renaming user accounts." msgstr "Omogoča ustvarjanje, brisanje in preimenovanje uporabniških računov." -#: libraries/messages.inc.php:681 server_privileges.php:160 +#: libraries/messages.inc.php:677 server_privileges.php:160 #: server_privileges.php:164 server_privileges.php:487 #: server_privileges.php:491 msgid "Allows creating new views." msgstr "Omogoča ustvarjanje novih pogledov." -#: libraries/messages.inc.php:682 server_privileges.php:144 +#: libraries/messages.inc.php:678 server_privileges.php:144 #: server_privileges.php:467 msgid "Allows deleting data." msgstr "Omogoča brisanje podatkov." -#: libraries/messages.inc.php:683 server_privileges.php:146 +#: libraries/messages.inc.php:679 server_privileges.php:146 #: server_privileges.php:478 msgid "Allows dropping databases and tables." msgstr "Omogoča brisanje podatkovnih zbirk in tabel." -#: libraries/messages.inc.php:684 server_privileges.php:478 +#: libraries/messages.inc.php:680 server_privileges.php:478 msgid "Allows dropping tables." msgstr "Omogoča brisanje tabel." -#: libraries/messages.inc.php:685 server_privileges.php:161 +#: libraries/messages.inc.php:681 server_privileges.php:161 #: server_privileges.php:495 msgid "Allows to set up events for the event scheduler" msgstr "Omogoča določanje dogodkov za načrtovalnik dogodkov" -#: libraries/messages.inc.php:686 server_privileges.php:171 +#: libraries/messages.inc.php:682 server_privileges.php:171 #: server_privileges.php:483 msgid "Allows executing stored routines." msgstr "Omogoča izvajanje shranjenih rutin." -#: libraries/messages.inc.php:687 server_privileges.php:150 +#: libraries/messages.inc.php:683 server_privileges.php:150 #: server_privileges.php:470 msgid "Allows importing data from and exporting data into files." msgstr "Omogoča uvažanje in izvažanje podatkov v datoteke." -#: libraries/messages.inc.php:688 server_privileges.php:501 +#: libraries/messages.inc.php:684 server_privileges.php:501 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Omogoča dodajanje uporabnikov in privilegijev brez osveževanja privilegijev." -#: libraries/messages.inc.php:689 server_privileges.php:152 +#: libraries/messages.inc.php:685 server_privileges.php:152 #: server_privileges.php:477 msgid "Allows creating and dropping indexes." msgstr "Omogoča ustvarjanje in brisanje indeksov." -#: libraries/messages.inc.php:690 server_privileges.php:142 +#: libraries/messages.inc.php:686 server_privileges.php:142 #: server_privileges.php:403 server_privileges.php:465 msgid "Allows inserting and replacing data." msgstr "Omogoča vstavljanje in zamenjavo podatkov." -#: libraries/messages.inc.php:691 server_privileges.php:157 +#: libraries/messages.inc.php:687 server_privileges.php:157 #: server_privileges.php:510 msgid "Allows locking tables for the current thread." msgstr "Omogoča zaklepanje tabel za trenutno temo." -#: libraries/messages.inc.php:692 server_privileges.php:607 +#: libraries/messages.inc.php:688 server_privileges.php:607 #: server_privileges.php:609 msgid "Limits the number of new connections the user may open per hour." msgstr "Omeji število povezav, ki jih uporabnik lahko odpre v eni uri." -#: libraries/messages.inc.php:693 server_privileges.php:595 +#: libraries/messages.inc.php:689 server_privileges.php:595 #: server_privileges.php:597 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Omeji število poizved, ki jih uporabnik lahko pošlje strežniku v eni uri." -#: libraries/messages.inc.php:694 server_privileges.php:601 +#: libraries/messages.inc.php:690 server_privileges.php:601 #: server_privileges.php:603 msgid "" "Limits the number of commands that change any table or database the user may " @@ -4587,61 +4587,61 @@ msgstr "" "Omeji število ukazov za spremembo tabel ali podatkovne zbirke, ki jih " "uporabnik lahko izvrši v eni uri." -#: libraries/messages.inc.php:695 server_privileges.php:613 +#: libraries/messages.inc.php:691 server_privileges.php:613 #: server_privileges.php:615 msgid "Limits the number of simultaneous connections the user may have." msgstr "Omeji število sočasnih povezav, ki jih lahko ima uporabnik." -#: libraries/messages.inc.php:696 server_privileges.php:149 +#: libraries/messages.inc.php:692 server_privileges.php:149 #: server_privileges.php:505 msgid "Allows viewing processes of all users" msgstr "Omogoča ogled procesov vseh uporabnikov" -#: libraries/messages.inc.php:697 server_privileges.php:151 +#: libraries/messages.inc.php:693 server_privileges.php:151 #: server_privileges.php:409 server_privileges.php:511 msgid "Has no effect in this MySQL version." msgstr "V tej različici MySQL nima pomena." -#: libraries/messages.inc.php:698 server_privileges.php:147 +#: libraries/messages.inc.php:694 server_privileges.php:147 #: server_privileges.php:506 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Omogoča osveževanje strežnikovih nastavitev in praznjenje strežnikovih " "predpomnilnikov." -#: libraries/messages.inc.php:699 server_privileges.php:159 +#: libraries/messages.inc.php:695 server_privileges.php:159 #: server_privileges.php:513 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Da uporabniku pravico poizvedovati kje so njegovi nadrejeni / podrjeni " "strežniki." -#: libraries/messages.inc.php:700 server_privileges.php:158 +#: libraries/messages.inc.php:696 server_privileges.php:158 #: server_privileges.php:514 msgid "Needed for the replication slaves." msgstr "Potrebno za podrejene strežnike pri replikaciji." -#: libraries/messages.inc.php:701 server_privileges.php:141 +#: libraries/messages.inc.php:697 server_privileges.php:141 #: server_privileges.php:400 server_privileges.php:464 msgid "Allows reading data." msgstr "Omogoča branje podatkov." -#: libraries/messages.inc.php:702 server_privileges.php:154 +#: libraries/messages.inc.php:698 server_privileges.php:154 #: server_privileges.php:508 msgid "Gives access to the complete list of databases." msgstr "Omogoča dostop do popolnega spiska podatkovnih zbirk." -#: libraries/messages.inc.php:703 server_privileges.php:165 +#: libraries/messages.inc.php:699 server_privileges.php:165 #: server_privileges.php:167 server_privileges.php:480 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Omogoča izvajanje poizvedb SHOW CREATE VIEW." -#: libraries/messages.inc.php:704 server_privileges.php:148 +#: libraries/messages.inc.php:700 server_privileges.php:148 #: server_privileges.php:507 msgid "Allows shutting down the server." msgstr "Omogoča ugašanje strežnika." -#: libraries/messages.inc.php:705 server_privileges.php:155 +#: libraries/messages.inc.php:701 server_privileges.php:155 #: server_privileges.php:504 msgid "" "Allows connecting, even if maximum number of connections is reached; " @@ -4652,55 +4652,55 @@ msgstr "" "priklopov; Potrebno za večino administrativnih nalog kot sta postavljanje " "globalnih spremenljivk in ukinjanje procesov drugih uporabnikov." -#: libraries/messages.inc.php:706 server_privileges.php:162 +#: libraries/messages.inc.php:702 server_privileges.php:162 #: server_privileges.php:496 msgid "Allows creating and dropping triggers" msgstr "Omogoča ustvarjanje in brisanje sprožilcev" -#: libraries/messages.inc.php:707 server_privileges.php:143 +#: libraries/messages.inc.php:703 server_privileges.php:143 #: server_privileges.php:406 server_privileges.php:466 msgid "Allows changing data." msgstr "Omogoča spreminjanje podatkov." -#: libraries/messages.inc.php:708 server_privileges.php:221 +#: libraries/messages.inc.php:704 server_privileges.php:221 msgid "No privileges." msgstr "Brez privilegijev." -#: libraries/messages.inc.php:710 server_privileges.php:1296 +#: libraries/messages.inc.php:706 server_privileges.php:1296 msgid "The privileges were reloaded successfully." msgstr "Uspešno sem osvežil privilegije." -#: libraries/messages.inc.php:712 libraries/server_links.inc.php:80 +#: libraries/messages.inc.php:708 libraries/server_links.inc.php:80 msgid "Processes" msgstr "Procesi" -#: libraries/messages.inc.php:714 main.php:187 +#: libraries/messages.inc.php:710 main.php:187 msgid "Protocol version" msgstr "Različica protokola" -#: libraries/messages.inc.php:715 +#: libraries/messages.inc.php:711 msgid "Put fields names in the first row" msgstr "Postavi imena polj v prvo vrstico" -#: libraries/messages.inc.php:720 server_synchronize.php:1003 +#: libraries/messages.inc.php:716 server_synchronize.php:1003 msgid "The following queries have been executed:" msgstr "Izvedene so bile naslednje poizvedbe:" -#: libraries/messages.inc.php:721 server_status.php:251 +#: libraries/messages.inc.php:717 server_status.php:251 msgid "Query cache" msgstr "Predpomnilnik poizvedb" -#: libraries/messages.inc.php:722 libraries/navigation_header.inc.php:80 +#: libraries/messages.inc.php:718 libraries/navigation_header.inc.php:80 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 setup/lib/messages.inc.php:122 msgid "Query window" msgstr "Okno za poizvedbe" -#: libraries/messages.inc.php:725 querywindow.php:109 querywindow.php:217 +#: libraries/messages.inc.php:721 querywindow.php:109 querywindow.php:217 msgid "SQL history" msgstr "Zgodovina SQL" -#: libraries/messages.inc.php:726 server_status.php:490 +#: libraries/messages.inc.php:722 server_status.php:490 #, php-format msgid "" "Query statistics: Since its startup, %s queries have been sent to the " @@ -4709,93 +4709,93 @@ msgstr "" "Statistika poizvedbe: Od zagona je bilo strežniku poslanih %s " "poizvedb." -#: libraries/messages.inc.php:728 server_status.php:554 +#: libraries/messages.inc.php:724 server_status.php:554 msgid "Query type" msgstr "Vrsta poizvedbe" -#: libraries/messages.inc.php:729 libraries/sql_query_form.lib.php:381 +#: libraries/messages.inc.php:725 libraries/sql_query_form.lib.php:381 msgid "Do not overwrite this query from outside the window" msgstr "Ne prepiši te poizvedbe od zunaj" -#: libraries/messages.inc.php:732 tbl_operations.php:663 +#: libraries/messages.inc.php:728 tbl_operations.php:663 msgid "Rebuild" msgstr "Ponovno sestavi" -#: libraries/messages.inc.php:733 server_status.php:394 +#: libraries/messages.inc.php:729 server_status.php:394 msgid "Received" msgstr "Prejeto" -#: libraries/messages.inc.php:734 pmd_pdf.php:89 +#: libraries/messages.inc.php:730 pmd_pdf.php:89 msgid "recommended" msgstr "priporočeno" -#: libraries/messages.inc.php:736 tbl_operations.php:702 +#: libraries/messages.inc.php:732 tbl_operations.php:702 msgid "Check referential integrity:" msgstr "Preveri referenčno integriteto:" -#: libraries/messages.inc.php:740 pdf_schema.php:1032 pdf_schema.php:1141 +#: libraries/messages.inc.php:736 pdf_schema.php:1032 pdf_schema.php:1141 msgid "Relational schema" msgstr "Relacijska shema" -#: libraries/messages.inc.php:744 tbl_relation.php:399 +#: libraries/messages.inc.php:740 tbl_relation.php:399 msgid "Relations" msgstr "Relacije" -#: libraries/messages.inc.php:745 tbl_structure.php:507 tbl_structure.php:509 +#: libraries/messages.inc.php:741 tbl_structure.php:507 tbl_structure.php:509 msgid "Relation view" msgstr "Pogled relacij" -#: libraries/messages.inc.php:746 server_privileges.php:1246 +#: libraries/messages.inc.php:742 server_privileges.php:1246 msgid "Reloading the privileges" msgstr "Osvežujem privilegije" -#: libraries/messages.inc.php:747 navigation.php:66 navigation.php:67 +#: libraries/messages.inc.php:743 navigation.php:66 navigation.php:67 #: navigation.php:70 msgid "Reload navigation frame" msgstr "Osveži okvir navigacije" -#: libraries/messages.inc.php:748 pmd_general.php:80 +#: libraries/messages.inc.php:744 pmd_general.php:80 msgid "Reload" msgstr "Osveži" -#: libraries/messages.inc.php:749 libraries/server_synchronize.lib.php:1345 +#: libraries/messages.inc.php:745 libraries/server_synchronize.lib.php:1345 #: libraries/server_synchronize.lib.php:1371 msgid "Remote server" msgstr "Oddaljeni strežnik" -#: libraries/messages.inc.php:750 +#: libraries/messages.inc.php:746 msgid "Remove CRLF characters within fields" msgstr "Odstrani znake CRLF znotraj polj" -#: libraries/messages.inc.php:751 tbl_operations.php:676 +#: libraries/messages.inc.php:747 tbl_operations.php:676 msgid "Remove partitioning" msgstr "Odstrani particioniranje" -#: libraries/messages.inc.php:752 server_privileges.php:1575 +#: libraries/messages.inc.php:748 server_privileges.php:1575 msgid "Remove selected users" msgstr "Izbriši izbrane uporabnike" -#: libraries/messages.inc.php:755 tbl_operations.php:338 +#: libraries/messages.inc.php:751 tbl_operations.php:338 msgid "Rename table to" msgstr "Preimenuj tabelo v" -#: libraries/messages.inc.php:756 view_operations.php:93 +#: libraries/messages.inc.php:752 view_operations.php:93 msgid "Rename view to" msgstr "Preimenuj pogled v" -#: libraries/messages.inc.php:757 tbl_operations.php:664 +#: libraries/messages.inc.php:753 tbl_operations.php:664 msgid "Repair" msgstr "Popravi" -#: libraries/messages.inc.php:759 +#: libraries/messages.inc.php:755 msgid "Replace NULL by" msgstr "Zamenjaj NULL z" -#: libraries/messages.inc.php:760 +#: libraries/messages.inc.php:756 msgid "Replace table data with file" msgstr "Podatke v tabeli zamenjaj z datoteko" -#: libraries/messages.inc.php:761 server_replication.php:228 +#: libraries/messages.inc.php:757 server_replication.php:228 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -4803,43 +4803,43 @@ msgstr "" "Sedaj dodajte naslednje vrstice na konec razdelka [mysqld] v vašem my.cnf in " "nato, prosimo, ponovno zaženite strežnik MySQL." -#: libraries/messages.inc.php:762 libraries/replication_gui.lib.php:236 +#: libraries/messages.inc.php:758 libraries/replication_gui.lib.php:236 #: server_replication.php:194 msgid "Add slave replication user" msgstr "" -#: libraries/messages.inc.php:763 server_replication.php:74 +#: libraries/messages.inc.php:759 server_replication.php:74 #, php-format msgid "Master server changed succesfully to %s" msgstr "" -#: libraries/messages.inc.php:764 server_replication.php:182 +#: libraries/messages.inc.php:760 server_replication.php:182 msgid "This server is configured as master in a replication process." msgstr "" -#: libraries/messages.inc.php:765 server_replication.php:322 +#: libraries/messages.inc.php:761 server_replication.php:322 msgid "Control slave:" msgstr "" -#: libraries/messages.inc.php:766 server_replication.php:65 +#: libraries/messages.inc.php:762 server_replication.php:65 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: libraries/messages.inc.php:767 server_replication.php:58 +#: libraries/messages.inc.php:763 server_replication.php:58 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: libraries/messages.inc.php:768 server_replication.php:221 +#: libraries/messages.inc.php:764 server_replication.php:221 msgid "Replicate all databases; Ignore:" msgstr "" -#: libraries/messages.inc.php:769 server_replication.php:222 +#: libraries/messages.inc.php:765 server_replication.php:222 msgid "Ignore all databases; Replicate:" msgstr "" -#: libraries/messages.inc.php:770 server_replication.php:218 +#: libraries/messages.inc.php:766 server_replication.php:218 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -4848,120 +4848,120 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: libraries/messages.inc.php:771 server_replication.php:217 +#: libraries/messages.inc.php:767 server_replication.php:217 msgid "Master configuration" msgstr "" -#: libraries/messages.inc.php:772 server_replication.php:181 +#: libraries/messages.inc.php:768 server_replication.php:181 #: server_replication.php:209 msgid "Master replication" msgstr "" -#: libraries/messages.inc.php:774 server_replication.php:230 +#: libraries/messages.inc.php:770 server_replication.php:230 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: libraries/messages.inc.php:775 server_replication.php:225 +#: libraries/messages.inc.php:771 server_replication.php:225 msgid "Please select databases:" msgstr "Prosimo, izberite zbirke podatkov:" -#: libraries/messages.inc.php:776 server_replication.php:210 +#: libraries/messages.inc.php:772 server_replication.php:210 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:188 +#: libraries/messages.inc.php:773 libraries/replication_gui.lib.php:188 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/messages.inc.php:778 server_replication.php:187 +#: libraries/messages.inc.php:774 server_replication.php:187 msgid "Show connected slaves" msgstr "" -#: libraries/messages.inc.php:779 libraries/messages.inc.php:885 +#: libraries/messages.inc.php:775 libraries/messages.inc.php:881 #: server_replication.php:184 server_status.php:281 msgid "Show master status" msgstr "" -#: libraries/messages.inc.php:780 server_replication.php:334 +#: libraries/messages.inc.php:776 server_replication.php:334 msgid "Skipping error(s) might lead into unsynchronized master and slave!" msgstr "" -#: libraries/messages.inc.php:781 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:51 #: server_replication.php:347 msgid "Change or reconfigure master server" msgstr "" -#: libraries/messages.inc.php:782 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:778 libraries/replication_gui.lib.php:51 msgid "Slave configuration" msgstr "" -#: libraries/messages.inc.php:783 server_replication.php:305 +#: libraries/messages.inc.php:779 server_replication.php:305 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: libraries/messages.inc.php:784 server_replication.php:332 +#: libraries/messages.inc.php:780 server_replication.php:332 msgid "Error management:" msgstr "" -#: libraries/messages.inc.php:785 server_replication.php:328 +#: libraries/messages.inc.php:781 server_replication.php:328 #, php-format msgid "IO Thread %s only" msgstr "" -#: libraries/messages.inc.php:786 server_replication.php:296 +#: libraries/messages.inc.php:782 server_replication.php:296 msgid "Slave IO Thread not running!" msgstr "" -#: libraries/messages.inc.php:787 server_replication.php:355 +#: libraries/messages.inc.php:783 server_replication.php:355 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/messages.inc.php:788 server_replication.php:326 +#: libraries/messages.inc.php:784 server_replication.php:326 msgid "Reset slave" msgstr "" -#: libraries/messages.inc.php:789 server_replication.php:308 +#: libraries/messages.inc.php:785 server_replication.php:308 msgid "See slave status table" msgstr "" -#: libraries/messages.inc.php:790 server_replication.php:336 +#: libraries/messages.inc.php:786 server_replication.php:336 msgid "Skip current error" msgstr "Preskoči trenutno napako" -#: libraries/messages.inc.php:791 server_replication.php:340 +#: libraries/messages.inc.php:787 server_replication.php:340 msgid "errors." msgstr "napak." -#: libraries/messages.inc.php:792 server_replication.php:337 +#: libraries/messages.inc.php:788 server_replication.php:337 msgid "Skip next" msgstr "Preskoči naslednjo" -#: libraries/messages.inc.php:793 server_replication.php:248 +#: libraries/messages.inc.php:789 server_replication.php:248 msgid "Slave replication" msgstr "" -#: libraries/messages.inc.php:794 server_replication.php:293 +#: libraries/messages.inc.php:790 server_replication.php:293 msgid "Slave SQL Thread not running!" msgstr "" -#: libraries/messages.inc.php:795 server_replication.php:327 +#: libraries/messages.inc.php:791 server_replication.php:327 #, php-format msgid "SQL Thread %s only" msgstr "" -#: libraries/messages.inc.php:796 +#: libraries/messages.inc.php:792 #, php-format msgid "" "This MySQL server works as %s in replication process. For further " @@ -4969,159 +4969,159 @@ msgid "" "\"#replication\">replication section." msgstr "" -#: libraries/messages.inc.php:797 +#: libraries/messages.inc.php:793 msgid "Master status" msgstr "" -#: libraries/messages.inc.php:798 server_status.php:721 +#: libraries/messages.inc.php:794 server_status.php:721 msgid "Replication status" msgstr "" -#: libraries/messages.inc.php:799 +#: libraries/messages.inc.php:795 msgid "Slave status" msgstr "" -#: libraries/messages.inc.php:800 server_replication.php:311 +#: libraries/messages.inc.php:796 server_replication.php:311 msgid "Synchronize databases with master" msgstr "" -#: libraries/messages.inc.php:801 server_replication.php:71 +#: libraries/messages.inc.php:797 server_replication.php:71 msgid "Unable to change master" msgstr "" -#: libraries/messages.inc.php:802 server_replication.php:51 +#: libraries/messages.inc.php:798 server_replication.php:51 msgid "Unknown error" msgstr "" -#: libraries/messages.inc.php:803 main.php:163 pdf_pages.php:344 +#: libraries/messages.inc.php:799 main.php:163 pdf_pages.php:344 #: setup/lib/FormDisplay.tpl.php:216 tbl_change.php:1175 msgid "Reset" msgstr "Ponastavi" -#: libraries/messages.inc.php:804 server_privileges.php:591 +#: libraries/messages.inc.php:800 server_privileges.php:591 msgid "Resource limits" msgstr "Omejitve virov" -#: libraries/messages.inc.php:805 tbl_change.php:1209 +#: libraries/messages.inc.php:801 tbl_change.php:1209 #, php-format msgid "Restart insertion with %s rows" msgstr "Ponovno začni vstavljanje z %s vrsticami" -#: libraries/messages.inc.php:807 server_privileges.php:1578 +#: libraries/messages.inc.php:803 server_privileges.php:1578 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Odvzemi uporabnikom aktivne privilegije in jih potem izbriši." -#: libraries/messages.inc.php:808 server_privileges.php:1176 +#: libraries/messages.inc.php:804 server_privileges.php:1176 #, php-format msgid "You have revoked the privileges for %s" msgstr "Odvzeli ste privilegije za %s" -#: libraries/messages.inc.php:809 server_privileges.php:1333 +#: libraries/messages.inc.php:805 server_privileges.php:1333 msgid "Revoke" msgstr "Odvzemi" -#: libraries/messages.inc.php:810 libraries/mysql_charsets.lib.php:280 +#: libraries/messages.inc.php:806 libraries/mysql_charsets.lib.php:280 msgid "Romanian" msgstr "Romunsko" -#: libraries/messages.inc.php:813 tbl_printview.php:404 tbl_structure.php:786 +#: libraries/messages.inc.php:809 tbl_printview.php:404 tbl_structure.php:786 msgid "Row length" msgstr "Dolžina vrstice" -#: libraries/messages.inc.php:815 tbl_printview.php:414 tbl_structure.php:794 +#: libraries/messages.inc.php:811 tbl_printview.php:414 tbl_structure.php:794 msgid " Row size " msgstr " Velikost vrstice " -#: libraries/messages.inc.php:821 tbl_printview.php:366 tbl_structure.php:726 +#: libraries/messages.inc.php:817 tbl_printview.php:366 tbl_structure.php:726 msgid "Row Statistics" msgstr "Statistika vrstic" -#: libraries/messages.inc.php:822 +#: libraries/messages.inc.php:818 #, php-format msgid "running on %s" msgstr "teče na %s" -#: libraries/messages.inc.php:824 libraries/sql_query_form.lib.php:223 +#: libraries/messages.inc.php:820 libraries/sql_query_form.lib.php:223 #, php-format msgid "Run SQL query/queries on server %s" msgstr "Izvedi poizvedbo/poizvedbe SQL na strežniku %s" -#: libraries/messages.inc.php:825 libraries/sql_query_form.lib.php:240 +#: libraries/messages.inc.php:821 libraries/sql_query_form.lib.php:240 #: libraries/sql_query_form.lib.php:265 #, php-format msgid "Run SQL query/queries on database %s" msgstr "Izvedi poizvedbo/poizvedbe SQL na podatkovni zbirki %s" -#: libraries/messages.inc.php:826 libraries/mysql_charsets.lib.php:337 +#: libraries/messages.inc.php:822 libraries/mysql_charsets.lib.php:337 msgid "Russian" msgstr "Rusko" -#: libraries/messages.inc.php:829 pmd_general.php:68 +#: libraries/messages.inc.php:825 pmd_general.php:68 msgid "Save position" msgstr "Shrani položaj" -#: libraries/messages.inc.php:830 libraries/tbl_properties.inc.php:776 +#: libraries/messages.inc.php:826 libraries/tbl_properties.inc.php:776 #: pdf_pages.php:484 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:214 setup/lib/FormDisplay.tpl.php:215 #: tbl_change.php:1126 tbl_indexes.php:248 tbl_relation.php:566 msgid "Save" msgstr "Shrani" -#: libraries/messages.inc.php:831 +#: libraries/messages.inc.php:827 msgid "The scale factor is too small to fit the schema on one page" msgstr "Faktor povečava je premajhen, da bi spravili shemo na eno stran" -#: libraries/messages.inc.php:843 main.php:298 +#: libraries/messages.inc.php:839 main.php:298 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "Konfiguracijski datoteki morate sedaj določiti skrivno geslo " "(blowfish_secret)." -#: libraries/messages.inc.php:844 navigation.php:353 navigation.php:516 +#: libraries/messages.inc.php:840 navigation.php:353 navigation.php:516 msgid "Please select a database" msgstr "Prosimo, izberite zbirko podatkov" -#: libraries/messages.inc.php:846 server_binlog.php:120 +#: libraries/messages.inc.php:842 server_binlog.php:120 msgid "Select binary log to view" msgstr "Izberite dvojiški dnevnik za pregled" -#: libraries/messages.inc.php:847 tbl_select.php:270 +#: libraries/messages.inc.php:843 tbl_select.php:270 msgid "Select fields (at least one):" msgstr "Izberite polja (vsaj eno):" -#: libraries/messages.inc.php:851 pdf_pages.php:320 +#: libraries/messages.inc.php:847 pdf_pages.php:320 msgid "Select Tables" msgstr "Izberi tabele" -#: libraries/messages.inc.php:853 server_status.php:404 +#: libraries/messages.inc.php:849 server_status.php:404 msgid "Sent" msgstr "Poslano" -#: libraries/messages.inc.php:857 libraries/select_server.lib.php:45 +#: libraries/messages.inc.php:853 libraries/select_server.lib.php:45 #: setup/frames/index.inc.php:97 setup/lib/messages.inc.php:115 msgid "Servers" msgstr "Strežniki" -#: libraries/messages.inc.php:858 server_status.php:255 +#: libraries/messages.inc.php:854 server_status.php:255 msgid "Delayed inserts" msgstr "Zakasnjena vstavljanja" -#: libraries/messages.inc.php:859 server_status.php:46 +#: libraries/messages.inc.php:855 server_status.php:46 msgid "Runtime Information" msgstr "Podatki o izvajanju" -#: libraries/messages.inc.php:860 server_status.php:350 +#: libraries/messages.inc.php:856 server_status.php:350 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Strežnik MySQL deluje že %s. Zagnal se je %s." -#: libraries/messages.inc.php:861 libraries/server_links.inc.php:53 +#: libraries/messages.inc.php:857 libraries/server_links.inc.php:53 #: server_engines.php:112 server_engines.php:116 server_status.php:304 #: test/theme.php:105 msgid "Variables" msgstr "Spremenljivke" -#: libraries/messages.inc.php:862 server_status.php:383 +#: libraries/messages.inc.php:858 server_status.php:383 msgid "" "Server traffic: These tables show the network traffic statistics of " "this MySQL server since its startup." @@ -5129,11 +5129,11 @@ msgstr "" "Promet na strežniku: V teh tabelah je prikazana statistika " "obremenitve omrežja za ta strežnik MySQL, odkar je bil zagnan." -#: libraries/messages.inc.php:863 server_variables.php:35 +#: libraries/messages.inc.php:859 server_variables.php:35 msgid "Server variables and settings" msgstr "Spremenljivke in nastavitve strežnika" -#: libraries/messages.inc.php:865 main.php:290 +#: libraries/messages.inc.php:861 main.php:290 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -5145,7 +5145,7 @@ msgstr "" "piškotkov, določene v phpMyAdminu. Zaradi tega se bo vaša prijava iztekla " "prej, kot je določeno v phpMyAdminu." -#: libraries/messages.inc.php:866 +#: libraries/messages.inc.php:862 msgid "" "Cannot start session without errors, please check errors given in your PHP " "and/or webserver log file and configure your PHP installation properly." @@ -5153,11 +5153,11 @@ msgstr "" "Ne morem začeti seje brez napak; prosimo, preverite napake v vaši PHP in/ali " "strežnikovi dneviški datoteki in primerno konfigurirajte vašo namestitev PHP." -#: libraries/messages.inc.php:867 server_variables.php:55 +#: libraries/messages.inc.php:863 server_variables.php:55 msgid "Session value" msgstr "Vrednost seje" -#: libraries/messages.inc.php:868 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:864 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 " @@ -5169,55 +5169,55 @@ msgstr "" "ali enojni narekovaj (\"'\"), pred tem znakom vnesite poševnico (npr. '\\" "\\xyz' ali 'a\\'b')." -#: libraries/messages.inc.php:876 server_binlog.php:192 server_binlog.php:195 +#: libraries/messages.inc.php:872 server_binlog.php:192 server_binlog.php:195 #: server_processlist.php:49 server_processlist.php:51 msgid "Show Full Queries" msgstr "Pokaži celotne poizvedbe" -#: libraries/messages.inc.php:878 pmd_general.php:64 +#: libraries/messages.inc.php:874 pmd_general.php:64 msgid "Show/Hide left menu" msgstr "Pokaži/Skrij levi meni" -#: libraries/messages.inc.php:880 sql.php:513 +#: libraries/messages.inc.php:876 sql.php:513 msgid "Showing as PHP code" msgstr "Prikazovanje kot koda PHP" -#: libraries/messages.inc.php:882 sql.php:516 tbl_replace.php:360 +#: libraries/messages.inc.php:878 sql.php:516 tbl_replace.php:360 msgid "Showing SQL query" msgstr "Prikazovanje poizvedbe SQL" -#: libraries/messages.inc.php:883 tbl_change.php:1132 +#: libraries/messages.inc.php:879 tbl_change.php:1132 msgid "Show insert query" msgstr "Prikaži poizvedbo insert" -#: libraries/messages.inc.php:886 server_status.php:273 +#: libraries/messages.inc.php:882 server_status.php:273 msgid "Show open tables" msgstr "Pokaži odprte tabele" -#: libraries/messages.inc.php:887 main.php:219 +#: libraries/messages.inc.php:883 main.php:219 msgid "Show PHP information" msgstr "Pokaži podatke o PHP" -#: libraries/messages.inc.php:889 server_status.php:278 +#: libraries/messages.inc.php:885 server_status.php:278 msgid "Show slave hosts" msgstr "" -#: libraries/messages.inc.php:890 server_status.php:284 +#: libraries/messages.inc.php:886 server_status.php:284 msgid "Show slave status" msgstr "" -#: libraries/messages.inc.php:891 +#: libraries/messages.inc.php:887 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/messages.inc.php:892 +#: libraries/messages.inc.php:888 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/messages.inc.php:893 +#: libraries/messages.inc.php:889 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -5225,78 +5225,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/messages.inc.php:894 +#: libraries/messages.inc.php:890 msgid "How many temporary files mysqld has created." msgstr "Koliko začasnih datotek je ustvaril mysqld." -#: libraries/messages.inc.php:895 +#: libraries/messages.inc.php:891 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/messages.inc.php:896 +#: libraries/messages.inc.php:892 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/messages.inc.php:897 +#: libraries/messages.inc.php:893 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/messages.inc.php:898 +#: libraries/messages.inc.php:894 msgid "The number of INSERT DELAYED rows written." msgstr "Število zapisanih vrstic INSERT DELAYED." -#: libraries/messages.inc.php:899 +#: libraries/messages.inc.php:895 msgid "The number of executed FLUSH statements." msgstr "Število izvedenih izjav FLUSH." -#: libraries/messages.inc.php:900 +#: libraries/messages.inc.php:896 msgid "The number of internal COMMIT statements." msgstr "Število notranjih izjav COMMIT." -#: libraries/messages.inc.php:901 +#: libraries/messages.inc.php:897 msgid "The number of times a row was deleted from a table." msgstr "Število izbrisov vrstice iz tabele." -#: libraries/messages.inc.php:902 +#: libraries/messages.inc.php:898 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/messages.inc.php:903 +#: libraries/messages.inc.php:899 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/messages.inc.php:904 +#: libraries/messages.inc.php:900 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: libraries/messages.inc.php:905 +#: libraries/messages.inc.php:901 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/messages.inc.php:906 +#: libraries/messages.inc.php:902 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: libraries/messages.inc.php:907 +#: libraries/messages.inc.php:903 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -5304,7 +5304,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/messages.inc.php:908 +#: libraries/messages.inc.php:904 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -5312,42 +5312,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/messages.inc.php:909 +#: libraries/messages.inc.php:905 msgid "The number of internal ROLLBACK statements." msgstr "Število notranjih izjav ROLLBACK." -#: libraries/messages.inc.php:910 +#: libraries/messages.inc.php:906 msgid "The number of requests to update a row in a table." msgstr "Število zahtev za posodobitev vrstice v tabeli." -#: libraries/messages.inc.php:911 +#: libraries/messages.inc.php:907 msgid "The number of requests to insert a row in a table." msgstr "Število zahtev za vstavitev vrstice v tabelo." -#: libraries/messages.inc.php:912 +#: libraries/messages.inc.php:908 msgid "The number of pages containing data (dirty or clean)." msgstr "Število strani, ki vsebujejo podatke (umazane ali čiste)" -#: libraries/messages.inc.php:913 +#: libraries/messages.inc.php:909 msgid "The number of pages currently dirty." msgstr "Število trenutno umazanih strani." -#: libraries/messages.inc.php:914 +#: libraries/messages.inc.php:910 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/messages.inc.php:915 +#: libraries/messages.inc.php:911 msgid "The number of free pages." msgstr "Število prostih strani." -#: libraries/messages.inc.php:916 +#: libraries/messages.inc.php:912 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/messages.inc.php:917 +#: libraries/messages.inc.php:913 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -5355,33 +5355,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/messages.inc.php:918 +#: libraries/messages.inc.php:914 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/messages.inc.php:919 +#: libraries/messages.inc.php:915 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/messages.inc.php:920 +#: libraries/messages.inc.php:916 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/messages.inc.php:921 +#: libraries/messages.inc.php:917 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/messages.inc.php:922 +#: libraries/messages.inc.php:918 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/messages.inc.php:923 +#: libraries/messages.inc.php:919 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -5390,184 +5390,184 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/messages.inc.php:924 +#: libraries/messages.inc.php:920 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/messages.inc.php:925 +#: libraries/messages.inc.php:921 msgid "The number of fsync() operations so far." msgstr "Število dozdajšnjih posegov fsync()." -#: libraries/messages.inc.php:926 +#: libraries/messages.inc.php:922 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/messages.inc.php:927 +#: libraries/messages.inc.php:923 msgid "The current number of pending reads." msgstr "" -#: libraries/messages.inc.php:928 +#: libraries/messages.inc.php:924 msgid "The current number of pending writes." msgstr "" -#: libraries/messages.inc.php:929 +#: libraries/messages.inc.php:925 msgid "The amount of data read so far, in bytes." msgstr "Količina do zdaj prebranih podatkov, v bajtih." -#: libraries/messages.inc.php:930 +#: libraries/messages.inc.php:926 msgid "The total number of data reads." msgstr "Skupno število branj podatkov." -#: libraries/messages.inc.php:931 +#: libraries/messages.inc.php:927 msgid "The total number of data writes." msgstr "Skupno število zapisovanj podatkov." -#: libraries/messages.inc.php:932 +#: libraries/messages.inc.php:928 msgid "The amount of data written so far, in bytes." msgstr "Količina do zdaj zapisanih podatkov, v bajtih." -#: libraries/messages.inc.php:933 +#: libraries/messages.inc.php:929 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/messages.inc.php:934 +#: libraries/messages.inc.php:930 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/messages.inc.php:935 +#: libraries/messages.inc.php:931 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/messages.inc.php:936 +#: libraries/messages.inc.php:932 msgid "The number of log write requests." msgstr "" -#: libraries/messages.inc.php:937 +#: libraries/messages.inc.php:933 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/messages.inc.php:938 +#: libraries/messages.inc.php:934 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/messages.inc.php:939 +#: libraries/messages.inc.php:935 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/messages.inc.php:940 +#: libraries/messages.inc.php:936 msgid "Pending log file writes." msgstr "" -#: libraries/messages.inc.php:941 +#: libraries/messages.inc.php:937 msgid "The number of bytes written to the log file." msgstr "Število bajtov zapisanih v dnevniško datoteko." -#: libraries/messages.inc.php:942 +#: libraries/messages.inc.php:938 msgid "The number of pages created." msgstr "Število ustvarjenih strani." -#: libraries/messages.inc.php:943 +#: libraries/messages.inc.php:939 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: libraries/messages.inc.php:944 +#: libraries/messages.inc.php:940 msgid "The number of pages read." msgstr "Število prebranih strani." -#: libraries/messages.inc.php:945 +#: libraries/messages.inc.php:941 msgid "The number of pages written." msgstr "Število zapisanih strani." -#: libraries/messages.inc.php:946 +#: libraries/messages.inc.php:942 msgid "The number of row locks currently being waited for." msgstr "Število zaklepov vrstic, na katere se trenutno čaka." -#: libraries/messages.inc.php:947 +#: libraries/messages.inc.php:943 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Povprečni čas zagotovitve zaklepa vrstice, v milisekundah." -#: libraries/messages.inc.php:948 +#: libraries/messages.inc.php:944 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Skupni čas zagotavljanja zaklepov vrstic, v milisekundah." -#: libraries/messages.inc.php:949 +#: libraries/messages.inc.php:945 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Najdaljši čas zagotavljanja zaklepa vrstice, v milisekundah." -#: libraries/messages.inc.php:950 +#: libraries/messages.inc.php:946 msgid "The number of times a row lock had to be waited for." msgstr "Število čakanj na zaklepe vrstic." -#: libraries/messages.inc.php:951 +#: libraries/messages.inc.php:947 msgid "The number of rows deleted from InnoDB tables." msgstr "Število vrstic izbrisanih iz tabel InnoDB." -#: libraries/messages.inc.php:952 +#: libraries/messages.inc.php:948 msgid "The number of rows inserted in InnoDB tables." msgstr "Število vrstic vstavljenih v tabele InnoDB." -#: libraries/messages.inc.php:953 +#: libraries/messages.inc.php:949 msgid "The number of rows read from InnoDB tables." msgstr "Število vrstic prebranih iz tabel InnoDB." -#: libraries/messages.inc.php:954 +#: libraries/messages.inc.php:950 msgid "The number of rows updated in InnoDB tables." msgstr "Število vrstic posodobljenih v tabelah InnoDB." -#: libraries/messages.inc.php:955 +#: libraries/messages.inc.php:951 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/messages.inc.php:956 +#: libraries/messages.inc.php:952 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: libraries/messages.inc.php:957 +#: libraries/messages.inc.php:953 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/messages.inc.php:958 +#: libraries/messages.inc.php:954 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/messages.inc.php:959 +#: libraries/messages.inc.php:955 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/messages.inc.php:960 +#: libraries/messages.inc.php:956 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/messages.inc.php:961 +#: libraries/messages.inc.php:957 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/messages.inc.php:962 +#: libraries/messages.inc.php:958 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/messages.inc.php:963 +#: libraries/messages.inc.php:959 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Število vrstic, ki čakajo na zapis v vrsti INSERT DELAYED." -#: libraries/messages.inc.php:964 +#: libraries/messages.inc.php:960 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -5575,35 +5575,35 @@ msgstr "" "Število odprtih tabel. Če je vrednost velika, je vaš predpomnilnik tabel " "najverjetneje premajhen." -#: libraries/messages.inc.php:965 +#: libraries/messages.inc.php:961 msgid "The number of files that are open." msgstr "Število odprtih datotek." -#: libraries/messages.inc.php:966 +#: libraries/messages.inc.php:962 msgid "The number of streams that are open (used mainly for logging)." msgstr "Število odprtih tokov (uporabljenih v glavnem za beleženje)." -#: libraries/messages.inc.php:967 +#: libraries/messages.inc.php:963 msgid "The number of tables that are open." msgstr "Število odprtih tabel." -#: libraries/messages.inc.php:968 +#: libraries/messages.inc.php:964 msgid "The number of free memory blocks in query cache." msgstr "Število prostih spominskih blokov v predpomnilniku poizvedb." -#: libraries/messages.inc.php:969 +#: libraries/messages.inc.php:965 msgid "The amount of free memory for query cache." msgstr "Količina prostega spomina za predpomnilnik poizvedb." -#: libraries/messages.inc.php:970 +#: libraries/messages.inc.php:966 msgid "The number of cache hits." msgstr "Število zadetkov predpomnilnika." -#: libraries/messages.inc.php:971 +#: libraries/messages.inc.php:967 msgid "The number of queries added to the cache." msgstr "Število poizvedb dodanih v predpomnilnik." -#: libraries/messages.inc.php:972 +#: libraries/messages.inc.php:968 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -5616,7 +5616,7 @@ msgstr "" "uporablja strategijo nedavno najmanj uporabljanih (LRU), da odloči, katere " "poizvedbe naj odstrani iz predpomnilnika." -#: libraries/messages.inc.php:973 +#: libraries/messages.inc.php:969 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -5624,98 +5624,98 @@ msgstr "" "Število nepredpomnjenih poizvedb (ne predpomnljive ali ne predpomnjene " "zaradi nastavitve query_cache_type)." -#: libraries/messages.inc.php:974 +#: libraries/messages.inc.php:970 msgid "The number of queries registered in the cache." msgstr "Število zabeleženih poizvedb v predpomnilniku." -#: libraries/messages.inc.php:975 +#: libraries/messages.inc.php:971 msgid "The total number of blocks in the query cache." msgstr "Skupno število blokov v predpomnilniku poizvedb." -#: libraries/messages.inc.php:976 +#: libraries/messages.inc.php:972 msgctxt "$strShowStatusReset" msgid "Reset" msgstr "Ponastavi" -#: libraries/messages.inc.php:977 +#: libraries/messages.inc.php:973 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/messages.inc.php:978 +#: libraries/messages.inc.php:974 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: libraries/messages.inc.php:979 +#: libraries/messages.inc.php:975 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/messages.inc.php:980 +#: libraries/messages.inc.php:976 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: libraries/messages.inc.php:981 +#: libraries/messages.inc.php:977 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/messages.inc.php:982 +#: libraries/messages.inc.php:978 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/messages.inc.php:983 +#: libraries/messages.inc.php:979 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/messages.inc.php:984 +#: libraries/messages.inc.php:980 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/messages.inc.php:985 +#: libraries/messages.inc.php:981 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/messages.inc.php:986 +#: libraries/messages.inc.php:982 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/messages.inc.php:987 +#: libraries/messages.inc.php:983 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/messages.inc.php:988 +#: libraries/messages.inc.php:984 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/messages.inc.php:989 +#: libraries/messages.inc.php:985 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/messages.inc.php:990 +#: libraries/messages.inc.php:986 msgid "The number of sorted rows." msgstr "" -#: libraries/messages.inc.php:991 +#: libraries/messages.inc.php:987 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/messages.inc.php:992 +#: libraries/messages.inc.php:988 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/messages.inc.php:993 +#: libraries/messages.inc.php:989 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -5723,18 +5723,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/messages.inc.php:994 +#: libraries/messages.inc.php:990 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/messages.inc.php:995 +#: libraries/messages.inc.php:991 msgid "The number of currently open connections." msgstr "Število trenutno odprtih povezav." -#: libraries/messages.inc.php:996 +#: libraries/messages.inc.php:992 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -5742,28 +5742,28 @@ msgid "" "implementation.)" msgstr "" -#: libraries/messages.inc.php:997 +#: libraries/messages.inc.php:993 msgid "The number of threads that are not sleeping." msgstr "Število niti, ki ne spijo." -#: libraries/messages.inc.php:999 tbl_printview.php:75 +#: libraries/messages.inc.php:995 tbl_printview.php:75 msgid "Show tables" msgstr "Pokaži tabele" -#: libraries/messages.inc.php:1000 libraries/sql_query_form.lib.php:396 +#: libraries/messages.inc.php:996 libraries/sql_query_form.lib.php:396 msgid " Show this query here again " msgstr " Ponovno pokaži poizvedbo v tem oknu " -#: libraries/messages.inc.php:1001 libraries/mysql_charsets.lib.php:217 +#: libraries/messages.inc.php:997 libraries/mysql_charsets.lib.php:217 #: libraries/mysql_charsets.lib.php:342 msgid "Simplified Chinese" msgstr "Poenostavljeno kitajsko" -#: libraries/messages.inc.php:1002 tbl_operations.php:258 +#: libraries/messages.inc.php:998 tbl_operations.php:258 msgid "(singly)" msgstr "(posamezno)" -#: libraries/messages.inc.php:1005 libraries/replication_gui.lib.php:52 +#: libraries/messages.inc.php:1001 libraries/replication_gui.lib.php:52 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" @@ -5772,47 +5772,47 @@ msgstr "" "id strežnika. Če nimate, prosimo dodajte naslednjo vrstico v razdelek " "[mysqld]:" -#: libraries/messages.inc.php:1006 libraries/mysql_charsets.lib.php:283 +#: libraries/messages.inc.php:1002 libraries/mysql_charsets.lib.php:283 msgid "Slovak" msgstr "Slovaško" -#: libraries/messages.inc.php:1007 libraries/mysql_charsets.lib.php:286 +#: libraries/messages.inc.php:1003 libraries/mysql_charsets.lib.php:286 msgid "Slovenian" msgstr "Slovensko" -#: libraries/messages.inc.php:1008 pmd_general.php:95 +#: libraries/messages.inc.php:1004 pmd_general.php:95 msgid "Small/Big All" msgstr "" -#: libraries/messages.inc.php:1009 pmd_general.php:91 +#: libraries/messages.inc.php:1005 pmd_general.php:91 msgid "Snap to grid" msgstr "Pripni na mrežo" -#: libraries/messages.inc.php:1011 server_synchronize.php:1167 +#: libraries/messages.inc.php:1007 server_synchronize.php:1167 msgid "Socket" msgstr "" -#: libraries/messages.inc.php:1013 server_status.php:259 +#: libraries/messages.inc.php:1009 server_status.php:259 msgid "Sorting" msgstr "Razvrščanje" -#: libraries/messages.inc.php:1015 tbl_printview.php:310 tbl_structure.php:657 +#: libraries/messages.inc.php:1011 tbl_printview.php:310 tbl_structure.php:657 msgid "Space usage" msgstr "Poraba prostora" -#: libraries/messages.inc.php:1016 libraries/mysql_charsets.lib.php:289 +#: libraries/messages.inc.php:1012 libraries/mysql_charsets.lib.php:289 msgid "Spanish" msgstr "Špansko" -#: libraries/messages.inc.php:1019 +#: libraries/messages.inc.php:1015 msgid "Export type" msgstr "Vrsta izvoza" -#: libraries/messages.inc.php:1020 +#: libraries/messages.inc.php:1016 msgid "Export time in UTC" msgstr "Izvozi čas v UTC" -#: libraries/messages.inc.php:1021 libraries/sqlparser.lib.php:173 +#: libraries/messages.inc.php:1017 libraries/sqlparser.lib.php:173 msgid "" "There is a chance that you may have found a bug in the SQL parser. Please " "examine your query closely, and check that the quotes are correct and not " @@ -5834,7 +5834,7 @@ msgstr "" "poizvedbo SQL na tisto poizvedbo, ki povzroča težave in pošljite poročilo o " "napaki skupaj s podatki iz spodnjega odseka IZREZA:" -#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:137 +#: libraries/messages.inc.php:1018 libraries/sqlparser.lib.php:137 msgid "" "There seems to be an error in your SQL query. The MySQL server error output " "below, if there is any, may also help you in diagnosing the problem" @@ -5842,32 +5842,32 @@ msgstr "" "Izgleda, da je v poizvedbi SQL prišlo do napake. Če je strežnik MySQL " "izpisal napako, vam le-ta lahko pomaga pri odkrivanju težav" -#: libraries/messages.inc.php:1026 libraries/sqlparser.lib.php:495 +#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:495 msgid "Invalid Identifer" msgstr "Neveljavni identifikator" -#: libraries/messages.inc.php:1027 libraries/sqlparser.lib.php:344 +#: libraries/messages.inc.php:1023 libraries/sqlparser.lib.php:344 msgid "Unclosed quote" msgstr "Odprt citat" -#: libraries/messages.inc.php:1028 libraries/sqlparser.lib.php:612 +#: libraries/messages.inc.php:1024 libraries/sqlparser.lib.php:612 msgid "Unknown Punctuation String" msgstr "Neznan niz ločil" -#: libraries/messages.inc.php:1030 server_replication.php:327 +#: libraries/messages.inc.php:1026 server_replication.php:327 #: server_replication.php:328 msgid "Start" msgstr "Začetek" -#: libraries/messages.inc.php:1033 tbl_printview.php:369 tbl_structure.php:729 +#: libraries/messages.inc.php:1029 tbl_printview.php:369 tbl_structure.php:729 msgid "Statements" msgstr "Izjave" -#: libraries/messages.inc.php:1034 tbl_printview.php:380 tbl_structure.php:741 +#: libraries/messages.inc.php:1030 tbl_printview.php:380 tbl_structure.php:741 msgid "static" msgstr "statično" -#: libraries/messages.inc.php:1035 server_status.php:388 +#: libraries/messages.inc.php:1031 server_status.php:388 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -5875,42 +5875,42 @@ msgstr "" "Na zaposlenem strežniku lahko števci bajtov naštejejo preveč, zato je ta " "statistika, kot jo poroča strežnik MySQL, morda napačna." -#: libraries/messages.inc.php:1038 server_replication.php:327 +#: libraries/messages.inc.php:1034 server_replication.php:327 #: server_replication.php:328 msgid "Stop" msgstr "Ustavi" -#: libraries/messages.inc.php:1039 server_engines.php:49 +#: libraries/messages.inc.php:1035 server_engines.php:49 msgid "Storage Engines" msgstr "Pogoni skladiščenja" -#: libraries/messages.inc.php:1040 libraries/tbl_properties.inc.php:726 +#: libraries/messages.inc.php:1036 libraries/tbl_properties.inc.php:726 #: server_engines.php:58 tbl_operations.php:353 msgid "Storage Engine" msgstr "Pogon skladiščenja" -#: libraries/messages.inc.php:1042 +#: libraries/messages.inc.php:1038 msgid "CSV for MS Excel" msgstr "CSV-podatki za MS Excel" -#: libraries/messages.inc.php:1044 tbl_structure.php:516 tbl_structure.php:518 +#: libraries/messages.inc.php:1040 tbl_structure.php:516 tbl_structure.php:518 msgid "Propose table structure" msgstr "Predlagaj strukturo tabele" -#: libraries/messages.inc.php:1045 server_synchronize.php:424 +#: libraries/messages.inc.php:1041 server_synchronize.php:424 #: server_synchronize.php:867 msgid "Structure Difference" msgstr "" -#: libraries/messages.inc.php:1049 server_synchronize.php:265 +#: libraries/messages.inc.php:1045 server_synchronize.php:265 msgid "Structure Synchronization" msgstr "Sinhronizacija strukture" -#: libraries/messages.inc.php:1050 libraries/sql_query_form.lib.php:462 +#: libraries/messages.inc.php:1046 libraries/sql_query_form.lib.php:462 msgid "Submit" msgstr "Pošlji" -#: libraries/messages.inc.php:1052 main.php:358 +#: libraries/messages.inc.php:1048 main.php:358 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -5919,16 +5919,16 @@ msgstr "" "Strežnik, ki teče z Suhosin. Prosimo, nanašajte se na %sdokumentacijo%s za " "morebitna vprašanja." -#: libraries/messages.inc.php:1054 libraries/mysql_charsets.lib.php:295 +#: libraries/messages.inc.php:1050 libraries/mysql_charsets.lib.php:295 #: libraries/mysql_charsets.lib.php:392 msgid "Swedish" msgstr "Švedsko" -#: libraries/messages.inc.php:1060 tbl_operations.php:556 +#: libraries/messages.inc.php:1056 tbl_operations.php:556 msgid "Switch to copied table" msgstr "Preklopi na kopirano tabelo" -#: libraries/messages.inc.php:1061 server_synchronize.php:1213 +#: libraries/messages.inc.php:1057 server_synchronize.php:1213 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -5936,146 +5936,146 @@ msgstr "" "Ciljna podatkovna zbirka bo popolnoma sinhronizirana z izvorno podatkovno " "zbirko. Izvorna podatkovna zbirka bo ostala nespremenjena." -#: libraries/messages.inc.php:1062 server_synchronize.php:451 +#: libraries/messages.inc.php:1058 server_synchronize.php:451 #: server_synchronize.php:896 msgid "Synchronize Databases" msgstr "Sinhroniziraj zbirke podatkov" -#: libraries/messages.inc.php:1063 libraries/server_links.inc.php:92 +#: libraries/messages.inc.php:1059 libraries/server_links.inc.php:92 #: server_synchronize.php:1092 server_synchronize.php:1100 msgid "Synchronize" msgstr "Sinhroniziraj" -#: libraries/messages.inc.php:1065 server_synchronize.php:430 +#: libraries/messages.inc.php:1061 server_synchronize.php:430 #: server_synchronize.php:873 msgid "Add column(s)" msgstr "Dodaj stolpec(-ce)" -#: libraries/messages.inc.php:1066 tbl_create.php:62 +#: libraries/messages.inc.php:1062 tbl_create.php:62 #, php-format msgid "Table %s already exists!" msgstr "Tabela %s že obstaja!" -#: libraries/messages.inc.php:1067 server_synchronize.php:432 +#: libraries/messages.inc.php:1063 server_synchronize.php:432 #: server_synchronize.php:875 msgid "Alter column(s)" msgstr "Spremeni stolpec(-ce)" -#: libraries/messages.inc.php:1068 tbl_addfield.php:189 tbl_alter.php:103 +#: libraries/messages.inc.php:1064 tbl_addfield.php:189 tbl_alter.php:103 #: tbl_indexes.php:98 #, php-format msgid "Table %1$s has been altered successfully" msgstr "Tabela %1$s je bila uspešno spremenjena" -#: libraries/messages.inc.php:1069 server_synchronize.php:434 +#: libraries/messages.inc.php:1065 server_synchronize.php:434 #: server_synchronize.php:877 msgid "Apply index(s)" msgstr "Uveljavi indeks(e)" -#: libraries/messages.inc.php:1071 server_synchronize.php:446 +#: libraries/messages.inc.php:1067 server_synchronize.php:446 #: server_synchronize.php:890 msgid "Would you like to delete all the previous rows from target tables?" msgstr "Ali želite izbrisati vse prejšnje vrstice iz ciljnih tabel?" -#: libraries/messages.inc.php:1072 tbl_move_copy.php:82 +#: libraries/messages.inc.php:1068 tbl_move_copy.php:82 msgid "The table name is empty!" msgstr "Ime tabele je prazno!" -#: libraries/messages.inc.php:1073 tbl_create.php:249 +#: libraries/messages.inc.php:1069 tbl_create.php:249 #, php-format msgid "Table %1$s has been created." msgstr "Tabela %1$s je ustvarjena." -#: libraries/messages.inc.php:1076 tbl_operations.php:628 +#: libraries/messages.inc.php:1072 tbl_operations.php:628 #, php-format msgid "Table %s has been flushed" msgstr "Tabela %s je osvežena" -#: libraries/messages.inc.php:1077 server_synchronize.php:436 +#: libraries/messages.inc.php:1073 server_synchronize.php:436 #: server_synchronize.php:879 msgid "Insert row(s)" msgstr "Vstavi vrstico(-e)" -#: libraries/messages.inc.php:1078 libraries/tbl_links.inc.php:107 +#: libraries/messages.inc.php:1074 libraries/tbl_links.inc.php:107 #: libraries/tbl_links.inc.php:140 libraries/tbl_links.inc.php:141 msgid "Table seems to be empty!" msgstr "Tabela je prazna!" -#: libraries/messages.inc.php:1079 tbl_operations.php:568 +#: libraries/messages.inc.php:1075 tbl_operations.php:568 msgid "Table maintenance" msgstr "Vzdrževanje tabele" -#: libraries/messages.inc.php:1080 libraries/tbl_properties.inc.php:618 +#: libraries/messages.inc.php:1076 libraries/tbl_properties.inc.php:618 #: server_synchronize.php:428 server_synchronize.php:871 msgid "Table name" msgstr "Ime tabele" -#: libraries/messages.inc.php:1081 pdf_schema.php:1116 +#: libraries/messages.inc.php:1077 pdf_schema.php:1116 msgid "Table of contents" msgstr "Vsebina" -#: libraries/messages.inc.php:1082 tbl_operations.php:334 +#: libraries/messages.inc.php:1078 tbl_operations.php:334 msgid "Table options" msgstr "Možnosti tabele" -#: libraries/messages.inc.php:1083 server_synchronize.php:431 +#: libraries/messages.inc.php:1079 server_synchronize.php:431 #: server_synchronize.php:874 msgid "Remove column(s)" msgstr "Odstrani stolpec(-ce)" -#: libraries/messages.inc.php:1084 server_synchronize.php:433 +#: libraries/messages.inc.php:1080 server_synchronize.php:433 #: server_synchronize.php:876 msgid "Remove index(s)" msgstr "Odstrani indeks(e)" -#: libraries/messages.inc.php:1088 server_synchronize.php:435 +#: libraries/messages.inc.php:1084 server_synchronize.php:435 #: server_synchronize.php:878 msgid "Update row(s)" msgstr "Posodobi vrstico(-e)" -#: libraries/messages.inc.php:1090 server_synchronize.php:942 +#: libraries/messages.inc.php:1086 server_synchronize.php:942 msgid "Target database has been synchronized with source database" msgstr "" "Ciljna zbirka podatkov je bila sinhronizirana z izvorno zbirko podatkov" -#: libraries/messages.inc.php:1091 server_privileges.php:392 +#: libraries/messages.inc.php:1087 server_privileges.php:392 #: server_privileges.php:527 server_privileges.php:1679 #: server_privileges.php:1685 msgid "Table-specific privileges" msgstr "Privilegiji tipični za tabelo" -#: libraries/messages.inc.php:1092 server_status.php:254 +#: libraries/messages.inc.php:1088 server_status.php:254 msgid "Temporary data" msgstr "Začasni podatki" -#: libraries/messages.inc.php:1093 tbl_change.php:728 +#: libraries/messages.inc.php:1089 tbl_change.php:728 msgid " Because of its length,
this field might not be editable " msgstr " Zaradi njegove dolžine
polja morda ne bo mogoče urejati " -#: libraries/messages.inc.php:1094 +#: libraries/messages.inc.php:1090 msgid "Texy! text" msgstr "Besedilo Texy!" -#: libraries/messages.inc.php:1095 libraries/mysql_charsets.lib.php:298 +#: libraries/messages.inc.php:1091 libraries/mysql_charsets.lib.php:298 #: libraries/mysql_charsets.lib.php:395 msgid "Thai" msgstr "Tajsko" -#: libraries/messages.inc.php:1102 libraries/replication_gui.lib.php:308 +#: libraries/messages.inc.php:1098 libraries/replication_gui.lib.php:308 #: server_privileges.php:734 msgid "This Host" msgstr "Ta strežnik" -#: libraries/messages.inc.php:1103 server_status.php:252 +#: libraries/messages.inc.php:1099 server_status.php:252 msgid "Threads" msgstr "Niti" -#: libraries/messages.inc.php:1104 server_processlist.php:22 +#: libraries/messages.inc.php:1100 server_processlist.php:22 #, php-format msgid "Thread %s was successfully killed." msgstr "Nit %s je bila prekinjena." -#: libraries/messages.inc.php:1106 +#: libraries/messages.inc.php:1102 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -6084,183 +6084,183 @@ msgstr "" "navadi pomeni, da phpMyAdmin ne bo mogel dokončati tega uvoza, razen če " "povečate vaše časovne omejitve PHP." -#: libraries/messages.inc.php:1109 pmd_pdf.php:94 +#: libraries/messages.inc.php:1105 pmd_pdf.php:94 msgid "to/from page" msgstr "" -#: libraries/messages.inc.php:1110 pdf_pages.php:343 +#: libraries/messages.inc.php:1106 pdf_pages.php:343 msgid "Toggle scratchboard" msgstr "Preklopi odložišče (scratchboard)" -#: libraries/messages.inc.php:1111 pmd_general.php:99 +#: libraries/messages.inc.php:1107 pmd_general.php:99 msgid "Toggle small/big" msgstr "Preklopi majhno/veliko" -#: libraries/messages.inc.php:1112 pmd_help.php:27 +#: libraries/messages.inc.php:1108 pmd_help.php:27 msgid "To select relation, click :" msgstr "Za izbiro relacije, kliknite:" -#: libraries/messages.inc.php:1115 libraries/tbl_links.inc.php:149 +#: libraries/messages.inc.php:1111 libraries/tbl_links.inc.php:149 #, php-format msgid "Tracking of %s.%s is activated." msgstr "Sledenje %s.%s je aktivirano." -#: libraries/messages.inc.php:1116 tbl_tracking.php:655 +#: libraries/messages.inc.php:1112 tbl_tracking.php:655 msgid "Activate now" msgstr "Aktiviraj zdaj" -#: libraries/messages.inc.php:1117 tbl_tracking.php:653 +#: libraries/messages.inc.php:1113 tbl_tracking.php:653 #, php-format msgid "Activate tracking for %s.%s" msgstr "Aktiviraj sledenje %s.%s" -#: libraries/messages.inc.php:1118 tbl_tracking.php:221 +#: libraries/messages.inc.php:1114 tbl_tracking.php:221 msgid "Comment out these two lines if you do not need them." msgstr "Če teh dveh vrstic ne potrebujete, ju dajte v komentar." -#: libraries/messages.inc.php:1119 tbl_tracking.php:688 +#: libraries/messages.inc.php:1115 tbl_tracking.php:688 msgid "Create version" msgstr "Ustvari različico" -#: libraries/messages.inc.php:1120 tbl_tracking.php:668 +#: libraries/messages.inc.php:1116 tbl_tracking.php:668 #, php-format msgid "Create version %s of %s.%s" msgstr "Ustvari različico %s tabele %s.%s" -#: libraries/messages.inc.php:1122 tbl_tracking.php:412 +#: libraries/messages.inc.php:1118 tbl_tracking.php:412 msgid "Data definition statement" msgstr "Stavek opredeljevanja podatkov" -#: libraries/messages.inc.php:1123 tbl_tracking.php:463 +#: libraries/messages.inc.php:1119 tbl_tracking.php:463 msgid "Data manipulation statement" msgstr "Stavek upravljanja s podatki" -#: libraries/messages.inc.php:1124 tbl_tracking.php:410 tbl_tracking.php:461 +#: libraries/messages.inc.php:1120 tbl_tracking.php:410 tbl_tracking.php:461 msgid "Date" msgstr "Datum" -#: libraries/messages.inc.php:1125 tbl_tracking.php:642 +#: libraries/messages.inc.php:1121 tbl_tracking.php:642 msgid "Deactivate now" msgstr "Dezaktiviraj zdaj" -#: libraries/messages.inc.php:1126 tbl_tracking.php:640 +#: libraries/messages.inc.php:1122 tbl_tracking.php:640 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "Dezaktiviraj sledenje za %s.%s" -#: libraries/messages.inc.php:1127 tbl_tracking.php:521 +#: libraries/messages.inc.php:1123 tbl_tracking.php:521 #, php-format msgid "Export as %s" msgstr "Izvozi kot %s" -#: libraries/messages.inc.php:1130 tbl_tracking.php:251 tbl_tracking.php:379 +#: libraries/messages.inc.php:1126 tbl_tracking.php:251 tbl_tracking.php:379 msgid "Close" msgstr "Zapri" -#: libraries/messages.inc.php:1131 tbl_tracking.php:114 +#: libraries/messages.inc.php:1127 tbl_tracking.php:114 #, php-format msgid "Tracking report for table `%s`" msgstr "Poročilo sledenja za tabelo `%s`" -#: libraries/messages.inc.php:1133 tbl_tracking.php:397 tbl_tracking.php:504 +#: libraries/messages.inc.php:1129 tbl_tracking.php:397 tbl_tracking.php:504 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "Prikaži %s z datumi od %s do %s uporabnika %s %s" -#: libraries/messages.inc.php:1134 tbl_tracking.php:561 +#: libraries/messages.inc.php:1130 tbl_tracking.php:561 msgid "Show versions" msgstr "Prikaži različice" -#: libraries/messages.inc.php:1135 tbl_tracking.php:507 +#: libraries/messages.inc.php:1131 tbl_tracking.php:507 msgid "SQL dump (file download)" msgstr "Odložen SQL (prenos datoteke)" -#: libraries/messages.inc.php:1136 tbl_tracking.php:508 +#: libraries/messages.inc.php:1132 tbl_tracking.php:508 msgid "SQL dump" msgstr "Odložen SQL" -#: libraries/messages.inc.php:1137 tbl_tracking.php:213 +#: libraries/messages.inc.php:1133 tbl_tracking.php:213 msgid "SQL statements executed." msgstr "Stavki SQL so izvedeni." -#: libraries/messages.inc.php:1138 +#: libraries/messages.inc.php:1134 msgid "This option will replace your table and contained data." msgstr "Ta možnost bo zamenjala vašo tabelo in vsebovane podatke." -#: libraries/messages.inc.php:1139 tbl_tracking.php:509 +#: libraries/messages.inc.php:1135 tbl_tracking.php:509 msgid "SQL execution" msgstr "Izvršitev SQL" -#: libraries/messages.inc.php:1140 tbl_tracking.php:230 +#: libraries/messages.inc.php:1136 tbl_tracking.php:230 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" "Stavki SQL so bili izvoženi. Prosimo, skopirajte odložene podatke ali jih " "izvršite." -#: libraries/messages.inc.php:1141 tbl_tracking.php:381 +#: libraries/messages.inc.php:1137 tbl_tracking.php:381 msgid "Tracking statements" msgstr "Sledenje stavkom" -#: libraries/messages.inc.php:1148 tbl_tracking.php:593 +#: libraries/messages.inc.php:1144 tbl_tracking.php:593 msgid "Version" msgstr "Različica" -#: libraries/messages.inc.php:1149 tbl_tracking.php:672 +#: libraries/messages.inc.php:1145 tbl_tracking.php:672 msgid "Track these data definition statements:" msgstr "Sledi tem stavkom opredeljevanja podatkov:" -#: libraries/messages.inc.php:1150 tbl_tracking.php:680 +#: libraries/messages.inc.php:1146 tbl_tracking.php:680 msgid "Track these data manipulation statements:" msgstr "Sledi tem stavkom upravljanja s podatki:" -#: libraries/messages.inc.php:1155 tbl_tracking.php:411 tbl_tracking.php:462 +#: libraries/messages.inc.php:1151 tbl_tracking.php:411 tbl_tracking.php:462 msgid "Username" msgstr "Uporabniško ime" -#: libraries/messages.inc.php:1156 tbl_tracking.php:203 +#: libraries/messages.inc.php:1152 tbl_tracking.php:203 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "Sledenje %s.%s, različice %s je aktivirano." -#: libraries/messages.inc.php:1157 tbl_tracking.php:187 +#: libraries/messages.inc.php:1153 tbl_tracking.php:187 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "Različica %s je ustvarjena, sledenje %s.%s je aktivirano." -#: libraries/messages.inc.php:1158 tbl_tracking.php:195 +#: libraries/messages.inc.php:1154 tbl_tracking.php:195 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "Sledenje %s.%s, različice %s je dezaktivirano." -#: libraries/messages.inc.php:1159 tbl_tracking.php:262 +#: libraries/messages.inc.php:1155 tbl_tracking.php:262 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/messages.inc.php:1161 tbl_tracking.php:220 +#: libraries/messages.inc.php:1157 tbl_tracking.php:220 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/messages.inc.php:1162 libraries/mysql_charsets.lib.php:219 +#: libraries/messages.inc.php:1158 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:362 msgid "Traditional Chinese" msgstr "Tradicionalno kitajsko" -#: libraries/messages.inc.php:1163 libraries/mysql_charsets.lib.php:292 +#: libraries/messages.inc.php:1159 libraries/mysql_charsets.lib.php:292 msgid "Traditional Spanish" msgstr "Tradicionalno špansko" -#: libraries/messages.inc.php:1164 server_status.php:388 +#: libraries/messages.inc.php:1160 server_status.php:388 msgid "Traffic" msgstr "Promet" -#: libraries/messages.inc.php:1165 server_status.php:261 +#: libraries/messages.inc.php:1161 server_status.php:261 msgid "Transaction coordinator" msgstr "" -#: libraries/messages.inc.php:1166 +#: libraries/messages.inc.php:1162 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 " @@ -6272,7 +6272,7 @@ msgstr "" "vsebuje to ime datoteke. Če vnesete drugo možnost, mora biti prva možnost " "prazna." -#: libraries/messages.inc.php:1167 +#: libraries/messages.inc.php:1163 msgid "" "Displays hexadecimal representation of data. Optional first parameter " "specifies how often space will be added (defaults to 2 nibbles)." @@ -6280,7 +6280,7 @@ msgstr "" "Prikaže šestnajstiško predstavljene podatke. Izbirni prvi parameter določa " "pogostost dodajanja presledkov (privzeto na 2 polzloga)." -#: libraries/messages.inc.php:1168 +#: libraries/messages.inc.php:1164 msgid "" "Displays a clickable thumbnail. The options are the maximum width and height " "in pixels. The original aspect ratio is preserved." @@ -6288,15 +6288,15 @@ msgstr "" "Prikaže sličico, na katero lahko kliknete. Možnosti sta največja širina in " "višina v slikovnih pikah. Prvotna razmerja se obdržijo." -#: libraries/messages.inc.php:1169 +#: libraries/messages.inc.php:1165 msgid "Displays a link to download this image." msgstr "Pokaže povezavo na grafiko (neposredni BLOB prenos, ipd.)." -#: libraries/messages.inc.php:1170 +#: libraries/messages.inc.php:1166 msgid "See image/jpeg: inline" msgstr "Pokaži sliko/jpeg: vključeno" -#: libraries/messages.inc.php:1171 +#: libraries/messages.inc.php:1167 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 " @@ -6308,7 +6308,7 @@ msgid "" "gmdate() function." msgstr "" -#: libraries/messages.inc.php:1172 +#: libraries/messages.inc.php:1168 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 " @@ -6332,7 +6332,7 @@ msgstr "" "vnesel NOWRAP in tako prikazal celoten izhod brez preoblikovanja (Privzeto: " "1)." -#: libraries/messages.inc.php:1173 +#: libraries/messages.inc.php:1169 msgid "" "Displays the contents of the field as-is, without running it through " "htmlspecialchars(). That is, the field is assumed to contain valid HTML." @@ -6340,7 +6340,7 @@ msgstr "" "Prikaže vsebino polja takšno, kot je, brez obdelave s htmlspecialchars(). " "Zatorej se za polje predvideva, da vsebuje veljaven HTML." -#: libraries/messages.inc.php:1174 +#: libraries/messages.inc.php:1170 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 " @@ -6350,7 +6350,7 @@ msgstr "" "predpona URL, kot je \"http://www.domena.com/\". Druga in tretja možnost sta " "širina in višina v slikovnih pikah." -#: libraries/messages.inc.php:1175 +#: libraries/messages.inc.php:1171 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 " @@ -6359,11 +6359,11 @@ msgstr "" "Prikaže povezavo; polje vsebuje ime datoteke. Prva možnost je predpona URL, " "kot je \"http://www.domena.com/\". Druga možnost je ime povezave." -#: libraries/messages.inc.php:1176 +#: libraries/messages.inc.php:1172 msgid "Formats text as SQL query with syntax highlighting." msgstr "Oblikuje besedilo kot poizvedbo SQL z označevanjem skladnje." -#: libraries/messages.inc.php:1177 +#: libraries/messages.inc.php:1173 msgid "" "Displays a part of a string. The first option is the number of characters to " "skip from the beginning of the string (Default 0). The second option is the " @@ -6377,69 +6377,69 @@ msgstr "" "Tretja možnost pa določa, kateri znaki bodo pripeti vrnjenemu podnizu " "(Privzeto: \"...\")." -#: libraries/messages.inc.php:1179 server_binlog.php:183 server_binlog.php:186 +#: libraries/messages.inc.php:1175 server_binlog.php:183 server_binlog.php:186 #: server_processlist.php:49 server_processlist.php:51 msgid "Truncate Shown Queries" msgstr "Skrči prikazane poizvedbe" -#: libraries/messages.inc.php:1180 libraries/mysql_charsets.lib.php:301 +#: libraries/messages.inc.php:1176 libraries/mysql_charsets.lib.php:301 #: libraries/mysql_charsets.lib.php:389 msgid "Turkish" msgstr "Turško" -#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:304 +#: libraries/messages.inc.php:1179 libraries/mysql_charsets.lib.php:304 #: libraries/mysql_charsets.lib.php:386 msgid "Ukrainian" msgstr "Ukrajinsko" -#: libraries/messages.inc.php:1185 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:1181 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 msgid "Unicode" msgstr "Unicode" -#: libraries/messages.inc.php:1187 libraries/mysql_charsets.lib.php:398 +#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:398 #: libraries/mysql_charsets.lib.php:405 msgid "unknown" msgstr "neznano" -#: libraries/messages.inc.php:1190 server_privileges.php:1152 +#: libraries/messages.inc.php:1186 server_privileges.php:1152 #, php-format msgid "You have updated the privileges for %s." msgstr "Posodobili ste privilegije za %s." -#: libraries/messages.inc.php:1191 user_password.php:112 +#: libraries/messages.inc.php:1187 user_password.php:112 msgid "The profile has been updated." msgstr "Profil je posodobljen." -#: libraries/messages.inc.php:1193 libraries/relation.lib.php:138 +#: libraries/messages.inc.php:1189 libraries/relation.lib.php:138 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "Navodila za posodobitev tabele column_comments najdete v dokumentaciji" -#: libraries/messages.inc.php:1194 +#: libraries/messages.inc.php:1190 #, php-format msgid "You should upgrade to %s %s or later." msgstr "%s bi morali nadgraditi v verzijo %s ali novejšo." -#: libraries/messages.inc.php:1204 tbl_printview.php:314 tbl_structure.php:661 +#: libraries/messages.inc.php:1200 tbl_printview.php:314 tbl_structure.php:661 msgid "Usage" msgstr "Uporaba" -#: libraries/messages.inc.php:1205 +#: libraries/messages.inc.php:1201 msgid "Enclose table and field names with backquotes" msgstr "Obdaj imena tabel in polj z enojnimi poševnimi narekovaji" -#: libraries/messages.inc.php:1206 libraries/replication_gui.lib.php:314 +#: libraries/messages.inc.php:1202 libraries/replication_gui.lib.php:314 #: server_privileges.php:740 msgid "Use Host Table" msgstr "Uporabi tabelo gostiteljev" -#: libraries/messages.inc.php:1207 server_privileges.php:848 +#: libraries/messages.inc.php:1203 server_privileges.php:848 #, php-format msgid "The user %s already exists!" msgstr "Uporabnik %s že obstaja!" -#: libraries/messages.inc.php:1209 libraries/replication_gui.lib.php:55 +#: libraries/messages.inc.php:1205 libraries/replication_gui.lib.php:55 #: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245 #: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255 #: server_privileges.php:672 server_privileges.php:675 @@ -6447,37 +6447,37 @@ msgstr "Uporabnik %s že obstaja!" msgid "User name" msgstr "Uporabniško ime" -#: libraries/messages.inc.php:1210 server_privileges.php:1645 +#: libraries/messages.inc.php:1206 server_privileges.php:1645 msgid "The selected user was not found in the privilege table." msgstr "Izbranega uporabnika v tabelah privilegijev nisem našel." -#: libraries/messages.inc.php:1211 server_privileges.php:1365 +#: libraries/messages.inc.php:1207 server_privileges.php:1365 msgid "User overview" msgstr "Pregled uporabnikov" -#: libraries/messages.inc.php:1212 server_privileges.php:1261 +#: libraries/messages.inc.php:1208 server_privileges.php:1261 msgid "The selected users have been deleted successfully." msgstr "Uspešno sem izbrisal izbrane uporabnike." -#: libraries/messages.inc.php:1213 server_privileges.php:2026 +#: libraries/messages.inc.php:1209 server_privileges.php:2026 #, php-format msgid "Users having access to "%s"" msgstr "Uporabniški dostop do "%s"" -#: libraries/messages.inc.php:1214 main.php:189 server_privileges.php:1350 +#: libraries/messages.inc.php:1210 main.php:189 server_privileges.php:1350 #: server_privileges.php:1497 server_privileges.php:1611 #: server_privileges.php:2029 server_processlist.php:54 msgid "User" msgstr "Uporabnik" -#: libraries/messages.inc.php:1215 tbl_change.php:1171 +#: libraries/messages.inc.php:1211 tbl_change.php:1171 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Uporabite tipko TAB za premik od vrednosti do vrednosti ali CTRL+puščice za " "premik kamor koli" -#: libraries/messages.inc.php:1217 libraries/replication_gui.lib.php:251 +#: libraries/messages.inc.php:1213 libraries/replication_gui.lib.php:251 #: libraries/replication_gui.lib.php:319 libraries/replication_gui.lib.php:342 #: server_privileges.php:678 server_privileges.php:745 #: server_privileges.php:769 server_privileges.php:1889 @@ -6485,7 +6485,7 @@ msgstr "" msgid "Use text field" msgstr "Uporabi besedilno polje" -#: libraries/messages.inc.php:1221 libraries/sqlvalidator.lib.php:68 +#: libraries/messages.inc.php:1217 libraries/sqlvalidator.lib.php:68 #, php-format msgid "" "The SQL validator could not be initialized. Please check if you have " @@ -6494,85 +6494,85 @@ msgstr "" "Ne morem inicializirati preverjevalnika SQL. Prosimo, preverite, če so " "nameščene vse razširitve PHP, kot je navedeno v %sdokumenaciji%s." -#: libraries/messages.inc.php:1222 libraries/replication_gui.lib.php:111 +#: libraries/messages.inc.php:1218 libraries/replication_gui.lib.php:111 #: server_status.php:627 tbl_change.php:324 tbl_printview.php:370 #: tbl_select.php:139 tbl_structure.php:730 msgid "Value" msgstr "Vrednost" -#: libraries/messages.inc.php:1223 libraries/replication_gui.lib.php:110 +#: libraries/messages.inc.php:1219 libraries/replication_gui.lib.php:110 #: libraries/sql_query_form.lib.php:445 server_status.php:626 #: server_variables.php:52 msgid "Variable" msgstr "Spremenljivka" -#: libraries/messages.inc.php:1225 server_export.php:21 +#: libraries/messages.inc.php:1221 server_export.php:21 msgid "View dump (schema) of databases" msgstr "Pokaži povzetek stanja podatkovnih baz" -#: libraries/messages.inc.php:1227 tbl_export.php:23 +#: libraries/messages.inc.php:1223 tbl_export.php:23 msgid "View dump (schema) of table" msgstr "Preglej povzetek stanja tabele" -#: libraries/messages.inc.php:1231 view_create.php:142 +#: libraries/messages.inc.php:1227 view_create.php:142 msgid "VIEW name" msgstr "Ime VIEW" -#: libraries/messages.inc.php:1237 main.php:205 +#: libraries/messages.inc.php:1233 main.php:205 msgid "Web server" msgstr "Spletni strežnik" -#: libraries/messages.inc.php:1239 libraries/mysql_charsets.lib.php:277 +#: libraries/messages.inc.php:1235 libraries/mysql_charsets.lib.php:277 #: libraries/mysql_charsets.lib.php:325 msgid "West European" msgstr "Zahodno evropsko" -#: libraries/messages.inc.php:1240 main.php:230 +#: libraries/messages.inc.php:1236 main.php:230 msgid "Wiki" msgstr "wiki" -#: libraries/messages.inc.php:1241 server_privileges.php:2138 +#: libraries/messages.inc.php:1237 server_privileges.php:2138 msgid "wildcard" msgstr "nadomestni znak" -#: libraries/messages.inc.php:1248 +#: libraries/messages.inc.php:1244 msgid "Export contents" msgstr "Izvozi vsebine" -#: libraries/messages.inc.php:1249 +#: libraries/messages.inc.php:1245 msgid "Export functions" msgstr "Izvozi funkcije" -#: libraries/messages.inc.php:1250 +#: libraries/messages.inc.php:1246 msgid "Export procedures" msgstr "Izvozi procedure" -#: libraries/messages.inc.php:1251 +#: libraries/messages.inc.php:1247 msgid "Export Structure Schemas (recommended)" msgstr "Izvozi sheme struktur (priporočeno)" -#: libraries/messages.inc.php:1252 +#: libraries/messages.inc.php:1248 msgid "Export tables" msgstr "Izvozi tabele" -#: libraries/messages.inc.php:1253 +#: libraries/messages.inc.php:1249 msgid "Export triggers" msgstr "Izvozi sprožilce" -#: libraries/messages.inc.php:1254 +#: libraries/messages.inc.php:1250 msgid "Export views" msgstr "Izvozi poglede" -#: libraries/messages.inc.php:1255 +#: libraries/messages.inc.php:1251 msgid "XML" msgstr "XML" -#: libraries/messages.inc.php:1259 server_privileges.php:592 +#: libraries/messages.inc.php:1255 server_privileges.php:592 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" "Obvestilo: Če postavite vrednost na 0 (nič), boste odstranili omejitev." -#: libraries/messages.inc.php:1260 +#: libraries/messages.inc.php:1256 msgid "\"zipped\"" msgstr "\"zipano\"" diff --git a/po/sq.po b/po/sq.po index d8da3e3c4..2080a6b9b 100644 --- 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-05-13 11:25+0200\n" +"POT-Creation-Date: 2010-05-13 11:30+0200\n" "PO-Revision-Date: 2010-03-30 23:08+0200\n" "Last-Translator: Michal \n" "Language-Team: albanian \n" @@ -15,19 +15,19 @@ msgstr "" "X-Generator: Pootle 2.0.1\n" #: browse_foreigners.php:38 browse_foreigners.php:59 -#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:870 +#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:866 #: server_privileges.php:1475 msgid "Show all" msgstr "Shfaqi të gjithë" #: browse_foreigners.php:82 db_operations.php:648 -#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:394 -#: libraries/export/pdf.php:147 libraries/messages.inc.php:597 +#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394 +#: libraries/export/pdf.php:147 libraries/messages.inc.php:593 #: pdf_schema.php:283 pdf_schema.php:1123 pdf_schema.php:1139 msgid "Page number:" msgstr "Numri i faqes:" -#: browse_foreigners.php:132 libraries/messages.inc.php:1242 +#: browse_foreigners.php:132 libraries/messages.inc.php:1238 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -40,7 +40,7 @@ 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/db_links.inc.php:75 -#: libraries/messages.inc.php:841 libraries/tbl_links.inc.php:63 +#: libraries/messages.inc.php:837 libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Kërko" @@ -49,12 +49,12 @@ msgstr "Kërko" #: db_search.php:362 db_structure.php:567 js/messages.php:48 #: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2267 +#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 #: 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 #: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614 -#: libraries/messages.inc.php:361 libraries/replication_gui.lib.php:73 +#: libraries/messages.inc.php:357 libraries/replication_gui.lib.php:73 #: libraries/replication_gui.lib.php:365 libraries/select_server.lib.php:104 #: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477 #: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782 @@ -74,33 +74,33 @@ msgid "Go" msgstr "Zbato" #: browse_foreigners.php:168 browse_foreigners.php:172 -#: libraries/Index.class.php:442 libraries/messages.inc.php:459 +#: libraries/Index.class.php:442 libraries/messages.inc.php:455 #: tbl_tracking.php:320 msgid "Keyname" msgstr "Emri i kyçit" #: browse_foreigners.php:169 browse_foreigners.php:171 -#: libraries/messages.inc.php:252 server_collations.php:55 +#: libraries/messages.inc.php:248 server_collations.php:55 #: server_collations.php:67 server_engines.php:59 server_status.php:628 msgid "Description" msgstr "Përshkrimi" #: browse_foreigners.php:247 browse_foreigners.php:256 #: browse_foreigners.php:268 browse_foreigners.php:276 -#: libraries/messages.inc.php:1218 +#: libraries/messages.inc.php:1214 msgid "Use this value" msgstr "Përdor këtë vlerë" -#: db_create.php:46 libraries/messages.inc.php:215 +#: db_create.php:46 libraries/messages.inc.php:211 #, fuzzy, php-format msgid "Database %1$s has been created." msgstr "Databaza %s u eleminua." -#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:232 +#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:228 msgid "Database comment: " msgstr "Komenti për Databazën: " -#: db_datadict.php:165 libraries/messages.inc.php:1070 +#: db_datadict.php:165 libraries/messages.inc.php:1066 #: libraries/tbl_properties.inc.php:724 pdf_schema.php:1236 #: tbl_operations.php:345 tbl_printview.php:130 msgid "Table comments" @@ -109,7 +109,7 @@ msgstr "Komente mbi tabelën" #: db_datadict.php:174 db_qbe.php:174 libraries/Index.class.php:446 #: libraries/export/htmlword.php:244 libraries/export/latex.php:360 #: libraries/export/odt.php:294 libraries/export/texytext.php:233 -#: libraries/messages.inc.php:317 libraries/tbl_properties.inc.php:99 +#: libraries/messages.inc.php:313 libraries/tbl_properties.inc.php:99 #: libraries/tbl_properties.inc.php:275 pdf_schema.php:1262 #: pdf_schema.php:1283 tbl_change.php:308 tbl_indexes.php:189 #: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135 @@ -121,7 +121,7 @@ msgstr "Fusha" #: libraries/db_events.inc.php:31 libraries/db_routines.inc.php:42 #: 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/messages.inc.php:1181 +#: libraries/export/texytext.php:234 libraries/messages.inc.php:1177 #: libraries/tbl_properties.inc.php:100 pdf_schema.php:1263 #: pdf_schema.php:1284 server_privileges.php:2031 tbl_change.php:287 #: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313 @@ -133,7 +133,7 @@ msgstr "Lloji" #: db_datadict.php:177 libraries/Index.class.php:449 #: libraries/export/htmlword.php:246 libraries/export/latex.php:360 #: libraries/export/odt.php:300 libraries/export/texytext.php:235 -#: libraries/messages.inc.php:576 libraries/tbl_properties.inc.php:109 +#: libraries/messages.inc.php:572 libraries/tbl_properties.inc.php:109 #: pdf_schema.php:1265 pdf_schema.php:1286 tbl_change.php:323 #: tbl_printview.php:145 tbl_structure.php:181 tbl_tracking.php:276 #: tbl_tracking.php:327 @@ -142,7 +142,7 @@ msgstr "Null" #: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 -#: libraries/export/texytext.php:236 libraries/messages.inc.php:238 +#: libraries/export/texytext.php:236 libraries/messages.inc.php:234 #: libraries/tbl_properties.inc.php:106 pdf_schema.php:1266 #: pdf_schema.php:1287 tbl_printview.php:146 tbl_structure.php:182 #: tbl_tracking.php:277 @@ -151,14 +151,14 @@ msgstr "Prezgjedhur" #: db_datadict.php:182 libraries/export/htmlword.php:249 #: libraries/export/latex.php:362 libraries/export/odt.php:307 -#: libraries/export/texytext.php:238 libraries/messages.inc.php:483 +#: libraries/export/texytext.php:238 libraries/messages.inc.php:479 #: pdf_schema.php:1268 pdf_schema.php:1289 tbl_printview.php:150 msgid "Links to" msgstr "Lidhje me" #: db_datadict.php:184 db_printview.php:112 libraries/export/htmlword.php:252 #: libraries/export/latex.php:365 libraries/export/odt.php:312 -#: libraries/export/texytext.php:241 libraries/messages.inc.php:163 +#: libraries/export/texytext.php:241 libraries/messages.inc.php:159 #: libraries/tbl_properties.inc.php:130 pdf_schema.php:1279 #: pdf_schema.php:1290 tbl_printview.php:152 msgid "Comments" @@ -167,7 +167,7 @@ msgstr "Komente" #: db_datadict.php:267 libraries/Index.class.php:359 #: 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/messages.inc.php:559 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:555 #: libraries/mult_submits.inc.php:263 pdf_schema.php:1344 #: server_privileges.php:1529 server_privileges.php:1540 #: server_privileges.php:1850 server_privileges.php:1855 @@ -179,7 +179,7 @@ msgstr " Jo " #: db_datadict.php:267 libraries/Index.class.php:360 #: libraries/Index.class.php:385 libraries/export/htmlword.php:322 #: libraries/export/latex.php:430 libraries/export/odt.php:368 -#: libraries/export/texytext.php:311 libraries/messages.inc.php:1257 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:1253 #: libraries/mult_submits.inc.php:45 libraries/mult_submits.inc.php:50 #: libraries/mult_submits.inc.php:55 libraries/mult_submits.inc.php:60 #: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:101 @@ -193,110 +193,110 @@ msgstr " Jo " msgid "Yes" msgstr " Po " -#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:670 +#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:666 #: tbl_printview.php:498 msgid "Print" msgstr "Printo" -#: db_export.php:29 libraries/messages.inc.php:1226 +#: db_export.php:29 libraries/messages.inc.php:1222 msgid "View dump (schema) of database" msgstr "Shfaq dump (skema) e databazës" #: db_export.php:33 db_printview.php:96 db_qbe.php:102 db_structure.php:51 -#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:568 +#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:564 #: navigation.php:346 msgid "No tables found in database." msgstr "Nuk gjenden tabela në databazë." -#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:845 +#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:841 #: server_export.php:27 msgid "Select All" msgstr "Zgjidh gjithçka" -#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1188 +#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1184 #: server_export.php:29 msgid "Unselect All" msgstr "Ç'zgjidh gjithçka" -#: db_operations.php:38 libraries/messages.inc.php:213 tbl_create.php:54 +#: db_operations.php:38 libraries/messages.inc.php:209 tbl_create.php:54 msgid "The database name is empty!" msgstr "Emri i databazës mungon!" -#: db_operations.php:236 libraries/messages.inc.php:753 +#: db_operations.php:236 libraries/messages.inc.php:749 #, php-format msgid "Database %s has been renamed to %s" msgstr "Databazës %s i është ndryshuar emri në %s" -#: db_operations.php:240 libraries/messages.inc.php:178 +#: db_operations.php:240 libraries/messages.inc.php:174 #, fuzzy, php-format msgid "Database %s has been copied to %s" msgstr "Databazës %s i është ndryshuar emri në %s" -#: db_operations.php:410 libraries/messages.inc.php:236 +#: db_operations.php:410 libraries/messages.inc.php:232 msgid "Rename database to" msgstr "Ndysho emrin e databazës në" -#: db_operations.php:415 libraries/messages.inc.php:161 +#: db_operations.php:415 libraries/messages.inc.php:157 #: server_processlist.php:57 msgid "Command" msgstr "Komanda" -#: db_operations.php:425 libraries/messages.inc.php:58 tbl_change.php:1143 +#: db_operations.php:425 libraries/messages.inc.php:54 tbl_change.php:1143 msgid "and then" msgstr "" -#: db_operations.php:451 libraries/messages.inc.php:233 +#: db_operations.php:451 libraries/messages.inc.php:229 #, fuzzy msgid "Copy database to" msgstr "Ndysho emrin e databazës në" -#: db_operations.php:458 libraries/messages.inc.php:1043 +#: db_operations.php:458 libraries/messages.inc.php:1039 #: tbl_operations.php:526 tbl_tracking.php:388 msgid "Structure only" msgstr "Vetëm struktura" -#: db_operations.php:459 libraries/messages.inc.php:1041 +#: db_operations.php:459 libraries/messages.inc.php:1037 #: tbl_operations.php:527 tbl_tracking.php:390 msgid "Structure and data" msgstr "Struktura dhe të dhëna" -#: db_operations.php:460 libraries/messages.inc.php:229 tbl_operations.php:528 +#: db_operations.php:460 libraries/messages.inc.php:225 tbl_operations.php:528 #: tbl_tracking.php:389 msgid "Data only" msgstr "Vetëm të dhëna" -#: db_operations.php:468 libraries/messages.inc.php:186 +#: db_operations.php:468 libraries/messages.inc.php:182 msgid "CREATE DATABASE before copying" msgstr "" #: db_operations.php:471 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 -#: libraries/export/sql.php:82 libraries/messages.inc.php:30 +#: libraries/export/sql.php:82 libraries/messages.inc.php:26 #: tbl_operations.php:534 #, php-format msgid "Add %s" msgstr "" -#: db_operations.php:475 libraries/messages.inc.php:29 tbl_operations.php:297 +#: db_operations.php:475 libraries/messages.inc.php:25 tbl_operations.php:297 #: tbl_operations.php:536 msgid "Add AUTO_INCREMENT value" msgstr "Shto vlerë AUTO_INCREMENT" -#: db_operations.php:479 libraries/messages.inc.php:31 tbl_operations.php:543 +#: db_operations.php:479 libraries/messages.inc.php:27 tbl_operations.php:543 msgid "Add constraints" msgstr "Shto kushte" -#: db_operations.php:492 libraries/messages.inc.php:1059 +#: db_operations.php:492 libraries/messages.inc.php:1055 #, fuzzy msgid "Switch to copied database" msgstr "Kalo tek tabela e kopjuar" -#: db_operations.php:533 libraries/messages.inc.php:89 +#: db_operations.php:533 libraries/messages.inc.php:85 msgid "BLOB Repository" msgstr "" #: db_operations.php:536 db_tracking.php:76 libraries/common.lib.php:1350 -#: libraries/messages.inc.php:1037 libraries/server_links.inc.php:49 +#: libraries/messages.inc.php:1033 libraries/server_links.inc.php:49 #: server_processlist.php:59 tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "Gjendja" @@ -308,12 +308,12 @@ msgctxt "BLOB repository" msgid "Enabled" msgstr "Aktiv" -#: db_operations.php:548 libraries/messages.inc.php:93 +#: db_operations.php:548 libraries/messages.inc.php:89 #, fuzzy msgid "Disable" msgstr "Jo aktiv" -#: db_operations.php:558 libraries/messages.inc.php:90 +#: db_operations.php:558 libraries/messages.inc.php:86 msgid "Damaged" msgstr "" @@ -330,13 +330,13 @@ msgctxt "BLOB repository" msgid "Disabled" msgstr "Jo aktiv" -#: db_operations.php:574 libraries/messages.inc.php:96 +#: db_operations.php:574 libraries/messages.inc.php:92 #, fuzzy msgid "Enable" msgstr "Aktiv" #: db_operations.php:598 libraries/Index.class.php:448 -#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:158 +#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:154 #: 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:361 @@ -345,7 +345,7 @@ msgstr "Aktiv" msgid "Collation" msgstr "Collation" -#: db_operations.php:609 libraries/messages.inc.php:742 main.php:316 +#: db_operations.php:609 libraries/messages.inc.php:738 main.php:316 #: pdf_schema.php:34 #, php-format msgid "" @@ -355,58 +355,58 @@ msgstr "" "Karakteristikat shtesë janë ç'aktivuar për sa i takon funksionimit me " "tabelat e lidhura. Për të zbuluar përse, klikoni %skëtu%s." -#: db_operations.php:645 libraries/messages.inc.php:264 pdf_pages.php:528 +#: db_operations.php:645 libraries/messages.inc.php:260 pdf_pages.php:528 msgid "Display PDF schema" msgstr "Shfaq skemën e PDF" -#: db_operations.php:661 libraries/messages.inc.php:877 pdf_pages.php:529 +#: db_operations.php:661 libraries/messages.inc.php:873 pdf_pages.php:529 msgid "Show grid" msgstr "Shfaq rrjetën" -#: db_operations.php:664 libraries/messages.inc.php:874 pdf_pages.php:530 +#: db_operations.php:664 libraries/messages.inc.php:870 pdf_pages.php:530 msgid "Show color" msgstr "Shfaq ngjyrën" -#: db_operations.php:666 libraries/messages.inc.php:998 pdf_pages.php:531 +#: db_operations.php:666 libraries/messages.inc.php:994 pdf_pages.php:531 msgid "Show dimension of tables" msgstr "Trego madhësinë e tabelave" -#: db_operations.php:669 libraries/messages.inc.php:52 pdf_pages.php:532 +#: db_operations.php:669 libraries/messages.inc.php:48 pdf_pages.php:532 msgid "Display all tables with the same width" msgstr "vizualizon të gjitha tabelat me të njëjtën gjërësi?" -#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:227 +#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:223 #: pdf_pages.php:533 msgid "Data Dictionary" msgstr "Data Dictionary" -#: db_operations.php:674 libraries/messages.inc.php:884 pdf_pages.php:534 +#: db_operations.php:674 libraries/messages.inc.php:880 pdf_pages.php:534 msgid "Only show keys" msgstr "" -#: db_operations.php:676 libraries/messages.inc.php:875 pdf_pages.php:535 +#: db_operations.php:676 libraries/messages.inc.php:871 pdf_pages.php:535 msgid "Data Dictionary Format" msgstr "Formati i Data Dictionary" -#: db_operations.php:678 libraries/messages.inc.php:464 pdf_pages.php:537 +#: db_operations.php:678 libraries/messages.inc.php:460 pdf_pages.php:537 msgid "Landscape" msgstr "Horizontale" -#: db_operations.php:679 libraries/messages.inc.php:663 pdf_pages.php:538 +#: db_operations.php:679 libraries/messages.inc.php:659 pdf_pages.php:538 msgid "Portrait" msgstr "Vertikal" -#: db_operations.php:682 libraries/messages.inc.php:599 pdf_pages.php:541 +#: db_operations.php:682 libraries/messages.inc.php:595 pdf_pages.php:541 msgid "Paper size" msgstr "Përmasat e letrës" -#: db_operations.php:706 libraries/messages.inc.php:281 +#: db_operations.php:706 libraries/messages.inc.php:277 msgid "Edit PDF Pages" msgstr "Ndrysho faqen 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 libraries/messages.inc.php:1087 +#: libraries/header.inc.php:126 libraries/messages.inc.php:1083 #: pdf_pages.php:405 server_privileges.php:1626 server_privileges.php:1682 #: server_privileges.php:1946 server_synchronize.php:423 #: server_synchronize.php:866 tbl_tracking.php:592 test/theme.php:75 @@ -414,176 +414,176 @@ msgid "Table" msgstr "Tabela" #: db_printview.php:105 libraries/db_structure.lib.php:56 -#: libraries/messages.inc.php:735 +#: libraries/messages.inc.php:731 msgid "Records" msgstr "Regjistrime" #: db_printview.php:109 libraries/db_structure.lib.php:67 -#: libraries/messages.inc.php:1003 tbl_indexes.php:190 +#: libraries/messages.inc.php:999 tbl_indexes.php:190 msgid "Size" msgstr "Madhësia" #: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 -#: libraries/export/sql.php:899 libraries/messages.inc.php:436 +#: libraries/export/sql.php:899 libraries/messages.inc.php:432 msgid "in use" msgstr "në përdorim" #: db_printview.php:187 libraries/db_info.inc.php:88 -#: libraries/export/sql.php:514 libraries/messages.inc.php:1032 +#: libraries/export/sql.php:514 libraries/messages.inc.php:1028 #: pdf_schema.php:1241 tbl_printview.php:434 tbl_structure.php:810 msgid "Creation" msgstr "Krijimi" #: db_printview.php:196 libraries/db_info.inc.php:93 -#: libraries/export/sql.php:519 libraries/messages.inc.php:1036 +#: libraries/export/sql.php:519 libraries/messages.inc.php:1032 #: pdf_schema.php:1246 tbl_printview.php:444 tbl_structure.php:818 msgid "Last update" msgstr "Ndryshimi i fundit" #: db_printview.php:205 libraries/db_info.inc.php:98 -#: libraries/export/sql.php:524 libraries/messages.inc.php:1031 +#: libraries/export/sql.php:524 libraries/messages.inc.php:1027 #: pdf_schema.php:1251 tbl_printview.php:454 tbl_structure.php:826 msgid "Last check" msgstr "Kontrolli i fundit" -#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1085 +#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1081 #, php-format msgid "%s table(s)" msgstr "%s tabela(at)" #: db_qbe.php:29 libraries/display_tbl.lib.php:1981 -#: libraries/messages.inc.php:1051 libraries/sql_query_form.lib.php:140 +#: libraries/messages.inc.php:1047 libraries/sql_query_form.lib.php:140 #: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131 #: view_operations.php:62 msgid "Your SQL query has been executed successfully" msgstr "Query u zbatua me sukses" -#: db_qbe.php:42 libraries/messages.inc.php:371 +#: db_qbe.php:42 libraries/messages.inc.php:367 msgid "You have to choose at least one column to display" msgstr "Zgjidh të paktën një kolonë për të parë" #: db_qbe.php:200 libraries/db_structure.lib.php:104 -#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1014 +#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1010 msgid "Sort" msgstr "rreshtimi" #: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111 #: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828 -#: libraries/messages.inc.php:69 server_databases.php:170 +#: libraries/messages.inc.php:65 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314 msgid "Ascending" msgstr "Ngjitje" #: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119 #: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825 -#: libraries/messages.inc.php:251 server_databases.php:170 +#: libraries/messages.inc.php:247 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315 msgid "Descending" msgstr "Zbritës" #: db_qbe.php:264 db_tracking.php:78 libraries/display_tbl.lib.php:308 -#: libraries/messages.inc.php:888 tbl_change.php:277 tbl_tracking.php:597 +#: libraries/messages.inc.php:884 tbl_change.php:277 tbl_tracking.php:597 msgid "Show" msgstr "Shfaq" -#: db_qbe.php:300 libraries/messages.inc.php:202 +#: db_qbe.php:300 libraries/messages.inc.php:198 msgid "Criteria" msgstr "Kriteri" #: db_qbe.php:353 db_qbe.php:435 db_qbe.php:527 db_qbe.php:558 -#: libraries/messages.inc.php:718 +#: libraries/messages.inc.php:714 msgid "Ins" msgstr "Shto" #: db_qbe.php:357 db_qbe.php:439 db_qbe.php:524 db_qbe.php:555 -#: libraries/messages.inc.php:56 +#: libraries/messages.inc.php:52 msgid "And" msgstr "Dhe" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:529 db_qbe.php:560 -#: libraries/messages.inc.php:717 +#: libraries/messages.inc.php:713 msgid "Del" 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/messages.inc.php:592 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:588 #: libraries/tbl_properties.inc.php:779 server_privileges.php:258 #: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288 msgid "Or" msgstr "Ose" -#: db_qbe.php:507 libraries/messages.inc.php:516 +#: db_qbe.php:507 libraries/messages.inc.php:512 msgid "Modify" msgstr "Ndrysho" -#: db_qbe.php:584 libraries/messages.inc.php:33 +#: db_qbe.php:584 libraries/messages.inc.php:29 msgid "Add/Delete Criteria Row" msgstr "Shto/Fshi kriterin" -#: db_qbe.php:596 libraries/messages.inc.php:32 +#: db_qbe.php:596 libraries/messages.inc.php:28 msgid "Add/Delete Field Columns" msgstr "Shto/Fshi fushën" -#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1192 +#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1188 msgid "Update Query" msgstr "Rifresko Query" -#: db_qbe.php:617 libraries/messages.inc.php:1216 +#: db_qbe.php:617 libraries/messages.inc.php:1212 msgid "Use Tables" msgstr "Përdor tabelat" -#: db_qbe.php:640 libraries/messages.inc.php:723 +#: db_qbe.php:640 libraries/messages.inc.php:719 #, php-format msgid "SQL query on database %s:" msgstr "SQL-query tek databaza %s:" -#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:823 +#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:819 msgid "Submit Query" msgstr "Dërgo Query" #: db_search.php:68 libraries/auth/config.auth.lib.php:84 #: libraries/auth/config.auth.lib.php:103 #: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52 -#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:26 +#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:22 msgid "Access denied" msgstr "Hyrja nuk u pranua" -#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:836 +#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:832 msgid "at least one of the words" msgstr "të paktën njërën nga fjalët" -#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:837 +#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:833 msgid "all words" msgstr "të gjitha fjalët" -#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:838 +#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:834 msgid "the exact phrase" msgstr "fraza precize" -#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:839 +#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:835 msgid "as regular expression" msgstr "si shprehje e rregullt" -#: db_search.php:242 libraries/messages.inc.php:840 +#: db_search.php:242 libraries/messages.inc.php:836 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Kërko rezultatet për \"%s\" %s:" -#: db_search.php:260 libraries/messages.inc.php:579 +#: db_search.php:260 libraries/messages.inc.php:575 #, php-format msgid "%s match(es) inside table %s" 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/messages.inc.php:108 +#: db_structure.php:105 libraries/messages.inc.php:104 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468 msgid "Browse" msgstr "Shfaq" #: db_search.php:272 libraries/display_tbl.lib.php:1165 -#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:243 +#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:239 #: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406 #: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377 #: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216 @@ -591,45 +591,45 @@ msgstr "Shfaq" msgid "Delete" msgstr "Fshi" -#: db_search.php:285 libraries/messages.inc.php:580 +#: db_search.php:285 libraries/messages.inc.php:576 #, php-format msgid "Total: %s match(es)" msgstr "Gjithsej: %s korrispondues(ë)" -#: db_search.php:299 libraries/messages.inc.php:832 +#: db_search.php:299 libraries/messages.inc.php:828 msgid "Search in database" msgstr "Kërko në databazë" -#: db_search.php:302 libraries/messages.inc.php:835 +#: db_search.php:302 libraries/messages.inc.php:831 msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgstr "Fjala(ë) apo vlera(at) për t'u kërkuar (karakteri Jolly: \"%\"):" -#: db_search.php:307 libraries/messages.inc.php:842 +#: db_search.php:307 libraries/messages.inc.php:838 msgid "Find:" msgstr "Gjej:" -#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1017 +#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1013 msgid "Words are separated by a space character (\" \")." msgstr "Fjalët janë të ndara me një hapsirë (\" \")." -#: db_search.php:325 libraries/messages.inc.php:834 +#: db_search.php:325 libraries/messages.inc.php:830 msgid "Inside table(s):" msgstr "Tek tabela(at):" -#: db_search.php:355 libraries/messages.inc.php:833 +#: db_search.php:355 libraries/messages.inc.php:829 msgid "Inside field:" 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/messages.inc.php:431 libraries/sql_query_form.lib.php:334 +#: libraries/messages.inc.php:427 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/db_links.inc.php:63 libraries/export/latex.php:337 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:1048 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:1044 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 #: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269 msgid "Structure" @@ -638,8 +638,8 @@ 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:1642 -#: libraries/db_links.inc.php:100 libraries/messages.inc.php:272 +#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/db_links.inc.php:100 libraries/messages.inc.php:268 #: 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 @@ -649,40 +649,40 @@ 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:1641 -#: libraries/messages.inc.php:284 libraries/mult_submits.inc.php:39 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: libraries/messages.inc.php:280 libraries/mult_submits.inc.php:39 #: libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Zbraz" -#: db_structure.php:316 libraries/messages.inc.php:1075 +#: db_structure.php:316 libraries/messages.inc.php:1071 #: libraries/tbl_links.inc.php:100 #, php-format msgid "Table %s has been emptied" msgstr "Tabela %s u zbraz" -#: db_structure.php:326 libraries/messages.inc.php:1229 +#: db_structure.php:326 libraries/messages.inc.php:1225 #: libraries/tbl_links.inc.php:133 #, fuzzy, php-format msgid "View %s has been dropped" msgstr "Fusha %s u eleminua" -#: db_structure.php:326 libraries/messages.inc.php:1074 +#: db_structure.php:326 libraries/messages.inc.php:1070 #: libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "Tabela %s u eleminua" -#: db_structure.php:333 libraries/messages.inc.php:1128 +#: db_structure.php:333 libraries/messages.inc.php:1124 msgid "Tracking is active." msgstr "" -#: db_structure.php:335 libraries/messages.inc.php:1129 +#: db_structure.php:335 libraries/messages.inc.php:1125 msgid "Tracking is not active." msgstr "" #: db_structure.php:420 libraries/display_tbl.lib.php:1944 -#: libraries/messages.inc.php:1228 +#: libraries/messages.inc.php:1224 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -690,84 +690,84 @@ msgid "" msgstr "" #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 -#: libraries/messages.inc.php:1233 libraries/tbl_info.inc.php:66 +#: libraries/messages.inc.php:1229 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/messages.inc.php:773 libraries/server_links.inc.php:70 +#: libraries/messages.inc.php:769 libraries/server_links.inc.php:70 #: server_replication.php:33 server_replication.php:164 server_status.php:258 #, fuzzy msgid "Replication" msgstr "Relacione" -#: db_structure.php:489 libraries/messages.inc.php:1053 +#: db_structure.php:489 libraries/messages.inc.php:1049 msgid "Sum" msgstr "Gjithsej" #: db_structure.php:496 libraries/StorageEngine.class.php:356 -#: libraries/messages.inc.php:239 +#: libraries/messages.inc.php:235 #, 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 #: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086 -#: libraries/messages.inc.php:1243 libraries/mult_submits.inc.php:16 +#: libraries/messages.inc.php:1239 libraries/mult_submits.inc.php:16 #: server_databases.php:346 server_databases.php:351 #: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465 msgid "With selected:" msgstr "N.q.s. të zgjedhur:" #: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: libraries/messages.inc.php:148 server_databases.php:348 +#: libraries/messages.inc.php:144 server_databases.php:348 #: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459 msgid "Check All" msgstr "Zgjidhi të gjithë" #: db_structure.php:531 libraries/display_tbl.lib.php:2077 -#: libraries/messages.inc.php:1184 libraries/replication_gui.lib.php:33 +#: libraries/messages.inc.php:1180 libraries/replication_gui.lib.php:33 #: server_databases.php:350 server_privileges.php:533 #: server_privileges.php:1564 tbl_structure.php:463 msgid "Uncheck All" msgstr "Ç'zgjidhi të gjithë" -#: db_structure.php:536 libraries/messages.inc.php:150 +#: db_structure.php:536 libraries/messages.inc.php:146 msgid "Check tables having overhead" msgstr "Zgjidh të mbingarkuarit" #: db_structure.php:547 db_structure.php:548 db_structure.php:599 -#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:672 +#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:668 #: libraries/mult_submits.inc.php:28 tbl_structure.php:493 #: tbl_structure.php:495 msgid "Print view" msgstr "Shfaq për printim" -#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:153 +#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:149 #: libraries/mult_submits.inc.php:42 tbl_operations.php:579 msgid "Check table" msgstr "Kontrollo tabelën" -#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:590 +#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:586 #: libraries/mult_submits.inc.php:47 tbl_operations.php:619 #: tbl_structure.php:710 tbl_structure.php:712 msgid "Optimize table" msgstr "Optimizo tabelën" -#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:758 +#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:754 #: libraries/mult_submits.inc.php:52 tbl_operations.php:609 msgid "Repair table" msgstr "Riparo tabelën" -#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:55 +#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:51 #: libraries/mult_submits.inc.php:57 tbl_operations.php:599 msgid "Analyze table" msgstr "Analizo tabelën" #: db_structure.php:557 db_structure.php:558 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/messages.inc.php:310 +#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:306 #: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84 #: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109 #: server_privileges.php:1341 setup/frames/menu.inc.php:22 @@ -775,7 +775,7 @@ msgstr "Analizo tabelën" msgid "Export" msgstr "Eksporto" -#: db_tracking.php:66 libraries/messages.inc.php:1151 +#: db_tracking.php:66 libraries/messages.inc.php:1147 msgid "Tracked tables" msgstr "" @@ -783,7 +783,7 @@ msgstr "" #: 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/header_printview.inc.php:58 libraries/messages.inc.php:212 +#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:208 #: navigation.php:233 server_databases.php:169 server_privileges.php:1621 #: server_privileges.php:1682 server_privileges.php:1940 #: server_processlist.php:56 server_synchronize.php:1179 @@ -791,81 +791,81 @@ msgstr "" msgid "Database" msgstr "Databazat" -#: db_tracking.php:73 libraries/messages.inc.php:1146 +#: db_tracking.php:73 libraries/messages.inc.php:1142 msgid "Last version" msgstr "" -#: db_tracking.php:74 libraries/messages.inc.php:1145 tbl_tracking.php:594 +#: db_tracking.php:74 libraries/messages.inc.php:1141 tbl_tracking.php:594 #, fuzzy msgid "Created" msgstr "Krijo" -#: db_tracking.php:75 libraries/messages.inc.php:1147 tbl_tracking.php:595 +#: db_tracking.php:75 libraries/messages.inc.php:1143 tbl_tracking.php:595 msgid "Updated" msgstr "" #: db_tracking.php:77 libraries/Index.class.php:440 -#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:27 +#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:23 #: server_databases.php:203 server_privileges.php:1503 #: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187 msgid "Action" msgstr "Veprimi" -#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:247 +#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:243 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:106 libraries/messages.inc.php:1142 tbl_tracking.php:548 +#: db_tracking.php:106 libraries/messages.inc.php:1138 tbl_tracking.php:548 #: tbl_tracking.php:606 tbl_tracking.php:613 msgid "active" msgstr "" -#: db_tracking.php:108 libraries/messages.inc.php:1143 tbl_tracking.php:550 +#: db_tracking.php:108 libraries/messages.inc.php:1139 tbl_tracking.php:550 #: tbl_tracking.php:608 tbl_tracking.php:610 msgid "not active" msgstr "" -#: db_tracking.php:121 libraries/messages.inc.php:1160 +#: db_tracking.php:121 libraries/messages.inc.php:1156 #, fuzzy msgid "Versions" msgstr "Operacione" -#: db_tracking.php:122 libraries/messages.inc.php:1132 tbl_tracking.php:379 +#: db_tracking.php:122 libraries/messages.inc.php:1128 tbl_tracking.php:379 #: tbl_tracking.php:624 msgid "Tracking report" msgstr "" -#: db_tracking.php:123 libraries/messages.inc.php:1144 tbl_tracking.php:251 +#: db_tracking.php:123 libraries/messages.inc.php:1140 tbl_tracking.php:251 #: tbl_tracking.php:624 #, fuzzy msgid "Structure snapshot" msgstr "Vetëm struktura" -#: db_tracking.php:152 libraries/messages.inc.php:1154 +#: db_tracking.php:152 libraries/messages.inc.php:1150 msgid "Untracked tables" msgstr "" -#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1153 +#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1149 #: tbl_structure.php:529 tbl_structure.php:531 #, fuzzy msgid "Track table" msgstr "Kontrollo tabelën" -#: db_tracking.php:200 libraries/messages.inc.php:1121 +#: db_tracking.php:200 libraries/messages.inc.php:1117 #, fuzzy msgid "Database Log" msgstr "Databazat" -#: export.php:62 libraries/messages.inc.php:312 +#: export.php:62 libraries/messages.inc.php:308 msgid "Selected export type has to be saved in file!" msgstr "" -#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:567 +#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:563 #, php-format msgid "Insufficient space to save the file %s." msgstr "Hapësirë e pamjaftueshme për të ruajtur file %s." -#: export.php:294 libraries/messages.inc.php:324 +#: export.php:294 libraries/messages.inc.php:320 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -873,17 +873,17 @@ msgstr "" "File %s ekziston në server: të lutem, ndrysho emrin e file ose zgjidh " "opcionin \"Mbishkruaj\"." -#: export.php:298 export.php:302 libraries/messages.inc.php:562 +#: export.php:298 export.php:302 libraries/messages.inc.php:558 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Serveri web nuk ka të drejtat e duhura për të ruajtur file %s." -#: export.php:629 libraries/messages.inc.php:276 +#: export.php:629 libraries/messages.inc.php:272 #, php-format msgid "Dump has been saved to file %s." msgstr "Dump u ruajt tek file %s." -#: import.php:60 libraries/messages.inc.php:1202 +#: import.php:60 libraries/messages.inc.php:1198 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation%" @@ -891,21 +891,21 @@ msgid "" msgstr "" #: import.php:279 import.php:332 libraries/File.class.php:849 -#: libraries/File.class.php:961 libraries/messages.inc.php:325 +#: libraries/File.class.php:961 libraries/messages.inc.php:321 msgid "File could not be read" msgstr "File nuk mund të lexohet" #: import.php:287 import.php:296 import.php:315 import.php:324 #: libraries/File.class.php:1031 libraries/File.class.php:1039 #: libraries/File.class.php:1055 libraries/File.class.php:1063 -#: libraries/messages.inc.php:1189 +#: libraries/messages.inc.php:1185 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." msgstr "" -#: import.php:337 libraries/messages.inc.php:547 +#: import.php:337 libraries/messages.inc.php:543 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -913,39 +913,39 @@ msgid "" msgstr "" #: import.php:372 libraries/display_import.lib.php:24 -#: libraries/messages.inc.php:125 +#: libraries/messages.inc.php:121 msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:397 libraries/messages.inc.php:102 +#: import.php:397 libraries/messages.inc.php:98 msgid "The bookmark has been deleted." msgstr "Libërshënuesi u fshi." -#: import.php:401 libraries/messages.inc.php:879 +#: import.php:401 libraries/messages.inc.php:875 msgid "Showing bookmark" msgstr "" -#: import.php:403 libraries/messages.inc.php:101 +#: import.php:403 libraries/messages.inc.php:97 #, php-format msgid "Bookmark %s created" msgstr "" -#: import.php:409 import.php:415 libraries/messages.inc.php:407 +#: import.php:409 import.php:415 libraries/messages.inc.php:403 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" -#: import.php:424 libraries/messages.inc.php:1107 +#: import.php:424 libraries/messages.inc.php:1103 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: index.php:190 libraries/messages.inc.php:553 +#: index.php:190 libraries/messages.inc.php:549 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin funksionon më mirë me shfletues që suportojnë frames" -#: js/messages.php:25 libraries/messages.inc.php:155 +#: js/messages.php:25 libraries/messages.inc.php:151 #: server_synchronize.php:345 server_synchronize.php:357 #: server_synchronize.php:373 server_synchronize.php:380 #: server_synchronize.php:739 server_synchronize.php:767 @@ -953,118 +953,118 @@ msgstr "phpMyAdmin funksionon më mirë me shfletues që suportojnë frames" msgid "Click to select" msgstr "" -#: js/messages.php:26 libraries/messages.inc.php:156 +#: js/messages.php:26 libraries/messages.inc.php:152 msgid "Click to unselect" msgstr "" #: js/messages.php:27 libraries/import.lib.php:103 -#: libraries/messages.inc.php:550 sql.php:89 +#: libraries/messages.inc.php:546 sql.php:89 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Komandat \"DROP DATABASE\" nuk janë aktive." -#: js/messages.php:30 libraries/messages.inc.php:270 +#: js/messages.php:30 libraries/messages.inc.php:266 #: libraries/mult_submits.inc.php:258 sql.php:188 msgid "Do you really want to " msgstr "Konfermo: " -#: js/messages.php:31 libraries/messages.inc.php:271 +#: js/messages.php:31 libraries/messages.inc.php:267 #: libraries/mult_submits.inc.php:258 sql.php:172 msgid "You are about to DESTROY a complete database!" msgstr "Jeni duke SHKATËRRUAR një databazë komplete!" -#: js/messages.php:34 libraries/messages.inc.php:94 +#: js/messages.php:34 libraries/messages.inc.php:90 msgid "You are about to DISABLE a BLOB Repository!" msgstr "" -#: js/messages.php:35 libraries/messages.inc.php:91 +#: js/messages.php:35 libraries/messages.inc.php:87 #, php-format msgid "Are you sure you want to disable all BLOB references for database %s?" msgstr "" -#: js/messages.php:38 libraries/messages.inc.php:342 +#: js/messages.php:38 libraries/messages.inc.php:338 msgid "Missing value in the form!" msgstr "Mungon një vlerë në formular!" -#: js/messages.php:39 libraries/messages.inc.php:570 +#: js/messages.php:39 libraries/messages.inc.php:566 msgid "This is not a number!" msgstr "Ky nuk është një numër!" -#: js/messages.php:42 libraries/messages.inc.php:380 +#: js/messages.php:42 libraries/messages.inc.php:376 msgid "The host name is empty!" msgstr "Emri i host është bosh!" -#: js/messages.php:43 libraries/messages.inc.php:1208 +#: js/messages.php:43 libraries/messages.inc.php:1204 msgid "The user name is empty!" msgstr "Emri i përdoruesit është bosh!" -#: js/messages.php:44 libraries/messages.inc.php:607 +#: js/messages.php:44 libraries/messages.inc.php:603 #: server_privileges.php:1197 user_password.php:70 msgid "The password is empty!" msgstr "Fjalëkalimi është bosh!" -#: js/messages.php:45 libraries/messages.inc.php:609 +#: js/messages.php:45 libraries/messages.inc.php:605 #: server_privileges.php:1195 user_password.php:73 msgid "The passwords aren't the same!" msgstr "Fjalëkalimi nuk korrispondon!" -#: js/messages.php:49 libraries/messages.inc.php:123 pmd_general.php:342 +#: js/messages.php:49 libraries/messages.inc.php:119 pmd_general.php:342 #: pmd_general.php:379 msgid "Cancel" msgstr "" -#: js/messages.php:52 libraries/messages.inc.php:514 +#: js/messages.php:52 libraries/messages.inc.php:510 msgid "Modifications have been saved" msgstr "Ndryshimet u ruajtën" -#: js/messages.php:53 libraries/messages.inc.php:741 +#: js/messages.php:53 libraries/messages.inc.php:737 #, fuzzy msgid "Relation deleted" msgstr "Shiko relacionet" -#: js/messages.php:54 libraries/messages.inc.php:340 +#: js/messages.php:54 libraries/messages.inc.php:336 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:55 libraries/messages.inc.php:434 +#: js/messages.php:55 libraries/messages.inc.php:430 #, fuzzy msgid "Internal relation added" msgstr "Relacione të brendshme" -#: js/messages.php:56 libraries/messages.inc.php:299 +#: js/messages.php:56 libraries/messages.inc.php:295 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:57 libraries/messages.inc.php:300 +#: js/messages.php:57 libraries/messages.inc.php:296 msgid "Error: relation already exists." msgstr "" -#: js/messages.php:58 libraries/messages.inc.php:302 +#: js/messages.php:58 libraries/messages.inc.php:298 msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:59 libraries/messages.inc.php:351 +#: js/messages.php:59 libraries/messages.inc.php:347 #: libraries/relation.lib.php:107 msgid "General relation features" msgstr "Karakteristikat e përgjithshme të relacionit" -#: js/messages.php:59 libraries/messages.inc.php:260 +#: js/messages.php:59 libraries/messages.inc.php:256 #: libraries/relation.lib.php:101 libraries/relation.lib.php:108 msgid "Disabled" msgstr "Jo aktiv" -#: js/messages.php:60 libraries/messages.inc.php:850 +#: js/messages.php:60 libraries/messages.inc.php:846 msgid "Select referenced key" msgstr "" -#: js/messages.php:61 libraries/messages.inc.php:848 +#: js/messages.php:61 libraries/messages.inc.php:844 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:62 libraries/messages.inc.php:653 +#: js/messages.php:62 libraries/messages.inc.php:649 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:63 libraries/messages.inc.php:142 pmd_general.php:77 +#: js/messages.php:63 libraries/messages.inc.php:138 pmd_general.php:77 #: tbl_relation.php:548 msgid "Choose field to display" msgstr "Zgjidh fushën që dëshiron të shohësh" @@ -1084,9 +1084,9 @@ msgid "Prev" msgstr "Paraardhësi" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2332 -#: libraries/common.lib.php:2335 libraries/display_tbl.lib.php:338 -#: libraries/messages.inc.php:543 server_binlog.php:205 server_binlog.php:207 +#: js/messages.php:77 libraries/common.lib.php:2344 +#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: libraries/messages.inc.php:539 server_binlog.php:205 server_binlog.php:207 #: tbl_printview.php:424 tbl_structure.php:802 msgid "Next" msgstr "Në vazhdim" @@ -1161,27 +1161,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1543 +#: js/messages.php:97 libraries/common.lib.php:1555 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1545 +#: js/messages.php:99 libraries/common.lib.php:1557 msgid "Feb" msgstr "Shk" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1547 +#: js/messages.php:101 libraries/common.lib.php:1559 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1549 +#: js/messages.php:103 libraries/common.lib.php:1561 msgid "Apr" msgstr "Pri" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1551 +#: js/messages.php:105 libraries/common.lib.php:1563 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1189,37 +1189,37 @@ msgid "May" msgstr "Maj" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1553 +#: js/messages.php:107 libraries/common.lib.php:1565 msgid "Jun" msgstr "Qer" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1555 +#: js/messages.php:109 libraries/common.lib.php:1567 msgid "Jul" msgstr "Kor" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1557 +#: js/messages.php:111 libraries/common.lib.php:1569 msgid "Aug" msgstr "Gsh" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1559 +#: js/messages.php:113 libraries/common.lib.php:1571 msgid "Sep" msgstr "Sht" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1561 +#: js/messages.php:115 libraries/common.lib.php:1573 msgid "Oct" msgstr "Tet" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1563 +#: js/messages.php:117 libraries/common.lib.php:1575 msgid "Nov" msgstr "Nën" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1565 +#: js/messages.php:119 libraries/common.lib.php:1577 msgid "Dec" msgstr "Dhj" @@ -1260,37 +1260,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1568 +#: js/messages.php:132 libraries/common.lib.php:1580 msgid "Sun" msgstr "Djl" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1570 +#: js/messages.php:134 libraries/common.lib.php:1582 msgid "Mon" msgstr "Hën" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1572 +#: js/messages.php:136 libraries/common.lib.php:1584 msgid "Tue" msgstr "Mar" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1574 +#: js/messages.php:138 libraries/common.lib.php:1586 msgid "Wed" msgstr "Mër" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1576 +#: js/messages.php:140 libraries/common.lib.php:1588 msgid "Thu" msgstr "Enj" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1578 +#: js/messages.php:142 libraries/common.lib.php:1590 msgid "Fri" msgstr "Pre" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1580 +#: js/messages.php:144 libraries/common.lib.php:1592 msgid "Sat" msgstr "Sht" @@ -1364,76 +1364,76 @@ msgstr "në përdorim" msgid "Second" msgstr "në sekondë" -#: libraries/Config.class.php:1015 libraries/messages.inc.php:338 +#: libraries/Config.class.php:1015 libraries/messages.inc.php:334 msgid "Font size" msgstr "" #: libraries/File.class.php:344 libraries/File.class.php:432 #: libraries/File.class.php:569 libraries/File.class.php:708 -#: libraries/messages.inc.php:1201 +#: libraries/messages.inc.php:1197 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.class.php:414 libraries/messages.inc.php:1198 +#: libraries/File.class.php:414 libraries/messages.inc.php:1194 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:417 libraries/messages.inc.php:1197 +#: libraries/File.class.php:417 libraries/messages.inc.php:1193 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:420 libraries/messages.inc.php:1200 +#: libraries/File.class.php:420 libraries/messages.inc.php:1196 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:423 libraries/messages.inc.php:1199 +#: libraries/File.class.php:423 libraries/messages.inc.php:1195 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:426 libraries/messages.inc.php:1195 +#: libraries/File.class.php:426 libraries/messages.inc.php:1191 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:429 libraries/messages.inc.php:1196 +#: libraries/File.class.php:429 libraries/messages.inc.php:1192 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:908 libraries/messages.inc.php:319 +#: libraries/File.class.php:908 libraries/messages.inc.php:315 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "" -#: libraries/Index.class.php:428 libraries/messages.inc.php:554 +#: libraries/Index.class.php:428 libraries/messages.inc.php:550 #: tbl_relation.php:529 msgid "No index defined!" msgstr "Asnjë tregues i përcaktuar!" -#: libraries/Index.class.php:433 libraries/messages.inc.php:411 +#: libraries/Index.class.php:433 libraries/messages.inc.php:407 #: server_databases.php:132 tbl_tracking.php:316 msgid "Indexes" msgstr "Tregues" -#: libraries/Index.class.php:444 libraries/messages.inc.php:1186 +#: libraries/Index.class.php:444 libraries/messages.inc.php:1182 #: 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:475 tbl_tracking.php:322 msgid "Unique" msgstr "I vetëm" -#: libraries/Index.class.php:445 libraries/messages.inc.php:596 +#: libraries/Index.class.php:445 libraries/messages.inc.php:592 #: tbl_tracking.php:323 msgid "Packed" msgstr "" -#: libraries/Index.class.php:447 libraries/messages.inc.php:131 +#: libraries/Index.class.php:447 libraries/messages.inc.php:127 #: tbl_tracking.php:325 msgid "Cardinality" msgstr "" -#: libraries/Index.class.php:450 libraries/messages.inc.php:162 +#: libraries/Index.class.php:450 libraries/messages.inc.php:158 #: tbl_tracking.php:279 tbl_tracking.php:328 #, fuzzy msgid "Comment" @@ -1442,29 +1442,29 @@ msgstr "Komente" #: libraries/Index.class.php:466 libraries/common.lib.php:616 #: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:280 pdf_pages.php:280 +#: libraries/messages.inc.php:276 pdf_pages.php:280 #: setup/frames/index.inc.php:124 setup/lib/messages.inc.php:352 #: tbl_row_action.php:69 msgid "Edit" msgstr "Ndrysho" -#: libraries/Index.class.php:472 libraries/messages.inc.php:666 +#: libraries/Index.class.php:472 libraries/messages.inc.php:662 msgid "The primary key has been dropped" msgstr "Kyçi primar u eleminua" -#: libraries/Index.class.php:476 libraries/messages.inc.php:413 +#: libraries/Index.class.php:476 libraries/messages.inc.php:409 #, php-format msgid "Index %s has been dropped" msgstr "Treguesi %s u eleminua" -#: libraries/Index.class.php:576 libraries/messages.inc.php:412 +#: libraries/Index.class.php:576 libraries/messages.inc.php:408 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "" -#: libraries/List_Database.class.php:431 libraries/messages.inc.php:218 +#: libraries/List_Database.class.php:431 libraries/messages.inc.php:214 #: libraries/server_links.inc.php:41 server_databases.php:88 #: server_privileges.php:1621 setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" @@ -1493,85 +1493,85 @@ msgid_plural "%1$d rows inserted." msgstr[0] "Nuk ka rreshta të zgjedhur" msgstr[1] "Nuk ka rreshta të zgjedhur" -#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:549 +#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:545 msgid "" "There is no detailed status information available for this storage engine." msgstr "" -#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:291 +#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:287 #, php-format msgid "%s is available on this MySQL server." msgstr "" -#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:292 +#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:288 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "" -#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:294 +#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:290 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "" -#: libraries/Table.class.php:1019 libraries/messages.inc.php:443 +#: libraries/Table.class.php:1019 libraries/messages.inc.php:439 msgid "Invalid database" msgstr "" -#: libraries/Table.class.php:1033 libraries/messages.inc.php:450 +#: libraries/Table.class.php:1033 libraries/messages.inc.php:446 #: tbl_get_field.php:26 msgid "Invalid table name" msgstr "" -#: libraries/Table.class.php:1048 libraries/messages.inc.php:301 +#: libraries/Table.class.php:1048 libraries/messages.inc.php:297 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "" -#: libraries/Table.class.php:1132 libraries/messages.inc.php:754 +#: libraries/Table.class.php:1132 libraries/messages.inc.php:750 #, php-format msgid "Table %s has been renamed to %s" msgstr "Tabela %s u riemërtua %s" -#: libraries/Theme.class.php:162 libraries/messages.inc.php:1099 +#: libraries/Theme.class.php:162 libraries/messages.inc.php:1095 #, php-format msgid "No valid image path for theme %s found!" msgstr "" -#: libraries/Theme.class.php:384 libraries/messages.inc.php:1097 +#: libraries/Theme.class.php:384 libraries/messages.inc.php:1093 msgid "No preview available." msgstr "" -#: libraries/Theme.class.php:387 libraries/messages.inc.php:1089 +#: libraries/Theme.class.php:387 libraries/messages.inc.php:1085 msgid "take it" msgstr "merre" -#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1096 +#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1092 #, php-format msgid "Default theme %s not found!" msgstr "" -#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1098 +#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1094 #, php-format msgid "Theme %s not found!" msgstr "" -#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1100 +#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1096 #, php-format msgid "Theme path not found for theme %s!" msgstr "" -#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1101 +#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1097 #: test/theme.php:161 themes.php:21 themes.php:41 msgid "Theme / Style" msgstr "Tema / Stili" -#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:172 +#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:168 msgid "Cannot connect: invalid settings." msgstr "E pamundur lidhja: rregullime të pavlefshme." #: libraries/auth/config.auth.lib.php:92 #: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65 -#: libraries/messages.inc.php:1238 test/theme.php:152 +#: libraries/messages.inc.php:1234 test/theme.php:152 #, php-format msgid "Welcome to %s" msgstr "Mirësevini tek %s" @@ -1595,104 +1595,104 @@ msgstr "" "config.inc.php dhe sigurohu që korrispondojnë me informacionet që ju ka " "dhënë administratori i serverit MySQL." -#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:488 +#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:484 msgid "Log in" msgstr "Hyrja" #: libraries/auth/cookie.auth.lib.php:246 -#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:659 +#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:655 #: libraries/navigation_header.inc.php:93 #: libraries/navigation_header.inc.php:95 msgid "phpMyAdmin documentation" msgstr "Dokumente të phpMyAdmin" #: libraries/auth/cookie.auth.lib.php:258 -#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:492 +#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:488 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:493 +#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:489 msgid "Server:" msgstr "Serveri" -#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:494 +#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:490 msgid "Username:" msgstr "Emri i përdoruesit:" -#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:491 +#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:487 msgid "Password:" msgstr "Fjalëkalimi:" -#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:854 +#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:850 msgid "Server Choice" msgstr "Zgjedhja e serverit" #: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 -#: libraries/messages.inc.php:177 +#: libraries/messages.inc.php:173 msgid "Cookies must be enabled past this point." msgstr "Nga kjo pikë e tutje, cookies duhet të jenë të aktivuara." #: libraries/auth/cookie.auth.lib.php:671 -#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:489 +#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:485 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" #: libraries/auth/cookie.auth.lib.php:675 -#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:544 +#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:540 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" #: libraries/auth/cookie.auth.lib.php:685 #: libraries/auth/cookie.auth.lib.php:687 -#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:126 +#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:122 msgid "Cannot log in to the MySQL server" msgstr "E pamundur kryerja e login tek server-i MySQL" -#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1245 +#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1241 msgid "Wrong username/password. Access denied." msgstr "Emër përdoruesi apo fjalëkalim i gabuar. Ndalohet hyrja." #: libraries/auth/swekey/swekey.auth.lib.php:118 -#: libraries/messages.inc.php:1057 +#: libraries/messages.inc.php:1053 #, php-format msgid "File %s does not contain any key id" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:157 #: libraries/auth/swekey/swekey.auth.lib.php:180 -#: libraries/messages.inc.php:1056 +#: libraries/messages.inc.php:1052 msgid "Hardware authentication failed" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:166 -#: libraries/messages.inc.php:1058 +#: libraries/messages.inc.php:1054 msgid "No valid authentication key plugged" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:202 -#: libraries/messages.inc.php:1055 +#: libraries/messages.inc.php:1051 msgid "Authenticating..." msgstr "" -#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1230 +#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1226 msgid "View image" msgstr "" -#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:652 +#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:648 msgid "Play audio" msgstr "" -#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1232 +#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1228 msgid "View video" msgstr "" -#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:269 +#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:265 msgid "Download file" msgstr "" -#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:128 +#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:124 msgid "" "Couldn't load the iconv or recode extension needed for charset conversion. " "Either configure PHP to enable these extensions or disable charset " @@ -1704,7 +1704,7 @@ msgstr "" #: libraries/charset_conversion.lib.php:79 #: libraries/charset_conversion.lib.php:90 -#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:130 +#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:126 msgid "" "Couldn't use the iconv, libiconv, or recode_string functions, although the " "necessary extensions appear to be loaded. Check your PHP configuration." @@ -1712,7 +1712,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/messages.inc.php:170 +#: libraries/common.inc.php:583 libraries/messages.inc.php:166 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!" @@ -1746,22 +1746,22 @@ msgstr "" msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:636 libraries/messages.inc.php:448 +#: libraries/common.inc.php:636 libraries/messages.inc.php:444 #, 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/messages.inc.php:856 libraries/select_server.lib.php:41 +#: libraries/messages.inc.php:852 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/messages.inc.php:437 +#: libraries/common.inc.php:823 libraries/messages.inc.php:433 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.lib.php:147 libraries/messages.inc.php:499 +#: libraries/common.lib.php:147 libraries/messages.inc.php:495 #, php-format msgid "Max: %s%s" msgstr "Madhësia maksimum: %s%s" @@ -1781,7 +1781,7 @@ msgstr "en" #: libraries/common.lib.php:428 libraries/common.lib.php:430 #: libraries/common.lib.php:432 libraries/common.lib.php:448 #: libraries/common.lib.php:450 libraries/dbg/setup.php:25 -#: libraries/display_export.lib.php:164 libraries/messages.inc.php:267 +#: libraries/display_export.lib.php:164 libraries/messages.inc.php:263 #: libraries/relation.lib.php:97 libraries/sql_query_form.lib.php:451 #: libraries/sql_query_form.lib.php:454 main.php:229 pdf_pages.php:37 #: pdf_pages.php:43 pdf_pages.php:49 pdf_pages.php:54 @@ -1791,55 +1791,55 @@ msgstr "Dokumentet" #: libraries/common.lib.php:581 libraries/core.lib.php:234 #: libraries/core.lib.php:263 libraries/import.lib.php:134 -#: libraries/messages.inc.php:297 pdf_schema.php:32 pdf_schema.php:232 +#: libraries/messages.inc.php:293 pdf_schema.php:32 pdf_schema.php:232 #: tbl_change.php:1027 tbl_operations.php:213 tbl_relation.php:290 #: view_operations.php:62 msgid "Error" msgstr "Gabim" #: libraries/common.lib.php:595 libraries/header_printview.inc.php:61 -#: libraries/messages.inc.php:1023 server_processlist.php:60 +#: libraries/messages.inc.php:1019 server_processlist.php:60 #: server_status.php:247 msgid "SQL query" msgstr "query SQL" -#: libraries/common.lib.php:634 libraries/messages.inc.php:538 +#: libraries/common.lib.php:634 libraries/messages.inc.php:534 msgid "MySQL said: " msgstr "Mesazh nga MySQL: " -#: libraries/common.lib.php:667 libraries/messages.inc.php:76 +#: libraries/common.lib.php:667 libraries/messages.inc.php:72 #: pdf_schema.php:241 user_password.php:115 msgid "Back" msgstr "Mbrapa" -#: libraries/common.lib.php:1177 libraries/messages.inc.php:309 +#: libraries/common.lib.php:1177 libraries/messages.inc.php:305 #: setup/lib/messages.inc.php:353 msgid "Explain SQL" msgstr "Shpjego SQL" -#: libraries/common.lib.php:1180 libraries/messages.inc.php:551 +#: libraries/common.lib.php:1180 libraries/messages.inc.php:547 msgid "Skip Explain SQL" msgstr "Mos shpjego SQL" -#: libraries/common.lib.php:1212 libraries/messages.inc.php:563 +#: libraries/common.lib.php:1212 libraries/messages.inc.php:559 msgid "Without PHP Code" msgstr "pa kod PHP" -#: libraries/common.lib.php:1215 libraries/messages.inc.php:649 +#: libraries/common.lib.php:1215 libraries/messages.inc.php:645 #: setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "Krijo kodin PHP" -#: libraries/common.lib.php:1233 libraries/messages.inc.php:737 +#: libraries/common.lib.php:1233 libraries/messages.inc.php:733 #: server_status.php:341 setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "Rifresko" -#: libraries/common.lib.php:1242 libraries/messages.inc.php:575 +#: libraries/common.lib.php:1242 libraries/messages.inc.php:571 msgid "Skip Validate SQL" msgstr "Mos vleftëso SQL" -#: libraries/common.lib.php:1245 libraries/messages.inc.php:1220 +#: libraries/common.lib.php:1245 libraries/messages.inc.php:1216 #: setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "Vleftëso SQL" @@ -1853,11 +1853,11 @@ msgid "Inline" msgstr "" #: libraries/common.lib.php:1332 libraries/common.lib.php:1347 -#: libraries/messages.inc.php:713 +#: libraries/messages.inc.php:709 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1351 libraries/messages.inc.php:1108 +#: libraries/common.lib.php:1351 libraries/messages.inc.php:1104 #: libraries/tbl_triggers.lib.php:28 server_processlist.php:58 msgid "Time" msgstr "Koha" @@ -1891,46 +1891,56 @@ msgstr "PB" msgid "EiB" msgstr "EB" +#. l10n: Thousands separator +#: libraries/common.lib.php:1417 +msgid "," +msgstr "." + +#. l10n: Decimal separator +#: libraries/common.lib.php:1419 +msgid "." +msgstr "," + #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1584 +#: libraries/common.lib.php:1596 #: libraries/transformations/text_plain__dateformat.inc.php:28 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B, %Y at %I:%M %p" -#: libraries/common.lib.php:1886 +#: libraries/common.lib.php:1898 #, 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:2301 libraries/common.lib.php:2304 -#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:664 +#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:660 #: server_status.php:608 msgid "Begin" msgstr "Fillim" -#: libraries/common.lib.php:2302 libraries/common.lib.php:2305 -#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:665 +#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:661 #: server_binlog.php:168 server_binlog.php:170 msgid "Previous" msgstr "Paraardhësi" -#: libraries/common.lib.php:2333 libraries/common.lib.php:2336 -#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:289 +#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:285 msgid "End" msgstr "Fund" -#: libraries/common.lib.php:2409 libraries/messages.inc.php:455 +#: libraries/common.lib.php:2421 libraries/messages.inc.php:451 #, php-format msgid "Jump to database "%s"." msgstr "Kalo tek databaza "%s"." -#: libraries/common.lib.php:2429 libraries/messages.inc.php:461 +#: libraries/common.lib.php:2441 libraries/messages.inc.php:457 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/core.lib.php:286 libraries/dbg/setup.php:22 -#: libraries/messages.inc.php:127 +#: libraries/messages.inc.php:123 #, php-format msgid "" "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " @@ -1939,116 +1949,116 @@ msgstr "" "I pamundur ngarkimi i prapashtesës %s,
kontrollo konfigurimin e PHP" #: libraries/db_events.inc.php:20 libraries/db_events.inc.php:22 -#: libraries/export/sql.php:415 libraries/messages.inc.php:306 +#: libraries/export/sql.php:415 libraries/messages.inc.php:302 msgid "Events" msgstr "" #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 -#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:541 +#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:537 #: libraries/tbl_triggers.lib.php:27 setup/frames/index.inc.php:112 msgid "Name" msgstr "Emri" -#: libraries/db_links.inc.php:45 libraries/messages.inc.php:216 +#: libraries/db_links.inc.php:45 libraries/messages.inc.php:212 #, php-format msgid "Database %s has been dropped." msgstr "Databaza %s u eleminua." #: libraries/db_links.inc.php:57 libraries/db_links.inc.php:58 -#: libraries/db_links.inc.php:59 libraries/messages.inc.php:234 +#: libraries/db_links.inc.php:59 libraries/messages.inc.php:230 msgid "Database seems to be empty!" msgstr "" -#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1025 +#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1021 #: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60 #: querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1152 +#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1148 #: libraries/tbl_links.inc.php:69 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:86 libraries/messages.inc.php:719 +#: libraries/db_links.inc.php:86 libraries/messages.inc.php:715 msgid "Query" msgstr "Query nga shembull" -#: libraries/db_links.inc.php:91 libraries/messages.inc.php:253 +#: libraries/db_links.inc.php:91 libraries/messages.inc.php:249 msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:98 libraries/messages.inc.php:397 +#: libraries/db_links.inc.php:98 libraries/messages.inc.php:393 #: libraries/server_links.inc.php:88 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:104 libraries/messages.inc.php:587 +#: libraries/db_links.inc.php:104 libraries/messages.inc.php:583 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" msgstr "Operacione" -#: libraries/db_links.inc.php:111 libraries/messages.inc.php:709 +#: libraries/db_links.inc.php:111 libraries/messages.inc.php:705 #: libraries/server_links.inc.php:66 server_privileges.php:72 #: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117 msgid "Privileges" msgstr "Të drejtat" #: libraries/db_routines.inc.php:30 libraries/db_routines.inc.php:32 -#: libraries/messages.inc.php:812 +#: libraries/messages.inc.php:808 msgid "Routines" msgstr "" -#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:811 +#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:807 msgid "Return type" msgstr "" #: libraries/db_structure.lib.php:57 libraries/display_tbl.lib.php:1848 -#: libraries/messages.inc.php:65 +#: libraries/messages.inc.php:61 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "" -#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:593 +#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:589 #: server_databases.php:142 tbl_printview.php:336 tbl_structure.php:683 msgid "Overhead" msgstr "Mbi limit" #: libraries/dbi/mysql.dbi.lib.php:112 libraries/dbi/mysqli.dbi.lib.php:124 -#: libraries/messages.inc.php:176 +#: libraries/messages.inc.php:172 msgid "Connection for controluser as defined in your configuration failed." msgstr "" #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 -#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:855 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:851 msgid "The server is not responding" msgstr "Serveri nuk përgjigjet" #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:1010 +#: libraries/messages.inc.php:1006 msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "" -#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:255 +#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:251 #: tbl_structure.php:609 msgid "Details..." msgstr "" -#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:143 +#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:139 #: main.php:91 user_password.php:111 user_password.php:129 msgid "Change password" msgstr "Ndrysho fjalëkalimin" -#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:561 +#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:557 #: libraries/replication_gui.lib.php:341 server_privileges.php:768 msgid "No Password" msgstr "Asnjë fjalëkalim" -#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:610 +#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:606 #: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60 #: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335 #: libraries/replication_gui.lib.php:345 server_privileges.php:757 @@ -2057,13 +2067,13 @@ msgstr "Asnjë fjalëkalim" msgid "Password" msgstr "Fjalëkalimi" -#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:806 +#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:802 #: libraries/replication_gui.lib.php:349 libraries/replication_gui.lib.php:352 #: server_privileges.php:776 server_privileges.php:779 msgid "Re-type" msgstr "Rifut" -#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:608 +#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:604 msgid "Password Hashing" msgstr "" @@ -2071,91 +2081,91 @@ msgstr "" msgid "MySQL 4.0 compatible" msgstr "" -#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:353 +#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:349 #: libraries/replication_gui.lib.php:356 server_privileges.php:783 msgid "Generate Password" msgstr "" -#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:352 +#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:348 #: libraries/replication_gui.lib.php:359 server_privileges.php:786 #, fuzzy msgid "Generate" msgstr "Gjeneruar nga" #: libraries/display_create_database.lib.php:22 -#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:189 +#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:185 msgid "Create new database" msgstr "Krijo një databazë të re" -#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:185 +#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:181 msgid "Create" msgstr "Krijo" -#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:564 +#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:560 #: server_privileges.php:74 server_privileges.php:1388 #: server_replication.php:35 msgid "No Privileges" msgstr "Asnjë e drejtë" -#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:445 +#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:441 msgid "Table must have at least one field." msgstr "" -#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:190 +#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:186 #, php-format msgid "Create table on database %s" msgstr "Krijo një tabelë të re tek databaza %s" -#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:577 +#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:573 msgid "Number of fields" msgstr "" -#: libraries/display_export.lib.php:42 libraries/messages.inc.php:124 +#: libraries/display_export.lib.php:42 libraries/messages.inc.php:120 msgid "Could not load export plugins, please check your installation!" msgstr "" -#: libraries/display_export.lib.php:107 libraries/messages.inc.php:277 +#: libraries/display_export.lib.php:107 libraries/messages.inc.php:273 #, php-format msgid "Dump %s row(s) starting at record # %s" msgstr "Dump i %s rreshta duke filluar nga rreshti %s." -#: libraries/display_export.lib.php:115 libraries/messages.inc.php:274 +#: libraries/display_export.lib.php:115 libraries/messages.inc.php:270 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:125 libraries/messages.inc.php:852 +#: libraries/display_export.lib.php:125 libraries/messages.inc.php:848 #: setup/lib/messages.inc.php:82 msgid "Save as file" msgstr "Ruaje me emër..." -#: libraries/display_export.lib.php:134 libraries/messages.inc.php:828 +#: libraries/display_export.lib.php:134 libraries/messages.inc.php:824 #, php-format msgid "Save on server in %s directory" msgstr "Ruaje në server tek directory %s" -#: libraries/display_export.lib.php:142 libraries/messages.inc.php:594 +#: libraries/display_export.lib.php:142 libraries/messages.inc.php:590 #: setup/lib/messages.inc.php:90 msgid "Overwrite existing file(s)" msgstr "Mbishkruaj file(s) ekzistues" -#: libraries/display_export.lib.php:148 libraries/messages.inc.php:330 +#: libraries/display_export.lib.php:148 libraries/messages.inc.php:326 msgid "File name template" msgstr "Emri i file template" -#: libraries/display_export.lib.php:152 libraries/messages.inc.php:327 +#: libraries/display_export.lib.php:152 libraries/messages.inc.php:323 #, fuzzy msgid "server name" msgstr "Emri i përdoruesit" -#: libraries/display_export.lib.php:155 libraries/messages.inc.php:326 +#: libraries/display_export.lib.php:155 libraries/messages.inc.php:322 msgid "database name" msgstr "" -#: libraries/display_export.lib.php:158 libraries/messages.inc.php:328 +#: libraries/display_export.lib.php:158 libraries/messages.inc.php:324 msgid "table name" msgstr "" -#: libraries/display_export.lib.php:162 libraries/messages.inc.php:329 +#: libraries/display_export.lib.php:162 libraries/messages.inc.php:325 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2163,24 +2173,24 @@ msgid "" "3$s. Other text will be kept as is." msgstr "" -#: libraries/display_export.lib.php:202 libraries/messages.inc.php:331 +#: libraries/display_export.lib.php:202 libraries/messages.inc.php:327 msgid "remember template" msgstr "kujto template" #: libraries/display_export.lib.php:210 libraries/display_import.lib.php:178 -#: libraries/display_import.lib.php:191 libraries/messages.inc.php:145 +#: libraries/display_import.lib.php:191 libraries/messages.inc.php:141 #: libraries/sql_query_form.lib.php:549 msgid "Character set of the file:" msgstr "Familja gërmave të file:" -#: libraries/display_export.lib.php:235 libraries/messages.inc.php:166 +#: libraries/display_export.lib.php:235 libraries/messages.inc.php:162 #: setup/lib/messages.inc.php:84 msgid "Compression" 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/messages.inc.php:558 +#: libraries/export/sql.php:868 libraries/messages.inc.php:554 #: libraries/tbl_properties.inc.php:575 server_privileges.php:1836 #: server_processlist.php:75 msgid "None" @@ -2204,467 +2214,467 @@ msgstr "\"kompresuar me gzip\"" msgid "bzipped" msgstr "\"kompresuar me bzip2\"" -#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1018 +#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1014 msgid "SQL compatibility mode" msgstr "" -#: libraries/display_import.lib.php:67 libraries/messages.inc.php:398 +#: libraries/display_import.lib.php:67 libraries/messages.inc.php:394 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " "browsers." msgstr "" -#: libraries/display_import.lib.php:77 libraries/messages.inc.php:406 +#: libraries/display_import.lib.php:77 libraries/messages.inc.php:402 msgid "The file is being processed, please be patient." msgstr "" -#: libraries/display_import.lib.php:99 libraries/messages.inc.php:408 +#: libraries/display_import.lib.php:99 libraries/messages.inc.php:404 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." msgstr "" -#: libraries/display_import.lib.php:126 libraries/messages.inc.php:333 +#: libraries/display_import.lib.php:126 libraries/messages.inc.php:329 msgid "File to import" msgstr "" -#: libraries/display_import.lib.php:137 libraries/messages.inc.php:486 +#: libraries/display_import.lib.php:137 libraries/messages.inc.php:482 #: libraries/sql_query_form.lib.php:524 msgid "Location of the text file" msgstr "Pozicioni i file" -#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1203 +#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1199 msgid "File uploads are not allowed on this server." msgstr "" -#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1235 +#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1231 #: libraries/sql_query_form.lib.php:533 tbl_change.php:1028 msgid "The directory you set for upload work cannot be reached" msgstr "Directory që keni zgjedhur për upload nuk arrin të gjehet" -#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1236 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1232 #: libraries/sql_query_form.lib.php:536 tbl_change.php:1031 msgid "web server upload directory" msgstr "directory e upload të server-it web" -#: libraries/display_import.lib.php:212 libraries/messages.inc.php:167 +#: libraries/display_import.lib.php:212 libraries/messages.inc.php:163 #, php-format msgid "Imported file compression will be automatically detected from: %s" msgstr "" -#: libraries/display_import.lib.php:219 libraries/messages.inc.php:600 +#: libraries/display_import.lib.php:219 libraries/messages.inc.php:596 msgid "Partial import" msgstr "" -#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1105 +#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1101 #, php-format msgid "" "Previous import timed out, after resubmitting will continue from position %d." msgstr "" -#: libraries/display_import.lib.php:232 libraries/messages.inc.php:51 +#: libraries/display_import.lib.php:232 libraries/messages.inc.php:47 msgid "" "Allow the interruption of an import in case the script detects it is close " "to the PHP timeout limit. This might be good way to import large files, " "however it can break transactions." msgstr "" -#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1004 +#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1000 #: setup/lib/messages.inc.php:161 msgid "Number of records (queries) to skip from start" msgstr "" -#: libraries/display_import.lib.php:255 libraries/messages.inc.php:396 +#: libraries/display_import.lib.php:255 libraries/messages.inc.php:392 #: setup/lib/messages.inc.php:160 msgid "Format of imported file" msgstr "" #: libraries/display_select_lang.lib.php:45 -#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:465 +#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:461 #: setup/frames/index.inc.php:70 msgid "Language" msgstr "" -#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:447 +#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:443 #, php-format msgid "%d is not valid row number." msgstr "" -#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:814 +#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:810 msgid "row(s) starting from record #" msgstr "rreshta duke filluar nga" -#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:817 +#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:813 msgid "horizontal" msgstr " horizontal " -#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:816 +#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:812 msgid "horizontal (rotated headers)" msgstr "horizontal (headers të rrotulluar)" -#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:819 +#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:815 msgid "vertical" msgstr " vertikal " -#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:818 +#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:814 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr " në modalitetin %s dhe përsërit headers mbas %s qelish " -#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:495 +#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:491 msgid "This operation could take a long time. Proceed anyway?" msgstr "" -#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1012 +#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1008 msgid "Sort by key" msgstr "Rendit sipas kyçit" #: libraries/display_tbl.lib.php:555 libraries/import.lib.php:1082 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:591 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:587 #: tbl_select.php:267 tbl_structure.php:754 #, fuzzy msgid "Options" msgstr "Operacione" #: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:570 -#: libraries/messages.inc.php:601 +#: libraries/messages.inc.php:597 msgid "Partial Texts" msgstr "Tekst i pjesëshëm" #: libraries/display_tbl.lib.php:561 libraries/display_tbl.lib.php:574 -#: libraries/messages.inc.php:346 +#: libraries/messages.inc.php:342 msgid "Full Texts" msgstr "Teksti i plotë" -#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:739 +#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:735 #, fuzzy msgid "Relational key" msgstr "Skema relacionale" -#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:738 +#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:734 msgid "Relational display field" msgstr "" -#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:872 +#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:868 msgid "Show binary contents" msgstr "" -#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:873 +#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:869 msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:871 +#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:867 msgid "Show binary contents as HEX" msgstr "" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:375 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:371 #: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320 msgid "Hide" msgstr "" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:508 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:504 #: libraries/tbl_properties.inc.php:144 transformation_overview.php:47 msgid "Browser transformation" msgstr "Transformimi i Shfletuesit" #: libraries/display_tbl.lib.php:1126 libraries/display_tbl.lib.php:1130 -#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:308 +#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:304 msgid "Execute bookmarked query" msgstr "Zbaton query nga libërshënuesi" #: libraries/display_tbl.lib.php:1145 libraries/display_tbl.lib.php:1157 -#: libraries/messages.inc.php:244 +#: libraries/messages.inc.php:240 msgid "The row has been deleted" msgstr "rreshti u fshi" #: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056 -#: libraries/messages.inc.php:460 server_processlist.php:71 +#: libraries/messages.inc.php:456 server_processlist.php:71 #: tbl_row_action.php:64 msgid "Kill" msgstr "Hiq" -#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:849 +#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:845 msgid "in query" msgstr "tek query" -#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:881 +#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:877 msgid "Showing rows" msgstr "Shfaqja e regjistrimeve " -#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1113 +#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1109 msgid "total" msgstr "Gjithsej" -#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:727 +#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:723 #: sql.php:524 #, php-format msgid "Query took %01.4f sec" msgstr "Query ka zgjatur %01.4f sec" -#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:135 +#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:131 #: 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:471 msgid "Change" msgstr "Ndrysho" -#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:724 +#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:720 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:671 +#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:667 msgid "Print view (with full texts)" msgstr "Shfaq për printim (me full text)" -#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:482 +#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:478 msgid "Link not found" msgstr "Lidhja nuk u gjet" -#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1224 +#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1220 #: main.php:228 #, fuzzy msgid "Version information" msgstr "Informacione mbi Identifikimin" -#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:423 +#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:419 msgid "Data home directory" msgstr "" -#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:424 +#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:420 msgid "The common part of the directory path for all InnoDB data files." msgstr "" -#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:422 +#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:418 #, fuzzy msgid "Data files" msgstr "Vetëm të dhëna" -#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:418 +#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:414 msgid "Autoextend increment" msgstr "" -#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:419 +#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:415 msgid "" " The increment size for extending the size of an autoextending tablespace " "when it becomes full." msgstr "" -#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:420 +#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:416 msgid "Buffer pool size" msgstr "" -#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:421 +#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:417 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." msgstr "" -#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:112 +#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:108 msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:426 +#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:422 #: server_status.php:306 msgid "InnoDB Status" msgstr "Gjëndja InnoDB" -#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:113 +#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:109 msgid "Buffer Pool Usage" msgstr "" -#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1114 +#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1110 #: server_databases.php:137 server_databases.php:305 server_status.php:414 #: server_status.php:475 server_status.php:496 tbl_printview.php:351 #: tbl_structure.php:697 msgid "Total" msgstr "Gjithsej" -#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:425 +#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:421 msgid "pages" msgstr "" -#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:343 +#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:339 msgid "Free pages" msgstr "" -#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:259 +#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:255 msgid "Dirty pages" msgstr "" -#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:230 +#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:226 msgid "Pages containing data" msgstr "" -#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:598 +#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:594 #, fuzzy msgid "Pages to be flushed" msgstr "Tabela %s u rifreskua" -#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:119 +#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:115 msgid "Busy pages" msgstr "" -#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:467 +#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:463 msgid "Latched pages" msgstr "" -#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:111 +#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:107 msgid "Buffer Pool Activity" msgstr "" -#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:731 +#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:727 msgid "Read requests" msgstr "" -#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1244 +#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1240 msgid "Write requests" msgstr "" -#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:115 +#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:111 msgid "Read misses" msgstr "" -#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:117 +#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:113 msgid "Write waits" msgstr "" -#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:114 +#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:110 msgid "Read misses in %" msgstr "" -#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:116 +#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:112 msgid "Write waits in %" msgstr "" -#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:522 +#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:518 msgid "Data pointer size" msgstr "" -#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:523 +#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:519 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." msgstr "" -#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:528 +#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:524 msgid "Automatic recovery mode" msgstr "" -#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:529 +#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:525 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." msgstr "" -#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:527 +#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:523 msgid "Maximum size for temporary sort files" msgstr "" -#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:526 +#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:522 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " "INFILE)." msgstr "" -#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:525 +#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:521 msgid "Maximum size for temporary files on index creation" msgstr "" -#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:524 +#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:520 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " "method." msgstr "" -#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:531 +#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:527 msgid "Repair threads" msgstr "" -#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:530 +#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:526 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." msgstr "" -#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:533 +#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:529 msgid "Sort buffer size" msgstr "" -#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:532 +#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:528 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." msgstr "" -#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:620 +#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:616 msgid "Index cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:619 +#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:615 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." msgstr "" -#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:630 +#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:626 msgid "Record cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:629 +#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:625 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " "to the handle data (.xtd) and row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:624 +#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:620 msgid "Log cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:623 +#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:619 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:628 +#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:624 msgid "Log file threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:627 +#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:623 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:634 +#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:630 msgid "Transaction buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:633 +#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:629 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." msgstr "" -#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:611 +#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:607 msgid "Checkpoint frequency" msgstr "" -#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:612 +#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:608 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." msgstr "" -#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:615 +#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:611 msgid "Data log threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:616 +#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:612 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -2672,48 +2682,48 @@ msgid "" "that can be stored in the database." msgstr "" -#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:618 +#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:614 msgid "Garbage threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:617 +#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:613 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." msgstr "" -#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:622 +#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:618 msgid "Log buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:621 +#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:617 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " "required to write a data log." msgstr "" -#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:613 +#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:609 msgid "Data file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:614 +#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:610 msgid "The grow size of the handle data (.xtd) files." msgstr "" -#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:632 +#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:628 msgid "Row file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:631 +#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:627 msgid "The grow size of the row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:626 +#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:622 msgid "Log file count" msgstr "" -#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:625 +#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:621 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -2723,19 +2733,19 @@ msgstr "" #: libraries/export/htmlword.php:132 libraries/export/odt.php:168 #: libraries/export/sql.php:881 libraries/export/texytext.php:130 -#: libraries/messages.inc.php:275 +#: libraries/messages.inc.php:271 msgid "Dumping data for table" msgstr "Dump i të dhënave për tabelën" #: libraries/export/htmlword.php:185 libraries/export/odt.php:238 #: libraries/export/sql.php:785 libraries/export/texytext.php:177 -#: libraries/messages.inc.php:1086 +#: libraries/messages.inc.php:1082 msgid "Table structure for table" msgstr "Struktura e tabelës" #: libraries/export/latex.php:125 libraries/export/sql.php:232 #: libraries/export/xml.php:102 libraries/header_printview.inc.php:57 -#: libraries/messages.inc.php:381 libraries/replication_gui.lib.php:63 +#: libraries/messages.inc.php:377 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:170 libraries/replication_gui.lib.php:265 #: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325 #: server_privileges.php:692 server_privileges.php:695 @@ -2747,189 +2757,189 @@ msgstr "Host" #: libraries/export/latex.php:130 libraries/export/sql.php:233 #: libraries/export/xml.php:107 libraries/header_printview.inc.php:59 -#: libraries/messages.inc.php:354 +#: libraries/messages.inc.php:350 msgid "Generation Time" msgstr "Gjeneruar më" #: libraries/export/latex.php:131 libraries/export/sql.php:235 -#: libraries/export/xml.php:108 libraries/messages.inc.php:864 main.php:186 +#: libraries/export/xml.php:108 libraries/messages.inc.php:860 main.php:186 msgid "Server version" msgstr "Versioni i MySQL" #: libraries/export/latex.php:132 libraries/export/sql.php:236 -#: libraries/export/xml.php:109 libraries/messages.inc.php:651 +#: libraries/export/xml.php:109 libraries/messages.inc.php:647 msgid "PHP Version" msgstr "Versioni i PHP" #: libraries/export/latex.php:201 libraries/export/sql.php:868 -#: libraries/messages.inc.php:226 server_databases.php:127 +#: libraries/messages.inc.php:222 server_databases.php:127 #: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317 #: tbl_structure.php:666 msgid "Data" msgstr "Të dhëna" -#: libraries/export/odt.php:318 libraries/messages.inc.php:506 +#: libraries/export/odt.php:318 libraries/messages.inc.php:502 #: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "Lloji MIME" -#: libraries/export/sql.php:387 libraries/messages.inc.php:711 +#: libraries/export/sql.php:387 libraries/messages.inc.php:707 #, fuzzy msgid "Procedures" msgstr "Proceset" -#: libraries/export/sql.php:401 libraries/messages.inc.php:348 +#: libraries/export/sql.php:401 libraries/messages.inc.php:344 #, fuzzy msgid "Functions" msgstr "Funksioni" -#: libraries/export/sql.php:618 libraries/messages.inc.php:174 +#: libraries/export/sql.php:618 libraries/messages.inc.php:170 msgid "Constraints for dumped tables" msgstr "Kushtet për tabelat e nxjerra" -#: libraries/export/sql.php:627 libraries/messages.inc.php:175 +#: libraries/export/sql.php:627 libraries/messages.inc.php:171 msgid "Constraints for table" msgstr "Kushtet për tabelën" -#: libraries/export/sql.php:727 libraries/messages.inc.php:512 +#: libraries/export/sql.php:727 libraries/messages.inc.php:508 msgid "MIME TYPES FOR TABLE" msgstr "LLOJET E MIME PËR TABELËN" -#: libraries/export/sql.php:739 libraries/messages.inc.php:743 +#: libraries/export/sql.php:739 libraries/messages.inc.php:739 msgid "RELATIONS FOR TABLE" msgstr "RELACIONET PËR TABELËN" -#: libraries/export/sql.php:796 libraries/messages.inc.php:1178 +#: libraries/export/sql.php:796 libraries/messages.inc.php:1174 #: libraries/tbl_triggers.lib.php:19 msgid "Triggers" msgstr "" -#: libraries/export/sql.php:808 libraries/messages.inc.php:1046 +#: libraries/export/sql.php:808 libraries/messages.inc.php:1042 #, fuzzy msgid "Structure for view" msgstr "Vetëm struktura" -#: libraries/export/sql.php:817 libraries/messages.inc.php:1029 +#: libraries/export/sql.php:817 libraries/messages.inc.php:1025 msgid "Stand-in structure for view" msgstr "" #: libraries/footer.inc.php:184 libraries/footer.inc.php:195 -#: libraries/footer.inc.php:198 libraries/messages.inc.php:586 +#: libraries/footer.inc.php:198 libraries/messages.inc.php:582 msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/header.inc.php:115 libraries/messages.inc.php:542 +#: libraries/header.inc.php:115 libraries/messages.inc.php:538 #, fuzzy msgid "New table" msgstr "Asnjë tabelë" #: libraries/header_printview.inc.php:50 libraries/header_printview.inc.php:55 -#: libraries/messages.inc.php:1024 +#: libraries/messages.inc.php:1020 msgid "SQL result" msgstr "Rezultati SQL" -#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:350 +#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:346 msgid "Generated by" msgstr "Gjeneruar nga" #: libraries/header_printview.inc.php:63 libraries/import.lib.php:145 -#: libraries/messages.inc.php:820 navigation.php:652 navigation.php:674 +#: libraries/messages.inc.php:816 navigation.php:652 navigation.php:674 #: server_databases.php:122 tbl_printview.php:394 tbl_structure.php:366 #: tbl_structure.php:778 msgid "Rows" msgstr "rreshta" -#: libraries/import.lib.php:150 libraries/messages.inc.php:285 sql.php:520 +#: libraries/import.lib.php:150 libraries/messages.inc.php:281 sql.php:520 #: tbl_change.php:181 tbl_get_field.php:35 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL ka kthyer një të përbashkët boshe (p.sh. zero rreshta)." -#: libraries/import.lib.php:1078 libraries/messages.inc.php:399 +#: libraries/import.lib.php:1078 libraries/messages.inc.php:395 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1079 libraries/messages.inc.php:400 +#: libraries/import.lib.php:1079 libraries/messages.inc.php:396 msgid "View a structure`s contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1080 libraries/messages.inc.php:401 +#: libraries/import.lib.php:1080 libraries/messages.inc.php:397 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1081 libraries/messages.inc.php:402 +#: libraries/import.lib.php:1081 libraries/messages.inc.php:398 msgid "Edit its structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1084 libraries/messages.inc.php:362 +#: libraries/import.lib.php:1084 libraries/messages.inc.php:358 #, fuzzy msgid "Go to database" msgstr "Asnjë databazë" #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:869 +#: libraries/messages.inc.php:865 msgid "settings" msgstr "" -#: libraries/import.lib.php:1106 libraries/messages.inc.php:363 +#: libraries/import.lib.php:1106 libraries/messages.inc.php:359 msgid "Go to table" msgstr "" -#: libraries/import.lib.php:1109 libraries/messages.inc.php:1047 +#: libraries/import.lib.php:1109 libraries/messages.inc.php:1043 #, fuzzy msgid "structure" msgstr "Struktura" -#: libraries/import.lib.php:1115 libraries/messages.inc.php:364 +#: libraries/import.lib.php:1115 libraries/messages.inc.php:360 msgid "Go to view" msgstr "" #: libraries/import/csv.php:58 libraries/import/csv.php:70 #: libraries/import/csv.php:74 libraries/import/csv.php:78 -#: libraries/messages.inc.php:442 +#: libraries/messages.inc.php:438 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "" -#: libraries/import/csv.php:59 libraries/messages.inc.php:323 +#: libraries/import/csv.php:59 libraries/messages.inc.php:319 msgid "Fields terminated by" msgstr "Fushë që mbaron me" -#: libraries/import/csv.php:71 libraries/messages.inc.php:320 +#: libraries/import/csv.php:71 libraries/messages.inc.php:316 msgid "Fields enclosed by" msgstr "Fushë e përbërë nga" -#: libraries/import/csv.php:75 libraries/messages.inc.php:321 +#: libraries/import/csv.php:75 libraries/messages.inc.php:317 msgid "Fields escaped by" msgstr "Fushë e kufizuar nga" -#: libraries/import/csv.php:79 libraries/messages.inc.php:481 +#: libraries/import/csv.php:79 libraries/messages.inc.php:477 msgid "Lines terminated by" msgstr "Rreshta që mbarojnë me" -#: libraries/import/csv.php:119 libraries/messages.inc.php:439 +#: libraries/import/csv.php:119 libraries/messages.inc.php:435 #, php-format msgid "Invalid column (%s) specified!" msgstr "" #: libraries/import/csv.php:177 libraries/import/csv.php:424 -#: libraries/messages.inc.php:441 +#: libraries/messages.inc.php:437 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/import/csv.php:312 libraries/messages.inc.php:440 +#: libraries/import/csv.php:312 libraries/messages.inc.php:436 #, php-format msgid "Invalid field count in CSV input on line %d." msgstr "" -#: libraries/import/ldi.php:55 libraries/messages.inc.php:446 +#: libraries/import/ldi.php:55 libraries/messages.inc.php:442 msgid "This plugin does not support compressed imports!" msgstr "" #: libraries/import/xml.php:74 libraries/import/xml.php:130 -#: libraries/messages.inc.php:1247 +#: libraries/messages.inc.php:1243 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -2958,447 +2968,437 @@ msgstr "" msgid "ltr" msgstr "ltr" -#. l10n: Thousands separator -#: libraries/messages.inc.php:21 -msgid "," -msgstr "." - -#. l10n: Decimal separator -#: libraries/messages.inc.php:23 -msgid "." -msgstr "," - -#: libraries/messages.inc.php:25 server_status.php:461 +#: libraries/messages.inc.php:21 server_status.php:461 msgid "Aborted" msgstr "Dështoi" -#: libraries/messages.inc.php:28 main.php:68 +#: libraries/messages.inc.php:24 main.php:68 #, fuzzy msgid "Actions" msgstr "Veprimi" -#: libraries/messages.inc.php:34 libraries/tbl_properties.inc.php:780 +#: libraries/messages.inc.php:30 libraries/tbl_properties.inc.php:780 #: tbl_structure.php:543 #, fuzzy, php-format msgid "Add %s field(s)" msgstr "Shto një fushë të re" -#: libraries/messages.inc.php:35 +#: libraries/messages.inc.php:31 msgid "Add custom comment into header (\\n splits lines)" msgstr "Shto një koment të personalizuar në header (\\n ndërpret rreshtin)" -#: libraries/messages.inc.php:36 +#: libraries/messages.inc.php:32 msgid "Add into comments" msgstr "Shto tek komentet" -#: libraries/messages.inc.php:37 tbl_structure.php:541 +#: libraries/messages.inc.php:33 tbl_structure.php:541 msgid "Add new field" msgstr "Shto një fushë të re" -#: libraries/messages.inc.php:38 server_privileges.php:1886 +#: libraries/messages.inc.php:34 server_privileges.php:1886 msgid "Add privileges on the following database" msgstr "Shto të drejta tek databaza në vazhdim" -#: libraries/messages.inc.php:39 server_privileges.php:1907 +#: libraries/messages.inc.php:35 server_privileges.php:1907 msgid "Add privileges on the following table" msgstr "Shto të drejta tek tabela në vazhdim" -#: libraries/messages.inc.php:40 tbl_select.php:288 +#: libraries/messages.inc.php:36 tbl_select.php:288 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Shto kushte kërkimi (trupi i specifikimit \"where\"):" -#: libraries/messages.inc.php:41 tbl_indexes.php:251 +#: libraries/messages.inc.php:37 tbl_indexes.php:251 #, php-format msgid "Add to index  %s column(s)" msgstr "Shto tek treguesi i  %s kolonës(ave)" -#: libraries/messages.inc.php:42 server_privileges.php:1570 +#: libraries/messages.inc.php:38 server_privileges.php:1570 #: server_privileges.php:1594 server_privileges.php:1988 #: server_privileges.php:2177 msgid "Add a new User" msgstr "Shto një përdorues të ri" -#: libraries/messages.inc.php:43 server_privileges.php:931 +#: libraries/messages.inc.php:39 server_privileges.php:931 msgid "You have added a new user." msgstr "Ke shtuar një përdorues të ri." -#: libraries/messages.inc.php:44 server_privileges.php:571 +#: libraries/messages.inc.php:40 server_privileges.php:571 msgid "Administration" msgstr "Administrimi" -#: libraries/messages.inc.php:45 tbl_structure.php:557 +#: libraries/messages.inc.php:41 tbl_structure.php:557 #, php-format msgid "After %s" msgstr "Mbas %s" -#: libraries/messages.inc.php:46 tbl_change.php:1147 +#: libraries/messages.inc.php:42 tbl_change.php:1147 msgid "Go back to previous page" msgstr "Mbrapa" -#: libraries/messages.inc.php:47 tbl_change.php:1148 +#: libraries/messages.inc.php:43 tbl_change.php:1148 msgid "Insert another new row" msgstr "Shto një regjistrim të ri" -#: libraries/messages.inc.php:48 tbl_change.php:1160 +#: libraries/messages.inc.php:44 tbl_change.php:1160 msgid "Edit next row" msgstr "" -#: libraries/messages.inc.php:49 tbl_change.php:1152 +#: libraries/messages.inc.php:45 tbl_change.php:1152 msgid "Go back to this page" msgstr "Kthehu mbrapa tek kjo faqe" -#: libraries/messages.inc.php:50 querywindow.php:115 +#: libraries/messages.inc.php:46 querywindow.php:115 msgid "All" msgstr "Të gjithë" -#: libraries/messages.inc.php:53 tbl_operations.php:249 +#: libraries/messages.inc.php:49 tbl_operations.php:249 msgid "Alter table order by" msgstr "Transformo tabelën e renditur sipas" -#: libraries/messages.inc.php:54 tbl_operations.php:660 +#: libraries/messages.inc.php:50 tbl_operations.php:660 msgid "Analyze" msgstr "" -#: libraries/messages.inc.php:57 +#: libraries/messages.inc.php:53 #, fuzzy msgid "and" msgstr "Dhe" -#: libraries/messages.inc.php:59 pmd_general.php:87 +#: libraries/messages.inc.php:55 pmd_general.php:87 msgid "Angular links" msgstr "" -#: libraries/messages.inc.php:60 tbl_structure.php:401 tbl_structure.php:415 +#: libraries/messages.inc.php:56 tbl_structure.php:401 tbl_structure.php:415 #: tbl_structure.php:429 #, php-format msgid "An index has been added on %s" msgstr "Një tregues u shtua tek %s" -#: libraries/messages.inc.php:61 server_privileges.php:1521 +#: libraries/messages.inc.php:57 server_privileges.php:1521 #: server_privileges.php:2123 msgid "Any" msgstr "Çfarëdo" -#: libraries/messages.inc.php:62 libraries/replication_gui.lib.php:298 +#: libraries/messages.inc.php:58 libraries/replication_gui.lib.php:298 #: server_privileges.php:725 msgid "Any host" msgstr "Çfarëdo host" -#: libraries/messages.inc.php:63 libraries/replication_gui.lib.php:250 +#: libraries/messages.inc.php:59 libraries/replication_gui.lib.php:250 #: server_privileges.php:677 msgid "Any user" msgstr "Çfarëdo përdorues" -#: libraries/messages.inc.php:64 server_synchronize.php:449 +#: libraries/messages.inc.php:60 server_synchronize.php:449 #: server_synchronize.php:894 msgid "Apply Selected Changes" msgstr "" -#: libraries/messages.inc.php:66 tbl_structure.php:386 +#: libraries/messages.inc.php:62 tbl_structure.php:386 #, php-format msgid "A primary key has been added on %s" msgstr "Një kyç primar u shtua tek %s" -#: libraries/messages.inc.php:67 libraries/mysql_charsets.lib.php:368 +#: libraries/messages.inc.php:63 libraries/mysql_charsets.lib.php:368 msgid "Arabic" msgstr "Arabisht" -#: libraries/messages.inc.php:68 libraries/mysql_charsets.lib.php:359 +#: libraries/messages.inc.php:64 libraries/mysql_charsets.lib.php:359 msgid "Armenian" msgstr "Armene" -#: libraries/messages.inc.php:70 libraries/tbl_properties.inc.php:394 +#: libraries/messages.inc.php:66 libraries/tbl_properties.inc.php:394 msgid "As defined:" msgstr "" -#: libraries/messages.inc.php:71 tbl_structure.php:556 +#: libraries/messages.inc.php:67 tbl_structure.php:556 msgid "At Beginning of Table" msgstr "Në fillim të tabelës" -#: libraries/messages.inc.php:72 tbl_structure.php:555 +#: libraries/messages.inc.php:68 tbl_structure.php:555 msgid "At End of Table" msgstr "Në fund të tabelës" -#: libraries/messages.inc.php:73 libraries/tbl_properties.inc.php:108 +#: libraries/messages.inc.php:69 libraries/tbl_properties.inc.php:108 #: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:144 #: tbl_structure.php:180 msgid "Attributes" msgstr "Pronësi" -#: libraries/messages.inc.php:74 pdf_pages.php:303 pdf_pages.php:306 +#: libraries/messages.inc.php:70 pdf_pages.php:303 pdf_pages.php:306 msgid "Automatic layout" msgstr "Faqosje automatike" -#: libraries/messages.inc.php:77 libraries/mysql_charsets.lib.php:354 +#: libraries/messages.inc.php:73 libraries/mysql_charsets.lib.php:354 msgid "Baltic" msgstr "Baltike" -#: libraries/messages.inc.php:78 libraries/sqlparser.lib.php:175 +#: libraries/messages.inc.php:74 libraries/sqlparser.lib.php:175 msgid "BEGIN CUT" msgstr "FILLIMI I CUT" -#: libraries/messages.inc.php:79 libraries/sqlparser.lib.php:179 +#: libraries/messages.inc.php:75 libraries/sqlparser.lib.php:179 msgid "BEGIN RAW" msgstr "FILLIMI I RAW" -#: libraries/messages.inc.php:80 libraries/mysql_charsets.lib.php:201 +#: libraries/messages.inc.php:76 libraries/mysql_charsets.lib.php:201 #: libraries/mysql_charsets.lib.php:402 tbl_change.php:518 msgid "Binary" msgstr "Binar" -#: libraries/messages.inc.php:81 tbl_change.php:894 +#: libraries/messages.inc.php:77 tbl_change.php:894 msgid "Binary - do not edit" msgstr "Të dhëna të tipit binar - mos ndrysho" -#: libraries/messages.inc.php:82 libraries/server_links.inc.php:76 +#: libraries/messages.inc.php:78 libraries/server_links.inc.php:76 #: server_binlog.php:110 server_status.php:253 test/theme.php:121 #, fuzzy msgid "Binary log" msgstr "Binar" -#: libraries/messages.inc.php:83 server_binlog.php:217 +#: libraries/messages.inc.php:79 server_binlog.php:217 #, fuzzy msgid "Event type" msgstr "Lloji i Eksportit" -#: libraries/messages.inc.php:84 server_binlog.php:220 +#: libraries/messages.inc.php:80 server_binlog.php:220 #, fuzzy msgid "Information" msgstr "Informacione mbi Identifikimin" -#: libraries/messages.inc.php:85 server_binlog.php:215 +#: libraries/messages.inc.php:81 server_binlog.php:215 msgid "Log name" msgstr "" -#: libraries/messages.inc.php:86 server_binlog.php:219 +#: libraries/messages.inc.php:82 server_binlog.php:219 msgid "Original position" msgstr "" -#: libraries/messages.inc.php:87 server_binlog.php:216 +#: libraries/messages.inc.php:83 server_binlog.php:216 msgid "Position" msgstr "" -#: libraries/messages.inc.php:88 libraries/replication_gui.lib.php:169 +#: libraries/messages.inc.php:84 libraries/replication_gui.lib.php:169 #: server_binlog.php:218 #, fuzzy msgid "Server ID" msgstr "Serveri" -#: libraries/messages.inc.php:92 +#: libraries/messages.inc.php:88 #, fuzzy msgctxt "$strBLOBRepositoryDisabled" msgid "Disabled" msgstr "Jo aktiv" -#: libraries/messages.inc.php:95 +#: libraries/messages.inc.php:91 #, fuzzy msgctxt "$strBLOBRepositoryEnabled" msgid "Enabled" msgstr "Aktiv" -#: libraries/messages.inc.php:97 tbl_change.php:888 +#: libraries/messages.inc.php:93 tbl_change.php:888 msgid "Remove BLOB Repository Reference" msgstr "" -#: libraries/messages.inc.php:98 +#: libraries/messages.inc.php:94 #, fuzzy msgctxt "$strBLOBRepositoryRepair" msgid "Repair" msgstr "Riparo tabelën" -#: libraries/messages.inc.php:99 tbl_change.php:987 +#: libraries/messages.inc.php:95 tbl_change.php:987 msgid "Upload to BLOB repository" msgstr "" -#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:359 +#: libraries/messages.inc.php:96 libraries/sql_query_form.lib.php:359 #: sql.php:677 msgid "Let every user access this bookmark" msgstr "Lejo që çdo përdorues të ketë hyrje në këtë libërshënues" -#: libraries/messages.inc.php:103 sql.php:671 +#: libraries/messages.inc.php:99 sql.php:671 msgid "Label" msgstr "Etiketë" -#: libraries/messages.inc.php:104 libraries/sql_query_form.lib.php:433 +#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:433 msgid "Bookmarked SQL query" msgstr "Query SQL shtuar të preferuarve" -#: libraries/messages.inc.php:105 libraries/sql_query_form.lib.php:365 +#: libraries/messages.inc.php:101 libraries/sql_query_form.lib.php:365 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/messages.inc.php:106 libraries/sql_query_form.lib.php:352 +#: libraries/messages.inc.php:102 libraries/sql_query_form.lib.php:352 #: sql.php:665 sql.php:666 sql.php:683 msgid "Bookmark this SQL query" msgstr "Shtoja të preferuarve këtë query SQL" -#: libraries/messages.inc.php:107 libraries/sql_query_form.lib.php:466 +#: libraries/messages.inc.php:103 libraries/sql_query_form.lib.php:466 msgid "View only" msgstr "Shfaq vetëm" -#: libraries/messages.inc.php:109 tbl_structure.php:161 +#: libraries/messages.inc.php:105 tbl_structure.php:161 #, fuzzy msgid "Browse distinct values" msgstr "Shfleto opcionet e huaja" -#: libraries/messages.inc.php:110 tbl_change.php:252 tbl_select.php:27 +#: libraries/messages.inc.php:106 tbl_change.php:252 tbl_select.php:27 #: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34 msgid "Browse foreign values" msgstr "Shfleto opcionet e huaja" -#: libraries/messages.inc.php:118 libraries/mysql_charsets.lib.php:213 +#: libraries/messages.inc.php:114 libraries/mysql_charsets.lib.php:213 msgid "Bulgarian" msgstr "Bullgarisht" -#: libraries/messages.inc.php:120 +#: libraries/messages.inc.php:116 msgid "\"bzipped\"" msgstr "\"kompresuar me bzip2\"" -#: libraries/messages.inc.php:122 +#: libraries/messages.inc.php:118 msgid "Calendar" msgstr "Kalendari" -#: libraries/messages.inc.php:129 tbl_indexes.php:75 +#: libraries/messages.inc.php:125 tbl_indexes.php:75 msgid "Can't rename index to PRIMARY!" msgstr "I pamundur riemërtimi i treguesit në PRIMAR!" -#: libraries/messages.inc.php:132 libraries/mysql_charsets.lib.php:223 +#: libraries/messages.inc.php:128 libraries/mysql_charsets.lib.php:223 #: libraries/mysql_charsets.lib.php:409 msgid "case-insensitive" msgstr "case-insensitive" -#: libraries/messages.inc.php:133 libraries/mysql_charsets.lib.php:226 +#: libraries/messages.inc.php:129 libraries/mysql_charsets.lib.php:226 #: libraries/mysql_charsets.lib.php:411 msgid "case-sensitive" msgstr "case-sensitive" -#: libraries/messages.inc.php:134 libraries/mysql_charsets.lib.php:332 +#: libraries/messages.inc.php:130 libraries/mysql_charsets.lib.php:332 msgid "Central European" msgstr "Europa qendrore" -#: libraries/messages.inc.php:136 server_privileges.php:1969 +#: libraries/messages.inc.php:132 server_privileges.php:1969 msgid "... keep the old one." msgstr "... mbaj të vjetrin." -#: libraries/messages.inc.php:137 server_privileges.php:1967 +#: libraries/messages.inc.php:133 server_privileges.php:1967 msgid "Create a new user with the same privileges and ..." msgstr "Krijo një përdorues të ri me të njëjta të drejta dhe ..." -#: libraries/messages.inc.php:138 server_privileges.php:1972 +#: libraries/messages.inc.php:134 server_privileges.php:1972 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." -#: libraries/messages.inc.php:139 server_privileges.php:1970 +#: libraries/messages.inc.php:135 server_privileges.php:1970 msgid " ... delete the old one from the user tables." msgstr " ... elemino të vjetrin nga tabela e përdoruesve." -#: libraries/messages.inc.php:140 server_privileges.php:1971 +#: libraries/messages.inc.php:136 server_privileges.php:1971 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." -#: libraries/messages.inc.php:141 server_privileges.php:1964 +#: libraries/messages.inc.php:137 server_privileges.php:1964 msgid "Change Login Information / Copy User" msgstr "Ndrysho Informacionet e Login / Kopjo përdoruesin" -#: libraries/messages.inc.php:144 libraries/mysql_charsets.lib.php:107 +#: libraries/messages.inc.php:140 libraries/mysql_charsets.lib.php:107 msgid "Charset" msgstr "Familje gërmash" -#: libraries/messages.inc.php:146 server_collations.php:40 +#: libraries/messages.inc.php:142 server_collations.php:40 msgid "Character Sets and Collations" msgstr "Familje gërmash dhe Collations" -#: libraries/messages.inc.php:147 libraries/server_links.inc.php:57 +#: libraries/messages.inc.php:143 libraries/server_links.inc.php:57 #: test/theme.php:109 msgid "Charsets" msgstr "Familje gërmash" -#: libraries/messages.inc.php:149 tbl_operations.php:661 +#: libraries/messages.inc.php:145 tbl_operations.php:661 #, fuzzy msgid "Check" msgstr "Çekisht" -#: libraries/messages.inc.php:151 server_databases.php:293 +#: libraries/messages.inc.php:147 server_databases.php:293 #: server_databases.php:294 msgid "Check Privileges" msgstr "Kontrollo të drejtat" -#: libraries/messages.inc.php:152 server_databases.php:289 +#: libraries/messages.inc.php:148 server_databases.php:289 #, php-format msgid "Check privileges for database "%s"." msgstr "Kontrollo të drejtat për databazën "%s"." -#: libraries/messages.inc.php:154 pdf_pages.php:261 +#: libraries/messages.inc.php:150 pdf_pages.php:261 msgid "Please choose a page to edit" msgstr "Ju lutem zgjidhni faqen që dëshironi të modifikoni" -#: libraries/messages.inc.php:157 +#: libraries/messages.inc.php:153 msgid "Displaying Column Comments" msgstr "Vizualizimi i komenteve të kollonave" -#: libraries/messages.inc.php:159 pdf_pages.php:483 view_create.php:148 +#: libraries/messages.inc.php:155 pdf_pages.php:483 view_create.php:148 msgid "Column names" msgstr "Emrat e kollonave" -#: libraries/messages.inc.php:160 server_privileges.php:1685 +#: libraries/messages.inc.php:156 server_privileges.php:1685 msgid "Column-specific privileges" msgstr "Të drejtat relative të kollonave" -#: libraries/messages.inc.php:164 +#: libraries/messages.inc.php:160 msgid "MySQL 4.0 compatible" msgstr "" -#: libraries/messages.inc.php:165 +#: libraries/messages.inc.php:161 msgid "Complete inserts" msgstr "Të shtuarat komplet" -#: libraries/messages.inc.php:168 +#: libraries/messages.inc.php:164 #, php-format msgid "Could not load default configuration from: \"%1$s\"" msgstr "" -#: libraries/messages.inc.php:169 main.php:306 +#: libraries/messages.inc.php:165 main.php:306 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: libraries/messages.inc.php:171 pdf_schema.php:672 +#: libraries/messages.inc.php:167 pdf_schema.php:672 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Ju lutem, konfiguroni koordinatat për tabelën %s" -#: libraries/messages.inc.php:173 server_status.php:433 +#: libraries/messages.inc.php:169 server_status.php:433 msgid "Connections" msgstr "Lidhje" -#: libraries/messages.inc.php:179 tbl_operations.php:509 +#: libraries/messages.inc.php:175 tbl_operations.php:509 msgid "Copy table to (database.table):" msgstr "Kopjo tabelën tek (databaza.tabela):" -#: libraries/messages.inc.php:180 tbl_move_copy.php:58 +#: libraries/messages.inc.php:176 tbl_move_copy.php:58 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabela %s u kopjua tek %s." -#: libraries/messages.inc.php:181 tbl_move_copy.php:48 +#: libraries/messages.inc.php:177 tbl_move_copy.php:48 msgid "Can't copy table to same one!" msgstr "I pamundur kopjimi i tabelës tek vetvetja!" -#: libraries/messages.inc.php:182 server_synchronize.php:94 +#: libraries/messages.inc.php:178 server_synchronize.php:94 msgid "Could not connect to the source" msgstr "" -#: libraries/messages.inc.php:183 server_synchronize.php:97 +#: libraries/messages.inc.php:179 server_synchronize.php:97 msgid "Could not connect to the target" msgstr "" -#: libraries/messages.inc.php:184 server_processlist.php:24 +#: libraries/messages.inc.php:180 server_processlist.php:24 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -3406,135 +3406,135 @@ msgstr "" "phpMyAdmin nuk është në gjendje të përfundojë thread %s. Ka mundësi të ketë " "përfunduar më parë." -#: libraries/messages.inc.php:187 +#: libraries/messages.inc.php:183 #, php-format msgid "Create an index on %s columns" msgstr "Krijo një tregues tek  %s columns" -#: libraries/messages.inc.php:188 tbl_indexes.php:160 +#: libraries/messages.inc.php:184 tbl_indexes.php:160 msgid "Create a new index" msgstr "Krijo një tregues të ri" -#: libraries/messages.inc.php:191 pdf_pages.php:297 pmd_pdf.php:114 +#: libraries/messages.inc.php:187 pdf_pages.php:297 pmd_pdf.php:114 msgid "Create a page" msgstr "Krijo një faqe të re" -#: libraries/messages.inc.php:192 +#: libraries/messages.inc.php:188 msgid "Creation of PDFs" msgstr "Krijimi i PDF-ve" -#: libraries/messages.inc.php:193 pmd_general.php:74 pmd_general.php:306 +#: libraries/messages.inc.php:189 pmd_general.php:74 pmd_general.php:306 msgid "Create relation" msgstr "" -#: libraries/messages.inc.php:194 pmd_general.php:71 +#: libraries/messages.inc.php:190 pmd_general.php:71 #: server_synchronize.php:429 server_synchronize.php:872 #, fuzzy msgid "Create table" msgstr "Krijo një faqe të re" -#: libraries/messages.inc.php:195 +#: libraries/messages.inc.php:191 #, fuzzy msgctxt "$strCreateTableShort" msgid "Create table" msgstr "Krijo një faqe të re" -#: libraries/messages.inc.php:196 server_privileges.php:1994 +#: libraries/messages.inc.php:192 server_privileges.php:1994 msgid "Database for user" msgstr "" -#: libraries/messages.inc.php:197 server_privileges.php:1999 +#: libraries/messages.inc.php:193 server_privileges.php:1999 msgid "Create database with same name and grant all privileges" msgstr "" -#: libraries/messages.inc.php:198 +#: libraries/messages.inc.php:194 #, fuzzy msgctxt "$strCreateUserDatabaseNone" msgid "None" msgstr "Asnjë lloj" -#: libraries/messages.inc.php:199 server_privileges.php:2003 +#: libraries/messages.inc.php:195 server_privileges.php:2003 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "Kontrollo të drejtat për databazën "%s"." -#: libraries/messages.inc.php:200 server_privileges.php:2000 +#: libraries/messages.inc.php:196 server_privileges.php:2000 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: libraries/messages.inc.php:201 +#: libraries/messages.inc.php:197 msgid "Creation/Update/Check dates" msgstr "Datat e Krijimit/Përditësimit/Kontrollit" -#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:229 +#: libraries/messages.inc.php:199 libraries/mysql_charsets.lib.php:229 msgid "Croatian" msgstr "Kroate" -#: libraries/messages.inc.php:204 +#: libraries/messages.inc.php:200 msgid "CSV" msgstr "të dhëna CSV" -#: libraries/messages.inc.php:205 libraries/server_synchronize.lib.php:1343 +#: libraries/messages.inc.php:201 libraries/server_synchronize.lib.php:1343 #: libraries/server_synchronize.lib.php:1369 msgid "Current server" msgstr "" -#: libraries/messages.inc.php:206 main.php:159 +#: libraries/messages.inc.php:202 main.php:159 msgid "Custom color" msgstr "" -#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:365 +#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:365 msgid "Cyrillic" msgstr "Cyrillic" -#: libraries/messages.inc.php:208 libraries/mysql_charsets.lib.php:232 +#: libraries/messages.inc.php:204 libraries/mysql_charsets.lib.php:232 msgid "Czech" msgstr "Çekisht" -#: libraries/messages.inc.php:209 libraries/mysql_charsets.lib.php:383 +#: libraries/messages.inc.php:205 libraries/mysql_charsets.lib.php:383 msgid "Czech-Slovak" msgstr "Çeko-Sllovak" -#: libraries/messages.inc.php:211 libraries/mysql_charsets.lib.php:235 +#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:235 msgid "Danish" msgstr "Danisht" -#: libraries/messages.inc.php:214 +#: libraries/messages.inc.php:210 msgid "Database export options" msgstr "Opcione të eksportimit të databazës" -#: libraries/messages.inc.php:217 server_synchronize.php:122 +#: libraries/messages.inc.php:213 server_synchronize.php:122 #: server_synchronize.php:125 tbl_create.php:82 tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "" -#: libraries/messages.inc.php:219 server_databases.php:63 +#: libraries/messages.inc.php:215 server_databases.php:63 #, php-format msgid "%s databases have been dropped successfully." msgstr "%s databaza u eleminuan korrektësisht." -#: libraries/messages.inc.php:220 libraries/server_synchronize.lib.php:1341 +#: libraries/messages.inc.php:216 libraries/server_synchronize.lib.php:1341 #: server_synchronize.php:1110 #, fuzzy msgid "Source database" msgstr "Kërko në databazë" -#: libraries/messages.inc.php:221 server_databases.php:88 +#: libraries/messages.inc.php:217 server_databases.php:88 msgid "Databases statistics" msgstr "Statistikat e databazave" -#: libraries/messages.inc.php:222 server_databases.php:362 +#: libraries/messages.inc.php:218 server_databases.php:362 #: server_databases.php:363 msgid "Disable Statistics" msgstr "Disaktivo Statistikat" -#: libraries/messages.inc.php:223 server_databases.php:358 +#: libraries/messages.inc.php:219 server_databases.php:358 #: server_databases.php:359 msgid "Enable Statistics" msgstr "Aktivo Statistikat" -#: libraries/messages.inc.php:224 server_databases.php:366 +#: libraries/messages.inc.php:220 server_databases.php:366 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -3542,31 +3542,31 @@ msgstr "" "Shënim: Aktivimi këtu i statistikave të Databazës mund të shkaktojë rritjen " "e trafikut midis server-it web dhe MySQL." -#: libraries/messages.inc.php:225 libraries/server_synchronize.lib.php:1367 +#: libraries/messages.inc.php:221 libraries/server_synchronize.lib.php:1367 #: server_synchronize.php:1112 #, fuzzy msgid "Target database" msgstr "Kërko në databazë" -#: libraries/messages.inc.php:228 server_synchronize.php:425 +#: libraries/messages.inc.php:224 server_synchronize.php:425 #: server_synchronize.php:868 msgid "Data Difference" msgstr "" -#: libraries/messages.inc.php:231 server_synchronize.php:272 +#: libraries/messages.inc.php:227 server_synchronize.php:272 msgid "Data Synchronization" msgstr "" -#: libraries/messages.inc.php:235 server_privileges.php:526 +#: libraries/messages.inc.php:231 server_privileges.php:526 #: server_privileges.php:1679 msgid "Database-specific privileges" msgstr "Të drejta specifike të databazës" -#: libraries/messages.inc.php:237 server_privileges.php:2136 +#: libraries/messages.inc.php:233 server_privileges.php:2136 msgid "database-specific" msgstr "specifik i databazës" -#: libraries/messages.inc.php:240 libraries/tbl_properties.inc.php:106 +#: libraries/messages.inc.php:236 libraries/tbl_properties.inc.php:106 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" @@ -3574,32 +3574,32 @@ msgstr "" "Për vlerat e prezgjedhura, ju lutem shtoni një vlerë të vetme, pa backslash " "escaping apo thonjëza, duke përdorur këtë format: a" -#: libraries/messages.inc.php:241 tbl_operations.php:589 +#: libraries/messages.inc.php:237 tbl_operations.php:589 msgid "Defragment table" msgstr "Defragmento tabelën" -#: libraries/messages.inc.php:242 +#: libraries/messages.inc.php:238 msgid "Use delayed inserts" msgstr "Përdor shtimet me vonesë" -#: libraries/messages.inc.php:245 server_privileges.php:1243 +#: libraries/messages.inc.php:241 server_privileges.php:1243 msgid "No users selected for deleting!" msgstr "" -#: libraries/messages.inc.php:246 pmd_general.php:372 +#: libraries/messages.inc.php:242 pmd_general.php:372 msgid "Delete relation" msgstr "" -#: libraries/messages.inc.php:248 server_privileges.php:1232 +#: libraries/messages.inc.php:244 server_privileges.php:1232 #, php-format msgid "Deleting %s" msgstr "Në fshirje e sipër të %s" -#: libraries/messages.inc.php:249 libraries/sql_query_form.lib.php:388 +#: libraries/messages.inc.php:245 libraries/sql_query_form.lib.php:388 msgid "Delimiter" msgstr "" -#: libraries/messages.inc.php:250 pdf_pages.php:506 +#: libraries/messages.inc.php:246 pdf_pages.php:506 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -3607,151 +3607,151 @@ msgstr "" "Faqja aktuale përmban riferime ndaj tabelash që nuk ekzistojnë më. Dëshironi " "t'i eleminoni këto riferimente?" -#: libraries/messages.inc.php:254 pmd_help.php:29 +#: libraries/messages.inc.php:250 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." msgstr "" -#: libraries/messages.inc.php:256 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:252 libraries/mysql_charsets.lib.php:247 msgid "dictionary" msgstr "fjalor" -#: libraries/messages.inc.php:257 libraries/server_synchronize.lib.php:1348 +#: libraries/messages.inc.php:253 libraries/server_synchronize.lib.php:1348 msgid "Difference" msgstr "" -#: libraries/messages.inc.php:258 pmd_general.php:87 +#: libraries/messages.inc.php:254 pmd_general.php:87 msgid "Direct links" msgstr "" -#: libraries/messages.inc.php:261 +#: libraries/messages.inc.php:257 msgid "Disable foreign key checks" msgstr "Ç'aktivo kontrollin e kyçeve të jashtëm" -#: libraries/messages.inc.php:262 +#: libraries/messages.inc.php:258 msgid "Display Features" msgstr "Shfaq karakteristikat" -#: libraries/messages.inc.php:263 tbl_select.php:301 +#: libraries/messages.inc.php:259 tbl_select.php:301 msgid "Display order:" msgstr "Mënyra e shfaqjes:" -#: libraries/messages.inc.php:265 tbl_select.php:132 +#: libraries/messages.inc.php:261 tbl_select.php:132 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Zbato \"query nga shembull\" (karakteri jolly: \"%\")" -#: libraries/messages.inc.php:266 +#: libraries/messages.inc.php:262 msgid "DocSQL" msgstr "" -#: libraries/messages.inc.php:268 +#: libraries/messages.inc.php:264 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/messages.inc.php:273 server_privileges.php:1579 +#: libraries/messages.inc.php:269 server_privileges.php:1579 #: server_privileges.php:1580 server_privileges.php:1581 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." -#: libraries/messages.inc.php:278 tbl_printview.php:382 tbl_structure.php:743 +#: libraries/messages.inc.php:274 tbl_printview.php:382 tbl_structure.php:743 msgid "dynamic" msgstr "dinamik" -#: libraries/messages.inc.php:282 server_privileges.php:1324 +#: libraries/messages.inc.php:278 server_privileges.php:1324 #: server_privileges.php:1610 msgid "Edit Privileges" msgstr "Ndrysho të drejtat" -#: libraries/messages.inc.php:283 tbl_printview.php:341 tbl_structure.php:688 +#: libraries/messages.inc.php:279 tbl_printview.php:341 tbl_structure.php:688 msgid "Effective" msgstr "Efektiv" -#: libraries/messages.inc.php:286 libraries/relation.lib.php:100 +#: libraries/messages.inc.php:282 libraries/relation.lib.php:100 msgid "Enabled" msgstr "Aktiv" -#: libraries/messages.inc.php:287 +#: libraries/messages.inc.php:283 msgid "Enclose export in a transaction" msgstr "Përfshi eksportin në një transacion" -#: libraries/messages.inc.php:288 libraries/sqlparser.lib.php:177 +#: libraries/messages.inc.php:284 libraries/sqlparser.lib.php:177 msgid "END CUT" msgstr "FUNDI I CUT" -#: libraries/messages.inc.php:290 libraries/sqlparser.lib.php:183 +#: libraries/messages.inc.php:286 libraries/sqlparser.lib.php:183 msgid "END RAW" msgstr "FUNDI I RAW" -#: libraries/messages.inc.php:293 libraries/server_links.inc.php:61 +#: libraries/messages.inc.php:289 libraries/server_links.inc.php:61 #: test/theme.php:113 msgid "Engines" msgstr "" -#: libraries/messages.inc.php:295 libraries/mysql_charsets.lib.php:238 +#: libraries/messages.inc.php:291 libraries/mysql_charsets.lib.php:238 msgid "English" msgstr "Anglisht" -#: libraries/messages.inc.php:296 server_privileges.php:393 +#: libraries/messages.inc.php:292 server_privileges.php:393 #: server_privileges.php:535 server_privileges.php:1501 msgid " Note: MySQL privilege names are expressed in English " msgstr "Shënim: emrat e të drejtave të MySQL janë në Anglisht" -#: libraries/messages.inc.php:298 libraries/zip_extension.lib.php:49 +#: libraries/messages.inc.php:294 libraries/zip_extension.lib.php:49 #: libraries/zip_extension.lib.php:51 libraries/zip_extension.lib.php:66 msgid "Error in ZIP archive:" msgstr "" -#: libraries/messages.inc.php:303 libraries/mysql_charsets.lib.php:241 +#: libraries/messages.inc.php:299 libraries/mysql_charsets.lib.php:241 msgid "Esperanto" msgstr "" -#: libraries/messages.inc.php:304 libraries/mysql_charsets.lib.php:244 +#: libraries/messages.inc.php:300 libraries/mysql_charsets.lib.php:244 msgid "Estonian" msgstr "Estoneze" -#: libraries/messages.inc.php:305 libraries/tbl_triggers.lib.php:29 +#: libraries/messages.inc.php:301 libraries/tbl_triggers.lib.php:29 #, fuzzy msgid "Event" msgstr "Dërguar" -#: libraries/messages.inc.php:307 +#: libraries/messages.inc.php:303 msgid "Excel edition" msgstr "Edicion i Excel" -#: libraries/messages.inc.php:311 pmd_pdf.php:85 +#: libraries/messages.inc.php:307 pmd_pdf.php:85 msgid "Export/Import to scale" msgstr "" -#: libraries/messages.inc.php:313 +#: libraries/messages.inc.php:309 msgid "Extended inserts" msgstr "Të shtuara të zgjeruara" -#: libraries/messages.inc.php:314 pdf_schema.php:1267 pdf_schema.php:1288 +#: libraries/messages.inc.php:310 pdf_schema.php:1267 pdf_schema.php:1288 #: tbl_printview.php:147 tbl_structure.php:183 tbl_tracking.php:278 msgid "Extra" msgstr "Extra" -#: libraries/messages.inc.php:316 server_status.php:447 +#: libraries/messages.inc.php:312 server_status.php:447 msgid "Failed attempts" msgstr "Përpjekje të dështuara" -#: libraries/messages.inc.php:318 tbl_structure.php:375 +#: libraries/messages.inc.php:314 tbl_structure.php:375 #, php-format msgid "Field %s has been dropped" msgstr "Fusha %s u eleminua" -#: libraries/messages.inc.php:322 libraries/sql_query_form.lib.php:317 +#: libraries/messages.inc.php:318 libraries/sql_query_form.lib.php:317 msgid "Fields" msgstr "Fusha" -#: libraries/messages.inc.php:332 server_binlog.php:136 +#: libraries/messages.inc.php:328 server_binlog.php:136 #, fuzzy msgid "Files" msgstr "Fusha" -#: libraries/messages.inc.php:334 server_privileges.php:1597 +#: libraries/messages.inc.php:330 server_privileges.php:1597 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -3764,219 +3764,219 @@ 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." -#: libraries/messages.inc.php:335 server_status.php:289 +#: libraries/messages.inc.php:331 server_status.php:289 msgid "Flush query cache" msgstr "" -#: libraries/messages.inc.php:336 +#: libraries/messages.inc.php:332 msgid "Flush the table (\"FLUSH\")" msgstr "Rifillo (\"FLUSH\") tabelën" -#: libraries/messages.inc.php:337 server_status.php:271 +#: libraries/messages.inc.php:333 server_status.php:271 msgid "Flush (close) all tables" msgstr "" -#: libraries/messages.inc.php:339 tbl_relation.php:279 +#: libraries/messages.inc.php:335 tbl_relation.php:279 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" -#: libraries/messages.inc.php:341 setup/lib/messages.inc.php:88 +#: libraries/messages.inc.php:337 setup/lib/messages.inc.php:88 #: tbl_printview.php:376 tbl_structure.php:738 msgid "Format" msgstr "Formati" -#: libraries/messages.inc.php:344 server_replication.php:325 +#: libraries/messages.inc.php:340 server_replication.php:325 #, fuzzy msgid "Full start" msgstr "Teksti komplet" -#: libraries/messages.inc.php:345 server_replication.php:325 +#: libraries/messages.inc.php:341 server_replication.php:325 msgid "Full stop" msgstr "" -#: libraries/messages.inc.php:347 tbl_change.php:282 tbl_change.php:320 +#: libraries/messages.inc.php:343 tbl_change.php:282 tbl_change.php:320 msgid "Function" msgstr "Funksioni" -#: libraries/messages.inc.php:355 libraries/mysql_charsets.lib.php:377 +#: libraries/messages.inc.php:351 libraries/mysql_charsets.lib.php:377 msgid "Georgian" msgstr "Gjeorgjisht" -#: libraries/messages.inc.php:356 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:352 libraries/mysql_charsets.lib.php:247 #: libraries/mysql_charsets.lib.php:250 msgid "German" msgstr "Gjermanisht" -#: libraries/messages.inc.php:357 themes.php:42 +#: libraries/messages.inc.php:353 themes.php:42 msgid "Get more themes!" msgstr "" -#: libraries/messages.inc.php:358 server_privileges.php:2134 +#: libraries/messages.inc.php:354 server_privileges.php:2134 msgid "global" msgstr "globale" -#: libraries/messages.inc.php:359 server_privileges.php:524 +#: libraries/messages.inc.php:355 server_privileges.php:524 #: server_privileges.php:1500 msgid "Global privileges" msgstr "Të drejtat e përgjithshme" -#: libraries/messages.inc.php:360 server_variables.php:55 +#: libraries/messages.inc.php:356 server_variables.php:55 #: server_variables.php:89 msgid "Global value" msgstr "Vlerë Globale" -#: libraries/messages.inc.php:365 server_privileges.php:1502 +#: libraries/messages.inc.php:361 server_privileges.php:1502 #: server_privileges.php:1684 server_privileges.php:2033 msgid "Grant" msgstr "Grant" -#: libraries/messages.inc.php:366 libraries/mysql_charsets.lib.php:380 +#: libraries/messages.inc.php:362 libraries/mysql_charsets.lib.php:380 msgid "Greek" msgstr "Greqisht" -#: libraries/messages.inc.php:367 +#: libraries/messages.inc.php:363 msgid "\"gzipped\"" msgstr "\"kompresuar me gzip\"" -#: libraries/messages.inc.php:369 server_status.php:250 +#: libraries/messages.inc.php:365 server_status.php:250 msgid "Handler" msgstr "" -#: libraries/messages.inc.php:370 server_synchronize.php:464 +#: libraries/messages.inc.php:366 server_synchronize.php:464 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: libraries/messages.inc.php:372 libraries/mysql_charsets.lib.php:374 +#: libraries/messages.inc.php:368 libraries/mysql_charsets.lib.php:374 msgid "Hebrew" msgstr "Hebraike" -#: libraries/messages.inc.php:373 pmd_general.php:83 +#: libraries/messages.inc.php:369 pmd_general.php:83 msgid "Help" msgstr "" -#: libraries/messages.inc.php:374 +#: libraries/messages.inc.php:370 msgid "Use hexadecimal for BLOB" msgstr "" -#: libraries/messages.inc.php:376 pmd_general.php:120 +#: libraries/messages.inc.php:372 pmd_general.php:120 #, fuzzy msgid "Hide/Show all" msgstr "Shfaqi të gjithë" -#: libraries/messages.inc.php:377 pmd_general.php:124 +#: libraries/messages.inc.php:373 pmd_general.php:124 msgid "Hide/Show Tables with no relation" msgstr "" -#: libraries/messages.inc.php:378 libraries/navigation_header.inc.php:54 +#: libraries/messages.inc.php:374 libraries/navigation_header.inc.php:54 #: libraries/navigation_header.inc.php:57 #: libraries/navigation_header.inc.php:58 msgid "Home" msgstr "Shtëpia" -#: libraries/messages.inc.php:379 main.php:233 +#: libraries/messages.inc.php:375 main.php:233 msgid "Official Homepage" msgstr "Faqja zyrtare e phpMyAdmin" -#: libraries/messages.inc.php:382 libraries/replication_gui.lib.php:327 +#: libraries/messages.inc.php:378 libraries/replication_gui.lib.php:327 #: server_privileges.php:753 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/messages.inc.php:383 +#: libraries/messages.inc.php:379 msgid "Microsoft Word 2000" msgstr "" -#: libraries/messages.inc.php:384 libraries/mysql_charsets.lib.php:253 +#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:253 msgid "Hungarian" msgstr "Hungarisht" -#: libraries/messages.inc.php:386 libraries/mysql_charsets.lib.php:256 +#: libraries/messages.inc.php:382 libraries/mysql_charsets.lib.php:256 msgid "Icelandic" msgstr "Islandeze" -#: libraries/messages.inc.php:387 server_processlist.php:53 +#: libraries/messages.inc.php:383 server_processlist.php:53 msgid "ID" msgstr "ID" -#: libraries/messages.inc.php:388 libraries/mult_submits.inc.php:108 +#: libraries/messages.inc.php:384 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:479 msgid "Fulltext" msgstr "Teksti komplet" -#: libraries/messages.inc.php:389 +#: libraries/messages.inc.php:385 msgid "Ignore duplicate rows" msgstr "" -#: libraries/messages.inc.php:390 tbl_change.php:302 tbl_indexes.php:200 +#: libraries/messages.inc.php:386 tbl_change.php:302 tbl_indexes.php:200 #: tbl_indexes.php:225 msgid "Ignore" msgstr "Shpërfill" -#: libraries/messages.inc.php:391 +#: libraries/messages.inc.php:387 msgid "Use ignore inserts" msgstr "Përdor shpërfill shtimet" -#: libraries/messages.inc.php:392 +#: libraries/messages.inc.php:388 msgid "Column names in first row" msgstr "" -#: libraries/messages.inc.php:393 +#: libraries/messages.inc.php:389 msgid "Do not import empty rows" msgstr "" -#: libraries/messages.inc.php:394 pmd_general.php:104 +#: libraries/messages.inc.php:390 pmd_general.php:104 msgid "Import/Export coordinates for PDF schema" msgstr "" -#: libraries/messages.inc.php:395 querywindow.php:104 +#: libraries/messages.inc.php:391 querywindow.php:104 msgid "Import files" msgstr "Importo files" -#: libraries/messages.inc.php:403 +#: libraries/messages.inc.php:399 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/messages.inc.php:404 libraries/messages.inc.php:584 +#: libraries/messages.inc.php:400 libraries/messages.inc.php:580 msgid "Open Document Spreadsheet" msgstr "" -#: libraries/messages.inc.php:405 +#: libraries/messages.inc.php:401 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/messages.inc.php:409 +#: libraries/messages.inc.php:405 msgid "Excel 97-2003 XLS Workbook" msgstr "" -#: libraries/messages.inc.php:410 +#: libraries/messages.inc.php:406 msgid "Excel 2007 XLSX Workbook" msgstr "" -#: libraries/messages.inc.php:414 libraries/mult_submits.inc.php:98 +#: libraries/messages.inc.php:410 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:476 tbl_structure.php:674 msgid "Index" msgstr "Treguesi" -#: libraries/messages.inc.php:415 tbl_indexes.php:168 +#: libraries/messages.inc.php:411 tbl_indexes.php:168 msgid "Index name:" msgstr "Emri i treguesit :" -#: libraries/messages.inc.php:416 tbl_indexes.php:174 +#: libraries/messages.inc.php:412 tbl_indexes.php:174 msgid "Index type:" msgstr "Lloji i treguesit :" -#: libraries/messages.inc.php:417 sql.php:639 +#: libraries/messages.inc.php:413 sql.php:639 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: libraries/messages.inc.php:427 main.php:266 +#: libraries/messages.inc.php:423 main.php:266 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -3988,194 +3988,194 @@ msgstr "" "MySQL funksionues me këto zgjedhje është i pambrojtur ndaj sulmeve, dhe ju " "duhet patjetër të korrigjoni këtë vrimë në siguri." -#: libraries/messages.inc.php:428 tbl_change.php:1130 +#: libraries/messages.inc.php:424 tbl_change.php:1130 msgid "Insert as new row" msgstr "Shto një rresht të ri" -#: libraries/messages.inc.php:429 sql.php:496 tbl_replace.php:386 +#: libraries/messages.inc.php:425 sql.php:496 tbl_replace.php:386 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: libraries/messages.inc.php:430 tbl_change.php:1131 +#: libraries/messages.inc.php:426 tbl_change.php:1131 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/messages.inc.php:432 main.php:139 +#: libraries/messages.inc.php:428 main.php:139 msgid "Interface" msgstr "" -#: libraries/messages.inc.php:433 tbl_relation.php:407 +#: libraries/messages.inc.php:429 tbl_relation.php:407 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: libraries/messages.inc.php:435 pdf_pages.php:303 +#: libraries/messages.inc.php:431 pdf_pages.php:303 msgid "Internal relations" msgstr "Relacione të brendshme" -#: libraries/messages.inc.php:438 tbl_indexes.php:256 tbl_structure.php:590 +#: libraries/messages.inc.php:434 tbl_indexes.php:256 tbl_structure.php:590 #: tbl_structure.php:601 msgid "Column count has to be larger than zero." msgstr "" -#: libraries/messages.inc.php:444 libraries/tbl_properties.inc.php:784 +#: libraries/messages.inc.php:440 libraries/tbl_properties.inc.php:784 #: tbl_structure.php:537 msgid "You have to add at least one field." msgstr "" -#: libraries/messages.inc.php:449 +#: libraries/messages.inc.php:445 #, php-format msgid "Invalid server index: \"%s\"" msgstr "" -#: libraries/messages.inc.php:452 libraries/mysql_charsets.lib.php:259 +#: libraries/messages.inc.php:448 libraries/mysql_charsets.lib.php:259 #: libraries/mysql_charsets.lib.php:349 msgid "Japanese" msgstr "Japonisht" -#: libraries/messages.inc.php:453 main.php:331 +#: libraries/messages.inc.php:449 main.php:331 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: libraries/messages.inc.php:454 server_status.php:257 +#: libraries/messages.inc.php:450 server_status.php:257 msgid "Joins" msgstr "" -#: libraries/messages.inc.php:457 server_privileges.php:763 +#: libraries/messages.inc.php:453 server_privileges.php:763 msgid "Do not change the password" msgstr "Mos ndrysho fjalëkalim" -#: libraries/messages.inc.php:458 server_status.php:256 +#: libraries/messages.inc.php:454 server_status.php:256 msgid "Key cache" msgstr "" -#: libraries/messages.inc.php:462 libraries/mysql_charsets.lib.php:268 +#: libraries/messages.inc.php:458 libraries/mysql_charsets.lib.php:268 #: libraries/mysql_charsets.lib.php:371 msgid "Korean" msgstr "Koreane" -#: libraries/messages.inc.php:466 libraries/select_lang.lib.php:480 +#: libraries/messages.inc.php:462 libraries/select_lang.lib.php:480 #: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492 #, php-format msgid "Unknown language: %1$s." msgstr "" -#: libraries/messages.inc.php:468 +#: libraries/messages.inc.php:464 msgid "Table caption" msgstr "Titulli i Tabelës caption" -#: libraries/messages.inc.php:469 +#: libraries/messages.inc.php:465 msgid "Content of table __TABLE__" msgstr "Përmbajtja e tabelës __TABLE__" -#: libraries/messages.inc.php:470 +#: libraries/messages.inc.php:466 msgid "Continued table caption" msgstr "Nëntitulli i tabelës vazhduese" -#: libraries/messages.inc.php:471 +#: libraries/messages.inc.php:467 msgid "(continued)" msgstr "(vazhdon)" -#: libraries/messages.inc.php:472 +#: libraries/messages.inc.php:468 msgid "Include table caption" msgstr "Përfshi nëntitullin e tabelës" -#: libraries/messages.inc.php:473 +#: libraries/messages.inc.php:469 msgid "Label key" msgstr "Kyçi i etiketës" -#: libraries/messages.inc.php:474 +#: libraries/messages.inc.php:470 msgid "LaTeX" msgstr "LaTeX" -#: libraries/messages.inc.php:475 +#: libraries/messages.inc.php:471 msgid "Structure of table __TABLE__" msgstr "Struktura e tabelës __TABLE__" -#: libraries/messages.inc.php:476 libraries/mysql_charsets.lib.php:262 +#: libraries/messages.inc.php:472 libraries/mysql_charsets.lib.php:262 msgid "Latvian" msgstr "Letone" -#: libraries/messages.inc.php:477 +#: libraries/messages.inc.php:473 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/messages.inc.php:478 +#: libraries/messages.inc.php:474 msgid "Use LOCAL keyword" msgstr "" -#: libraries/messages.inc.php:479 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:475 libraries/tbl_properties.inc.php:105 msgid "Length/Values" msgstr "Gjatësia/Set*" -#: libraries/messages.inc.php:480 tbl_select.php:295 +#: libraries/messages.inc.php:476 tbl_select.php:295 msgid "Number of rows per page" msgstr "regjistrime për faqe" -#: libraries/messages.inc.php:484 libraries/mysql_charsets.lib.php:265 +#: libraries/messages.inc.php:480 libraries/mysql_charsets.lib.php:265 msgid "Lithuanian" msgstr "Lituane" -#: libraries/messages.inc.php:485 libraries/replication_gui.lib.php:302 +#: libraries/messages.inc.php:481 libraries/replication_gui.lib.php:302 #: server_privileges.php:729 msgid "Local" msgstr "Lokal" -#: libraries/messages.inc.php:487 server_privileges.php:669 +#: libraries/messages.inc.php:483 server_privileges.php:669 msgid "Login Information" msgstr "Informacione mbi Identifikimin" -#: libraries/messages.inc.php:490 libraries/navigation_header.inc.php:67 +#: libraries/messages.inc.php:486 libraries/navigation_header.inc.php:67 #: libraries/navigation_header.inc.php:70 #: libraries/navigation_header.inc.php:71 main.php:99 msgid "Log out" msgstr "Përfundo seancën" -#: libraries/messages.inc.php:497 server_status.php:440 +#: libraries/messages.inc.php:493 server_status.php:440 msgid "max. concurrent connections" msgstr "" -#: libraries/messages.inc.php:498 +#: libraries/messages.inc.php:494 msgid "Maximal length of created query" msgstr "" -#: libraries/messages.inc.php:500 main.php:282 +#: libraries/messages.inc.php:496 main.php:282 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " "split strings correctly and it may result in unexpected results." msgstr "" -#: libraries/messages.inc.php:501 main.php:274 +#: libraries/messages.inc.php:497 main.php:274 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " "corrupted!" msgstr "" -#: libraries/messages.inc.php:502 +#: libraries/messages.inc.php:498 msgid "MediaWiki Table" msgstr "" -#: libraries/messages.inc.php:503 transformation_overview.php:25 +#: libraries/messages.inc.php:499 transformation_overview.php:25 msgid "Available MIME types" msgstr "Lloje MIME në dispozicion" -#: libraries/messages.inc.php:504 transformation_overview.php:43 +#: libraries/messages.inc.php:500 transformation_overview.php:43 msgid "Available transformations" msgstr "Transformacionet në dispozicion" -#: libraries/messages.inc.php:505 +#: libraries/messages.inc.php:501 msgctxt "$strMIME_description" msgid "Description" msgstr "Përshkrimi" -#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:580 +#: libraries/messages.inc.php:503 libraries/tbl_properties.inc.php:580 #: transformation_overview.php:60 #, php-format msgid "" @@ -4185,7 +4185,7 @@ msgstr "" "Asnjë përshkrim në dispozicion për këtë transformim.
Ju lutem pyet " "autorin, çfarë %s bën." -#: libraries/messages.inc.php:509 libraries/tbl_properties.inc.php:137 +#: libraries/messages.inc.php:505 libraries/tbl_properties.inc.php:137 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -4194,7 +4194,7 @@ msgstr "" "Për listën e opcioneve të transformimeve në dispozicion dhe transformimet " "relativë të llojeve-MIME, kliko tek %spërshkrimet e transformimeve%s" -#: libraries/messages.inc.php:510 libraries/tbl_properties.inc.php:146 +#: libraries/messages.inc.php:506 libraries/tbl_properties.inc.php:146 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -4206,416 +4206,416 @@ msgstr "" "(\"\\\") apo një apostrofë (\"'\") midis këtyre vlerave, duhet ti backslash-" "oni (për shembull '\\\\xyz' ose 'a\\'b')." -#: libraries/messages.inc.php:511 libraries/tbl_properties.inc.php:145 +#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:145 msgid "Transformation options" msgstr "Opcione të transformimeve" -#: libraries/messages.inc.php:513 transformation_overview.php:38 +#: libraries/messages.inc.php:509 transformation_overview.php:38 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "" "Llojet-MIME të printuar në italics kanë një funksion transformacioni të " "veçantë" -#: libraries/messages.inc.php:515 tbl_indexes.php:162 +#: libraries/messages.inc.php:511 tbl_indexes.php:162 msgid "Modify an index" msgstr "Ndrysho një tregues" -#: libraries/messages.inc.php:517 pmd_general.php:108 +#: libraries/messages.inc.php:513 pmd_general.php:108 msgid "Move Menu" msgstr "" -#: libraries/messages.inc.php:518 tbl_operations.php:276 +#: libraries/messages.inc.php:514 tbl_operations.php:276 msgid "Move table to (database.table):" msgstr "Sposto tabelën në (databaza.tabela):" -#: libraries/messages.inc.php:519 tbl_move_copy.php:56 +#: libraries/messages.inc.php:515 tbl_move_copy.php:56 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabela %s u lëviz tek %s." -#: libraries/messages.inc.php:520 tbl_move_copy.php:46 +#: libraries/messages.inc.php:516 tbl_move_copy.php:46 msgid "Can't move table to same one!" msgstr "E pamundur lëvizja e tabelës tek vetvetja!" -#: libraries/messages.inc.php:521 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:517 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 #: libraries/mysql_charsets.lib.php:332 libraries/mysql_charsets.lib.php:354 #: libraries/mysql_charsets.lib.php:365 msgid "multilingual" msgstr "shumëgjuhësh" -#: libraries/messages.inc.php:534 main.php:193 +#: libraries/messages.inc.php:530 main.php:193 msgid "MySQL charset" msgstr "Set simbolesh MySQL" -#: libraries/messages.inc.php:535 main.php:211 +#: libraries/messages.inc.php:531 main.php:211 msgid "MySQL client version" msgstr "" -#: libraries/messages.inc.php:536 main.php:125 +#: libraries/messages.inc.php:532 main.php:125 msgid "MySQL connection collation" msgstr "Vendosja e lidhjes MySQL" -#: libraries/messages.inc.php:537 main.php:346 +#: libraries/messages.inc.php:533 main.php:346 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: libraries/messages.inc.php:539 server_status.php:294 +#: libraries/messages.inc.php:535 server_status.php:294 msgid "Show processes" msgstr "Shfaq proceset në ekzekutim" -#: libraries/messages.inc.php:545 navigation.php:210 server_databases.php:371 +#: libraries/messages.inc.php:541 navigation.php:210 server_databases.php:371 #: server_synchronize.php:1191 msgid "No databases" msgstr "Asnjë databazë" -#: libraries/messages.inc.php:546 server_databases.php:52 +#: libraries/messages.inc.php:542 server_databases.php:52 msgid "No databases selected." msgstr "Nuk është zgjedhur asnjë databazë." -#: libraries/messages.inc.php:548 libraries/relation.lib.php:1173 +#: libraries/messages.inc.php:544 libraries/relation.lib.php:1173 msgid "no description" msgstr "asnjë përshkrim" -#: libraries/messages.inc.php:552 libraries/zip_extension.lib.php:26 +#: libraries/messages.inc.php:548 libraries/zip_extension.lib.php:26 msgid "No files found inside ZIP archive!" msgstr "" -#: libraries/messages.inc.php:555 tbl_indexes.php:91 +#: libraries/messages.inc.php:551 tbl_indexes.php:91 msgid "No index parts defined!" msgstr "Asnjë pjesë e treguesit është përcaktuar!" -#: libraries/messages.inc.php:556 libraries/mult_submits.inc.php:435 +#: libraries/messages.inc.php:552 libraries/mult_submits.inc.php:435 #: tbl_replace.php:331 msgid "No change" msgstr "Asnjë ndryshim" -#: libraries/messages.inc.php:557 +#: libraries/messages.inc.php:553 #, fuzzy msgctxt "$strNoneDefault" msgid "None" msgstr "Asnjë lloj" -#: libraries/messages.inc.php:560 libraries/plugin_interface.lib.php:312 +#: libraries/messages.inc.php:556 libraries/plugin_interface.lib.php:312 msgid "This format has no options" msgstr "Ky format nuk ka opcione" -#: libraries/messages.inc.php:565 user_password.php:54 +#: libraries/messages.inc.php:561 user_password.php:54 msgid "You don't have sufficient privileges to be here right now!" msgstr "Nuk ke të drejta të mjaftueshme për të kryer këtë operacion!" -#: libraries/messages.inc.php:566 tbl_row_action.php:29 +#: libraries/messages.inc.php:562 tbl_row_action.php:29 msgid "No rows selected" msgstr "Nuk ka rreshta të zgjedhur" -#: libraries/messages.inc.php:569 themes.php:32 +#: libraries/messages.inc.php:565 themes.php:32 #, php-format msgid "" "No themes support; please check your configuration and/or your themes in " "directory %s." msgstr "" -#: libraries/messages.inc.php:571 libraries/relation.lib.php:95 +#: libraries/messages.inc.php:567 libraries/relation.lib.php:95 msgid "not OK" msgstr "jo OK" -#: libraries/messages.inc.php:572 server_synchronize.php:400 +#: libraries/messages.inc.php:568 server_synchronize.php:400 #: server_synchronize.php:839 msgid "not present" msgstr "" -#: libraries/messages.inc.php:573 pdf_pages.php:36 pdf_pages.php:42 +#: libraries/messages.inc.php:569 pdf_pages.php:36 pdf_pages.php:42 #: pdf_pages.php:48 pdf_pages.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "%s tabela nuk u gjet ose nuk është përcaktuar tek %s" -#: libraries/messages.inc.php:574 server_privileges.php:804 +#: libraries/messages.inc.php:570 server_privileges.php:804 #: server_privileges.php:2166 msgid "No user(s) found." msgstr "Nuk u gjet asnjë përdorues." -#: libraries/messages.inc.php:578 pmd_general.php:164 +#: libraries/messages.inc.php:574 pmd_general.php:164 msgid "Number of tables" msgstr "" -#: libraries/messages.inc.php:581 server_databases.php:117 +#: libraries/messages.inc.php:577 server_databases.php:117 #: server_status.php:260 setup/lib/messages.inc.php:117 msgid "Tables" msgstr "Tabela" -#: libraries/messages.inc.php:583 libraries/relation.lib.php:99 +#: libraries/messages.inc.php:579 libraries/relation.lib.php:99 #: pmd_general.php:340 msgid "OK" msgstr "OK" -#: libraries/messages.inc.php:585 +#: libraries/messages.inc.php:581 msgid "Open Document Text" msgstr "" -#: libraries/messages.inc.php:588 tbl_select.php:138 +#: libraries/messages.inc.php:584 tbl_select.php:138 msgid "Operator" msgstr "Operator" -#: libraries/messages.inc.php:589 tbl_operations.php:662 +#: libraries/messages.inc.php:585 tbl_operations.php:662 msgid "Optimize" msgstr "" -#: libraries/messages.inc.php:602 libraries/tbl_properties.inc.php:755 +#: libraries/messages.inc.php:598 libraries/tbl_properties.inc.php:755 msgid "PARTITION definition" msgstr "" -#: libraries/messages.inc.php:603 tbl_structure.php:757 +#: libraries/messages.inc.php:599 tbl_structure.php:757 msgid "partitioned" msgstr "" -#: libraries/messages.inc.php:604 tbl_operations.php:649 +#: libraries/messages.inc.php:600 tbl_operations.php:649 #, fuzzy msgid "Partition maintenance" msgstr "Administrimi i tabelës" -#: libraries/messages.inc.php:605 tbl_operations.php:657 +#: libraries/messages.inc.php:601 tbl_operations.php:657 #, php-format msgid "Partition %s" msgstr "" -#: libraries/messages.inc.php:606 server_privileges.php:1212 +#: libraries/messages.inc.php:602 server_privileges.php:1212 #, php-format msgid "The password for %s was changed successfully." msgstr "Fjalëkalimi për përdoruesin %s u ndryshua me sukses." -#: libraries/messages.inc.php:635 +#: libraries/messages.inc.php:631 #, php-format msgid "Schema of the \"%s\" database - Page %s" msgstr "Skema e databazës \"%s\" - Faqja %s" -#: libraries/messages.inc.php:636 +#: libraries/messages.inc.php:632 #, php-format msgid "The \"%s\" table doesn't exist!" msgstr "Tabela \"%s\" nuk ekziston!" -#: libraries/messages.inc.php:637 pdf_schema.php:1013 +#: libraries/messages.inc.php:633 pdf_schema.php:1013 msgid "No tables" msgstr "Asnjë tabelë" -#: libraries/messages.inc.php:638 pmd_pdf.php:63 +#: libraries/messages.inc.php:634 pmd_pdf.php:63 #, fuzzy msgid "Page has been created" msgstr "Tabela %s u eleminua" -#: libraries/messages.inc.php:639 pmd_pdf.php:65 +#: libraries/messages.inc.php:635 pmd_pdf.php:65 msgid "Page creation failed" msgstr "" -#: libraries/messages.inc.php:640 +#: libraries/messages.inc.php:636 msgid "PDF" msgstr "" -#: libraries/messages.inc.php:641 +#: libraries/messages.inc.php:637 msgid "(Generates a report containing the data of a single table)" msgstr "" -#: libraries/messages.inc.php:642 +#: libraries/messages.inc.php:638 msgid "Report title" msgstr "" -#: libraries/messages.inc.php:643 server_status.php:389 server_status.php:434 +#: libraries/messages.inc.php:639 server_status.php:389 server_status.php:434 #: server_status.php:497 server_status.php:555 msgid "per hour" msgstr "në orë" -#: libraries/messages.inc.php:644 server_status.php:498 +#: libraries/messages.inc.php:640 server_status.php:498 msgid "per minute" msgstr "në minutë" -#: libraries/messages.inc.php:645 server_status.php:499 +#: libraries/messages.inc.php:641 server_status.php:499 msgid "per second" msgstr "në sekondë" -#: libraries/messages.inc.php:646 libraries/mysql_charsets.lib.php:271 +#: libraries/messages.inc.php:642 libraries/mysql_charsets.lib.php:271 #, fuzzy msgid "Persian" msgstr "Gjeorgjisht" -#: libraries/messages.inc.php:647 libraries/mysql_charsets.lib.php:250 +#: libraries/messages.inc.php:643 libraries/mysql_charsets.lib.php:250 msgid "phone book" msgstr "numratori" -#: libraries/messages.inc.php:648 +#: libraries/messages.inc.php:644 msgid "PHP array" msgstr "" -#: libraries/messages.inc.php:650 main.php:213 +#: libraries/messages.inc.php:646 main.php:213 #, fuzzy msgid "PHP extension" msgstr "Versioni i PHP" -#: libraries/messages.inc.php:654 libraries/relation.lib.php:163 +#: libraries/messages.inc.php:650 libraries/relation.lib.php:163 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/messages.inc.php:655 libraries/relation.lib.php:159 +#: libraries/messages.inc.php:651 libraries/relation.lib.php:159 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/messages.inc.php:656 libraries/relation.lib.php:161 +#: libraries/messages.inc.php:652 libraries/relation.lib.php:161 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" -#: libraries/messages.inc.php:657 libraries/relation.lib.php:162 +#: libraries/messages.inc.php:653 libraries/relation.lib.php:162 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/messages.inc.php:658 libraries/relation.lib.php:164 +#: libraries/messages.inc.php:654 libraries/relation.lib.php:164 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/messages.inc.php:661 libraries/mysql_charsets.lib.php:274 +#: libraries/messages.inc.php:657 libraries/mysql_charsets.lib.php:274 msgid "Polish" msgstr "Polonisht" -#: libraries/messages.inc.php:662 libraries/replication_gui.lib.php:67 +#: libraries/messages.inc.php:658 libraries/replication_gui.lib.php:67 #: server_synchronize.php:1163 #, fuzzy msgid "Port" msgstr "rreshtimi" -#: libraries/messages.inc.php:667 tbl_indexes.php:67 +#: libraries/messages.inc.php:663 tbl_indexes.php:67 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Emri i kyçit primar duhet të jetë... PRIMARY!" -#: libraries/messages.inc.php:668 tbl_indexes.php:184 +#: libraries/messages.inc.php:664 tbl_indexes.php:184 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" "(\"PRIMARY\" duhet të jetë emri i, dhe vetëm i, një kyçi " "primar!)" -#: libraries/messages.inc.php:669 libraries/mult_submits.inc.php:76 +#: libraries/messages.inc.php:665 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:474 msgid "Primary" msgstr "Primar" -#: libraries/messages.inc.php:673 server_privileges.php:227 +#: libraries/messages.inc.php:669 server_privileges.php:227 msgid "Includes all privileges except GRANT." msgstr "Përfshin të gjitha të drejtat me përjashtim të GRANT." -#: libraries/messages.inc.php:674 server_privileges.php:153 +#: libraries/messages.inc.php:670 server_privileges.php:153 #: server_privileges.php:476 msgid "Allows altering the structure of existing tables." msgstr "Lejon ndryshimin e strukturës së tabelave ekzistuese." -#: libraries/messages.inc.php:675 server_privileges.php:169 +#: libraries/messages.inc.php:671 server_privileges.php:169 #: server_privileges.php:482 #, fuzzy msgid "Allows altering and dropping stored routines." msgstr "Lejon krijimin dhe eleminimin e treguesve." -#: libraries/messages.inc.php:676 server_privileges.php:145 +#: libraries/messages.inc.php:672 server_privileges.php:145 #: server_privileges.php:475 msgid "Allows creating new databases and tables." msgstr "Lejon krijimin e tabelave të reja dhe databazave të reja." -#: libraries/messages.inc.php:677 server_privileges.php:168 +#: libraries/messages.inc.php:673 server_privileges.php:168 #: server_privileges.php:481 #, fuzzy msgid "Allows creating stored routines." msgstr "Lejon krijimin e tabelave të reja." -#: libraries/messages.inc.php:678 server_privileges.php:475 +#: libraries/messages.inc.php:674 server_privileges.php:475 msgid "Allows creating new tables." msgstr "Lejon krijimin e tabelave të reja." -#: libraries/messages.inc.php:679 server_privileges.php:156 +#: libraries/messages.inc.php:675 server_privileges.php:156 #: server_privileges.php:479 msgid "Allows creating temporary tables." msgstr "Lejon krijimin e tabelave të përkohëshme." -#: libraries/messages.inc.php:680 server_privileges.php:170 +#: libraries/messages.inc.php:676 server_privileges.php:170 #: server_privileges.php:515 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: libraries/messages.inc.php:681 server_privileges.php:160 +#: libraries/messages.inc.php:677 server_privileges.php:160 #: server_privileges.php:164 server_privileges.php:487 #: server_privileges.php:491 #, fuzzy msgid "Allows creating new views." msgstr "Lejon krijimin e tabelave të reja." -#: libraries/messages.inc.php:682 server_privileges.php:144 +#: libraries/messages.inc.php:678 server_privileges.php:144 #: server_privileges.php:467 msgid "Allows deleting data." msgstr "Lejon fshirjen e të dhënave." -#: libraries/messages.inc.php:683 server_privileges.php:146 +#: libraries/messages.inc.php:679 server_privileges.php:146 #: server_privileges.php:478 msgid "Allows dropping databases and tables." msgstr "Lejon eleminimin e databazave dhe tabelave." -#: libraries/messages.inc.php:684 server_privileges.php:478 +#: libraries/messages.inc.php:680 server_privileges.php:478 msgid "Allows dropping tables." msgstr "Lejon eleminimin e tabelave." -#: libraries/messages.inc.php:685 server_privileges.php:161 +#: libraries/messages.inc.php:681 server_privileges.php:161 #: server_privileges.php:495 msgid "Allows to set up events for the event scheduler" msgstr "" -#: libraries/messages.inc.php:686 server_privileges.php:171 +#: libraries/messages.inc.php:682 server_privileges.php:171 #: server_privileges.php:483 msgid "Allows executing stored routines." msgstr "" -#: libraries/messages.inc.php:687 server_privileges.php:150 +#: libraries/messages.inc.php:683 server_privileges.php:150 #: server_privileges.php:470 msgid "Allows importing data from and exporting data into files." msgstr "" "Lejon importimin e të dhënave nga dhe eksportimin e të dhënave në files." -#: libraries/messages.inc.php:688 server_privileges.php:501 +#: libraries/messages.inc.php:684 server_privileges.php:501 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Lejon të shtosh përdorues dhe të drejta pa ringarkuar tabelat e privilegjeve." -#: libraries/messages.inc.php:689 server_privileges.php:152 +#: libraries/messages.inc.php:685 server_privileges.php:152 #: server_privileges.php:477 msgid "Allows creating and dropping indexes." msgstr "Lejon krijimin dhe eleminimin e treguesve." -#: libraries/messages.inc.php:690 server_privileges.php:142 +#: libraries/messages.inc.php:686 server_privileges.php:142 #: server_privileges.php:403 server_privileges.php:465 msgid "Allows inserting and replacing data." msgstr "Lejon futjen dhe mbishkrimin e të dhënave." -#: libraries/messages.inc.php:691 server_privileges.php:157 +#: libraries/messages.inc.php:687 server_privileges.php:157 #: server_privileges.php:510 msgid "Allows locking tables for the current thread." msgstr "Lejon bllokimin e tabelave për thread e momentit." -#: libraries/messages.inc.php:692 server_privileges.php:607 +#: libraries/messages.inc.php:688 server_privileges.php:607 #: server_privileges.php:609 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Kufizon numrin e lidhjeve të reja që një përdorues mund të hapë në një orë." -#: libraries/messages.inc.php:693 server_privileges.php:595 +#: libraries/messages.inc.php:689 server_privileges.php:595 #: server_privileges.php:597 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Kufizon numrin e kërkesave që një përdorues mund ti dërgojë server-it në një " "orë." -#: libraries/messages.inc.php:694 server_privileges.php:601 +#: libraries/messages.inc.php:690 server_privileges.php:601 #: server_privileges.php:603 msgid "" "Limits the number of commands that change any table or database the user may " @@ -4624,62 +4624,62 @@ msgstr "" "Kufizon numrin e komandave që mund të ndryshojnë një tabelë apo databazë që " "një përdorues mund të zbatojë në një orë." -#: libraries/messages.inc.php:695 server_privileges.php:613 +#: libraries/messages.inc.php:691 server_privileges.php:613 #: server_privileges.php:615 #, fuzzy msgid "Limits the number of simultaneous connections the user may have." msgstr "" "Kufizon numrin e lidhjeve të reja që një përdorues mund të hapë në një orë." -#: libraries/messages.inc.php:696 server_privileges.php:149 +#: libraries/messages.inc.php:692 server_privileges.php:149 #: server_privileges.php:505 msgid "Allows viewing processes of all users" msgstr "" -#: libraries/messages.inc.php:697 server_privileges.php:151 +#: libraries/messages.inc.php:693 server_privileges.php:151 #: server_privileges.php:409 server_privileges.php:511 msgid "Has no effect in this MySQL version." msgstr "Nuk ka asnjë efekt tek ky version i MySQL." -#: libraries/messages.inc.php:698 server_privileges.php:147 +#: libraries/messages.inc.php:694 server_privileges.php:147 #: server_privileges.php:506 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Lejon ringarkimin e parametrave të server-it dhe risetimin e cache të " "servërve." -#: libraries/messages.inc.php:699 server_privileges.php:159 +#: libraries/messages.inc.php:695 server_privileges.php:159 #: server_privileges.php:513 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "I jep të drejtën një përdoruesi të pyesë se ku gjenden slaves / masters." -#: libraries/messages.inc.php:700 server_privileges.php:158 +#: libraries/messages.inc.php:696 server_privileges.php:158 #: server_privileges.php:514 msgid "Needed for the replication slaves." msgstr "Nevoitet për replikimin e slaves." -#: libraries/messages.inc.php:701 server_privileges.php:141 +#: libraries/messages.inc.php:697 server_privileges.php:141 #: server_privileges.php:400 server_privileges.php:464 msgid "Allows reading data." msgstr "Lejon leximin e të dhënave." -#: libraries/messages.inc.php:702 server_privileges.php:154 +#: libraries/messages.inc.php:698 server_privileges.php:154 #: server_privileges.php:508 msgid "Gives access to the complete list of databases." msgstr "Mundëson hyrjen tek lista komplete e databazave." -#: libraries/messages.inc.php:703 server_privileges.php:165 +#: libraries/messages.inc.php:699 server_privileges.php:165 #: server_privileges.php:167 server_privileges.php:480 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: libraries/messages.inc.php:704 server_privileges.php:148 +#: libraries/messages.inc.php:700 server_privileges.php:148 #: server_privileges.php:507 msgid "Allows shutting down the server." msgstr "Lejon përfundimin e serverit." -#: libraries/messages.inc.php:705 server_privileges.php:155 +#: libraries/messages.inc.php:701 server_privileges.php:155 #: server_privileges.php:504 msgid "" "Allows connecting, even if maximum number of connections is reached; " @@ -4690,57 +4690,57 @@ msgstr "" "nevojshëm për shumë operacione administrimi si përcaktimi i të " "ndryshueshmeve globale apo fshirja e threads të përdoruesve të tjerë." -#: libraries/messages.inc.php:706 server_privileges.php:162 +#: libraries/messages.inc.php:702 server_privileges.php:162 #: server_privileges.php:496 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "Lejon krijimin dhe eleminimin e treguesve." -#: libraries/messages.inc.php:707 server_privileges.php:143 +#: libraries/messages.inc.php:703 server_privileges.php:143 #: server_privileges.php:406 server_privileges.php:466 msgid "Allows changing data." msgstr "Lejon ndryshimin e të dhënave." -#: libraries/messages.inc.php:708 server_privileges.php:221 +#: libraries/messages.inc.php:704 server_privileges.php:221 msgid "No privileges." msgstr "Asnjë të drejtë." -#: libraries/messages.inc.php:710 server_privileges.php:1296 +#: libraries/messages.inc.php:706 server_privileges.php:1296 msgid "The privileges were reloaded successfully." msgstr "Të drejtat u përditësuan me sukses." -#: libraries/messages.inc.php:712 libraries/server_links.inc.php:80 +#: libraries/messages.inc.php:708 libraries/server_links.inc.php:80 msgid "Processes" msgstr "Proceset" -#: libraries/messages.inc.php:714 main.php:187 +#: libraries/messages.inc.php:710 main.php:187 msgid "Protocol version" msgstr "" -#: libraries/messages.inc.php:715 +#: libraries/messages.inc.php:711 msgid "Put fields names in the first row" msgstr "Vendos emrat e kollonave tek rreshti i parë" -#: libraries/messages.inc.php:720 server_synchronize.php:1003 +#: libraries/messages.inc.php:716 server_synchronize.php:1003 msgid "The following queries have been executed:" msgstr "" -#: libraries/messages.inc.php:721 server_status.php:251 +#: libraries/messages.inc.php:717 server_status.php:251 #, fuzzy msgid "Query cache" msgstr "Lloji i query" -#: libraries/messages.inc.php:722 libraries/navigation_header.inc.php:80 +#: libraries/messages.inc.php:718 libraries/navigation_header.inc.php:80 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 setup/lib/messages.inc.php:122 msgid "Query window" msgstr "Dritarja e Query" -#: libraries/messages.inc.php:725 querywindow.php:109 querywindow.php:217 +#: libraries/messages.inc.php:721 querywindow.php:109 querywindow.php:217 msgid "SQL history" msgstr "Kronollogjia e SQL" -#: libraries/messages.inc.php:726 server_status.php:490 +#: libraries/messages.inc.php:722 server_status.php:490 #, php-format msgid "" "Query statistics: Since its startup, %s queries have been sent to the " @@ -4749,137 +4749,137 @@ msgstr "" "Statistikat e Query: Që nga nisja e tij, serverit i janë dërguar %s " "queries." -#: libraries/messages.inc.php:728 server_status.php:554 +#: libraries/messages.inc.php:724 server_status.php:554 msgid "Query type" msgstr "Lloji i query" -#: libraries/messages.inc.php:729 libraries/sql_query_form.lib.php:381 +#: libraries/messages.inc.php:725 libraries/sql_query_form.lib.php:381 msgid "Do not overwrite this query from outside the window" msgstr "Mos e mbishkruaj këtë query nga jashtë dritares" -#: libraries/messages.inc.php:732 tbl_operations.php:663 +#: libraries/messages.inc.php:728 tbl_operations.php:663 msgid "Rebuild" msgstr "" -#: libraries/messages.inc.php:733 server_status.php:394 +#: libraries/messages.inc.php:729 server_status.php:394 msgid "Received" msgstr "Marrë" -#: libraries/messages.inc.php:734 pmd_pdf.php:89 +#: libraries/messages.inc.php:730 pmd_pdf.php:89 msgid "recommended" msgstr "" -#: libraries/messages.inc.php:736 tbl_operations.php:702 +#: libraries/messages.inc.php:732 tbl_operations.php:702 msgid "Check referential integrity:" msgstr "Kontrollo integritetin e informacioneve:" -#: libraries/messages.inc.php:740 pdf_schema.php:1032 pdf_schema.php:1141 +#: libraries/messages.inc.php:736 pdf_schema.php:1032 pdf_schema.php:1141 msgid "Relational schema" msgstr "Skema relacionale" -#: libraries/messages.inc.php:744 tbl_relation.php:399 +#: libraries/messages.inc.php:740 tbl_relation.php:399 msgid "Relations" msgstr "Relacione" -#: libraries/messages.inc.php:745 tbl_structure.php:507 tbl_structure.php:509 +#: libraries/messages.inc.php:741 tbl_structure.php:507 tbl_structure.php:509 msgid "Relation view" msgstr "Shiko relacionet" -#: libraries/messages.inc.php:746 server_privileges.php:1246 +#: libraries/messages.inc.php:742 server_privileges.php:1246 msgid "Reloading the privileges" msgstr "Duke ringarkuar të drejtat" -#: libraries/messages.inc.php:747 navigation.php:66 navigation.php:67 +#: libraries/messages.inc.php:743 navigation.php:66 navigation.php:67 #: navigation.php:70 msgid "Reload navigation frame" msgstr "" -#: libraries/messages.inc.php:748 pmd_general.php:80 +#: libraries/messages.inc.php:744 pmd_general.php:80 msgid "Reload" msgstr "" -#: libraries/messages.inc.php:749 libraries/server_synchronize.lib.php:1345 +#: libraries/messages.inc.php:745 libraries/server_synchronize.lib.php:1345 #: libraries/server_synchronize.lib.php:1371 msgid "Remote server" msgstr "" -#: libraries/messages.inc.php:750 +#: libraries/messages.inc.php:746 msgid "Remove CRLF characters within fields" msgstr "" -#: libraries/messages.inc.php:751 tbl_operations.php:676 +#: libraries/messages.inc.php:747 tbl_operations.php:676 msgid "Remove partitioning" msgstr "" -#: libraries/messages.inc.php:752 server_privileges.php:1575 +#: libraries/messages.inc.php:748 server_privileges.php:1575 msgid "Remove selected users" msgstr "Heq përdoruesit e zgjedhur" -#: libraries/messages.inc.php:755 tbl_operations.php:338 +#: libraries/messages.inc.php:751 tbl_operations.php:338 msgid "Rename table to" msgstr "Riemërto tabelën në" -#: libraries/messages.inc.php:756 view_operations.php:93 +#: libraries/messages.inc.php:752 view_operations.php:93 #, fuzzy msgid "Rename view to" msgstr "Riemërto tabelën në" -#: libraries/messages.inc.php:757 tbl_operations.php:664 +#: libraries/messages.inc.php:753 tbl_operations.php:664 #, fuzzy msgid "Repair" msgstr "Riparo tabelën" -#: libraries/messages.inc.php:759 +#: libraries/messages.inc.php:755 msgid "Replace NULL by" msgstr "Zëvendëso NULL me" -#: libraries/messages.inc.php:760 +#: libraries/messages.inc.php:756 msgid "Replace table data with file" msgstr "Zëvendëso të dhënat e tabelës me file" -#: libraries/messages.inc.php:761 server_replication.php:228 +#: libraries/messages.inc.php:757 server_replication.php:228 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: libraries/messages.inc.php:762 libraries/replication_gui.lib.php:236 +#: libraries/messages.inc.php:758 libraries/replication_gui.lib.php:236 #: server_replication.php:194 msgid "Add slave replication user" msgstr "" -#: libraries/messages.inc.php:763 server_replication.php:74 +#: libraries/messages.inc.php:759 server_replication.php:74 #, php-format msgid "Master server changed succesfully to %s" msgstr "" -#: libraries/messages.inc.php:764 server_replication.php:182 +#: libraries/messages.inc.php:760 server_replication.php:182 msgid "This server is configured as master in a replication process." msgstr "" -#: libraries/messages.inc.php:765 server_replication.php:322 +#: libraries/messages.inc.php:761 server_replication.php:322 msgid "Control slave:" msgstr "" -#: libraries/messages.inc.php:766 server_replication.php:65 +#: libraries/messages.inc.php:762 server_replication.php:65 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: libraries/messages.inc.php:767 server_replication.php:58 +#: libraries/messages.inc.php:763 server_replication.php:58 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: libraries/messages.inc.php:768 server_replication.php:221 +#: libraries/messages.inc.php:764 server_replication.php:221 msgid "Replicate all databases; Ignore:" msgstr "" -#: libraries/messages.inc.php:769 server_replication.php:222 +#: libraries/messages.inc.php:765 server_replication.php:222 msgid "Ignore all databases; Replicate:" msgstr "" -#: libraries/messages.inc.php:770 server_replication.php:218 +#: libraries/messages.inc.php:766 server_replication.php:218 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -4888,121 +4888,121 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: libraries/messages.inc.php:771 server_replication.php:217 +#: libraries/messages.inc.php:767 server_replication.php:217 msgid "Master configuration" msgstr "" -#: libraries/messages.inc.php:772 server_replication.php:181 +#: libraries/messages.inc.php:768 server_replication.php:181 #: server_replication.php:209 msgid "Master replication" msgstr "" -#: libraries/messages.inc.php:774 server_replication.php:230 +#: libraries/messages.inc.php:770 server_replication.php:230 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: libraries/messages.inc.php:775 server_replication.php:225 +#: libraries/messages.inc.php:771 server_replication.php:225 #, fuzzy msgid "Please select databases:" msgstr "Të lutem, zgjidh një databazë" -#: libraries/messages.inc.php:776 server_replication.php:210 +#: libraries/messages.inc.php:772 server_replication.php:210 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:188 +#: libraries/messages.inc.php:773 libraries/replication_gui.lib.php:188 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/messages.inc.php:778 server_replication.php:187 +#: libraries/messages.inc.php:774 server_replication.php:187 msgid "Show connected slaves" msgstr "" -#: libraries/messages.inc.php:779 libraries/messages.inc.php:885 +#: libraries/messages.inc.php:775 libraries/messages.inc.php:881 #: server_replication.php:184 server_status.php:281 msgid "Show master status" msgstr "" -#: libraries/messages.inc.php:780 server_replication.php:334 +#: libraries/messages.inc.php:776 server_replication.php:334 msgid "Skipping error(s) might lead into unsynchronized master and slave!" msgstr "" -#: libraries/messages.inc.php:781 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:51 #: server_replication.php:347 msgid "Change or reconfigure master server" msgstr "" -#: libraries/messages.inc.php:782 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:778 libraries/replication_gui.lib.php:51 msgid "Slave configuration" msgstr "" -#: libraries/messages.inc.php:783 server_replication.php:305 +#: libraries/messages.inc.php:779 server_replication.php:305 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: libraries/messages.inc.php:784 server_replication.php:332 +#: libraries/messages.inc.php:780 server_replication.php:332 msgid "Error management:" msgstr "" -#: libraries/messages.inc.php:785 server_replication.php:328 +#: libraries/messages.inc.php:781 server_replication.php:328 #, php-format msgid "IO Thread %s only" msgstr "" -#: libraries/messages.inc.php:786 server_replication.php:296 +#: libraries/messages.inc.php:782 server_replication.php:296 msgid "Slave IO Thread not running!" msgstr "" -#: libraries/messages.inc.php:787 server_replication.php:355 +#: libraries/messages.inc.php:783 server_replication.php:355 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/messages.inc.php:788 server_replication.php:326 +#: libraries/messages.inc.php:784 server_replication.php:326 msgid "Reset slave" msgstr "" -#: libraries/messages.inc.php:789 server_replication.php:308 +#: libraries/messages.inc.php:785 server_replication.php:308 msgid "See slave status table" msgstr "" -#: libraries/messages.inc.php:790 server_replication.php:336 +#: libraries/messages.inc.php:786 server_replication.php:336 msgid "Skip current error" msgstr "" -#: libraries/messages.inc.php:791 server_replication.php:340 +#: libraries/messages.inc.php:787 server_replication.php:340 msgid "errors." msgstr "" -#: libraries/messages.inc.php:792 server_replication.php:337 +#: libraries/messages.inc.php:788 server_replication.php:337 msgid "Skip next" msgstr "" -#: libraries/messages.inc.php:793 server_replication.php:248 +#: libraries/messages.inc.php:789 server_replication.php:248 msgid "Slave replication" msgstr "" -#: libraries/messages.inc.php:794 server_replication.php:293 +#: libraries/messages.inc.php:790 server_replication.php:293 msgid "Slave SQL Thread not running!" msgstr "" -#: libraries/messages.inc.php:795 server_replication.php:327 +#: libraries/messages.inc.php:791 server_replication.php:327 #, php-format msgid "SQL Thread %s only" msgstr "" -#: libraries/messages.inc.php:796 +#: libraries/messages.inc.php:792 #, php-format msgid "" "This MySQL server works as %s in replication process. For further " @@ -5010,160 +5010,160 @@ msgid "" "\"#replication\">replication section." msgstr "" -#: libraries/messages.inc.php:797 +#: libraries/messages.inc.php:793 msgid "Master status" msgstr "" -#: libraries/messages.inc.php:798 server_status.php:721 +#: libraries/messages.inc.php:794 server_status.php:721 msgid "Replication status" msgstr "" -#: libraries/messages.inc.php:799 +#: libraries/messages.inc.php:795 msgid "Slave status" msgstr "" -#: libraries/messages.inc.php:800 server_replication.php:311 +#: libraries/messages.inc.php:796 server_replication.php:311 msgid "Synchronize databases with master" msgstr "" -#: libraries/messages.inc.php:801 server_replication.php:71 +#: libraries/messages.inc.php:797 server_replication.php:71 msgid "Unable to change master" msgstr "" -#: libraries/messages.inc.php:802 server_replication.php:51 +#: libraries/messages.inc.php:798 server_replication.php:51 msgid "Unknown error" msgstr "" -#: libraries/messages.inc.php:803 main.php:163 pdf_pages.php:344 +#: libraries/messages.inc.php:799 main.php:163 pdf_pages.php:344 #: setup/lib/FormDisplay.tpl.php:216 tbl_change.php:1175 msgid "Reset" msgstr "Rinis" -#: libraries/messages.inc.php:804 server_privileges.php:591 +#: libraries/messages.inc.php:800 server_privileges.php:591 msgid "Resource limits" msgstr "Limitet e rezervave" -#: libraries/messages.inc.php:805 tbl_change.php:1209 +#: libraries/messages.inc.php:801 tbl_change.php:1209 #, php-format msgid "Restart insertion with %s rows" msgstr "" -#: libraries/messages.inc.php:807 server_privileges.php:1578 +#: libraries/messages.inc.php:803 server_privileges.php:1578 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Hiqja të gjitha të drejtat aktive përdoruesve dhe pastaj eleminoi." -#: libraries/messages.inc.php:808 server_privileges.php:1176 +#: libraries/messages.inc.php:804 server_privileges.php:1176 #, php-format msgid "You have revoked the privileges for %s" msgstr "Ke anulluar të drejtat për %s" -#: libraries/messages.inc.php:809 server_privileges.php:1333 +#: libraries/messages.inc.php:805 server_privileges.php:1333 msgid "Revoke" msgstr "Hiq" -#: libraries/messages.inc.php:810 libraries/mysql_charsets.lib.php:280 +#: libraries/messages.inc.php:806 libraries/mysql_charsets.lib.php:280 msgid "Romanian" msgstr "Romanisht" -#: libraries/messages.inc.php:813 tbl_printview.php:404 tbl_structure.php:786 +#: libraries/messages.inc.php:809 tbl_printview.php:404 tbl_structure.php:786 msgid "Row length" msgstr "Gjatësia e rreshtit" -#: libraries/messages.inc.php:815 tbl_printview.php:414 tbl_structure.php:794 +#: libraries/messages.inc.php:811 tbl_printview.php:414 tbl_structure.php:794 msgid " Row size " msgstr "Madhësia e rreshtit" -#: libraries/messages.inc.php:821 tbl_printview.php:366 tbl_structure.php:726 +#: libraries/messages.inc.php:817 tbl_printview.php:366 tbl_structure.php:726 msgid "Row Statistics" msgstr "Statistikat e rreshtave" -#: libraries/messages.inc.php:822 +#: libraries/messages.inc.php:818 #, php-format msgid "running on %s" msgstr "në ekzekutim tek %s" -#: libraries/messages.inc.php:824 libraries/sql_query_form.lib.php:223 +#: libraries/messages.inc.php:820 libraries/sql_query_form.lib.php:223 #, fuzzy, php-format msgid "Run SQL query/queries on server %s" msgstr "Zbato query SQL tek databaza %s" -#: libraries/messages.inc.php:825 libraries/sql_query_form.lib.php:240 +#: libraries/messages.inc.php:821 libraries/sql_query_form.lib.php:240 #: libraries/sql_query_form.lib.php:265 #, php-format msgid "Run SQL query/queries on database %s" msgstr "Zbato query SQL tek databaza %s" -#: libraries/messages.inc.php:826 libraries/mysql_charsets.lib.php:337 +#: libraries/messages.inc.php:822 libraries/mysql_charsets.lib.php:337 msgid "Russian" msgstr "Rusisht" -#: libraries/messages.inc.php:829 pmd_general.php:68 +#: libraries/messages.inc.php:825 pmd_general.php:68 msgid "Save position" msgstr "" -#: libraries/messages.inc.php:830 libraries/tbl_properties.inc.php:776 +#: libraries/messages.inc.php:826 libraries/tbl_properties.inc.php:776 #: pdf_pages.php:484 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:214 setup/lib/FormDisplay.tpl.php:215 #: tbl_change.php:1126 tbl_indexes.php:248 tbl_relation.php:566 msgid "Save" msgstr "Ruaj" -#: libraries/messages.inc.php:831 +#: libraries/messages.inc.php:827 msgid "The scale factor is too small to fit the schema on one page" msgstr "Faktori i shkallës është shumë i vogël për të plotësuar skemën në faqe" -#: libraries/messages.inc.php:843 main.php:298 +#: libraries/messages.inc.php:839 main.php:298 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "Tani nevoitet një fjalëkalim sekret për file e konfigurimit(blowfish_secret)." -#: libraries/messages.inc.php:844 navigation.php:353 navigation.php:516 +#: libraries/messages.inc.php:840 navigation.php:353 navigation.php:516 msgid "Please select a database" msgstr "Të lutem, zgjidh një databazë" -#: libraries/messages.inc.php:846 server_binlog.php:120 +#: libraries/messages.inc.php:842 server_binlog.php:120 msgid "Select binary log to view" msgstr "" -#: libraries/messages.inc.php:847 tbl_select.php:270 +#: libraries/messages.inc.php:843 tbl_select.php:270 msgid "Select fields (at least one):" msgstr "Zgjidh fushat (të paktën një):" -#: libraries/messages.inc.php:851 pdf_pages.php:320 +#: libraries/messages.inc.php:847 pdf_pages.php:320 msgid "Select Tables" msgstr "Zgjidh Tabelat" -#: libraries/messages.inc.php:853 server_status.php:404 +#: libraries/messages.inc.php:849 server_status.php:404 msgid "Sent" msgstr "Dërguar" -#: libraries/messages.inc.php:857 libraries/select_server.lib.php:45 +#: libraries/messages.inc.php:853 libraries/select_server.lib.php:45 #: setup/frames/index.inc.php:97 setup/lib/messages.inc.php:115 #, fuzzy msgid "Servers" msgstr "Serveri" -#: libraries/messages.inc.php:858 server_status.php:255 +#: libraries/messages.inc.php:854 server_status.php:255 #, fuzzy msgid "Delayed inserts" msgstr "Përdor shtimet me vonesë" -#: libraries/messages.inc.php:859 server_status.php:46 +#: libraries/messages.inc.php:855 server_status.php:46 msgid "Runtime Information" msgstr "Informacione mbi Runtime" -#: libraries/messages.inc.php:860 server_status.php:350 +#: libraries/messages.inc.php:856 server_status.php:350 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Ky server MySQL po punon që prej %s. U nis më %s." -#: libraries/messages.inc.php:861 libraries/server_links.inc.php:53 +#: libraries/messages.inc.php:857 libraries/server_links.inc.php:53 #: server_engines.php:112 server_engines.php:116 server_status.php:304 #: test/theme.php:105 msgid "Variables" msgstr "Të ndryshueshmet" -#: libraries/messages.inc.php:862 server_status.php:383 +#: libraries/messages.inc.php:858 server_status.php:383 msgid "" "Server traffic: These tables show the network traffic statistics of " "this MySQL server since its startup." @@ -5171,11 +5171,11 @@ msgstr "" "Trafiku i serverit: Këto tabela do të shfaqin statistikat e trafikut " "të rrjetit për këtë server MySQL që nga momenti i nisjes së tij." -#: libraries/messages.inc.php:863 server_variables.php:35 +#: libraries/messages.inc.php:859 server_variables.php:35 msgid "Server variables and settings" msgstr "Të ndryshueshmet dhe parametrat e Serverit" -#: libraries/messages.inc.php:865 main.php:290 +#: libraries/messages.inc.php:861 main.php:290 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -5183,17 +5183,17 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: libraries/messages.inc.php:866 +#: libraries/messages.inc.php:862 msgid "" "Cannot start session without errors, please check errors given in your PHP " "and/or webserver log file and configure your PHP installation properly." msgstr "" -#: libraries/messages.inc.php:867 server_variables.php:55 +#: libraries/messages.inc.php:863 server_variables.php:55 msgid "Session value" msgstr "Vlera seancës" -#: libraries/messages.inc.php:868 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:864 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 " @@ -5205,56 +5205,56 @@ msgstr "" "backslashes (\"\\\") apo single quote (\"'\") para këtyre vlerave, backslash-" "ojini (për shembull '\\\\xyz' o 'a\\'b')." -#: libraries/messages.inc.php:876 server_binlog.php:192 server_binlog.php:195 +#: libraries/messages.inc.php:872 server_binlog.php:192 server_binlog.php:195 #: server_processlist.php:49 server_processlist.php:51 msgid "Show Full Queries" msgstr "Shfaq të gjitha kërkesat" -#: libraries/messages.inc.php:878 pmd_general.php:64 +#: libraries/messages.inc.php:874 pmd_general.php:64 msgid "Show/Hide left menu" msgstr "" -#: libraries/messages.inc.php:880 sql.php:513 +#: libraries/messages.inc.php:876 sql.php:513 msgid "Showing as PHP code" msgstr "" -#: libraries/messages.inc.php:882 sql.php:516 tbl_replace.php:360 +#: libraries/messages.inc.php:878 sql.php:516 tbl_replace.php:360 msgid "Showing SQL query" msgstr "" -#: libraries/messages.inc.php:883 tbl_change.php:1132 +#: libraries/messages.inc.php:879 tbl_change.php:1132 msgid "Show insert query" msgstr "" -#: libraries/messages.inc.php:886 server_status.php:273 +#: libraries/messages.inc.php:882 server_status.php:273 #, fuzzy msgid "Show open tables" msgstr "Shfaq tabelat" -#: libraries/messages.inc.php:887 main.php:219 +#: libraries/messages.inc.php:883 main.php:219 msgid "Show PHP information" msgstr "Trego info mbi PHP" -#: libraries/messages.inc.php:889 server_status.php:278 +#: libraries/messages.inc.php:885 server_status.php:278 msgid "Show slave hosts" msgstr "" -#: libraries/messages.inc.php:890 server_status.php:284 +#: libraries/messages.inc.php:886 server_status.php:284 msgid "Show slave status" msgstr "" -#: libraries/messages.inc.php:891 +#: libraries/messages.inc.php:887 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/messages.inc.php:892 +#: libraries/messages.inc.php:888 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/messages.inc.php:893 +#: libraries/messages.inc.php:889 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -5262,78 +5262,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/messages.inc.php:894 +#: libraries/messages.inc.php:890 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/messages.inc.php:895 +#: libraries/messages.inc.php:891 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/messages.inc.php:896 +#: libraries/messages.inc.php:892 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/messages.inc.php:897 +#: libraries/messages.inc.php:893 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/messages.inc.php:898 +#: libraries/messages.inc.php:894 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/messages.inc.php:899 +#: libraries/messages.inc.php:895 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/messages.inc.php:900 +#: libraries/messages.inc.php:896 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/messages.inc.php:901 +#: libraries/messages.inc.php:897 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/messages.inc.php:902 +#: libraries/messages.inc.php:898 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/messages.inc.php:903 +#: libraries/messages.inc.php:899 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/messages.inc.php:904 +#: libraries/messages.inc.php:900 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: libraries/messages.inc.php:905 +#: libraries/messages.inc.php:901 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/messages.inc.php:906 +#: libraries/messages.inc.php:902 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: libraries/messages.inc.php:907 +#: libraries/messages.inc.php:903 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -5341,7 +5341,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/messages.inc.php:908 +#: libraries/messages.inc.php:904 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -5349,42 +5349,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/messages.inc.php:909 +#: libraries/messages.inc.php:905 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/messages.inc.php:910 +#: libraries/messages.inc.php:906 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/messages.inc.php:911 +#: libraries/messages.inc.php:907 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/messages.inc.php:912 +#: libraries/messages.inc.php:908 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/messages.inc.php:913 +#: libraries/messages.inc.php:909 msgid "The number of pages currently dirty." msgstr "" -#: libraries/messages.inc.php:914 +#: libraries/messages.inc.php:910 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/messages.inc.php:915 +#: libraries/messages.inc.php:911 msgid "The number of free pages." msgstr "" -#: libraries/messages.inc.php:916 +#: libraries/messages.inc.php:912 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/messages.inc.php:917 +#: libraries/messages.inc.php:913 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -5392,33 +5392,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/messages.inc.php:918 +#: libraries/messages.inc.php:914 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/messages.inc.php:919 +#: libraries/messages.inc.php:915 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/messages.inc.php:920 +#: libraries/messages.inc.php:916 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/messages.inc.php:921 +#: libraries/messages.inc.php:917 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/messages.inc.php:922 +#: libraries/messages.inc.php:918 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/messages.inc.php:923 +#: libraries/messages.inc.php:919 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -5427,218 +5427,218 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/messages.inc.php:924 +#: libraries/messages.inc.php:920 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/messages.inc.php:925 +#: libraries/messages.inc.php:921 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/messages.inc.php:926 +#: libraries/messages.inc.php:922 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/messages.inc.php:927 +#: libraries/messages.inc.php:923 msgid "The current number of pending reads." msgstr "" -#: libraries/messages.inc.php:928 +#: libraries/messages.inc.php:924 msgid "The current number of pending writes." msgstr "" -#: libraries/messages.inc.php:929 +#: libraries/messages.inc.php:925 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/messages.inc.php:930 +#: libraries/messages.inc.php:926 msgid "The total number of data reads." msgstr "" -#: libraries/messages.inc.php:931 +#: libraries/messages.inc.php:927 msgid "The total number of data writes." msgstr "" -#: libraries/messages.inc.php:932 +#: libraries/messages.inc.php:928 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/messages.inc.php:933 +#: libraries/messages.inc.php:929 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/messages.inc.php:934 +#: libraries/messages.inc.php:930 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/messages.inc.php:935 +#: libraries/messages.inc.php:931 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/messages.inc.php:936 +#: libraries/messages.inc.php:932 msgid "The number of log write requests." msgstr "" -#: libraries/messages.inc.php:937 +#: libraries/messages.inc.php:933 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/messages.inc.php:938 +#: libraries/messages.inc.php:934 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/messages.inc.php:939 +#: libraries/messages.inc.php:935 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/messages.inc.php:940 +#: libraries/messages.inc.php:936 msgid "Pending log file writes." msgstr "" -#: libraries/messages.inc.php:941 +#: libraries/messages.inc.php:937 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/messages.inc.php:942 +#: libraries/messages.inc.php:938 msgid "The number of pages created." msgstr "" -#: libraries/messages.inc.php:943 +#: libraries/messages.inc.php:939 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: libraries/messages.inc.php:944 +#: libraries/messages.inc.php:940 msgid "The number of pages read." msgstr "" -#: libraries/messages.inc.php:945 +#: libraries/messages.inc.php:941 msgid "The number of pages written." msgstr "" -#: libraries/messages.inc.php:946 +#: libraries/messages.inc.php:942 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/messages.inc.php:947 +#: libraries/messages.inc.php:943 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/messages.inc.php:948 +#: libraries/messages.inc.php:944 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/messages.inc.php:949 +#: libraries/messages.inc.php:945 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/messages.inc.php:950 +#: libraries/messages.inc.php:946 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/messages.inc.php:951 +#: libraries/messages.inc.php:947 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/messages.inc.php:952 +#: libraries/messages.inc.php:948 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/messages.inc.php:953 +#: libraries/messages.inc.php:949 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/messages.inc.php:954 +#: libraries/messages.inc.php:950 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/messages.inc.php:955 +#: libraries/messages.inc.php:951 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/messages.inc.php:956 +#: libraries/messages.inc.php:952 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: libraries/messages.inc.php:957 +#: libraries/messages.inc.php:953 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/messages.inc.php:958 +#: libraries/messages.inc.php:954 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/messages.inc.php:959 +#: libraries/messages.inc.php:955 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/messages.inc.php:960 +#: libraries/messages.inc.php:956 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/messages.inc.php:961 +#: libraries/messages.inc.php:957 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/messages.inc.php:962 +#: libraries/messages.inc.php:958 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/messages.inc.php:963 +#: libraries/messages.inc.php:959 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/messages.inc.php:964 +#: libraries/messages.inc.php:960 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/messages.inc.php:965 +#: libraries/messages.inc.php:961 msgid "The number of files that are open." msgstr "" -#: libraries/messages.inc.php:966 +#: libraries/messages.inc.php:962 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/messages.inc.php:967 +#: libraries/messages.inc.php:963 msgid "The number of tables that are open." msgstr "" -#: libraries/messages.inc.php:968 +#: libraries/messages.inc.php:964 msgid "The number of free memory blocks in query cache." msgstr "" -#: libraries/messages.inc.php:969 +#: libraries/messages.inc.php:965 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/messages.inc.php:970 +#: libraries/messages.inc.php:966 msgid "The number of cache hits." msgstr "" -#: libraries/messages.inc.php:971 +#: libraries/messages.inc.php:967 msgid "The number of queries added to the cache." msgstr "" -#: libraries/messages.inc.php:972 +#: libraries/messages.inc.php:968 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -5646,105 +5646,105 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/messages.inc.php:973 +#: libraries/messages.inc.php:969 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/messages.inc.php:974 +#: libraries/messages.inc.php:970 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/messages.inc.php:975 +#: libraries/messages.inc.php:971 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/messages.inc.php:976 +#: libraries/messages.inc.php:972 #, fuzzy msgctxt "$strShowStatusReset" msgid "Reset" msgstr "Rinis" -#: libraries/messages.inc.php:977 +#: libraries/messages.inc.php:973 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/messages.inc.php:978 +#: libraries/messages.inc.php:974 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: libraries/messages.inc.php:979 +#: libraries/messages.inc.php:975 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/messages.inc.php:980 +#: libraries/messages.inc.php:976 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: libraries/messages.inc.php:981 +#: libraries/messages.inc.php:977 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/messages.inc.php:982 +#: libraries/messages.inc.php:978 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/messages.inc.php:983 +#: libraries/messages.inc.php:979 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/messages.inc.php:984 +#: libraries/messages.inc.php:980 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/messages.inc.php:985 +#: libraries/messages.inc.php:981 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/messages.inc.php:986 +#: libraries/messages.inc.php:982 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/messages.inc.php:987 +#: libraries/messages.inc.php:983 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/messages.inc.php:988 +#: libraries/messages.inc.php:984 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/messages.inc.php:989 +#: libraries/messages.inc.php:985 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/messages.inc.php:990 +#: libraries/messages.inc.php:986 msgid "The number of sorted rows." msgstr "" -#: libraries/messages.inc.php:991 +#: libraries/messages.inc.php:987 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/messages.inc.php:992 +#: libraries/messages.inc.php:988 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/messages.inc.php:993 +#: libraries/messages.inc.php:989 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -5752,18 +5752,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/messages.inc.php:994 +#: libraries/messages.inc.php:990 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/messages.inc.php:995 +#: libraries/messages.inc.php:991 msgid "The number of currently open connections." msgstr "" -#: libraries/messages.inc.php:996 +#: libraries/messages.inc.php:992 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -5771,74 +5771,74 @@ msgid "" "implementation.)" msgstr "" -#: libraries/messages.inc.php:997 +#: libraries/messages.inc.php:993 msgid "The number of threads that are not sleeping." msgstr "" -#: libraries/messages.inc.php:999 tbl_printview.php:75 +#: libraries/messages.inc.php:995 tbl_printview.php:75 msgid "Show tables" msgstr "Shfaq tabelat" -#: libraries/messages.inc.php:1000 libraries/sql_query_form.lib.php:396 +#: libraries/messages.inc.php:996 libraries/sql_query_form.lib.php:396 msgid " Show this query here again " msgstr "Tregoje përsëri këtë query" -#: libraries/messages.inc.php:1001 libraries/mysql_charsets.lib.php:217 +#: libraries/messages.inc.php:997 libraries/mysql_charsets.lib.php:217 #: libraries/mysql_charsets.lib.php:342 msgid "Simplified Chinese" msgstr "Kineze e thjeshtëzuar" -#: libraries/messages.inc.php:1002 tbl_operations.php:258 +#: libraries/messages.inc.php:998 tbl_operations.php:258 msgid "(singly)" msgstr "(një nga një)" -#: libraries/messages.inc.php:1005 libraries/replication_gui.lib.php:52 +#: libraries/messages.inc.php:1001 libraries/replication_gui.lib.php:52 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" msgstr "" -#: libraries/messages.inc.php:1006 libraries/mysql_charsets.lib.php:283 +#: libraries/messages.inc.php:1002 libraries/mysql_charsets.lib.php:283 msgid "Slovak" msgstr "Sllovakisht" -#: libraries/messages.inc.php:1007 libraries/mysql_charsets.lib.php:286 +#: libraries/messages.inc.php:1003 libraries/mysql_charsets.lib.php:286 msgid "Slovenian" msgstr "Sllovenisht" -#: libraries/messages.inc.php:1008 pmd_general.php:95 +#: libraries/messages.inc.php:1004 pmd_general.php:95 msgid "Small/Big All" msgstr "" -#: libraries/messages.inc.php:1009 pmd_general.php:91 +#: libraries/messages.inc.php:1005 pmd_general.php:91 msgid "Snap to grid" msgstr "" -#: libraries/messages.inc.php:1011 server_synchronize.php:1167 +#: libraries/messages.inc.php:1007 server_synchronize.php:1167 msgid "Socket" msgstr "" -#: libraries/messages.inc.php:1013 server_status.php:259 +#: libraries/messages.inc.php:1009 server_status.php:259 msgid "Sorting" msgstr "" -#: libraries/messages.inc.php:1015 tbl_printview.php:310 tbl_structure.php:657 +#: libraries/messages.inc.php:1011 tbl_printview.php:310 tbl_structure.php:657 msgid "Space usage" msgstr "Hapësira e përdorur" -#: libraries/messages.inc.php:1016 libraries/mysql_charsets.lib.php:289 +#: libraries/messages.inc.php:1012 libraries/mysql_charsets.lib.php:289 msgid "Spanish" msgstr "Spanjisht" -#: libraries/messages.inc.php:1019 +#: libraries/messages.inc.php:1015 msgid "Export type" msgstr "Lloji i Eksportit" -#: libraries/messages.inc.php:1020 +#: libraries/messages.inc.php:1016 msgid "Export time in UTC" msgstr "" -#: libraries/messages.inc.php:1021 libraries/sqlparser.lib.php:173 +#: libraries/messages.inc.php:1017 libraries/sqlparser.lib.php:173 msgid "" "There is a chance that you may have found a bug in the SQL parser. Please " "examine your query closely, and check that the quotes are correct and not " @@ -5862,7 +5862,7 @@ msgstr "" "SQL në hyrje në query e vetme që shkakton probleme, dhe dërgoni një bug " "raportim me të dhënat rezultuese nga seksioni CUT i mëposhtëm:" -#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:137 +#: libraries/messages.inc.php:1018 libraries/sqlparser.lib.php:137 msgid "" "There seems to be an error in your SQL query. The MySQL server error output " "below, if there is any, may also help you in diagnosing the problem" @@ -5871,418 +5871,418 @@ msgstr "" "MySQL i treguar më poshtë, nëse ekziston, mund t'ju ndihmojë në " "diagnostikimin e problemit" -#: libraries/messages.inc.php:1026 libraries/sqlparser.lib.php:495 +#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:495 msgid "Invalid Identifer" msgstr "Identifikues i pavlefshëm" -#: libraries/messages.inc.php:1027 libraries/sqlparser.lib.php:344 +#: libraries/messages.inc.php:1023 libraries/sqlparser.lib.php:344 msgid "Unclosed quote" msgstr "Thonjëza të pambyllura" -#: libraries/messages.inc.php:1028 libraries/sqlparser.lib.php:612 +#: libraries/messages.inc.php:1024 libraries/sqlparser.lib.php:612 msgid "Unknown Punctuation String" msgstr "Stringë Punctuation e panjohur" -#: libraries/messages.inc.php:1030 server_replication.php:327 +#: libraries/messages.inc.php:1026 server_replication.php:327 #: server_replication.php:328 #, fuzzy msgid "Start" msgstr "Sht" -#: libraries/messages.inc.php:1033 tbl_printview.php:369 tbl_structure.php:729 +#: libraries/messages.inc.php:1029 tbl_printview.php:369 tbl_structure.php:729 msgid "Statements" msgstr "Instruksione" -#: libraries/messages.inc.php:1034 tbl_printview.php:380 tbl_structure.php:741 +#: libraries/messages.inc.php:1030 tbl_printview.php:380 tbl_structure.php:741 msgid "static" msgstr "" -#: libraries/messages.inc.php:1035 server_status.php:388 +#: libraries/messages.inc.php:1031 server_status.php:388 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: libraries/messages.inc.php:1038 server_replication.php:327 +#: libraries/messages.inc.php:1034 server_replication.php:327 #: server_replication.php:328 msgid "Stop" msgstr "" -#: libraries/messages.inc.php:1039 server_engines.php:49 +#: libraries/messages.inc.php:1035 server_engines.php:49 msgid "Storage Engines" msgstr "" -#: libraries/messages.inc.php:1040 libraries/tbl_properties.inc.php:726 +#: libraries/messages.inc.php:1036 libraries/tbl_properties.inc.php:726 #: server_engines.php:58 tbl_operations.php:353 msgid "Storage Engine" msgstr "" -#: libraries/messages.inc.php:1042 +#: libraries/messages.inc.php:1038 msgid "CSV for MS Excel" msgstr "CSV për të dhëna MS Excel" -#: libraries/messages.inc.php:1044 tbl_structure.php:516 tbl_structure.php:518 +#: libraries/messages.inc.php:1040 tbl_structure.php:516 tbl_structure.php:518 msgid "Propose table structure" msgstr "Propozo strukturën e tabelës" -#: libraries/messages.inc.php:1045 server_synchronize.php:424 +#: libraries/messages.inc.php:1041 server_synchronize.php:424 #: server_synchronize.php:867 msgid "Structure Difference" msgstr "" -#: libraries/messages.inc.php:1049 server_synchronize.php:265 +#: libraries/messages.inc.php:1045 server_synchronize.php:265 msgid "Structure Synchronization" msgstr "" -#: libraries/messages.inc.php:1050 libraries/sql_query_form.lib.php:462 +#: libraries/messages.inc.php:1046 libraries/sql_query_form.lib.php:462 msgid "Submit" msgstr "Dërgoje" -#: libraries/messages.inc.php:1052 main.php:358 +#: libraries/messages.inc.php:1048 main.php:358 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " "issues." msgstr "" -#: libraries/messages.inc.php:1054 libraries/mysql_charsets.lib.php:295 +#: libraries/messages.inc.php:1050 libraries/mysql_charsets.lib.php:295 #: libraries/mysql_charsets.lib.php:392 msgid "Swedish" msgstr "Suedisht" -#: libraries/messages.inc.php:1060 tbl_operations.php:556 +#: libraries/messages.inc.php:1056 tbl_operations.php:556 msgid "Switch to copied table" msgstr "Kalo tek tabela e kopjuar" -#: libraries/messages.inc.php:1061 server_synchronize.php:1213 +#: libraries/messages.inc.php:1057 server_synchronize.php:1213 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." msgstr "" -#: libraries/messages.inc.php:1062 server_synchronize.php:451 +#: libraries/messages.inc.php:1058 server_synchronize.php:451 #: server_synchronize.php:896 msgid "Synchronize Databases" msgstr "" -#: libraries/messages.inc.php:1063 libraries/server_links.inc.php:92 +#: libraries/messages.inc.php:1059 libraries/server_links.inc.php:92 #: server_synchronize.php:1092 server_synchronize.php:1100 msgid "Synchronize" msgstr "" -#: libraries/messages.inc.php:1065 server_synchronize.php:430 +#: libraries/messages.inc.php:1061 server_synchronize.php:430 #: server_synchronize.php:873 msgid "Add column(s)" msgstr "" -#: libraries/messages.inc.php:1066 tbl_create.php:62 +#: libraries/messages.inc.php:1062 tbl_create.php:62 #, fuzzy, php-format msgid "Table %s already exists!" msgstr "Përdoruesi %s ekziston!" -#: libraries/messages.inc.php:1067 server_synchronize.php:432 +#: libraries/messages.inc.php:1063 server_synchronize.php:432 #: server_synchronize.php:875 msgid "Alter column(s)" msgstr "" -#: libraries/messages.inc.php:1068 tbl_addfield.php:189 tbl_alter.php:103 +#: libraries/messages.inc.php:1064 tbl_addfield.php:189 tbl_alter.php:103 #: tbl_indexes.php:98 #, fuzzy, php-format msgid "Table %1$s has been altered successfully" msgstr "Përdoruesit e zgjedhur u hoqën me sukses." -#: libraries/messages.inc.php:1069 server_synchronize.php:434 +#: libraries/messages.inc.php:1065 server_synchronize.php:434 #: server_synchronize.php:877 msgid "Apply index(s)" msgstr "" -#: libraries/messages.inc.php:1071 server_synchronize.php:446 +#: libraries/messages.inc.php:1067 server_synchronize.php:446 #: server_synchronize.php:890 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: libraries/messages.inc.php:1072 tbl_move_copy.php:82 +#: libraries/messages.inc.php:1068 tbl_move_copy.php:82 msgid "The table name is empty!" msgstr "Emri i tabelës është bosh!" -#: libraries/messages.inc.php:1073 tbl_create.php:249 +#: libraries/messages.inc.php:1069 tbl_create.php:249 #, fuzzy, php-format msgid "Table %1$s has been created." msgstr "Tabela %s u eleminua" -#: libraries/messages.inc.php:1076 tbl_operations.php:628 +#: libraries/messages.inc.php:1072 tbl_operations.php:628 #, php-format msgid "Table %s has been flushed" msgstr "Tabela %s u rifreskua" -#: libraries/messages.inc.php:1077 server_synchronize.php:436 +#: libraries/messages.inc.php:1073 server_synchronize.php:436 #: server_synchronize.php:879 msgid "Insert row(s)" msgstr "" -#: libraries/messages.inc.php:1078 libraries/tbl_links.inc.php:107 +#: libraries/messages.inc.php:1074 libraries/tbl_links.inc.php:107 #: libraries/tbl_links.inc.php:140 libraries/tbl_links.inc.php:141 msgid "Table seems to be empty!" msgstr "" -#: libraries/messages.inc.php:1079 tbl_operations.php:568 +#: libraries/messages.inc.php:1075 tbl_operations.php:568 msgid "Table maintenance" msgstr "Administrimi i tabelës" -#: libraries/messages.inc.php:1080 libraries/tbl_properties.inc.php:618 +#: libraries/messages.inc.php:1076 libraries/tbl_properties.inc.php:618 #: server_synchronize.php:428 server_synchronize.php:871 msgid "Table name" msgstr "" -#: libraries/messages.inc.php:1081 pdf_schema.php:1116 +#: libraries/messages.inc.php:1077 pdf_schema.php:1116 msgid "Table of contents" msgstr "Tabela e përmbajtjes" -#: libraries/messages.inc.php:1082 tbl_operations.php:334 +#: libraries/messages.inc.php:1078 tbl_operations.php:334 msgid "Table options" msgstr "Opcione për tabelën" -#: libraries/messages.inc.php:1083 server_synchronize.php:431 +#: libraries/messages.inc.php:1079 server_synchronize.php:431 #: server_synchronize.php:874 msgid "Remove column(s)" msgstr "" -#: libraries/messages.inc.php:1084 server_synchronize.php:433 +#: libraries/messages.inc.php:1080 server_synchronize.php:433 #: server_synchronize.php:876 msgid "Remove index(s)" msgstr "" -#: libraries/messages.inc.php:1088 server_synchronize.php:435 +#: libraries/messages.inc.php:1084 server_synchronize.php:435 #: server_synchronize.php:878 msgid "Update row(s)" msgstr "" -#: libraries/messages.inc.php:1090 server_synchronize.php:942 +#: libraries/messages.inc.php:1086 server_synchronize.php:942 msgid "Target database has been synchronized with source database" msgstr "" -#: libraries/messages.inc.php:1091 server_privileges.php:392 +#: libraries/messages.inc.php:1087 server_privileges.php:392 #: server_privileges.php:527 server_privileges.php:1679 #: server_privileges.php:1685 msgid "Table-specific privileges" msgstr "Të drejta relative me tabelat" -#: libraries/messages.inc.php:1092 server_status.php:254 +#: libraries/messages.inc.php:1088 server_status.php:254 msgid "Temporary data" msgstr "" -#: libraries/messages.inc.php:1093 tbl_change.php:728 +#: libraries/messages.inc.php:1089 tbl_change.php:728 msgid " Because of its length,
this field might not be editable " msgstr " Për shkak të gjatësisë saj,
kjo fushë nuk mund të ndryshohet " -#: libraries/messages.inc.php:1094 +#: libraries/messages.inc.php:1090 msgid "Texy! text" msgstr "" -#: libraries/messages.inc.php:1095 libraries/mysql_charsets.lib.php:298 +#: libraries/messages.inc.php:1091 libraries/mysql_charsets.lib.php:298 #: libraries/mysql_charsets.lib.php:395 msgid "Thai" msgstr "Thai" -#: libraries/messages.inc.php:1102 libraries/replication_gui.lib.php:308 +#: libraries/messages.inc.php:1098 libraries/replication_gui.lib.php:308 #: server_privileges.php:734 msgid "This Host" msgstr "Këtë Host" -#: libraries/messages.inc.php:1103 server_status.php:252 +#: libraries/messages.inc.php:1099 server_status.php:252 msgid "Threads" msgstr "" -#: libraries/messages.inc.php:1104 server_processlist.php:22 +#: libraries/messages.inc.php:1100 server_processlist.php:22 #, php-format msgid "Thread %s was successfully killed." msgstr "Thread %s u përfundua me sukses." -#: libraries/messages.inc.php:1106 +#: libraries/messages.inc.php:1102 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." msgstr "" -#: libraries/messages.inc.php:1109 pmd_pdf.php:94 +#: libraries/messages.inc.php:1105 pmd_pdf.php:94 msgid "to/from page" msgstr "" -#: libraries/messages.inc.php:1110 pdf_pages.php:343 +#: libraries/messages.inc.php:1106 pdf_pages.php:343 msgid "Toggle scratchboard" msgstr "(ç')aktivo scratchboard" -#: libraries/messages.inc.php:1111 pmd_general.php:99 +#: libraries/messages.inc.php:1107 pmd_general.php:99 msgid "Toggle small/big" msgstr "" -#: libraries/messages.inc.php:1112 pmd_help.php:27 +#: libraries/messages.inc.php:1108 pmd_help.php:27 msgid "To select relation, click :" msgstr "" -#: libraries/messages.inc.php:1115 libraries/tbl_links.inc.php:149 +#: libraries/messages.inc.php:1111 libraries/tbl_links.inc.php:149 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" -#: libraries/messages.inc.php:1116 tbl_tracking.php:655 +#: libraries/messages.inc.php:1112 tbl_tracking.php:655 msgid "Activate now" msgstr "" -#: libraries/messages.inc.php:1117 tbl_tracking.php:653 +#: libraries/messages.inc.php:1113 tbl_tracking.php:653 #, php-format msgid "Activate tracking for %s.%s" msgstr "" -#: libraries/messages.inc.php:1118 tbl_tracking.php:221 +#: libraries/messages.inc.php:1114 tbl_tracking.php:221 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/messages.inc.php:1119 tbl_tracking.php:688 +#: libraries/messages.inc.php:1115 tbl_tracking.php:688 #, fuzzy msgid "Create version" msgstr "Versioni i MySQL" -#: libraries/messages.inc.php:1120 tbl_tracking.php:668 +#: libraries/messages.inc.php:1116 tbl_tracking.php:668 #, php-format msgid "Create version %s of %s.%s" msgstr "" -#: libraries/messages.inc.php:1122 tbl_tracking.php:412 +#: libraries/messages.inc.php:1118 tbl_tracking.php:412 msgid "Data definition statement" msgstr "" -#: libraries/messages.inc.php:1123 tbl_tracking.php:463 +#: libraries/messages.inc.php:1119 tbl_tracking.php:463 msgid "Data manipulation statement" msgstr "" -#: libraries/messages.inc.php:1124 tbl_tracking.php:410 tbl_tracking.php:461 +#: libraries/messages.inc.php:1120 tbl_tracking.php:410 tbl_tracking.php:461 #, fuzzy msgid "Date" msgstr "Të dhëna" -#: libraries/messages.inc.php:1125 tbl_tracking.php:642 +#: libraries/messages.inc.php:1121 tbl_tracking.php:642 msgid "Deactivate now" msgstr "" -#: libraries/messages.inc.php:1126 tbl_tracking.php:640 +#: libraries/messages.inc.php:1122 tbl_tracking.php:640 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "" -#: libraries/messages.inc.php:1127 tbl_tracking.php:521 +#: libraries/messages.inc.php:1123 tbl_tracking.php:521 #, php-format msgid "Export as %s" msgstr "" -#: libraries/messages.inc.php:1130 tbl_tracking.php:251 tbl_tracking.php:379 +#: libraries/messages.inc.php:1126 tbl_tracking.php:251 tbl_tracking.php:379 msgid "Close" msgstr "" -#: libraries/messages.inc.php:1131 tbl_tracking.php:114 +#: libraries/messages.inc.php:1127 tbl_tracking.php:114 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/messages.inc.php:1133 tbl_tracking.php:397 tbl_tracking.php:504 +#: libraries/messages.inc.php:1129 tbl_tracking.php:397 tbl_tracking.php:504 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "" -#: libraries/messages.inc.php:1134 tbl_tracking.php:561 +#: libraries/messages.inc.php:1130 tbl_tracking.php:561 msgid "Show versions" msgstr "" -#: libraries/messages.inc.php:1135 tbl_tracking.php:507 +#: libraries/messages.inc.php:1131 tbl_tracking.php:507 msgid "SQL dump (file download)" msgstr "" -#: libraries/messages.inc.php:1136 tbl_tracking.php:508 +#: libraries/messages.inc.php:1132 tbl_tracking.php:508 msgid "SQL dump" msgstr "" -#: libraries/messages.inc.php:1137 tbl_tracking.php:213 +#: libraries/messages.inc.php:1133 tbl_tracking.php:213 msgid "SQL statements executed." msgstr "" -#: libraries/messages.inc.php:1138 +#: libraries/messages.inc.php:1134 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/messages.inc.php:1139 tbl_tracking.php:509 +#: libraries/messages.inc.php:1135 tbl_tracking.php:509 msgid "SQL execution" msgstr "" -#: libraries/messages.inc.php:1140 tbl_tracking.php:230 +#: libraries/messages.inc.php:1136 tbl_tracking.php:230 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/messages.inc.php:1141 tbl_tracking.php:381 +#: libraries/messages.inc.php:1137 tbl_tracking.php:381 msgid "Tracking statements" msgstr "" -#: libraries/messages.inc.php:1148 tbl_tracking.php:593 +#: libraries/messages.inc.php:1144 tbl_tracking.php:593 #, fuzzy msgid "Version" msgstr "Versioni i PHP" -#: libraries/messages.inc.php:1149 tbl_tracking.php:672 +#: libraries/messages.inc.php:1145 tbl_tracking.php:672 msgid "Track these data definition statements:" msgstr "" -#: libraries/messages.inc.php:1150 tbl_tracking.php:680 +#: libraries/messages.inc.php:1146 tbl_tracking.php:680 msgid "Track these data manipulation statements:" msgstr "" -#: libraries/messages.inc.php:1155 tbl_tracking.php:411 tbl_tracking.php:462 +#: libraries/messages.inc.php:1151 tbl_tracking.php:411 tbl_tracking.php:462 #, fuzzy msgid "Username" msgstr "Emri i përdoruesit:" -#: libraries/messages.inc.php:1156 tbl_tracking.php:203 +#: libraries/messages.inc.php:1152 tbl_tracking.php:203 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "" -#: libraries/messages.inc.php:1157 tbl_tracking.php:187 +#: libraries/messages.inc.php:1153 tbl_tracking.php:187 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "" -#: libraries/messages.inc.php:1158 tbl_tracking.php:195 +#: libraries/messages.inc.php:1154 tbl_tracking.php:195 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "" -#: libraries/messages.inc.php:1159 tbl_tracking.php:262 +#: libraries/messages.inc.php:1155 tbl_tracking.php:262 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/messages.inc.php:1161 tbl_tracking.php:220 +#: libraries/messages.inc.php:1157 tbl_tracking.php:220 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/messages.inc.php:1162 libraries/mysql_charsets.lib.php:219 +#: libraries/messages.inc.php:1158 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:362 msgid "Traditional Chinese" msgstr "Kineze tradicionale" -#: libraries/messages.inc.php:1163 libraries/mysql_charsets.lib.php:292 +#: libraries/messages.inc.php:1159 libraries/mysql_charsets.lib.php:292 msgid "Traditional Spanish" msgstr "Spanjishte tradicionale" -#: libraries/messages.inc.php:1164 server_status.php:388 +#: libraries/messages.inc.php:1160 server_status.php:388 msgid "Traffic" msgstr "Trafiku" -#: libraries/messages.inc.php:1165 server_status.php:261 +#: libraries/messages.inc.php:1161 server_status.php:261 msgid "Transaction coordinator" msgstr "" -#: libraries/messages.inc.php:1166 +#: libraries/messages.inc.php:1162 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 " @@ -6294,13 +6294,13 @@ msgstr "" "së rreshtit të tabelës që përmban emrin e file. Nëse jepni opcionin e dytë, " "opcioni i parë duhet të jetë një stringë bosh" -#: libraries/messages.inc.php:1167 +#: libraries/messages.inc.php:1163 msgid "" "Displays hexadecimal representation of data. Optional first parameter " "specifies how often space will be added (defaults to 2 nibbles)." msgstr "" -#: libraries/messages.inc.php:1168 +#: libraries/messages.inc.php:1164 msgid "" "Displays a clickable thumbnail. The options are the maximum width and height " "in pixels. The original aspect ratio is preserved." @@ -6308,15 +6308,15 @@ msgstr "" "Shfaq një miniaturë të klikueshme; mundësitë: gjërësia, lartësia në pixels " "(ruan proporcionin origjinal)" -#: libraries/messages.inc.php:1169 +#: libraries/messages.inc.php:1165 msgid "Displays a link to download this image." msgstr "Shfaq një lidhje për tek kjo figurë (download blob direkt, p.sh.)." -#: libraries/messages.inc.php:1170 +#: libraries/messages.inc.php:1166 msgid "See image/jpeg: inline" msgstr "Shiko figurën/jpeg: në linjë" -#: libraries/messages.inc.php:1171 +#: libraries/messages.inc.php:1167 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 " @@ -6328,7 +6328,7 @@ msgid "" "gmdate() function." msgstr "" -#: libraries/messages.inc.php:1172 +#: libraries/messages.inc.php:1168 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 " @@ -6353,14 +6353,14 @@ msgstr "" "shtojë një NOWRAP përmbajtjes së qelisë kështu që output komplet do të " "shfaqet pa u riformatuar (Default: 1)" -#: libraries/messages.inc.php:1173 +#: libraries/messages.inc.php:1169 msgid "" "Displays the contents of the field as-is, without running it through " "htmlspecialchars(). That is, the field is assumed to contain valid HTML." msgstr "" "Konservon formatimin origjinal të fushës. Nuk aplikohet asnjë Escaping." -#: libraries/messages.inc.php:1174 +#: libraries/messages.inc.php:1170 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 " @@ -6370,7 +6370,7 @@ msgstr "" "është një prefiks si \"http://domain.com/\", opcioni i dytë është gjërësia " "në pixels, i treti është lartësia." -#: libraries/messages.inc.php:1175 +#: libraries/messages.inc.php:1171 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 " @@ -6379,11 +6379,11 @@ msgstr "" "Shfaq një link, fusha përmban emrin e file; opcioni i parë është një prefiks " "si \"http://domain.com/\", opcioni i dytë është një titull për lidhjen." -#: libraries/messages.inc.php:1176 +#: libraries/messages.inc.php:1172 msgid "Formats text as SQL query with syntax highlighting." msgstr "" -#: libraries/messages.inc.php:1177 +#: libraries/messages.inc.php:1173 msgid "" "Displays a part of a string. The first option is the number of characters to " "skip from the beginning of the string (Default 0). The second option is the " @@ -6397,70 +6397,70 @@ msgstr "" "të gjithë tekstin e mbetur. Opcioni i tretë përcakton çfarë karakteresh do " "të shtohen në fund të output kur kthehet një nën-string-ë (Default: ...) ." -#: libraries/messages.inc.php:1179 server_binlog.php:183 server_binlog.php:186 +#: libraries/messages.inc.php:1175 server_binlog.php:183 server_binlog.php:186 #: server_processlist.php:49 server_processlist.php:51 msgid "Truncate Shown Queries" msgstr "Shkurton (ndërpret) Queries e Shfaqura" -#: libraries/messages.inc.php:1180 libraries/mysql_charsets.lib.php:301 +#: libraries/messages.inc.php:1176 libraries/mysql_charsets.lib.php:301 #: libraries/mysql_charsets.lib.php:389 msgid "Turkish" msgstr "Turqisht" -#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:304 +#: libraries/messages.inc.php:1179 libraries/mysql_charsets.lib.php:304 #: libraries/mysql_charsets.lib.php:386 msgid "Ukrainian" msgstr "Ukrainase" -#: libraries/messages.inc.php:1185 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:1181 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 msgid "Unicode" msgstr "Unicode" -#: libraries/messages.inc.php:1187 libraries/mysql_charsets.lib.php:398 +#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:398 #: libraries/mysql_charsets.lib.php:405 msgid "unknown" msgstr "e panjohur" -#: libraries/messages.inc.php:1190 server_privileges.php:1152 +#: libraries/messages.inc.php:1186 server_privileges.php:1152 #, php-format msgid "You have updated the privileges for %s." msgstr "Ke rifreskuar lejet për %s." -#: libraries/messages.inc.php:1191 user_password.php:112 +#: libraries/messages.inc.php:1187 user_password.php:112 msgid "The profile has been updated." msgstr "Profili u rifreskua." -#: libraries/messages.inc.php:1193 libraries/relation.lib.php:138 +#: libraries/messages.inc.php:1189 libraries/relation.lib.php:138 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "Ju lutem lexoni dokumentet mbi rifreskimin e tabelës suaj Column_comments" -#: libraries/messages.inc.php:1194 +#: libraries/messages.inc.php:1190 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Duhet të instaloni %s %s ose superior." -#: libraries/messages.inc.php:1204 tbl_printview.php:314 tbl_structure.php:661 +#: libraries/messages.inc.php:1200 tbl_printview.php:314 tbl_structure.php:661 msgid "Usage" msgstr "Përdorimi" -#: libraries/messages.inc.php:1205 +#: libraries/messages.inc.php:1201 msgid "Enclose table and field names with backquotes" msgstr "Përdor backquotes me emrat e tabelave dhe fushave" -#: libraries/messages.inc.php:1206 libraries/replication_gui.lib.php:314 +#: libraries/messages.inc.php:1202 libraries/replication_gui.lib.php:314 #: server_privileges.php:740 msgid "Use Host Table" msgstr "Përdor Tabelën e Host-it" -#: libraries/messages.inc.php:1207 server_privileges.php:848 +#: libraries/messages.inc.php:1203 server_privileges.php:848 #, php-format msgid "The user %s already exists!" msgstr "Përdoruesi %s ekziston!" -#: libraries/messages.inc.php:1209 libraries/replication_gui.lib.php:55 +#: libraries/messages.inc.php:1205 libraries/replication_gui.lib.php:55 #: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245 #: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255 #: server_privileges.php:672 server_privileges.php:675 @@ -6468,35 +6468,35 @@ msgstr "Përdoruesi %s ekziston!" msgid "User name" msgstr "Emri i përdoruesit" -#: libraries/messages.inc.php:1210 server_privileges.php:1645 +#: libraries/messages.inc.php:1206 server_privileges.php:1645 msgid "The selected user was not found in the privilege table." msgstr "Përdoruesi i zgjedhur nuk u gjet tek tabela e të drejtave." -#: libraries/messages.inc.php:1211 server_privileges.php:1365 +#: libraries/messages.inc.php:1207 server_privileges.php:1365 msgid "User overview" msgstr "Paraqitja e përgjithshme e përdoruesve" -#: libraries/messages.inc.php:1212 server_privileges.php:1261 +#: libraries/messages.inc.php:1208 server_privileges.php:1261 msgid "The selected users have been deleted successfully." msgstr "Përdoruesit e zgjedhur u hoqën me sukses." -#: libraries/messages.inc.php:1213 server_privileges.php:2026 +#: libraries/messages.inc.php:1209 server_privileges.php:2026 #, php-format msgid "Users having access to "%s"" msgstr "Përdoruesit që kanë hyrje tek "%s"" -#: libraries/messages.inc.php:1214 main.php:189 server_privileges.php:1350 +#: libraries/messages.inc.php:1210 main.php:189 server_privileges.php:1350 #: server_privileges.php:1497 server_privileges.php:1611 #: server_privileges.php:2029 server_processlist.php:54 msgid "User" msgstr "Përdorues" -#: libraries/messages.inc.php:1215 tbl_change.php:1171 +#: libraries/messages.inc.php:1211 tbl_change.php:1171 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/messages.inc.php:1217 libraries/replication_gui.lib.php:251 +#: libraries/messages.inc.php:1213 libraries/replication_gui.lib.php:251 #: libraries/replication_gui.lib.php:319 libraries/replication_gui.lib.php:342 #: server_privileges.php:678 server_privileges.php:745 #: server_privileges.php:769 server_privileges.php:1889 @@ -6504,7 +6504,7 @@ msgstr "" msgid "Use text field" msgstr "Përdor fushë teksti" -#: libraries/messages.inc.php:1221 libraries/sqlvalidator.lib.php:68 +#: libraries/messages.inc.php:1217 libraries/sqlvalidator.lib.php:68 #, php-format msgid "" "The SQL validator could not be initialized. Please check if you have " @@ -6513,87 +6513,87 @@ msgstr "" "Miratuesi SQL nuk arrin të niset. Ju lutem kontrolloni instalimin e " "prapashtesave të duhura php ashtu si përshkruhet tek %sdokumentimi%s." -#: libraries/messages.inc.php:1222 libraries/replication_gui.lib.php:111 +#: libraries/messages.inc.php:1218 libraries/replication_gui.lib.php:111 #: server_status.php:627 tbl_change.php:324 tbl_printview.php:370 #: tbl_select.php:139 tbl_structure.php:730 msgid "Value" msgstr "Vlerë" -#: libraries/messages.inc.php:1223 libraries/replication_gui.lib.php:110 +#: libraries/messages.inc.php:1219 libraries/replication_gui.lib.php:110 #: libraries/sql_query_form.lib.php:445 server_status.php:626 #: server_variables.php:52 msgid "Variable" msgstr "E ndryshueshme" -#: libraries/messages.inc.php:1225 server_export.php:21 +#: libraries/messages.inc.php:1221 server_export.php:21 msgid "View dump (schema) of databases" msgstr "Shfaq dump (skema) e databazave" -#: libraries/messages.inc.php:1227 tbl_export.php:23 +#: libraries/messages.inc.php:1223 tbl_export.php:23 msgid "View dump (schema) of table" msgstr "Shfaq dump (skema) e tabelës" -#: libraries/messages.inc.php:1231 view_create.php:142 +#: libraries/messages.inc.php:1227 view_create.php:142 msgid "VIEW name" msgstr "" -#: libraries/messages.inc.php:1237 main.php:205 +#: libraries/messages.inc.php:1233 main.php:205 msgid "Web server" msgstr "" -#: libraries/messages.inc.php:1239 libraries/mysql_charsets.lib.php:277 +#: libraries/messages.inc.php:1235 libraries/mysql_charsets.lib.php:277 #: libraries/mysql_charsets.lib.php:325 msgid "West European" msgstr "Europa Perëndimore" -#: libraries/messages.inc.php:1240 main.php:230 +#: libraries/messages.inc.php:1236 main.php:230 msgid "Wiki" msgstr "" -#: libraries/messages.inc.php:1241 server_privileges.php:2138 +#: libraries/messages.inc.php:1237 server_privileges.php:2138 msgid "wildcard" msgstr "wildcard" -#: libraries/messages.inc.php:1248 +#: libraries/messages.inc.php:1244 msgid "Export contents" msgstr "" -#: libraries/messages.inc.php:1249 +#: libraries/messages.inc.php:1245 msgid "Export functions" msgstr "" -#: libraries/messages.inc.php:1250 +#: libraries/messages.inc.php:1246 msgid "Export procedures" msgstr "" -#: libraries/messages.inc.php:1251 +#: libraries/messages.inc.php:1247 msgid "Export Structure Schemas (recommended)" msgstr "" -#: libraries/messages.inc.php:1252 +#: libraries/messages.inc.php:1248 #, fuzzy msgid "Export tables" msgstr "Lloji i Eksportit" -#: libraries/messages.inc.php:1253 +#: libraries/messages.inc.php:1249 #, fuzzy msgid "Export triggers" msgstr "Lloji i Eksportit" -#: libraries/messages.inc.php:1254 +#: libraries/messages.inc.php:1250 msgid "Export views" msgstr "" -#: libraries/messages.inc.php:1255 +#: libraries/messages.inc.php:1251 msgid "XML" msgstr "XML" -#: libraries/messages.inc.php:1259 server_privileges.php:592 +#: libraries/messages.inc.php:1255 server_privileges.php:592 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." -#: libraries/messages.inc.php:1260 +#: libraries/messages.inc.php:1256 msgid "\"zipped\"" msgstr "\"kompresuar me zip\"" diff --git a/po/sr.po b/po/sr.po index a135d11f1..d1d96cf84 100644 --- 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-05-13 11:25+0200\n" +"POT-Creation-Date: 2010-05-13 11:30+0200\n" "PO-Revision-Date: 2010-03-30 23:47+0200\n" "Last-Translator: Michal \n" "Language-Team: serbian_cyrillic \n" @@ -16,19 +16,19 @@ msgstr "" "X-Generator: Pootle 2.0.1\n" #: browse_foreigners.php:38 browse_foreigners.php:59 -#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:870 +#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:866 #: server_privileges.php:1475 msgid "Show all" msgstr "Прикажи све" #: browse_foreigners.php:82 db_operations.php:648 -#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:394 -#: libraries/export/pdf.php:147 libraries/messages.inc.php:597 +#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394 +#: libraries/export/pdf.php:147 libraries/messages.inc.php:593 #: pdf_schema.php:283 pdf_schema.php:1123 pdf_schema.php:1139 msgid "Page number:" msgstr "Број стране:" -#: browse_foreigners.php:132 libraries/messages.inc.php:1242 +#: browse_foreigners.php:132 libraries/messages.inc.php:1238 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -41,7 +41,7 @@ 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/db_links.inc.php:75 -#: libraries/messages.inc.php:841 libraries/tbl_links.inc.php:63 +#: libraries/messages.inc.php:837 libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Претраживање" @@ -50,12 +50,12 @@ msgstr "Претраживање" #: db_search.php:362 db_structure.php:567 js/messages.php:48 #: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2267 +#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 #: 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 #: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614 -#: libraries/messages.inc.php:361 libraries/replication_gui.lib.php:73 +#: libraries/messages.inc.php:357 libraries/replication_gui.lib.php:73 #: libraries/replication_gui.lib.php:365 libraries/select_server.lib.php:104 #: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477 #: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782 @@ -75,33 +75,33 @@ msgid "Go" msgstr "Крени" #: browse_foreigners.php:168 browse_foreigners.php:172 -#: libraries/Index.class.php:442 libraries/messages.inc.php:459 +#: libraries/Index.class.php:442 libraries/messages.inc.php:455 #: tbl_tracking.php:320 msgid "Keyname" msgstr "Име кључа" #: browse_foreigners.php:169 browse_foreigners.php:171 -#: libraries/messages.inc.php:252 server_collations.php:55 +#: libraries/messages.inc.php:248 server_collations.php:55 #: server_collations.php:67 server_engines.php:59 server_status.php:628 msgid "Description" msgstr "Опис" #: browse_foreigners.php:247 browse_foreigners.php:256 #: browse_foreigners.php:268 browse_foreigners.php:276 -#: libraries/messages.inc.php:1218 +#: libraries/messages.inc.php:1214 msgid "Use this value" msgstr "Користи ову вредност" -#: db_create.php:46 libraries/messages.inc.php:215 +#: db_create.php:46 libraries/messages.inc.php:211 #, fuzzy, php-format msgid "Database %1$s has been created." msgstr "База %s је одбачена." -#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:232 +#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:228 msgid "Database comment: " msgstr "Коментар базе:" -#: db_datadict.php:165 libraries/messages.inc.php:1070 +#: db_datadict.php:165 libraries/messages.inc.php:1066 #: libraries/tbl_properties.inc.php:724 pdf_schema.php:1236 #: tbl_operations.php:345 tbl_printview.php:130 msgid "Table comments" @@ -110,7 +110,7 @@ msgstr "Коментари табеле" #: db_datadict.php:174 db_qbe.php:174 libraries/Index.class.php:446 #: libraries/export/htmlword.php:244 libraries/export/latex.php:360 #: libraries/export/odt.php:294 libraries/export/texytext.php:233 -#: libraries/messages.inc.php:317 libraries/tbl_properties.inc.php:99 +#: libraries/messages.inc.php:313 libraries/tbl_properties.inc.php:99 #: libraries/tbl_properties.inc.php:275 pdf_schema.php:1262 #: pdf_schema.php:1283 tbl_change.php:308 tbl_indexes.php:189 #: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135 @@ -122,7 +122,7 @@ msgstr "Поље" #: libraries/db_events.inc.php:31 libraries/db_routines.inc.php:42 #: 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/messages.inc.php:1181 +#: libraries/export/texytext.php:234 libraries/messages.inc.php:1177 #: libraries/tbl_properties.inc.php:100 pdf_schema.php:1263 #: pdf_schema.php:1284 server_privileges.php:2031 tbl_change.php:287 #: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313 @@ -134,7 +134,7 @@ msgstr "Тип" #: db_datadict.php:177 libraries/Index.class.php:449 #: libraries/export/htmlword.php:246 libraries/export/latex.php:360 #: libraries/export/odt.php:300 libraries/export/texytext.php:235 -#: libraries/messages.inc.php:576 libraries/tbl_properties.inc.php:109 +#: libraries/messages.inc.php:572 libraries/tbl_properties.inc.php:109 #: pdf_schema.php:1265 pdf_schema.php:1286 tbl_change.php:323 #: tbl_printview.php:145 tbl_structure.php:181 tbl_tracking.php:276 #: tbl_tracking.php:327 @@ -143,7 +143,7 @@ msgstr "Null" #: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 -#: libraries/export/texytext.php:236 libraries/messages.inc.php:238 +#: libraries/export/texytext.php:236 libraries/messages.inc.php:234 #: libraries/tbl_properties.inc.php:106 pdf_schema.php:1266 #: pdf_schema.php:1287 tbl_printview.php:146 tbl_structure.php:182 #: tbl_tracking.php:277 @@ -152,14 +152,14 @@ msgstr "Подразумевано" #: db_datadict.php:182 libraries/export/htmlword.php:249 #: libraries/export/latex.php:362 libraries/export/odt.php:307 -#: libraries/export/texytext.php:238 libraries/messages.inc.php:483 +#: libraries/export/texytext.php:238 libraries/messages.inc.php:479 #: pdf_schema.php:1268 pdf_schema.php:1289 tbl_printview.php:150 msgid "Links to" msgstr "Везе ка" #: db_datadict.php:184 db_printview.php:112 libraries/export/htmlword.php:252 #: libraries/export/latex.php:365 libraries/export/odt.php:312 -#: libraries/export/texytext.php:241 libraries/messages.inc.php:163 +#: libraries/export/texytext.php:241 libraries/messages.inc.php:159 #: libraries/tbl_properties.inc.php:130 pdf_schema.php:1279 #: pdf_schema.php:1290 tbl_printview.php:152 msgid "Comments" @@ -168,7 +168,7 @@ msgstr "Коментари" #: db_datadict.php:267 libraries/Index.class.php:359 #: 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/messages.inc.php:559 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:555 #: libraries/mult_submits.inc.php:263 pdf_schema.php:1344 #: server_privileges.php:1529 server_privileges.php:1540 #: server_privileges.php:1850 server_privileges.php:1855 @@ -180,7 +180,7 @@ msgstr "Не" #: db_datadict.php:267 libraries/Index.class.php:360 #: libraries/Index.class.php:385 libraries/export/htmlword.php:322 #: libraries/export/latex.php:430 libraries/export/odt.php:368 -#: libraries/export/texytext.php:311 libraries/messages.inc.php:1257 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:1253 #: libraries/mult_submits.inc.php:45 libraries/mult_submits.inc.php:50 #: libraries/mult_submits.inc.php:55 libraries/mult_submits.inc.php:60 #: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:101 @@ -194,108 +194,108 @@ msgstr "Не" msgid "Yes" msgstr "Да" -#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:670 +#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:666 #: tbl_printview.php:498 msgid "Print" msgstr "Штампај" -#: db_export.php:29 libraries/messages.inc.php:1226 +#: db_export.php:29 libraries/messages.inc.php:1222 msgid "View dump (schema) of database" msgstr "Прикажи садржај (схему) базе" #: db_export.php:33 db_printview.php:96 db_qbe.php:102 db_structure.php:51 -#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:568 +#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:564 #: navigation.php:346 msgid "No tables found in database." msgstr "Табеле нису пронађене у бази." -#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:845 +#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:841 #: server_export.php:27 msgid "Select All" msgstr "Изабери све" -#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1188 +#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1184 #: server_export.php:29 msgid "Unselect All" msgstr "ништа" -#: db_operations.php:38 libraries/messages.inc.php:213 tbl_create.php:54 +#: db_operations.php:38 libraries/messages.inc.php:209 tbl_create.php:54 msgid "The database name is empty!" msgstr "Име базе није задато!" -#: db_operations.php:236 libraries/messages.inc.php:753 +#: db_operations.php:236 libraries/messages.inc.php:749 #, php-format msgid "Database %s has been renamed to %s" msgstr "База %s је преименована у %s" -#: db_operations.php:240 libraries/messages.inc.php:178 +#: db_operations.php:240 libraries/messages.inc.php:174 #, php-format msgid "Database %s has been copied to %s" msgstr "База %s је прекопирана у %s" -#: db_operations.php:410 libraries/messages.inc.php:236 +#: db_operations.php:410 libraries/messages.inc.php:232 msgid "Rename database to" msgstr "Преименуј базу у" -#: db_operations.php:415 libraries/messages.inc.php:161 +#: db_operations.php:415 libraries/messages.inc.php:157 #: server_processlist.php:57 msgid "Command" msgstr "Наредба" -#: db_operations.php:425 libraries/messages.inc.php:58 tbl_change.php:1143 +#: db_operations.php:425 libraries/messages.inc.php:54 tbl_change.php:1143 msgid "and then" msgstr "и онда" -#: db_operations.php:451 libraries/messages.inc.php:233 +#: db_operations.php:451 libraries/messages.inc.php:229 msgid "Copy database to" msgstr "Копирај базу у" -#: db_operations.php:458 libraries/messages.inc.php:1043 +#: db_operations.php:458 libraries/messages.inc.php:1039 #: tbl_operations.php:526 tbl_tracking.php:388 msgid "Structure only" msgstr "Само структура" -#: db_operations.php:459 libraries/messages.inc.php:1041 +#: db_operations.php:459 libraries/messages.inc.php:1037 #: tbl_operations.php:527 tbl_tracking.php:390 msgid "Structure and data" msgstr "Структура и подаци" -#: db_operations.php:460 libraries/messages.inc.php:229 tbl_operations.php:528 +#: db_operations.php:460 libraries/messages.inc.php:225 tbl_operations.php:528 #: tbl_tracking.php:389 msgid "Data only" msgstr "Само подаци" -#: db_operations.php:468 libraries/messages.inc.php:186 +#: db_operations.php:468 libraries/messages.inc.php:182 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE пре копирања" #: db_operations.php:471 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 -#: libraries/export/sql.php:82 libraries/messages.inc.php:30 +#: libraries/export/sql.php:82 libraries/messages.inc.php:26 #: tbl_operations.php:534 #, php-format msgid "Add %s" msgstr "Додај %s" -#: db_operations.php:475 libraries/messages.inc.php:29 tbl_operations.php:297 +#: db_operations.php:475 libraries/messages.inc.php:25 tbl_operations.php:297 #: tbl_operations.php:536 msgid "Add AUTO_INCREMENT value" msgstr "Додај AUTO_INCREMENT вредност" -#: db_operations.php:479 libraries/messages.inc.php:31 tbl_operations.php:543 +#: db_operations.php:479 libraries/messages.inc.php:27 tbl_operations.php:543 msgid "Add constraints" msgstr "Додај ограничења" -#: db_operations.php:492 libraries/messages.inc.php:1059 +#: db_operations.php:492 libraries/messages.inc.php:1055 msgid "Switch to copied database" msgstr "Пребаци се на копирану базу" -#: db_operations.php:533 libraries/messages.inc.php:89 +#: db_operations.php:533 libraries/messages.inc.php:85 msgid "BLOB Repository" msgstr "" #: db_operations.php:536 db_tracking.php:76 libraries/common.lib.php:1350 -#: libraries/messages.inc.php:1037 libraries/server_links.inc.php:49 +#: libraries/messages.inc.php:1033 libraries/server_links.inc.php:49 #: server_processlist.php:59 tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "Статус" @@ -307,12 +307,12 @@ msgctxt "BLOB repository" msgid "Enabled" msgstr "Омогућено" -#: db_operations.php:548 libraries/messages.inc.php:93 +#: db_operations.php:548 libraries/messages.inc.php:89 #, fuzzy msgid "Disable" msgstr "Онемогућено" -#: db_operations.php:558 libraries/messages.inc.php:90 +#: db_operations.php:558 libraries/messages.inc.php:86 msgid "Damaged" msgstr "" @@ -329,13 +329,13 @@ msgctxt "BLOB repository" msgid "Disabled" msgstr "Онемогућено" -#: db_operations.php:574 libraries/messages.inc.php:96 +#: db_operations.php:574 libraries/messages.inc.php:92 #, fuzzy msgid "Enable" msgstr "Омогућено" #: db_operations.php:598 libraries/Index.class.php:448 -#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:158 +#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:154 #: 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:361 @@ -344,7 +344,7 @@ msgstr "Омогућено" msgid "Collation" msgstr "Сортирање" -#: db_operations.php:609 libraries/messages.inc.php:742 main.php:316 +#: db_operations.php:609 libraries/messages.inc.php:738 main.php:316 #: pdf_schema.php:34 #, php-format msgid "" @@ -354,58 +354,58 @@ msgstr "" "Додатне могућности за рад са повезаним табелама су искључене. Да бисте " "сазнали зашто, кликните %sовде%s." -#: db_operations.php:645 libraries/messages.inc.php:264 pdf_pages.php:528 +#: db_operations.php:645 libraries/messages.inc.php:260 pdf_pages.php:528 msgid "Display PDF schema" msgstr "Прикажи PDF схему" -#: db_operations.php:661 libraries/messages.inc.php:877 pdf_pages.php:529 +#: db_operations.php:661 libraries/messages.inc.php:873 pdf_pages.php:529 msgid "Show grid" msgstr "Прикажи мрежу" -#: db_operations.php:664 libraries/messages.inc.php:874 pdf_pages.php:530 +#: db_operations.php:664 libraries/messages.inc.php:870 pdf_pages.php:530 msgid "Show color" msgstr "Прикажи боју" -#: db_operations.php:666 libraries/messages.inc.php:998 pdf_pages.php:531 +#: db_operations.php:666 libraries/messages.inc.php:994 pdf_pages.php:531 msgid "Show dimension of tables" msgstr "Прикажи димензије табеле" -#: db_operations.php:669 libraries/messages.inc.php:52 pdf_pages.php:532 +#: db_operations.php:669 libraries/messages.inc.php:48 pdf_pages.php:532 msgid "Display all tables with the same width" msgstr "Приказ свих табела исте ширине?" -#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:227 +#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:223 #: pdf_pages.php:533 msgid "Data Dictionary" msgstr "Речник података" -#: db_operations.php:674 libraries/messages.inc.php:884 pdf_pages.php:534 +#: db_operations.php:674 libraries/messages.inc.php:880 pdf_pages.php:534 msgid "Only show keys" msgstr "" -#: db_operations.php:676 libraries/messages.inc.php:875 pdf_pages.php:535 +#: db_operations.php:676 libraries/messages.inc.php:871 pdf_pages.php:535 msgid "Data Dictionary Format" msgstr "Формат речника података" -#: db_operations.php:678 libraries/messages.inc.php:464 pdf_pages.php:537 +#: db_operations.php:678 libraries/messages.inc.php:460 pdf_pages.php:537 msgid "Landscape" msgstr "Положено" -#: db_operations.php:679 libraries/messages.inc.php:663 pdf_pages.php:538 +#: db_operations.php:679 libraries/messages.inc.php:659 pdf_pages.php:538 msgid "Portrait" msgstr "Усправно" -#: db_operations.php:682 libraries/messages.inc.php:599 pdf_pages.php:541 +#: db_operations.php:682 libraries/messages.inc.php:595 pdf_pages.php:541 msgid "Paper size" msgstr "Димензије папира" -#: db_operations.php:706 libraries/messages.inc.php:281 +#: db_operations.php:706 libraries/messages.inc.php:277 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 libraries/messages.inc.php:1087 +#: libraries/header.inc.php:126 libraries/messages.inc.php:1083 #: pdf_pages.php:405 server_privileges.php:1626 server_privileges.php:1682 #: server_privileges.php:1946 server_synchronize.php:423 #: server_synchronize.php:866 tbl_tracking.php:592 test/theme.php:75 @@ -413,176 +413,176 @@ msgid "Table" msgstr "Табела" #: db_printview.php:105 libraries/db_structure.lib.php:56 -#: libraries/messages.inc.php:735 +#: libraries/messages.inc.php:731 msgid "Records" msgstr "Записи" #: db_printview.php:109 libraries/db_structure.lib.php:67 -#: libraries/messages.inc.php:1003 tbl_indexes.php:190 +#: libraries/messages.inc.php:999 tbl_indexes.php:190 msgid "Size" msgstr "Величина" #: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 -#: libraries/export/sql.php:899 libraries/messages.inc.php:436 +#: libraries/export/sql.php:899 libraries/messages.inc.php:432 msgid "in use" msgstr "се користи" #: db_printview.php:187 libraries/db_info.inc.php:88 -#: libraries/export/sql.php:514 libraries/messages.inc.php:1032 +#: libraries/export/sql.php:514 libraries/messages.inc.php:1028 #: pdf_schema.php:1241 tbl_printview.php:434 tbl_structure.php:810 msgid "Creation" msgstr "Направљено" #: db_printview.php:196 libraries/db_info.inc.php:93 -#: libraries/export/sql.php:519 libraries/messages.inc.php:1036 +#: libraries/export/sql.php:519 libraries/messages.inc.php:1032 #: pdf_schema.php:1246 tbl_printview.php:444 tbl_structure.php:818 msgid "Last update" msgstr "Последња измена" #: db_printview.php:205 libraries/db_info.inc.php:98 -#: libraries/export/sql.php:524 libraries/messages.inc.php:1031 +#: libraries/export/sql.php:524 libraries/messages.inc.php:1027 #: pdf_schema.php:1251 tbl_printview.php:454 tbl_structure.php:826 msgid "Last check" msgstr "Последња провера" -#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1085 +#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1081 #, php-format msgid "%s table(s)" msgstr "%s табела" #: db_qbe.php:29 libraries/display_tbl.lib.php:1981 -#: libraries/messages.inc.php:1051 libraries/sql_query_form.lib.php:140 +#: libraries/messages.inc.php:1047 libraries/sql_query_form.lib.php:140 #: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131 #: view_operations.php:62 msgid "Your SQL query has been executed successfully" msgstr "Ваш SQL упит је успешно извршен" -#: db_qbe.php:42 libraries/messages.inc.php:371 +#: db_qbe.php:42 libraries/messages.inc.php:367 msgid "You have to choose at least one column to display" msgstr "Морате изабрати бар једну колону за приказ" #: db_qbe.php:200 libraries/db_structure.lib.php:104 -#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1014 +#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1010 msgid "Sort" msgstr "Сортирање" #: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111 #: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828 -#: libraries/messages.inc.php:69 server_databases.php:170 +#: libraries/messages.inc.php:65 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314 msgid "Ascending" msgstr "Растући" #: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119 #: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825 -#: libraries/messages.inc.php:251 server_databases.php:170 +#: libraries/messages.inc.php:247 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315 msgid "Descending" msgstr "Опадајући" #: db_qbe.php:264 db_tracking.php:78 libraries/display_tbl.lib.php:308 -#: libraries/messages.inc.php:888 tbl_change.php:277 tbl_tracking.php:597 +#: libraries/messages.inc.php:884 tbl_change.php:277 tbl_tracking.php:597 msgid "Show" msgstr "Прикажи" -#: db_qbe.php:300 libraries/messages.inc.php:202 +#: db_qbe.php:300 libraries/messages.inc.php:198 msgid "Criteria" msgstr "Критеријум" #: db_qbe.php:353 db_qbe.php:435 db_qbe.php:527 db_qbe.php:558 -#: libraries/messages.inc.php:718 +#: libraries/messages.inc.php:714 msgid "Ins" msgstr "Ins" #: db_qbe.php:357 db_qbe.php:439 db_qbe.php:524 db_qbe.php:555 -#: libraries/messages.inc.php:56 +#: libraries/messages.inc.php:52 msgid "And" msgstr "и" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:529 db_qbe.php:560 -#: libraries/messages.inc.php:717 +#: libraries/messages.inc.php:713 msgid "Del" 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/messages.inc.php:592 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:588 #: libraries/tbl_properties.inc.php:779 server_privileges.php:258 #: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288 msgid "Or" msgstr "или" -#: db_qbe.php:507 libraries/messages.inc.php:516 +#: db_qbe.php:507 libraries/messages.inc.php:512 msgid "Modify" msgstr "Промени" -#: db_qbe.php:584 libraries/messages.inc.php:33 +#: db_qbe.php:584 libraries/messages.inc.php:29 msgid "Add/Delete Criteria Row" msgstr "Додај/обриши поље за критеријум" -#: db_qbe.php:596 libraries/messages.inc.php:32 +#: db_qbe.php:596 libraries/messages.inc.php:28 msgid "Add/Delete Field Columns" msgstr "Додај/обриши колону" -#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1192 +#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1188 msgid "Update Query" msgstr "Ажурирај упит" -#: db_qbe.php:617 libraries/messages.inc.php:1216 +#: db_qbe.php:617 libraries/messages.inc.php:1212 msgid "Use Tables" msgstr "Користи табеле" -#: db_qbe.php:640 libraries/messages.inc.php:723 +#: db_qbe.php:640 libraries/messages.inc.php:719 #, php-format msgid "SQL query on database %s:" msgstr "SQL упит на бази %s:" -#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:823 +#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:819 msgid "Submit Query" msgstr "Изврши SQL упит" #: db_search.php:68 libraries/auth/config.auth.lib.php:84 #: libraries/auth/config.auth.lib.php:103 #: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52 -#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:26 +#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:22 msgid "Access denied" msgstr "Приступ одбијен" -#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:836 +#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:832 msgid "at least one of the words" msgstr "бар једну од речи" -#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:837 +#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:833 msgid "all words" msgstr "све речи" -#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:838 +#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:834 msgid "the exact phrase" msgstr "тачан израз" -#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:839 +#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:835 msgid "as regular expression" msgstr "као регуларни израз" -#: db_search.php:242 libraries/messages.inc.php:840 +#: db_search.php:242 libraries/messages.inc.php:836 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Резултати претраге за \"%s\" %s:" -#: db_search.php:260 libraries/messages.inc.php:579 +#: db_search.php:260 libraries/messages.inc.php:575 #, php-format msgid "%s match(es) inside table %s" 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/messages.inc.php:108 +#: db_structure.php:105 libraries/messages.inc.php:104 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468 msgid "Browse" msgstr "Преглед" #: db_search.php:272 libraries/display_tbl.lib.php:1165 -#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:243 +#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:239 #: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406 #: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377 #: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216 @@ -590,45 +590,45 @@ msgstr "Преглед" msgid "Delete" msgstr "Обриши" -#: db_search.php:285 libraries/messages.inc.php:580 +#: db_search.php:285 libraries/messages.inc.php:576 #, php-format msgid "Total: %s match(es)" msgstr "Укупно: %s погодака" -#: db_search.php:299 libraries/messages.inc.php:832 +#: db_search.php:299 libraries/messages.inc.php:828 msgid "Search in database" msgstr "Претраживање базе" -#: db_search.php:302 libraries/messages.inc.php:835 +#: db_search.php:302 libraries/messages.inc.php:831 msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgstr "Речи или вредности које се траже (џокер: \"%\"):" -#: db_search.php:307 libraries/messages.inc.php:842 +#: db_search.php:307 libraries/messages.inc.php:838 msgid "Find:" msgstr "Тражи:" -#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1017 +#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1013 msgid "Words are separated by a space character (\" \")." msgstr "Речи се одвајају размаком (\" \")." -#: db_search.php:325 libraries/messages.inc.php:834 +#: db_search.php:325 libraries/messages.inc.php:830 msgid "Inside table(s):" msgstr "Унутар табела:" -#: db_search.php:355 libraries/messages.inc.php:833 +#: db_search.php:355 libraries/messages.inc.php:829 msgid "Inside field:" 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/messages.inc.php:431 libraries/sql_query_form.lib.php:334 +#: libraries/messages.inc.php:427 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/db_links.inc.php:63 libraries/export/latex.php:337 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:1048 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:1044 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 #: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269 msgid "Structure" @@ -637,8 +637,8 @@ 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:1642 -#: libraries/db_links.inc.php:100 libraries/messages.inc.php:272 +#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/db_links.inc.php:100 libraries/messages.inc.php:268 #: 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 @@ -648,40 +648,40 @@ 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:1641 -#: libraries/messages.inc.php:284 libraries/mult_submits.inc.php:39 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: libraries/messages.inc.php:280 libraries/mult_submits.inc.php:39 #: libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Испразни" -#: db_structure.php:316 libraries/messages.inc.php:1075 +#: db_structure.php:316 libraries/messages.inc.php:1071 #: libraries/tbl_links.inc.php:100 #, php-format msgid "Table %s has been emptied" msgstr "Табела %s је испражњена" -#: db_structure.php:326 libraries/messages.inc.php:1229 +#: db_structure.php:326 libraries/messages.inc.php:1225 #: libraries/tbl_links.inc.php:133 #, php-format msgid "View %s has been dropped" msgstr "Поглед %s је одбачен" -#: db_structure.php:326 libraries/messages.inc.php:1074 +#: db_structure.php:326 libraries/messages.inc.php:1070 #: libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "Табела %s је одбачена" -#: db_structure.php:333 libraries/messages.inc.php:1128 +#: db_structure.php:333 libraries/messages.inc.php:1124 msgid "Tracking is active." msgstr "" -#: db_structure.php:335 libraries/messages.inc.php:1129 +#: db_structure.php:335 libraries/messages.inc.php:1125 msgid "Tracking is not active." msgstr "" #: db_structure.php:420 libraries/display_tbl.lib.php:1944 -#: libraries/messages.inc.php:1228 +#: libraries/messages.inc.php:1224 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -689,83 +689,83 @@ msgid "" msgstr "" #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 -#: libraries/messages.inc.php:1233 libraries/tbl_info.inc.php:66 +#: libraries/messages.inc.php:1229 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/messages.inc.php:773 libraries/server_links.inc.php:70 +#: libraries/messages.inc.php:769 libraries/server_links.inc.php:70 #: server_replication.php:33 server_replication.php:164 server_status.php:258 msgid "Replication" msgstr "Репликација" -#: db_structure.php:489 libraries/messages.inc.php:1053 +#: db_structure.php:489 libraries/messages.inc.php:1049 msgid "Sum" msgstr "Укупно" #: db_structure.php:496 libraries/StorageEngine.class.php:356 -#: libraries/messages.inc.php:239 +#: libraries/messages.inc.php:235 #, 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 #: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086 -#: libraries/messages.inc.php:1243 libraries/mult_submits.inc.php:16 +#: libraries/messages.inc.php:1239 libraries/mult_submits.inc.php:16 #: server_databases.php:346 server_databases.php:351 #: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465 msgid "With selected:" msgstr "Означено:" #: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: libraries/messages.inc.php:148 server_databases.php:348 +#: libraries/messages.inc.php:144 server_databases.php:348 #: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459 msgid "Check All" msgstr "Означи све" #: db_structure.php:531 libraries/display_tbl.lib.php:2077 -#: libraries/messages.inc.php:1184 libraries/replication_gui.lib.php:33 +#: libraries/messages.inc.php:1180 libraries/replication_gui.lib.php:33 #: server_databases.php:350 server_privileges.php:533 #: server_privileges.php:1564 tbl_structure.php:463 msgid "Uncheck All" msgstr "ниједно" -#: db_structure.php:536 libraries/messages.inc.php:150 +#: db_structure.php:536 libraries/messages.inc.php:146 msgid "Check tables having overhead" msgstr "Провери табеле које имају прекорачења" #: db_structure.php:547 db_structure.php:548 db_structure.php:599 -#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:672 +#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:668 #: libraries/mult_submits.inc.php:28 tbl_structure.php:493 #: tbl_structure.php:495 msgid "Print view" msgstr "За штампу" -#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:153 +#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:149 #: libraries/mult_submits.inc.php:42 tbl_operations.php:579 msgid "Check table" msgstr "Провери табелу" -#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:590 +#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:586 #: libraries/mult_submits.inc.php:47 tbl_operations.php:619 #: tbl_structure.php:710 tbl_structure.php:712 msgid "Optimize table" msgstr "Оптимизуј табелу" -#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:758 +#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:754 #: libraries/mult_submits.inc.php:52 tbl_operations.php:609 msgid "Repair table" msgstr "Поправи табелу" -#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:55 +#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:51 #: libraries/mult_submits.inc.php:57 tbl_operations.php:599 msgid "Analyze table" msgstr "Анализирај табелу" #: db_structure.php:557 db_structure.php:558 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/messages.inc.php:310 +#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:306 #: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84 #: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109 #: server_privileges.php:1341 setup/frames/menu.inc.php:22 @@ -773,7 +773,7 @@ msgstr "Анализирај табелу" msgid "Export" msgstr "Извоз" -#: db_tracking.php:66 libraries/messages.inc.php:1151 +#: db_tracking.php:66 libraries/messages.inc.php:1147 #, fuzzy msgid "Tracked tables" msgstr "Провери табелу" @@ -782,7 +782,7 @@ msgstr "Провери табелу" #: 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/header_printview.inc.php:58 libraries/messages.inc.php:212 +#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:208 #: navigation.php:233 server_databases.php:169 server_privileges.php:1621 #: server_privileges.php:1682 server_privileges.php:1940 #: server_processlist.php:56 server_synchronize.php:1179 @@ -790,83 +790,83 @@ msgstr "Провери табелу" msgid "Database" msgstr "База података" -#: db_tracking.php:73 libraries/messages.inc.php:1146 +#: db_tracking.php:73 libraries/messages.inc.php:1142 #, fuzzy msgid "Last version" msgstr "Направи релацију" -#: db_tracking.php:74 libraries/messages.inc.php:1145 tbl_tracking.php:594 +#: db_tracking.php:74 libraries/messages.inc.php:1141 tbl_tracking.php:594 #, fuzzy msgid "Created" msgstr "Направи" -#: db_tracking.php:75 libraries/messages.inc.php:1147 tbl_tracking.php:595 +#: db_tracking.php:75 libraries/messages.inc.php:1143 tbl_tracking.php:595 msgid "Updated" msgstr "" #: db_tracking.php:77 libraries/Index.class.php:440 -#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:27 +#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:23 #: server_databases.php:203 server_privileges.php:1503 #: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187 msgid "Action" msgstr "Акција" -#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:247 +#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:243 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:106 libraries/messages.inc.php:1142 tbl_tracking.php:548 +#: db_tracking.php:106 libraries/messages.inc.php:1138 tbl_tracking.php:548 #: tbl_tracking.php:606 tbl_tracking.php:613 msgid "active" msgstr "" -#: db_tracking.php:108 libraries/messages.inc.php:1143 tbl_tracking.php:550 +#: db_tracking.php:108 libraries/messages.inc.php:1139 tbl_tracking.php:550 #: tbl_tracking.php:608 tbl_tracking.php:610 msgid "not active" msgstr "" -#: db_tracking.php:121 libraries/messages.inc.php:1160 +#: db_tracking.php:121 libraries/messages.inc.php:1156 #, fuzzy msgid "Versions" msgstr "Персијски" -#: db_tracking.php:122 libraries/messages.inc.php:1132 tbl_tracking.php:379 +#: db_tracking.php:122 libraries/messages.inc.php:1128 tbl_tracking.php:379 #: tbl_tracking.php:624 msgid "Tracking report" msgstr "" -#: db_tracking.php:123 libraries/messages.inc.php:1144 tbl_tracking.php:251 +#: db_tracking.php:123 libraries/messages.inc.php:1140 tbl_tracking.php:251 #: tbl_tracking.php:624 #, fuzzy msgid "Structure snapshot" msgstr "Само структура" -#: db_tracking.php:152 libraries/messages.inc.php:1154 +#: db_tracking.php:152 libraries/messages.inc.php:1150 #, fuzzy msgid "Untracked tables" msgstr "Провери табелу" -#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1153 +#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1149 #: tbl_structure.php:529 tbl_structure.php:531 #, fuzzy msgid "Track table" msgstr "Провери табелу" -#: db_tracking.php:200 libraries/messages.inc.php:1121 +#: db_tracking.php:200 libraries/messages.inc.php:1117 #, fuzzy msgid "Database Log" msgstr "База података" -#: export.php:62 libraries/messages.inc.php:312 +#: export.php:62 libraries/messages.inc.php:308 msgid "Selected export type has to be saved in file!" msgstr "Одабрани тип извоза мора бити сачуван у датотеку!" -#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:567 +#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:563 #, php-format msgid "Insufficient space to save the file %s." msgstr "Недовољно простора за снимање датотеке %s." -#: export.php:294 libraries/messages.inc.php:324 +#: export.php:294 libraries/messages.inc.php:320 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -874,17 +874,17 @@ msgstr "" "Датотека %s већ постоји на серверу, промените име датотеке или укључите " "опцију преписивања." -#: export.php:298 export.php:302 libraries/messages.inc.php:562 +#: export.php:298 export.php:302 libraries/messages.inc.php:558 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Веб серверу није дозвољено да сачува датотеку %s." -#: export.php:629 libraries/messages.inc.php:276 +#: export.php:629 libraries/messages.inc.php:272 #, php-format msgid "Dump has been saved to file %s." msgstr "Садржај базе је сачуван у датотеку %s." -#: import.php:60 libraries/messages.inc.php:1202 +#: import.php:60 libraries/messages.inc.php:1198 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation%" @@ -894,14 +894,14 @@ msgstr "" "sдокументацију%s за начине превазилажења овог ограничења." #: import.php:279 import.php:332 libraries/File.class.php:849 -#: libraries/File.class.php:961 libraries/messages.inc.php:325 +#: libraries/File.class.php:961 libraries/messages.inc.php:321 msgid "File could not be read" msgstr "Датотеку није могуће прочитати" #: import.php:287 import.php:296 import.php:315 import.php:324 #: libraries/File.class.php:1031 libraries/File.class.php:1039 #: libraries/File.class.php:1055 libraries/File.class.php:1063 -#: libraries/messages.inc.php:1189 +#: libraries/messages.inc.php:1185 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -910,7 +910,7 @@ msgstr "" "Покушали сте да увезете датотеку са компресијом која није подржана (%s). Или " "подршка за њу није имплементирана, или је искључена у вашој конфигурацији." -#: import.php:337 libraries/messages.inc.php:547 +#: import.php:337 libraries/messages.inc.php:543 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -921,29 +921,29 @@ msgstr "" "конфигурацији PHP-а. Погледајте. See FAQ 1.16." #: import.php:372 libraries/display_import.lib.php:24 -#: libraries/messages.inc.php:125 +#: libraries/messages.inc.php:121 msgid "Could not load import plugins, please check your installation!" msgstr "Не могу да учитам додатке за увоз, молим проверите своју инсталацију!" -#: import.php:397 libraries/messages.inc.php:102 +#: import.php:397 libraries/messages.inc.php:98 msgid "The bookmark has been deleted." msgstr "Обележивач је управо обрисан." -#: import.php:401 libraries/messages.inc.php:879 +#: import.php:401 libraries/messages.inc.php:875 msgid "Showing bookmark" msgstr "Приказивање маркера" -#: import.php:403 libraries/messages.inc.php:101 +#: import.php:403 libraries/messages.inc.php:97 #, php-format msgid "Bookmark %s created" msgstr "Направљен маркер %s" -#: import.php:409 import.php:415 libraries/messages.inc.php:407 +#: import.php:409 import.php:415 libraries/messages.inc.php:403 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Увоз је успешно завршен, извршено је %d упита." -#: import.php:424 libraries/messages.inc.php:1107 +#: import.php:424 libraries/messages.inc.php:1103 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -951,11 +951,11 @@ msgstr "" "Време извршења скрипта је истекло, ако желите да довршите увоз, молимо " "пошаљите исту датотеку и увоз ће се наставити." -#: index.php:190 libraries/messages.inc.php:553 +#: index.php:190 libraries/messages.inc.php:549 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin преферира читаче који подржавају оквире." -#: js/messages.php:25 libraries/messages.inc.php:155 +#: js/messages.php:25 libraries/messages.inc.php:151 #: server_synchronize.php:345 server_synchronize.php:357 #: server_synchronize.php:373 server_synchronize.php:380 #: server_synchronize.php:739 server_synchronize.php:767 @@ -963,116 +963,116 @@ msgstr "phpMyAdmin преферира читаче који подржавају msgid "Click to select" msgstr "" -#: js/messages.php:26 libraries/messages.inc.php:156 +#: js/messages.php:26 libraries/messages.inc.php:152 msgid "Click to unselect" msgstr "" #: js/messages.php:27 libraries/import.lib.php:103 -#: libraries/messages.inc.php:550 sql.php:89 +#: libraries/messages.inc.php:546 sql.php:89 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" команда је онемогућена." -#: js/messages.php:30 libraries/messages.inc.php:270 +#: js/messages.php:30 libraries/messages.inc.php:266 #: libraries/mult_submits.inc.php:258 sql.php:188 msgid "Do you really want to " msgstr "Да ли стварно хоћете да " -#: js/messages.php:31 libraries/messages.inc.php:271 +#: js/messages.php:31 libraries/messages.inc.php:267 #: libraries/mult_submits.inc.php:258 sql.php:172 msgid "You are about to DESTROY a complete database!" msgstr "Овим ћете УНИШТИТИ комплетну базу података!" -#: js/messages.php:34 libraries/messages.inc.php:94 +#: js/messages.php:34 libraries/messages.inc.php:90 msgid "You are about to DISABLE a BLOB Repository!" msgstr "" -#: js/messages.php:35 libraries/messages.inc.php:91 +#: js/messages.php:35 libraries/messages.inc.php:87 #, php-format msgid "Are you sure you want to disable all BLOB references for database %s?" msgstr "" -#: js/messages.php:38 libraries/messages.inc.php:342 +#: js/messages.php:38 libraries/messages.inc.php:338 msgid "Missing value in the form!" msgstr "Недостаје вредност у обрасцу!" -#: js/messages.php:39 libraries/messages.inc.php:570 +#: js/messages.php:39 libraries/messages.inc.php:566 msgid "This is not a number!" msgstr "Ово није број!" -#: js/messages.php:42 libraries/messages.inc.php:380 +#: js/messages.php:42 libraries/messages.inc.php:376 msgid "The host name is empty!" msgstr "Име домаћина је празно!" -#: js/messages.php:43 libraries/messages.inc.php:1208 +#: js/messages.php:43 libraries/messages.inc.php:1204 msgid "The user name is empty!" msgstr "Име корисника није унето!" -#: js/messages.php:44 libraries/messages.inc.php:607 +#: js/messages.php:44 libraries/messages.inc.php:603 #: server_privileges.php:1197 user_password.php:70 msgid "The password is empty!" msgstr "Лозинка је празна!" -#: js/messages.php:45 libraries/messages.inc.php:609 +#: js/messages.php:45 libraries/messages.inc.php:605 #: server_privileges.php:1195 user_password.php:73 msgid "The passwords aren't the same!" msgstr "Лозинке нису идентичне!" -#: js/messages.php:49 libraries/messages.inc.php:123 pmd_general.php:342 +#: js/messages.php:49 libraries/messages.inc.php:119 pmd_general.php:342 #: pmd_general.php:379 msgid "Cancel" msgstr "Откажи" -#: js/messages.php:52 libraries/messages.inc.php:514 +#: js/messages.php:52 libraries/messages.inc.php:510 msgid "Modifications have been saved" msgstr "Измене су сачуване" -#: js/messages.php:53 libraries/messages.inc.php:741 +#: js/messages.php:53 libraries/messages.inc.php:737 msgid "Relation deleted" msgstr "Релација обрисана" -#: js/messages.php:54 libraries/messages.inc.php:340 +#: js/messages.php:54 libraries/messages.inc.php:336 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:55 libraries/messages.inc.php:434 +#: js/messages.php:55 libraries/messages.inc.php:430 msgid "Internal relation added" msgstr "Додата интерна релација" -#: js/messages.php:56 libraries/messages.inc.php:299 +#: js/messages.php:56 libraries/messages.inc.php:295 msgid "Error: Relation not added." msgstr "Грешка: релација није додата." -#: js/messages.php:57 libraries/messages.inc.php:300 +#: js/messages.php:57 libraries/messages.inc.php:296 msgid "Error: relation already exists." msgstr "Грешка: релација већ постоји." -#: js/messages.php:58 libraries/messages.inc.php:302 +#: js/messages.php:58 libraries/messages.inc.php:298 msgid "Error saving coordinates for Designer." msgstr "Грешка при снимању координата за Дизајнер." -#: js/messages.php:59 libraries/messages.inc.php:351 +#: js/messages.php:59 libraries/messages.inc.php:347 #: libraries/relation.lib.php:107 msgid "General relation features" msgstr "Опште особине релација" -#: js/messages.php:59 libraries/messages.inc.php:260 +#: js/messages.php:59 libraries/messages.inc.php:256 #: libraries/relation.lib.php:101 libraries/relation.lib.php:108 msgid "Disabled" msgstr "Онемогућено" -#: js/messages.php:60 libraries/messages.inc.php:850 +#: js/messages.php:60 libraries/messages.inc.php:846 msgid "Select referenced key" msgstr "Изаберите референцирани кључ" -#: js/messages.php:61 libraries/messages.inc.php:848 +#: js/messages.php:61 libraries/messages.inc.php:844 msgid "Select Foreign Key" msgstr "Изабери страни кључ" -#: js/messages.php:62 libraries/messages.inc.php:653 +#: js/messages.php:62 libraries/messages.inc.php:649 msgid "Please select the primary key or a unique key" msgstr "Молимо изаберите примарни или јединствени кључ" -#: js/messages.php:63 libraries/messages.inc.php:142 pmd_general.php:77 +#: js/messages.php:63 libraries/messages.inc.php:138 pmd_general.php:77 #: tbl_relation.php:548 msgid "Choose field to display" msgstr "Изабери поља за приказ" @@ -1091,9 +1091,9 @@ msgid "Prev" msgstr "Претходна" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2332 -#: libraries/common.lib.php:2335 libraries/display_tbl.lib.php:338 -#: libraries/messages.inc.php:543 server_binlog.php:205 server_binlog.php:207 +#: js/messages.php:77 libraries/common.lib.php:2344 +#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: libraries/messages.inc.php:539 server_binlog.php:205 server_binlog.php:207 #: tbl_printview.php:424 tbl_structure.php:802 msgid "Next" msgstr "Следећи" @@ -1168,27 +1168,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1543 +#: js/messages.php:97 libraries/common.lib.php:1555 msgid "Jan" msgstr "јан" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1545 +#: js/messages.php:99 libraries/common.lib.php:1557 msgid "Feb" msgstr "феб" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1547 +#: js/messages.php:101 libraries/common.lib.php:1559 msgid "Mar" msgstr "мар" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1549 +#: js/messages.php:103 libraries/common.lib.php:1561 msgid "Apr" msgstr "апр" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1551 +#: js/messages.php:105 libraries/common.lib.php:1563 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1196,37 +1196,37 @@ msgid "May" msgstr "мај" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1553 +#: js/messages.php:107 libraries/common.lib.php:1565 msgid "Jun" msgstr "јун" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1555 +#: js/messages.php:109 libraries/common.lib.php:1567 msgid "Jul" msgstr "јул" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1557 +#: js/messages.php:111 libraries/common.lib.php:1569 msgid "Aug" msgstr "авг" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1559 +#: js/messages.php:113 libraries/common.lib.php:1571 msgid "Sep" msgstr "сеп" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1561 +#: js/messages.php:115 libraries/common.lib.php:1573 msgid "Oct" msgstr "окт" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1563 +#: js/messages.php:117 libraries/common.lib.php:1575 msgid "Nov" msgstr "нов" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1565 +#: js/messages.php:119 libraries/common.lib.php:1577 msgid "Dec" msgstr "дец" @@ -1267,37 +1267,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1568 +#: js/messages.php:132 libraries/common.lib.php:1580 msgid "Sun" msgstr "Нед" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1570 +#: js/messages.php:134 libraries/common.lib.php:1582 msgid "Mon" msgstr "Пон" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1572 +#: js/messages.php:136 libraries/common.lib.php:1584 msgid "Tue" msgstr "Уто" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1574 +#: js/messages.php:138 libraries/common.lib.php:1586 msgid "Wed" msgstr "Сре" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1576 +#: js/messages.php:140 libraries/common.lib.php:1588 msgid "Thu" msgstr "Чет" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1578 +#: js/messages.php:142 libraries/common.lib.php:1590 msgid "Fri" msgstr "Пет" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1580 +#: js/messages.php:144 libraries/common.lib.php:1592 msgid "Sat" msgstr "Суб" @@ -1371,23 +1371,23 @@ msgstr "се користи" msgid "Second" msgstr "у секунди" -#: libraries/Config.class.php:1015 libraries/messages.inc.php:338 +#: libraries/Config.class.php:1015 libraries/messages.inc.php:334 msgid "Font size" msgstr "Величина фонта" #: libraries/File.class.php:344 libraries/File.class.php:432 #: libraries/File.class.php:569 libraries/File.class.php:708 -#: libraries/messages.inc.php:1201 +#: libraries/messages.inc.php:1197 msgid "Unknown error in file upload." msgstr "Непозната грешка при слању датотеке." -#: libraries/File.class.php:414 libraries/messages.inc.php:1198 +#: libraries/File.class.php:414 libraries/messages.inc.php:1194 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "Послата датотека превазилази вредност директиве upload_max_filesize у php." "ini." -#: libraries/File.class.php:417 libraries/messages.inc.php:1197 +#: libraries/File.class.php:417 libraries/messages.inc.php:1193 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -1395,56 +1395,56 @@ msgstr "" "Послата датотека превазилази вредност директиве MAX_FILE_SIZE која је " "наведена у HTML форми." -#: libraries/File.class.php:420 libraries/messages.inc.php:1200 +#: libraries/File.class.php:420 libraries/messages.inc.php:1196 msgid "The uploaded file was only partially uploaded." msgstr "Послата датотека је само делимично примљена." -#: libraries/File.class.php:423 libraries/messages.inc.php:1199 +#: libraries/File.class.php:423 libraries/messages.inc.php:1195 msgid "Missing a temporary folder." msgstr "Недостаје привремени директоријум." -#: libraries/File.class.php:426 libraries/messages.inc.php:1195 +#: libraries/File.class.php:426 libraries/messages.inc.php:1191 msgid "Failed to write file to disk." msgstr "Неуспело уписивање датотеке на диск." -#: libraries/File.class.php:429 libraries/messages.inc.php:1196 +#: libraries/File.class.php:429 libraries/messages.inc.php:1192 msgid "File upload stopped by extension." msgstr "Пријем датотеке заустављен због екстензије." -#: libraries/File.class.php:908 libraries/messages.inc.php:319 +#: libraries/File.class.php:908 libraries/messages.inc.php:315 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "Грешка у премештању примљене датотеке, погледајте FAQ 1.11" -#: libraries/Index.class.php:428 libraries/messages.inc.php:554 +#: libraries/Index.class.php:428 libraries/messages.inc.php:550 #: tbl_relation.php:529 msgid "No index defined!" msgstr "Кључ није дефинисан!" -#: libraries/Index.class.php:433 libraries/messages.inc.php:411 +#: libraries/Index.class.php:433 libraries/messages.inc.php:407 #: server_databases.php:132 tbl_tracking.php:316 msgid "Indexes" msgstr "Кључеви" -#: libraries/Index.class.php:444 libraries/messages.inc.php:1186 +#: libraries/Index.class.php:444 libraries/messages.inc.php:1182 #: 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:475 tbl_tracking.php:322 msgid "Unique" msgstr "Јединствени" -#: libraries/Index.class.php:445 libraries/messages.inc.php:596 +#: libraries/Index.class.php:445 libraries/messages.inc.php:592 #: tbl_tracking.php:323 msgid "Packed" msgstr "" -#: libraries/Index.class.php:447 libraries/messages.inc.php:131 +#: libraries/Index.class.php:447 libraries/messages.inc.php:127 #: tbl_tracking.php:325 msgid "Cardinality" msgstr "Кардиналност" -#: libraries/Index.class.php:450 libraries/messages.inc.php:162 +#: libraries/Index.class.php:450 libraries/messages.inc.php:158 #: tbl_tracking.php:279 tbl_tracking.php:328 #, fuzzy msgid "Comment" @@ -1453,29 +1453,29 @@ msgstr "Коментари" #: libraries/Index.class.php:466 libraries/common.lib.php:616 #: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:280 pdf_pages.php:280 +#: libraries/messages.inc.php:276 pdf_pages.php:280 #: setup/frames/index.inc.php:124 setup/lib/messages.inc.php:352 #: tbl_row_action.php:69 msgid "Edit" msgstr "Промени" -#: libraries/Index.class.php:472 libraries/messages.inc.php:666 +#: libraries/Index.class.php:472 libraries/messages.inc.php:662 msgid "The primary key has been dropped" msgstr "Примарни кључ је обрисан" -#: libraries/Index.class.php:476 libraries/messages.inc.php:413 +#: libraries/Index.class.php:476 libraries/messages.inc.php:409 #, php-format msgid "Index %s has been dropped" msgstr "Кључ %s је обрисан" -#: libraries/Index.class.php:576 libraries/messages.inc.php:412 +#: libraries/Index.class.php:576 libraries/messages.inc.php:408 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "" -#: libraries/List_Database.class.php:431 libraries/messages.inc.php:218 +#: libraries/List_Database.class.php:431 libraries/messages.inc.php:214 #: libraries/server_links.inc.php:41 server_databases.php:88 #: server_privileges.php:1621 setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" @@ -1504,85 +1504,85 @@ msgid_plural "%1$d rows inserted." msgstr[0] "Нема одабраних редова" msgstr[1] "Нема одабраних редова" -#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:549 +#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:545 msgid "" "There is no detailed status information available for this storage engine." msgstr "Нема детаљнијих информација о статусу за овај погон складиштења." -#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:291 +#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:287 #, php-format msgid "%s is available on this MySQL server." msgstr "%s је доступан на овом MySQL серверу." -#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:292 +#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:288 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s је онемогућен на овом MySQL серверу." -#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:294 +#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:290 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "Овај MySQL сервер не подржава %s погон складиштења." -#: libraries/Table.class.php:1019 libraries/messages.inc.php:443 +#: libraries/Table.class.php:1019 libraries/messages.inc.php:439 msgid "Invalid database" msgstr "Неисправна база података" -#: libraries/Table.class.php:1033 libraries/messages.inc.php:450 +#: libraries/Table.class.php:1033 libraries/messages.inc.php:446 #: tbl_get_field.php:26 msgid "Invalid table name" msgstr "Неисправан назив табеле" -#: libraries/Table.class.php:1048 libraries/messages.inc.php:301 +#: libraries/Table.class.php:1048 libraries/messages.inc.php:297 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "Грешка при преименовању табеле %1$s у %2$s" -#: libraries/Table.class.php:1132 libraries/messages.inc.php:754 +#: libraries/Table.class.php:1132 libraries/messages.inc.php:750 #, php-format msgid "Table %s has been renamed to %s" msgstr "Табели %s промењено име у %s" -#: libraries/Theme.class.php:162 libraries/messages.inc.php:1099 +#: libraries/Theme.class.php:162 libraries/messages.inc.php:1095 #, php-format msgid "No valid image path for theme %s found!" msgstr "Нема исправне путање до слика за тему %s!" -#: libraries/Theme.class.php:384 libraries/messages.inc.php:1097 +#: libraries/Theme.class.php:384 libraries/messages.inc.php:1093 msgid "No preview available." msgstr "Преглед не постоји." -#: libraries/Theme.class.php:387 libraries/messages.inc.php:1089 +#: libraries/Theme.class.php:387 libraries/messages.inc.php:1085 msgid "take it" msgstr "преузми" -#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1096 +#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1092 #, php-format msgid "Default theme %s not found!" msgstr "Није пронађена подразумевана тема %s!" -#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1098 +#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1094 #, php-format msgid "Theme %s not found!" msgstr "Није пронађена тема %s!" -#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1100 +#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1096 #, php-format msgid "Theme path not found for theme %s!" msgstr "Није пронађена путања до теме за тему %s!" -#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1101 +#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1097 #: test/theme.php:161 themes.php:21 themes.php:41 msgid "Theme / Style" msgstr "Тема / стил" -#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:172 +#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:168 msgid "Cannot connect: invalid settings." msgstr "Не могу да се повежем: неисправна подешавања." #: libraries/auth/config.auth.lib.php:92 #: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65 -#: libraries/messages.inc.php:1238 test/theme.php:152 +#: libraries/messages.inc.php:1234 test/theme.php:152 #, php-format msgid "Welcome to %s" msgstr "Добродошли на %s" @@ -1608,104 +1608,104 @@ msgstr "" "php и уверите се да одговарају подацима које сте добили од администратора " "MySQL сервера." -#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:488 +#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:484 msgid "Log in" msgstr "Пријављивање" #: libraries/auth/cookie.auth.lib.php:246 -#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:659 +#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:655 #: libraries/navigation_header.inc.php:93 #: libraries/navigation_header.inc.php:95 msgid "phpMyAdmin documentation" msgstr "phpMyAdmin документација" #: libraries/auth/cookie.auth.lib.php:258 -#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:492 +#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:488 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:493 +#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:489 msgid "Server:" msgstr "Сервер" -#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:494 +#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:490 msgid "Username:" msgstr "Корисничко име:" -#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:491 +#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:487 msgid "Password:" msgstr "Лозинка:" -#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:854 +#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:850 msgid "Server Choice" msgstr "Избор сервера" #: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 -#: libraries/messages.inc.php:177 +#: libraries/messages.inc.php:173 msgid "Cookies must be enabled past this point." msgstr "Колачићи (Cookies) морају у овом случају бити активни." #: libraries/auth/cookie.auth.lib.php:671 -#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:489 +#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:485 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" #: libraries/auth/cookie.auth.lib.php:675 -#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:544 +#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:540 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "Није било активности %s или више секунди, молимо пријавите се поново" #: libraries/auth/cookie.auth.lib.php:685 #: libraries/auth/cookie.auth.lib.php:687 -#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:126 +#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:122 msgid "Cannot log in to the MySQL server" msgstr "Не могу да се пријавим на MySQL сервер" -#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1245 +#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1241 msgid "Wrong username/password. Access denied." msgstr "Погрешно корисничко име/лозинка. Приступ одбијен." #: libraries/auth/swekey/swekey.auth.lib.php:118 -#: libraries/messages.inc.php:1057 +#: libraries/messages.inc.php:1053 #, php-format msgid "File %s does not contain any key id" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:157 #: libraries/auth/swekey/swekey.auth.lib.php:180 -#: libraries/messages.inc.php:1056 +#: libraries/messages.inc.php:1052 msgid "Hardware authentication failed" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:166 -#: libraries/messages.inc.php:1058 +#: libraries/messages.inc.php:1054 msgid "No valid authentication key plugged" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:202 -#: libraries/messages.inc.php:1055 +#: libraries/messages.inc.php:1051 msgid "Authenticating..." msgstr "" -#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1230 +#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1226 msgid "View image" msgstr "" -#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:652 +#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:648 msgid "Play audio" msgstr "" -#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1232 +#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1228 msgid "View video" msgstr "" -#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:269 +#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:265 msgid "Download file" msgstr "" -#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:128 +#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:124 msgid "" "Couldn't load the iconv or recode extension needed for charset conversion. " "Either configure PHP to enable these extensions or disable charset " @@ -1717,7 +1717,7 @@ msgstr "" #: libraries/charset_conversion.lib.php:79 #: libraries/charset_conversion.lib.php:90 -#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:130 +#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:126 msgid "" "Couldn't use the iconv, libiconv, or recode_string functions, although the " "necessary extensions appear to be loaded. Check your PHP configuration." @@ -1725,7 +1725,7 @@ msgstr "" "Не могу да користим iconv или libiconv или recode_string функције иако " "екстензија пријављује да је учитана. Проверите вашу PHP конфигурацију." -#: libraries/common.inc.php:583 libraries/messages.inc.php:170 +#: libraries/common.inc.php:583 libraries/messages.inc.php:166 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!" @@ -1761,22 +1761,22 @@ msgstr "" msgid "Invalid server index: %s" msgstr "Неисправан индекс сервера: \"%s\"" -#: libraries/common.inc.php:636 libraries/messages.inc.php:448 +#: libraries/common.inc.php:636 libraries/messages.inc.php:444 #, 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/messages.inc.php:856 libraries/select_server.lib.php:41 +#: libraries/messages.inc.php:852 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/messages.inc.php:437 +#: libraries/common.inc.php:823 libraries/messages.inc.php:433 msgid "Invalid authentication method set in configuration:" msgstr "Неисправан метод аутентикације је задат у конфигурацији:" -#: libraries/common.lib.php:147 libraries/messages.inc.php:499 +#: libraries/common.lib.php:147 libraries/messages.inc.php:495 #, php-format msgid "Max: %s%s" msgstr "Максимална величина: %s%s" @@ -1796,7 +1796,7 @@ msgstr "en" #: libraries/common.lib.php:428 libraries/common.lib.php:430 #: libraries/common.lib.php:432 libraries/common.lib.php:448 #: libraries/common.lib.php:450 libraries/dbg/setup.php:25 -#: libraries/display_export.lib.php:164 libraries/messages.inc.php:267 +#: libraries/display_export.lib.php:164 libraries/messages.inc.php:263 #: libraries/relation.lib.php:97 libraries/sql_query_form.lib.php:451 #: libraries/sql_query_form.lib.php:454 main.php:229 pdf_pages.php:37 #: pdf_pages.php:43 pdf_pages.php:49 pdf_pages.php:54 @@ -1806,55 +1806,55 @@ msgstr "Документација" #: libraries/common.lib.php:581 libraries/core.lib.php:234 #: libraries/core.lib.php:263 libraries/import.lib.php:134 -#: libraries/messages.inc.php:297 pdf_schema.php:32 pdf_schema.php:232 +#: libraries/messages.inc.php:293 pdf_schema.php:32 pdf_schema.php:232 #: tbl_change.php:1027 tbl_operations.php:213 tbl_relation.php:290 #: view_operations.php:62 msgid "Error" msgstr "Грешка" #: libraries/common.lib.php:595 libraries/header_printview.inc.php:61 -#: libraries/messages.inc.php:1023 server_processlist.php:60 +#: libraries/messages.inc.php:1019 server_processlist.php:60 #: server_status.php:247 msgid "SQL query" msgstr "SQL упит" -#: libraries/common.lib.php:634 libraries/messages.inc.php:538 +#: libraries/common.lib.php:634 libraries/messages.inc.php:534 msgid "MySQL said: " msgstr "MySQL рече: " -#: libraries/common.lib.php:667 libraries/messages.inc.php:76 +#: libraries/common.lib.php:667 libraries/messages.inc.php:72 #: pdf_schema.php:241 user_password.php:115 msgid "Back" msgstr "Назад" -#: libraries/common.lib.php:1177 libraries/messages.inc.php:309 +#: libraries/common.lib.php:1177 libraries/messages.inc.php:305 #: setup/lib/messages.inc.php:353 msgid "Explain SQL" msgstr "Објасни SQL" -#: libraries/common.lib.php:1180 libraries/messages.inc.php:551 +#: libraries/common.lib.php:1180 libraries/messages.inc.php:547 msgid "Skip Explain SQL" msgstr "Прескочи објашњавање SQL-a" -#: libraries/common.lib.php:1212 libraries/messages.inc.php:563 +#: libraries/common.lib.php:1212 libraries/messages.inc.php:559 msgid "Without PHP Code" msgstr "без PHP кода" -#: libraries/common.lib.php:1215 libraries/messages.inc.php:649 +#: libraries/common.lib.php:1215 libraries/messages.inc.php:645 #: setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "Направи PHP код" -#: libraries/common.lib.php:1233 libraries/messages.inc.php:737 +#: libraries/common.lib.php:1233 libraries/messages.inc.php:733 #: server_status.php:341 setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "Освежи" -#: libraries/common.lib.php:1242 libraries/messages.inc.php:575 +#: libraries/common.lib.php:1242 libraries/messages.inc.php:571 msgid "Skip Validate SQL" msgstr "Прескочи проверу SQL-a" -#: libraries/common.lib.php:1245 libraries/messages.inc.php:1220 +#: libraries/common.lib.php:1245 libraries/messages.inc.php:1216 #: setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "Провери SQL" @@ -1870,11 +1870,11 @@ msgid "Inline" msgstr "Складиштења" #: libraries/common.lib.php:1332 libraries/common.lib.php:1347 -#: libraries/messages.inc.php:713 +#: libraries/messages.inc.php:709 msgid "Profiling" msgstr "Профилисање" -#: libraries/common.lib.php:1351 libraries/messages.inc.php:1108 +#: libraries/common.lib.php:1351 libraries/messages.inc.php:1104 #: libraries/tbl_triggers.lib.php:28 server_processlist.php:58 msgid "Time" msgstr "Време" @@ -1908,46 +1908,56 @@ msgstr "ПБ" msgid "EiB" msgstr "ЕБ" +#. l10n: Thousands separator +#: libraries/common.lib.php:1417 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: libraries/common.lib.php:1419 +msgid "." +msgstr "." + #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1584 +#: libraries/common.lib.php:1596 #: libraries/transformations/text_plain__dateformat.inc.php:28 msgid "%B %d, %Y at %I:%M %p" msgstr "%d. %B %Y. у %H:%M" -#: libraries/common.lib.php:1886 +#: libraries/common.lib.php:1898 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s дана, %s сати, %s минута и %s секунди" -#: libraries/common.lib.php:2301 libraries/common.lib.php:2304 -#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:664 +#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:660 #: server_status.php:608 msgid "Begin" msgstr "Почетак" -#: libraries/common.lib.php:2302 libraries/common.lib.php:2305 -#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:665 +#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:661 #: server_binlog.php:168 server_binlog.php:170 msgid "Previous" msgstr "Претходна" -#: libraries/common.lib.php:2333 libraries/common.lib.php:2336 -#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:289 +#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:285 msgid "End" msgstr "Крај" -#: libraries/common.lib.php:2409 libraries/messages.inc.php:455 +#: libraries/common.lib.php:2421 libraries/messages.inc.php:451 #, php-format msgid "Jump to database "%s"." msgstr "Пређи на базу "%s"." -#: libraries/common.lib.php:2429 libraries/messages.inc.php:461 +#: libraries/common.lib.php:2441 libraries/messages.inc.php:457 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Ова функционалност %s је погођена познатом грешком, видите %s" #: libraries/core.lib.php:286 libraries/dbg/setup.php:22 -#: libraries/messages.inc.php:127 +#: libraries/messages.inc.php:123 #, php-format msgid "" "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " @@ -1956,118 +1966,118 @@ msgstr "" "не могу да учитам екстензију %s,
молим проверите PHP конфигурацију" #: libraries/db_events.inc.php:20 libraries/db_events.inc.php:22 -#: libraries/export/sql.php:415 libraries/messages.inc.php:306 +#: libraries/export/sql.php:415 libraries/messages.inc.php:302 #, fuzzy msgid "Events" msgstr "Догађаји" #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 -#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:541 +#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:537 #: libraries/tbl_triggers.lib.php:27 setup/frames/index.inc.php:112 msgid "Name" msgstr "Име" -#: libraries/db_links.inc.php:45 libraries/messages.inc.php:216 +#: libraries/db_links.inc.php:45 libraries/messages.inc.php:212 #, php-format msgid "Database %s has been dropped." msgstr "База %s је одбачена." #: libraries/db_links.inc.php:57 libraries/db_links.inc.php:58 -#: libraries/db_links.inc.php:59 libraries/messages.inc.php:234 +#: libraries/db_links.inc.php:59 libraries/messages.inc.php:230 msgid "Database seems to be empty!" msgstr "База је изгледа празна!" -#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1025 +#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1021 #: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60 #: querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1152 +#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1148 #: libraries/tbl_links.inc.php:69 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:86 libraries/messages.inc.php:719 +#: libraries/db_links.inc.php:86 libraries/messages.inc.php:715 msgid "Query" msgstr "Упит по примеру" -#: libraries/db_links.inc.php:91 libraries/messages.inc.php:253 +#: libraries/db_links.inc.php:91 libraries/messages.inc.php:249 msgid "Designer" msgstr "Дизајнер" -#: libraries/db_links.inc.php:98 libraries/messages.inc.php:397 +#: libraries/db_links.inc.php:98 libraries/messages.inc.php:393 #: libraries/server_links.inc.php:88 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:104 libraries/messages.inc.php:587 +#: libraries/db_links.inc.php:104 libraries/messages.inc.php:583 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" msgstr "Операције" -#: libraries/db_links.inc.php:111 libraries/messages.inc.php:709 +#: libraries/db_links.inc.php:111 libraries/messages.inc.php:705 #: libraries/server_links.inc.php:66 server_privileges.php:72 #: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117 msgid "Privileges" msgstr "Привилегије" #: libraries/db_routines.inc.php:30 libraries/db_routines.inc.php:32 -#: libraries/messages.inc.php:812 +#: libraries/messages.inc.php:808 msgid "Routines" msgstr "Рутине" -#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:811 +#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:807 msgid "Return type" msgstr "Повратни тип" #: libraries/db_structure.lib.php:57 libraries/display_tbl.lib.php:1848 -#: libraries/messages.inc.php:65 +#: libraries/messages.inc.php:61 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "Може бити приближно. Видите FAQ 3.11" -#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:593 +#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:589 #: server_databases.php:142 tbl_printview.php:336 tbl_structure.php:683 msgid "Overhead" msgstr "Прекорачење" #: libraries/dbi/mysql.dbi.lib.php:112 libraries/dbi/mysqli.dbi.lib.php:124 -#: libraries/messages.inc.php:176 +#: libraries/messages.inc.php:172 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Конекција за controluser-а, онако како је дефинисана у вашој конфигурацији, " "није успела." #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 -#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:855 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:851 msgid "The server is not responding" msgstr "Сервер не одговара" #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:1010 +#: libraries/messages.inc.php:1006 msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "(или прикључак локалног MySQL сервера није исправно подешен)" -#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:255 +#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:251 #: tbl_structure.php:609 msgid "Details..." msgstr "" -#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:143 +#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:139 #: main.php:91 user_password.php:111 user_password.php:129 msgid "Change password" msgstr "Промени лозинку" -#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:561 +#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:557 #: libraries/replication_gui.lib.php:341 server_privileges.php:768 msgid "No Password" msgstr "Нема лозинке" -#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:610 +#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:606 #: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60 #: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335 #: libraries/replication_gui.lib.php:345 server_privileges.php:757 @@ -2076,13 +2086,13 @@ msgstr "Нема лозинке" msgid "Password" msgstr "Лозинка" -#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:806 +#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:802 #: libraries/replication_gui.lib.php:349 libraries/replication_gui.lib.php:352 #: server_privileges.php:776 server_privileges.php:779 msgid "Re-type" msgstr "Поновите унос" -#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:608 +#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:604 msgid "Password Hashing" msgstr "Хеширање лозинке" @@ -2092,90 +2102,90 @@ msgstr "Хеширање лозинке" msgid "MySQL 4.0 compatible" msgstr "MySQL 4.0 компатибилно" -#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:353 +#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:349 #: libraries/replication_gui.lib.php:356 server_privileges.php:783 msgid "Generate Password" msgstr "Направи лозинку" -#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:352 +#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:348 #: libraries/replication_gui.lib.php:359 server_privileges.php:786 msgid "Generate" msgstr "Направи" #: libraries/display_create_database.lib.php:22 -#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:189 +#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:185 msgid "Create new database" msgstr "Направи нову базу података" -#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:185 +#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:181 msgid "Create" msgstr "Направи" -#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:564 +#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:560 #: server_privileges.php:74 server_privileges.php:1388 #: server_replication.php:35 msgid "No Privileges" msgstr "Нема привилегија" -#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:445 +#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:441 msgid "Table must have at least one field." msgstr "Табела мора имати барем једно поље." -#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:190 +#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:186 #, php-format msgid "Create table on database %s" msgstr "Направи нову табелу у бази %s" -#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:577 +#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:573 msgid "Number of fields" msgstr "Број поља" -#: libraries/display_export.lib.php:42 libraries/messages.inc.php:124 +#: libraries/display_export.lib.php:42 libraries/messages.inc.php:120 msgid "Could not load export plugins, please check your installation!" msgstr "" "Није могуће учитати додатке за извоз, молимо проверите своју инсталацију!" -#: libraries/display_export.lib.php:107 libraries/messages.inc.php:277 +#: libraries/display_export.lib.php:107 libraries/messages.inc.php:273 #, php-format msgid "Dump %s row(s) starting at record # %s" msgstr "Прикажи %s редова почевши од реда %s." -#: libraries/display_export.lib.php:115 libraries/messages.inc.php:274 +#: libraries/display_export.lib.php:115 libraries/messages.inc.php:270 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:125 libraries/messages.inc.php:852 +#: libraries/display_export.lib.php:125 libraries/messages.inc.php:848 #: setup/lib/messages.inc.php:82 msgid "Save as file" msgstr "Сачувај као датотеку" -#: libraries/display_export.lib.php:134 libraries/messages.inc.php:828 +#: libraries/display_export.lib.php:134 libraries/messages.inc.php:824 #, php-format msgid "Save on server in %s directory" msgstr "Сачувај на сервер у директоријум %s" -#: libraries/display_export.lib.php:142 libraries/messages.inc.php:594 +#: libraries/display_export.lib.php:142 libraries/messages.inc.php:590 #: setup/lib/messages.inc.php:90 msgid "Overwrite existing file(s)" msgstr "Препиши постојеће датотеке" -#: libraries/display_export.lib.php:148 libraries/messages.inc.php:330 +#: libraries/display_export.lib.php:148 libraries/messages.inc.php:326 msgid "File name template" msgstr "Шаблон имена датотеке" -#: libraries/display_export.lib.php:152 libraries/messages.inc.php:327 +#: libraries/display_export.lib.php:152 libraries/messages.inc.php:323 msgid "server name" msgstr "назив сервера" -#: libraries/display_export.lib.php:155 libraries/messages.inc.php:326 +#: libraries/display_export.lib.php:155 libraries/messages.inc.php:322 msgid "database name" msgstr "назив базе" -#: libraries/display_export.lib.php:158 libraries/messages.inc.php:328 +#: libraries/display_export.lib.php:158 libraries/messages.inc.php:324 msgid "table name" msgstr "назив табеле" -#: libraries/display_export.lib.php:162 libraries/messages.inc.php:329 +#: libraries/display_export.lib.php:162 libraries/messages.inc.php:325 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2186,24 +2196,24 @@ msgstr "" "користите стрингове за форматирање времена. Такође ће се десити и следеће " "трансформације: %3$s. Преостали текст ће остати како јесте." -#: libraries/display_export.lib.php:202 libraries/messages.inc.php:331 +#: libraries/display_export.lib.php:202 libraries/messages.inc.php:327 msgid "remember template" msgstr "запамти шаблон" #: libraries/display_export.lib.php:210 libraries/display_import.lib.php:178 -#: libraries/display_import.lib.php:191 libraries/messages.inc.php:145 +#: libraries/display_import.lib.php:191 libraries/messages.inc.php:141 #: libraries/sql_query_form.lib.php:549 msgid "Character set of the file:" msgstr "Карактер сет датотеке:" -#: libraries/display_export.lib.php:235 libraries/messages.inc.php:166 +#: libraries/display_export.lib.php:235 libraries/messages.inc.php:162 #: setup/lib/messages.inc.php:84 msgid "Compression" 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/messages.inc.php:558 +#: libraries/export/sql.php:868 libraries/messages.inc.php:554 #: libraries/tbl_properties.inc.php:575 server_privileges.php:1836 #: server_processlist.php:75 msgid "None" @@ -2227,60 +2237,60 @@ msgstr "\"гзип-овано\"" msgid "bzipped" msgstr "\"бзип-овано\"" -#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1018 +#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1014 msgid "SQL compatibility mode" msgstr "Мод SQL компатибилности" -#: libraries/display_import.lib.php:67 libraries/messages.inc.php:398 +#: libraries/display_import.lib.php:67 libraries/messages.inc.php:394 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " "browsers." msgstr "" -#: libraries/display_import.lib.php:77 libraries/messages.inc.php:406 +#: libraries/display_import.lib.php:77 libraries/messages.inc.php:402 msgid "The file is being processed, please be patient." msgstr "" -#: libraries/display_import.lib.php:99 libraries/messages.inc.php:408 +#: libraries/display_import.lib.php:99 libraries/messages.inc.php:404 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." msgstr "" -#: libraries/display_import.lib.php:126 libraries/messages.inc.php:333 +#: libraries/display_import.lib.php:126 libraries/messages.inc.php:329 msgid "File to import" msgstr "Датотека за увоз" -#: libraries/display_import.lib.php:137 libraries/messages.inc.php:486 +#: libraries/display_import.lib.php:137 libraries/messages.inc.php:482 #: libraries/sql_query_form.lib.php:524 msgid "Location of the text file" msgstr "Локација текстуалне датотеке" -#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1203 +#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1199 msgid "File uploads are not allowed on this server." msgstr "Слање датотека на овај сервер није дозвољено." -#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1235 +#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1231 #: libraries/sql_query_form.lib.php:533 tbl_change.php:1028 msgid "The directory you set for upload work cannot be reached" msgstr "Директоријум који сте изабрали за слање није доступан" -#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1236 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1232 #: libraries/sql_query_form.lib.php:536 tbl_change.php:1031 msgid "web server upload directory" msgstr "директоријум за слање веб сервера " -#: libraries/display_import.lib.php:212 libraries/messages.inc.php:167 +#: libraries/display_import.lib.php:212 libraries/messages.inc.php:163 #, php-format msgid "Imported file compression will be automatically detected from: %s" msgstr "Врста компресије увезених датотека ће бити аутоматски одабрана: %s" -#: libraries/display_import.lib.php:219 libraries/messages.inc.php:600 +#: libraries/display_import.lib.php:219 libraries/messages.inc.php:596 msgid "Partial import" msgstr "Делимични увоз" -#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1105 +#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1101 #, php-format msgid "" "Previous import timed out, after resubmitting will continue from position %d." @@ -2288,7 +2298,7 @@ msgstr "" "Претходном увозу је истекло време, након поновног слања биће настављен од " "позиције %d." -#: libraries/display_import.lib.php:232 libraries/messages.inc.php:51 +#: libraries/display_import.lib.php:232 libraries/messages.inc.php:47 msgid "" "Allow the interruption of an import in case the script detects it is close " "to the PHP timeout limit. This might be good way to import large files, " @@ -2298,179 +2308,179 @@ msgstr "" "ограничења. Ово може бити добар начин увоза великих датотека, али са друге " "стране може покварити трансакције." -#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1004 +#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1000 #: setup/lib/messages.inc.php:161 msgid "Number of records (queries) to skip from start" msgstr "Број записа (упита) које треба прескочити:" -#: libraries/display_import.lib.php:255 libraries/messages.inc.php:396 +#: libraries/display_import.lib.php:255 libraries/messages.inc.php:392 #: setup/lib/messages.inc.php:160 msgid "Format of imported file" msgstr "Формат датотека за увоз" #: libraries/display_select_lang.lib.php:45 -#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:465 +#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:461 #: setup/frames/index.inc.php:70 msgid "Language" msgstr "Језик" -#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:447 +#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:443 #, php-format msgid "%d is not valid row number." msgstr "%d није исправан број реда." -#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:814 +#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:810 msgid "row(s) starting from record #" msgstr " редова почев од реда" -#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:817 +#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:813 msgid "horizontal" msgstr "хоризонталном" -#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:816 +#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:812 msgid "horizontal (rotated headers)" msgstr "хоризонталном (ротирана заглавља)" -#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:819 +#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:815 msgid "vertical" msgstr "вертикалном" -#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:818 +#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:814 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "у %s моду и понови заглавље после сваког %s реда" -#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:495 +#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:491 msgid "This operation could take a long time. Proceed anyway?" msgstr "Ова операција може да потраје. Да ли да наставимо?" -#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1012 +#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1008 msgid "Sort by key" msgstr "Сортирај по кључу" #: libraries/display_tbl.lib.php:555 libraries/import.lib.php:1082 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:591 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:587 #: tbl_select.php:267 tbl_structure.php:754 msgid "Options" msgstr "Опције" #: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:570 -#: libraries/messages.inc.php:601 +#: libraries/messages.inc.php:597 msgid "Partial Texts" msgstr "Део текста" #: libraries/display_tbl.lib.php:561 libraries/display_tbl.lib.php:574 -#: libraries/messages.inc.php:346 +#: libraries/messages.inc.php:342 msgid "Full Texts" msgstr "Пун текст" -#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:739 +#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:735 #, fuzzy msgid "Relational key" msgstr "Релациона схема" -#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:738 +#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:734 msgid "Relational display field" msgstr "" -#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:872 +#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:868 msgid "Show binary contents" msgstr "" -#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:873 +#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:869 msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:871 +#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:867 msgid "Show binary contents as HEX" msgstr "" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:375 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:371 #: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320 msgid "Hide" msgstr "Сакриј" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:508 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:504 #: libraries/tbl_properties.inc.php:144 transformation_overview.php:47 msgid "Browser transformation" msgstr "Транформације читача" #: libraries/display_tbl.lib.php:1126 libraries/display_tbl.lib.php:1130 -#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:308 +#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:304 msgid "Execute bookmarked query" msgstr "Изврши упамћен упит" #: libraries/display_tbl.lib.php:1145 libraries/display_tbl.lib.php:1157 -#: libraries/messages.inc.php:244 +#: libraries/messages.inc.php:240 msgid "The row has been deleted" msgstr "Ред је обрисан" #: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056 -#: libraries/messages.inc.php:460 server_processlist.php:71 +#: libraries/messages.inc.php:456 server_processlist.php:71 #: tbl_row_action.php:64 msgid "Kill" msgstr "Обустави" -#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:849 +#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:845 msgid "in query" msgstr "у упиту" -#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:881 +#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:877 msgid "Showing rows" msgstr "Приказ записа" -#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1113 +#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1109 msgid "total" msgstr "укупно" -#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:727 +#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:723 #: sql.php:524 #, php-format msgid "Query took %01.4f sec" msgstr "Упит је трајао %01.4f секунди" -#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:135 +#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:131 #: 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:471 msgid "Change" msgstr "Промени" -#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:724 +#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:720 msgid "Query results operations" msgstr "Операције на резултатима упита" -#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:671 +#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:667 msgid "Print view (with full texts)" msgstr "Поглед за штампу (са пуним текстом)" -#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:482 +#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:478 msgid "Link not found" msgstr "Веза није пронађена" -#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1224 +#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1220 #: main.php:228 msgid "Version information" msgstr "Информације о верзији" -#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:423 +#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:419 msgid "Data home directory" msgstr "Основни директоријум података" -#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:424 +#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:420 msgid "The common part of the directory path for all InnoDB data files." msgstr "" "Заједнички део путање директоријума за све InnoDB датотеке са подацима." -#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:422 +#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:418 msgid "Data files" msgstr "Датотеке са подацима" -#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:418 +#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:414 msgid "Autoextend increment" msgstr "Корак аутоматског проширења" -#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:419 +#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:415 msgid "" " The increment size for extending the size of an autoextending tablespace " "when it becomes full." @@ -2478,11 +2488,11 @@ msgstr "" " Величина корака проширења величине табела које се аутоматски проширују када " "се напуне." -#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:420 +#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:416 msgid "Buffer pool size" msgstr "Величина прихватника" -#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:421 +#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:417 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." @@ -2490,87 +2500,87 @@ msgstr "" "Величина меморијског прихватника које InnoDB користи за кеширање података и " "индекса својих табела." -#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:112 +#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:108 msgid "Buffer Pool" msgstr "Скуп прихватника" -#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:426 +#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:422 #: server_status.php:306 msgid "InnoDB Status" msgstr "InnoDB статус" -#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:113 +#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:109 msgid "Buffer Pool Usage" msgstr "Коришћење скупа прихватника" -#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1114 +#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1110 #: server_databases.php:137 server_databases.php:305 server_status.php:414 #: server_status.php:475 server_status.php:496 tbl_printview.php:351 #: tbl_structure.php:697 msgid "Total" msgstr "Укупно" -#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:425 +#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:421 msgid "pages" msgstr "страна" -#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:343 +#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:339 msgid "Free pages" msgstr "Слободне стране" -#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:259 +#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:255 msgid "Dirty pages" msgstr "Прљаве стране" -#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:230 +#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:226 msgid "Pages containing data" msgstr "Стране са подацима" -#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:598 +#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:594 msgid "Pages to be flushed" msgstr "Стране које треба да буду усклађене" -#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:119 +#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:115 msgid "Busy pages" msgstr "Заузете стране" -#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:467 +#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:463 msgid "Latched pages" msgstr "Забрављене стране" -#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:111 +#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:107 msgid "Buffer Pool Activity" msgstr "Активност скупа прихватника" -#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:731 +#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:727 msgid "Read requests" msgstr "Захтеви за читање" -#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1244 +#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1240 msgid "Write requests" msgstr "Захтеви за упис" -#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:115 +#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:111 msgid "Read misses" msgstr "Промашаји при читању" -#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:117 +#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:113 msgid "Write waits" msgstr "Чекања на упис" -#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:114 +#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:110 msgid "Read misses in %" msgstr "Промашаји читања у %" -#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:116 +#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:112 msgid "Write waits in %" msgstr "Чекања на упис у %" -#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:522 +#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:518 msgid "Data pointer size" msgstr "Величина показивача података" -#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:523 +#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:519 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." @@ -2578,11 +2588,11 @@ msgstr "" "Подразумевана величина показивача у бајтовима, користи се при CREATE TABLE " "за MyISAM табеле када није задата опција MAX_ROWS" -#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:528 +#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:524 msgid "Automatic recovery mode" msgstr "Режим аутоматског опоравка" -#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:529 +#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:525 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." @@ -2590,11 +2600,11 @@ msgstr "" "Режим аутоматског опоравка пукнутих MyISAM табела, подешен при стартовању " "сервера опцијом --myisam-recover." -#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:527 +#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:523 msgid "Maximum size for temporary sort files" msgstr "Максимална величина привремених датотека за сортирање" -#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:526 +#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:522 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " @@ -2604,11 +2614,11 @@ msgstr "" "креирању MyISAM индекса (у току REPAIR TABLE, ALTER TABLE, или LOAD DATA " "INFILE операција)." -#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:525 +#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:521 msgid "Maximum size for temporary files on index creation" msgstr "Максимална величина привремених датотека при креирању индекса" -#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:524 +#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:520 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " @@ -2618,11 +2628,11 @@ msgstr "" "била већа него при коришћењу кеша кључева за овде задату вредност, користи " "метод кеширања кључева" -#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:531 +#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:527 msgid "Repair threads" msgstr "Нити поправке" -#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:530 +#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:526 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." @@ -2630,11 +2640,11 @@ msgstr "" "Ако је вредност већа од 1, индекси MyISAM табела се паралелно креирају " "(сваки индекс у сопственој нити) за време процеса поправке сортирањем." -#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:533 +#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:529 msgid "Sort buffer size" msgstr "Величина прихватника за сортирање" -#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:532 +#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:528 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." @@ -2642,73 +2652,73 @@ msgstr "" "Прихватник који се алоцира при сортирању MyISAM индекса за време операције " "REPAIR TABLE или при креирању индекса са CREATE INDEX или ALTER TABLE." -#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:620 +#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:616 msgid "Index cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:619 +#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:615 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." msgstr "" -#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:630 +#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:626 msgid "Record cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:629 +#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:625 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " "to the handle data (.xtd) and row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:624 +#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:620 #, fuzzy msgid "Log cache size" msgstr "Величина прихватника за сортирање" -#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:623 +#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:619 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:628 +#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:624 msgid "Log file threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:627 +#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:623 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:634 +#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:630 msgid "Transaction buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:633 +#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:629 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." msgstr "" -#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:611 +#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:607 msgid "Checkpoint frequency" msgstr "" -#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:612 +#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:608 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." msgstr "" -#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:615 +#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:611 msgid "Data log threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:616 +#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:612 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -2716,49 +2726,49 @@ msgid "" "that can be stored in the database." msgstr "" -#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:618 +#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:614 msgid "Garbage threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:617 +#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:613 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." msgstr "" -#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:622 +#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:618 #, fuzzy msgid "Log buffer size" msgstr "Величина прихватника за сортирање" -#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:621 +#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:617 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " "required to write a data log." msgstr "" -#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:613 +#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:609 msgid "Data file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:614 +#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:610 msgid "The grow size of the handle data (.xtd) files." msgstr "" -#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:632 +#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:628 msgid "Row file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:631 +#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:627 msgid "The grow size of the row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:626 +#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:622 msgid "Log file count" msgstr "" -#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:625 +#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:621 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -2768,19 +2778,19 @@ msgstr "" #: libraries/export/htmlword.php:132 libraries/export/odt.php:168 #: libraries/export/sql.php:881 libraries/export/texytext.php:130 -#: libraries/messages.inc.php:275 +#: libraries/messages.inc.php:271 msgid "Dumping data for table" msgstr "Приказ података табеле" #: libraries/export/htmlword.php:185 libraries/export/odt.php:238 #: libraries/export/sql.php:785 libraries/export/texytext.php:177 -#: libraries/messages.inc.php:1086 +#: libraries/messages.inc.php:1082 msgid "Table structure for table" msgstr "Структура табеле" #: libraries/export/latex.php:125 libraries/export/sql.php:232 #: libraries/export/xml.php:102 libraries/header_printview.inc.php:57 -#: libraries/messages.inc.php:381 libraries/replication_gui.lib.php:63 +#: libraries/messages.inc.php:377 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:170 libraries/replication_gui.lib.php:265 #: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325 #: server_privileges.php:692 server_privileges.php:695 @@ -2792,187 +2802,187 @@ msgstr "Домаћин" #: libraries/export/latex.php:130 libraries/export/sql.php:233 #: libraries/export/xml.php:107 libraries/header_printview.inc.php:59 -#: libraries/messages.inc.php:354 +#: libraries/messages.inc.php:350 msgid "Generation Time" msgstr "Време креирања" #: libraries/export/latex.php:131 libraries/export/sql.php:235 -#: libraries/export/xml.php:108 libraries/messages.inc.php:864 main.php:186 +#: libraries/export/xml.php:108 libraries/messages.inc.php:860 main.php:186 msgid "Server version" msgstr "Верзија сервера" #: libraries/export/latex.php:132 libraries/export/sql.php:236 -#: libraries/export/xml.php:109 libraries/messages.inc.php:651 +#: libraries/export/xml.php:109 libraries/messages.inc.php:647 msgid "PHP Version" msgstr "верзија PHP-a" #: libraries/export/latex.php:201 libraries/export/sql.php:868 -#: libraries/messages.inc.php:226 server_databases.php:127 +#: libraries/messages.inc.php:222 server_databases.php:127 #: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317 #: tbl_structure.php:666 msgid "Data" msgstr "Подаци" -#: libraries/export/odt.php:318 libraries/messages.inc.php:506 +#: libraries/export/odt.php:318 libraries/messages.inc.php:502 #: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "MIME-типови" -#: libraries/export/sql.php:387 libraries/messages.inc.php:711 +#: libraries/export/sql.php:387 libraries/messages.inc.php:707 msgid "Procedures" msgstr "Процедуре" -#: libraries/export/sql.php:401 libraries/messages.inc.php:348 +#: libraries/export/sql.php:401 libraries/messages.inc.php:344 msgid "Functions" msgstr "Функције" -#: libraries/export/sql.php:618 libraries/messages.inc.php:174 +#: libraries/export/sql.php:618 libraries/messages.inc.php:170 msgid "Constraints for dumped tables" msgstr "Ограничења за извезене табеле" -#: libraries/export/sql.php:627 libraries/messages.inc.php:175 +#: libraries/export/sql.php:627 libraries/messages.inc.php:171 msgid "Constraints for table" msgstr "Ограничења за табеле" -#: libraries/export/sql.php:727 libraries/messages.inc.php:512 +#: libraries/export/sql.php:727 libraries/messages.inc.php:508 msgid "MIME TYPES FOR TABLE" msgstr "MIME ТИПОВИ ЗА ТАБЕЛУ" -#: libraries/export/sql.php:739 libraries/messages.inc.php:743 +#: libraries/export/sql.php:739 libraries/messages.inc.php:739 msgid "RELATIONS FOR TABLE" msgstr "РЕЛАЦИЈЕ ТАБЕЛЕ" -#: libraries/export/sql.php:796 libraries/messages.inc.php:1178 +#: libraries/export/sql.php:796 libraries/messages.inc.php:1174 #: libraries/tbl_triggers.lib.php:19 msgid "Triggers" msgstr "Окидачи" -#: libraries/export/sql.php:808 libraries/messages.inc.php:1046 +#: libraries/export/sql.php:808 libraries/messages.inc.php:1042 msgid "Structure for view" msgstr "Структура за поглед (view)" -#: libraries/export/sql.php:817 libraries/messages.inc.php:1029 +#: libraries/export/sql.php:817 libraries/messages.inc.php:1025 msgid "Stand-in structure for view" msgstr "Структура која замењује поглед" #: libraries/footer.inc.php:184 libraries/footer.inc.php:195 -#: libraries/footer.inc.php:198 libraries/messages.inc.php:586 +#: libraries/footer.inc.php:198 libraries/messages.inc.php:582 msgid "Open new phpMyAdmin window" msgstr "Отвори нови phpMyAdmin прозор" -#: libraries/header.inc.php:115 libraries/messages.inc.php:542 +#: libraries/header.inc.php:115 libraries/messages.inc.php:538 #, fuzzy msgid "New table" msgstr "Нема табела" #: libraries/header_printview.inc.php:50 libraries/header_printview.inc.php:55 -#: libraries/messages.inc.php:1024 +#: libraries/messages.inc.php:1020 msgid "SQL result" msgstr "SQL резултат" -#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:350 +#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:346 msgid "Generated by" msgstr "Генерисао" #: libraries/header_printview.inc.php:63 libraries/import.lib.php:145 -#: libraries/messages.inc.php:820 navigation.php:652 navigation.php:674 +#: libraries/messages.inc.php:816 navigation.php:652 navigation.php:674 #: server_databases.php:122 tbl_printview.php:394 tbl_structure.php:366 #: tbl_structure.php:778 msgid "Rows" msgstr "Редова" -#: libraries/import.lib.php:150 libraries/messages.inc.php:285 sql.php:520 +#: libraries/import.lib.php:150 libraries/messages.inc.php:281 sql.php:520 #: tbl_change.php:181 tbl_get_field.php:35 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL је вратио празан резултат (нула редова)." -#: libraries/import.lib.php:1078 libraries/messages.inc.php:399 +#: libraries/import.lib.php:1078 libraries/messages.inc.php:395 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1079 libraries/messages.inc.php:400 +#: libraries/import.lib.php:1079 libraries/messages.inc.php:396 msgid "View a structure`s contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1080 libraries/messages.inc.php:401 +#: libraries/import.lib.php:1080 libraries/messages.inc.php:397 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1081 libraries/messages.inc.php:402 +#: libraries/import.lib.php:1081 libraries/messages.inc.php:398 msgid "Edit its structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1084 libraries/messages.inc.php:362 +#: libraries/import.lib.php:1084 libraries/messages.inc.php:358 #, fuzzy msgid "Go to database" msgstr "База не постоји" #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:869 +#: libraries/messages.inc.php:865 msgid "settings" msgstr "" -#: libraries/import.lib.php:1106 libraries/messages.inc.php:363 +#: libraries/import.lib.php:1106 libraries/messages.inc.php:359 #, fuzzy msgid "Go to table" msgstr "База не постоји" -#: libraries/import.lib.php:1109 libraries/messages.inc.php:1047 +#: libraries/import.lib.php:1109 libraries/messages.inc.php:1043 #, fuzzy msgid "structure" msgstr "Структура" -#: libraries/import.lib.php:1115 libraries/messages.inc.php:364 +#: libraries/import.lib.php:1115 libraries/messages.inc.php:360 msgid "Go to view" msgstr "" #: libraries/import/csv.php:58 libraries/import/csv.php:70 #: libraries/import/csv.php:74 libraries/import/csv.php:78 -#: libraries/messages.inc.php:442 +#: libraries/messages.inc.php:438 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "Неисправни параметри за CSV увоз: %s" -#: libraries/import/csv.php:59 libraries/messages.inc.php:323 +#: libraries/import/csv.php:59 libraries/messages.inc.php:319 msgid "Fields terminated by" msgstr "Поља раздвојена са" -#: libraries/import/csv.php:71 libraries/messages.inc.php:320 +#: libraries/import/csv.php:71 libraries/messages.inc.php:316 msgid "Fields enclosed by" msgstr "Поља ограничена са" -#: libraries/import/csv.php:75 libraries/messages.inc.php:321 +#: libraries/import/csv.php:75 libraries/messages.inc.php:317 msgid "Fields escaped by" msgstr "Ескејп карактер      " -#: libraries/import/csv.php:79 libraries/messages.inc.php:481 +#: libraries/import/csv.php:79 libraries/messages.inc.php:477 msgid "Lines terminated by" msgstr "Линије се завршавају са" -#: libraries/import/csv.php:119 libraries/messages.inc.php:439 +#: libraries/import/csv.php:119 libraries/messages.inc.php:435 #, php-format msgid "Invalid column (%s) specified!" msgstr "Задата је неисправна колона (%s)!" #: libraries/import/csv.php:177 libraries/import/csv.php:424 -#: libraries/messages.inc.php:441 +#: libraries/messages.inc.php:437 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "Неисправан формат CSV улаза на линији %d." -#: libraries/import/csv.php:312 libraries/messages.inc.php:440 +#: libraries/import/csv.php:312 libraries/messages.inc.php:436 #, php-format msgid "Invalid field count in CSV input on line %d." msgstr "Неисправан број поља у CSV улазу на линији %d." -#: libraries/import/ldi.php:55 libraries/messages.inc.php:446 +#: libraries/import/ldi.php:55 libraries/messages.inc.php:442 msgid "This plugin does not support compressed imports!" msgstr "Овај додатак не подржава компресоване увозе!" #: libraries/import/xml.php:74 libraries/import/xml.php:130 -#: libraries/messages.inc.php:1247 +#: libraries/messages.inc.php:1243 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -3002,575 +3012,565 @@ msgstr "" msgid "ltr" msgstr "ltr" -#. l10n: Thousands separator -#: libraries/messages.inc.php:21 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: libraries/messages.inc.php:23 -msgid "." -msgstr "." - -#: libraries/messages.inc.php:25 server_status.php:461 +#: libraries/messages.inc.php:21 server_status.php:461 msgid "Aborted" msgstr "Прекинуто" -#: libraries/messages.inc.php:28 main.php:68 +#: libraries/messages.inc.php:24 main.php:68 #, fuzzy msgid "Actions" msgstr "Акција" -#: libraries/messages.inc.php:34 libraries/tbl_properties.inc.php:780 +#: libraries/messages.inc.php:30 libraries/tbl_properties.inc.php:780 #: tbl_structure.php:543 #, php-format msgid "Add %s field(s)" msgstr "Додај %s поља" -#: libraries/messages.inc.php:35 +#: libraries/messages.inc.php:31 msgid "Add custom comment into header (\\n splits lines)" msgstr "Додај коментар у заглавље (\\n раздваја линије)" -#: libraries/messages.inc.php:36 +#: libraries/messages.inc.php:32 msgid "Add into comments" msgstr "Додај у коментаре" -#: libraries/messages.inc.php:37 tbl_structure.php:541 +#: libraries/messages.inc.php:33 tbl_structure.php:541 msgid "Add new field" msgstr "Додај ново поље" -#: libraries/messages.inc.php:38 server_privileges.php:1886 +#: libraries/messages.inc.php:34 server_privileges.php:1886 msgid "Add privileges on the following database" msgstr "Додај привилегије на следећој бази" -#: libraries/messages.inc.php:39 server_privileges.php:1907 +#: libraries/messages.inc.php:35 server_privileges.php:1907 msgid "Add privileges on the following table" msgstr "Додај привилегије на следећој табели" -#: libraries/messages.inc.php:40 tbl_select.php:288 +#: libraries/messages.inc.php:36 tbl_select.php:288 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Додај услове претраживања (део \"WHERE\" упита):" -#: libraries/messages.inc.php:41 tbl_indexes.php:251 +#: libraries/messages.inc.php:37 tbl_indexes.php:251 #, php-format msgid "Add to index  %s column(s)" msgstr "Додај у кључ  %s колона(е)" -#: libraries/messages.inc.php:42 server_privileges.php:1570 +#: libraries/messages.inc.php:38 server_privileges.php:1570 #: server_privileges.php:1594 server_privileges.php:1988 #: server_privileges.php:2177 msgid "Add a new User" msgstr "Додај новог корисника" -#: libraries/messages.inc.php:43 server_privileges.php:931 +#: libraries/messages.inc.php:39 server_privileges.php:931 msgid "You have added a new user." msgstr "Додали сте новог корисника." -#: libraries/messages.inc.php:44 server_privileges.php:571 +#: libraries/messages.inc.php:40 server_privileges.php:571 msgid "Administration" msgstr "Администрација" -#: libraries/messages.inc.php:45 tbl_structure.php:557 +#: libraries/messages.inc.php:41 tbl_structure.php:557 #, php-format msgid "After %s" msgstr "После %s" -#: libraries/messages.inc.php:46 tbl_change.php:1147 +#: libraries/messages.inc.php:42 tbl_change.php:1147 msgid "Go back to previous page" msgstr "Назад на претходну страну" -#: libraries/messages.inc.php:47 tbl_change.php:1148 +#: libraries/messages.inc.php:43 tbl_change.php:1148 msgid "Insert another new row" msgstr "Додај још један нови ред" -#: libraries/messages.inc.php:48 tbl_change.php:1160 +#: libraries/messages.inc.php:44 tbl_change.php:1160 msgid "Edit next row" msgstr "Уреди следећи ред" -#: libraries/messages.inc.php:49 tbl_change.php:1152 +#: libraries/messages.inc.php:45 tbl_change.php:1152 msgid "Go back to this page" msgstr "Врати се на ову страну" -#: libraries/messages.inc.php:50 querywindow.php:115 +#: libraries/messages.inc.php:46 querywindow.php:115 msgid "All" msgstr "Све" -#: libraries/messages.inc.php:53 tbl_operations.php:249 +#: libraries/messages.inc.php:49 tbl_operations.php:249 msgid "Alter table order by" msgstr "Промени редослед у табели" -#: libraries/messages.inc.php:54 tbl_operations.php:660 +#: libraries/messages.inc.php:50 tbl_operations.php:660 msgid "Analyze" msgstr "" -#: libraries/messages.inc.php:57 +#: libraries/messages.inc.php:53 #, fuzzy msgid "and" msgstr "и" -#: libraries/messages.inc.php:59 pmd_general.php:87 +#: libraries/messages.inc.php:55 pmd_general.php:87 msgid "Angular links" msgstr "Угласте везе" -#: libraries/messages.inc.php:60 tbl_structure.php:401 tbl_structure.php:415 +#: libraries/messages.inc.php:56 tbl_structure.php:401 tbl_structure.php:415 #: tbl_structure.php:429 #, php-format msgid "An index has been added on %s" msgstr "Кључ је управо додат %s" -#: libraries/messages.inc.php:61 server_privileges.php:1521 +#: libraries/messages.inc.php:57 server_privileges.php:1521 #: server_privileges.php:2123 msgid "Any" msgstr "Било који" -#: libraries/messages.inc.php:62 libraries/replication_gui.lib.php:298 +#: libraries/messages.inc.php:58 libraries/replication_gui.lib.php:298 #: server_privileges.php:725 msgid "Any host" msgstr "Било који домаћин" -#: libraries/messages.inc.php:63 libraries/replication_gui.lib.php:250 +#: libraries/messages.inc.php:59 libraries/replication_gui.lib.php:250 #: server_privileges.php:677 msgid "Any user" msgstr "Било који корисник" -#: libraries/messages.inc.php:64 server_synchronize.php:449 +#: libraries/messages.inc.php:60 server_synchronize.php:449 #: server_synchronize.php:894 msgid "Apply Selected Changes" msgstr "" -#: libraries/messages.inc.php:66 tbl_structure.php:386 +#: libraries/messages.inc.php:62 tbl_structure.php:386 #, php-format msgid "A primary key has been added on %s" msgstr "Примарни кључ је управо додат %s" -#: libraries/messages.inc.php:67 libraries/mysql_charsets.lib.php:368 +#: libraries/messages.inc.php:63 libraries/mysql_charsets.lib.php:368 msgid "Arabic" msgstr "Арапски" -#: libraries/messages.inc.php:68 libraries/mysql_charsets.lib.php:359 +#: libraries/messages.inc.php:64 libraries/mysql_charsets.lib.php:359 msgid "Armenian" msgstr "Јерменски" -#: libraries/messages.inc.php:70 libraries/tbl_properties.inc.php:394 +#: libraries/messages.inc.php:66 libraries/tbl_properties.inc.php:394 msgid "As defined:" msgstr "" -#: libraries/messages.inc.php:71 tbl_structure.php:556 +#: libraries/messages.inc.php:67 tbl_structure.php:556 msgid "At Beginning of Table" msgstr "На почетку табеле" -#: libraries/messages.inc.php:72 tbl_structure.php:555 +#: libraries/messages.inc.php:68 tbl_structure.php:555 msgid "At End of Table" msgstr "На крају табеле" -#: libraries/messages.inc.php:73 libraries/tbl_properties.inc.php:108 +#: libraries/messages.inc.php:69 libraries/tbl_properties.inc.php:108 #: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:144 #: tbl_structure.php:180 msgid "Attributes" msgstr "Атрибути" -#: libraries/messages.inc.php:74 pdf_pages.php:303 pdf_pages.php:306 +#: libraries/messages.inc.php:70 pdf_pages.php:303 pdf_pages.php:306 msgid "Automatic layout" msgstr "Аутоматски распоред" -#: libraries/messages.inc.php:77 libraries/mysql_charsets.lib.php:354 +#: libraries/messages.inc.php:73 libraries/mysql_charsets.lib.php:354 msgid "Baltic" msgstr "Балтички" -#: libraries/messages.inc.php:78 libraries/sqlparser.lib.php:175 +#: libraries/messages.inc.php:74 libraries/sqlparser.lib.php:175 msgid "BEGIN CUT" msgstr "ПОЧЕТАК РЕЗ" -#: libraries/messages.inc.php:79 libraries/sqlparser.lib.php:179 +#: libraries/messages.inc.php:75 libraries/sqlparser.lib.php:179 msgid "BEGIN RAW" msgstr "ПОЧЕТАК СИРОВО" -#: libraries/messages.inc.php:80 libraries/mysql_charsets.lib.php:201 +#: libraries/messages.inc.php:76 libraries/mysql_charsets.lib.php:201 #: libraries/mysql_charsets.lib.php:402 tbl_change.php:518 msgid "Binary" msgstr "Бинарни" -#: libraries/messages.inc.php:81 tbl_change.php:894 +#: libraries/messages.inc.php:77 tbl_change.php:894 msgid "Binary - do not edit" msgstr "Бинарни - не мењај" -#: libraries/messages.inc.php:82 libraries/server_links.inc.php:76 +#: libraries/messages.inc.php:78 libraries/server_links.inc.php:76 #: server_binlog.php:110 server_status.php:253 test/theme.php:121 msgid "Binary log" msgstr "Бинарни дневник" -#: libraries/messages.inc.php:83 server_binlog.php:217 +#: libraries/messages.inc.php:79 server_binlog.php:217 msgid "Event type" msgstr "Врста догађаја" -#: libraries/messages.inc.php:84 server_binlog.php:220 +#: libraries/messages.inc.php:80 server_binlog.php:220 msgid "Information" msgstr "Информације" -#: libraries/messages.inc.php:85 server_binlog.php:215 +#: libraries/messages.inc.php:81 server_binlog.php:215 msgid "Log name" msgstr "Назив дневника" -#: libraries/messages.inc.php:86 server_binlog.php:219 +#: libraries/messages.inc.php:82 server_binlog.php:219 msgid "Original position" msgstr "Оригинална позиција" -#: libraries/messages.inc.php:87 server_binlog.php:216 +#: libraries/messages.inc.php:83 server_binlog.php:216 msgid "Position" msgstr "Позиција" -#: libraries/messages.inc.php:88 libraries/replication_gui.lib.php:169 +#: libraries/messages.inc.php:84 libraries/replication_gui.lib.php:169 #: server_binlog.php:218 msgid "Server ID" msgstr "ИД сервера" -#: libraries/messages.inc.php:92 +#: libraries/messages.inc.php:88 #, fuzzy msgctxt "$strBLOBRepositoryDisabled" msgid "Disabled" msgstr "Онемогућено" -#: libraries/messages.inc.php:95 +#: libraries/messages.inc.php:91 #, fuzzy msgctxt "$strBLOBRepositoryEnabled" msgid "Enabled" msgstr "Омогућено" -#: libraries/messages.inc.php:97 tbl_change.php:888 +#: libraries/messages.inc.php:93 tbl_change.php:888 msgid "Remove BLOB Repository Reference" msgstr "" -#: libraries/messages.inc.php:98 +#: libraries/messages.inc.php:94 #, fuzzy msgctxt "$strBLOBRepositoryRepair" msgid "Repair" msgstr "Поправи табелу" -#: libraries/messages.inc.php:99 tbl_change.php:987 +#: libraries/messages.inc.php:95 tbl_change.php:987 msgid "Upload to BLOB repository" msgstr "" -#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:359 +#: libraries/messages.inc.php:96 libraries/sql_query_form.lib.php:359 #: sql.php:677 msgid "Let every user access this bookmark" msgstr "Дозволи сваком кориснику да приступа овом упамћеном упиту" -#: libraries/messages.inc.php:103 sql.php:671 +#: libraries/messages.inc.php:99 sql.php:671 msgid "Label" msgstr "Назив" -#: libraries/messages.inc.php:104 libraries/sql_query_form.lib.php:433 +#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:433 msgid "Bookmarked SQL query" msgstr "Запамћен SQL-упит" -#: libraries/messages.inc.php:105 libraries/sql_query_form.lib.php:365 +#: libraries/messages.inc.php:101 libraries/sql_query_form.lib.php:365 msgid "Replace existing bookmark of same name" msgstr "Замени постојеће запамћене упите истог имена" -#: libraries/messages.inc.php:106 libraries/sql_query_form.lib.php:352 +#: libraries/messages.inc.php:102 libraries/sql_query_form.lib.php:352 #: sql.php:665 sql.php:666 sql.php:683 msgid "Bookmark this SQL query" msgstr "Запамти SQL-упит" -#: libraries/messages.inc.php:107 libraries/sql_query_form.lib.php:466 +#: libraries/messages.inc.php:103 libraries/sql_query_form.lib.php:466 msgid "View only" msgstr "Види само" -#: libraries/messages.inc.php:109 tbl_structure.php:161 +#: libraries/messages.inc.php:105 tbl_structure.php:161 msgid "Browse distinct values" msgstr "Прегледај различите вредности" -#: libraries/messages.inc.php:110 tbl_change.php:252 tbl_select.php:27 +#: libraries/messages.inc.php:106 tbl_change.php:252 tbl_select.php:27 #: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34 msgid "Browse foreign values" msgstr "Прегледај стране вредности" -#: libraries/messages.inc.php:118 libraries/mysql_charsets.lib.php:213 +#: libraries/messages.inc.php:114 libraries/mysql_charsets.lib.php:213 msgid "Bulgarian" msgstr "Бугарски" -#: libraries/messages.inc.php:120 +#: libraries/messages.inc.php:116 msgid "\"bzipped\"" msgstr "\"бзип-овано\"" -#: libraries/messages.inc.php:122 +#: libraries/messages.inc.php:118 msgid "Calendar" msgstr "Календар" -#: libraries/messages.inc.php:129 tbl_indexes.php:75 +#: libraries/messages.inc.php:125 tbl_indexes.php:75 msgid "Can't rename index to PRIMARY!" msgstr "Не могу да променим кључ у PRIMARY (примарни) !" -#: libraries/messages.inc.php:132 libraries/mysql_charsets.lib.php:223 +#: libraries/messages.inc.php:128 libraries/mysql_charsets.lib.php:223 #: libraries/mysql_charsets.lib.php:409 msgid "case-insensitive" msgstr "Не разликује мала и велика слова" -#: libraries/messages.inc.php:133 libraries/mysql_charsets.lib.php:226 +#: libraries/messages.inc.php:129 libraries/mysql_charsets.lib.php:226 #: libraries/mysql_charsets.lib.php:411 msgid "case-sensitive" msgstr "Разликује мала и велика слова" -#: libraries/messages.inc.php:134 libraries/mysql_charsets.lib.php:332 +#: libraries/messages.inc.php:130 libraries/mysql_charsets.lib.php:332 msgid "Central European" msgstr "Централноевропски" -#: libraries/messages.inc.php:136 server_privileges.php:1969 +#: libraries/messages.inc.php:132 server_privileges.php:1969 msgid "... keep the old one." msgstr "... сачувај старе." -#: libraries/messages.inc.php:137 server_privileges.php:1967 +#: libraries/messages.inc.php:133 server_privileges.php:1967 msgid "Create a new user with the same privileges and ..." msgstr "Направи новог корисника са истим привилегијама и ..." -#: libraries/messages.inc.php:138 server_privileges.php:1972 +#: libraries/messages.inc.php:134 server_privileges.php:1972 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" " ... обриши старог из табеле корисника и затим поново учитај привилегије." -#: libraries/messages.inc.php:139 server_privileges.php:1970 +#: libraries/messages.inc.php:135 server_privileges.php:1970 msgid " ... delete the old one from the user tables." msgstr " ... обриши старе из табела корисника." -#: libraries/messages.inc.php:140 server_privileges.php:1971 +#: libraries/messages.inc.php:136 server_privileges.php:1971 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr " ... обустави све привилегије старог корисника и затим га обриши." -#: libraries/messages.inc.php:141 server_privileges.php:1964 +#: libraries/messages.inc.php:137 server_privileges.php:1964 msgid "Change Login Information / Copy User" msgstr "Промени информације о пријави / Копирај корисника" -#: libraries/messages.inc.php:144 libraries/mysql_charsets.lib.php:107 +#: libraries/messages.inc.php:140 libraries/mysql_charsets.lib.php:107 msgid "Charset" msgstr "Карактер сет" -#: libraries/messages.inc.php:146 server_collations.php:40 +#: libraries/messages.inc.php:142 server_collations.php:40 msgid "Character Sets and Collations" msgstr "Карактер сетови и сортирање" -#: libraries/messages.inc.php:147 libraries/server_links.inc.php:57 +#: libraries/messages.inc.php:143 libraries/server_links.inc.php:57 #: test/theme.php:109 msgid "Charsets" msgstr "Кодне стране" -#: libraries/messages.inc.php:149 tbl_operations.php:661 +#: libraries/messages.inc.php:145 tbl_operations.php:661 #, fuzzy msgid "Check" msgstr "Чешки" -#: libraries/messages.inc.php:151 server_databases.php:293 +#: libraries/messages.inc.php:147 server_databases.php:293 #: server_databases.php:294 msgid "Check Privileges" msgstr "Провери привилегије" -#: libraries/messages.inc.php:152 server_databases.php:289 +#: libraries/messages.inc.php:148 server_databases.php:289 #, php-format msgid "Check privileges for database "%s"." msgstr "Провери привилегије за базу "%s"." -#: libraries/messages.inc.php:154 pdf_pages.php:261 +#: libraries/messages.inc.php:150 pdf_pages.php:261 msgid "Please choose a page to edit" msgstr "Изаберите страну коју мењате" -#: libraries/messages.inc.php:157 +#: libraries/messages.inc.php:153 msgid "Displaying Column Comments" msgstr "Приказујем коментаре колоне" -#: libraries/messages.inc.php:159 pdf_pages.php:483 view_create.php:148 +#: libraries/messages.inc.php:155 pdf_pages.php:483 view_create.php:148 msgid "Column names" msgstr "Имена колона" -#: libraries/messages.inc.php:160 server_privileges.php:1685 +#: libraries/messages.inc.php:156 server_privileges.php:1685 msgid "Column-specific privileges" msgstr "Привилегије везане за колоне" -#: libraries/messages.inc.php:164 +#: libraries/messages.inc.php:160 msgid "MySQL 4.0 compatible" msgstr "MySQL 4.0 компатибилно" -#: libraries/messages.inc.php:165 +#: libraries/messages.inc.php:161 msgid "Complete inserts" msgstr "Комплетан INSERT (са именима поља)" -#: libraries/messages.inc.php:168 +#: libraries/messages.inc.php:164 #, php-format msgid "Could not load default configuration from: \"%1$s\"" msgstr "Не могу да учитам подразумевану конфигурацију из: \"%1$s\"" -#: libraries/messages.inc.php:169 main.php:306 +#: libraries/messages.inc.php:165 main.php:306 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: libraries/messages.inc.php:171 pdf_schema.php:672 +#: libraries/messages.inc.php:167 pdf_schema.php:672 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Подесите координате за табелу %s" -#: libraries/messages.inc.php:173 server_status.php:433 +#: libraries/messages.inc.php:169 server_status.php:433 msgid "Connections" msgstr "Конекције" -#: libraries/messages.inc.php:179 tbl_operations.php:509 +#: libraries/messages.inc.php:175 tbl_operations.php:509 msgid "Copy table to (database.table):" msgstr "Копирај табелу у (база.табела):" -#: libraries/messages.inc.php:180 tbl_move_copy.php:58 +#: libraries/messages.inc.php:176 tbl_move_copy.php:58 #, php-format msgid "Table %s has been copied to %s." msgstr "Табела %s је копирана у %s." -#: libraries/messages.inc.php:181 tbl_move_copy.php:48 +#: libraries/messages.inc.php:177 tbl_move_copy.php:48 msgid "Can't copy table to same one!" msgstr "Не могу да копирам табелу у саму себе!" -#: libraries/messages.inc.php:182 server_synchronize.php:94 +#: libraries/messages.inc.php:178 server_synchronize.php:94 msgid "Could not connect to the source" msgstr "" -#: libraries/messages.inc.php:183 server_synchronize.php:97 +#: libraries/messages.inc.php:179 server_synchronize.php:97 msgid "Could not connect to the target" msgstr "" -#: libraries/messages.inc.php:184 server_processlist.php:24 +#: libraries/messages.inc.php:180 server_processlist.php:24 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin није могао да прекине процес %s. Вероватно је већ затворен." -#: libraries/messages.inc.php:187 +#: libraries/messages.inc.php:183 #, php-format msgid "Create an index on %s columns" msgstr "Направи кључ на %s колона" -#: libraries/messages.inc.php:188 tbl_indexes.php:160 +#: libraries/messages.inc.php:184 tbl_indexes.php:160 msgid "Create a new index" msgstr "Направи нови кључ" -#: libraries/messages.inc.php:191 pdf_pages.php:297 pmd_pdf.php:114 +#: libraries/messages.inc.php:187 pdf_pages.php:297 pmd_pdf.php:114 msgid "Create a page" msgstr "Направи нову страну" -#: libraries/messages.inc.php:192 +#: libraries/messages.inc.php:188 msgid "Creation of PDFs" msgstr "Прављење PDF-ova" -#: libraries/messages.inc.php:193 pmd_general.php:74 pmd_general.php:306 +#: libraries/messages.inc.php:189 pmd_general.php:74 pmd_general.php:306 msgid "Create relation" msgstr "Направи релацију" -#: libraries/messages.inc.php:194 pmd_general.php:71 +#: libraries/messages.inc.php:190 pmd_general.php:71 #: server_synchronize.php:429 server_synchronize.php:872 msgid "Create table" msgstr "Направи табелу" -#: libraries/messages.inc.php:195 +#: libraries/messages.inc.php:191 #, fuzzy msgctxt "$strCreateTableShort" msgid "Create table" msgstr "Направи табелу" -#: libraries/messages.inc.php:196 server_privileges.php:1994 +#: libraries/messages.inc.php:192 server_privileges.php:1994 msgid "Database for user" msgstr "База за корисника" -#: libraries/messages.inc.php:197 server_privileges.php:1999 +#: libraries/messages.inc.php:193 server_privileges.php:1999 msgid "Create database with same name and grant all privileges" msgstr "Направи базу са истим именом и додај све привилегије" -#: libraries/messages.inc.php:198 +#: libraries/messages.inc.php:194 #, fuzzy msgctxt "$strCreateUserDatabaseNone" msgid "None" msgstr "нема" -#: libraries/messages.inc.php:199 server_privileges.php:2003 +#: libraries/messages.inc.php:195 server_privileges.php:2003 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "Провери привилегије за базу "%s"." -#: libraries/messages.inc.php:200 server_privileges.php:2000 +#: libraries/messages.inc.php:196 server_privileges.php:2000 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Дај све привилегије на имену са џокерима (корисничко_име\\_%)" -#: libraries/messages.inc.php:201 +#: libraries/messages.inc.php:197 msgid "Creation/Update/Check dates" msgstr "Датуми креирања/ажурирања/провере" -#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:229 +#: libraries/messages.inc.php:199 libraries/mysql_charsets.lib.php:229 msgid "Croatian" msgstr "Хрватски" -#: libraries/messages.inc.php:204 +#: libraries/messages.inc.php:200 msgid "CSV" msgstr "CSV" -#: libraries/messages.inc.php:205 libraries/server_synchronize.lib.php:1343 +#: libraries/messages.inc.php:201 libraries/server_synchronize.lib.php:1343 #: libraries/server_synchronize.lib.php:1369 msgid "Current server" msgstr "" -#: libraries/messages.inc.php:206 main.php:159 +#: libraries/messages.inc.php:202 main.php:159 msgid "Custom color" msgstr "" -#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:365 +#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:365 msgid "Cyrillic" msgstr "Ћирилични" -#: libraries/messages.inc.php:208 libraries/mysql_charsets.lib.php:232 +#: libraries/messages.inc.php:204 libraries/mysql_charsets.lib.php:232 msgid "Czech" msgstr "Чешки" -#: libraries/messages.inc.php:209 libraries/mysql_charsets.lib.php:383 +#: libraries/messages.inc.php:205 libraries/mysql_charsets.lib.php:383 msgid "Czech-Slovak" msgstr "Чешко-словачки" -#: libraries/messages.inc.php:211 libraries/mysql_charsets.lib.php:235 +#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:235 msgid "Danish" msgstr "Дански" -#: libraries/messages.inc.php:214 +#: libraries/messages.inc.php:210 msgid "Database export options" msgstr "Опције за извоз базе" -#: libraries/messages.inc.php:217 server_synchronize.php:122 +#: libraries/messages.inc.php:213 server_synchronize.php:122 #: server_synchronize.php:125 tbl_create.php:82 tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "" -#: libraries/messages.inc.php:219 server_databases.php:63 +#: libraries/messages.inc.php:215 server_databases.php:63 #, php-format msgid "%s databases have been dropped successfully." msgstr "%s база је успешно одбачено." -#: libraries/messages.inc.php:220 libraries/server_synchronize.lib.php:1341 +#: libraries/messages.inc.php:216 libraries/server_synchronize.lib.php:1341 #: server_synchronize.php:1110 #, fuzzy msgid "Source database" msgstr "Претраживање базе" -#: libraries/messages.inc.php:221 server_databases.php:88 +#: libraries/messages.inc.php:217 server_databases.php:88 msgid "Databases statistics" msgstr "Статистика базе" -#: libraries/messages.inc.php:222 server_databases.php:362 +#: libraries/messages.inc.php:218 server_databases.php:362 #: server_databases.php:363 msgid "Disable Statistics" msgstr "Искључи статистике" -#: libraries/messages.inc.php:223 server_databases.php:358 +#: libraries/messages.inc.php:219 server_databases.php:358 #: server_databases.php:359 msgid "Enable Statistics" msgstr "Укључи статистике" -#: libraries/messages.inc.php:224 server_databases.php:366 +#: libraries/messages.inc.php:220 server_databases.php:366 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -3578,32 +3578,32 @@ msgstr "" "Напомена: укључивање статистика може проузроковати велики саобраћај између " "веб и MySQL сервера." -#: libraries/messages.inc.php:225 libraries/server_synchronize.lib.php:1367 +#: libraries/messages.inc.php:221 libraries/server_synchronize.lib.php:1367 #: server_synchronize.php:1112 #, fuzzy msgid "Target database" msgstr "Претраживање базе" -#: libraries/messages.inc.php:228 server_synchronize.php:425 +#: libraries/messages.inc.php:224 server_synchronize.php:425 #: server_synchronize.php:868 #, fuzzy msgid "Data Difference" msgstr "Структура за поглед (view)" -#: libraries/messages.inc.php:231 server_synchronize.php:272 +#: libraries/messages.inc.php:227 server_synchronize.php:272 msgid "Data Synchronization" msgstr "" -#: libraries/messages.inc.php:235 server_privileges.php:526 +#: libraries/messages.inc.php:231 server_privileges.php:526 #: server_privileges.php:1679 msgid "Database-specific privileges" msgstr "Привилегије везане за базу" -#: libraries/messages.inc.php:237 server_privileges.php:2136 +#: libraries/messages.inc.php:233 server_privileges.php:2136 msgid "database-specific" msgstr "Специфично за базу" -#: libraries/messages.inc.php:240 libraries/tbl_properties.inc.php:106 +#: libraries/messages.inc.php:236 libraries/tbl_properties.inc.php:106 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" @@ -3611,32 +3611,32 @@ msgstr "" "За подразумевану вредност, унесите само једну вредност, без косих црта или " "наводника у овом облику: а" -#: libraries/messages.inc.php:241 tbl_operations.php:589 +#: libraries/messages.inc.php:237 tbl_operations.php:589 msgid "Defragment table" msgstr "Дефрагментирај табелу" -#: libraries/messages.inc.php:242 +#: libraries/messages.inc.php:238 msgid "Use delayed inserts" msgstr "Користи одложена уметања" -#: libraries/messages.inc.php:245 server_privileges.php:1243 +#: libraries/messages.inc.php:241 server_privileges.php:1243 msgid "No users selected for deleting!" msgstr "Ниједан корисник није одабран за брисање!" -#: libraries/messages.inc.php:246 pmd_general.php:372 +#: libraries/messages.inc.php:242 pmd_general.php:372 msgid "Delete relation" msgstr "Обриши релацију" -#: libraries/messages.inc.php:248 server_privileges.php:1232 +#: libraries/messages.inc.php:244 server_privileges.php:1232 #, php-format msgid "Deleting %s" msgstr "Бришем %s" -#: libraries/messages.inc.php:249 libraries/sql_query_form.lib.php:388 +#: libraries/messages.inc.php:245 libraries/sql_query_form.lib.php:388 msgid "Delimiter" msgstr "Граничник" -#: libraries/messages.inc.php:250 pdf_pages.php:506 +#: libraries/messages.inc.php:246 pdf_pages.php:506 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -3644,7 +3644,7 @@ msgstr "" "Тренутна страна има референце на табеле које више не постоје. Желите ли да " "обришете те референце?" -#: libraries/messages.inc.php:254 pmd_help.php:29 +#: libraries/messages.inc.php:250 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 " @@ -3654,142 +3654,142 @@ msgstr "" "поље за приказ, кликните на икону „Изабери поље за приказ“, а потом на назив " "одговарајућег поља." -#: libraries/messages.inc.php:256 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:252 libraries/mysql_charsets.lib.php:247 msgid "dictionary" msgstr "речник" -#: libraries/messages.inc.php:257 libraries/server_synchronize.lib.php:1348 +#: libraries/messages.inc.php:253 libraries/server_synchronize.lib.php:1348 msgid "Difference" msgstr "" -#: libraries/messages.inc.php:258 pmd_general.php:87 +#: libraries/messages.inc.php:254 pmd_general.php:87 msgid "Direct links" msgstr "Директне везе" -#: libraries/messages.inc.php:261 +#: libraries/messages.inc.php:257 msgid "Disable foreign key checks" msgstr "Искључи провере страних кључева" -#: libraries/messages.inc.php:262 +#: libraries/messages.inc.php:258 msgid "Display Features" msgstr "Прикажи особине" -#: libraries/messages.inc.php:263 tbl_select.php:301 +#: libraries/messages.inc.php:259 tbl_select.php:301 msgid "Display order:" msgstr "Редослед приказа:" -#: libraries/messages.inc.php:265 tbl_select.php:132 +#: libraries/messages.inc.php:261 tbl_select.php:132 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Направи \"упит по примеру\" (џокер: \"%\")" -#: libraries/messages.inc.php:266 +#: libraries/messages.inc.php:262 msgid "DocSQL" msgstr "DocSQL" -#: libraries/messages.inc.php:268 +#: libraries/messages.inc.php:264 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/messages.inc.php:273 server_privileges.php:1579 +#: libraries/messages.inc.php:269 server_privileges.php:1579 #: server_privileges.php:1580 server_privileges.php:1581 msgid "Drop the databases that have the same names as the users." msgstr "Одбаци базе које се зову исто као корисници." -#: libraries/messages.inc.php:278 tbl_printview.php:382 tbl_structure.php:743 +#: libraries/messages.inc.php:274 tbl_printview.php:382 tbl_structure.php:743 msgid "dynamic" msgstr "динамички" -#: libraries/messages.inc.php:282 server_privileges.php:1324 +#: libraries/messages.inc.php:278 server_privileges.php:1324 #: server_privileges.php:1610 msgid "Edit Privileges" msgstr "Промени привилегије" -#: libraries/messages.inc.php:283 tbl_printview.php:341 tbl_structure.php:688 +#: libraries/messages.inc.php:279 tbl_printview.php:341 tbl_structure.php:688 msgid "Effective" msgstr "Ефективне" -#: libraries/messages.inc.php:286 libraries/relation.lib.php:100 +#: libraries/messages.inc.php:282 libraries/relation.lib.php:100 msgid "Enabled" msgstr "Омогућено" -#: libraries/messages.inc.php:287 +#: libraries/messages.inc.php:283 msgid "Enclose export in a transaction" msgstr "Обави извоз у трансакцији" -#: libraries/messages.inc.php:288 libraries/sqlparser.lib.php:177 +#: libraries/messages.inc.php:284 libraries/sqlparser.lib.php:177 msgid "END CUT" msgstr "КРАЈ РЕЗ" -#: libraries/messages.inc.php:290 libraries/sqlparser.lib.php:183 +#: libraries/messages.inc.php:286 libraries/sqlparser.lib.php:183 msgid "END RAW" msgstr "КРАЈ СИРОВО" -#: libraries/messages.inc.php:293 libraries/server_links.inc.php:61 +#: libraries/messages.inc.php:289 libraries/server_links.inc.php:61 #: test/theme.php:113 msgid "Engines" msgstr "Складиштења" -#: libraries/messages.inc.php:295 libraries/mysql_charsets.lib.php:238 +#: libraries/messages.inc.php:291 libraries/mysql_charsets.lib.php:238 msgid "English" msgstr "Енглески" -#: libraries/messages.inc.php:296 server_privileges.php:393 +#: libraries/messages.inc.php:292 server_privileges.php:393 #: server_privileges.php:535 server_privileges.php:1501 msgid " Note: MySQL privilege names are expressed in English " msgstr " Напомена: MySQL имена привилегија морају да буду на енглеском " -#: libraries/messages.inc.php:298 libraries/zip_extension.lib.php:49 +#: libraries/messages.inc.php:294 libraries/zip_extension.lib.php:49 #: libraries/zip_extension.lib.php:51 libraries/zip_extension.lib.php:66 msgid "Error in ZIP archive:" msgstr "Грешка у ZIP архиви:" -#: libraries/messages.inc.php:303 libraries/mysql_charsets.lib.php:241 +#: libraries/messages.inc.php:299 libraries/mysql_charsets.lib.php:241 msgid "Esperanto" msgstr "Есперанто" -#: libraries/messages.inc.php:304 libraries/mysql_charsets.lib.php:244 +#: libraries/messages.inc.php:300 libraries/mysql_charsets.lib.php:244 msgid "Estonian" msgstr "Естонски" -#: libraries/messages.inc.php:305 libraries/tbl_triggers.lib.php:29 +#: libraries/messages.inc.php:301 libraries/tbl_triggers.lib.php:29 msgid "Event" msgstr "Догађаји" -#: libraries/messages.inc.php:307 +#: libraries/messages.inc.php:303 msgid "Excel edition" msgstr "Excel издање" -#: libraries/messages.inc.php:311 pmd_pdf.php:85 +#: libraries/messages.inc.php:307 pmd_pdf.php:85 msgid "Export/Import to scale" msgstr "Извор/увоз у размери" -#: libraries/messages.inc.php:313 +#: libraries/messages.inc.php:309 msgid "Extended inserts" msgstr "Проширени INSERT" -#: libraries/messages.inc.php:314 pdf_schema.php:1267 pdf_schema.php:1288 +#: libraries/messages.inc.php:310 pdf_schema.php:1267 pdf_schema.php:1288 #: tbl_printview.php:147 tbl_structure.php:183 tbl_tracking.php:278 msgid "Extra" msgstr "Додатно" -#: libraries/messages.inc.php:316 server_status.php:447 +#: libraries/messages.inc.php:312 server_status.php:447 msgid "Failed attempts" msgstr "Неуспелих покушаја" -#: libraries/messages.inc.php:318 tbl_structure.php:375 +#: libraries/messages.inc.php:314 tbl_structure.php:375 #, php-format msgid "Field %s has been dropped" msgstr "Поље %s је обрисано" -#: libraries/messages.inc.php:322 libraries/sql_query_form.lib.php:317 +#: libraries/messages.inc.php:318 libraries/sql_query_form.lib.php:317 msgid "Fields" msgstr "Поља" -#: libraries/messages.inc.php:332 server_binlog.php:136 +#: libraries/messages.inc.php:328 server_binlog.php:136 msgid "Files" msgstr "Датотеке" -#: libraries/messages.inc.php:334 server_privileges.php:1597 +#: libraries/messages.inc.php:330 server_privileges.php:1597 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -3802,219 +3802,219 @@ msgstr "" "сервер користи ако су вршене ручне измене. У том случају %sпоново учитајте " "привилегије%s пре него што наставите." -#: libraries/messages.inc.php:335 server_status.php:289 +#: libraries/messages.inc.php:331 server_status.php:289 msgid "Flush query cache" msgstr "Очисти кеш упита" -#: libraries/messages.inc.php:336 +#: libraries/messages.inc.php:332 msgid "Flush the table (\"FLUSH\")" msgstr "Освежи табелу (\"FLUSH\")" -#: libraries/messages.inc.php:337 server_status.php:271 +#: libraries/messages.inc.php:333 server_status.php:271 msgid "Flush (close) all tables" msgstr "Очисти (затвори) све табеле" -#: libraries/messages.inc.php:339 tbl_relation.php:279 +#: libraries/messages.inc.php:335 tbl_relation.php:279 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" -#: libraries/messages.inc.php:341 setup/lib/messages.inc.php:88 +#: libraries/messages.inc.php:337 setup/lib/messages.inc.php:88 #: tbl_printview.php:376 tbl_structure.php:738 msgid "Format" msgstr "Формат" -#: libraries/messages.inc.php:344 server_replication.php:325 +#: libraries/messages.inc.php:340 server_replication.php:325 #, fuzzy msgid "Full start" msgstr "Текст кључ" -#: libraries/messages.inc.php:345 server_replication.php:325 +#: libraries/messages.inc.php:341 server_replication.php:325 #, fuzzy msgid "Full stop" msgstr "Текст кључ" -#: libraries/messages.inc.php:347 tbl_change.php:282 tbl_change.php:320 +#: libraries/messages.inc.php:343 tbl_change.php:282 tbl_change.php:320 msgid "Function" msgstr "Функција" -#: libraries/messages.inc.php:355 libraries/mysql_charsets.lib.php:377 +#: libraries/messages.inc.php:351 libraries/mysql_charsets.lib.php:377 msgid "Georgian" msgstr "Грузијски" -#: libraries/messages.inc.php:356 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:352 libraries/mysql_charsets.lib.php:247 #: libraries/mysql_charsets.lib.php:250 msgid "German" msgstr "Немачки" -#: libraries/messages.inc.php:357 themes.php:42 +#: libraries/messages.inc.php:353 themes.php:42 msgid "Get more themes!" msgstr "" -#: libraries/messages.inc.php:358 server_privileges.php:2134 +#: libraries/messages.inc.php:354 server_privileges.php:2134 msgid "global" msgstr "глобално" -#: libraries/messages.inc.php:359 server_privileges.php:524 +#: libraries/messages.inc.php:355 server_privileges.php:524 #: server_privileges.php:1500 msgid "Global privileges" msgstr "Глобалне привилегије" -#: libraries/messages.inc.php:360 server_variables.php:55 +#: libraries/messages.inc.php:356 server_variables.php:55 #: server_variables.php:89 msgid "Global value" msgstr "Глобална вредност" -#: libraries/messages.inc.php:365 server_privileges.php:1502 +#: libraries/messages.inc.php:361 server_privileges.php:1502 #: server_privileges.php:1684 server_privileges.php:2033 msgid "Grant" msgstr "Омогући" -#: libraries/messages.inc.php:366 libraries/mysql_charsets.lib.php:380 +#: libraries/messages.inc.php:362 libraries/mysql_charsets.lib.php:380 msgid "Greek" msgstr "Грчки" -#: libraries/messages.inc.php:367 +#: libraries/messages.inc.php:363 msgid "\"gzipped\"" msgstr "\"гзип-овано\"" -#: libraries/messages.inc.php:369 server_status.php:250 +#: libraries/messages.inc.php:365 server_status.php:250 msgid "Handler" msgstr "Руковалац" -#: libraries/messages.inc.php:370 server_synchronize.php:464 +#: libraries/messages.inc.php:366 server_synchronize.php:464 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: libraries/messages.inc.php:372 libraries/mysql_charsets.lib.php:374 +#: libraries/messages.inc.php:368 libraries/mysql_charsets.lib.php:374 msgid "Hebrew" msgstr "Хебрејски" -#: libraries/messages.inc.php:373 pmd_general.php:83 +#: libraries/messages.inc.php:369 pmd_general.php:83 msgid "Help" msgstr "Помоћ" -#: libraries/messages.inc.php:374 +#: libraries/messages.inc.php:370 msgid "Use hexadecimal for BLOB" msgstr "Користи хексадецимално за BLOB" -#: libraries/messages.inc.php:376 pmd_general.php:120 +#: libraries/messages.inc.php:372 pmd_general.php:120 msgid "Hide/Show all" msgstr "Сакриј/прикажи све" -#: libraries/messages.inc.php:377 pmd_general.php:124 +#: libraries/messages.inc.php:373 pmd_general.php:124 msgid "Hide/Show Tables with no relation" msgstr "Сакриј/прикажи табеле без релација" -#: libraries/messages.inc.php:378 libraries/navigation_header.inc.php:54 +#: libraries/messages.inc.php:374 libraries/navigation_header.inc.php:54 #: libraries/navigation_header.inc.php:57 #: libraries/navigation_header.inc.php:58 msgid "Home" msgstr "Почетна страна" -#: libraries/messages.inc.php:379 main.php:233 +#: libraries/messages.inc.php:375 main.php:233 msgid "Official Homepage" msgstr "phpMyAdmin веб сајт" -#: libraries/messages.inc.php:382 libraries/replication_gui.lib.php:327 +#: libraries/messages.inc.php:378 libraries/replication_gui.lib.php:327 #: server_privileges.php:753 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/messages.inc.php:383 +#: libraries/messages.inc.php:379 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/messages.inc.php:384 libraries/mysql_charsets.lib.php:253 +#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:253 msgid "Hungarian" msgstr "Мађарски" -#: libraries/messages.inc.php:386 libraries/mysql_charsets.lib.php:256 +#: libraries/messages.inc.php:382 libraries/mysql_charsets.lib.php:256 msgid "Icelandic" msgstr "Исландски" -#: libraries/messages.inc.php:387 server_processlist.php:53 +#: libraries/messages.inc.php:383 server_processlist.php:53 msgid "ID" msgstr "ID" -#: libraries/messages.inc.php:388 libraries/mult_submits.inc.php:108 +#: libraries/messages.inc.php:384 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:479 msgid "Fulltext" msgstr "Текст кључ" -#: libraries/messages.inc.php:389 +#: libraries/messages.inc.php:385 msgid "Ignore duplicate rows" msgstr "Игнориши дуплициране редове" -#: libraries/messages.inc.php:390 tbl_change.php:302 tbl_indexes.php:200 +#: libraries/messages.inc.php:386 tbl_change.php:302 tbl_indexes.php:200 #: tbl_indexes.php:225 msgid "Ignore" msgstr "Игнориши" -#: libraries/messages.inc.php:391 +#: libraries/messages.inc.php:387 msgid "Use ignore inserts" msgstr "Игнориши дупликате при уметању" -#: libraries/messages.inc.php:392 +#: libraries/messages.inc.php:388 msgid "Column names in first row" msgstr "" -#: libraries/messages.inc.php:393 +#: libraries/messages.inc.php:389 msgid "Do not import empty rows" msgstr "" -#: libraries/messages.inc.php:394 pmd_general.php:104 +#: libraries/messages.inc.php:390 pmd_general.php:104 msgid "Import/Export coordinates for PDF schema" msgstr "Извоз/увоз координата за PDF схему" -#: libraries/messages.inc.php:395 querywindow.php:104 +#: libraries/messages.inc.php:391 querywindow.php:104 msgid "Import files" msgstr "Увоз датотека" -#: libraries/messages.inc.php:403 +#: libraries/messages.inc.php:399 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/messages.inc.php:404 libraries/messages.inc.php:584 +#: libraries/messages.inc.php:400 libraries/messages.inc.php:580 msgid "Open Document Spreadsheet" msgstr "Open Document Spreadsheet" -#: libraries/messages.inc.php:405 +#: libraries/messages.inc.php:401 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/messages.inc.php:409 +#: libraries/messages.inc.php:405 msgid "Excel 97-2003 XLS Workbook" msgstr "" -#: libraries/messages.inc.php:410 +#: libraries/messages.inc.php:406 msgid "Excel 2007 XLSX Workbook" msgstr "" -#: libraries/messages.inc.php:414 libraries/mult_submits.inc.php:98 +#: libraries/messages.inc.php:410 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:476 tbl_structure.php:674 msgid "Index" msgstr "Кључ" -#: libraries/messages.inc.php:415 tbl_indexes.php:168 +#: libraries/messages.inc.php:411 tbl_indexes.php:168 msgid "Index name:" msgstr "Име кључа :" -#: libraries/messages.inc.php:416 tbl_indexes.php:174 +#: libraries/messages.inc.php:412 tbl_indexes.php:174 msgid "Index type:" msgstr "Тип кључа :" -#: libraries/messages.inc.php:417 sql.php:639 +#: libraries/messages.inc.php:413 sql.php:639 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Проблем при индексирању табеле `%s`" -#: libraries/messages.inc.php:427 main.php:266 +#: libraries/messages.inc.php:423 main.php:266 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -4026,163 +4026,163 @@ msgstr "" "овим подешавањима, отворен је за упаде, и заиста треба да исправите овај " "сигурносни ризик." -#: libraries/messages.inc.php:428 tbl_change.php:1130 +#: libraries/messages.inc.php:424 tbl_change.php:1130 msgid "Insert as new row" msgstr "Унеси као нови ред" -#: libraries/messages.inc.php:429 sql.php:496 tbl_replace.php:386 +#: libraries/messages.inc.php:425 sql.php:496 tbl_replace.php:386 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: libraries/messages.inc.php:430 tbl_change.php:1131 +#: libraries/messages.inc.php:426 tbl_change.php:1131 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/messages.inc.php:432 main.php:139 +#: libraries/messages.inc.php:428 main.php:139 msgid "Interface" msgstr "" -#: libraries/messages.inc.php:433 tbl_relation.php:407 +#: libraries/messages.inc.php:429 tbl_relation.php:407 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: libraries/messages.inc.php:435 pdf_pages.php:303 +#: libraries/messages.inc.php:431 pdf_pages.php:303 msgid "Internal relations" msgstr "Унутрашње релације" -#: libraries/messages.inc.php:438 tbl_indexes.php:256 tbl_structure.php:590 +#: libraries/messages.inc.php:434 tbl_indexes.php:256 tbl_structure.php:590 #: tbl_structure.php:601 msgid "Column count has to be larger than zero." msgstr "Број колона мора бити већи од нуле." -#: libraries/messages.inc.php:444 libraries/tbl_properties.inc.php:784 +#: libraries/messages.inc.php:440 libraries/tbl_properties.inc.php:784 #: tbl_structure.php:537 msgid "You have to add at least one field." msgstr "Морате додати барем једно поље." -#: libraries/messages.inc.php:449 +#: libraries/messages.inc.php:445 #, php-format msgid "Invalid server index: \"%s\"" msgstr "Неисправан индекс сервера: \"%s\"" -#: libraries/messages.inc.php:452 libraries/mysql_charsets.lib.php:259 +#: libraries/messages.inc.php:448 libraries/mysql_charsets.lib.php:259 #: libraries/mysql_charsets.lib.php:349 msgid "Japanese" msgstr "Јапански" -#: libraries/messages.inc.php:453 main.php:331 +#: libraries/messages.inc.php:449 main.php:331 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: libraries/messages.inc.php:454 server_status.php:257 +#: libraries/messages.inc.php:450 server_status.php:257 msgid "Joins" msgstr "Спојеви" -#: libraries/messages.inc.php:457 server_privileges.php:763 +#: libraries/messages.inc.php:453 server_privileges.php:763 msgid "Do not change the password" msgstr "Немој да мењаш лозинку" -#: libraries/messages.inc.php:458 server_status.php:256 +#: libraries/messages.inc.php:454 server_status.php:256 msgid "Key cache" msgstr "Кеш кључева" -#: libraries/messages.inc.php:462 libraries/mysql_charsets.lib.php:268 +#: libraries/messages.inc.php:458 libraries/mysql_charsets.lib.php:268 #: libraries/mysql_charsets.lib.php:371 msgid "Korean" msgstr "Корејски" -#: libraries/messages.inc.php:466 libraries/select_lang.lib.php:480 +#: libraries/messages.inc.php:462 libraries/select_lang.lib.php:480 #: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492 #, php-format msgid "Unknown language: %1$s." msgstr "Непознат језик: %1$s." -#: libraries/messages.inc.php:468 +#: libraries/messages.inc.php:464 msgid "Table caption" msgstr "Коментар табеле" -#: libraries/messages.inc.php:469 +#: libraries/messages.inc.php:465 msgid "Content of table __TABLE__" msgstr "Садржај табеле __TABLE__" -#: libraries/messages.inc.php:470 +#: libraries/messages.inc.php:466 msgid "Continued table caption" msgstr "Настављен коментар табеле" -#: libraries/messages.inc.php:471 +#: libraries/messages.inc.php:467 msgid "(continued)" msgstr "(настављено)" -#: libraries/messages.inc.php:472 +#: libraries/messages.inc.php:468 msgid "Include table caption" msgstr "Укључи коментар табеле" -#: libraries/messages.inc.php:473 +#: libraries/messages.inc.php:469 msgid "Label key" msgstr "Ознака кључа" -#: libraries/messages.inc.php:474 +#: libraries/messages.inc.php:470 msgid "LaTeX" msgstr "LaTeX" -#: libraries/messages.inc.php:475 +#: libraries/messages.inc.php:471 msgid "Structure of table __TABLE__" msgstr "Структура табеле __TABLE__" -#: libraries/messages.inc.php:476 libraries/mysql_charsets.lib.php:262 +#: libraries/messages.inc.php:472 libraries/mysql_charsets.lib.php:262 msgid "Latvian" msgstr "Летонски" -#: libraries/messages.inc.php:477 +#: libraries/messages.inc.php:473 msgid "CSV using LOAD DATA" msgstr "CSV користећи LOAD DATA" -#: libraries/messages.inc.php:478 +#: libraries/messages.inc.php:474 msgid "Use LOCAL keyword" msgstr "Користи кључну реч LOCAL" -#: libraries/messages.inc.php:479 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:475 libraries/tbl_properties.inc.php:105 msgid "Length/Values" msgstr "Дужина/Вредност*" -#: libraries/messages.inc.php:480 tbl_select.php:295 +#: libraries/messages.inc.php:476 tbl_select.php:295 msgid "Number of rows per page" msgstr "Број редова по страни" -#: libraries/messages.inc.php:484 libraries/mysql_charsets.lib.php:265 +#: libraries/messages.inc.php:480 libraries/mysql_charsets.lib.php:265 msgid "Lithuanian" msgstr "Литвански" -#: libraries/messages.inc.php:485 libraries/replication_gui.lib.php:302 +#: libraries/messages.inc.php:481 libraries/replication_gui.lib.php:302 #: server_privileges.php:729 msgid "Local" msgstr "Локални" -#: libraries/messages.inc.php:487 server_privileges.php:669 +#: libraries/messages.inc.php:483 server_privileges.php:669 msgid "Login Information" msgstr "Подаци о пријави" -#: libraries/messages.inc.php:490 libraries/navigation_header.inc.php:67 +#: libraries/messages.inc.php:486 libraries/navigation_header.inc.php:67 #: libraries/navigation_header.inc.php:70 #: libraries/navigation_header.inc.php:71 main.php:99 msgid "Log out" msgstr "Одјављивање" -#: libraries/messages.inc.php:497 server_status.php:440 +#: libraries/messages.inc.php:493 server_status.php:440 msgid "max. concurrent connections" msgstr "макс. истовремених веза" -#: libraries/messages.inc.php:498 +#: libraries/messages.inc.php:494 msgid "Maximal length of created query" msgstr "Максимална дужина направљеног упита" -#: libraries/messages.inc.php:500 main.php:282 +#: libraries/messages.inc.php:496 main.php:282 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -4192,7 +4192,7 @@ msgstr "" "скуп знакова. Без екстензије mbstring phpMyAdmin не може исправно да " "раздваја стрингове и то може довести до неочекиваних резултата." -#: libraries/messages.inc.php:501 main.php:274 +#: libraries/messages.inc.php:497 main.php:274 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -4201,24 +4201,24 @@ msgstr "" "У PHP подешавањима Вам је укључена mbstring.func_overload опција. Ова опција " "је некомпатибилна са phpMyAdmin и може довести до грешака у неким подацима!" -#: libraries/messages.inc.php:502 +#: libraries/messages.inc.php:498 msgid "MediaWiki Table" msgstr "" -#: libraries/messages.inc.php:503 transformation_overview.php:25 +#: libraries/messages.inc.php:499 transformation_overview.php:25 msgid "Available MIME types" msgstr "Доступни MIME-типови" -#: libraries/messages.inc.php:504 transformation_overview.php:43 +#: libraries/messages.inc.php:500 transformation_overview.php:43 msgid "Available transformations" msgstr "Доступне трансформације" -#: libraries/messages.inc.php:505 +#: libraries/messages.inc.php:501 msgctxt "$strMIME_description" msgid "Description" msgstr "Опис" -#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:580 +#: libraries/messages.inc.php:503 libraries/tbl_properties.inc.php:580 #: transformation_overview.php:60 #, php-format msgid "" @@ -4227,7 +4227,7 @@ msgid "" msgstr "" "Нема описа за ову трансформацију.
Молимо питајте аутора шта %s ради." -#: libraries/messages.inc.php:509 libraries/tbl_properties.inc.php:137 +#: libraries/messages.inc.php:505 libraries/tbl_properties.inc.php:137 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -4236,7 +4236,7 @@ msgstr "" "За листу доступних опција трансформације и њихове трансформације MIME-" "типова, кликните на %sописе трансформација%s" -#: libraries/messages.inc.php:510 libraries/tbl_properties.inc.php:146 +#: libraries/messages.inc.php:506 libraries/tbl_properties.inc.php:146 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -4248,57 +4248,57 @@ msgstr "" "апостроф (\"'\") у те вредности, ставите обрнуту косу црту испред њих (на " "пример '\\\\xyz' или 'a\\'b')." -#: libraries/messages.inc.php:511 libraries/tbl_properties.inc.php:145 +#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:145 msgid "Transformation options" msgstr "Опције трансформације" -#: libraries/messages.inc.php:513 transformation_overview.php:38 +#: libraries/messages.inc.php:509 transformation_overview.php:38 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "" "MIME-типови приказани у курзиву немају одвојене функције трансформације." -#: libraries/messages.inc.php:515 tbl_indexes.php:162 +#: libraries/messages.inc.php:511 tbl_indexes.php:162 msgid "Modify an index" msgstr "Измени кључ" -#: libraries/messages.inc.php:517 pmd_general.php:108 +#: libraries/messages.inc.php:513 pmd_general.php:108 msgid "Move Menu" msgstr "Премести мени" -#: libraries/messages.inc.php:518 tbl_operations.php:276 +#: libraries/messages.inc.php:514 tbl_operations.php:276 msgid "Move table to (database.table):" msgstr "Помери табелу у (база.табела):" -#: libraries/messages.inc.php:519 tbl_move_copy.php:56 +#: libraries/messages.inc.php:515 tbl_move_copy.php:56 #, php-format msgid "Table %s has been moved to %s." msgstr "Табела %s је померена у %s." -#: libraries/messages.inc.php:520 tbl_move_copy.php:46 +#: libraries/messages.inc.php:516 tbl_move_copy.php:46 msgid "Can't move table to same one!" msgstr "Не могу да преместим табелу у саму себе!" -#: libraries/messages.inc.php:521 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:517 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 #: libraries/mysql_charsets.lib.php:332 libraries/mysql_charsets.lib.php:354 #: libraries/mysql_charsets.lib.php:365 msgid "multilingual" msgstr "вишејезички" -#: libraries/messages.inc.php:534 main.php:193 +#: libraries/messages.inc.php:530 main.php:193 msgid "MySQL charset" msgstr "MySQL сет карактера" -#: libraries/messages.inc.php:535 main.php:211 +#: libraries/messages.inc.php:531 main.php:211 msgid "MySQL client version" msgstr "Верзија MySQL клијента" -#: libraries/messages.inc.php:536 main.php:125 +#: libraries/messages.inc.php:532 main.php:125 msgid "MySQL connection collation" msgstr "Сортирање за MySQL везу" -#: libraries/messages.inc.php:537 main.php:346 +#: libraries/messages.inc.php:533 main.php:346 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -4307,55 +4307,55 @@ msgstr "" "Верзија ваше PHP MySQL библиотеке %s се разликује од верзије вашег MySQL " "сервера %s. Ово може довести до непредвидљивог понашања." -#: libraries/messages.inc.php:539 server_status.php:294 +#: libraries/messages.inc.php:535 server_status.php:294 msgid "Show processes" msgstr "Прикажи листу процеса" -#: libraries/messages.inc.php:545 navigation.php:210 server_databases.php:371 +#: libraries/messages.inc.php:541 navigation.php:210 server_databases.php:371 #: server_synchronize.php:1191 msgid "No databases" msgstr "База не постоји" -#: libraries/messages.inc.php:546 server_databases.php:52 +#: libraries/messages.inc.php:542 server_databases.php:52 msgid "No databases selected." msgstr "Није изабрана ни једна база." -#: libraries/messages.inc.php:548 libraries/relation.lib.php:1173 +#: libraries/messages.inc.php:544 libraries/relation.lib.php:1173 msgid "no description" msgstr "нема описа" -#: libraries/messages.inc.php:552 libraries/zip_extension.lib.php:26 +#: libraries/messages.inc.php:548 libraries/zip_extension.lib.php:26 msgid "No files found inside ZIP archive!" msgstr "У ZIP архиви нема датотека!" -#: libraries/messages.inc.php:555 tbl_indexes.php:91 +#: libraries/messages.inc.php:551 tbl_indexes.php:91 msgid "No index parts defined!" msgstr "Делови кључа нису дефинисани!" -#: libraries/messages.inc.php:556 libraries/mult_submits.inc.php:435 +#: libraries/messages.inc.php:552 libraries/mult_submits.inc.php:435 #: tbl_replace.php:331 msgid "No change" msgstr "Нема измена" -#: libraries/messages.inc.php:557 +#: libraries/messages.inc.php:553 #, fuzzy msgctxt "$strNoneDefault" msgid "None" msgstr "нема" -#: libraries/messages.inc.php:560 libraries/plugin_interface.lib.php:312 +#: libraries/messages.inc.php:556 libraries/plugin_interface.lib.php:312 msgid "This format has no options" msgstr "Не постоје опције за овај формат" -#: libraries/messages.inc.php:565 user_password.php:54 +#: libraries/messages.inc.php:561 user_password.php:54 msgid "You don't have sufficient privileges to be here right now!" msgstr "Није Вам дозвољено да будете овде!" -#: libraries/messages.inc.php:566 tbl_row_action.php:29 +#: libraries/messages.inc.php:562 tbl_row_action.php:29 msgid "No rows selected" msgstr "Нема одабраних редова" -#: libraries/messages.inc.php:569 themes.php:32 +#: libraries/messages.inc.php:565 themes.php:32 #, php-format msgid "" "No themes support; please check your configuration and/or your themes in " @@ -4364,294 +4364,294 @@ msgstr "" "Нема подршке за теме, молимо проверите конфигурацију и/или теме у " "директоријуму %s." -#: libraries/messages.inc.php:571 libraries/relation.lib.php:95 +#: libraries/messages.inc.php:567 libraries/relation.lib.php:95 msgid "not OK" msgstr "није у реду" -#: libraries/messages.inc.php:572 server_synchronize.php:400 +#: libraries/messages.inc.php:568 server_synchronize.php:400 #: server_synchronize.php:839 msgid "not present" msgstr "" -#: libraries/messages.inc.php:573 pdf_pages.php:36 pdf_pages.php:42 +#: libraries/messages.inc.php:569 pdf_pages.php:36 pdf_pages.php:42 #: pdf_pages.php:48 pdf_pages.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "%s табела није пронађена или није постављена у %s" -#: libraries/messages.inc.php:574 server_privileges.php:804 +#: libraries/messages.inc.php:570 server_privileges.php:804 #: server_privileges.php:2166 msgid "No user(s) found." msgstr "Корисник није нађен." -#: libraries/messages.inc.php:578 pmd_general.php:164 +#: libraries/messages.inc.php:574 pmd_general.php:164 msgid "Number of tables" msgstr "Број табела" -#: libraries/messages.inc.php:581 server_databases.php:117 +#: libraries/messages.inc.php:577 server_databases.php:117 #: server_status.php:260 setup/lib/messages.inc.php:117 msgid "Tables" msgstr "Табеле" -#: libraries/messages.inc.php:583 libraries/relation.lib.php:99 +#: libraries/messages.inc.php:579 libraries/relation.lib.php:99 #: pmd_general.php:340 msgid "OK" msgstr "У реду" -#: libraries/messages.inc.php:585 +#: libraries/messages.inc.php:581 msgid "Open Document Text" msgstr "Open Document Text" -#: libraries/messages.inc.php:588 tbl_select.php:138 +#: libraries/messages.inc.php:584 tbl_select.php:138 msgid "Operator" msgstr "Оператор" -#: libraries/messages.inc.php:589 tbl_operations.php:662 +#: libraries/messages.inc.php:585 tbl_operations.php:662 msgid "Optimize" msgstr "" -#: libraries/messages.inc.php:602 libraries/tbl_properties.inc.php:755 +#: libraries/messages.inc.php:598 libraries/tbl_properties.inc.php:755 msgid "PARTITION definition" msgstr "" -#: libraries/messages.inc.php:603 tbl_structure.php:757 +#: libraries/messages.inc.php:599 tbl_structure.php:757 msgid "partitioned" msgstr "" -#: libraries/messages.inc.php:604 tbl_operations.php:649 +#: libraries/messages.inc.php:600 tbl_operations.php:649 #, fuzzy msgid "Partition maintenance" msgstr "Радње на табели" -#: libraries/messages.inc.php:605 tbl_operations.php:657 +#: libraries/messages.inc.php:601 tbl_operations.php:657 #, php-format msgid "Partition %s" msgstr "" -#: libraries/messages.inc.php:606 server_privileges.php:1212 +#: libraries/messages.inc.php:602 server_privileges.php:1212 #, php-format msgid "The password for %s was changed successfully." msgstr "Лозинка за %s је успешно промењена." -#: libraries/messages.inc.php:635 +#: libraries/messages.inc.php:631 #, php-format msgid "Schema of the \"%s\" database - Page %s" msgstr "Схема базе \"%s\" - Страна %s" -#: libraries/messages.inc.php:636 +#: libraries/messages.inc.php:632 #, php-format msgid "The \"%s\" table doesn't exist!" msgstr "Табела \"%s\" не постоји!" -#: libraries/messages.inc.php:637 pdf_schema.php:1013 +#: libraries/messages.inc.php:633 pdf_schema.php:1013 msgid "No tables" msgstr "Нема табела" -#: libraries/messages.inc.php:638 pmd_pdf.php:63 +#: libraries/messages.inc.php:634 pmd_pdf.php:63 #, fuzzy msgid "Page has been created" msgstr "Табела %s је одбачена" -#: libraries/messages.inc.php:639 pmd_pdf.php:65 +#: libraries/messages.inc.php:635 pmd_pdf.php:65 msgid "Page creation failed" msgstr "" -#: libraries/messages.inc.php:640 +#: libraries/messages.inc.php:636 msgid "PDF" msgstr "PDF" -#: libraries/messages.inc.php:641 +#: libraries/messages.inc.php:637 msgid "(Generates a report containing the data of a single table)" msgstr "(Прави извештај који садржи податке једне табеле)" -#: libraries/messages.inc.php:642 +#: libraries/messages.inc.php:638 msgid "Report title" msgstr "Наслов извештаја" -#: libraries/messages.inc.php:643 server_status.php:389 server_status.php:434 +#: libraries/messages.inc.php:639 server_status.php:389 server_status.php:434 #: server_status.php:497 server_status.php:555 msgid "per hour" msgstr "на сат" -#: libraries/messages.inc.php:644 server_status.php:498 +#: libraries/messages.inc.php:640 server_status.php:498 msgid "per minute" msgstr "у минуту" -#: libraries/messages.inc.php:645 server_status.php:499 +#: libraries/messages.inc.php:641 server_status.php:499 msgid "per second" msgstr "у секунди" -#: libraries/messages.inc.php:646 libraries/mysql_charsets.lib.php:271 +#: libraries/messages.inc.php:642 libraries/mysql_charsets.lib.php:271 msgid "Persian" msgstr "Персијски" -#: libraries/messages.inc.php:647 libraries/mysql_charsets.lib.php:250 +#: libraries/messages.inc.php:643 libraries/mysql_charsets.lib.php:250 msgid "phone book" msgstr "телефонски именик" -#: libraries/messages.inc.php:648 +#: libraries/messages.inc.php:644 msgid "PHP array" msgstr "" -#: libraries/messages.inc.php:650 main.php:213 +#: libraries/messages.inc.php:646 main.php:213 #, fuzzy msgid "PHP extension" msgstr "верзија PHP-a" -#: libraries/messages.inc.php:654 libraries/relation.lib.php:163 +#: libraries/messages.inc.php:650 libraries/relation.lib.php:163 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/messages.inc.php:655 libraries/relation.lib.php:159 +#: libraries/messages.inc.php:651 libraries/relation.lib.php:159 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/messages.inc.php:656 libraries/relation.lib.php:161 +#: libraries/messages.inc.php:652 libraries/relation.lib.php:161 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" -#: libraries/messages.inc.php:657 libraries/relation.lib.php:162 +#: libraries/messages.inc.php:653 libraries/relation.lib.php:162 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/messages.inc.php:658 libraries/relation.lib.php:164 +#: libraries/messages.inc.php:654 libraries/relation.lib.php:164 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/messages.inc.php:661 libraries/mysql_charsets.lib.php:274 +#: libraries/messages.inc.php:657 libraries/mysql_charsets.lib.php:274 msgid "Polish" msgstr "Пољски" -#: libraries/messages.inc.php:662 libraries/replication_gui.lib.php:67 +#: libraries/messages.inc.php:658 libraries/replication_gui.lib.php:67 #: server_synchronize.php:1163 #, fuzzy msgid "Port" msgstr "Сортирање" -#: libraries/messages.inc.php:667 tbl_indexes.php:67 +#: libraries/messages.inc.php:663 tbl_indexes.php:67 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Име примарног кључа мора да буде... PRIMARY!" -#: libraries/messages.inc.php:668 tbl_indexes.php:184 +#: libraries/messages.inc.php:664 tbl_indexes.php:184 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "(\"PRIMARY\" мора бити име само примарног кључа!)" -#: libraries/messages.inc.php:669 libraries/mult_submits.inc.php:76 +#: libraries/messages.inc.php:665 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:474 msgid "Primary" msgstr "Примарни" -#: libraries/messages.inc.php:673 server_privileges.php:227 +#: libraries/messages.inc.php:669 server_privileges.php:227 msgid "Includes all privileges except GRANT." msgstr "Укључује све привилегије осим GRANT." -#: libraries/messages.inc.php:674 server_privileges.php:153 +#: libraries/messages.inc.php:670 server_privileges.php:153 #: server_privileges.php:476 msgid "Allows altering the structure of existing tables." msgstr "Дозвољава измену структура постојећих табела." -#: libraries/messages.inc.php:675 server_privileges.php:169 +#: libraries/messages.inc.php:671 server_privileges.php:169 #: server_privileges.php:482 msgid "Allows altering and dropping stored routines." msgstr "Дозвољава измену и одбацивање сачуваних рутина." -#: libraries/messages.inc.php:676 server_privileges.php:145 +#: libraries/messages.inc.php:672 server_privileges.php:145 #: server_privileges.php:475 msgid "Allows creating new databases and tables." msgstr "Дозвољава креирање нових база и табела." -#: libraries/messages.inc.php:677 server_privileges.php:168 +#: libraries/messages.inc.php:673 server_privileges.php:168 #: server_privileges.php:481 msgid "Allows creating stored routines." msgstr "Дозвољава прављење сачуваних рутина." -#: libraries/messages.inc.php:678 server_privileges.php:475 +#: libraries/messages.inc.php:674 server_privileges.php:475 msgid "Allows creating new tables." msgstr "Дозвољава креирање нових табела." -#: libraries/messages.inc.php:679 server_privileges.php:156 +#: libraries/messages.inc.php:675 server_privileges.php:156 #: server_privileges.php:479 msgid "Allows creating temporary tables." msgstr "Дозвољава креирање привремених табела.." -#: libraries/messages.inc.php:680 server_privileges.php:170 +#: libraries/messages.inc.php:676 server_privileges.php:170 #: server_privileges.php:515 msgid "Allows creating, dropping and renaming user accounts." msgstr "Дозвољава прављење, одбацивање и преименовање корисничких налога." -#: libraries/messages.inc.php:681 server_privileges.php:160 +#: libraries/messages.inc.php:677 server_privileges.php:160 #: server_privileges.php:164 server_privileges.php:487 #: server_privileges.php:491 msgid "Allows creating new views." msgstr "Дозволи креирање нових погледа." -#: libraries/messages.inc.php:682 server_privileges.php:144 +#: libraries/messages.inc.php:678 server_privileges.php:144 #: server_privileges.php:467 msgid "Allows deleting data." msgstr "Дозвољава брисање података." -#: libraries/messages.inc.php:683 server_privileges.php:146 +#: libraries/messages.inc.php:679 server_privileges.php:146 #: server_privileges.php:478 msgid "Allows dropping databases and tables." msgstr "Дозвољава одбацивање база и табела." -#: libraries/messages.inc.php:684 server_privileges.php:478 +#: libraries/messages.inc.php:680 server_privileges.php:478 msgid "Allows dropping tables." msgstr "Дозвољава одбацивање табела." -#: libraries/messages.inc.php:685 server_privileges.php:161 +#: libraries/messages.inc.php:681 server_privileges.php:161 #: server_privileges.php:495 msgid "Allows to set up events for the event scheduler" msgstr "" -#: libraries/messages.inc.php:686 server_privileges.php:171 +#: libraries/messages.inc.php:682 server_privileges.php:171 #: server_privileges.php:483 msgid "Allows executing stored routines." msgstr "Дозвољава извршавање сачуваних рутина." -#: libraries/messages.inc.php:687 server_privileges.php:150 +#: libraries/messages.inc.php:683 server_privileges.php:150 #: server_privileges.php:470 msgid "Allows importing data from and exporting data into files." msgstr "Дозвољава увоз података и њихов извоз у датотеке." -#: libraries/messages.inc.php:688 server_privileges.php:501 +#: libraries/messages.inc.php:684 server_privileges.php:501 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Дозвољава додавање корисника и привилегија без поновног учитавања табела " "привилегија." -#: libraries/messages.inc.php:689 server_privileges.php:152 +#: libraries/messages.inc.php:685 server_privileges.php:152 #: server_privileges.php:477 msgid "Allows creating and dropping indexes." msgstr "Дозвољава креирање и брисање кључева." -#: libraries/messages.inc.php:690 server_privileges.php:142 +#: libraries/messages.inc.php:686 server_privileges.php:142 #: server_privileges.php:403 server_privileges.php:465 msgid "Allows inserting and replacing data." msgstr "Дозвољава уметање и замену података." -#: libraries/messages.inc.php:691 server_privileges.php:157 +#: libraries/messages.inc.php:687 server_privileges.php:157 #: server_privileges.php:510 msgid "Allows locking tables for the current thread." msgstr "Дозвољава закључавање табела текућим процесима." -#: libraries/messages.inc.php:692 server_privileges.php:607 +#: libraries/messages.inc.php:688 server_privileges.php:607 #: server_privileges.php:609 msgid "Limits the number of new connections the user may open per hour." msgstr "Ограничава број нових конекција које корисник може та отвори на сат." -#: libraries/messages.inc.php:693 server_privileges.php:595 +#: libraries/messages.inc.php:689 server_privileges.php:595 #: server_privileges.php:597 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Ограничава број упита које корисник може да упути серверу за сат." -#: libraries/messages.inc.php:694 server_privileges.php:601 +#: libraries/messages.inc.php:690 server_privileges.php:601 #: server_privileges.php:603 msgid "" "Limits the number of commands that change any table or database the user may " @@ -4660,58 +4660,58 @@ msgstr "" "Ограничава број команди које мењају табеле или базе које корисник може да " "изврши на сат." -#: libraries/messages.inc.php:695 server_privileges.php:613 +#: libraries/messages.inc.php:691 server_privileges.php:613 #: server_privileges.php:615 msgid "Limits the number of simultaneous connections the user may have." msgstr "Ограничава број истовремених конекција које корисник може да има." -#: libraries/messages.inc.php:696 server_privileges.php:149 +#: libraries/messages.inc.php:692 server_privileges.php:149 #: server_privileges.php:505 msgid "Allows viewing processes of all users" msgstr "" -#: libraries/messages.inc.php:697 server_privileges.php:151 +#: libraries/messages.inc.php:693 server_privileges.php:151 #: server_privileges.php:409 server_privileges.php:511 msgid "Has no effect in this MySQL version." msgstr "Нема ефекта у овој верзији MySQL-a." -#: libraries/messages.inc.php:698 server_privileges.php:147 +#: libraries/messages.inc.php:694 server_privileges.php:147 #: server_privileges.php:506 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Дозвољава поновно учитавање подешавања сервера и пражњење кеша сервера." -#: libraries/messages.inc.php:699 server_privileges.php:159 +#: libraries/messages.inc.php:695 server_privileges.php:159 #: server_privileges.php:513 msgid "Allows the user to ask where the slaves / masters are." msgstr "Даје право кориснику да пита где су главни/помоћни сервери." -#: libraries/messages.inc.php:700 server_privileges.php:158 +#: libraries/messages.inc.php:696 server_privileges.php:158 #: server_privileges.php:514 msgid "Needed for the replication slaves." msgstr "Потребно због помоћних сервера за репликацију." -#: libraries/messages.inc.php:701 server_privileges.php:141 +#: libraries/messages.inc.php:697 server_privileges.php:141 #: server_privileges.php:400 server_privileges.php:464 msgid "Allows reading data." msgstr "Дозвољава читање података." -#: libraries/messages.inc.php:702 server_privileges.php:154 +#: libraries/messages.inc.php:698 server_privileges.php:154 #: server_privileges.php:508 msgid "Gives access to the complete list of databases." msgstr "Даје приступ комплетној листи база." -#: libraries/messages.inc.php:703 server_privileges.php:165 +#: libraries/messages.inc.php:699 server_privileges.php:165 #: server_privileges.php:167 server_privileges.php:480 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Дозвољава извршавање SHOW CREATE VIEW упита." -#: libraries/messages.inc.php:704 server_privileges.php:148 +#: libraries/messages.inc.php:700 server_privileges.php:148 #: server_privileges.php:507 msgid "Allows shutting down the server." msgstr "Дозвољава гашење сервера." -#: libraries/messages.inc.php:705 server_privileges.php:155 +#: libraries/messages.inc.php:701 server_privileges.php:155 #: server_privileges.php:504 msgid "" "Allows connecting, even if maximum number of connections is reached; " @@ -4722,56 +4722,56 @@ msgstr "" "Неопходно за већину административних опција као што су подешавање глобалних " "променљивих или прекидање процеса осталих корисника." -#: libraries/messages.inc.php:706 server_privileges.php:162 +#: libraries/messages.inc.php:702 server_privileges.php:162 #: server_privileges.php:496 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "Дозвољава креирање и брисање кључева." -#: libraries/messages.inc.php:707 server_privileges.php:143 +#: libraries/messages.inc.php:703 server_privileges.php:143 #: server_privileges.php:406 server_privileges.php:466 msgid "Allows changing data." msgstr "Дозвољава измену података." -#: libraries/messages.inc.php:708 server_privileges.php:221 +#: libraries/messages.inc.php:704 server_privileges.php:221 msgid "No privileges." msgstr "Нема привилегија." -#: libraries/messages.inc.php:710 server_privileges.php:1296 +#: libraries/messages.inc.php:706 server_privileges.php:1296 msgid "The privileges were reloaded successfully." msgstr "Привилегије су успешно поново учитане." -#: libraries/messages.inc.php:712 libraries/server_links.inc.php:80 +#: libraries/messages.inc.php:708 libraries/server_links.inc.php:80 msgid "Processes" msgstr "Процеси" -#: libraries/messages.inc.php:714 main.php:187 +#: libraries/messages.inc.php:710 main.php:187 msgid "Protocol version" msgstr "Верзија протокола" -#: libraries/messages.inc.php:715 +#: libraries/messages.inc.php:711 msgid "Put fields names in the first row" msgstr "Стави имена поља у први ред" -#: libraries/messages.inc.php:720 server_synchronize.php:1003 +#: libraries/messages.inc.php:716 server_synchronize.php:1003 msgid "The following queries have been executed:" msgstr "" -#: libraries/messages.inc.php:721 server_status.php:251 +#: libraries/messages.inc.php:717 server_status.php:251 msgid "Query cache" msgstr "Кеш упита" -#: libraries/messages.inc.php:722 libraries/navigation_header.inc.php:80 +#: libraries/messages.inc.php:718 libraries/navigation_header.inc.php:80 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 setup/lib/messages.inc.php:122 msgid "Query window" msgstr "Прозор за упите" -#: libraries/messages.inc.php:725 querywindow.php:109 querywindow.php:217 +#: libraries/messages.inc.php:721 querywindow.php:109 querywindow.php:217 msgid "SQL history" msgstr "SQL историјат" -#: libraries/messages.inc.php:726 server_status.php:490 +#: libraries/messages.inc.php:722 server_status.php:490 #, php-format msgid "" "Query statistics: Since its startup, %s queries have been sent to the " @@ -4779,137 +4779,137 @@ msgid "" msgstr "" "Статистике упита: %s упита је постављено серверу од његовог покретања." -#: libraries/messages.inc.php:728 server_status.php:554 +#: libraries/messages.inc.php:724 server_status.php:554 msgid "Query type" msgstr "Врста упита" -#: libraries/messages.inc.php:729 libraries/sql_query_form.lib.php:381 +#: libraries/messages.inc.php:725 libraries/sql_query_form.lib.php:381 msgid "Do not overwrite this query from outside the window" msgstr "Не преписуј овај упит изван прозора" -#: libraries/messages.inc.php:732 tbl_operations.php:663 +#: libraries/messages.inc.php:728 tbl_operations.php:663 msgid "Rebuild" msgstr "" -#: libraries/messages.inc.php:733 server_status.php:394 +#: libraries/messages.inc.php:729 server_status.php:394 msgid "Received" msgstr "Примљено" -#: libraries/messages.inc.php:734 pmd_pdf.php:89 +#: libraries/messages.inc.php:730 pmd_pdf.php:89 msgid "recommended" msgstr "препоручено" -#: libraries/messages.inc.php:736 tbl_operations.php:702 +#: libraries/messages.inc.php:732 tbl_operations.php:702 msgid "Check referential integrity:" msgstr "Провери референцијални интегритет:" -#: libraries/messages.inc.php:740 pdf_schema.php:1032 pdf_schema.php:1141 +#: libraries/messages.inc.php:736 pdf_schema.php:1032 pdf_schema.php:1141 msgid "Relational schema" msgstr "Релациона схема" -#: libraries/messages.inc.php:744 tbl_relation.php:399 +#: libraries/messages.inc.php:740 tbl_relation.php:399 msgid "Relations" msgstr "Релације" -#: libraries/messages.inc.php:745 tbl_structure.php:507 tbl_structure.php:509 +#: libraries/messages.inc.php:741 tbl_structure.php:507 tbl_structure.php:509 msgid "Relation view" msgstr "Релациони поглед" -#: libraries/messages.inc.php:746 server_privileges.php:1246 +#: libraries/messages.inc.php:742 server_privileges.php:1246 msgid "Reloading the privileges" msgstr "Поново учитавам привилегије" -#: libraries/messages.inc.php:747 navigation.php:66 navigation.php:67 +#: libraries/messages.inc.php:743 navigation.php:66 navigation.php:67 #: navigation.php:70 msgid "Reload navigation frame" msgstr "" -#: libraries/messages.inc.php:748 pmd_general.php:80 +#: libraries/messages.inc.php:744 pmd_general.php:80 msgid "Reload" msgstr "Поново учитај" -#: libraries/messages.inc.php:749 libraries/server_synchronize.lib.php:1345 +#: libraries/messages.inc.php:745 libraries/server_synchronize.lib.php:1345 #: libraries/server_synchronize.lib.php:1371 msgid "Remote server" msgstr "" -#: libraries/messages.inc.php:750 +#: libraries/messages.inc.php:746 msgid "Remove CRLF characters within fields" msgstr "" -#: libraries/messages.inc.php:751 tbl_operations.php:676 +#: libraries/messages.inc.php:747 tbl_operations.php:676 msgid "Remove partitioning" msgstr "" -#: libraries/messages.inc.php:752 server_privileges.php:1575 +#: libraries/messages.inc.php:748 server_privileges.php:1575 msgid "Remove selected users" msgstr "Уклони изабране кориснике" -#: libraries/messages.inc.php:755 tbl_operations.php:338 +#: libraries/messages.inc.php:751 tbl_operations.php:338 msgid "Rename table to" msgstr "Промени име табеле у " -#: libraries/messages.inc.php:756 view_operations.php:93 +#: libraries/messages.inc.php:752 view_operations.php:93 #, fuzzy msgid "Rename view to" msgstr "Промени име табеле у " -#: libraries/messages.inc.php:757 tbl_operations.php:664 +#: libraries/messages.inc.php:753 tbl_operations.php:664 #, fuzzy msgid "Repair" msgstr "Поправи табелу" -#: libraries/messages.inc.php:759 +#: libraries/messages.inc.php:755 msgid "Replace NULL by" msgstr "Замени NULL са" -#: libraries/messages.inc.php:760 +#: libraries/messages.inc.php:756 msgid "Replace table data with file" msgstr "Замени податке у табели са подацима из датотеке" -#: libraries/messages.inc.php:761 server_replication.php:228 +#: libraries/messages.inc.php:757 server_replication.php:228 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: libraries/messages.inc.php:762 libraries/replication_gui.lib.php:236 +#: libraries/messages.inc.php:758 libraries/replication_gui.lib.php:236 #: server_replication.php:194 msgid "Add slave replication user" msgstr "" -#: libraries/messages.inc.php:763 server_replication.php:74 +#: libraries/messages.inc.php:759 server_replication.php:74 #, php-format msgid "Master server changed succesfully to %s" msgstr "" -#: libraries/messages.inc.php:764 server_replication.php:182 +#: libraries/messages.inc.php:760 server_replication.php:182 msgid "This server is configured as master in a replication process." msgstr "" -#: libraries/messages.inc.php:765 server_replication.php:322 +#: libraries/messages.inc.php:761 server_replication.php:322 msgid "Control slave:" msgstr "" -#: libraries/messages.inc.php:766 server_replication.php:65 +#: libraries/messages.inc.php:762 server_replication.php:65 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: libraries/messages.inc.php:767 server_replication.php:58 +#: libraries/messages.inc.php:763 server_replication.php:58 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: libraries/messages.inc.php:768 server_replication.php:221 +#: libraries/messages.inc.php:764 server_replication.php:221 msgid "Replicate all databases; Ignore:" msgstr "" -#: libraries/messages.inc.php:769 server_replication.php:222 +#: libraries/messages.inc.php:765 server_replication.php:222 msgid "Ignore all databases; Replicate:" msgstr "" -#: libraries/messages.inc.php:770 server_replication.php:218 +#: libraries/messages.inc.php:766 server_replication.php:218 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -4918,122 +4918,122 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: libraries/messages.inc.php:771 server_replication.php:217 +#: libraries/messages.inc.php:767 server_replication.php:217 msgid "Master configuration" msgstr "" -#: libraries/messages.inc.php:772 server_replication.php:181 +#: libraries/messages.inc.php:768 server_replication.php:181 #: server_replication.php:209 msgid "Master replication" msgstr "" -#: libraries/messages.inc.php:774 server_replication.php:230 +#: libraries/messages.inc.php:770 server_replication.php:230 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: libraries/messages.inc.php:775 server_replication.php:225 +#: libraries/messages.inc.php:771 server_replication.php:225 #, fuzzy msgid "Please select databases:" msgstr "Изаберите базу" -#: libraries/messages.inc.php:776 server_replication.php:210 +#: libraries/messages.inc.php:772 server_replication.php:210 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:188 +#: libraries/messages.inc.php:773 libraries/replication_gui.lib.php:188 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/messages.inc.php:778 server_replication.php:187 +#: libraries/messages.inc.php:774 server_replication.php:187 msgid "Show connected slaves" msgstr "" -#: libraries/messages.inc.php:779 libraries/messages.inc.php:885 +#: libraries/messages.inc.php:775 libraries/messages.inc.php:881 #: server_replication.php:184 server_status.php:281 #, fuzzy msgid "Show master status" msgstr "Прикажи статус подређених сервера" -#: libraries/messages.inc.php:780 server_replication.php:334 +#: libraries/messages.inc.php:776 server_replication.php:334 msgid "Skipping error(s) might lead into unsynchronized master and slave!" msgstr "" -#: libraries/messages.inc.php:781 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:51 #: server_replication.php:347 msgid "Change or reconfigure master server" msgstr "" -#: libraries/messages.inc.php:782 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:778 libraries/replication_gui.lib.php:51 msgid "Slave configuration" msgstr "" -#: libraries/messages.inc.php:783 server_replication.php:305 +#: libraries/messages.inc.php:779 server_replication.php:305 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: libraries/messages.inc.php:784 server_replication.php:332 +#: libraries/messages.inc.php:780 server_replication.php:332 msgid "Error management:" msgstr "" -#: libraries/messages.inc.php:785 server_replication.php:328 +#: libraries/messages.inc.php:781 server_replication.php:328 #, php-format msgid "IO Thread %s only" msgstr "" -#: libraries/messages.inc.php:786 server_replication.php:296 +#: libraries/messages.inc.php:782 server_replication.php:296 msgid "Slave IO Thread not running!" msgstr "" -#: libraries/messages.inc.php:787 server_replication.php:355 +#: libraries/messages.inc.php:783 server_replication.php:355 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/messages.inc.php:788 server_replication.php:326 +#: libraries/messages.inc.php:784 server_replication.php:326 msgid "Reset slave" msgstr "" -#: libraries/messages.inc.php:789 server_replication.php:308 +#: libraries/messages.inc.php:785 server_replication.php:308 msgid "See slave status table" msgstr "" -#: libraries/messages.inc.php:790 server_replication.php:336 +#: libraries/messages.inc.php:786 server_replication.php:336 msgid "Skip current error" msgstr "" -#: libraries/messages.inc.php:791 server_replication.php:340 +#: libraries/messages.inc.php:787 server_replication.php:340 msgid "errors." msgstr "" -#: libraries/messages.inc.php:792 server_replication.php:337 +#: libraries/messages.inc.php:788 server_replication.php:337 msgid "Skip next" msgstr "" -#: libraries/messages.inc.php:793 server_replication.php:248 +#: libraries/messages.inc.php:789 server_replication.php:248 msgid "Slave replication" msgstr "" -#: libraries/messages.inc.php:794 server_replication.php:293 +#: libraries/messages.inc.php:790 server_replication.php:293 msgid "Slave SQL Thread not running!" msgstr "" -#: libraries/messages.inc.php:795 server_replication.php:327 +#: libraries/messages.inc.php:791 server_replication.php:327 #, php-format msgid "SQL Thread %s only" msgstr "" -#: libraries/messages.inc.php:796 +#: libraries/messages.inc.php:792 #, php-format msgid "" "This MySQL server works as %s in replication process. For further " @@ -5041,160 +5041,160 @@ msgid "" "\"#replication\">replication section." msgstr "" -#: libraries/messages.inc.php:797 +#: libraries/messages.inc.php:793 #, fuzzy msgid "Master status" msgstr "Прикажи статус подређених сервера" -#: libraries/messages.inc.php:798 server_status.php:721 +#: libraries/messages.inc.php:794 server_status.php:721 #, fuzzy msgid "Replication status" msgstr "Репликација" -#: libraries/messages.inc.php:799 +#: libraries/messages.inc.php:795 #, fuzzy msgid "Slave status" msgstr "Прикажи статус подређених сервера" -#: libraries/messages.inc.php:800 server_replication.php:311 +#: libraries/messages.inc.php:796 server_replication.php:311 msgid "Synchronize databases with master" msgstr "" -#: libraries/messages.inc.php:801 server_replication.php:71 +#: libraries/messages.inc.php:797 server_replication.php:71 msgid "Unable to change master" msgstr "" -#: libraries/messages.inc.php:802 server_replication.php:51 +#: libraries/messages.inc.php:798 server_replication.php:51 msgid "Unknown error" msgstr "" -#: libraries/messages.inc.php:803 main.php:163 pdf_pages.php:344 +#: libraries/messages.inc.php:799 main.php:163 pdf_pages.php:344 #: setup/lib/FormDisplay.tpl.php:216 tbl_change.php:1175 msgid "Reset" msgstr "Поништи" -#: libraries/messages.inc.php:804 server_privileges.php:591 +#: libraries/messages.inc.php:800 server_privileges.php:591 msgid "Resource limits" msgstr "Ограничења ресурса" -#: libraries/messages.inc.php:805 tbl_change.php:1209 +#: libraries/messages.inc.php:801 tbl_change.php:1209 #, php-format msgid "Restart insertion with %s rows" msgstr "Поново покрени уношење са %s редова" -#: libraries/messages.inc.php:807 server_privileges.php:1578 +#: libraries/messages.inc.php:803 server_privileges.php:1578 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Обустави све активне привилегије корисника и затим их обриши." -#: libraries/messages.inc.php:808 server_privileges.php:1176 +#: libraries/messages.inc.php:804 server_privileges.php:1176 #, php-format msgid "You have revoked the privileges for %s" msgstr "Забранили сте привилегије за %s" -#: libraries/messages.inc.php:809 server_privileges.php:1333 +#: libraries/messages.inc.php:805 server_privileges.php:1333 msgid "Revoke" msgstr "Забрани" -#: libraries/messages.inc.php:810 libraries/mysql_charsets.lib.php:280 +#: libraries/messages.inc.php:806 libraries/mysql_charsets.lib.php:280 msgid "Romanian" msgstr "Румунски" -#: libraries/messages.inc.php:813 tbl_printview.php:404 tbl_structure.php:786 +#: libraries/messages.inc.php:809 tbl_printview.php:404 tbl_structure.php:786 msgid "Row length" msgstr "Дужина реда" -#: libraries/messages.inc.php:815 tbl_printview.php:414 tbl_structure.php:794 +#: libraries/messages.inc.php:811 tbl_printview.php:414 tbl_structure.php:794 msgid " Row size " msgstr "Величина реда" -#: libraries/messages.inc.php:821 tbl_printview.php:366 tbl_structure.php:726 +#: libraries/messages.inc.php:817 tbl_printview.php:366 tbl_structure.php:726 msgid "Row Statistics" msgstr "Статистике реда" -#: libraries/messages.inc.php:822 +#: libraries/messages.inc.php:818 #, php-format msgid "running on %s" msgstr "на серверу %s" -#: libraries/messages.inc.php:824 libraries/sql_query_form.lib.php:223 +#: libraries/messages.inc.php:820 libraries/sql_query_form.lib.php:223 #, php-format msgid "Run SQL query/queries on server %s" msgstr "Изврши SQL упит(е) на серверу %s" -#: libraries/messages.inc.php:825 libraries/sql_query_form.lib.php:240 +#: libraries/messages.inc.php:821 libraries/sql_query_form.lib.php:240 #: libraries/sql_query_form.lib.php:265 #, php-format msgid "Run SQL query/queries on database %s" msgstr "Изврши SQL упит(е) на бази %s" -#: libraries/messages.inc.php:826 libraries/mysql_charsets.lib.php:337 +#: libraries/messages.inc.php:822 libraries/mysql_charsets.lib.php:337 msgid "Russian" msgstr "Руски" -#: libraries/messages.inc.php:829 pmd_general.php:68 +#: libraries/messages.inc.php:825 pmd_general.php:68 msgid "Save position" msgstr "Сачувај позицију" -#: libraries/messages.inc.php:830 libraries/tbl_properties.inc.php:776 +#: libraries/messages.inc.php:826 libraries/tbl_properties.inc.php:776 #: pdf_pages.php:484 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:214 setup/lib/FormDisplay.tpl.php:215 #: tbl_change.php:1126 tbl_indexes.php:248 tbl_relation.php:566 msgid "Save" msgstr "Сачувај" -#: libraries/messages.inc.php:831 +#: libraries/messages.inc.php:827 msgid "The scale factor is too small to fit the schema on one page" msgstr "Фактор умањења је премали да би схема стала на једну страну" -#: libraries/messages.inc.php:843 main.php:298 +#: libraries/messages.inc.php:839 main.php:298 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "Конфигурациона датотека захтева тајну лозинку (blowfish_secret)." -#: libraries/messages.inc.php:844 navigation.php:353 navigation.php:516 +#: libraries/messages.inc.php:840 navigation.php:353 navigation.php:516 msgid "Please select a database" msgstr "Изаберите базу" -#: libraries/messages.inc.php:846 server_binlog.php:120 +#: libraries/messages.inc.php:842 server_binlog.php:120 msgid "Select binary log to view" msgstr "Изаберите бинарни дневник за преглед" -#: libraries/messages.inc.php:847 tbl_select.php:270 +#: libraries/messages.inc.php:843 tbl_select.php:270 msgid "Select fields (at least one):" msgstr "Изабери поља (најмање једно)" -#: libraries/messages.inc.php:851 pdf_pages.php:320 +#: libraries/messages.inc.php:847 pdf_pages.php:320 msgid "Select Tables" msgstr "Изабери табеле" -#: libraries/messages.inc.php:853 server_status.php:404 +#: libraries/messages.inc.php:849 server_status.php:404 msgid "Sent" msgstr "Послато" -#: libraries/messages.inc.php:857 libraries/select_server.lib.php:45 +#: libraries/messages.inc.php:853 libraries/select_server.lib.php:45 #: setup/frames/index.inc.php:97 setup/lib/messages.inc.php:115 msgid "Servers" msgstr "Сервери" -#: libraries/messages.inc.php:858 server_status.php:255 +#: libraries/messages.inc.php:854 server_status.php:255 msgid "Delayed inserts" msgstr "Одложена уметања" -#: libraries/messages.inc.php:859 server_status.php:46 +#: libraries/messages.inc.php:855 server_status.php:46 msgid "Runtime Information" msgstr "Информације о току рада" -#: libraries/messages.inc.php:860 server_status.php:350 +#: libraries/messages.inc.php:856 server_status.php:350 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Овај MySQL сервер ради већ %s. Покренут је %s." -#: libraries/messages.inc.php:861 libraries/server_links.inc.php:53 +#: libraries/messages.inc.php:857 libraries/server_links.inc.php:53 #: server_engines.php:112 server_engines.php:116 server_status.php:304 #: test/theme.php:105 msgid "Variables" msgstr "Променљиве" -#: libraries/messages.inc.php:862 server_status.php:383 +#: libraries/messages.inc.php:858 server_status.php:383 msgid "" "Server traffic: These tables show the network traffic statistics of " "this MySQL server since its startup." @@ -5202,11 +5202,11 @@ msgstr "" "Саобраћај сервера: Табеле показују статистике мрежног саобраћаја на " "овом MySQL серверу од његовог покретања." -#: libraries/messages.inc.php:863 server_variables.php:35 +#: libraries/messages.inc.php:859 server_variables.php:35 msgid "Server variables and settings" msgstr "Серверске променљиве и подешавања" -#: libraries/messages.inc.php:865 main.php:290 +#: libraries/messages.inc.php:861 main.php:290 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -5214,7 +5214,7 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: libraries/messages.inc.php:866 +#: libraries/messages.inc.php:862 msgid "" "Cannot start session without errors, please check errors given in your PHP " "and/or webserver log file and configure your PHP installation properly." @@ -5222,11 +5222,11 @@ msgstr "" "Не могу да покренем сесију без грешака, молим проверите грешке у PHP и/или " "дневнику веб сервера и прописно подесите вашу PHP инсталацију." -#: libraries/messages.inc.php:867 server_variables.php:55 +#: libraries/messages.inc.php:863 server_variables.php:55 msgid "Session value" msgstr "Вредност сесије" -#: libraries/messages.inc.php:868 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:864 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 " @@ -5238,45 +5238,45 @@ msgstr "" "користите их у \"избегнутом\" (escaped) облику (на пример '\\\\xyz' или 'a" "\\'b')." -#: libraries/messages.inc.php:876 server_binlog.php:192 server_binlog.php:195 +#: libraries/messages.inc.php:872 server_binlog.php:192 server_binlog.php:195 #: server_processlist.php:49 server_processlist.php:51 msgid "Show Full Queries" msgstr "Прикажи комплетне упите" -#: libraries/messages.inc.php:878 pmd_general.php:64 +#: libraries/messages.inc.php:874 pmd_general.php:64 msgid "Show/Hide left menu" msgstr "Прикажи/сакриј мени с леве стране" -#: libraries/messages.inc.php:880 sql.php:513 +#: libraries/messages.inc.php:876 sql.php:513 msgid "Showing as PHP code" msgstr "Приказ као PHP код" -#: libraries/messages.inc.php:882 sql.php:516 tbl_replace.php:360 +#: libraries/messages.inc.php:878 sql.php:516 tbl_replace.php:360 msgid "Showing SQL query" msgstr "Приказ као SQL упит" -#: libraries/messages.inc.php:883 tbl_change.php:1132 +#: libraries/messages.inc.php:879 tbl_change.php:1132 #, fuzzy msgid "Show insert query" msgstr "Приказ као SQL упит" -#: libraries/messages.inc.php:886 server_status.php:273 +#: libraries/messages.inc.php:882 server_status.php:273 msgid "Show open tables" msgstr "Прикажи отворене табеле" -#: libraries/messages.inc.php:887 main.php:219 +#: libraries/messages.inc.php:883 main.php:219 msgid "Show PHP information" msgstr "Прикажи информације о PHP-у" -#: libraries/messages.inc.php:889 server_status.php:278 +#: libraries/messages.inc.php:885 server_status.php:278 msgid "Show slave hosts" msgstr "Прикажи подређене сервер" -#: libraries/messages.inc.php:890 server_status.php:284 +#: libraries/messages.inc.php:886 server_status.php:284 msgid "Show slave status" msgstr "Прикажи статус подређених сервера" -#: libraries/messages.inc.php:891 +#: libraries/messages.inc.php:887 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -5286,11 +5286,11 @@ msgstr "" "превазишле вредност у binlog_cache_size и користиле привремену датотеку да " "сместе изразе из трансакције." -#: libraries/messages.inc.php:892 +#: libraries/messages.inc.php:888 msgid "The number of transactions that used the temporary binary log cache." msgstr "Број трансакција које су користиле кеш привременог бинарног дневника." -#: libraries/messages.inc.php:893 +#: libraries/messages.inc.php:889 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -5302,11 +5302,11 @@ msgstr "" "повећате вредност tmp_table_size како би учинили да привремене табеле буду " "базиране у меморији уместо на диску." -#: libraries/messages.inc.php:894 +#: libraries/messages.inc.php:890 msgid "How many temporary files mysqld has created." msgstr "Колико привремених датотека је mysqld направио." -#: libraries/messages.inc.php:895 +#: libraries/messages.inc.php:891 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -5314,7 +5314,7 @@ msgstr "" "Број привремених табела које је сервер аутоматски креирао у меморији док је " "извршавао изразе." -#: libraries/messages.inc.php:896 +#: libraries/messages.inc.php:892 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -5322,7 +5322,7 @@ msgstr "" "Број редова уписаних са INSERT DELAYED за које је јављена нека грешка " "(вероватно дуплирани кључ)." -#: libraries/messages.inc.php:897 +#: libraries/messages.inc.php:893 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -5330,23 +5330,23 @@ msgstr "" "Број INSERT DELAYED руковалачких нити у употреби. Свака посебна табела над " "којом се користи INSERT DELAYED добија своју нит." -#: libraries/messages.inc.php:898 +#: libraries/messages.inc.php:894 msgid "The number of INSERT DELAYED rows written." msgstr "Број уписаних INSERT DELAYED редова." -#: libraries/messages.inc.php:899 +#: libraries/messages.inc.php:895 msgid "The number of executed FLUSH statements." msgstr "Број извршених FLUSH израза." -#: libraries/messages.inc.php:900 +#: libraries/messages.inc.php:896 msgid "The number of internal COMMIT statements." msgstr "Број интерних COMMIT израза." -#: libraries/messages.inc.php:901 +#: libraries/messages.inc.php:897 msgid "The number of times a row was deleted from a table." msgstr "Број брисања неког реда табеле." -#: libraries/messages.inc.php:902 +#: libraries/messages.inc.php:898 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -5356,7 +5356,7 @@ msgstr "" "одређеног имена. То се назива откривањем (discovery). Handler_discover " "означава број пута када је откривена табела." -#: libraries/messages.inc.php:903 +#: libraries/messages.inc.php:899 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -5366,7 +5366,7 @@ msgstr "" "може значити да сервер ради пуно пуних скенирања индекса; на пример SELECT " "кол1 FROM нешто, под претпоставком да је кол1 индексирано." -#: libraries/messages.inc.php:904 +#: libraries/messages.inc.php:900 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -5374,7 +5374,7 @@ msgstr "" "Број захтева за читање реда заснованих на кључу. Ако је овај број висок, то " "је добар показатељ да су ваши упити и табеле прописно индексирани." -#: libraries/messages.inc.php:905 +#: libraries/messages.inc.php:901 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -5384,7 +5384,7 @@ msgstr "" "када радите упит по колони индекса са ограничењем опсега или ако радите " "скенирање индекса." -#: libraries/messages.inc.php:906 +#: libraries/messages.inc.php:902 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -5392,7 +5392,7 @@ msgstr "" "Број захтева за читањем претходног реда у поретку кључева. Ова метода читања " "се углавном користи за оптимизацију ORDER BY ... DESC." -#: libraries/messages.inc.php:907 +#: libraries/messages.inc.php:903 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -5404,7 +5404,7 @@ msgstr "" "много упита који захтевају да MySQL скенира целе табеле или имате спојеве " "који не користе кључеве прописно." -#: libraries/messages.inc.php:908 +#: libraries/messages.inc.php:904 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -5416,35 +5416,35 @@ msgstr "" "прописно индексиране или да ваши упити нису написани да искористе већ " "постојеће индексе." -#: libraries/messages.inc.php:909 +#: libraries/messages.inc.php:905 msgid "The number of internal ROLLBACK statements." msgstr "Број интерних ROLLBACK израза." -#: libraries/messages.inc.php:910 +#: libraries/messages.inc.php:906 msgid "The number of requests to update a row in a table." msgstr "Број захтева за ажурирање реда у табели." -#: libraries/messages.inc.php:911 +#: libraries/messages.inc.php:907 msgid "The number of requests to insert a row in a table." msgstr "Број захтева за уписивање реда у табелу." -#: libraries/messages.inc.php:912 +#: libraries/messages.inc.php:908 msgid "The number of pages containing data (dirty or clean)." msgstr "Број страна које садрже податке (чистих или прљавих)." -#: libraries/messages.inc.php:913 +#: libraries/messages.inc.php:909 msgid "The number of pages currently dirty." msgstr "Број страна које су тренутно прљаве." -#: libraries/messages.inc.php:914 +#: libraries/messages.inc.php:910 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Број страна у остави бафера за које је тражено да буду очишћене." -#: libraries/messages.inc.php:915 +#: libraries/messages.inc.php:911 msgid "The number of free pages." msgstr "Број слободних страна." -#: libraries/messages.inc.php:916 +#: libraries/messages.inc.php:912 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -5454,7 +5454,7 @@ msgstr "" "чита или се у њих уписује или из неког другог разлога не могу бити очишћене " "нити уклоњене." -#: libraries/messages.inc.php:917 +#: libraries/messages.inc.php:913 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -5466,11 +5466,11 @@ msgstr "" "такође може израчунати и на следећи начин Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: libraries/messages.inc.php:918 +#: libraries/messages.inc.php:914 msgid "Total size of buffer pool, in pages." msgstr "Пуна величина оставе бафера, у странама." -#: libraries/messages.inc.php:919 +#: libraries/messages.inc.php:915 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -5478,7 +5478,7 @@ msgstr "" "Број „насумичних“ пред-читања која је InnoDB покренуо. Ово се дешава када " "упит треба да скенира велики део табеле али насумичним редоследом." -#: libraries/messages.inc.php:920 +#: libraries/messages.inc.php:916 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -5486,11 +5486,11 @@ msgstr "" "Број секвенцијалних пред-читања која је InnoDB покренуо. Ово се дешава када " "InnoDB ради секвенцијално скенирање целе табеле." -#: libraries/messages.inc.php:921 +#: libraries/messages.inc.php:917 msgid "The number of logical read requests InnoDB has done." msgstr "Број логичких захтева за читање које је InnoDB урадио." -#: libraries/messages.inc.php:922 +#: libraries/messages.inc.php:918 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -5498,7 +5498,7 @@ msgstr "" "Број логичких читања која InnoDB није могао да задовољи из оставе бафера те " "је морао да ради читање појединачне стране." -#: libraries/messages.inc.php:923 +#: libraries/messages.inc.php:919 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -5512,55 +5512,55 @@ msgstr "" "дешавања ових чекања. Ако је величина оставе бафера постављена како треба, " "ова вредност ви требало да је ниска." -#: libraries/messages.inc.php:924 +#: libraries/messages.inc.php:920 msgid "The number writes done to the InnoDB buffer pool." msgstr "Број уписа учињених у InnoDB оставу бафера." -#: libraries/messages.inc.php:925 +#: libraries/messages.inc.php:921 msgid "The number of fsync() operations so far." msgstr "Број fsync() операција до сада." -#: libraries/messages.inc.php:926 +#: libraries/messages.inc.php:922 msgid "The current number of pending fsync() operations." msgstr "Тренутни број fsync() операција на чекању." -#: libraries/messages.inc.php:927 +#: libraries/messages.inc.php:923 msgid "The current number of pending reads." msgstr "Тренутни број читања на чекању." -#: libraries/messages.inc.php:928 +#: libraries/messages.inc.php:924 msgid "The current number of pending writes." msgstr "Тренутни број уписа на чекању." -#: libraries/messages.inc.php:929 +#: libraries/messages.inc.php:925 msgid "The amount of data read so far, in bytes." msgstr "Количина података прочитаних до сада, у бајтовима." -#: libraries/messages.inc.php:930 +#: libraries/messages.inc.php:926 msgid "The total number of data reads." msgstr "Укупан број читања података." -#: libraries/messages.inc.php:931 +#: libraries/messages.inc.php:927 msgid "The total number of data writes." msgstr "Укупан број уписа података." -#: libraries/messages.inc.php:932 +#: libraries/messages.inc.php:928 msgid "The amount of data written so far, in bytes." msgstr "Количина података уписаних до сада, у бајтовима" -#: libraries/messages.inc.php:933 +#: libraries/messages.inc.php:929 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Број извршених двоуписних (doublewrite) уписа и број страна које су уписане " "у ову сврху." -#: libraries/messages.inc.php:934 +#: libraries/messages.inc.php:930 msgid "The number of doublewrite operations that have been performed." msgstr "" "Број извршених двоуписних (doublewrite) уписа и број страна које су уписане " "у ову сврху." -#: libraries/messages.inc.php:935 +#: libraries/messages.inc.php:931 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -5568,35 +5568,35 @@ msgstr "" "Број чекања која смо имали зато што је бафер дневника био премали те смо " "морали да сачекамо да буде очишћен пре наставка." -#: libraries/messages.inc.php:936 +#: libraries/messages.inc.php:932 msgid "The number of log write requests." msgstr "Број захтева за упис у дневник." -#: libraries/messages.inc.php:937 +#: libraries/messages.inc.php:933 msgid "The number of physical writes to the log file." msgstr "Број физичких уписа у датотеку дневника." -#: libraries/messages.inc.php:938 +#: libraries/messages.inc.php:934 msgid "The number of fsync() writes done to the log file." msgstr "Број fsyncs уписа начињених у датотеку дневника." -#: libraries/messages.inc.php:939 +#: libraries/messages.inc.php:935 msgid "The number of pending log file fsyncs." msgstr "Број fsync-ова за датотеку дневника на чекању." -#: libraries/messages.inc.php:940 +#: libraries/messages.inc.php:936 msgid "Pending log file writes." msgstr "Број уписа у датотеку дневника на чекању." -#: libraries/messages.inc.php:941 +#: libraries/messages.inc.php:937 msgid "The number of bytes written to the log file." msgstr "Број бајтова уписаних у датотеку дневника." -#: libraries/messages.inc.php:942 +#: libraries/messages.inc.php:938 msgid "The number of pages created." msgstr "Број направљених страна." -#: libraries/messages.inc.php:943 +#: libraries/messages.inc.php:939 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -5605,51 +5605,51 @@ msgstr "" "вредности се рачунају у странама; величина стране омогућава да се оне лако " "конвертују у бајтове." -#: libraries/messages.inc.php:944 +#: libraries/messages.inc.php:940 msgid "The number of pages read." msgstr "Број прочитаних страна." -#: libraries/messages.inc.php:945 +#: libraries/messages.inc.php:941 msgid "The number of pages written." msgstr "Број записаних страна." -#: libraries/messages.inc.php:946 +#: libraries/messages.inc.php:942 msgid "The number of row locks currently being waited for." msgstr "Број брава за редове које се тренутно чекају." -#: libraries/messages.inc.php:947 +#: libraries/messages.inc.php:943 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Просечно време за добављање браве за ред, у милисекундама." -#: libraries/messages.inc.php:948 +#: libraries/messages.inc.php:944 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Укупно времена проведено у добављању брава за редове, у милисекундама." -#: libraries/messages.inc.php:949 +#: libraries/messages.inc.php:945 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Најдуже време за добављање браве за ред, у милисекундама." -#: libraries/messages.inc.php:950 +#: libraries/messages.inc.php:946 msgid "The number of times a row lock had to be waited for." msgstr "Број пута када се морала чекати брава за ред." -#: libraries/messages.inc.php:951 +#: libraries/messages.inc.php:947 msgid "The number of rows deleted from InnoDB tables." msgstr "Број редова обрисаних из InnoDB табела." -#: libraries/messages.inc.php:952 +#: libraries/messages.inc.php:948 msgid "The number of rows inserted in InnoDB tables." msgstr "Број редова уметнутих у InnoDB табеле." -#: libraries/messages.inc.php:953 +#: libraries/messages.inc.php:949 msgid "The number of rows read from InnoDB tables." msgstr "Број редова прочитаних из InnoDB табела." -#: libraries/messages.inc.php:954 +#: libraries/messages.inc.php:950 msgid "The number of rows updated in InnoDB tables." msgstr "Број редова ажурираних у InnoDB табелама." -#: libraries/messages.inc.php:955 +#: libraries/messages.inc.php:951 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -5657,7 +5657,7 @@ msgstr "" "Број блокова кључева у кешу кључева који су измењени али још нису послати на " "диск. Ово је раније било познато као Not_flushed_key_blocks." -#: libraries/messages.inc.php:956 +#: libraries/messages.inc.php:952 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -5665,7 +5665,7 @@ msgstr "" "Број неискоришћених блокова у кешу кључева. Ову вредност можете да користите " "да утврдите колики део кеша кључева је у употреби." -#: libraries/messages.inc.php:957 +#: libraries/messages.inc.php:953 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -5675,11 +5675,11 @@ msgstr "" "водостаја“ која показује највећи икада број блокова који је био у употреби у " "исто време." -#: libraries/messages.inc.php:958 +#: libraries/messages.inc.php:954 msgid "The number of requests to read a key block from the cache." msgstr "Број захтева за читање блока кључева из кеша." -#: libraries/messages.inc.php:959 +#: libraries/messages.inc.php:955 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -5689,15 +5689,15 @@ msgstr "" "је ваша вредност за key_buffer_size вероватно премала. Степен промашаја кеша " "се може израчунати као Key_reads/Key_read_requests." -#: libraries/messages.inc.php:960 +#: libraries/messages.inc.php:956 msgid "The number of requests to write a key block to the cache." msgstr "Број захтева за уписивање блока кључева у кеш." -#: libraries/messages.inc.php:961 +#: libraries/messages.inc.php:957 msgid "The number of physical writes of a key block to disk." msgstr "Број физичких уписа блока кључева на диск." -#: libraries/messages.inc.php:962 +#: libraries/messages.inc.php:958 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -5707,11 +5707,11 @@ msgstr "" "упита. Корисно за упоређивање цене различитих планова упита за исти упит. " "Подразумевана вредност 0 значи да још није био компајлиран ниједан упит." -#: libraries/messages.inc.php:963 +#: libraries/messages.inc.php:959 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Број редова у INSERT DELAYED редовима чекања који чекају уписивање." -#: libraries/messages.inc.php:964 +#: libraries/messages.inc.php:960 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -5719,36 +5719,36 @@ msgstr "" "Број табела које су биле отваране. Ако је број велики, ваш кеш табела је " "вероватно премали." -#: libraries/messages.inc.php:965 +#: libraries/messages.inc.php:961 msgid "The number of files that are open." msgstr "Број отворених датотека." -#: libraries/messages.inc.php:966 +#: libraries/messages.inc.php:962 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Број отворених токова (користи се првенствено за вођење дневника (logging))." -#: libraries/messages.inc.php:967 +#: libraries/messages.inc.php:963 msgid "The number of tables that are open." msgstr "Број отворених табела." -#: libraries/messages.inc.php:968 +#: libraries/messages.inc.php:964 msgid "The number of free memory blocks in query cache." msgstr "Број слободних меморијских блокова у у кешу упита." -#: libraries/messages.inc.php:969 +#: libraries/messages.inc.php:965 msgid "The amount of free memory for query cache." msgstr "Количина слободне меморије за кеш упита." -#: libraries/messages.inc.php:970 +#: libraries/messages.inc.php:966 msgid "The number of cache hits." msgstr "Број погодака из кеша." -#: libraries/messages.inc.php:971 +#: libraries/messages.inc.php:967 msgid "The number of queries added to the cache." msgstr "Број упита додатих у кеш." -#: libraries/messages.inc.php:972 +#: libraries/messages.inc.php:968 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -5760,7 +5760,7 @@ msgstr "" "упите. Кеш за упите користи стратегију најдуже некоришћеног (en: least " "recently used , LRU) да би одлучио које упите да уклони из кеша." -#: libraries/messages.inc.php:973 +#: libraries/messages.inc.php:969 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -5768,24 +5768,24 @@ msgstr "" "Број некешираних упита (који се не могу кеширати или нису кеширани због " "подешавања query_cache_type)." -#: libraries/messages.inc.php:974 +#: libraries/messages.inc.php:970 msgid "The number of queries registered in the cache." msgstr "Број упита регистрованих у кешу." -#: libraries/messages.inc.php:975 +#: libraries/messages.inc.php:971 msgid "The total number of blocks in the query cache." msgstr "Укупан број блокова у кешу за упите." -#: libraries/messages.inc.php:976 +#: libraries/messages.inc.php:972 msgctxt "$strShowStatusReset" msgid "Reset" msgstr "Ресет" -#: libraries/messages.inc.php:977 +#: libraries/messages.inc.php:973 msgid "The status of failsafe replication (not yet implemented)." msgstr "Статус репликације отпорне на грешке (није још имплементирано)." -#: libraries/messages.inc.php:978 +#: libraries/messages.inc.php:974 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -5793,11 +5793,11 @@ msgstr "" "Број спојева који не користе индексте. Ако ова вредност није 0, требало би " "пажљиво да проверите индексе ваших табела." -#: libraries/messages.inc.php:979 +#: libraries/messages.inc.php:975 msgid "The number of joins that used a range search on a reference table." msgstr "Број спојева који су користили претрагу опсега на референтној табели." -#: libraries/messages.inc.php:980 +#: libraries/messages.inc.php:976 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -5805,7 +5805,7 @@ msgstr "" "Број спојева без кључева који проверавају употребу кључа после сваког реда. " "(Ако ово није 0, требало би пажљиво да проверите индексе ваших табела.)" -#: libraries/messages.inc.php:981 +#: libraries/messages.inc.php:977 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -5813,15 +5813,15 @@ msgstr "" "Број спојева који су користили опсеге на првој табели. (Обично није критично " "чак ни када је ово велико)" -#: libraries/messages.inc.php:982 +#: libraries/messages.inc.php:978 msgid "The number of joins that did a full scan of the first table." msgstr "Број спојева који су урадили пуно скенирање прве табеле." -#: libraries/messages.inc.php:983 +#: libraries/messages.inc.php:979 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "Број привремених табела тренутно отворених од стране помоћне SQL нити." -#: libraries/messages.inc.php:984 +#: libraries/messages.inc.php:980 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -5829,11 +5829,11 @@ msgstr "" "Укупан број пута (од покретања) када је помоћна SQL нит за репликацију " "покушала трансакције." -#: libraries/messages.inc.php:985 +#: libraries/messages.inc.php:981 msgid "This is ON if this server is a slave that is connected to a master." msgstr "Ово је ON ако је овај сервер помоћни који је повезан на главни." -#: libraries/messages.inc.php:986 +#: libraries/messages.inc.php:982 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -5841,12 +5841,12 @@ msgstr "" "Број нити за које је требало више од slow_launch_time секудни да би биле " "покренуте." -#: libraries/messages.inc.php:987 +#: libraries/messages.inc.php:983 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "Број упита за које је требало више од long_query_time секудни." -#: libraries/messages.inc.php:988 +#: libraries/messages.inc.php:984 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -5856,23 +5856,23 @@ msgstr "" "је ова вредност велика, требало би да размислите о повећању вредности " "системске променљиве sort_buffer_size." -#: libraries/messages.inc.php:989 +#: libraries/messages.inc.php:985 msgid "The number of sorts that were done with ranges." msgstr "Број сортирања која су урађена са опсегом." -#: libraries/messages.inc.php:990 +#: libraries/messages.inc.php:986 msgid "The number of sorted rows." msgstr "Број сортираних редова." -#: libraries/messages.inc.php:991 +#: libraries/messages.inc.php:987 msgid "The number of sorts that were done by scanning the table." msgstr "Број сортирања до којих је дошло скенирањем табеле." -#: libraries/messages.inc.php:992 +#: libraries/messages.inc.php:988 msgid "The number of times that a table lock was acquired immediately." msgstr "Број пута када је брава за табелу одмах добављена." -#: libraries/messages.inc.php:993 +#: libraries/messages.inc.php:989 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -5884,7 +5884,7 @@ msgstr "" "би требало да оптимизујете своје упите а потом да или поделите табелу или " "табеле или да користите репликацију." -#: libraries/messages.inc.php:994 +#: libraries/messages.inc.php:990 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -5894,11 +5894,11 @@ msgstr "" "Threads_created/Конекције. Ако је ова вредност црвена требало би да повећате " "ваш thread_cache_size." -#: libraries/messages.inc.php:995 +#: libraries/messages.inc.php:991 msgid "The number of currently open connections." msgstr "Број тренутно отворених веза." -#: libraries/messages.inc.php:996 +#: libraries/messages.inc.php:992 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -5910,74 +5910,74 @@ msgstr "" "имплементацију нити, ово обично не доноси приметна побољшања у " "перформансама.)" -#: libraries/messages.inc.php:997 +#: libraries/messages.inc.php:993 msgid "The number of threads that are not sleeping." msgstr "Број нити које нису успаване." -#: libraries/messages.inc.php:999 tbl_printview.php:75 +#: libraries/messages.inc.php:995 tbl_printview.php:75 msgid "Show tables" msgstr "Прикажи табеле" -#: libraries/messages.inc.php:1000 libraries/sql_query_form.lib.php:396 +#: libraries/messages.inc.php:996 libraries/sql_query_form.lib.php:396 msgid " Show this query here again " msgstr "Прикажи поново овај упит" -#: libraries/messages.inc.php:1001 libraries/mysql_charsets.lib.php:217 +#: libraries/messages.inc.php:997 libraries/mysql_charsets.lib.php:217 #: libraries/mysql_charsets.lib.php:342 msgid "Simplified Chinese" msgstr "Поједностављени кинески" -#: libraries/messages.inc.php:1002 tbl_operations.php:258 +#: libraries/messages.inc.php:998 tbl_operations.php:258 msgid "(singly)" msgstr "(по једном пољу)" -#: libraries/messages.inc.php:1005 libraries/replication_gui.lib.php:52 +#: libraries/messages.inc.php:1001 libraries/replication_gui.lib.php:52 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" msgstr "" -#: libraries/messages.inc.php:1006 libraries/mysql_charsets.lib.php:283 +#: libraries/messages.inc.php:1002 libraries/mysql_charsets.lib.php:283 msgid "Slovak" msgstr "Словачки" -#: libraries/messages.inc.php:1007 libraries/mysql_charsets.lib.php:286 +#: libraries/messages.inc.php:1003 libraries/mysql_charsets.lib.php:286 msgid "Slovenian" msgstr "Словеначи" -#: libraries/messages.inc.php:1008 pmd_general.php:95 +#: libraries/messages.inc.php:1004 pmd_general.php:95 msgid "Small/Big All" msgstr "Све мало/велико" -#: libraries/messages.inc.php:1009 pmd_general.php:91 +#: libraries/messages.inc.php:1005 pmd_general.php:91 msgid "Snap to grid" msgstr "Држи се мреже" -#: libraries/messages.inc.php:1011 server_synchronize.php:1167 +#: libraries/messages.inc.php:1007 server_synchronize.php:1167 msgid "Socket" msgstr "" -#: libraries/messages.inc.php:1013 server_status.php:259 +#: libraries/messages.inc.php:1009 server_status.php:259 msgid "Sorting" msgstr "Сортирање" -#: libraries/messages.inc.php:1015 tbl_printview.php:310 tbl_structure.php:657 +#: libraries/messages.inc.php:1011 tbl_printview.php:310 tbl_structure.php:657 msgid "Space usage" msgstr "Заузеће" -#: libraries/messages.inc.php:1016 libraries/mysql_charsets.lib.php:289 +#: libraries/messages.inc.php:1012 libraries/mysql_charsets.lib.php:289 msgid "Spanish" msgstr "Шпански" -#: libraries/messages.inc.php:1019 +#: libraries/messages.inc.php:1015 msgid "Export type" msgstr "Тип извоза" -#: libraries/messages.inc.php:1020 +#: libraries/messages.inc.php:1016 msgid "Export time in UTC" msgstr "" -#: libraries/messages.inc.php:1021 libraries/sqlparser.lib.php:173 +#: libraries/messages.inc.php:1017 libraries/sqlparser.lib.php:173 msgid "" "There is a chance that you may have found a bug in the SQL parser. Please " "examine your query closely, and check that the quotes are correct and not " @@ -5999,7 +5999,7 @@ msgstr "" "ствара проблеме и пошаљите нам извештај о грешци са делом кода у доњој РЕЗ " "секцији:" -#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:137 +#: libraries/messages.inc.php:1018 libraries/sqlparser.lib.php:137 msgid "" "There seems to be an error in your SQL query. The MySQL server error output " "below, if there is any, may also help you in diagnosing the problem" @@ -6007,33 +6007,33 @@ msgstr "" "Изгледа да постоји грешка у вашем SQL упиту. Овде је порука о грешки MySQL " "сервера, која вам може помоћи у откривању проблема" -#: libraries/messages.inc.php:1026 libraries/sqlparser.lib.php:495 +#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:495 msgid "Invalid Identifer" msgstr "Неисправан иГ¤ентификатор" -#: libraries/messages.inc.php:1027 libraries/sqlparser.lib.php:344 +#: libraries/messages.inc.php:1023 libraries/sqlparser.lib.php:344 msgid "Unclosed quote" msgstr "Наводник није затворен" -#: libraries/messages.inc.php:1028 libraries/sqlparser.lib.php:612 +#: libraries/messages.inc.php:1024 libraries/sqlparser.lib.php:612 msgid "Unknown Punctuation String" msgstr "Непознат стринг интерпункције" -#: libraries/messages.inc.php:1030 server_replication.php:327 +#: libraries/messages.inc.php:1026 server_replication.php:327 #: server_replication.php:328 #, fuzzy msgid "Start" msgstr "Суб" -#: libraries/messages.inc.php:1033 tbl_printview.php:369 tbl_structure.php:729 +#: libraries/messages.inc.php:1029 tbl_printview.php:369 tbl_structure.php:729 msgid "Statements" msgstr "Име" -#: libraries/messages.inc.php:1034 tbl_printview.php:380 tbl_structure.php:741 +#: libraries/messages.inc.php:1030 tbl_printview.php:380 tbl_structure.php:741 msgid "static" msgstr "" -#: libraries/messages.inc.php:1035 server_status.php:388 +#: libraries/messages.inc.php:1031 server_status.php:388 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -6041,203 +6041,203 @@ msgstr "" "На запосленом серверу бројачи бајтова могу да се прелију (overrun), тако да " "те статистике, онако како их пријављује MySQL сервер, могу бити нетачне." -#: libraries/messages.inc.php:1038 server_replication.php:327 +#: libraries/messages.inc.php:1034 server_replication.php:327 #: server_replication.php:328 msgid "Stop" msgstr "" -#: libraries/messages.inc.php:1039 server_engines.php:49 +#: libraries/messages.inc.php:1035 server_engines.php:49 msgid "Storage Engines" msgstr "Погони складиштења" -#: libraries/messages.inc.php:1040 libraries/tbl_properties.inc.php:726 +#: libraries/messages.inc.php:1036 libraries/tbl_properties.inc.php:726 #: server_engines.php:58 tbl_operations.php:353 msgid "Storage Engine" msgstr "Погон складиштења" -#: libraries/messages.inc.php:1042 +#: libraries/messages.inc.php:1038 msgid "CSV for MS Excel" msgstr "CSV за MS Excel" -#: libraries/messages.inc.php:1044 tbl_structure.php:516 tbl_structure.php:518 +#: libraries/messages.inc.php:1040 tbl_structure.php:516 tbl_structure.php:518 msgid "Propose table structure" msgstr "Предложи структуру табеле" -#: libraries/messages.inc.php:1045 server_synchronize.php:424 +#: libraries/messages.inc.php:1041 server_synchronize.php:424 #: server_synchronize.php:867 #, fuzzy msgid "Structure Difference" msgstr "Структура за поглед (view)" -#: libraries/messages.inc.php:1049 server_synchronize.php:265 +#: libraries/messages.inc.php:1045 server_synchronize.php:265 msgid "Structure Synchronization" msgstr "" -#: libraries/messages.inc.php:1050 libraries/sql_query_form.lib.php:462 +#: libraries/messages.inc.php:1046 libraries/sql_query_form.lib.php:462 msgid "Submit" msgstr "Пошаљи" -#: libraries/messages.inc.php:1052 main.php:358 +#: libraries/messages.inc.php:1048 main.php:358 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " "issues." msgstr "" -#: libraries/messages.inc.php:1054 libraries/mysql_charsets.lib.php:295 +#: libraries/messages.inc.php:1050 libraries/mysql_charsets.lib.php:295 #: libraries/mysql_charsets.lib.php:392 msgid "Swedish" msgstr "Шведски" -#: libraries/messages.inc.php:1060 tbl_operations.php:556 +#: libraries/messages.inc.php:1056 tbl_operations.php:556 msgid "Switch to copied table" msgstr "Пређи на копирану табелу" -#: libraries/messages.inc.php:1061 server_synchronize.php:1213 +#: libraries/messages.inc.php:1057 server_synchronize.php:1213 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." msgstr "" -#: libraries/messages.inc.php:1062 server_synchronize.php:451 +#: libraries/messages.inc.php:1058 server_synchronize.php:451 #: server_synchronize.php:896 msgid "Synchronize Databases" msgstr "" -#: libraries/messages.inc.php:1063 libraries/server_links.inc.php:92 +#: libraries/messages.inc.php:1059 libraries/server_links.inc.php:92 #: server_synchronize.php:1092 server_synchronize.php:1100 msgid "Synchronize" msgstr "" -#: libraries/messages.inc.php:1065 server_synchronize.php:430 +#: libraries/messages.inc.php:1061 server_synchronize.php:430 #: server_synchronize.php:873 msgid "Add column(s)" msgstr "" -#: libraries/messages.inc.php:1066 tbl_create.php:62 +#: libraries/messages.inc.php:1062 tbl_create.php:62 #, php-format msgid "Table %s already exists!" msgstr "Табела %s већ постоји!" -#: libraries/messages.inc.php:1067 server_synchronize.php:432 +#: libraries/messages.inc.php:1063 server_synchronize.php:432 #: server_synchronize.php:875 msgid "Alter column(s)" msgstr "" -#: libraries/messages.inc.php:1068 tbl_addfield.php:189 tbl_alter.php:103 +#: libraries/messages.inc.php:1064 tbl_addfield.php:189 tbl_alter.php:103 #: tbl_indexes.php:98 #, fuzzy, php-format msgid "Table %1$s has been altered successfully" msgstr "Изабрани корисници су успешно обрисани." -#: libraries/messages.inc.php:1069 server_synchronize.php:434 +#: libraries/messages.inc.php:1065 server_synchronize.php:434 #: server_synchronize.php:877 msgid "Apply index(s)" msgstr "" -#: libraries/messages.inc.php:1071 server_synchronize.php:446 +#: libraries/messages.inc.php:1067 server_synchronize.php:446 #: server_synchronize.php:890 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: libraries/messages.inc.php:1072 tbl_move_copy.php:82 +#: libraries/messages.inc.php:1068 tbl_move_copy.php:82 msgid "The table name is empty!" msgstr "Има табеле је празно!" -#: libraries/messages.inc.php:1073 tbl_create.php:249 +#: libraries/messages.inc.php:1069 tbl_create.php:249 #, fuzzy, php-format msgid "Table %1$s has been created." msgstr "Табела %s је одбачена" -#: libraries/messages.inc.php:1076 tbl_operations.php:628 +#: libraries/messages.inc.php:1072 tbl_operations.php:628 #, php-format msgid "Table %s has been flushed" msgstr "Табела %s је освежена" -#: libraries/messages.inc.php:1077 server_synchronize.php:436 +#: libraries/messages.inc.php:1073 server_synchronize.php:436 #: server_synchronize.php:879 msgid "Insert row(s)" msgstr "" -#: libraries/messages.inc.php:1078 libraries/tbl_links.inc.php:107 +#: libraries/messages.inc.php:1074 libraries/tbl_links.inc.php:107 #: libraries/tbl_links.inc.php:140 libraries/tbl_links.inc.php:141 msgid "Table seems to be empty!" msgstr "Табела је изгледа празна!" -#: libraries/messages.inc.php:1079 tbl_operations.php:568 +#: libraries/messages.inc.php:1075 tbl_operations.php:568 msgid "Table maintenance" msgstr "Радње на табели" -#: libraries/messages.inc.php:1080 libraries/tbl_properties.inc.php:618 +#: libraries/messages.inc.php:1076 libraries/tbl_properties.inc.php:618 #: server_synchronize.php:428 server_synchronize.php:871 msgid "Table name" msgstr "Назив табеле" -#: libraries/messages.inc.php:1081 pdf_schema.php:1116 +#: libraries/messages.inc.php:1077 pdf_schema.php:1116 msgid "Table of contents" msgstr "Садржај" -#: libraries/messages.inc.php:1082 tbl_operations.php:334 +#: libraries/messages.inc.php:1078 tbl_operations.php:334 msgid "Table options" msgstr "Опције табеле" -#: libraries/messages.inc.php:1083 server_synchronize.php:431 +#: libraries/messages.inc.php:1079 server_synchronize.php:431 #: server_synchronize.php:874 msgid "Remove column(s)" msgstr "" -#: libraries/messages.inc.php:1084 server_synchronize.php:433 +#: libraries/messages.inc.php:1080 server_synchronize.php:433 #: server_synchronize.php:876 msgid "Remove index(s)" msgstr "" -#: libraries/messages.inc.php:1088 server_synchronize.php:435 +#: libraries/messages.inc.php:1084 server_synchronize.php:435 #: server_synchronize.php:878 msgid "Update row(s)" msgstr "" -#: libraries/messages.inc.php:1090 server_synchronize.php:942 +#: libraries/messages.inc.php:1086 server_synchronize.php:942 msgid "Target database has been synchronized with source database" msgstr "" -#: libraries/messages.inc.php:1091 server_privileges.php:392 +#: libraries/messages.inc.php:1087 server_privileges.php:392 #: server_privileges.php:527 server_privileges.php:1679 #: server_privileges.php:1685 msgid "Table-specific privileges" msgstr "Привилегије везане за табеле" -#: libraries/messages.inc.php:1092 server_status.php:254 +#: libraries/messages.inc.php:1088 server_status.php:254 msgid "Temporary data" msgstr "Привремени подаци" -#: libraries/messages.inc.php:1093 tbl_change.php:728 +#: libraries/messages.inc.php:1089 tbl_change.php:728 msgid " Because of its length,
this field might not be editable " msgstr "Због њехове величине, поље
можда нећете моћи да измените" -#: libraries/messages.inc.php:1094 +#: libraries/messages.inc.php:1090 msgid "Texy! text" msgstr "" -#: libraries/messages.inc.php:1095 libraries/mysql_charsets.lib.php:298 +#: libraries/messages.inc.php:1091 libraries/mysql_charsets.lib.php:298 #: libraries/mysql_charsets.lib.php:395 msgid "Thai" msgstr "Тајски" -#: libraries/messages.inc.php:1102 libraries/replication_gui.lib.php:308 +#: libraries/messages.inc.php:1098 libraries/replication_gui.lib.php:308 #: server_privileges.php:734 msgid "This Host" msgstr "Овај сервер" -#: libraries/messages.inc.php:1103 server_status.php:252 +#: libraries/messages.inc.php:1099 server_status.php:252 msgid "Threads" msgstr "Нити" -#: libraries/messages.inc.php:1104 server_processlist.php:22 +#: libraries/messages.inc.php:1100 server_processlist.php:22 #, php-format msgid "Thread %s was successfully killed." msgstr "Процес %s је успешно прекинут." -#: libraries/messages.inc.php:1106 +#: libraries/messages.inc.php:1102 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -6246,185 +6246,185 @@ msgstr "" "да phpMyAdmin неће бити у могућности да заврши овај увоз осим ако не " "повећате временска ограничења у PHP-у" -#: libraries/messages.inc.php:1109 pmd_pdf.php:94 +#: libraries/messages.inc.php:1105 pmd_pdf.php:94 msgid "to/from page" msgstr "од/до странице" -#: libraries/messages.inc.php:1110 pdf_pages.php:343 +#: libraries/messages.inc.php:1106 pdf_pages.php:343 msgid "Toggle scratchboard" msgstr "Укључи/искључи радну таблу" -#: libraries/messages.inc.php:1111 pmd_general.php:99 +#: libraries/messages.inc.php:1107 pmd_general.php:99 msgid "Toggle small/big" msgstr "Промени мало/велико" -#: libraries/messages.inc.php:1112 pmd_help.php:27 +#: libraries/messages.inc.php:1108 pmd_help.php:27 msgid "To select relation, click :" msgstr "Да одаберете релацију, кликните :" -#: libraries/messages.inc.php:1115 libraries/tbl_links.inc.php:149 +#: libraries/messages.inc.php:1111 libraries/tbl_links.inc.php:149 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" -#: libraries/messages.inc.php:1116 tbl_tracking.php:655 +#: libraries/messages.inc.php:1112 tbl_tracking.php:655 msgid "Activate now" msgstr "" -#: libraries/messages.inc.php:1117 tbl_tracking.php:653 +#: libraries/messages.inc.php:1113 tbl_tracking.php:653 #, php-format msgid "Activate tracking for %s.%s" msgstr "" -#: libraries/messages.inc.php:1118 tbl_tracking.php:221 +#: libraries/messages.inc.php:1114 tbl_tracking.php:221 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/messages.inc.php:1119 tbl_tracking.php:688 +#: libraries/messages.inc.php:1115 tbl_tracking.php:688 #, fuzzy msgid "Create version" msgstr "Направи релацију" -#: libraries/messages.inc.php:1120 tbl_tracking.php:668 +#: libraries/messages.inc.php:1116 tbl_tracking.php:668 #, php-format msgid "Create version %s of %s.%s" msgstr "" -#: libraries/messages.inc.php:1122 tbl_tracking.php:412 +#: libraries/messages.inc.php:1118 tbl_tracking.php:412 msgid "Data definition statement" msgstr "" -#: libraries/messages.inc.php:1123 tbl_tracking.php:463 +#: libraries/messages.inc.php:1119 tbl_tracking.php:463 msgid "Data manipulation statement" msgstr "" -#: libraries/messages.inc.php:1124 tbl_tracking.php:410 tbl_tracking.php:461 +#: libraries/messages.inc.php:1120 tbl_tracking.php:410 tbl_tracking.php:461 #, fuzzy msgid "Date" msgstr "Подаци" -#: libraries/messages.inc.php:1125 tbl_tracking.php:642 +#: libraries/messages.inc.php:1121 tbl_tracking.php:642 msgid "Deactivate now" msgstr "" -#: libraries/messages.inc.php:1126 tbl_tracking.php:640 +#: libraries/messages.inc.php:1122 tbl_tracking.php:640 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "" -#: libraries/messages.inc.php:1127 tbl_tracking.php:521 +#: libraries/messages.inc.php:1123 tbl_tracking.php:521 #, fuzzy, php-format msgid "Export as %s" msgstr "Тип извоза" -#: libraries/messages.inc.php:1130 tbl_tracking.php:251 tbl_tracking.php:379 +#: libraries/messages.inc.php:1126 tbl_tracking.php:251 tbl_tracking.php:379 msgid "Close" msgstr "" -#: libraries/messages.inc.php:1131 tbl_tracking.php:114 +#: libraries/messages.inc.php:1127 tbl_tracking.php:114 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/messages.inc.php:1133 tbl_tracking.php:397 tbl_tracking.php:504 +#: libraries/messages.inc.php:1129 tbl_tracking.php:397 tbl_tracking.php:504 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "" -#: libraries/messages.inc.php:1134 tbl_tracking.php:561 +#: libraries/messages.inc.php:1130 tbl_tracking.php:561 msgid "Show versions" msgstr "" -#: libraries/messages.inc.php:1135 tbl_tracking.php:507 +#: libraries/messages.inc.php:1131 tbl_tracking.php:507 msgid "SQL dump (file download)" msgstr "" -#: libraries/messages.inc.php:1136 tbl_tracking.php:508 +#: libraries/messages.inc.php:1132 tbl_tracking.php:508 msgid "SQL dump" msgstr "" -#: libraries/messages.inc.php:1137 tbl_tracking.php:213 +#: libraries/messages.inc.php:1133 tbl_tracking.php:213 msgid "SQL statements executed." msgstr "" -#: libraries/messages.inc.php:1138 +#: libraries/messages.inc.php:1134 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/messages.inc.php:1139 tbl_tracking.php:509 +#: libraries/messages.inc.php:1135 tbl_tracking.php:509 msgid "SQL execution" msgstr "" -#: libraries/messages.inc.php:1140 tbl_tracking.php:230 +#: libraries/messages.inc.php:1136 tbl_tracking.php:230 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/messages.inc.php:1141 tbl_tracking.php:381 +#: libraries/messages.inc.php:1137 tbl_tracking.php:381 msgid "Tracking statements" msgstr "" -#: libraries/messages.inc.php:1148 tbl_tracking.php:593 +#: libraries/messages.inc.php:1144 tbl_tracking.php:593 #, fuzzy msgid "Version" msgstr "Персијски" -#: libraries/messages.inc.php:1149 tbl_tracking.php:672 +#: libraries/messages.inc.php:1145 tbl_tracking.php:672 msgid "Track these data definition statements:" msgstr "" -#: libraries/messages.inc.php:1150 tbl_tracking.php:680 +#: libraries/messages.inc.php:1146 tbl_tracking.php:680 msgid "Track these data manipulation statements:" msgstr "" -#: libraries/messages.inc.php:1155 tbl_tracking.php:411 tbl_tracking.php:462 +#: libraries/messages.inc.php:1151 tbl_tracking.php:411 tbl_tracking.php:462 #, fuzzy msgid "Username" msgstr "Корисничко име:" -#: libraries/messages.inc.php:1156 tbl_tracking.php:203 +#: libraries/messages.inc.php:1152 tbl_tracking.php:203 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "" -#: libraries/messages.inc.php:1157 tbl_tracking.php:187 +#: libraries/messages.inc.php:1153 tbl_tracking.php:187 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "" -#: libraries/messages.inc.php:1158 tbl_tracking.php:195 +#: libraries/messages.inc.php:1154 tbl_tracking.php:195 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "" -#: libraries/messages.inc.php:1159 tbl_tracking.php:262 +#: libraries/messages.inc.php:1155 tbl_tracking.php:262 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/messages.inc.php:1161 tbl_tracking.php:220 +#: libraries/messages.inc.php:1157 tbl_tracking.php:220 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/messages.inc.php:1162 libraries/mysql_charsets.lib.php:219 +#: libraries/messages.inc.php:1158 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:362 msgid "Traditional Chinese" msgstr "Традиционални кинески" -#: libraries/messages.inc.php:1163 libraries/mysql_charsets.lib.php:292 +#: libraries/messages.inc.php:1159 libraries/mysql_charsets.lib.php:292 msgid "Traditional Spanish" msgstr "Традиционални шпански" -#: libraries/messages.inc.php:1164 server_status.php:388 +#: libraries/messages.inc.php:1160 server_status.php:388 msgid "Traffic" msgstr "Саобраћај" -#: libraries/messages.inc.php:1165 server_status.php:261 +#: libraries/messages.inc.php:1161 server_status.php:261 msgid "Transaction coordinator" msgstr "Координатор трансакција" -#: libraries/messages.inc.php:1166 +#: libraries/messages.inc.php:1162 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 " @@ -6436,7 +6436,7 @@ msgstr "" "име датотеке. Ако дате другу опцију, прва мора бити постављена на празан " "стринг" -#: libraries/messages.inc.php:1167 +#: libraries/messages.inc.php:1163 msgid "" "Displays hexadecimal representation of data. Optional first parameter " "specifies how often space will be added (defaults to 2 nibbles)." @@ -6444,7 +6444,7 @@ msgstr "" "Приказује хексадецимални приказ података. Опциони први параметар одређује " "колико често се додаје празно место (подразумевано свака 2 нибла)." -#: libraries/messages.inc.php:1168 +#: libraries/messages.inc.php:1164 msgid "" "Displays a clickable thumbnail. The options are the maximum width and height " "in pixels. The original aspect ratio is preserved." @@ -6452,15 +6452,15 @@ msgstr "" "Приказује умањену слику на коју је могуће кликнути; опције: ширина, висина у " "пикселима (чува оригинални однос)" -#: libraries/messages.inc.php:1169 +#: libraries/messages.inc.php:1165 msgid "Displays a link to download this image." msgstr "Приказује линк ка овој снимци (нпр. директно преузимање из BLOB-а)." -#: libraries/messages.inc.php:1170 +#: libraries/messages.inc.php:1166 msgid "See image/jpeg: inline" msgstr "Прикажи JPEG слике на страни" -#: libraries/messages.inc.php:1171 +#: libraries/messages.inc.php:1167 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 " @@ -6480,7 +6480,7 @@ msgstr "" "вредности - за \"local\" погледајте PHP-ову документацију за функцију " "strftime() док је за \"utc\" то урађено коришћењем фукције gmdate()." -#: libraries/messages.inc.php:1172 +#: libraries/messages.inc.php:1168 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 " @@ -6503,13 +6503,13 @@ msgstr "" "1). Ако је четврти параметар постављен на 1, NOWRAP ће бити додато ћелији са " "садржајем тако да ће излаз бити приказан без измена. (подразумевано 1)" -#: libraries/messages.inc.php:1173 +#: libraries/messages.inc.php:1169 msgid "" "Displays the contents of the field as-is, without running it through " "htmlspecialchars(). That is, the field is assumed to contain valid HTML." msgstr "Чува оригинално форматирање поља. Escaping се не врши." -#: libraries/messages.inc.php:1174 +#: libraries/messages.inc.php:1170 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 " @@ -6519,7 +6519,7 @@ msgstr "" "као \"http://domain.com/\", друга опција је ширина у пикселима, трећа је " "висина." -#: libraries/messages.inc.php:1175 +#: libraries/messages.inc.php:1171 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 " @@ -6528,11 +6528,11 @@ msgstr "" "Приказује линк, поље садржи назив датотеке; прва опција је префикс као " "\"http://domain.com/\", друга опција је наслов за линк." -#: libraries/messages.inc.php:1176 +#: libraries/messages.inc.php:1172 msgid "Formats text as SQL query with syntax highlighting." msgstr "Форматира текст као SQL упит са обележавањем синтаксе." -#: libraries/messages.inc.php:1177 +#: libraries/messages.inc.php:1173 msgid "" "Displays a part of a string. The first option is the number of characters to " "skip from the beginning of the string (Default 0). The second option is the " @@ -6545,70 +6545,70 @@ msgstr "" "(подразумевано: до краја стринга). Трећа опција је стринг који се додаје " "када дође до одсецања (подразумевано: ...) ." -#: libraries/messages.inc.php:1179 server_binlog.php:183 server_binlog.php:186 +#: libraries/messages.inc.php:1175 server_binlog.php:183 server_binlog.php:186 #: server_processlist.php:49 server_processlist.php:51 msgid "Truncate Shown Queries" msgstr "Прикажи скраћене упите" -#: libraries/messages.inc.php:1180 libraries/mysql_charsets.lib.php:301 +#: libraries/messages.inc.php:1176 libraries/mysql_charsets.lib.php:301 #: libraries/mysql_charsets.lib.php:389 msgid "Turkish" msgstr "Турски" -#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:304 +#: libraries/messages.inc.php:1179 libraries/mysql_charsets.lib.php:304 #: libraries/mysql_charsets.lib.php:386 msgid "Ukrainian" msgstr "Украјински" -#: libraries/messages.inc.php:1185 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:1181 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 msgid "Unicode" msgstr "Уникод" -#: libraries/messages.inc.php:1187 libraries/mysql_charsets.lib.php:398 +#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:398 #: libraries/mysql_charsets.lib.php:405 msgid "unknown" msgstr "непознат" -#: libraries/messages.inc.php:1190 server_privileges.php:1152 +#: libraries/messages.inc.php:1186 server_privileges.php:1152 #, php-format msgid "You have updated the privileges for %s." msgstr "Ажурирали сте привилегије за %s." -#: libraries/messages.inc.php:1191 user_password.php:112 +#: libraries/messages.inc.php:1187 user_password.php:112 msgid "The profile has been updated." msgstr "Профил је промењен." -#: libraries/messages.inc.php:1193 libraries/relation.lib.php:138 +#: libraries/messages.inc.php:1189 libraries/relation.lib.php:138 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "Молимо погледајте у документацији како се ажурира табела Column_comments" -#: libraries/messages.inc.php:1194 +#: libraries/messages.inc.php:1190 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Требало би да унапредите ваш %s сервер на верзију %s или новију." -#: libraries/messages.inc.php:1204 tbl_printview.php:314 tbl_structure.php:661 +#: libraries/messages.inc.php:1200 tbl_printview.php:314 tbl_structure.php:661 msgid "Usage" msgstr "Заузеће" -#: libraries/messages.inc.php:1205 +#: libraries/messages.inc.php:1201 msgid "Enclose table and field names with backquotes" msgstr "Користи ' за ограничавање имена поља" -#: libraries/messages.inc.php:1206 libraries/replication_gui.lib.php:314 +#: libraries/messages.inc.php:1202 libraries/replication_gui.lib.php:314 #: server_privileges.php:740 msgid "Use Host Table" msgstr "Користи табелу домаћина" -#: libraries/messages.inc.php:1207 server_privileges.php:848 +#: libraries/messages.inc.php:1203 server_privileges.php:848 #, php-format msgid "The user %s already exists!" msgstr "Корисник %s већ постоји!" -#: libraries/messages.inc.php:1209 libraries/replication_gui.lib.php:55 +#: libraries/messages.inc.php:1205 libraries/replication_gui.lib.php:55 #: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245 #: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255 #: server_privileges.php:672 server_privileges.php:675 @@ -6616,37 +6616,37 @@ msgstr "Корисник %s већ постоји!" msgid "User name" msgstr "Име корисника" -#: libraries/messages.inc.php:1210 server_privileges.php:1645 +#: libraries/messages.inc.php:1206 server_privileges.php:1645 msgid "The selected user was not found in the privilege table." msgstr "Изабрани корисник није пронађен у табели привилегија." -#: libraries/messages.inc.php:1211 server_privileges.php:1365 +#: libraries/messages.inc.php:1207 server_privileges.php:1365 msgid "User overview" msgstr "Преглед корисника" -#: libraries/messages.inc.php:1212 server_privileges.php:1261 +#: libraries/messages.inc.php:1208 server_privileges.php:1261 msgid "The selected users have been deleted successfully." msgstr "Изабрани корисници су успешно обрисани." -#: libraries/messages.inc.php:1213 server_privileges.php:2026 +#: libraries/messages.inc.php:1209 server_privileges.php:2026 #, php-format msgid "Users having access to "%s"" msgstr "Корисници који имају приступ "%s"" -#: libraries/messages.inc.php:1214 main.php:189 server_privileges.php:1350 +#: libraries/messages.inc.php:1210 main.php:189 server_privileges.php:1350 #: server_privileges.php:1497 server_privileges.php:1611 #: server_privileges.php:2029 server_processlist.php:54 msgid "User" msgstr "Корисник" -#: libraries/messages.inc.php:1215 tbl_change.php:1171 +#: libraries/messages.inc.php:1211 tbl_change.php:1171 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Користите TAB тастер за померање од поља до поља, или CTRL+стрелице за " "слободно померање" -#: libraries/messages.inc.php:1217 libraries/replication_gui.lib.php:251 +#: libraries/messages.inc.php:1213 libraries/replication_gui.lib.php:251 #: libraries/replication_gui.lib.php:319 libraries/replication_gui.lib.php:342 #: server_privileges.php:678 server_privileges.php:745 #: server_privileges.php:769 server_privileges.php:1889 @@ -6654,7 +6654,7 @@ msgstr "" msgid "Use text field" msgstr "Користи текст поље" -#: libraries/messages.inc.php:1221 libraries/sqlvalidator.lib.php:68 +#: libraries/messages.inc.php:1217 libraries/sqlvalidator.lib.php:68 #, php-format msgid "" "The SQL validator could not be initialized. Please check if you have " @@ -6663,88 +6663,88 @@ msgstr "" "SQL валидатор није могао да буде покренут. Проверите да ли су инсталиране " "неопходне PHP екстензије описане у %sдокументацији%s." -#: libraries/messages.inc.php:1222 libraries/replication_gui.lib.php:111 +#: libraries/messages.inc.php:1218 libraries/replication_gui.lib.php:111 #: server_status.php:627 tbl_change.php:324 tbl_printview.php:370 #: tbl_select.php:139 tbl_structure.php:730 msgid "Value" msgstr "Вредност" -#: libraries/messages.inc.php:1223 libraries/replication_gui.lib.php:110 +#: libraries/messages.inc.php:1219 libraries/replication_gui.lib.php:110 #: libraries/sql_query_form.lib.php:445 server_status.php:626 #: server_variables.php:52 msgid "Variable" msgstr "Променљива" -#: libraries/messages.inc.php:1225 server_export.php:21 +#: libraries/messages.inc.php:1221 server_export.php:21 msgid "View dump (schema) of databases" msgstr "Прикажи садржај (схему) базе" -#: libraries/messages.inc.php:1227 tbl_export.php:23 +#: libraries/messages.inc.php:1223 tbl_export.php:23 msgid "View dump (schema) of table" msgstr "Прикажи садржај (схему) табеле" -#: libraries/messages.inc.php:1231 view_create.php:142 +#: libraries/messages.inc.php:1227 view_create.php:142 msgid "VIEW name" msgstr "назив за VIEW" -#: libraries/messages.inc.php:1237 main.php:205 +#: libraries/messages.inc.php:1233 main.php:205 msgid "Web server" msgstr "" -#: libraries/messages.inc.php:1239 libraries/mysql_charsets.lib.php:277 +#: libraries/messages.inc.php:1235 libraries/mysql_charsets.lib.php:277 #: libraries/mysql_charsets.lib.php:325 msgid "West European" msgstr "Западноевропски" -#: libraries/messages.inc.php:1240 main.php:230 +#: libraries/messages.inc.php:1236 main.php:230 msgid "Wiki" msgstr "" -#: libraries/messages.inc.php:1241 server_privileges.php:2138 +#: libraries/messages.inc.php:1237 server_privileges.php:2138 msgid "wildcard" msgstr "џокер" -#: libraries/messages.inc.php:1248 +#: libraries/messages.inc.php:1244 #, fuzzy msgid "Export contents" msgstr "Тип извоза" -#: libraries/messages.inc.php:1249 +#: libraries/messages.inc.php:1245 msgid "Export functions" msgstr "" -#: libraries/messages.inc.php:1250 +#: libraries/messages.inc.php:1246 msgid "Export procedures" msgstr "" -#: libraries/messages.inc.php:1251 +#: libraries/messages.inc.php:1247 msgid "Export Structure Schemas (recommended)" msgstr "" -#: libraries/messages.inc.php:1252 +#: libraries/messages.inc.php:1248 #, fuzzy msgid "Export tables" msgstr "Тип извоза" -#: libraries/messages.inc.php:1253 +#: libraries/messages.inc.php:1249 #, fuzzy msgid "Export triggers" msgstr "Тип извоза" -#: libraries/messages.inc.php:1254 +#: libraries/messages.inc.php:1250 #, fuzzy msgid "Export views" msgstr "Тип извоза" -#: libraries/messages.inc.php:1255 +#: libraries/messages.inc.php:1251 msgid "XML" msgstr "XML" -#: libraries/messages.inc.php:1259 server_privileges.php:592 +#: libraries/messages.inc.php:1255 server_privileges.php:592 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Напомена: Постављање ових опција на 0 (нулу) уклања ограничења." -#: libraries/messages.inc.php:1260 +#: libraries/messages.inc.php:1256 msgid "\"zipped\"" msgstr "\"зиповано\"" diff --git a/po/sr@latin.po b/po/sr@latin.po index 56549387f..6c77c9ec5 100644 --- 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-05-13 11:25+0200\n" +"POT-Creation-Date: 2010-05-13 11:30+0200\n" "PO-Revision-Date: 2010-03-30 23:47+0200\n" "Last-Translator: Michal \n" "Language-Team: serbian_latin \n" @@ -16,19 +16,19 @@ msgstr "" "X-Generator: Pootle 2.0.1\n" #: browse_foreigners.php:38 browse_foreigners.php:59 -#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:870 +#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:866 #: server_privileges.php:1475 msgid "Show all" msgstr "Prikaži sve" #: browse_foreigners.php:82 db_operations.php:648 -#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:394 -#: libraries/export/pdf.php:147 libraries/messages.inc.php:597 +#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394 +#: libraries/export/pdf.php:147 libraries/messages.inc.php:593 #: pdf_schema.php:283 pdf_schema.php:1123 pdf_schema.php:1139 msgid "Page number:" msgstr "Broj strane:" -#: browse_foreigners.php:132 libraries/messages.inc.php:1242 +#: browse_foreigners.php:132 libraries/messages.inc.php:1238 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -41,7 +41,7 @@ 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/db_links.inc.php:75 -#: libraries/messages.inc.php:841 libraries/tbl_links.inc.php:63 +#: libraries/messages.inc.php:837 libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Pretraživanje" @@ -50,12 +50,12 @@ msgstr "Pretraživanje" #: db_search.php:362 db_structure.php:567 js/messages.php:48 #: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2267 +#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 #: 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 #: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614 -#: libraries/messages.inc.php:361 libraries/replication_gui.lib.php:73 +#: libraries/messages.inc.php:357 libraries/replication_gui.lib.php:73 #: libraries/replication_gui.lib.php:365 libraries/select_server.lib.php:104 #: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477 #: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782 @@ -75,33 +75,33 @@ msgid "Go" msgstr "Kreni" #: browse_foreigners.php:168 browse_foreigners.php:172 -#: libraries/Index.class.php:442 libraries/messages.inc.php:459 +#: libraries/Index.class.php:442 libraries/messages.inc.php:455 #: tbl_tracking.php:320 msgid "Keyname" msgstr "Ime ključa" #: browse_foreigners.php:169 browse_foreigners.php:171 -#: libraries/messages.inc.php:252 server_collations.php:55 +#: libraries/messages.inc.php:248 server_collations.php:55 #: server_collations.php:67 server_engines.php:59 server_status.php:628 msgid "Description" msgstr "Opis" #: browse_foreigners.php:247 browse_foreigners.php:256 #: browse_foreigners.php:268 browse_foreigners.php:276 -#: libraries/messages.inc.php:1218 +#: libraries/messages.inc.php:1214 msgid "Use this value" msgstr "Koristi ovu vrednost" -#: db_create.php:46 libraries/messages.inc.php:215 +#: db_create.php:46 libraries/messages.inc.php:211 #, fuzzy, php-format msgid "Database %1$s has been created." msgstr "Baza %s je odbačena." -#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:232 +#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:228 msgid "Database comment: " msgstr "Komentar baze:" -#: db_datadict.php:165 libraries/messages.inc.php:1070 +#: db_datadict.php:165 libraries/messages.inc.php:1066 #: libraries/tbl_properties.inc.php:724 pdf_schema.php:1236 #: tbl_operations.php:345 tbl_printview.php:130 msgid "Table comments" @@ -110,7 +110,7 @@ msgstr "Komentari tabele" #: db_datadict.php:174 db_qbe.php:174 libraries/Index.class.php:446 #: libraries/export/htmlword.php:244 libraries/export/latex.php:360 #: libraries/export/odt.php:294 libraries/export/texytext.php:233 -#: libraries/messages.inc.php:317 libraries/tbl_properties.inc.php:99 +#: libraries/messages.inc.php:313 libraries/tbl_properties.inc.php:99 #: libraries/tbl_properties.inc.php:275 pdf_schema.php:1262 #: pdf_schema.php:1283 tbl_change.php:308 tbl_indexes.php:189 #: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135 @@ -122,7 +122,7 @@ msgstr "Polje" #: libraries/db_events.inc.php:31 libraries/db_routines.inc.php:42 #: 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/messages.inc.php:1181 +#: libraries/export/texytext.php:234 libraries/messages.inc.php:1177 #: libraries/tbl_properties.inc.php:100 pdf_schema.php:1263 #: pdf_schema.php:1284 server_privileges.php:2031 tbl_change.php:287 #: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313 @@ -134,7 +134,7 @@ msgstr "Tip" #: db_datadict.php:177 libraries/Index.class.php:449 #: libraries/export/htmlword.php:246 libraries/export/latex.php:360 #: libraries/export/odt.php:300 libraries/export/texytext.php:235 -#: libraries/messages.inc.php:576 libraries/tbl_properties.inc.php:109 +#: libraries/messages.inc.php:572 libraries/tbl_properties.inc.php:109 #: pdf_schema.php:1265 pdf_schema.php:1286 tbl_change.php:323 #: tbl_printview.php:145 tbl_structure.php:181 tbl_tracking.php:276 #: tbl_tracking.php:327 @@ -143,7 +143,7 @@ msgstr "Null" #: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 -#: libraries/export/texytext.php:236 libraries/messages.inc.php:238 +#: libraries/export/texytext.php:236 libraries/messages.inc.php:234 #: libraries/tbl_properties.inc.php:106 pdf_schema.php:1266 #: pdf_schema.php:1287 tbl_printview.php:146 tbl_structure.php:182 #: tbl_tracking.php:277 @@ -152,14 +152,14 @@ msgstr "Podrazumevano" #: db_datadict.php:182 libraries/export/htmlword.php:249 #: libraries/export/latex.php:362 libraries/export/odt.php:307 -#: libraries/export/texytext.php:238 libraries/messages.inc.php:483 +#: libraries/export/texytext.php:238 libraries/messages.inc.php:479 #: pdf_schema.php:1268 pdf_schema.php:1289 tbl_printview.php:150 msgid "Links to" msgstr "Veze ka" #: db_datadict.php:184 db_printview.php:112 libraries/export/htmlword.php:252 #: libraries/export/latex.php:365 libraries/export/odt.php:312 -#: libraries/export/texytext.php:241 libraries/messages.inc.php:163 +#: libraries/export/texytext.php:241 libraries/messages.inc.php:159 #: libraries/tbl_properties.inc.php:130 pdf_schema.php:1279 #: pdf_schema.php:1290 tbl_printview.php:152 msgid "Comments" @@ -168,7 +168,7 @@ msgstr "Komentari" #: db_datadict.php:267 libraries/Index.class.php:359 #: 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/messages.inc.php:559 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:555 #: libraries/mult_submits.inc.php:263 pdf_schema.php:1344 #: server_privileges.php:1529 server_privileges.php:1540 #: server_privileges.php:1850 server_privileges.php:1855 @@ -180,7 +180,7 @@ msgstr "Ne" #: db_datadict.php:267 libraries/Index.class.php:360 #: libraries/Index.class.php:385 libraries/export/htmlword.php:322 #: libraries/export/latex.php:430 libraries/export/odt.php:368 -#: libraries/export/texytext.php:311 libraries/messages.inc.php:1257 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:1253 #: libraries/mult_submits.inc.php:45 libraries/mult_submits.inc.php:50 #: libraries/mult_submits.inc.php:55 libraries/mult_submits.inc.php:60 #: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:101 @@ -194,108 +194,108 @@ msgstr "Ne" msgid "Yes" msgstr "Da" -#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:670 +#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:666 #: tbl_printview.php:498 msgid "Print" msgstr "Štampaj" -#: db_export.php:29 libraries/messages.inc.php:1226 +#: db_export.php:29 libraries/messages.inc.php:1222 msgid "View dump (schema) of database" msgstr "Prikaži sadržaj (shemu) baze" #: db_export.php:33 db_printview.php:96 db_qbe.php:102 db_structure.php:51 -#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:568 +#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:564 #: navigation.php:346 msgid "No tables found in database." msgstr "Tabele nisu pronađene u bazi." -#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:845 +#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:841 #: server_export.php:27 msgid "Select All" msgstr "Izaberi sve" -#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1188 +#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1184 #: server_export.php:29 msgid "Unselect All" msgstr "ništa" -#: db_operations.php:38 libraries/messages.inc.php:213 tbl_create.php:54 +#: db_operations.php:38 libraries/messages.inc.php:209 tbl_create.php:54 msgid "The database name is empty!" msgstr "Ime baze nije zadato!" -#: db_operations.php:236 libraries/messages.inc.php:753 +#: db_operations.php:236 libraries/messages.inc.php:749 #, php-format msgid "Database %s has been renamed to %s" msgstr "Baza %s je preimenovana u %s" -#: db_operations.php:240 libraries/messages.inc.php:178 +#: db_operations.php:240 libraries/messages.inc.php:174 #, php-format msgid "Database %s has been copied to %s" msgstr "Baza %s je prekopirana u %s" -#: db_operations.php:410 libraries/messages.inc.php:236 +#: db_operations.php:410 libraries/messages.inc.php:232 msgid "Rename database to" msgstr "Preimenuj bazu u" -#: db_operations.php:415 libraries/messages.inc.php:161 +#: db_operations.php:415 libraries/messages.inc.php:157 #: server_processlist.php:57 msgid "Command" msgstr "Naredba" -#: db_operations.php:425 libraries/messages.inc.php:58 tbl_change.php:1143 +#: db_operations.php:425 libraries/messages.inc.php:54 tbl_change.php:1143 msgid "and then" msgstr "i onda" -#: db_operations.php:451 libraries/messages.inc.php:233 +#: db_operations.php:451 libraries/messages.inc.php:229 msgid "Copy database to" msgstr "Kopiraj bazu u" -#: db_operations.php:458 libraries/messages.inc.php:1043 +#: db_operations.php:458 libraries/messages.inc.php:1039 #: tbl_operations.php:526 tbl_tracking.php:388 msgid "Structure only" msgstr "Samo struktura" -#: db_operations.php:459 libraries/messages.inc.php:1041 +#: db_operations.php:459 libraries/messages.inc.php:1037 #: tbl_operations.php:527 tbl_tracking.php:390 msgid "Structure and data" msgstr "Struktura i podaci" -#: db_operations.php:460 libraries/messages.inc.php:229 tbl_operations.php:528 +#: db_operations.php:460 libraries/messages.inc.php:225 tbl_operations.php:528 #: tbl_tracking.php:389 msgid "Data only" msgstr "Samo podaci" -#: db_operations.php:468 libraries/messages.inc.php:186 +#: db_operations.php:468 libraries/messages.inc.php:182 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE pre kopiranja" #: db_operations.php:471 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 -#: libraries/export/sql.php:82 libraries/messages.inc.php:30 +#: libraries/export/sql.php:82 libraries/messages.inc.php:26 #: tbl_operations.php:534 #, php-format msgid "Add %s" msgstr "Dodaj %s" -#: db_operations.php:475 libraries/messages.inc.php:29 tbl_operations.php:297 +#: db_operations.php:475 libraries/messages.inc.php:25 tbl_operations.php:297 #: tbl_operations.php:536 msgid "Add AUTO_INCREMENT value" msgstr "Dodaj AUTO_INCREMENT vrednost" -#: db_operations.php:479 libraries/messages.inc.php:31 tbl_operations.php:543 +#: db_operations.php:479 libraries/messages.inc.php:27 tbl_operations.php:543 msgid "Add constraints" msgstr "Dodaj ograničenja" -#: db_operations.php:492 libraries/messages.inc.php:1059 +#: db_operations.php:492 libraries/messages.inc.php:1055 msgid "Switch to copied database" msgstr "Prebaci se na kopiranu bazu" -#: db_operations.php:533 libraries/messages.inc.php:89 +#: db_operations.php:533 libraries/messages.inc.php:85 msgid "BLOB Repository" msgstr "" #: db_operations.php:536 db_tracking.php:76 libraries/common.lib.php:1350 -#: libraries/messages.inc.php:1037 libraries/server_links.inc.php:49 +#: libraries/messages.inc.php:1033 libraries/server_links.inc.php:49 #: server_processlist.php:59 tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "Status" @@ -307,12 +307,12 @@ msgctxt "BLOB repository" msgid "Enabled" msgstr "Omogućeno" -#: db_operations.php:548 libraries/messages.inc.php:93 +#: db_operations.php:548 libraries/messages.inc.php:89 #, fuzzy msgid "Disable" msgstr "Onemogućeno" -#: db_operations.php:558 libraries/messages.inc.php:90 +#: db_operations.php:558 libraries/messages.inc.php:86 msgid "Damaged" msgstr "" @@ -329,13 +329,13 @@ msgctxt "BLOB repository" msgid "Disabled" msgstr "Onemogućeno" -#: db_operations.php:574 libraries/messages.inc.php:96 +#: db_operations.php:574 libraries/messages.inc.php:92 #, fuzzy msgid "Enable" msgstr "Omogućeno" #: db_operations.php:598 libraries/Index.class.php:448 -#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:158 +#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:154 #: 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:361 @@ -344,7 +344,7 @@ msgstr "Omogućeno" msgid "Collation" msgstr "Sortiranje" -#: db_operations.php:609 libraries/messages.inc.php:742 main.php:316 +#: db_operations.php:609 libraries/messages.inc.php:738 main.php:316 #: pdf_schema.php:34 #, php-format msgid "" @@ -354,58 +354,58 @@ msgstr "" "Dodatne mogućnosti za rad sa povezanim tabelama su isključene. Da biste " "saznali zašto, kliknite %sovde%s." -#: db_operations.php:645 libraries/messages.inc.php:264 pdf_pages.php:528 +#: db_operations.php:645 libraries/messages.inc.php:260 pdf_pages.php:528 msgid "Display PDF schema" msgstr "Prikaži PDF shemu" -#: db_operations.php:661 libraries/messages.inc.php:877 pdf_pages.php:529 +#: db_operations.php:661 libraries/messages.inc.php:873 pdf_pages.php:529 msgid "Show grid" msgstr "Prikaži mrežu" -#: db_operations.php:664 libraries/messages.inc.php:874 pdf_pages.php:530 +#: db_operations.php:664 libraries/messages.inc.php:870 pdf_pages.php:530 msgid "Show color" msgstr "Prikaži boju" -#: db_operations.php:666 libraries/messages.inc.php:998 pdf_pages.php:531 +#: db_operations.php:666 libraries/messages.inc.php:994 pdf_pages.php:531 msgid "Show dimension of tables" msgstr "Prikaži dimenzije tabele" -#: db_operations.php:669 libraries/messages.inc.php:52 pdf_pages.php:532 +#: db_operations.php:669 libraries/messages.inc.php:48 pdf_pages.php:532 msgid "Display all tables with the same width" msgstr "Prikaz svih tabela iste širine?" -#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:227 +#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:223 #: pdf_pages.php:533 msgid "Data Dictionary" msgstr "Rečnik podataka" -#: db_operations.php:674 libraries/messages.inc.php:884 pdf_pages.php:534 +#: db_operations.php:674 libraries/messages.inc.php:880 pdf_pages.php:534 msgid "Only show keys" msgstr "" -#: db_operations.php:676 libraries/messages.inc.php:875 pdf_pages.php:535 +#: db_operations.php:676 libraries/messages.inc.php:871 pdf_pages.php:535 msgid "Data Dictionary Format" msgstr "Format rečnika podataka" -#: db_operations.php:678 libraries/messages.inc.php:464 pdf_pages.php:537 +#: db_operations.php:678 libraries/messages.inc.php:460 pdf_pages.php:537 msgid "Landscape" msgstr "Položeno" -#: db_operations.php:679 libraries/messages.inc.php:663 pdf_pages.php:538 +#: db_operations.php:679 libraries/messages.inc.php:659 pdf_pages.php:538 msgid "Portrait" msgstr "Uspravno" -#: db_operations.php:682 libraries/messages.inc.php:599 pdf_pages.php:541 +#: db_operations.php:682 libraries/messages.inc.php:595 pdf_pages.php:541 msgid "Paper size" msgstr "Dimenzije papira" -#: db_operations.php:706 libraries/messages.inc.php:281 +#: db_operations.php:706 libraries/messages.inc.php:277 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 libraries/messages.inc.php:1087 +#: libraries/header.inc.php:126 libraries/messages.inc.php:1083 #: pdf_pages.php:405 server_privileges.php:1626 server_privileges.php:1682 #: server_privileges.php:1946 server_synchronize.php:423 #: server_synchronize.php:866 tbl_tracking.php:592 test/theme.php:75 @@ -413,176 +413,176 @@ msgid "Table" msgstr "Tabela" #: db_printview.php:105 libraries/db_structure.lib.php:56 -#: libraries/messages.inc.php:735 +#: libraries/messages.inc.php:731 msgid "Records" msgstr "Zapisi" #: db_printview.php:109 libraries/db_structure.lib.php:67 -#: libraries/messages.inc.php:1003 tbl_indexes.php:190 +#: libraries/messages.inc.php:999 tbl_indexes.php:190 msgid "Size" msgstr "Veličina" #: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 -#: libraries/export/sql.php:899 libraries/messages.inc.php:436 +#: libraries/export/sql.php:899 libraries/messages.inc.php:432 msgid "in use" msgstr "se koristi" #: db_printview.php:187 libraries/db_info.inc.php:88 -#: libraries/export/sql.php:514 libraries/messages.inc.php:1032 +#: libraries/export/sql.php:514 libraries/messages.inc.php:1028 #: pdf_schema.php:1241 tbl_printview.php:434 tbl_structure.php:810 msgid "Creation" msgstr "Napravljeno" #: db_printview.php:196 libraries/db_info.inc.php:93 -#: libraries/export/sql.php:519 libraries/messages.inc.php:1036 +#: libraries/export/sql.php:519 libraries/messages.inc.php:1032 #: pdf_schema.php:1246 tbl_printview.php:444 tbl_structure.php:818 msgid "Last update" msgstr "Poslednja izmena" #: db_printview.php:205 libraries/db_info.inc.php:98 -#: libraries/export/sql.php:524 libraries/messages.inc.php:1031 +#: libraries/export/sql.php:524 libraries/messages.inc.php:1027 #: pdf_schema.php:1251 tbl_printview.php:454 tbl_structure.php:826 msgid "Last check" msgstr "Poslednja provera" -#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1085 +#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1081 #, php-format msgid "%s table(s)" msgstr "%s tabela" #: db_qbe.php:29 libraries/display_tbl.lib.php:1981 -#: libraries/messages.inc.php:1051 libraries/sql_query_form.lib.php:140 +#: libraries/messages.inc.php:1047 libraries/sql_query_form.lib.php:140 #: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131 #: view_operations.php:62 msgid "Your SQL query has been executed successfully" msgstr "Vaš SQL upit je uspešno izvršen" -#: db_qbe.php:42 libraries/messages.inc.php:371 +#: db_qbe.php:42 libraries/messages.inc.php:367 msgid "You have to choose at least one column to display" msgstr "Morate izabrati bar jednu kolonu za prikaz" #: db_qbe.php:200 libraries/db_structure.lib.php:104 -#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1014 +#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1010 msgid "Sort" msgstr "Sortiranje" #: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111 #: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828 -#: libraries/messages.inc.php:69 server_databases.php:170 +#: libraries/messages.inc.php:65 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314 msgid "Ascending" msgstr "Rastući" #: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119 #: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825 -#: libraries/messages.inc.php:251 server_databases.php:170 +#: libraries/messages.inc.php:247 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315 msgid "Descending" msgstr "Opadajući" #: db_qbe.php:264 db_tracking.php:78 libraries/display_tbl.lib.php:308 -#: libraries/messages.inc.php:888 tbl_change.php:277 tbl_tracking.php:597 +#: libraries/messages.inc.php:884 tbl_change.php:277 tbl_tracking.php:597 msgid "Show" msgstr "Prikaži" -#: db_qbe.php:300 libraries/messages.inc.php:202 +#: db_qbe.php:300 libraries/messages.inc.php:198 msgid "Criteria" msgstr "Kriterijum" #: db_qbe.php:353 db_qbe.php:435 db_qbe.php:527 db_qbe.php:558 -#: libraries/messages.inc.php:718 +#: libraries/messages.inc.php:714 msgid "Ins" msgstr "Ins" #: db_qbe.php:357 db_qbe.php:439 db_qbe.php:524 db_qbe.php:555 -#: libraries/messages.inc.php:56 +#: libraries/messages.inc.php:52 msgid "And" msgstr "i" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:529 db_qbe.php:560 -#: libraries/messages.inc.php:717 +#: libraries/messages.inc.php:713 msgid "Del" 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/messages.inc.php:592 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:588 #: libraries/tbl_properties.inc.php:779 server_privileges.php:258 #: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288 msgid "Or" msgstr "ili" -#: db_qbe.php:507 libraries/messages.inc.php:516 +#: db_qbe.php:507 libraries/messages.inc.php:512 msgid "Modify" msgstr "Promeni" -#: db_qbe.php:584 libraries/messages.inc.php:33 +#: db_qbe.php:584 libraries/messages.inc.php:29 msgid "Add/Delete Criteria Row" msgstr "Dodaj/obriši polje za kriterijum" -#: db_qbe.php:596 libraries/messages.inc.php:32 +#: db_qbe.php:596 libraries/messages.inc.php:28 msgid "Add/Delete Field Columns" msgstr "Dodaj/obriši kolonu" -#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1192 +#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1188 msgid "Update Query" msgstr "Ažuriraj upit" -#: db_qbe.php:617 libraries/messages.inc.php:1216 +#: db_qbe.php:617 libraries/messages.inc.php:1212 msgid "Use Tables" msgstr "Koristi tabele" -#: db_qbe.php:640 libraries/messages.inc.php:723 +#: db_qbe.php:640 libraries/messages.inc.php:719 #, php-format msgid "SQL query on database %s:" msgstr "SQL upit na bazi %s:" -#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:823 +#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:819 msgid "Submit Query" msgstr "Izvrši SQL upit" #: db_search.php:68 libraries/auth/config.auth.lib.php:84 #: libraries/auth/config.auth.lib.php:103 #: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52 -#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:26 +#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:22 msgid "Access denied" msgstr "Pristup odbijen" -#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:836 +#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:832 msgid "at least one of the words" msgstr "bar jednu od reči" -#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:837 +#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:833 msgid "all words" msgstr "sve reči" -#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:838 +#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:834 msgid "the exact phrase" msgstr "tačan izraz" -#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:839 +#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:835 msgid "as regular expression" msgstr "kao regularni izraz" -#: db_search.php:242 libraries/messages.inc.php:840 +#: db_search.php:242 libraries/messages.inc.php:836 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Rezultati pretrage za \"%s\" %s:" -#: db_search.php:260 libraries/messages.inc.php:579 +#: db_search.php:260 libraries/messages.inc.php:575 #, php-format msgid "%s match(es) inside table %s" 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/messages.inc.php:108 +#: db_structure.php:105 libraries/messages.inc.php:104 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468 msgid "Browse" msgstr "Pregled" #: db_search.php:272 libraries/display_tbl.lib.php:1165 -#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:243 +#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:239 #: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406 #: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377 #: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216 @@ -590,45 +590,45 @@ msgstr "Pregled" msgid "Delete" msgstr "Obriši" -#: db_search.php:285 libraries/messages.inc.php:580 +#: db_search.php:285 libraries/messages.inc.php:576 #, php-format msgid "Total: %s match(es)" msgstr "Ukupno: %s pogodaka" -#: db_search.php:299 libraries/messages.inc.php:832 +#: db_search.php:299 libraries/messages.inc.php:828 msgid "Search in database" msgstr "Pretraživanje baze" -#: db_search.php:302 libraries/messages.inc.php:835 +#: db_search.php:302 libraries/messages.inc.php:831 msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgstr "Reči ili vrednosti koje se traže (džoker: \"%\"):" -#: db_search.php:307 libraries/messages.inc.php:842 +#: db_search.php:307 libraries/messages.inc.php:838 msgid "Find:" msgstr "Traži:" -#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1017 +#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1013 msgid "Words are separated by a space character (\" \")." msgstr "Reči se odvajaju razmakom (\" \")." -#: db_search.php:325 libraries/messages.inc.php:834 +#: db_search.php:325 libraries/messages.inc.php:830 msgid "Inside table(s):" msgstr "Unutar tabela:" -#: db_search.php:355 libraries/messages.inc.php:833 +#: db_search.php:355 libraries/messages.inc.php:829 msgid "Inside field:" 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/messages.inc.php:431 libraries/sql_query_form.lib.php:334 +#: libraries/messages.inc.php:427 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/db_links.inc.php:63 libraries/export/latex.php:337 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:1048 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:1044 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 #: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269 msgid "Structure" @@ -637,8 +637,8 @@ 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:1642 -#: libraries/db_links.inc.php:100 libraries/messages.inc.php:272 +#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/db_links.inc.php:100 libraries/messages.inc.php:268 #: 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 @@ -648,40 +648,40 @@ 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:1641 -#: libraries/messages.inc.php:284 libraries/mult_submits.inc.php:39 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: libraries/messages.inc.php:280 libraries/mult_submits.inc.php:39 #: libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Isprazni" -#: db_structure.php:316 libraries/messages.inc.php:1075 +#: db_structure.php:316 libraries/messages.inc.php:1071 #: libraries/tbl_links.inc.php:100 #, php-format msgid "Table %s has been emptied" msgstr "Tabela %s je ispražnjena" -#: db_structure.php:326 libraries/messages.inc.php:1229 +#: db_structure.php:326 libraries/messages.inc.php:1225 #: 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/messages.inc.php:1074 +#: db_structure.php:326 libraries/messages.inc.php:1070 #: libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "Tabela %s je odbačena" -#: db_structure.php:333 libraries/messages.inc.php:1128 +#: db_structure.php:333 libraries/messages.inc.php:1124 msgid "Tracking is active." msgstr "" -#: db_structure.php:335 libraries/messages.inc.php:1129 +#: db_structure.php:335 libraries/messages.inc.php:1125 msgid "Tracking is not active." msgstr "" #: db_structure.php:420 libraries/display_tbl.lib.php:1944 -#: libraries/messages.inc.php:1228 +#: libraries/messages.inc.php:1224 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -689,83 +689,83 @@ msgid "" msgstr "" #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 -#: libraries/messages.inc.php:1233 libraries/tbl_info.inc.php:66 +#: libraries/messages.inc.php:1229 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/messages.inc.php:773 libraries/server_links.inc.php:70 +#: libraries/messages.inc.php:769 libraries/server_links.inc.php:70 #: server_replication.php:33 server_replication.php:164 server_status.php:258 msgid "Replication" msgstr "Replikacija" -#: db_structure.php:489 libraries/messages.inc.php:1053 +#: db_structure.php:489 libraries/messages.inc.php:1049 msgid "Sum" msgstr "Ukupno" #: db_structure.php:496 libraries/StorageEngine.class.php:356 -#: libraries/messages.inc.php:239 +#: libraries/messages.inc.php:235 #, 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 #: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086 -#: libraries/messages.inc.php:1243 libraries/mult_submits.inc.php:16 +#: libraries/messages.inc.php:1239 libraries/mult_submits.inc.php:16 #: server_databases.php:346 server_databases.php:351 #: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465 msgid "With selected:" msgstr "Označeno:" #: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: libraries/messages.inc.php:148 server_databases.php:348 +#: libraries/messages.inc.php:144 server_databases.php:348 #: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459 msgid "Check All" msgstr "Označi sve" #: db_structure.php:531 libraries/display_tbl.lib.php:2077 -#: libraries/messages.inc.php:1184 libraries/replication_gui.lib.php:33 +#: libraries/messages.inc.php:1180 libraries/replication_gui.lib.php:33 #: server_databases.php:350 server_privileges.php:533 #: server_privileges.php:1564 tbl_structure.php:463 msgid "Uncheck All" msgstr "nijedno" -#: db_structure.php:536 libraries/messages.inc.php:150 +#: db_structure.php:536 libraries/messages.inc.php:146 msgid "Check tables having overhead" msgstr "Proveri tabele koje imaju prekoračenja" #: db_structure.php:547 db_structure.php:548 db_structure.php:599 -#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:672 +#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:668 #: libraries/mult_submits.inc.php:28 tbl_structure.php:493 #: tbl_structure.php:495 msgid "Print view" msgstr "Za štampu" -#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:153 +#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:149 #: libraries/mult_submits.inc.php:42 tbl_operations.php:579 msgid "Check table" msgstr "Proveri tabelu" -#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:590 +#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:586 #: libraries/mult_submits.inc.php:47 tbl_operations.php:619 #: tbl_structure.php:710 tbl_structure.php:712 msgid "Optimize table" msgstr "Optimizuj tabelu" -#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:758 +#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:754 #: libraries/mult_submits.inc.php:52 tbl_operations.php:609 msgid "Repair table" msgstr "Popravi tabelu" -#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:55 +#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:51 #: libraries/mult_submits.inc.php:57 tbl_operations.php:599 msgid "Analyze table" msgstr "Analiziraj tabelu" #: db_structure.php:557 db_structure.php:558 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/messages.inc.php:310 +#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:306 #: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84 #: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109 #: server_privileges.php:1341 setup/frames/menu.inc.php:22 @@ -773,7 +773,7 @@ msgstr "Analiziraj tabelu" msgid "Export" msgstr "Izvoz" -#: db_tracking.php:66 libraries/messages.inc.php:1151 +#: db_tracking.php:66 libraries/messages.inc.php:1147 #, fuzzy msgid "Tracked tables" msgstr "Proveri tabelu" @@ -782,7 +782,7 @@ msgstr "Proveri tabelu" #: 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/header_printview.inc.php:58 libraries/messages.inc.php:212 +#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:208 #: navigation.php:233 server_databases.php:169 server_privileges.php:1621 #: server_privileges.php:1682 server_privileges.php:1940 #: server_processlist.php:56 server_synchronize.php:1179 @@ -790,83 +790,83 @@ msgstr "Proveri tabelu" msgid "Database" msgstr "Baza podataka" -#: db_tracking.php:73 libraries/messages.inc.php:1146 +#: db_tracking.php:73 libraries/messages.inc.php:1142 #, fuzzy msgid "Last version" msgstr "Napravi relaciju" -#: db_tracking.php:74 libraries/messages.inc.php:1145 tbl_tracking.php:594 +#: db_tracking.php:74 libraries/messages.inc.php:1141 tbl_tracking.php:594 #, fuzzy msgid "Created" msgstr "Napravi" -#: db_tracking.php:75 libraries/messages.inc.php:1147 tbl_tracking.php:595 +#: db_tracking.php:75 libraries/messages.inc.php:1143 tbl_tracking.php:595 msgid "Updated" msgstr "" #: db_tracking.php:77 libraries/Index.class.php:440 -#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:27 +#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:23 #: server_databases.php:203 server_privileges.php:1503 #: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187 msgid "Action" msgstr "Akcija" -#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:247 +#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:243 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:106 libraries/messages.inc.php:1142 tbl_tracking.php:548 +#: db_tracking.php:106 libraries/messages.inc.php:1138 tbl_tracking.php:548 #: tbl_tracking.php:606 tbl_tracking.php:613 msgid "active" msgstr "" -#: db_tracking.php:108 libraries/messages.inc.php:1143 tbl_tracking.php:550 +#: db_tracking.php:108 libraries/messages.inc.php:1139 tbl_tracking.php:550 #: tbl_tracking.php:608 tbl_tracking.php:610 msgid "not active" msgstr "" -#: db_tracking.php:121 libraries/messages.inc.php:1160 +#: db_tracking.php:121 libraries/messages.inc.php:1156 #, fuzzy msgid "Versions" msgstr "Persijski" -#: db_tracking.php:122 libraries/messages.inc.php:1132 tbl_tracking.php:379 +#: db_tracking.php:122 libraries/messages.inc.php:1128 tbl_tracking.php:379 #: tbl_tracking.php:624 msgid "Tracking report" msgstr "" -#: db_tracking.php:123 libraries/messages.inc.php:1144 tbl_tracking.php:251 +#: db_tracking.php:123 libraries/messages.inc.php:1140 tbl_tracking.php:251 #: tbl_tracking.php:624 #, fuzzy msgid "Structure snapshot" msgstr "Samo struktura" -#: db_tracking.php:152 libraries/messages.inc.php:1154 +#: db_tracking.php:152 libraries/messages.inc.php:1150 #, fuzzy msgid "Untracked tables" msgstr "Proveri tabelu" -#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1153 +#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1149 #: tbl_structure.php:529 tbl_structure.php:531 #, fuzzy msgid "Track table" msgstr "Proveri tabelu" -#: db_tracking.php:200 libraries/messages.inc.php:1121 +#: db_tracking.php:200 libraries/messages.inc.php:1117 #, fuzzy msgid "Database Log" msgstr "Baza podataka" -#: export.php:62 libraries/messages.inc.php:312 +#: export.php:62 libraries/messages.inc.php:308 msgid "Selected export type has to be saved in file!" msgstr "Odabrani tip izvoza mora biti sačuvan u datoteku!" -#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:567 +#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:563 #, php-format msgid "Insufficient space to save the file %s." msgstr "Nedovoljno prostora za snimanje datoteke %s." -#: export.php:294 libraries/messages.inc.php:324 +#: export.php:294 libraries/messages.inc.php:320 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -874,17 +874,17 @@ msgstr "" "Datoteka %s već postoji na serveru, promenite ime datoteke ili uključite " "opciju prepisivanja." -#: export.php:298 export.php:302 libraries/messages.inc.php:562 +#: export.php:298 export.php:302 libraries/messages.inc.php:558 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Veb serveru nije dozvoljeno da sačuva datoteku %s." -#: export.php:629 libraries/messages.inc.php:276 +#: export.php:629 libraries/messages.inc.php:272 #, php-format msgid "Dump has been saved to file %s." msgstr "Sadržaj baze je sačuvan u datoteku %s." -#: import.php:60 libraries/messages.inc.php:1202 +#: import.php:60 libraries/messages.inc.php:1198 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation%" @@ -894,14 +894,14 @@ msgstr "" "sdokumentaciju%s za načine prevazilaženja ovog ograničenja." #: import.php:279 import.php:332 libraries/File.class.php:849 -#: libraries/File.class.php:961 libraries/messages.inc.php:325 +#: libraries/File.class.php:961 libraries/messages.inc.php:321 msgid "File could not be read" msgstr "Datoteku nije moguće pročitati" #: import.php:287 import.php:296 import.php:315 import.php:324 #: libraries/File.class.php:1031 libraries/File.class.php:1039 #: libraries/File.class.php:1055 libraries/File.class.php:1063 -#: libraries/messages.inc.php:1189 +#: libraries/messages.inc.php:1185 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -910,7 +910,7 @@ msgstr "" "Pokušali ste da uvezete datoteku sa kompresijom koja nije podržana (%s). Ili " "podrška za nju nije implementirana, ili je isključena u vašoj konfiguraciji." -#: import.php:337 libraries/messages.inc.php:547 +#: import.php:337 libraries/messages.inc.php:543 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -921,29 +921,29 @@ msgstr "" "konfiguraciji PHP-a. Pogledajte. See FAQ 1.16." #: import.php:372 libraries/display_import.lib.php:24 -#: libraries/messages.inc.php:125 +#: libraries/messages.inc.php:121 msgid "Could not load import plugins, please check your installation!" msgstr "Ne mogu da učitam dodatke za uvoz, molim proverite svoju instalaciju!" -#: import.php:397 libraries/messages.inc.php:102 +#: import.php:397 libraries/messages.inc.php:98 msgid "The bookmark has been deleted." msgstr "Obeleživač je upravo obrisan." -#: import.php:401 libraries/messages.inc.php:879 +#: import.php:401 libraries/messages.inc.php:875 msgid "Showing bookmark" msgstr "Prikazivanje markera" -#: import.php:403 libraries/messages.inc.php:101 +#: import.php:403 libraries/messages.inc.php:97 #, php-format msgid "Bookmark %s created" msgstr "Napravljen marker %s" -#: import.php:409 import.php:415 libraries/messages.inc.php:407 +#: import.php:409 import.php:415 libraries/messages.inc.php:403 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Uvoz je uspešno završen, izvršeno je %d upita." -#: import.php:424 libraries/messages.inc.php:1107 +#: import.php:424 libraries/messages.inc.php:1103 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -951,11 +951,11 @@ msgstr "" "Vreme izvršenja skripta je isteklo, ako želite da dovršite uvoz, molimo " "pošaljite istu datoteku i uvoz će se nastaviti." -#: index.php:190 libraries/messages.inc.php:553 +#: index.php:190 libraries/messages.inc.php:549 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin preferira čitače koji podržavaju okvire." -#: js/messages.php:25 libraries/messages.inc.php:155 +#: js/messages.php:25 libraries/messages.inc.php:151 #: server_synchronize.php:345 server_synchronize.php:357 #: server_synchronize.php:373 server_synchronize.php:380 #: server_synchronize.php:739 server_synchronize.php:767 @@ -963,116 +963,116 @@ msgstr "phpMyAdmin preferira čitače koji podržavaju okvire." msgid "Click to select" msgstr "" -#: js/messages.php:26 libraries/messages.inc.php:156 +#: js/messages.php:26 libraries/messages.inc.php:152 msgid "Click to unselect" msgstr "" #: js/messages.php:27 libraries/import.lib.php:103 -#: libraries/messages.inc.php:550 sql.php:89 +#: libraries/messages.inc.php:546 sql.php:89 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" komanda je onemogućena." -#: js/messages.php:30 libraries/messages.inc.php:270 +#: js/messages.php:30 libraries/messages.inc.php:266 #: libraries/mult_submits.inc.php:258 sql.php:188 msgid "Do you really want to " msgstr "Da li stvarno hoćete da " -#: js/messages.php:31 libraries/messages.inc.php:271 +#: js/messages.php:31 libraries/messages.inc.php:267 #: libraries/mult_submits.inc.php:258 sql.php:172 msgid "You are about to DESTROY a complete database!" msgstr "Ovim ćete UNIŠTITI kompletnu bazu podataka!" -#: js/messages.php:34 libraries/messages.inc.php:94 +#: js/messages.php:34 libraries/messages.inc.php:90 msgid "You are about to DISABLE a BLOB Repository!" msgstr "" -#: js/messages.php:35 libraries/messages.inc.php:91 +#: js/messages.php:35 libraries/messages.inc.php:87 #, php-format msgid "Are you sure you want to disable all BLOB references for database %s?" msgstr "" -#: js/messages.php:38 libraries/messages.inc.php:342 +#: js/messages.php:38 libraries/messages.inc.php:338 msgid "Missing value in the form!" msgstr "Nedostaje vrednost u obrascu!" -#: js/messages.php:39 libraries/messages.inc.php:570 +#: js/messages.php:39 libraries/messages.inc.php:566 msgid "This is not a number!" msgstr "Ovo nije broj!" -#: js/messages.php:42 libraries/messages.inc.php:380 +#: js/messages.php:42 libraries/messages.inc.php:376 msgid "The host name is empty!" msgstr "Ime domaćina je prazno!" -#: js/messages.php:43 libraries/messages.inc.php:1208 +#: js/messages.php:43 libraries/messages.inc.php:1204 msgid "The user name is empty!" msgstr "Ime korisnika nije uneto!" -#: js/messages.php:44 libraries/messages.inc.php:607 +#: js/messages.php:44 libraries/messages.inc.php:603 #: server_privileges.php:1197 user_password.php:70 msgid "The password is empty!" msgstr "Lozinka je prazna!" -#: js/messages.php:45 libraries/messages.inc.php:609 +#: js/messages.php:45 libraries/messages.inc.php:605 #: server_privileges.php:1195 user_password.php:73 msgid "The passwords aren't the same!" msgstr "Lozinke nisu identične!" -#: js/messages.php:49 libraries/messages.inc.php:123 pmd_general.php:342 +#: js/messages.php:49 libraries/messages.inc.php:119 pmd_general.php:342 #: pmd_general.php:379 msgid "Cancel" msgstr "Otkaži" -#: js/messages.php:52 libraries/messages.inc.php:514 +#: js/messages.php:52 libraries/messages.inc.php:510 msgid "Modifications have been saved" msgstr "Izmene su sačuvane" -#: js/messages.php:53 libraries/messages.inc.php:741 +#: js/messages.php:53 libraries/messages.inc.php:737 msgid "Relation deleted" msgstr "Relacija obrisana" -#: js/messages.php:54 libraries/messages.inc.php:340 +#: js/messages.php:54 libraries/messages.inc.php:336 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:55 libraries/messages.inc.php:434 +#: js/messages.php:55 libraries/messages.inc.php:430 msgid "Internal relation added" msgstr "Dodata interna relacija" -#: js/messages.php:56 libraries/messages.inc.php:299 +#: js/messages.php:56 libraries/messages.inc.php:295 msgid "Error: Relation not added." msgstr "Greška: relacija nije dodata." -#: js/messages.php:57 libraries/messages.inc.php:300 +#: js/messages.php:57 libraries/messages.inc.php:296 msgid "Error: relation already exists." msgstr "Greška: relacija već postoji." -#: js/messages.php:58 libraries/messages.inc.php:302 +#: js/messages.php:58 libraries/messages.inc.php:298 msgid "Error saving coordinates for Designer." msgstr "Greška pri snimanju koordinata za Dizajner." -#: js/messages.php:59 libraries/messages.inc.php:351 +#: js/messages.php:59 libraries/messages.inc.php:347 #: libraries/relation.lib.php:107 msgid "General relation features" msgstr "Opšte osobine relacija" -#: js/messages.php:59 libraries/messages.inc.php:260 +#: js/messages.php:59 libraries/messages.inc.php:256 #: libraries/relation.lib.php:101 libraries/relation.lib.php:108 msgid "Disabled" msgstr "Onemogućeno" -#: js/messages.php:60 libraries/messages.inc.php:850 +#: js/messages.php:60 libraries/messages.inc.php:846 msgid "Select referenced key" msgstr "Izaberite referencirani ključ" -#: js/messages.php:61 libraries/messages.inc.php:848 +#: js/messages.php:61 libraries/messages.inc.php:844 msgid "Select Foreign Key" msgstr "Izaberi strani ključ" -#: js/messages.php:62 libraries/messages.inc.php:653 +#: js/messages.php:62 libraries/messages.inc.php:649 msgid "Please select the primary key or a unique key" msgstr "Molimo izaberite primarni ili jedinstveni ključ" -#: js/messages.php:63 libraries/messages.inc.php:142 pmd_general.php:77 +#: js/messages.php:63 libraries/messages.inc.php:138 pmd_general.php:77 #: tbl_relation.php:548 msgid "Choose field to display" msgstr "Izaberi polja za prikaz" @@ -1091,9 +1091,9 @@ msgid "Prev" msgstr "Prethodna" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2332 -#: libraries/common.lib.php:2335 libraries/display_tbl.lib.php:338 -#: libraries/messages.inc.php:543 server_binlog.php:205 server_binlog.php:207 +#: js/messages.php:77 libraries/common.lib.php:2344 +#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: libraries/messages.inc.php:539 server_binlog.php:205 server_binlog.php:207 #: tbl_printview.php:424 tbl_structure.php:802 msgid "Next" msgstr "Sledeći" @@ -1168,27 +1168,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1543 +#: js/messages.php:97 libraries/common.lib.php:1555 msgid "Jan" msgstr "jan" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1545 +#: js/messages.php:99 libraries/common.lib.php:1557 msgid "Feb" msgstr "feb" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1547 +#: js/messages.php:101 libraries/common.lib.php:1559 msgid "Mar" msgstr "mar" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1549 +#: js/messages.php:103 libraries/common.lib.php:1561 msgid "Apr" msgstr "apr" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1551 +#: js/messages.php:105 libraries/common.lib.php:1563 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1196,37 +1196,37 @@ msgid "May" msgstr "maj" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1553 +#: js/messages.php:107 libraries/common.lib.php:1565 msgid "Jun" msgstr "jun" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1555 +#: js/messages.php:109 libraries/common.lib.php:1567 msgid "Jul" msgstr "jul" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1557 +#: js/messages.php:111 libraries/common.lib.php:1569 msgid "Aug" msgstr "avg" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1559 +#: js/messages.php:113 libraries/common.lib.php:1571 msgid "Sep" msgstr "sep" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1561 +#: js/messages.php:115 libraries/common.lib.php:1573 msgid "Oct" msgstr "okt" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1563 +#: js/messages.php:117 libraries/common.lib.php:1575 msgid "Nov" msgstr "nov" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1565 +#: js/messages.php:119 libraries/common.lib.php:1577 msgid "Dec" msgstr "dec" @@ -1267,37 +1267,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1568 +#: js/messages.php:132 libraries/common.lib.php:1580 msgid "Sun" msgstr "Ned" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1570 +#: js/messages.php:134 libraries/common.lib.php:1582 msgid "Mon" msgstr "Pon" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1572 +#: js/messages.php:136 libraries/common.lib.php:1584 msgid "Tue" msgstr "Uto" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1574 +#: js/messages.php:138 libraries/common.lib.php:1586 msgid "Wed" msgstr "Sre" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1576 +#: js/messages.php:140 libraries/common.lib.php:1588 msgid "Thu" msgstr "Čet" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1578 +#: js/messages.php:142 libraries/common.lib.php:1590 msgid "Fri" msgstr "Pet" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1580 +#: js/messages.php:144 libraries/common.lib.php:1592 msgid "Sat" msgstr "Sub" @@ -1371,23 +1371,23 @@ msgstr "se koristi" msgid "Second" msgstr "u sekundi" -#: libraries/Config.class.php:1015 libraries/messages.inc.php:338 +#: libraries/Config.class.php:1015 libraries/messages.inc.php:334 msgid "Font size" msgstr "Veličina fonta" #: libraries/File.class.php:344 libraries/File.class.php:432 #: libraries/File.class.php:569 libraries/File.class.php:708 -#: libraries/messages.inc.php:1201 +#: libraries/messages.inc.php:1197 msgid "Unknown error in file upload." msgstr "Nepoznata greška pri slanju datoteke." -#: libraries/File.class.php:414 libraries/messages.inc.php:1198 +#: libraries/File.class.php:414 libraries/messages.inc.php:1194 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "Poslata datoteka prevazilazi vrednost direktive upload_max_filesize u php." "ini." -#: libraries/File.class.php:417 libraries/messages.inc.php:1197 +#: libraries/File.class.php:417 libraries/messages.inc.php:1193 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -1395,56 +1395,56 @@ msgstr "" "Poslata datoteka prevazilazi vrednost direktive MAX_FILE_SIZE koja je " "navedena u HTML formi." -#: libraries/File.class.php:420 libraries/messages.inc.php:1200 +#: libraries/File.class.php:420 libraries/messages.inc.php:1196 msgid "The uploaded file was only partially uploaded." msgstr "Poslata datoteka je samo delimično primljena." -#: libraries/File.class.php:423 libraries/messages.inc.php:1199 +#: libraries/File.class.php:423 libraries/messages.inc.php:1195 msgid "Missing a temporary folder." msgstr "Nedostaje privremeni direktorijum." -#: libraries/File.class.php:426 libraries/messages.inc.php:1195 +#: libraries/File.class.php:426 libraries/messages.inc.php:1191 msgid "Failed to write file to disk." msgstr "Neuspelo upisivanje datoteke na disk." -#: libraries/File.class.php:429 libraries/messages.inc.php:1196 +#: libraries/File.class.php:429 libraries/messages.inc.php:1192 msgid "File upload stopped by extension." msgstr "Prijem datoteke zaustavljen zbog ekstenzije." -#: libraries/File.class.php:908 libraries/messages.inc.php:319 +#: libraries/File.class.php:908 libraries/messages.inc.php:315 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "Greška u premeštanju primljene datoteke, pogledajte FAQ 1.11" -#: libraries/Index.class.php:428 libraries/messages.inc.php:554 +#: libraries/Index.class.php:428 libraries/messages.inc.php:550 #: tbl_relation.php:529 msgid "No index defined!" msgstr "Ključ nije definisan!" -#: libraries/Index.class.php:433 libraries/messages.inc.php:411 +#: libraries/Index.class.php:433 libraries/messages.inc.php:407 #: server_databases.php:132 tbl_tracking.php:316 msgid "Indexes" msgstr "Ključevi" -#: libraries/Index.class.php:444 libraries/messages.inc.php:1186 +#: libraries/Index.class.php:444 libraries/messages.inc.php:1182 #: 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:475 tbl_tracking.php:322 msgid "Unique" msgstr "Jedinstveni" -#: libraries/Index.class.php:445 libraries/messages.inc.php:596 +#: libraries/Index.class.php:445 libraries/messages.inc.php:592 #: tbl_tracking.php:323 msgid "Packed" msgstr "" -#: libraries/Index.class.php:447 libraries/messages.inc.php:131 +#: libraries/Index.class.php:447 libraries/messages.inc.php:127 #: tbl_tracking.php:325 msgid "Cardinality" msgstr "Kardinalnost" -#: libraries/Index.class.php:450 libraries/messages.inc.php:162 +#: libraries/Index.class.php:450 libraries/messages.inc.php:158 #: tbl_tracking.php:279 tbl_tracking.php:328 #, fuzzy msgid "Comment" @@ -1453,29 +1453,29 @@ msgstr "Komentari" #: libraries/Index.class.php:466 libraries/common.lib.php:616 #: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:280 pdf_pages.php:280 +#: libraries/messages.inc.php:276 pdf_pages.php:280 #: setup/frames/index.inc.php:124 setup/lib/messages.inc.php:352 #: tbl_row_action.php:69 msgid "Edit" msgstr "Promeni" -#: libraries/Index.class.php:472 libraries/messages.inc.php:666 +#: libraries/Index.class.php:472 libraries/messages.inc.php:662 msgid "The primary key has been dropped" msgstr "Primarni ključ je obrisan" -#: libraries/Index.class.php:476 libraries/messages.inc.php:413 +#: libraries/Index.class.php:476 libraries/messages.inc.php:409 #, php-format msgid "Index %s has been dropped" msgstr "Ključ %s je obrisan" -#: libraries/Index.class.php:576 libraries/messages.inc.php:412 +#: libraries/Index.class.php:576 libraries/messages.inc.php:408 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "" -#: libraries/List_Database.class.php:431 libraries/messages.inc.php:218 +#: libraries/List_Database.class.php:431 libraries/messages.inc.php:214 #: libraries/server_links.inc.php:41 server_databases.php:88 #: server_privileges.php:1621 setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" @@ -1504,85 +1504,85 @@ msgid_plural "%1$d rows inserted." msgstr[0] "Nema odabranih redova" msgstr[1] "Nema odabranih redova" -#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:549 +#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:545 msgid "" "There is no detailed status information available for this storage engine." msgstr "Nema detaljnijih informacija o statusu za ovaj pogon skladištenja." -#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:291 +#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:287 #, php-format msgid "%s is available on this MySQL server." msgstr "%s je dostupan na ovom MySQL serveru." -#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:292 +#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:288 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s je onemogućen na ovom MySQL serveru." -#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:294 +#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:290 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "Ovaj MySQL server ne podržava %s pogon skladištenja." -#: libraries/Table.class.php:1019 libraries/messages.inc.php:443 +#: libraries/Table.class.php:1019 libraries/messages.inc.php:439 msgid "Invalid database" msgstr "Neispravna baza podataka" -#: libraries/Table.class.php:1033 libraries/messages.inc.php:450 +#: libraries/Table.class.php:1033 libraries/messages.inc.php:446 #: tbl_get_field.php:26 msgid "Invalid table name" msgstr "Neispravan naziv tabele" -#: libraries/Table.class.php:1048 libraries/messages.inc.php:301 +#: libraries/Table.class.php:1048 libraries/messages.inc.php:297 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "Greška pri preimenovanju tabele %1$s u %2$s" -#: libraries/Table.class.php:1132 libraries/messages.inc.php:754 +#: libraries/Table.class.php:1132 libraries/messages.inc.php:750 #, php-format msgid "Table %s has been renamed to %s" msgstr "Tabeli %s promenjeno ime u %s" -#: libraries/Theme.class.php:162 libraries/messages.inc.php:1099 +#: libraries/Theme.class.php:162 libraries/messages.inc.php:1095 #, php-format msgid "No valid image path for theme %s found!" msgstr "Nema ispravne putanje do slika za temu %s!" -#: libraries/Theme.class.php:384 libraries/messages.inc.php:1097 +#: libraries/Theme.class.php:384 libraries/messages.inc.php:1093 msgid "No preview available." msgstr "Pregled ne postoji." -#: libraries/Theme.class.php:387 libraries/messages.inc.php:1089 +#: libraries/Theme.class.php:387 libraries/messages.inc.php:1085 msgid "take it" msgstr "preuzmi" -#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1096 +#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1092 #, php-format msgid "Default theme %s not found!" msgstr "Nije pronađena podrazumevana tema %s!" -#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1098 +#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1094 #, php-format msgid "Theme %s not found!" msgstr "Nije pronađena tema %s!" -#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1100 +#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1096 #, php-format msgid "Theme path not found for theme %s!" msgstr "Nije pronađena putanja do teme za temu %s!" -#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1101 +#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1097 #: test/theme.php:161 themes.php:21 themes.php:41 msgid "Theme / Style" msgstr "Tema / stil" -#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:172 +#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:168 msgid "Cannot connect: invalid settings." msgstr "Ne mogu da se povežem: neispravna podešavanja." #: libraries/auth/config.auth.lib.php:92 #: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65 -#: libraries/messages.inc.php:1238 test/theme.php:152 +#: libraries/messages.inc.php:1234 test/theme.php:152 #, php-format msgid "Welcome to %s" msgstr "Dobrodošli na %s" @@ -1608,104 +1608,104 @@ msgstr "" "php i uverite se da odgovaraju podacima koje ste dobili od administratora " "MySQL servera." -#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:488 +#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:484 msgid "Log in" msgstr "Prijavljivanje" #: libraries/auth/cookie.auth.lib.php:246 -#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:659 +#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:655 #: libraries/navigation_header.inc.php:93 #: libraries/navigation_header.inc.php:95 msgid "phpMyAdmin documentation" msgstr "phpMyAdmin dokumentacija" #: libraries/auth/cookie.auth.lib.php:258 -#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:492 +#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:488 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:493 +#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:489 msgid "Server:" msgstr "Server" -#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:494 +#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:490 msgid "Username:" msgstr "Korisničko ime:" -#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:491 +#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:487 msgid "Password:" msgstr "Lozinka:" -#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:854 +#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:850 msgid "Server Choice" msgstr "Izbor servera" #: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 -#: libraries/messages.inc.php:177 +#: libraries/messages.inc.php:173 msgid "Cookies must be enabled past this point." msgstr "Kolačići (Cookies) moraju u ovom slučaju biti aktivni." #: libraries/auth/cookie.auth.lib.php:671 -#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:489 +#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:485 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" #: libraries/auth/cookie.auth.lib.php:675 -#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:544 +#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:540 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "Nije bilo aktivnosti %s ili više sekundi, molimo prijavite se ponovo" #: libraries/auth/cookie.auth.lib.php:685 #: libraries/auth/cookie.auth.lib.php:687 -#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:126 +#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:122 msgid "Cannot log in to the MySQL server" msgstr "Ne mogu da se prijavim na MySQL server" -#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1245 +#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1241 msgid "Wrong username/password. Access denied." msgstr "Pogrešno korisničko ime/lozinka. Pristup odbijen." #: libraries/auth/swekey/swekey.auth.lib.php:118 -#: libraries/messages.inc.php:1057 +#: libraries/messages.inc.php:1053 #, php-format msgid "File %s does not contain any key id" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:157 #: libraries/auth/swekey/swekey.auth.lib.php:180 -#: libraries/messages.inc.php:1056 +#: libraries/messages.inc.php:1052 msgid "Hardware authentication failed" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:166 -#: libraries/messages.inc.php:1058 +#: libraries/messages.inc.php:1054 msgid "No valid authentication key plugged" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:202 -#: libraries/messages.inc.php:1055 +#: libraries/messages.inc.php:1051 msgid "Authenticating..." msgstr "" -#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1230 +#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1226 msgid "View image" msgstr "" -#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:652 +#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:648 msgid "Play audio" msgstr "" -#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1232 +#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1228 msgid "View video" msgstr "" -#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:269 +#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:265 msgid "Download file" msgstr "" -#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:128 +#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:124 msgid "" "Couldn't load the iconv or recode extension needed for charset conversion. " "Either configure PHP to enable these extensions or disable charset " @@ -1717,7 +1717,7 @@ msgstr "" #: libraries/charset_conversion.lib.php:79 #: libraries/charset_conversion.lib.php:90 -#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:130 +#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:126 msgid "" "Couldn't use the iconv, libiconv, or recode_string functions, although the " "necessary extensions appear to be loaded. Check your PHP configuration." @@ -1725,7 +1725,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/messages.inc.php:170 +#: libraries/common.inc.php:583 libraries/messages.inc.php:166 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!" @@ -1761,22 +1761,22 @@ msgstr "" msgid "Invalid server index: %s" msgstr "Neispravan indeks servera: \"%s\"" -#: libraries/common.inc.php:636 libraries/messages.inc.php:448 +#: libraries/common.inc.php:636 libraries/messages.inc.php:444 #, 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/messages.inc.php:856 libraries/select_server.lib.php:41 +#: libraries/messages.inc.php:852 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/messages.inc.php:437 +#: libraries/common.inc.php:823 libraries/messages.inc.php:433 msgid "Invalid authentication method set in configuration:" msgstr "Neispravan metod autentikacije je zadat u konfiguraciji:" -#: libraries/common.lib.php:147 libraries/messages.inc.php:499 +#: libraries/common.lib.php:147 libraries/messages.inc.php:495 #, php-format msgid "Max: %s%s" msgstr "Maksimalna veličina: %s%s" @@ -1796,7 +1796,7 @@ msgstr "en" #: libraries/common.lib.php:428 libraries/common.lib.php:430 #: libraries/common.lib.php:432 libraries/common.lib.php:448 #: libraries/common.lib.php:450 libraries/dbg/setup.php:25 -#: libraries/display_export.lib.php:164 libraries/messages.inc.php:267 +#: libraries/display_export.lib.php:164 libraries/messages.inc.php:263 #: libraries/relation.lib.php:97 libraries/sql_query_form.lib.php:451 #: libraries/sql_query_form.lib.php:454 main.php:229 pdf_pages.php:37 #: pdf_pages.php:43 pdf_pages.php:49 pdf_pages.php:54 @@ -1806,55 +1806,55 @@ msgstr "Dokumentacija" #: libraries/common.lib.php:581 libraries/core.lib.php:234 #: libraries/core.lib.php:263 libraries/import.lib.php:134 -#: libraries/messages.inc.php:297 pdf_schema.php:32 pdf_schema.php:232 +#: libraries/messages.inc.php:293 pdf_schema.php:32 pdf_schema.php:232 #: tbl_change.php:1027 tbl_operations.php:213 tbl_relation.php:290 #: view_operations.php:62 msgid "Error" msgstr "Greška" #: libraries/common.lib.php:595 libraries/header_printview.inc.php:61 -#: libraries/messages.inc.php:1023 server_processlist.php:60 +#: libraries/messages.inc.php:1019 server_processlist.php:60 #: server_status.php:247 msgid "SQL query" msgstr "SQL upit" -#: libraries/common.lib.php:634 libraries/messages.inc.php:538 +#: libraries/common.lib.php:634 libraries/messages.inc.php:534 msgid "MySQL said: " msgstr "MySQL reče: " -#: libraries/common.lib.php:667 libraries/messages.inc.php:76 +#: libraries/common.lib.php:667 libraries/messages.inc.php:72 #: pdf_schema.php:241 user_password.php:115 msgid "Back" msgstr "Nazad" -#: libraries/common.lib.php:1177 libraries/messages.inc.php:309 +#: libraries/common.lib.php:1177 libraries/messages.inc.php:305 #: setup/lib/messages.inc.php:353 msgid "Explain SQL" msgstr "Objasni SQL" -#: libraries/common.lib.php:1180 libraries/messages.inc.php:551 +#: libraries/common.lib.php:1180 libraries/messages.inc.php:547 msgid "Skip Explain SQL" msgstr "Preskoči objašnjavanje SQL-a" -#: libraries/common.lib.php:1212 libraries/messages.inc.php:563 +#: libraries/common.lib.php:1212 libraries/messages.inc.php:559 msgid "Without PHP Code" msgstr "bez PHP koda" -#: libraries/common.lib.php:1215 libraries/messages.inc.php:649 +#: libraries/common.lib.php:1215 libraries/messages.inc.php:645 #: setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "Napravi PHP kod" -#: libraries/common.lib.php:1233 libraries/messages.inc.php:737 +#: libraries/common.lib.php:1233 libraries/messages.inc.php:733 #: server_status.php:341 setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "Osveži" -#: libraries/common.lib.php:1242 libraries/messages.inc.php:575 +#: libraries/common.lib.php:1242 libraries/messages.inc.php:571 msgid "Skip Validate SQL" msgstr "Preskoči proveru SQL-a" -#: libraries/common.lib.php:1245 libraries/messages.inc.php:1220 +#: libraries/common.lib.php:1245 libraries/messages.inc.php:1216 #: setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "Proveri SQL" @@ -1870,11 +1870,11 @@ msgid "Inline" msgstr "Skladištenja" #: libraries/common.lib.php:1332 libraries/common.lib.php:1347 -#: libraries/messages.inc.php:713 +#: libraries/messages.inc.php:709 msgid "Profiling" msgstr "Profilisanje" -#: libraries/common.lib.php:1351 libraries/messages.inc.php:1108 +#: libraries/common.lib.php:1351 libraries/messages.inc.php:1104 #: libraries/tbl_triggers.lib.php:28 server_processlist.php:58 msgid "Time" msgstr "Vreme" @@ -1908,46 +1908,56 @@ msgstr "PB" msgid "EiB" msgstr "EB" +#. l10n: Thousands separator +#: libraries/common.lib.php:1417 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: libraries/common.lib.php:1419 +msgid "." +msgstr "." + #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1584 +#: libraries/common.lib.php:1596 #: libraries/transformations/text_plain__dateformat.inc.php:28 msgid "%B %d, %Y at %I:%M %p" msgstr "%d. %B %Y. u %H:%M" -#: libraries/common.lib.php:1886 +#: libraries/common.lib.php:1898 #, 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:2301 libraries/common.lib.php:2304 -#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:664 +#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:660 #: server_status.php:608 msgid "Begin" msgstr "Početak" -#: libraries/common.lib.php:2302 libraries/common.lib.php:2305 -#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:665 +#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:661 #: server_binlog.php:168 server_binlog.php:170 msgid "Previous" msgstr "Prethodna" -#: libraries/common.lib.php:2333 libraries/common.lib.php:2336 -#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:289 +#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:285 msgid "End" msgstr "Kraj" -#: libraries/common.lib.php:2409 libraries/messages.inc.php:455 +#: libraries/common.lib.php:2421 libraries/messages.inc.php:451 #, php-format msgid "Jump to database "%s"." msgstr "Pređi na bazu "%s"." -#: libraries/common.lib.php:2429 libraries/messages.inc.php:461 +#: libraries/common.lib.php:2441 libraries/messages.inc.php:457 #, 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/core.lib.php:286 libraries/dbg/setup.php:22 -#: libraries/messages.inc.php:127 +#: libraries/messages.inc.php:123 #, php-format msgid "" "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " @@ -1956,118 +1966,118 @@ msgstr "" "ne mogu da učitam ekstenziju %s,
molim proverite PHP konfiguraciju" #: libraries/db_events.inc.php:20 libraries/db_events.inc.php:22 -#: libraries/export/sql.php:415 libraries/messages.inc.php:306 +#: libraries/export/sql.php:415 libraries/messages.inc.php:302 #, fuzzy msgid "Events" msgstr "Događaji" #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 -#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:541 +#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:537 #: libraries/tbl_triggers.lib.php:27 setup/frames/index.inc.php:112 msgid "Name" msgstr "Ime" -#: libraries/db_links.inc.php:45 libraries/messages.inc.php:216 +#: libraries/db_links.inc.php:45 libraries/messages.inc.php:212 #, php-format msgid "Database %s has been dropped." msgstr "Baza %s je odbačena." #: libraries/db_links.inc.php:57 libraries/db_links.inc.php:58 -#: libraries/db_links.inc.php:59 libraries/messages.inc.php:234 +#: libraries/db_links.inc.php:59 libraries/messages.inc.php:230 msgid "Database seems to be empty!" msgstr "Baza je izgleda prazna!" -#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1025 +#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1021 #: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60 #: querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1152 +#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1148 #: libraries/tbl_links.inc.php:69 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:86 libraries/messages.inc.php:719 +#: libraries/db_links.inc.php:86 libraries/messages.inc.php:715 msgid "Query" msgstr "Upit po primeru" -#: libraries/db_links.inc.php:91 libraries/messages.inc.php:253 +#: libraries/db_links.inc.php:91 libraries/messages.inc.php:249 msgid "Designer" msgstr "Dizajner" -#: libraries/db_links.inc.php:98 libraries/messages.inc.php:397 +#: libraries/db_links.inc.php:98 libraries/messages.inc.php:393 #: libraries/server_links.inc.php:88 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:104 libraries/messages.inc.php:587 +#: libraries/db_links.inc.php:104 libraries/messages.inc.php:583 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" msgstr "Operacije" -#: libraries/db_links.inc.php:111 libraries/messages.inc.php:709 +#: libraries/db_links.inc.php:111 libraries/messages.inc.php:705 #: libraries/server_links.inc.php:66 server_privileges.php:72 #: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117 msgid "Privileges" msgstr "Privilegije" #: libraries/db_routines.inc.php:30 libraries/db_routines.inc.php:32 -#: libraries/messages.inc.php:812 +#: libraries/messages.inc.php:808 msgid "Routines" msgstr "Rutine" -#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:811 +#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:807 msgid "Return type" msgstr "Povratni tip" #: libraries/db_structure.lib.php:57 libraries/display_tbl.lib.php:1848 -#: libraries/messages.inc.php:65 +#: libraries/messages.inc.php:61 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "Može biti približno. Vidite FAQ 3.11" -#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:593 +#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:589 #: server_databases.php:142 tbl_printview.php:336 tbl_structure.php:683 msgid "Overhead" msgstr "Prekoračenje" #: libraries/dbi/mysql.dbi.lib.php:112 libraries/dbi/mysqli.dbi.lib.php:124 -#: libraries/messages.inc.php:176 +#: libraries/messages.inc.php:172 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Konekcija za controluser-a, onako kako je definisana u vašoj konfiguraciji, " "nije uspela." #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 -#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:855 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:851 msgid "The server is not responding" msgstr "Server ne odgovara" #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:1010 +#: libraries/messages.inc.php:1006 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 libraries/messages.inc.php:255 +#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:251 #: tbl_structure.php:609 msgid "Details..." msgstr "" -#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:143 +#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:139 #: main.php:91 user_password.php:111 user_password.php:129 msgid "Change password" msgstr "Promeni lozinku" -#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:561 +#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:557 #: libraries/replication_gui.lib.php:341 server_privileges.php:768 msgid "No Password" msgstr "Nema lozinke" -#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:610 +#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:606 #: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60 #: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335 #: libraries/replication_gui.lib.php:345 server_privileges.php:757 @@ -2076,13 +2086,13 @@ msgstr "Nema lozinke" msgid "Password" msgstr "Lozinka" -#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:806 +#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:802 #: libraries/replication_gui.lib.php:349 libraries/replication_gui.lib.php:352 #: server_privileges.php:776 server_privileges.php:779 msgid "Re-type" msgstr "Ponovite unos" -#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:608 +#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:604 msgid "Password Hashing" msgstr "Heširanje lozinke" @@ -2092,90 +2102,90 @@ msgstr "Heširanje lozinke" msgid "MySQL 4.0 compatible" msgstr "MySQL 4.0 kompatibilno" -#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:353 +#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:349 #: libraries/replication_gui.lib.php:356 server_privileges.php:783 msgid "Generate Password" msgstr "Napravi lozinku" -#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:352 +#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:348 #: libraries/replication_gui.lib.php:359 server_privileges.php:786 msgid "Generate" msgstr "Napravi" #: libraries/display_create_database.lib.php:22 -#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:189 +#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:185 msgid "Create new database" msgstr "Napravi novu bazu podataka" -#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:185 +#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:181 msgid "Create" msgstr "Napravi" -#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:564 +#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:560 #: server_privileges.php:74 server_privileges.php:1388 #: server_replication.php:35 msgid "No Privileges" msgstr "Nema privilegija" -#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:445 +#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:441 msgid "Table must have at least one field." msgstr "Tabela mora imati barem jedno polje." -#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:190 +#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:186 #, php-format msgid "Create table on database %s" msgstr "Napravi novu tabelu u bazi %s" -#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:577 +#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:573 msgid "Number of fields" msgstr "Broj polja" -#: libraries/display_export.lib.php:42 libraries/messages.inc.php:124 +#: libraries/display_export.lib.php:42 libraries/messages.inc.php:120 msgid "Could not load export plugins, please check your installation!" msgstr "" "Nije moguće učitati dodatke za izvoz, molimo proverite svoju instalaciju!" -#: libraries/display_export.lib.php:107 libraries/messages.inc.php:277 +#: libraries/display_export.lib.php:107 libraries/messages.inc.php:273 #, php-format msgid "Dump %s row(s) starting at record # %s" msgstr "Prikaži %s redova počevši od reda %s." -#: libraries/display_export.lib.php:115 libraries/messages.inc.php:274 +#: libraries/display_export.lib.php:115 libraries/messages.inc.php:270 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:125 libraries/messages.inc.php:852 +#: libraries/display_export.lib.php:125 libraries/messages.inc.php:848 #: setup/lib/messages.inc.php:82 msgid "Save as file" msgstr "Sačuvaj kao datoteku" -#: libraries/display_export.lib.php:134 libraries/messages.inc.php:828 +#: libraries/display_export.lib.php:134 libraries/messages.inc.php:824 #, php-format msgid "Save on server in %s directory" msgstr "Sačuvaj na server u direktorijum %s" -#: libraries/display_export.lib.php:142 libraries/messages.inc.php:594 +#: libraries/display_export.lib.php:142 libraries/messages.inc.php:590 #: setup/lib/messages.inc.php:90 msgid "Overwrite existing file(s)" msgstr "Prepiši postojeće datoteke" -#: libraries/display_export.lib.php:148 libraries/messages.inc.php:330 +#: libraries/display_export.lib.php:148 libraries/messages.inc.php:326 msgid "File name template" msgstr "Šablon imena datoteke" -#: libraries/display_export.lib.php:152 libraries/messages.inc.php:327 +#: libraries/display_export.lib.php:152 libraries/messages.inc.php:323 msgid "server name" msgstr "naziv servera" -#: libraries/display_export.lib.php:155 libraries/messages.inc.php:326 +#: libraries/display_export.lib.php:155 libraries/messages.inc.php:322 msgid "database name" msgstr "naziv baze" -#: libraries/display_export.lib.php:158 libraries/messages.inc.php:328 +#: libraries/display_export.lib.php:158 libraries/messages.inc.php:324 msgid "table name" msgstr "naziv tabele" -#: libraries/display_export.lib.php:162 libraries/messages.inc.php:329 +#: libraries/display_export.lib.php:162 libraries/messages.inc.php:325 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2186,24 +2196,24 @@ msgstr "" "koristite stringove za formatiranje vremena. Takođe će se desiti i sledeće " "transformacije: %3$s. Preostali tekst će ostati kako jeste." -#: libraries/display_export.lib.php:202 libraries/messages.inc.php:331 +#: libraries/display_export.lib.php:202 libraries/messages.inc.php:327 msgid "remember template" msgstr "zapamti šablon" #: libraries/display_export.lib.php:210 libraries/display_import.lib.php:178 -#: libraries/display_import.lib.php:191 libraries/messages.inc.php:145 +#: libraries/display_import.lib.php:191 libraries/messages.inc.php:141 #: libraries/sql_query_form.lib.php:549 msgid "Character set of the file:" msgstr "Karakter set datoteke:" -#: libraries/display_export.lib.php:235 libraries/messages.inc.php:166 +#: libraries/display_export.lib.php:235 libraries/messages.inc.php:162 #: setup/lib/messages.inc.php:84 msgid "Compression" 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/messages.inc.php:558 +#: libraries/export/sql.php:868 libraries/messages.inc.php:554 #: libraries/tbl_properties.inc.php:575 server_privileges.php:1836 #: server_processlist.php:75 msgid "None" @@ -2227,60 +2237,60 @@ msgstr "\"gzip-ovano\"" msgid "bzipped" msgstr "\"bzip-ovano\"" -#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1018 +#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1014 msgid "SQL compatibility mode" msgstr "Mod SQL kompatibilnosti" -#: libraries/display_import.lib.php:67 libraries/messages.inc.php:398 +#: libraries/display_import.lib.php:67 libraries/messages.inc.php:394 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " "browsers." msgstr "" -#: libraries/display_import.lib.php:77 libraries/messages.inc.php:406 +#: libraries/display_import.lib.php:77 libraries/messages.inc.php:402 msgid "The file is being processed, please be patient." msgstr "" -#: libraries/display_import.lib.php:99 libraries/messages.inc.php:408 +#: libraries/display_import.lib.php:99 libraries/messages.inc.php:404 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." msgstr "" -#: libraries/display_import.lib.php:126 libraries/messages.inc.php:333 +#: libraries/display_import.lib.php:126 libraries/messages.inc.php:329 msgid "File to import" msgstr "Datoteka za uvoz" -#: libraries/display_import.lib.php:137 libraries/messages.inc.php:486 +#: libraries/display_import.lib.php:137 libraries/messages.inc.php:482 #: libraries/sql_query_form.lib.php:524 msgid "Location of the text file" msgstr "Lokacija tekstualne datoteke" -#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1203 +#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1199 msgid "File uploads are not allowed on this server." msgstr "Slanje datoteka na ovaj server nije dozvoljeno." -#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1235 +#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1231 #: libraries/sql_query_form.lib.php:533 tbl_change.php:1028 msgid "The directory you set for upload work cannot be reached" msgstr "Direktorijum koji ste izabrali za slanje nije dostupan" -#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1236 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1232 #: libraries/sql_query_form.lib.php:536 tbl_change.php:1031 msgid "web server upload directory" msgstr "direktorijum za slanje veb servera " -#: libraries/display_import.lib.php:212 libraries/messages.inc.php:167 +#: libraries/display_import.lib.php:212 libraries/messages.inc.php:163 #, php-format msgid "Imported file compression will be automatically detected from: %s" msgstr "Vrsta kompresije uvezenih datoteka će biti automatski odabrana: %s" -#: libraries/display_import.lib.php:219 libraries/messages.inc.php:600 +#: libraries/display_import.lib.php:219 libraries/messages.inc.php:596 msgid "Partial import" msgstr "Delimični uvoz" -#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1105 +#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1101 #, php-format msgid "" "Previous import timed out, after resubmitting will continue from position %d." @@ -2288,7 +2298,7 @@ msgstr "" "Prethodnom uvozu je isteklo vreme, nakon ponovnog slanja biće nastavljen od " "pozicije %d." -#: libraries/display_import.lib.php:232 libraries/messages.inc.php:51 +#: libraries/display_import.lib.php:232 libraries/messages.inc.php:47 msgid "" "Allow the interruption of an import in case the script detects it is close " "to the PHP timeout limit. This might be good way to import large files, " @@ -2298,179 +2308,179 @@ msgstr "" "ograničenja. Ovo može biti dobar način uvoza velikih datoteka, ali sa druge " "strane može pokvariti transakcije." -#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1004 +#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1000 #: setup/lib/messages.inc.php:161 msgid "Number of records (queries) to skip from start" msgstr "Broj zapisa (upita) koje treba preskočiti:" -#: libraries/display_import.lib.php:255 libraries/messages.inc.php:396 +#: libraries/display_import.lib.php:255 libraries/messages.inc.php:392 #: setup/lib/messages.inc.php:160 msgid "Format of imported file" msgstr "Format datoteka za uvoz" #: libraries/display_select_lang.lib.php:45 -#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:465 +#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:461 #: setup/frames/index.inc.php:70 msgid "Language" msgstr "Jezik" -#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:447 +#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:443 #, php-format msgid "%d is not valid row number." msgstr "%d nije ispravan broj reda." -#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:814 +#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:810 msgid "row(s) starting from record #" msgstr " redova počev od reda" -#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:817 +#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:813 msgid "horizontal" msgstr "horizontalnom" -#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:816 +#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:812 msgid "horizontal (rotated headers)" msgstr "horizontalnom (rotirana zaglavlja)" -#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:819 +#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:815 msgid "vertical" msgstr "vertikalnom" -#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:818 +#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:814 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "u %s modu i ponovi zaglavlje posle svakog %s reda" -#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:495 +#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:491 msgid "This operation could take a long time. Proceed anyway?" msgstr "Ova operacija može da potraje. Da li da nastavimo?" -#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1012 +#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1008 msgid "Sort by key" msgstr "Sortiraj po ključu" #: libraries/display_tbl.lib.php:555 libraries/import.lib.php:1082 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:591 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:587 #: tbl_select.php:267 tbl_structure.php:754 msgid "Options" msgstr "Opcije" #: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:570 -#: libraries/messages.inc.php:601 +#: libraries/messages.inc.php:597 msgid "Partial Texts" msgstr "Deo teksta" #: libraries/display_tbl.lib.php:561 libraries/display_tbl.lib.php:574 -#: libraries/messages.inc.php:346 +#: libraries/messages.inc.php:342 msgid "Full Texts" msgstr "Pun tekst" -#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:739 +#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:735 #, fuzzy msgid "Relational key" msgstr "Relaciona shema" -#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:738 +#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:734 msgid "Relational display field" msgstr "" -#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:872 +#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:868 msgid "Show binary contents" msgstr "" -#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:873 +#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:869 msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:871 +#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:867 msgid "Show binary contents as HEX" msgstr "" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:375 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:371 #: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320 msgid "Hide" msgstr "Sakrij" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:508 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:504 #: libraries/tbl_properties.inc.php:144 transformation_overview.php:47 msgid "Browser transformation" msgstr "Tranformacije čitača" #: libraries/display_tbl.lib.php:1126 libraries/display_tbl.lib.php:1130 -#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:308 +#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:304 msgid "Execute bookmarked query" msgstr "Izvrši upamćen upit" #: libraries/display_tbl.lib.php:1145 libraries/display_tbl.lib.php:1157 -#: libraries/messages.inc.php:244 +#: libraries/messages.inc.php:240 msgid "The row has been deleted" msgstr "Red je obrisan" #: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056 -#: libraries/messages.inc.php:460 server_processlist.php:71 +#: libraries/messages.inc.php:456 server_processlist.php:71 #: tbl_row_action.php:64 msgid "Kill" msgstr "Obustavi" -#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:849 +#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:845 msgid "in query" msgstr "u upitu" -#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:881 +#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:877 msgid "Showing rows" msgstr "Prikaz zapisa" -#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1113 +#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1109 msgid "total" msgstr "ukupno" -#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:727 +#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:723 #: sql.php:524 #, php-format msgid "Query took %01.4f sec" msgstr "Upit je trajao %01.4f sekundi" -#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:135 +#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:131 #: 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:471 msgid "Change" msgstr "Promeni" -#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:724 +#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:720 msgid "Query results operations" msgstr "Operacije na rezultatima upita" -#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:671 +#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:667 msgid "Print view (with full texts)" msgstr "Pogled za štampu (sa punim tekstom)" -#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:482 +#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:478 msgid "Link not found" msgstr "Veza nije pronađena" -#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1224 +#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1220 #: main.php:228 msgid "Version information" msgstr "Informacije o verziji" -#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:423 +#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:419 msgid "Data home directory" msgstr "Osnovni direktorijum podataka" -#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:424 +#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:420 msgid "The common part of the directory path for all InnoDB data files." msgstr "" "Zajednički deo putanje direktorijuma za sve InnoDB datoteke sa podacima." -#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:422 +#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:418 msgid "Data files" msgstr "Datoteke sa podacima" -#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:418 +#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:414 msgid "Autoextend increment" msgstr "Korak automatskog proširenja" -#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:419 +#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:415 msgid "" " The increment size for extending the size of an autoextending tablespace " "when it becomes full." @@ -2478,11 +2488,11 @@ msgstr "" " Veličina koraka proširenja veličine tabela koje se automatski proširuju " "kada se napune." -#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:420 +#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:416 msgid "Buffer pool size" msgstr "Veličina prihvatnika" -#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:421 +#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:417 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." @@ -2490,87 +2500,87 @@ msgstr "" "Veličina memorijskog prihvatnika koje InnoDB koristi za keširanje podataka i " "indeksa svojih tabela." -#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:112 +#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:108 msgid "Buffer Pool" msgstr "Skup prihvatnika" -#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:426 +#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:422 #: server_status.php:306 msgid "InnoDB Status" msgstr "InnoDB status" -#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:113 +#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:109 msgid "Buffer Pool Usage" msgstr "Korišćenje skupa prihvatnika" -#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1114 +#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1110 #: server_databases.php:137 server_databases.php:305 server_status.php:414 #: server_status.php:475 server_status.php:496 tbl_printview.php:351 #: tbl_structure.php:697 msgid "Total" msgstr "Ukupno" -#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:425 +#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:421 msgid "pages" msgstr "strana" -#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:343 +#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:339 msgid "Free pages" msgstr "Slobodne strane" -#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:259 +#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:255 msgid "Dirty pages" msgstr "Prljave strane" -#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:230 +#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:226 msgid "Pages containing data" msgstr "Strane sa podacima" -#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:598 +#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:594 msgid "Pages to be flushed" msgstr "Strane koje treba da budu usklađene" -#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:119 +#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:115 msgid "Busy pages" msgstr "Zauzete strane" -#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:467 +#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:463 msgid "Latched pages" msgstr "Zabravljene strane" -#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:111 +#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:107 msgid "Buffer Pool Activity" msgstr "Aktivnost skupa prihvatnika" -#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:731 +#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:727 msgid "Read requests" msgstr "Zahtevi za čitanje" -#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1244 +#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1240 msgid "Write requests" msgstr "Zahtevi za upis" -#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:115 +#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:111 msgid "Read misses" msgstr "Promašaji pri čitanju" -#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:117 +#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:113 msgid "Write waits" msgstr "Čekanja na upis" -#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:114 +#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:110 msgid "Read misses in %" msgstr "Promašaji čitanja u %" -#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:116 +#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:112 msgid "Write waits in %" msgstr "Čekanja na upis u %" -#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:522 +#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:518 msgid "Data pointer size" msgstr "Veličina pokazivača podataka" -#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:523 +#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:519 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." @@ -2578,11 +2588,11 @@ msgstr "" "Podrazumevana veličina pokazivača u bajtovima, koristi se pri CREATE TABLE " "za MyISAM tabele kada nije zadata opcija MAX_ROWS" -#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:528 +#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:524 msgid "Automatic recovery mode" msgstr "Režim automatskog oporavka" -#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:529 +#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:525 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." @@ -2590,11 +2600,11 @@ msgstr "" "Režim automatskog oporavka puknutih MyISAM tabela, podešen pri startovanju " "servera opcijom --myisam-recover." -#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:527 +#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:523 msgid "Maximum size for temporary sort files" msgstr "Maksimalna veličina privremenih datoteka za sortiranje" -#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:526 +#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:522 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " @@ -2604,11 +2614,11 @@ msgstr "" "kreiranju MyISAM indeksa (u toku REPAIR TABLE, ALTER TABLE, ili LOAD DATA " "INFILE operacija)." -#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:525 +#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:521 msgid "Maximum size for temporary files on index creation" msgstr "Maksimalna veličina privremenih datoteka pri kreiranju indeksa" -#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:524 +#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:520 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " @@ -2618,11 +2628,11 @@ msgstr "" "bila veća nego pri korišćenju keša ključeva za ovde zadatu vrednost, koristi " "metod keširanja ključeva" -#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:531 +#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:527 msgid "Repair threads" msgstr "Niti popravke" -#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:530 +#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:526 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." @@ -2630,11 +2640,11 @@ msgstr "" "Ako je vrednost veća od 1, indeksi MyISAM tabela se paralelno kreiraju " "(svaki indeks u sopstvenoj niti) za vreme procesa popravke sortiranjem." -#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:533 +#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:529 msgid "Sort buffer size" msgstr "Veličina prihvatnika za sortiranje" -#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:532 +#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:528 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." @@ -2642,73 +2652,73 @@ msgstr "" "Prihvatnik koji se alocira pri sortiranju MyISAM indeksa za vreme operacije " "REPAIR TABLE ili pri kreiranju indeksa sa CREATE INDEX ili ALTER TABLE." -#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:620 +#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:616 msgid "Index cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:619 +#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:615 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." msgstr "" -#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:630 +#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:626 msgid "Record cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:629 +#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:625 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " "to the handle data (.xtd) and row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:624 +#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:620 #, fuzzy msgid "Log cache size" msgstr "Veličina prihvatnika za sortiranje" -#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:623 +#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:619 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:628 +#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:624 msgid "Log file threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:627 +#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:623 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:634 +#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:630 msgid "Transaction buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:633 +#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:629 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." msgstr "" -#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:611 +#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:607 msgid "Checkpoint frequency" msgstr "" -#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:612 +#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:608 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." msgstr "" -#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:615 +#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:611 msgid "Data log threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:616 +#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:612 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -2716,49 +2726,49 @@ msgid "" "that can be stored in the database." msgstr "" -#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:618 +#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:614 msgid "Garbage threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:617 +#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:613 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." msgstr "" -#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:622 +#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:618 #, fuzzy msgid "Log buffer size" msgstr "Veličina prihvatnika za sortiranje" -#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:621 +#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:617 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " "required to write a data log." msgstr "" -#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:613 +#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:609 msgid "Data file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:614 +#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:610 msgid "The grow size of the handle data (.xtd) files." msgstr "" -#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:632 +#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:628 msgid "Row file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:631 +#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:627 msgid "The grow size of the row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:626 +#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:622 msgid "Log file count" msgstr "" -#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:625 +#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:621 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -2768,19 +2778,19 @@ msgstr "" #: libraries/export/htmlword.php:132 libraries/export/odt.php:168 #: libraries/export/sql.php:881 libraries/export/texytext.php:130 -#: libraries/messages.inc.php:275 +#: libraries/messages.inc.php:271 msgid "Dumping data for table" msgstr "Prikaz podataka tabele" #: libraries/export/htmlword.php:185 libraries/export/odt.php:238 #: libraries/export/sql.php:785 libraries/export/texytext.php:177 -#: libraries/messages.inc.php:1086 +#: libraries/messages.inc.php:1082 msgid "Table structure for table" msgstr "Struktura tabele" #: libraries/export/latex.php:125 libraries/export/sql.php:232 #: libraries/export/xml.php:102 libraries/header_printview.inc.php:57 -#: libraries/messages.inc.php:381 libraries/replication_gui.lib.php:63 +#: libraries/messages.inc.php:377 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:170 libraries/replication_gui.lib.php:265 #: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325 #: server_privileges.php:692 server_privileges.php:695 @@ -2792,187 +2802,187 @@ msgstr "Domaćin" #: libraries/export/latex.php:130 libraries/export/sql.php:233 #: libraries/export/xml.php:107 libraries/header_printview.inc.php:59 -#: libraries/messages.inc.php:354 +#: libraries/messages.inc.php:350 msgid "Generation Time" msgstr "Vreme kreiranja" #: libraries/export/latex.php:131 libraries/export/sql.php:235 -#: libraries/export/xml.php:108 libraries/messages.inc.php:864 main.php:186 +#: libraries/export/xml.php:108 libraries/messages.inc.php:860 main.php:186 msgid "Server version" msgstr "Verzija servera" #: libraries/export/latex.php:132 libraries/export/sql.php:236 -#: libraries/export/xml.php:109 libraries/messages.inc.php:651 +#: libraries/export/xml.php:109 libraries/messages.inc.php:647 msgid "PHP Version" msgstr "verzija PHP-a" #: libraries/export/latex.php:201 libraries/export/sql.php:868 -#: libraries/messages.inc.php:226 server_databases.php:127 +#: libraries/messages.inc.php:222 server_databases.php:127 #: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317 #: tbl_structure.php:666 msgid "Data" msgstr "Podaci" -#: libraries/export/odt.php:318 libraries/messages.inc.php:506 +#: libraries/export/odt.php:318 libraries/messages.inc.php:502 #: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "MIME-tipovi" -#: libraries/export/sql.php:387 libraries/messages.inc.php:711 +#: libraries/export/sql.php:387 libraries/messages.inc.php:707 msgid "Procedures" msgstr "Procedure" -#: libraries/export/sql.php:401 libraries/messages.inc.php:348 +#: libraries/export/sql.php:401 libraries/messages.inc.php:344 msgid "Functions" msgstr "Funkcije" -#: libraries/export/sql.php:618 libraries/messages.inc.php:174 +#: libraries/export/sql.php:618 libraries/messages.inc.php:170 msgid "Constraints for dumped tables" msgstr "Ograničenja za izvezene tabele" -#: libraries/export/sql.php:627 libraries/messages.inc.php:175 +#: libraries/export/sql.php:627 libraries/messages.inc.php:171 msgid "Constraints for table" msgstr "Ograničenja za tabele" -#: libraries/export/sql.php:727 libraries/messages.inc.php:512 +#: libraries/export/sql.php:727 libraries/messages.inc.php:508 msgid "MIME TYPES FOR TABLE" msgstr "MIME TIPOVI ZA TABELU" -#: libraries/export/sql.php:739 libraries/messages.inc.php:743 +#: libraries/export/sql.php:739 libraries/messages.inc.php:739 msgid "RELATIONS FOR TABLE" msgstr "RELACIJE TABELE" -#: libraries/export/sql.php:796 libraries/messages.inc.php:1178 +#: libraries/export/sql.php:796 libraries/messages.inc.php:1174 #: libraries/tbl_triggers.lib.php:19 msgid "Triggers" msgstr "Okidači" -#: libraries/export/sql.php:808 libraries/messages.inc.php:1046 +#: libraries/export/sql.php:808 libraries/messages.inc.php:1042 msgid "Structure for view" msgstr "Struktura za pogled (view)" -#: libraries/export/sql.php:817 libraries/messages.inc.php:1029 +#: libraries/export/sql.php:817 libraries/messages.inc.php:1025 msgid "Stand-in structure for view" msgstr "Struktura koja zamenjuje pogled" #: libraries/footer.inc.php:184 libraries/footer.inc.php:195 -#: libraries/footer.inc.php:198 libraries/messages.inc.php:586 +#: libraries/footer.inc.php:198 libraries/messages.inc.php:582 msgid "Open new phpMyAdmin window" msgstr "Otvori novi phpMyAdmin prozor" -#: libraries/header.inc.php:115 libraries/messages.inc.php:542 +#: libraries/header.inc.php:115 libraries/messages.inc.php:538 #, fuzzy msgid "New table" msgstr "Nema tabela" #: libraries/header_printview.inc.php:50 libraries/header_printview.inc.php:55 -#: libraries/messages.inc.php:1024 +#: libraries/messages.inc.php:1020 msgid "SQL result" msgstr "SQL rezultat" -#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:350 +#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:346 msgid "Generated by" msgstr "Generisao" #: libraries/header_printview.inc.php:63 libraries/import.lib.php:145 -#: libraries/messages.inc.php:820 navigation.php:652 navigation.php:674 +#: libraries/messages.inc.php:816 navigation.php:652 navigation.php:674 #: server_databases.php:122 tbl_printview.php:394 tbl_structure.php:366 #: tbl_structure.php:778 msgid "Rows" msgstr "Redova" -#: libraries/import.lib.php:150 libraries/messages.inc.php:285 sql.php:520 +#: libraries/import.lib.php:150 libraries/messages.inc.php:281 sql.php:520 #: tbl_change.php:181 tbl_get_field.php:35 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL je vratio prazan rezultat (nula redova)." -#: libraries/import.lib.php:1078 libraries/messages.inc.php:399 +#: libraries/import.lib.php:1078 libraries/messages.inc.php:395 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1079 libraries/messages.inc.php:400 +#: libraries/import.lib.php:1079 libraries/messages.inc.php:396 msgid "View a structure`s contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1080 libraries/messages.inc.php:401 +#: libraries/import.lib.php:1080 libraries/messages.inc.php:397 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1081 libraries/messages.inc.php:402 +#: libraries/import.lib.php:1081 libraries/messages.inc.php:398 msgid "Edit its structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1084 libraries/messages.inc.php:362 +#: libraries/import.lib.php:1084 libraries/messages.inc.php:358 #, fuzzy msgid "Go to database" msgstr "Baza ne postoji" #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:869 +#: libraries/messages.inc.php:865 msgid "settings" msgstr "" -#: libraries/import.lib.php:1106 libraries/messages.inc.php:363 +#: libraries/import.lib.php:1106 libraries/messages.inc.php:359 #, fuzzy msgid "Go to table" msgstr "Baza ne postoji" -#: libraries/import.lib.php:1109 libraries/messages.inc.php:1047 +#: libraries/import.lib.php:1109 libraries/messages.inc.php:1043 #, fuzzy msgid "structure" msgstr "Struktura" -#: libraries/import.lib.php:1115 libraries/messages.inc.php:364 +#: libraries/import.lib.php:1115 libraries/messages.inc.php:360 msgid "Go to view" msgstr "" #: libraries/import/csv.php:58 libraries/import/csv.php:70 #: libraries/import/csv.php:74 libraries/import/csv.php:78 -#: libraries/messages.inc.php:442 +#: libraries/messages.inc.php:438 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "Neispravni parametri za CSV uvoz: %s" -#: libraries/import/csv.php:59 libraries/messages.inc.php:323 +#: libraries/import/csv.php:59 libraries/messages.inc.php:319 msgid "Fields terminated by" msgstr "Polja razdvojena sa" -#: libraries/import/csv.php:71 libraries/messages.inc.php:320 +#: libraries/import/csv.php:71 libraries/messages.inc.php:316 msgid "Fields enclosed by" msgstr "Polja ograničena sa" -#: libraries/import/csv.php:75 libraries/messages.inc.php:321 +#: libraries/import/csv.php:75 libraries/messages.inc.php:317 msgid "Fields escaped by" msgstr "Escape karakter      " -#: libraries/import/csv.php:79 libraries/messages.inc.php:481 +#: libraries/import/csv.php:79 libraries/messages.inc.php:477 msgid "Lines terminated by" msgstr "Linije se završavaju sa" -#: libraries/import/csv.php:119 libraries/messages.inc.php:439 +#: libraries/import/csv.php:119 libraries/messages.inc.php:435 #, php-format msgid "Invalid column (%s) specified!" msgstr "Zadata je neispravna kolona (%s)!" #: libraries/import/csv.php:177 libraries/import/csv.php:424 -#: libraries/messages.inc.php:441 +#: libraries/messages.inc.php:437 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "Neispravan format CSV ulaza na liniji %d." -#: libraries/import/csv.php:312 libraries/messages.inc.php:440 +#: libraries/import/csv.php:312 libraries/messages.inc.php:436 #, php-format msgid "Invalid field count in CSV input on line %d." msgstr "Neispravan broj polja u CSV ulazu na liniji %d." -#: libraries/import/ldi.php:55 libraries/messages.inc.php:446 +#: libraries/import/ldi.php:55 libraries/messages.inc.php:442 msgid "This plugin does not support compressed imports!" msgstr "Ovaj dodatak ne podržava kompresovane uvoze!" #: libraries/import/xml.php:74 libraries/import/xml.php:130 -#: libraries/messages.inc.php:1247 +#: libraries/messages.inc.php:1243 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -3002,575 +3012,565 @@ msgstr "" msgid "ltr" msgstr "ltr" -#. l10n: Thousands separator -#: libraries/messages.inc.php:21 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: libraries/messages.inc.php:23 -msgid "." -msgstr "." - -#: libraries/messages.inc.php:25 server_status.php:461 +#: libraries/messages.inc.php:21 server_status.php:461 msgid "Aborted" msgstr "Prekinuto" -#: libraries/messages.inc.php:28 main.php:68 +#: libraries/messages.inc.php:24 main.php:68 #, fuzzy msgid "Actions" msgstr "Akcija" -#: libraries/messages.inc.php:34 libraries/tbl_properties.inc.php:780 +#: libraries/messages.inc.php:30 libraries/tbl_properties.inc.php:780 #: tbl_structure.php:543 #, php-format msgid "Add %s field(s)" msgstr "Dodaj %s polja" -#: libraries/messages.inc.php:35 +#: libraries/messages.inc.php:31 msgid "Add custom comment into header (\\n splits lines)" msgstr "Dodaj komentar u zaglavlje (\\n razdvaja linije)" -#: libraries/messages.inc.php:36 +#: libraries/messages.inc.php:32 msgid "Add into comments" msgstr "Dodaj u komentare" -#: libraries/messages.inc.php:37 tbl_structure.php:541 +#: libraries/messages.inc.php:33 tbl_structure.php:541 msgid "Add new field" msgstr "Dodaj novo polje" -#: libraries/messages.inc.php:38 server_privileges.php:1886 +#: libraries/messages.inc.php:34 server_privileges.php:1886 msgid "Add privileges on the following database" msgstr "Dodaj privilegije na sledećoj bazi" -#: libraries/messages.inc.php:39 server_privileges.php:1907 +#: libraries/messages.inc.php:35 server_privileges.php:1907 msgid "Add privileges on the following table" msgstr "Dodaj privilegije na sledećoj tabeli" -#: libraries/messages.inc.php:40 tbl_select.php:288 +#: libraries/messages.inc.php:36 tbl_select.php:288 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Dodaj uslove pretraživanja (deo \"WHERE\" upita):" -#: libraries/messages.inc.php:41 tbl_indexes.php:251 +#: libraries/messages.inc.php:37 tbl_indexes.php:251 #, php-format msgid "Add to index  %s column(s)" msgstr "Dodaj u ključ  %s kolona(e)" -#: libraries/messages.inc.php:42 server_privileges.php:1570 +#: libraries/messages.inc.php:38 server_privileges.php:1570 #: server_privileges.php:1594 server_privileges.php:1988 #: server_privileges.php:2177 msgid "Add a new User" msgstr "Dodaj novog korisnika" -#: libraries/messages.inc.php:43 server_privileges.php:931 +#: libraries/messages.inc.php:39 server_privileges.php:931 msgid "You have added a new user." msgstr "Dodali ste novog korisnika." -#: libraries/messages.inc.php:44 server_privileges.php:571 +#: libraries/messages.inc.php:40 server_privileges.php:571 msgid "Administration" msgstr "Administracija" -#: libraries/messages.inc.php:45 tbl_structure.php:557 +#: libraries/messages.inc.php:41 tbl_structure.php:557 #, php-format msgid "After %s" msgstr "Posle %s" -#: libraries/messages.inc.php:46 tbl_change.php:1147 +#: libraries/messages.inc.php:42 tbl_change.php:1147 msgid "Go back to previous page" msgstr "Nazad na prethodnu stranu" -#: libraries/messages.inc.php:47 tbl_change.php:1148 +#: libraries/messages.inc.php:43 tbl_change.php:1148 msgid "Insert another new row" msgstr "Dodaj još jedan novi red" -#: libraries/messages.inc.php:48 tbl_change.php:1160 +#: libraries/messages.inc.php:44 tbl_change.php:1160 msgid "Edit next row" msgstr "Uredi sledeći red" -#: libraries/messages.inc.php:49 tbl_change.php:1152 +#: libraries/messages.inc.php:45 tbl_change.php:1152 msgid "Go back to this page" msgstr "Vrati se na ovu stranu" -#: libraries/messages.inc.php:50 querywindow.php:115 +#: libraries/messages.inc.php:46 querywindow.php:115 msgid "All" msgstr "Sve" -#: libraries/messages.inc.php:53 tbl_operations.php:249 +#: libraries/messages.inc.php:49 tbl_operations.php:249 msgid "Alter table order by" msgstr "Promeni redosled u tabeli" -#: libraries/messages.inc.php:54 tbl_operations.php:660 +#: libraries/messages.inc.php:50 tbl_operations.php:660 msgid "Analyze" msgstr "" -#: libraries/messages.inc.php:57 +#: libraries/messages.inc.php:53 #, fuzzy msgid "and" msgstr "i" -#: libraries/messages.inc.php:59 pmd_general.php:87 +#: libraries/messages.inc.php:55 pmd_general.php:87 msgid "Angular links" msgstr "Uglaste veze" -#: libraries/messages.inc.php:60 tbl_structure.php:401 tbl_structure.php:415 +#: libraries/messages.inc.php:56 tbl_structure.php:401 tbl_structure.php:415 #: tbl_structure.php:429 #, php-format msgid "An index has been added on %s" msgstr "Ključ je upravo dodat %s" -#: libraries/messages.inc.php:61 server_privileges.php:1521 +#: libraries/messages.inc.php:57 server_privileges.php:1521 #: server_privileges.php:2123 msgid "Any" msgstr "Bilo koji" -#: libraries/messages.inc.php:62 libraries/replication_gui.lib.php:298 +#: libraries/messages.inc.php:58 libraries/replication_gui.lib.php:298 #: server_privileges.php:725 msgid "Any host" msgstr "Bilo koji domaćin" -#: libraries/messages.inc.php:63 libraries/replication_gui.lib.php:250 +#: libraries/messages.inc.php:59 libraries/replication_gui.lib.php:250 #: server_privileges.php:677 msgid "Any user" msgstr "Bilo koji korisnik" -#: libraries/messages.inc.php:64 server_synchronize.php:449 +#: libraries/messages.inc.php:60 server_synchronize.php:449 #: server_synchronize.php:894 msgid "Apply Selected Changes" msgstr "" -#: libraries/messages.inc.php:66 tbl_structure.php:386 +#: libraries/messages.inc.php:62 tbl_structure.php:386 #, php-format msgid "A primary key has been added on %s" msgstr "Primarni ključ je upravo dodat %s" -#: libraries/messages.inc.php:67 libraries/mysql_charsets.lib.php:368 +#: libraries/messages.inc.php:63 libraries/mysql_charsets.lib.php:368 msgid "Arabic" msgstr "Arapski" -#: libraries/messages.inc.php:68 libraries/mysql_charsets.lib.php:359 +#: libraries/messages.inc.php:64 libraries/mysql_charsets.lib.php:359 msgid "Armenian" msgstr "Jermenski" -#: libraries/messages.inc.php:70 libraries/tbl_properties.inc.php:394 +#: libraries/messages.inc.php:66 libraries/tbl_properties.inc.php:394 msgid "As defined:" msgstr "" -#: libraries/messages.inc.php:71 tbl_structure.php:556 +#: libraries/messages.inc.php:67 tbl_structure.php:556 msgid "At Beginning of Table" msgstr "Na početku tabele" -#: libraries/messages.inc.php:72 tbl_structure.php:555 +#: libraries/messages.inc.php:68 tbl_structure.php:555 msgid "At End of Table" msgstr "Na kraju tabele" -#: libraries/messages.inc.php:73 libraries/tbl_properties.inc.php:108 +#: libraries/messages.inc.php:69 libraries/tbl_properties.inc.php:108 #: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:144 #: tbl_structure.php:180 msgid "Attributes" msgstr "Atributi" -#: libraries/messages.inc.php:74 pdf_pages.php:303 pdf_pages.php:306 +#: libraries/messages.inc.php:70 pdf_pages.php:303 pdf_pages.php:306 msgid "Automatic layout" msgstr "Automatski raspored" -#: libraries/messages.inc.php:77 libraries/mysql_charsets.lib.php:354 +#: libraries/messages.inc.php:73 libraries/mysql_charsets.lib.php:354 msgid "Baltic" msgstr "Baltički" -#: libraries/messages.inc.php:78 libraries/sqlparser.lib.php:175 +#: libraries/messages.inc.php:74 libraries/sqlparser.lib.php:175 msgid "BEGIN CUT" msgstr "POČETAK REZ" -#: libraries/messages.inc.php:79 libraries/sqlparser.lib.php:179 +#: libraries/messages.inc.php:75 libraries/sqlparser.lib.php:179 msgid "BEGIN RAW" msgstr "POČETAK SIROVO" -#: libraries/messages.inc.php:80 libraries/mysql_charsets.lib.php:201 +#: libraries/messages.inc.php:76 libraries/mysql_charsets.lib.php:201 #: libraries/mysql_charsets.lib.php:402 tbl_change.php:518 msgid "Binary" msgstr "Binarni" -#: libraries/messages.inc.php:81 tbl_change.php:894 +#: libraries/messages.inc.php:77 tbl_change.php:894 msgid "Binary - do not edit" msgstr "Binarni - ne menjaj" -#: libraries/messages.inc.php:82 libraries/server_links.inc.php:76 +#: libraries/messages.inc.php:78 libraries/server_links.inc.php:76 #: server_binlog.php:110 server_status.php:253 test/theme.php:121 msgid "Binary log" msgstr "Binarni dnevnik" -#: libraries/messages.inc.php:83 server_binlog.php:217 +#: libraries/messages.inc.php:79 server_binlog.php:217 msgid "Event type" msgstr "Vrsta događaja" -#: libraries/messages.inc.php:84 server_binlog.php:220 +#: libraries/messages.inc.php:80 server_binlog.php:220 msgid "Information" msgstr "Informacije" -#: libraries/messages.inc.php:85 server_binlog.php:215 +#: libraries/messages.inc.php:81 server_binlog.php:215 msgid "Log name" msgstr "Naziv dnevnika" -#: libraries/messages.inc.php:86 server_binlog.php:219 +#: libraries/messages.inc.php:82 server_binlog.php:219 msgid "Original position" msgstr "Originalna pozicija" -#: libraries/messages.inc.php:87 server_binlog.php:216 +#: libraries/messages.inc.php:83 server_binlog.php:216 msgid "Position" msgstr "Pozicija" -#: libraries/messages.inc.php:88 libraries/replication_gui.lib.php:169 +#: libraries/messages.inc.php:84 libraries/replication_gui.lib.php:169 #: server_binlog.php:218 msgid "Server ID" msgstr "ID servera" -#: libraries/messages.inc.php:92 +#: libraries/messages.inc.php:88 #, fuzzy msgctxt "$strBLOBRepositoryDisabled" msgid "Disabled" msgstr "Onemogućeno" -#: libraries/messages.inc.php:95 +#: libraries/messages.inc.php:91 #, fuzzy msgctxt "$strBLOBRepositoryEnabled" msgid "Enabled" msgstr "Omogućeno" -#: libraries/messages.inc.php:97 tbl_change.php:888 +#: libraries/messages.inc.php:93 tbl_change.php:888 msgid "Remove BLOB Repository Reference" msgstr "" -#: libraries/messages.inc.php:98 +#: libraries/messages.inc.php:94 #, fuzzy msgctxt "$strBLOBRepositoryRepair" msgid "Repair" msgstr "Popravi tabelu" -#: libraries/messages.inc.php:99 tbl_change.php:987 +#: libraries/messages.inc.php:95 tbl_change.php:987 msgid "Upload to BLOB repository" msgstr "" -#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:359 +#: libraries/messages.inc.php:96 libraries/sql_query_form.lib.php:359 #: sql.php:677 msgid "Let every user access this bookmark" msgstr "Dozvoli svakom korisniku da pristupa ovom upamćenom upitu" -#: libraries/messages.inc.php:103 sql.php:671 +#: libraries/messages.inc.php:99 sql.php:671 msgid "Label" msgstr "Naziv" -#: libraries/messages.inc.php:104 libraries/sql_query_form.lib.php:433 +#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:433 msgid "Bookmarked SQL query" msgstr "Zapamćen SQL-upit" -#: libraries/messages.inc.php:105 libraries/sql_query_form.lib.php:365 +#: libraries/messages.inc.php:101 libraries/sql_query_form.lib.php:365 msgid "Replace existing bookmark of same name" msgstr "Zameni postojeće zapamćene upite istog imena" -#: libraries/messages.inc.php:106 libraries/sql_query_form.lib.php:352 +#: libraries/messages.inc.php:102 libraries/sql_query_form.lib.php:352 #: sql.php:665 sql.php:666 sql.php:683 msgid "Bookmark this SQL query" msgstr "Zapamti SQL-upit" -#: libraries/messages.inc.php:107 libraries/sql_query_form.lib.php:466 +#: libraries/messages.inc.php:103 libraries/sql_query_form.lib.php:466 msgid "View only" msgstr "Vidi samo" -#: libraries/messages.inc.php:109 tbl_structure.php:161 +#: libraries/messages.inc.php:105 tbl_structure.php:161 msgid "Browse distinct values" msgstr "Pregledaj različite vrednosti" -#: libraries/messages.inc.php:110 tbl_change.php:252 tbl_select.php:27 +#: libraries/messages.inc.php:106 tbl_change.php:252 tbl_select.php:27 #: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34 msgid "Browse foreign values" msgstr "Pregledaj strane vrednosti" -#: libraries/messages.inc.php:118 libraries/mysql_charsets.lib.php:213 +#: libraries/messages.inc.php:114 libraries/mysql_charsets.lib.php:213 msgid "Bulgarian" msgstr "Bugarski" -#: libraries/messages.inc.php:120 +#: libraries/messages.inc.php:116 msgid "\"bzipped\"" msgstr "\"bzip-ovano\"" -#: libraries/messages.inc.php:122 +#: libraries/messages.inc.php:118 msgid "Calendar" msgstr "Kalendar" -#: libraries/messages.inc.php:129 tbl_indexes.php:75 +#: libraries/messages.inc.php:125 tbl_indexes.php:75 msgid "Can't rename index to PRIMARY!" msgstr "Ne mogu da promenim ključ u PRIMARY (primarni) !" -#: libraries/messages.inc.php:132 libraries/mysql_charsets.lib.php:223 +#: libraries/messages.inc.php:128 libraries/mysql_charsets.lib.php:223 #: libraries/mysql_charsets.lib.php:409 msgid "case-insensitive" msgstr "Ne razlikuje mala i velika slova" -#: libraries/messages.inc.php:133 libraries/mysql_charsets.lib.php:226 +#: libraries/messages.inc.php:129 libraries/mysql_charsets.lib.php:226 #: libraries/mysql_charsets.lib.php:411 msgid "case-sensitive" msgstr "Razlikuje mala i velika slova" -#: libraries/messages.inc.php:134 libraries/mysql_charsets.lib.php:332 +#: libraries/messages.inc.php:130 libraries/mysql_charsets.lib.php:332 msgid "Central European" msgstr "Centralnoevropski" -#: libraries/messages.inc.php:136 server_privileges.php:1969 +#: libraries/messages.inc.php:132 server_privileges.php:1969 msgid "... keep the old one." msgstr "... sačuvaj stare." -#: libraries/messages.inc.php:137 server_privileges.php:1967 +#: libraries/messages.inc.php:133 server_privileges.php:1967 msgid "Create a new user with the same privileges and ..." msgstr "Napravi novog korisnika sa istim privilegijama i ..." -#: libraries/messages.inc.php:138 server_privileges.php:1972 +#: libraries/messages.inc.php:134 server_privileges.php:1972 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" " ... obriši starog iz tabele korisnika i zatim ponovo učitaj privilegije." -#: libraries/messages.inc.php:139 server_privileges.php:1970 +#: libraries/messages.inc.php:135 server_privileges.php:1970 msgid " ... delete the old one from the user tables." msgstr " ... obriši stare iz tabela korisnika." -#: libraries/messages.inc.php:140 server_privileges.php:1971 +#: libraries/messages.inc.php:136 server_privileges.php:1971 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr " ... obustavi sve privilegije starog korisnika i zatim ga obriši." -#: libraries/messages.inc.php:141 server_privileges.php:1964 +#: libraries/messages.inc.php:137 server_privileges.php:1964 msgid "Change Login Information / Copy User" msgstr "Promeni informacije o prijavi / Kopiraj korisnika" -#: libraries/messages.inc.php:144 libraries/mysql_charsets.lib.php:107 +#: libraries/messages.inc.php:140 libraries/mysql_charsets.lib.php:107 msgid "Charset" msgstr "Karakter set" -#: libraries/messages.inc.php:146 server_collations.php:40 +#: libraries/messages.inc.php:142 server_collations.php:40 msgid "Character Sets and Collations" msgstr "Karakter setovi i sortiranje" -#: libraries/messages.inc.php:147 libraries/server_links.inc.php:57 +#: libraries/messages.inc.php:143 libraries/server_links.inc.php:57 #: test/theme.php:109 msgid "Charsets" msgstr "Kodne strane" -#: libraries/messages.inc.php:149 tbl_operations.php:661 +#: libraries/messages.inc.php:145 tbl_operations.php:661 #, fuzzy msgid "Check" msgstr "Češki" -#: libraries/messages.inc.php:151 server_databases.php:293 +#: libraries/messages.inc.php:147 server_databases.php:293 #: server_databases.php:294 msgid "Check Privileges" msgstr "Proveri privilegije" -#: libraries/messages.inc.php:152 server_databases.php:289 +#: libraries/messages.inc.php:148 server_databases.php:289 #, php-format msgid "Check privileges for database "%s"." msgstr "Proveri privilegije za bazu "%s"." -#: libraries/messages.inc.php:154 pdf_pages.php:261 +#: libraries/messages.inc.php:150 pdf_pages.php:261 msgid "Please choose a page to edit" msgstr "Izaberite stranu koju menjate" -#: libraries/messages.inc.php:157 +#: libraries/messages.inc.php:153 msgid "Displaying Column Comments" msgstr "Prikazujem komentare kolone" -#: libraries/messages.inc.php:159 pdf_pages.php:483 view_create.php:148 +#: libraries/messages.inc.php:155 pdf_pages.php:483 view_create.php:148 msgid "Column names" msgstr "Imena kolona" -#: libraries/messages.inc.php:160 server_privileges.php:1685 +#: libraries/messages.inc.php:156 server_privileges.php:1685 msgid "Column-specific privileges" msgstr "Privilegije vezane za kolone" -#: libraries/messages.inc.php:164 +#: libraries/messages.inc.php:160 msgid "MySQL 4.0 compatible" msgstr "MySQL 4.0 kompatibilno" -#: libraries/messages.inc.php:165 +#: libraries/messages.inc.php:161 msgid "Complete inserts" msgstr "Kompletan INSERT (sa imenima polja)" -#: libraries/messages.inc.php:168 +#: libraries/messages.inc.php:164 #, php-format msgid "Could not load default configuration from: \"%1$s\"" msgstr "Ne mogu da učitam podrazumevanu konfiguraciju iz: \"%1$s\"" -#: libraries/messages.inc.php:169 main.php:306 +#: libraries/messages.inc.php:165 main.php:306 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: libraries/messages.inc.php:171 pdf_schema.php:672 +#: libraries/messages.inc.php:167 pdf_schema.php:672 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Podesite koordinate za tabelu %s" -#: libraries/messages.inc.php:173 server_status.php:433 +#: libraries/messages.inc.php:169 server_status.php:433 msgid "Connections" msgstr "Konekcije" -#: libraries/messages.inc.php:179 tbl_operations.php:509 +#: libraries/messages.inc.php:175 tbl_operations.php:509 msgid "Copy table to (database.table):" msgstr "Kopiraj tabelu u (baza.tabela):" -#: libraries/messages.inc.php:180 tbl_move_copy.php:58 +#: libraries/messages.inc.php:176 tbl_move_copy.php:58 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabela %s je kopirana u %s." -#: libraries/messages.inc.php:181 tbl_move_copy.php:48 +#: libraries/messages.inc.php:177 tbl_move_copy.php:48 msgid "Can't copy table to same one!" msgstr "Ne mogu da kopiram tabelu u samu sebe!" -#: libraries/messages.inc.php:182 server_synchronize.php:94 +#: libraries/messages.inc.php:178 server_synchronize.php:94 msgid "Could not connect to the source" msgstr "" -#: libraries/messages.inc.php:183 server_synchronize.php:97 +#: libraries/messages.inc.php:179 server_synchronize.php:97 msgid "Could not connect to the target" msgstr "" -#: libraries/messages.inc.php:184 server_processlist.php:24 +#: libraries/messages.inc.php:180 server_processlist.php:24 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin nije mogao da prekine proces %s. Verovatno je već zatvoren." -#: libraries/messages.inc.php:187 +#: libraries/messages.inc.php:183 #, php-format msgid "Create an index on %s columns" msgstr "Napravi ključ na %s kolona" -#: libraries/messages.inc.php:188 tbl_indexes.php:160 +#: libraries/messages.inc.php:184 tbl_indexes.php:160 msgid "Create a new index" msgstr "Napravi novi ključ" -#: libraries/messages.inc.php:191 pdf_pages.php:297 pmd_pdf.php:114 +#: libraries/messages.inc.php:187 pdf_pages.php:297 pmd_pdf.php:114 msgid "Create a page" msgstr "Napravi novu stranu" -#: libraries/messages.inc.php:192 +#: libraries/messages.inc.php:188 msgid "Creation of PDFs" msgstr "Pravljenje PDF-ova" -#: libraries/messages.inc.php:193 pmd_general.php:74 pmd_general.php:306 +#: libraries/messages.inc.php:189 pmd_general.php:74 pmd_general.php:306 msgid "Create relation" msgstr "Napravi relaciju" -#: libraries/messages.inc.php:194 pmd_general.php:71 +#: libraries/messages.inc.php:190 pmd_general.php:71 #: server_synchronize.php:429 server_synchronize.php:872 msgid "Create table" msgstr "Napravi tabelu" -#: libraries/messages.inc.php:195 +#: libraries/messages.inc.php:191 #, fuzzy msgctxt "$strCreateTableShort" msgid "Create table" msgstr "Napravi tabelu" -#: libraries/messages.inc.php:196 server_privileges.php:1994 +#: libraries/messages.inc.php:192 server_privileges.php:1994 msgid "Database for user" msgstr "Baza za korisnika" -#: libraries/messages.inc.php:197 server_privileges.php:1999 +#: libraries/messages.inc.php:193 server_privileges.php:1999 msgid "Create database with same name and grant all privileges" msgstr "Napravi bazu sa istim imenom i dodaj sve privilegije" -#: libraries/messages.inc.php:198 +#: libraries/messages.inc.php:194 #, fuzzy msgctxt "$strCreateUserDatabaseNone" msgid "None" msgstr "nema" -#: libraries/messages.inc.php:199 server_privileges.php:2003 +#: libraries/messages.inc.php:195 server_privileges.php:2003 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "Proveri privilegije za bazu "%s"." -#: libraries/messages.inc.php:200 server_privileges.php:2000 +#: libraries/messages.inc.php:196 server_privileges.php:2000 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Daj sve privilegije na imenu sa džokerima (korisničko_ime\\_%)" -#: libraries/messages.inc.php:201 +#: libraries/messages.inc.php:197 msgid "Creation/Update/Check dates" msgstr "Datumi kreiranja/ažuriranja/provere" -#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:229 +#: libraries/messages.inc.php:199 libraries/mysql_charsets.lib.php:229 msgid "Croatian" msgstr "Hrvatski" -#: libraries/messages.inc.php:204 +#: libraries/messages.inc.php:200 msgid "CSV" msgstr "CSV" -#: libraries/messages.inc.php:205 libraries/server_synchronize.lib.php:1343 +#: libraries/messages.inc.php:201 libraries/server_synchronize.lib.php:1343 #: libraries/server_synchronize.lib.php:1369 msgid "Current server" msgstr "" -#: libraries/messages.inc.php:206 main.php:159 +#: libraries/messages.inc.php:202 main.php:159 msgid "Custom color" msgstr "" -#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:365 +#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:365 msgid "Cyrillic" msgstr "Ćirilični" -#: libraries/messages.inc.php:208 libraries/mysql_charsets.lib.php:232 +#: libraries/messages.inc.php:204 libraries/mysql_charsets.lib.php:232 msgid "Czech" msgstr "Češki" -#: libraries/messages.inc.php:209 libraries/mysql_charsets.lib.php:383 +#: libraries/messages.inc.php:205 libraries/mysql_charsets.lib.php:383 msgid "Czech-Slovak" msgstr "Češko-slovački" -#: libraries/messages.inc.php:211 libraries/mysql_charsets.lib.php:235 +#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:235 msgid "Danish" msgstr "Danski" -#: libraries/messages.inc.php:214 +#: libraries/messages.inc.php:210 msgid "Database export options" msgstr "Opcije za izvoz baze" -#: libraries/messages.inc.php:217 server_synchronize.php:122 +#: libraries/messages.inc.php:213 server_synchronize.php:122 #: server_synchronize.php:125 tbl_create.php:82 tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "" -#: libraries/messages.inc.php:219 server_databases.php:63 +#: libraries/messages.inc.php:215 server_databases.php:63 #, php-format msgid "%s databases have been dropped successfully." msgstr "%s baza je uspešno odbačeno." -#: libraries/messages.inc.php:220 libraries/server_synchronize.lib.php:1341 +#: libraries/messages.inc.php:216 libraries/server_synchronize.lib.php:1341 #: server_synchronize.php:1110 #, fuzzy msgid "Source database" msgstr "Pretraživanje baze" -#: libraries/messages.inc.php:221 server_databases.php:88 +#: libraries/messages.inc.php:217 server_databases.php:88 msgid "Databases statistics" msgstr "Statistika baze" -#: libraries/messages.inc.php:222 server_databases.php:362 +#: libraries/messages.inc.php:218 server_databases.php:362 #: server_databases.php:363 msgid "Disable Statistics" msgstr "Isključi statistike" -#: libraries/messages.inc.php:223 server_databases.php:358 +#: libraries/messages.inc.php:219 server_databases.php:358 #: server_databases.php:359 msgid "Enable Statistics" msgstr "Uključi statistike" -#: libraries/messages.inc.php:224 server_databases.php:366 +#: libraries/messages.inc.php:220 server_databases.php:366 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -3578,32 +3578,32 @@ msgstr "" "Napomena: uključivanje statistika može prouzrokovati veliki saobraćaj između " "veb i MySQL servera." -#: libraries/messages.inc.php:225 libraries/server_synchronize.lib.php:1367 +#: libraries/messages.inc.php:221 libraries/server_synchronize.lib.php:1367 #: server_synchronize.php:1112 #, fuzzy msgid "Target database" msgstr "Pretraživanje baze" -#: libraries/messages.inc.php:228 server_synchronize.php:425 +#: libraries/messages.inc.php:224 server_synchronize.php:425 #: server_synchronize.php:868 #, fuzzy msgid "Data Difference" msgstr "Struktura za pogled (view)" -#: libraries/messages.inc.php:231 server_synchronize.php:272 +#: libraries/messages.inc.php:227 server_synchronize.php:272 msgid "Data Synchronization" msgstr "" -#: libraries/messages.inc.php:235 server_privileges.php:526 +#: libraries/messages.inc.php:231 server_privileges.php:526 #: server_privileges.php:1679 msgid "Database-specific privileges" msgstr "Privilegije vezane za bazu" -#: libraries/messages.inc.php:237 server_privileges.php:2136 +#: libraries/messages.inc.php:233 server_privileges.php:2136 msgid "database-specific" msgstr "Specifično za bazu" -#: libraries/messages.inc.php:240 libraries/tbl_properties.inc.php:106 +#: libraries/messages.inc.php:236 libraries/tbl_properties.inc.php:106 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" @@ -3611,32 +3611,32 @@ msgstr "" "Za podrazumevanu vrednost, unesite samo jednu vrednost, bez kosih crta ili " "navodnika u ovom obliku: a" -#: libraries/messages.inc.php:241 tbl_operations.php:589 +#: libraries/messages.inc.php:237 tbl_operations.php:589 msgid "Defragment table" msgstr "Defragmentiraj tabelu" -#: libraries/messages.inc.php:242 +#: libraries/messages.inc.php:238 msgid "Use delayed inserts" msgstr "Koristi odložena umetanja" -#: libraries/messages.inc.php:245 server_privileges.php:1243 +#: libraries/messages.inc.php:241 server_privileges.php:1243 msgid "No users selected for deleting!" msgstr "Nijedan korisnik nije odabran za brisanje!" -#: libraries/messages.inc.php:246 pmd_general.php:372 +#: libraries/messages.inc.php:242 pmd_general.php:372 msgid "Delete relation" msgstr "Obriši relaciju" -#: libraries/messages.inc.php:248 server_privileges.php:1232 +#: libraries/messages.inc.php:244 server_privileges.php:1232 #, php-format msgid "Deleting %s" msgstr "Brišem %s" -#: libraries/messages.inc.php:249 libraries/sql_query_form.lib.php:388 +#: libraries/messages.inc.php:245 libraries/sql_query_form.lib.php:388 msgid "Delimiter" msgstr "Graničnik" -#: libraries/messages.inc.php:250 pdf_pages.php:506 +#: libraries/messages.inc.php:246 pdf_pages.php:506 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -3644,7 +3644,7 @@ msgstr "" "Trenutna strana ima reference na tabele koje više ne postoje. Želite li da " "obrišete te reference?" -#: libraries/messages.inc.php:254 pmd_help.php:29 +#: libraries/messages.inc.php:250 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 " @@ -3654,142 +3654,142 @@ msgstr "" "polje za prikaz, kliknite na ikonu „Izaberi polje za prikaz“, a potom na " "naziv odgovarajućeg polja." -#: libraries/messages.inc.php:256 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:252 libraries/mysql_charsets.lib.php:247 msgid "dictionary" msgstr "rečnik" -#: libraries/messages.inc.php:257 libraries/server_synchronize.lib.php:1348 +#: libraries/messages.inc.php:253 libraries/server_synchronize.lib.php:1348 msgid "Difference" msgstr "" -#: libraries/messages.inc.php:258 pmd_general.php:87 +#: libraries/messages.inc.php:254 pmd_general.php:87 msgid "Direct links" msgstr "Direktne veze" -#: libraries/messages.inc.php:261 +#: libraries/messages.inc.php:257 msgid "Disable foreign key checks" msgstr "Isključi provere stranih ključeva" -#: libraries/messages.inc.php:262 +#: libraries/messages.inc.php:258 msgid "Display Features" msgstr "Prikaži osobine" -#: libraries/messages.inc.php:263 tbl_select.php:301 +#: libraries/messages.inc.php:259 tbl_select.php:301 msgid "Display order:" msgstr "Redosled prikaza:" -#: libraries/messages.inc.php:265 tbl_select.php:132 +#: libraries/messages.inc.php:261 tbl_select.php:132 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Napravi \"upit po primeru\" (džoker: \"%\")" -#: libraries/messages.inc.php:266 +#: libraries/messages.inc.php:262 msgid "DocSQL" msgstr "DocSQL" -#: libraries/messages.inc.php:268 +#: libraries/messages.inc.php:264 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/messages.inc.php:273 server_privileges.php:1579 +#: libraries/messages.inc.php:269 server_privileges.php:1579 #: server_privileges.php:1580 server_privileges.php:1581 msgid "Drop the databases that have the same names as the users." msgstr "Odbaci baze koje se zovu isto kao korisnici." -#: libraries/messages.inc.php:278 tbl_printview.php:382 tbl_structure.php:743 +#: libraries/messages.inc.php:274 tbl_printview.php:382 tbl_structure.php:743 msgid "dynamic" msgstr "dinamički" -#: libraries/messages.inc.php:282 server_privileges.php:1324 +#: libraries/messages.inc.php:278 server_privileges.php:1324 #: server_privileges.php:1610 msgid "Edit Privileges" msgstr "Promeni privilegije" -#: libraries/messages.inc.php:283 tbl_printview.php:341 tbl_structure.php:688 +#: libraries/messages.inc.php:279 tbl_printview.php:341 tbl_structure.php:688 msgid "Effective" msgstr "Efektivne" -#: libraries/messages.inc.php:286 libraries/relation.lib.php:100 +#: libraries/messages.inc.php:282 libraries/relation.lib.php:100 msgid "Enabled" msgstr "Omogućeno" -#: libraries/messages.inc.php:287 +#: libraries/messages.inc.php:283 msgid "Enclose export in a transaction" msgstr "Obavi izvoz u transakciji" -#: libraries/messages.inc.php:288 libraries/sqlparser.lib.php:177 +#: libraries/messages.inc.php:284 libraries/sqlparser.lib.php:177 msgid "END CUT" msgstr "KRAJ REZ" -#: libraries/messages.inc.php:290 libraries/sqlparser.lib.php:183 +#: libraries/messages.inc.php:286 libraries/sqlparser.lib.php:183 msgid "END RAW" msgstr "KRAJ SIROVO" -#: libraries/messages.inc.php:293 libraries/server_links.inc.php:61 +#: libraries/messages.inc.php:289 libraries/server_links.inc.php:61 #: test/theme.php:113 msgid "Engines" msgstr "Skladištenja" -#: libraries/messages.inc.php:295 libraries/mysql_charsets.lib.php:238 +#: libraries/messages.inc.php:291 libraries/mysql_charsets.lib.php:238 msgid "English" msgstr "Engleski" -#: libraries/messages.inc.php:296 server_privileges.php:393 +#: libraries/messages.inc.php:292 server_privileges.php:393 #: server_privileges.php:535 server_privileges.php:1501 msgid " Note: MySQL privilege names are expressed in English " msgstr " Napomena: MySQL imena privilegija moraju da budu na engleskom " -#: libraries/messages.inc.php:298 libraries/zip_extension.lib.php:49 +#: libraries/messages.inc.php:294 libraries/zip_extension.lib.php:49 #: libraries/zip_extension.lib.php:51 libraries/zip_extension.lib.php:66 msgid "Error in ZIP archive:" msgstr "Greška u ZIP arhivi:" -#: libraries/messages.inc.php:303 libraries/mysql_charsets.lib.php:241 +#: libraries/messages.inc.php:299 libraries/mysql_charsets.lib.php:241 msgid "Esperanto" msgstr "Esperanto" -#: libraries/messages.inc.php:304 libraries/mysql_charsets.lib.php:244 +#: libraries/messages.inc.php:300 libraries/mysql_charsets.lib.php:244 msgid "Estonian" msgstr "Estonski" -#: libraries/messages.inc.php:305 libraries/tbl_triggers.lib.php:29 +#: libraries/messages.inc.php:301 libraries/tbl_triggers.lib.php:29 msgid "Event" msgstr "Događaji" -#: libraries/messages.inc.php:307 +#: libraries/messages.inc.php:303 msgid "Excel edition" msgstr "Excel izdanje" -#: libraries/messages.inc.php:311 pmd_pdf.php:85 +#: libraries/messages.inc.php:307 pmd_pdf.php:85 msgid "Export/Import to scale" msgstr "Izvor/uvoz u razmeri" -#: libraries/messages.inc.php:313 +#: libraries/messages.inc.php:309 msgid "Extended inserts" msgstr "Prošireni INSERT" -#: libraries/messages.inc.php:314 pdf_schema.php:1267 pdf_schema.php:1288 +#: libraries/messages.inc.php:310 pdf_schema.php:1267 pdf_schema.php:1288 #: tbl_printview.php:147 tbl_structure.php:183 tbl_tracking.php:278 msgid "Extra" msgstr "Dodatno" -#: libraries/messages.inc.php:316 server_status.php:447 +#: libraries/messages.inc.php:312 server_status.php:447 msgid "Failed attempts" msgstr "Neuspelih pokušaja" -#: libraries/messages.inc.php:318 tbl_structure.php:375 +#: libraries/messages.inc.php:314 tbl_structure.php:375 #, php-format msgid "Field %s has been dropped" msgstr "Polje %s je obrisano" -#: libraries/messages.inc.php:322 libraries/sql_query_form.lib.php:317 +#: libraries/messages.inc.php:318 libraries/sql_query_form.lib.php:317 msgid "Fields" msgstr "Polja" -#: libraries/messages.inc.php:332 server_binlog.php:136 +#: libraries/messages.inc.php:328 server_binlog.php:136 msgid "Files" msgstr "Datoteke" -#: libraries/messages.inc.php:334 server_privileges.php:1597 +#: libraries/messages.inc.php:330 server_privileges.php:1597 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -3802,219 +3802,219 @@ msgstr "" "server koristi ako su vršene ručne izmene. U tom slučaju %sponovo učitajte " "privilegije%s pre nego što nastavite." -#: libraries/messages.inc.php:335 server_status.php:289 +#: libraries/messages.inc.php:331 server_status.php:289 msgid "Flush query cache" msgstr "Očisti keš upita" -#: libraries/messages.inc.php:336 +#: libraries/messages.inc.php:332 msgid "Flush the table (\"FLUSH\")" msgstr "Osveži tabelu (\"FLUSH\")" -#: libraries/messages.inc.php:337 server_status.php:271 +#: libraries/messages.inc.php:333 server_status.php:271 msgid "Flush (close) all tables" msgstr "Očisti (zatvori) sve tabele" -#: libraries/messages.inc.php:339 tbl_relation.php:279 +#: libraries/messages.inc.php:335 tbl_relation.php:279 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" -#: libraries/messages.inc.php:341 setup/lib/messages.inc.php:88 +#: libraries/messages.inc.php:337 setup/lib/messages.inc.php:88 #: tbl_printview.php:376 tbl_structure.php:738 msgid "Format" msgstr "Format" -#: libraries/messages.inc.php:344 server_replication.php:325 +#: libraries/messages.inc.php:340 server_replication.php:325 #, fuzzy msgid "Full start" msgstr "Tekst ključ" -#: libraries/messages.inc.php:345 server_replication.php:325 +#: libraries/messages.inc.php:341 server_replication.php:325 #, fuzzy msgid "Full stop" msgstr "Tekst ključ" -#: libraries/messages.inc.php:347 tbl_change.php:282 tbl_change.php:320 +#: libraries/messages.inc.php:343 tbl_change.php:282 tbl_change.php:320 msgid "Function" msgstr "Funkcija" -#: libraries/messages.inc.php:355 libraries/mysql_charsets.lib.php:377 +#: libraries/messages.inc.php:351 libraries/mysql_charsets.lib.php:377 msgid "Georgian" msgstr "Gruzijski" -#: libraries/messages.inc.php:356 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:352 libraries/mysql_charsets.lib.php:247 #: libraries/mysql_charsets.lib.php:250 msgid "German" msgstr "Nemački" -#: libraries/messages.inc.php:357 themes.php:42 +#: libraries/messages.inc.php:353 themes.php:42 msgid "Get more themes!" msgstr "" -#: libraries/messages.inc.php:358 server_privileges.php:2134 +#: libraries/messages.inc.php:354 server_privileges.php:2134 msgid "global" msgstr "globalno" -#: libraries/messages.inc.php:359 server_privileges.php:524 +#: libraries/messages.inc.php:355 server_privileges.php:524 #: server_privileges.php:1500 msgid "Global privileges" msgstr "Globalne privilegije" -#: libraries/messages.inc.php:360 server_variables.php:55 +#: libraries/messages.inc.php:356 server_variables.php:55 #: server_variables.php:89 msgid "Global value" msgstr "Globalna vrednost" -#: libraries/messages.inc.php:365 server_privileges.php:1502 +#: libraries/messages.inc.php:361 server_privileges.php:1502 #: server_privileges.php:1684 server_privileges.php:2033 msgid "Grant" msgstr "Omogući" -#: libraries/messages.inc.php:366 libraries/mysql_charsets.lib.php:380 +#: libraries/messages.inc.php:362 libraries/mysql_charsets.lib.php:380 msgid "Greek" msgstr "Grčki" -#: libraries/messages.inc.php:367 +#: libraries/messages.inc.php:363 msgid "\"gzipped\"" msgstr "\"gzip-ovano\"" -#: libraries/messages.inc.php:369 server_status.php:250 +#: libraries/messages.inc.php:365 server_status.php:250 msgid "Handler" msgstr "Rukovalac" -#: libraries/messages.inc.php:370 server_synchronize.php:464 +#: libraries/messages.inc.php:366 server_synchronize.php:464 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: libraries/messages.inc.php:372 libraries/mysql_charsets.lib.php:374 +#: libraries/messages.inc.php:368 libraries/mysql_charsets.lib.php:374 msgid "Hebrew" msgstr "Hebrejski" -#: libraries/messages.inc.php:373 pmd_general.php:83 +#: libraries/messages.inc.php:369 pmd_general.php:83 msgid "Help" msgstr "Pomoć" -#: libraries/messages.inc.php:374 +#: libraries/messages.inc.php:370 msgid "Use hexadecimal for BLOB" msgstr "Koristi heksadecimalno za BLOB" -#: libraries/messages.inc.php:376 pmd_general.php:120 +#: libraries/messages.inc.php:372 pmd_general.php:120 msgid "Hide/Show all" msgstr "Sakrij/prikaži sve" -#: libraries/messages.inc.php:377 pmd_general.php:124 +#: libraries/messages.inc.php:373 pmd_general.php:124 msgid "Hide/Show Tables with no relation" msgstr "Sakrij/prikaži tabele bez relacija" -#: libraries/messages.inc.php:378 libraries/navigation_header.inc.php:54 +#: libraries/messages.inc.php:374 libraries/navigation_header.inc.php:54 #: libraries/navigation_header.inc.php:57 #: libraries/navigation_header.inc.php:58 msgid "Home" msgstr "Početna strana" -#: libraries/messages.inc.php:379 main.php:233 +#: libraries/messages.inc.php:375 main.php:233 msgid "Official Homepage" msgstr "phpMyAdmin veb sajt" -#: libraries/messages.inc.php:382 libraries/replication_gui.lib.php:327 +#: libraries/messages.inc.php:378 libraries/replication_gui.lib.php:327 #: server_privileges.php:753 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/messages.inc.php:383 +#: libraries/messages.inc.php:379 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/messages.inc.php:384 libraries/mysql_charsets.lib.php:253 +#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:253 msgid "Hungarian" msgstr "Mađarski" -#: libraries/messages.inc.php:386 libraries/mysql_charsets.lib.php:256 +#: libraries/messages.inc.php:382 libraries/mysql_charsets.lib.php:256 msgid "Icelandic" msgstr "Islandski" -#: libraries/messages.inc.php:387 server_processlist.php:53 +#: libraries/messages.inc.php:383 server_processlist.php:53 msgid "ID" msgstr "ID" -#: libraries/messages.inc.php:388 libraries/mult_submits.inc.php:108 +#: libraries/messages.inc.php:384 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:479 msgid "Fulltext" msgstr "Tekst ključ" -#: libraries/messages.inc.php:389 +#: libraries/messages.inc.php:385 msgid "Ignore duplicate rows" msgstr "Ignoriši duplicirane redove" -#: libraries/messages.inc.php:390 tbl_change.php:302 tbl_indexes.php:200 +#: libraries/messages.inc.php:386 tbl_change.php:302 tbl_indexes.php:200 #: tbl_indexes.php:225 msgid "Ignore" msgstr "Ignoriši" -#: libraries/messages.inc.php:391 +#: libraries/messages.inc.php:387 msgid "Use ignore inserts" msgstr "Ignoriši duplikate pri umetanju" -#: libraries/messages.inc.php:392 +#: libraries/messages.inc.php:388 msgid "Column names in first row" msgstr "" -#: libraries/messages.inc.php:393 +#: libraries/messages.inc.php:389 msgid "Do not import empty rows" msgstr "" -#: libraries/messages.inc.php:394 pmd_general.php:104 +#: libraries/messages.inc.php:390 pmd_general.php:104 msgid "Import/Export coordinates for PDF schema" msgstr "Izvoz/uvoz koordinata za PDF shemu" -#: libraries/messages.inc.php:395 querywindow.php:104 +#: libraries/messages.inc.php:391 querywindow.php:104 msgid "Import files" msgstr "Uvoz datoteka" -#: libraries/messages.inc.php:403 +#: libraries/messages.inc.php:399 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/messages.inc.php:404 libraries/messages.inc.php:584 +#: libraries/messages.inc.php:400 libraries/messages.inc.php:580 msgid "Open Document Spreadsheet" msgstr "Open Document Spreadsheet" -#: libraries/messages.inc.php:405 +#: libraries/messages.inc.php:401 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/messages.inc.php:409 +#: libraries/messages.inc.php:405 msgid "Excel 97-2003 XLS Workbook" msgstr "" -#: libraries/messages.inc.php:410 +#: libraries/messages.inc.php:406 msgid "Excel 2007 XLSX Workbook" msgstr "" -#: libraries/messages.inc.php:414 libraries/mult_submits.inc.php:98 +#: libraries/messages.inc.php:410 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:476 tbl_structure.php:674 msgid "Index" msgstr "Ključ" -#: libraries/messages.inc.php:415 tbl_indexes.php:168 +#: libraries/messages.inc.php:411 tbl_indexes.php:168 msgid "Index name:" msgstr "Ime ključa :" -#: libraries/messages.inc.php:416 tbl_indexes.php:174 +#: libraries/messages.inc.php:412 tbl_indexes.php:174 msgid "Index type:" msgstr "Tip ključa :" -#: libraries/messages.inc.php:417 sql.php:639 +#: libraries/messages.inc.php:413 sql.php:639 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problem pri indeksiranju tabele `%s`" -#: libraries/messages.inc.php:427 main.php:266 +#: libraries/messages.inc.php:423 main.php:266 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -4026,163 +4026,163 @@ msgstr "" "ovim podešavanjima, otvoren je za upade, i zaista treba da ispravite ovaj " "sigurnosni rizik." -#: libraries/messages.inc.php:428 tbl_change.php:1130 +#: libraries/messages.inc.php:424 tbl_change.php:1130 msgid "Insert as new row" msgstr "Unesi kao novi red" -#: libraries/messages.inc.php:429 sql.php:496 tbl_replace.php:386 +#: libraries/messages.inc.php:425 sql.php:496 tbl_replace.php:386 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: libraries/messages.inc.php:430 tbl_change.php:1131 +#: libraries/messages.inc.php:426 tbl_change.php:1131 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/messages.inc.php:432 main.php:139 +#: libraries/messages.inc.php:428 main.php:139 msgid "Interface" msgstr "" -#: libraries/messages.inc.php:433 tbl_relation.php:407 +#: libraries/messages.inc.php:429 tbl_relation.php:407 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: libraries/messages.inc.php:435 pdf_pages.php:303 +#: libraries/messages.inc.php:431 pdf_pages.php:303 msgid "Internal relations" msgstr "Unutrašnje relacije" -#: libraries/messages.inc.php:438 tbl_indexes.php:256 tbl_structure.php:590 +#: libraries/messages.inc.php:434 tbl_indexes.php:256 tbl_structure.php:590 #: tbl_structure.php:601 msgid "Column count has to be larger than zero." msgstr "Broj kolona mora biti veći od nule." -#: libraries/messages.inc.php:444 libraries/tbl_properties.inc.php:784 +#: libraries/messages.inc.php:440 libraries/tbl_properties.inc.php:784 #: tbl_structure.php:537 msgid "You have to add at least one field." msgstr "Morate dodati barem jedno polje." -#: libraries/messages.inc.php:449 +#: libraries/messages.inc.php:445 #, php-format msgid "Invalid server index: \"%s\"" msgstr "Neispravan indeks servera: \"%s\"" -#: libraries/messages.inc.php:452 libraries/mysql_charsets.lib.php:259 +#: libraries/messages.inc.php:448 libraries/mysql_charsets.lib.php:259 #: libraries/mysql_charsets.lib.php:349 msgid "Japanese" msgstr "Japanski" -#: libraries/messages.inc.php:453 main.php:331 +#: libraries/messages.inc.php:449 main.php:331 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: libraries/messages.inc.php:454 server_status.php:257 +#: libraries/messages.inc.php:450 server_status.php:257 msgid "Joins" msgstr "Spojevi" -#: libraries/messages.inc.php:457 server_privileges.php:763 +#: libraries/messages.inc.php:453 server_privileges.php:763 msgid "Do not change the password" msgstr "Nemoj da menjaš lozinku" -#: libraries/messages.inc.php:458 server_status.php:256 +#: libraries/messages.inc.php:454 server_status.php:256 msgid "Key cache" msgstr "Keš ključeva" -#: libraries/messages.inc.php:462 libraries/mysql_charsets.lib.php:268 +#: libraries/messages.inc.php:458 libraries/mysql_charsets.lib.php:268 #: libraries/mysql_charsets.lib.php:371 msgid "Korean" msgstr "Korejski" -#: libraries/messages.inc.php:466 libraries/select_lang.lib.php:480 +#: libraries/messages.inc.php:462 libraries/select_lang.lib.php:480 #: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492 #, php-format msgid "Unknown language: %1$s." msgstr "Nepoznat jezik: %1$s." -#: libraries/messages.inc.php:468 +#: libraries/messages.inc.php:464 msgid "Table caption" msgstr "Komentar tabele" -#: libraries/messages.inc.php:469 +#: libraries/messages.inc.php:465 msgid "Content of table __TABLE__" msgstr "Sadržaj tabele __TABLE__" -#: libraries/messages.inc.php:470 +#: libraries/messages.inc.php:466 msgid "Continued table caption" msgstr "Nastavljen komentar tabele" -#: libraries/messages.inc.php:471 +#: libraries/messages.inc.php:467 msgid "(continued)" msgstr "(nastavljeno)" -#: libraries/messages.inc.php:472 +#: libraries/messages.inc.php:468 msgid "Include table caption" msgstr "Uključi komentar tabele" -#: libraries/messages.inc.php:473 +#: libraries/messages.inc.php:469 msgid "Label key" msgstr "Oznaka ključa" -#: libraries/messages.inc.php:474 +#: libraries/messages.inc.php:470 msgid "LaTeX" msgstr "LaTeX" -#: libraries/messages.inc.php:475 +#: libraries/messages.inc.php:471 msgid "Structure of table __TABLE__" msgstr "Struktura tabele __TABLE__" -#: libraries/messages.inc.php:476 libraries/mysql_charsets.lib.php:262 +#: libraries/messages.inc.php:472 libraries/mysql_charsets.lib.php:262 msgid "Latvian" msgstr "Letonski" -#: libraries/messages.inc.php:477 +#: libraries/messages.inc.php:473 msgid "CSV using LOAD DATA" msgstr "CSV koristeći LOAD DATA" -#: libraries/messages.inc.php:478 +#: libraries/messages.inc.php:474 msgid "Use LOCAL keyword" msgstr "Koristi ključnu reč LOCAL" -#: libraries/messages.inc.php:479 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:475 libraries/tbl_properties.inc.php:105 msgid "Length/Values" msgstr "Dužina/Vrednost*" -#: libraries/messages.inc.php:480 tbl_select.php:295 +#: libraries/messages.inc.php:476 tbl_select.php:295 msgid "Number of rows per page" msgstr "Broj redova po strani" -#: libraries/messages.inc.php:484 libraries/mysql_charsets.lib.php:265 +#: libraries/messages.inc.php:480 libraries/mysql_charsets.lib.php:265 msgid "Lithuanian" msgstr "Litvanski" -#: libraries/messages.inc.php:485 libraries/replication_gui.lib.php:302 +#: libraries/messages.inc.php:481 libraries/replication_gui.lib.php:302 #: server_privileges.php:729 msgid "Local" msgstr "Lokalni" -#: libraries/messages.inc.php:487 server_privileges.php:669 +#: libraries/messages.inc.php:483 server_privileges.php:669 msgid "Login Information" msgstr "Podaci o prijavi" -#: libraries/messages.inc.php:490 libraries/navigation_header.inc.php:67 +#: libraries/messages.inc.php:486 libraries/navigation_header.inc.php:67 #: libraries/navigation_header.inc.php:70 #: libraries/navigation_header.inc.php:71 main.php:99 msgid "Log out" msgstr "Odjavljivanje" -#: libraries/messages.inc.php:497 server_status.php:440 +#: libraries/messages.inc.php:493 server_status.php:440 msgid "max. concurrent connections" msgstr "maks. istovremenih veza" -#: libraries/messages.inc.php:498 +#: libraries/messages.inc.php:494 msgid "Maximal length of created query" msgstr "Maksimalna dužina napravljenog upita" -#: libraries/messages.inc.php:500 main.php:282 +#: libraries/messages.inc.php:496 main.php:282 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -4192,7 +4192,7 @@ msgstr "" "skup znakova. Bez ekstenzije mbstring phpMyAdmin ne može ispravno da " "razdvaja stringove i to može dovesti do neočekivanih rezultata." -#: libraries/messages.inc.php:501 main.php:274 +#: libraries/messages.inc.php:497 main.php:274 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -4202,24 +4202,24 @@ msgstr "" "opcija je nekompatibilna sa phpMyAdmin i može dovesti do grešaka u nekim " "podacima!" -#: libraries/messages.inc.php:502 +#: libraries/messages.inc.php:498 msgid "MediaWiki Table" msgstr "" -#: libraries/messages.inc.php:503 transformation_overview.php:25 +#: libraries/messages.inc.php:499 transformation_overview.php:25 msgid "Available MIME types" msgstr "Dostupni MIME-tipovi" -#: libraries/messages.inc.php:504 transformation_overview.php:43 +#: libraries/messages.inc.php:500 transformation_overview.php:43 msgid "Available transformations" msgstr "Dostupne transformacije" -#: libraries/messages.inc.php:505 +#: libraries/messages.inc.php:501 msgctxt "$strMIME_description" msgid "Description" msgstr "Opis" -#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:580 +#: libraries/messages.inc.php:503 libraries/tbl_properties.inc.php:580 #: transformation_overview.php:60 #, php-format msgid "" @@ -4228,7 +4228,7 @@ msgid "" msgstr "" "Nema opisa za ovu transformaciju.
Molimo pitajte autora šta %s radi." -#: libraries/messages.inc.php:509 libraries/tbl_properties.inc.php:137 +#: libraries/messages.inc.php:505 libraries/tbl_properties.inc.php:137 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -4237,7 +4237,7 @@ msgstr "" "Za listu dostupnih opcija transformacije i njihove transformacije MIME-" "tipova, kliknite na %sopise transformacija%s" -#: libraries/messages.inc.php:510 libraries/tbl_properties.inc.php:146 +#: libraries/messages.inc.php:506 libraries/tbl_properties.inc.php:146 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -4249,57 +4249,57 @@ msgstr "" "apostrof (\"'\") u te vrednosti, stavite obrnutu kosu crtu ispred njih (na " "primer '\\\\xyz' ili 'a\\'b')." -#: libraries/messages.inc.php:511 libraries/tbl_properties.inc.php:145 +#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:145 msgid "Transformation options" msgstr "Opcije transformacije" -#: libraries/messages.inc.php:513 transformation_overview.php:38 +#: libraries/messages.inc.php:509 transformation_overview.php:38 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "" "MIME-tipovi prikazani u kurzivu nemaju odvojene funkcije transformacije." -#: libraries/messages.inc.php:515 tbl_indexes.php:162 +#: libraries/messages.inc.php:511 tbl_indexes.php:162 msgid "Modify an index" msgstr "Izmeni ključ" -#: libraries/messages.inc.php:517 pmd_general.php:108 +#: libraries/messages.inc.php:513 pmd_general.php:108 msgid "Move Menu" msgstr "Premesti meni" -#: libraries/messages.inc.php:518 tbl_operations.php:276 +#: libraries/messages.inc.php:514 tbl_operations.php:276 msgid "Move table to (database.table):" msgstr "Pomeri tabelu u (baza.tabela):" -#: libraries/messages.inc.php:519 tbl_move_copy.php:56 +#: libraries/messages.inc.php:515 tbl_move_copy.php:56 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabela %s je pomerena u %s." -#: libraries/messages.inc.php:520 tbl_move_copy.php:46 +#: libraries/messages.inc.php:516 tbl_move_copy.php:46 msgid "Can't move table to same one!" msgstr "Ne mogu da premestim tabelu u samu sebe!" -#: libraries/messages.inc.php:521 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:517 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 #: libraries/mysql_charsets.lib.php:332 libraries/mysql_charsets.lib.php:354 #: libraries/mysql_charsets.lib.php:365 msgid "multilingual" msgstr "višejezički" -#: libraries/messages.inc.php:534 main.php:193 +#: libraries/messages.inc.php:530 main.php:193 msgid "MySQL charset" msgstr "MySQL set karaktera" -#: libraries/messages.inc.php:535 main.php:211 +#: libraries/messages.inc.php:531 main.php:211 msgid "MySQL client version" msgstr "Verzija MySQL klijenta" -#: libraries/messages.inc.php:536 main.php:125 +#: libraries/messages.inc.php:532 main.php:125 msgid "MySQL connection collation" msgstr "Sortiranje za MySQL vezu" -#: libraries/messages.inc.php:537 main.php:346 +#: libraries/messages.inc.php:533 main.php:346 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -4308,55 +4308,55 @@ msgstr "" "Verzija vaše PHP MySQL biblioteke %s se razlikuje od verzije vašeg MySQL " "servera %s. Ovo može dovesti do nepredvidljivog ponašanja." -#: libraries/messages.inc.php:539 server_status.php:294 +#: libraries/messages.inc.php:535 server_status.php:294 msgid "Show processes" msgstr "Prikaži listu procesa" -#: libraries/messages.inc.php:545 navigation.php:210 server_databases.php:371 +#: libraries/messages.inc.php:541 navigation.php:210 server_databases.php:371 #: server_synchronize.php:1191 msgid "No databases" msgstr "Baza ne postoji" -#: libraries/messages.inc.php:546 server_databases.php:52 +#: libraries/messages.inc.php:542 server_databases.php:52 msgid "No databases selected." msgstr "Nije izabrana ni jedna baza." -#: libraries/messages.inc.php:548 libraries/relation.lib.php:1173 +#: libraries/messages.inc.php:544 libraries/relation.lib.php:1173 msgid "no description" msgstr "nema opisa" -#: libraries/messages.inc.php:552 libraries/zip_extension.lib.php:26 +#: libraries/messages.inc.php:548 libraries/zip_extension.lib.php:26 msgid "No files found inside ZIP archive!" msgstr "U ZIP arhivi nema datoteka!" -#: libraries/messages.inc.php:555 tbl_indexes.php:91 +#: libraries/messages.inc.php:551 tbl_indexes.php:91 msgid "No index parts defined!" msgstr "Delovi ključa nisu definisani!" -#: libraries/messages.inc.php:556 libraries/mult_submits.inc.php:435 +#: libraries/messages.inc.php:552 libraries/mult_submits.inc.php:435 #: tbl_replace.php:331 msgid "No change" msgstr "Nema izmena" -#: libraries/messages.inc.php:557 +#: libraries/messages.inc.php:553 #, fuzzy msgctxt "$strNoneDefault" msgid "None" msgstr "nema" -#: libraries/messages.inc.php:560 libraries/plugin_interface.lib.php:312 +#: libraries/messages.inc.php:556 libraries/plugin_interface.lib.php:312 msgid "This format has no options" msgstr "Ne postoje opcije za ovaj format" -#: libraries/messages.inc.php:565 user_password.php:54 +#: libraries/messages.inc.php:561 user_password.php:54 msgid "You don't have sufficient privileges to be here right now!" msgstr "Nije Vam dozvoljeno da budete ovde!" -#: libraries/messages.inc.php:566 tbl_row_action.php:29 +#: libraries/messages.inc.php:562 tbl_row_action.php:29 msgid "No rows selected" msgstr "Nema odabranih redova" -#: libraries/messages.inc.php:569 themes.php:32 +#: libraries/messages.inc.php:565 themes.php:32 #, php-format msgid "" "No themes support; please check your configuration and/or your themes in " @@ -4365,294 +4365,294 @@ msgstr "" "Nema podrške za teme, molimo proverite konfiguraciju i/ili teme u " "direktorijumu %s." -#: libraries/messages.inc.php:571 libraries/relation.lib.php:95 +#: libraries/messages.inc.php:567 libraries/relation.lib.php:95 msgid "not OK" msgstr "nije u redu" -#: libraries/messages.inc.php:572 server_synchronize.php:400 +#: libraries/messages.inc.php:568 server_synchronize.php:400 #: server_synchronize.php:839 msgid "not present" msgstr "" -#: libraries/messages.inc.php:573 pdf_pages.php:36 pdf_pages.php:42 +#: libraries/messages.inc.php:569 pdf_pages.php:36 pdf_pages.php:42 #: pdf_pages.php:48 pdf_pages.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "%s tabela nije pronađena ili nije postavljena u %s" -#: libraries/messages.inc.php:574 server_privileges.php:804 +#: libraries/messages.inc.php:570 server_privileges.php:804 #: server_privileges.php:2166 msgid "No user(s) found." msgstr "Korisnik nije nađen." -#: libraries/messages.inc.php:578 pmd_general.php:164 +#: libraries/messages.inc.php:574 pmd_general.php:164 msgid "Number of tables" msgstr "Broj tabela" -#: libraries/messages.inc.php:581 server_databases.php:117 +#: libraries/messages.inc.php:577 server_databases.php:117 #: server_status.php:260 setup/lib/messages.inc.php:117 msgid "Tables" msgstr "Tabele" -#: libraries/messages.inc.php:583 libraries/relation.lib.php:99 +#: libraries/messages.inc.php:579 libraries/relation.lib.php:99 #: pmd_general.php:340 msgid "OK" msgstr "U redu" -#: libraries/messages.inc.php:585 +#: libraries/messages.inc.php:581 msgid "Open Document Text" msgstr "Open Document Text" -#: libraries/messages.inc.php:588 tbl_select.php:138 +#: libraries/messages.inc.php:584 tbl_select.php:138 msgid "Operator" msgstr "Operator" -#: libraries/messages.inc.php:589 tbl_operations.php:662 +#: libraries/messages.inc.php:585 tbl_operations.php:662 msgid "Optimize" msgstr "" -#: libraries/messages.inc.php:602 libraries/tbl_properties.inc.php:755 +#: libraries/messages.inc.php:598 libraries/tbl_properties.inc.php:755 msgid "PARTITION definition" msgstr "" -#: libraries/messages.inc.php:603 tbl_structure.php:757 +#: libraries/messages.inc.php:599 tbl_structure.php:757 msgid "partitioned" msgstr "" -#: libraries/messages.inc.php:604 tbl_operations.php:649 +#: libraries/messages.inc.php:600 tbl_operations.php:649 #, fuzzy msgid "Partition maintenance" msgstr "Radnje na tabeli" -#: libraries/messages.inc.php:605 tbl_operations.php:657 +#: libraries/messages.inc.php:601 tbl_operations.php:657 #, php-format msgid "Partition %s" msgstr "" -#: libraries/messages.inc.php:606 server_privileges.php:1212 +#: libraries/messages.inc.php:602 server_privileges.php:1212 #, php-format msgid "The password for %s was changed successfully." msgstr "Lozinka za %s je uspešno promenjena." -#: libraries/messages.inc.php:635 +#: libraries/messages.inc.php:631 #, php-format msgid "Schema of the \"%s\" database - Page %s" msgstr "Shema baze \"%s\" - Strana %s" -#: libraries/messages.inc.php:636 +#: libraries/messages.inc.php:632 #, php-format msgid "The \"%s\" table doesn't exist!" msgstr "Tabela \"%s\" ne postoji!" -#: libraries/messages.inc.php:637 pdf_schema.php:1013 +#: libraries/messages.inc.php:633 pdf_schema.php:1013 msgid "No tables" msgstr "Nema tabela" -#: libraries/messages.inc.php:638 pmd_pdf.php:63 +#: libraries/messages.inc.php:634 pmd_pdf.php:63 #, fuzzy msgid "Page has been created" msgstr "Tabela %s je odbačena" -#: libraries/messages.inc.php:639 pmd_pdf.php:65 +#: libraries/messages.inc.php:635 pmd_pdf.php:65 msgid "Page creation failed" msgstr "" -#: libraries/messages.inc.php:640 +#: libraries/messages.inc.php:636 msgid "PDF" msgstr "PDF" -#: libraries/messages.inc.php:641 +#: libraries/messages.inc.php:637 msgid "(Generates a report containing the data of a single table)" msgstr "(Pravi izveštaj koji sadrži podatke jedne tabele)" -#: libraries/messages.inc.php:642 +#: libraries/messages.inc.php:638 msgid "Report title" msgstr "Naslov izveštaja" -#: libraries/messages.inc.php:643 server_status.php:389 server_status.php:434 +#: libraries/messages.inc.php:639 server_status.php:389 server_status.php:434 #: server_status.php:497 server_status.php:555 msgid "per hour" msgstr "na sat" -#: libraries/messages.inc.php:644 server_status.php:498 +#: libraries/messages.inc.php:640 server_status.php:498 msgid "per minute" msgstr "u minutu" -#: libraries/messages.inc.php:645 server_status.php:499 +#: libraries/messages.inc.php:641 server_status.php:499 msgid "per second" msgstr "u sekundi" -#: libraries/messages.inc.php:646 libraries/mysql_charsets.lib.php:271 +#: libraries/messages.inc.php:642 libraries/mysql_charsets.lib.php:271 msgid "Persian" msgstr "Persijski" -#: libraries/messages.inc.php:647 libraries/mysql_charsets.lib.php:250 +#: libraries/messages.inc.php:643 libraries/mysql_charsets.lib.php:250 msgid "phone book" msgstr "telefonski imenik" -#: libraries/messages.inc.php:648 +#: libraries/messages.inc.php:644 msgid "PHP array" msgstr "" -#: libraries/messages.inc.php:650 main.php:213 +#: libraries/messages.inc.php:646 main.php:213 #, fuzzy msgid "PHP extension" msgstr "verzija PHP-a" -#: libraries/messages.inc.php:654 libraries/relation.lib.php:163 +#: libraries/messages.inc.php:650 libraries/relation.lib.php:163 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/messages.inc.php:655 libraries/relation.lib.php:159 +#: libraries/messages.inc.php:651 libraries/relation.lib.php:159 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/messages.inc.php:656 libraries/relation.lib.php:161 +#: libraries/messages.inc.php:652 libraries/relation.lib.php:161 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" -#: libraries/messages.inc.php:657 libraries/relation.lib.php:162 +#: libraries/messages.inc.php:653 libraries/relation.lib.php:162 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/messages.inc.php:658 libraries/relation.lib.php:164 +#: libraries/messages.inc.php:654 libraries/relation.lib.php:164 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/messages.inc.php:661 libraries/mysql_charsets.lib.php:274 +#: libraries/messages.inc.php:657 libraries/mysql_charsets.lib.php:274 msgid "Polish" msgstr "Poljski" -#: libraries/messages.inc.php:662 libraries/replication_gui.lib.php:67 +#: libraries/messages.inc.php:658 libraries/replication_gui.lib.php:67 #: server_synchronize.php:1163 #, fuzzy msgid "Port" msgstr "Sortiranje" -#: libraries/messages.inc.php:667 tbl_indexes.php:67 +#: libraries/messages.inc.php:663 tbl_indexes.php:67 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Ime primarnog ključa mora da bude... PRIMARY!" -#: libraries/messages.inc.php:668 tbl_indexes.php:184 +#: libraries/messages.inc.php:664 tbl_indexes.php:184 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "(\"PRIMARY\" mora biti ime samo primarnog ključa!)" -#: libraries/messages.inc.php:669 libraries/mult_submits.inc.php:76 +#: libraries/messages.inc.php:665 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:474 msgid "Primary" msgstr "Primarni" -#: libraries/messages.inc.php:673 server_privileges.php:227 +#: libraries/messages.inc.php:669 server_privileges.php:227 msgid "Includes all privileges except GRANT." msgstr "Uključuje sve privilegije osim GRANT." -#: libraries/messages.inc.php:674 server_privileges.php:153 +#: libraries/messages.inc.php:670 server_privileges.php:153 #: server_privileges.php:476 msgid "Allows altering the structure of existing tables." msgstr "Dozvoljava izmenu struktura postojećih tabela." -#: libraries/messages.inc.php:675 server_privileges.php:169 +#: libraries/messages.inc.php:671 server_privileges.php:169 #: server_privileges.php:482 msgid "Allows altering and dropping stored routines." msgstr "Dozvoljava izmenu i odbacivanje sačuvanih rutina." -#: libraries/messages.inc.php:676 server_privileges.php:145 +#: libraries/messages.inc.php:672 server_privileges.php:145 #: server_privileges.php:475 msgid "Allows creating new databases and tables." msgstr "Dozvoljava kreiranje novih baza i tabela." -#: libraries/messages.inc.php:677 server_privileges.php:168 +#: libraries/messages.inc.php:673 server_privileges.php:168 #: server_privileges.php:481 msgid "Allows creating stored routines." msgstr "Dozvoljava pravljenje sačuvanih rutina." -#: libraries/messages.inc.php:678 server_privileges.php:475 +#: libraries/messages.inc.php:674 server_privileges.php:475 msgid "Allows creating new tables." msgstr "Dozvoljava kreiranje novih tabela." -#: libraries/messages.inc.php:679 server_privileges.php:156 +#: libraries/messages.inc.php:675 server_privileges.php:156 #: server_privileges.php:479 msgid "Allows creating temporary tables." msgstr "Dozvoljava kreiranje privremenih tabela.." -#: libraries/messages.inc.php:680 server_privileges.php:170 +#: libraries/messages.inc.php:676 server_privileges.php:170 #: server_privileges.php:515 msgid "Allows creating, dropping and renaming user accounts." msgstr "Dozvoljava pravljenje, odbacivanje i preimenovanje korisničkih naloga." -#: libraries/messages.inc.php:681 server_privileges.php:160 +#: libraries/messages.inc.php:677 server_privileges.php:160 #: server_privileges.php:164 server_privileges.php:487 #: server_privileges.php:491 msgid "Allows creating new views." msgstr "Dozvoli kreiranje novih pogleda." -#: libraries/messages.inc.php:682 server_privileges.php:144 +#: libraries/messages.inc.php:678 server_privileges.php:144 #: server_privileges.php:467 msgid "Allows deleting data." msgstr "Dozvoljava brisanje podataka." -#: libraries/messages.inc.php:683 server_privileges.php:146 +#: libraries/messages.inc.php:679 server_privileges.php:146 #: server_privileges.php:478 msgid "Allows dropping databases and tables." msgstr "Dozvoljava odbacivanje baza i tabela." -#: libraries/messages.inc.php:684 server_privileges.php:478 +#: libraries/messages.inc.php:680 server_privileges.php:478 msgid "Allows dropping tables." msgstr "Dozvoljava odbacivanje tabela." -#: libraries/messages.inc.php:685 server_privileges.php:161 +#: libraries/messages.inc.php:681 server_privileges.php:161 #: server_privileges.php:495 msgid "Allows to set up events for the event scheduler" msgstr "" -#: libraries/messages.inc.php:686 server_privileges.php:171 +#: libraries/messages.inc.php:682 server_privileges.php:171 #: server_privileges.php:483 msgid "Allows executing stored routines." msgstr "Dozvoljava izvršavanje sačuvanih rutina." -#: libraries/messages.inc.php:687 server_privileges.php:150 +#: libraries/messages.inc.php:683 server_privileges.php:150 #: server_privileges.php:470 msgid "Allows importing data from and exporting data into files." msgstr "Dozvoljava uvoz podataka i njihov izvoz u datoteke." -#: libraries/messages.inc.php:688 server_privileges.php:501 +#: libraries/messages.inc.php:684 server_privileges.php:501 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Dozvoljava dodavanje korisnika i privilegija bez ponovnog učitavanja tabela " "privilegija." -#: libraries/messages.inc.php:689 server_privileges.php:152 +#: libraries/messages.inc.php:685 server_privileges.php:152 #: server_privileges.php:477 msgid "Allows creating and dropping indexes." msgstr "Dozvoljava kreiranje i brisanje ključeva." -#: libraries/messages.inc.php:690 server_privileges.php:142 +#: libraries/messages.inc.php:686 server_privileges.php:142 #: server_privileges.php:403 server_privileges.php:465 msgid "Allows inserting and replacing data." msgstr "Dozvoljava umetanje i zamenu podataka." -#: libraries/messages.inc.php:691 server_privileges.php:157 +#: libraries/messages.inc.php:687 server_privileges.php:157 #: server_privileges.php:510 msgid "Allows locking tables for the current thread." msgstr "Dozvoljava zaključavanje tabela tekućim procesima." -#: libraries/messages.inc.php:692 server_privileges.php:607 +#: libraries/messages.inc.php:688 server_privileges.php:607 #: server_privileges.php:609 msgid "Limits the number of new connections the user may open per hour." msgstr "Ograničava broj novih konekcija koje korisnik može ta otvori na sat." -#: libraries/messages.inc.php:693 server_privileges.php:595 +#: libraries/messages.inc.php:689 server_privileges.php:595 #: server_privileges.php:597 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Ograničava broj upita koje korisnik može da uputi serveru za sat." -#: libraries/messages.inc.php:694 server_privileges.php:601 +#: libraries/messages.inc.php:690 server_privileges.php:601 #: server_privileges.php:603 msgid "" "Limits the number of commands that change any table or database the user may " @@ -4661,58 +4661,58 @@ msgstr "" "Ograničava broj komandi koje menjaju tabele ili baze koje korisnik može da " "izvrši na sat." -#: libraries/messages.inc.php:695 server_privileges.php:613 +#: libraries/messages.inc.php:691 server_privileges.php:613 #: server_privileges.php:615 msgid "Limits the number of simultaneous connections the user may have." msgstr "Ograničava broj istovremenih konekcija koje korisnik može da ima." -#: libraries/messages.inc.php:696 server_privileges.php:149 +#: libraries/messages.inc.php:692 server_privileges.php:149 #: server_privileges.php:505 msgid "Allows viewing processes of all users" msgstr "" -#: libraries/messages.inc.php:697 server_privileges.php:151 +#: libraries/messages.inc.php:693 server_privileges.php:151 #: server_privileges.php:409 server_privileges.php:511 msgid "Has no effect in this MySQL version." msgstr "Nema efekta u ovoj verziji MySQL-a." -#: libraries/messages.inc.php:698 server_privileges.php:147 +#: libraries/messages.inc.php:694 server_privileges.php:147 #: server_privileges.php:506 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Dozvoljava ponovno učitavanje podešavanja servera i pražnjenje keša servera." -#: libraries/messages.inc.php:699 server_privileges.php:159 +#: libraries/messages.inc.php:695 server_privileges.php:159 #: server_privileges.php:513 msgid "Allows the user to ask where the slaves / masters are." msgstr "Daje pravo korisniku da pita gde su glavni/pomoćni serveri." -#: libraries/messages.inc.php:700 server_privileges.php:158 +#: libraries/messages.inc.php:696 server_privileges.php:158 #: server_privileges.php:514 msgid "Needed for the replication slaves." msgstr "Potrebno zbog pomoćnih servera za replikaciju." -#: libraries/messages.inc.php:701 server_privileges.php:141 +#: libraries/messages.inc.php:697 server_privileges.php:141 #: server_privileges.php:400 server_privileges.php:464 msgid "Allows reading data." msgstr "Dozvoljava čitanje podataka." -#: libraries/messages.inc.php:702 server_privileges.php:154 +#: libraries/messages.inc.php:698 server_privileges.php:154 #: server_privileges.php:508 msgid "Gives access to the complete list of databases." msgstr "Daje pristup kompletnoj listi baza." -#: libraries/messages.inc.php:703 server_privileges.php:165 +#: libraries/messages.inc.php:699 server_privileges.php:165 #: server_privileges.php:167 server_privileges.php:480 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Dozvoljava izvršavanje SHOW CREATE VIEW upita." -#: libraries/messages.inc.php:704 server_privileges.php:148 +#: libraries/messages.inc.php:700 server_privileges.php:148 #: server_privileges.php:507 msgid "Allows shutting down the server." msgstr "Dozvoljava gašenje servera." -#: libraries/messages.inc.php:705 server_privileges.php:155 +#: libraries/messages.inc.php:701 server_privileges.php:155 #: server_privileges.php:504 msgid "" "Allows connecting, even if maximum number of connections is reached; " @@ -4723,56 +4723,56 @@ msgstr "" "Neophodno za većinu administrativnih opcija kao što su podešavanje globalnih " "promenljivih ili prekidanje procesa ostalih korisnika." -#: libraries/messages.inc.php:706 server_privileges.php:162 +#: libraries/messages.inc.php:702 server_privileges.php:162 #: server_privileges.php:496 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "Dozvoljava kreiranje i brisanje ključeva." -#: libraries/messages.inc.php:707 server_privileges.php:143 +#: libraries/messages.inc.php:703 server_privileges.php:143 #: server_privileges.php:406 server_privileges.php:466 msgid "Allows changing data." msgstr "Dozvoljava izmenu podataka." -#: libraries/messages.inc.php:708 server_privileges.php:221 +#: libraries/messages.inc.php:704 server_privileges.php:221 msgid "No privileges." msgstr "Nema privilegija." -#: libraries/messages.inc.php:710 server_privileges.php:1296 +#: libraries/messages.inc.php:706 server_privileges.php:1296 msgid "The privileges were reloaded successfully." msgstr "Privilegije su uspešno ponovo učitane." -#: libraries/messages.inc.php:712 libraries/server_links.inc.php:80 +#: libraries/messages.inc.php:708 libraries/server_links.inc.php:80 msgid "Processes" msgstr "Procesi" -#: libraries/messages.inc.php:714 main.php:187 +#: libraries/messages.inc.php:710 main.php:187 msgid "Protocol version" msgstr "Verzija protokola" -#: libraries/messages.inc.php:715 +#: libraries/messages.inc.php:711 msgid "Put fields names in the first row" msgstr "Stavi imena polja u prvi red" -#: libraries/messages.inc.php:720 server_synchronize.php:1003 +#: libraries/messages.inc.php:716 server_synchronize.php:1003 msgid "The following queries have been executed:" msgstr "" -#: libraries/messages.inc.php:721 server_status.php:251 +#: libraries/messages.inc.php:717 server_status.php:251 msgid "Query cache" msgstr "Keš upita" -#: libraries/messages.inc.php:722 libraries/navigation_header.inc.php:80 +#: libraries/messages.inc.php:718 libraries/navigation_header.inc.php:80 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 setup/lib/messages.inc.php:122 msgid "Query window" msgstr "Prozor za upite" -#: libraries/messages.inc.php:725 querywindow.php:109 querywindow.php:217 +#: libraries/messages.inc.php:721 querywindow.php:109 querywindow.php:217 msgid "SQL history" msgstr "SQL istorijat" -#: libraries/messages.inc.php:726 server_status.php:490 +#: libraries/messages.inc.php:722 server_status.php:490 #, php-format msgid "" "Query statistics: Since its startup, %s queries have been sent to the " @@ -4781,137 +4781,137 @@ msgstr "" "Statistike upita: %s upita je postavljeno serveru od njegovog " "pokretanja." -#: libraries/messages.inc.php:728 server_status.php:554 +#: libraries/messages.inc.php:724 server_status.php:554 msgid "Query type" msgstr "Vrsta upita" -#: libraries/messages.inc.php:729 libraries/sql_query_form.lib.php:381 +#: libraries/messages.inc.php:725 libraries/sql_query_form.lib.php:381 msgid "Do not overwrite this query from outside the window" msgstr "Ne prepisuj ovaj upit izvan prozora" -#: libraries/messages.inc.php:732 tbl_operations.php:663 +#: libraries/messages.inc.php:728 tbl_operations.php:663 msgid "Rebuild" msgstr "" -#: libraries/messages.inc.php:733 server_status.php:394 +#: libraries/messages.inc.php:729 server_status.php:394 msgid "Received" msgstr "Primljeno" -#: libraries/messages.inc.php:734 pmd_pdf.php:89 +#: libraries/messages.inc.php:730 pmd_pdf.php:89 msgid "recommended" msgstr "preporučeno" -#: libraries/messages.inc.php:736 tbl_operations.php:702 +#: libraries/messages.inc.php:732 tbl_operations.php:702 msgid "Check referential integrity:" msgstr "Proveri referencijalni integritet:" -#: libraries/messages.inc.php:740 pdf_schema.php:1032 pdf_schema.php:1141 +#: libraries/messages.inc.php:736 pdf_schema.php:1032 pdf_schema.php:1141 msgid "Relational schema" msgstr "Relaciona shema" -#: libraries/messages.inc.php:744 tbl_relation.php:399 +#: libraries/messages.inc.php:740 tbl_relation.php:399 msgid "Relations" msgstr "Relacije" -#: libraries/messages.inc.php:745 tbl_structure.php:507 tbl_structure.php:509 +#: libraries/messages.inc.php:741 tbl_structure.php:507 tbl_structure.php:509 msgid "Relation view" msgstr "Relacioni pogled" -#: libraries/messages.inc.php:746 server_privileges.php:1246 +#: libraries/messages.inc.php:742 server_privileges.php:1246 msgid "Reloading the privileges" msgstr "Ponovo učitavam privilegije" -#: libraries/messages.inc.php:747 navigation.php:66 navigation.php:67 +#: libraries/messages.inc.php:743 navigation.php:66 navigation.php:67 #: navigation.php:70 msgid "Reload navigation frame" msgstr "" -#: libraries/messages.inc.php:748 pmd_general.php:80 +#: libraries/messages.inc.php:744 pmd_general.php:80 msgid "Reload" msgstr "Ponovo učitaj" -#: libraries/messages.inc.php:749 libraries/server_synchronize.lib.php:1345 +#: libraries/messages.inc.php:745 libraries/server_synchronize.lib.php:1345 #: libraries/server_synchronize.lib.php:1371 msgid "Remote server" msgstr "" -#: libraries/messages.inc.php:750 +#: libraries/messages.inc.php:746 msgid "Remove CRLF characters within fields" msgstr "" -#: libraries/messages.inc.php:751 tbl_operations.php:676 +#: libraries/messages.inc.php:747 tbl_operations.php:676 msgid "Remove partitioning" msgstr "" -#: libraries/messages.inc.php:752 server_privileges.php:1575 +#: libraries/messages.inc.php:748 server_privileges.php:1575 msgid "Remove selected users" msgstr "Ukloni izabrane korisnike" -#: libraries/messages.inc.php:755 tbl_operations.php:338 +#: libraries/messages.inc.php:751 tbl_operations.php:338 msgid "Rename table to" msgstr "Promeni ime tabele u " -#: libraries/messages.inc.php:756 view_operations.php:93 +#: libraries/messages.inc.php:752 view_operations.php:93 #, fuzzy msgid "Rename view to" msgstr "Promeni ime tabele u " -#: libraries/messages.inc.php:757 tbl_operations.php:664 +#: libraries/messages.inc.php:753 tbl_operations.php:664 #, fuzzy msgid "Repair" msgstr "Popravi tabelu" -#: libraries/messages.inc.php:759 +#: libraries/messages.inc.php:755 msgid "Replace NULL by" msgstr "Zameni NULL sa" -#: libraries/messages.inc.php:760 +#: libraries/messages.inc.php:756 msgid "Replace table data with file" msgstr "Zameni podatke u tabeli sa podacima iz datoteke" -#: libraries/messages.inc.php:761 server_replication.php:228 +#: libraries/messages.inc.php:757 server_replication.php:228 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: libraries/messages.inc.php:762 libraries/replication_gui.lib.php:236 +#: libraries/messages.inc.php:758 libraries/replication_gui.lib.php:236 #: server_replication.php:194 msgid "Add slave replication user" msgstr "" -#: libraries/messages.inc.php:763 server_replication.php:74 +#: libraries/messages.inc.php:759 server_replication.php:74 #, php-format msgid "Master server changed succesfully to %s" msgstr "" -#: libraries/messages.inc.php:764 server_replication.php:182 +#: libraries/messages.inc.php:760 server_replication.php:182 msgid "This server is configured as master in a replication process." msgstr "" -#: libraries/messages.inc.php:765 server_replication.php:322 +#: libraries/messages.inc.php:761 server_replication.php:322 msgid "Control slave:" msgstr "" -#: libraries/messages.inc.php:766 server_replication.php:65 +#: libraries/messages.inc.php:762 server_replication.php:65 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: libraries/messages.inc.php:767 server_replication.php:58 +#: libraries/messages.inc.php:763 server_replication.php:58 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: libraries/messages.inc.php:768 server_replication.php:221 +#: libraries/messages.inc.php:764 server_replication.php:221 msgid "Replicate all databases; Ignore:" msgstr "" -#: libraries/messages.inc.php:769 server_replication.php:222 +#: libraries/messages.inc.php:765 server_replication.php:222 msgid "Ignore all databases; Replicate:" msgstr "" -#: libraries/messages.inc.php:770 server_replication.php:218 +#: libraries/messages.inc.php:766 server_replication.php:218 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -4920,122 +4920,122 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: libraries/messages.inc.php:771 server_replication.php:217 +#: libraries/messages.inc.php:767 server_replication.php:217 msgid "Master configuration" msgstr "" -#: libraries/messages.inc.php:772 server_replication.php:181 +#: libraries/messages.inc.php:768 server_replication.php:181 #: server_replication.php:209 msgid "Master replication" msgstr "" -#: libraries/messages.inc.php:774 server_replication.php:230 +#: libraries/messages.inc.php:770 server_replication.php:230 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: libraries/messages.inc.php:775 server_replication.php:225 +#: libraries/messages.inc.php:771 server_replication.php:225 #, fuzzy msgid "Please select databases:" msgstr "Izaberite bazu" -#: libraries/messages.inc.php:776 server_replication.php:210 +#: libraries/messages.inc.php:772 server_replication.php:210 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:188 +#: libraries/messages.inc.php:773 libraries/replication_gui.lib.php:188 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/messages.inc.php:778 server_replication.php:187 +#: libraries/messages.inc.php:774 server_replication.php:187 msgid "Show connected slaves" msgstr "" -#: libraries/messages.inc.php:779 libraries/messages.inc.php:885 +#: libraries/messages.inc.php:775 libraries/messages.inc.php:881 #: server_replication.php:184 server_status.php:281 #, fuzzy msgid "Show master status" msgstr "Prikaži status podređenih servera" -#: libraries/messages.inc.php:780 server_replication.php:334 +#: libraries/messages.inc.php:776 server_replication.php:334 msgid "Skipping error(s) might lead into unsynchronized master and slave!" msgstr "" -#: libraries/messages.inc.php:781 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:51 #: server_replication.php:347 msgid "Change or reconfigure master server" msgstr "" -#: libraries/messages.inc.php:782 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:778 libraries/replication_gui.lib.php:51 msgid "Slave configuration" msgstr "" -#: libraries/messages.inc.php:783 server_replication.php:305 +#: libraries/messages.inc.php:779 server_replication.php:305 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: libraries/messages.inc.php:784 server_replication.php:332 +#: libraries/messages.inc.php:780 server_replication.php:332 msgid "Error management:" msgstr "" -#: libraries/messages.inc.php:785 server_replication.php:328 +#: libraries/messages.inc.php:781 server_replication.php:328 #, php-format msgid "IO Thread %s only" msgstr "" -#: libraries/messages.inc.php:786 server_replication.php:296 +#: libraries/messages.inc.php:782 server_replication.php:296 msgid "Slave IO Thread not running!" msgstr "" -#: libraries/messages.inc.php:787 server_replication.php:355 +#: libraries/messages.inc.php:783 server_replication.php:355 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/messages.inc.php:788 server_replication.php:326 +#: libraries/messages.inc.php:784 server_replication.php:326 msgid "Reset slave" msgstr "" -#: libraries/messages.inc.php:789 server_replication.php:308 +#: libraries/messages.inc.php:785 server_replication.php:308 msgid "See slave status table" msgstr "" -#: libraries/messages.inc.php:790 server_replication.php:336 +#: libraries/messages.inc.php:786 server_replication.php:336 msgid "Skip current error" msgstr "" -#: libraries/messages.inc.php:791 server_replication.php:340 +#: libraries/messages.inc.php:787 server_replication.php:340 msgid "errors." msgstr "" -#: libraries/messages.inc.php:792 server_replication.php:337 +#: libraries/messages.inc.php:788 server_replication.php:337 msgid "Skip next" msgstr "" -#: libraries/messages.inc.php:793 server_replication.php:248 +#: libraries/messages.inc.php:789 server_replication.php:248 msgid "Slave replication" msgstr "" -#: libraries/messages.inc.php:794 server_replication.php:293 +#: libraries/messages.inc.php:790 server_replication.php:293 msgid "Slave SQL Thread not running!" msgstr "" -#: libraries/messages.inc.php:795 server_replication.php:327 +#: libraries/messages.inc.php:791 server_replication.php:327 #, php-format msgid "SQL Thread %s only" msgstr "" -#: libraries/messages.inc.php:796 +#: libraries/messages.inc.php:792 #, php-format msgid "" "This MySQL server works as %s in replication process. For further " @@ -5043,160 +5043,160 @@ msgid "" "\"#replication\">replication section." msgstr "" -#: libraries/messages.inc.php:797 +#: libraries/messages.inc.php:793 #, fuzzy msgid "Master status" msgstr "Prikaži status podređenih servera" -#: libraries/messages.inc.php:798 server_status.php:721 +#: libraries/messages.inc.php:794 server_status.php:721 #, fuzzy msgid "Replication status" msgstr "Replikacija" -#: libraries/messages.inc.php:799 +#: libraries/messages.inc.php:795 #, fuzzy msgid "Slave status" msgstr "Prikaži status podređenih servera" -#: libraries/messages.inc.php:800 server_replication.php:311 +#: libraries/messages.inc.php:796 server_replication.php:311 msgid "Synchronize databases with master" msgstr "" -#: libraries/messages.inc.php:801 server_replication.php:71 +#: libraries/messages.inc.php:797 server_replication.php:71 msgid "Unable to change master" msgstr "" -#: libraries/messages.inc.php:802 server_replication.php:51 +#: libraries/messages.inc.php:798 server_replication.php:51 msgid "Unknown error" msgstr "" -#: libraries/messages.inc.php:803 main.php:163 pdf_pages.php:344 +#: libraries/messages.inc.php:799 main.php:163 pdf_pages.php:344 #: setup/lib/FormDisplay.tpl.php:216 tbl_change.php:1175 msgid "Reset" msgstr "Poništi" -#: libraries/messages.inc.php:804 server_privileges.php:591 +#: libraries/messages.inc.php:800 server_privileges.php:591 msgid "Resource limits" msgstr "Ograničenja resursa" -#: libraries/messages.inc.php:805 tbl_change.php:1209 +#: libraries/messages.inc.php:801 tbl_change.php:1209 #, php-format msgid "Restart insertion with %s rows" msgstr "Ponovo pokreni unošenje sa %s redova" -#: libraries/messages.inc.php:807 server_privileges.php:1578 +#: libraries/messages.inc.php:803 server_privileges.php:1578 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Obustavi sve aktivne privilegije korisnika i zatim ih obriši." -#: libraries/messages.inc.php:808 server_privileges.php:1176 +#: libraries/messages.inc.php:804 server_privileges.php:1176 #, php-format msgid "You have revoked the privileges for %s" msgstr "Zabranili ste privilegije za %s" -#: libraries/messages.inc.php:809 server_privileges.php:1333 +#: libraries/messages.inc.php:805 server_privileges.php:1333 msgid "Revoke" msgstr "Zabrani" -#: libraries/messages.inc.php:810 libraries/mysql_charsets.lib.php:280 +#: libraries/messages.inc.php:806 libraries/mysql_charsets.lib.php:280 msgid "Romanian" msgstr "Rumunski" -#: libraries/messages.inc.php:813 tbl_printview.php:404 tbl_structure.php:786 +#: libraries/messages.inc.php:809 tbl_printview.php:404 tbl_structure.php:786 msgid "Row length" msgstr "Dužina reda" -#: libraries/messages.inc.php:815 tbl_printview.php:414 tbl_structure.php:794 +#: libraries/messages.inc.php:811 tbl_printview.php:414 tbl_structure.php:794 msgid " Row size " msgstr "Veličina reda" -#: libraries/messages.inc.php:821 tbl_printview.php:366 tbl_structure.php:726 +#: libraries/messages.inc.php:817 tbl_printview.php:366 tbl_structure.php:726 msgid "Row Statistics" msgstr "Statistike reda" -#: libraries/messages.inc.php:822 +#: libraries/messages.inc.php:818 #, php-format msgid "running on %s" msgstr "na serveru %s" -#: libraries/messages.inc.php:824 libraries/sql_query_form.lib.php:223 +#: libraries/messages.inc.php:820 libraries/sql_query_form.lib.php:223 #, php-format msgid "Run SQL query/queries on server %s" msgstr "Izvrši SQL upit(e) na serveru %s" -#: libraries/messages.inc.php:825 libraries/sql_query_form.lib.php:240 +#: libraries/messages.inc.php:821 libraries/sql_query_form.lib.php:240 #: libraries/sql_query_form.lib.php:265 #, php-format msgid "Run SQL query/queries on database %s" msgstr "Izvrši SQL upit(e) na bazi %s" -#: libraries/messages.inc.php:826 libraries/mysql_charsets.lib.php:337 +#: libraries/messages.inc.php:822 libraries/mysql_charsets.lib.php:337 msgid "Russian" msgstr "Ruski" -#: libraries/messages.inc.php:829 pmd_general.php:68 +#: libraries/messages.inc.php:825 pmd_general.php:68 msgid "Save position" msgstr "Sačuvaj poziciju" -#: libraries/messages.inc.php:830 libraries/tbl_properties.inc.php:776 +#: libraries/messages.inc.php:826 libraries/tbl_properties.inc.php:776 #: pdf_pages.php:484 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:214 setup/lib/FormDisplay.tpl.php:215 #: tbl_change.php:1126 tbl_indexes.php:248 tbl_relation.php:566 msgid "Save" msgstr "Sačuvaj" -#: libraries/messages.inc.php:831 +#: libraries/messages.inc.php:827 msgid "The scale factor is too small to fit the schema on one page" msgstr "Faktor umanjenja je premali da bi shema stala na jednu stranu" -#: libraries/messages.inc.php:843 main.php:298 +#: libraries/messages.inc.php:839 main.php:298 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "Konfiguraciona datoteka zahteva tajnu lozinku (blowfish_secret)." -#: libraries/messages.inc.php:844 navigation.php:353 navigation.php:516 +#: libraries/messages.inc.php:840 navigation.php:353 navigation.php:516 msgid "Please select a database" msgstr "Izaberite bazu" -#: libraries/messages.inc.php:846 server_binlog.php:120 +#: libraries/messages.inc.php:842 server_binlog.php:120 msgid "Select binary log to view" msgstr "Izaberite binarni dnevnik za pregled" -#: libraries/messages.inc.php:847 tbl_select.php:270 +#: libraries/messages.inc.php:843 tbl_select.php:270 msgid "Select fields (at least one):" msgstr "Izaberi polja (najmanje jedno)" -#: libraries/messages.inc.php:851 pdf_pages.php:320 +#: libraries/messages.inc.php:847 pdf_pages.php:320 msgid "Select Tables" msgstr "Izaberi tabele" -#: libraries/messages.inc.php:853 server_status.php:404 +#: libraries/messages.inc.php:849 server_status.php:404 msgid "Sent" msgstr "Poslato" -#: libraries/messages.inc.php:857 libraries/select_server.lib.php:45 +#: libraries/messages.inc.php:853 libraries/select_server.lib.php:45 #: setup/frames/index.inc.php:97 setup/lib/messages.inc.php:115 msgid "Servers" msgstr "Serveri" -#: libraries/messages.inc.php:858 server_status.php:255 +#: libraries/messages.inc.php:854 server_status.php:255 msgid "Delayed inserts" msgstr "Odložena umetanja" -#: libraries/messages.inc.php:859 server_status.php:46 +#: libraries/messages.inc.php:855 server_status.php:46 msgid "Runtime Information" msgstr "Informacije o toku rada" -#: libraries/messages.inc.php:860 server_status.php:350 +#: libraries/messages.inc.php:856 server_status.php:350 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Ovaj MySQL server radi već %s. Pokrenut je %s." -#: libraries/messages.inc.php:861 libraries/server_links.inc.php:53 +#: libraries/messages.inc.php:857 libraries/server_links.inc.php:53 #: server_engines.php:112 server_engines.php:116 server_status.php:304 #: test/theme.php:105 msgid "Variables" msgstr "Promenljive" -#: libraries/messages.inc.php:862 server_status.php:383 +#: libraries/messages.inc.php:858 server_status.php:383 msgid "" "Server traffic: These tables show the network traffic statistics of " "this MySQL server since its startup." @@ -5204,11 +5204,11 @@ msgstr "" "Saobraćaj servera: Tabele pokazuju statistike mrežnog saobraćaja na " "ovom MySQL serveru od njegovog pokretanja." -#: libraries/messages.inc.php:863 server_variables.php:35 +#: libraries/messages.inc.php:859 server_variables.php:35 msgid "Server variables and settings" msgstr "Serverske promenljive i podešavanja" -#: libraries/messages.inc.php:865 main.php:290 +#: libraries/messages.inc.php:861 main.php:290 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -5216,7 +5216,7 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: libraries/messages.inc.php:866 +#: libraries/messages.inc.php:862 msgid "" "Cannot start session without errors, please check errors given in your PHP " "and/or webserver log file and configure your PHP installation properly." @@ -5224,11 +5224,11 @@ msgstr "" "Ne mogu da pokrenem sesiju bez grešaka, molim proverite greške u PHP i/ili " "dnevniku veb servera i propisno podesite vašu PHP instalaciju." -#: libraries/messages.inc.php:867 server_variables.php:55 +#: libraries/messages.inc.php:863 server_variables.php:55 msgid "Session value" msgstr "Vrednost sesije" -#: libraries/messages.inc.php:868 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:864 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 " @@ -5240,45 +5240,45 @@ msgstr "" "(\"'\") koristite ih u \"izbegnutom\" (escaped) obliku (na primer '\\\\xyz' " "ili 'a\\'b')." -#: libraries/messages.inc.php:876 server_binlog.php:192 server_binlog.php:195 +#: libraries/messages.inc.php:872 server_binlog.php:192 server_binlog.php:195 #: server_processlist.php:49 server_processlist.php:51 msgid "Show Full Queries" msgstr "Prikaži kompletne upite" -#: libraries/messages.inc.php:878 pmd_general.php:64 +#: libraries/messages.inc.php:874 pmd_general.php:64 msgid "Show/Hide left menu" msgstr "Prikaži/sakrij meni s leve strane" -#: libraries/messages.inc.php:880 sql.php:513 +#: libraries/messages.inc.php:876 sql.php:513 msgid "Showing as PHP code" msgstr "Prikaz kao PHP kod" -#: libraries/messages.inc.php:882 sql.php:516 tbl_replace.php:360 +#: libraries/messages.inc.php:878 sql.php:516 tbl_replace.php:360 msgid "Showing SQL query" msgstr "Prikaz kao SQL upit" -#: libraries/messages.inc.php:883 tbl_change.php:1132 +#: libraries/messages.inc.php:879 tbl_change.php:1132 #, fuzzy msgid "Show insert query" msgstr "Prikaz kao SQL upit" -#: libraries/messages.inc.php:886 server_status.php:273 +#: libraries/messages.inc.php:882 server_status.php:273 msgid "Show open tables" msgstr "Prikaži otvorene tabele" -#: libraries/messages.inc.php:887 main.php:219 +#: libraries/messages.inc.php:883 main.php:219 msgid "Show PHP information" msgstr "Prikaži informacije o PHP-u" -#: libraries/messages.inc.php:889 server_status.php:278 +#: libraries/messages.inc.php:885 server_status.php:278 msgid "Show slave hosts" msgstr "Prikaži podređene server" -#: libraries/messages.inc.php:890 server_status.php:284 +#: libraries/messages.inc.php:886 server_status.php:284 msgid "Show slave status" msgstr "Prikaži status podređenih servera" -#: libraries/messages.inc.php:891 +#: libraries/messages.inc.php:887 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -5288,11 +5288,11 @@ msgstr "" "prevazišle vrednost u binlog_cache_size i koristile privremenu datoteku da " "smeste izraze iz transakcije." -#: libraries/messages.inc.php:892 +#: libraries/messages.inc.php:888 msgid "The number of transactions that used the temporary binary log cache." msgstr "Broj transakcija koje su koristile keš privremenog binarnog dnevnika." -#: libraries/messages.inc.php:893 +#: libraries/messages.inc.php:889 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -5304,11 +5304,11 @@ msgstr "" "povećate vrednost tmp_table_size kako bi učinili da privremene tabele budu " "bazirane u memoriji umesto na disku." -#: libraries/messages.inc.php:894 +#: libraries/messages.inc.php:890 msgid "How many temporary files mysqld has created." msgstr "Koliko privremenih datoteka je mysqld napravio." -#: libraries/messages.inc.php:895 +#: libraries/messages.inc.php:891 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -5316,7 +5316,7 @@ msgstr "" "Broj privremenih tabela koje je server automatski kreirao u memoriji dok je " "izvršavao izraze." -#: libraries/messages.inc.php:896 +#: libraries/messages.inc.php:892 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -5324,7 +5324,7 @@ msgstr "" "Broj redova upisanih sa INSERT DELAYED za koje je javljena neka greška " "(verovatno duplirani ključ)." -#: libraries/messages.inc.php:897 +#: libraries/messages.inc.php:893 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -5332,23 +5332,23 @@ msgstr "" "Broj INSERT DELAYED rukovalačkih niti u upotrebi. Svaka posebna tabela nad " "kojom se koristi INSERT DELAYED dobija svoju nit." -#: libraries/messages.inc.php:898 +#: libraries/messages.inc.php:894 msgid "The number of INSERT DELAYED rows written." msgstr "Broj upisanih INSERT DELAYED redova." -#: libraries/messages.inc.php:899 +#: libraries/messages.inc.php:895 msgid "The number of executed FLUSH statements." msgstr "Broj izvršenih FLUSH izraza." -#: libraries/messages.inc.php:900 +#: libraries/messages.inc.php:896 msgid "The number of internal COMMIT statements." msgstr "Broj internih COMMIT izraza." -#: libraries/messages.inc.php:901 +#: libraries/messages.inc.php:897 msgid "The number of times a row was deleted from a table." msgstr "Broj brisanja nekog reda tabele." -#: libraries/messages.inc.php:902 +#: libraries/messages.inc.php:898 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -5358,7 +5358,7 @@ msgstr "" "tabelu određenog imena. To se naziva otkrivanjem (discovery). " "Handler_discover označava broj puta kada je otkrivena tabela." -#: libraries/messages.inc.php:903 +#: libraries/messages.inc.php:899 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -5368,7 +5368,7 @@ msgstr "" "može značiti da server radi puno punih skeniranja indeksa; na primer SELECT " "kol1 FROM nešto, pod pretpostavkom da je kol1 indeksirano." -#: libraries/messages.inc.php:904 +#: libraries/messages.inc.php:900 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -5376,7 +5376,7 @@ msgstr "" "Broj zahteva za čitanje reda zasnovanih na ključu. Ako je ovaj broj visok, " "to je dobar pokazatelj da su vaši upiti i tabele propisno indeksirani." -#: libraries/messages.inc.php:905 +#: libraries/messages.inc.php:901 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -5386,7 +5386,7 @@ msgstr "" "kada radite upit po koloni indeksa sa ograničenjem opsega ili ako radite " "skeniranje indeksa." -#: libraries/messages.inc.php:906 +#: libraries/messages.inc.php:902 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -5394,7 +5394,7 @@ msgstr "" "Broj zahteva za čitanjem prethodnog reda u poretku ključeva. Ova metoda " "čitanja se uglavnom koristi za optimizaciju ORDER BY ... DESC." -#: libraries/messages.inc.php:907 +#: libraries/messages.inc.php:903 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -5406,7 +5406,7 @@ msgstr "" "mnogo upita koji zahtevaju da MySQL skenira cele tabele ili imate spojeve " "koji ne koriste ključeve propisno." -#: libraries/messages.inc.php:908 +#: libraries/messages.inc.php:904 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -5418,35 +5418,35 @@ msgstr "" "nisu propisno indeksirane ili da vaši upiti nisu napisani da iskoriste već " "postojeće indekse." -#: libraries/messages.inc.php:909 +#: libraries/messages.inc.php:905 msgid "The number of internal ROLLBACK statements." msgstr "Broj internih ROLLBACK izraza." -#: libraries/messages.inc.php:910 +#: libraries/messages.inc.php:906 msgid "The number of requests to update a row in a table." msgstr "Broj zahteva za ažuriranje reda u tabeli." -#: libraries/messages.inc.php:911 +#: libraries/messages.inc.php:907 msgid "The number of requests to insert a row in a table." msgstr "Broj zahteva za upisivanje reda u tabelu." -#: libraries/messages.inc.php:912 +#: libraries/messages.inc.php:908 msgid "The number of pages containing data (dirty or clean)." msgstr "Broj strana koje sadrže podatke (čistih ili prljavih)." -#: libraries/messages.inc.php:913 +#: libraries/messages.inc.php:909 msgid "The number of pages currently dirty." msgstr "Broj strana koje su trenutno prljave." -#: libraries/messages.inc.php:914 +#: libraries/messages.inc.php:910 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Broj strana u ostavi bafera za koje je traženo da budu očišćene." -#: libraries/messages.inc.php:915 +#: libraries/messages.inc.php:911 msgid "The number of free pages." msgstr "Broj slobodnih strana." -#: libraries/messages.inc.php:916 +#: libraries/messages.inc.php:912 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -5456,7 +5456,7 @@ msgstr "" "čita ili se u njih upisuje ili iz nekog drugog razloga ne mogu biti očišćene " "niti uklonjene." -#: libraries/messages.inc.php:917 +#: libraries/messages.inc.php:913 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -5468,11 +5468,11 @@ msgstr "" "se takođe može izračunati i na sledeći način Innodb_buffer_pool_pages_total " "- Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: libraries/messages.inc.php:918 +#: libraries/messages.inc.php:914 msgid "Total size of buffer pool, in pages." msgstr "Puna veličina ostave bafera, u stranama." -#: libraries/messages.inc.php:919 +#: libraries/messages.inc.php:915 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -5480,7 +5480,7 @@ msgstr "" "Broj „nasumičnih“ pred-čitanja koja je InnoDB pokrenuo. Ovo se dešava kada " "upit treba da skenira veliki deo tabele ali nasumičnim redosledom." -#: libraries/messages.inc.php:920 +#: libraries/messages.inc.php:916 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -5488,11 +5488,11 @@ msgstr "" "Broj sekvencijalnih pred-čitanja koja je InnoDB pokrenuo. Ovo se dešava kada " "InnoDB radi sekvencijalno skeniranje cele tabele." -#: libraries/messages.inc.php:921 +#: libraries/messages.inc.php:917 msgid "The number of logical read requests InnoDB has done." msgstr "Broj logičkih zahteva za čitanje koje je InnoDB uradio." -#: libraries/messages.inc.php:922 +#: libraries/messages.inc.php:918 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -5500,7 +5500,7 @@ msgstr "" "Broj logičkih čitanja koja InnoDB nije mogao da zadovolji iz ostave bafera " "te je morao da radi čitanje pojedinačne strane." -#: libraries/messages.inc.php:923 +#: libraries/messages.inc.php:919 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -5514,55 +5514,55 @@ msgstr "" "dešavanja ovih čekanja. Ako je veličina ostave bafera postavljena kako " "treba, ova vrednost vi trebalo da je niska." -#: libraries/messages.inc.php:924 +#: libraries/messages.inc.php:920 msgid "The number writes done to the InnoDB buffer pool." msgstr "Broj upisa učinjenih u InnoDB ostavu bafera." -#: libraries/messages.inc.php:925 +#: libraries/messages.inc.php:921 msgid "The number of fsync() operations so far." msgstr "Broj fsync() operacija do sada." -#: libraries/messages.inc.php:926 +#: libraries/messages.inc.php:922 msgid "The current number of pending fsync() operations." msgstr "Trenutni broj fsync() operacija na čekanju." -#: libraries/messages.inc.php:927 +#: libraries/messages.inc.php:923 msgid "The current number of pending reads." msgstr "Trenutni broj čitanja na čekanju." -#: libraries/messages.inc.php:928 +#: libraries/messages.inc.php:924 msgid "The current number of pending writes." msgstr "Trenutni broj upisa na čekanju." -#: libraries/messages.inc.php:929 +#: libraries/messages.inc.php:925 msgid "The amount of data read so far, in bytes." msgstr "Količina podataka pročitanih do sada, u bajtovima." -#: libraries/messages.inc.php:930 +#: libraries/messages.inc.php:926 msgid "The total number of data reads." msgstr "Ukupan broj čitanja podataka." -#: libraries/messages.inc.php:931 +#: libraries/messages.inc.php:927 msgid "The total number of data writes." msgstr "Ukupan broj upisa podataka." -#: libraries/messages.inc.php:932 +#: libraries/messages.inc.php:928 msgid "The amount of data written so far, in bytes." msgstr "Količina podataka upisanih do sada, u bajtovima" -#: libraries/messages.inc.php:933 +#: libraries/messages.inc.php:929 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Broj izvršenih dvoupisnih (doublewrite) upisa i broj strana koje su upisane " "u ovu svrhu." -#: libraries/messages.inc.php:934 +#: libraries/messages.inc.php:930 msgid "The number of doublewrite operations that have been performed." msgstr "" "Broj izvršenih dvoupisnih (doublewrite) upisa i broj strana koje su upisane " "u ovu svrhu." -#: libraries/messages.inc.php:935 +#: libraries/messages.inc.php:931 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -5570,35 +5570,35 @@ msgstr "" "Broj čekanja koja smo imali zato što je bafer dnevnika bio premali te smo " "morali da sačekamo da bude očišćen pre nastavka." -#: libraries/messages.inc.php:936 +#: libraries/messages.inc.php:932 msgid "The number of log write requests." msgstr "Broj zahteva za upis u dnevnik." -#: libraries/messages.inc.php:937 +#: libraries/messages.inc.php:933 msgid "The number of physical writes to the log file." msgstr "Broj fizičkih upisa u datoteku dnevnika." -#: libraries/messages.inc.php:938 +#: libraries/messages.inc.php:934 msgid "The number of fsync() writes done to the log file." msgstr "Broj fsyncs upisa načinjenih u datoteku dnevnika." -#: libraries/messages.inc.php:939 +#: libraries/messages.inc.php:935 msgid "The number of pending log file fsyncs." msgstr "Broj fsync-ova za datoteku dnevnika na čekanju." -#: libraries/messages.inc.php:940 +#: libraries/messages.inc.php:936 msgid "Pending log file writes." msgstr "Broj upisa u datoteku dnevnika na čekanju." -#: libraries/messages.inc.php:941 +#: libraries/messages.inc.php:937 msgid "The number of bytes written to the log file." msgstr "Broj bajtova upisanih u datoteku dnevnika." -#: libraries/messages.inc.php:942 +#: libraries/messages.inc.php:938 msgid "The number of pages created." msgstr "Broj napravljenih strana." -#: libraries/messages.inc.php:943 +#: libraries/messages.inc.php:939 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -5607,52 +5607,52 @@ msgstr "" "vrednosti se računaju u stranama; veličina strane omogućava da se one lako " "konvertuju u bajtove." -#: libraries/messages.inc.php:944 +#: libraries/messages.inc.php:940 msgid "The number of pages read." msgstr "Broj pročitanih strana." -#: libraries/messages.inc.php:945 +#: libraries/messages.inc.php:941 msgid "The number of pages written." msgstr "Broj zapisanih strana." -#: libraries/messages.inc.php:946 +#: libraries/messages.inc.php:942 msgid "The number of row locks currently being waited for." msgstr "Broj brava za redove koje se trenutno čekaju." -#: libraries/messages.inc.php:947 +#: libraries/messages.inc.php:943 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Prosečno vreme za dobavljanje brave za red, u milisekundama." -#: libraries/messages.inc.php:948 +#: libraries/messages.inc.php:944 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" "Ukupno vremena provedeno u dobavljanju brava za redove, u milisekundama." -#: libraries/messages.inc.php:949 +#: libraries/messages.inc.php:945 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Najduže vreme za dobavljanje brave za red, u milisekundama." -#: libraries/messages.inc.php:950 +#: libraries/messages.inc.php:946 msgid "The number of times a row lock had to be waited for." msgstr "Broj puta kada se morala čekati brava za red." -#: libraries/messages.inc.php:951 +#: libraries/messages.inc.php:947 msgid "The number of rows deleted from InnoDB tables." msgstr "Broj redova obrisanih iz InnoDB tabela." -#: libraries/messages.inc.php:952 +#: libraries/messages.inc.php:948 msgid "The number of rows inserted in InnoDB tables." msgstr "Broj redova umetnutih u InnoDB tabele." -#: libraries/messages.inc.php:953 +#: libraries/messages.inc.php:949 msgid "The number of rows read from InnoDB tables." msgstr "Broj redova pročitanih iz InnoDB tabela." -#: libraries/messages.inc.php:954 +#: libraries/messages.inc.php:950 msgid "The number of rows updated in InnoDB tables." msgstr "Broj redova ažuriranih u InnoDB tabelama." -#: libraries/messages.inc.php:955 +#: libraries/messages.inc.php:951 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -5660,7 +5660,7 @@ msgstr "" "Broj blokova ključeva u kešu ključeva koji su izmenjeni ali još nisu poslati " "na disk. Ovo je ranije bilo poznato kao Not_flushed_key_blocks." -#: libraries/messages.inc.php:956 +#: libraries/messages.inc.php:952 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -5668,7 +5668,7 @@ msgstr "" "Broj neiskorišćenih blokova u kešu ključeva. Ovu vrednost možete da " "koristite da utvrdite koliki deo keša ključeva je u upotrebi." -#: libraries/messages.inc.php:957 +#: libraries/messages.inc.php:953 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -5678,11 +5678,11 @@ msgstr "" "vodostaja“ koja pokazuje najveći ikada broj blokova koji je bio u upotrebi u " "isto vreme." -#: libraries/messages.inc.php:958 +#: libraries/messages.inc.php:954 msgid "The number of requests to read a key block from the cache." msgstr "Broj zahteva za čitanje bloka ključeva iz keša." -#: libraries/messages.inc.php:959 +#: libraries/messages.inc.php:955 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -5692,15 +5692,15 @@ msgstr "" "je vaša vrednost za key_buffer_size verovatno premala. Stepen promašaja keša " "se može izračunati kao Key_reads/Key_read_requests." -#: libraries/messages.inc.php:960 +#: libraries/messages.inc.php:956 msgid "The number of requests to write a key block to the cache." msgstr "Broj zahteva za upisivanje bloka ključeva u keš." -#: libraries/messages.inc.php:961 +#: libraries/messages.inc.php:957 msgid "The number of physical writes of a key block to disk." msgstr "Broj fizičkih upisa bloka ključeva na disk." -#: libraries/messages.inc.php:962 +#: libraries/messages.inc.php:958 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -5710,11 +5710,11 @@ msgstr "" "upita. Korisno za upoređivanje cene različitih planova upita za isti upit. " "Podrazumevana vrednost 0 znači da još nije bio kompajliran nijedan upit." -#: libraries/messages.inc.php:963 +#: libraries/messages.inc.php:959 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Broj redova u INSERT DELAYED redovima čekanja koji čekaju upisivanje." -#: libraries/messages.inc.php:964 +#: libraries/messages.inc.php:960 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -5722,36 +5722,36 @@ msgstr "" "Broj tabela koje su bile otvarane. Ako je broj veliki, vaš keš tabela je " "verovatno premali." -#: libraries/messages.inc.php:965 +#: libraries/messages.inc.php:961 msgid "The number of files that are open." msgstr "Broj otvorenih datoteka." -#: libraries/messages.inc.php:966 +#: libraries/messages.inc.php:962 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Broj otvorenih tokova (koristi se prvenstveno za vođenje dnevnika (logging))." -#: libraries/messages.inc.php:967 +#: libraries/messages.inc.php:963 msgid "The number of tables that are open." msgstr "Broj otvorenih tabela." -#: libraries/messages.inc.php:968 +#: libraries/messages.inc.php:964 msgid "The number of free memory blocks in query cache." msgstr "Broj slobodnih memorijskih blokova u u kešu upita." -#: libraries/messages.inc.php:969 +#: libraries/messages.inc.php:965 msgid "The amount of free memory for query cache." msgstr "Količina slobodne memorije za keš upita." -#: libraries/messages.inc.php:970 +#: libraries/messages.inc.php:966 msgid "The number of cache hits." msgstr "Broj pogodaka iz keša." -#: libraries/messages.inc.php:971 +#: libraries/messages.inc.php:967 msgid "The number of queries added to the cache." msgstr "Broj upita dodatih u keš." -#: libraries/messages.inc.php:972 +#: libraries/messages.inc.php:968 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -5763,7 +5763,7 @@ msgstr "" "keša za upite. Keš za upite koristi strategiju najduže nekorišćenog (en: " "least recently used , LRU) da bi odlučio koje upite da ukloni iz keša." -#: libraries/messages.inc.php:973 +#: libraries/messages.inc.php:969 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -5771,24 +5771,24 @@ msgstr "" "Broj nekeširanih upita (koji se ne mogu keširati ili nisu keširani zbog " "podešavanja query_cache_type)." -#: libraries/messages.inc.php:974 +#: libraries/messages.inc.php:970 msgid "The number of queries registered in the cache." msgstr "Broj upita registrovanih u kešu." -#: libraries/messages.inc.php:975 +#: libraries/messages.inc.php:971 msgid "The total number of blocks in the query cache." msgstr "Ukupan broj blokova u kešu za upite." -#: libraries/messages.inc.php:976 +#: libraries/messages.inc.php:972 msgctxt "$strShowStatusReset" msgid "Reset" msgstr "Reset" -#: libraries/messages.inc.php:977 +#: libraries/messages.inc.php:973 msgid "The status of failsafe replication (not yet implemented)." msgstr "Status replikacije otporne na greške (nije još implementirano)." -#: libraries/messages.inc.php:978 +#: libraries/messages.inc.php:974 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -5796,11 +5796,11 @@ msgstr "" "Broj spojeva koji ne koriste indekste. Ako ova vrednost nije 0, trebalo bi " "pažljivo da proverite indekse vaših tabela." -#: libraries/messages.inc.php:979 +#: libraries/messages.inc.php:975 msgid "The number of joins that used a range search on a reference table." msgstr "Broj spojeva koji su koristili pretragu opsega na referentnoj tabeli." -#: libraries/messages.inc.php:980 +#: libraries/messages.inc.php:976 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -5809,7 +5809,7 @@ msgstr "" "reda. (Ako ovo nije 0, trebalo bi pažljivo da proverite indekse vaših " "tabela.)" -#: libraries/messages.inc.php:981 +#: libraries/messages.inc.php:977 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -5817,15 +5817,15 @@ msgstr "" "Broj spojeva koji su koristili opsege na prvoj tabeli. (Obično nije kritično " "čak ni kada je ovo veliko)" -#: libraries/messages.inc.php:982 +#: libraries/messages.inc.php:978 msgid "The number of joins that did a full scan of the first table." msgstr "Broj spojeva koji su uradili puno skeniranje prve tabele." -#: libraries/messages.inc.php:983 +#: libraries/messages.inc.php:979 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "Broj privremenih tabela trenutno otvorenih od strane pomoćne SQL niti." -#: libraries/messages.inc.php:984 +#: libraries/messages.inc.php:980 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -5833,11 +5833,11 @@ msgstr "" "Ukupan broj puta (od pokretanja) kada je pomoćna SQL nit za replikaciju " "pokušala transakcije." -#: libraries/messages.inc.php:985 +#: libraries/messages.inc.php:981 msgid "This is ON if this server is a slave that is connected to a master." msgstr "Ovo je ON ako je ovaj server pomoćni koji je povezan na glavni." -#: libraries/messages.inc.php:986 +#: libraries/messages.inc.php:982 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -5845,12 +5845,12 @@ msgstr "" "Broj niti za koje je trebalo više od slow_launch_time sekudni da bi bile " "pokrenute." -#: libraries/messages.inc.php:987 +#: libraries/messages.inc.php:983 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "Broj upita za koje je trebalo više od long_query_time sekudni." -#: libraries/messages.inc.php:988 +#: libraries/messages.inc.php:984 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -5860,23 +5860,23 @@ msgstr "" "Ako je ova vrednost velika, trebalo bi da razmislite o povećanju vrednosti " "sistemske promenljive sort_buffer_size." -#: libraries/messages.inc.php:989 +#: libraries/messages.inc.php:985 msgid "The number of sorts that were done with ranges." msgstr "Broj sortiranja koja su urađena sa opsegom." -#: libraries/messages.inc.php:990 +#: libraries/messages.inc.php:986 msgid "The number of sorted rows." msgstr "Broj sortiranih redova." -#: libraries/messages.inc.php:991 +#: libraries/messages.inc.php:987 msgid "The number of sorts that were done by scanning the table." msgstr "Broj sortiranja do kojih je došlo skeniranjem tabele." -#: libraries/messages.inc.php:992 +#: libraries/messages.inc.php:988 msgid "The number of times that a table lock was acquired immediately." msgstr "Broj puta kada je brava za tabelu odmah dobavljena." -#: libraries/messages.inc.php:993 +#: libraries/messages.inc.php:989 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -5888,7 +5888,7 @@ msgstr "" "bi trebalo da optimizujete svoje upite a potom da ili podelite tabelu ili " "tabele ili da koristite replikaciju." -#: libraries/messages.inc.php:994 +#: libraries/messages.inc.php:990 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -5898,11 +5898,11 @@ msgstr "" "Threads_created/Konekcije. Ako je ova vrednost crvena trebalo bi da povećate " "vaš thread_cache_size." -#: libraries/messages.inc.php:995 +#: libraries/messages.inc.php:991 msgid "The number of currently open connections." msgstr "Broj trenutno otvorenih veza." -#: libraries/messages.inc.php:996 +#: libraries/messages.inc.php:992 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -5914,74 +5914,74 @@ msgstr "" "implementaciju niti, ovo obično ne donosi primetna poboljšanja u " "performansama.)" -#: libraries/messages.inc.php:997 +#: libraries/messages.inc.php:993 msgid "The number of threads that are not sleeping." msgstr "Broj niti koje nisu uspavane." -#: libraries/messages.inc.php:999 tbl_printview.php:75 +#: libraries/messages.inc.php:995 tbl_printview.php:75 msgid "Show tables" msgstr "Prikaži tabele" -#: libraries/messages.inc.php:1000 libraries/sql_query_form.lib.php:396 +#: libraries/messages.inc.php:996 libraries/sql_query_form.lib.php:396 msgid " Show this query here again " msgstr "Prikaži ponovo ovaj upit" -#: libraries/messages.inc.php:1001 libraries/mysql_charsets.lib.php:217 +#: libraries/messages.inc.php:997 libraries/mysql_charsets.lib.php:217 #: libraries/mysql_charsets.lib.php:342 msgid "Simplified Chinese" msgstr "Pojednostavljeni kineski" -#: libraries/messages.inc.php:1002 tbl_operations.php:258 +#: libraries/messages.inc.php:998 tbl_operations.php:258 msgid "(singly)" msgstr "(po jednom polju)" -#: libraries/messages.inc.php:1005 libraries/replication_gui.lib.php:52 +#: libraries/messages.inc.php:1001 libraries/replication_gui.lib.php:52 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" msgstr "" -#: libraries/messages.inc.php:1006 libraries/mysql_charsets.lib.php:283 +#: libraries/messages.inc.php:1002 libraries/mysql_charsets.lib.php:283 msgid "Slovak" msgstr "Slovački" -#: libraries/messages.inc.php:1007 libraries/mysql_charsets.lib.php:286 +#: libraries/messages.inc.php:1003 libraries/mysql_charsets.lib.php:286 msgid "Slovenian" msgstr "Slovenači" -#: libraries/messages.inc.php:1008 pmd_general.php:95 +#: libraries/messages.inc.php:1004 pmd_general.php:95 msgid "Small/Big All" msgstr "Sve malo/veliko" -#: libraries/messages.inc.php:1009 pmd_general.php:91 +#: libraries/messages.inc.php:1005 pmd_general.php:91 msgid "Snap to grid" msgstr "Drži se mreže" -#: libraries/messages.inc.php:1011 server_synchronize.php:1167 +#: libraries/messages.inc.php:1007 server_synchronize.php:1167 msgid "Socket" msgstr "" -#: libraries/messages.inc.php:1013 server_status.php:259 +#: libraries/messages.inc.php:1009 server_status.php:259 msgid "Sorting" msgstr "Sortiranje" -#: libraries/messages.inc.php:1015 tbl_printview.php:310 tbl_structure.php:657 +#: libraries/messages.inc.php:1011 tbl_printview.php:310 tbl_structure.php:657 msgid "Space usage" msgstr "Zauzeće" -#: libraries/messages.inc.php:1016 libraries/mysql_charsets.lib.php:289 +#: libraries/messages.inc.php:1012 libraries/mysql_charsets.lib.php:289 msgid "Spanish" msgstr "Španski" -#: libraries/messages.inc.php:1019 +#: libraries/messages.inc.php:1015 msgid "Export type" msgstr "Tip izvoza" -#: libraries/messages.inc.php:1020 +#: libraries/messages.inc.php:1016 msgid "Export time in UTC" msgstr "" -#: libraries/messages.inc.php:1021 libraries/sqlparser.lib.php:173 +#: libraries/messages.inc.php:1017 libraries/sqlparser.lib.php:173 msgid "" "There is a chance that you may have found a bug in the SQL parser. Please " "examine your query closely, and check that the quotes are correct and not " @@ -6003,7 +6003,7 @@ msgstr "" "jedini upit koji stvara probleme i pošaljite nam izveštaj o grešci sa delom " "koda u donjoj REZ sekciji:" -#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:137 +#: libraries/messages.inc.php:1018 libraries/sqlparser.lib.php:137 msgid "" "There seems to be an error in your SQL query. The MySQL server error output " "below, if there is any, may also help you in diagnosing the problem" @@ -6011,33 +6011,33 @@ msgstr "" "Izgleda da postoji greška u vašem SQL upitu. Ovde je poruka o greški MySQL " "servera, koja vam može pomoći u otkrivanju problema" -#: libraries/messages.inc.php:1026 libraries/sqlparser.lib.php:495 +#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:495 msgid "Invalid Identifer" msgstr "Neispravan iG¤entifikator" -#: libraries/messages.inc.php:1027 libraries/sqlparser.lib.php:344 +#: libraries/messages.inc.php:1023 libraries/sqlparser.lib.php:344 msgid "Unclosed quote" msgstr "Navodnik nije zatvoren" -#: libraries/messages.inc.php:1028 libraries/sqlparser.lib.php:612 +#: libraries/messages.inc.php:1024 libraries/sqlparser.lib.php:612 msgid "Unknown Punctuation String" msgstr "Nepoznat string interpunkcije" -#: libraries/messages.inc.php:1030 server_replication.php:327 +#: libraries/messages.inc.php:1026 server_replication.php:327 #: server_replication.php:328 #, fuzzy msgid "Start" msgstr "Sub" -#: libraries/messages.inc.php:1033 tbl_printview.php:369 tbl_structure.php:729 +#: libraries/messages.inc.php:1029 tbl_printview.php:369 tbl_structure.php:729 msgid "Statements" msgstr "Ime" -#: libraries/messages.inc.php:1034 tbl_printview.php:380 tbl_structure.php:741 +#: libraries/messages.inc.php:1030 tbl_printview.php:380 tbl_structure.php:741 msgid "static" msgstr "" -#: libraries/messages.inc.php:1035 server_status.php:388 +#: libraries/messages.inc.php:1031 server_status.php:388 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -6045,203 +6045,203 @@ msgstr "" "Na zaposlenom serveru brojači bajtova mogu da se preliju (overrun), tako da " "te statistike, onako kako ih prijavljuje MySQL server, mogu biti netačne." -#: libraries/messages.inc.php:1038 server_replication.php:327 +#: libraries/messages.inc.php:1034 server_replication.php:327 #: server_replication.php:328 msgid "Stop" msgstr "" -#: libraries/messages.inc.php:1039 server_engines.php:49 +#: libraries/messages.inc.php:1035 server_engines.php:49 msgid "Storage Engines" msgstr "Pogoni skladištenja" -#: libraries/messages.inc.php:1040 libraries/tbl_properties.inc.php:726 +#: libraries/messages.inc.php:1036 libraries/tbl_properties.inc.php:726 #: server_engines.php:58 tbl_operations.php:353 msgid "Storage Engine" msgstr "Pogon skladištenja" -#: libraries/messages.inc.php:1042 +#: libraries/messages.inc.php:1038 msgid "CSV for MS Excel" msgstr "CSV za MS Excel" -#: libraries/messages.inc.php:1044 tbl_structure.php:516 tbl_structure.php:518 +#: libraries/messages.inc.php:1040 tbl_structure.php:516 tbl_structure.php:518 msgid "Propose table structure" msgstr "Predloži strukturu tabele" -#: libraries/messages.inc.php:1045 server_synchronize.php:424 +#: libraries/messages.inc.php:1041 server_synchronize.php:424 #: server_synchronize.php:867 #, fuzzy msgid "Structure Difference" msgstr "Struktura za pogled (view)" -#: libraries/messages.inc.php:1049 server_synchronize.php:265 +#: libraries/messages.inc.php:1045 server_synchronize.php:265 msgid "Structure Synchronization" msgstr "" -#: libraries/messages.inc.php:1050 libraries/sql_query_form.lib.php:462 +#: libraries/messages.inc.php:1046 libraries/sql_query_form.lib.php:462 msgid "Submit" msgstr "Pošalji" -#: libraries/messages.inc.php:1052 main.php:358 +#: libraries/messages.inc.php:1048 main.php:358 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " "issues." msgstr "" -#: libraries/messages.inc.php:1054 libraries/mysql_charsets.lib.php:295 +#: libraries/messages.inc.php:1050 libraries/mysql_charsets.lib.php:295 #: libraries/mysql_charsets.lib.php:392 msgid "Swedish" msgstr "Švedski" -#: libraries/messages.inc.php:1060 tbl_operations.php:556 +#: libraries/messages.inc.php:1056 tbl_operations.php:556 msgid "Switch to copied table" msgstr "Pređi na kopiranu tabelu" -#: libraries/messages.inc.php:1061 server_synchronize.php:1213 +#: libraries/messages.inc.php:1057 server_synchronize.php:1213 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." msgstr "" -#: libraries/messages.inc.php:1062 server_synchronize.php:451 +#: libraries/messages.inc.php:1058 server_synchronize.php:451 #: server_synchronize.php:896 msgid "Synchronize Databases" msgstr "" -#: libraries/messages.inc.php:1063 libraries/server_links.inc.php:92 +#: libraries/messages.inc.php:1059 libraries/server_links.inc.php:92 #: server_synchronize.php:1092 server_synchronize.php:1100 msgid "Synchronize" msgstr "" -#: libraries/messages.inc.php:1065 server_synchronize.php:430 +#: libraries/messages.inc.php:1061 server_synchronize.php:430 #: server_synchronize.php:873 msgid "Add column(s)" msgstr "" -#: libraries/messages.inc.php:1066 tbl_create.php:62 +#: libraries/messages.inc.php:1062 tbl_create.php:62 #, php-format msgid "Table %s already exists!" msgstr "Tabela %s već postoji!" -#: libraries/messages.inc.php:1067 server_synchronize.php:432 +#: libraries/messages.inc.php:1063 server_synchronize.php:432 #: server_synchronize.php:875 msgid "Alter column(s)" msgstr "" -#: libraries/messages.inc.php:1068 tbl_addfield.php:189 tbl_alter.php:103 +#: libraries/messages.inc.php:1064 tbl_addfield.php:189 tbl_alter.php:103 #: tbl_indexes.php:98 #, fuzzy, php-format msgid "Table %1$s has been altered successfully" msgstr "Izabrani korisnici su uspešno obrisani." -#: libraries/messages.inc.php:1069 server_synchronize.php:434 +#: libraries/messages.inc.php:1065 server_synchronize.php:434 #: server_synchronize.php:877 msgid "Apply index(s)" msgstr "" -#: libraries/messages.inc.php:1071 server_synchronize.php:446 +#: libraries/messages.inc.php:1067 server_synchronize.php:446 #: server_synchronize.php:890 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: libraries/messages.inc.php:1072 tbl_move_copy.php:82 +#: libraries/messages.inc.php:1068 tbl_move_copy.php:82 msgid "The table name is empty!" msgstr "Ima tabele je prazno!" -#: libraries/messages.inc.php:1073 tbl_create.php:249 +#: libraries/messages.inc.php:1069 tbl_create.php:249 #, fuzzy, php-format msgid "Table %1$s has been created." msgstr "Tabela %s je odbačena" -#: libraries/messages.inc.php:1076 tbl_operations.php:628 +#: libraries/messages.inc.php:1072 tbl_operations.php:628 #, php-format msgid "Table %s has been flushed" msgstr "Tabela %s je osvežena" -#: libraries/messages.inc.php:1077 server_synchronize.php:436 +#: libraries/messages.inc.php:1073 server_synchronize.php:436 #: server_synchronize.php:879 msgid "Insert row(s)" msgstr "" -#: libraries/messages.inc.php:1078 libraries/tbl_links.inc.php:107 +#: libraries/messages.inc.php:1074 libraries/tbl_links.inc.php:107 #: libraries/tbl_links.inc.php:140 libraries/tbl_links.inc.php:141 msgid "Table seems to be empty!" msgstr "Tabela je izgleda prazna!" -#: libraries/messages.inc.php:1079 tbl_operations.php:568 +#: libraries/messages.inc.php:1075 tbl_operations.php:568 msgid "Table maintenance" msgstr "Radnje na tabeli" -#: libraries/messages.inc.php:1080 libraries/tbl_properties.inc.php:618 +#: libraries/messages.inc.php:1076 libraries/tbl_properties.inc.php:618 #: server_synchronize.php:428 server_synchronize.php:871 msgid "Table name" msgstr "Naziv tabele" -#: libraries/messages.inc.php:1081 pdf_schema.php:1116 +#: libraries/messages.inc.php:1077 pdf_schema.php:1116 msgid "Table of contents" msgstr "Sadržaj" -#: libraries/messages.inc.php:1082 tbl_operations.php:334 +#: libraries/messages.inc.php:1078 tbl_operations.php:334 msgid "Table options" msgstr "Opcije tabele" -#: libraries/messages.inc.php:1083 server_synchronize.php:431 +#: libraries/messages.inc.php:1079 server_synchronize.php:431 #: server_synchronize.php:874 msgid "Remove column(s)" msgstr "" -#: libraries/messages.inc.php:1084 server_synchronize.php:433 +#: libraries/messages.inc.php:1080 server_synchronize.php:433 #: server_synchronize.php:876 msgid "Remove index(s)" msgstr "" -#: libraries/messages.inc.php:1088 server_synchronize.php:435 +#: libraries/messages.inc.php:1084 server_synchronize.php:435 #: server_synchronize.php:878 msgid "Update row(s)" msgstr "" -#: libraries/messages.inc.php:1090 server_synchronize.php:942 +#: libraries/messages.inc.php:1086 server_synchronize.php:942 msgid "Target database has been synchronized with source database" msgstr "" -#: libraries/messages.inc.php:1091 server_privileges.php:392 +#: libraries/messages.inc.php:1087 server_privileges.php:392 #: server_privileges.php:527 server_privileges.php:1679 #: server_privileges.php:1685 msgid "Table-specific privileges" msgstr "Privilegije vezane za tabele" -#: libraries/messages.inc.php:1092 server_status.php:254 +#: libraries/messages.inc.php:1088 server_status.php:254 msgid "Temporary data" msgstr "Privremeni podaci" -#: libraries/messages.inc.php:1093 tbl_change.php:728 +#: libraries/messages.inc.php:1089 tbl_change.php:728 msgid " Because of its length,
this field might not be editable " msgstr "Zbog njehove veličine, polje
možda nećete moći da izmenite" -#: libraries/messages.inc.php:1094 +#: libraries/messages.inc.php:1090 msgid "Texy! text" msgstr "" -#: libraries/messages.inc.php:1095 libraries/mysql_charsets.lib.php:298 +#: libraries/messages.inc.php:1091 libraries/mysql_charsets.lib.php:298 #: libraries/mysql_charsets.lib.php:395 msgid "Thai" msgstr "Tajski" -#: libraries/messages.inc.php:1102 libraries/replication_gui.lib.php:308 +#: libraries/messages.inc.php:1098 libraries/replication_gui.lib.php:308 #: server_privileges.php:734 msgid "This Host" msgstr "Ovaj server" -#: libraries/messages.inc.php:1103 server_status.php:252 +#: libraries/messages.inc.php:1099 server_status.php:252 msgid "Threads" msgstr "Niti" -#: libraries/messages.inc.php:1104 server_processlist.php:22 +#: libraries/messages.inc.php:1100 server_processlist.php:22 #, php-format msgid "Thread %s was successfully killed." msgstr "Proces %s je uspešno prekinut." -#: libraries/messages.inc.php:1106 +#: libraries/messages.inc.php:1102 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -6250,185 +6250,185 @@ msgstr "" "znači da phpMyAdmin neće biti u mogućnosti da završi ovaj uvoz osim ako ne " "povećate vremenska ograničenja u PHP-u" -#: libraries/messages.inc.php:1109 pmd_pdf.php:94 +#: libraries/messages.inc.php:1105 pmd_pdf.php:94 msgid "to/from page" msgstr "od/do stranice" -#: libraries/messages.inc.php:1110 pdf_pages.php:343 +#: libraries/messages.inc.php:1106 pdf_pages.php:343 msgid "Toggle scratchboard" msgstr "Uključi/isključi radnu tablu" -#: libraries/messages.inc.php:1111 pmd_general.php:99 +#: libraries/messages.inc.php:1107 pmd_general.php:99 msgid "Toggle small/big" msgstr "Promeni malo/veliko" -#: libraries/messages.inc.php:1112 pmd_help.php:27 +#: libraries/messages.inc.php:1108 pmd_help.php:27 msgid "To select relation, click :" msgstr "Da odaberete relaciju, kliknite :" -#: libraries/messages.inc.php:1115 libraries/tbl_links.inc.php:149 +#: libraries/messages.inc.php:1111 libraries/tbl_links.inc.php:149 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" -#: libraries/messages.inc.php:1116 tbl_tracking.php:655 +#: libraries/messages.inc.php:1112 tbl_tracking.php:655 msgid "Activate now" msgstr "" -#: libraries/messages.inc.php:1117 tbl_tracking.php:653 +#: libraries/messages.inc.php:1113 tbl_tracking.php:653 #, php-format msgid "Activate tracking for %s.%s" msgstr "" -#: libraries/messages.inc.php:1118 tbl_tracking.php:221 +#: libraries/messages.inc.php:1114 tbl_tracking.php:221 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/messages.inc.php:1119 tbl_tracking.php:688 +#: libraries/messages.inc.php:1115 tbl_tracking.php:688 #, fuzzy msgid "Create version" msgstr "Napravi relaciju" -#: libraries/messages.inc.php:1120 tbl_tracking.php:668 +#: libraries/messages.inc.php:1116 tbl_tracking.php:668 #, php-format msgid "Create version %s of %s.%s" msgstr "" -#: libraries/messages.inc.php:1122 tbl_tracking.php:412 +#: libraries/messages.inc.php:1118 tbl_tracking.php:412 msgid "Data definition statement" msgstr "" -#: libraries/messages.inc.php:1123 tbl_tracking.php:463 +#: libraries/messages.inc.php:1119 tbl_tracking.php:463 msgid "Data manipulation statement" msgstr "" -#: libraries/messages.inc.php:1124 tbl_tracking.php:410 tbl_tracking.php:461 +#: libraries/messages.inc.php:1120 tbl_tracking.php:410 tbl_tracking.php:461 #, fuzzy msgid "Date" msgstr "Podaci" -#: libraries/messages.inc.php:1125 tbl_tracking.php:642 +#: libraries/messages.inc.php:1121 tbl_tracking.php:642 msgid "Deactivate now" msgstr "" -#: libraries/messages.inc.php:1126 tbl_tracking.php:640 +#: libraries/messages.inc.php:1122 tbl_tracking.php:640 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "" -#: libraries/messages.inc.php:1127 tbl_tracking.php:521 +#: libraries/messages.inc.php:1123 tbl_tracking.php:521 #, fuzzy, php-format msgid "Export as %s" msgstr "Tip izvoza" -#: libraries/messages.inc.php:1130 tbl_tracking.php:251 tbl_tracking.php:379 +#: libraries/messages.inc.php:1126 tbl_tracking.php:251 tbl_tracking.php:379 msgid "Close" msgstr "" -#: libraries/messages.inc.php:1131 tbl_tracking.php:114 +#: libraries/messages.inc.php:1127 tbl_tracking.php:114 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/messages.inc.php:1133 tbl_tracking.php:397 tbl_tracking.php:504 +#: libraries/messages.inc.php:1129 tbl_tracking.php:397 tbl_tracking.php:504 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "" -#: libraries/messages.inc.php:1134 tbl_tracking.php:561 +#: libraries/messages.inc.php:1130 tbl_tracking.php:561 msgid "Show versions" msgstr "" -#: libraries/messages.inc.php:1135 tbl_tracking.php:507 +#: libraries/messages.inc.php:1131 tbl_tracking.php:507 msgid "SQL dump (file download)" msgstr "" -#: libraries/messages.inc.php:1136 tbl_tracking.php:508 +#: libraries/messages.inc.php:1132 tbl_tracking.php:508 msgid "SQL dump" msgstr "" -#: libraries/messages.inc.php:1137 tbl_tracking.php:213 +#: libraries/messages.inc.php:1133 tbl_tracking.php:213 msgid "SQL statements executed." msgstr "" -#: libraries/messages.inc.php:1138 +#: libraries/messages.inc.php:1134 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/messages.inc.php:1139 tbl_tracking.php:509 +#: libraries/messages.inc.php:1135 tbl_tracking.php:509 msgid "SQL execution" msgstr "" -#: libraries/messages.inc.php:1140 tbl_tracking.php:230 +#: libraries/messages.inc.php:1136 tbl_tracking.php:230 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/messages.inc.php:1141 tbl_tracking.php:381 +#: libraries/messages.inc.php:1137 tbl_tracking.php:381 msgid "Tracking statements" msgstr "" -#: libraries/messages.inc.php:1148 tbl_tracking.php:593 +#: libraries/messages.inc.php:1144 tbl_tracking.php:593 #, fuzzy msgid "Version" msgstr "Persijski" -#: libraries/messages.inc.php:1149 tbl_tracking.php:672 +#: libraries/messages.inc.php:1145 tbl_tracking.php:672 msgid "Track these data definition statements:" msgstr "" -#: libraries/messages.inc.php:1150 tbl_tracking.php:680 +#: libraries/messages.inc.php:1146 tbl_tracking.php:680 msgid "Track these data manipulation statements:" msgstr "" -#: libraries/messages.inc.php:1155 tbl_tracking.php:411 tbl_tracking.php:462 +#: libraries/messages.inc.php:1151 tbl_tracking.php:411 tbl_tracking.php:462 #, fuzzy msgid "Username" msgstr "Korisničko ime:" -#: libraries/messages.inc.php:1156 tbl_tracking.php:203 +#: libraries/messages.inc.php:1152 tbl_tracking.php:203 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "" -#: libraries/messages.inc.php:1157 tbl_tracking.php:187 +#: libraries/messages.inc.php:1153 tbl_tracking.php:187 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "" -#: libraries/messages.inc.php:1158 tbl_tracking.php:195 +#: libraries/messages.inc.php:1154 tbl_tracking.php:195 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "" -#: libraries/messages.inc.php:1159 tbl_tracking.php:262 +#: libraries/messages.inc.php:1155 tbl_tracking.php:262 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/messages.inc.php:1161 tbl_tracking.php:220 +#: libraries/messages.inc.php:1157 tbl_tracking.php:220 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/messages.inc.php:1162 libraries/mysql_charsets.lib.php:219 +#: libraries/messages.inc.php:1158 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:362 msgid "Traditional Chinese" msgstr "Tradicionalni kineski" -#: libraries/messages.inc.php:1163 libraries/mysql_charsets.lib.php:292 +#: libraries/messages.inc.php:1159 libraries/mysql_charsets.lib.php:292 msgid "Traditional Spanish" msgstr "Tradicionalni španski" -#: libraries/messages.inc.php:1164 server_status.php:388 +#: libraries/messages.inc.php:1160 server_status.php:388 msgid "Traffic" msgstr "Saobraćaj" -#: libraries/messages.inc.php:1165 server_status.php:261 +#: libraries/messages.inc.php:1161 server_status.php:261 msgid "Transaction coordinator" msgstr "Koordinator transakcija" -#: libraries/messages.inc.php:1166 +#: libraries/messages.inc.php:1162 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 " @@ -6440,7 +6440,7 @@ msgstr "" "ime datoteke. Ako date drugu opciju, prva mora biti postavljena na prazan " "string" -#: libraries/messages.inc.php:1167 +#: libraries/messages.inc.php:1163 msgid "" "Displays hexadecimal representation of data. Optional first parameter " "specifies how often space will be added (defaults to 2 nibbles)." @@ -6448,7 +6448,7 @@ msgstr "" "Prikazuje heksadecimalni prikaz podataka. Opcioni prvi parametar određuje " "koliko često se dodaje prazno mesto (podrazumevano svaka 2 nibla)." -#: libraries/messages.inc.php:1168 +#: libraries/messages.inc.php:1164 msgid "" "Displays a clickable thumbnail. The options are the maximum width and height " "in pixels. The original aspect ratio is preserved." @@ -6456,15 +6456,15 @@ msgstr "" "Prikazuje umanjenu sliku na koju je moguće kliknuti; opcije: širina, visina " "u pikselima (čuva originalni odnos)" -#: libraries/messages.inc.php:1169 +#: libraries/messages.inc.php:1165 msgid "Displays a link to download this image." msgstr "Prikazuje link ka ovoj snimci (npr. direktno preuzimanje iz BLOB-a)." -#: libraries/messages.inc.php:1170 +#: libraries/messages.inc.php:1166 msgid "See image/jpeg: inline" msgstr "Prikaži JPEG slike na strani" -#: libraries/messages.inc.php:1171 +#: libraries/messages.inc.php:1167 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 " @@ -6485,7 +6485,7 @@ msgstr "" "dokumentaciju za funkciju strftime() dok je za \"utc\" to urađeno " "korišćenjem fukcije gmdate()." -#: libraries/messages.inc.php:1172 +#: libraries/messages.inc.php:1168 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 " @@ -6508,13 +6508,13 @@ msgstr "" "1). Ako je četvrti parametar postavljen na 1, NOWRAP će biti dodato ćeliji " "sa sadržajem tako da će izlaz biti prikazan bez izmena. (podrazumevano 1)" -#: libraries/messages.inc.php:1173 +#: libraries/messages.inc.php:1169 msgid "" "Displays the contents of the field as-is, without running it through " "htmlspecialchars(). That is, the field is assumed to contain valid HTML." msgstr "Čuva originalno formatiranje polja. Escaping se ne vrši." -#: libraries/messages.inc.php:1174 +#: libraries/messages.inc.php:1170 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 " @@ -6524,7 +6524,7 @@ msgstr "" "kao \"http://domain.com/\", druga opcija je širina u pikselima, treća je " "visina." -#: libraries/messages.inc.php:1175 +#: libraries/messages.inc.php:1171 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 " @@ -6533,11 +6533,11 @@ msgstr "" "Prikazuje link, polje sadrži naziv datoteke; prva opcija je prefiks kao " "\"http://domain.com/\", druga opcija je naslov za link." -#: libraries/messages.inc.php:1176 +#: libraries/messages.inc.php:1172 msgid "Formats text as SQL query with syntax highlighting." msgstr "Formatira tekst kao SQL upit sa obeležavanjem sintakse." -#: libraries/messages.inc.php:1177 +#: libraries/messages.inc.php:1173 msgid "" "Displays a part of a string. The first option is the number of characters to " "skip from the beginning of the string (Default 0). The second option is the " @@ -6550,70 +6550,70 @@ msgstr "" "(podrazumevano: do kraja stringa). Treća opcija je string koji se dodaje " "kada dođe do odsecanja (podrazumevano: ...) ." -#: libraries/messages.inc.php:1179 server_binlog.php:183 server_binlog.php:186 +#: libraries/messages.inc.php:1175 server_binlog.php:183 server_binlog.php:186 #: server_processlist.php:49 server_processlist.php:51 msgid "Truncate Shown Queries" msgstr "Prikaži skraćene upite" -#: libraries/messages.inc.php:1180 libraries/mysql_charsets.lib.php:301 +#: libraries/messages.inc.php:1176 libraries/mysql_charsets.lib.php:301 #: libraries/mysql_charsets.lib.php:389 msgid "Turkish" msgstr "Turski" -#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:304 +#: libraries/messages.inc.php:1179 libraries/mysql_charsets.lib.php:304 #: libraries/mysql_charsets.lib.php:386 msgid "Ukrainian" msgstr "Ukrajinski" -#: libraries/messages.inc.php:1185 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:1181 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 msgid "Unicode" msgstr "Unikod" -#: libraries/messages.inc.php:1187 libraries/mysql_charsets.lib.php:398 +#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:398 #: libraries/mysql_charsets.lib.php:405 msgid "unknown" msgstr "nepoznat" -#: libraries/messages.inc.php:1190 server_privileges.php:1152 +#: libraries/messages.inc.php:1186 server_privileges.php:1152 #, php-format msgid "You have updated the privileges for %s." msgstr "Ažurirali ste privilegije za %s." -#: libraries/messages.inc.php:1191 user_password.php:112 +#: libraries/messages.inc.php:1187 user_password.php:112 msgid "The profile has been updated." msgstr "Profil je promenjen." -#: libraries/messages.inc.php:1193 libraries/relation.lib.php:138 +#: libraries/messages.inc.php:1189 libraries/relation.lib.php:138 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "Molimo pogledajte u dokumentaciji kako se ažurira tabela Column_comments" -#: libraries/messages.inc.php:1194 +#: libraries/messages.inc.php:1190 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Trebalo bi da unapredite vaš %s server na verziju %s ili noviju." -#: libraries/messages.inc.php:1204 tbl_printview.php:314 tbl_structure.php:661 +#: libraries/messages.inc.php:1200 tbl_printview.php:314 tbl_structure.php:661 msgid "Usage" msgstr "Zauzeće" -#: libraries/messages.inc.php:1205 +#: libraries/messages.inc.php:1201 msgid "Enclose table and field names with backquotes" msgstr "Koristi ' za ograničavanje imena polja" -#: libraries/messages.inc.php:1206 libraries/replication_gui.lib.php:314 +#: libraries/messages.inc.php:1202 libraries/replication_gui.lib.php:314 #: server_privileges.php:740 msgid "Use Host Table" msgstr "Koristi tabelu domaćina" -#: libraries/messages.inc.php:1207 server_privileges.php:848 +#: libraries/messages.inc.php:1203 server_privileges.php:848 #, php-format msgid "The user %s already exists!" msgstr "Korisnik %s već postoji!" -#: libraries/messages.inc.php:1209 libraries/replication_gui.lib.php:55 +#: libraries/messages.inc.php:1205 libraries/replication_gui.lib.php:55 #: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245 #: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255 #: server_privileges.php:672 server_privileges.php:675 @@ -6621,37 +6621,37 @@ msgstr "Korisnik %s već postoji!" msgid "User name" msgstr "Ime korisnika" -#: libraries/messages.inc.php:1210 server_privileges.php:1645 +#: libraries/messages.inc.php:1206 server_privileges.php:1645 msgid "The selected user was not found in the privilege table." msgstr "Izabrani korisnik nije pronađen u tabeli privilegija." -#: libraries/messages.inc.php:1211 server_privileges.php:1365 +#: libraries/messages.inc.php:1207 server_privileges.php:1365 msgid "User overview" msgstr "Pregled korisnika" -#: libraries/messages.inc.php:1212 server_privileges.php:1261 +#: libraries/messages.inc.php:1208 server_privileges.php:1261 msgid "The selected users have been deleted successfully." msgstr "Izabrani korisnici su uspešno obrisani." -#: libraries/messages.inc.php:1213 server_privileges.php:2026 +#: libraries/messages.inc.php:1209 server_privileges.php:2026 #, php-format msgid "Users having access to "%s"" msgstr "Korisnici koji imaju pristup "%s"" -#: libraries/messages.inc.php:1214 main.php:189 server_privileges.php:1350 +#: libraries/messages.inc.php:1210 main.php:189 server_privileges.php:1350 #: server_privileges.php:1497 server_privileges.php:1611 #: server_privileges.php:2029 server_processlist.php:54 msgid "User" msgstr "Korisnik" -#: libraries/messages.inc.php:1215 tbl_change.php:1171 +#: libraries/messages.inc.php:1211 tbl_change.php:1171 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Koristite TAB taster za pomeranje od polja do polja, ili CTRL+strelice za " "slobodno pomeranje" -#: libraries/messages.inc.php:1217 libraries/replication_gui.lib.php:251 +#: libraries/messages.inc.php:1213 libraries/replication_gui.lib.php:251 #: libraries/replication_gui.lib.php:319 libraries/replication_gui.lib.php:342 #: server_privileges.php:678 server_privileges.php:745 #: server_privileges.php:769 server_privileges.php:1889 @@ -6659,7 +6659,7 @@ msgstr "" msgid "Use text field" msgstr "Koristi tekst polje" -#: libraries/messages.inc.php:1221 libraries/sqlvalidator.lib.php:68 +#: libraries/messages.inc.php:1217 libraries/sqlvalidator.lib.php:68 #, php-format msgid "" "The SQL validator could not be initialized. Please check if you have " @@ -6668,88 +6668,88 @@ msgstr "" "SQL validator nije mogao da bude pokrenut. Proverite da li su instalirane " "neophodne PHP ekstenzije opisane u %sdokumentaciji%s." -#: libraries/messages.inc.php:1222 libraries/replication_gui.lib.php:111 +#: libraries/messages.inc.php:1218 libraries/replication_gui.lib.php:111 #: server_status.php:627 tbl_change.php:324 tbl_printview.php:370 #: tbl_select.php:139 tbl_structure.php:730 msgid "Value" msgstr "Vrednost" -#: libraries/messages.inc.php:1223 libraries/replication_gui.lib.php:110 +#: libraries/messages.inc.php:1219 libraries/replication_gui.lib.php:110 #: libraries/sql_query_form.lib.php:445 server_status.php:626 #: server_variables.php:52 msgid "Variable" msgstr "Promenljiva" -#: libraries/messages.inc.php:1225 server_export.php:21 +#: libraries/messages.inc.php:1221 server_export.php:21 msgid "View dump (schema) of databases" msgstr "Prikaži sadržaj (shemu) baze" -#: libraries/messages.inc.php:1227 tbl_export.php:23 +#: libraries/messages.inc.php:1223 tbl_export.php:23 msgid "View dump (schema) of table" msgstr "Prikaži sadržaj (shemu) tabele" -#: libraries/messages.inc.php:1231 view_create.php:142 +#: libraries/messages.inc.php:1227 view_create.php:142 msgid "VIEW name" msgstr "naziv za VIEW" -#: libraries/messages.inc.php:1237 main.php:205 +#: libraries/messages.inc.php:1233 main.php:205 msgid "Web server" msgstr "" -#: libraries/messages.inc.php:1239 libraries/mysql_charsets.lib.php:277 +#: libraries/messages.inc.php:1235 libraries/mysql_charsets.lib.php:277 #: libraries/mysql_charsets.lib.php:325 msgid "West European" msgstr "Zapadnoevropski" -#: libraries/messages.inc.php:1240 main.php:230 +#: libraries/messages.inc.php:1236 main.php:230 msgid "Wiki" msgstr "" -#: libraries/messages.inc.php:1241 server_privileges.php:2138 +#: libraries/messages.inc.php:1237 server_privileges.php:2138 msgid "wildcard" msgstr "džoker" -#: libraries/messages.inc.php:1248 +#: libraries/messages.inc.php:1244 #, fuzzy msgid "Export contents" msgstr "Tip izvoza" -#: libraries/messages.inc.php:1249 +#: libraries/messages.inc.php:1245 msgid "Export functions" msgstr "" -#: libraries/messages.inc.php:1250 +#: libraries/messages.inc.php:1246 msgid "Export procedures" msgstr "" -#: libraries/messages.inc.php:1251 +#: libraries/messages.inc.php:1247 msgid "Export Structure Schemas (recommended)" msgstr "" -#: libraries/messages.inc.php:1252 +#: libraries/messages.inc.php:1248 #, fuzzy msgid "Export tables" msgstr "Tip izvoza" -#: libraries/messages.inc.php:1253 +#: libraries/messages.inc.php:1249 #, fuzzy msgid "Export triggers" msgstr "Tip izvoza" -#: libraries/messages.inc.php:1254 +#: libraries/messages.inc.php:1250 #, fuzzy msgid "Export views" msgstr "Tip izvoza" -#: libraries/messages.inc.php:1255 +#: libraries/messages.inc.php:1251 msgid "XML" msgstr "XML" -#: libraries/messages.inc.php:1259 server_privileges.php:592 +#: libraries/messages.inc.php:1255 server_privileges.php:592 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Napomena: Postavljanje ovih opcija na 0 (nulu) uklanja ograničenja." -#: libraries/messages.inc.php:1260 +#: libraries/messages.inc.php:1256 msgid "\"zipped\"" msgstr "\"zipovano\"" diff --git a/po/sv.po b/po/sv.po index c3540e768..4c2f02f4a 100644 --- 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-05-13 11:25+0200\n" +"POT-Creation-Date: 2010-05-13 11:30+0200\n" "PO-Revision-Date: 2010-03-12 09:19+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: swedish \n" @@ -13,19 +13,19 @@ msgstr "" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:38 browse_foreigners.php:59 -#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:870 +#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:866 #: server_privileges.php:1475 msgid "Show all" msgstr "Visa alla" #: browse_foreigners.php:82 db_operations.php:648 -#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:394 -#: libraries/export/pdf.php:147 libraries/messages.inc.php:597 +#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394 +#: libraries/export/pdf.php:147 libraries/messages.inc.php:593 #: pdf_schema.php:283 pdf_schema.php:1123 pdf_schema.php:1139 msgid "Page number:" msgstr "Sida:" -#: browse_foreigners.php:132 libraries/messages.inc.php:1242 +#: browse_foreigners.php:132 libraries/messages.inc.php:1238 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -38,7 +38,7 @@ 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/db_links.inc.php:75 -#: libraries/messages.inc.php:841 libraries/tbl_links.inc.php:63 +#: libraries/messages.inc.php:837 libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Sök" @@ -47,12 +47,12 @@ msgstr "Sök" #: db_search.php:362 db_structure.php:567 js/messages.php:48 #: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2267 +#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 #: 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 #: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614 -#: libraries/messages.inc.php:361 libraries/replication_gui.lib.php:73 +#: libraries/messages.inc.php:357 libraries/replication_gui.lib.php:73 #: libraries/replication_gui.lib.php:365 libraries/select_server.lib.php:104 #: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477 #: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782 @@ -72,33 +72,33 @@ msgid "Go" msgstr "Kör" #: browse_foreigners.php:168 browse_foreigners.php:172 -#: libraries/Index.class.php:442 libraries/messages.inc.php:459 +#: libraries/Index.class.php:442 libraries/messages.inc.php:455 #: tbl_tracking.php:320 msgid "Keyname" msgstr "Nyckel" #: browse_foreigners.php:169 browse_foreigners.php:171 -#: libraries/messages.inc.php:252 server_collations.php:55 +#: libraries/messages.inc.php:248 server_collations.php:55 #: server_collations.php:67 server_engines.php:59 server_status.php:628 msgid "Description" msgstr "Beskrivning" #: browse_foreigners.php:247 browse_foreigners.php:256 #: browse_foreigners.php:268 browse_foreigners.php:276 -#: libraries/messages.inc.php:1218 +#: libraries/messages.inc.php:1214 msgid "Use this value" msgstr "Använd detta värde" -#: db_create.php:46 libraries/messages.inc.php:215 +#: db_create.php:46 libraries/messages.inc.php:211 #, php-format msgid "Database %1$s has been created." msgstr "Databas %1$s har skapats." -#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:232 +#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:228 msgid "Database comment: " msgstr "Databaskommentar: " -#: db_datadict.php:165 libraries/messages.inc.php:1070 +#: db_datadict.php:165 libraries/messages.inc.php:1066 #: libraries/tbl_properties.inc.php:724 pdf_schema.php:1236 #: tbl_operations.php:345 tbl_printview.php:130 msgid "Table comments" @@ -107,7 +107,7 @@ msgstr "Tabellkommentarer" #: db_datadict.php:174 db_qbe.php:174 libraries/Index.class.php:446 #: libraries/export/htmlword.php:244 libraries/export/latex.php:360 #: libraries/export/odt.php:294 libraries/export/texytext.php:233 -#: libraries/messages.inc.php:317 libraries/tbl_properties.inc.php:99 +#: libraries/messages.inc.php:313 libraries/tbl_properties.inc.php:99 #: libraries/tbl_properties.inc.php:275 pdf_schema.php:1262 #: pdf_schema.php:1283 tbl_change.php:308 tbl_indexes.php:189 #: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135 @@ -119,7 +119,7 @@ msgstr "Fält" #: libraries/db_events.inc.php:31 libraries/db_routines.inc.php:42 #: 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/messages.inc.php:1181 +#: libraries/export/texytext.php:234 libraries/messages.inc.php:1177 #: libraries/tbl_properties.inc.php:100 pdf_schema.php:1263 #: pdf_schema.php:1284 server_privileges.php:2031 tbl_change.php:287 #: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313 @@ -131,7 +131,7 @@ msgstr "Typ" #: db_datadict.php:177 libraries/Index.class.php:449 #: libraries/export/htmlword.php:246 libraries/export/latex.php:360 #: libraries/export/odt.php:300 libraries/export/texytext.php:235 -#: libraries/messages.inc.php:576 libraries/tbl_properties.inc.php:109 +#: libraries/messages.inc.php:572 libraries/tbl_properties.inc.php:109 #: pdf_schema.php:1265 pdf_schema.php:1286 tbl_change.php:323 #: tbl_printview.php:145 tbl_structure.php:181 tbl_tracking.php:276 #: tbl_tracking.php:327 @@ -140,7 +140,7 @@ msgstr "Null" #: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 -#: libraries/export/texytext.php:236 libraries/messages.inc.php:238 +#: libraries/export/texytext.php:236 libraries/messages.inc.php:234 #: libraries/tbl_properties.inc.php:106 pdf_schema.php:1266 #: pdf_schema.php:1287 tbl_printview.php:146 tbl_structure.php:182 #: tbl_tracking.php:277 @@ -149,14 +149,14 @@ msgstr "Standard" #: db_datadict.php:182 libraries/export/htmlword.php:249 #: libraries/export/latex.php:362 libraries/export/odt.php:307 -#: libraries/export/texytext.php:238 libraries/messages.inc.php:483 +#: libraries/export/texytext.php:238 libraries/messages.inc.php:479 #: pdf_schema.php:1268 pdf_schema.php:1289 tbl_printview.php:150 msgid "Links to" msgstr "Länkar till" #: db_datadict.php:184 db_printview.php:112 libraries/export/htmlword.php:252 #: libraries/export/latex.php:365 libraries/export/odt.php:312 -#: libraries/export/texytext.php:241 libraries/messages.inc.php:163 +#: libraries/export/texytext.php:241 libraries/messages.inc.php:159 #: libraries/tbl_properties.inc.php:130 pdf_schema.php:1279 #: pdf_schema.php:1290 tbl_printview.php:152 msgid "Comments" @@ -165,7 +165,7 @@ msgstr "Kommentarer" #: db_datadict.php:267 libraries/Index.class.php:359 #: 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/messages.inc.php:559 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:555 #: libraries/mult_submits.inc.php:263 pdf_schema.php:1344 #: server_privileges.php:1529 server_privileges.php:1540 #: server_privileges.php:1850 server_privileges.php:1855 @@ -177,7 +177,7 @@ msgstr "Nej" #: db_datadict.php:267 libraries/Index.class.php:360 #: libraries/Index.class.php:385 libraries/export/htmlword.php:322 #: libraries/export/latex.php:430 libraries/export/odt.php:368 -#: libraries/export/texytext.php:311 libraries/messages.inc.php:1257 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:1253 #: libraries/mult_submits.inc.php:45 libraries/mult_submits.inc.php:50 #: libraries/mult_submits.inc.php:55 libraries/mult_submits.inc.php:60 #: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:101 @@ -191,108 +191,108 @@ msgstr "Nej" msgid "Yes" msgstr "Ja" -#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:670 +#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:666 #: tbl_printview.php:498 msgid "Print" msgstr "Skriv ut" -#: db_export.php:29 libraries/messages.inc.php:1226 +#: db_export.php:29 libraries/messages.inc.php:1222 msgid "View dump (schema) of database" msgstr "Visa SQL-satser för databasen" #: db_export.php:33 db_printview.php:96 db_qbe.php:102 db_structure.php:51 -#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:568 +#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:564 #: navigation.php:346 msgid "No tables found in database." msgstr "Inga tabeller funna i databasen." -#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:845 +#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:841 #: server_export.php:27 msgid "Select All" msgstr "Markera alla" -#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1188 +#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1184 #: server_export.php:29 msgid "Unselect All" msgstr "Avmarkera alla" -#: db_operations.php:38 libraries/messages.inc.php:213 tbl_create.php:54 +#: db_operations.php:38 libraries/messages.inc.php:209 tbl_create.php:54 msgid "The database name is empty!" msgstr "Databasens namn är tomt!" -#: db_operations.php:236 libraries/messages.inc.php:753 +#: db_operations.php:236 libraries/messages.inc.php:749 #, php-format msgid "Database %s has been renamed to %s" msgstr "Databas %s har döpts om till %s" -#: db_operations.php:240 libraries/messages.inc.php:178 +#: db_operations.php:240 libraries/messages.inc.php:174 #, php-format msgid "Database %s has been copied to %s" msgstr "Databas %s har kopierats till %s" -#: db_operations.php:410 libraries/messages.inc.php:236 +#: db_operations.php:410 libraries/messages.inc.php:232 msgid "Rename database to" msgstr "Döp om databasen till" -#: db_operations.php:415 libraries/messages.inc.php:161 +#: db_operations.php:415 libraries/messages.inc.php:157 #: server_processlist.php:57 msgid "Command" msgstr "Kommando" -#: db_operations.php:425 libraries/messages.inc.php:58 tbl_change.php:1143 +#: db_operations.php:425 libraries/messages.inc.php:54 tbl_change.php:1143 msgid "and then" msgstr "och sedan" -#: db_operations.php:451 libraries/messages.inc.php:233 +#: db_operations.php:451 libraries/messages.inc.php:229 msgid "Copy database to" msgstr "Kopiera databas till" -#: db_operations.php:458 libraries/messages.inc.php:1043 +#: db_operations.php:458 libraries/messages.inc.php:1039 #: tbl_operations.php:526 tbl_tracking.php:388 msgid "Structure only" msgstr "Enbart struktur" -#: db_operations.php:459 libraries/messages.inc.php:1041 +#: db_operations.php:459 libraries/messages.inc.php:1037 #: tbl_operations.php:527 tbl_tracking.php:390 msgid "Structure and data" msgstr "Struktur och data" -#: db_operations.php:460 libraries/messages.inc.php:229 tbl_operations.php:528 +#: db_operations.php:460 libraries/messages.inc.php:225 tbl_operations.php:528 #: tbl_tracking.php:389 msgid "Data only" msgstr "Enbart data" -#: db_operations.php:468 libraries/messages.inc.php:186 +#: db_operations.php:468 libraries/messages.inc.php:182 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE före kopiering" #: db_operations.php:471 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 -#: libraries/export/sql.php:82 libraries/messages.inc.php:30 +#: libraries/export/sql.php:82 libraries/messages.inc.php:26 #: tbl_operations.php:534 #, php-format msgid "Add %s" msgstr "Lägg till %s" -#: db_operations.php:475 libraries/messages.inc.php:29 tbl_operations.php:297 +#: db_operations.php:475 libraries/messages.inc.php:25 tbl_operations.php:297 #: tbl_operations.php:536 msgid "Add AUTO_INCREMENT value" msgstr "Lägg till AUTO_INCREMENT-värde" -#: db_operations.php:479 libraries/messages.inc.php:31 tbl_operations.php:543 +#: db_operations.php:479 libraries/messages.inc.php:27 tbl_operations.php:543 msgid "Add constraints" msgstr "Lägg till restriktioner" -#: db_operations.php:492 libraries/messages.inc.php:1059 +#: db_operations.php:492 libraries/messages.inc.php:1055 msgid "Switch to copied database" msgstr "Byt till kopierad databas" -#: db_operations.php:533 libraries/messages.inc.php:89 +#: db_operations.php:533 libraries/messages.inc.php:85 msgid "BLOB Repository" msgstr "BLOB-förvaringsplats" #: db_operations.php:536 db_tracking.php:76 libraries/common.lib.php:1350 -#: libraries/messages.inc.php:1037 libraries/server_links.inc.php:49 +#: libraries/messages.inc.php:1033 libraries/server_links.inc.php:49 #: server_processlist.php:59 tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "Status" @@ -304,11 +304,11 @@ msgctxt "BLOB repository" msgid "Enabled" msgstr "Aktiverat" -#: db_operations.php:548 libraries/messages.inc.php:93 +#: db_operations.php:548 libraries/messages.inc.php:89 msgid "Disable" msgstr "Inaktivera" -#: db_operations.php:558 libraries/messages.inc.php:90 +#: db_operations.php:558 libraries/messages.inc.php:86 msgid "Damaged" msgstr "Skadad" @@ -326,12 +326,12 @@ msgctxt "BLOB repository" msgid "Disabled" msgstr "Inaktiverat" -#: db_operations.php:574 libraries/messages.inc.php:96 +#: db_operations.php:574 libraries/messages.inc.php:92 msgid "Enable" msgstr "Aktivera" #: db_operations.php:598 libraries/Index.class.php:448 -#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:158 +#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:154 #: 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:361 @@ -340,7 +340,7 @@ msgstr "Aktivera" msgid "Collation" msgstr "Kollationering" -#: db_operations.php:609 libraries/messages.inc.php:742 main.php:316 +#: db_operations.php:609 libraries/messages.inc.php:738 main.php:316 #: pdf_schema.php:34 #, php-format msgid "" @@ -350,58 +350,58 @@ msgstr "" "Den extra funktionaliteten för att hantera länkade tabeller har " "inaktiverats. %sVisa orsaken%s." -#: db_operations.php:645 libraries/messages.inc.php:264 pdf_pages.php:528 +#: db_operations.php:645 libraries/messages.inc.php:260 pdf_pages.php:528 msgid "Display PDF schema" msgstr "Visa PDF-schema" -#: db_operations.php:661 libraries/messages.inc.php:877 pdf_pages.php:529 +#: db_operations.php:661 libraries/messages.inc.php:873 pdf_pages.php:529 msgid "Show grid" msgstr "Visa rutnät" -#: db_operations.php:664 libraries/messages.inc.php:874 pdf_pages.php:530 +#: db_operations.php:664 libraries/messages.inc.php:870 pdf_pages.php:530 msgid "Show color" msgstr "Visa färger" -#: db_operations.php:666 libraries/messages.inc.php:998 pdf_pages.php:531 +#: db_operations.php:666 libraries/messages.inc.php:994 pdf_pages.php:531 msgid "Show dimension of tables" msgstr "Visa tabellers dimensioner" -#: db_operations.php:669 libraries/messages.inc.php:52 pdf_pages.php:532 +#: db_operations.php:669 libraries/messages.inc.php:48 pdf_pages.php:532 msgid "Display all tables with the same width" msgstr "Visa alla tabeller med samma bredd" -#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:227 +#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:223 #: pdf_pages.php:533 msgid "Data Dictionary" msgstr "Datalexikon" -#: db_operations.php:674 libraries/messages.inc.php:884 pdf_pages.php:534 +#: db_operations.php:674 libraries/messages.inc.php:880 pdf_pages.php:534 msgid "Only show keys" msgstr "Endast visa nycklar" -#: db_operations.php:676 libraries/messages.inc.php:875 pdf_pages.php:535 +#: db_operations.php:676 libraries/messages.inc.php:871 pdf_pages.php:535 msgid "Data Dictionary Format" msgstr "Format för datalexikon" -#: db_operations.php:678 libraries/messages.inc.php:464 pdf_pages.php:537 +#: db_operations.php:678 libraries/messages.inc.php:460 pdf_pages.php:537 msgid "Landscape" msgstr "Liggande" -#: db_operations.php:679 libraries/messages.inc.php:663 pdf_pages.php:538 +#: db_operations.php:679 libraries/messages.inc.php:659 pdf_pages.php:538 msgid "Portrait" msgstr "Stående" -#: db_operations.php:682 libraries/messages.inc.php:599 pdf_pages.php:541 +#: db_operations.php:682 libraries/messages.inc.php:595 pdf_pages.php:541 msgid "Paper size" msgstr "Pappersstorlek" -#: db_operations.php:706 libraries/messages.inc.php:281 +#: db_operations.php:706 libraries/messages.inc.php:277 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 libraries/messages.inc.php:1087 +#: libraries/header.inc.php:126 libraries/messages.inc.php:1083 #: pdf_pages.php:405 server_privileges.php:1626 server_privileges.php:1682 #: server_privileges.php:1946 server_synchronize.php:423 #: server_synchronize.php:866 tbl_tracking.php:592 test/theme.php:75 @@ -409,176 +409,176 @@ msgid "Table" msgstr "Tabell" #: db_printview.php:105 libraries/db_structure.lib.php:56 -#: libraries/messages.inc.php:735 +#: libraries/messages.inc.php:731 msgid "Records" msgstr "Rader" #: db_printview.php:109 libraries/db_structure.lib.php:67 -#: libraries/messages.inc.php:1003 tbl_indexes.php:190 +#: libraries/messages.inc.php:999 tbl_indexes.php:190 msgid "Size" msgstr "Storlek" #: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 -#: libraries/export/sql.php:899 libraries/messages.inc.php:436 +#: libraries/export/sql.php:899 libraries/messages.inc.php:432 msgid "in use" msgstr "används" #: db_printview.php:187 libraries/db_info.inc.php:88 -#: libraries/export/sql.php:514 libraries/messages.inc.php:1032 +#: libraries/export/sql.php:514 libraries/messages.inc.php:1028 #: pdf_schema.php:1241 tbl_printview.php:434 tbl_structure.php:810 msgid "Creation" msgstr "Skapades" #: db_printview.php:196 libraries/db_info.inc.php:93 -#: libraries/export/sql.php:519 libraries/messages.inc.php:1036 +#: libraries/export/sql.php:519 libraries/messages.inc.php:1032 #: pdf_schema.php:1246 tbl_printview.php:444 tbl_structure.php:818 msgid "Last update" msgstr "Senaste uppdatering" #: db_printview.php:205 libraries/db_info.inc.php:98 -#: libraries/export/sql.php:524 libraries/messages.inc.php:1031 +#: libraries/export/sql.php:524 libraries/messages.inc.php:1027 #: pdf_schema.php:1251 tbl_printview.php:454 tbl_structure.php:826 msgid "Last check" msgstr "Senaste kontroll" -#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1085 +#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1081 #, php-format msgid "%s table(s)" msgstr "%s tabell(er)" #: db_qbe.php:29 libraries/display_tbl.lib.php:1981 -#: libraries/messages.inc.php:1051 libraries/sql_query_form.lib.php:140 +#: libraries/messages.inc.php:1047 libraries/sql_query_form.lib.php:140 #: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131 #: view_operations.php:62 msgid "Your SQL query has been executed successfully" msgstr "Din SQL-fråga utfördes korrekt" -#: db_qbe.php:42 libraries/messages.inc.php:371 +#: db_qbe.php:42 libraries/messages.inc.php:367 msgid "You have to choose at least one column to display" msgstr "Du måste välja minst en kolumn som ska visas" #: db_qbe.php:200 libraries/db_structure.lib.php:104 -#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1014 +#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1010 msgid "Sort" msgstr "Sortering" #: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111 #: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828 -#: libraries/messages.inc.php:69 server_databases.php:170 +#: libraries/messages.inc.php:65 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314 msgid "Ascending" msgstr "Stigande" #: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119 #: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825 -#: libraries/messages.inc.php:251 server_databases.php:170 +#: libraries/messages.inc.php:247 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315 msgid "Descending" msgstr "Fallande" #: db_qbe.php:264 db_tracking.php:78 libraries/display_tbl.lib.php:308 -#: libraries/messages.inc.php:888 tbl_change.php:277 tbl_tracking.php:597 +#: libraries/messages.inc.php:884 tbl_change.php:277 tbl_tracking.php:597 msgid "Show" msgstr "Visa" -#: db_qbe.php:300 libraries/messages.inc.php:202 +#: db_qbe.php:300 libraries/messages.inc.php:198 msgid "Criteria" msgstr "Villkor" #: db_qbe.php:353 db_qbe.php:435 db_qbe.php:527 db_qbe.php:558 -#: libraries/messages.inc.php:718 +#: libraries/messages.inc.php:714 msgid "Ins" msgstr "Infoga" #: db_qbe.php:357 db_qbe.php:439 db_qbe.php:524 db_qbe.php:555 -#: libraries/messages.inc.php:56 +#: libraries/messages.inc.php:52 msgid "And" msgstr "Och" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:529 db_qbe.php:560 -#: libraries/messages.inc.php:717 +#: libraries/messages.inc.php:713 msgid "Del" 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/messages.inc.php:592 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:588 #: libraries/tbl_properties.inc.php:779 server_privileges.php:258 #: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288 msgid "Or" msgstr "Eller" -#: db_qbe.php:507 libraries/messages.inc.php:516 +#: db_qbe.php:507 libraries/messages.inc.php:512 msgid "Modify" msgstr "Ändra" -#: db_qbe.php:584 libraries/messages.inc.php:33 +#: db_qbe.php:584 libraries/messages.inc.php:29 msgid "Add/Delete Criteria Row" msgstr "Lägg till/ta bort villkorsrader" -#: db_qbe.php:596 libraries/messages.inc.php:32 +#: db_qbe.php:596 libraries/messages.inc.php:28 msgid "Add/Delete Field Columns" msgstr "Lägg till/ta bort fältkolumner" -#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1192 +#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1188 msgid "Update Query" msgstr "Uppdatera fråga" -#: db_qbe.php:617 libraries/messages.inc.php:1216 +#: db_qbe.php:617 libraries/messages.inc.php:1212 msgid "Use Tables" msgstr "Använd tabeller" -#: db_qbe.php:640 libraries/messages.inc.php:723 +#: db_qbe.php:640 libraries/messages.inc.php:719 #, php-format msgid "SQL query on database %s:" msgstr "SQL-fråga i databas %s:" -#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:823 +#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:819 msgid "Submit Query" msgstr "Kör fråga" #: db_search.php:68 libraries/auth/config.auth.lib.php:84 #: libraries/auth/config.auth.lib.php:103 #: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52 -#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:26 +#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:22 msgid "Access denied" msgstr "Åtkomst nekad" -#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:836 +#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:832 msgid "at least one of the words" msgstr "minst ett av orden" -#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:837 +#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:833 msgid "all words" msgstr "alla ord" -#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:838 +#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:834 msgid "the exact phrase" msgstr "den exakta frasen" -#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:839 +#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:835 msgid "as regular expression" msgstr "som reguljärt uttryck" -#: db_search.php:242 libraries/messages.inc.php:840 +#: db_search.php:242 libraries/messages.inc.php:836 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Resultat av sökning efter \"%s\" %s:" -#: db_search.php:260 libraries/messages.inc.php:579 +#: db_search.php:260 libraries/messages.inc.php:575 #, php-format msgid "%s match(es) inside table %s" 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/messages.inc.php:108 +#: db_structure.php:105 libraries/messages.inc.php:104 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468 msgid "Browse" msgstr "Visa" #: db_search.php:272 libraries/display_tbl.lib.php:1165 -#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:243 +#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:239 #: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406 #: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377 #: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216 @@ -586,45 +586,45 @@ msgstr "Visa" msgid "Delete" msgstr "Radera" -#: db_search.php:285 libraries/messages.inc.php:580 +#: db_search.php:285 libraries/messages.inc.php:576 #, php-format msgid "Total: %s match(es)" msgstr "Totalt: %s träff(ar)" -#: db_search.php:299 libraries/messages.inc.php:832 +#: db_search.php:299 libraries/messages.inc.php:828 msgid "Search in database" msgstr "Sök i databas" -#: db_search.php:302 libraries/messages.inc.php:835 +#: db_search.php:302 libraries/messages.inc.php:831 msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgstr "Ord eller värde(n) att söka efter (jokertecken: \"%\"):" -#: db_search.php:307 libraries/messages.inc.php:842 +#: db_search.php:307 libraries/messages.inc.php:838 msgid "Find:" msgstr "Hitta:" -#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1017 +#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1013 msgid "Words are separated by a space character (\" \")." msgstr "Ord separeras med mellanslag (\" \")." -#: db_search.php:325 libraries/messages.inc.php:834 +#: db_search.php:325 libraries/messages.inc.php:830 msgid "Inside table(s):" msgstr "I tabell(er):" -#: db_search.php:355 libraries/messages.inc.php:833 +#: db_search.php:355 libraries/messages.inc.php:829 msgid "Inside field:" 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/messages.inc.php:431 libraries/sql_query_form.lib.php:334 +#: libraries/messages.inc.php:427 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/db_links.inc.php:63 libraries/export/latex.php:337 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:1048 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:1044 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 #: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269 msgid "Structure" @@ -633,8 +633,8 @@ 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:1642 -#: libraries/db_links.inc.php:100 libraries/messages.inc.php:272 +#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/db_links.inc.php:100 libraries/messages.inc.php:268 #: 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 @@ -644,40 +644,40 @@ 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:1641 -#: libraries/messages.inc.php:284 libraries/mult_submits.inc.php:39 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: libraries/messages.inc.php:280 libraries/mult_submits.inc.php:39 #: libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Töm" -#: db_structure.php:316 libraries/messages.inc.php:1075 +#: db_structure.php:316 libraries/messages.inc.php:1071 #: libraries/tbl_links.inc.php:100 #, php-format msgid "Table %s has been emptied" msgstr "Tabellen %s har tömts" -#: db_structure.php:326 libraries/messages.inc.php:1229 +#: db_structure.php:326 libraries/messages.inc.php:1225 #: 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/messages.inc.php:1074 +#: db_structure.php:326 libraries/messages.inc.php:1070 #: libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "Tabellen %s har tagits bort" -#: db_structure.php:333 libraries/messages.inc.php:1128 +#: db_structure.php:333 libraries/messages.inc.php:1124 msgid "Tracking is active." msgstr "" -#: db_structure.php:335 libraries/messages.inc.php:1129 +#: db_structure.php:335 libraries/messages.inc.php:1125 msgid "Tracking is not active." msgstr "" #: db_structure.php:420 libraries/display_tbl.lib.php:1944 -#: libraries/messages.inc.php:1228 +#: libraries/messages.inc.php:1224 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -685,83 +685,83 @@ msgid "" msgstr "Denna vy har åtminstone detta antal rader. Se %sdokumentation%s." #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 -#: libraries/messages.inc.php:1233 libraries/tbl_info.inc.php:66 +#: libraries/messages.inc.php:1229 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/messages.inc.php:773 libraries/server_links.inc.php:70 +#: libraries/messages.inc.php:769 libraries/server_links.inc.php:70 #: server_replication.php:33 server_replication.php:164 server_status.php:258 msgid "Replication" msgstr "Replikering" -#: db_structure.php:489 libraries/messages.inc.php:1053 +#: db_structure.php:489 libraries/messages.inc.php:1049 msgid "Sum" msgstr "Summa" #: db_structure.php:496 libraries/StorageEngine.class.php:356 -#: libraries/messages.inc.php:239 +#: libraries/messages.inc.php:235 #, 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 #: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086 -#: libraries/messages.inc.php:1243 libraries/mult_submits.inc.php:16 +#: libraries/messages.inc.php:1239 libraries/mult_submits.inc.php:16 #: server_databases.php:346 server_databases.php:351 #: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465 msgid "With selected:" msgstr "Med markerade:" #: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: libraries/messages.inc.php:148 server_databases.php:348 +#: libraries/messages.inc.php:144 server_databases.php:348 #: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459 msgid "Check All" msgstr "Markera alla" #: db_structure.php:531 libraries/display_tbl.lib.php:2077 -#: libraries/messages.inc.php:1184 libraries/replication_gui.lib.php:33 +#: libraries/messages.inc.php:1180 libraries/replication_gui.lib.php:33 #: server_databases.php:350 server_privileges.php:533 #: server_privileges.php:1564 tbl_structure.php:463 msgid "Uncheck All" msgstr "Avmarkera alla" -#: db_structure.php:536 libraries/messages.inc.php:150 +#: db_structure.php:536 libraries/messages.inc.php:146 msgid "Check tables having overhead" msgstr "Markera ooptimerade" #: db_structure.php:547 db_structure.php:548 db_structure.php:599 -#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:672 +#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:668 #: libraries/mult_submits.inc.php:28 tbl_structure.php:493 #: tbl_structure.php:495 msgid "Print view" msgstr "Utskriftsvänlig visning" -#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:153 +#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:149 #: libraries/mult_submits.inc.php:42 tbl_operations.php:579 msgid "Check table" msgstr "Kontrollera tabell" -#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:590 +#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:586 #: libraries/mult_submits.inc.php:47 tbl_operations.php:619 #: tbl_structure.php:710 tbl_structure.php:712 msgid "Optimize table" msgstr "Optimera tabell" -#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:758 +#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:754 #: libraries/mult_submits.inc.php:52 tbl_operations.php:609 msgid "Repair table" msgstr "Reparera tabell" -#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:55 +#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:51 #: libraries/mult_submits.inc.php:57 tbl_operations.php:599 msgid "Analyze table" msgstr "Analysera tabell" #: db_structure.php:557 db_structure.php:558 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/messages.inc.php:310 +#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:306 #: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84 #: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109 #: server_privileges.php:1341 setup/frames/menu.inc.php:22 @@ -769,7 +769,7 @@ msgstr "Analysera tabell" msgid "Export" msgstr "Exportera" -#: db_tracking.php:66 libraries/messages.inc.php:1151 +#: db_tracking.php:66 libraries/messages.inc.php:1147 #, fuzzy msgid "Tracked tables" msgstr "Hoppa över låsta tabeller" @@ -778,7 +778,7 @@ msgstr "Hoppa över låsta tabeller" #: 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/header_printview.inc.php:58 libraries/messages.inc.php:212 +#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:208 #: navigation.php:233 server_databases.php:169 server_privileges.php:1621 #: server_privileges.php:1682 server_privileges.php:1940 #: server_processlist.php:56 server_synchronize.php:1179 @@ -786,83 +786,83 @@ msgstr "Hoppa över låsta tabeller" msgid "Database" msgstr "Databas" -#: db_tracking.php:73 libraries/messages.inc.php:1146 +#: db_tracking.php:73 libraries/messages.inc.php:1142 #, fuzzy msgid "Last version" msgstr "Skapa relation" -#: db_tracking.php:74 libraries/messages.inc.php:1145 tbl_tracking.php:594 +#: db_tracking.php:74 libraries/messages.inc.php:1141 tbl_tracking.php:594 #, fuzzy msgid "Created" msgstr "Skapa" -#: db_tracking.php:75 libraries/messages.inc.php:1147 tbl_tracking.php:595 +#: db_tracking.php:75 libraries/messages.inc.php:1143 tbl_tracking.php:595 msgid "Updated" msgstr "" #: db_tracking.php:77 libraries/Index.class.php:440 -#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:27 +#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:23 #: server_databases.php:203 server_privileges.php:1503 #: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187 msgid "Action" msgstr "Åtgärd" -#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:247 +#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:243 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:106 libraries/messages.inc.php:1142 tbl_tracking.php:548 +#: db_tracking.php:106 libraries/messages.inc.php:1138 tbl_tracking.php:548 #: tbl_tracking.php:606 tbl_tracking.php:613 msgid "active" msgstr "" -#: db_tracking.php:108 libraries/messages.inc.php:1143 tbl_tracking.php:550 +#: db_tracking.php:108 libraries/messages.inc.php:1139 tbl_tracking.php:550 #: tbl_tracking.php:608 tbl_tracking.php:610 msgid "not active" msgstr "" -#: db_tracking.php:121 libraries/messages.inc.php:1160 +#: db_tracking.php:121 libraries/messages.inc.php:1156 #, fuzzy msgid "Versions" msgstr "Persiska" -#: db_tracking.php:122 libraries/messages.inc.php:1132 tbl_tracking.php:379 +#: db_tracking.php:122 libraries/messages.inc.php:1128 tbl_tracking.php:379 #: tbl_tracking.php:624 msgid "Tracking report" msgstr "" -#: db_tracking.php:123 libraries/messages.inc.php:1144 tbl_tracking.php:251 +#: db_tracking.php:123 libraries/messages.inc.php:1140 tbl_tracking.php:251 #: tbl_tracking.php:624 #, fuzzy msgid "Structure snapshot" msgstr "Enbart struktur" -#: db_tracking.php:152 libraries/messages.inc.php:1154 +#: db_tracking.php:152 libraries/messages.inc.php:1150 #, fuzzy msgid "Untracked tables" msgstr "Hoppa över låsta tabeller" -#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1153 +#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1149 #: tbl_structure.php:529 tbl_structure.php:531 #, fuzzy msgid "Track table" msgstr "Kontrollera tabell" -#: db_tracking.php:200 libraries/messages.inc.php:1121 +#: db_tracking.php:200 libraries/messages.inc.php:1117 #, fuzzy msgid "Database Log" msgstr "Databas" -#: export.php:62 libraries/messages.inc.php:312 +#: export.php:62 libraries/messages.inc.php:308 msgid "Selected export type has to be saved in file!" msgstr "Vald export-typ måste sparas i fil!" -#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:567 +#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:563 #, php-format msgid "Insufficient space to save the file %s." msgstr "Otillräckligt utrymme för att spara filen %s." -#: export.php:294 libraries/messages.inc.php:324 +#: export.php:294 libraries/messages.inc.php:320 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -870,17 +870,17 @@ msgstr "" "Filen %s finns redan på servern. Ändra filnamnet eller kryssa i skriv över-" "alternativet." -#: export.php:298 export.php:302 libraries/messages.inc.php:562 +#: export.php:298 export.php:302 libraries/messages.inc.php:558 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Webbservern har inte tillåtelse att spara filen %s." -#: export.php:629 libraries/messages.inc.php:276 +#: export.php:629 libraries/messages.inc.php:272 #, php-format msgid "Dump has been saved to file %s." msgstr "SQL-satserna har sparats till filen %s." -#: import.php:60 libraries/messages.inc.php:1202 +#: import.php:60 libraries/messages.inc.php:1198 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation%" @@ -890,14 +890,14 @@ msgstr "" "för metoder att gå runt denna begränsning." #: import.php:279 import.php:332 libraries/File.class.php:849 -#: libraries/File.class.php:961 libraries/messages.inc.php:325 +#: libraries/File.class.php:961 libraries/messages.inc.php:321 msgid "File could not be read" msgstr "Filen kunde inte läsas" #: import.php:287 import.php:296 import.php:315 import.php:324 #: libraries/File.class.php:1031 libraries/File.class.php:1039 #: libraries/File.class.php:1055 libraries/File.class.php:1063 -#: libraries/messages.inc.php:1189 +#: libraries/messages.inc.php:1185 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -906,7 +906,7 @@ msgstr "" "Du försökta ladda en fil med komprimering (%s) som inte stöds. Antingen är " "stöd för det inte implementerat eller inaktiverat i din konfiguration." -#: import.php:337 libraries/messages.inc.php:547 +#: import.php:337 libraries/messages.inc.php:543 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -917,29 +917,29 @@ msgstr "" "Se FAQ 1.16." #: import.php:372 libraries/display_import.lib.php:24 -#: libraries/messages.inc.php:125 +#: libraries/messages.inc.php:121 msgid "Could not load import plugins, please check your installation!" msgstr "Kunde inte ladda tillägg för import. Kontrollera din installation!" -#: import.php:397 libraries/messages.inc.php:102 +#: import.php:397 libraries/messages.inc.php:98 msgid "The bookmark has been deleted." msgstr "Bokmärket har tagits bort." -#: import.php:401 libraries/messages.inc.php:879 +#: import.php:401 libraries/messages.inc.php:875 msgid "Showing bookmark" msgstr "Visar bokmärke" -#: import.php:403 libraries/messages.inc.php:101 +#: import.php:403 libraries/messages.inc.php:97 #, php-format msgid "Bookmark %s created" msgstr "Bokmärket %s har skapats" -#: import.php:409 import.php:415 libraries/messages.inc.php:407 +#: import.php:409 import.php:415 libraries/messages.inc.php:403 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Importen har avslutats korrekt, %d frågor utförda." -#: import.php:424 libraries/messages.inc.php:1107 +#: import.php:424 libraries/messages.inc.php:1103 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -947,11 +947,11 @@ msgstr "" "Skriptets tidsbegränsning har överskridits. Om du vill slutföra importen, " "importera samma fil igen så kommer importen att återupptas." -#: index.php:190 libraries/messages.inc.php:553 +#: index.php:190 libraries/messages.inc.php:549 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin fungerar tyvärr endast med webbläsare som hanterar ramar." -#: js/messages.php:25 libraries/messages.inc.php:155 +#: js/messages.php:25 libraries/messages.inc.php:151 #: server_synchronize.php:345 server_synchronize.php:357 #: server_synchronize.php:373 server_synchronize.php:380 #: server_synchronize.php:739 server_synchronize.php:767 @@ -959,116 +959,116 @@ msgstr "phpMyAdmin fungerar tyvärr endast med webbläsare som hanterar ramar." msgid "Click to select" msgstr "" -#: js/messages.php:26 libraries/messages.inc.php:156 +#: js/messages.php:26 libraries/messages.inc.php:152 msgid "Click to unselect" msgstr "" #: js/messages.php:27 libraries/import.lib.php:103 -#: libraries/messages.inc.php:550 sql.php:89 +#: libraries/messages.inc.php:546 sql.php:89 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\"-satser är inaktiverade." -#: js/messages.php:30 libraries/messages.inc.php:270 +#: js/messages.php:30 libraries/messages.inc.php:266 #: libraries/mult_submits.inc.php:258 sql.php:188 msgid "Do you really want to " msgstr "Vill du verkligen " -#: js/messages.php:31 libraries/messages.inc.php:271 +#: js/messages.php:31 libraries/messages.inc.php:267 #: libraries/mult_submits.inc.php:258 sql.php:172 msgid "You are about to DESTROY a complete database!" msgstr "Du håller på att FÖRGÖRA en hel databas!" -#: js/messages.php:34 libraries/messages.inc.php:94 +#: js/messages.php:34 libraries/messages.inc.php:90 msgid "You are about to DISABLE a BLOB Repository!" msgstr "Du håller på att inaktivera en BLOB-förvaringsplats!" -#: js/messages.php:35 libraries/messages.inc.php:91 +#: js/messages.php:35 libraries/messages.inc.php:87 #, php-format msgid "Are you sure you want to disable all BLOB references for database %s?" msgstr "Vill du verkligen inaktivera alla BLOB-referenser för databas %s?" -#: js/messages.php:38 libraries/messages.inc.php:342 +#: js/messages.php:38 libraries/messages.inc.php:338 msgid "Missing value in the form!" msgstr "Värde saknas i formuläret!" -#: js/messages.php:39 libraries/messages.inc.php:570 +#: js/messages.php:39 libraries/messages.inc.php:566 msgid "This is not a number!" msgstr "Det är inte ett nummer!" -#: js/messages.php:42 libraries/messages.inc.php:380 +#: js/messages.php:42 libraries/messages.inc.php:376 msgid "The host name is empty!" msgstr "Värdnamnet är tomt!" -#: js/messages.php:43 libraries/messages.inc.php:1208 +#: js/messages.php:43 libraries/messages.inc.php:1204 msgid "The user name is empty!" msgstr "Användarnamnet är tomt!" -#: js/messages.php:44 libraries/messages.inc.php:607 +#: js/messages.php:44 libraries/messages.inc.php:603 #: server_privileges.php:1197 user_password.php:70 msgid "The password is empty!" msgstr "Lösenordet är tomt!" -#: js/messages.php:45 libraries/messages.inc.php:609 +#: js/messages.php:45 libraries/messages.inc.php:605 #: server_privileges.php:1195 user_password.php:73 msgid "The passwords aren't the same!" msgstr "Lösenorden är inte lika!" -#: js/messages.php:49 libraries/messages.inc.php:123 pmd_general.php:342 +#: js/messages.php:49 libraries/messages.inc.php:119 pmd_general.php:342 #: pmd_general.php:379 msgid "Cancel" msgstr "Avbryt" -#: js/messages.php:52 libraries/messages.inc.php:514 +#: js/messages.php:52 libraries/messages.inc.php:510 msgid "Modifications have been saved" msgstr "Ändringarna har sparats" -#: js/messages.php:53 libraries/messages.inc.php:741 +#: js/messages.php:53 libraries/messages.inc.php:737 msgid "Relation deleted" msgstr "Relation borttagen" -#: js/messages.php:54 libraries/messages.inc.php:340 +#: js/messages.php:54 libraries/messages.inc.php:336 msgid "FOREIGN KEY relation added" msgstr "Främmande nyckel-relation tillagd" -#: js/messages.php:55 libraries/messages.inc.php:434 +#: js/messages.php:55 libraries/messages.inc.php:430 msgid "Internal relation added" msgstr "Intern relation tillagd" -#: js/messages.php:56 libraries/messages.inc.php:299 +#: js/messages.php:56 libraries/messages.inc.php:295 msgid "Error: Relation not added." msgstr "Fel: Relation inte tillagd." -#: js/messages.php:57 libraries/messages.inc.php:300 +#: js/messages.php:57 libraries/messages.inc.php:296 msgid "Error: relation already exists." msgstr "Fel: Relation finns redan." -#: js/messages.php:58 libraries/messages.inc.php:302 +#: js/messages.php:58 libraries/messages.inc.php:298 msgid "Error saving coordinates for Designer." msgstr "Fel vid sparande av koordinater för Designer." -#: js/messages.php:59 libraries/messages.inc.php:351 +#: js/messages.php:59 libraries/messages.inc.php:347 #: libraries/relation.lib.php:107 msgid "General relation features" msgstr "Allmänna relationsfunktionaliteter" -#: js/messages.php:59 libraries/messages.inc.php:260 +#: js/messages.php:59 libraries/messages.inc.php:256 #: libraries/relation.lib.php:101 libraries/relation.lib.php:108 msgid "Disabled" msgstr "Inaktiverat" -#: js/messages.php:60 libraries/messages.inc.php:850 +#: js/messages.php:60 libraries/messages.inc.php:846 msgid "Select referenced key" msgstr "Välj refererad nyckel" -#: js/messages.php:61 libraries/messages.inc.php:848 +#: js/messages.php:61 libraries/messages.inc.php:844 msgid "Select Foreign Key" msgstr "Välj främmande nyckel" -#: js/messages.php:62 libraries/messages.inc.php:653 +#: js/messages.php:62 libraries/messages.inc.php:649 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 libraries/messages.inc.php:142 pmd_general.php:77 +#: js/messages.php:63 libraries/messages.inc.php:138 pmd_general.php:77 #: tbl_relation.php:548 msgid "Choose field to display" msgstr "Välj fält som ska visas" @@ -1088,9 +1088,9 @@ msgid "Prev" msgstr "Föregående" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2332 -#: libraries/common.lib.php:2335 libraries/display_tbl.lib.php:338 -#: libraries/messages.inc.php:543 server_binlog.php:205 server_binlog.php:207 +#: js/messages.php:77 libraries/common.lib.php:2344 +#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: libraries/messages.inc.php:539 server_binlog.php:205 server_binlog.php:207 #: tbl_printview.php:424 tbl_structure.php:802 msgid "Next" msgstr "Nästa" @@ -1165,27 +1165,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1543 +#: js/messages.php:97 libraries/common.lib.php:1555 msgid "Jan" msgstr "januari" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1545 +#: js/messages.php:99 libraries/common.lib.php:1557 msgid "Feb" msgstr "februari" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1547 +#: js/messages.php:101 libraries/common.lib.php:1559 msgid "Mar" msgstr "mars" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1549 +#: js/messages.php:103 libraries/common.lib.php:1561 msgid "Apr" msgstr "april" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1551 +#: js/messages.php:105 libraries/common.lib.php:1563 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1193,37 +1193,37 @@ msgid "May" msgstr "maj" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1553 +#: js/messages.php:107 libraries/common.lib.php:1565 msgid "Jun" msgstr "juni" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1555 +#: js/messages.php:109 libraries/common.lib.php:1567 msgid "Jul" msgstr "juli" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1557 +#: js/messages.php:111 libraries/common.lib.php:1569 msgid "Aug" msgstr "augusti" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1559 +#: js/messages.php:113 libraries/common.lib.php:1571 msgid "Sep" msgstr "september" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1561 +#: js/messages.php:115 libraries/common.lib.php:1573 msgid "Oct" msgstr "oktober" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1563 +#: js/messages.php:117 libraries/common.lib.php:1575 msgid "Nov" msgstr "november" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1565 +#: js/messages.php:119 libraries/common.lib.php:1577 msgid "Dec" msgstr "december" @@ -1264,37 +1264,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1568 +#: js/messages.php:132 libraries/common.lib.php:1580 msgid "Sun" msgstr "Sön" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1570 +#: js/messages.php:134 libraries/common.lib.php:1582 msgid "Mon" msgstr "Mån" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1572 +#: js/messages.php:136 libraries/common.lib.php:1584 msgid "Tue" msgstr "Tis" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1574 +#: js/messages.php:138 libraries/common.lib.php:1586 msgid "Wed" msgstr "Ons" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1576 +#: js/messages.php:140 libraries/common.lib.php:1588 msgid "Thu" msgstr "Tors" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1578 +#: js/messages.php:142 libraries/common.lib.php:1590 msgid "Fri" msgstr "Fre" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1580 +#: js/messages.php:144 libraries/common.lib.php:1592 msgid "Sat" msgstr "Lör" @@ -1370,22 +1370,22 @@ msgstr "används" msgid "Second" msgstr "per sekund" -#: libraries/Config.class.php:1015 libraries/messages.inc.php:338 +#: libraries/Config.class.php:1015 libraries/messages.inc.php:334 msgid "Font size" msgstr "Teckenstorlek" #: libraries/File.class.php:344 libraries/File.class.php:432 #: libraries/File.class.php:569 libraries/File.class.php:708 -#: libraries/messages.inc.php:1201 +#: libraries/messages.inc.php:1197 msgid "Unknown error in file upload." msgstr "Okänt fel i filuppladdning." -#: libraries/File.class.php:414 libraries/messages.inc.php:1198 +#: libraries/File.class.php:414 libraries/messages.inc.php:1194 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "Den uppladdade filen överskrider direktivet upload_max_filesize i php.ini." -#: libraries/File.class.php:417 libraries/messages.inc.php:1197 +#: libraries/File.class.php:417 libraries/messages.inc.php:1193 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -1393,56 +1393,56 @@ msgstr "" "Den uppladdade filen överskrider direktivet MAX_FILE_SIZE som specificerades " "i HTML-formuläret." -#: libraries/File.class.php:420 libraries/messages.inc.php:1200 +#: libraries/File.class.php:420 libraries/messages.inc.php:1196 msgid "The uploaded file was only partially uploaded." msgstr "Den uppladdade filen var endast delvis uppladdad." -#: libraries/File.class.php:423 libraries/messages.inc.php:1199 +#: libraries/File.class.php:423 libraries/messages.inc.php:1195 msgid "Missing a temporary folder." msgstr "Saknar en temporär katalog." -#: libraries/File.class.php:426 libraries/messages.inc.php:1195 +#: libraries/File.class.php:426 libraries/messages.inc.php:1191 msgid "Failed to write file to disk." msgstr "Misslyckades att skriva fil till disk." -#: libraries/File.class.php:429 libraries/messages.inc.php:1196 +#: libraries/File.class.php:429 libraries/messages.inc.php:1192 msgid "File upload stopped by extension." msgstr "Filuppladdning stoppades av tillägg." -#: libraries/File.class.php:908 libraries/messages.inc.php:319 +#: libraries/File.class.php:908 libraries/messages.inc.php:315 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "Fel vid flytt av uppladdad fil, se FAQ 1.11" -#: libraries/Index.class.php:428 libraries/messages.inc.php:554 +#: libraries/Index.class.php:428 libraries/messages.inc.php:550 #: tbl_relation.php:529 msgid "No index defined!" msgstr "Inga index är definierade!" -#: libraries/Index.class.php:433 libraries/messages.inc.php:411 +#: libraries/Index.class.php:433 libraries/messages.inc.php:407 #: server_databases.php:132 tbl_tracking.php:316 msgid "Indexes" msgstr "Index" -#: libraries/Index.class.php:444 libraries/messages.inc.php:1186 +#: libraries/Index.class.php:444 libraries/messages.inc.php:1182 #: 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:475 tbl_tracking.php:322 msgid "Unique" msgstr "Unik" -#: libraries/Index.class.php:445 libraries/messages.inc.php:596 +#: libraries/Index.class.php:445 libraries/messages.inc.php:592 #: tbl_tracking.php:323 msgid "Packed" msgstr "Packad" -#: libraries/Index.class.php:447 libraries/messages.inc.php:131 +#: libraries/Index.class.php:447 libraries/messages.inc.php:127 #: tbl_tracking.php:325 msgid "Cardinality" msgstr "Kardinalitet" -#: libraries/Index.class.php:450 libraries/messages.inc.php:162 +#: libraries/Index.class.php:450 libraries/messages.inc.php:158 #: tbl_tracking.php:279 tbl_tracking.php:328 msgid "Comment" msgstr "Kommentar" @@ -1450,22 +1450,22 @@ msgstr "Kommentar" #: libraries/Index.class.php:466 libraries/common.lib.php:616 #: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:280 pdf_pages.php:280 +#: libraries/messages.inc.php:276 pdf_pages.php:280 #: setup/frames/index.inc.php:124 setup/lib/messages.inc.php:352 #: tbl_row_action.php:69 msgid "Edit" msgstr "Ändra" -#: libraries/Index.class.php:472 libraries/messages.inc.php:666 +#: libraries/Index.class.php:472 libraries/messages.inc.php:662 msgid "The primary key has been dropped" msgstr "Den primära nyckeln har tagits bort" -#: libraries/Index.class.php:476 libraries/messages.inc.php:413 +#: libraries/Index.class.php:476 libraries/messages.inc.php:409 #, php-format msgid "Index %s has been dropped" msgstr "Index %s har tagits bort" -#: libraries/Index.class.php:576 libraries/messages.inc.php:412 +#: libraries/Index.class.php:576 libraries/messages.inc.php:408 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -1474,7 +1474,7 @@ 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/messages.inc.php:218 +#: libraries/List_Database.class.php:431 libraries/messages.inc.php:214 #: libraries/server_links.inc.php:41 server_databases.php:88 #: server_privileges.php:1621 setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" @@ -1504,87 +1504,87 @@ msgid_plural "%1$d rows inserted." msgstr[0] "%1$d rad(er) infogade." msgstr[1] "%1$d rad(er) infogade." -#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:549 +#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:545 msgid "" "There is no detailed status information available for this storage engine." msgstr "" "Det finns ingen tillgänglig detaljerad statusinformation för denna " "lagringsmotor." -#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:291 +#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:287 #, php-format msgid "%s is available on this MySQL server." msgstr "%s är tillgänglig på denna MySQL-server." -#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:292 +#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:288 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s har inaktiverats på denna MySQL-server." -#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:294 +#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:290 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "Denna MySQL-server har inte stöd för lagringsmotorn %s." -#: libraries/Table.class.php:1019 libraries/messages.inc.php:443 +#: libraries/Table.class.php:1019 libraries/messages.inc.php:439 msgid "Invalid database" msgstr "Ogiltig databas" -#: libraries/Table.class.php:1033 libraries/messages.inc.php:450 +#: libraries/Table.class.php:1033 libraries/messages.inc.php:446 #: tbl_get_field.php:26 msgid "Invalid table name" msgstr "Ogiltigt tabellnamn" -#: libraries/Table.class.php:1048 libraries/messages.inc.php:301 +#: libraries/Table.class.php:1048 libraries/messages.inc.php:297 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "Fel vid namnbyte på tabell %1$s till %2$s" -#: libraries/Table.class.php:1132 libraries/messages.inc.php:754 +#: libraries/Table.class.php:1132 libraries/messages.inc.php:750 #, php-format msgid "Table %s has been renamed to %s" msgstr "Tabell %s har döpts om till %s" -#: libraries/Theme.class.php:162 libraries/messages.inc.php:1099 +#: libraries/Theme.class.php:162 libraries/messages.inc.php:1095 #, php-format msgid "No valid image path for theme %s found!" msgstr "Ingen giltig sökväg till bilder för tema %s hittades!" -#: libraries/Theme.class.php:384 libraries/messages.inc.php:1097 +#: libraries/Theme.class.php:384 libraries/messages.inc.php:1093 msgid "No preview available." msgstr "Ingen förhandsgranskning tillgänglig." -#: libraries/Theme.class.php:387 libraries/messages.inc.php:1089 +#: libraries/Theme.class.php:387 libraries/messages.inc.php:1085 msgid "take it" msgstr "använd detta" -#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1096 +#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1092 #, php-format msgid "Default theme %s not found!" msgstr "Standardtema %s hittades inte!" -#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1098 +#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1094 #, php-format msgid "Theme %s not found!" msgstr "Tema %s hittades inte!" -#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1100 +#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1096 #, php-format msgid "Theme path not found for theme %s!" msgstr "Temats sökväg för tema %s hittades inte!" -#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1101 +#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1097 #: test/theme.php:161 themes.php:21 themes.php:41 msgid "Theme / Style" msgstr "Tema / Stil" -#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:172 +#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:168 msgid "Cannot connect: invalid settings." msgstr "Kan ej skapa förbindelse: ogiltiga inställningar." #: libraries/auth/config.auth.lib.php:92 #: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65 -#: libraries/messages.inc.php:1238 test/theme.php:152 +#: libraries/messages.inc.php:1234 test/theme.php:152 #, php-format msgid "Welcome to %s" msgstr "Välkommen till %s" @@ -1610,45 +1610,45 @@ msgstr "" "inc.php och förvissa dig om att de stämmer överens med informationen från " "administratören av MySQL-servern." -#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:488 +#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:484 msgid "Log in" msgstr "Logga in" #: libraries/auth/cookie.auth.lib.php:246 -#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:659 +#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:655 #: libraries/navigation_header.inc.php:93 #: libraries/navigation_header.inc.php:95 msgid "phpMyAdmin documentation" msgstr "phpMyAdmin dokumentation" #: libraries/auth/cookie.auth.lib.php:258 -#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:492 +#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:488 msgid "You can enter hostname/IP address and port separated by space." msgstr "Du kan ange värdnamn/IP-adress och port separerade med mellanslag." -#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:493 +#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:489 msgid "Server:" msgstr "Server" -#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:494 +#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:490 msgid "Username:" msgstr "Användarnamn:" -#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:491 +#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:487 msgid "Password:" msgstr "Lösenord:" -#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:854 +#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:850 msgid "Server Choice" msgstr "Serverval" #: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 -#: libraries/messages.inc.php:177 +#: libraries/messages.inc.php:173 msgid "Cookies must be enabled past this point." msgstr "Kakor (cookies) måste tillåtas för att gå vidare." #: libraries/auth/cookie.auth.lib.php:671 -#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:489 +#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:485 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" @@ -1656,60 +1656,60 @@ msgstr "" "AllowNoPassword)" #: libraries/auth/cookie.auth.lib.php:675 -#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:544 +#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:540 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "Ingen aktivitet sedan %s sekunder eller mer. Var god logga in igen" #: libraries/auth/cookie.auth.lib.php:685 #: libraries/auth/cookie.auth.lib.php:687 -#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:126 +#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:122 msgid "Cannot log in to the MySQL server" msgstr "Kan ej logga in på MySQL-server" -#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1245 +#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1241 msgid "Wrong username/password. Access denied." msgstr "Fel användarnamn/lösenord. Åtkomst nekad." #: libraries/auth/swekey/swekey.auth.lib.php:118 -#: libraries/messages.inc.php:1057 +#: libraries/messages.inc.php:1053 #, php-format msgid "File %s does not contain any key id" msgstr "Filen %s innehåller inget nyckelid" #: libraries/auth/swekey/swekey.auth.lib.php:157 #: libraries/auth/swekey/swekey.auth.lib.php:180 -#: libraries/messages.inc.php:1056 +#: libraries/messages.inc.php:1052 msgid "Hardware authentication failed" msgstr "Hårdvaruautentisering misslyckades" #: libraries/auth/swekey/swekey.auth.lib.php:166 -#: libraries/messages.inc.php:1058 +#: libraries/messages.inc.php:1054 msgid "No valid authentication key plugged" msgstr "Giltig autentiseringsnyckel saknas" #: libraries/auth/swekey/swekey.auth.lib.php:202 -#: libraries/messages.inc.php:1055 +#: libraries/messages.inc.php:1051 msgid "Authenticating..." msgstr "Autentisering pågår..." -#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1230 +#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1226 msgid "View image" msgstr "Visa bild" -#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:652 +#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:648 msgid "Play audio" msgstr "Spela ljud" -#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1232 +#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1228 msgid "View video" msgstr "Visa video" -#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:269 +#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:265 msgid "Download file" msgstr "Ladda ner fil" -#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:128 +#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:124 msgid "" "Couldn't load the iconv or recode extension needed for charset conversion. " "Either configure PHP to enable these extensions or disable charset " @@ -1721,7 +1721,7 @@ msgstr "" #: libraries/charset_conversion.lib.php:79 #: libraries/charset_conversion.lib.php:90 -#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:130 +#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:126 msgid "" "Couldn't use the iconv, libiconv, or recode_string functions, although the " "necessary extensions appear to be loaded. Check your PHP configuration." @@ -1730,7 +1730,7 @@ msgstr "" "fastän de nödvändiga tilläggen verkar vara laddade. Kontrollera din PHP-" "konfiguration." -#: libraries/common.inc.php:583 libraries/messages.inc.php:170 +#: libraries/common.inc.php:583 libraries/messages.inc.php:166 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!" @@ -1765,22 +1765,22 @@ msgstr "" msgid "Invalid server index: %s" msgstr "Ogiltigt serverindex: \"%s\"" -#: libraries/common.inc.php:636 libraries/messages.inc.php:448 +#: libraries/common.inc.php:636 libraries/messages.inc.php:444 #, 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/messages.inc.php:856 libraries/select_server.lib.php:41 +#: libraries/messages.inc.php:852 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/messages.inc.php:437 +#: libraries/common.inc.php:823 libraries/messages.inc.php:433 msgid "Invalid authentication method set in configuration:" msgstr "Ogiltig metod för autentisering angiven i konfiguration:" -#: libraries/common.lib.php:147 libraries/messages.inc.php:499 +#: libraries/common.lib.php:147 libraries/messages.inc.php:495 #, php-format msgid "Max: %s%s" msgstr "Maximal storlek: %s%s" @@ -1802,7 +1802,7 @@ msgstr "Skickade" #: libraries/common.lib.php:428 libraries/common.lib.php:430 #: libraries/common.lib.php:432 libraries/common.lib.php:448 #: libraries/common.lib.php:450 libraries/dbg/setup.php:25 -#: libraries/display_export.lib.php:164 libraries/messages.inc.php:267 +#: libraries/display_export.lib.php:164 libraries/messages.inc.php:263 #: libraries/relation.lib.php:97 libraries/sql_query_form.lib.php:451 #: libraries/sql_query_form.lib.php:454 main.php:229 pdf_pages.php:37 #: pdf_pages.php:43 pdf_pages.php:49 pdf_pages.php:54 @@ -1812,55 +1812,55 @@ msgstr "Dokumentation" #: libraries/common.lib.php:581 libraries/core.lib.php:234 #: libraries/core.lib.php:263 libraries/import.lib.php:134 -#: libraries/messages.inc.php:297 pdf_schema.php:32 pdf_schema.php:232 +#: libraries/messages.inc.php:293 pdf_schema.php:32 pdf_schema.php:232 #: tbl_change.php:1027 tbl_operations.php:213 tbl_relation.php:290 #: view_operations.php:62 msgid "Error" msgstr "Fel" #: libraries/common.lib.php:595 libraries/header_printview.inc.php:61 -#: libraries/messages.inc.php:1023 server_processlist.php:60 +#: libraries/messages.inc.php:1019 server_processlist.php:60 #: server_status.php:247 msgid "SQL query" msgstr "SQL-fråga" -#: libraries/common.lib.php:634 libraries/messages.inc.php:538 +#: libraries/common.lib.php:634 libraries/messages.inc.php:534 msgid "MySQL said: " msgstr "MySQL sa: " -#: libraries/common.lib.php:667 libraries/messages.inc.php:76 +#: libraries/common.lib.php:667 libraries/messages.inc.php:72 #: pdf_schema.php:241 user_password.php:115 msgid "Back" msgstr "Bakåt" -#: libraries/common.lib.php:1177 libraries/messages.inc.php:309 +#: libraries/common.lib.php:1177 libraries/messages.inc.php:305 #: setup/lib/messages.inc.php:353 msgid "Explain SQL" msgstr "Förklara SQL-kod" -#: libraries/common.lib.php:1180 libraries/messages.inc.php:551 +#: libraries/common.lib.php:1180 libraries/messages.inc.php:547 msgid "Skip Explain SQL" msgstr "Utan SQL-förklaring" -#: libraries/common.lib.php:1212 libraries/messages.inc.php:563 +#: libraries/common.lib.php:1212 libraries/messages.inc.php:559 msgid "Without PHP Code" msgstr "Utan PHP-kod" -#: libraries/common.lib.php:1215 libraries/messages.inc.php:649 +#: libraries/common.lib.php:1215 libraries/messages.inc.php:645 #: setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "Skapa PHP-kod" -#: libraries/common.lib.php:1233 libraries/messages.inc.php:737 +#: libraries/common.lib.php:1233 libraries/messages.inc.php:733 #: server_status.php:341 setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "Uppdatera" -#: libraries/common.lib.php:1242 libraries/messages.inc.php:575 +#: libraries/common.lib.php:1242 libraries/messages.inc.php:571 msgid "Skip Validate SQL" msgstr "Utan SQL-validering" -#: libraries/common.lib.php:1245 libraries/messages.inc.php:1220 +#: libraries/common.lib.php:1245 libraries/messages.inc.php:1216 #: setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "Validera SQL-kod" @@ -1876,11 +1876,11 @@ msgid "Inline" msgstr "Motorer" #: libraries/common.lib.php:1332 libraries/common.lib.php:1347 -#: libraries/messages.inc.php:713 +#: libraries/messages.inc.php:709 msgid "Profiling" msgstr "Under produktion" -#: libraries/common.lib.php:1351 libraries/messages.inc.php:1108 +#: libraries/common.lib.php:1351 libraries/messages.inc.php:1104 #: libraries/tbl_triggers.lib.php:28 server_processlist.php:58 msgid "Time" msgstr "Tid" @@ -1914,46 +1914,56 @@ msgstr "PiB" msgid "EiB" msgstr "EiB" +#. l10n: Thousands separator +#: libraries/common.lib.php:1417 +msgid "," +msgstr " " + +#. l10n: Decimal separator +#: libraries/common.lib.php:1419 +msgid "." +msgstr "," + #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1584 +#: libraries/common.lib.php:1596 #: libraries/transformations/text_plain__dateformat.inc.php:28 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y kl %H:%M" -#: libraries/common.lib.php:1886 +#: libraries/common.lib.php:1898 #, 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:2301 libraries/common.lib.php:2304 -#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:664 +#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:660 #: server_status.php:608 msgid "Begin" msgstr "Början" -#: libraries/common.lib.php:2302 libraries/common.lib.php:2305 -#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:665 +#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:661 #: server_binlog.php:168 server_binlog.php:170 msgid "Previous" msgstr "Föregående" -#: libraries/common.lib.php:2333 libraries/common.lib.php:2336 -#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:289 +#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:285 msgid "End" msgstr "Slutet" -#: libraries/common.lib.php:2409 libraries/messages.inc.php:455 +#: libraries/common.lib.php:2421 libraries/messages.inc.php:451 #, php-format msgid "Jump to database "%s"." msgstr "Hoppa till databas "%s"." -#: libraries/common.lib.php:2429 libraries/messages.inc.php:461 +#: libraries/common.lib.php:2441 libraries/messages.inc.php:457 #, 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/core.lib.php:286 libraries/dbg/setup.php:22 -#: libraries/messages.inc.php:127 +#: libraries/messages.inc.php:123 #, php-format msgid "" "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " @@ -1962,115 +1972,115 @@ msgstr "" "kan inte ladda %s-tillägg,
var god kontrollera PHP-konfigurationen." #: libraries/db_events.inc.php:20 libraries/db_events.inc.php:22 -#: libraries/export/sql.php:415 libraries/messages.inc.php:306 +#: libraries/export/sql.php:415 libraries/messages.inc.php:302 msgid "Events" msgstr "Händelser" #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 -#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:541 +#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:537 #: libraries/tbl_triggers.lib.php:27 setup/frames/index.inc.php:112 msgid "Name" msgstr "Namn" -#: libraries/db_links.inc.php:45 libraries/messages.inc.php:216 +#: libraries/db_links.inc.php:45 libraries/messages.inc.php:212 #, php-format msgid "Database %s has been dropped." msgstr "Databasen %s har tagits bort." #: libraries/db_links.inc.php:57 libraries/db_links.inc.php:58 -#: libraries/db_links.inc.php:59 libraries/messages.inc.php:234 +#: libraries/db_links.inc.php:59 libraries/messages.inc.php:230 msgid "Database seems to be empty!" msgstr "Databasen verkar vara tom!" -#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1025 +#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1021 #: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60 #: querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1152 +#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1148 #: libraries/tbl_links.inc.php:69 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:86 libraries/messages.inc.php:719 +#: libraries/db_links.inc.php:86 libraries/messages.inc.php:715 msgid "Query" msgstr "Skapa fråga" -#: libraries/db_links.inc.php:91 libraries/messages.inc.php:253 +#: libraries/db_links.inc.php:91 libraries/messages.inc.php:249 msgid "Designer" msgstr "Designer" -#: libraries/db_links.inc.php:98 libraries/messages.inc.php:397 +#: libraries/db_links.inc.php:98 libraries/messages.inc.php:393 #: libraries/server_links.inc.php:88 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:104 libraries/messages.inc.php:587 +#: libraries/db_links.inc.php:104 libraries/messages.inc.php:583 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" msgstr "Operationer" -#: libraries/db_links.inc.php:111 libraries/messages.inc.php:709 +#: libraries/db_links.inc.php:111 libraries/messages.inc.php:705 #: libraries/server_links.inc.php:66 server_privileges.php:72 #: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117 msgid "Privileges" msgstr "Privilegier" #: libraries/db_routines.inc.php:30 libraries/db_routines.inc.php:32 -#: libraries/messages.inc.php:812 +#: libraries/messages.inc.php:808 msgid "Routines" msgstr "Rutiner" -#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:811 +#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:807 msgid "Return type" msgstr "Returtyp" #: libraries/db_structure.lib.php:57 libraries/display_tbl.lib.php:1848 -#: libraries/messages.inc.php:65 +#: libraries/messages.inc.php:61 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "Kan vara ungefärligt. Se FAQ 3.11" -#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:593 +#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:589 #: server_databases.php:142 tbl_printview.php:336 tbl_structure.php:683 msgid "Overhead" msgstr "Outnyttjat" #: libraries/dbi/mysql.dbi.lib.php:112 libraries/dbi/mysqli.dbi.lib.php:124 -#: libraries/messages.inc.php:176 +#: libraries/messages.inc.php:172 msgid "Connection for controluser as defined in your configuration failed." msgstr "Uppkoppling för controluser enligt din konfiguration misslyckades." #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 -#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:855 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:851 msgid "The server is not responding" msgstr "Servern svarar inte" #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:1010 +#: libraries/messages.inc.php:1006 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 libraries/messages.inc.php:255 +#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:251 #: tbl_structure.php:609 msgid "Details..." msgstr "Detaljer..." -#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:143 +#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:139 #: main.php:91 user_password.php:111 user_password.php:129 msgid "Change password" msgstr "Byt lösenord" -#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:561 +#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:557 #: libraries/replication_gui.lib.php:341 server_privileges.php:768 msgid "No Password" msgstr "Inget lösenord" -#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:610 +#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:606 #: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60 #: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335 #: libraries/replication_gui.lib.php:345 server_privileges.php:757 @@ -2079,13 +2089,13 @@ msgstr "Inget lösenord" msgid "Password" msgstr "Lösenord" -#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:806 +#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:802 #: libraries/replication_gui.lib.php:349 libraries/replication_gui.lib.php:352 #: server_privileges.php:776 server_privileges.php:779 msgid "Re-type" msgstr "Skriv igen" -#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:608 +#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:604 msgid "Password Hashing" msgstr "Hashning av lösenord" @@ -2095,89 +2105,89 @@ msgstr "Hashning av lösenord" msgid "MySQL 4.0 compatible" msgstr "Kompatibel med MySQL 4.0" -#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:353 +#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:349 #: libraries/replication_gui.lib.php:356 server_privileges.php:783 msgid "Generate Password" msgstr "Generera lösenord" -#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:352 +#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:348 #: libraries/replication_gui.lib.php:359 server_privileges.php:786 msgid "Generate" msgstr "Generera" #: libraries/display_create_database.lib.php:22 -#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:189 +#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:185 msgid "Create new database" msgstr "Skapa ny databas" -#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:185 +#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:181 msgid "Create" msgstr "Skapa" -#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:564 +#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:560 #: server_privileges.php:74 server_privileges.php:1388 #: server_replication.php:35 msgid "No Privileges" msgstr "Inga privilegier" -#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:445 +#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:441 msgid "Table must have at least one field." msgstr "Tabell måste ha åtminstone ett fält." -#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:190 +#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:186 #, php-format msgid "Create table on database %s" msgstr "Skapa ny tabell i databas %s" -#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:577 +#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:573 msgid "Number of fields" msgstr "Antal fält" -#: libraries/display_export.lib.php:42 libraries/messages.inc.php:124 +#: libraries/display_export.lib.php:42 libraries/messages.inc.php:120 msgid "Could not load export plugins, please check your installation!" msgstr "Kunde inte ladda export-tillägg. Kontrollera din installation." -#: libraries/display_export.lib.php:107 libraries/messages.inc.php:277 +#: libraries/display_export.lib.php:107 libraries/messages.inc.php:273 #, php-format msgid "Dump %s row(s) starting at record # %s" msgstr "Visa %s rader med början på rad %s." -#: libraries/display_export.lib.php:115 libraries/messages.inc.php:274 +#: libraries/display_export.lib.php:115 libraries/messages.inc.php:270 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:125 libraries/messages.inc.php:852 +#: libraries/display_export.lib.php:125 libraries/messages.inc.php:848 #: setup/lib/messages.inc.php:82 msgid "Save as file" msgstr "Spara som fil" -#: libraries/display_export.lib.php:134 libraries/messages.inc.php:828 +#: libraries/display_export.lib.php:134 libraries/messages.inc.php:824 #, php-format msgid "Save on server in %s directory" msgstr "Spara på servern i katalogen %s" -#: libraries/display_export.lib.php:142 libraries/messages.inc.php:594 +#: libraries/display_export.lib.php:142 libraries/messages.inc.php:590 #: setup/lib/messages.inc.php:90 msgid "Overwrite existing file(s)" msgstr "Skriv över befintlig fil(er)" -#: libraries/display_export.lib.php:148 libraries/messages.inc.php:330 +#: libraries/display_export.lib.php:148 libraries/messages.inc.php:326 msgid "File name template" msgstr "Mall för filnamn" -#: libraries/display_export.lib.php:152 libraries/messages.inc.php:327 +#: libraries/display_export.lib.php:152 libraries/messages.inc.php:323 msgid "server name" msgstr "servernamn" -#: libraries/display_export.lib.php:155 libraries/messages.inc.php:326 +#: libraries/display_export.lib.php:155 libraries/messages.inc.php:322 msgid "database name" msgstr "databasnamn" -#: libraries/display_export.lib.php:158 libraries/messages.inc.php:328 +#: libraries/display_export.lib.php:158 libraries/messages.inc.php:324 msgid "table name" msgstr "tabellnamn" -#: libraries/display_export.lib.php:162 libraries/messages.inc.php:329 +#: libraries/display_export.lib.php:162 libraries/messages.inc.php:325 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2188,24 +2198,24 @@ msgstr "" "tidsformatering. Dessutom kommer följande omvandlingar att ske: %3$s. Övrig " "text behålls som den är." -#: libraries/display_export.lib.php:202 libraries/messages.inc.php:331 +#: libraries/display_export.lib.php:202 libraries/messages.inc.php:327 msgid "remember template" msgstr "kom ihåg mall" #: libraries/display_export.lib.php:210 libraries/display_import.lib.php:178 -#: libraries/display_import.lib.php:191 libraries/messages.inc.php:145 +#: libraries/display_import.lib.php:191 libraries/messages.inc.php:141 #: libraries/sql_query_form.lib.php:549 msgid "Character set of the file:" msgstr "Filens teckenuppsättning:" -#: libraries/display_export.lib.php:235 libraries/messages.inc.php:166 +#: libraries/display_export.lib.php:235 libraries/messages.inc.php:162 #: setup/lib/messages.inc.php:84 msgid "Compression" 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/messages.inc.php:558 +#: libraries/export/sql.php:868 libraries/messages.inc.php:554 #: libraries/tbl_properties.inc.php:575 server_privileges.php:1836 #: server_processlist.php:75 msgid "None" @@ -2229,11 +2239,11 @@ msgstr "\"gzippad\"" msgid "bzipped" msgstr "\"bzippad\"" -#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1018 +#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1014 msgid "SQL compatibility mode" msgstr "SQL-kompatibilitet" -#: libraries/display_import.lib.php:67 libraries/messages.inc.php:398 +#: libraries/display_import.lib.php:67 libraries/messages.inc.php:394 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " @@ -2243,11 +2253,11 @@ msgstr "" "eller så är detta än känd bugg i webkit-baserade webbläsare (Safari, Google " "Chrome, Arora etc.)." -#: libraries/display_import.lib.php:77 libraries/messages.inc.php:406 +#: libraries/display_import.lib.php:77 libraries/messages.inc.php:402 msgid "The file is being processed, please be patient." msgstr "Filen bearbetas, vänligen vänta." -#: libraries/display_import.lib.php:99 libraries/messages.inc.php:408 +#: libraries/display_import.lib.php:99 libraries/messages.inc.php:404 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." @@ -2255,39 +2265,39 @@ msgstr "" "Var god vänta, filen håller på att laddas upp. Detaljer om denna uppladdning " "är inte tillgängliga." -#: libraries/display_import.lib.php:126 libraries/messages.inc.php:333 +#: libraries/display_import.lib.php:126 libraries/messages.inc.php:329 msgid "File to import" msgstr "Fil att importera" -#: libraries/display_import.lib.php:137 libraries/messages.inc.php:486 +#: libraries/display_import.lib.php:137 libraries/messages.inc.php:482 #: libraries/sql_query_form.lib.php:524 msgid "Location of the text file" msgstr "Textfilens plats" -#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1203 +#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1199 msgid "File uploads are not allowed on this server." msgstr "Filuppladdningar är inte tillåtna på denna server." -#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1235 +#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1231 #: libraries/sql_query_form.lib.php:533 tbl_change.php:1028 msgid "The directory you set for upload work cannot be reached" msgstr "Katalogen som du konfigurerat för uppladdning kan inte nås" -#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1236 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1232 #: libraries/sql_query_form.lib.php:536 tbl_change.php:1031 msgid "web server upload directory" msgstr "Uppladdningskatalog på webbserver" -#: libraries/display_import.lib.php:212 libraries/messages.inc.php:167 +#: libraries/display_import.lib.php:212 libraries/messages.inc.php:163 #, php-format msgid "Imported file compression will be automatically detected from: %s" msgstr "Importerad fils komprimering kommer automatiskt detekteras från: %s" -#: libraries/display_import.lib.php:219 libraries/messages.inc.php:600 +#: libraries/display_import.lib.php:219 libraries/messages.inc.php:596 msgid "Partial import" msgstr "Partiell import" -#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1105 +#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1101 #, php-format msgid "" "Previous import timed out, after resubmitting will continue from position %d." @@ -2295,7 +2305,7 @@ msgstr "" "Tidsbegränsningen överskreds vid föregående import. Efter återupptagning av " "importen kommer den fortsätta från position %d." -#: libraries/display_import.lib.php:232 libraries/messages.inc.php:51 +#: libraries/display_import.lib.php:232 libraries/messages.inc.php:47 msgid "" "Allow the interruption of an import in case the script detects it is close " "to the PHP timeout limit. This might be good way to import large files, " @@ -2305,178 +2315,178 @@ msgstr "" "tidsbegränsningen. Detta kan vara ett bra sätt att importera stora filer, " "men det kan bryta transaktioner." -#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1004 +#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1000 #: setup/lib/messages.inc.php:161 msgid "Number of records (queries) to skip from start" msgstr "Antal poster (frågor) att hoppa över från början" -#: libraries/display_import.lib.php:255 libraries/messages.inc.php:396 +#: libraries/display_import.lib.php:255 libraries/messages.inc.php:392 #: setup/lib/messages.inc.php:160 msgid "Format of imported file" msgstr "Format på importerad fil" #: libraries/display_select_lang.lib.php:45 -#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:465 +#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:461 #: setup/frames/index.inc.php:70 msgid "Language" msgstr "Språk" -#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:447 +#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:443 #, php-format msgid "%d is not valid row number." msgstr "%d är inte ett giltigt radnummer." -#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:814 +#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:810 msgid "row(s) starting from record #" msgstr "rader med början från" -#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:817 +#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:813 msgid "horizontal" msgstr "vågrätt" -#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:816 +#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:812 msgid "horizontal (rotated headers)" msgstr "vågrätt (roterade rubriker)" -#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:819 +#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:815 msgid "vertical" msgstr "lodrätt" -#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:818 +#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:814 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "i %s format och upprepa rubrikerna efter %s celler" -#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:495 +#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:491 msgid "This operation could take a long time. Proceed anyway?" msgstr "Denna operation kan ta lång tid. Försätt ändå?" -#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1012 +#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1008 msgid "Sort by key" msgstr "Sortera efter nyckel" #: libraries/display_tbl.lib.php:555 libraries/import.lib.php:1082 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:591 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:587 #: tbl_select.php:267 tbl_structure.php:754 msgid "Options" msgstr "Alternativ" #: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:570 -#: libraries/messages.inc.php:601 +#: libraries/messages.inc.php:597 msgid "Partial Texts" msgstr "Avkortade texter" #: libraries/display_tbl.lib.php:561 libraries/display_tbl.lib.php:574 -#: libraries/messages.inc.php:346 +#: libraries/messages.inc.php:342 msgid "Full Texts" msgstr "Fullständiga texter" -#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:739 +#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:735 msgid "Relational key" msgstr "Relationsnyckel" -#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:738 +#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:734 msgid "Relational display field" msgstr "Visningsfält för relation" -#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:872 +#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:868 msgid "Show binary contents" msgstr "Visa binärt innehåll" -#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:873 +#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:869 msgid "Show BLOB contents" msgstr "Visa BLOB-innehåll" -#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:871 +#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:867 #, fuzzy msgid "Show binary contents as HEX" msgstr "Visa binärt innehåll" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:375 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:371 #: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320 msgid "Hide" msgstr "Dölj" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:508 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:504 #: libraries/tbl_properties.inc.php:144 transformation_overview.php:47 msgid "Browser transformation" msgstr "Webbläsaromvandling" #: libraries/display_tbl.lib.php:1126 libraries/display_tbl.lib.php:1130 -#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:308 +#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:304 msgid "Execute bookmarked query" msgstr "Utför bokmärkt fråga" #: libraries/display_tbl.lib.php:1145 libraries/display_tbl.lib.php:1157 -#: libraries/messages.inc.php:244 +#: libraries/messages.inc.php:240 msgid "The row has been deleted" msgstr "Raden har raderats" #: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056 -#: libraries/messages.inc.php:460 server_processlist.php:71 +#: libraries/messages.inc.php:456 server_processlist.php:71 #: tbl_row_action.php:64 msgid "Kill" msgstr "Döda" -#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:849 +#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:845 msgid "in query" msgstr "i fråga" -#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:881 +#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:877 msgid "Showing rows" msgstr "Visar rader " -#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1113 +#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1109 msgid "total" msgstr "totalt" -#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:727 +#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:723 #: sql.php:524 #, php-format msgid "Query took %01.4f sec" msgstr "Frågan tog %01.4f sek" -#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:135 +#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:131 #: 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:471 msgid "Change" msgstr "Ändra" -#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:724 +#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:720 msgid "Query results operations" msgstr "Operationer för frågeresultat" -#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:671 +#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:667 msgid "Print view (with full texts)" msgstr "Utskriftsvänlig visning (med fullständiga texter)" -#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:482 +#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:478 msgid "Link not found" msgstr "Länk ej funnen" -#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1224 +#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1220 #: main.php:228 msgid "Version information" msgstr "Versionsinformation" -#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:423 +#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:419 msgid "Data home directory" msgstr "Hemkatalog för data" -#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:424 +#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:420 msgid "The common part of the directory path for all InnoDB data files." msgstr "Den gemensamma delen av sökvägen för alla InnoDB-datafiler." -#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:422 +#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:418 msgid "Data files" msgstr "Datafiler" -#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:418 +#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:414 msgid "Autoextend increment" msgstr "Automatisk utökningsstorlek" -#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:419 +#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:415 msgid "" " The increment size for extending the size of an autoextending tablespace " "when it becomes full." @@ -2484,11 +2494,11 @@ msgstr "" "Tillökningsstorleken vid automatisk utökning av tabellutrymme när det blir " "fullt." -#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:420 +#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:416 msgid "Buffer pool size" msgstr "Buffertstorlek" -#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:421 +#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:417 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." @@ -2496,87 +2506,87 @@ msgstr "" "Storleken på minnesbufferten som InnoDB använder för cache av data och index " "till sina tabeller." -#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:112 +#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:108 msgid "Buffer Pool" msgstr "Buffertutrymme" -#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:426 +#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:422 #: server_status.php:306 msgid "InnoDB Status" msgstr "InnoDB-status" -#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:113 +#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:109 msgid "Buffer Pool Usage" msgstr "Buffertanvändning" -#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1114 +#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1110 #: server_databases.php:137 server_databases.php:305 server_status.php:414 #: server_status.php:475 server_status.php:496 tbl_printview.php:351 #: tbl_structure.php:697 msgid "Total" msgstr "Totalt" -#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:425 +#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:421 msgid "pages" msgstr "sidor" -#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:343 +#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:339 msgid "Free pages" msgstr "Fria sidor" -#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:259 +#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:255 msgid "Dirty pages" msgstr "Orena sidor" -#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:230 +#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:226 msgid "Pages containing data" msgstr "Sidor innehållande data" -#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:598 +#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:594 msgid "Pages to be flushed" msgstr "Sidor att rensa" -#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:119 +#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:115 msgid "Busy pages" msgstr "Upptagna sidor" -#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:467 +#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:463 msgid "Latched pages" msgstr "Låsta sidor" -#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:111 +#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:107 msgid "Buffer Pool Activity" msgstr "Buffertaktivitet" -#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:731 +#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:727 msgid "Read requests" msgstr "Läsefterfrågningar" -#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1244 +#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1240 msgid "Write requests" msgstr "Skrivefterfrågningar" -#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:115 +#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:111 msgid "Read misses" msgstr "Läsmissar" -#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:117 +#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:113 msgid "Write waits" msgstr "Skrivväntanden" -#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:114 +#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:110 msgid "Read misses in %" msgstr "Läsmissar i %" -#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:116 +#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:112 msgid "Write waits in %" msgstr "Skrivväntanden i %" -#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:522 +#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:518 msgid "Data pointer size" msgstr "Storlek för datapekare" -#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:523 +#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:519 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." @@ -2584,11 +2594,11 @@ msgstr "" "Standardpekarens storlek i bytes, vilken används av CREATE TABLE för MyISAM-" "tabeller när inget MAX_ROWS-alternativ är specificerat." -#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:528 +#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:524 msgid "Automatic recovery mode" msgstr "Automatisk återställning" -#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:529 +#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:525 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." @@ -2596,11 +2606,11 @@ msgstr "" "Inställningen för automatisk återställning av kraschade MyISAM-tabeller, som " "satts via serverns startparameter --myisam-recover." -#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:527 +#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:523 msgid "Maximum size for temporary sort files" msgstr "Maximal storlek för temporära sorteringsfiler" -#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:526 +#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:522 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " @@ -2610,11 +2620,11 @@ msgstr "" "använda under återskapande av MyISAM-index (vid REPAIR TABLE, ALTER TABLE, " "eller LOAD DATA INFILE)." -#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:525 +#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:521 msgid "Maximum size for temporary files on index creation" msgstr "Maximal storlek för temporära filer vid skapande av index" -#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:524 +#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:520 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " @@ -2624,11 +2634,11 @@ msgstr "" "skulle vara större än att använda nyckelcachen vars storlek specificeras " "här, så föredras metoden med nyckelcachen." -#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:531 +#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:527 msgid "Repair threads" msgstr "Reparera trådar" -#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:530 +#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:526 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." @@ -2636,11 +2646,11 @@ msgstr "" "Om detta värde är större än 1 skapas MyISAM-tabellindex parallellt (varje " "index i sin egen tråd) under reparationen vid sorteringsprocess." -#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:533 +#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:529 msgid "Sort buffer size" msgstr "Storlek för sorteringsbuffert" -#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:532 +#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:528 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." @@ -2648,11 +2658,11 @@ msgstr "" "Bufferten som allokeras vid sortering av MyISAM-index under REPAIR TABLE " "eller vid skapande av index med CREATE INDEX eller ALTER TABLE." -#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:620 +#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:616 msgid "Index cache size" msgstr "Cachestorlek för index" -#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:619 +#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:615 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." @@ -2660,11 +2670,11 @@ msgstr "" "Detta är mängden minne som allokeras för indexcachen. Standardvärdet är " "32MB. Minnet som allokeras här används endast för cache av indexsidor." -#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:630 +#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:626 msgid "Record cache size" msgstr "Cachestorlek för rad" -#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:629 +#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:625 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " @@ -2674,11 +2684,11 @@ msgstr "" "tabelldata. Standardvärdet är 32MB. Detta minne används för att cacha " "ändringar i filer för hanteringsdata (.xtd) och radpekare (.xtr)." -#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:624 +#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:620 msgid "Log cache size" msgstr "Cachestorlek för logg" -#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:623 +#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:619 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." @@ -2686,11 +2696,11 @@ msgstr "" "Mängden minne som allokeras för transaktionsloggcachen som används för cache " "av transaktionsloggdata. Standardvärdet är 16MB." -#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:628 +#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:624 msgid "Log file threshold" msgstr "Gräns för loggfil" -#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:627 +#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:623 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." @@ -2698,11 +2708,11 @@ msgstr "" "Storleken på en transaktionslogg före övergång då en ny logg skapas. " "Standardvärdet är 16MB." -#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:634 +#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:630 msgid "Transaction buffer size" msgstr "Transactionsbufferstorlek" -#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:633 +#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:629 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." @@ -2710,11 +2720,11 @@ msgstr "" "Storleken på den globala transaktionsloggbuffern (motorn allokerar 2 buffrar " "med denna storlek). Standardvärdet är 1MB." -#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:611 +#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:607 msgid "Checkpoint frequency" msgstr "Frekvens för kontrollpunkt" -#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:612 +#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:608 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." @@ -2722,11 +2732,11 @@ msgstr "" "Mängden data som skrivs till transaktionsloggen innan en kontrollpunkt " "utförs. Standardvärdet är 24MB." -#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:615 +#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:611 msgid "Data log threshold" msgstr "Gräns för datalogg" -#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:616 +#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:612 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -2738,11 +2748,11 @@ msgstr "" "värde kan ökas för att öka den totala mängden data som kan lagras i " "databasen." -#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:618 +#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:614 msgid "Garbage threshold" msgstr "Gräns för skräp" -#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:617 +#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:613 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." @@ -2750,11 +2760,11 @@ msgstr "" "Andelen skräp i en dataloggfil innan den komprimeras. Detta är ett värde " "mellan 1 och 99. Standardvärdet är 50." -#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:622 +#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:618 msgid "Log buffer size" msgstr "Bufferstolek för logg" -#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:621 +#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:617 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " @@ -2764,27 +2774,27 @@ msgstr "" "256MB. Motorn allokerar en buffer per tråd, men endast om tråden behöver " "skriva en datalogg." -#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:613 +#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:609 msgid "Data file grow size" msgstr "Växstorlek för datafil" -#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:614 +#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:610 msgid "The grow size of the handle data (.xtd) files." msgstr "Storleken med vilken filer för hanteringsdata (.xtd) växer." -#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:632 +#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:628 msgid "Row file grow size" msgstr "Växstorlek för radfil" -#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:631 +#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:627 msgid "The grow size of the row pointer (.xtr) files." msgstr "Storleken med vilken filer för radpekare (.xtr) växer." -#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:626 +#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:622 msgid "Log file count" msgstr "Antal loggfiler" -#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:625 +#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:621 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -2797,19 +2807,19 @@ msgstr "" #: libraries/export/htmlword.php:132 libraries/export/odt.php:168 #: libraries/export/sql.php:881 libraries/export/texytext.php:130 -#: libraries/messages.inc.php:275 +#: libraries/messages.inc.php:271 msgid "Dumping data for table" msgstr "Data i tabell" #: libraries/export/htmlword.php:185 libraries/export/odt.php:238 #: libraries/export/sql.php:785 libraries/export/texytext.php:177 -#: libraries/messages.inc.php:1086 +#: libraries/messages.inc.php:1082 msgid "Table structure for table" msgstr "Struktur för tabell" #: libraries/export/latex.php:125 libraries/export/sql.php:232 #: libraries/export/xml.php:102 libraries/header_printview.inc.php:57 -#: libraries/messages.inc.php:381 libraries/replication_gui.lib.php:63 +#: libraries/messages.inc.php:377 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:170 libraries/replication_gui.lib.php:265 #: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325 #: server_privileges.php:692 server_privileges.php:695 @@ -2821,187 +2831,187 @@ msgstr "Värd" #: libraries/export/latex.php:130 libraries/export/sql.php:233 #: libraries/export/xml.php:107 libraries/header_printview.inc.php:59 -#: libraries/messages.inc.php:354 +#: libraries/messages.inc.php:350 msgid "Generation Time" msgstr "Skapad" #: libraries/export/latex.php:131 libraries/export/sql.php:235 -#: libraries/export/xml.php:108 libraries/messages.inc.php:864 main.php:186 +#: libraries/export/xml.php:108 libraries/messages.inc.php:860 main.php:186 msgid "Server version" msgstr "Serverversion" #: libraries/export/latex.php:132 libraries/export/sql.php:236 -#: libraries/export/xml.php:109 libraries/messages.inc.php:651 +#: libraries/export/xml.php:109 libraries/messages.inc.php:647 msgid "PHP Version" msgstr "PHP-version" #: libraries/export/latex.php:201 libraries/export/sql.php:868 -#: libraries/messages.inc.php:226 server_databases.php:127 +#: libraries/messages.inc.php:222 server_databases.php:127 #: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317 #: tbl_structure.php:666 msgid "Data" msgstr "Data" -#: libraries/export/odt.php:318 libraries/messages.inc.php:506 +#: libraries/export/odt.php:318 libraries/messages.inc.php:502 #: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "MIME-typ" -#: libraries/export/sql.php:387 libraries/messages.inc.php:711 +#: libraries/export/sql.php:387 libraries/messages.inc.php:707 msgid "Procedures" msgstr "Procedurer" -#: libraries/export/sql.php:401 libraries/messages.inc.php:348 +#: libraries/export/sql.php:401 libraries/messages.inc.php:344 msgid "Functions" msgstr "Funktioner" -#: libraries/export/sql.php:618 libraries/messages.inc.php:174 +#: libraries/export/sql.php:618 libraries/messages.inc.php:170 msgid "Constraints for dumped tables" msgstr "Restriktioner för dumpade tabeller" -#: libraries/export/sql.php:627 libraries/messages.inc.php:175 +#: libraries/export/sql.php:627 libraries/messages.inc.php:171 msgid "Constraints for table" msgstr "Restriktioner för tabell" -#: libraries/export/sql.php:727 libraries/messages.inc.php:512 +#: libraries/export/sql.php:727 libraries/messages.inc.php:508 msgid "MIME TYPES FOR TABLE" msgstr "MIME-TYPER FÖR TABELL" -#: libraries/export/sql.php:739 libraries/messages.inc.php:743 +#: libraries/export/sql.php:739 libraries/messages.inc.php:739 msgid "RELATIONS FOR TABLE" msgstr "RELATIONER FÖR TABELL" -#: libraries/export/sql.php:796 libraries/messages.inc.php:1178 +#: libraries/export/sql.php:796 libraries/messages.inc.php:1174 #: libraries/tbl_triggers.lib.php:19 msgid "Triggers" msgstr "Utlösare" -#: libraries/export/sql.php:808 libraries/messages.inc.php:1046 +#: libraries/export/sql.php:808 libraries/messages.inc.php:1042 msgid "Structure for view" msgstr "Struktur för visning" -#: libraries/export/sql.php:817 libraries/messages.inc.php:1029 +#: libraries/export/sql.php:817 libraries/messages.inc.php:1025 msgid "Stand-in structure for view" msgstr "Ersättningsstruktur för visning" #: libraries/footer.inc.php:184 libraries/footer.inc.php:195 -#: libraries/footer.inc.php:198 libraries/messages.inc.php:586 +#: libraries/footer.inc.php:198 libraries/messages.inc.php:582 msgid "Open new phpMyAdmin window" msgstr "Öppna nytt phpMyAdmin-fönster" -#: libraries/header.inc.php:115 libraries/messages.inc.php:542 +#: libraries/header.inc.php:115 libraries/messages.inc.php:538 #, fuzzy msgid "New table" msgstr "Inga tabeller" #: libraries/header_printview.inc.php:50 libraries/header_printview.inc.php:55 -#: libraries/messages.inc.php:1024 +#: libraries/messages.inc.php:1020 msgid "SQL result" msgstr "SQL-resultat" -#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:350 +#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:346 msgid "Generated by" msgstr "Genererad av" #: libraries/header_printview.inc.php:63 libraries/import.lib.php:145 -#: libraries/messages.inc.php:820 navigation.php:652 navigation.php:674 +#: libraries/messages.inc.php:816 navigation.php:652 navigation.php:674 #: server_databases.php:122 tbl_printview.php:394 tbl_structure.php:366 #: tbl_structure.php:778 msgid "Rows" msgstr "Rader" -#: libraries/import.lib.php:150 libraries/messages.inc.php:285 sql.php:520 +#: libraries/import.lib.php:150 libraries/messages.inc.php:281 sql.php:520 #: tbl_change.php:181 tbl_get_field.php:35 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL returnerade ett tomt resultat (dvs inga rader)." -#: libraries/import.lib.php:1078 libraries/messages.inc.php:399 +#: libraries/import.lib.php:1078 libraries/messages.inc.php:395 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1079 libraries/messages.inc.php:400 +#: libraries/import.lib.php:1079 libraries/messages.inc.php:396 msgid "View a structure`s contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1080 libraries/messages.inc.php:401 +#: libraries/import.lib.php:1080 libraries/messages.inc.php:397 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1081 libraries/messages.inc.php:402 +#: libraries/import.lib.php:1081 libraries/messages.inc.php:398 msgid "Edit its structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1084 libraries/messages.inc.php:362 +#: libraries/import.lib.php:1084 libraries/messages.inc.php:358 #, fuzzy msgid "Go to database" msgstr "Inga databaser" #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:869 +#: libraries/messages.inc.php:865 msgid "settings" msgstr "" -#: libraries/import.lib.php:1106 libraries/messages.inc.php:363 +#: libraries/import.lib.php:1106 libraries/messages.inc.php:359 #, fuzzy msgid "Go to table" msgstr "Inga databaser" -#: libraries/import.lib.php:1109 libraries/messages.inc.php:1047 +#: libraries/import.lib.php:1109 libraries/messages.inc.php:1043 #, fuzzy msgid "structure" msgstr "Struktur" -#: libraries/import.lib.php:1115 libraries/messages.inc.php:364 +#: libraries/import.lib.php:1115 libraries/messages.inc.php:360 msgid "Go to view" msgstr "" #: libraries/import/csv.php:58 libraries/import/csv.php:70 #: libraries/import/csv.php:74 libraries/import/csv.php:78 -#: libraries/messages.inc.php:442 +#: libraries/messages.inc.php:438 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "Ogiltig parameter för CSV-import: %s" -#: libraries/import/csv.php:59 libraries/messages.inc.php:323 +#: libraries/import/csv.php:59 libraries/messages.inc.php:319 msgid "Fields terminated by" msgstr "Fälten avslutas med" -#: libraries/import/csv.php:71 libraries/messages.inc.php:320 +#: libraries/import/csv.php:71 libraries/messages.inc.php:316 msgid "Fields enclosed by" msgstr "Fälten omges av" -#: libraries/import/csv.php:75 libraries/messages.inc.php:321 +#: libraries/import/csv.php:75 libraries/messages.inc.php:317 msgid "Fields escaped by" msgstr "Specialtecken i fält föregås av" -#: libraries/import/csv.php:79 libraries/messages.inc.php:481 +#: libraries/import/csv.php:79 libraries/messages.inc.php:477 msgid "Lines terminated by" msgstr "Raderna avslutas med" -#: libraries/import/csv.php:119 libraries/messages.inc.php:439 +#: libraries/import/csv.php:119 libraries/messages.inc.php:435 #, php-format msgid "Invalid column (%s) specified!" msgstr "Ogiltig kolumn (%s) angiven!" #: libraries/import/csv.php:177 libraries/import/csv.php:424 -#: libraries/messages.inc.php:441 +#: libraries/messages.inc.php:437 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "Ogiltigt format i CSV-indata på rad %d." -#: libraries/import/csv.php:312 libraries/messages.inc.php:440 +#: libraries/import/csv.php:312 libraries/messages.inc.php:436 #, php-format msgid "Invalid field count in CSV input on line %d." msgstr "Ogiltigt antal fält i CSV-indata på rad %d." -#: libraries/import/ldi.php:55 libraries/messages.inc.php:446 +#: libraries/import/ldi.php:55 libraries/messages.inc.php:442 msgid "This plugin does not support compressed imports!" msgstr "Detta tillägg stöder inte komprimerade importer!" #: libraries/import/xml.php:74 libraries/import/xml.php:130 -#: libraries/messages.inc.php:1247 +#: libraries/messages.inc.php:1243 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -3032,326 +3042,316 @@ msgstr "" msgid "ltr" msgstr "ltr" -#. l10n: Thousands separator -#: libraries/messages.inc.php:21 -msgid "," -msgstr " " - -#. l10n: Decimal separator -#: libraries/messages.inc.php:23 -msgid "." -msgstr "," - -#: libraries/messages.inc.php:25 server_status.php:461 +#: libraries/messages.inc.php:21 server_status.php:461 msgid "Aborted" msgstr "Avbrutna" -#: libraries/messages.inc.php:28 main.php:68 +#: libraries/messages.inc.php:24 main.php:68 msgid "Actions" msgstr "Åtgärder" -#: libraries/messages.inc.php:34 libraries/tbl_properties.inc.php:780 +#: libraries/messages.inc.php:30 libraries/tbl_properties.inc.php:780 #: tbl_structure.php:543 #, php-format msgid "Add %s field(s)" msgstr "Lägg till %s fält" -#: libraries/messages.inc.php:35 +#: libraries/messages.inc.php:31 msgid "Add custom comment into header (\\n splits lines)" msgstr "Lägg till egen kommentar i huvud (\\n delar rader)" -#: libraries/messages.inc.php:36 +#: libraries/messages.inc.php:32 msgid "Add into comments" msgstr "Lägg till i kommentarer" -#: libraries/messages.inc.php:37 tbl_structure.php:541 +#: libraries/messages.inc.php:33 tbl_structure.php:541 msgid "Add new field" msgstr "Lägg till fält" -#: libraries/messages.inc.php:38 server_privileges.php:1886 +#: libraries/messages.inc.php:34 server_privileges.php:1886 msgid "Add privileges on the following database" msgstr "Lägg till privilegier till följande databas" -#: libraries/messages.inc.php:39 server_privileges.php:1907 +#: libraries/messages.inc.php:35 server_privileges.php:1907 msgid "Add privileges on the following table" msgstr "Lägg till privilegier till följande tabell" -#: libraries/messages.inc.php:40 tbl_select.php:288 +#: libraries/messages.inc.php:36 tbl_select.php:288 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Lägg till sökvillkor (uttryck i \"where\"-sats):" -#: libraries/messages.inc.php:41 tbl_indexes.php:251 +#: libraries/messages.inc.php:37 tbl_indexes.php:251 #, php-format msgid "Add to index  %s column(s)" msgstr "Lägg till %s kolumn(er) till index" -#: libraries/messages.inc.php:42 server_privileges.php:1570 +#: libraries/messages.inc.php:38 server_privileges.php:1570 #: server_privileges.php:1594 server_privileges.php:1988 #: server_privileges.php:2177 msgid "Add a new User" msgstr "Lägg till ny användare" -#: libraries/messages.inc.php:43 server_privileges.php:931 +#: libraries/messages.inc.php:39 server_privileges.php:931 msgid "You have added a new user." msgstr "Du har lagt till en ny användare." -#: libraries/messages.inc.php:44 server_privileges.php:571 +#: libraries/messages.inc.php:40 server_privileges.php:571 msgid "Administration" msgstr "Administration" -#: libraries/messages.inc.php:45 tbl_structure.php:557 +#: libraries/messages.inc.php:41 tbl_structure.php:557 #, php-format msgid "After %s" msgstr "Efter %s" -#: libraries/messages.inc.php:46 tbl_change.php:1147 +#: libraries/messages.inc.php:42 tbl_change.php:1147 msgid "Go back to previous page" msgstr "Gå tillbaka till föregående sida" -#: libraries/messages.inc.php:47 tbl_change.php:1148 +#: libraries/messages.inc.php:43 tbl_change.php:1148 msgid "Insert another new row" msgstr "Lägg till ytterligare en ny rad" -#: libraries/messages.inc.php:48 tbl_change.php:1160 +#: libraries/messages.inc.php:44 tbl_change.php:1160 msgid "Edit next row" msgstr "Ändra nästa rad" -#: libraries/messages.inc.php:49 tbl_change.php:1152 +#: libraries/messages.inc.php:45 tbl_change.php:1152 msgid "Go back to this page" msgstr "Gå tillbaka till denna sida" -#: libraries/messages.inc.php:50 querywindow.php:115 +#: libraries/messages.inc.php:46 querywindow.php:115 msgid "All" msgstr "Alla" -#: libraries/messages.inc.php:53 tbl_operations.php:249 +#: libraries/messages.inc.php:49 tbl_operations.php:249 msgid "Alter table order by" msgstr "Sortera om tabellen efter" -#: libraries/messages.inc.php:54 tbl_operations.php:660 +#: libraries/messages.inc.php:50 tbl_operations.php:660 msgid "Analyze" msgstr "Analysera" -#: libraries/messages.inc.php:57 +#: libraries/messages.inc.php:53 msgid "and" msgstr "och" -#: libraries/messages.inc.php:59 pmd_general.php:87 +#: libraries/messages.inc.php:55 pmd_general.php:87 msgid "Angular links" msgstr "Vinklade länkar" -#: libraries/messages.inc.php:60 tbl_structure.php:401 tbl_structure.php:415 +#: libraries/messages.inc.php:56 tbl_structure.php:401 tbl_structure.php:415 #: tbl_structure.php:429 #, php-format msgid "An index has been added on %s" msgstr "Ett index har lagts till för %s" -#: libraries/messages.inc.php:61 server_privileges.php:1521 +#: libraries/messages.inc.php:57 server_privileges.php:1521 #: server_privileges.php:2123 msgid "Any" msgstr "Vem som helst" -#: libraries/messages.inc.php:62 libraries/replication_gui.lib.php:298 +#: libraries/messages.inc.php:58 libraries/replication_gui.lib.php:298 #: server_privileges.php:725 msgid "Any host" msgstr "Vilken värd som helst" -#: libraries/messages.inc.php:63 libraries/replication_gui.lib.php:250 +#: libraries/messages.inc.php:59 libraries/replication_gui.lib.php:250 #: server_privileges.php:677 msgid "Any user" msgstr "Vilken användare som helst" -#: libraries/messages.inc.php:64 server_synchronize.php:449 +#: libraries/messages.inc.php:60 server_synchronize.php:449 #: server_synchronize.php:894 msgid "Apply Selected Changes" msgstr "" -#: libraries/messages.inc.php:66 tbl_structure.php:386 +#: libraries/messages.inc.php:62 tbl_structure.php:386 #, php-format msgid "A primary key has been added on %s" msgstr "En primär nyckel har lagts till för %s" -#: libraries/messages.inc.php:67 libraries/mysql_charsets.lib.php:368 +#: libraries/messages.inc.php:63 libraries/mysql_charsets.lib.php:368 msgid "Arabic" msgstr "Arabisk" -#: libraries/messages.inc.php:68 libraries/mysql_charsets.lib.php:359 +#: libraries/messages.inc.php:64 libraries/mysql_charsets.lib.php:359 msgid "Armenian" msgstr "Armenisk" -#: libraries/messages.inc.php:70 libraries/tbl_properties.inc.php:394 +#: libraries/messages.inc.php:66 libraries/tbl_properties.inc.php:394 msgid "As defined:" msgstr "Enligt angivet:" -#: libraries/messages.inc.php:71 tbl_structure.php:556 +#: libraries/messages.inc.php:67 tbl_structure.php:556 msgid "At Beginning of Table" msgstr "I början av tabellen" -#: libraries/messages.inc.php:72 tbl_structure.php:555 +#: libraries/messages.inc.php:68 tbl_structure.php:555 msgid "At End of Table" msgstr "I slutet av tabellen" -#: libraries/messages.inc.php:73 libraries/tbl_properties.inc.php:108 +#: libraries/messages.inc.php:69 libraries/tbl_properties.inc.php:108 #: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:144 #: tbl_structure.php:180 msgid "Attributes" msgstr "Attribut" -#: libraries/messages.inc.php:74 pdf_pages.php:303 pdf_pages.php:306 +#: libraries/messages.inc.php:70 pdf_pages.php:303 pdf_pages.php:306 msgid "Automatic layout" msgstr "Automatisk layout" -#: libraries/messages.inc.php:77 libraries/mysql_charsets.lib.php:354 +#: libraries/messages.inc.php:73 libraries/mysql_charsets.lib.php:354 msgid "Baltic" msgstr "Baltisk" -#: libraries/messages.inc.php:78 libraries/sqlparser.lib.php:175 +#: libraries/messages.inc.php:74 libraries/sqlparser.lib.php:175 msgid "BEGIN CUT" msgstr "START URKLIPP" -#: libraries/messages.inc.php:79 libraries/sqlparser.lib.php:179 +#: libraries/messages.inc.php:75 libraries/sqlparser.lib.php:179 msgid "BEGIN RAW" msgstr "START RÅTEXT" -#: libraries/messages.inc.php:80 libraries/mysql_charsets.lib.php:201 +#: libraries/messages.inc.php:76 libraries/mysql_charsets.lib.php:201 #: libraries/mysql_charsets.lib.php:402 tbl_change.php:518 msgid "Binary" msgstr "Binär" -#: libraries/messages.inc.php:81 tbl_change.php:894 +#: libraries/messages.inc.php:77 tbl_change.php:894 msgid "Binary - do not edit" msgstr "Binär - ändra inte" -#: libraries/messages.inc.php:82 libraries/server_links.inc.php:76 +#: libraries/messages.inc.php:78 libraries/server_links.inc.php:76 #: server_binlog.php:110 server_status.php:253 test/theme.php:121 msgid "Binary log" msgstr "Binär logg" -#: libraries/messages.inc.php:83 server_binlog.php:217 +#: libraries/messages.inc.php:79 server_binlog.php:217 msgid "Event type" msgstr "Typ av händelse" -#: libraries/messages.inc.php:84 server_binlog.php:220 +#: libraries/messages.inc.php:80 server_binlog.php:220 msgid "Information" msgstr "Information" -#: libraries/messages.inc.php:85 server_binlog.php:215 +#: libraries/messages.inc.php:81 server_binlog.php:215 msgid "Log name" msgstr "Loggnamn" -#: libraries/messages.inc.php:86 server_binlog.php:219 +#: libraries/messages.inc.php:82 server_binlog.php:219 msgid "Original position" msgstr "Ursprunglig position" -#: libraries/messages.inc.php:87 server_binlog.php:216 +#: libraries/messages.inc.php:83 server_binlog.php:216 msgid "Position" msgstr "Position" -#: libraries/messages.inc.php:88 libraries/replication_gui.lib.php:169 +#: libraries/messages.inc.php:84 libraries/replication_gui.lib.php:169 #: server_binlog.php:218 msgid "Server ID" msgstr "Server-ID" -#: libraries/messages.inc.php:92 +#: libraries/messages.inc.php:88 #, fuzzy msgctxt "$strBLOBRepositoryDisabled" msgid "Disabled" msgstr "Inaktiverad" -#: libraries/messages.inc.php:95 +#: libraries/messages.inc.php:91 #, fuzzy msgctxt "$strBLOBRepositoryEnabled" msgid "Enabled" msgstr "Aktiverad" -#: libraries/messages.inc.php:97 tbl_change.php:888 +#: libraries/messages.inc.php:93 tbl_change.php:888 msgid "Remove BLOB Repository Reference" msgstr "Ta bort referens till BLOB-förvaringsplats" -#: libraries/messages.inc.php:98 +#: libraries/messages.inc.php:94 #, fuzzy msgctxt "$strBLOBRepositoryRepair" msgid "Repair" msgstr "Reparera" -#: libraries/messages.inc.php:99 tbl_change.php:987 +#: libraries/messages.inc.php:95 tbl_change.php:987 msgid "Upload to BLOB repository" msgstr "Ladda upp till BLOB-förvaringsplats" -#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:359 +#: libraries/messages.inc.php:96 libraries/sql_query_form.lib.php:359 #: sql.php:677 msgid "Let every user access this bookmark" msgstr "Låt varje användare få tillgång till detta bokmärke" -#: libraries/messages.inc.php:103 sql.php:671 +#: libraries/messages.inc.php:99 sql.php:671 msgid "Label" msgstr "Etikett" -#: libraries/messages.inc.php:104 libraries/sql_query_form.lib.php:433 +#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:433 msgid "Bookmarked SQL query" msgstr "Bokmärkt SQL-fråga" -#: libraries/messages.inc.php:105 libraries/sql_query_form.lib.php:365 +#: libraries/messages.inc.php:101 libraries/sql_query_form.lib.php:365 msgid "Replace existing bookmark of same name" msgstr "Ersätt befintligt bokmärke med samma namn" -#: libraries/messages.inc.php:106 libraries/sql_query_form.lib.php:352 +#: libraries/messages.inc.php:102 libraries/sql_query_form.lib.php:352 #: sql.php:665 sql.php:666 sql.php:683 msgid "Bookmark this SQL query" msgstr "Skapa bokmärke för den här SQL-frågan" -#: libraries/messages.inc.php:107 libraries/sql_query_form.lib.php:466 +#: libraries/messages.inc.php:103 libraries/sql_query_form.lib.php:466 msgid "View only" msgstr "Visa endast" -#: libraries/messages.inc.php:109 tbl_structure.php:161 +#: libraries/messages.inc.php:105 tbl_structure.php:161 msgid "Browse distinct values" msgstr "Visa distinkta värden" -#: libraries/messages.inc.php:110 tbl_change.php:252 tbl_select.php:27 +#: libraries/messages.inc.php:106 tbl_change.php:252 tbl_select.php:27 #: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34 msgid "Browse foreign values" msgstr "Visa främmande värden" -#: libraries/messages.inc.php:118 libraries/mysql_charsets.lib.php:213 +#: libraries/messages.inc.php:114 libraries/mysql_charsets.lib.php:213 msgid "Bulgarian" msgstr "Bulgarisk" -#: libraries/messages.inc.php:120 +#: libraries/messages.inc.php:116 msgid "\"bzipped\"" msgstr "\"bzippad\"" -#: libraries/messages.inc.php:122 +#: libraries/messages.inc.php:118 msgid "Calendar" msgstr "Kalender" -#: libraries/messages.inc.php:129 tbl_indexes.php:75 +#: libraries/messages.inc.php:125 tbl_indexes.php:75 msgid "Can't rename index to PRIMARY!" msgstr "Kan inte byta namn på index till \"PRIMARY\"!" -#: libraries/messages.inc.php:132 libraries/mysql_charsets.lib.php:223 +#: libraries/messages.inc.php:128 libraries/mysql_charsets.lib.php:223 #: libraries/mysql_charsets.lib.php:409 msgid "case-insensitive" msgstr "skiftlägesokänsligt" -#: libraries/messages.inc.php:133 libraries/mysql_charsets.lib.php:226 +#: libraries/messages.inc.php:129 libraries/mysql_charsets.lib.php:226 #: libraries/mysql_charsets.lib.php:411 msgid "case-sensitive" msgstr "skiftlägeskänsligt" -#: libraries/messages.inc.php:134 libraries/mysql_charsets.lib.php:332 +#: libraries/messages.inc.php:130 libraries/mysql_charsets.lib.php:332 msgid "Central European" msgstr "Centraleuropeisk" -#: libraries/messages.inc.php:136 server_privileges.php:1969 +#: libraries/messages.inc.php:132 server_privileges.php:1969 msgid "... keep the old one." msgstr "... behåll den gamla." -#: libraries/messages.inc.php:137 server_privileges.php:1967 +#: libraries/messages.inc.php:133 server_privileges.php:1967 msgid "Create a new user with the same privileges and ..." msgstr "Skapa en ny användare med samma privilegier och ..." -#: libraries/messages.inc.php:138 server_privileges.php:1972 +#: libraries/messages.inc.php:134 server_privileges.php:1972 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -3359,77 +3359,77 @@ msgstr "" " ... ta bort den gamla från användartabellerna och ladda om privilegierna " "efteråt." -#: libraries/messages.inc.php:139 server_privileges.php:1970 +#: libraries/messages.inc.php:135 server_privileges.php:1970 msgid " ... delete the old one from the user tables." msgstr " ... ta bort den gamla från användartabellerna." -#: libraries/messages.inc.php:140 server_privileges.php:1971 +#: libraries/messages.inc.php:136 server_privileges.php:1971 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." -#: libraries/messages.inc.php:141 server_privileges.php:1964 +#: libraries/messages.inc.php:137 server_privileges.php:1964 msgid "Change Login Information / Copy User" msgstr "Ändra inloggningsinformation / Kopiera användare" -#: libraries/messages.inc.php:144 libraries/mysql_charsets.lib.php:107 +#: libraries/messages.inc.php:140 libraries/mysql_charsets.lib.php:107 msgid "Charset" msgstr "Teckenuppsättning" -#: libraries/messages.inc.php:146 server_collations.php:40 +#: libraries/messages.inc.php:142 server_collations.php:40 msgid "Character Sets and Collations" msgstr "Teckenuppsättningar och kollationeringar" -#: libraries/messages.inc.php:147 libraries/server_links.inc.php:57 +#: libraries/messages.inc.php:143 libraries/server_links.inc.php:57 #: test/theme.php:109 msgid "Charsets" msgstr "Teckenuppsättningar" -#: libraries/messages.inc.php:149 tbl_operations.php:661 +#: libraries/messages.inc.php:145 tbl_operations.php:661 msgid "Check" msgstr "Kontrollera" -#: libraries/messages.inc.php:151 server_databases.php:293 +#: libraries/messages.inc.php:147 server_databases.php:293 #: server_databases.php:294 msgid "Check Privileges" msgstr "Kontrollera privilegier" -#: libraries/messages.inc.php:152 server_databases.php:289 +#: libraries/messages.inc.php:148 server_databases.php:289 #, php-format msgid "Check privileges for database "%s"." msgstr "Kontrollera privilegier för databas "%s"." -#: libraries/messages.inc.php:154 pdf_pages.php:261 +#: libraries/messages.inc.php:150 pdf_pages.php:261 msgid "Please choose a page to edit" msgstr "Välj en sida att redigera" -#: libraries/messages.inc.php:157 +#: libraries/messages.inc.php:153 msgid "Displaying Column Comments" msgstr "Visning av kolumnkommentarer" -#: libraries/messages.inc.php:159 pdf_pages.php:483 view_create.php:148 +#: libraries/messages.inc.php:155 pdf_pages.php:483 view_create.php:148 msgid "Column names" msgstr "Kolumn-namn" -#: libraries/messages.inc.php:160 server_privileges.php:1685 +#: libraries/messages.inc.php:156 server_privileges.php:1685 msgid "Column-specific privileges" msgstr "Kolumnspecifika privilegier" -#: libraries/messages.inc.php:164 +#: libraries/messages.inc.php:160 msgid "MySQL 4.0 compatible" msgstr "Kompatibel med MySQL 4.0" -#: libraries/messages.inc.php:165 +#: libraries/messages.inc.php:161 msgid "Complete inserts" msgstr "Kompletta infogningar" -#: libraries/messages.inc.php:168 +#: libraries/messages.inc.php:164 #, php-format msgid "Could not load default configuration from: \"%1$s\"" msgstr "Kunde inte ladda standardkonfiguration från: \"%1$s\"" -#: libraries/messages.inc.php:169 main.php:306 +#: libraries/messages.inc.php:165 main.php:306 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " @@ -3439,173 +3439,173 @@ msgstr "" "fortfarande i din phpMyAdmin-katalog. Du borde ta bort den när phpMyAdmin " "har konfigurerats." -#: libraries/messages.inc.php:171 pdf_schema.php:672 +#: libraries/messages.inc.php:167 pdf_schema.php:672 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Var god ange koordinaterna för tabellen %s" -#: libraries/messages.inc.php:173 server_status.php:433 +#: libraries/messages.inc.php:169 server_status.php:433 msgid "Connections" msgstr "Uppkopplingar" -#: libraries/messages.inc.php:179 tbl_operations.php:509 +#: libraries/messages.inc.php:175 tbl_operations.php:509 msgid "Copy table to (database.table):" msgstr "Kopiera tabellen till (databas.tabell):" -#: libraries/messages.inc.php:180 tbl_move_copy.php:58 +#: libraries/messages.inc.php:176 tbl_move_copy.php:58 #, php-format msgid "Table %s has been copied to %s." msgstr "Tabellen %s har kopierats till %s." -#: libraries/messages.inc.php:181 tbl_move_copy.php:48 +#: libraries/messages.inc.php:177 tbl_move_copy.php:48 msgid "Can't copy table to same one!" msgstr "Kan inte kopiera tabell till samma namn!" -#: libraries/messages.inc.php:182 server_synchronize.php:94 +#: libraries/messages.inc.php:178 server_synchronize.php:94 #, fuzzy msgid "Could not connect to the source" msgstr "Kunde inte ansluta till MySQL-server" -#: libraries/messages.inc.php:183 server_synchronize.php:97 +#: libraries/messages.inc.php:179 server_synchronize.php:97 #, fuzzy msgid "Could not connect to the target" msgstr "Kunde inte ansluta till MySQL-server" -#: libraries/messages.inc.php:184 server_processlist.php:24 +#: libraries/messages.inc.php:180 server_processlist.php:24 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" "phpMyAdmin kunde inte döda tråd %s. Troligtvis har den redan avslutats." -#: libraries/messages.inc.php:187 +#: libraries/messages.inc.php:183 #, php-format msgid "Create an index on %s columns" msgstr "Skapa ett index för %s kolumn(er)" -#: libraries/messages.inc.php:188 tbl_indexes.php:160 +#: libraries/messages.inc.php:184 tbl_indexes.php:160 msgid "Create a new index" msgstr "Skapa ett nytt index" -#: libraries/messages.inc.php:191 pdf_pages.php:297 pmd_pdf.php:114 +#: libraries/messages.inc.php:187 pdf_pages.php:297 pmd_pdf.php:114 msgid "Create a page" msgstr "Skapa en ny sida" -#: libraries/messages.inc.php:192 +#: libraries/messages.inc.php:188 msgid "Creation of PDFs" msgstr "Skapande av PDF-sidor" -#: libraries/messages.inc.php:193 pmd_general.php:74 pmd_general.php:306 +#: libraries/messages.inc.php:189 pmd_general.php:74 pmd_general.php:306 msgid "Create relation" msgstr "Skapa relation" -#: libraries/messages.inc.php:194 pmd_general.php:71 +#: libraries/messages.inc.php:190 pmd_general.php:71 #: server_synchronize.php:429 server_synchronize.php:872 msgid "Create table" msgstr "Skapa tabell" -#: libraries/messages.inc.php:195 +#: libraries/messages.inc.php:191 #, fuzzy msgctxt "$strCreateTableShort" msgid "Create table" msgstr "Skapa tabell" -#: libraries/messages.inc.php:196 server_privileges.php:1994 +#: libraries/messages.inc.php:192 server_privileges.php:1994 msgid "Database for user" msgstr "Databas för användare" -#: libraries/messages.inc.php:197 server_privileges.php:1999 +#: libraries/messages.inc.php:193 server_privileges.php:1999 msgid "Create database with same name and grant all privileges" msgstr "Skapa databas med samma namn och ge alla privilegier" -#: libraries/messages.inc.php:198 +#: libraries/messages.inc.php:194 #, fuzzy msgctxt "$strCreateUserDatabaseNone" msgid "None" msgstr "Inget" -#: libraries/messages.inc.php:199 server_privileges.php:2003 +#: libraries/messages.inc.php:195 server_privileges.php:2003 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Bevilja alla privilegier för databas "%s"" -#: libraries/messages.inc.php:200 server_privileges.php:2000 +#: libraries/messages.inc.php:196 server_privileges.php:2000 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Ge alla privilegier till namn med jokertecken (username\\_%)" -#: libraries/messages.inc.php:201 +#: libraries/messages.inc.php:197 msgid "Creation/Update/Check dates" msgstr "Skapad/Uppdaterad/Kontrollerad datum" -#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:229 +#: libraries/messages.inc.php:199 libraries/mysql_charsets.lib.php:229 msgid "Croatian" msgstr "Kroatisk" -#: libraries/messages.inc.php:204 +#: libraries/messages.inc.php:200 msgid "CSV" msgstr "CSV" -#: libraries/messages.inc.php:205 libraries/server_synchronize.lib.php:1343 +#: libraries/messages.inc.php:201 libraries/server_synchronize.lib.php:1343 #: libraries/server_synchronize.lib.php:1369 msgid "Current server" msgstr "" -#: libraries/messages.inc.php:206 main.php:159 +#: libraries/messages.inc.php:202 main.php:159 msgid "Custom color" msgstr "Anpassad färg" -#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:365 +#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:365 msgid "Cyrillic" msgstr "Kyrillisk" -#: libraries/messages.inc.php:208 libraries/mysql_charsets.lib.php:232 +#: libraries/messages.inc.php:204 libraries/mysql_charsets.lib.php:232 msgid "Czech" msgstr "Tjeckisk" -#: libraries/messages.inc.php:209 libraries/mysql_charsets.lib.php:383 +#: libraries/messages.inc.php:205 libraries/mysql_charsets.lib.php:383 msgid "Czech-Slovak" msgstr "Tjeckisk-Slovakisk" -#: libraries/messages.inc.php:211 libraries/mysql_charsets.lib.php:235 +#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:235 msgid "Danish" msgstr "Dansk" -#: libraries/messages.inc.php:214 +#: libraries/messages.inc.php:210 msgid "Database export options" msgstr "Exportalternativ för databas" -#: libraries/messages.inc.php:217 server_synchronize.php:122 +#: libraries/messages.inc.php:213 server_synchronize.php:122 #: server_synchronize.php:125 tbl_create.php:82 tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "" -#: libraries/messages.inc.php:219 server_databases.php:63 +#: libraries/messages.inc.php:215 server_databases.php:63 #, php-format msgid "%s databases have been dropped successfully." msgstr "%s databaser har tagits bort." -#: libraries/messages.inc.php:220 libraries/server_synchronize.lib.php:1341 +#: libraries/messages.inc.php:216 libraries/server_synchronize.lib.php:1341 #: server_synchronize.php:1110 #, fuzzy msgid "Source database" msgstr "Sök i databas" -#: libraries/messages.inc.php:221 server_databases.php:88 +#: libraries/messages.inc.php:217 server_databases.php:88 msgid "Databases statistics" msgstr "Databas-statistik" -#: libraries/messages.inc.php:222 server_databases.php:362 +#: libraries/messages.inc.php:218 server_databases.php:362 #: server_databases.php:363 msgid "Disable Statistics" msgstr "Stäng av statistik" -#: libraries/messages.inc.php:223 server_databases.php:358 +#: libraries/messages.inc.php:219 server_databases.php:358 #: server_databases.php:359 msgid "Enable Statistics" msgstr "Slå på statistik" -#: libraries/messages.inc.php:224 server_databases.php:366 +#: libraries/messages.inc.php:220 server_databases.php:366 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -3613,32 +3613,32 @@ msgstr "" "Anm: Att slå på databasstatistik här kan orsaka tung trafik mellan webb- och " "MySQL-servern." -#: libraries/messages.inc.php:225 libraries/server_synchronize.lib.php:1367 +#: libraries/messages.inc.php:221 libraries/server_synchronize.lib.php:1367 #: server_synchronize.php:1112 #, fuzzy msgid "Target database" msgstr "Sök i databas" -#: libraries/messages.inc.php:228 server_synchronize.php:425 +#: libraries/messages.inc.php:224 server_synchronize.php:425 #: server_synchronize.php:868 #, fuzzy msgid "Data Difference" msgstr "Struktur för visning" -#: libraries/messages.inc.php:231 server_synchronize.php:272 +#: libraries/messages.inc.php:227 server_synchronize.php:272 msgid "Data Synchronization" msgstr "" -#: libraries/messages.inc.php:235 server_privileges.php:526 +#: libraries/messages.inc.php:231 server_privileges.php:526 #: server_privileges.php:1679 msgid "Database-specific privileges" msgstr "Databasspecifika privilegier" -#: libraries/messages.inc.php:237 server_privileges.php:2136 +#: libraries/messages.inc.php:233 server_privileges.php:2136 msgid "database-specific" msgstr "databasspecifik" -#: libraries/messages.inc.php:240 libraries/tbl_properties.inc.php:106 +#: libraries/messages.inc.php:236 libraries/tbl_properties.inc.php:106 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" @@ -3646,32 +3646,32 @@ msgstr "" "För standardvärden, ange endast ett enstaka värde, utan bakåtstreck eller " "citattecken, enligt formatet: a" -#: libraries/messages.inc.php:241 tbl_operations.php:589 +#: libraries/messages.inc.php:237 tbl_operations.php:589 msgid "Defragment table" msgstr "Defragmentera tabell" -#: libraries/messages.inc.php:242 +#: libraries/messages.inc.php:238 msgid "Use delayed inserts" msgstr "Använd fördröjda infogningar" -#: libraries/messages.inc.php:245 server_privileges.php:1243 +#: libraries/messages.inc.php:241 server_privileges.php:1243 msgid "No users selected for deleting!" msgstr "Inga användare valda för borttagning!" -#: libraries/messages.inc.php:246 pmd_general.php:372 +#: libraries/messages.inc.php:242 pmd_general.php:372 msgid "Delete relation" msgstr "Ta bort relation" -#: libraries/messages.inc.php:248 server_privileges.php:1232 +#: libraries/messages.inc.php:244 server_privileges.php:1232 #, php-format msgid "Deleting %s" msgstr "Tar bort %s" -#: libraries/messages.inc.php:249 libraries/sql_query_form.lib.php:388 +#: libraries/messages.inc.php:245 libraries/sql_query_form.lib.php:388 msgid "Delimiter" msgstr "Avgränsare" -#: libraries/messages.inc.php:250 pdf_pages.php:506 +#: libraries/messages.inc.php:246 pdf_pages.php:506 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -3679,7 +3679,7 @@ msgstr "" "Nuvarande sida har referenser till tabeller som inte längre existerar. Vill " "du ta bort dessa referenser?" -#: libraries/messages.inc.php:254 pmd_help.php:29 +#: libraries/messages.inc.php:250 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 " @@ -3688,142 +3688,142 @@ msgstr "" "Visningsfältet visas i rosa. För att ange ett fält som visningsfält, klicka " "på ikonen \"Välj fält som ska visas\" och klicka sedan på lämpligt fältnamn." -#: libraries/messages.inc.php:256 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:252 libraries/mysql_charsets.lib.php:247 msgid "dictionary" msgstr "lexikon" -#: libraries/messages.inc.php:257 libraries/server_synchronize.lib.php:1348 +#: libraries/messages.inc.php:253 libraries/server_synchronize.lib.php:1348 msgid "Difference" msgstr "" -#: libraries/messages.inc.php:258 pmd_general.php:87 +#: libraries/messages.inc.php:254 pmd_general.php:87 msgid "Direct links" msgstr "Direkta länkar" -#: libraries/messages.inc.php:261 +#: libraries/messages.inc.php:257 msgid "Disable foreign key checks" msgstr "Stäng av kontroll av främmande nycklar" -#: libraries/messages.inc.php:262 +#: libraries/messages.inc.php:258 msgid "Display Features" msgstr "Visningsfunktionaliteter" -#: libraries/messages.inc.php:263 tbl_select.php:301 +#: libraries/messages.inc.php:259 tbl_select.php:301 msgid "Display order:" msgstr "Visningsordning:" -#: libraries/messages.inc.php:265 tbl_select.php:132 +#: libraries/messages.inc.php:261 tbl_select.php:132 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Utför en \"Query By Example\" (jokertecken: \"%\")" -#: libraries/messages.inc.php:266 +#: libraries/messages.inc.php:262 msgid "DocSQL" msgstr "DocSQL" -#: libraries/messages.inc.php:268 +#: libraries/messages.inc.php:264 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Använd inte AUTO_INCREMENT för nollvärden" -#: libraries/messages.inc.php:273 server_privileges.php:1579 +#: libraries/messages.inc.php:269 server_privileges.php:1579 #: server_privileges.php:1580 server_privileges.php:1581 msgid "Drop the databases that have the same names as the users." msgstr "Ta bort databaserna med samma namn som användarna." -#: libraries/messages.inc.php:278 tbl_printview.php:382 tbl_structure.php:743 +#: libraries/messages.inc.php:274 tbl_printview.php:382 tbl_structure.php:743 msgid "dynamic" msgstr "dynamisk" -#: libraries/messages.inc.php:282 server_privileges.php:1324 +#: libraries/messages.inc.php:278 server_privileges.php:1324 #: server_privileges.php:1610 msgid "Edit Privileges" msgstr "Ändra privilegier" -#: libraries/messages.inc.php:283 tbl_printview.php:341 tbl_structure.php:688 +#: libraries/messages.inc.php:279 tbl_printview.php:341 tbl_structure.php:688 msgid "Effective" msgstr "Effektivt" -#: libraries/messages.inc.php:286 libraries/relation.lib.php:100 +#: libraries/messages.inc.php:282 libraries/relation.lib.php:100 msgid "Enabled" msgstr "Aktiverat" -#: libraries/messages.inc.php:287 +#: libraries/messages.inc.php:283 msgid "Enclose export in a transaction" msgstr "Inneslut export i en transaktion" -#: libraries/messages.inc.php:288 libraries/sqlparser.lib.php:177 +#: libraries/messages.inc.php:284 libraries/sqlparser.lib.php:177 msgid "END CUT" msgstr "SLUT URKLIPP" -#: libraries/messages.inc.php:290 libraries/sqlparser.lib.php:183 +#: libraries/messages.inc.php:286 libraries/sqlparser.lib.php:183 msgid "END RAW" msgstr "SLUT RÅTEXT" -#: libraries/messages.inc.php:293 libraries/server_links.inc.php:61 +#: libraries/messages.inc.php:289 libraries/server_links.inc.php:61 #: test/theme.php:113 msgid "Engines" msgstr "Motorer" -#: libraries/messages.inc.php:295 libraries/mysql_charsets.lib.php:238 +#: libraries/messages.inc.php:291 libraries/mysql_charsets.lib.php:238 msgid "English" msgstr "Engelsk" -#: libraries/messages.inc.php:296 server_privileges.php:393 +#: libraries/messages.inc.php:292 server_privileges.php:393 #: server_privileges.php:535 server_privileges.php:1501 msgid " Note: MySQL privilege names are expressed in English " msgstr " Obs! MySQL privilegiumnamn anges på engelska " -#: libraries/messages.inc.php:298 libraries/zip_extension.lib.php:49 +#: libraries/messages.inc.php:294 libraries/zip_extension.lib.php:49 #: libraries/zip_extension.lib.php:51 libraries/zip_extension.lib.php:66 msgid "Error in ZIP archive:" msgstr "Fel i ZIP-arkiv:" -#: libraries/messages.inc.php:303 libraries/mysql_charsets.lib.php:241 +#: libraries/messages.inc.php:299 libraries/mysql_charsets.lib.php:241 msgid "Esperanto" msgstr "Esperanto" -#: libraries/messages.inc.php:304 libraries/mysql_charsets.lib.php:244 +#: libraries/messages.inc.php:300 libraries/mysql_charsets.lib.php:244 msgid "Estonian" msgstr "Estnisk" -#: libraries/messages.inc.php:305 libraries/tbl_triggers.lib.php:29 +#: libraries/messages.inc.php:301 libraries/tbl_triggers.lib.php:29 msgid "Event" msgstr "Händelse" -#: libraries/messages.inc.php:307 +#: libraries/messages.inc.php:303 msgid "Excel edition" msgstr "Excel-version" -#: libraries/messages.inc.php:311 pmd_pdf.php:85 +#: libraries/messages.inc.php:307 pmd_pdf.php:85 msgid "Export/Import to scale" msgstr "Exportera/importera till skala" -#: libraries/messages.inc.php:313 +#: libraries/messages.inc.php:309 msgid "Extended inserts" msgstr "Utökade infogningar" -#: libraries/messages.inc.php:314 pdf_schema.php:1267 pdf_schema.php:1288 +#: libraries/messages.inc.php:310 pdf_schema.php:1267 pdf_schema.php:1288 #: tbl_printview.php:147 tbl_structure.php:183 tbl_tracking.php:278 msgid "Extra" msgstr "Extra" -#: libraries/messages.inc.php:316 server_status.php:447 +#: libraries/messages.inc.php:312 server_status.php:447 msgid "Failed attempts" msgstr "Misslyckade försök" -#: libraries/messages.inc.php:318 tbl_structure.php:375 +#: libraries/messages.inc.php:314 tbl_structure.php:375 #, php-format msgid "Field %s has been dropped" msgstr "Fältet %s har tagits bort" -#: libraries/messages.inc.php:322 libraries/sql_query_form.lib.php:317 +#: libraries/messages.inc.php:318 libraries/sql_query_form.lib.php:317 msgid "Fields" msgstr "Fält" -#: libraries/messages.inc.php:332 server_binlog.php:136 +#: libraries/messages.inc.php:328 server_binlog.php:136 msgid "Files" msgstr "Filer" -#: libraries/messages.inc.php:334 server_privileges.php:1597 +#: libraries/messages.inc.php:330 server_privileges.php:1597 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -3836,121 +3836,121 @@ 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." -#: libraries/messages.inc.php:335 server_status.php:289 +#: libraries/messages.inc.php:331 server_status.php:289 msgid "Flush query cache" msgstr "Rensa frågecache" -#: libraries/messages.inc.php:336 +#: libraries/messages.inc.php:332 msgid "Flush the table (\"FLUSH\")" msgstr "Rensa tabell" -#: libraries/messages.inc.php:337 server_status.php:271 +#: libraries/messages.inc.php:333 server_status.php:271 msgid "Flush (close) all tables" msgstr "Stäng alla tabeller" -#: libraries/messages.inc.php:339 tbl_relation.php:279 +#: libraries/messages.inc.php:335 tbl_relation.php:279 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "Fel vid skapande av främmande nyckel för %1$s (kontrollera datatyper)" -#: libraries/messages.inc.php:341 setup/lib/messages.inc.php:88 +#: libraries/messages.inc.php:337 setup/lib/messages.inc.php:88 #: tbl_printview.php:376 tbl_structure.php:738 msgid "Format" msgstr "Format" -#: libraries/messages.inc.php:344 server_replication.php:325 +#: libraries/messages.inc.php:340 server_replication.php:325 #, fuzzy msgid "Full start" msgstr "Heltext" -#: libraries/messages.inc.php:345 server_replication.php:325 +#: libraries/messages.inc.php:341 server_replication.php:325 #, fuzzy msgid "Full stop" msgstr "Heltext" -#: libraries/messages.inc.php:347 tbl_change.php:282 tbl_change.php:320 +#: libraries/messages.inc.php:343 tbl_change.php:282 tbl_change.php:320 msgid "Function" msgstr "Funktion" -#: libraries/messages.inc.php:355 libraries/mysql_charsets.lib.php:377 +#: libraries/messages.inc.php:351 libraries/mysql_charsets.lib.php:377 msgid "Georgian" msgstr "Georgisk" -#: libraries/messages.inc.php:356 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:352 libraries/mysql_charsets.lib.php:247 #: libraries/mysql_charsets.lib.php:250 msgid "German" msgstr "Tysk" -#: libraries/messages.inc.php:357 themes.php:42 +#: libraries/messages.inc.php:353 themes.php:42 msgid "Get more themes!" msgstr "Hämta fler teman!" -#: libraries/messages.inc.php:358 server_privileges.php:2134 +#: libraries/messages.inc.php:354 server_privileges.php:2134 msgid "global" msgstr "global" -#: libraries/messages.inc.php:359 server_privileges.php:524 +#: libraries/messages.inc.php:355 server_privileges.php:524 #: server_privileges.php:1500 msgid "Global privileges" msgstr "Globala privilegier" -#: libraries/messages.inc.php:360 server_variables.php:55 +#: libraries/messages.inc.php:356 server_variables.php:55 #: server_variables.php:89 msgid "Global value" msgstr "Globalt värde" -#: libraries/messages.inc.php:365 server_privileges.php:1502 +#: libraries/messages.inc.php:361 server_privileges.php:1502 #: server_privileges.php:1684 server_privileges.php:2033 msgid "Grant" msgstr "Grant" -#: libraries/messages.inc.php:366 libraries/mysql_charsets.lib.php:380 +#: libraries/messages.inc.php:362 libraries/mysql_charsets.lib.php:380 msgid "Greek" msgstr "Grekisk" -#: libraries/messages.inc.php:367 +#: libraries/messages.inc.php:363 msgid "\"gzipped\"" msgstr "\"gzippad\"" -#: libraries/messages.inc.php:369 server_status.php:250 +#: libraries/messages.inc.php:365 server_status.php:250 msgid "Handler" msgstr "Hanterare" -#: libraries/messages.inc.php:370 server_synchronize.php:464 +#: libraries/messages.inc.php:366 server_synchronize.php:464 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: libraries/messages.inc.php:372 libraries/mysql_charsets.lib.php:374 +#: libraries/messages.inc.php:368 libraries/mysql_charsets.lib.php:374 msgid "Hebrew" msgstr "Hebreisk" -#: libraries/messages.inc.php:373 pmd_general.php:83 +#: libraries/messages.inc.php:369 pmd_general.php:83 msgid "Help" msgstr "Hjälp" -#: libraries/messages.inc.php:374 +#: libraries/messages.inc.php:370 msgid "Use hexadecimal for BLOB" msgstr "Använd hexadecimal för BLOB" -#: libraries/messages.inc.php:376 pmd_general.php:120 +#: libraries/messages.inc.php:372 pmd_general.php:120 msgid "Hide/Show all" msgstr "Dölj/visa alla" -#: libraries/messages.inc.php:377 pmd_general.php:124 +#: libraries/messages.inc.php:373 pmd_general.php:124 msgid "Hide/Show Tables with no relation" msgstr "Dölj/visa tabeller utan relationer" -#: libraries/messages.inc.php:378 libraries/navigation_header.inc.php:54 +#: libraries/messages.inc.php:374 libraries/navigation_header.inc.php:54 #: libraries/navigation_header.inc.php:57 #: libraries/navigation_header.inc.php:58 msgid "Home" msgstr "Hem" -#: libraries/messages.inc.php:379 main.php:233 +#: libraries/messages.inc.php:375 main.php:233 msgid "Official Homepage" msgstr "phpMyAdmin:s officiella hemsida" -#: libraries/messages.inc.php:382 libraries/replication_gui.lib.php:327 +#: libraries/messages.inc.php:378 libraries/replication_gui.lib.php:327 #: server_privileges.php:753 msgid "" "When Host table is used, this field is ignored and values stored in Host " @@ -3959,98 +3959,98 @@ msgstr "" "När värdtabellen används ignoreras detta fält och värden lagrade i " "värdtabllen används istället." -#: libraries/messages.inc.php:383 +#: libraries/messages.inc.php:379 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/messages.inc.php:384 libraries/mysql_charsets.lib.php:253 +#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:253 msgid "Hungarian" msgstr "Ungersk" -#: libraries/messages.inc.php:386 libraries/mysql_charsets.lib.php:256 +#: libraries/messages.inc.php:382 libraries/mysql_charsets.lib.php:256 msgid "Icelandic" msgstr "Isländska" -#: libraries/messages.inc.php:387 server_processlist.php:53 +#: libraries/messages.inc.php:383 server_processlist.php:53 msgid "ID" msgstr "ID" -#: libraries/messages.inc.php:388 libraries/mult_submits.inc.php:108 +#: libraries/messages.inc.php:384 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:479 msgid "Fulltext" msgstr "Heltext" -#: libraries/messages.inc.php:389 +#: libraries/messages.inc.php:385 msgid "Ignore duplicate rows" msgstr "Ignorera dubblerade rader" -#: libraries/messages.inc.php:390 tbl_change.php:302 tbl_indexes.php:200 +#: libraries/messages.inc.php:386 tbl_change.php:302 tbl_indexes.php:200 #: tbl_indexes.php:225 msgid "Ignore" msgstr "Ignorera" -#: libraries/messages.inc.php:391 +#: libraries/messages.inc.php:387 msgid "Use ignore inserts" msgstr "Använd IGNORE i infogningar" -#: libraries/messages.inc.php:392 +#: libraries/messages.inc.php:388 msgid "Column names in first row" msgstr "" -#: libraries/messages.inc.php:393 +#: libraries/messages.inc.php:389 msgid "Do not import empty rows" msgstr "" -#: libraries/messages.inc.php:394 pmd_general.php:104 +#: libraries/messages.inc.php:390 pmd_general.php:104 msgid "Import/Export coordinates for PDF schema" msgstr "Importera/exportera koordinater för PDF-schema" -#: libraries/messages.inc.php:395 querywindow.php:104 +#: libraries/messages.inc.php:391 querywindow.php:104 msgid "Import files" msgstr "Importera filer" -#: libraries/messages.inc.php:403 +#: libraries/messages.inc.php:399 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/messages.inc.php:404 libraries/messages.inc.php:584 +#: libraries/messages.inc.php:400 libraries/messages.inc.php:580 msgid "Open Document Spreadsheet" msgstr "OpenDocument-kalkylblad" -#: libraries/messages.inc.php:405 +#: libraries/messages.inc.php:401 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/messages.inc.php:409 +#: libraries/messages.inc.php:405 msgid "Excel 97-2003 XLS Workbook" msgstr "" -#: libraries/messages.inc.php:410 +#: libraries/messages.inc.php:406 msgid "Excel 2007 XLSX Workbook" msgstr "" -#: libraries/messages.inc.php:414 libraries/mult_submits.inc.php:98 +#: libraries/messages.inc.php:410 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:476 tbl_structure.php:674 msgid "Index" msgstr "Index" -#: libraries/messages.inc.php:415 tbl_indexes.php:168 +#: libraries/messages.inc.php:411 tbl_indexes.php:168 msgid "Index name:" msgstr "Indexnamn :" -#: libraries/messages.inc.php:416 tbl_indexes.php:174 +#: libraries/messages.inc.php:412 tbl_indexes.php:174 msgid "Index type:" msgstr "Indextyp :" -#: libraries/messages.inc.php:417 sql.php:639 +#: libraries/messages.inc.php:413 sql.php:639 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problem med index för tabell `%s`" -#: libraries/messages.inc.php:427 main.php:266 +#: libraries/messages.inc.php:423 main.php:266 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -4062,24 +4062,24 @@ msgstr "" "med denna standardinställning och är öppen för intrång, så du bör verkligen " "täppa till detta säkerhetshål." -#: libraries/messages.inc.php:428 tbl_change.php:1130 +#: libraries/messages.inc.php:424 tbl_change.php:1130 msgid "Insert as new row" msgstr "Lägg till som ny rad" -#: libraries/messages.inc.php:429 sql.php:496 tbl_replace.php:386 +#: libraries/messages.inc.php:425 sql.php:496 tbl_replace.php:386 #, php-format msgid "Inserted row id: %1$d" msgstr "Infogade rad id: %1$d" -#: libraries/messages.inc.php:430 tbl_change.php:1131 +#: libraries/messages.inc.php:426 tbl_change.php:1131 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/messages.inc.php:432 main.php:139 +#: libraries/messages.inc.php:428 main.php:139 msgid "Interface" msgstr "Gränssnitt" -#: libraries/messages.inc.php:433 tbl_relation.php:407 +#: libraries/messages.inc.php:429 tbl_relation.php:407 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -4087,140 +4087,140 @@ msgstr "" "En intern relation är inte nödvändig när en motsvarande främmande nyckel-" "relation finns." -#: libraries/messages.inc.php:435 pdf_pages.php:303 +#: libraries/messages.inc.php:431 pdf_pages.php:303 msgid "Internal relations" msgstr "Interna relationer" -#: libraries/messages.inc.php:438 tbl_indexes.php:256 tbl_structure.php:590 +#: libraries/messages.inc.php:434 tbl_indexes.php:256 tbl_structure.php:590 #: tbl_structure.php:601 msgid "Column count has to be larger than zero." msgstr "Antalet kolumner måste vara större än noll." -#: libraries/messages.inc.php:444 libraries/tbl_properties.inc.php:784 +#: libraries/messages.inc.php:440 libraries/tbl_properties.inc.php:784 #: tbl_structure.php:537 msgid "You have to add at least one field." msgstr "Du måste lägga till åtminstone ett fält." -#: libraries/messages.inc.php:449 +#: libraries/messages.inc.php:445 #, php-format msgid "Invalid server index: \"%s\"" msgstr "Ogiltigt serverindex: \"%s\"" -#: libraries/messages.inc.php:452 libraries/mysql_charsets.lib.php:259 +#: libraries/messages.inc.php:448 libraries/mysql_charsets.lib.php:259 #: libraries/mysql_charsets.lib.php:349 msgid "Japanese" msgstr "Japansk" -#: libraries/messages.inc.php:453 main.php:331 +#: libraries/messages.inc.php:449 main.php:331 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: libraries/messages.inc.php:454 server_status.php:257 +#: libraries/messages.inc.php:450 server_status.php:257 msgid "Joins" msgstr "Föreningar" -#: libraries/messages.inc.php:457 server_privileges.php:763 +#: libraries/messages.inc.php:453 server_privileges.php:763 msgid "Do not change the password" msgstr "Ändra inte lösenordet" -#: libraries/messages.inc.php:458 server_status.php:256 +#: libraries/messages.inc.php:454 server_status.php:256 msgid "Key cache" msgstr "Nyckelcache" -#: libraries/messages.inc.php:462 libraries/mysql_charsets.lib.php:268 +#: libraries/messages.inc.php:458 libraries/mysql_charsets.lib.php:268 #: libraries/mysql_charsets.lib.php:371 msgid "Korean" msgstr "Koreansk" -#: libraries/messages.inc.php:466 libraries/select_lang.lib.php:480 +#: libraries/messages.inc.php:462 libraries/select_lang.lib.php:480 #: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492 #, php-format msgid "Unknown language: %1$s." msgstr "Okänt språk: %1$s." -#: libraries/messages.inc.php:468 +#: libraries/messages.inc.php:464 msgid "Table caption" msgstr "Tabellrubrik" -#: libraries/messages.inc.php:469 +#: libraries/messages.inc.php:465 msgid "Content of table __TABLE__" msgstr "Innehåll i tabell __TABLE__" -#: libraries/messages.inc.php:470 +#: libraries/messages.inc.php:466 msgid "Continued table caption" msgstr "Fortsatt tabellrubrik" -#: libraries/messages.inc.php:471 +#: libraries/messages.inc.php:467 msgid "(continued)" msgstr "(fortsättning)" -#: libraries/messages.inc.php:472 +#: libraries/messages.inc.php:468 msgid "Include table caption" msgstr "Inkludera tabellrubrik" -#: libraries/messages.inc.php:473 +#: libraries/messages.inc.php:469 msgid "Label key" msgstr "Etikett" -#: libraries/messages.inc.php:474 +#: libraries/messages.inc.php:470 msgid "LaTeX" msgstr "LaTeX" -#: libraries/messages.inc.php:475 +#: libraries/messages.inc.php:471 msgid "Structure of table __TABLE__" msgstr "Struktur för tabell __TABLE__" -#: libraries/messages.inc.php:476 libraries/mysql_charsets.lib.php:262 +#: libraries/messages.inc.php:472 libraries/mysql_charsets.lib.php:262 msgid "Latvian" msgstr "Lettiska" -#: libraries/messages.inc.php:477 +#: libraries/messages.inc.php:473 msgid "CSV using LOAD DATA" msgstr "CSV mha LOAD DATA" -#: libraries/messages.inc.php:478 +#: libraries/messages.inc.php:474 msgid "Use LOCAL keyword" msgstr "Använd nyckelordet LOCAL" -#: libraries/messages.inc.php:479 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:475 libraries/tbl_properties.inc.php:105 msgid "Length/Values" msgstr "Längd/Värden*" -#: libraries/messages.inc.php:480 tbl_select.php:295 +#: libraries/messages.inc.php:476 tbl_select.php:295 msgid "Number of rows per page" msgstr "Rader per sida" -#: libraries/messages.inc.php:484 libraries/mysql_charsets.lib.php:265 +#: libraries/messages.inc.php:480 libraries/mysql_charsets.lib.php:265 msgid "Lithuanian" msgstr "Litauisk" -#: libraries/messages.inc.php:485 libraries/replication_gui.lib.php:302 +#: libraries/messages.inc.php:481 libraries/replication_gui.lib.php:302 #: server_privileges.php:729 msgid "Local" msgstr "Lokal" -#: libraries/messages.inc.php:487 server_privileges.php:669 +#: libraries/messages.inc.php:483 server_privileges.php:669 msgid "Login Information" msgstr "Inloggningsinformation" -#: libraries/messages.inc.php:490 libraries/navigation_header.inc.php:67 +#: libraries/messages.inc.php:486 libraries/navigation_header.inc.php:67 #: libraries/navigation_header.inc.php:70 #: libraries/navigation_header.inc.php:71 main.php:99 msgid "Log out" msgstr "Logga ut" -#: libraries/messages.inc.php:497 server_status.php:440 +#: libraries/messages.inc.php:493 server_status.php:440 msgid "max. concurrent connections" msgstr "Max. samtidiga förbindelser" -#: libraries/messages.inc.php:498 +#: libraries/messages.inc.php:494 msgid "Maximal length of created query" msgstr "Maximal längd på skapad fråga" -#: libraries/messages.inc.php:500 main.php:282 +#: libraries/messages.inc.php:496 main.php:282 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -4230,7 +4230,7 @@ msgstr "" "flerbitars teckenuppsättning. phpMyAdmin kan inte dela upp strängar korrekt " "utan tillägget mbstring, vilket kan leda till oväntade resultat." -#: libraries/messages.inc.php:501 main.php:274 +#: libraries/messages.inc.php:497 main.php:274 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -4240,24 +4240,24 @@ msgstr "" "alternativ är inkompatibelt med phpMyAdmin och kan orsaka att en del data " "förstörs!" -#: libraries/messages.inc.php:502 +#: libraries/messages.inc.php:498 msgid "MediaWiki Table" msgstr "" -#: libraries/messages.inc.php:503 transformation_overview.php:25 +#: libraries/messages.inc.php:499 transformation_overview.php:25 msgid "Available MIME types" msgstr "Tillgängliga MIME-typer" -#: libraries/messages.inc.php:504 transformation_overview.php:43 +#: libraries/messages.inc.php:500 transformation_overview.php:43 msgid "Available transformations" msgstr "Tillgängliga omvandlingar" -#: libraries/messages.inc.php:505 +#: libraries/messages.inc.php:501 msgctxt "$strMIME_description" msgid "Description" msgstr "Beskrivning" -#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:580 +#: libraries/messages.inc.php:503 libraries/tbl_properties.inc.php:580 #: transformation_overview.php:60 #, php-format msgid "" @@ -4267,7 +4267,7 @@ msgstr "" "Ingen beskrivning för denna omvandling finns tillgänglig.
Vänligen " "fråga upphovsmannen vad %s gör." -#: libraries/messages.inc.php:509 libraries/tbl_properties.inc.php:137 +#: libraries/messages.inc.php:505 libraries/tbl_properties.inc.php:137 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -4276,7 +4276,7 @@ msgstr "" "För en lista med tillgängliga omvandlingsparametrar och deras MIME-" "typomvandlingar, klicka på %somvandlingsbeskrivningar%s" -#: libraries/messages.inc.php:510 libraries/tbl_properties.inc.php:146 +#: libraries/messages.inc.php:506 libraries/tbl_properties.inc.php:146 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -4288,56 +4288,56 @@ msgstr "" "enkelcitat (\"'\") i värdena, skriv ett bakåtstreck före tecknet (t.ex. '\\" "\\xyz' eller 'a\\'b')." -#: libraries/messages.inc.php:511 libraries/tbl_properties.inc.php:145 +#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:145 msgid "Transformation options" msgstr "Omvandlingsparametrar" -#: libraries/messages.inc.php:513 transformation_overview.php:38 +#: libraries/messages.inc.php:509 transformation_overview.php:38 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "Kursiverade MIME-typer har inte någon separat omvandlingsfunktion" -#: libraries/messages.inc.php:515 tbl_indexes.php:162 +#: libraries/messages.inc.php:511 tbl_indexes.php:162 msgid "Modify an index" msgstr "Ändra ett index" -#: libraries/messages.inc.php:517 pmd_general.php:108 +#: libraries/messages.inc.php:513 pmd_general.php:108 msgid "Move Menu" msgstr "Flytta meny" -#: libraries/messages.inc.php:518 tbl_operations.php:276 +#: libraries/messages.inc.php:514 tbl_operations.php:276 msgid "Move table to (database.table):" msgstr "Flytta tabellen till (databas.tabell):" -#: libraries/messages.inc.php:519 tbl_move_copy.php:56 +#: libraries/messages.inc.php:515 tbl_move_copy.php:56 #, php-format msgid "Table %s has been moved to %s." msgstr "Tabellen %s har flyttats till %s." -#: libraries/messages.inc.php:520 tbl_move_copy.php:46 +#: libraries/messages.inc.php:516 tbl_move_copy.php:46 msgid "Can't move table to same one!" msgstr "Kan inte flytta tabell till samma namn!" -#: libraries/messages.inc.php:521 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:517 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 #: libraries/mysql_charsets.lib.php:332 libraries/mysql_charsets.lib.php:354 #: libraries/mysql_charsets.lib.php:365 msgid "multilingual" msgstr "flerspråkig" -#: libraries/messages.inc.php:534 main.php:193 +#: libraries/messages.inc.php:530 main.php:193 msgid "MySQL charset" msgstr "MySQL teckenuppsättning" -#: libraries/messages.inc.php:535 main.php:211 +#: libraries/messages.inc.php:531 main.php:211 msgid "MySQL client version" msgstr "MySQL klientversion" -#: libraries/messages.inc.php:536 main.php:125 +#: libraries/messages.inc.php:532 main.php:125 msgid "MySQL connection collation" msgstr "Kollation för MySQL-uppkoppling" -#: libraries/messages.inc.php:537 main.php:346 +#: libraries/messages.inc.php:533 main.php:346 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -4346,54 +4346,54 @@ msgstr "" "Din PHP MySQL bibliotekversion %s skiljer sig från din MySQL serverversion %" "s. Detta kan orsaka oförutsägbara beteenden." -#: libraries/messages.inc.php:539 server_status.php:294 +#: libraries/messages.inc.php:535 server_status.php:294 msgid "Show processes" msgstr "Visa processer" -#: libraries/messages.inc.php:545 navigation.php:210 server_databases.php:371 +#: libraries/messages.inc.php:541 navigation.php:210 server_databases.php:371 #: server_synchronize.php:1191 msgid "No databases" msgstr "Inga databaser" -#: libraries/messages.inc.php:546 server_databases.php:52 +#: libraries/messages.inc.php:542 server_databases.php:52 msgid "No databases selected." msgstr "Inga databaser markerade." -#: libraries/messages.inc.php:548 libraries/relation.lib.php:1173 +#: libraries/messages.inc.php:544 libraries/relation.lib.php:1173 msgid "no description" msgstr "Ingen beskrivning" -#: libraries/messages.inc.php:552 libraries/zip_extension.lib.php:26 +#: libraries/messages.inc.php:548 libraries/zip_extension.lib.php:26 msgid "No files found inside ZIP archive!" msgstr "Inga filer hittades i ZIP-arkivet!" -#: libraries/messages.inc.php:555 tbl_indexes.php:91 +#: libraries/messages.inc.php:551 tbl_indexes.php:91 msgid "No index parts defined!" msgstr "Inga delar av index är definierade!" -#: libraries/messages.inc.php:556 libraries/mult_submits.inc.php:435 +#: libraries/messages.inc.php:552 libraries/mult_submits.inc.php:435 #: tbl_replace.php:331 msgid "No change" msgstr "Ingen förändring" -#: libraries/messages.inc.php:557 +#: libraries/messages.inc.php:553 msgctxt "$strNoneDefault" msgid "None" msgstr "Inga" -#: libraries/messages.inc.php:560 libraries/plugin_interface.lib.php:312 +#: libraries/messages.inc.php:556 libraries/plugin_interface.lib.php:312 msgid "This format has no options" msgstr "Detta format har inga alternativ" -#: libraries/messages.inc.php:565 user_password.php:54 +#: libraries/messages.inc.php:561 user_password.php:54 msgid "You don't have sufficient privileges to be here right now!" msgstr "Du har inte tillräcklig behörighet för att vara här nu!" -#: libraries/messages.inc.php:566 tbl_row_action.php:29 +#: libraries/messages.inc.php:562 tbl_row_action.php:29 msgid "No rows selected" msgstr "Inga rader valda" -#: libraries/messages.inc.php:569 themes.php:32 +#: libraries/messages.inc.php:565 themes.php:32 #, php-format msgid "" "No themes support; please check your configuration and/or your themes in " @@ -4402,294 +4402,294 @@ msgstr "" "Stöd för teman saknas. Kontrollera din konfiguration och/eller dina teman i " "katalog %s." -#: libraries/messages.inc.php:571 libraries/relation.lib.php:95 +#: libraries/messages.inc.php:567 libraries/relation.lib.php:95 msgid "not OK" msgstr "Inte OK" -#: libraries/messages.inc.php:572 server_synchronize.php:400 +#: libraries/messages.inc.php:568 server_synchronize.php:400 #: server_synchronize.php:839 msgid "not present" msgstr "" -#: libraries/messages.inc.php:573 pdf_pages.php:36 pdf_pages.php:42 +#: libraries/messages.inc.php:569 pdf_pages.php:36 pdf_pages.php:42 #: pdf_pages.php:48 pdf_pages.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "%s-tabellen ej funnen eller ej angiven i %s" -#: libraries/messages.inc.php:574 server_privileges.php:804 +#: libraries/messages.inc.php:570 server_privileges.php:804 #: server_privileges.php:2166 msgid "No user(s) found." msgstr "Hittade ingen användare." -#: libraries/messages.inc.php:578 pmd_general.php:164 +#: libraries/messages.inc.php:574 pmd_general.php:164 msgid "Number of tables" msgstr "Antal tabeller" -#: libraries/messages.inc.php:581 server_databases.php:117 +#: libraries/messages.inc.php:577 server_databases.php:117 #: server_status.php:260 setup/lib/messages.inc.php:117 msgid "Tables" msgstr "Tabeller" -#: libraries/messages.inc.php:583 libraries/relation.lib.php:99 +#: libraries/messages.inc.php:579 libraries/relation.lib.php:99 #: pmd_general.php:340 msgid "OK" msgstr "OK" -#: libraries/messages.inc.php:585 +#: libraries/messages.inc.php:581 msgid "Open Document Text" msgstr "OpenDocument-text" -#: libraries/messages.inc.php:588 tbl_select.php:138 +#: libraries/messages.inc.php:584 tbl_select.php:138 msgid "Operator" msgstr "Operator" -#: libraries/messages.inc.php:589 tbl_operations.php:662 +#: libraries/messages.inc.php:585 tbl_operations.php:662 msgid "Optimize" msgstr "Optimera" -#: libraries/messages.inc.php:602 libraries/tbl_properties.inc.php:755 +#: libraries/messages.inc.php:598 libraries/tbl_properties.inc.php:755 msgid "PARTITION definition" msgstr "Partitionsdefinition" -#: libraries/messages.inc.php:603 tbl_structure.php:757 +#: libraries/messages.inc.php:599 tbl_structure.php:757 msgid "partitioned" msgstr "partitionerad" -#: libraries/messages.inc.php:604 tbl_operations.php:649 +#: libraries/messages.inc.php:600 tbl_operations.php:649 msgid "Partition maintenance" msgstr "Partitionsunderhåll" -#: libraries/messages.inc.php:605 tbl_operations.php:657 +#: libraries/messages.inc.php:601 tbl_operations.php:657 #, php-format msgid "Partition %s" msgstr "Partition %s" -#: libraries/messages.inc.php:606 server_privileges.php:1212 +#: libraries/messages.inc.php:602 server_privileges.php:1212 #, php-format msgid "The password for %s was changed successfully." msgstr "Lösenordet för %s har ändrats." -#: libraries/messages.inc.php:635 +#: libraries/messages.inc.php:631 #, php-format msgid "Schema of the \"%s\" database - Page %s" msgstr "Schema för databasen \"%s\" - Sidan %s" -#: libraries/messages.inc.php:636 +#: libraries/messages.inc.php:632 #, php-format msgid "The \"%s\" table doesn't exist!" msgstr "Tabellen \"%s\" finns inte!" -#: libraries/messages.inc.php:637 pdf_schema.php:1013 +#: libraries/messages.inc.php:633 pdf_schema.php:1013 msgid "No tables" msgstr "Inga tabeller" -#: libraries/messages.inc.php:638 pmd_pdf.php:63 +#: libraries/messages.inc.php:634 pmd_pdf.php:63 #, fuzzy msgid "Page has been created" msgstr "Tabell %1$s har skapats." -#: libraries/messages.inc.php:639 pmd_pdf.php:65 +#: libraries/messages.inc.php:635 pmd_pdf.php:65 msgid "Page creation failed" msgstr "" -#: libraries/messages.inc.php:640 +#: libraries/messages.inc.php:636 msgid "PDF" msgstr "PDF" -#: libraries/messages.inc.php:641 +#: libraries/messages.inc.php:637 msgid "(Generates a report containing the data of a single table)" msgstr "(Skapar en rapport som innehåller data från en enstaka tabell)" -#: libraries/messages.inc.php:642 +#: libraries/messages.inc.php:638 msgid "Report title" msgstr "Rapportrubrik" -#: libraries/messages.inc.php:643 server_status.php:389 server_status.php:434 +#: libraries/messages.inc.php:639 server_status.php:389 server_status.php:434 #: server_status.php:497 server_status.php:555 msgid "per hour" msgstr "per timme" -#: libraries/messages.inc.php:644 server_status.php:498 +#: libraries/messages.inc.php:640 server_status.php:498 msgid "per minute" msgstr "per minut" -#: libraries/messages.inc.php:645 server_status.php:499 +#: libraries/messages.inc.php:641 server_status.php:499 msgid "per second" msgstr "per sekund" -#: libraries/messages.inc.php:646 libraries/mysql_charsets.lib.php:271 +#: libraries/messages.inc.php:642 libraries/mysql_charsets.lib.php:271 msgid "Persian" msgstr "Persiska" -#: libraries/messages.inc.php:647 libraries/mysql_charsets.lib.php:250 +#: libraries/messages.inc.php:643 libraries/mysql_charsets.lib.php:250 msgid "phone book" msgstr "telefonbok" -#: libraries/messages.inc.php:648 +#: libraries/messages.inc.php:644 msgid "PHP array" msgstr "PHP-array" -#: libraries/messages.inc.php:650 main.php:213 +#: libraries/messages.inc.php:646 main.php:213 msgid "PHP extension" msgstr "PHP-tillägg" -#: libraries/messages.inc.php:654 libraries/relation.lib.php:163 +#: libraries/messages.inc.php:650 libraries/relation.lib.php:163 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/messages.inc.php:655 libraries/relation.lib.php:159 +#: libraries/messages.inc.php:651 libraries/relation.lib.php:159 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/messages.inc.php:656 libraries/relation.lib.php:161 +#: libraries/messages.inc.php:652 libraries/relation.lib.php:161 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" -#: libraries/messages.inc.php:657 libraries/relation.lib.php:162 +#: libraries/messages.inc.php:653 libraries/relation.lib.php:162 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/messages.inc.php:658 libraries/relation.lib.php:164 +#: libraries/messages.inc.php:654 libraries/relation.lib.php:164 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/messages.inc.php:661 libraries/mysql_charsets.lib.php:274 +#: libraries/messages.inc.php:657 libraries/mysql_charsets.lib.php:274 msgid "Polish" msgstr "Polska" -#: libraries/messages.inc.php:662 libraries/replication_gui.lib.php:67 +#: libraries/messages.inc.php:658 libraries/replication_gui.lib.php:67 #: server_synchronize.php:1163 #, fuzzy msgid "Port" msgstr "Sortering" -#: libraries/messages.inc.php:667 tbl_indexes.php:67 +#: libraries/messages.inc.php:663 tbl_indexes.php:67 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Primärnyckelns namn måste vara \"PRIMARY\"!" -#: libraries/messages.inc.php:668 tbl_indexes.php:184 +#: libraries/messages.inc.php:664 tbl_indexes.php:184 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" "(\"PRIMARY\" måste vara namnet på och endast på en " "primärnyckel!)" -#: libraries/messages.inc.php:669 libraries/mult_submits.inc.php:76 +#: libraries/messages.inc.php:665 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:474 msgid "Primary" msgstr "Primär" -#: libraries/messages.inc.php:673 server_privileges.php:227 +#: libraries/messages.inc.php:669 server_privileges.php:227 msgid "Includes all privileges except GRANT." msgstr "Inkluderar alla privilegier utom GRANT." -#: libraries/messages.inc.php:674 server_privileges.php:153 +#: libraries/messages.inc.php:670 server_privileges.php:153 #: server_privileges.php:476 msgid "Allows altering the structure of existing tables." msgstr "Tillåter ändring av befintliga tabellers struktur." -#: libraries/messages.inc.php:675 server_privileges.php:169 +#: libraries/messages.inc.php:671 server_privileges.php:169 #: server_privileges.php:482 msgid "Allows altering and dropping stored routines." msgstr "Tillåter ändring och borttagning av lagrade rutiner." -#: libraries/messages.inc.php:676 server_privileges.php:145 +#: libraries/messages.inc.php:672 server_privileges.php:145 #: server_privileges.php:475 msgid "Allows creating new databases and tables." msgstr "Tillåter skapande av nya databaser och tabeller." -#: libraries/messages.inc.php:677 server_privileges.php:168 +#: libraries/messages.inc.php:673 server_privileges.php:168 #: server_privileges.php:481 msgid "Allows creating stored routines." msgstr "Tillåter skapande av lagrade rutiner." -#: libraries/messages.inc.php:678 server_privileges.php:475 +#: libraries/messages.inc.php:674 server_privileges.php:475 msgid "Allows creating new tables." msgstr "Tillåter skapande av nya tabeller." -#: libraries/messages.inc.php:679 server_privileges.php:156 +#: libraries/messages.inc.php:675 server_privileges.php:156 #: server_privileges.php:479 msgid "Allows creating temporary tables." msgstr "Tillåter skapande av temporära tabeller." -#: libraries/messages.inc.php:680 server_privileges.php:170 +#: libraries/messages.inc.php:676 server_privileges.php:170 #: server_privileges.php:515 msgid "Allows creating, dropping and renaming user accounts." msgstr "Tillåter skapande, borttagning och omdöpning av användarkonton." -#: libraries/messages.inc.php:681 server_privileges.php:160 +#: libraries/messages.inc.php:677 server_privileges.php:160 #: server_privileges.php:164 server_privileges.php:487 #: server_privileges.php:491 msgid "Allows creating new views." msgstr "Tillåter skapande av nya vyer." -#: libraries/messages.inc.php:682 server_privileges.php:144 +#: libraries/messages.inc.php:678 server_privileges.php:144 #: server_privileges.php:467 msgid "Allows deleting data." msgstr "Tillåter borttagning av data." -#: libraries/messages.inc.php:683 server_privileges.php:146 +#: libraries/messages.inc.php:679 server_privileges.php:146 #: server_privileges.php:478 msgid "Allows dropping databases and tables." msgstr "Tillåter borttagning av databaser och tabeller." -#: libraries/messages.inc.php:684 server_privileges.php:478 +#: libraries/messages.inc.php:680 server_privileges.php:478 msgid "Allows dropping tables." msgstr "Tillåter borttagning av tabeller." -#: libraries/messages.inc.php:685 server_privileges.php:161 +#: libraries/messages.inc.php:681 server_privileges.php:161 #: server_privileges.php:495 msgid "Allows to set up events for the event scheduler" msgstr "Tillåter skapande av händelser för händelseschemaläggaren" -#: libraries/messages.inc.php:686 server_privileges.php:171 +#: libraries/messages.inc.php:682 server_privileges.php:171 #: server_privileges.php:483 msgid "Allows executing stored routines." msgstr "Tillåter utförande av lagrade rutiner." -#: libraries/messages.inc.php:687 server_privileges.php:150 +#: libraries/messages.inc.php:683 server_privileges.php:150 #: server_privileges.php:470 msgid "Allows importing data from and exporting data into files." msgstr "Tillåter import av data från och export av data till filer." -#: libraries/messages.inc.php:688 server_privileges.php:501 +#: libraries/messages.inc.php:684 server_privileges.php:501 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Tillåter tillägg av användare och privilegier utan omladdning av " "privilegiumtabellerna." -#: libraries/messages.inc.php:689 server_privileges.php:152 +#: libraries/messages.inc.php:685 server_privileges.php:152 #: server_privileges.php:477 msgid "Allows creating and dropping indexes." msgstr "Tillåter skapande och borttagning av index." -#: libraries/messages.inc.php:690 server_privileges.php:142 +#: libraries/messages.inc.php:686 server_privileges.php:142 #: server_privileges.php:403 server_privileges.php:465 msgid "Allows inserting and replacing data." msgstr "Tillåter infogning och ersättning av data." -#: libraries/messages.inc.php:691 server_privileges.php:157 +#: libraries/messages.inc.php:687 server_privileges.php:157 #: server_privileges.php:510 msgid "Allows locking tables for the current thread." msgstr "Tillåter låsning av tabeller för gällande tråd." -#: libraries/messages.inc.php:692 server_privileges.php:607 +#: libraries/messages.inc.php:688 server_privileges.php:607 #: server_privileges.php:609 msgid "Limits the number of new connections the user may open per hour." msgstr "Begränsar antalet nya förbindelser användaren kan öppna per timme." -#: libraries/messages.inc.php:693 server_privileges.php:595 +#: libraries/messages.inc.php:689 server_privileges.php:595 #: server_privileges.php:597 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Begränsar antalet frågor användaren kan skicka till servern per timme." -#: libraries/messages.inc.php:694 server_privileges.php:601 +#: libraries/messages.inc.php:690 server_privileges.php:601 #: server_privileges.php:603 msgid "" "Limits the number of commands that change any table or database the user may " @@ -4698,58 +4698,58 @@ msgstr "" "Begränsar antalet kommandon, vilka ändrar någon tabell eller databas, som " "användaren kan utföra per timme." -#: libraries/messages.inc.php:695 server_privileges.php:613 +#: libraries/messages.inc.php:691 server_privileges.php:613 #: server_privileges.php:615 msgid "Limits the number of simultaneous connections the user may have." msgstr "Begränsar antalet samtidiga förbindelser som användaren kan ha." -#: libraries/messages.inc.php:696 server_privileges.php:149 +#: libraries/messages.inc.php:692 server_privileges.php:149 #: server_privileges.php:505 msgid "Allows viewing processes of all users" msgstr "Tillåter visning av processer för alla användare" -#: libraries/messages.inc.php:697 server_privileges.php:151 +#: libraries/messages.inc.php:693 server_privileges.php:151 #: server_privileges.php:409 server_privileges.php:511 msgid "Has no effect in this MySQL version." msgstr "Har ingen verkan i denna MySQL-version." -#: libraries/messages.inc.php:698 server_privileges.php:147 +#: libraries/messages.inc.php:694 server_privileges.php:147 #: server_privileges.php:506 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Tillåter omladdning av serverinställningar och rensning av serverns cache." -#: libraries/messages.inc.php:699 server_privileges.php:159 +#: libraries/messages.inc.php:695 server_privileges.php:159 #: server_privileges.php:513 msgid "Allows the user to ask where the slaves / masters are." msgstr "Ger användaren rätt att fråga var slav- / huvudservrarna är." -#: libraries/messages.inc.php:700 server_privileges.php:158 +#: libraries/messages.inc.php:696 server_privileges.php:158 #: server_privileges.php:514 msgid "Needed for the replication slaves." msgstr "Nödvändigt för replikeringsslavar." -#: libraries/messages.inc.php:701 server_privileges.php:141 +#: libraries/messages.inc.php:697 server_privileges.php:141 #: server_privileges.php:400 server_privileges.php:464 msgid "Allows reading data." msgstr "Tillåter läsning av data." -#: libraries/messages.inc.php:702 server_privileges.php:154 +#: libraries/messages.inc.php:698 server_privileges.php:154 #: server_privileges.php:508 msgid "Gives access to the complete list of databases." msgstr "Ger tillgång till den fullständiga databaslistan." -#: libraries/messages.inc.php:703 server_privileges.php:165 +#: libraries/messages.inc.php:699 server_privileges.php:165 #: server_privileges.php:167 server_privileges.php:480 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Tillåter utförande av SHOW CREATE VIEW-frågor." -#: libraries/messages.inc.php:704 server_privileges.php:148 +#: libraries/messages.inc.php:700 server_privileges.php:148 #: server_privileges.php:507 msgid "Allows shutting down the server." msgstr "Tillåter avstängning av servern." -#: libraries/messages.inc.php:705 server_privileges.php:155 +#: libraries/messages.inc.php:701 server_privileges.php:155 #: server_privileges.php:504 msgid "" "Allows connecting, even if maximum number of connections is reached; " @@ -4760,55 +4760,55 @@ msgstr "" "Nödvändig för de flesta administrativa funktioner, som att sätta globala " "variabler eller döda andra användares trådar." -#: libraries/messages.inc.php:706 server_privileges.php:162 +#: libraries/messages.inc.php:702 server_privileges.php:162 #: server_privileges.php:496 msgid "Allows creating and dropping triggers" msgstr "Tillåter skapande och borttagning av utlösare" -#: libraries/messages.inc.php:707 server_privileges.php:143 +#: libraries/messages.inc.php:703 server_privileges.php:143 #: server_privileges.php:406 server_privileges.php:466 msgid "Allows changing data." msgstr "Tillåter ändring av data." -#: libraries/messages.inc.php:708 server_privileges.php:221 +#: libraries/messages.inc.php:704 server_privileges.php:221 msgid "No privileges." msgstr "Inga privilegier." -#: libraries/messages.inc.php:710 server_privileges.php:1296 +#: libraries/messages.inc.php:706 server_privileges.php:1296 msgid "The privileges were reloaded successfully." msgstr "Privilegierna har laddats om." -#: libraries/messages.inc.php:712 libraries/server_links.inc.php:80 +#: libraries/messages.inc.php:708 libraries/server_links.inc.php:80 msgid "Processes" msgstr "Processer" -#: libraries/messages.inc.php:714 main.php:187 +#: libraries/messages.inc.php:710 main.php:187 msgid "Protocol version" msgstr "Protokollversion" -#: libraries/messages.inc.php:715 +#: libraries/messages.inc.php:711 msgid "Put fields names in the first row" msgstr "Ange fältnamn på första raden" -#: libraries/messages.inc.php:720 server_synchronize.php:1003 +#: libraries/messages.inc.php:716 server_synchronize.php:1003 msgid "The following queries have been executed:" msgstr "" -#: libraries/messages.inc.php:721 server_status.php:251 +#: libraries/messages.inc.php:717 server_status.php:251 msgid "Query cache" msgstr "Frågecache" -#: libraries/messages.inc.php:722 libraries/navigation_header.inc.php:80 +#: libraries/messages.inc.php:718 libraries/navigation_header.inc.php:80 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 setup/lib/messages.inc.php:122 msgid "Query window" msgstr "Frågefönster" -#: libraries/messages.inc.php:725 querywindow.php:109 querywindow.php:217 +#: libraries/messages.inc.php:721 querywindow.php:109 querywindow.php:217 msgid "SQL history" msgstr "SQL-historik" -#: libraries/messages.inc.php:726 server_status.php:490 +#: libraries/messages.inc.php:722 server_status.php:490 #, php-format msgid "" "Query statistics: Since its startup, %s queries have been sent to the " @@ -4817,139 +4817,139 @@ msgstr "" "Frågestatistik: %s frågor har skickats till servern sedan den " "startade." -#: libraries/messages.inc.php:728 server_status.php:554 +#: libraries/messages.inc.php:724 server_status.php:554 msgid "Query type" msgstr "Typ av fråga" -#: libraries/messages.inc.php:729 libraries/sql_query_form.lib.php:381 +#: libraries/messages.inc.php:725 libraries/sql_query_form.lib.php:381 msgid "Do not overwrite this query from outside the window" msgstr "Skriv inte över denna fråga utifrån detta fönster" -#: libraries/messages.inc.php:732 tbl_operations.php:663 +#: libraries/messages.inc.php:728 tbl_operations.php:663 msgid "Rebuild" msgstr "Omskapa" -#: libraries/messages.inc.php:733 server_status.php:394 +#: libraries/messages.inc.php:729 server_status.php:394 msgid "Received" msgstr "Mottagna" -#: libraries/messages.inc.php:734 pmd_pdf.php:89 +#: libraries/messages.inc.php:730 pmd_pdf.php:89 msgid "recommended" msgstr "rekommenderad" -#: libraries/messages.inc.php:736 tbl_operations.php:702 +#: libraries/messages.inc.php:732 tbl_operations.php:702 msgid "Check referential integrity:" msgstr "Kontrollera referensintegritet:" -#: libraries/messages.inc.php:740 pdf_schema.php:1032 pdf_schema.php:1141 +#: libraries/messages.inc.php:736 pdf_schema.php:1032 pdf_schema.php:1141 msgid "Relational schema" msgstr "Relationsschema" -#: libraries/messages.inc.php:744 tbl_relation.php:399 +#: libraries/messages.inc.php:740 tbl_relation.php:399 msgid "Relations" msgstr "Relationer" -#: libraries/messages.inc.php:745 tbl_structure.php:507 tbl_structure.php:509 +#: libraries/messages.inc.php:741 tbl_structure.php:507 tbl_structure.php:509 msgid "Relation view" msgstr "Visa relationer" -#: libraries/messages.inc.php:746 server_privileges.php:1246 +#: libraries/messages.inc.php:742 server_privileges.php:1246 msgid "Reloading the privileges" msgstr "Laddar om privilegierna" -#: libraries/messages.inc.php:747 navigation.php:66 navigation.php:67 +#: libraries/messages.inc.php:743 navigation.php:66 navigation.php:67 #: navigation.php:70 #, fuzzy msgid "Reload navigation frame" msgstr "Anpassa navigeringsram" -#: libraries/messages.inc.php:748 pmd_general.php:80 +#: libraries/messages.inc.php:744 pmd_general.php:80 msgid "Reload" msgstr "Uppdatera" -#: libraries/messages.inc.php:749 libraries/server_synchronize.lib.php:1345 +#: libraries/messages.inc.php:745 libraries/server_synchronize.lib.php:1345 #: libraries/server_synchronize.lib.php:1371 #, fuzzy msgid "Remote server" msgstr "Ny server" -#: libraries/messages.inc.php:750 +#: libraries/messages.inc.php:746 msgid "Remove CRLF characters within fields" msgstr "Ta bort CRLF-tecken i fält" -#: libraries/messages.inc.php:751 tbl_operations.php:676 +#: libraries/messages.inc.php:747 tbl_operations.php:676 msgid "Remove partitioning" msgstr "Ta bort partitionering" -#: libraries/messages.inc.php:752 server_privileges.php:1575 +#: libraries/messages.inc.php:748 server_privileges.php:1575 msgid "Remove selected users" msgstr "Ta bort markerade användare" -#: libraries/messages.inc.php:755 tbl_operations.php:338 +#: libraries/messages.inc.php:751 tbl_operations.php:338 msgid "Rename table to" msgstr "Döp om tabellen till" -#: libraries/messages.inc.php:756 view_operations.php:93 +#: libraries/messages.inc.php:752 view_operations.php:93 #, fuzzy msgid "Rename view to" msgstr "Döp om tabellen till" -#: libraries/messages.inc.php:757 tbl_operations.php:664 +#: libraries/messages.inc.php:753 tbl_operations.php:664 msgid "Repair" msgstr "Reparera" -#: libraries/messages.inc.php:759 +#: libraries/messages.inc.php:755 msgid "Replace NULL by" msgstr "Ersätt NULL med" -#: libraries/messages.inc.php:760 +#: libraries/messages.inc.php:756 msgid "Replace table data with file" msgstr "Ersätt data i tabell" -#: libraries/messages.inc.php:761 server_replication.php:228 +#: libraries/messages.inc.php:757 server_replication.php:228 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: libraries/messages.inc.php:762 libraries/replication_gui.lib.php:236 +#: libraries/messages.inc.php:758 libraries/replication_gui.lib.php:236 #: server_replication.php:194 msgid "Add slave replication user" msgstr "" -#: libraries/messages.inc.php:763 server_replication.php:74 +#: libraries/messages.inc.php:759 server_replication.php:74 #, php-format msgid "Master server changed succesfully to %s" msgstr "" -#: libraries/messages.inc.php:764 server_replication.php:182 +#: libraries/messages.inc.php:760 server_replication.php:182 msgid "This server is configured as master in a replication process." msgstr "" -#: libraries/messages.inc.php:765 server_replication.php:322 +#: libraries/messages.inc.php:761 server_replication.php:322 #, fuzzy msgid "Control slave:" msgstr "Kontrollanvändare" -#: libraries/messages.inc.php:766 server_replication.php:65 +#: libraries/messages.inc.php:762 server_replication.php:65 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: libraries/messages.inc.php:767 server_replication.php:58 +#: libraries/messages.inc.php:763 server_replication.php:58 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: libraries/messages.inc.php:768 server_replication.php:221 +#: libraries/messages.inc.php:764 server_replication.php:221 msgid "Replicate all databases; Ignore:" msgstr "" -#: libraries/messages.inc.php:769 server_replication.php:222 +#: libraries/messages.inc.php:765 server_replication.php:222 msgid "Ignore all databases; Replicate:" msgstr "" -#: libraries/messages.inc.php:770 server_replication.php:218 +#: libraries/messages.inc.php:766 server_replication.php:218 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -4958,126 +4958,126 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: libraries/messages.inc.php:771 server_replication.php:217 +#: libraries/messages.inc.php:767 server_replication.php:217 #, fuzzy msgid "Master configuration" msgstr "Serverkonfiguration" -#: libraries/messages.inc.php:772 server_replication.php:181 +#: libraries/messages.inc.php:768 server_replication.php:181 #: server_replication.php:209 #, fuzzy msgid "Master replication" msgstr "Serverkonfiguration" -#: libraries/messages.inc.php:774 server_replication.php:230 +#: libraries/messages.inc.php:770 server_replication.php:230 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: libraries/messages.inc.php:775 server_replication.php:225 +#: libraries/messages.inc.php:771 server_replication.php:225 #, fuzzy msgid "Please select databases:" msgstr "Välj en databas" -#: libraries/messages.inc.php:776 server_replication.php:210 +#: libraries/messages.inc.php:772 server_replication.php:210 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:188 +#: libraries/messages.inc.php:773 libraries/replication_gui.lib.php:188 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/messages.inc.php:778 server_replication.php:187 +#: libraries/messages.inc.php:774 server_replication.php:187 msgid "Show connected slaves" msgstr "" -#: libraries/messages.inc.php:779 libraries/messages.inc.php:885 +#: libraries/messages.inc.php:775 libraries/messages.inc.php:881 #: server_replication.php:184 server_status.php:281 #, fuzzy msgid "Show master status" msgstr "Visa slav-status" -#: libraries/messages.inc.php:780 server_replication.php:334 +#: libraries/messages.inc.php:776 server_replication.php:334 msgid "Skipping error(s) might lead into unsynchronized master and slave!" msgstr "" -#: libraries/messages.inc.php:781 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:51 #: server_replication.php:347 msgid "Change or reconfigure master server" msgstr "" -#: libraries/messages.inc.php:782 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:778 libraries/replication_gui.lib.php:51 #, fuzzy msgid "Slave configuration" msgstr "Serverkonfiguration" -#: libraries/messages.inc.php:783 server_replication.php:305 +#: libraries/messages.inc.php:779 server_replication.php:305 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: libraries/messages.inc.php:784 server_replication.php:332 +#: libraries/messages.inc.php:780 server_replication.php:332 msgid "Error management:" msgstr "" -#: libraries/messages.inc.php:785 server_replication.php:328 +#: libraries/messages.inc.php:781 server_replication.php:328 #, php-format msgid "IO Thread %s only" msgstr "" -#: libraries/messages.inc.php:786 server_replication.php:296 +#: libraries/messages.inc.php:782 server_replication.php:296 msgid "Slave IO Thread not running!" msgstr "" -#: libraries/messages.inc.php:787 server_replication.php:355 +#: libraries/messages.inc.php:783 server_replication.php:355 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/messages.inc.php:788 server_replication.php:326 +#: libraries/messages.inc.php:784 server_replication.php:326 msgid "Reset slave" msgstr "" -#: libraries/messages.inc.php:789 server_replication.php:308 +#: libraries/messages.inc.php:785 server_replication.php:308 msgid "See slave status table" msgstr "" -#: libraries/messages.inc.php:790 server_replication.php:336 +#: libraries/messages.inc.php:786 server_replication.php:336 msgid "Skip current error" msgstr "" -#: libraries/messages.inc.php:791 server_replication.php:340 +#: libraries/messages.inc.php:787 server_replication.php:340 msgid "errors." msgstr "" -#: libraries/messages.inc.php:792 server_replication.php:337 +#: libraries/messages.inc.php:788 server_replication.php:337 msgid "Skip next" msgstr "" -#: libraries/messages.inc.php:793 server_replication.php:248 +#: libraries/messages.inc.php:789 server_replication.php:248 #, fuzzy msgid "Slave replication" msgstr "Serverkonfiguration" -#: libraries/messages.inc.php:794 server_replication.php:293 +#: libraries/messages.inc.php:790 server_replication.php:293 msgid "Slave SQL Thread not running!" msgstr "" -#: libraries/messages.inc.php:795 server_replication.php:327 +#: libraries/messages.inc.php:791 server_replication.php:327 #, php-format msgid "SQL Thread %s only" msgstr "" -#: libraries/messages.inc.php:796 +#: libraries/messages.inc.php:792 #, php-format msgid "" "This MySQL server works as %s in replication process. For further " @@ -5088,158 +5088,158 @@ msgstr "" "information om replikeringsstatus på servern, gå till replikeringssektionen." -#: libraries/messages.inc.php:797 +#: libraries/messages.inc.php:793 msgid "Master status" msgstr "Master-status" -#: libraries/messages.inc.php:798 server_status.php:721 +#: libraries/messages.inc.php:794 server_status.php:721 msgid "Replication status" msgstr "Replikeringsstatus" -#: libraries/messages.inc.php:799 +#: libraries/messages.inc.php:795 msgid "Slave status" msgstr "Slave-status" -#: libraries/messages.inc.php:800 server_replication.php:311 +#: libraries/messages.inc.php:796 server_replication.php:311 msgid "Synchronize databases with master" msgstr "" -#: libraries/messages.inc.php:801 server_replication.php:71 +#: libraries/messages.inc.php:797 server_replication.php:71 msgid "Unable to change master" msgstr "" -#: libraries/messages.inc.php:802 server_replication.php:51 +#: libraries/messages.inc.php:798 server_replication.php:51 msgid "Unknown error" msgstr "" -#: libraries/messages.inc.php:803 main.php:163 pdf_pages.php:344 +#: libraries/messages.inc.php:799 main.php:163 pdf_pages.php:344 #: setup/lib/FormDisplay.tpl.php:216 tbl_change.php:1175 msgid "Reset" msgstr "Återställ" -#: libraries/messages.inc.php:804 server_privileges.php:591 +#: libraries/messages.inc.php:800 server_privileges.php:591 msgid "Resource limits" msgstr "Resursbegränsningar" -#: libraries/messages.inc.php:805 tbl_change.php:1209 +#: libraries/messages.inc.php:801 tbl_change.php:1209 #, php-format msgid "Restart insertion with %s rows" msgstr "Börja om infogning med %s rader" -#: libraries/messages.inc.php:807 server_privileges.php:1578 +#: libraries/messages.inc.php:803 server_privileges.php:1578 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." -#: libraries/messages.inc.php:808 server_privileges.php:1176 +#: libraries/messages.inc.php:804 server_privileges.php:1176 #, php-format msgid "You have revoked the privileges for %s" msgstr "Du har upphävt privilegierna för %s" -#: libraries/messages.inc.php:809 server_privileges.php:1333 +#: libraries/messages.inc.php:805 server_privileges.php:1333 msgid "Revoke" msgstr "Upphäv" -#: libraries/messages.inc.php:810 libraries/mysql_charsets.lib.php:280 +#: libraries/messages.inc.php:806 libraries/mysql_charsets.lib.php:280 msgid "Romanian" msgstr "Rumänska" -#: libraries/messages.inc.php:813 tbl_printview.php:404 tbl_structure.php:786 +#: libraries/messages.inc.php:809 tbl_printview.php:404 tbl_structure.php:786 msgid "Row length" msgstr "Radlängd" -#: libraries/messages.inc.php:815 tbl_printview.php:414 tbl_structure.php:794 +#: libraries/messages.inc.php:811 tbl_printview.php:414 tbl_structure.php:794 msgid " Row size " msgstr "Radstorlek" -#: libraries/messages.inc.php:821 tbl_printview.php:366 tbl_structure.php:726 +#: libraries/messages.inc.php:817 tbl_printview.php:366 tbl_structure.php:726 msgid "Row Statistics" msgstr "Radstatistik" -#: libraries/messages.inc.php:822 +#: libraries/messages.inc.php:818 #, php-format msgid "running on %s" msgstr "körs på %s" -#: libraries/messages.inc.php:824 libraries/sql_query_form.lib.php:223 +#: libraries/messages.inc.php:820 libraries/sql_query_form.lib.php:223 #, php-format msgid "Run SQL query/queries on server %s" msgstr "Kör SQL-fråga/frågor på server %s" -#: libraries/messages.inc.php:825 libraries/sql_query_form.lib.php:240 +#: libraries/messages.inc.php:821 libraries/sql_query_form.lib.php:240 #: libraries/sql_query_form.lib.php:265 #, php-format msgid "Run SQL query/queries on database %s" msgstr "Kör SQL-fråga/frågor i databasen %s" -#: libraries/messages.inc.php:826 libraries/mysql_charsets.lib.php:337 +#: libraries/messages.inc.php:822 libraries/mysql_charsets.lib.php:337 msgid "Russian" msgstr "Rysk" -#: libraries/messages.inc.php:829 pmd_general.php:68 +#: libraries/messages.inc.php:825 pmd_general.php:68 msgid "Save position" msgstr "Spara position" -#: libraries/messages.inc.php:830 libraries/tbl_properties.inc.php:776 +#: libraries/messages.inc.php:826 libraries/tbl_properties.inc.php:776 #: pdf_pages.php:484 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:214 setup/lib/FormDisplay.tpl.php:215 #: tbl_change.php:1126 tbl_indexes.php:248 tbl_relation.php:566 msgid "Save" msgstr "Spara" -#: libraries/messages.inc.php:831 +#: libraries/messages.inc.php:827 msgid "The scale factor is too small to fit the schema on one page" msgstr "Skalfaktorn är för liten för att schemat ska få plats på en sida" -#: libraries/messages.inc.php:843 main.php:298 +#: libraries/messages.inc.php:839 main.php:298 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "Konfigurationsfilen behöver nu ett hemligt lösenord (blowfish_secret)." -#: libraries/messages.inc.php:844 navigation.php:353 navigation.php:516 +#: libraries/messages.inc.php:840 navigation.php:353 navigation.php:516 msgid "Please select a database" msgstr "Välj en databas" -#: libraries/messages.inc.php:846 server_binlog.php:120 +#: libraries/messages.inc.php:842 server_binlog.php:120 msgid "Select binary log to view" msgstr "Välj binär logg att visa" -#: libraries/messages.inc.php:847 tbl_select.php:270 +#: libraries/messages.inc.php:843 tbl_select.php:270 msgid "Select fields (at least one):" msgstr "Välj fält (minst ett):" -#: libraries/messages.inc.php:851 pdf_pages.php:320 +#: libraries/messages.inc.php:847 pdf_pages.php:320 msgid "Select Tables" msgstr "Välj tabeller" -#: libraries/messages.inc.php:853 server_status.php:404 +#: libraries/messages.inc.php:849 server_status.php:404 msgid "Sent" msgstr "Skickade" -#: libraries/messages.inc.php:857 libraries/select_server.lib.php:45 +#: libraries/messages.inc.php:853 libraries/select_server.lib.php:45 #: setup/frames/index.inc.php:97 setup/lib/messages.inc.php:115 msgid "Servers" msgstr "Servrar" -#: libraries/messages.inc.php:858 server_status.php:255 +#: libraries/messages.inc.php:854 server_status.php:255 msgid "Delayed inserts" msgstr "Fördröjda infogningar" -#: libraries/messages.inc.php:859 server_status.php:46 +#: libraries/messages.inc.php:855 server_status.php:46 msgid "Runtime Information" msgstr "Körningsinformation" -#: libraries/messages.inc.php:860 server_status.php:350 +#: libraries/messages.inc.php:856 server_status.php:350 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Denna MySQL-server har körts i %s. Den startade den %s." -#: libraries/messages.inc.php:861 libraries/server_links.inc.php:53 +#: libraries/messages.inc.php:857 libraries/server_links.inc.php:53 #: server_engines.php:112 server_engines.php:116 server_status.php:304 #: test/theme.php:105 msgid "Variables" msgstr "Variabler" -#: libraries/messages.inc.php:862 server_status.php:383 +#: libraries/messages.inc.php:858 server_status.php:383 msgid "" "Server traffic: These tables show the network traffic statistics of " "this MySQL server since its startup." @@ -5247,11 +5247,11 @@ msgstr "" "Servertrafik: Dessa tabeller visar statistik för nätverkstrafiken hos " "denna MySQL-server sedan den startade." -#: libraries/messages.inc.php:863 server_variables.php:35 +#: libraries/messages.inc.php:859 server_variables.php:35 msgid "Server variables and settings" msgstr "Servervariabler och inställningar" -#: libraries/messages.inc.php:865 main.php:290 +#: libraries/messages.inc.php:861 main.php:290 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -5263,7 +5263,7 @@ msgstr "" "giltighet konfigurerad i phpMyAdmin. På grund av detta kommer din inloggning " "upphöra att gälla tidigare än konfigurerat i phpMyAdmin." -#: libraries/messages.inc.php:866 +#: libraries/messages.inc.php:862 msgid "" "Cannot start session without errors, please check errors given in your PHP " "and/or webserver log file and configure your PHP installation properly." @@ -5271,11 +5271,11 @@ msgstr "" "Kan inte starta session utan fel. Kontrollera felmeddelanden i din PHP:s och/" "eller webbservers loggfil och konfigurera din PHP-installation korrekt." -#: libraries/messages.inc.php:867 server_variables.php:55 +#: libraries/messages.inc.php:863 server_variables.php:55 msgid "Session value" msgstr "Sessionsvärde" -#: libraries/messages.inc.php:868 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:864 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 " @@ -5287,45 +5287,45 @@ msgstr "" "ett enkelcitat (\"'\") i värdena, skriv ett bakåtstreck före tecknet (t.ex. " "'\\\\xyz' eller 'a\\'b')." -#: libraries/messages.inc.php:876 server_binlog.php:192 server_binlog.php:195 +#: libraries/messages.inc.php:872 server_binlog.php:192 server_binlog.php:195 #: server_processlist.php:49 server_processlist.php:51 msgid "Show Full Queries" msgstr "Visa fullständiga frågor" -#: libraries/messages.inc.php:878 pmd_general.php:64 +#: libraries/messages.inc.php:874 pmd_general.php:64 msgid "Show/Hide left menu" msgstr "Visa/Dölj vänster meny" -#: libraries/messages.inc.php:880 sql.php:513 +#: libraries/messages.inc.php:876 sql.php:513 msgid "Showing as PHP code" msgstr "Visar som PHP-kod" -#: libraries/messages.inc.php:882 sql.php:516 tbl_replace.php:360 +#: libraries/messages.inc.php:878 sql.php:516 tbl_replace.php:360 msgid "Showing SQL query" msgstr "Visar SQL-fråga" -#: libraries/messages.inc.php:883 tbl_change.php:1132 +#: libraries/messages.inc.php:879 tbl_change.php:1132 #, fuzzy msgid "Show insert query" msgstr "Visar SQL-fråga" -#: libraries/messages.inc.php:886 server_status.php:273 +#: libraries/messages.inc.php:882 server_status.php:273 msgid "Show open tables" msgstr "Visa öppna tabeller" -#: libraries/messages.inc.php:887 main.php:219 +#: libraries/messages.inc.php:883 main.php:219 msgid "Show PHP information" msgstr "Visa PHP-information" -#: libraries/messages.inc.php:889 server_status.php:278 +#: libraries/messages.inc.php:885 server_status.php:278 msgid "Show slave hosts" msgstr "Visa slav-värdar" -#: libraries/messages.inc.php:890 server_status.php:284 +#: libraries/messages.inc.php:886 server_status.php:284 msgid "Show slave status" msgstr "Visa slav-status" -#: libraries/messages.inc.php:891 +#: libraries/messages.inc.php:887 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -5335,11 +5335,11 @@ msgstr "" "överskred värdet binlog_cache_size och använde en temporär fil för att lagra " "satser från transaktionen." -#: libraries/messages.inc.php:892 +#: libraries/messages.inc.php:888 msgid "The number of transactions that used the temporary binary log cache." msgstr "Antalet transaktioner som använde den temporära binära loggcachen." -#: libraries/messages.inc.php:893 +#: libraries/messages.inc.php:889 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -5351,11 +5351,11 @@ msgstr "" "kanske öka värdet tmp_table_size för att åstadkomma att temporära tabeller " "lagras i minne istället för på disk." -#: libraries/messages.inc.php:894 +#: libraries/messages.inc.php:890 msgid "How many temporary files mysqld has created." msgstr "Antalet temporära filer som mysqld har skapat." -#: libraries/messages.inc.php:895 +#: libraries/messages.inc.php:891 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -5363,7 +5363,7 @@ msgstr "" "Antalet temporära tabeller i minne skapade automatiskt av servern under " "utförande av satser." -#: libraries/messages.inc.php:896 +#: libraries/messages.inc.php:892 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -5371,7 +5371,7 @@ msgstr "" "Antalet rader skrivna med INSERT DELAYED för vilka något fel uppstod " "(förmodligen dubblerad nyckel)." -#: libraries/messages.inc.php:897 +#: libraries/messages.inc.php:893 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -5379,23 +5379,23 @@ msgstr "" "Antalet INSERT DELAYED-hanteringstrådar i bruk. Varje tabell på vilken man " "använder INSERT DELAYED får sin egen tråd." -#: libraries/messages.inc.php:898 +#: libraries/messages.inc.php:894 msgid "The number of INSERT DELAYED rows written." msgstr "Antalet skrivna rader med INSERT DELAYED." -#: libraries/messages.inc.php:899 +#: libraries/messages.inc.php:895 msgid "The number of executed FLUSH statements." msgstr "Antalet utförda FLUSH-satser." -#: libraries/messages.inc.php:900 +#: libraries/messages.inc.php:896 msgid "The number of internal COMMIT statements." msgstr "Antalet interna COMMIT-satser." -#: libraries/messages.inc.php:901 +#: libraries/messages.inc.php:897 msgid "The number of times a row was deleted from a table." msgstr "Antalet gånger en rad togs bort från en tabell." -#: libraries/messages.inc.php:902 +#: libraries/messages.inc.php:898 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -5405,7 +5405,7 @@ msgstr "" "tabell med ett givet namn. Detta kallas upptäckt. Handler_discover indikerar " "antalet gånger tabeller har upptäckts." -#: libraries/messages.inc.php:903 +#: libraries/messages.inc.php:899 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -5415,7 +5415,7 @@ msgstr "" "tyder det på att servern gör många helindex-avsökningar; t.ex. SELECT col1 " "FROM foo, under förutsättning att col1 är indexerad." -#: libraries/messages.inc.php:904 +#: libraries/messages.inc.php:900 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -5424,7 +5424,7 @@ msgstr "" "är högt är det en bra indikation på att dina frågor och tabeller är riktigt " "indexerade." -#: libraries/messages.inc.php:905 +#: libraries/messages.inc.php:901 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -5434,7 +5434,7 @@ msgstr "" "värde ökas om du frågar en indexkolumn med en urvalsbegränsning eller om du " "gör en indexavsökning." -#: libraries/messages.inc.php:906 +#: libraries/messages.inc.php:902 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -5442,7 +5442,7 @@ msgstr "" "Antalet efterfrågningar att läsa den föregående raden i nyckelordning. Denna " "läsmetod används huvudsakligen för att optimera ORDER BY ... DESC." -#: libraries/messages.inc.php:907 +#: libraries/messages.inc.php:903 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -5454,7 +5454,7 @@ msgstr "" "Du har förmodligen många frågor som kräver att MySQL avsöker hela tabeller " "eller du har föreningar som inte använder nycklar på rätt sätt." -#: libraries/messages.inc.php:908 +#: libraries/messages.inc.php:904 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -5466,35 +5466,35 @@ msgstr "" "dina tabeller inte är riktigt indexerade eller att dina frågor inte är " "skrivna för att dra nytta av de index du har." -#: libraries/messages.inc.php:909 +#: libraries/messages.inc.php:905 msgid "The number of internal ROLLBACK statements." msgstr "Antalet interna ROLLBACK-satser." -#: libraries/messages.inc.php:910 +#: libraries/messages.inc.php:906 msgid "The number of requests to update a row in a table." msgstr "Antalet efterfrågningar att uppdatera en rad i en tabell." -#: libraries/messages.inc.php:911 +#: libraries/messages.inc.php:907 msgid "The number of requests to insert a row in a table." msgstr "Antalet efterfrågningar att lägga till en rad i en tabell." -#: libraries/messages.inc.php:912 +#: libraries/messages.inc.php:908 msgid "The number of pages containing data (dirty or clean)." msgstr "Antalet sidor innehållande data (orena eller rena)." -#: libraries/messages.inc.php:913 +#: libraries/messages.inc.php:909 msgid "The number of pages currently dirty." msgstr "Antalet sidor för närvarande orena." -#: libraries/messages.inc.php:914 +#: libraries/messages.inc.php:910 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Antalet buffert-sidor som har efterfrågats om att bli rensade." -#: libraries/messages.inc.php:915 +#: libraries/messages.inc.php:911 msgid "The number of free pages." msgstr "Antalet fria sidor." -#: libraries/messages.inc.php:916 +#: libraries/messages.inc.php:912 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -5504,7 +5504,7 @@ msgstr "" "läses eller skrivs eller som inte kan rensas eller tas bort av någon annan " "anledning." -#: libraries/messages.inc.php:917 +#: libraries/messages.inc.php:913 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -5516,11 +5516,11 @@ msgstr "" "också beräknas som Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: libraries/messages.inc.php:918 +#: libraries/messages.inc.php:914 msgid "Total size of buffer pool, in pages." msgstr "Total storlek på buffert, i sidor." -#: libraries/messages.inc.php:919 +#: libraries/messages.inc.php:915 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -5528,7 +5528,7 @@ msgstr "" "Antalet \"slumpmässiga\" läsningar i förväg som InnoDB initierat. Detta sker " "när en fråga ska avsöka en stor del av en tabell men i slumpmässig ordning." -#: libraries/messages.inc.php:920 +#: libraries/messages.inc.php:916 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -5536,11 +5536,11 @@ msgstr "" "Antalet sekventiella läsningar i förväg som InnoDB initierat. Detta sker när " "InnoDB gör en sekventiell avsökning av en hel tabell." -#: libraries/messages.inc.php:921 +#: libraries/messages.inc.php:917 msgid "The number of logical read requests InnoDB has done." msgstr "Antalet logiska läsefterfrågningar som InnoDB har gjort." -#: libraries/messages.inc.php:922 +#: libraries/messages.inc.php:918 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -5548,7 +5548,7 @@ msgstr "" "Antalet logiska läsningar som InnoDB inte kunde uppfylla från buffert och " "fick göra en enkelsidig läsning." -#: libraries/messages.inc.php:923 +#: libraries/messages.inc.php:919 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -5562,55 +5562,55 @@ msgstr "" "fall med dessa väntanden. Om buffertstorleken var riktigt satt ska detta " "värde vara litet." -#: libraries/messages.inc.php:924 +#: libraries/messages.inc.php:920 msgid "The number writes done to the InnoDB buffer pool." msgstr "Antalet skrivningar gjorda till InnoDB-bufferten." -#: libraries/messages.inc.php:925 +#: libraries/messages.inc.php:921 msgid "The number of fsync() operations so far." msgstr "Antalet fsync()-operationer hittills." -#: libraries/messages.inc.php:926 +#: libraries/messages.inc.php:922 msgid "The current number of pending fsync() operations." msgstr "Nuvarande antal pågående fsync()-operationer." -#: libraries/messages.inc.php:927 +#: libraries/messages.inc.php:923 msgid "The current number of pending reads." msgstr "Nuvarande antal pågående läsningar." -#: libraries/messages.inc.php:928 +#: libraries/messages.inc.php:924 msgid "The current number of pending writes." msgstr "Nuvarande antal pågående skrivningar." -#: libraries/messages.inc.php:929 +#: libraries/messages.inc.php:925 msgid "The amount of data read so far, in bytes." msgstr "Mängden data läst hittills, i bytes." -#: libraries/messages.inc.php:930 +#: libraries/messages.inc.php:926 msgid "The total number of data reads." msgstr "Totalt antal läsningar av data." -#: libraries/messages.inc.php:931 +#: libraries/messages.inc.php:927 msgid "The total number of data writes." msgstr "Totalt antal skrivningar av data." -#: libraries/messages.inc.php:932 +#: libraries/messages.inc.php:928 msgid "The amount of data written so far, in bytes." msgstr "Mängden data skriven hittills, i bytes." -#: libraries/messages.inc.php:933 +#: libraries/messages.inc.php:929 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Antalet dubbelskrivningar som har utförts och antalet sidor som har skrivits " "för detta ändamål." -#: libraries/messages.inc.php:934 +#: libraries/messages.inc.php:930 msgid "The number of doublewrite operations that have been performed." msgstr "" "Antalet dubbelskrivningar som har utförts och antalet sidor som har skrivits " "för detta ändamål." -#: libraries/messages.inc.php:935 +#: libraries/messages.inc.php:931 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -5618,35 +5618,35 @@ msgstr "" "Antalet väntanden pga loggbufferten var för liten och vi behövde vänta på " "att den skulle rensas innan kunde fortsätta." -#: libraries/messages.inc.php:936 +#: libraries/messages.inc.php:932 msgid "The number of log write requests." msgstr "Antalet efterfrågningar att skriva till logg." -#: libraries/messages.inc.php:937 +#: libraries/messages.inc.php:933 msgid "The number of physical writes to the log file." msgstr "Antalet fysiska skrivningar till loggfilen." -#: libraries/messages.inc.php:938 +#: libraries/messages.inc.php:934 msgid "The number of fsync() writes done to the log file." msgstr "Antalet fsync()-skrivningar gjorda till loggfilen." -#: libraries/messages.inc.php:939 +#: libraries/messages.inc.php:935 msgid "The number of pending log file fsyncs." msgstr "Antalet pågående fsync() av loggfil." -#: libraries/messages.inc.php:940 +#: libraries/messages.inc.php:936 msgid "Pending log file writes." msgstr "Pågående skrivningar till loggfil." -#: libraries/messages.inc.php:941 +#: libraries/messages.inc.php:937 msgid "The number of bytes written to the log file." msgstr "Antalet bytes skrivna till loggfilen." -#: libraries/messages.inc.php:942 +#: libraries/messages.inc.php:938 msgid "The number of pages created." msgstr "Antalet skapade sidor." -#: libraries/messages.inc.php:943 +#: libraries/messages.inc.php:939 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -5654,51 +5654,51 @@ msgstr "" "Den inkompilerade InnoDB-sidstorleken (standard 16kB). Många värden räknas i " "sidor; sidstorleken tillåter dem att enkelt omvandlas till bytes." -#: libraries/messages.inc.php:944 +#: libraries/messages.inc.php:940 msgid "The number of pages read." msgstr "Antalet lästa sidor." -#: libraries/messages.inc.php:945 +#: libraries/messages.inc.php:941 msgid "The number of pages written." msgstr "Antalet skrivna sidor." -#: libraries/messages.inc.php:946 +#: libraries/messages.inc.php:942 msgid "The number of row locks currently being waited for." msgstr "Antalet radlås som för närvarande väntas på." -#: libraries/messages.inc.php:947 +#: libraries/messages.inc.php:943 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Genomsnittlig tid för att skaffa ett radlås, i millisekunder." -#: libraries/messages.inc.php:948 +#: libraries/messages.inc.php:944 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Total tid spenderad på att skaffa radlås, i millisekunder." -#: libraries/messages.inc.php:949 +#: libraries/messages.inc.php:945 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Maximal tid för att skaffa ett radlås, i millisekunder." -#: libraries/messages.inc.php:950 +#: libraries/messages.inc.php:946 msgid "The number of times a row lock had to be waited for." msgstr "Antalet gånger ett radlås behövde väntas på." -#: libraries/messages.inc.php:951 +#: libraries/messages.inc.php:947 msgid "The number of rows deleted from InnoDB tables." msgstr "Antalet rader borttagna från InnoDB-tabeller." -#: libraries/messages.inc.php:952 +#: libraries/messages.inc.php:948 msgid "The number of rows inserted in InnoDB tables." msgstr "Antalet rader tillagda i InnoDB-tabeller." -#: libraries/messages.inc.php:953 +#: libraries/messages.inc.php:949 msgid "The number of rows read from InnoDB tables." msgstr "Antalet rader lästa från InnoDB-tabeller." -#: libraries/messages.inc.php:954 +#: libraries/messages.inc.php:950 msgid "The number of rows updated in InnoDB tables." msgstr "Antalet rader uppdaterade i InnoDB-tabeller." -#: libraries/messages.inc.php:955 +#: libraries/messages.inc.php:951 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -5706,7 +5706,7 @@ msgstr "" "Antalet nyckelblock i nyckelcachen som har ändrats men inte ännu överförts " "till disk. Det brukade vara känt som Not_flushed_key_blocks." -#: libraries/messages.inc.php:956 +#: libraries/messages.inc.php:952 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -5714,7 +5714,7 @@ msgstr "" "Antalet oanvända block i nyckelcachen. Du kan använda detta värde för att " "avgöra hur stor del av nyckelcachen som används." -#: libraries/messages.inc.php:957 +#: libraries/messages.inc.php:953 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -5723,11 +5723,11 @@ msgstr "" "Antalet använda block i nyckelcachen. Detta värde är ett högvattenmärke som " "indikerar maximala antalet block som någonsin använts vid ett tillfälle." -#: libraries/messages.inc.php:958 +#: libraries/messages.inc.php:954 msgid "The number of requests to read a key block from the cache." msgstr "Antalet efterfrågningar att läsa ett nyckelblock från cachen." -#: libraries/messages.inc.php:959 +#: libraries/messages.inc.php:955 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -5737,15 +5737,15 @@ msgstr "" "är stort, då är förmodligen ditt värde key_buffer_size för litet. Cachens " "missfrekvens kan beräknas som Key_reads/Key_read_requests." -#: libraries/messages.inc.php:960 +#: libraries/messages.inc.php:956 msgid "The number of requests to write a key block to the cache." msgstr "Antalet efterfrågningar att skriva ett nyckelblock till cachen." -#: libraries/messages.inc.php:961 +#: libraries/messages.inc.php:957 msgid "The number of physical writes of a key block to disk." msgstr "Antalet fysiska skrivningar av ett nyckelblock till disk." -#: libraries/messages.inc.php:962 +#: libraries/messages.inc.php:958 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -5756,11 +5756,11 @@ msgstr "" "av samma fråga. Standardvärdet 0 innebär att ingen fråga har kompilerats " "ännu." -#: libraries/messages.inc.php:963 +#: libraries/messages.inc.php:959 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Antalet rader som väntar på att skrivas i INSERT DELAYED-köer." -#: libraries/messages.inc.php:964 +#: libraries/messages.inc.php:960 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -5768,35 +5768,35 @@ msgstr "" "Antalet tabeller som har öppnats. Om antalet öppnade tabeller är stort är " "förmodligen ditt tabellcache-värde för litet." -#: libraries/messages.inc.php:965 +#: libraries/messages.inc.php:961 msgid "The number of files that are open." msgstr "Antalet filer som är öppna." -#: libraries/messages.inc.php:966 +#: libraries/messages.inc.php:962 msgid "The number of streams that are open (used mainly for logging)." msgstr "Antalet strömmar som är öppna (används huvudsakligen för loggning)." -#: libraries/messages.inc.php:967 +#: libraries/messages.inc.php:963 msgid "The number of tables that are open." msgstr "Antalet tabeller som är öppna." -#: libraries/messages.inc.php:968 +#: libraries/messages.inc.php:964 msgid "The number of free memory blocks in query cache." msgstr "Antalet fria minnesblock i frågecachen." -#: libraries/messages.inc.php:969 +#: libraries/messages.inc.php:965 msgid "The amount of free memory for query cache." msgstr "Mängden fritt minne för frågecache." -#: libraries/messages.inc.php:970 +#: libraries/messages.inc.php:966 msgid "The number of cache hits." msgstr "Antalet cache-träffar." -#: libraries/messages.inc.php:971 +#: libraries/messages.inc.php:967 msgid "The number of queries added to the cache." msgstr "Antalet frågor tillagda i cachen." -#: libraries/messages.inc.php:972 +#: libraries/messages.inc.php:968 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -5808,7 +5808,7 @@ msgstr "" "storleken på frågecachen. Frågecachen använder strategin minst nyligen " "använd (LRU) för att bestämma vilka frågor som ska tas bort från cachen." -#: libraries/messages.inc.php:973 +#: libraries/messages.inc.php:969 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -5816,24 +5816,24 @@ msgstr "" "Antalet icke-cachade frågor (inte möjliga att cacha eller inte cachade pga " "inställningen query_cache_type)." -#: libraries/messages.inc.php:974 +#: libraries/messages.inc.php:970 msgid "The number of queries registered in the cache." msgstr "Antalet frågor registrerade i cachen." -#: libraries/messages.inc.php:975 +#: libraries/messages.inc.php:971 msgid "The total number of blocks in the query cache." msgstr "Totala antalet block i frågecachen." -#: libraries/messages.inc.php:976 +#: libraries/messages.inc.php:972 msgctxt "$strShowStatusReset" msgid "Reset" msgstr "Återställ" -#: libraries/messages.inc.php:977 +#: libraries/messages.inc.php:973 msgid "The status of failsafe replication (not yet implemented)." msgstr "Status för felsäker replikering (ännu inte implementerat)." -#: libraries/messages.inc.php:978 +#: libraries/messages.inc.php:974 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -5841,11 +5841,11 @@ msgstr "" "Antalet föreningar som inte använder index. Om detta värde inte är 0, bör du " "noggrant kontrollera index för dina tabeller." -#: libraries/messages.inc.php:979 +#: libraries/messages.inc.php:975 msgid "The number of joins that used a range search on a reference table." msgstr "Antalet föreningar som använde en urvalssökning på en referenstabell." -#: libraries/messages.inc.php:980 +#: libraries/messages.inc.php:976 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -5854,7 +5854,7 @@ msgstr "" "varje rad. (Om detta värde inte är 0, bör du noggrant kontrollera index för " "dina tabeller.)" -#: libraries/messages.inc.php:981 +#: libraries/messages.inc.php:977 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -5862,16 +5862,16 @@ msgstr "" "Antalet föreningar som använde urval på den första tabellen. (Det är normalt " "inte kritiskt även om detta är stort.)" -#: libraries/messages.inc.php:982 +#: libraries/messages.inc.php:978 msgid "The number of joins that did a full scan of the first table." msgstr "" "Antalet föreningar som gjorde en fullständig avsökning av första tabellen." -#: libraries/messages.inc.php:983 +#: libraries/messages.inc.php:979 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "Antalet temporära tabeller för närvarande öppna av slavens SQL-tråd." -#: libraries/messages.inc.php:984 +#: libraries/messages.inc.php:980 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -5879,25 +5879,25 @@ msgstr "" "Totalt (sedan start) antal gånger som replikeringsslavens SQL-tråd har " "omprövat transaktioner." -#: libraries/messages.inc.php:985 +#: libraries/messages.inc.php:981 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Denna är ON ifall denna server är en slav som är förbunden till en " "huvudserver." -#: libraries/messages.inc.php:986 +#: libraries/messages.inc.php:982 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" "Antalet frågor som har tagit mer än slow_launch_time sekunder att skapa." -#: libraries/messages.inc.php:987 +#: libraries/messages.inc.php:983 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "Antalet frågor som har tagit mer än long_query_time sekunder." -#: libraries/messages.inc.php:988 +#: libraries/messages.inc.php:984 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -5907,23 +5907,23 @@ msgstr "" "detta värde är stort bör du överväga att öka värdet i systemvariabeln " "sort_buffer_size." -#: libraries/messages.inc.php:989 +#: libraries/messages.inc.php:985 msgid "The number of sorts that were done with ranges." msgstr "Antalet sorteringar som gjordes med urval." -#: libraries/messages.inc.php:990 +#: libraries/messages.inc.php:986 msgid "The number of sorted rows." msgstr "Antalet sorterade rader." -#: libraries/messages.inc.php:991 +#: libraries/messages.inc.php:987 msgid "The number of sorts that were done by scanning the table." msgstr "Antalet sorteringar som har gjorts genom avsökning av tabellen." -#: libraries/messages.inc.php:992 +#: libraries/messages.inc.php:988 msgid "The number of times that a table lock was acquired immediately." msgstr "Antalet gånger som ett tabellås förvärvades omedelbart." -#: libraries/messages.inc.php:993 +#: libraries/messages.inc.php:989 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -5935,7 +5935,7 @@ msgstr "" "du först optimera dina frågor och antingen dela upp din tabell eller " "tabeller eller använda replikering." -#: libraries/messages.inc.php:994 +#: libraries/messages.inc.php:990 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -5945,11 +5945,11 @@ msgstr "" "Threads_created/Connections. Om detta värde är rött bör du öka värdet " "thread_cache_size." -#: libraries/messages.inc.php:995 +#: libraries/messages.inc.php:991 msgid "The number of currently open connections." msgstr "Antalet för närvarande öppna förbindelser." -#: libraries/messages.inc.php:996 +#: libraries/messages.inc.php:992 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -5961,74 +5961,74 @@ msgstr "" "(Normalt ger detta inte någon märkbar prestandaförbättring om du har en bra " "trådimplementering.)" -#: libraries/messages.inc.php:997 +#: libraries/messages.inc.php:993 msgid "The number of threads that are not sleeping." msgstr "Antalet trådar som inte är vilande." -#: libraries/messages.inc.php:999 tbl_printview.php:75 +#: libraries/messages.inc.php:995 tbl_printview.php:75 msgid "Show tables" msgstr "Visa tabeller" -#: libraries/messages.inc.php:1000 libraries/sql_query_form.lib.php:396 +#: libraries/messages.inc.php:996 libraries/sql_query_form.lib.php:396 msgid " Show this query here again " msgstr " Visa frågan här igen " -#: libraries/messages.inc.php:1001 libraries/mysql_charsets.lib.php:217 +#: libraries/messages.inc.php:997 libraries/mysql_charsets.lib.php:217 #: libraries/mysql_charsets.lib.php:342 msgid "Simplified Chinese" msgstr "Förenklad kinesiska" -#: libraries/messages.inc.php:1002 tbl_operations.php:258 +#: libraries/messages.inc.php:998 tbl_operations.php:258 msgid "(singly)" msgstr "(ensam)" -#: libraries/messages.inc.php:1005 libraries/replication_gui.lib.php:52 +#: libraries/messages.inc.php:1001 libraries/replication_gui.lib.php:52 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" msgstr "" -#: libraries/messages.inc.php:1006 libraries/mysql_charsets.lib.php:283 +#: libraries/messages.inc.php:1002 libraries/mysql_charsets.lib.php:283 msgid "Slovak" msgstr "Slovakiska" -#: libraries/messages.inc.php:1007 libraries/mysql_charsets.lib.php:286 +#: libraries/messages.inc.php:1003 libraries/mysql_charsets.lib.php:286 msgid "Slovenian" msgstr "Slovenska" -#: libraries/messages.inc.php:1008 pmd_general.php:95 +#: libraries/messages.inc.php:1004 pmd_general.php:95 msgid "Small/Big All" msgstr "Små/stora alla" -#: libraries/messages.inc.php:1009 pmd_general.php:91 +#: libraries/messages.inc.php:1005 pmd_general.php:91 msgid "Snap to grid" msgstr "Fäst vid rutnät" -#: libraries/messages.inc.php:1011 server_synchronize.php:1167 +#: libraries/messages.inc.php:1007 server_synchronize.php:1167 msgid "Socket" msgstr "" -#: libraries/messages.inc.php:1013 server_status.php:259 +#: libraries/messages.inc.php:1009 server_status.php:259 msgid "Sorting" msgstr "Sortering" -#: libraries/messages.inc.php:1015 tbl_printview.php:310 tbl_structure.php:657 +#: libraries/messages.inc.php:1011 tbl_printview.php:310 tbl_structure.php:657 msgid "Space usage" msgstr "Utrymmesanvändning" -#: libraries/messages.inc.php:1016 libraries/mysql_charsets.lib.php:289 +#: libraries/messages.inc.php:1012 libraries/mysql_charsets.lib.php:289 msgid "Spanish" msgstr "Spanska" -#: libraries/messages.inc.php:1019 +#: libraries/messages.inc.php:1015 msgid "Export type" msgstr "Export-typ" -#: libraries/messages.inc.php:1020 +#: libraries/messages.inc.php:1016 msgid "Export time in UTC" msgstr "" -#: libraries/messages.inc.php:1021 libraries/sqlparser.lib.php:173 +#: libraries/messages.inc.php:1017 libraries/sqlparser.lib.php:173 msgid "" "There is a chance that you may have found a bug in the SQL parser. Please " "examine your query closely, and check that the quotes are correct and not " @@ -6051,7 +6051,7 @@ msgstr "" "frågor till den enda fråga som orsakar problem och skicka en buggrapport med " "datastycket i URKLIPP-sektionen nedan:" -#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:137 +#: libraries/messages.inc.php:1018 libraries/sqlparser.lib.php:137 msgid "" "There seems to be an error in your SQL query. The MySQL server error output " "below, if there is any, may also help you in diagnosing the problem" @@ -6059,33 +6059,33 @@ msgstr "" "Det verkar vara ett fel i din SQL-fråga. Felmeddelandet från MySQL-servern " "nedan, om det finns något, kan också hjälpa dig att analysera problemet." -#: libraries/messages.inc.php:1026 libraries/sqlparser.lib.php:495 +#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:495 msgid "Invalid Identifer" msgstr "Ogiltig identifierare" -#: libraries/messages.inc.php:1027 libraries/sqlparser.lib.php:344 +#: libraries/messages.inc.php:1023 libraries/sqlparser.lib.php:344 msgid "Unclosed quote" msgstr "Oavslutat citat" -#: libraries/messages.inc.php:1028 libraries/sqlparser.lib.php:612 +#: libraries/messages.inc.php:1024 libraries/sqlparser.lib.php:612 msgid "Unknown Punctuation String" msgstr "Okänd interpunktion i sträng" -#: libraries/messages.inc.php:1030 server_replication.php:327 +#: libraries/messages.inc.php:1026 server_replication.php:327 #: server_replication.php:328 #, fuzzy msgid "Start" msgstr "Start" -#: libraries/messages.inc.php:1033 tbl_printview.php:369 tbl_structure.php:729 +#: libraries/messages.inc.php:1029 tbl_printview.php:369 tbl_structure.php:729 msgid "Statements" msgstr "Uppgift" -#: libraries/messages.inc.php:1034 tbl_printview.php:380 tbl_structure.php:741 +#: libraries/messages.inc.php:1030 tbl_printview.php:380 tbl_structure.php:741 msgid "static" msgstr "statisk" -#: libraries/messages.inc.php:1035 server_status.php:388 +#: libraries/messages.inc.php:1031 server_status.php:388 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -6093,203 +6093,203 @@ msgstr "" "På en upptagen server kan byte-räknare spåra ur, varför denna statistik som " "rapporterats från MySQL-servern kan vara felaktig." -#: libraries/messages.inc.php:1038 server_replication.php:327 +#: libraries/messages.inc.php:1034 server_replication.php:327 #: server_replication.php:328 msgid "Stop" msgstr "" -#: libraries/messages.inc.php:1039 server_engines.php:49 +#: libraries/messages.inc.php:1035 server_engines.php:49 msgid "Storage Engines" msgstr "Lagringsmotorer" -#: libraries/messages.inc.php:1040 libraries/tbl_properties.inc.php:726 +#: libraries/messages.inc.php:1036 libraries/tbl_properties.inc.php:726 #: server_engines.php:58 tbl_operations.php:353 msgid "Storage Engine" msgstr "Lagringsmotor" -#: libraries/messages.inc.php:1042 +#: libraries/messages.inc.php:1038 msgid "CSV for MS Excel" msgstr "CSV för MS Excel" -#: libraries/messages.inc.php:1044 tbl_structure.php:516 tbl_structure.php:518 +#: libraries/messages.inc.php:1040 tbl_structure.php:516 tbl_structure.php:518 msgid "Propose table structure" msgstr "Föreslå tabellstruktur" -#: libraries/messages.inc.php:1045 server_synchronize.php:424 +#: libraries/messages.inc.php:1041 server_synchronize.php:424 #: server_synchronize.php:867 #, fuzzy msgid "Structure Difference" msgstr "Struktur för visning" -#: libraries/messages.inc.php:1049 server_synchronize.php:265 +#: libraries/messages.inc.php:1045 server_synchronize.php:265 msgid "Structure Synchronization" msgstr "" -#: libraries/messages.inc.php:1050 libraries/sql_query_form.lib.php:462 +#: libraries/messages.inc.php:1046 libraries/sql_query_form.lib.php:462 msgid "Submit" msgstr "Sänd" -#: libraries/messages.inc.php:1052 main.php:358 +#: libraries/messages.inc.php:1048 main.php:358 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " "issues." msgstr "Server körs med Suhosin. Se %sdokumentation%s för möjliga frågor." -#: libraries/messages.inc.php:1054 libraries/mysql_charsets.lib.php:295 +#: libraries/messages.inc.php:1050 libraries/mysql_charsets.lib.php:295 #: libraries/mysql_charsets.lib.php:392 msgid "Swedish" msgstr "Svensk" -#: libraries/messages.inc.php:1060 tbl_operations.php:556 +#: libraries/messages.inc.php:1056 tbl_operations.php:556 msgid "Switch to copied table" msgstr "Byt till kopierad tabell" -#: libraries/messages.inc.php:1061 server_synchronize.php:1213 +#: libraries/messages.inc.php:1057 server_synchronize.php:1213 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." msgstr "" -#: libraries/messages.inc.php:1062 server_synchronize.php:451 +#: libraries/messages.inc.php:1058 server_synchronize.php:451 #: server_synchronize.php:896 msgid "Synchronize Databases" msgstr "" -#: libraries/messages.inc.php:1063 libraries/server_links.inc.php:92 +#: libraries/messages.inc.php:1059 libraries/server_links.inc.php:92 #: server_synchronize.php:1092 server_synchronize.php:1100 msgid "Synchronize" msgstr "" -#: libraries/messages.inc.php:1065 server_synchronize.php:430 +#: libraries/messages.inc.php:1061 server_synchronize.php:430 #: server_synchronize.php:873 msgid "Add column(s)" msgstr "" -#: libraries/messages.inc.php:1066 tbl_create.php:62 +#: libraries/messages.inc.php:1062 tbl_create.php:62 #, php-format msgid "Table %s already exists!" msgstr "Tabell %s finns redan!" -#: libraries/messages.inc.php:1067 server_synchronize.php:432 +#: libraries/messages.inc.php:1063 server_synchronize.php:432 #: server_synchronize.php:875 msgid "Alter column(s)" msgstr "" -#: libraries/messages.inc.php:1068 tbl_addfield.php:189 tbl_alter.php:103 +#: libraries/messages.inc.php:1064 tbl_addfield.php:189 tbl_alter.php:103 #: tbl_indexes.php:98 #, php-format msgid "Table %1$s has been altered successfully" msgstr "Tabell %1$s har ändrats" -#: libraries/messages.inc.php:1069 server_synchronize.php:434 +#: libraries/messages.inc.php:1065 server_synchronize.php:434 #: server_synchronize.php:877 msgid "Apply index(s)" msgstr "" -#: libraries/messages.inc.php:1071 server_synchronize.php:446 +#: libraries/messages.inc.php:1067 server_synchronize.php:446 #: server_synchronize.php:890 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: libraries/messages.inc.php:1072 tbl_move_copy.php:82 +#: libraries/messages.inc.php:1068 tbl_move_copy.php:82 msgid "The table name is empty!" msgstr "Tabellnamnet är tomt!" -#: libraries/messages.inc.php:1073 tbl_create.php:249 +#: libraries/messages.inc.php:1069 tbl_create.php:249 #, php-format msgid "Table %1$s has been created." msgstr "Tabell %1$s har skapats." -#: libraries/messages.inc.php:1076 tbl_operations.php:628 +#: libraries/messages.inc.php:1072 tbl_operations.php:628 #, php-format msgid "Table %s has been flushed" msgstr "Tabellen %s har rensats" -#: libraries/messages.inc.php:1077 server_synchronize.php:436 +#: libraries/messages.inc.php:1073 server_synchronize.php:436 #: server_synchronize.php:879 msgid "Insert row(s)" msgstr "" -#: libraries/messages.inc.php:1078 libraries/tbl_links.inc.php:107 +#: libraries/messages.inc.php:1074 libraries/tbl_links.inc.php:107 #: libraries/tbl_links.inc.php:140 libraries/tbl_links.inc.php:141 msgid "Table seems to be empty!" msgstr "Tabellen verkar vara tom!" -#: libraries/messages.inc.php:1079 tbl_operations.php:568 +#: libraries/messages.inc.php:1075 tbl_operations.php:568 msgid "Table maintenance" msgstr "Tabellunderhåll" -#: libraries/messages.inc.php:1080 libraries/tbl_properties.inc.php:618 +#: libraries/messages.inc.php:1076 libraries/tbl_properties.inc.php:618 #: server_synchronize.php:428 server_synchronize.php:871 msgid "Table name" msgstr "Tabellnamn" -#: libraries/messages.inc.php:1081 pdf_schema.php:1116 +#: libraries/messages.inc.php:1077 pdf_schema.php:1116 msgid "Table of contents" msgstr "Innehållsförteckning" -#: libraries/messages.inc.php:1082 tbl_operations.php:334 +#: libraries/messages.inc.php:1078 tbl_operations.php:334 msgid "Table options" msgstr "Tabellalternativ" -#: libraries/messages.inc.php:1083 server_synchronize.php:431 +#: libraries/messages.inc.php:1079 server_synchronize.php:431 #: server_synchronize.php:874 msgid "Remove column(s)" msgstr "" -#: libraries/messages.inc.php:1084 server_synchronize.php:433 +#: libraries/messages.inc.php:1080 server_synchronize.php:433 #: server_synchronize.php:876 msgid "Remove index(s)" msgstr "" -#: libraries/messages.inc.php:1088 server_synchronize.php:435 +#: libraries/messages.inc.php:1084 server_synchronize.php:435 #: server_synchronize.php:878 msgid "Update row(s)" msgstr "" -#: libraries/messages.inc.php:1090 server_synchronize.php:942 +#: libraries/messages.inc.php:1086 server_synchronize.php:942 msgid "Target database has been synchronized with source database" msgstr "" -#: libraries/messages.inc.php:1091 server_privileges.php:392 +#: libraries/messages.inc.php:1087 server_privileges.php:392 #: server_privileges.php:527 server_privileges.php:1679 #: server_privileges.php:1685 msgid "Table-specific privileges" msgstr "Tabellspecifika privilegier" -#: libraries/messages.inc.php:1092 server_status.php:254 +#: libraries/messages.inc.php:1088 server_status.php:254 msgid "Temporary data" msgstr "Temporära data" -#: libraries/messages.inc.php:1093 tbl_change.php:728 +#: libraries/messages.inc.php:1089 tbl_change.php:728 msgid " Because of its length,
this field might not be editable " msgstr " På grund av dess längd,
kanske detta fält inte kan redigeras " -#: libraries/messages.inc.php:1094 +#: libraries/messages.inc.php:1090 msgid "Texy! text" msgstr "Texy! text" -#: libraries/messages.inc.php:1095 libraries/mysql_charsets.lib.php:298 +#: libraries/messages.inc.php:1091 libraries/mysql_charsets.lib.php:298 #: libraries/mysql_charsets.lib.php:395 msgid "Thai" msgstr "Thailändsk" -#: libraries/messages.inc.php:1102 libraries/replication_gui.lib.php:308 +#: libraries/messages.inc.php:1098 libraries/replication_gui.lib.php:308 #: server_privileges.php:734 msgid "This Host" msgstr "Denna värd" -#: libraries/messages.inc.php:1103 server_status.php:252 +#: libraries/messages.inc.php:1099 server_status.php:252 msgid "Threads" msgstr "Trådar" -#: libraries/messages.inc.php:1104 server_processlist.php:22 +#: libraries/messages.inc.php:1100 server_processlist.php:22 #, php-format msgid "Thread %s was successfully killed." msgstr "Tråd %s dödades med framgång." -#: libraries/messages.inc.php:1106 +#: libraries/messages.inc.php:1102 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -6298,185 +6298,185 @@ msgstr "" "att phpMyAdmin inte kan slutföra denna import såvida du inte ökar PHP:s " "tidsbegränsningar." -#: libraries/messages.inc.php:1109 pmd_pdf.php:94 +#: libraries/messages.inc.php:1105 pmd_pdf.php:94 msgid "to/from page" msgstr "till/från sida" -#: libraries/messages.inc.php:1110 pdf_pages.php:343 +#: libraries/messages.inc.php:1106 pdf_pages.php:343 msgid "Toggle scratchboard" msgstr "Visa/dölj skisstavla" -#: libraries/messages.inc.php:1111 pmd_general.php:99 +#: libraries/messages.inc.php:1107 pmd_general.php:99 msgid "Toggle small/big" msgstr "Växla liten/stor" -#: libraries/messages.inc.php:1112 pmd_help.php:27 +#: libraries/messages.inc.php:1108 pmd_help.php:27 msgid "To select relation, click :" msgstr "För att välja relation, klicka :" -#: libraries/messages.inc.php:1115 libraries/tbl_links.inc.php:149 +#: libraries/messages.inc.php:1111 libraries/tbl_links.inc.php:149 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" -#: libraries/messages.inc.php:1116 tbl_tracking.php:655 +#: libraries/messages.inc.php:1112 tbl_tracking.php:655 msgid "Activate now" msgstr "" -#: libraries/messages.inc.php:1117 tbl_tracking.php:653 +#: libraries/messages.inc.php:1113 tbl_tracking.php:653 #, php-format msgid "Activate tracking for %s.%s" msgstr "" -#: libraries/messages.inc.php:1118 tbl_tracking.php:221 +#: libraries/messages.inc.php:1114 tbl_tracking.php:221 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/messages.inc.php:1119 tbl_tracking.php:688 +#: libraries/messages.inc.php:1115 tbl_tracking.php:688 #, fuzzy msgid "Create version" msgstr "Skapa relation" -#: libraries/messages.inc.php:1120 tbl_tracking.php:668 +#: libraries/messages.inc.php:1116 tbl_tracking.php:668 #, php-format msgid "Create version %s of %s.%s" msgstr "" -#: libraries/messages.inc.php:1122 tbl_tracking.php:412 +#: libraries/messages.inc.php:1118 tbl_tracking.php:412 msgid "Data definition statement" msgstr "" -#: libraries/messages.inc.php:1123 tbl_tracking.php:463 +#: libraries/messages.inc.php:1119 tbl_tracking.php:463 msgid "Data manipulation statement" msgstr "" -#: libraries/messages.inc.php:1124 tbl_tracking.php:410 tbl_tracking.php:461 +#: libraries/messages.inc.php:1120 tbl_tracking.php:410 tbl_tracking.php:461 #, fuzzy msgid "Date" msgstr "Data" -#: libraries/messages.inc.php:1125 tbl_tracking.php:642 +#: libraries/messages.inc.php:1121 tbl_tracking.php:642 msgid "Deactivate now" msgstr "" -#: libraries/messages.inc.php:1126 tbl_tracking.php:640 +#: libraries/messages.inc.php:1122 tbl_tracking.php:640 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "" -#: libraries/messages.inc.php:1127 tbl_tracking.php:521 +#: libraries/messages.inc.php:1123 tbl_tracking.php:521 #, fuzzy, php-format msgid "Export as %s" msgstr "Standard för export" -#: libraries/messages.inc.php:1130 tbl_tracking.php:251 tbl_tracking.php:379 +#: libraries/messages.inc.php:1126 tbl_tracking.php:251 tbl_tracking.php:379 msgid "Close" msgstr "" -#: libraries/messages.inc.php:1131 tbl_tracking.php:114 +#: libraries/messages.inc.php:1127 tbl_tracking.php:114 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/messages.inc.php:1133 tbl_tracking.php:397 tbl_tracking.php:504 +#: libraries/messages.inc.php:1129 tbl_tracking.php:397 tbl_tracking.php:504 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "" -#: libraries/messages.inc.php:1134 tbl_tracking.php:561 +#: libraries/messages.inc.php:1130 tbl_tracking.php:561 msgid "Show versions" msgstr "" -#: libraries/messages.inc.php:1135 tbl_tracking.php:507 +#: libraries/messages.inc.php:1131 tbl_tracking.php:507 msgid "SQL dump (file download)" msgstr "" -#: libraries/messages.inc.php:1136 tbl_tracking.php:508 +#: libraries/messages.inc.php:1132 tbl_tracking.php:508 msgid "SQL dump" msgstr "" -#: libraries/messages.inc.php:1137 tbl_tracking.php:213 +#: libraries/messages.inc.php:1133 tbl_tracking.php:213 msgid "SQL statements executed." msgstr "" -#: libraries/messages.inc.php:1138 +#: libraries/messages.inc.php:1134 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/messages.inc.php:1139 tbl_tracking.php:509 +#: libraries/messages.inc.php:1135 tbl_tracking.php:509 msgid "SQL execution" msgstr "" -#: libraries/messages.inc.php:1140 tbl_tracking.php:230 +#: libraries/messages.inc.php:1136 tbl_tracking.php:230 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/messages.inc.php:1141 tbl_tracking.php:381 +#: libraries/messages.inc.php:1137 tbl_tracking.php:381 msgid "Tracking statements" msgstr "" -#: libraries/messages.inc.php:1148 tbl_tracking.php:593 +#: libraries/messages.inc.php:1144 tbl_tracking.php:593 #, fuzzy msgid "Version" msgstr "Persiska" -#: libraries/messages.inc.php:1149 tbl_tracking.php:672 +#: libraries/messages.inc.php:1145 tbl_tracking.php:672 msgid "Track these data definition statements:" msgstr "" -#: libraries/messages.inc.php:1150 tbl_tracking.php:680 +#: libraries/messages.inc.php:1146 tbl_tracking.php:680 msgid "Track these data manipulation statements:" msgstr "" -#: libraries/messages.inc.php:1155 tbl_tracking.php:411 tbl_tracking.php:462 +#: libraries/messages.inc.php:1151 tbl_tracking.php:411 tbl_tracking.php:462 #, fuzzy msgid "Username" msgstr "Användarnamn:" -#: libraries/messages.inc.php:1156 tbl_tracking.php:203 +#: libraries/messages.inc.php:1152 tbl_tracking.php:203 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "" -#: libraries/messages.inc.php:1157 tbl_tracking.php:187 +#: libraries/messages.inc.php:1153 tbl_tracking.php:187 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "" -#: libraries/messages.inc.php:1158 tbl_tracking.php:195 +#: libraries/messages.inc.php:1154 tbl_tracking.php:195 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "" -#: libraries/messages.inc.php:1159 tbl_tracking.php:262 +#: libraries/messages.inc.php:1155 tbl_tracking.php:262 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/messages.inc.php:1161 tbl_tracking.php:220 +#: libraries/messages.inc.php:1157 tbl_tracking.php:220 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/messages.inc.php:1162 libraries/mysql_charsets.lib.php:219 +#: libraries/messages.inc.php:1158 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:362 msgid "Traditional Chinese" msgstr "Traditionell kinesiska" -#: libraries/messages.inc.php:1163 libraries/mysql_charsets.lib.php:292 +#: libraries/messages.inc.php:1159 libraries/mysql_charsets.lib.php:292 msgid "Traditional Spanish" msgstr "Traditionell Spanska" -#: libraries/messages.inc.php:1164 server_status.php:388 +#: libraries/messages.inc.php:1160 server_status.php:388 msgid "Traffic" msgstr "Trafik" -#: libraries/messages.inc.php:1165 server_status.php:261 +#: libraries/messages.inc.php:1161 server_status.php:261 msgid "Transaction coordinator" msgstr "Transaktionssamordnare" -#: libraries/messages.inc.php:1166 +#: libraries/messages.inc.php:1162 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 " @@ -6488,7 +6488,7 @@ msgstr "" "ange fältnamnet för en tabellkolumn som innehåller filnamn. Om du anger " "andra parametern så måste första parametern sättas till en tom sträng." -#: libraries/messages.inc.php:1167 +#: libraries/messages.inc.php:1163 msgid "" "Displays hexadecimal representation of data. Optional first parameter " "specifies how often space will be added (defaults to 2 nibbles)." @@ -6496,7 +6496,7 @@ msgstr "" "Visar hexadecimal representation av data. Valfri första parameter anger hur " "ofta mellanslag läggs till (standardvärde: 2 tecken)." -#: libraries/messages.inc.php:1168 +#: libraries/messages.inc.php:1164 msgid "" "Displays a clickable thumbnail. The options are the maximum width and height " "in pixels. The original aspect ratio is preserved." @@ -6504,15 +6504,15 @@ msgstr "" "Visar en klickbar tumnagelbild. Parametrarna är maximal bredd och höjd i " "pixlar. Bildens ursprungliga proportioner bibehålls." -#: libraries/messages.inc.php:1169 +#: libraries/messages.inc.php:1165 msgid "Displays a link to download this image." msgstr "Visar en länk för att ladda ner denna bild." -#: libraries/messages.inc.php:1170 +#: libraries/messages.inc.php:1166 msgid "See image/jpeg: inline" msgstr "Se image/jpeg: inline" -#: libraries/messages.inc.php:1171 +#: libraries/messages.inc.php:1167 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 " @@ -6531,7 +6531,7 @@ msgstr "" "har datumformatet olika värden - för \"local\" se dokumentationen för PHP:s " "funktion strftime() och för \"utc\" se funktionen gmdate()." -#: libraries/messages.inc.php:1172 +#: libraries/messages.inc.php:1168 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 " @@ -6555,7 +6555,7 @@ msgstr "" "parametern sätts till 1 kommer radbrytning att undvikas så att all utdata " "kommer att visas på en rad (standardvärde: 1)." -#: libraries/messages.inc.php:1173 +#: libraries/messages.inc.php:1169 msgid "" "Displays the contents of the field as-is, without running it through " "htmlspecialchars(). That is, the field is assumed to contain valid HTML." @@ -6563,7 +6563,7 @@ msgstr "" "Visar innehållet i fältet som det är, utan att köra det genom " "htmlspecialchars(). Det innebär att fältet antas innehålla korrekt HTML-kod." -#: libraries/messages.inc.php:1174 +#: libraries/messages.inc.php:1170 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 " @@ -6573,7 +6573,7 @@ msgstr "" "ett URL-prefix såsom \"http://www.example.com/\". Andra och tredje " "parametern är bredden och höjden i pixlar." -#: libraries/messages.inc.php:1175 +#: libraries/messages.inc.php:1171 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 " @@ -6583,11 +6583,11 @@ msgstr "" "prefix såsom \"http://www.example.com/\". Andra parametern är en titel för " "länken." -#: libraries/messages.inc.php:1176 +#: libraries/messages.inc.php:1172 msgid "Formats text as SQL query with syntax highlighting." msgstr "Formaterar text som en SQL-fråga med markerade satser." -#: libraries/messages.inc.php:1177 +#: libraries/messages.inc.php:1173 msgid "" "Displays a part of a string. The first option is the number of characters to " "skip from the beginning of the string (Default 0). The second option is the " @@ -6601,69 +6601,69 @@ msgstr "" "tredje parametern är en sträng som läggs till i slutet och/eller början när " "trunkering utförs (standardvärde: \"...\")." -#: libraries/messages.inc.php:1179 server_binlog.php:183 server_binlog.php:186 +#: libraries/messages.inc.php:1175 server_binlog.php:183 server_binlog.php:186 #: server_processlist.php:49 server_processlist.php:51 msgid "Truncate Shown Queries" msgstr "Korta av visade frågor" -#: libraries/messages.inc.php:1180 libraries/mysql_charsets.lib.php:301 +#: libraries/messages.inc.php:1176 libraries/mysql_charsets.lib.php:301 #: libraries/mysql_charsets.lib.php:389 msgid "Turkish" msgstr "Turkisk" -#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:304 +#: libraries/messages.inc.php:1179 libraries/mysql_charsets.lib.php:304 #: libraries/mysql_charsets.lib.php:386 msgid "Ukrainian" msgstr "Ukrainsk" -#: libraries/messages.inc.php:1185 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:1181 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 msgid "Unicode" msgstr "Unicode" -#: libraries/messages.inc.php:1187 libraries/mysql_charsets.lib.php:398 +#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:398 #: libraries/mysql_charsets.lib.php:405 msgid "unknown" msgstr "okänd" -#: libraries/messages.inc.php:1190 server_privileges.php:1152 +#: libraries/messages.inc.php:1186 server_privileges.php:1152 #, php-format msgid "You have updated the privileges for %s." msgstr "Du har uppdaterat privilegierna för %s." -#: libraries/messages.inc.php:1191 user_password.php:112 +#: libraries/messages.inc.php:1187 user_password.php:112 msgid "The profile has been updated." msgstr "Profilen har uppdaterats." -#: libraries/messages.inc.php:1193 libraries/relation.lib.php:138 +#: libraries/messages.inc.php:1189 libraries/relation.lib.php:138 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "Se dokumentationen för uppdatering av din tabell column_comments" -#: libraries/messages.inc.php:1194 +#: libraries/messages.inc.php:1190 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Du bör uppgradera till %s %s eller senare." -#: libraries/messages.inc.php:1204 tbl_printview.php:314 tbl_structure.php:661 +#: libraries/messages.inc.php:1200 tbl_printview.php:314 tbl_structure.php:661 msgid "Usage" msgstr "Användning" -#: libraries/messages.inc.php:1205 +#: libraries/messages.inc.php:1201 msgid "Enclose table and field names with backquotes" msgstr "Använd bakåtcitat runt tabell- och fältnamn" -#: libraries/messages.inc.php:1206 libraries/replication_gui.lib.php:314 +#: libraries/messages.inc.php:1202 libraries/replication_gui.lib.php:314 #: server_privileges.php:740 msgid "Use Host Table" msgstr "Använd värdtabell" -#: libraries/messages.inc.php:1207 server_privileges.php:848 +#: libraries/messages.inc.php:1203 server_privileges.php:848 #, php-format msgid "The user %s already exists!" msgstr "Användaren %s finns redan!" -#: libraries/messages.inc.php:1209 libraries/replication_gui.lib.php:55 +#: libraries/messages.inc.php:1205 libraries/replication_gui.lib.php:55 #: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245 #: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255 #: server_privileges.php:672 server_privileges.php:675 @@ -6671,37 +6671,37 @@ msgstr "Användaren %s finns redan!" msgid "User name" msgstr "Användarnamn" -#: libraries/messages.inc.php:1210 server_privileges.php:1645 +#: libraries/messages.inc.php:1206 server_privileges.php:1645 msgid "The selected user was not found in the privilege table." msgstr "Den markerade användaren kunde inte hittas i privilegiumtabellen." -#: libraries/messages.inc.php:1211 server_privileges.php:1365 +#: libraries/messages.inc.php:1207 server_privileges.php:1365 msgid "User overview" msgstr "Användaröversikt" -#: libraries/messages.inc.php:1212 server_privileges.php:1261 +#: libraries/messages.inc.php:1208 server_privileges.php:1261 msgid "The selected users have been deleted successfully." msgstr "De markerade användarna har tagits bort." -#: libraries/messages.inc.php:1213 server_privileges.php:2026 +#: libraries/messages.inc.php:1209 server_privileges.php:2026 #, php-format msgid "Users having access to "%s"" msgstr "Användare som har tillgång till "%s"" -#: libraries/messages.inc.php:1214 main.php:189 server_privileges.php:1350 +#: libraries/messages.inc.php:1210 main.php:189 server_privileges.php:1350 #: server_privileges.php:1497 server_privileges.php:1611 #: server_privileges.php:2029 server_processlist.php:54 msgid "User" msgstr "Användare" -#: libraries/messages.inc.php:1215 tbl_change.php:1171 +#: libraries/messages.inc.php:1211 tbl_change.php:1171 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Använd TAB-tangenten för att flytta från värde till värde, eller CTRL+pil " "för att flytta vart som helst" -#: libraries/messages.inc.php:1217 libraries/replication_gui.lib.php:251 +#: libraries/messages.inc.php:1213 libraries/replication_gui.lib.php:251 #: libraries/replication_gui.lib.php:319 libraries/replication_gui.lib.php:342 #: server_privileges.php:678 server_privileges.php:745 #: server_privileges.php:769 server_privileges.php:1889 @@ -6709,7 +6709,7 @@ msgstr "" msgid "Use text field" msgstr "Använd textfältet" -#: libraries/messages.inc.php:1221 libraries/sqlvalidator.lib.php:68 +#: libraries/messages.inc.php:1217 libraries/sqlvalidator.lib.php:68 #, php-format msgid "" "The SQL validator could not be initialized. Please check if you have " @@ -6718,90 +6718,90 @@ msgstr "" "SQL-validatorn kunde inte initieras. Kontrollera om du har installerat de " "nödvändiga PHP-tilläggen enligt %sdokumentationen%s." -#: libraries/messages.inc.php:1222 libraries/replication_gui.lib.php:111 +#: libraries/messages.inc.php:1218 libraries/replication_gui.lib.php:111 #: server_status.php:627 tbl_change.php:324 tbl_printview.php:370 #: tbl_select.php:139 tbl_structure.php:730 msgid "Value" msgstr "Värde" -#: libraries/messages.inc.php:1223 libraries/replication_gui.lib.php:110 +#: libraries/messages.inc.php:1219 libraries/replication_gui.lib.php:110 #: libraries/sql_query_form.lib.php:445 server_status.php:626 #: server_variables.php:52 msgid "Variable" msgstr "Variabel" -#: libraries/messages.inc.php:1225 server_export.php:21 +#: libraries/messages.inc.php:1221 server_export.php:21 msgid "View dump (schema) of databases" msgstr "Visa SQL-satser för databaser" -#: libraries/messages.inc.php:1227 tbl_export.php:23 +#: libraries/messages.inc.php:1223 tbl_export.php:23 msgid "View dump (schema) of table" msgstr "Visa SQL-satser för tabellen" -#: libraries/messages.inc.php:1231 view_create.php:142 +#: libraries/messages.inc.php:1227 view_create.php:142 msgid "VIEW name" msgstr "Namn på vy" -#: libraries/messages.inc.php:1237 main.php:205 +#: libraries/messages.inc.php:1233 main.php:205 msgid "Web server" msgstr "Webbserver" -#: libraries/messages.inc.php:1239 libraries/mysql_charsets.lib.php:277 +#: libraries/messages.inc.php:1235 libraries/mysql_charsets.lib.php:277 #: libraries/mysql_charsets.lib.php:325 msgid "West European" msgstr "Västeuropeisk" -#: libraries/messages.inc.php:1240 main.php:230 +#: libraries/messages.inc.php:1236 main.php:230 msgid "Wiki" msgstr "Wiki" -#: libraries/messages.inc.php:1241 server_privileges.php:2138 +#: libraries/messages.inc.php:1237 server_privileges.php:2138 msgid "wildcard" msgstr "jokertecken" -#: libraries/messages.inc.php:1248 +#: libraries/messages.inc.php:1244 #, fuzzy msgid "Export contents" msgstr "Standard för export" -#: libraries/messages.inc.php:1249 +#: libraries/messages.inc.php:1245 #, fuzzy msgid "Export functions" msgstr "Standard för export" -#: libraries/messages.inc.php:1250 +#: libraries/messages.inc.php:1246 msgid "Export procedures" msgstr "" -#: libraries/messages.inc.php:1251 +#: libraries/messages.inc.php:1247 msgid "Export Structure Schemas (recommended)" msgstr "" -#: libraries/messages.inc.php:1252 +#: libraries/messages.inc.php:1248 #, fuzzy msgid "Export tables" msgstr "Export-typ" -#: libraries/messages.inc.php:1253 +#: libraries/messages.inc.php:1249 #, fuzzy msgid "Export triggers" msgstr "Export-typ" -#: libraries/messages.inc.php:1254 +#: libraries/messages.inc.php:1250 #, fuzzy msgid "Export views" msgstr "Standard för export" -#: libraries/messages.inc.php:1255 +#: libraries/messages.inc.php:1251 msgid "XML" msgstr "XML" -#: libraries/messages.inc.php:1259 server_privileges.php:592 +#: libraries/messages.inc.php:1255 server_privileges.php:592 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" "Anm: Genom att sätta dessa alternativ till 0 (noll) tas begränsningarna bort." -#: libraries/messages.inc.php:1260 +#: libraries/messages.inc.php:1256 msgid "\"zipped\"" msgstr "\"zippad\"" diff --git a/po/ta.po b/po/ta.po index cab4f1db6..d5084eddf 100644 --- 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-05-13 11:25+0200\n" +"POT-Creation-Date: 2010-05-13 11:30+0200\n" "PO-Revision-Date: 2010-04-16 10:43+0200\n" "Last-Translator: Sutharshan \n" "Language-Team: Tamil \n" @@ -18,19 +18,19 @@ msgstr "" "X-Generator: Pootle 2.0.1\n" #: browse_foreigners.php:38 browse_foreigners.php:59 -#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:870 +#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:866 #: server_privileges.php:1475 msgid "Show all" msgstr "" #: browse_foreigners.php:82 db_operations.php:648 -#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:394 -#: libraries/export/pdf.php:147 libraries/messages.inc.php:597 +#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394 +#: libraries/export/pdf.php:147 libraries/messages.inc.php:593 #: pdf_schema.php:283 pdf_schema.php:1123 pdf_schema.php:1139 msgid "Page number:" msgstr "" -#: browse_foreigners.php:132 libraries/messages.inc.php:1242 +#: browse_foreigners.php:132 libraries/messages.inc.php:1238 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -40,7 +40,7 @@ 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/db_links.inc.php:75 -#: libraries/messages.inc.php:841 libraries/tbl_links.inc.php:63 +#: libraries/messages.inc.php:837 libraries/tbl_links.inc.php:63 msgid "Search" msgstr "" @@ -49,12 +49,12 @@ msgstr "" #: db_search.php:362 db_structure.php:567 js/messages.php:48 #: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2267 +#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 #: 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 #: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614 -#: libraries/messages.inc.php:361 libraries/replication_gui.lib.php:73 +#: libraries/messages.inc.php:357 libraries/replication_gui.lib.php:73 #: libraries/replication_gui.lib.php:365 libraries/select_server.lib.php:104 #: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477 #: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782 @@ -74,33 +74,33 @@ msgid "Go" msgstr "" #: browse_foreigners.php:168 browse_foreigners.php:172 -#: libraries/Index.class.php:442 libraries/messages.inc.php:459 +#: libraries/Index.class.php:442 libraries/messages.inc.php:455 #: tbl_tracking.php:320 msgid "Keyname" msgstr "" #: browse_foreigners.php:169 browse_foreigners.php:171 -#: libraries/messages.inc.php:252 server_collations.php:55 +#: libraries/messages.inc.php:248 server_collations.php:55 #: server_collations.php:67 server_engines.php:59 server_status.php:628 msgid "Description" msgstr "" #: browse_foreigners.php:247 browse_foreigners.php:256 #: browse_foreigners.php:268 browse_foreigners.php:276 -#: libraries/messages.inc.php:1218 +#: libraries/messages.inc.php:1214 msgid "Use this value" msgstr "" -#: db_create.php:46 libraries/messages.inc.php:215 +#: db_create.php:46 libraries/messages.inc.php:211 #, php-format msgid "Database %1$s has been created." msgstr "" -#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:232 +#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:228 msgid "Database comment: " msgstr "" -#: db_datadict.php:165 libraries/messages.inc.php:1070 +#: db_datadict.php:165 libraries/messages.inc.php:1066 #: libraries/tbl_properties.inc.php:724 pdf_schema.php:1236 #: tbl_operations.php:345 tbl_printview.php:130 msgid "Table comments" @@ -109,7 +109,7 @@ msgstr "" #: db_datadict.php:174 db_qbe.php:174 libraries/Index.class.php:446 #: libraries/export/htmlword.php:244 libraries/export/latex.php:360 #: libraries/export/odt.php:294 libraries/export/texytext.php:233 -#: libraries/messages.inc.php:317 libraries/tbl_properties.inc.php:99 +#: libraries/messages.inc.php:313 libraries/tbl_properties.inc.php:99 #: libraries/tbl_properties.inc.php:275 pdf_schema.php:1262 #: pdf_schema.php:1283 tbl_change.php:308 tbl_indexes.php:189 #: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135 @@ -121,7 +121,7 @@ msgstr "" #: libraries/db_events.inc.php:31 libraries/db_routines.inc.php:42 #: 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/messages.inc.php:1181 +#: libraries/export/texytext.php:234 libraries/messages.inc.php:1177 #: libraries/tbl_properties.inc.php:100 pdf_schema.php:1263 #: pdf_schema.php:1284 server_privileges.php:2031 tbl_change.php:287 #: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313 @@ -133,7 +133,7 @@ msgstr "" #: db_datadict.php:177 libraries/Index.class.php:449 #: libraries/export/htmlword.php:246 libraries/export/latex.php:360 #: libraries/export/odt.php:300 libraries/export/texytext.php:235 -#: libraries/messages.inc.php:576 libraries/tbl_properties.inc.php:109 +#: libraries/messages.inc.php:572 libraries/tbl_properties.inc.php:109 #: pdf_schema.php:1265 pdf_schema.php:1286 tbl_change.php:323 #: tbl_printview.php:145 tbl_structure.php:181 tbl_tracking.php:276 #: tbl_tracking.php:327 @@ -142,7 +142,7 @@ msgstr "" #: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 -#: libraries/export/texytext.php:236 libraries/messages.inc.php:238 +#: libraries/export/texytext.php:236 libraries/messages.inc.php:234 #: libraries/tbl_properties.inc.php:106 pdf_schema.php:1266 #: pdf_schema.php:1287 tbl_printview.php:146 tbl_structure.php:182 #: tbl_tracking.php:277 @@ -151,14 +151,14 @@ msgstr "" #: db_datadict.php:182 libraries/export/htmlword.php:249 #: libraries/export/latex.php:362 libraries/export/odt.php:307 -#: libraries/export/texytext.php:238 libraries/messages.inc.php:483 +#: libraries/export/texytext.php:238 libraries/messages.inc.php:479 #: pdf_schema.php:1268 pdf_schema.php:1289 tbl_printview.php:150 msgid "Links to" msgstr "" #: db_datadict.php:184 db_printview.php:112 libraries/export/htmlword.php:252 #: libraries/export/latex.php:365 libraries/export/odt.php:312 -#: libraries/export/texytext.php:241 libraries/messages.inc.php:163 +#: libraries/export/texytext.php:241 libraries/messages.inc.php:159 #: libraries/tbl_properties.inc.php:130 pdf_schema.php:1279 #: pdf_schema.php:1290 tbl_printview.php:152 msgid "Comments" @@ -167,7 +167,7 @@ msgstr "" #: db_datadict.php:267 libraries/Index.class.php:359 #: 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/messages.inc.php:559 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:555 #: libraries/mult_submits.inc.php:263 pdf_schema.php:1344 #: server_privileges.php:1529 server_privileges.php:1540 #: server_privileges.php:1850 server_privileges.php:1855 @@ -179,7 +179,7 @@ msgstr "" #: db_datadict.php:267 libraries/Index.class.php:360 #: libraries/Index.class.php:385 libraries/export/htmlword.php:322 #: libraries/export/latex.php:430 libraries/export/odt.php:368 -#: libraries/export/texytext.php:311 libraries/messages.inc.php:1257 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:1253 #: libraries/mult_submits.inc.php:45 libraries/mult_submits.inc.php:50 #: libraries/mult_submits.inc.php:55 libraries/mult_submits.inc.php:60 #: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:101 @@ -193,108 +193,108 @@ msgstr "" msgid "Yes" msgstr "" -#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:670 +#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:666 #: tbl_printview.php:498 msgid "Print" msgstr "" -#: db_export.php:29 libraries/messages.inc.php:1226 +#: db_export.php:29 libraries/messages.inc.php:1222 msgid "View dump (schema) of database" msgstr "" #: db_export.php:33 db_printview.php:96 db_qbe.php:102 db_structure.php:51 -#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:568 +#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:564 #: navigation.php:346 msgid "No tables found in database." msgstr "" -#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:845 +#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:841 #: server_export.php:27 msgid "Select All" msgstr "" -#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1188 +#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1184 #: server_export.php:29 msgid "Unselect All" msgstr "" -#: db_operations.php:38 libraries/messages.inc.php:213 tbl_create.php:54 +#: db_operations.php:38 libraries/messages.inc.php:209 tbl_create.php:54 msgid "The database name is empty!" msgstr "" -#: db_operations.php:236 libraries/messages.inc.php:753 +#: db_operations.php:236 libraries/messages.inc.php:749 #, php-format msgid "Database %s has been renamed to %s" msgstr "" -#: db_operations.php:240 libraries/messages.inc.php:178 +#: db_operations.php:240 libraries/messages.inc.php:174 #, php-format msgid "Database %s has been copied to %s" msgstr "" -#: db_operations.php:410 libraries/messages.inc.php:236 +#: db_operations.php:410 libraries/messages.inc.php:232 msgid "Rename database to" msgstr "" -#: db_operations.php:415 libraries/messages.inc.php:161 +#: db_operations.php:415 libraries/messages.inc.php:157 #: server_processlist.php:57 msgid "Command" msgstr "" -#: db_operations.php:425 libraries/messages.inc.php:58 tbl_change.php:1143 +#: db_operations.php:425 libraries/messages.inc.php:54 tbl_change.php:1143 msgid "and then" msgstr "" -#: db_operations.php:451 libraries/messages.inc.php:233 +#: db_operations.php:451 libraries/messages.inc.php:229 msgid "Copy database to" msgstr "" -#: db_operations.php:458 libraries/messages.inc.php:1043 +#: db_operations.php:458 libraries/messages.inc.php:1039 #: tbl_operations.php:526 tbl_tracking.php:388 msgid "Structure only" msgstr "" -#: db_operations.php:459 libraries/messages.inc.php:1041 +#: db_operations.php:459 libraries/messages.inc.php:1037 #: tbl_operations.php:527 tbl_tracking.php:390 msgid "Structure and data" msgstr "" -#: db_operations.php:460 libraries/messages.inc.php:229 tbl_operations.php:528 +#: db_operations.php:460 libraries/messages.inc.php:225 tbl_operations.php:528 #: tbl_tracking.php:389 msgid "Data only" msgstr "" -#: db_operations.php:468 libraries/messages.inc.php:186 +#: db_operations.php:468 libraries/messages.inc.php:182 msgid "CREATE DATABASE before copying" msgstr "" #: db_operations.php:471 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 -#: libraries/export/sql.php:82 libraries/messages.inc.php:30 +#: libraries/export/sql.php:82 libraries/messages.inc.php:26 #: tbl_operations.php:534 #, php-format msgid "Add %s" msgstr "%sஐ சேர்க்க" -#: db_operations.php:475 libraries/messages.inc.php:29 tbl_operations.php:297 +#: db_operations.php:475 libraries/messages.inc.php:25 tbl_operations.php:297 #: tbl_operations.php:536 msgid "Add AUTO_INCREMENT value" msgstr "தானாக அதிகரிக்கும் பெறுமதியை சேர்க்க" -#: db_operations.php:479 libraries/messages.inc.php:31 tbl_operations.php:543 +#: db_operations.php:479 libraries/messages.inc.php:27 tbl_operations.php:543 msgid "Add constraints" msgstr "தடைகளை சேர்க்க" -#: db_operations.php:492 libraries/messages.inc.php:1059 +#: db_operations.php:492 libraries/messages.inc.php:1055 msgid "Switch to copied database" msgstr "" -#: db_operations.php:533 libraries/messages.inc.php:89 +#: db_operations.php:533 libraries/messages.inc.php:85 msgid "BLOB Repository" msgstr "" #: db_operations.php:536 db_tracking.php:76 libraries/common.lib.php:1350 -#: libraries/messages.inc.php:1037 libraries/server_links.inc.php:49 +#: libraries/messages.inc.php:1033 libraries/server_links.inc.php:49 #: server_processlist.php:59 tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "" @@ -304,11 +304,11 @@ msgctxt "BLOB repository" msgid "Enabled" msgstr "" -#: db_operations.php:548 libraries/messages.inc.php:93 +#: db_operations.php:548 libraries/messages.inc.php:89 msgid "Disable" msgstr "" -#: db_operations.php:558 libraries/messages.inc.php:90 +#: db_operations.php:558 libraries/messages.inc.php:86 msgid "Damaged" msgstr "" @@ -322,12 +322,12 @@ msgctxt "BLOB repository" msgid "Disabled" msgstr "" -#: db_operations.php:574 libraries/messages.inc.php:96 +#: db_operations.php:574 libraries/messages.inc.php:92 msgid "Enable" msgstr "" #: db_operations.php:598 libraries/Index.class.php:448 -#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:158 +#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:154 #: 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:361 @@ -336,7 +336,7 @@ msgstr "" msgid "Collation" msgstr "" -#: db_operations.php:609 libraries/messages.inc.php:742 main.php:316 +#: db_operations.php:609 libraries/messages.inc.php:738 main.php:316 #: pdf_schema.php:34 #, php-format msgid "" @@ -344,58 +344,58 @@ msgid "" "deactivated. To find out why click %shere%s." msgstr "" -#: db_operations.php:645 libraries/messages.inc.php:264 pdf_pages.php:528 +#: db_operations.php:645 libraries/messages.inc.php:260 pdf_pages.php:528 msgid "Display PDF schema" msgstr "" -#: db_operations.php:661 libraries/messages.inc.php:877 pdf_pages.php:529 +#: db_operations.php:661 libraries/messages.inc.php:873 pdf_pages.php:529 msgid "Show grid" msgstr "" -#: db_operations.php:664 libraries/messages.inc.php:874 pdf_pages.php:530 +#: db_operations.php:664 libraries/messages.inc.php:870 pdf_pages.php:530 msgid "Show color" msgstr "" -#: db_operations.php:666 libraries/messages.inc.php:998 pdf_pages.php:531 +#: db_operations.php:666 libraries/messages.inc.php:994 pdf_pages.php:531 msgid "Show dimension of tables" msgstr "" -#: db_operations.php:669 libraries/messages.inc.php:52 pdf_pages.php:532 +#: db_operations.php:669 libraries/messages.inc.php:48 pdf_pages.php:532 msgid "Display all tables with the same width" msgstr "" -#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:227 +#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:223 #: pdf_pages.php:533 msgid "Data Dictionary" msgstr "" -#: db_operations.php:674 libraries/messages.inc.php:884 pdf_pages.php:534 +#: db_operations.php:674 libraries/messages.inc.php:880 pdf_pages.php:534 msgid "Only show keys" msgstr "" -#: db_operations.php:676 libraries/messages.inc.php:875 pdf_pages.php:535 +#: db_operations.php:676 libraries/messages.inc.php:871 pdf_pages.php:535 msgid "Data Dictionary Format" msgstr "" -#: db_operations.php:678 libraries/messages.inc.php:464 pdf_pages.php:537 +#: db_operations.php:678 libraries/messages.inc.php:460 pdf_pages.php:537 msgid "Landscape" msgstr "" -#: db_operations.php:679 libraries/messages.inc.php:663 pdf_pages.php:538 +#: db_operations.php:679 libraries/messages.inc.php:659 pdf_pages.php:538 msgid "Portrait" msgstr "" -#: db_operations.php:682 libraries/messages.inc.php:599 pdf_pages.php:541 +#: db_operations.php:682 libraries/messages.inc.php:595 pdf_pages.php:541 msgid "Paper size" msgstr "" -#: db_operations.php:706 libraries/messages.inc.php:281 +#: db_operations.php:706 libraries/messages.inc.php:277 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 libraries/messages.inc.php:1087 +#: libraries/header.inc.php:126 libraries/messages.inc.php:1083 #: pdf_pages.php:405 server_privileges.php:1626 server_privileges.php:1682 #: server_privileges.php:1946 server_synchronize.php:423 #: server_synchronize.php:866 tbl_tracking.php:592 test/theme.php:75 @@ -403,176 +403,176 @@ msgid "Table" msgstr "" #: db_printview.php:105 libraries/db_structure.lib.php:56 -#: libraries/messages.inc.php:735 +#: libraries/messages.inc.php:731 msgid "Records" msgstr "" #: db_printview.php:109 libraries/db_structure.lib.php:67 -#: libraries/messages.inc.php:1003 tbl_indexes.php:190 +#: libraries/messages.inc.php:999 tbl_indexes.php:190 msgid "Size" msgstr "" #: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 -#: libraries/export/sql.php:899 libraries/messages.inc.php:436 +#: libraries/export/sql.php:899 libraries/messages.inc.php:432 msgid "in use" msgstr "" #: db_printview.php:187 libraries/db_info.inc.php:88 -#: libraries/export/sql.php:514 libraries/messages.inc.php:1032 +#: libraries/export/sql.php:514 libraries/messages.inc.php:1028 #: pdf_schema.php:1241 tbl_printview.php:434 tbl_structure.php:810 msgid "Creation" msgstr "" #: db_printview.php:196 libraries/db_info.inc.php:93 -#: libraries/export/sql.php:519 libraries/messages.inc.php:1036 +#: libraries/export/sql.php:519 libraries/messages.inc.php:1032 #: pdf_schema.php:1246 tbl_printview.php:444 tbl_structure.php:818 msgid "Last update" msgstr "" #: db_printview.php:205 libraries/db_info.inc.php:98 -#: libraries/export/sql.php:524 libraries/messages.inc.php:1031 +#: libraries/export/sql.php:524 libraries/messages.inc.php:1027 #: pdf_schema.php:1251 tbl_printview.php:454 tbl_structure.php:826 msgid "Last check" msgstr "" -#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1085 +#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1081 #, php-format msgid "%s table(s)" msgstr "" #: db_qbe.php:29 libraries/display_tbl.lib.php:1981 -#: libraries/messages.inc.php:1051 libraries/sql_query_form.lib.php:140 +#: libraries/messages.inc.php:1047 libraries/sql_query_form.lib.php:140 #: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131 #: view_operations.php:62 msgid "Your SQL query has been executed successfully" msgstr "" -#: db_qbe.php:42 libraries/messages.inc.php:371 +#: db_qbe.php:42 libraries/messages.inc.php:367 msgid "You have to choose at least one column to display" msgstr "" #: db_qbe.php:200 libraries/db_structure.lib.php:104 -#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1014 +#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1010 msgid "Sort" msgstr "" #: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111 #: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828 -#: libraries/messages.inc.php:69 server_databases.php:170 +#: libraries/messages.inc.php:65 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314 msgid "Ascending" msgstr "" #: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119 #: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825 -#: libraries/messages.inc.php:251 server_databases.php:170 +#: libraries/messages.inc.php:247 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315 msgid "Descending" msgstr "" #: db_qbe.php:264 db_tracking.php:78 libraries/display_tbl.lib.php:308 -#: libraries/messages.inc.php:888 tbl_change.php:277 tbl_tracking.php:597 +#: libraries/messages.inc.php:884 tbl_change.php:277 tbl_tracking.php:597 msgid "Show" msgstr "" -#: db_qbe.php:300 libraries/messages.inc.php:202 +#: db_qbe.php:300 libraries/messages.inc.php:198 msgid "Criteria" msgstr "" #: db_qbe.php:353 db_qbe.php:435 db_qbe.php:527 db_qbe.php:558 -#: libraries/messages.inc.php:718 +#: libraries/messages.inc.php:714 msgid "Ins" msgstr "" #: db_qbe.php:357 db_qbe.php:439 db_qbe.php:524 db_qbe.php:555 -#: libraries/messages.inc.php:56 +#: libraries/messages.inc.php:52 msgid "And" msgstr "" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:529 db_qbe.php:560 -#: libraries/messages.inc.php:717 +#: libraries/messages.inc.php:713 msgid "Del" msgstr "" #: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553 -#: libraries/display_import.lib.php:166 libraries/messages.inc.php:592 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:588 #: libraries/tbl_properties.inc.php:779 server_privileges.php:258 #: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288 msgid "Or" msgstr "" -#: db_qbe.php:507 libraries/messages.inc.php:516 +#: db_qbe.php:507 libraries/messages.inc.php:512 msgid "Modify" msgstr "" -#: db_qbe.php:584 libraries/messages.inc.php:33 +#: db_qbe.php:584 libraries/messages.inc.php:29 msgid "Add/Delete Criteria Row" msgstr "விதி நிரைகளை சேர்க்க/ நீக்குக" -#: db_qbe.php:596 libraries/messages.inc.php:32 +#: db_qbe.php:596 libraries/messages.inc.php:28 msgid "Add/Delete Field Columns" msgstr "கள நிரல்களை சேர்க்க/ நீக்குக" -#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1192 +#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1188 msgid "Update Query" msgstr "" -#: db_qbe.php:617 libraries/messages.inc.php:1216 +#: db_qbe.php:617 libraries/messages.inc.php:1212 msgid "Use Tables" msgstr "" -#: db_qbe.php:640 libraries/messages.inc.php:723 +#: db_qbe.php:640 libraries/messages.inc.php:719 #, php-format msgid "SQL query on database %s:" msgstr "" -#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:823 +#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:819 msgid "Submit Query" msgstr "" #: db_search.php:68 libraries/auth/config.auth.lib.php:84 #: libraries/auth/config.auth.lib.php:103 #: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52 -#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:26 +#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:22 msgid "Access denied" msgstr "அனுமதி நிராகரிக்கப்பட்டுள்ளது" -#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:836 +#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:832 msgid "at least one of the words" msgstr "" -#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:837 +#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:833 msgid "all words" msgstr "" -#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:838 +#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:834 msgid "the exact phrase" msgstr "" -#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:839 +#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:835 msgid "as regular expression" msgstr "" -#: db_search.php:242 libraries/messages.inc.php:840 +#: db_search.php:242 libraries/messages.inc.php:836 #, php-format msgid "Search results for \"%s\" %s:" msgstr "" -#: db_search.php:260 libraries/messages.inc.php:579 +#: db_search.php:260 libraries/messages.inc.php:575 #, php-format msgid "%s match(es) inside table %s" 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/messages.inc.php:108 +#: db_structure.php:105 libraries/messages.inc.php:104 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468 msgid "Browse" msgstr "" #: db_search.php:272 libraries/display_tbl.lib.php:1165 -#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:243 +#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:239 #: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406 #: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377 #: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216 @@ -580,45 +580,45 @@ msgstr "" msgid "Delete" msgstr "" -#: db_search.php:285 libraries/messages.inc.php:580 +#: db_search.php:285 libraries/messages.inc.php:576 #, php-format msgid "Total: %s match(es)" msgstr "" -#: db_search.php:299 libraries/messages.inc.php:832 +#: db_search.php:299 libraries/messages.inc.php:828 msgid "Search in database" msgstr "" -#: db_search.php:302 libraries/messages.inc.php:835 +#: db_search.php:302 libraries/messages.inc.php:831 msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgstr "" -#: db_search.php:307 libraries/messages.inc.php:842 +#: db_search.php:307 libraries/messages.inc.php:838 msgid "Find:" msgstr "" -#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1017 +#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1013 msgid "Words are separated by a space character (\" \")." msgstr "" -#: db_search.php:325 libraries/messages.inc.php:834 +#: db_search.php:325 libraries/messages.inc.php:830 msgid "Inside table(s):" msgstr "" -#: db_search.php:355 libraries/messages.inc.php:833 +#: db_search.php:355 libraries/messages.inc.php:829 msgid "Inside field:" 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/messages.inc.php:431 libraries/sql_query_form.lib.php:334 +#: libraries/messages.inc.php:427 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/db_links.inc.php:63 libraries/export/latex.php:337 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:1048 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:1044 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 #: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269 msgid "Structure" @@ -627,8 +627,8 @@ 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:1642 -#: libraries/db_links.inc.php:100 libraries/messages.inc.php:272 +#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/db_links.inc.php:100 libraries/messages.inc.php:268 #: 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 @@ -638,40 +638,40 @@ 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:1641 -#: libraries/messages.inc.php:284 libraries/mult_submits.inc.php:39 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: libraries/messages.inc.php:280 libraries/mult_submits.inc.php:39 #: libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "" -#: db_structure.php:316 libraries/messages.inc.php:1075 +#: db_structure.php:316 libraries/messages.inc.php:1071 #: libraries/tbl_links.inc.php:100 #, php-format msgid "Table %s has been emptied" msgstr "" -#: db_structure.php:326 libraries/messages.inc.php:1229 +#: db_structure.php:326 libraries/messages.inc.php:1225 #: libraries/tbl_links.inc.php:133 #, php-format msgid "View %s has been dropped" msgstr "" -#: db_structure.php:326 libraries/messages.inc.php:1074 +#: db_structure.php:326 libraries/messages.inc.php:1070 #: libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "" -#: db_structure.php:333 libraries/messages.inc.php:1128 +#: db_structure.php:333 libraries/messages.inc.php:1124 msgid "Tracking is active." msgstr "" -#: db_structure.php:335 libraries/messages.inc.php:1129 +#: db_structure.php:335 libraries/messages.inc.php:1125 msgid "Tracking is not active." msgstr "" #: db_structure.php:420 libraries/display_tbl.lib.php:1944 -#: libraries/messages.inc.php:1228 +#: libraries/messages.inc.php:1224 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -679,83 +679,83 @@ msgid "" msgstr "" #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 -#: libraries/messages.inc.php:1233 libraries/tbl_info.inc.php:66 +#: libraries/messages.inc.php:1229 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/messages.inc.php:773 libraries/server_links.inc.php:70 +#: libraries/messages.inc.php:769 libraries/server_links.inc.php:70 #: server_replication.php:33 server_replication.php:164 server_status.php:258 msgid "Replication" msgstr "" -#: db_structure.php:489 libraries/messages.inc.php:1053 +#: db_structure.php:489 libraries/messages.inc.php:1049 msgid "Sum" msgstr "" #: db_structure.php:496 libraries/StorageEngine.class.php:356 -#: libraries/messages.inc.php:239 +#: libraries/messages.inc.php:235 #, 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 #: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086 -#: libraries/messages.inc.php:1243 libraries/mult_submits.inc.php:16 +#: libraries/messages.inc.php:1239 libraries/mult_submits.inc.php:16 #: server_databases.php:346 server_databases.php:351 #: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465 msgid "With selected:" msgstr "" #: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: libraries/messages.inc.php:148 server_databases.php:348 +#: libraries/messages.inc.php:144 server_databases.php:348 #: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459 msgid "Check All" msgstr "" #: db_structure.php:531 libraries/display_tbl.lib.php:2077 -#: libraries/messages.inc.php:1184 libraries/replication_gui.lib.php:33 +#: libraries/messages.inc.php:1180 libraries/replication_gui.lib.php:33 #: server_databases.php:350 server_privileges.php:533 #: server_privileges.php:1564 tbl_structure.php:463 msgid "Uncheck All" msgstr "" -#: db_structure.php:536 libraries/messages.inc.php:150 +#: db_structure.php:536 libraries/messages.inc.php:146 msgid "Check tables having overhead" msgstr "" #: db_structure.php:547 db_structure.php:548 db_structure.php:599 -#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:672 +#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:668 #: libraries/mult_submits.inc.php:28 tbl_structure.php:493 #: tbl_structure.php:495 msgid "Print view" msgstr "" -#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:153 +#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:149 #: libraries/mult_submits.inc.php:42 tbl_operations.php:579 msgid "Check table" msgstr "" -#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:590 +#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:586 #: libraries/mult_submits.inc.php:47 tbl_operations.php:619 #: tbl_structure.php:710 tbl_structure.php:712 msgid "Optimize table" msgstr "" -#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:758 +#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:754 #: libraries/mult_submits.inc.php:52 tbl_operations.php:609 msgid "Repair table" msgstr "" -#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:55 +#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:51 #: libraries/mult_submits.inc.php:57 tbl_operations.php:599 msgid "Analyze table" msgstr "" #: db_structure.php:557 db_structure.php:558 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/messages.inc.php:310 +#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:306 #: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84 #: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109 #: server_privileges.php:1341 setup/frames/menu.inc.php:22 @@ -763,7 +763,7 @@ msgstr "" msgid "Export" msgstr "" -#: db_tracking.php:66 libraries/messages.inc.php:1151 +#: db_tracking.php:66 libraries/messages.inc.php:1147 msgid "Tracked tables" msgstr "" @@ -771,7 +771,7 @@ msgstr "" #: 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/header_printview.inc.php:58 libraries/messages.inc.php:212 +#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:208 #: navigation.php:233 server_databases.php:169 server_privileges.php:1621 #: server_privileges.php:1682 server_privileges.php:1940 #: server_processlist.php:56 server_synchronize.php:1179 @@ -779,92 +779,92 @@ msgstr "" msgid "Database" msgstr "" -#: db_tracking.php:73 libraries/messages.inc.php:1146 +#: db_tracking.php:73 libraries/messages.inc.php:1142 msgid "Last version" msgstr "" -#: db_tracking.php:74 libraries/messages.inc.php:1145 tbl_tracking.php:594 +#: db_tracking.php:74 libraries/messages.inc.php:1141 tbl_tracking.php:594 msgid "Created" msgstr "" -#: db_tracking.php:75 libraries/messages.inc.php:1147 tbl_tracking.php:595 +#: db_tracking.php:75 libraries/messages.inc.php:1143 tbl_tracking.php:595 msgid "Updated" msgstr "" #: db_tracking.php:77 libraries/Index.class.php:440 -#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:27 +#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:23 #: server_databases.php:203 server_privileges.php:1503 #: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187 msgid "Action" msgstr "செயல்" -#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:247 +#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:243 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:106 libraries/messages.inc.php:1142 tbl_tracking.php:548 +#: db_tracking.php:106 libraries/messages.inc.php:1138 tbl_tracking.php:548 #: tbl_tracking.php:606 tbl_tracking.php:613 msgid "active" msgstr "" -#: db_tracking.php:108 libraries/messages.inc.php:1143 tbl_tracking.php:550 +#: db_tracking.php:108 libraries/messages.inc.php:1139 tbl_tracking.php:550 #: tbl_tracking.php:608 tbl_tracking.php:610 msgid "not active" msgstr "" -#: db_tracking.php:121 libraries/messages.inc.php:1160 +#: db_tracking.php:121 libraries/messages.inc.php:1156 msgid "Versions" msgstr "" -#: db_tracking.php:122 libraries/messages.inc.php:1132 tbl_tracking.php:379 +#: db_tracking.php:122 libraries/messages.inc.php:1128 tbl_tracking.php:379 #: tbl_tracking.php:624 msgid "Tracking report" msgstr "" -#: db_tracking.php:123 libraries/messages.inc.php:1144 tbl_tracking.php:251 +#: db_tracking.php:123 libraries/messages.inc.php:1140 tbl_tracking.php:251 #: tbl_tracking.php:624 msgid "Structure snapshot" msgstr "" -#: db_tracking.php:152 libraries/messages.inc.php:1154 +#: db_tracking.php:152 libraries/messages.inc.php:1150 msgid "Untracked tables" msgstr "" -#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1153 +#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1149 #: tbl_structure.php:529 tbl_structure.php:531 msgid "Track table" msgstr "" -#: db_tracking.php:200 libraries/messages.inc.php:1121 +#: db_tracking.php:200 libraries/messages.inc.php:1117 msgid "Database Log" msgstr "" -#: export.php:62 libraries/messages.inc.php:312 +#: export.php:62 libraries/messages.inc.php:308 msgid "Selected export type has to be saved in file!" msgstr "" -#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:567 +#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:563 #, php-format msgid "Insufficient space to save the file %s." msgstr "" -#: export.php:294 libraries/messages.inc.php:324 +#: export.php:294 libraries/messages.inc.php:320 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "" -#: export.php:298 export.php:302 libraries/messages.inc.php:562 +#: export.php:298 export.php:302 libraries/messages.inc.php:558 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "" -#: export.php:629 libraries/messages.inc.php:276 +#: export.php:629 libraries/messages.inc.php:272 #, php-format msgid "Dump has been saved to file %s." msgstr "" -#: import.php:60 libraries/messages.inc.php:1202 +#: import.php:60 libraries/messages.inc.php:1198 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation%" @@ -872,21 +872,21 @@ msgid "" msgstr "" #: import.php:279 import.php:332 libraries/File.class.php:849 -#: libraries/File.class.php:961 libraries/messages.inc.php:325 +#: libraries/File.class.php:961 libraries/messages.inc.php:321 msgid "File could not be read" msgstr "" #: import.php:287 import.php:296 import.php:315 import.php:324 #: libraries/File.class.php:1031 libraries/File.class.php:1039 #: libraries/File.class.php:1055 libraries/File.class.php:1063 -#: libraries/messages.inc.php:1189 +#: libraries/messages.inc.php:1185 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." msgstr "" -#: import.php:337 libraries/messages.inc.php:547 +#: import.php:337 libraries/messages.inc.php:543 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -894,39 +894,39 @@ msgid "" msgstr "" #: import.php:372 libraries/display_import.lib.php:24 -#: libraries/messages.inc.php:125 +#: libraries/messages.inc.php:121 msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:397 libraries/messages.inc.php:102 +#: import.php:397 libraries/messages.inc.php:98 msgid "The bookmark has been deleted." msgstr "" -#: import.php:401 libraries/messages.inc.php:879 +#: import.php:401 libraries/messages.inc.php:875 msgid "Showing bookmark" msgstr "" -#: import.php:403 libraries/messages.inc.php:101 +#: import.php:403 libraries/messages.inc.php:97 #, php-format msgid "Bookmark %s created" msgstr "" -#: import.php:409 import.php:415 libraries/messages.inc.php:407 +#: import.php:409 import.php:415 libraries/messages.inc.php:403 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" -#: import.php:424 libraries/messages.inc.php:1107 +#: import.php:424 libraries/messages.inc.php:1103 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: index.php:190 libraries/messages.inc.php:553 +#: index.php:190 libraries/messages.inc.php:549 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" -#: js/messages.php:25 libraries/messages.inc.php:155 +#: js/messages.php:25 libraries/messages.inc.php:151 #: server_synchronize.php:345 server_synchronize.php:357 #: server_synchronize.php:373 server_synchronize.php:380 #: server_synchronize.php:739 server_synchronize.php:767 @@ -934,116 +934,116 @@ msgstr "" msgid "Click to select" msgstr "" -#: js/messages.php:26 libraries/messages.inc.php:156 +#: js/messages.php:26 libraries/messages.inc.php:152 msgid "Click to unselect" msgstr "" #: js/messages.php:27 libraries/import.lib.php:103 -#: libraries/messages.inc.php:550 sql.php:89 +#: libraries/messages.inc.php:546 sql.php:89 msgid "\"DROP DATABASE\" statements are disabled." msgstr "" -#: js/messages.php:30 libraries/messages.inc.php:270 +#: js/messages.php:30 libraries/messages.inc.php:266 #: libraries/mult_submits.inc.php:258 sql.php:188 msgid "Do you really want to " msgstr "" -#: js/messages.php:31 libraries/messages.inc.php:271 +#: js/messages.php:31 libraries/messages.inc.php:267 #: libraries/mult_submits.inc.php:258 sql.php:172 msgid "You are about to DESTROY a complete database!" msgstr "" -#: js/messages.php:34 libraries/messages.inc.php:94 +#: js/messages.php:34 libraries/messages.inc.php:90 msgid "You are about to DISABLE a BLOB Repository!" msgstr "" -#: js/messages.php:35 libraries/messages.inc.php:91 +#: js/messages.php:35 libraries/messages.inc.php:87 #, php-format msgid "Are you sure you want to disable all BLOB references for database %s?" msgstr "" -#: js/messages.php:38 libraries/messages.inc.php:342 +#: js/messages.php:38 libraries/messages.inc.php:338 msgid "Missing value in the form!" msgstr "" -#: js/messages.php:39 libraries/messages.inc.php:570 +#: js/messages.php:39 libraries/messages.inc.php:566 msgid "This is not a number!" msgstr "" -#: js/messages.php:42 libraries/messages.inc.php:380 +#: js/messages.php:42 libraries/messages.inc.php:376 msgid "The host name is empty!" msgstr "" -#: js/messages.php:43 libraries/messages.inc.php:1208 +#: js/messages.php:43 libraries/messages.inc.php:1204 msgid "The user name is empty!" msgstr "" -#: js/messages.php:44 libraries/messages.inc.php:607 +#: js/messages.php:44 libraries/messages.inc.php:603 #: server_privileges.php:1197 user_password.php:70 msgid "The password is empty!" msgstr "" -#: js/messages.php:45 libraries/messages.inc.php:609 +#: js/messages.php:45 libraries/messages.inc.php:605 #: server_privileges.php:1195 user_password.php:73 msgid "The passwords aren't the same!" msgstr "" -#: js/messages.php:49 libraries/messages.inc.php:123 pmd_general.php:342 +#: js/messages.php:49 libraries/messages.inc.php:119 pmd_general.php:342 #: pmd_general.php:379 msgid "Cancel" msgstr "விலக்கு" -#: js/messages.php:52 libraries/messages.inc.php:514 +#: js/messages.php:52 libraries/messages.inc.php:510 msgid "Modifications have been saved" msgstr "" -#: js/messages.php:53 libraries/messages.inc.php:741 +#: js/messages.php:53 libraries/messages.inc.php:737 msgid "Relation deleted" msgstr "" -#: js/messages.php:54 libraries/messages.inc.php:340 +#: js/messages.php:54 libraries/messages.inc.php:336 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:55 libraries/messages.inc.php:434 +#: js/messages.php:55 libraries/messages.inc.php:430 msgid "Internal relation added" msgstr "" -#: js/messages.php:56 libraries/messages.inc.php:299 +#: js/messages.php:56 libraries/messages.inc.php:295 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:57 libraries/messages.inc.php:300 +#: js/messages.php:57 libraries/messages.inc.php:296 msgid "Error: relation already exists." msgstr "" -#: js/messages.php:58 libraries/messages.inc.php:302 +#: js/messages.php:58 libraries/messages.inc.php:298 msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:59 libraries/messages.inc.php:351 +#: js/messages.php:59 libraries/messages.inc.php:347 #: libraries/relation.lib.php:107 msgid "General relation features" msgstr "" -#: js/messages.php:59 libraries/messages.inc.php:260 +#: js/messages.php:59 libraries/messages.inc.php:256 #: libraries/relation.lib.php:101 libraries/relation.lib.php:108 msgid "Disabled" msgstr "" -#: js/messages.php:60 libraries/messages.inc.php:850 +#: js/messages.php:60 libraries/messages.inc.php:846 msgid "Select referenced key" msgstr "" -#: js/messages.php:61 libraries/messages.inc.php:848 +#: js/messages.php:61 libraries/messages.inc.php:844 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:62 libraries/messages.inc.php:653 +#: js/messages.php:62 libraries/messages.inc.php:649 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:63 libraries/messages.inc.php:142 pmd_general.php:77 +#: js/messages.php:63 libraries/messages.inc.php:138 pmd_general.php:77 #: tbl_relation.php:548 msgid "Choose field to display" msgstr "" @@ -1059,9 +1059,9 @@ msgid "Prev" msgstr "" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2332 -#: libraries/common.lib.php:2335 libraries/display_tbl.lib.php:338 -#: libraries/messages.inc.php:543 server_binlog.php:205 server_binlog.php:207 +#: js/messages.php:77 libraries/common.lib.php:2344 +#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: libraries/messages.inc.php:539 server_binlog.php:205 server_binlog.php:207 #: tbl_printview.php:424 tbl_structure.php:802 msgid "Next" msgstr "" @@ -1134,27 +1134,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1543 +#: js/messages.php:97 libraries/common.lib.php:1555 msgid "Jan" msgstr "தை" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1545 +#: js/messages.php:99 libraries/common.lib.php:1557 msgid "Feb" msgstr "மாசி" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1547 +#: js/messages.php:101 libraries/common.lib.php:1559 msgid "Mar" msgstr "பங்குனி" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1549 +#: js/messages.php:103 libraries/common.lib.php:1561 msgid "Apr" msgstr "சித்திரை" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1551 +#: js/messages.php:105 libraries/common.lib.php:1563 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1162,37 +1162,37 @@ msgid "May" msgstr "வைகாசி" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1553 +#: js/messages.php:107 libraries/common.lib.php:1565 msgid "Jun" msgstr "ஆணி" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1555 +#: js/messages.php:109 libraries/common.lib.php:1567 msgid "Jul" msgstr "ஆடி" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1557 +#: js/messages.php:111 libraries/common.lib.php:1569 msgid "Aug" msgstr "ஆவணி" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1559 +#: js/messages.php:113 libraries/common.lib.php:1571 msgid "Sep" msgstr "புரட்டாதி" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1561 +#: js/messages.php:115 libraries/common.lib.php:1573 msgid "Oct" msgstr "ஐப்பசி" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1563 +#: js/messages.php:117 libraries/common.lib.php:1575 msgid "Nov" msgstr "காத்திகை" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1565 +#: js/messages.php:119 libraries/common.lib.php:1577 msgid "Dec" msgstr "மார்கழி" @@ -1233,37 +1233,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1568 +#: js/messages.php:132 libraries/common.lib.php:1580 msgid "Sun" msgstr "ஞாயிறு" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1570 +#: js/messages.php:134 libraries/common.lib.php:1582 msgid "Mon" msgstr "திங்கள்" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1572 +#: js/messages.php:136 libraries/common.lib.php:1584 msgid "Tue" msgstr "செவ்வாய்" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1574 +#: js/messages.php:138 libraries/common.lib.php:1586 msgid "Wed" msgstr "புதன்" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1576 +#: js/messages.php:140 libraries/common.lib.php:1588 msgid "Thu" msgstr "வியாழன்" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1578 +#: js/messages.php:142 libraries/common.lib.php:1590 msgid "Fri" msgstr "வெள்ளி" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1580 +#: js/messages.php:144 libraries/common.lib.php:1592 msgid "Sat" msgstr "சனி" @@ -1333,76 +1333,76 @@ msgstr "" msgid "Second" msgstr "" -#: libraries/Config.class.php:1015 libraries/messages.inc.php:338 +#: libraries/Config.class.php:1015 libraries/messages.inc.php:334 msgid "Font size" msgstr "" #: libraries/File.class.php:344 libraries/File.class.php:432 #: libraries/File.class.php:569 libraries/File.class.php:708 -#: libraries/messages.inc.php:1201 +#: libraries/messages.inc.php:1197 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.class.php:414 libraries/messages.inc.php:1198 +#: libraries/File.class.php:414 libraries/messages.inc.php:1194 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:417 libraries/messages.inc.php:1197 +#: libraries/File.class.php:417 libraries/messages.inc.php:1193 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:420 libraries/messages.inc.php:1200 +#: libraries/File.class.php:420 libraries/messages.inc.php:1196 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:423 libraries/messages.inc.php:1199 +#: libraries/File.class.php:423 libraries/messages.inc.php:1195 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:426 libraries/messages.inc.php:1195 +#: libraries/File.class.php:426 libraries/messages.inc.php:1191 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:429 libraries/messages.inc.php:1196 +#: libraries/File.class.php:429 libraries/messages.inc.php:1192 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:908 libraries/messages.inc.php:319 +#: libraries/File.class.php:908 libraries/messages.inc.php:315 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "" -#: libraries/Index.class.php:428 libraries/messages.inc.php:554 +#: libraries/Index.class.php:428 libraries/messages.inc.php:550 #: tbl_relation.php:529 msgid "No index defined!" msgstr "" -#: libraries/Index.class.php:433 libraries/messages.inc.php:411 +#: libraries/Index.class.php:433 libraries/messages.inc.php:407 #: server_databases.php:132 tbl_tracking.php:316 msgid "Indexes" msgstr "" -#: libraries/Index.class.php:444 libraries/messages.inc.php:1186 +#: libraries/Index.class.php:444 libraries/messages.inc.php:1182 #: 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:475 tbl_tracking.php:322 msgid "Unique" msgstr "" -#: libraries/Index.class.php:445 libraries/messages.inc.php:596 +#: libraries/Index.class.php:445 libraries/messages.inc.php:592 #: tbl_tracking.php:323 msgid "Packed" msgstr "" -#: libraries/Index.class.php:447 libraries/messages.inc.php:131 +#: libraries/Index.class.php:447 libraries/messages.inc.php:127 #: tbl_tracking.php:325 msgid "Cardinality" msgstr "" -#: libraries/Index.class.php:450 libraries/messages.inc.php:162 +#: libraries/Index.class.php:450 libraries/messages.inc.php:158 #: tbl_tracking.php:279 tbl_tracking.php:328 msgid "Comment" msgstr "" @@ -1410,29 +1410,29 @@ msgstr "" #: libraries/Index.class.php:466 libraries/common.lib.php:616 #: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:280 pdf_pages.php:280 +#: libraries/messages.inc.php:276 pdf_pages.php:280 #: setup/frames/index.inc.php:124 setup/lib/messages.inc.php:352 #: tbl_row_action.php:69 msgid "Edit" msgstr "" -#: libraries/Index.class.php:472 libraries/messages.inc.php:666 +#: libraries/Index.class.php:472 libraries/messages.inc.php:662 msgid "The primary key has been dropped" msgstr "" -#: libraries/Index.class.php:476 libraries/messages.inc.php:413 +#: libraries/Index.class.php:476 libraries/messages.inc.php:409 #, php-format msgid "Index %s has been dropped" msgstr "" -#: libraries/Index.class.php:576 libraries/messages.inc.php:412 +#: libraries/Index.class.php:576 libraries/messages.inc.php:408 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "" -#: libraries/List_Database.class.php:431 libraries/messages.inc.php:218 +#: libraries/List_Database.class.php:431 libraries/messages.inc.php:214 #: libraries/server_links.inc.php:41 server_databases.php:88 #: server_privileges.php:1621 setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" @@ -1459,85 +1459,85 @@ msgid_plural "%1$d rows inserted." msgstr[0] "%1$d வரிசை சேர்க்கப்பட்டுள்ளது" msgstr[1] "%1$d வரிசைகள் சேர்க்கப்பட்டுள்ளன" -#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:549 +#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:545 msgid "" "There is no detailed status information available for this storage engine." msgstr "" -#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:291 +#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:287 #, php-format msgid "%s is available on this MySQL server." msgstr "" -#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:292 +#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:288 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "" -#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:294 +#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:290 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "" -#: libraries/Table.class.php:1019 libraries/messages.inc.php:443 +#: libraries/Table.class.php:1019 libraries/messages.inc.php:439 msgid "Invalid database" msgstr "" -#: libraries/Table.class.php:1033 libraries/messages.inc.php:450 +#: libraries/Table.class.php:1033 libraries/messages.inc.php:446 #: tbl_get_field.php:26 msgid "Invalid table name" msgstr "" -#: libraries/Table.class.php:1048 libraries/messages.inc.php:301 +#: libraries/Table.class.php:1048 libraries/messages.inc.php:297 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "" -#: libraries/Table.class.php:1132 libraries/messages.inc.php:754 +#: libraries/Table.class.php:1132 libraries/messages.inc.php:750 #, php-format msgid "Table %s has been renamed to %s" msgstr "" -#: libraries/Theme.class.php:162 libraries/messages.inc.php:1099 +#: libraries/Theme.class.php:162 libraries/messages.inc.php:1095 #, php-format msgid "No valid image path for theme %s found!" msgstr "" -#: libraries/Theme.class.php:384 libraries/messages.inc.php:1097 +#: libraries/Theme.class.php:384 libraries/messages.inc.php:1093 msgid "No preview available." msgstr "" -#: libraries/Theme.class.php:387 libraries/messages.inc.php:1089 +#: libraries/Theme.class.php:387 libraries/messages.inc.php:1085 msgid "take it" msgstr "" -#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1096 +#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1092 #, php-format msgid "Default theme %s not found!" msgstr "" -#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1098 +#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1094 #, php-format msgid "Theme %s not found!" msgstr "" -#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1100 +#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1096 #, php-format msgid "Theme path not found for theme %s!" msgstr "" -#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1101 +#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1097 #: test/theme.php:161 themes.php:21 themes.php:41 msgid "Theme / Style" msgstr "" -#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:172 +#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:168 msgid "Cannot connect: invalid settings." msgstr "" #: libraries/auth/config.auth.lib.php:92 #: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65 -#: libraries/messages.inc.php:1238 test/theme.php:152 +#: libraries/messages.inc.php:1234 test/theme.php:152 #, php-format msgid "Welcome to %s" msgstr "" @@ -1562,104 +1562,104 @@ msgstr "" "சேவர், பயனாளர் பெயர், கடவுச் சொல் என்பவை MySql நிர்வாகியால் வழங்கப்பட்ட தரவுகளுடன் " "பொருந்துகின்றதா என சரி பாருங்கள்." -#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:488 +#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:484 msgid "Log in" msgstr "" #: libraries/auth/cookie.auth.lib.php:246 -#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:659 +#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:655 #: libraries/navigation_header.inc.php:93 #: libraries/navigation_header.inc.php:95 msgid "phpMyAdmin documentation" msgstr "" #: libraries/auth/cookie.auth.lib.php:258 -#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:492 +#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:488 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:493 +#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:489 msgid "Server:" msgstr "" -#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:494 +#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:490 msgid "Username:" msgstr "" -#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:491 +#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:487 msgid "Password:" msgstr "" -#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:854 +#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:850 msgid "Server Choice" msgstr "" #: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 -#: libraries/messages.inc.php:177 +#: libraries/messages.inc.php:173 msgid "Cookies must be enabled past this point." msgstr "" #: libraries/auth/cookie.auth.lib.php:671 -#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:489 +#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:485 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" #: libraries/auth/cookie.auth.lib.php:675 -#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:544 +#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:540 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" #: libraries/auth/cookie.auth.lib.php:685 #: libraries/auth/cookie.auth.lib.php:687 -#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:126 +#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:122 msgid "Cannot log in to the MySQL server" msgstr "" -#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1245 +#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1241 msgid "Wrong username/password. Access denied." msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:118 -#: libraries/messages.inc.php:1057 +#: libraries/messages.inc.php:1053 #, php-format msgid "File %s does not contain any key id" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:157 #: libraries/auth/swekey/swekey.auth.lib.php:180 -#: libraries/messages.inc.php:1056 +#: libraries/messages.inc.php:1052 msgid "Hardware authentication failed" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:166 -#: libraries/messages.inc.php:1058 +#: libraries/messages.inc.php:1054 msgid "No valid authentication key plugged" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:202 -#: libraries/messages.inc.php:1055 +#: libraries/messages.inc.php:1051 msgid "Authenticating..." msgstr "" -#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1230 +#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1226 msgid "View image" msgstr "" -#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:652 +#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:648 msgid "Play audio" msgstr "" -#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1232 +#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1228 msgid "View video" msgstr "" -#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:269 +#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:265 msgid "Download file" msgstr "" -#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:128 +#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:124 msgid "" "Couldn't load the iconv or recode extension needed for charset conversion. " "Either configure PHP to enable these extensions or disable charset " @@ -1668,13 +1668,13 @@ msgstr "" #: libraries/charset_conversion.lib.php:79 #: libraries/charset_conversion.lib.php:90 -#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:130 +#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:126 msgid "" "Couldn't use the iconv, libiconv, or recode_string functions, although the " "necessary extensions appear to be loaded. Check your PHP configuration." msgstr "" -#: libraries/common.inc.php:583 libraries/messages.inc.php:170 +#: libraries/common.inc.php:583 libraries/messages.inc.php:166 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!" @@ -1700,22 +1700,22 @@ msgstr "" msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:636 libraries/messages.inc.php:448 +#: libraries/common.inc.php:636 libraries/messages.inc.php:444 #, 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/messages.inc.php:856 libraries/select_server.lib.php:41 +#: libraries/messages.inc.php:852 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/messages.inc.php:437 +#: libraries/common.inc.php:823 libraries/messages.inc.php:433 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.lib.php:147 libraries/messages.inc.php:499 +#: libraries/common.lib.php:147 libraries/messages.inc.php:495 #, php-format msgid "Max: %s%s" msgstr "" @@ -1735,7 +1735,7 @@ msgstr "en" #: libraries/common.lib.php:428 libraries/common.lib.php:430 #: libraries/common.lib.php:432 libraries/common.lib.php:448 #: libraries/common.lib.php:450 libraries/dbg/setup.php:25 -#: libraries/display_export.lib.php:164 libraries/messages.inc.php:267 +#: libraries/display_export.lib.php:164 libraries/messages.inc.php:263 #: libraries/relation.lib.php:97 libraries/sql_query_form.lib.php:451 #: libraries/sql_query_form.lib.php:454 main.php:229 pdf_pages.php:37 #: pdf_pages.php:43 pdf_pages.php:49 pdf_pages.php:54 @@ -1745,55 +1745,55 @@ msgstr "" #: libraries/common.lib.php:581 libraries/core.lib.php:234 #: libraries/core.lib.php:263 libraries/import.lib.php:134 -#: libraries/messages.inc.php:297 pdf_schema.php:32 pdf_schema.php:232 +#: libraries/messages.inc.php:293 pdf_schema.php:32 pdf_schema.php:232 #: tbl_change.php:1027 tbl_operations.php:213 tbl_relation.php:290 #: view_operations.php:62 msgid "Error" msgstr "" #: libraries/common.lib.php:595 libraries/header_printview.inc.php:61 -#: libraries/messages.inc.php:1023 server_processlist.php:60 +#: libraries/messages.inc.php:1019 server_processlist.php:60 #: server_status.php:247 msgid "SQL query" msgstr "" -#: libraries/common.lib.php:634 libraries/messages.inc.php:538 +#: libraries/common.lib.php:634 libraries/messages.inc.php:534 msgid "MySQL said: " msgstr "" -#: libraries/common.lib.php:667 libraries/messages.inc.php:76 +#: libraries/common.lib.php:667 libraries/messages.inc.php:72 #: pdf_schema.php:241 user_password.php:115 msgid "Back" msgstr "" -#: libraries/common.lib.php:1177 libraries/messages.inc.php:309 +#: libraries/common.lib.php:1177 libraries/messages.inc.php:305 #: setup/lib/messages.inc.php:353 msgid "Explain SQL" msgstr "" -#: libraries/common.lib.php:1180 libraries/messages.inc.php:551 +#: libraries/common.lib.php:1180 libraries/messages.inc.php:547 msgid "Skip Explain SQL" msgstr "" -#: libraries/common.lib.php:1212 libraries/messages.inc.php:563 +#: libraries/common.lib.php:1212 libraries/messages.inc.php:559 msgid "Without PHP Code" msgstr "" -#: libraries/common.lib.php:1215 libraries/messages.inc.php:649 +#: libraries/common.lib.php:1215 libraries/messages.inc.php:645 #: setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "" -#: libraries/common.lib.php:1233 libraries/messages.inc.php:737 +#: libraries/common.lib.php:1233 libraries/messages.inc.php:733 #: server_status.php:341 setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "" -#: libraries/common.lib.php:1242 libraries/messages.inc.php:575 +#: libraries/common.lib.php:1242 libraries/messages.inc.php:571 msgid "Skip Validate SQL" msgstr "" -#: libraries/common.lib.php:1245 libraries/messages.inc.php:1220 +#: libraries/common.lib.php:1245 libraries/messages.inc.php:1216 #: setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "" @@ -1807,11 +1807,11 @@ msgid "Inline" msgstr "உள்வரிசை" #: libraries/common.lib.php:1332 libraries/common.lib.php:1347 -#: libraries/messages.inc.php:713 +#: libraries/messages.inc.php:709 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1351 libraries/messages.inc.php:1108 +#: libraries/common.lib.php:1351 libraries/messages.inc.php:1104 #: libraries/tbl_triggers.lib.php:28 server_processlist.php:58 msgid "Time" msgstr "" @@ -1845,46 +1845,56 @@ msgstr "PiB" msgid "EiB" msgstr "EiB" +#. l10n: Thousands separator +#: libraries/common.lib.php:1417 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: libraries/common.lib.php:1419 +msgid "." +msgstr "," + #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1584 +#: libraries/common.lib.php:1596 #: libraries/transformations/text_plain__dateformat.inc.php:28 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y at %I:%M %p" -#: libraries/common.lib.php:1886 +#: libraries/common.lib.php:1898 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s நாட்கள் %s மணித்தியாலங்கள் %s நிமிடங்கள் மற்றும் %s செக்கன்கள்" -#: libraries/common.lib.php:2301 libraries/common.lib.php:2304 -#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:664 +#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:660 #: server_status.php:608 msgid "Begin" msgstr "" -#: libraries/common.lib.php:2302 libraries/common.lib.php:2305 -#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:665 +#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:661 #: server_binlog.php:168 server_binlog.php:170 msgid "Previous" msgstr "" -#: libraries/common.lib.php:2333 libraries/common.lib.php:2336 -#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:289 +#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:285 msgid "End" msgstr "" -#: libraries/common.lib.php:2409 libraries/messages.inc.php:455 +#: libraries/common.lib.php:2421 libraries/messages.inc.php:451 #, php-format msgid "Jump to database "%s"." msgstr "" -#: libraries/common.lib.php:2429 libraries/messages.inc.php:461 +#: libraries/common.lib.php:2441 libraries/messages.inc.php:457 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/core.lib.php:286 libraries/dbg/setup.php:22 -#: libraries/messages.inc.php:127 +#: libraries/messages.inc.php:123 #, php-format msgid "" "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " @@ -1892,115 +1902,115 @@ msgid "" msgstr "" #: libraries/db_events.inc.php:20 libraries/db_events.inc.php:22 -#: libraries/export/sql.php:415 libraries/messages.inc.php:306 +#: libraries/export/sql.php:415 libraries/messages.inc.php:302 msgid "Events" msgstr "" #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 -#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:541 +#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:537 #: libraries/tbl_triggers.lib.php:27 setup/frames/index.inc.php:112 msgid "Name" msgstr "" -#: libraries/db_links.inc.php:45 libraries/messages.inc.php:216 +#: libraries/db_links.inc.php:45 libraries/messages.inc.php:212 #, php-format msgid "Database %s has been dropped." msgstr "" #: libraries/db_links.inc.php:57 libraries/db_links.inc.php:58 -#: libraries/db_links.inc.php:59 libraries/messages.inc.php:234 +#: libraries/db_links.inc.php:59 libraries/messages.inc.php:230 msgid "Database seems to be empty!" msgstr "" -#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1025 +#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1021 #: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60 #: querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "" -#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1152 +#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1148 #: libraries/tbl_links.inc.php:69 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:86 libraries/messages.inc.php:719 +#: libraries/db_links.inc.php:86 libraries/messages.inc.php:715 msgid "Query" msgstr "" -#: libraries/db_links.inc.php:91 libraries/messages.inc.php:253 +#: libraries/db_links.inc.php:91 libraries/messages.inc.php:249 msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:98 libraries/messages.inc.php:397 +#: libraries/db_links.inc.php:98 libraries/messages.inc.php:393 #: libraries/server_links.inc.php:88 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:104 libraries/messages.inc.php:587 +#: libraries/db_links.inc.php:104 libraries/messages.inc.php:583 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" msgstr "" -#: libraries/db_links.inc.php:111 libraries/messages.inc.php:709 +#: libraries/db_links.inc.php:111 libraries/messages.inc.php:705 #: libraries/server_links.inc.php:66 server_privileges.php:72 #: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117 msgid "Privileges" msgstr "" #: libraries/db_routines.inc.php:30 libraries/db_routines.inc.php:32 -#: libraries/messages.inc.php:812 +#: libraries/messages.inc.php:808 msgid "Routines" msgstr "" -#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:811 +#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:807 msgid "Return type" msgstr "" #: libraries/db_structure.lib.php:57 libraries/display_tbl.lib.php:1848 -#: libraries/messages.inc.php:65 +#: libraries/messages.inc.php:61 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "" -#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:593 +#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:589 #: server_databases.php:142 tbl_printview.php:336 tbl_structure.php:683 msgid "Overhead" msgstr "" #: libraries/dbi/mysql.dbi.lib.php:112 libraries/dbi/mysqli.dbi.lib.php:124 -#: libraries/messages.inc.php:176 +#: libraries/messages.inc.php:172 msgid "Connection for controluser as defined in your configuration failed." msgstr "" #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 -#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:855 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:851 msgid "The server is not responding" msgstr "" #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:1010 +#: libraries/messages.inc.php:1006 msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "" -#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:255 +#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:251 #: tbl_structure.php:609 msgid "Details..." msgstr "" -#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:143 +#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:139 #: main.php:91 user_password.php:111 user_password.php:129 msgid "Change password" msgstr "" -#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:561 +#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:557 #: libraries/replication_gui.lib.php:341 server_privileges.php:768 msgid "No Password" msgstr "" -#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:610 +#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:606 #: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60 #: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335 #: libraries/replication_gui.lib.php:345 server_privileges.php:757 @@ -2009,13 +2019,13 @@ msgstr "" msgid "Password" msgstr "" -#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:806 +#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:802 #: libraries/replication_gui.lib.php:349 libraries/replication_gui.lib.php:352 #: server_privileges.php:776 server_privileges.php:779 msgid "Re-type" msgstr "" -#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:608 +#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:604 msgid "Password Hashing" msgstr "" @@ -2023,89 +2033,89 @@ msgstr "" msgid "MySQL 4.0 compatible" msgstr "" -#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:353 +#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:349 #: libraries/replication_gui.lib.php:356 server_privileges.php:783 msgid "Generate Password" msgstr "" -#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:352 +#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:348 #: libraries/replication_gui.lib.php:359 server_privileges.php:786 msgid "Generate" msgstr "" #: libraries/display_create_database.lib.php:22 -#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:189 +#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:185 msgid "Create new database" msgstr "" -#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:185 +#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:181 msgid "Create" msgstr "" -#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:564 +#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:560 #: server_privileges.php:74 server_privileges.php:1388 #: server_replication.php:35 msgid "No Privileges" msgstr "" -#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:445 +#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:441 msgid "Table must have at least one field." msgstr "" -#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:190 +#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:186 #, php-format msgid "Create table on database %s" msgstr "" -#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:577 +#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:573 msgid "Number of fields" msgstr "" -#: libraries/display_export.lib.php:42 libraries/messages.inc.php:124 +#: libraries/display_export.lib.php:42 libraries/messages.inc.php:120 msgid "Could not load export plugins, please check your installation!" msgstr "" -#: libraries/display_export.lib.php:107 libraries/messages.inc.php:277 +#: libraries/display_export.lib.php:107 libraries/messages.inc.php:273 #, php-format msgid "Dump %s row(s) starting at record # %s" msgstr "" -#: libraries/display_export.lib.php:115 libraries/messages.inc.php:274 +#: libraries/display_export.lib.php:115 libraries/messages.inc.php:270 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:125 libraries/messages.inc.php:852 +#: libraries/display_export.lib.php:125 libraries/messages.inc.php:848 #: setup/lib/messages.inc.php:82 msgid "Save as file" msgstr "" -#: libraries/display_export.lib.php:134 libraries/messages.inc.php:828 +#: libraries/display_export.lib.php:134 libraries/messages.inc.php:824 #, php-format msgid "Save on server in %s directory" msgstr "" -#: libraries/display_export.lib.php:142 libraries/messages.inc.php:594 +#: libraries/display_export.lib.php:142 libraries/messages.inc.php:590 #: setup/lib/messages.inc.php:90 msgid "Overwrite existing file(s)" msgstr "" -#: libraries/display_export.lib.php:148 libraries/messages.inc.php:330 +#: libraries/display_export.lib.php:148 libraries/messages.inc.php:326 msgid "File name template" msgstr "" -#: libraries/display_export.lib.php:152 libraries/messages.inc.php:327 +#: libraries/display_export.lib.php:152 libraries/messages.inc.php:323 msgid "server name" msgstr "" -#: libraries/display_export.lib.php:155 libraries/messages.inc.php:326 +#: libraries/display_export.lib.php:155 libraries/messages.inc.php:322 msgid "database name" msgstr "" -#: libraries/display_export.lib.php:158 libraries/messages.inc.php:328 +#: libraries/display_export.lib.php:158 libraries/messages.inc.php:324 msgid "table name" msgstr "" -#: libraries/display_export.lib.php:162 libraries/messages.inc.php:329 +#: libraries/display_export.lib.php:162 libraries/messages.inc.php:325 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2113,24 +2123,24 @@ msgid "" "3$s. Other text will be kept as is." msgstr "" -#: libraries/display_export.lib.php:202 libraries/messages.inc.php:331 +#: libraries/display_export.lib.php:202 libraries/messages.inc.php:327 msgid "remember template" msgstr "" #: libraries/display_export.lib.php:210 libraries/display_import.lib.php:178 -#: libraries/display_import.lib.php:191 libraries/messages.inc.php:145 +#: libraries/display_import.lib.php:191 libraries/messages.inc.php:141 #: libraries/sql_query_form.lib.php:549 msgid "Character set of the file:" msgstr "" -#: libraries/display_export.lib.php:235 libraries/messages.inc.php:166 +#: libraries/display_export.lib.php:235 libraries/messages.inc.php:162 #: setup/lib/messages.inc.php:84 msgid "Compression" 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/messages.inc.php:558 +#: libraries/export/sql.php:868 libraries/messages.inc.php:554 #: libraries/tbl_properties.inc.php:575 server_privileges.php:1836 #: server_processlist.php:75 msgid "None" @@ -2148,462 +2158,462 @@ msgstr "" msgid "bzipped" msgstr "" -#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1018 +#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1014 msgid "SQL compatibility mode" msgstr "" -#: libraries/display_import.lib.php:67 libraries/messages.inc.php:398 +#: libraries/display_import.lib.php:67 libraries/messages.inc.php:394 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " "browsers." msgstr "" -#: libraries/display_import.lib.php:77 libraries/messages.inc.php:406 +#: libraries/display_import.lib.php:77 libraries/messages.inc.php:402 msgid "The file is being processed, please be patient." msgstr "" -#: libraries/display_import.lib.php:99 libraries/messages.inc.php:408 +#: libraries/display_import.lib.php:99 libraries/messages.inc.php:404 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." msgstr "" -#: libraries/display_import.lib.php:126 libraries/messages.inc.php:333 +#: libraries/display_import.lib.php:126 libraries/messages.inc.php:329 msgid "File to import" msgstr "" -#: libraries/display_import.lib.php:137 libraries/messages.inc.php:486 +#: libraries/display_import.lib.php:137 libraries/messages.inc.php:482 #: libraries/sql_query_form.lib.php:524 msgid "Location of the text file" msgstr "" -#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1203 +#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1199 msgid "File uploads are not allowed on this server." msgstr "" -#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1235 +#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1231 #: libraries/sql_query_form.lib.php:533 tbl_change.php:1028 msgid "The directory you set for upload work cannot be reached" msgstr "" -#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1236 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1232 #: libraries/sql_query_form.lib.php:536 tbl_change.php:1031 msgid "web server upload directory" msgstr "" -#: libraries/display_import.lib.php:212 libraries/messages.inc.php:167 +#: libraries/display_import.lib.php:212 libraries/messages.inc.php:163 #, php-format msgid "Imported file compression will be automatically detected from: %s" msgstr "" -#: libraries/display_import.lib.php:219 libraries/messages.inc.php:600 +#: libraries/display_import.lib.php:219 libraries/messages.inc.php:596 msgid "Partial import" msgstr "" -#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1105 +#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1101 #, php-format msgid "" "Previous import timed out, after resubmitting will continue from position %d." msgstr "" -#: libraries/display_import.lib.php:232 libraries/messages.inc.php:51 +#: libraries/display_import.lib.php:232 libraries/messages.inc.php:47 msgid "" "Allow the interruption of an import in case the script detects it is close " "to the PHP timeout limit. This might be good way to import large files, " "however it can break transactions." msgstr "" -#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1004 +#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1000 #: setup/lib/messages.inc.php:161 msgid "Number of records (queries) to skip from start" msgstr "" -#: libraries/display_import.lib.php:255 libraries/messages.inc.php:396 +#: libraries/display_import.lib.php:255 libraries/messages.inc.php:392 #: setup/lib/messages.inc.php:160 msgid "Format of imported file" msgstr "" #: libraries/display_select_lang.lib.php:45 -#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:465 +#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:461 #: setup/frames/index.inc.php:70 msgid "Language" msgstr "" -#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:447 +#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:443 #, php-format msgid "%d is not valid row number." msgstr "" -#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:814 +#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:810 msgid "row(s) starting from record #" msgstr "" -#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:817 +#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:813 msgid "horizontal" msgstr "" -#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:816 +#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:812 msgid "horizontal (rotated headers)" msgstr "" -#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:819 +#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:815 msgid "vertical" msgstr "" -#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:818 +#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:814 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "" -#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:495 +#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:491 msgid "This operation could take a long time. Proceed anyway?" msgstr "" -#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1012 +#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1008 msgid "Sort by key" msgstr "" #: libraries/display_tbl.lib.php:555 libraries/import.lib.php:1082 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:591 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:587 #: tbl_select.php:267 tbl_structure.php:754 msgid "Options" msgstr "" #: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:570 -#: libraries/messages.inc.php:601 +#: libraries/messages.inc.php:597 msgid "Partial Texts" msgstr "" #: libraries/display_tbl.lib.php:561 libraries/display_tbl.lib.php:574 -#: libraries/messages.inc.php:346 +#: libraries/messages.inc.php:342 msgid "Full Texts" msgstr "" -#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:739 +#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:735 msgid "Relational key" msgstr "" -#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:738 +#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:734 msgid "Relational display field" msgstr "" -#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:872 +#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:868 msgid "Show binary contents" msgstr "" -#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:873 +#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:869 msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:871 +#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:867 msgid "Show binary contents as HEX" msgstr "" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:375 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:371 #: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320 msgid "Hide" msgstr "" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:508 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:504 #: libraries/tbl_properties.inc.php:144 transformation_overview.php:47 msgid "Browser transformation" msgstr "" #: libraries/display_tbl.lib.php:1126 libraries/display_tbl.lib.php:1130 -#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:308 +#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:304 msgid "Execute bookmarked query" msgstr "" #: libraries/display_tbl.lib.php:1145 libraries/display_tbl.lib.php:1157 -#: libraries/messages.inc.php:244 +#: libraries/messages.inc.php:240 msgid "The row has been deleted" msgstr "" #: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056 -#: libraries/messages.inc.php:460 server_processlist.php:71 +#: libraries/messages.inc.php:456 server_processlist.php:71 #: tbl_row_action.php:64 msgid "Kill" msgstr "" -#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:849 +#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:845 msgid "in query" msgstr "" -#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:881 +#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:877 msgid "Showing rows" msgstr "" -#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1113 +#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1109 msgid "total" msgstr "" -#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:727 +#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:723 #: sql.php:524 #, php-format msgid "Query took %01.4f sec" msgstr "" -#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:135 +#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:131 #: 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:471 msgid "Change" msgstr "" -#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:724 +#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:720 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:671 +#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:667 msgid "Print view (with full texts)" msgstr "" -#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:482 +#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:478 msgid "Link not found" msgstr "" -#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1224 +#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1220 #: main.php:228 msgid "Version information" msgstr "" -#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:423 +#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:419 msgid "Data home directory" msgstr "" -#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:424 +#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:420 msgid "The common part of the directory path for all InnoDB data files." msgstr "" -#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:422 +#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:418 msgid "Data files" msgstr "" -#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:418 +#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:414 msgid "Autoextend increment" msgstr "" -#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:419 +#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:415 msgid "" " The increment size for extending the size of an autoextending tablespace " "when it becomes full." msgstr "" -#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:420 +#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:416 msgid "Buffer pool size" msgstr "" -#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:421 +#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:417 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." msgstr "" -#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:112 +#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:108 msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:426 +#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:422 #: server_status.php:306 msgid "InnoDB Status" msgstr "" -#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:113 +#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:109 msgid "Buffer Pool Usage" msgstr "" -#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1114 +#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1110 #: server_databases.php:137 server_databases.php:305 server_status.php:414 #: server_status.php:475 server_status.php:496 tbl_printview.php:351 #: tbl_structure.php:697 msgid "Total" msgstr "" -#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:425 +#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:421 msgid "pages" msgstr "" -#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:343 +#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:339 msgid "Free pages" msgstr "" -#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:259 +#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:255 msgid "Dirty pages" msgstr "" -#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:230 +#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:226 msgid "Pages containing data" msgstr "" -#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:598 +#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:594 msgid "Pages to be flushed" msgstr "" -#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:119 +#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:115 msgid "Busy pages" msgstr "" -#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:467 +#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:463 msgid "Latched pages" msgstr "" -#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:111 +#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:107 msgid "Buffer Pool Activity" msgstr "" -#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:731 +#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:727 msgid "Read requests" msgstr "" -#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1244 +#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1240 msgid "Write requests" msgstr "" -#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:115 +#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:111 msgid "Read misses" msgstr "" -#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:117 +#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:113 msgid "Write waits" msgstr "" -#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:114 +#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:110 msgid "Read misses in %" msgstr "" -#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:116 +#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:112 msgid "Write waits in %" msgstr "" -#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:522 +#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:518 msgid "Data pointer size" msgstr "" -#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:523 +#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:519 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." msgstr "" -#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:528 +#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:524 msgid "Automatic recovery mode" msgstr "" -#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:529 +#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:525 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." msgstr "" -#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:527 +#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:523 msgid "Maximum size for temporary sort files" msgstr "" -#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:526 +#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:522 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " "INFILE)." msgstr "" -#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:525 +#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:521 msgid "Maximum size for temporary files on index creation" msgstr "" -#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:524 +#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:520 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " "method." msgstr "" -#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:531 +#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:527 msgid "Repair threads" msgstr "" -#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:530 +#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:526 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." msgstr "" -#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:533 +#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:529 msgid "Sort buffer size" msgstr "" -#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:532 +#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:528 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." msgstr "" -#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:620 +#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:616 msgid "Index cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:619 +#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:615 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." msgstr "" -#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:630 +#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:626 msgid "Record cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:629 +#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:625 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " "to the handle data (.xtd) and row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:624 +#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:620 msgid "Log cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:623 +#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:619 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:628 +#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:624 msgid "Log file threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:627 +#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:623 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:634 +#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:630 msgid "Transaction buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:633 +#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:629 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." msgstr "" -#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:611 +#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:607 msgid "Checkpoint frequency" msgstr "" -#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:612 +#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:608 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." msgstr "" -#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:615 +#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:611 msgid "Data log threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:616 +#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:612 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -2611,48 +2621,48 @@ msgid "" "that can be stored in the database." msgstr "" -#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:618 +#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:614 msgid "Garbage threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:617 +#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:613 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." msgstr "" -#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:622 +#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:618 msgid "Log buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:621 +#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:617 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " "required to write a data log." msgstr "" -#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:613 +#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:609 msgid "Data file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:614 +#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:610 msgid "The grow size of the handle data (.xtd) files." msgstr "" -#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:632 +#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:628 msgid "Row file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:631 +#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:627 msgid "The grow size of the row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:626 +#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:622 msgid "Log file count" msgstr "" -#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:625 +#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:621 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -2662,19 +2672,19 @@ msgstr "" #: libraries/export/htmlword.php:132 libraries/export/odt.php:168 #: libraries/export/sql.php:881 libraries/export/texytext.php:130 -#: libraries/messages.inc.php:275 +#: libraries/messages.inc.php:271 msgid "Dumping data for table" msgstr "" #: libraries/export/htmlword.php:185 libraries/export/odt.php:238 #: libraries/export/sql.php:785 libraries/export/texytext.php:177 -#: libraries/messages.inc.php:1086 +#: libraries/messages.inc.php:1082 msgid "Table structure for table" msgstr "" #: libraries/export/latex.php:125 libraries/export/sql.php:232 #: libraries/export/xml.php:102 libraries/header_printview.inc.php:57 -#: libraries/messages.inc.php:381 libraries/replication_gui.lib.php:63 +#: libraries/messages.inc.php:377 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:170 libraries/replication_gui.lib.php:265 #: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325 #: server_privileges.php:692 server_privileges.php:695 @@ -2686,183 +2696,183 @@ msgstr "" #: libraries/export/latex.php:130 libraries/export/sql.php:233 #: libraries/export/xml.php:107 libraries/header_printview.inc.php:59 -#: libraries/messages.inc.php:354 +#: libraries/messages.inc.php:350 msgid "Generation Time" msgstr "" #: libraries/export/latex.php:131 libraries/export/sql.php:235 -#: libraries/export/xml.php:108 libraries/messages.inc.php:864 main.php:186 +#: libraries/export/xml.php:108 libraries/messages.inc.php:860 main.php:186 msgid "Server version" msgstr "" #: libraries/export/latex.php:132 libraries/export/sql.php:236 -#: libraries/export/xml.php:109 libraries/messages.inc.php:651 +#: libraries/export/xml.php:109 libraries/messages.inc.php:647 msgid "PHP Version" msgstr "" #: libraries/export/latex.php:201 libraries/export/sql.php:868 -#: libraries/messages.inc.php:226 server_databases.php:127 +#: libraries/messages.inc.php:222 server_databases.php:127 #: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317 #: tbl_structure.php:666 msgid "Data" msgstr "" -#: libraries/export/odt.php:318 libraries/messages.inc.php:506 +#: libraries/export/odt.php:318 libraries/messages.inc.php:502 #: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "" -#: libraries/export/sql.php:387 libraries/messages.inc.php:711 +#: libraries/export/sql.php:387 libraries/messages.inc.php:707 msgid "Procedures" msgstr "" -#: libraries/export/sql.php:401 libraries/messages.inc.php:348 +#: libraries/export/sql.php:401 libraries/messages.inc.php:344 msgid "Functions" msgstr "" -#: libraries/export/sql.php:618 libraries/messages.inc.php:174 +#: libraries/export/sql.php:618 libraries/messages.inc.php:170 msgid "Constraints for dumped tables" msgstr "" -#: libraries/export/sql.php:627 libraries/messages.inc.php:175 +#: libraries/export/sql.php:627 libraries/messages.inc.php:171 msgid "Constraints for table" msgstr "" -#: libraries/export/sql.php:727 libraries/messages.inc.php:512 +#: libraries/export/sql.php:727 libraries/messages.inc.php:508 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/export/sql.php:739 libraries/messages.inc.php:743 +#: libraries/export/sql.php:739 libraries/messages.inc.php:739 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/export/sql.php:796 libraries/messages.inc.php:1178 +#: libraries/export/sql.php:796 libraries/messages.inc.php:1174 #: libraries/tbl_triggers.lib.php:19 msgid "Triggers" msgstr "" -#: libraries/export/sql.php:808 libraries/messages.inc.php:1046 +#: libraries/export/sql.php:808 libraries/messages.inc.php:1042 msgid "Structure for view" msgstr "" -#: libraries/export/sql.php:817 libraries/messages.inc.php:1029 +#: libraries/export/sql.php:817 libraries/messages.inc.php:1025 msgid "Stand-in structure for view" msgstr "" #: libraries/footer.inc.php:184 libraries/footer.inc.php:195 -#: libraries/footer.inc.php:198 libraries/messages.inc.php:586 +#: libraries/footer.inc.php:198 libraries/messages.inc.php:582 msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/header.inc.php:115 libraries/messages.inc.php:542 +#: libraries/header.inc.php:115 libraries/messages.inc.php:538 msgid "New table" msgstr "" #: libraries/header_printview.inc.php:50 libraries/header_printview.inc.php:55 -#: libraries/messages.inc.php:1024 +#: libraries/messages.inc.php:1020 msgid "SQL result" msgstr "" -#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:350 +#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:346 msgid "Generated by" msgstr "" #: libraries/header_printview.inc.php:63 libraries/import.lib.php:145 -#: libraries/messages.inc.php:820 navigation.php:652 navigation.php:674 +#: libraries/messages.inc.php:816 navigation.php:652 navigation.php:674 #: server_databases.php:122 tbl_printview.php:394 tbl_structure.php:366 #: tbl_structure.php:778 msgid "Rows" msgstr "" -#: libraries/import.lib.php:150 libraries/messages.inc.php:285 sql.php:520 +#: libraries/import.lib.php:150 libraries/messages.inc.php:281 sql.php:520 #: tbl_change.php:181 tbl_get_field.php:35 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" -#: libraries/import.lib.php:1078 libraries/messages.inc.php:399 +#: libraries/import.lib.php:1078 libraries/messages.inc.php:395 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1079 libraries/messages.inc.php:400 +#: libraries/import.lib.php:1079 libraries/messages.inc.php:396 msgid "View a structure`s contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1080 libraries/messages.inc.php:401 +#: libraries/import.lib.php:1080 libraries/messages.inc.php:397 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1081 libraries/messages.inc.php:402 +#: libraries/import.lib.php:1081 libraries/messages.inc.php:398 msgid "Edit its structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1084 libraries/messages.inc.php:362 +#: libraries/import.lib.php:1084 libraries/messages.inc.php:358 msgid "Go to database" msgstr "" #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:869 +#: libraries/messages.inc.php:865 msgid "settings" msgstr "" -#: libraries/import.lib.php:1106 libraries/messages.inc.php:363 +#: libraries/import.lib.php:1106 libraries/messages.inc.php:359 msgid "Go to table" msgstr "" -#: libraries/import.lib.php:1109 libraries/messages.inc.php:1047 +#: libraries/import.lib.php:1109 libraries/messages.inc.php:1043 msgid "structure" msgstr "" -#: libraries/import.lib.php:1115 libraries/messages.inc.php:364 +#: libraries/import.lib.php:1115 libraries/messages.inc.php:360 msgid "Go to view" msgstr "" #: libraries/import/csv.php:58 libraries/import/csv.php:70 #: libraries/import/csv.php:74 libraries/import/csv.php:78 -#: libraries/messages.inc.php:442 +#: libraries/messages.inc.php:438 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "" -#: libraries/import/csv.php:59 libraries/messages.inc.php:323 +#: libraries/import/csv.php:59 libraries/messages.inc.php:319 msgid "Fields terminated by" msgstr "" -#: libraries/import/csv.php:71 libraries/messages.inc.php:320 +#: libraries/import/csv.php:71 libraries/messages.inc.php:316 msgid "Fields enclosed by" msgstr "" -#: libraries/import/csv.php:75 libraries/messages.inc.php:321 +#: libraries/import/csv.php:75 libraries/messages.inc.php:317 msgid "Fields escaped by" msgstr "" -#: libraries/import/csv.php:79 libraries/messages.inc.php:481 +#: libraries/import/csv.php:79 libraries/messages.inc.php:477 msgid "Lines terminated by" msgstr "" -#: libraries/import/csv.php:119 libraries/messages.inc.php:439 +#: libraries/import/csv.php:119 libraries/messages.inc.php:435 #, php-format msgid "Invalid column (%s) specified!" msgstr "" #: libraries/import/csv.php:177 libraries/import/csv.php:424 -#: libraries/messages.inc.php:441 +#: libraries/messages.inc.php:437 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/import/csv.php:312 libraries/messages.inc.php:440 +#: libraries/import/csv.php:312 libraries/messages.inc.php:436 #, php-format msgid "Invalid field count in CSV input on line %d." msgstr "" -#: libraries/import/ldi.php:55 libraries/messages.inc.php:446 +#: libraries/import/ldi.php:55 libraries/messages.inc.php:442 msgid "This plugin does not support compressed imports!" msgstr "" #: libraries/import/xml.php:74 libraries/import/xml.php:130 -#: libraries/messages.inc.php:1247 +#: libraries/messages.inc.php:1243 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -2889,773 +2899,763 @@ msgstr "" msgid "ltr" msgstr "ltr" -#. l10n: Thousands separator -#: libraries/messages.inc.php:21 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: libraries/messages.inc.php:23 -msgid "." -msgstr "," - -#: libraries/messages.inc.php:25 server_status.php:461 +#: libraries/messages.inc.php:21 server_status.php:461 msgid "Aborted" msgstr "நிறுத்தப்பட்டுள்ளது" -#: libraries/messages.inc.php:28 main.php:68 +#: libraries/messages.inc.php:24 main.php:68 msgid "Actions" msgstr "செயல்கள்" -#: libraries/messages.inc.php:34 libraries/tbl_properties.inc.php:780 +#: libraries/messages.inc.php:30 libraries/tbl_properties.inc.php:780 #: tbl_structure.php:543 #, php-format msgid "Add %s field(s)" msgstr "%s களத்தை சேர்க்க" -#: libraries/messages.inc.php:35 +#: libraries/messages.inc.php:31 msgid "Add custom comment into header (\\n splits lines)" msgstr "" -#: libraries/messages.inc.php:36 +#: libraries/messages.inc.php:32 msgid "Add into comments" msgstr "கருதிட்குள் சேர்க்க" -#: libraries/messages.inc.php:37 tbl_structure.php:541 +#: libraries/messages.inc.php:33 tbl_structure.php:541 msgid "Add new field" msgstr "புதிய களத்தை சேர்க்க" -#: libraries/messages.inc.php:38 server_privileges.php:1886 +#: libraries/messages.inc.php:34 server_privileges.php:1886 msgid "Add privileges on the following database" msgstr "பின்வரும் கொட்பிட்கான புதிய அனுமதியை சேர்க்க" -#: libraries/messages.inc.php:39 server_privileges.php:1907 +#: libraries/messages.inc.php:35 server_privileges.php:1907 msgid "Add privileges on the following table" msgstr "" -#: libraries/messages.inc.php:40 tbl_select.php:288 +#: libraries/messages.inc.php:36 tbl_select.php:288 msgid "Add search conditions (body of the \"where\" clause):" msgstr "" -#: libraries/messages.inc.php:41 tbl_indexes.php:251 +#: libraries/messages.inc.php:37 tbl_indexes.php:251 #, php-format msgid "Add to index  %s column(s)" msgstr "" -#: libraries/messages.inc.php:42 server_privileges.php:1570 +#: libraries/messages.inc.php:38 server_privileges.php:1570 #: server_privileges.php:1594 server_privileges.php:1988 #: server_privileges.php:2177 msgid "Add a new User" msgstr "புதிய பயனாளரை சேர்க்க" -#: libraries/messages.inc.php:43 server_privileges.php:931 +#: libraries/messages.inc.php:39 server_privileges.php:931 msgid "You have added a new user." msgstr "நீங்கள் புதிய பயனாளரை சேர்த்துள்ளீர்கள்" -#: libraries/messages.inc.php:44 server_privileges.php:571 +#: libraries/messages.inc.php:40 server_privileges.php:571 msgid "Administration" msgstr "" -#: libraries/messages.inc.php:45 tbl_structure.php:557 +#: libraries/messages.inc.php:41 tbl_structure.php:557 #, php-format msgid "After %s" msgstr "%s பின்" -#: libraries/messages.inc.php:46 tbl_change.php:1147 +#: libraries/messages.inc.php:42 tbl_change.php:1147 msgid "Go back to previous page" msgstr "" -#: libraries/messages.inc.php:47 tbl_change.php:1148 +#: libraries/messages.inc.php:43 tbl_change.php:1148 msgid "Insert another new row" msgstr "" -#: libraries/messages.inc.php:48 tbl_change.php:1160 +#: libraries/messages.inc.php:44 tbl_change.php:1160 msgid "Edit next row" msgstr "" -#: libraries/messages.inc.php:49 tbl_change.php:1152 +#: libraries/messages.inc.php:45 tbl_change.php:1152 msgid "Go back to this page" msgstr "" -#: libraries/messages.inc.php:50 querywindow.php:115 +#: libraries/messages.inc.php:46 querywindow.php:115 msgid "All" msgstr "" -#: libraries/messages.inc.php:53 tbl_operations.php:249 +#: libraries/messages.inc.php:49 tbl_operations.php:249 msgid "Alter table order by" msgstr "" -#: libraries/messages.inc.php:54 tbl_operations.php:660 +#: libraries/messages.inc.php:50 tbl_operations.php:660 msgid "Analyze" msgstr "" -#: libraries/messages.inc.php:57 +#: libraries/messages.inc.php:53 msgid "and" msgstr "" -#: libraries/messages.inc.php:59 pmd_general.php:87 +#: libraries/messages.inc.php:55 pmd_general.php:87 msgid "Angular links" msgstr "" -#: libraries/messages.inc.php:60 tbl_structure.php:401 tbl_structure.php:415 +#: libraries/messages.inc.php:56 tbl_structure.php:401 tbl_structure.php:415 #: tbl_structure.php:429 #, php-format msgid "An index has been added on %s" msgstr "" -#: libraries/messages.inc.php:61 server_privileges.php:1521 +#: libraries/messages.inc.php:57 server_privileges.php:1521 #: server_privileges.php:2123 msgid "Any" msgstr "" -#: libraries/messages.inc.php:62 libraries/replication_gui.lib.php:298 +#: libraries/messages.inc.php:58 libraries/replication_gui.lib.php:298 #: server_privileges.php:725 msgid "Any host" msgstr "" -#: libraries/messages.inc.php:63 libraries/replication_gui.lib.php:250 +#: libraries/messages.inc.php:59 libraries/replication_gui.lib.php:250 #: server_privileges.php:677 msgid "Any user" msgstr "" -#: libraries/messages.inc.php:64 server_synchronize.php:449 +#: libraries/messages.inc.php:60 server_synchronize.php:449 #: server_synchronize.php:894 msgid "Apply Selected Changes" msgstr "" -#: libraries/messages.inc.php:66 tbl_structure.php:386 +#: libraries/messages.inc.php:62 tbl_structure.php:386 #, php-format msgid "A primary key has been added on %s" msgstr "" -#: libraries/messages.inc.php:67 libraries/mysql_charsets.lib.php:368 +#: libraries/messages.inc.php:63 libraries/mysql_charsets.lib.php:368 msgid "Arabic" msgstr "" -#: libraries/messages.inc.php:68 libraries/mysql_charsets.lib.php:359 +#: libraries/messages.inc.php:64 libraries/mysql_charsets.lib.php:359 msgid "Armenian" msgstr "" -#: libraries/messages.inc.php:70 libraries/tbl_properties.inc.php:394 +#: libraries/messages.inc.php:66 libraries/tbl_properties.inc.php:394 msgid "As defined:" msgstr "" -#: libraries/messages.inc.php:71 tbl_structure.php:556 +#: libraries/messages.inc.php:67 tbl_structure.php:556 msgid "At Beginning of Table" msgstr "" -#: libraries/messages.inc.php:72 tbl_structure.php:555 +#: libraries/messages.inc.php:68 tbl_structure.php:555 msgid "At End of Table" msgstr "" -#: libraries/messages.inc.php:73 libraries/tbl_properties.inc.php:108 +#: libraries/messages.inc.php:69 libraries/tbl_properties.inc.php:108 #: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:144 #: tbl_structure.php:180 msgid "Attributes" msgstr "" -#: libraries/messages.inc.php:74 pdf_pages.php:303 pdf_pages.php:306 +#: libraries/messages.inc.php:70 pdf_pages.php:303 pdf_pages.php:306 msgid "Automatic layout" msgstr "" -#: libraries/messages.inc.php:77 libraries/mysql_charsets.lib.php:354 +#: libraries/messages.inc.php:73 libraries/mysql_charsets.lib.php:354 msgid "Baltic" msgstr "" -#: libraries/messages.inc.php:78 libraries/sqlparser.lib.php:175 +#: libraries/messages.inc.php:74 libraries/sqlparser.lib.php:175 msgid "BEGIN CUT" msgstr "" -#: libraries/messages.inc.php:79 libraries/sqlparser.lib.php:179 +#: libraries/messages.inc.php:75 libraries/sqlparser.lib.php:179 msgid "BEGIN RAW" msgstr "" -#: libraries/messages.inc.php:80 libraries/mysql_charsets.lib.php:201 +#: libraries/messages.inc.php:76 libraries/mysql_charsets.lib.php:201 #: libraries/mysql_charsets.lib.php:402 tbl_change.php:518 msgid "Binary" msgstr "" -#: libraries/messages.inc.php:81 tbl_change.php:894 +#: libraries/messages.inc.php:77 tbl_change.php:894 msgid "Binary - do not edit" msgstr "" -#: libraries/messages.inc.php:82 libraries/server_links.inc.php:76 +#: libraries/messages.inc.php:78 libraries/server_links.inc.php:76 #: server_binlog.php:110 server_status.php:253 test/theme.php:121 msgid "Binary log" msgstr "" -#: libraries/messages.inc.php:83 server_binlog.php:217 +#: libraries/messages.inc.php:79 server_binlog.php:217 msgid "Event type" msgstr "" -#: libraries/messages.inc.php:84 server_binlog.php:220 +#: libraries/messages.inc.php:80 server_binlog.php:220 msgid "Information" msgstr "" -#: libraries/messages.inc.php:85 server_binlog.php:215 +#: libraries/messages.inc.php:81 server_binlog.php:215 msgid "Log name" msgstr "" -#: libraries/messages.inc.php:86 server_binlog.php:219 +#: libraries/messages.inc.php:82 server_binlog.php:219 msgid "Original position" msgstr "" -#: libraries/messages.inc.php:87 server_binlog.php:216 +#: libraries/messages.inc.php:83 server_binlog.php:216 msgid "Position" msgstr "" -#: libraries/messages.inc.php:88 libraries/replication_gui.lib.php:169 +#: libraries/messages.inc.php:84 libraries/replication_gui.lib.php:169 #: server_binlog.php:218 msgid "Server ID" msgstr "" -#: libraries/messages.inc.php:92 +#: libraries/messages.inc.php:88 msgctxt "$strBLOBRepositoryDisabled" msgid "Disabled" msgstr "" -#: libraries/messages.inc.php:95 +#: libraries/messages.inc.php:91 msgctxt "$strBLOBRepositoryEnabled" msgid "Enabled" msgstr "" -#: libraries/messages.inc.php:97 tbl_change.php:888 +#: libraries/messages.inc.php:93 tbl_change.php:888 msgid "Remove BLOB Repository Reference" msgstr "" -#: libraries/messages.inc.php:98 +#: libraries/messages.inc.php:94 msgctxt "$strBLOBRepositoryRepair" msgid "Repair" msgstr "" -#: libraries/messages.inc.php:99 tbl_change.php:987 +#: libraries/messages.inc.php:95 tbl_change.php:987 msgid "Upload to BLOB repository" msgstr "" -#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:359 +#: libraries/messages.inc.php:96 libraries/sql_query_form.lib.php:359 #: sql.php:677 msgid "Let every user access this bookmark" msgstr "" -#: libraries/messages.inc.php:103 sql.php:671 +#: libraries/messages.inc.php:99 sql.php:671 msgid "Label" msgstr "" -#: libraries/messages.inc.php:104 libraries/sql_query_form.lib.php:433 +#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:433 msgid "Bookmarked SQL query" msgstr "" -#: libraries/messages.inc.php:105 libraries/sql_query_form.lib.php:365 +#: libraries/messages.inc.php:101 libraries/sql_query_form.lib.php:365 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/messages.inc.php:106 libraries/sql_query_form.lib.php:352 +#: libraries/messages.inc.php:102 libraries/sql_query_form.lib.php:352 #: sql.php:665 sql.php:666 sql.php:683 msgid "Bookmark this SQL query" msgstr "" -#: libraries/messages.inc.php:107 libraries/sql_query_form.lib.php:466 +#: libraries/messages.inc.php:103 libraries/sql_query_form.lib.php:466 msgid "View only" msgstr "" -#: libraries/messages.inc.php:109 tbl_structure.php:161 +#: libraries/messages.inc.php:105 tbl_structure.php:161 msgid "Browse distinct values" msgstr "" -#: libraries/messages.inc.php:110 tbl_change.php:252 tbl_select.php:27 +#: libraries/messages.inc.php:106 tbl_change.php:252 tbl_select.php:27 #: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34 msgid "Browse foreign values" msgstr "" -#: libraries/messages.inc.php:118 libraries/mysql_charsets.lib.php:213 +#: libraries/messages.inc.php:114 libraries/mysql_charsets.lib.php:213 msgid "Bulgarian" msgstr "" -#: libraries/messages.inc.php:120 +#: libraries/messages.inc.php:116 msgid "\"bzipped\"" msgstr "" -#: libraries/messages.inc.php:122 +#: libraries/messages.inc.php:118 msgid "Calendar" msgstr "" -#: libraries/messages.inc.php:129 tbl_indexes.php:75 +#: libraries/messages.inc.php:125 tbl_indexes.php:75 msgid "Can't rename index to PRIMARY!" msgstr "" -#: libraries/messages.inc.php:132 libraries/mysql_charsets.lib.php:223 +#: libraries/messages.inc.php:128 libraries/mysql_charsets.lib.php:223 #: libraries/mysql_charsets.lib.php:409 msgid "case-insensitive" msgstr "" -#: libraries/messages.inc.php:133 libraries/mysql_charsets.lib.php:226 +#: libraries/messages.inc.php:129 libraries/mysql_charsets.lib.php:226 #: libraries/mysql_charsets.lib.php:411 msgid "case-sensitive" msgstr "" -#: libraries/messages.inc.php:134 libraries/mysql_charsets.lib.php:332 +#: libraries/messages.inc.php:130 libraries/mysql_charsets.lib.php:332 msgid "Central European" msgstr "" -#: libraries/messages.inc.php:136 server_privileges.php:1969 +#: libraries/messages.inc.php:132 server_privileges.php:1969 msgid "... keep the old one." msgstr "" -#: libraries/messages.inc.php:137 server_privileges.php:1967 +#: libraries/messages.inc.php:133 server_privileges.php:1967 msgid "Create a new user with the same privileges and ..." msgstr "" -#: libraries/messages.inc.php:138 server_privileges.php:1972 +#: libraries/messages.inc.php:134 server_privileges.php:1972 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/messages.inc.php:139 server_privileges.php:1970 +#: libraries/messages.inc.php:135 server_privileges.php:1970 msgid " ... delete the old one from the user tables." msgstr "" -#: libraries/messages.inc.php:140 server_privileges.php:1971 +#: libraries/messages.inc.php:136 server_privileges.php:1971 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/messages.inc.php:141 server_privileges.php:1964 +#: libraries/messages.inc.php:137 server_privileges.php:1964 msgid "Change Login Information / Copy User" msgstr "" -#: libraries/messages.inc.php:144 libraries/mysql_charsets.lib.php:107 +#: libraries/messages.inc.php:140 libraries/mysql_charsets.lib.php:107 msgid "Charset" msgstr "" -#: libraries/messages.inc.php:146 server_collations.php:40 +#: libraries/messages.inc.php:142 server_collations.php:40 msgid "Character Sets and Collations" msgstr "" -#: libraries/messages.inc.php:147 libraries/server_links.inc.php:57 +#: libraries/messages.inc.php:143 libraries/server_links.inc.php:57 #: test/theme.php:109 msgid "Charsets" msgstr "" -#: libraries/messages.inc.php:149 tbl_operations.php:661 +#: libraries/messages.inc.php:145 tbl_operations.php:661 msgid "Check" msgstr "" -#: libraries/messages.inc.php:151 server_databases.php:293 +#: libraries/messages.inc.php:147 server_databases.php:293 #: server_databases.php:294 msgid "Check Privileges" msgstr "" -#: libraries/messages.inc.php:152 server_databases.php:289 +#: libraries/messages.inc.php:148 server_databases.php:289 #, php-format msgid "Check privileges for database "%s"." msgstr "" -#: libraries/messages.inc.php:154 pdf_pages.php:261 +#: libraries/messages.inc.php:150 pdf_pages.php:261 msgid "Please choose a page to edit" msgstr "" -#: libraries/messages.inc.php:157 +#: libraries/messages.inc.php:153 msgid "Displaying Column Comments" msgstr "" -#: libraries/messages.inc.php:159 pdf_pages.php:483 view_create.php:148 +#: libraries/messages.inc.php:155 pdf_pages.php:483 view_create.php:148 msgid "Column names" msgstr "" -#: libraries/messages.inc.php:160 server_privileges.php:1685 +#: libraries/messages.inc.php:156 server_privileges.php:1685 msgid "Column-specific privileges" msgstr "" -#: libraries/messages.inc.php:164 +#: libraries/messages.inc.php:160 msgid "MySQL 4.0 compatible" msgstr "" -#: libraries/messages.inc.php:165 +#: libraries/messages.inc.php:161 msgid "Complete inserts" msgstr "" -#: libraries/messages.inc.php:168 +#: libraries/messages.inc.php:164 #, php-format msgid "Could not load default configuration from: \"%1$s\"" msgstr "" -#: libraries/messages.inc.php:169 main.php:306 +#: libraries/messages.inc.php:165 main.php:306 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: libraries/messages.inc.php:171 pdf_schema.php:672 +#: libraries/messages.inc.php:167 pdf_schema.php:672 #, php-format msgid "Please configure the coordinates for table %s" msgstr "" -#: libraries/messages.inc.php:173 server_status.php:433 +#: libraries/messages.inc.php:169 server_status.php:433 msgid "Connections" msgstr "" -#: libraries/messages.inc.php:179 tbl_operations.php:509 +#: libraries/messages.inc.php:175 tbl_operations.php:509 msgid "Copy table to (database.table):" msgstr "" -#: libraries/messages.inc.php:180 tbl_move_copy.php:58 +#: libraries/messages.inc.php:176 tbl_move_copy.php:58 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/messages.inc.php:181 tbl_move_copy.php:48 +#: libraries/messages.inc.php:177 tbl_move_copy.php:48 msgid "Can't copy table to same one!" msgstr "" -#: libraries/messages.inc.php:182 server_synchronize.php:94 +#: libraries/messages.inc.php:178 server_synchronize.php:94 msgid "Could not connect to the source" msgstr "" -#: libraries/messages.inc.php:183 server_synchronize.php:97 +#: libraries/messages.inc.php:179 server_synchronize.php:97 msgid "Could not connect to the target" msgstr "" -#: libraries/messages.inc.php:184 server_processlist.php:24 +#: libraries/messages.inc.php:180 server_processlist.php:24 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: libraries/messages.inc.php:187 +#: libraries/messages.inc.php:183 #, php-format msgid "Create an index on %s columns" msgstr "" -#: libraries/messages.inc.php:188 tbl_indexes.php:160 +#: libraries/messages.inc.php:184 tbl_indexes.php:160 msgid "Create a new index" msgstr "" -#: libraries/messages.inc.php:191 pdf_pages.php:297 pmd_pdf.php:114 +#: libraries/messages.inc.php:187 pdf_pages.php:297 pmd_pdf.php:114 msgid "Create a page" msgstr "" -#: libraries/messages.inc.php:192 +#: libraries/messages.inc.php:188 msgid "Creation of PDFs" msgstr "" -#: libraries/messages.inc.php:193 pmd_general.php:74 pmd_general.php:306 +#: libraries/messages.inc.php:189 pmd_general.php:74 pmd_general.php:306 msgid "Create relation" msgstr "" -#: libraries/messages.inc.php:194 pmd_general.php:71 +#: libraries/messages.inc.php:190 pmd_general.php:71 #: server_synchronize.php:429 server_synchronize.php:872 msgid "Create table" msgstr "" -#: libraries/messages.inc.php:195 +#: libraries/messages.inc.php:191 msgctxt "$strCreateTableShort" msgid "Create table" msgstr "" -#: libraries/messages.inc.php:196 server_privileges.php:1994 +#: libraries/messages.inc.php:192 server_privileges.php:1994 msgid "Database for user" msgstr "" -#: libraries/messages.inc.php:197 server_privileges.php:1999 +#: libraries/messages.inc.php:193 server_privileges.php:1999 msgid "Create database with same name and grant all privileges" msgstr "" -#: libraries/messages.inc.php:198 +#: libraries/messages.inc.php:194 msgctxt "$strCreateUserDatabaseNone" msgid "None" msgstr "" -#: libraries/messages.inc.php:199 server_privileges.php:2003 +#: libraries/messages.inc.php:195 server_privileges.php:2003 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: libraries/messages.inc.php:200 server_privileges.php:2000 +#: libraries/messages.inc.php:196 server_privileges.php:2000 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: libraries/messages.inc.php:201 +#: libraries/messages.inc.php:197 msgid "Creation/Update/Check dates" msgstr "" -#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:229 +#: libraries/messages.inc.php:199 libraries/mysql_charsets.lib.php:229 msgid "Croatian" msgstr "" -#: libraries/messages.inc.php:204 +#: libraries/messages.inc.php:200 msgid "CSV" msgstr "" -#: libraries/messages.inc.php:205 libraries/server_synchronize.lib.php:1343 +#: libraries/messages.inc.php:201 libraries/server_synchronize.lib.php:1343 #: libraries/server_synchronize.lib.php:1369 msgid "Current server" msgstr "" -#: libraries/messages.inc.php:206 main.php:159 +#: libraries/messages.inc.php:202 main.php:159 msgid "Custom color" msgstr "" -#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:365 +#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:365 msgid "Cyrillic" msgstr "" -#: libraries/messages.inc.php:208 libraries/mysql_charsets.lib.php:232 +#: libraries/messages.inc.php:204 libraries/mysql_charsets.lib.php:232 msgid "Czech" msgstr "" -#: libraries/messages.inc.php:209 libraries/mysql_charsets.lib.php:383 +#: libraries/messages.inc.php:205 libraries/mysql_charsets.lib.php:383 msgid "Czech-Slovak" msgstr "" -#: libraries/messages.inc.php:211 libraries/mysql_charsets.lib.php:235 +#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:235 msgid "Danish" msgstr "" -#: libraries/messages.inc.php:214 +#: libraries/messages.inc.php:210 msgid "Database export options" msgstr "" -#: libraries/messages.inc.php:217 server_synchronize.php:122 +#: libraries/messages.inc.php:213 server_synchronize.php:122 #: server_synchronize.php:125 tbl_create.php:82 tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "" -#: libraries/messages.inc.php:219 server_databases.php:63 +#: libraries/messages.inc.php:215 server_databases.php:63 #, php-format msgid "%s databases have been dropped successfully." msgstr "" -#: libraries/messages.inc.php:220 libraries/server_synchronize.lib.php:1341 +#: libraries/messages.inc.php:216 libraries/server_synchronize.lib.php:1341 #: server_synchronize.php:1110 msgid "Source database" msgstr "" -#: libraries/messages.inc.php:221 server_databases.php:88 +#: libraries/messages.inc.php:217 server_databases.php:88 msgid "Databases statistics" msgstr "" -#: libraries/messages.inc.php:222 server_databases.php:362 +#: libraries/messages.inc.php:218 server_databases.php:362 #: server_databases.php:363 msgid "Disable Statistics" msgstr "" -#: libraries/messages.inc.php:223 server_databases.php:358 +#: libraries/messages.inc.php:219 server_databases.php:358 #: server_databases.php:359 msgid "Enable Statistics" msgstr "" -#: libraries/messages.inc.php:224 server_databases.php:366 +#: libraries/messages.inc.php:220 server_databases.php:366 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." msgstr "" -#: libraries/messages.inc.php:225 libraries/server_synchronize.lib.php:1367 +#: libraries/messages.inc.php:221 libraries/server_synchronize.lib.php:1367 #: server_synchronize.php:1112 msgid "Target database" msgstr "" -#: libraries/messages.inc.php:228 server_synchronize.php:425 +#: libraries/messages.inc.php:224 server_synchronize.php:425 #: server_synchronize.php:868 msgid "Data Difference" msgstr "" -#: libraries/messages.inc.php:231 server_synchronize.php:272 +#: libraries/messages.inc.php:227 server_synchronize.php:272 msgid "Data Synchronization" msgstr "" -#: libraries/messages.inc.php:235 server_privileges.php:526 +#: libraries/messages.inc.php:231 server_privileges.php:526 #: server_privileges.php:1679 msgid "Database-specific privileges" msgstr "" -#: libraries/messages.inc.php:237 server_privileges.php:2136 +#: libraries/messages.inc.php:233 server_privileges.php:2136 msgid "database-specific" msgstr "" -#: libraries/messages.inc.php:240 libraries/tbl_properties.inc.php:106 +#: libraries/messages.inc.php:236 libraries/tbl_properties.inc.php:106 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" msgstr "" -#: libraries/messages.inc.php:241 tbl_operations.php:589 +#: libraries/messages.inc.php:237 tbl_operations.php:589 msgid "Defragment table" msgstr "" -#: libraries/messages.inc.php:242 +#: libraries/messages.inc.php:238 msgid "Use delayed inserts" msgstr "" -#: libraries/messages.inc.php:245 server_privileges.php:1243 +#: libraries/messages.inc.php:241 server_privileges.php:1243 msgid "No users selected for deleting!" msgstr "" -#: libraries/messages.inc.php:246 pmd_general.php:372 +#: libraries/messages.inc.php:242 pmd_general.php:372 msgid "Delete relation" msgstr "" -#: libraries/messages.inc.php:248 server_privileges.php:1232 +#: libraries/messages.inc.php:244 server_privileges.php:1232 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/messages.inc.php:249 libraries/sql_query_form.lib.php:388 +#: libraries/messages.inc.php:245 libraries/sql_query_form.lib.php:388 msgid "Delimiter" msgstr "" -#: libraries/messages.inc.php:250 pdf_pages.php:506 +#: libraries/messages.inc.php:246 pdf_pages.php:506 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" msgstr "" -#: libraries/messages.inc.php:254 pmd_help.php:29 +#: libraries/messages.inc.php:250 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." msgstr "" -#: libraries/messages.inc.php:256 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:252 libraries/mysql_charsets.lib.php:247 msgid "dictionary" msgstr "" -#: libraries/messages.inc.php:257 libraries/server_synchronize.lib.php:1348 +#: libraries/messages.inc.php:253 libraries/server_synchronize.lib.php:1348 msgid "Difference" msgstr "" -#: libraries/messages.inc.php:258 pmd_general.php:87 +#: libraries/messages.inc.php:254 pmd_general.php:87 msgid "Direct links" msgstr "" -#: libraries/messages.inc.php:261 +#: libraries/messages.inc.php:257 msgid "Disable foreign key checks" msgstr "" -#: libraries/messages.inc.php:262 +#: libraries/messages.inc.php:258 msgid "Display Features" msgstr "" -#: libraries/messages.inc.php:263 tbl_select.php:301 +#: libraries/messages.inc.php:259 tbl_select.php:301 msgid "Display order:" msgstr "" -#: libraries/messages.inc.php:265 tbl_select.php:132 +#: libraries/messages.inc.php:261 tbl_select.php:132 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "" -#: libraries/messages.inc.php:266 +#: libraries/messages.inc.php:262 msgid "DocSQL" msgstr "" -#: libraries/messages.inc.php:268 +#: libraries/messages.inc.php:264 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/messages.inc.php:273 server_privileges.php:1579 +#: libraries/messages.inc.php:269 server_privileges.php:1579 #: server_privileges.php:1580 server_privileges.php:1581 msgid "Drop the databases that have the same names as the users." msgstr "" -#: libraries/messages.inc.php:278 tbl_printview.php:382 tbl_structure.php:743 +#: libraries/messages.inc.php:274 tbl_printview.php:382 tbl_structure.php:743 msgid "dynamic" msgstr "" -#: libraries/messages.inc.php:282 server_privileges.php:1324 +#: libraries/messages.inc.php:278 server_privileges.php:1324 #: server_privileges.php:1610 msgid "Edit Privileges" msgstr "" -#: libraries/messages.inc.php:283 tbl_printview.php:341 tbl_structure.php:688 +#: libraries/messages.inc.php:279 tbl_printview.php:341 tbl_structure.php:688 msgid "Effective" msgstr "" -#: libraries/messages.inc.php:286 libraries/relation.lib.php:100 +#: libraries/messages.inc.php:282 libraries/relation.lib.php:100 msgid "Enabled" msgstr "" -#: libraries/messages.inc.php:287 +#: libraries/messages.inc.php:283 msgid "Enclose export in a transaction" msgstr "" -#: libraries/messages.inc.php:288 libraries/sqlparser.lib.php:177 +#: libraries/messages.inc.php:284 libraries/sqlparser.lib.php:177 msgid "END CUT" msgstr "" -#: libraries/messages.inc.php:290 libraries/sqlparser.lib.php:183 +#: libraries/messages.inc.php:286 libraries/sqlparser.lib.php:183 msgid "END RAW" msgstr "" -#: libraries/messages.inc.php:293 libraries/server_links.inc.php:61 +#: libraries/messages.inc.php:289 libraries/server_links.inc.php:61 #: test/theme.php:113 msgid "Engines" msgstr "" -#: libraries/messages.inc.php:295 libraries/mysql_charsets.lib.php:238 +#: libraries/messages.inc.php:291 libraries/mysql_charsets.lib.php:238 msgid "English" msgstr "" -#: libraries/messages.inc.php:296 server_privileges.php:393 +#: libraries/messages.inc.php:292 server_privileges.php:393 #: server_privileges.php:535 server_privileges.php:1501 msgid " Note: MySQL privilege names are expressed in English " msgstr "" -#: libraries/messages.inc.php:298 libraries/zip_extension.lib.php:49 +#: libraries/messages.inc.php:294 libraries/zip_extension.lib.php:49 #: libraries/zip_extension.lib.php:51 libraries/zip_extension.lib.php:66 msgid "Error in ZIP archive:" msgstr "" -#: libraries/messages.inc.php:303 libraries/mysql_charsets.lib.php:241 +#: libraries/messages.inc.php:299 libraries/mysql_charsets.lib.php:241 msgid "Esperanto" msgstr "" -#: libraries/messages.inc.php:304 libraries/mysql_charsets.lib.php:244 +#: libraries/messages.inc.php:300 libraries/mysql_charsets.lib.php:244 msgid "Estonian" msgstr "" -#: libraries/messages.inc.php:305 libraries/tbl_triggers.lib.php:29 +#: libraries/messages.inc.php:301 libraries/tbl_triggers.lib.php:29 msgid "Event" msgstr "" -#: libraries/messages.inc.php:307 +#: libraries/messages.inc.php:303 msgid "Excel edition" msgstr "" -#: libraries/messages.inc.php:311 pmd_pdf.php:85 +#: libraries/messages.inc.php:307 pmd_pdf.php:85 msgid "Export/Import to scale" msgstr "" -#: libraries/messages.inc.php:313 +#: libraries/messages.inc.php:309 msgid "Extended inserts" msgstr "" -#: libraries/messages.inc.php:314 pdf_schema.php:1267 pdf_schema.php:1288 +#: libraries/messages.inc.php:310 pdf_schema.php:1267 pdf_schema.php:1288 #: tbl_printview.php:147 tbl_structure.php:183 tbl_tracking.php:278 msgid "Extra" msgstr "" -#: libraries/messages.inc.php:316 server_status.php:447 +#: libraries/messages.inc.php:312 server_status.php:447 msgid "Failed attempts" msgstr "" -#: libraries/messages.inc.php:318 tbl_structure.php:375 +#: libraries/messages.inc.php:314 tbl_structure.php:375 #, php-format msgid "Field %s has been dropped" msgstr "" -#: libraries/messages.inc.php:322 libraries/sql_query_form.lib.php:317 +#: libraries/messages.inc.php:318 libraries/sql_query_form.lib.php:317 msgid "Fields" msgstr "" -#: libraries/messages.inc.php:332 server_binlog.php:136 +#: libraries/messages.inc.php:328 server_binlog.php:136 msgid "Files" msgstr "" -#: libraries/messages.inc.php:334 server_privileges.php:1597 +#: libraries/messages.inc.php:330 server_privileges.php:1597 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -3664,217 +3664,217 @@ msgid "" "sreload the privileges%s before you continue." msgstr "" -#: libraries/messages.inc.php:335 server_status.php:289 +#: libraries/messages.inc.php:331 server_status.php:289 msgid "Flush query cache" msgstr "" -#: libraries/messages.inc.php:336 +#: libraries/messages.inc.php:332 msgid "Flush the table (\"FLUSH\")" msgstr "" -#: libraries/messages.inc.php:337 server_status.php:271 +#: libraries/messages.inc.php:333 server_status.php:271 msgid "Flush (close) all tables" msgstr "" -#: libraries/messages.inc.php:339 tbl_relation.php:279 +#: libraries/messages.inc.php:335 tbl_relation.php:279 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" -#: libraries/messages.inc.php:341 setup/lib/messages.inc.php:88 +#: libraries/messages.inc.php:337 setup/lib/messages.inc.php:88 #: tbl_printview.php:376 tbl_structure.php:738 msgid "Format" msgstr "" -#: libraries/messages.inc.php:344 server_replication.php:325 +#: libraries/messages.inc.php:340 server_replication.php:325 msgid "Full start" msgstr "" -#: libraries/messages.inc.php:345 server_replication.php:325 +#: libraries/messages.inc.php:341 server_replication.php:325 msgid "Full stop" msgstr "" -#: libraries/messages.inc.php:347 tbl_change.php:282 tbl_change.php:320 +#: libraries/messages.inc.php:343 tbl_change.php:282 tbl_change.php:320 msgid "Function" msgstr "" -#: libraries/messages.inc.php:355 libraries/mysql_charsets.lib.php:377 +#: libraries/messages.inc.php:351 libraries/mysql_charsets.lib.php:377 msgid "Georgian" msgstr "" -#: libraries/messages.inc.php:356 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:352 libraries/mysql_charsets.lib.php:247 #: libraries/mysql_charsets.lib.php:250 msgid "German" msgstr "" -#: libraries/messages.inc.php:357 themes.php:42 +#: libraries/messages.inc.php:353 themes.php:42 msgid "Get more themes!" msgstr "" -#: libraries/messages.inc.php:358 server_privileges.php:2134 +#: libraries/messages.inc.php:354 server_privileges.php:2134 msgid "global" msgstr "" -#: libraries/messages.inc.php:359 server_privileges.php:524 +#: libraries/messages.inc.php:355 server_privileges.php:524 #: server_privileges.php:1500 msgid "Global privileges" msgstr "" -#: libraries/messages.inc.php:360 server_variables.php:55 +#: libraries/messages.inc.php:356 server_variables.php:55 #: server_variables.php:89 msgid "Global value" msgstr "" -#: libraries/messages.inc.php:365 server_privileges.php:1502 +#: libraries/messages.inc.php:361 server_privileges.php:1502 #: server_privileges.php:1684 server_privileges.php:2033 msgid "Grant" msgstr "" -#: libraries/messages.inc.php:366 libraries/mysql_charsets.lib.php:380 +#: libraries/messages.inc.php:362 libraries/mysql_charsets.lib.php:380 msgid "Greek" msgstr "" -#: libraries/messages.inc.php:367 +#: libraries/messages.inc.php:363 msgid "\"gzipped\"" msgstr "" -#: libraries/messages.inc.php:369 server_status.php:250 +#: libraries/messages.inc.php:365 server_status.php:250 msgid "Handler" msgstr "" -#: libraries/messages.inc.php:370 server_synchronize.php:464 +#: libraries/messages.inc.php:366 server_synchronize.php:464 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: libraries/messages.inc.php:372 libraries/mysql_charsets.lib.php:374 +#: libraries/messages.inc.php:368 libraries/mysql_charsets.lib.php:374 msgid "Hebrew" msgstr "" -#: libraries/messages.inc.php:373 pmd_general.php:83 +#: libraries/messages.inc.php:369 pmd_general.php:83 msgid "Help" msgstr "" -#: libraries/messages.inc.php:374 +#: libraries/messages.inc.php:370 msgid "Use hexadecimal for BLOB" msgstr "" -#: libraries/messages.inc.php:376 pmd_general.php:120 +#: libraries/messages.inc.php:372 pmd_general.php:120 msgid "Hide/Show all" msgstr "" -#: libraries/messages.inc.php:377 pmd_general.php:124 +#: libraries/messages.inc.php:373 pmd_general.php:124 msgid "Hide/Show Tables with no relation" msgstr "" -#: libraries/messages.inc.php:378 libraries/navigation_header.inc.php:54 +#: libraries/messages.inc.php:374 libraries/navigation_header.inc.php:54 #: libraries/navigation_header.inc.php:57 #: libraries/navigation_header.inc.php:58 msgid "Home" msgstr "" -#: libraries/messages.inc.php:379 main.php:233 +#: libraries/messages.inc.php:375 main.php:233 msgid "Official Homepage" msgstr "" -#: libraries/messages.inc.php:382 libraries/replication_gui.lib.php:327 +#: libraries/messages.inc.php:378 libraries/replication_gui.lib.php:327 #: server_privileges.php:753 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/messages.inc.php:383 +#: libraries/messages.inc.php:379 msgid "Microsoft Word 2000" msgstr "" -#: libraries/messages.inc.php:384 libraries/mysql_charsets.lib.php:253 +#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:253 msgid "Hungarian" msgstr "" -#: libraries/messages.inc.php:386 libraries/mysql_charsets.lib.php:256 +#: libraries/messages.inc.php:382 libraries/mysql_charsets.lib.php:256 msgid "Icelandic" msgstr "" -#: libraries/messages.inc.php:387 server_processlist.php:53 +#: libraries/messages.inc.php:383 server_processlist.php:53 msgid "ID" msgstr "" -#: libraries/messages.inc.php:388 libraries/mult_submits.inc.php:108 +#: libraries/messages.inc.php:384 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:479 msgid "Fulltext" msgstr "" -#: libraries/messages.inc.php:389 +#: libraries/messages.inc.php:385 msgid "Ignore duplicate rows" msgstr "" -#: libraries/messages.inc.php:390 tbl_change.php:302 tbl_indexes.php:200 +#: libraries/messages.inc.php:386 tbl_change.php:302 tbl_indexes.php:200 #: tbl_indexes.php:225 msgid "Ignore" msgstr "" -#: libraries/messages.inc.php:391 +#: libraries/messages.inc.php:387 msgid "Use ignore inserts" msgstr "" -#: libraries/messages.inc.php:392 +#: libraries/messages.inc.php:388 msgid "Column names in first row" msgstr "" -#: libraries/messages.inc.php:393 +#: libraries/messages.inc.php:389 msgid "Do not import empty rows" msgstr "" -#: libraries/messages.inc.php:394 pmd_general.php:104 +#: libraries/messages.inc.php:390 pmd_general.php:104 msgid "Import/Export coordinates for PDF schema" msgstr "" -#: libraries/messages.inc.php:395 querywindow.php:104 +#: libraries/messages.inc.php:391 querywindow.php:104 msgid "Import files" msgstr "" -#: libraries/messages.inc.php:403 +#: libraries/messages.inc.php:399 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/messages.inc.php:404 libraries/messages.inc.php:584 +#: libraries/messages.inc.php:400 libraries/messages.inc.php:580 msgid "Open Document Spreadsheet" msgstr "" -#: libraries/messages.inc.php:405 +#: libraries/messages.inc.php:401 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/messages.inc.php:409 +#: libraries/messages.inc.php:405 msgid "Excel 97-2003 XLS Workbook" msgstr "" -#: libraries/messages.inc.php:410 +#: libraries/messages.inc.php:406 msgid "Excel 2007 XLSX Workbook" msgstr "" -#: libraries/messages.inc.php:414 libraries/mult_submits.inc.php:98 +#: libraries/messages.inc.php:410 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:476 tbl_structure.php:674 msgid "Index" msgstr "" -#: libraries/messages.inc.php:415 tbl_indexes.php:168 +#: libraries/messages.inc.php:411 tbl_indexes.php:168 msgid "Index name:" msgstr "" -#: libraries/messages.inc.php:416 tbl_indexes.php:174 +#: libraries/messages.inc.php:412 tbl_indexes.php:174 msgid "Index type:" msgstr "" -#: libraries/messages.inc.php:417 sql.php:639 +#: libraries/messages.inc.php:413 sql.php:639 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: libraries/messages.inc.php:427 main.php:266 +#: libraries/messages.inc.php:423 main.php:266 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -3882,194 +3882,194 @@ msgid "" "this security hole by setting a password for user 'root'." msgstr "" -#: libraries/messages.inc.php:428 tbl_change.php:1130 +#: libraries/messages.inc.php:424 tbl_change.php:1130 msgid "Insert as new row" msgstr "" -#: libraries/messages.inc.php:429 sql.php:496 tbl_replace.php:386 +#: libraries/messages.inc.php:425 sql.php:496 tbl_replace.php:386 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: libraries/messages.inc.php:430 tbl_change.php:1131 +#: libraries/messages.inc.php:426 tbl_change.php:1131 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/messages.inc.php:432 main.php:139 +#: libraries/messages.inc.php:428 main.php:139 msgid "Interface" msgstr "" -#: libraries/messages.inc.php:433 tbl_relation.php:407 +#: libraries/messages.inc.php:429 tbl_relation.php:407 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: libraries/messages.inc.php:435 pdf_pages.php:303 +#: libraries/messages.inc.php:431 pdf_pages.php:303 msgid "Internal relations" msgstr "" -#: libraries/messages.inc.php:438 tbl_indexes.php:256 tbl_structure.php:590 +#: libraries/messages.inc.php:434 tbl_indexes.php:256 tbl_structure.php:590 #: tbl_structure.php:601 msgid "Column count has to be larger than zero." msgstr "" -#: libraries/messages.inc.php:444 libraries/tbl_properties.inc.php:784 +#: libraries/messages.inc.php:440 libraries/tbl_properties.inc.php:784 #: tbl_structure.php:537 msgid "You have to add at least one field." msgstr "" -#: libraries/messages.inc.php:449 +#: libraries/messages.inc.php:445 #, php-format msgid "Invalid server index: \"%s\"" msgstr "" -#: libraries/messages.inc.php:452 libraries/mysql_charsets.lib.php:259 +#: libraries/messages.inc.php:448 libraries/mysql_charsets.lib.php:259 #: libraries/mysql_charsets.lib.php:349 msgid "Japanese" msgstr "" -#: libraries/messages.inc.php:453 main.php:331 +#: libraries/messages.inc.php:449 main.php:331 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: libraries/messages.inc.php:454 server_status.php:257 +#: libraries/messages.inc.php:450 server_status.php:257 msgid "Joins" msgstr "" -#: libraries/messages.inc.php:457 server_privileges.php:763 +#: libraries/messages.inc.php:453 server_privileges.php:763 msgid "Do not change the password" msgstr "" -#: libraries/messages.inc.php:458 server_status.php:256 +#: libraries/messages.inc.php:454 server_status.php:256 msgid "Key cache" msgstr "" -#: libraries/messages.inc.php:462 libraries/mysql_charsets.lib.php:268 +#: libraries/messages.inc.php:458 libraries/mysql_charsets.lib.php:268 #: libraries/mysql_charsets.lib.php:371 msgid "Korean" msgstr "" -#: libraries/messages.inc.php:466 libraries/select_lang.lib.php:480 +#: libraries/messages.inc.php:462 libraries/select_lang.lib.php:480 #: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492 #, php-format msgid "Unknown language: %1$s." msgstr "" -#: libraries/messages.inc.php:468 +#: libraries/messages.inc.php:464 msgid "Table caption" msgstr "" -#: libraries/messages.inc.php:469 +#: libraries/messages.inc.php:465 msgid "Content of table __TABLE__" msgstr "" -#: libraries/messages.inc.php:470 +#: libraries/messages.inc.php:466 msgid "Continued table caption" msgstr "" -#: libraries/messages.inc.php:471 +#: libraries/messages.inc.php:467 msgid "(continued)" msgstr "" -#: libraries/messages.inc.php:472 +#: libraries/messages.inc.php:468 msgid "Include table caption" msgstr "" -#: libraries/messages.inc.php:473 +#: libraries/messages.inc.php:469 msgid "Label key" msgstr "" -#: libraries/messages.inc.php:474 +#: libraries/messages.inc.php:470 msgid "LaTeX" msgstr "" -#: libraries/messages.inc.php:475 +#: libraries/messages.inc.php:471 msgid "Structure of table __TABLE__" msgstr "" -#: libraries/messages.inc.php:476 libraries/mysql_charsets.lib.php:262 +#: libraries/messages.inc.php:472 libraries/mysql_charsets.lib.php:262 msgid "Latvian" msgstr "" -#: libraries/messages.inc.php:477 +#: libraries/messages.inc.php:473 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/messages.inc.php:478 +#: libraries/messages.inc.php:474 msgid "Use LOCAL keyword" msgstr "" -#: libraries/messages.inc.php:479 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:475 libraries/tbl_properties.inc.php:105 msgid "Length/Values" msgstr "" -#: libraries/messages.inc.php:480 tbl_select.php:295 +#: libraries/messages.inc.php:476 tbl_select.php:295 msgid "Number of rows per page" msgstr "" -#: libraries/messages.inc.php:484 libraries/mysql_charsets.lib.php:265 +#: libraries/messages.inc.php:480 libraries/mysql_charsets.lib.php:265 msgid "Lithuanian" msgstr "" -#: libraries/messages.inc.php:485 libraries/replication_gui.lib.php:302 +#: libraries/messages.inc.php:481 libraries/replication_gui.lib.php:302 #: server_privileges.php:729 msgid "Local" msgstr "" -#: libraries/messages.inc.php:487 server_privileges.php:669 +#: libraries/messages.inc.php:483 server_privileges.php:669 msgid "Login Information" msgstr "" -#: libraries/messages.inc.php:490 libraries/navigation_header.inc.php:67 +#: libraries/messages.inc.php:486 libraries/navigation_header.inc.php:67 #: libraries/navigation_header.inc.php:70 #: libraries/navigation_header.inc.php:71 main.php:99 msgid "Log out" msgstr "" -#: libraries/messages.inc.php:497 server_status.php:440 +#: libraries/messages.inc.php:493 server_status.php:440 msgid "max. concurrent connections" msgstr "" -#: libraries/messages.inc.php:498 +#: libraries/messages.inc.php:494 msgid "Maximal length of created query" msgstr "" -#: libraries/messages.inc.php:500 main.php:282 +#: libraries/messages.inc.php:496 main.php:282 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " "split strings correctly and it may result in unexpected results." msgstr "" -#: libraries/messages.inc.php:501 main.php:274 +#: libraries/messages.inc.php:497 main.php:274 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " "corrupted!" msgstr "" -#: libraries/messages.inc.php:502 +#: libraries/messages.inc.php:498 msgid "MediaWiki Table" msgstr "" -#: libraries/messages.inc.php:503 transformation_overview.php:25 +#: libraries/messages.inc.php:499 transformation_overview.php:25 msgid "Available MIME types" msgstr "" -#: libraries/messages.inc.php:504 transformation_overview.php:43 +#: libraries/messages.inc.php:500 transformation_overview.php:43 msgid "Available transformations" msgstr "" -#: libraries/messages.inc.php:505 +#: libraries/messages.inc.php:501 msgctxt "$strMIME_description" msgid "Description" msgstr "" -#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:580 +#: libraries/messages.inc.php:503 libraries/tbl_properties.inc.php:580 #: transformation_overview.php:60 #, php-format msgid "" @@ -4077,14 +4077,14 @@ msgid "" "author what %s does." msgstr "" -#: libraries/messages.inc.php:509 libraries/tbl_properties.inc.php:137 +#: libraries/messages.inc.php:505 libraries/tbl_properties.inc.php:137 #, php-format msgid "" "For a list of available transformation options and their MIME type " "transformations, click on %stransformation descriptions%s" msgstr "" -#: libraries/messages.inc.php:510 libraries/tbl_properties.inc.php:146 +#: libraries/messages.inc.php:506 libraries/tbl_properties.inc.php:146 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -4092,455 +4092,455 @@ msgid "" "'\\\\xyz' or 'a\\'b')." msgstr "" -#: libraries/messages.inc.php:511 libraries/tbl_properties.inc.php:145 +#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:145 msgid "Transformation options" msgstr "" -#: libraries/messages.inc.php:513 transformation_overview.php:38 +#: libraries/messages.inc.php:509 transformation_overview.php:38 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "" -#: libraries/messages.inc.php:515 tbl_indexes.php:162 +#: libraries/messages.inc.php:511 tbl_indexes.php:162 msgid "Modify an index" msgstr "" -#: libraries/messages.inc.php:517 pmd_general.php:108 +#: libraries/messages.inc.php:513 pmd_general.php:108 msgid "Move Menu" msgstr "" -#: libraries/messages.inc.php:518 tbl_operations.php:276 +#: libraries/messages.inc.php:514 tbl_operations.php:276 msgid "Move table to (database.table):" msgstr "" -#: libraries/messages.inc.php:519 tbl_move_copy.php:56 +#: libraries/messages.inc.php:515 tbl_move_copy.php:56 #, php-format msgid "Table %s has been moved to %s." msgstr "" -#: libraries/messages.inc.php:520 tbl_move_copy.php:46 +#: libraries/messages.inc.php:516 tbl_move_copy.php:46 msgid "Can't move table to same one!" msgstr "" -#: libraries/messages.inc.php:521 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:517 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 #: libraries/mysql_charsets.lib.php:332 libraries/mysql_charsets.lib.php:354 #: libraries/mysql_charsets.lib.php:365 msgid "multilingual" msgstr "" -#: libraries/messages.inc.php:534 main.php:193 +#: libraries/messages.inc.php:530 main.php:193 msgid "MySQL charset" msgstr "" -#: libraries/messages.inc.php:535 main.php:211 +#: libraries/messages.inc.php:531 main.php:211 msgid "MySQL client version" msgstr "" -#: libraries/messages.inc.php:536 main.php:125 +#: libraries/messages.inc.php:532 main.php:125 msgid "MySQL connection collation" msgstr "" -#: libraries/messages.inc.php:537 main.php:346 +#: libraries/messages.inc.php:533 main.php:346 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: libraries/messages.inc.php:539 server_status.php:294 +#: libraries/messages.inc.php:535 server_status.php:294 msgid "Show processes" msgstr "" -#: libraries/messages.inc.php:545 navigation.php:210 server_databases.php:371 +#: libraries/messages.inc.php:541 navigation.php:210 server_databases.php:371 #: server_synchronize.php:1191 msgid "No databases" msgstr "" -#: libraries/messages.inc.php:546 server_databases.php:52 +#: libraries/messages.inc.php:542 server_databases.php:52 msgid "No databases selected." msgstr "" -#: libraries/messages.inc.php:548 libraries/relation.lib.php:1173 +#: libraries/messages.inc.php:544 libraries/relation.lib.php:1173 msgid "no description" msgstr "" -#: libraries/messages.inc.php:552 libraries/zip_extension.lib.php:26 +#: libraries/messages.inc.php:548 libraries/zip_extension.lib.php:26 msgid "No files found inside ZIP archive!" msgstr "" -#: libraries/messages.inc.php:555 tbl_indexes.php:91 +#: libraries/messages.inc.php:551 tbl_indexes.php:91 msgid "No index parts defined!" msgstr "" -#: libraries/messages.inc.php:556 libraries/mult_submits.inc.php:435 +#: libraries/messages.inc.php:552 libraries/mult_submits.inc.php:435 #: tbl_replace.php:331 msgid "No change" msgstr "" -#: libraries/messages.inc.php:557 +#: libraries/messages.inc.php:553 msgctxt "$strNoneDefault" msgid "None" msgstr "" -#: libraries/messages.inc.php:560 libraries/plugin_interface.lib.php:312 +#: libraries/messages.inc.php:556 libraries/plugin_interface.lib.php:312 msgid "This format has no options" msgstr "" -#: libraries/messages.inc.php:565 user_password.php:54 +#: libraries/messages.inc.php:561 user_password.php:54 msgid "You don't have sufficient privileges to be here right now!" msgstr "" -#: libraries/messages.inc.php:566 tbl_row_action.php:29 +#: libraries/messages.inc.php:562 tbl_row_action.php:29 msgid "No rows selected" msgstr "" -#: libraries/messages.inc.php:569 themes.php:32 +#: libraries/messages.inc.php:565 themes.php:32 #, php-format msgid "" "No themes support; please check your configuration and/or your themes in " "directory %s." msgstr "" -#: libraries/messages.inc.php:571 libraries/relation.lib.php:95 +#: libraries/messages.inc.php:567 libraries/relation.lib.php:95 msgid "not OK" msgstr "" -#: libraries/messages.inc.php:572 server_synchronize.php:400 +#: libraries/messages.inc.php:568 server_synchronize.php:400 #: server_synchronize.php:839 msgid "not present" msgstr "" -#: libraries/messages.inc.php:573 pdf_pages.php:36 pdf_pages.php:42 +#: libraries/messages.inc.php:569 pdf_pages.php:36 pdf_pages.php:42 #: pdf_pages.php:48 pdf_pages.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "" -#: libraries/messages.inc.php:574 server_privileges.php:804 +#: libraries/messages.inc.php:570 server_privileges.php:804 #: server_privileges.php:2166 msgid "No user(s) found." msgstr "" -#: libraries/messages.inc.php:578 pmd_general.php:164 +#: libraries/messages.inc.php:574 pmd_general.php:164 msgid "Number of tables" msgstr "" -#: libraries/messages.inc.php:581 server_databases.php:117 +#: libraries/messages.inc.php:577 server_databases.php:117 #: server_status.php:260 setup/lib/messages.inc.php:117 msgid "Tables" msgstr "" -#: libraries/messages.inc.php:583 libraries/relation.lib.php:99 +#: libraries/messages.inc.php:579 libraries/relation.lib.php:99 #: pmd_general.php:340 msgid "OK" msgstr "" -#: libraries/messages.inc.php:585 +#: libraries/messages.inc.php:581 msgid "Open Document Text" msgstr "" -#: libraries/messages.inc.php:588 tbl_select.php:138 +#: libraries/messages.inc.php:584 tbl_select.php:138 msgid "Operator" msgstr "" -#: libraries/messages.inc.php:589 tbl_operations.php:662 +#: libraries/messages.inc.php:585 tbl_operations.php:662 msgid "Optimize" msgstr "" -#: libraries/messages.inc.php:602 libraries/tbl_properties.inc.php:755 +#: libraries/messages.inc.php:598 libraries/tbl_properties.inc.php:755 msgid "PARTITION definition" msgstr "" -#: libraries/messages.inc.php:603 tbl_structure.php:757 +#: libraries/messages.inc.php:599 tbl_structure.php:757 msgid "partitioned" msgstr "" -#: libraries/messages.inc.php:604 tbl_operations.php:649 +#: libraries/messages.inc.php:600 tbl_operations.php:649 msgid "Partition maintenance" msgstr "" -#: libraries/messages.inc.php:605 tbl_operations.php:657 +#: libraries/messages.inc.php:601 tbl_operations.php:657 #, php-format msgid "Partition %s" msgstr "" -#: libraries/messages.inc.php:606 server_privileges.php:1212 +#: libraries/messages.inc.php:602 server_privileges.php:1212 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/messages.inc.php:635 +#: libraries/messages.inc.php:631 #, php-format msgid "Schema of the \"%s\" database - Page %s" msgstr "" -#: libraries/messages.inc.php:636 +#: libraries/messages.inc.php:632 #, php-format msgid "The \"%s\" table doesn't exist!" msgstr "" -#: libraries/messages.inc.php:637 pdf_schema.php:1013 +#: libraries/messages.inc.php:633 pdf_schema.php:1013 msgid "No tables" msgstr "" -#: libraries/messages.inc.php:638 pmd_pdf.php:63 +#: libraries/messages.inc.php:634 pmd_pdf.php:63 msgid "Page has been created" msgstr "" -#: libraries/messages.inc.php:639 pmd_pdf.php:65 +#: libraries/messages.inc.php:635 pmd_pdf.php:65 msgid "Page creation failed" msgstr "" -#: libraries/messages.inc.php:640 +#: libraries/messages.inc.php:636 msgid "PDF" msgstr "" -#: libraries/messages.inc.php:641 +#: libraries/messages.inc.php:637 msgid "(Generates a report containing the data of a single table)" msgstr "" -#: libraries/messages.inc.php:642 +#: libraries/messages.inc.php:638 msgid "Report title" msgstr "" -#: libraries/messages.inc.php:643 server_status.php:389 server_status.php:434 +#: libraries/messages.inc.php:639 server_status.php:389 server_status.php:434 #: server_status.php:497 server_status.php:555 msgid "per hour" msgstr "" -#: libraries/messages.inc.php:644 server_status.php:498 +#: libraries/messages.inc.php:640 server_status.php:498 msgid "per minute" msgstr "" -#: libraries/messages.inc.php:645 server_status.php:499 +#: libraries/messages.inc.php:641 server_status.php:499 msgid "per second" msgstr "" -#: libraries/messages.inc.php:646 libraries/mysql_charsets.lib.php:271 +#: libraries/messages.inc.php:642 libraries/mysql_charsets.lib.php:271 msgid "Persian" msgstr "" -#: libraries/messages.inc.php:647 libraries/mysql_charsets.lib.php:250 +#: libraries/messages.inc.php:643 libraries/mysql_charsets.lib.php:250 msgid "phone book" msgstr "" -#: libraries/messages.inc.php:648 +#: libraries/messages.inc.php:644 msgid "PHP array" msgstr "" -#: libraries/messages.inc.php:650 main.php:213 +#: libraries/messages.inc.php:646 main.php:213 msgid "PHP extension" msgstr "" -#: libraries/messages.inc.php:654 libraries/relation.lib.php:163 +#: libraries/messages.inc.php:650 libraries/relation.lib.php:163 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/messages.inc.php:655 libraries/relation.lib.php:159 +#: libraries/messages.inc.php:651 libraries/relation.lib.php:159 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/messages.inc.php:656 libraries/relation.lib.php:161 +#: libraries/messages.inc.php:652 libraries/relation.lib.php:161 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" -#: libraries/messages.inc.php:657 libraries/relation.lib.php:162 +#: libraries/messages.inc.php:653 libraries/relation.lib.php:162 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/messages.inc.php:658 libraries/relation.lib.php:164 +#: libraries/messages.inc.php:654 libraries/relation.lib.php:164 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/messages.inc.php:661 libraries/mysql_charsets.lib.php:274 +#: libraries/messages.inc.php:657 libraries/mysql_charsets.lib.php:274 msgid "Polish" msgstr "" -#: libraries/messages.inc.php:662 libraries/replication_gui.lib.php:67 +#: libraries/messages.inc.php:658 libraries/replication_gui.lib.php:67 #: server_synchronize.php:1163 msgid "Port" msgstr "" -#: libraries/messages.inc.php:667 tbl_indexes.php:67 +#: libraries/messages.inc.php:663 tbl_indexes.php:67 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "" -#: libraries/messages.inc.php:668 tbl_indexes.php:184 +#: libraries/messages.inc.php:664 tbl_indexes.php:184 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" -#: libraries/messages.inc.php:669 libraries/mult_submits.inc.php:76 +#: libraries/messages.inc.php:665 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:474 msgid "Primary" msgstr "" -#: libraries/messages.inc.php:673 server_privileges.php:227 +#: libraries/messages.inc.php:669 server_privileges.php:227 msgid "Includes all privileges except GRANT." msgstr "" -#: libraries/messages.inc.php:674 server_privileges.php:153 +#: libraries/messages.inc.php:670 server_privileges.php:153 #: server_privileges.php:476 msgid "Allows altering the structure of existing tables." msgstr "" -#: libraries/messages.inc.php:675 server_privileges.php:169 +#: libraries/messages.inc.php:671 server_privileges.php:169 #: server_privileges.php:482 msgid "Allows altering and dropping stored routines." msgstr "" -#: libraries/messages.inc.php:676 server_privileges.php:145 +#: libraries/messages.inc.php:672 server_privileges.php:145 #: server_privileges.php:475 msgid "Allows creating new databases and tables." msgstr "" -#: libraries/messages.inc.php:677 server_privileges.php:168 +#: libraries/messages.inc.php:673 server_privileges.php:168 #: server_privileges.php:481 msgid "Allows creating stored routines." msgstr "" -#: libraries/messages.inc.php:678 server_privileges.php:475 +#: libraries/messages.inc.php:674 server_privileges.php:475 msgid "Allows creating new tables." msgstr "" -#: libraries/messages.inc.php:679 server_privileges.php:156 +#: libraries/messages.inc.php:675 server_privileges.php:156 #: server_privileges.php:479 msgid "Allows creating temporary tables." msgstr "" -#: libraries/messages.inc.php:680 server_privileges.php:170 +#: libraries/messages.inc.php:676 server_privileges.php:170 #: server_privileges.php:515 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: libraries/messages.inc.php:681 server_privileges.php:160 +#: libraries/messages.inc.php:677 server_privileges.php:160 #: server_privileges.php:164 server_privileges.php:487 #: server_privileges.php:491 msgid "Allows creating new views." msgstr "" -#: libraries/messages.inc.php:682 server_privileges.php:144 +#: libraries/messages.inc.php:678 server_privileges.php:144 #: server_privileges.php:467 msgid "Allows deleting data." msgstr "" -#: libraries/messages.inc.php:683 server_privileges.php:146 +#: libraries/messages.inc.php:679 server_privileges.php:146 #: server_privileges.php:478 msgid "Allows dropping databases and tables." msgstr "" -#: libraries/messages.inc.php:684 server_privileges.php:478 +#: libraries/messages.inc.php:680 server_privileges.php:478 msgid "Allows dropping tables." msgstr "" -#: libraries/messages.inc.php:685 server_privileges.php:161 +#: libraries/messages.inc.php:681 server_privileges.php:161 #: server_privileges.php:495 msgid "Allows to set up events for the event scheduler" msgstr "" -#: libraries/messages.inc.php:686 server_privileges.php:171 +#: libraries/messages.inc.php:682 server_privileges.php:171 #: server_privileges.php:483 msgid "Allows executing stored routines." msgstr "" -#: libraries/messages.inc.php:687 server_privileges.php:150 +#: libraries/messages.inc.php:683 server_privileges.php:150 #: server_privileges.php:470 msgid "Allows importing data from and exporting data into files." msgstr "" -#: libraries/messages.inc.php:688 server_privileges.php:501 +#: libraries/messages.inc.php:684 server_privileges.php:501 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: libraries/messages.inc.php:689 server_privileges.php:152 +#: libraries/messages.inc.php:685 server_privileges.php:152 #: server_privileges.php:477 msgid "Allows creating and dropping indexes." msgstr "" -#: libraries/messages.inc.php:690 server_privileges.php:142 +#: libraries/messages.inc.php:686 server_privileges.php:142 #: server_privileges.php:403 server_privileges.php:465 msgid "Allows inserting and replacing data." msgstr "" -#: libraries/messages.inc.php:691 server_privileges.php:157 +#: libraries/messages.inc.php:687 server_privileges.php:157 #: server_privileges.php:510 msgid "Allows locking tables for the current thread." msgstr "" -#: libraries/messages.inc.php:692 server_privileges.php:607 +#: libraries/messages.inc.php:688 server_privileges.php:607 #: server_privileges.php:609 msgid "Limits the number of new connections the user may open per hour." msgstr "" -#: libraries/messages.inc.php:693 server_privileges.php:595 +#: libraries/messages.inc.php:689 server_privileges.php:595 #: server_privileges.php:597 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" -#: libraries/messages.inc.php:694 server_privileges.php:601 +#: libraries/messages.inc.php:690 server_privileges.php:601 #: server_privileges.php:603 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" -#: libraries/messages.inc.php:695 server_privileges.php:613 +#: libraries/messages.inc.php:691 server_privileges.php:613 #: server_privileges.php:615 msgid "Limits the number of simultaneous connections the user may have." msgstr "" -#: libraries/messages.inc.php:696 server_privileges.php:149 +#: libraries/messages.inc.php:692 server_privileges.php:149 #: server_privileges.php:505 msgid "Allows viewing processes of all users" msgstr "" -#: libraries/messages.inc.php:697 server_privileges.php:151 +#: libraries/messages.inc.php:693 server_privileges.php:151 #: server_privileges.php:409 server_privileges.php:511 msgid "Has no effect in this MySQL version." msgstr "" -#: libraries/messages.inc.php:698 server_privileges.php:147 +#: libraries/messages.inc.php:694 server_privileges.php:147 #: server_privileges.php:506 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: libraries/messages.inc.php:699 server_privileges.php:159 +#: libraries/messages.inc.php:695 server_privileges.php:159 #: server_privileges.php:513 msgid "Allows the user to ask where the slaves / masters are." msgstr "" -#: libraries/messages.inc.php:700 server_privileges.php:158 +#: libraries/messages.inc.php:696 server_privileges.php:158 #: server_privileges.php:514 msgid "Needed for the replication slaves." msgstr "" -#: libraries/messages.inc.php:701 server_privileges.php:141 +#: libraries/messages.inc.php:697 server_privileges.php:141 #: server_privileges.php:400 server_privileges.php:464 msgid "Allows reading data." msgstr "" -#: libraries/messages.inc.php:702 server_privileges.php:154 +#: libraries/messages.inc.php:698 server_privileges.php:154 #: server_privileges.php:508 msgid "Gives access to the complete list of databases." msgstr "" -#: libraries/messages.inc.php:703 server_privileges.php:165 +#: libraries/messages.inc.php:699 server_privileges.php:165 #: server_privileges.php:167 server_privileges.php:480 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: libraries/messages.inc.php:704 server_privileges.php:148 +#: libraries/messages.inc.php:700 server_privileges.php:148 #: server_privileges.php:507 msgid "Allows shutting down the server." msgstr "" -#: libraries/messages.inc.php:705 server_privileges.php:155 +#: libraries/messages.inc.php:701 server_privileges.php:155 #: server_privileges.php:504 msgid "" "Allows connecting, even if maximum number of connections is reached; " @@ -4548,190 +4548,190 @@ msgid "" "killing threads of other users." msgstr "" -#: libraries/messages.inc.php:706 server_privileges.php:162 +#: libraries/messages.inc.php:702 server_privileges.php:162 #: server_privileges.php:496 msgid "Allows creating and dropping triggers" msgstr "" -#: libraries/messages.inc.php:707 server_privileges.php:143 +#: libraries/messages.inc.php:703 server_privileges.php:143 #: server_privileges.php:406 server_privileges.php:466 msgid "Allows changing data." msgstr "" -#: libraries/messages.inc.php:708 server_privileges.php:221 +#: libraries/messages.inc.php:704 server_privileges.php:221 msgid "No privileges." msgstr "" -#: libraries/messages.inc.php:710 server_privileges.php:1296 +#: libraries/messages.inc.php:706 server_privileges.php:1296 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/messages.inc.php:712 libraries/server_links.inc.php:80 +#: libraries/messages.inc.php:708 libraries/server_links.inc.php:80 msgid "Processes" msgstr "" -#: libraries/messages.inc.php:714 main.php:187 +#: libraries/messages.inc.php:710 main.php:187 msgid "Protocol version" msgstr "" -#: libraries/messages.inc.php:715 +#: libraries/messages.inc.php:711 msgid "Put fields names in the first row" msgstr "" -#: libraries/messages.inc.php:720 server_synchronize.php:1003 +#: libraries/messages.inc.php:716 server_synchronize.php:1003 msgid "The following queries have been executed:" msgstr "" -#: libraries/messages.inc.php:721 server_status.php:251 +#: libraries/messages.inc.php:717 server_status.php:251 msgid "Query cache" msgstr "" -#: libraries/messages.inc.php:722 libraries/navigation_header.inc.php:80 +#: libraries/messages.inc.php:718 libraries/navigation_header.inc.php:80 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 setup/lib/messages.inc.php:122 msgid "Query window" msgstr "" -#: libraries/messages.inc.php:725 querywindow.php:109 querywindow.php:217 +#: libraries/messages.inc.php:721 querywindow.php:109 querywindow.php:217 msgid "SQL history" msgstr "" -#: libraries/messages.inc.php:726 server_status.php:490 +#: libraries/messages.inc.php:722 server_status.php:490 #, php-format msgid "" "Query statistics: Since its startup, %s queries have been sent to the " "server." msgstr "" -#: libraries/messages.inc.php:728 server_status.php:554 +#: libraries/messages.inc.php:724 server_status.php:554 msgid "Query type" msgstr "" -#: libraries/messages.inc.php:729 libraries/sql_query_form.lib.php:381 +#: libraries/messages.inc.php:725 libraries/sql_query_form.lib.php:381 msgid "Do not overwrite this query from outside the window" msgstr "" -#: libraries/messages.inc.php:732 tbl_operations.php:663 +#: libraries/messages.inc.php:728 tbl_operations.php:663 msgid "Rebuild" msgstr "" -#: libraries/messages.inc.php:733 server_status.php:394 +#: libraries/messages.inc.php:729 server_status.php:394 msgid "Received" msgstr "" -#: libraries/messages.inc.php:734 pmd_pdf.php:89 +#: libraries/messages.inc.php:730 pmd_pdf.php:89 msgid "recommended" msgstr "" -#: libraries/messages.inc.php:736 tbl_operations.php:702 +#: libraries/messages.inc.php:732 tbl_operations.php:702 msgid "Check referential integrity:" msgstr "" -#: libraries/messages.inc.php:740 pdf_schema.php:1032 pdf_schema.php:1141 +#: libraries/messages.inc.php:736 pdf_schema.php:1032 pdf_schema.php:1141 msgid "Relational schema" msgstr "" -#: libraries/messages.inc.php:744 tbl_relation.php:399 +#: libraries/messages.inc.php:740 tbl_relation.php:399 msgid "Relations" msgstr "" -#: libraries/messages.inc.php:745 tbl_structure.php:507 tbl_structure.php:509 +#: libraries/messages.inc.php:741 tbl_structure.php:507 tbl_structure.php:509 msgid "Relation view" msgstr "" -#: libraries/messages.inc.php:746 server_privileges.php:1246 +#: libraries/messages.inc.php:742 server_privileges.php:1246 msgid "Reloading the privileges" msgstr "" -#: libraries/messages.inc.php:747 navigation.php:66 navigation.php:67 +#: libraries/messages.inc.php:743 navigation.php:66 navigation.php:67 #: navigation.php:70 msgid "Reload navigation frame" msgstr "" -#: libraries/messages.inc.php:748 pmd_general.php:80 +#: libraries/messages.inc.php:744 pmd_general.php:80 msgid "Reload" msgstr "" -#: libraries/messages.inc.php:749 libraries/server_synchronize.lib.php:1345 +#: libraries/messages.inc.php:745 libraries/server_synchronize.lib.php:1345 #: libraries/server_synchronize.lib.php:1371 msgid "Remote server" msgstr "" -#: libraries/messages.inc.php:750 +#: libraries/messages.inc.php:746 msgid "Remove CRLF characters within fields" msgstr "" -#: libraries/messages.inc.php:751 tbl_operations.php:676 +#: libraries/messages.inc.php:747 tbl_operations.php:676 msgid "Remove partitioning" msgstr "" -#: libraries/messages.inc.php:752 server_privileges.php:1575 +#: libraries/messages.inc.php:748 server_privileges.php:1575 msgid "Remove selected users" msgstr "" -#: libraries/messages.inc.php:755 tbl_operations.php:338 +#: libraries/messages.inc.php:751 tbl_operations.php:338 msgid "Rename table to" msgstr "" -#: libraries/messages.inc.php:756 view_operations.php:93 +#: libraries/messages.inc.php:752 view_operations.php:93 msgid "Rename view to" msgstr "" -#: libraries/messages.inc.php:757 tbl_operations.php:664 +#: libraries/messages.inc.php:753 tbl_operations.php:664 msgid "Repair" msgstr "" -#: libraries/messages.inc.php:759 +#: libraries/messages.inc.php:755 msgid "Replace NULL by" msgstr "" -#: libraries/messages.inc.php:760 +#: libraries/messages.inc.php:756 msgid "Replace table data with file" msgstr "" -#: libraries/messages.inc.php:761 server_replication.php:228 +#: libraries/messages.inc.php:757 server_replication.php:228 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: libraries/messages.inc.php:762 libraries/replication_gui.lib.php:236 +#: libraries/messages.inc.php:758 libraries/replication_gui.lib.php:236 #: server_replication.php:194 msgid "Add slave replication user" msgstr "" -#: libraries/messages.inc.php:763 server_replication.php:74 +#: libraries/messages.inc.php:759 server_replication.php:74 #, php-format msgid "Master server changed succesfully to %s" msgstr "" -#: libraries/messages.inc.php:764 server_replication.php:182 +#: libraries/messages.inc.php:760 server_replication.php:182 msgid "This server is configured as master in a replication process." msgstr "" -#: libraries/messages.inc.php:765 server_replication.php:322 +#: libraries/messages.inc.php:761 server_replication.php:322 msgid "Control slave:" msgstr "" -#: libraries/messages.inc.php:766 server_replication.php:65 +#: libraries/messages.inc.php:762 server_replication.php:65 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: libraries/messages.inc.php:767 server_replication.php:58 +#: libraries/messages.inc.php:763 server_replication.php:58 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: libraries/messages.inc.php:768 server_replication.php:221 +#: libraries/messages.inc.php:764 server_replication.php:221 msgid "Replicate all databases; Ignore:" msgstr "" -#: libraries/messages.inc.php:769 server_replication.php:222 +#: libraries/messages.inc.php:765 server_replication.php:222 msgid "Ignore all databases; Replicate:" msgstr "" -#: libraries/messages.inc.php:770 server_replication.php:218 +#: libraries/messages.inc.php:766 server_replication.php:218 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -4740,120 +4740,120 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: libraries/messages.inc.php:771 server_replication.php:217 +#: libraries/messages.inc.php:767 server_replication.php:217 msgid "Master configuration" msgstr "" -#: libraries/messages.inc.php:772 server_replication.php:181 +#: libraries/messages.inc.php:768 server_replication.php:181 #: server_replication.php:209 msgid "Master replication" msgstr "" -#: libraries/messages.inc.php:774 server_replication.php:230 +#: libraries/messages.inc.php:770 server_replication.php:230 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: libraries/messages.inc.php:775 server_replication.php:225 +#: libraries/messages.inc.php:771 server_replication.php:225 msgid "Please select databases:" msgstr "" -#: libraries/messages.inc.php:776 server_replication.php:210 +#: libraries/messages.inc.php:772 server_replication.php:210 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:188 +#: libraries/messages.inc.php:773 libraries/replication_gui.lib.php:188 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/messages.inc.php:778 server_replication.php:187 +#: libraries/messages.inc.php:774 server_replication.php:187 msgid "Show connected slaves" msgstr "" -#: libraries/messages.inc.php:779 libraries/messages.inc.php:885 +#: libraries/messages.inc.php:775 libraries/messages.inc.php:881 #: server_replication.php:184 server_status.php:281 msgid "Show master status" msgstr "" -#: libraries/messages.inc.php:780 server_replication.php:334 +#: libraries/messages.inc.php:776 server_replication.php:334 msgid "Skipping error(s) might lead into unsynchronized master and slave!" msgstr "" -#: libraries/messages.inc.php:781 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:51 #: server_replication.php:347 msgid "Change or reconfigure master server" msgstr "" -#: libraries/messages.inc.php:782 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:778 libraries/replication_gui.lib.php:51 msgid "Slave configuration" msgstr "" -#: libraries/messages.inc.php:783 server_replication.php:305 +#: libraries/messages.inc.php:779 server_replication.php:305 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: libraries/messages.inc.php:784 server_replication.php:332 +#: libraries/messages.inc.php:780 server_replication.php:332 msgid "Error management:" msgstr "" -#: libraries/messages.inc.php:785 server_replication.php:328 +#: libraries/messages.inc.php:781 server_replication.php:328 #, php-format msgid "IO Thread %s only" msgstr "" -#: libraries/messages.inc.php:786 server_replication.php:296 +#: libraries/messages.inc.php:782 server_replication.php:296 msgid "Slave IO Thread not running!" msgstr "" -#: libraries/messages.inc.php:787 server_replication.php:355 +#: libraries/messages.inc.php:783 server_replication.php:355 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/messages.inc.php:788 server_replication.php:326 +#: libraries/messages.inc.php:784 server_replication.php:326 msgid "Reset slave" msgstr "" -#: libraries/messages.inc.php:789 server_replication.php:308 +#: libraries/messages.inc.php:785 server_replication.php:308 msgid "See slave status table" msgstr "" -#: libraries/messages.inc.php:790 server_replication.php:336 +#: libraries/messages.inc.php:786 server_replication.php:336 msgid "Skip current error" msgstr "" -#: libraries/messages.inc.php:791 server_replication.php:340 +#: libraries/messages.inc.php:787 server_replication.php:340 msgid "errors." msgstr "" -#: libraries/messages.inc.php:792 server_replication.php:337 +#: libraries/messages.inc.php:788 server_replication.php:337 msgid "Skip next" msgstr "" -#: libraries/messages.inc.php:793 server_replication.php:248 +#: libraries/messages.inc.php:789 server_replication.php:248 msgid "Slave replication" msgstr "" -#: libraries/messages.inc.php:794 server_replication.php:293 +#: libraries/messages.inc.php:790 server_replication.php:293 msgid "Slave SQL Thread not running!" msgstr "" -#: libraries/messages.inc.php:795 server_replication.php:327 +#: libraries/messages.inc.php:791 server_replication.php:327 #, php-format msgid "SQL Thread %s only" msgstr "" -#: libraries/messages.inc.php:796 +#: libraries/messages.inc.php:792 #, php-format msgid "" "This MySQL server works as %s in replication process. For further " @@ -4861,167 +4861,167 @@ msgid "" "\"#replication\">replication section." msgstr "" -#: libraries/messages.inc.php:797 +#: libraries/messages.inc.php:793 msgid "Master status" msgstr "" -#: libraries/messages.inc.php:798 server_status.php:721 +#: libraries/messages.inc.php:794 server_status.php:721 msgid "Replication status" msgstr "" -#: libraries/messages.inc.php:799 +#: libraries/messages.inc.php:795 msgid "Slave status" msgstr "" -#: libraries/messages.inc.php:800 server_replication.php:311 +#: libraries/messages.inc.php:796 server_replication.php:311 msgid "Synchronize databases with master" msgstr "" -#: libraries/messages.inc.php:801 server_replication.php:71 +#: libraries/messages.inc.php:797 server_replication.php:71 msgid "Unable to change master" msgstr "" -#: libraries/messages.inc.php:802 server_replication.php:51 +#: libraries/messages.inc.php:798 server_replication.php:51 msgid "Unknown error" msgstr "" -#: libraries/messages.inc.php:803 main.php:163 pdf_pages.php:344 +#: libraries/messages.inc.php:799 main.php:163 pdf_pages.php:344 #: setup/lib/FormDisplay.tpl.php:216 tbl_change.php:1175 msgid "Reset" msgstr "" -#: libraries/messages.inc.php:804 server_privileges.php:591 +#: libraries/messages.inc.php:800 server_privileges.php:591 msgid "Resource limits" msgstr "" -#: libraries/messages.inc.php:805 tbl_change.php:1209 +#: libraries/messages.inc.php:801 tbl_change.php:1209 #, php-format msgid "Restart insertion with %s rows" msgstr "" -#: libraries/messages.inc.php:807 server_privileges.php:1578 +#: libraries/messages.inc.php:803 server_privileges.php:1578 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: libraries/messages.inc.php:808 server_privileges.php:1176 +#: libraries/messages.inc.php:804 server_privileges.php:1176 #, php-format msgid "You have revoked the privileges for %s" msgstr "" -#: libraries/messages.inc.php:809 server_privileges.php:1333 +#: libraries/messages.inc.php:805 server_privileges.php:1333 msgid "Revoke" msgstr "" -#: libraries/messages.inc.php:810 libraries/mysql_charsets.lib.php:280 +#: libraries/messages.inc.php:806 libraries/mysql_charsets.lib.php:280 msgid "Romanian" msgstr "" -#: libraries/messages.inc.php:813 tbl_printview.php:404 tbl_structure.php:786 +#: libraries/messages.inc.php:809 tbl_printview.php:404 tbl_structure.php:786 msgid "Row length" msgstr "" -#: libraries/messages.inc.php:815 tbl_printview.php:414 tbl_structure.php:794 +#: libraries/messages.inc.php:811 tbl_printview.php:414 tbl_structure.php:794 msgid " Row size " msgstr "" -#: libraries/messages.inc.php:821 tbl_printview.php:366 tbl_structure.php:726 +#: libraries/messages.inc.php:817 tbl_printview.php:366 tbl_structure.php:726 msgid "Row Statistics" msgstr "" -#: libraries/messages.inc.php:822 +#: libraries/messages.inc.php:818 #, php-format msgid "running on %s" msgstr "" -#: libraries/messages.inc.php:824 libraries/sql_query_form.lib.php:223 +#: libraries/messages.inc.php:820 libraries/sql_query_form.lib.php:223 #, php-format msgid "Run SQL query/queries on server %s" msgstr "" -#: libraries/messages.inc.php:825 libraries/sql_query_form.lib.php:240 +#: libraries/messages.inc.php:821 libraries/sql_query_form.lib.php:240 #: libraries/sql_query_form.lib.php:265 #, php-format msgid "Run SQL query/queries on database %s" msgstr "" -#: libraries/messages.inc.php:826 libraries/mysql_charsets.lib.php:337 +#: libraries/messages.inc.php:822 libraries/mysql_charsets.lib.php:337 msgid "Russian" msgstr "" -#: libraries/messages.inc.php:829 pmd_general.php:68 +#: libraries/messages.inc.php:825 pmd_general.php:68 msgid "Save position" msgstr "" -#: libraries/messages.inc.php:830 libraries/tbl_properties.inc.php:776 +#: libraries/messages.inc.php:826 libraries/tbl_properties.inc.php:776 #: pdf_pages.php:484 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:214 setup/lib/FormDisplay.tpl.php:215 #: tbl_change.php:1126 tbl_indexes.php:248 tbl_relation.php:566 msgid "Save" msgstr "" -#: libraries/messages.inc.php:831 +#: libraries/messages.inc.php:827 msgid "The scale factor is too small to fit the schema on one page" msgstr "" -#: libraries/messages.inc.php:843 main.php:298 +#: libraries/messages.inc.php:839 main.php:298 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" -#: libraries/messages.inc.php:844 navigation.php:353 navigation.php:516 +#: libraries/messages.inc.php:840 navigation.php:353 navigation.php:516 msgid "Please select a database" msgstr "" -#: libraries/messages.inc.php:846 server_binlog.php:120 +#: libraries/messages.inc.php:842 server_binlog.php:120 msgid "Select binary log to view" msgstr "" -#: libraries/messages.inc.php:847 tbl_select.php:270 +#: libraries/messages.inc.php:843 tbl_select.php:270 msgid "Select fields (at least one):" msgstr "" -#: libraries/messages.inc.php:851 pdf_pages.php:320 +#: libraries/messages.inc.php:847 pdf_pages.php:320 msgid "Select Tables" msgstr "" -#: libraries/messages.inc.php:853 server_status.php:404 +#: libraries/messages.inc.php:849 server_status.php:404 msgid "Sent" msgstr "" -#: libraries/messages.inc.php:857 libraries/select_server.lib.php:45 +#: libraries/messages.inc.php:853 libraries/select_server.lib.php:45 #: setup/frames/index.inc.php:97 setup/lib/messages.inc.php:115 msgid "Servers" msgstr "" -#: libraries/messages.inc.php:858 server_status.php:255 +#: libraries/messages.inc.php:854 server_status.php:255 msgid "Delayed inserts" msgstr "" -#: libraries/messages.inc.php:859 server_status.php:46 +#: libraries/messages.inc.php:855 server_status.php:46 msgid "Runtime Information" msgstr "" -#: libraries/messages.inc.php:860 server_status.php:350 +#: libraries/messages.inc.php:856 server_status.php:350 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "" -#: libraries/messages.inc.php:861 libraries/server_links.inc.php:53 +#: libraries/messages.inc.php:857 libraries/server_links.inc.php:53 #: server_engines.php:112 server_engines.php:116 server_status.php:304 #: test/theme.php:105 msgid "Variables" msgstr "" -#: libraries/messages.inc.php:862 server_status.php:383 +#: libraries/messages.inc.php:858 server_status.php:383 msgid "" "Server traffic: These tables show the network traffic statistics of " "this MySQL server since its startup." msgstr "" -#: libraries/messages.inc.php:863 server_variables.php:35 +#: libraries/messages.inc.php:859 server_variables.php:35 msgid "Server variables and settings" msgstr "" -#: libraries/messages.inc.php:865 main.php:290 +#: libraries/messages.inc.php:861 main.php:290 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -5029,17 +5029,17 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: libraries/messages.inc.php:866 +#: libraries/messages.inc.php:862 msgid "" "Cannot start session without errors, please check errors given in your PHP " "and/or webserver log file and configure your PHP installation properly." msgstr "" -#: libraries/messages.inc.php:867 server_variables.php:55 +#: libraries/messages.inc.php:863 server_variables.php:55 msgid "Session value" msgstr "" -#: libraries/messages.inc.php:868 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:864 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 " @@ -5047,55 +5047,55 @@ msgid "" "(for example '\\\\xyz' or 'a\\'b')." msgstr "" -#: libraries/messages.inc.php:876 server_binlog.php:192 server_binlog.php:195 +#: libraries/messages.inc.php:872 server_binlog.php:192 server_binlog.php:195 #: server_processlist.php:49 server_processlist.php:51 msgid "Show Full Queries" msgstr "" -#: libraries/messages.inc.php:878 pmd_general.php:64 +#: libraries/messages.inc.php:874 pmd_general.php:64 msgid "Show/Hide left menu" msgstr "" -#: libraries/messages.inc.php:880 sql.php:513 +#: libraries/messages.inc.php:876 sql.php:513 msgid "Showing as PHP code" msgstr "" -#: libraries/messages.inc.php:882 sql.php:516 tbl_replace.php:360 +#: libraries/messages.inc.php:878 sql.php:516 tbl_replace.php:360 msgid "Showing SQL query" msgstr "" -#: libraries/messages.inc.php:883 tbl_change.php:1132 +#: libraries/messages.inc.php:879 tbl_change.php:1132 msgid "Show insert query" msgstr "" -#: libraries/messages.inc.php:886 server_status.php:273 +#: libraries/messages.inc.php:882 server_status.php:273 msgid "Show open tables" msgstr "" -#: libraries/messages.inc.php:887 main.php:219 +#: libraries/messages.inc.php:883 main.php:219 msgid "Show PHP information" msgstr "" -#: libraries/messages.inc.php:889 server_status.php:278 +#: libraries/messages.inc.php:885 server_status.php:278 msgid "Show slave hosts" msgstr "" -#: libraries/messages.inc.php:890 server_status.php:284 +#: libraries/messages.inc.php:886 server_status.php:284 msgid "Show slave status" msgstr "" -#: libraries/messages.inc.php:891 +#: libraries/messages.inc.php:887 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/messages.inc.php:892 +#: libraries/messages.inc.php:888 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/messages.inc.php:893 +#: libraries/messages.inc.php:889 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -5103,78 +5103,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/messages.inc.php:894 +#: libraries/messages.inc.php:890 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/messages.inc.php:895 +#: libraries/messages.inc.php:891 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/messages.inc.php:896 +#: libraries/messages.inc.php:892 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/messages.inc.php:897 +#: libraries/messages.inc.php:893 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/messages.inc.php:898 +#: libraries/messages.inc.php:894 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/messages.inc.php:899 +#: libraries/messages.inc.php:895 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/messages.inc.php:900 +#: libraries/messages.inc.php:896 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/messages.inc.php:901 +#: libraries/messages.inc.php:897 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/messages.inc.php:902 +#: libraries/messages.inc.php:898 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/messages.inc.php:903 +#: libraries/messages.inc.php:899 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/messages.inc.php:904 +#: libraries/messages.inc.php:900 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: libraries/messages.inc.php:905 +#: libraries/messages.inc.php:901 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/messages.inc.php:906 +#: libraries/messages.inc.php:902 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: libraries/messages.inc.php:907 +#: libraries/messages.inc.php:903 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -5182,7 +5182,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/messages.inc.php:908 +#: libraries/messages.inc.php:904 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -5190,42 +5190,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/messages.inc.php:909 +#: libraries/messages.inc.php:905 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/messages.inc.php:910 +#: libraries/messages.inc.php:906 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/messages.inc.php:911 +#: libraries/messages.inc.php:907 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/messages.inc.php:912 +#: libraries/messages.inc.php:908 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/messages.inc.php:913 +#: libraries/messages.inc.php:909 msgid "The number of pages currently dirty." msgstr "" -#: libraries/messages.inc.php:914 +#: libraries/messages.inc.php:910 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/messages.inc.php:915 +#: libraries/messages.inc.php:911 msgid "The number of free pages." msgstr "" -#: libraries/messages.inc.php:916 +#: libraries/messages.inc.php:912 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/messages.inc.php:917 +#: libraries/messages.inc.php:913 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -5233,33 +5233,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/messages.inc.php:918 +#: libraries/messages.inc.php:914 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/messages.inc.php:919 +#: libraries/messages.inc.php:915 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/messages.inc.php:920 +#: libraries/messages.inc.php:916 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/messages.inc.php:921 +#: libraries/messages.inc.php:917 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/messages.inc.php:922 +#: libraries/messages.inc.php:918 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/messages.inc.php:923 +#: libraries/messages.inc.php:919 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -5268,218 +5268,218 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/messages.inc.php:924 +#: libraries/messages.inc.php:920 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/messages.inc.php:925 +#: libraries/messages.inc.php:921 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/messages.inc.php:926 +#: libraries/messages.inc.php:922 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/messages.inc.php:927 +#: libraries/messages.inc.php:923 msgid "The current number of pending reads." msgstr "" -#: libraries/messages.inc.php:928 +#: libraries/messages.inc.php:924 msgid "The current number of pending writes." msgstr "" -#: libraries/messages.inc.php:929 +#: libraries/messages.inc.php:925 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/messages.inc.php:930 +#: libraries/messages.inc.php:926 msgid "The total number of data reads." msgstr "" -#: libraries/messages.inc.php:931 +#: libraries/messages.inc.php:927 msgid "The total number of data writes." msgstr "" -#: libraries/messages.inc.php:932 +#: libraries/messages.inc.php:928 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/messages.inc.php:933 +#: libraries/messages.inc.php:929 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/messages.inc.php:934 +#: libraries/messages.inc.php:930 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/messages.inc.php:935 +#: libraries/messages.inc.php:931 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/messages.inc.php:936 +#: libraries/messages.inc.php:932 msgid "The number of log write requests." msgstr "" -#: libraries/messages.inc.php:937 +#: libraries/messages.inc.php:933 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/messages.inc.php:938 +#: libraries/messages.inc.php:934 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/messages.inc.php:939 +#: libraries/messages.inc.php:935 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/messages.inc.php:940 +#: libraries/messages.inc.php:936 msgid "Pending log file writes." msgstr "" -#: libraries/messages.inc.php:941 +#: libraries/messages.inc.php:937 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/messages.inc.php:942 +#: libraries/messages.inc.php:938 msgid "The number of pages created." msgstr "" -#: libraries/messages.inc.php:943 +#: libraries/messages.inc.php:939 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: libraries/messages.inc.php:944 +#: libraries/messages.inc.php:940 msgid "The number of pages read." msgstr "" -#: libraries/messages.inc.php:945 +#: libraries/messages.inc.php:941 msgid "The number of pages written." msgstr "" -#: libraries/messages.inc.php:946 +#: libraries/messages.inc.php:942 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/messages.inc.php:947 +#: libraries/messages.inc.php:943 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/messages.inc.php:948 +#: libraries/messages.inc.php:944 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/messages.inc.php:949 +#: libraries/messages.inc.php:945 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/messages.inc.php:950 +#: libraries/messages.inc.php:946 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/messages.inc.php:951 +#: libraries/messages.inc.php:947 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/messages.inc.php:952 +#: libraries/messages.inc.php:948 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/messages.inc.php:953 +#: libraries/messages.inc.php:949 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/messages.inc.php:954 +#: libraries/messages.inc.php:950 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/messages.inc.php:955 +#: libraries/messages.inc.php:951 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/messages.inc.php:956 +#: libraries/messages.inc.php:952 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: libraries/messages.inc.php:957 +#: libraries/messages.inc.php:953 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/messages.inc.php:958 +#: libraries/messages.inc.php:954 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/messages.inc.php:959 +#: libraries/messages.inc.php:955 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/messages.inc.php:960 +#: libraries/messages.inc.php:956 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/messages.inc.php:961 +#: libraries/messages.inc.php:957 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/messages.inc.php:962 +#: libraries/messages.inc.php:958 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/messages.inc.php:963 +#: libraries/messages.inc.php:959 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/messages.inc.php:964 +#: libraries/messages.inc.php:960 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/messages.inc.php:965 +#: libraries/messages.inc.php:961 msgid "The number of files that are open." msgstr "" -#: libraries/messages.inc.php:966 +#: libraries/messages.inc.php:962 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/messages.inc.php:967 +#: libraries/messages.inc.php:963 msgid "The number of tables that are open." msgstr "" -#: libraries/messages.inc.php:968 +#: libraries/messages.inc.php:964 msgid "The number of free memory blocks in query cache." msgstr "" -#: libraries/messages.inc.php:969 +#: libraries/messages.inc.php:965 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/messages.inc.php:970 +#: libraries/messages.inc.php:966 msgid "The number of cache hits." msgstr "" -#: libraries/messages.inc.php:971 +#: libraries/messages.inc.php:967 msgid "The number of queries added to the cache." msgstr "" -#: libraries/messages.inc.php:972 +#: libraries/messages.inc.php:968 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -5487,104 +5487,104 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/messages.inc.php:973 +#: libraries/messages.inc.php:969 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/messages.inc.php:974 +#: libraries/messages.inc.php:970 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/messages.inc.php:975 +#: libraries/messages.inc.php:971 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/messages.inc.php:976 +#: libraries/messages.inc.php:972 msgctxt "$strShowStatusReset" msgid "Reset" msgstr "" -#: libraries/messages.inc.php:977 +#: libraries/messages.inc.php:973 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/messages.inc.php:978 +#: libraries/messages.inc.php:974 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: libraries/messages.inc.php:979 +#: libraries/messages.inc.php:975 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/messages.inc.php:980 +#: libraries/messages.inc.php:976 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: libraries/messages.inc.php:981 +#: libraries/messages.inc.php:977 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/messages.inc.php:982 +#: libraries/messages.inc.php:978 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/messages.inc.php:983 +#: libraries/messages.inc.php:979 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/messages.inc.php:984 +#: libraries/messages.inc.php:980 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/messages.inc.php:985 +#: libraries/messages.inc.php:981 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/messages.inc.php:986 +#: libraries/messages.inc.php:982 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/messages.inc.php:987 +#: libraries/messages.inc.php:983 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/messages.inc.php:988 +#: libraries/messages.inc.php:984 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/messages.inc.php:989 +#: libraries/messages.inc.php:985 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/messages.inc.php:990 +#: libraries/messages.inc.php:986 msgid "The number of sorted rows." msgstr "" -#: libraries/messages.inc.php:991 +#: libraries/messages.inc.php:987 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/messages.inc.php:992 +#: libraries/messages.inc.php:988 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/messages.inc.php:993 +#: libraries/messages.inc.php:989 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -5592,18 +5592,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/messages.inc.php:994 +#: libraries/messages.inc.php:990 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/messages.inc.php:995 +#: libraries/messages.inc.php:991 msgid "The number of currently open connections." msgstr "" -#: libraries/messages.inc.php:996 +#: libraries/messages.inc.php:992 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -5611,74 +5611,74 @@ msgid "" "implementation.)" msgstr "" -#: libraries/messages.inc.php:997 +#: libraries/messages.inc.php:993 msgid "The number of threads that are not sleeping." msgstr "" -#: libraries/messages.inc.php:999 tbl_printview.php:75 +#: libraries/messages.inc.php:995 tbl_printview.php:75 msgid "Show tables" msgstr "" -#: libraries/messages.inc.php:1000 libraries/sql_query_form.lib.php:396 +#: libraries/messages.inc.php:996 libraries/sql_query_form.lib.php:396 msgid " Show this query here again " msgstr "" -#: libraries/messages.inc.php:1001 libraries/mysql_charsets.lib.php:217 +#: libraries/messages.inc.php:997 libraries/mysql_charsets.lib.php:217 #: libraries/mysql_charsets.lib.php:342 msgid "Simplified Chinese" msgstr "" -#: libraries/messages.inc.php:1002 tbl_operations.php:258 +#: libraries/messages.inc.php:998 tbl_operations.php:258 msgid "(singly)" msgstr "" -#: libraries/messages.inc.php:1005 libraries/replication_gui.lib.php:52 +#: libraries/messages.inc.php:1001 libraries/replication_gui.lib.php:52 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" msgstr "" -#: libraries/messages.inc.php:1006 libraries/mysql_charsets.lib.php:283 +#: libraries/messages.inc.php:1002 libraries/mysql_charsets.lib.php:283 msgid "Slovak" msgstr "" -#: libraries/messages.inc.php:1007 libraries/mysql_charsets.lib.php:286 +#: libraries/messages.inc.php:1003 libraries/mysql_charsets.lib.php:286 msgid "Slovenian" msgstr "" -#: libraries/messages.inc.php:1008 pmd_general.php:95 +#: libraries/messages.inc.php:1004 pmd_general.php:95 msgid "Small/Big All" msgstr "" -#: libraries/messages.inc.php:1009 pmd_general.php:91 +#: libraries/messages.inc.php:1005 pmd_general.php:91 msgid "Snap to grid" msgstr "" -#: libraries/messages.inc.php:1011 server_synchronize.php:1167 +#: libraries/messages.inc.php:1007 server_synchronize.php:1167 msgid "Socket" msgstr "" -#: libraries/messages.inc.php:1013 server_status.php:259 +#: libraries/messages.inc.php:1009 server_status.php:259 msgid "Sorting" msgstr "" -#: libraries/messages.inc.php:1015 tbl_printview.php:310 tbl_structure.php:657 +#: libraries/messages.inc.php:1011 tbl_printview.php:310 tbl_structure.php:657 msgid "Space usage" msgstr "" -#: libraries/messages.inc.php:1016 libraries/mysql_charsets.lib.php:289 +#: libraries/messages.inc.php:1012 libraries/mysql_charsets.lib.php:289 msgid "Spanish" msgstr "" -#: libraries/messages.inc.php:1019 +#: libraries/messages.inc.php:1015 msgid "Export type" msgstr "" -#: libraries/messages.inc.php:1020 +#: libraries/messages.inc.php:1016 msgid "Export time in UTC" msgstr "" -#: libraries/messages.inc.php:1021 libraries/sqlparser.lib.php:173 +#: libraries/messages.inc.php:1017 libraries/sqlparser.lib.php:173 msgid "" "There is a chance that you may have found a bug in the SQL parser. Please " "examine your query closely, and check that the quotes are correct and not " @@ -5691,419 +5691,419 @@ msgid "" "and submit a bug report with the data chunk in the CUT section below:" msgstr "" -#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:137 +#: libraries/messages.inc.php:1018 libraries/sqlparser.lib.php:137 msgid "" "There seems to be an error in your SQL query. The MySQL server error output " "below, if there is any, may also help you in diagnosing the problem" msgstr "" -#: libraries/messages.inc.php:1026 libraries/sqlparser.lib.php:495 +#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:495 msgid "Invalid Identifer" msgstr "" -#: libraries/messages.inc.php:1027 libraries/sqlparser.lib.php:344 +#: libraries/messages.inc.php:1023 libraries/sqlparser.lib.php:344 msgid "Unclosed quote" msgstr "" -#: libraries/messages.inc.php:1028 libraries/sqlparser.lib.php:612 +#: libraries/messages.inc.php:1024 libraries/sqlparser.lib.php:612 msgid "Unknown Punctuation String" msgstr "" -#: libraries/messages.inc.php:1030 server_replication.php:327 +#: libraries/messages.inc.php:1026 server_replication.php:327 #: server_replication.php:328 msgid "Start" msgstr "" -#: libraries/messages.inc.php:1033 tbl_printview.php:369 tbl_structure.php:729 +#: libraries/messages.inc.php:1029 tbl_printview.php:369 tbl_structure.php:729 msgid "Statements" msgstr "" -#: libraries/messages.inc.php:1034 tbl_printview.php:380 tbl_structure.php:741 +#: libraries/messages.inc.php:1030 tbl_printview.php:380 tbl_structure.php:741 msgid "static" msgstr "" -#: libraries/messages.inc.php:1035 server_status.php:388 +#: libraries/messages.inc.php:1031 server_status.php:388 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: libraries/messages.inc.php:1038 server_replication.php:327 +#: libraries/messages.inc.php:1034 server_replication.php:327 #: server_replication.php:328 msgid "Stop" msgstr "" -#: libraries/messages.inc.php:1039 server_engines.php:49 +#: libraries/messages.inc.php:1035 server_engines.php:49 msgid "Storage Engines" msgstr "" -#: libraries/messages.inc.php:1040 libraries/tbl_properties.inc.php:726 +#: libraries/messages.inc.php:1036 libraries/tbl_properties.inc.php:726 #: server_engines.php:58 tbl_operations.php:353 msgid "Storage Engine" msgstr "" -#: libraries/messages.inc.php:1042 +#: libraries/messages.inc.php:1038 msgid "CSV for MS Excel" msgstr "" -#: libraries/messages.inc.php:1044 tbl_structure.php:516 tbl_structure.php:518 +#: libraries/messages.inc.php:1040 tbl_structure.php:516 tbl_structure.php:518 msgid "Propose table structure" msgstr "" -#: libraries/messages.inc.php:1045 server_synchronize.php:424 +#: libraries/messages.inc.php:1041 server_synchronize.php:424 #: server_synchronize.php:867 msgid "Structure Difference" msgstr "" -#: libraries/messages.inc.php:1049 server_synchronize.php:265 +#: libraries/messages.inc.php:1045 server_synchronize.php:265 msgid "Structure Synchronization" msgstr "" -#: libraries/messages.inc.php:1050 libraries/sql_query_form.lib.php:462 +#: libraries/messages.inc.php:1046 libraries/sql_query_form.lib.php:462 msgid "Submit" msgstr "" -#: libraries/messages.inc.php:1052 main.php:358 +#: libraries/messages.inc.php:1048 main.php:358 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " "issues." msgstr "" -#: libraries/messages.inc.php:1054 libraries/mysql_charsets.lib.php:295 +#: libraries/messages.inc.php:1050 libraries/mysql_charsets.lib.php:295 #: libraries/mysql_charsets.lib.php:392 msgid "Swedish" msgstr "" -#: libraries/messages.inc.php:1060 tbl_operations.php:556 +#: libraries/messages.inc.php:1056 tbl_operations.php:556 msgid "Switch to copied table" msgstr "" -#: libraries/messages.inc.php:1061 server_synchronize.php:1213 +#: libraries/messages.inc.php:1057 server_synchronize.php:1213 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." msgstr "" -#: libraries/messages.inc.php:1062 server_synchronize.php:451 +#: libraries/messages.inc.php:1058 server_synchronize.php:451 #: server_synchronize.php:896 msgid "Synchronize Databases" msgstr "" -#: libraries/messages.inc.php:1063 libraries/server_links.inc.php:92 +#: libraries/messages.inc.php:1059 libraries/server_links.inc.php:92 #: server_synchronize.php:1092 server_synchronize.php:1100 msgid "Synchronize" msgstr "" -#: libraries/messages.inc.php:1065 server_synchronize.php:430 +#: libraries/messages.inc.php:1061 server_synchronize.php:430 #: server_synchronize.php:873 msgid "Add column(s)" msgstr "" -#: libraries/messages.inc.php:1066 tbl_create.php:62 +#: libraries/messages.inc.php:1062 tbl_create.php:62 #, php-format msgid "Table %s already exists!" msgstr "" -#: libraries/messages.inc.php:1067 server_synchronize.php:432 +#: libraries/messages.inc.php:1063 server_synchronize.php:432 #: server_synchronize.php:875 msgid "Alter column(s)" msgstr "" -#: libraries/messages.inc.php:1068 tbl_addfield.php:189 tbl_alter.php:103 +#: libraries/messages.inc.php:1064 tbl_addfield.php:189 tbl_alter.php:103 #: tbl_indexes.php:98 #, php-format msgid "Table %1$s has been altered successfully" msgstr "" -#: libraries/messages.inc.php:1069 server_synchronize.php:434 +#: libraries/messages.inc.php:1065 server_synchronize.php:434 #: server_synchronize.php:877 msgid "Apply index(s)" msgstr "" -#: libraries/messages.inc.php:1071 server_synchronize.php:446 +#: libraries/messages.inc.php:1067 server_synchronize.php:446 #: server_synchronize.php:890 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: libraries/messages.inc.php:1072 tbl_move_copy.php:82 +#: libraries/messages.inc.php:1068 tbl_move_copy.php:82 msgid "The table name is empty!" msgstr "" -#: libraries/messages.inc.php:1073 tbl_create.php:249 +#: libraries/messages.inc.php:1069 tbl_create.php:249 #, php-format msgid "Table %1$s has been created." msgstr "" -#: libraries/messages.inc.php:1076 tbl_operations.php:628 +#: libraries/messages.inc.php:1072 tbl_operations.php:628 #, php-format msgid "Table %s has been flushed" msgstr "" -#: libraries/messages.inc.php:1077 server_synchronize.php:436 +#: libraries/messages.inc.php:1073 server_synchronize.php:436 #: server_synchronize.php:879 msgid "Insert row(s)" msgstr "" -#: libraries/messages.inc.php:1078 libraries/tbl_links.inc.php:107 +#: libraries/messages.inc.php:1074 libraries/tbl_links.inc.php:107 #: libraries/tbl_links.inc.php:140 libraries/tbl_links.inc.php:141 msgid "Table seems to be empty!" msgstr "" -#: libraries/messages.inc.php:1079 tbl_operations.php:568 +#: libraries/messages.inc.php:1075 tbl_operations.php:568 msgid "Table maintenance" msgstr "" -#: libraries/messages.inc.php:1080 libraries/tbl_properties.inc.php:618 +#: libraries/messages.inc.php:1076 libraries/tbl_properties.inc.php:618 #: server_synchronize.php:428 server_synchronize.php:871 msgid "Table name" msgstr "" -#: libraries/messages.inc.php:1081 pdf_schema.php:1116 +#: libraries/messages.inc.php:1077 pdf_schema.php:1116 msgid "Table of contents" msgstr "" -#: libraries/messages.inc.php:1082 tbl_operations.php:334 +#: libraries/messages.inc.php:1078 tbl_operations.php:334 msgid "Table options" msgstr "" -#: libraries/messages.inc.php:1083 server_synchronize.php:431 +#: libraries/messages.inc.php:1079 server_synchronize.php:431 #: server_synchronize.php:874 msgid "Remove column(s)" msgstr "" -#: libraries/messages.inc.php:1084 server_synchronize.php:433 +#: libraries/messages.inc.php:1080 server_synchronize.php:433 #: server_synchronize.php:876 msgid "Remove index(s)" msgstr "" -#: libraries/messages.inc.php:1088 server_synchronize.php:435 +#: libraries/messages.inc.php:1084 server_synchronize.php:435 #: server_synchronize.php:878 msgid "Update row(s)" msgstr "" -#: libraries/messages.inc.php:1090 server_synchronize.php:942 +#: libraries/messages.inc.php:1086 server_synchronize.php:942 msgid "Target database has been synchronized with source database" msgstr "" -#: libraries/messages.inc.php:1091 server_privileges.php:392 +#: libraries/messages.inc.php:1087 server_privileges.php:392 #: server_privileges.php:527 server_privileges.php:1679 #: server_privileges.php:1685 msgid "Table-specific privileges" msgstr "" -#: libraries/messages.inc.php:1092 server_status.php:254 +#: libraries/messages.inc.php:1088 server_status.php:254 msgid "Temporary data" msgstr "" -#: libraries/messages.inc.php:1093 tbl_change.php:728 +#: libraries/messages.inc.php:1089 tbl_change.php:728 msgid " Because of its length,
this field might not be editable " msgstr "" -#: libraries/messages.inc.php:1094 +#: libraries/messages.inc.php:1090 msgid "Texy! text" msgstr "" -#: libraries/messages.inc.php:1095 libraries/mysql_charsets.lib.php:298 +#: libraries/messages.inc.php:1091 libraries/mysql_charsets.lib.php:298 #: libraries/mysql_charsets.lib.php:395 msgid "Thai" msgstr "" -#: libraries/messages.inc.php:1102 libraries/replication_gui.lib.php:308 +#: libraries/messages.inc.php:1098 libraries/replication_gui.lib.php:308 #: server_privileges.php:734 msgid "This Host" msgstr "" -#: libraries/messages.inc.php:1103 server_status.php:252 +#: libraries/messages.inc.php:1099 server_status.php:252 msgid "Threads" msgstr "" -#: libraries/messages.inc.php:1104 server_processlist.php:22 +#: libraries/messages.inc.php:1100 server_processlist.php:22 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: libraries/messages.inc.php:1106 +#: libraries/messages.inc.php:1102 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." msgstr "" -#: libraries/messages.inc.php:1109 pmd_pdf.php:94 +#: libraries/messages.inc.php:1105 pmd_pdf.php:94 msgid "to/from page" msgstr "" -#: libraries/messages.inc.php:1110 pdf_pages.php:343 +#: libraries/messages.inc.php:1106 pdf_pages.php:343 msgid "Toggle scratchboard" msgstr "" -#: libraries/messages.inc.php:1111 pmd_general.php:99 +#: libraries/messages.inc.php:1107 pmd_general.php:99 msgid "Toggle small/big" msgstr "" -#: libraries/messages.inc.php:1112 pmd_help.php:27 +#: libraries/messages.inc.php:1108 pmd_help.php:27 msgid "To select relation, click :" msgstr "" -#: libraries/messages.inc.php:1115 libraries/tbl_links.inc.php:149 +#: libraries/messages.inc.php:1111 libraries/tbl_links.inc.php:149 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" -#: libraries/messages.inc.php:1116 tbl_tracking.php:655 +#: libraries/messages.inc.php:1112 tbl_tracking.php:655 msgid "Activate now" msgstr "" -#: libraries/messages.inc.php:1117 tbl_tracking.php:653 +#: libraries/messages.inc.php:1113 tbl_tracking.php:653 #, php-format msgid "Activate tracking for %s.%s" msgstr "" -#: libraries/messages.inc.php:1118 tbl_tracking.php:221 +#: libraries/messages.inc.php:1114 tbl_tracking.php:221 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/messages.inc.php:1119 tbl_tracking.php:688 +#: libraries/messages.inc.php:1115 tbl_tracking.php:688 msgid "Create version" msgstr "" -#: libraries/messages.inc.php:1120 tbl_tracking.php:668 +#: libraries/messages.inc.php:1116 tbl_tracking.php:668 #, php-format msgid "Create version %s of %s.%s" msgstr "" -#: libraries/messages.inc.php:1122 tbl_tracking.php:412 +#: libraries/messages.inc.php:1118 tbl_tracking.php:412 msgid "Data definition statement" msgstr "" -#: libraries/messages.inc.php:1123 tbl_tracking.php:463 +#: libraries/messages.inc.php:1119 tbl_tracking.php:463 msgid "Data manipulation statement" msgstr "" -#: libraries/messages.inc.php:1124 tbl_tracking.php:410 tbl_tracking.php:461 +#: libraries/messages.inc.php:1120 tbl_tracking.php:410 tbl_tracking.php:461 msgid "Date" msgstr "" -#: libraries/messages.inc.php:1125 tbl_tracking.php:642 +#: libraries/messages.inc.php:1121 tbl_tracking.php:642 msgid "Deactivate now" msgstr "" -#: libraries/messages.inc.php:1126 tbl_tracking.php:640 +#: libraries/messages.inc.php:1122 tbl_tracking.php:640 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "" -#: libraries/messages.inc.php:1127 tbl_tracking.php:521 +#: libraries/messages.inc.php:1123 tbl_tracking.php:521 #, php-format msgid "Export as %s" msgstr "" -#: libraries/messages.inc.php:1130 tbl_tracking.php:251 tbl_tracking.php:379 +#: libraries/messages.inc.php:1126 tbl_tracking.php:251 tbl_tracking.php:379 msgid "Close" msgstr "" -#: libraries/messages.inc.php:1131 tbl_tracking.php:114 +#: libraries/messages.inc.php:1127 tbl_tracking.php:114 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/messages.inc.php:1133 tbl_tracking.php:397 tbl_tracking.php:504 +#: libraries/messages.inc.php:1129 tbl_tracking.php:397 tbl_tracking.php:504 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "" -#: libraries/messages.inc.php:1134 tbl_tracking.php:561 +#: libraries/messages.inc.php:1130 tbl_tracking.php:561 msgid "Show versions" msgstr "" -#: libraries/messages.inc.php:1135 tbl_tracking.php:507 +#: libraries/messages.inc.php:1131 tbl_tracking.php:507 msgid "SQL dump (file download)" msgstr "" -#: libraries/messages.inc.php:1136 tbl_tracking.php:508 +#: libraries/messages.inc.php:1132 tbl_tracking.php:508 msgid "SQL dump" msgstr "" -#: libraries/messages.inc.php:1137 tbl_tracking.php:213 +#: libraries/messages.inc.php:1133 tbl_tracking.php:213 msgid "SQL statements executed." msgstr "" -#: libraries/messages.inc.php:1138 +#: libraries/messages.inc.php:1134 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/messages.inc.php:1139 tbl_tracking.php:509 +#: libraries/messages.inc.php:1135 tbl_tracking.php:509 msgid "SQL execution" msgstr "" -#: libraries/messages.inc.php:1140 tbl_tracking.php:230 +#: libraries/messages.inc.php:1136 tbl_tracking.php:230 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/messages.inc.php:1141 tbl_tracking.php:381 +#: libraries/messages.inc.php:1137 tbl_tracking.php:381 msgid "Tracking statements" msgstr "" -#: libraries/messages.inc.php:1148 tbl_tracking.php:593 +#: libraries/messages.inc.php:1144 tbl_tracking.php:593 msgid "Version" msgstr "" -#: libraries/messages.inc.php:1149 tbl_tracking.php:672 +#: libraries/messages.inc.php:1145 tbl_tracking.php:672 msgid "Track these data definition statements:" msgstr "" -#: libraries/messages.inc.php:1150 tbl_tracking.php:680 +#: libraries/messages.inc.php:1146 tbl_tracking.php:680 msgid "Track these data manipulation statements:" msgstr "" -#: libraries/messages.inc.php:1155 tbl_tracking.php:411 tbl_tracking.php:462 +#: libraries/messages.inc.php:1151 tbl_tracking.php:411 tbl_tracking.php:462 msgid "Username" msgstr "" -#: libraries/messages.inc.php:1156 tbl_tracking.php:203 +#: libraries/messages.inc.php:1152 tbl_tracking.php:203 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "" -#: libraries/messages.inc.php:1157 tbl_tracking.php:187 +#: libraries/messages.inc.php:1153 tbl_tracking.php:187 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "" -#: libraries/messages.inc.php:1158 tbl_tracking.php:195 +#: libraries/messages.inc.php:1154 tbl_tracking.php:195 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "" -#: libraries/messages.inc.php:1159 tbl_tracking.php:262 +#: libraries/messages.inc.php:1155 tbl_tracking.php:262 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/messages.inc.php:1161 tbl_tracking.php:220 +#: libraries/messages.inc.php:1157 tbl_tracking.php:220 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/messages.inc.php:1162 libraries/mysql_charsets.lib.php:219 +#: libraries/messages.inc.php:1158 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:362 msgid "Traditional Chinese" msgstr "" -#: libraries/messages.inc.php:1163 libraries/mysql_charsets.lib.php:292 +#: libraries/messages.inc.php:1159 libraries/mysql_charsets.lib.php:292 msgid "Traditional Spanish" msgstr "" -#: libraries/messages.inc.php:1164 server_status.php:388 +#: libraries/messages.inc.php:1160 server_status.php:388 msgid "Traffic" msgstr "" -#: libraries/messages.inc.php:1165 server_status.php:261 +#: libraries/messages.inc.php:1161 server_status.php:261 msgid "Transaction coordinator" msgstr "" -#: libraries/messages.inc.php:1166 +#: libraries/messages.inc.php:1162 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 " @@ -6111,27 +6111,27 @@ msgid "" "need to set the first option to the empty string." msgstr "" -#: libraries/messages.inc.php:1167 +#: libraries/messages.inc.php:1163 msgid "" "Displays hexadecimal representation of data. Optional first parameter " "specifies how often space will be added (defaults to 2 nibbles)." msgstr "" -#: libraries/messages.inc.php:1168 +#: libraries/messages.inc.php:1164 msgid "" "Displays a clickable thumbnail. The options are the maximum width and height " "in pixels. The original aspect ratio is preserved." msgstr "" -#: libraries/messages.inc.php:1169 +#: libraries/messages.inc.php:1165 msgid "Displays a link to download this image." msgstr "" -#: libraries/messages.inc.php:1170 +#: libraries/messages.inc.php:1166 msgid "See image/jpeg: inline" msgstr "" -#: libraries/messages.inc.php:1171 +#: libraries/messages.inc.php:1167 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 " @@ -6143,7 +6143,7 @@ msgid "" "gmdate() function." msgstr "" -#: libraries/messages.inc.php:1172 +#: libraries/messages.inc.php:1168 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 " @@ -6157,31 +6157,31 @@ msgid "" "(Default 1)." msgstr "" -#: libraries/messages.inc.php:1173 +#: libraries/messages.inc.php:1169 msgid "" "Displays the contents of the field as-is, without running it through " "htmlspecialchars(). That is, the field is assumed to contain valid HTML." msgstr "" -#: libraries/messages.inc.php:1174 +#: libraries/messages.inc.php:1170 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." msgstr "" -#: libraries/messages.inc.php:1175 +#: libraries/messages.inc.php:1171 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." msgstr "" -#: libraries/messages.inc.php:1176 +#: libraries/messages.inc.php:1172 msgid "Formats text as SQL query with syntax highlighting." msgstr "" -#: libraries/messages.inc.php:1177 +#: libraries/messages.inc.php:1173 msgid "" "Displays a part of a string. The first option is the number of characters to " "skip from the beginning of the string (Default 0). The second option is the " @@ -6190,69 +6190,69 @@ msgid "" "(Default: \"...\")." msgstr "" -#: libraries/messages.inc.php:1179 server_binlog.php:183 server_binlog.php:186 +#: libraries/messages.inc.php:1175 server_binlog.php:183 server_binlog.php:186 #: server_processlist.php:49 server_processlist.php:51 msgid "Truncate Shown Queries" msgstr "" -#: libraries/messages.inc.php:1180 libraries/mysql_charsets.lib.php:301 +#: libraries/messages.inc.php:1176 libraries/mysql_charsets.lib.php:301 #: libraries/mysql_charsets.lib.php:389 msgid "Turkish" msgstr "" -#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:304 +#: libraries/messages.inc.php:1179 libraries/mysql_charsets.lib.php:304 #: libraries/mysql_charsets.lib.php:386 msgid "Ukrainian" msgstr "" -#: libraries/messages.inc.php:1185 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:1181 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 msgid "Unicode" msgstr "" -#: libraries/messages.inc.php:1187 libraries/mysql_charsets.lib.php:398 +#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:398 #: libraries/mysql_charsets.lib.php:405 msgid "unknown" msgstr "" -#: libraries/messages.inc.php:1190 server_privileges.php:1152 +#: libraries/messages.inc.php:1186 server_privileges.php:1152 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/messages.inc.php:1191 user_password.php:112 +#: libraries/messages.inc.php:1187 user_password.php:112 msgid "The profile has been updated." msgstr "" -#: libraries/messages.inc.php:1193 libraries/relation.lib.php:138 +#: libraries/messages.inc.php:1189 libraries/relation.lib.php:138 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" -#: libraries/messages.inc.php:1194 +#: libraries/messages.inc.php:1190 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/messages.inc.php:1204 tbl_printview.php:314 tbl_structure.php:661 +#: libraries/messages.inc.php:1200 tbl_printview.php:314 tbl_structure.php:661 msgid "Usage" msgstr "" -#: libraries/messages.inc.php:1205 +#: libraries/messages.inc.php:1201 msgid "Enclose table and field names with backquotes" msgstr "" -#: libraries/messages.inc.php:1206 libraries/replication_gui.lib.php:314 +#: libraries/messages.inc.php:1202 libraries/replication_gui.lib.php:314 #: server_privileges.php:740 msgid "Use Host Table" msgstr "" -#: libraries/messages.inc.php:1207 server_privileges.php:848 +#: libraries/messages.inc.php:1203 server_privileges.php:848 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/messages.inc.php:1209 libraries/replication_gui.lib.php:55 +#: libraries/messages.inc.php:1205 libraries/replication_gui.lib.php:55 #: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245 #: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255 #: server_privileges.php:672 server_privileges.php:675 @@ -6260,35 +6260,35 @@ msgstr "" msgid "User name" msgstr "" -#: libraries/messages.inc.php:1210 server_privileges.php:1645 +#: libraries/messages.inc.php:1206 server_privileges.php:1645 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/messages.inc.php:1211 server_privileges.php:1365 +#: libraries/messages.inc.php:1207 server_privileges.php:1365 msgid "User overview" msgstr "" -#: libraries/messages.inc.php:1212 server_privileges.php:1261 +#: libraries/messages.inc.php:1208 server_privileges.php:1261 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/messages.inc.php:1213 server_privileges.php:2026 +#: libraries/messages.inc.php:1209 server_privileges.php:2026 #, php-format msgid "Users having access to "%s"" msgstr "" -#: libraries/messages.inc.php:1214 main.php:189 server_privileges.php:1350 +#: libraries/messages.inc.php:1210 main.php:189 server_privileges.php:1350 #: server_privileges.php:1497 server_privileges.php:1611 #: server_privileges.php:2029 server_processlist.php:54 msgid "User" msgstr "" -#: libraries/messages.inc.php:1215 tbl_change.php:1171 +#: libraries/messages.inc.php:1211 tbl_change.php:1171 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/messages.inc.php:1217 libraries/replication_gui.lib.php:251 +#: libraries/messages.inc.php:1213 libraries/replication_gui.lib.php:251 #: libraries/replication_gui.lib.php:319 libraries/replication_gui.lib.php:342 #: server_privileges.php:678 server_privileges.php:745 #: server_privileges.php:769 server_privileges.php:1889 @@ -6296,91 +6296,91 @@ msgstr "" msgid "Use text field" msgstr "" -#: libraries/messages.inc.php:1221 libraries/sqlvalidator.lib.php:68 +#: libraries/messages.inc.php:1217 libraries/sqlvalidator.lib.php:68 #, php-format msgid "" "The SQL validator could not be initialized. Please check if you have " "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" -#: libraries/messages.inc.php:1222 libraries/replication_gui.lib.php:111 +#: libraries/messages.inc.php:1218 libraries/replication_gui.lib.php:111 #: server_status.php:627 tbl_change.php:324 tbl_printview.php:370 #: tbl_select.php:139 tbl_structure.php:730 msgid "Value" msgstr "" -#: libraries/messages.inc.php:1223 libraries/replication_gui.lib.php:110 +#: libraries/messages.inc.php:1219 libraries/replication_gui.lib.php:110 #: libraries/sql_query_form.lib.php:445 server_status.php:626 #: server_variables.php:52 msgid "Variable" msgstr "" -#: libraries/messages.inc.php:1225 server_export.php:21 +#: libraries/messages.inc.php:1221 server_export.php:21 msgid "View dump (schema) of databases" msgstr "" -#: libraries/messages.inc.php:1227 tbl_export.php:23 +#: libraries/messages.inc.php:1223 tbl_export.php:23 msgid "View dump (schema) of table" msgstr "" -#: libraries/messages.inc.php:1231 view_create.php:142 +#: libraries/messages.inc.php:1227 view_create.php:142 msgid "VIEW name" msgstr "" -#: libraries/messages.inc.php:1237 main.php:205 +#: libraries/messages.inc.php:1233 main.php:205 msgid "Web server" msgstr "" -#: libraries/messages.inc.php:1239 libraries/mysql_charsets.lib.php:277 +#: libraries/messages.inc.php:1235 libraries/mysql_charsets.lib.php:277 #: libraries/mysql_charsets.lib.php:325 msgid "West European" msgstr "" -#: libraries/messages.inc.php:1240 main.php:230 +#: libraries/messages.inc.php:1236 main.php:230 msgid "Wiki" msgstr "" -#: libraries/messages.inc.php:1241 server_privileges.php:2138 +#: libraries/messages.inc.php:1237 server_privileges.php:2138 msgid "wildcard" msgstr "" -#: libraries/messages.inc.php:1248 +#: libraries/messages.inc.php:1244 msgid "Export contents" msgstr "" -#: libraries/messages.inc.php:1249 +#: libraries/messages.inc.php:1245 msgid "Export functions" msgstr "" -#: libraries/messages.inc.php:1250 +#: libraries/messages.inc.php:1246 msgid "Export procedures" msgstr "" -#: libraries/messages.inc.php:1251 +#: libraries/messages.inc.php:1247 msgid "Export Structure Schemas (recommended)" msgstr "" -#: libraries/messages.inc.php:1252 +#: libraries/messages.inc.php:1248 msgid "Export tables" msgstr "" -#: libraries/messages.inc.php:1253 +#: libraries/messages.inc.php:1249 msgid "Export triggers" msgstr "" -#: libraries/messages.inc.php:1254 +#: libraries/messages.inc.php:1250 msgid "Export views" msgstr "" -#: libraries/messages.inc.php:1255 +#: libraries/messages.inc.php:1251 msgid "XML" msgstr "" -#: libraries/messages.inc.php:1259 server_privileges.php:592 +#: libraries/messages.inc.php:1255 server_privileges.php:592 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" -#: libraries/messages.inc.php:1260 +#: libraries/messages.inc.php:1256 msgid "\"zipped\"" msgstr "" diff --git a/po/te.po b/po/te.po index f5041f116..76266063a 100644 --- 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-05-13 11:25+0200\n" +"POT-Creation-Date: 2010-05-13 11:30+0200\n" "PO-Revision-Date: 2010-04-02 12:04+0200\n" "Last-Translator: \n" "Language-Team: Telugu \n" @@ -18,19 +18,19 @@ msgstr "" "X-Generator: Pootle 2.0.1\n" #: browse_foreigners.php:38 browse_foreigners.php:59 -#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:870 +#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:866 #: server_privileges.php:1475 msgid "Show all" msgstr "అన్నీ చూపించు" #: browse_foreigners.php:82 db_operations.php:648 -#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:394 -#: libraries/export/pdf.php:147 libraries/messages.inc.php:597 +#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394 +#: libraries/export/pdf.php:147 libraries/messages.inc.php:593 #: pdf_schema.php:283 pdf_schema.php:1123 pdf_schema.php:1139 msgid "Page number:" msgstr "పుట సంఖ్య:" -#: browse_foreigners.php:132 libraries/messages.inc.php:1242 +#: browse_foreigners.php:132 libraries/messages.inc.php:1238 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -41,7 +41,7 @@ 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/db_links.inc.php:75 -#: libraries/messages.inc.php:841 libraries/tbl_links.inc.php:63 +#: libraries/messages.inc.php:837 libraries/tbl_links.inc.php:63 msgid "Search" msgstr "శోధించు" @@ -50,12 +50,12 @@ msgstr "శోధించు" #: db_search.php:362 db_structure.php:567 js/messages.php:48 #: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2267 +#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 #: 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 #: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614 -#: libraries/messages.inc.php:361 libraries/replication_gui.lib.php:73 +#: libraries/messages.inc.php:357 libraries/replication_gui.lib.php:73 #: libraries/replication_gui.lib.php:365 libraries/select_server.lib.php:104 #: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477 #: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782 @@ -75,33 +75,33 @@ msgid "Go" msgstr "వెళ్ళు" #: browse_foreigners.php:168 browse_foreigners.php:172 -#: libraries/Index.class.php:442 libraries/messages.inc.php:459 +#: libraries/Index.class.php:442 libraries/messages.inc.php:455 #: tbl_tracking.php:320 msgid "Keyname" msgstr "" #: browse_foreigners.php:169 browse_foreigners.php:171 -#: libraries/messages.inc.php:252 server_collations.php:55 +#: libraries/messages.inc.php:248 server_collations.php:55 #: server_collations.php:67 server_engines.php:59 server_status.php:628 msgid "Description" msgstr "వివరణ" #: browse_foreigners.php:247 browse_foreigners.php:256 #: browse_foreigners.php:268 browse_foreigners.php:276 -#: libraries/messages.inc.php:1218 +#: libraries/messages.inc.php:1214 msgid "Use this value" msgstr "" -#: db_create.php:46 libraries/messages.inc.php:215 +#: db_create.php:46 libraries/messages.inc.php:211 #, php-format msgid "Database %1$s has been created." msgstr "" -#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:232 +#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:228 msgid "Database comment: " msgstr "" -#: db_datadict.php:165 libraries/messages.inc.php:1070 +#: db_datadict.php:165 libraries/messages.inc.php:1066 #: libraries/tbl_properties.inc.php:724 pdf_schema.php:1236 #: tbl_operations.php:345 tbl_printview.php:130 msgid "Table comments" @@ -110,7 +110,7 @@ msgstr "పట్టిక వ్యాఖ్యలు" #: db_datadict.php:174 db_qbe.php:174 libraries/Index.class.php:446 #: libraries/export/htmlword.php:244 libraries/export/latex.php:360 #: libraries/export/odt.php:294 libraries/export/texytext.php:233 -#: libraries/messages.inc.php:317 libraries/tbl_properties.inc.php:99 +#: libraries/messages.inc.php:313 libraries/tbl_properties.inc.php:99 #: libraries/tbl_properties.inc.php:275 pdf_schema.php:1262 #: pdf_schema.php:1283 tbl_change.php:308 tbl_indexes.php:189 #: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135 @@ -122,7 +122,7 @@ msgstr "" #: libraries/db_events.inc.php:31 libraries/db_routines.inc.php:42 #: 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/messages.inc.php:1181 +#: libraries/export/texytext.php:234 libraries/messages.inc.php:1177 #: libraries/tbl_properties.inc.php:100 pdf_schema.php:1263 #: pdf_schema.php:1284 server_privileges.php:2031 tbl_change.php:287 #: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313 @@ -134,7 +134,7 @@ msgstr "రకం" #: db_datadict.php:177 libraries/Index.class.php:449 #: libraries/export/htmlword.php:246 libraries/export/latex.php:360 #: libraries/export/odt.php:300 libraries/export/texytext.php:235 -#: libraries/messages.inc.php:576 libraries/tbl_properties.inc.php:109 +#: libraries/messages.inc.php:572 libraries/tbl_properties.inc.php:109 #: pdf_schema.php:1265 pdf_schema.php:1286 tbl_change.php:323 #: tbl_printview.php:145 tbl_structure.php:181 tbl_tracking.php:276 #: tbl_tracking.php:327 @@ -143,7 +143,7 @@ msgstr "" #: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 -#: libraries/export/texytext.php:236 libraries/messages.inc.php:238 +#: libraries/export/texytext.php:236 libraries/messages.inc.php:234 #: libraries/tbl_properties.inc.php:106 pdf_schema.php:1266 #: pdf_schema.php:1287 tbl_printview.php:146 tbl_structure.php:182 #: tbl_tracking.php:277 @@ -152,14 +152,14 @@ msgstr "" #: db_datadict.php:182 libraries/export/htmlword.php:249 #: libraries/export/latex.php:362 libraries/export/odt.php:307 -#: libraries/export/texytext.php:238 libraries/messages.inc.php:483 +#: libraries/export/texytext.php:238 libraries/messages.inc.php:479 #: pdf_schema.php:1268 pdf_schema.php:1289 tbl_printview.php:150 msgid "Links to" msgstr "" #: db_datadict.php:184 db_printview.php:112 libraries/export/htmlword.php:252 #: libraries/export/latex.php:365 libraries/export/odt.php:312 -#: libraries/export/texytext.php:241 libraries/messages.inc.php:163 +#: libraries/export/texytext.php:241 libraries/messages.inc.php:159 #: libraries/tbl_properties.inc.php:130 pdf_schema.php:1279 #: pdf_schema.php:1290 tbl_printview.php:152 msgid "Comments" @@ -168,7 +168,7 @@ msgstr "వ్యాఖ్యలు" #: db_datadict.php:267 libraries/Index.class.php:359 #: 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/messages.inc.php:559 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:555 #: libraries/mult_submits.inc.php:263 pdf_schema.php:1344 #: server_privileges.php:1529 server_privileges.php:1540 #: server_privileges.php:1850 server_privileges.php:1855 @@ -180,7 +180,7 @@ msgstr "కాదు" #: db_datadict.php:267 libraries/Index.class.php:360 #: libraries/Index.class.php:385 libraries/export/htmlword.php:322 #: libraries/export/latex.php:430 libraries/export/odt.php:368 -#: libraries/export/texytext.php:311 libraries/messages.inc.php:1257 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:1253 #: libraries/mult_submits.inc.php:45 libraries/mult_submits.inc.php:50 #: libraries/mult_submits.inc.php:55 libraries/mult_submits.inc.php:60 #: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:101 @@ -194,111 +194,111 @@ msgstr "కాదు" msgid "Yes" msgstr "అవును" -#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:670 +#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:666 #: tbl_printview.php:498 msgid "Print" msgstr "" -#: db_export.php:29 libraries/messages.inc.php:1226 +#: db_export.php:29 libraries/messages.inc.php:1222 msgid "View dump (schema) of database" msgstr "" #: db_export.php:33 db_printview.php:96 db_qbe.php:102 db_structure.php:51 -#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:568 +#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:564 #: navigation.php:346 msgid "No tables found in database." msgstr "" -#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:845 +#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:841 #: server_export.php:27 msgid "Select All" msgstr "" -#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1188 +#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1184 #: server_export.php:29 msgid "Unselect All" msgstr "" # మొదటి అనువాదము -#: db_operations.php:38 libraries/messages.inc.php:213 tbl_create.php:54 +#: db_operations.php:38 libraries/messages.inc.php:209 tbl_create.php:54 msgid "The database name is empty!" msgstr "డేటాబేస్ పేరు ఖాళీగా ఉన్నది" -#: db_operations.php:236 libraries/messages.inc.php:753 +#: db_operations.php:236 libraries/messages.inc.php:749 #, php-format msgid "Database %s has been renamed to %s" msgstr "" -#: db_operations.php:240 libraries/messages.inc.php:178 +#: db_operations.php:240 libraries/messages.inc.php:174 #, php-format msgid "Database %s has been copied to %s" msgstr "" -#: db_operations.php:410 libraries/messages.inc.php:236 +#: db_operations.php:410 libraries/messages.inc.php:232 msgid "Rename database to" msgstr "" # మొదటి అనువాదము -#: db_operations.php:415 libraries/messages.inc.php:161 +#: db_operations.php:415 libraries/messages.inc.php:157 #: server_processlist.php:57 msgid "Command" msgstr "ఆజ్ఞ" # మొదటి అనువాదము -#: db_operations.php:425 libraries/messages.inc.php:58 tbl_change.php:1143 +#: db_operations.php:425 libraries/messages.inc.php:54 tbl_change.php:1143 msgid "and then" msgstr "మరియు తరువాత" -#: db_operations.php:451 libraries/messages.inc.php:233 +#: db_operations.php:451 libraries/messages.inc.php:229 msgid "Copy database to" msgstr "" -#: db_operations.php:458 libraries/messages.inc.php:1043 +#: db_operations.php:458 libraries/messages.inc.php:1039 #: tbl_operations.php:526 tbl_tracking.php:388 msgid "Structure only" msgstr "" -#: db_operations.php:459 libraries/messages.inc.php:1041 +#: db_operations.php:459 libraries/messages.inc.php:1037 #: tbl_operations.php:527 tbl_tracking.php:390 msgid "Structure and data" msgstr "" -#: db_operations.php:460 libraries/messages.inc.php:229 tbl_operations.php:528 +#: db_operations.php:460 libraries/messages.inc.php:225 tbl_operations.php:528 #: tbl_tracking.php:389 msgid "Data only" msgstr "" -#: db_operations.php:468 libraries/messages.inc.php:186 +#: db_operations.php:468 libraries/messages.inc.php:182 msgid "CREATE DATABASE before copying" msgstr "" #: db_operations.php:471 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 -#: libraries/export/sql.php:82 libraries/messages.inc.php:30 +#: libraries/export/sql.php:82 libraries/messages.inc.php:26 #: tbl_operations.php:534 #, php-format msgid "Add %s" msgstr "" -#: db_operations.php:475 libraries/messages.inc.php:29 tbl_operations.php:297 +#: db_operations.php:475 libraries/messages.inc.php:25 tbl_operations.php:297 #: tbl_operations.php:536 msgid "Add AUTO_INCREMENT value" msgstr "" -#: db_operations.php:479 libraries/messages.inc.php:31 tbl_operations.php:543 +#: db_operations.php:479 libraries/messages.inc.php:27 tbl_operations.php:543 msgid "Add constraints" msgstr "" -#: db_operations.php:492 libraries/messages.inc.php:1059 +#: db_operations.php:492 libraries/messages.inc.php:1055 msgid "Switch to copied database" msgstr "" -#: db_operations.php:533 libraries/messages.inc.php:89 +#: db_operations.php:533 libraries/messages.inc.php:85 msgid "BLOB Repository" msgstr "" #: db_operations.php:536 db_tracking.php:76 libraries/common.lib.php:1350 -#: libraries/messages.inc.php:1037 libraries/server_links.inc.php:49 +#: libraries/messages.inc.php:1033 libraries/server_links.inc.php:49 #: server_processlist.php:59 tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "స్థితి" @@ -310,11 +310,11 @@ msgctxt "BLOB repository" msgid "Enabled" msgstr "ముగింపు" -#: db_operations.php:548 libraries/messages.inc.php:93 +#: db_operations.php:548 libraries/messages.inc.php:89 msgid "Disable" msgstr "" -#: db_operations.php:558 libraries/messages.inc.php:90 +#: db_operations.php:558 libraries/messages.inc.php:86 msgid "Damaged" msgstr "" @@ -328,12 +328,12 @@ msgctxt "BLOB repository" msgid "Disabled" msgstr "" -#: db_operations.php:574 libraries/messages.inc.php:96 +#: db_operations.php:574 libraries/messages.inc.php:92 msgid "Enable" msgstr "" #: db_operations.php:598 libraries/Index.class.php:448 -#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:158 +#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:154 #: 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:361 @@ -342,7 +342,7 @@ msgstr "" msgid "Collation" msgstr "" -#: db_operations.php:609 libraries/messages.inc.php:742 main.php:316 +#: db_operations.php:609 libraries/messages.inc.php:738 main.php:316 #: pdf_schema.php:34 #, php-format msgid "" @@ -350,58 +350,58 @@ msgid "" "deactivated. To find out why click %shere%s." msgstr "" -#: db_operations.php:645 libraries/messages.inc.php:264 pdf_pages.php:528 +#: db_operations.php:645 libraries/messages.inc.php:260 pdf_pages.php:528 msgid "Display PDF schema" msgstr "" -#: db_operations.php:661 libraries/messages.inc.php:877 pdf_pages.php:529 +#: db_operations.php:661 libraries/messages.inc.php:873 pdf_pages.php:529 msgid "Show grid" msgstr "" -#: db_operations.php:664 libraries/messages.inc.php:874 pdf_pages.php:530 +#: db_operations.php:664 libraries/messages.inc.php:870 pdf_pages.php:530 msgid "Show color" msgstr "రంగుని చూపించు" -#: db_operations.php:666 libraries/messages.inc.php:998 pdf_pages.php:531 +#: db_operations.php:666 libraries/messages.inc.php:994 pdf_pages.php:531 msgid "Show dimension of tables" msgstr "" -#: db_operations.php:669 libraries/messages.inc.php:52 pdf_pages.php:532 +#: db_operations.php:669 libraries/messages.inc.php:48 pdf_pages.php:532 msgid "Display all tables with the same width" msgstr "" -#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:227 +#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:223 #: pdf_pages.php:533 msgid "Data Dictionary" msgstr "" -#: db_operations.php:674 libraries/messages.inc.php:884 pdf_pages.php:534 +#: db_operations.php:674 libraries/messages.inc.php:880 pdf_pages.php:534 msgid "Only show keys" msgstr "" -#: db_operations.php:676 libraries/messages.inc.php:875 pdf_pages.php:535 +#: db_operations.php:676 libraries/messages.inc.php:871 pdf_pages.php:535 msgid "Data Dictionary Format" msgstr "" -#: db_operations.php:678 libraries/messages.inc.php:464 pdf_pages.php:537 +#: db_operations.php:678 libraries/messages.inc.php:460 pdf_pages.php:537 msgid "Landscape" msgstr "" -#: db_operations.php:679 libraries/messages.inc.php:663 pdf_pages.php:538 +#: db_operations.php:679 libraries/messages.inc.php:659 pdf_pages.php:538 msgid "Portrait" msgstr "" -#: db_operations.php:682 libraries/messages.inc.php:599 pdf_pages.php:541 +#: db_operations.php:682 libraries/messages.inc.php:595 pdf_pages.php:541 msgid "Paper size" msgstr "కాగితపు పరిమాణం" -#: db_operations.php:706 libraries/messages.inc.php:281 +#: db_operations.php:706 libraries/messages.inc.php:277 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 libraries/messages.inc.php:1087 +#: libraries/header.inc.php:126 libraries/messages.inc.php:1083 #: pdf_pages.php:405 server_privileges.php:1626 server_privileges.php:1682 #: server_privileges.php:1946 server_synchronize.php:423 #: server_synchronize.php:866 tbl_tracking.php:592 test/theme.php:75 @@ -409,180 +409,180 @@ msgid "Table" msgstr "" #: db_printview.php:105 libraries/db_structure.lib.php:56 -#: libraries/messages.inc.php:735 +#: libraries/messages.inc.php:731 msgid "Records" msgstr "" #: db_printview.php:109 libraries/db_structure.lib.php:67 -#: libraries/messages.inc.php:1003 tbl_indexes.php:190 +#: libraries/messages.inc.php:999 tbl_indexes.php:190 msgid "Size" msgstr "పరిమాణం" # మొదటి అనువాదము #: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 -#: libraries/export/sql.php:899 libraries/messages.inc.php:436 +#: libraries/export/sql.php:899 libraries/messages.inc.php:432 msgid "in use" msgstr "వాడుకలో ఉన్నది" #: db_printview.php:187 libraries/db_info.inc.php:88 -#: libraries/export/sql.php:514 libraries/messages.inc.php:1032 +#: libraries/export/sql.php:514 libraries/messages.inc.php:1028 #: pdf_schema.php:1241 tbl_printview.php:434 tbl_structure.php:810 msgid "Creation" msgstr "" #: db_printview.php:196 libraries/db_info.inc.php:93 -#: libraries/export/sql.php:519 libraries/messages.inc.php:1036 +#: libraries/export/sql.php:519 libraries/messages.inc.php:1032 #: pdf_schema.php:1246 tbl_printview.php:444 tbl_structure.php:818 msgid "Last update" msgstr "" #: db_printview.php:205 libraries/db_info.inc.php:98 -#: libraries/export/sql.php:524 libraries/messages.inc.php:1031 +#: libraries/export/sql.php:524 libraries/messages.inc.php:1027 #: pdf_schema.php:1251 tbl_printview.php:454 tbl_structure.php:826 msgid "Last check" msgstr "" -#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1085 +#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1081 #, php-format msgid "%s table(s)" msgstr "" #: db_qbe.php:29 libraries/display_tbl.lib.php:1981 -#: libraries/messages.inc.php:1051 libraries/sql_query_form.lib.php:140 +#: libraries/messages.inc.php:1047 libraries/sql_query_form.lib.php:140 #: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131 #: view_operations.php:62 msgid "Your SQL query has been executed successfully" msgstr "" -#: db_qbe.php:42 libraries/messages.inc.php:371 +#: db_qbe.php:42 libraries/messages.inc.php:367 msgid "You have to choose at least one column to display" msgstr "" # మొదటి అనువాదము #: db_qbe.php:200 libraries/db_structure.lib.php:104 -#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1014 +#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1010 msgid "Sort" msgstr "క్రమంలో పేర్చు" #: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111 #: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828 -#: libraries/messages.inc.php:69 server_databases.php:170 +#: libraries/messages.inc.php:65 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314 msgid "Ascending" msgstr "ఆరోహణ" #: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119 #: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825 -#: libraries/messages.inc.php:251 server_databases.php:170 +#: libraries/messages.inc.php:247 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315 msgid "Descending" msgstr "అవరోహణ" # మొదటి అనువాదము #: db_qbe.php:264 db_tracking.php:78 libraries/display_tbl.lib.php:308 -#: libraries/messages.inc.php:888 tbl_change.php:277 tbl_tracking.php:597 +#: libraries/messages.inc.php:884 tbl_change.php:277 tbl_tracking.php:597 msgid "Show" msgstr "చూపించు" -#: db_qbe.php:300 libraries/messages.inc.php:202 +#: db_qbe.php:300 libraries/messages.inc.php:198 msgid "Criteria" msgstr "" #: db_qbe.php:353 db_qbe.php:435 db_qbe.php:527 db_qbe.php:558 -#: libraries/messages.inc.php:718 +#: libraries/messages.inc.php:714 msgid "Ins" msgstr "" #: db_qbe.php:357 db_qbe.php:439 db_qbe.php:524 db_qbe.php:555 -#: libraries/messages.inc.php:56 +#: libraries/messages.inc.php:52 msgid "And" msgstr "మరియు" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:529 db_qbe.php:560 -#: libraries/messages.inc.php:717 +#: libraries/messages.inc.php:713 msgid "Del" msgstr "" # మొదటి అనువాదము #: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553 -#: libraries/display_import.lib.php:166 libraries/messages.inc.php:592 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:588 #: libraries/tbl_properties.inc.php:779 server_privileges.php:258 #: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288 msgid "Or" msgstr "లేదా" -#: db_qbe.php:507 libraries/messages.inc.php:516 +#: db_qbe.php:507 libraries/messages.inc.php:512 msgid "Modify" msgstr "" -#: db_qbe.php:584 libraries/messages.inc.php:33 +#: db_qbe.php:584 libraries/messages.inc.php:29 msgid "Add/Delete Criteria Row" msgstr "" -#: db_qbe.php:596 libraries/messages.inc.php:32 +#: db_qbe.php:596 libraries/messages.inc.php:28 msgid "Add/Delete Field Columns" msgstr "" -#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1192 +#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1188 msgid "Update Query" msgstr "" -#: db_qbe.php:617 libraries/messages.inc.php:1216 +#: db_qbe.php:617 libraries/messages.inc.php:1212 msgid "Use Tables" msgstr "" -#: db_qbe.php:640 libraries/messages.inc.php:723 +#: db_qbe.php:640 libraries/messages.inc.php:719 #, php-format msgid "SQL query on database %s:" msgstr "" -#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:823 +#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:819 msgid "Submit Query" msgstr "" #: db_search.php:68 libraries/auth/config.auth.lib.php:84 #: libraries/auth/config.auth.lib.php:103 #: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52 -#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:26 +#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:22 msgid "Access denied" msgstr "" -#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:836 +#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:832 msgid "at least one of the words" msgstr "" -#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:837 +#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:833 msgid "all words" msgstr "అన్ని పదాలూ" -#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:838 +#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:834 msgid "the exact phrase" msgstr "" -#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:839 +#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:835 msgid "as regular expression" msgstr "" -#: db_search.php:242 libraries/messages.inc.php:840 +#: db_search.php:242 libraries/messages.inc.php:836 #, php-format msgid "Search results for \"%s\" %s:" msgstr "" -#: db_search.php:260 libraries/messages.inc.php:579 +#: db_search.php:260 libraries/messages.inc.php:575 #, php-format msgid "%s match(es) inside table %s" 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/messages.inc.php:108 +#: db_structure.php:105 libraries/messages.inc.php:104 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468 msgid "Browse" msgstr "" #: db_search.php:272 libraries/display_tbl.lib.php:1165 -#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:243 +#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:239 #: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406 #: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377 #: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216 @@ -590,46 +590,46 @@ msgstr "" msgid "Delete" msgstr "తొలగించు" -#: db_search.php:285 libraries/messages.inc.php:580 +#: db_search.php:285 libraries/messages.inc.php:576 #, php-format msgid "Total: %s match(es)" msgstr "మొత్తం: %s పోలిక(లు)" -#: db_search.php:299 libraries/messages.inc.php:832 +#: db_search.php:299 libraries/messages.inc.php:828 msgid "Search in database" msgstr "" -#: db_search.php:302 libraries/messages.inc.php:835 +#: db_search.php:302 libraries/messages.inc.php:831 msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgstr "" # మొదటి అనువాదము -#: db_search.php:307 libraries/messages.inc.php:842 +#: db_search.php:307 libraries/messages.inc.php:838 msgid "Find:" msgstr "వెతుకు" -#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1017 +#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1013 msgid "Words are separated by a space character (\" \")." msgstr "" -#: db_search.php:325 libraries/messages.inc.php:834 +#: db_search.php:325 libraries/messages.inc.php:830 msgid "Inside table(s):" msgstr "" -#: db_search.php:355 libraries/messages.inc.php:833 +#: db_search.php:355 libraries/messages.inc.php:829 msgid "Inside field:" 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/messages.inc.php:431 libraries/sql_query_form.lib.php:334 +#: libraries/messages.inc.php:427 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/db_links.inc.php:63 libraries/export/latex.php:337 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:1048 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:1044 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 #: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269 msgid "Structure" @@ -638,8 +638,8 @@ 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:1642 -#: libraries/db_links.inc.php:100 libraries/messages.inc.php:272 +#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/db_links.inc.php:100 libraries/messages.inc.php:268 #: 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 @@ -650,40 +650,40 @@ 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:1641 -#: libraries/messages.inc.php:284 libraries/mult_submits.inc.php:39 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: libraries/messages.inc.php:280 libraries/mult_submits.inc.php:39 #: libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "ఖాళీ" -#: db_structure.php:316 libraries/messages.inc.php:1075 +#: db_structure.php:316 libraries/messages.inc.php:1071 #: libraries/tbl_links.inc.php:100 #, php-format msgid "Table %s has been emptied" msgstr "" -#: db_structure.php:326 libraries/messages.inc.php:1229 +#: db_structure.php:326 libraries/messages.inc.php:1225 #: libraries/tbl_links.inc.php:133 #, php-format msgid "View %s has been dropped" msgstr "" -#: db_structure.php:326 libraries/messages.inc.php:1074 +#: db_structure.php:326 libraries/messages.inc.php:1070 #: libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "" -#: db_structure.php:333 libraries/messages.inc.php:1128 +#: db_structure.php:333 libraries/messages.inc.php:1124 msgid "Tracking is active." msgstr "" -#: db_structure.php:335 libraries/messages.inc.php:1129 +#: db_structure.php:335 libraries/messages.inc.php:1125 msgid "Tracking is not active." msgstr "" #: db_structure.php:420 libraries/display_tbl.lib.php:1944 -#: libraries/messages.inc.php:1228 +#: libraries/messages.inc.php:1224 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -692,84 +692,84 @@ msgstr "" # మొదటి అనువాదము #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 -#: libraries/messages.inc.php:1233 libraries/tbl_info.inc.php:66 +#: libraries/messages.inc.php:1229 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/messages.inc.php:773 libraries/server_links.inc.php:70 +#: libraries/messages.inc.php:769 libraries/server_links.inc.php:70 #: server_replication.php:33 server_replication.php:164 server_status.php:258 msgid "Replication" msgstr "" # మొదటి అనువాదము -#: db_structure.php:489 libraries/messages.inc.php:1053 +#: db_structure.php:489 libraries/messages.inc.php:1049 msgid "Sum" msgstr "మొత్తము" #: db_structure.php:496 libraries/StorageEngine.class.php:356 -#: libraries/messages.inc.php:239 +#: libraries/messages.inc.php:235 #, 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 #: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086 -#: libraries/messages.inc.php:1243 libraries/mult_submits.inc.php:16 +#: libraries/messages.inc.php:1239 libraries/mult_submits.inc.php:16 #: server_databases.php:346 server_databases.php:351 #: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465 msgid "With selected:" msgstr "" #: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: libraries/messages.inc.php:148 server_databases.php:348 +#: libraries/messages.inc.php:144 server_databases.php:348 #: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459 msgid "Check All" msgstr "" #: db_structure.php:531 libraries/display_tbl.lib.php:2077 -#: libraries/messages.inc.php:1184 libraries/replication_gui.lib.php:33 +#: libraries/messages.inc.php:1180 libraries/replication_gui.lib.php:33 #: server_databases.php:350 server_privileges.php:533 #: server_privileges.php:1564 tbl_structure.php:463 msgid "Uncheck All" msgstr "" -#: db_structure.php:536 libraries/messages.inc.php:150 +#: db_structure.php:536 libraries/messages.inc.php:146 msgid "Check tables having overhead" msgstr "" #: db_structure.php:547 db_structure.php:548 db_structure.php:599 -#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:672 +#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:668 #: libraries/mult_submits.inc.php:28 tbl_structure.php:493 #: tbl_structure.php:495 msgid "Print view" msgstr "" -#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:153 +#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:149 #: libraries/mult_submits.inc.php:42 tbl_operations.php:579 msgid "Check table" msgstr "" -#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:590 +#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:586 #: libraries/mult_submits.inc.php:47 tbl_operations.php:619 #: tbl_structure.php:710 tbl_structure.php:712 msgid "Optimize table" msgstr "" -#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:758 +#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:754 #: libraries/mult_submits.inc.php:52 tbl_operations.php:609 msgid "Repair table" msgstr "" -#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:55 +#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:51 #: libraries/mult_submits.inc.php:57 tbl_operations.php:599 msgid "Analyze table" msgstr "" #: db_structure.php:557 db_structure.php:558 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/messages.inc.php:310 +#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:306 #: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84 #: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109 #: server_privileges.php:1341 setup/frames/menu.inc.php:22 @@ -777,7 +777,7 @@ msgstr "" msgid "Export" msgstr "" -#: db_tracking.php:66 libraries/messages.inc.php:1151 +#: db_tracking.php:66 libraries/messages.inc.php:1147 msgid "Tracked tables" msgstr "" @@ -786,7 +786,7 @@ msgstr "" #: 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/header_printview.inc.php:58 libraries/messages.inc.php:212 +#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:208 #: navigation.php:233 server_databases.php:169 server_privileges.php:1621 #: server_privileges.php:1682 server_privileges.php:1940 #: server_processlist.php:56 server_synchronize.php:1179 @@ -794,92 +794,92 @@ msgstr "" msgid "Database" msgstr "డేటాబేస్" -#: db_tracking.php:73 libraries/messages.inc.php:1146 +#: db_tracking.php:73 libraries/messages.inc.php:1142 msgid "Last version" msgstr "" -#: db_tracking.php:74 libraries/messages.inc.php:1145 tbl_tracking.php:594 +#: db_tracking.php:74 libraries/messages.inc.php:1141 tbl_tracking.php:594 msgid "Created" msgstr "" -#: db_tracking.php:75 libraries/messages.inc.php:1147 tbl_tracking.php:595 +#: db_tracking.php:75 libraries/messages.inc.php:1143 tbl_tracking.php:595 msgid "Updated" msgstr "" #: db_tracking.php:77 libraries/Index.class.php:440 -#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:27 +#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:23 #: server_databases.php:203 server_privileges.php:1503 #: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187 msgid "Action" msgstr "చర్య" -#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:247 +#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:243 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:106 libraries/messages.inc.php:1142 tbl_tracking.php:548 +#: db_tracking.php:106 libraries/messages.inc.php:1138 tbl_tracking.php:548 #: tbl_tracking.php:606 tbl_tracking.php:613 msgid "active" msgstr "" -#: db_tracking.php:108 libraries/messages.inc.php:1143 tbl_tracking.php:550 +#: db_tracking.php:108 libraries/messages.inc.php:1139 tbl_tracking.php:550 #: tbl_tracking.php:608 tbl_tracking.php:610 msgid "not active" msgstr "" -#: db_tracking.php:121 libraries/messages.inc.php:1160 +#: db_tracking.php:121 libraries/messages.inc.php:1156 msgid "Versions" msgstr "" -#: db_tracking.php:122 libraries/messages.inc.php:1132 tbl_tracking.php:379 +#: db_tracking.php:122 libraries/messages.inc.php:1128 tbl_tracking.php:379 #: tbl_tracking.php:624 msgid "Tracking report" msgstr "" -#: db_tracking.php:123 libraries/messages.inc.php:1144 tbl_tracking.php:251 +#: db_tracking.php:123 libraries/messages.inc.php:1140 tbl_tracking.php:251 #: tbl_tracking.php:624 msgid "Structure snapshot" msgstr "" -#: db_tracking.php:152 libraries/messages.inc.php:1154 +#: db_tracking.php:152 libraries/messages.inc.php:1150 msgid "Untracked tables" msgstr "" -#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1153 +#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1149 #: tbl_structure.php:529 tbl_structure.php:531 msgid "Track table" msgstr "" -#: db_tracking.php:200 libraries/messages.inc.php:1121 +#: db_tracking.php:200 libraries/messages.inc.php:1117 msgid "Database Log" msgstr "" -#: export.php:62 libraries/messages.inc.php:312 +#: export.php:62 libraries/messages.inc.php:308 msgid "Selected export type has to be saved in file!" msgstr "" -#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:567 +#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:563 #, php-format msgid "Insufficient space to save the file %s." msgstr "" -#: export.php:294 libraries/messages.inc.php:324 +#: export.php:294 libraries/messages.inc.php:320 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "" -#: export.php:298 export.php:302 libraries/messages.inc.php:562 +#: export.php:298 export.php:302 libraries/messages.inc.php:558 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "" -#: export.php:629 libraries/messages.inc.php:276 +#: export.php:629 libraries/messages.inc.php:272 #, php-format msgid "Dump has been saved to file %s." msgstr "" -#: import.php:60 libraries/messages.inc.php:1202 +#: import.php:60 libraries/messages.inc.php:1198 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation%" @@ -887,21 +887,21 @@ msgid "" msgstr "" #: import.php:279 import.php:332 libraries/File.class.php:849 -#: libraries/File.class.php:961 libraries/messages.inc.php:325 +#: libraries/File.class.php:961 libraries/messages.inc.php:321 msgid "File could not be read" msgstr "" #: import.php:287 import.php:296 import.php:315 import.php:324 #: libraries/File.class.php:1031 libraries/File.class.php:1039 #: libraries/File.class.php:1055 libraries/File.class.php:1063 -#: libraries/messages.inc.php:1189 +#: libraries/messages.inc.php:1185 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." msgstr "" -#: import.php:337 libraries/messages.inc.php:547 +#: import.php:337 libraries/messages.inc.php:543 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -909,39 +909,39 @@ msgid "" msgstr "" #: import.php:372 libraries/display_import.lib.php:24 -#: libraries/messages.inc.php:125 +#: libraries/messages.inc.php:121 msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:397 libraries/messages.inc.php:102 +#: import.php:397 libraries/messages.inc.php:98 msgid "The bookmark has been deleted." msgstr "" -#: import.php:401 libraries/messages.inc.php:879 +#: import.php:401 libraries/messages.inc.php:875 msgid "Showing bookmark" msgstr "" -#: import.php:403 libraries/messages.inc.php:101 +#: import.php:403 libraries/messages.inc.php:97 #, php-format msgid "Bookmark %s created" msgstr "" -#: import.php:409 import.php:415 libraries/messages.inc.php:407 +#: import.php:409 import.php:415 libraries/messages.inc.php:403 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" -#: import.php:424 libraries/messages.inc.php:1107 +#: import.php:424 libraries/messages.inc.php:1103 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: index.php:190 libraries/messages.inc.php:553 +#: index.php:190 libraries/messages.inc.php:549 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" -#: js/messages.php:25 libraries/messages.inc.php:155 +#: js/messages.php:25 libraries/messages.inc.php:151 #: server_synchronize.php:345 server_synchronize.php:357 #: server_synchronize.php:373 server_synchronize.php:380 #: server_synchronize.php:739 server_synchronize.php:767 @@ -949,117 +949,117 @@ msgstr "" msgid "Click to select" msgstr "" -#: js/messages.php:26 libraries/messages.inc.php:156 +#: js/messages.php:26 libraries/messages.inc.php:152 msgid "Click to unselect" msgstr "" #: js/messages.php:27 libraries/import.lib.php:103 -#: libraries/messages.inc.php:550 sql.php:89 +#: libraries/messages.inc.php:546 sql.php:89 msgid "\"DROP DATABASE\" statements are disabled." msgstr "" -#: js/messages.php:30 libraries/messages.inc.php:270 +#: js/messages.php:30 libraries/messages.inc.php:266 #: libraries/mult_submits.inc.php:258 sql.php:188 msgid "Do you really want to " msgstr "" -#: js/messages.php:31 libraries/messages.inc.php:271 +#: js/messages.php:31 libraries/messages.inc.php:267 #: libraries/mult_submits.inc.php:258 sql.php:172 msgid "You are about to DESTROY a complete database!" msgstr "" -#: js/messages.php:34 libraries/messages.inc.php:94 +#: js/messages.php:34 libraries/messages.inc.php:90 msgid "You are about to DISABLE a BLOB Repository!" msgstr "" -#: js/messages.php:35 libraries/messages.inc.php:91 +#: js/messages.php:35 libraries/messages.inc.php:87 #, php-format msgid "Are you sure you want to disable all BLOB references for database %s?" msgstr "" -#: js/messages.php:38 libraries/messages.inc.php:342 +#: js/messages.php:38 libraries/messages.inc.php:338 msgid "Missing value in the form!" msgstr "" -#: js/messages.php:39 libraries/messages.inc.php:570 +#: js/messages.php:39 libraries/messages.inc.php:566 msgid "This is not a number!" msgstr "" -#: js/messages.php:42 libraries/messages.inc.php:380 +#: js/messages.php:42 libraries/messages.inc.php:376 msgid "The host name is empty!" msgstr "" # మొదటి అనువాదము -#: js/messages.php:43 libraries/messages.inc.php:1208 +#: js/messages.php:43 libraries/messages.inc.php:1204 msgid "The user name is empty!" msgstr "వాడుకరి పేరులో ఏమీ లేదు" -#: js/messages.php:44 libraries/messages.inc.php:607 +#: js/messages.php:44 libraries/messages.inc.php:603 #: server_privileges.php:1197 user_password.php:70 msgid "The password is empty!" msgstr "సంకేతపదం ఖాళీగా ఉంది!" -#: js/messages.php:45 libraries/messages.inc.php:609 +#: js/messages.php:45 libraries/messages.inc.php:605 #: server_privileges.php:1195 user_password.php:73 msgid "The passwords aren't the same!" msgstr "సంకేతపదాలు సరిపోలలేదు!" -#: js/messages.php:49 libraries/messages.inc.php:123 pmd_general.php:342 +#: js/messages.php:49 libraries/messages.inc.php:119 pmd_general.php:342 #: pmd_general.php:379 msgid "Cancel" msgstr "రద్దుచేయి" -#: js/messages.php:52 libraries/messages.inc.php:514 +#: js/messages.php:52 libraries/messages.inc.php:510 msgid "Modifications have been saved" msgstr "" -#: js/messages.php:53 libraries/messages.inc.php:741 +#: js/messages.php:53 libraries/messages.inc.php:737 msgid "Relation deleted" msgstr "" -#: js/messages.php:54 libraries/messages.inc.php:340 +#: js/messages.php:54 libraries/messages.inc.php:336 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:55 libraries/messages.inc.php:434 +#: js/messages.php:55 libraries/messages.inc.php:430 msgid "Internal relation added" msgstr "" -#: js/messages.php:56 libraries/messages.inc.php:299 +#: js/messages.php:56 libraries/messages.inc.php:295 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:57 libraries/messages.inc.php:300 +#: js/messages.php:57 libraries/messages.inc.php:296 msgid "Error: relation already exists." msgstr "" -#: js/messages.php:58 libraries/messages.inc.php:302 +#: js/messages.php:58 libraries/messages.inc.php:298 msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:59 libraries/messages.inc.php:351 +#: js/messages.php:59 libraries/messages.inc.php:347 #: libraries/relation.lib.php:107 msgid "General relation features" msgstr "" -#: js/messages.php:59 libraries/messages.inc.php:260 +#: js/messages.php:59 libraries/messages.inc.php:256 #: libraries/relation.lib.php:101 libraries/relation.lib.php:108 msgid "Disabled" msgstr "" -#: js/messages.php:60 libraries/messages.inc.php:850 +#: js/messages.php:60 libraries/messages.inc.php:846 msgid "Select referenced key" msgstr "" -#: js/messages.php:61 libraries/messages.inc.php:848 +#: js/messages.php:61 libraries/messages.inc.php:844 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:62 libraries/messages.inc.php:653 +#: js/messages.php:62 libraries/messages.inc.php:649 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:63 libraries/messages.inc.php:142 pmd_general.php:77 +#: js/messages.php:63 libraries/messages.inc.php:138 pmd_general.php:77 #: tbl_relation.php:548 msgid "Choose field to display" msgstr "" @@ -1079,9 +1079,9 @@ msgstr "క్రితము" # మొదటి అనువాదము #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2332 -#: libraries/common.lib.php:2335 libraries/display_tbl.lib.php:338 -#: libraries/messages.inc.php:543 server_binlog.php:205 server_binlog.php:207 +#: js/messages.php:77 libraries/common.lib.php:2344 +#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: libraries/messages.inc.php:539 server_binlog.php:205 server_binlog.php:207 #: tbl_printview.php:424 tbl_structure.php:802 msgid "Next" msgstr "తదుపరి" @@ -1156,27 +1156,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1543 +#: js/messages.php:97 libraries/common.lib.php:1555 msgid "Jan" msgstr "జన" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1545 +#: js/messages.php:99 libraries/common.lib.php:1557 msgid "Feb" msgstr "ఫిబ్ర" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1547 +#: js/messages.php:101 libraries/common.lib.php:1559 msgid "Mar" msgstr "మార్చి" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1549 +#: js/messages.php:103 libraries/common.lib.php:1561 msgid "Apr" msgstr "ఏప్రి" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1551 +#: js/messages.php:105 libraries/common.lib.php:1563 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1184,37 +1184,37 @@ msgid "May" msgstr "మే" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1553 +#: js/messages.php:107 libraries/common.lib.php:1565 msgid "Jun" msgstr "జూన్" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1555 +#: js/messages.php:109 libraries/common.lib.php:1567 msgid "Jul" msgstr "జూలై" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1557 +#: js/messages.php:111 libraries/common.lib.php:1569 msgid "Aug" msgstr "ఆగ" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1559 +#: js/messages.php:113 libraries/common.lib.php:1571 msgid "Sep" msgstr "సెప్టె" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1561 +#: js/messages.php:115 libraries/common.lib.php:1573 msgid "Oct" msgstr "అక్టో" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1563 +#: js/messages.php:117 libraries/common.lib.php:1575 msgid "Nov" msgstr "నవం" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1565 +#: js/messages.php:119 libraries/common.lib.php:1577 msgid "Dec" msgstr "డిసెం" @@ -1255,37 +1255,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1568 +#: js/messages.php:132 libraries/common.lib.php:1580 msgid "Sun" msgstr "ఆది" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1570 +#: js/messages.php:134 libraries/common.lib.php:1582 msgid "Mon" msgstr "సోమ" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1572 +#: js/messages.php:136 libraries/common.lib.php:1584 msgid "Tue" msgstr "మంగళ" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1574 +#: js/messages.php:138 libraries/common.lib.php:1586 msgid "Wed" msgstr "బుధ" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1576 +#: js/messages.php:140 libraries/common.lib.php:1588 msgid "Thu" msgstr "గురు" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1578 +#: js/messages.php:142 libraries/common.lib.php:1590 msgid "Fri" msgstr "శుక్ర" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1580 +#: js/messages.php:144 libraries/common.lib.php:1592 msgid "Sat" msgstr "శని" @@ -1362,76 +1362,76 @@ msgstr "వాడుకలో ఉన్నది" msgid "Second" msgstr "క్షణానికి" -#: libraries/Config.class.php:1015 libraries/messages.inc.php:338 +#: libraries/Config.class.php:1015 libraries/messages.inc.php:334 msgid "Font size" msgstr "" #: libraries/File.class.php:344 libraries/File.class.php:432 #: libraries/File.class.php:569 libraries/File.class.php:708 -#: libraries/messages.inc.php:1201 +#: libraries/messages.inc.php:1197 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.class.php:414 libraries/messages.inc.php:1198 +#: libraries/File.class.php:414 libraries/messages.inc.php:1194 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:417 libraries/messages.inc.php:1197 +#: libraries/File.class.php:417 libraries/messages.inc.php:1193 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:420 libraries/messages.inc.php:1200 +#: libraries/File.class.php:420 libraries/messages.inc.php:1196 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:423 libraries/messages.inc.php:1199 +#: libraries/File.class.php:423 libraries/messages.inc.php:1195 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:426 libraries/messages.inc.php:1195 +#: libraries/File.class.php:426 libraries/messages.inc.php:1191 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:429 libraries/messages.inc.php:1196 +#: libraries/File.class.php:429 libraries/messages.inc.php:1192 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:908 libraries/messages.inc.php:319 +#: libraries/File.class.php:908 libraries/messages.inc.php:315 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "" -#: libraries/Index.class.php:428 libraries/messages.inc.php:554 +#: libraries/Index.class.php:428 libraries/messages.inc.php:550 #: tbl_relation.php:529 msgid "No index defined!" msgstr "" -#: libraries/Index.class.php:433 libraries/messages.inc.php:411 +#: libraries/Index.class.php:433 libraries/messages.inc.php:407 #: server_databases.php:132 tbl_tracking.php:316 msgid "Indexes" msgstr "" -#: libraries/Index.class.php:444 libraries/messages.inc.php:1186 +#: libraries/Index.class.php:444 libraries/messages.inc.php:1182 #: 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:475 tbl_tracking.php:322 msgid "Unique" msgstr "" -#: libraries/Index.class.php:445 libraries/messages.inc.php:596 +#: libraries/Index.class.php:445 libraries/messages.inc.php:592 #: tbl_tracking.php:323 msgid "Packed" msgstr "" -#: libraries/Index.class.php:447 libraries/messages.inc.php:131 +#: libraries/Index.class.php:447 libraries/messages.inc.php:127 #: tbl_tracking.php:325 msgid "Cardinality" msgstr "" -#: libraries/Index.class.php:450 libraries/messages.inc.php:162 +#: libraries/Index.class.php:450 libraries/messages.inc.php:158 #: tbl_tracking.php:279 tbl_tracking.php:328 msgid "Comment" msgstr "వ్యాఖ్య" @@ -1439,29 +1439,29 @@ msgstr "వ్యాఖ్య" #: libraries/Index.class.php:466 libraries/common.lib.php:616 #: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:280 pdf_pages.php:280 +#: libraries/messages.inc.php:276 pdf_pages.php:280 #: setup/frames/index.inc.php:124 setup/lib/messages.inc.php:352 #: tbl_row_action.php:69 msgid "Edit" msgstr "మార్చు" -#: libraries/Index.class.php:472 libraries/messages.inc.php:666 +#: libraries/Index.class.php:472 libraries/messages.inc.php:662 msgid "The primary key has been dropped" msgstr "" -#: libraries/Index.class.php:476 libraries/messages.inc.php:413 +#: libraries/Index.class.php:476 libraries/messages.inc.php:409 #, php-format msgid "Index %s has been dropped" msgstr "" -#: libraries/Index.class.php:576 libraries/messages.inc.php:412 +#: libraries/Index.class.php:576 libraries/messages.inc.php:408 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "" -#: libraries/List_Database.class.php:431 libraries/messages.inc.php:218 +#: libraries/List_Database.class.php:431 libraries/messages.inc.php:214 #: libraries/server_links.inc.php:41 server_databases.php:88 #: server_privileges.php:1621 setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" @@ -1488,86 +1488,86 @@ msgid_plural "%1$d rows inserted." msgstr[0] "" msgstr[1] "" -#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:549 +#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:545 msgid "" "There is no detailed status information available for this storage engine." msgstr "" -#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:291 +#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:287 #, php-format msgid "%s is available on this MySQL server." msgstr "" -#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:292 +#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:288 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "" -#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:294 +#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:290 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "" -#: libraries/Table.class.php:1019 libraries/messages.inc.php:443 +#: libraries/Table.class.php:1019 libraries/messages.inc.php:439 msgid "Invalid database" msgstr "" -#: libraries/Table.class.php:1033 libraries/messages.inc.php:450 +#: libraries/Table.class.php:1033 libraries/messages.inc.php:446 #: tbl_get_field.php:26 msgid "Invalid table name" msgstr "" -#: libraries/Table.class.php:1048 libraries/messages.inc.php:301 +#: libraries/Table.class.php:1048 libraries/messages.inc.php:297 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "" -#: libraries/Table.class.php:1132 libraries/messages.inc.php:754 +#: libraries/Table.class.php:1132 libraries/messages.inc.php:750 #, php-format msgid "Table %s has been renamed to %s" msgstr "" -#: libraries/Theme.class.php:162 libraries/messages.inc.php:1099 +#: libraries/Theme.class.php:162 libraries/messages.inc.php:1095 #, php-format msgid "No valid image path for theme %s found!" msgstr "" -#: libraries/Theme.class.php:384 libraries/messages.inc.php:1097 +#: libraries/Theme.class.php:384 libraries/messages.inc.php:1093 msgid "No preview available." msgstr "" # మొదటి అనువాదము -#: libraries/Theme.class.php:387 libraries/messages.inc.php:1089 +#: libraries/Theme.class.php:387 libraries/messages.inc.php:1085 msgid "take it" msgstr "తీసుకొనుము" -#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1096 +#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1092 #, php-format msgid "Default theme %s not found!" msgstr "" -#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1098 +#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1094 #, php-format msgid "Theme %s not found!" msgstr "" -#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1100 +#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1096 #, php-format msgid "Theme path not found for theme %s!" msgstr "" -#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1101 +#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1097 #: test/theme.php:161 themes.php:21 themes.php:41 msgid "Theme / Style" msgstr "" -#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:172 +#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:168 msgid "Cannot connect: invalid settings." msgstr "" #: libraries/auth/config.auth.lib.php:92 #: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65 -#: libraries/messages.inc.php:1238 test/theme.php:152 +#: libraries/messages.inc.php:1234 test/theme.php:152 #, php-format msgid "Welcome to %s" msgstr "%sకి స్వాగతం" @@ -1587,107 +1587,107 @@ msgid "" "the administrator of the MySQL server." msgstr "" -#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:488 +#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:484 msgid "Log in" msgstr "ప్రవేశించు" #: libraries/auth/cookie.auth.lib.php:246 -#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:659 +#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:655 #: libraries/navigation_header.inc.php:93 #: libraries/navigation_header.inc.php:95 msgid "phpMyAdmin documentation" msgstr "" #: libraries/auth/cookie.auth.lib.php:258 -#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:492 +#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:488 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:493 +#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:489 msgid "Server:" msgstr "" # మొదటి అనువాదము -#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:494 +#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:490 msgid "Username:" msgstr "వాడుకరి పేరు" -#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:491 +#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:487 msgid "Password:" msgstr "సంకేతపదం:" -#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:854 +#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:850 msgid "Server Choice" msgstr "" #: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 -#: libraries/messages.inc.php:177 +#: libraries/messages.inc.php:173 msgid "Cookies must be enabled past this point." msgstr "" #: libraries/auth/cookie.auth.lib.php:671 -#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:489 +#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:485 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" #: libraries/auth/cookie.auth.lib.php:675 -#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:544 +#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:540 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" #: libraries/auth/cookie.auth.lib.php:685 #: libraries/auth/cookie.auth.lib.php:687 -#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:126 +#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:122 msgid "Cannot log in to the MySQL server" msgstr "" -#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1245 +#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1241 msgid "Wrong username/password. Access denied." msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:118 -#: libraries/messages.inc.php:1057 +#: libraries/messages.inc.php:1053 #, php-format msgid "File %s does not contain any key id" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:157 #: libraries/auth/swekey/swekey.auth.lib.php:180 -#: libraries/messages.inc.php:1056 +#: libraries/messages.inc.php:1052 msgid "Hardware authentication failed" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:166 -#: libraries/messages.inc.php:1058 +#: libraries/messages.inc.php:1054 msgid "No valid authentication key plugged" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:202 -#: libraries/messages.inc.php:1055 +#: libraries/messages.inc.php:1051 msgid "Authenticating..." msgstr "" # మొదటి అనువాదము -#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1230 +#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1226 msgid "View image" msgstr "చిత్రమును చూపుము" -#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:652 +#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:648 msgid "Play audio" msgstr "" # మొదటి అనువాదము -#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1232 +#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1228 msgid "View video" msgstr "వీడియోను చూపుము" -#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:269 +#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:265 msgid "Download file" msgstr "" -#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:128 +#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:124 msgid "" "Couldn't load the iconv or recode extension needed for charset conversion. " "Either configure PHP to enable these extensions or disable charset " @@ -1696,13 +1696,13 @@ msgstr "" #: libraries/charset_conversion.lib.php:79 #: libraries/charset_conversion.lib.php:90 -#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:130 +#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:126 msgid "" "Couldn't use the iconv, libiconv, or recode_string functions, although the " "necessary extensions appear to be loaded. Check your PHP configuration." msgstr "" -#: libraries/common.inc.php:583 libraries/messages.inc.php:170 +#: libraries/common.inc.php:583 libraries/messages.inc.php:166 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!" @@ -1728,22 +1728,22 @@ msgstr "" msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:636 libraries/messages.inc.php:448 +#: libraries/common.inc.php:636 libraries/messages.inc.php:444 #, 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/messages.inc.php:856 libraries/select_server.lib.php:41 +#: libraries/messages.inc.php:852 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/messages.inc.php:437 +#: libraries/common.inc.php:823 libraries/messages.inc.php:433 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.lib.php:147 libraries/messages.inc.php:499 +#: libraries/common.lib.php:147 libraries/messages.inc.php:495 #, php-format msgid "Max: %s%s" msgstr "గరిష్ఠం: %s%s" @@ -1763,7 +1763,7 @@ msgstr "" #: libraries/common.lib.php:428 libraries/common.lib.php:430 #: libraries/common.lib.php:432 libraries/common.lib.php:448 #: libraries/common.lib.php:450 libraries/dbg/setup.php:25 -#: libraries/display_export.lib.php:164 libraries/messages.inc.php:267 +#: libraries/display_export.lib.php:164 libraries/messages.inc.php:263 #: libraries/relation.lib.php:97 libraries/sql_query_form.lib.php:451 #: libraries/sql_query_form.lib.php:454 main.php:229 pdf_pages.php:37 #: pdf_pages.php:43 pdf_pages.php:49 pdf_pages.php:54 @@ -1773,55 +1773,55 @@ msgstr "" #: libraries/common.lib.php:581 libraries/core.lib.php:234 #: libraries/core.lib.php:263 libraries/import.lib.php:134 -#: libraries/messages.inc.php:297 pdf_schema.php:32 pdf_schema.php:232 +#: libraries/messages.inc.php:293 pdf_schema.php:32 pdf_schema.php:232 #: tbl_change.php:1027 tbl_operations.php:213 tbl_relation.php:290 #: view_operations.php:62 msgid "Error" msgstr "" #: libraries/common.lib.php:595 libraries/header_printview.inc.php:61 -#: libraries/messages.inc.php:1023 server_processlist.php:60 +#: libraries/messages.inc.php:1019 server_processlist.php:60 #: server_status.php:247 msgid "SQL query" msgstr "" -#: libraries/common.lib.php:634 libraries/messages.inc.php:538 +#: libraries/common.lib.php:634 libraries/messages.inc.php:534 msgid "MySQL said: " msgstr "" -#: libraries/common.lib.php:667 libraries/messages.inc.php:76 +#: libraries/common.lib.php:667 libraries/messages.inc.php:72 #: pdf_schema.php:241 user_password.php:115 msgid "Back" msgstr "వెనుకకి" -#: libraries/common.lib.php:1177 libraries/messages.inc.php:309 +#: libraries/common.lib.php:1177 libraries/messages.inc.php:305 #: setup/lib/messages.inc.php:353 msgid "Explain SQL" msgstr "" -#: libraries/common.lib.php:1180 libraries/messages.inc.php:551 +#: libraries/common.lib.php:1180 libraries/messages.inc.php:547 msgid "Skip Explain SQL" msgstr "" -#: libraries/common.lib.php:1212 libraries/messages.inc.php:563 +#: libraries/common.lib.php:1212 libraries/messages.inc.php:559 msgid "Without PHP Code" msgstr "" -#: libraries/common.lib.php:1215 libraries/messages.inc.php:649 +#: libraries/common.lib.php:1215 libraries/messages.inc.php:645 #: setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "" -#: libraries/common.lib.php:1233 libraries/messages.inc.php:737 +#: libraries/common.lib.php:1233 libraries/messages.inc.php:733 #: server_status.php:341 setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "" -#: libraries/common.lib.php:1242 libraries/messages.inc.php:575 +#: libraries/common.lib.php:1242 libraries/messages.inc.php:571 msgid "Skip Validate SQL" msgstr "" -#: libraries/common.lib.php:1245 libraries/messages.inc.php:1220 +#: libraries/common.lib.php:1245 libraries/messages.inc.php:1216 #: setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "" @@ -1835,11 +1835,11 @@ msgid "Inline" msgstr "" #: libraries/common.lib.php:1332 libraries/common.lib.php:1347 -#: libraries/messages.inc.php:713 +#: libraries/messages.inc.php:709 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1351 libraries/messages.inc.php:1108 +#: libraries/common.lib.php:1351 libraries/messages.inc.php:1104 #: libraries/tbl_triggers.lib.php:28 server_processlist.php:58 msgid "Time" msgstr "సమయం" @@ -1873,48 +1873,58 @@ msgstr "" msgid "EiB" msgstr "" +#. l10n: Thousands separator +#: libraries/common.lib.php:1417 +msgid "," +msgstr "" + +#. l10n: Decimal separator +#: libraries/common.lib.php:1419 +msgid "." +msgstr "" + #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1584 +#: libraries/common.lib.php:1596 #: libraries/transformations/text_plain__dateformat.inc.php:28 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y at %I:%M %p" -#: libraries/common.lib.php:1886 +#: libraries/common.lib.php:1898 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s రోజులు, %s గంటలు, %s నిమిషాలు మరియు %s క్షణాలు" # మొదటి అనువాదము -#: libraries/common.lib.php:2301 libraries/common.lib.php:2304 -#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:664 +#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:660 #: server_status.php:608 msgid "Begin" msgstr "మొదలు" # మొదటి అనువాదము -#: libraries/common.lib.php:2302 libraries/common.lib.php:2305 -#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:665 +#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:661 #: server_binlog.php:168 server_binlog.php:170 msgid "Previous" msgstr "క్రితము" -#: libraries/common.lib.php:2333 libraries/common.lib.php:2336 -#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:289 +#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:285 msgid "End" msgstr "ముగింపు" -#: libraries/common.lib.php:2409 libraries/messages.inc.php:455 +#: libraries/common.lib.php:2421 libraries/messages.inc.php:451 #, php-format msgid "Jump to database "%s"." msgstr "" -#: libraries/common.lib.php:2429 libraries/messages.inc.php:461 +#: libraries/common.lib.php:2441 libraries/messages.inc.php:457 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/core.lib.php:286 libraries/dbg/setup.php:22 -#: libraries/messages.inc.php:127 +#: libraries/messages.inc.php:123 #, php-format msgid "" "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " @@ -1922,115 +1932,115 @@ msgid "" msgstr "" #: libraries/db_events.inc.php:20 libraries/db_events.inc.php:22 -#: libraries/export/sql.php:415 libraries/messages.inc.php:306 +#: libraries/export/sql.php:415 libraries/messages.inc.php:302 msgid "Events" msgstr "" #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 -#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:541 +#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:537 #: libraries/tbl_triggers.lib.php:27 setup/frames/index.inc.php:112 msgid "Name" msgstr "పేరు" -#: libraries/db_links.inc.php:45 libraries/messages.inc.php:216 +#: libraries/db_links.inc.php:45 libraries/messages.inc.php:212 #, php-format msgid "Database %s has been dropped." msgstr "" #: libraries/db_links.inc.php:57 libraries/db_links.inc.php:58 -#: libraries/db_links.inc.php:59 libraries/messages.inc.php:234 +#: libraries/db_links.inc.php:59 libraries/messages.inc.php:230 msgid "Database seems to be empty!" msgstr "" -#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1025 +#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1021 #: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60 #: querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "" -#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1152 +#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1148 #: libraries/tbl_links.inc.php:69 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:86 libraries/messages.inc.php:719 +#: libraries/db_links.inc.php:86 libraries/messages.inc.php:715 msgid "Query" msgstr "" -#: libraries/db_links.inc.php:91 libraries/messages.inc.php:253 +#: libraries/db_links.inc.php:91 libraries/messages.inc.php:249 msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:98 libraries/messages.inc.php:397 +#: libraries/db_links.inc.php:98 libraries/messages.inc.php:393 #: libraries/server_links.inc.php:88 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:104 libraries/messages.inc.php:587 +#: libraries/db_links.inc.php:104 libraries/messages.inc.php:583 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" msgstr "" -#: libraries/db_links.inc.php:111 libraries/messages.inc.php:709 +#: libraries/db_links.inc.php:111 libraries/messages.inc.php:705 #: libraries/server_links.inc.php:66 server_privileges.php:72 #: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117 msgid "Privileges" msgstr "" #: libraries/db_routines.inc.php:30 libraries/db_routines.inc.php:32 -#: libraries/messages.inc.php:812 +#: libraries/messages.inc.php:808 msgid "Routines" msgstr "" -#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:811 +#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:807 msgid "Return type" msgstr "" #: libraries/db_structure.lib.php:57 libraries/display_tbl.lib.php:1848 -#: libraries/messages.inc.php:65 +#: libraries/messages.inc.php:61 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "" -#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:593 +#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:589 #: server_databases.php:142 tbl_printview.php:336 tbl_structure.php:683 msgid "Overhead" msgstr "" #: libraries/dbi/mysql.dbi.lib.php:112 libraries/dbi/mysqli.dbi.lib.php:124 -#: libraries/messages.inc.php:176 +#: libraries/messages.inc.php:172 msgid "Connection for controluser as defined in your configuration failed." msgstr "" #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 -#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:855 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:851 msgid "The server is not responding" msgstr "" #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:1010 +#: libraries/messages.inc.php:1006 msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "" -#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:255 +#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:251 #: tbl_structure.php:609 msgid "Details..." msgstr "వివరాలు..." -#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:143 +#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:139 #: main.php:91 user_password.php:111 user_password.php:129 msgid "Change password" msgstr "" -#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:561 +#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:557 #: libraries/replication_gui.lib.php:341 server_privileges.php:768 msgid "No Password" msgstr "సంకేతపదం లేదు" -#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:610 +#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:606 #: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60 #: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335 #: libraries/replication_gui.lib.php:345 server_privileges.php:757 @@ -2039,13 +2049,13 @@ msgstr "సంకేతపదం లేదు" msgid "Password" msgstr "సంకేతపదం" -#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:806 +#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:802 #: libraries/replication_gui.lib.php:349 libraries/replication_gui.lib.php:352 #: server_privileges.php:776 server_privileges.php:779 msgid "Re-type" msgstr "" -#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:608 +#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:604 msgid "Password Hashing" msgstr "" @@ -2053,90 +2063,90 @@ msgstr "" msgid "MySQL 4.0 compatible" msgstr "" -#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:353 +#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:349 #: libraries/replication_gui.lib.php:356 server_privileges.php:783 msgid "Generate Password" msgstr "" -#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:352 +#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:348 #: libraries/replication_gui.lib.php:359 server_privileges.php:786 msgid "Generate" msgstr "" #: libraries/display_create_database.lib.php:22 -#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:189 +#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:185 msgid "Create new database" msgstr "" # మొదటి అనువాదము -#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:185 +#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:181 msgid "Create" msgstr "సృష్టించు" -#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:564 +#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:560 #: server_privileges.php:74 server_privileges.php:1388 #: server_replication.php:35 msgid "No Privileges" msgstr "" -#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:445 +#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:441 msgid "Table must have at least one field." msgstr "" -#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:190 +#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:186 #, php-format msgid "Create table on database %s" msgstr "" -#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:577 +#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:573 msgid "Number of fields" msgstr "" -#: libraries/display_export.lib.php:42 libraries/messages.inc.php:124 +#: libraries/display_export.lib.php:42 libraries/messages.inc.php:120 msgid "Could not load export plugins, please check your installation!" msgstr "" -#: libraries/display_export.lib.php:107 libraries/messages.inc.php:277 +#: libraries/display_export.lib.php:107 libraries/messages.inc.php:273 #, php-format msgid "Dump %s row(s) starting at record # %s" msgstr "" -#: libraries/display_export.lib.php:115 libraries/messages.inc.php:274 +#: libraries/display_export.lib.php:115 libraries/messages.inc.php:270 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:125 libraries/messages.inc.php:852 +#: libraries/display_export.lib.php:125 libraries/messages.inc.php:848 #: setup/lib/messages.inc.php:82 msgid "Save as file" msgstr "" -#: libraries/display_export.lib.php:134 libraries/messages.inc.php:828 +#: libraries/display_export.lib.php:134 libraries/messages.inc.php:824 #, php-format msgid "Save on server in %s directory" msgstr "" -#: libraries/display_export.lib.php:142 libraries/messages.inc.php:594 +#: libraries/display_export.lib.php:142 libraries/messages.inc.php:590 #: setup/lib/messages.inc.php:90 msgid "Overwrite existing file(s)" msgstr "" -#: libraries/display_export.lib.php:148 libraries/messages.inc.php:330 +#: libraries/display_export.lib.php:148 libraries/messages.inc.php:326 msgid "File name template" msgstr "" -#: libraries/display_export.lib.php:152 libraries/messages.inc.php:327 +#: libraries/display_export.lib.php:152 libraries/messages.inc.php:323 msgid "server name" msgstr "" -#: libraries/display_export.lib.php:155 libraries/messages.inc.php:326 +#: libraries/display_export.lib.php:155 libraries/messages.inc.php:322 msgid "database name" msgstr "" -#: libraries/display_export.lib.php:158 libraries/messages.inc.php:328 +#: libraries/display_export.lib.php:158 libraries/messages.inc.php:324 msgid "table name" msgstr "" -#: libraries/display_export.lib.php:162 libraries/messages.inc.php:329 +#: libraries/display_export.lib.php:162 libraries/messages.inc.php:325 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2144,24 +2154,24 @@ msgid "" "3$s. Other text will be kept as is." msgstr "" -#: libraries/display_export.lib.php:202 libraries/messages.inc.php:331 +#: libraries/display_export.lib.php:202 libraries/messages.inc.php:327 msgid "remember template" msgstr "" #: libraries/display_export.lib.php:210 libraries/display_import.lib.php:178 -#: libraries/display_import.lib.php:191 libraries/messages.inc.php:145 +#: libraries/display_import.lib.php:191 libraries/messages.inc.php:141 #: libraries/sql_query_form.lib.php:549 msgid "Character set of the file:" msgstr "" -#: libraries/display_export.lib.php:235 libraries/messages.inc.php:166 +#: libraries/display_export.lib.php:235 libraries/messages.inc.php:162 #: setup/lib/messages.inc.php:84 msgid "Compression" 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/messages.inc.php:558 +#: libraries/export/sql.php:868 libraries/messages.inc.php:554 #: libraries/tbl_properties.inc.php:575 server_privileges.php:1836 #: server_processlist.php:75 msgid "None" @@ -2179,274 +2189,274 @@ msgstr "" msgid "bzipped" msgstr "" -#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1018 +#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1014 msgid "SQL compatibility mode" msgstr "" -#: libraries/display_import.lib.php:67 libraries/messages.inc.php:398 +#: libraries/display_import.lib.php:67 libraries/messages.inc.php:394 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " "browsers." msgstr "" -#: libraries/display_import.lib.php:77 libraries/messages.inc.php:406 +#: libraries/display_import.lib.php:77 libraries/messages.inc.php:402 msgid "The file is being processed, please be patient." msgstr "" -#: libraries/display_import.lib.php:99 libraries/messages.inc.php:408 +#: libraries/display_import.lib.php:99 libraries/messages.inc.php:404 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." msgstr "" -#: libraries/display_import.lib.php:126 libraries/messages.inc.php:333 +#: libraries/display_import.lib.php:126 libraries/messages.inc.php:329 msgid "File to import" msgstr "" -#: libraries/display_import.lib.php:137 libraries/messages.inc.php:486 +#: libraries/display_import.lib.php:137 libraries/messages.inc.php:482 #: libraries/sql_query_form.lib.php:524 msgid "Location of the text file" msgstr "పాఠ్యపు దస్త్రం యొక్క ప్రాంతం" -#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1203 +#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1199 msgid "File uploads are not allowed on this server." msgstr "" -#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1235 +#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1231 #: libraries/sql_query_form.lib.php:533 tbl_change.php:1028 msgid "The directory you set for upload work cannot be reached" msgstr "" -#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1236 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1232 #: libraries/sql_query_form.lib.php:536 tbl_change.php:1031 msgid "web server upload directory" msgstr "" -#: libraries/display_import.lib.php:212 libraries/messages.inc.php:167 +#: libraries/display_import.lib.php:212 libraries/messages.inc.php:163 #, php-format msgid "Imported file compression will be automatically detected from: %s" msgstr "" -#: libraries/display_import.lib.php:219 libraries/messages.inc.php:600 +#: libraries/display_import.lib.php:219 libraries/messages.inc.php:596 msgid "Partial import" msgstr "" -#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1105 +#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1101 #, php-format msgid "" "Previous import timed out, after resubmitting will continue from position %d." msgstr "" -#: libraries/display_import.lib.php:232 libraries/messages.inc.php:51 +#: libraries/display_import.lib.php:232 libraries/messages.inc.php:47 msgid "" "Allow the interruption of an import in case the script detects it is close " "to the PHP timeout limit. This might be good way to import large files, " "however it can break transactions." msgstr "" -#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1004 +#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1000 #: setup/lib/messages.inc.php:161 msgid "Number of records (queries) to skip from start" msgstr "" -#: libraries/display_import.lib.php:255 libraries/messages.inc.php:396 +#: libraries/display_import.lib.php:255 libraries/messages.inc.php:392 #: setup/lib/messages.inc.php:160 msgid "Format of imported file" msgstr "" #: libraries/display_select_lang.lib.php:45 -#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:465 +#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:461 #: setup/frames/index.inc.php:70 msgid "Language" msgstr "భాష" -#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:447 +#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:443 #, php-format msgid "%d is not valid row number." msgstr "" -#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:814 +#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:810 msgid "row(s) starting from record #" msgstr "" -#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:817 +#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:813 msgid "horizontal" msgstr "" -#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:816 +#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:812 msgid "horizontal (rotated headers)" msgstr "" -#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:819 +#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:815 msgid "vertical" msgstr "" -#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:818 +#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:814 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "" -#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:495 +#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:491 msgid "This operation could take a long time. Proceed anyway?" msgstr "" -#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1012 +#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1008 msgid "Sort by key" msgstr "" #: libraries/display_tbl.lib.php:555 libraries/import.lib.php:1082 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:591 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:587 #: tbl_select.php:267 tbl_structure.php:754 msgid "Options" msgstr "" #: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:570 -#: libraries/messages.inc.php:601 +#: libraries/messages.inc.php:597 msgid "Partial Texts" msgstr "పాక్షిక పాఠ్యాలు" #: libraries/display_tbl.lib.php:561 libraries/display_tbl.lib.php:574 -#: libraries/messages.inc.php:346 +#: libraries/messages.inc.php:342 msgid "Full Texts" msgstr "" -#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:739 +#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:735 msgid "Relational key" msgstr "" -#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:738 +#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:734 msgid "Relational display field" msgstr "" -#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:872 +#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:868 msgid "Show binary contents" msgstr "" -#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:873 +#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:869 msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:871 +#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:867 msgid "Show binary contents as HEX" msgstr "" # మొదటి అనువాదము -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:375 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:371 #: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320 msgid "Hide" msgstr "దాచు" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:508 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:504 #: libraries/tbl_properties.inc.php:144 transformation_overview.php:47 msgid "Browser transformation" msgstr "" #: libraries/display_tbl.lib.php:1126 libraries/display_tbl.lib.php:1130 -#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:308 +#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:304 msgid "Execute bookmarked query" msgstr "" #: libraries/display_tbl.lib.php:1145 libraries/display_tbl.lib.php:1157 -#: libraries/messages.inc.php:244 +#: libraries/messages.inc.php:240 msgid "The row has been deleted" msgstr "" #: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056 -#: libraries/messages.inc.php:460 server_processlist.php:71 +#: libraries/messages.inc.php:456 server_processlist.php:71 #: tbl_row_action.php:64 msgid "Kill" msgstr "" -#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:849 +#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:845 msgid "in query" msgstr "" -#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:881 +#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:877 msgid "Showing rows" msgstr "" -#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1113 +#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1109 msgid "total" msgstr "మొత్తం" -#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:727 +#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:723 #: sql.php:524 #, php-format msgid "Query took %01.4f sec" msgstr "" # మొదటి అనువాదము -#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:135 +#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:131 #: 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:471 msgid "Change" msgstr "మార్చుము" -#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:724 +#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:720 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:671 +#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:667 msgid "Print view (with full texts)" msgstr "" -#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:482 +#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:478 msgid "Link not found" msgstr "" -#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1224 +#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1220 #: main.php:228 msgid "Version information" msgstr "" -#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:423 +#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:419 msgid "Data home directory" msgstr "" -#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:424 +#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:420 msgid "The common part of the directory path for all InnoDB data files." msgstr "" -#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:422 +#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:418 msgid "Data files" msgstr "" -#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:418 +#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:414 msgid "Autoextend increment" msgstr "" -#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:419 +#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:415 msgid "" " The increment size for extending the size of an autoextending tablespace " "when it becomes full." msgstr "" -#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:420 +#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:416 msgid "Buffer pool size" msgstr "" -#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:421 +#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:417 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." msgstr "" -#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:112 +#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:108 msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:426 +#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:422 #: server_status.php:306 msgid "InnoDB Status" msgstr "" -#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:113 +#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:109 msgid "Buffer Pool Usage" msgstr "" -#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1114 +#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1110 #: server_databases.php:137 server_databases.php:305 server_status.php:414 #: server_status.php:475 server_status.php:496 tbl_printview.php:351 #: tbl_structure.php:697 @@ -2454,191 +2464,191 @@ msgid "Total" msgstr "మొత్తం" # మొదటి అనువాదము -#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:425 +#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:421 msgid "pages" msgstr "పుటలు" -#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:343 +#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:339 msgid "Free pages" msgstr "" -#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:259 +#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:255 msgid "Dirty pages" msgstr "" -#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:230 +#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:226 msgid "Pages containing data" msgstr "" -#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:598 +#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:594 msgid "Pages to be flushed" msgstr "" -#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:119 +#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:115 msgid "Busy pages" msgstr "" -#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:467 +#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:463 msgid "Latched pages" msgstr "" -#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:111 +#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:107 msgid "Buffer Pool Activity" msgstr "" -#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:731 +#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:727 msgid "Read requests" msgstr "" # మొదటి అనువాదము -#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1244 +#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1240 msgid "Write requests" msgstr "విన్నపములను వ్రాయుము" -#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:115 +#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:111 msgid "Read misses" msgstr "" -#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:117 +#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:113 msgid "Write waits" msgstr "" -#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:114 +#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:110 msgid "Read misses in %" msgstr "" -#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:116 +#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:112 msgid "Write waits in %" msgstr "" -#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:522 +#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:518 msgid "Data pointer size" msgstr "" -#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:523 +#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:519 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." msgstr "" -#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:528 +#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:524 msgid "Automatic recovery mode" msgstr "" -#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:529 +#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:525 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." msgstr "" -#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:527 +#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:523 msgid "Maximum size for temporary sort files" msgstr "" -#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:526 +#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:522 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " "INFILE)." msgstr "" -#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:525 +#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:521 msgid "Maximum size for temporary files on index creation" msgstr "" -#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:524 +#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:520 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " "method." msgstr "" -#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:531 +#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:527 msgid "Repair threads" msgstr "" -#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:530 +#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:526 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." msgstr "" -#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:533 +#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:529 msgid "Sort buffer size" msgstr "" -#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:532 +#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:528 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." msgstr "" -#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:620 +#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:616 msgid "Index cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:619 +#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:615 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." msgstr "" -#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:630 +#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:626 msgid "Record cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:629 +#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:625 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " "to the handle data (.xtd) and row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:624 +#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:620 msgid "Log cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:623 +#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:619 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:628 +#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:624 msgid "Log file threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:627 +#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:623 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:634 +#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:630 msgid "Transaction buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:633 +#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:629 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." msgstr "" -#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:611 +#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:607 msgid "Checkpoint frequency" msgstr "" -#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:612 +#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:608 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." msgstr "" -#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:615 +#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:611 msgid "Data log threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:616 +#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:612 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -2646,48 +2656,48 @@ msgid "" "that can be stored in the database." msgstr "" -#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:618 +#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:614 msgid "Garbage threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:617 +#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:613 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." msgstr "" -#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:622 +#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:618 msgid "Log buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:621 +#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:617 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " "required to write a data log." msgstr "" -#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:613 +#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:609 msgid "Data file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:614 +#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:610 msgid "The grow size of the handle data (.xtd) files." msgstr "" -#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:632 +#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:628 msgid "Row file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:631 +#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:627 msgid "The grow size of the row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:626 +#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:622 msgid "Log file count" msgstr "" -#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:625 +#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:621 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -2697,19 +2707,19 @@ msgstr "" #: libraries/export/htmlword.php:132 libraries/export/odt.php:168 #: libraries/export/sql.php:881 libraries/export/texytext.php:130 -#: libraries/messages.inc.php:275 +#: libraries/messages.inc.php:271 msgid "Dumping data for table" msgstr "" #: libraries/export/htmlword.php:185 libraries/export/odt.php:238 #: libraries/export/sql.php:785 libraries/export/texytext.php:177 -#: libraries/messages.inc.php:1086 +#: libraries/messages.inc.php:1082 msgid "Table structure for table" msgstr "" #: libraries/export/latex.php:125 libraries/export/sql.php:232 #: libraries/export/xml.php:102 libraries/header_printview.inc.php:57 -#: libraries/messages.inc.php:381 libraries/replication_gui.lib.php:63 +#: libraries/messages.inc.php:377 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:170 libraries/replication_gui.lib.php:265 #: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325 #: server_privileges.php:692 server_privileges.php:695 @@ -2721,183 +2731,183 @@ msgstr "" #: libraries/export/latex.php:130 libraries/export/sql.php:233 #: libraries/export/xml.php:107 libraries/header_printview.inc.php:59 -#: libraries/messages.inc.php:354 +#: libraries/messages.inc.php:350 msgid "Generation Time" msgstr "" #: libraries/export/latex.php:131 libraries/export/sql.php:235 -#: libraries/export/xml.php:108 libraries/messages.inc.php:864 main.php:186 +#: libraries/export/xml.php:108 libraries/messages.inc.php:860 main.php:186 msgid "Server version" msgstr "" #: libraries/export/latex.php:132 libraries/export/sql.php:236 -#: libraries/export/xml.php:109 libraries/messages.inc.php:651 +#: libraries/export/xml.php:109 libraries/messages.inc.php:647 msgid "PHP Version" msgstr "" #: libraries/export/latex.php:201 libraries/export/sql.php:868 -#: libraries/messages.inc.php:226 server_databases.php:127 +#: libraries/messages.inc.php:222 server_databases.php:127 #: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317 #: tbl_structure.php:666 msgid "Data" msgstr "" -#: libraries/export/odt.php:318 libraries/messages.inc.php:506 +#: libraries/export/odt.php:318 libraries/messages.inc.php:502 #: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "" -#: libraries/export/sql.php:387 libraries/messages.inc.php:711 +#: libraries/export/sql.php:387 libraries/messages.inc.php:707 msgid "Procedures" msgstr "" -#: libraries/export/sql.php:401 libraries/messages.inc.php:348 +#: libraries/export/sql.php:401 libraries/messages.inc.php:344 msgid "Functions" msgstr "" -#: libraries/export/sql.php:618 libraries/messages.inc.php:174 +#: libraries/export/sql.php:618 libraries/messages.inc.php:170 msgid "Constraints for dumped tables" msgstr "" -#: libraries/export/sql.php:627 libraries/messages.inc.php:175 +#: libraries/export/sql.php:627 libraries/messages.inc.php:171 msgid "Constraints for table" msgstr "" -#: libraries/export/sql.php:727 libraries/messages.inc.php:512 +#: libraries/export/sql.php:727 libraries/messages.inc.php:508 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/export/sql.php:739 libraries/messages.inc.php:743 +#: libraries/export/sql.php:739 libraries/messages.inc.php:739 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/export/sql.php:796 libraries/messages.inc.php:1178 +#: libraries/export/sql.php:796 libraries/messages.inc.php:1174 #: libraries/tbl_triggers.lib.php:19 msgid "Triggers" msgstr "" -#: libraries/export/sql.php:808 libraries/messages.inc.php:1046 +#: libraries/export/sql.php:808 libraries/messages.inc.php:1042 msgid "Structure for view" msgstr "" -#: libraries/export/sql.php:817 libraries/messages.inc.php:1029 +#: libraries/export/sql.php:817 libraries/messages.inc.php:1025 msgid "Stand-in structure for view" msgstr "" #: libraries/footer.inc.php:184 libraries/footer.inc.php:195 -#: libraries/footer.inc.php:198 libraries/messages.inc.php:586 +#: libraries/footer.inc.php:198 libraries/messages.inc.php:582 msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/header.inc.php:115 libraries/messages.inc.php:542 +#: libraries/header.inc.php:115 libraries/messages.inc.php:538 msgid "New table" msgstr "" #: libraries/header_printview.inc.php:50 libraries/header_printview.inc.php:55 -#: libraries/messages.inc.php:1024 +#: libraries/messages.inc.php:1020 msgid "SQL result" msgstr "" -#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:350 +#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:346 msgid "Generated by" msgstr "" #: libraries/header_printview.inc.php:63 libraries/import.lib.php:145 -#: libraries/messages.inc.php:820 navigation.php:652 navigation.php:674 +#: libraries/messages.inc.php:816 navigation.php:652 navigation.php:674 #: server_databases.php:122 tbl_printview.php:394 tbl_structure.php:366 #: tbl_structure.php:778 msgid "Rows" msgstr "" -#: libraries/import.lib.php:150 libraries/messages.inc.php:285 sql.php:520 +#: libraries/import.lib.php:150 libraries/messages.inc.php:281 sql.php:520 #: tbl_change.php:181 tbl_get_field.php:35 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" -#: libraries/import.lib.php:1078 libraries/messages.inc.php:399 +#: libraries/import.lib.php:1078 libraries/messages.inc.php:395 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1079 libraries/messages.inc.php:400 +#: libraries/import.lib.php:1079 libraries/messages.inc.php:396 msgid "View a structure`s contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1080 libraries/messages.inc.php:401 +#: libraries/import.lib.php:1080 libraries/messages.inc.php:397 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1081 libraries/messages.inc.php:402 +#: libraries/import.lib.php:1081 libraries/messages.inc.php:398 msgid "Edit its structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1084 libraries/messages.inc.php:362 +#: libraries/import.lib.php:1084 libraries/messages.inc.php:358 msgid "Go to database" msgstr "" #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:869 +#: libraries/messages.inc.php:865 msgid "settings" msgstr "అమరికలు" -#: libraries/import.lib.php:1106 libraries/messages.inc.php:363 +#: libraries/import.lib.php:1106 libraries/messages.inc.php:359 msgid "Go to table" msgstr "" -#: libraries/import.lib.php:1109 libraries/messages.inc.php:1047 +#: libraries/import.lib.php:1109 libraries/messages.inc.php:1043 msgid "structure" msgstr "" -#: libraries/import.lib.php:1115 libraries/messages.inc.php:364 +#: libraries/import.lib.php:1115 libraries/messages.inc.php:360 msgid "Go to view" msgstr "" #: libraries/import/csv.php:58 libraries/import/csv.php:70 #: libraries/import/csv.php:74 libraries/import/csv.php:78 -#: libraries/messages.inc.php:442 +#: libraries/messages.inc.php:438 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "" -#: libraries/import/csv.php:59 libraries/messages.inc.php:323 +#: libraries/import/csv.php:59 libraries/messages.inc.php:319 msgid "Fields terminated by" msgstr "" -#: libraries/import/csv.php:71 libraries/messages.inc.php:320 +#: libraries/import/csv.php:71 libraries/messages.inc.php:316 msgid "Fields enclosed by" msgstr "" -#: libraries/import/csv.php:75 libraries/messages.inc.php:321 +#: libraries/import/csv.php:75 libraries/messages.inc.php:317 msgid "Fields escaped by" msgstr "" -#: libraries/import/csv.php:79 libraries/messages.inc.php:481 +#: libraries/import/csv.php:79 libraries/messages.inc.php:477 msgid "Lines terminated by" msgstr "" -#: libraries/import/csv.php:119 libraries/messages.inc.php:439 +#: libraries/import/csv.php:119 libraries/messages.inc.php:435 #, php-format msgid "Invalid column (%s) specified!" msgstr "" #: libraries/import/csv.php:177 libraries/import/csv.php:424 -#: libraries/messages.inc.php:441 +#: libraries/messages.inc.php:437 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/import/csv.php:312 libraries/messages.inc.php:440 +#: libraries/import/csv.php:312 libraries/messages.inc.php:436 #, php-format msgid "Invalid field count in CSV input on line %d." msgstr "" -#: libraries/import/ldi.php:55 libraries/messages.inc.php:446 +#: libraries/import/ldi.php:55 libraries/messages.inc.php:442 msgid "This plugin does not support compressed imports!" msgstr "" #: libraries/import/xml.php:74 libraries/import/xml.php:130 -#: libraries/messages.inc.php:1247 +#: libraries/messages.inc.php:1243 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -2926,789 +2936,779 @@ msgstr "" msgid "ltr" msgstr "" -#. l10n: Thousands separator -#: libraries/messages.inc.php:21 -msgid "," -msgstr "" - -#. l10n: Decimal separator -#: libraries/messages.inc.php:23 -msgid "." -msgstr "" - -#: libraries/messages.inc.php:25 server_status.php:461 +#: libraries/messages.inc.php:21 server_status.php:461 msgid "Aborted" msgstr "" -#: libraries/messages.inc.php:28 main.php:68 +#: libraries/messages.inc.php:24 main.php:68 msgid "Actions" msgstr "చర్యలు" -#: libraries/messages.inc.php:34 libraries/tbl_properties.inc.php:780 +#: libraries/messages.inc.php:30 libraries/tbl_properties.inc.php:780 #: tbl_structure.php:543 #, php-format msgid "Add %s field(s)" msgstr "" -#: libraries/messages.inc.php:35 +#: libraries/messages.inc.php:31 msgid "Add custom comment into header (\\n splits lines)" msgstr "" # మొదటి అనువాదము -#: libraries/messages.inc.php:36 +#: libraries/messages.inc.php:32 msgid "Add into comments" msgstr "స్పందనలకు చేర్చు" # మొదటి అనువాదము -#: libraries/messages.inc.php:37 tbl_structure.php:541 +#: libraries/messages.inc.php:33 tbl_structure.php:541 msgid "Add new field" msgstr "క్రొత్త ఫీల్డ్ చేర్చు" -#: libraries/messages.inc.php:38 server_privileges.php:1886 +#: libraries/messages.inc.php:34 server_privileges.php:1886 msgid "Add privileges on the following database" msgstr "" -#: libraries/messages.inc.php:39 server_privileges.php:1907 +#: libraries/messages.inc.php:35 server_privileges.php:1907 msgid "Add privileges on the following table" msgstr "" -#: libraries/messages.inc.php:40 tbl_select.php:288 +#: libraries/messages.inc.php:36 tbl_select.php:288 msgid "Add search conditions (body of the \"where\" clause):" msgstr "" -#: libraries/messages.inc.php:41 tbl_indexes.php:251 +#: libraries/messages.inc.php:37 tbl_indexes.php:251 #, php-format msgid "Add to index  %s column(s)" msgstr "" # మొదటి అనువాదము -#: libraries/messages.inc.php:42 server_privileges.php:1570 +#: libraries/messages.inc.php:38 server_privileges.php:1570 #: server_privileges.php:1594 server_privileges.php:1988 #: server_privileges.php:2177 msgid "Add a new User" msgstr "క్రొత్త వినియోగదారుని చేర్చు" # మొదటి అనువాదము -#: libraries/messages.inc.php:43 server_privileges.php:931 +#: libraries/messages.inc.php:39 server_privileges.php:931 msgid "You have added a new user." msgstr "మీరు క్రొత్త వినియోగదారుని చేర్చారు" -#: libraries/messages.inc.php:44 server_privileges.php:571 +#: libraries/messages.inc.php:40 server_privileges.php:571 msgid "Administration" msgstr "పరిపాలన" # మొదటి అనువాదము -#: libraries/messages.inc.php:45 tbl_structure.php:557 +#: libraries/messages.inc.php:41 tbl_structure.php:557 #, php-format msgid "After %s" msgstr "%s మార్లు తరువాత" # మొదటి అనువాదము -#: libraries/messages.inc.php:46 tbl_change.php:1147 +#: libraries/messages.inc.php:42 tbl_change.php:1147 msgid "Go back to previous page" msgstr "మునుపటి పుటకు వెళ్ళు" -#: libraries/messages.inc.php:47 tbl_change.php:1148 +#: libraries/messages.inc.php:43 tbl_change.php:1148 msgid "Insert another new row" msgstr "" -#: libraries/messages.inc.php:48 tbl_change.php:1160 +#: libraries/messages.inc.php:44 tbl_change.php:1160 msgid "Edit next row" msgstr "" # మొదటి అనువాదము -#: libraries/messages.inc.php:49 tbl_change.php:1152 +#: libraries/messages.inc.php:45 tbl_change.php:1152 msgid "Go back to this page" msgstr "ఈ పుటకు తిరిగి వెళ్ళుము" # మొదటి అనువాదము -#: libraries/messages.inc.php:50 querywindow.php:115 +#: libraries/messages.inc.php:46 querywindow.php:115 msgid "All" msgstr "అన్నీ" -#: libraries/messages.inc.php:53 tbl_operations.php:249 +#: libraries/messages.inc.php:49 tbl_operations.php:249 msgid "Alter table order by" msgstr "" # మొదటి అనువాదము -#: libraries/messages.inc.php:54 tbl_operations.php:660 +#: libraries/messages.inc.php:50 tbl_operations.php:660 msgid "Analyze" msgstr "విశదీకరించు" -#: libraries/messages.inc.php:57 +#: libraries/messages.inc.php:53 msgid "and" msgstr "మరియు" -#: libraries/messages.inc.php:59 pmd_general.php:87 +#: libraries/messages.inc.php:55 pmd_general.php:87 msgid "Angular links" msgstr "" -#: libraries/messages.inc.php:60 tbl_structure.php:401 tbl_structure.php:415 +#: libraries/messages.inc.php:56 tbl_structure.php:401 tbl_structure.php:415 #: tbl_structure.php:429 #, php-format msgid "An index has been added on %s" msgstr "" # మొదటి అనువాదము -#: libraries/messages.inc.php:61 server_privileges.php:1521 +#: libraries/messages.inc.php:57 server_privileges.php:1521 #: server_privileges.php:2123 msgid "Any" msgstr "ఏదైనను" -#: libraries/messages.inc.php:62 libraries/replication_gui.lib.php:298 +#: libraries/messages.inc.php:58 libraries/replication_gui.lib.php:298 #: server_privileges.php:725 msgid "Any host" msgstr "" # మొదటి అనువాదము -#: libraries/messages.inc.php:63 libraries/replication_gui.lib.php:250 +#: libraries/messages.inc.php:59 libraries/replication_gui.lib.php:250 #: server_privileges.php:677 msgid "Any user" msgstr "ఏ వాడుకరి ఐనను" -#: libraries/messages.inc.php:64 server_synchronize.php:449 +#: libraries/messages.inc.php:60 server_synchronize.php:449 #: server_synchronize.php:894 msgid "Apply Selected Changes" msgstr "" -#: libraries/messages.inc.php:66 tbl_structure.php:386 +#: libraries/messages.inc.php:62 tbl_structure.php:386 #, php-format msgid "A primary key has been added on %s" msgstr "" -#: libraries/messages.inc.php:67 libraries/mysql_charsets.lib.php:368 +#: libraries/messages.inc.php:63 libraries/mysql_charsets.lib.php:368 msgid "Arabic" msgstr "అరబిక్" -#: libraries/messages.inc.php:68 libraries/mysql_charsets.lib.php:359 +#: libraries/messages.inc.php:64 libraries/mysql_charsets.lib.php:359 msgid "Armenian" msgstr "ఆర్మేనియన్" -#: libraries/messages.inc.php:70 libraries/tbl_properties.inc.php:394 +#: libraries/messages.inc.php:66 libraries/tbl_properties.inc.php:394 msgid "As defined:" msgstr "" -#: libraries/messages.inc.php:71 tbl_structure.php:556 +#: libraries/messages.inc.php:67 tbl_structure.php:556 msgid "At Beginning of Table" msgstr "" -#: libraries/messages.inc.php:72 tbl_structure.php:555 +#: libraries/messages.inc.php:68 tbl_structure.php:555 msgid "At End of Table" msgstr "" -#: libraries/messages.inc.php:73 libraries/tbl_properties.inc.php:108 +#: libraries/messages.inc.php:69 libraries/tbl_properties.inc.php:108 #: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:144 #: tbl_structure.php:180 msgid "Attributes" msgstr "" -#: libraries/messages.inc.php:74 pdf_pages.php:303 pdf_pages.php:306 +#: libraries/messages.inc.php:70 pdf_pages.php:303 pdf_pages.php:306 msgid "Automatic layout" msgstr "" -#: libraries/messages.inc.php:77 libraries/mysql_charsets.lib.php:354 +#: libraries/messages.inc.php:73 libraries/mysql_charsets.lib.php:354 msgid "Baltic" msgstr "" -#: libraries/messages.inc.php:78 libraries/sqlparser.lib.php:175 +#: libraries/messages.inc.php:74 libraries/sqlparser.lib.php:175 msgid "BEGIN CUT" msgstr "" -#: libraries/messages.inc.php:79 libraries/sqlparser.lib.php:179 +#: libraries/messages.inc.php:75 libraries/sqlparser.lib.php:179 msgid "BEGIN RAW" msgstr "" -#: libraries/messages.inc.php:80 libraries/mysql_charsets.lib.php:201 +#: libraries/messages.inc.php:76 libraries/mysql_charsets.lib.php:201 #: libraries/mysql_charsets.lib.php:402 tbl_change.php:518 msgid "Binary" msgstr "" -#: libraries/messages.inc.php:81 tbl_change.php:894 +#: libraries/messages.inc.php:77 tbl_change.php:894 msgid "Binary - do not edit" msgstr "" -#: libraries/messages.inc.php:82 libraries/server_links.inc.php:76 +#: libraries/messages.inc.php:78 libraries/server_links.inc.php:76 #: server_binlog.php:110 server_status.php:253 test/theme.php:121 msgid "Binary log" msgstr "" -#: libraries/messages.inc.php:83 server_binlog.php:217 +#: libraries/messages.inc.php:79 server_binlog.php:217 msgid "Event type" msgstr "" -#: libraries/messages.inc.php:84 server_binlog.php:220 +#: libraries/messages.inc.php:80 server_binlog.php:220 msgid "Information" msgstr "సమాచారం" -#: libraries/messages.inc.php:85 server_binlog.php:215 +#: libraries/messages.inc.php:81 server_binlog.php:215 msgid "Log name" msgstr "" -#: libraries/messages.inc.php:86 server_binlog.php:219 +#: libraries/messages.inc.php:82 server_binlog.php:219 msgid "Original position" msgstr "అసలు స్థానం" -#: libraries/messages.inc.php:87 server_binlog.php:216 +#: libraries/messages.inc.php:83 server_binlog.php:216 msgid "Position" msgstr "" -#: libraries/messages.inc.php:88 libraries/replication_gui.lib.php:169 +#: libraries/messages.inc.php:84 libraries/replication_gui.lib.php:169 #: server_binlog.php:218 msgid "Server ID" msgstr "" -#: libraries/messages.inc.php:92 +#: libraries/messages.inc.php:88 msgctxt "$strBLOBRepositoryDisabled" msgid "Disabled" msgstr "" -#: libraries/messages.inc.php:95 +#: libraries/messages.inc.php:91 msgctxt "$strBLOBRepositoryEnabled" msgid "Enabled" msgstr "" -#: libraries/messages.inc.php:97 tbl_change.php:888 +#: libraries/messages.inc.php:93 tbl_change.php:888 msgid "Remove BLOB Repository Reference" msgstr "" -#: libraries/messages.inc.php:98 +#: libraries/messages.inc.php:94 msgctxt "$strBLOBRepositoryRepair" msgid "Repair" msgstr "" -#: libraries/messages.inc.php:99 tbl_change.php:987 +#: libraries/messages.inc.php:95 tbl_change.php:987 msgid "Upload to BLOB repository" msgstr "" -#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:359 +#: libraries/messages.inc.php:96 libraries/sql_query_form.lib.php:359 #: sql.php:677 msgid "Let every user access this bookmark" msgstr "" -#: libraries/messages.inc.php:103 sql.php:671 +#: libraries/messages.inc.php:99 sql.php:671 msgid "Label" msgstr "" -#: libraries/messages.inc.php:104 libraries/sql_query_form.lib.php:433 +#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:433 msgid "Bookmarked SQL query" msgstr "" -#: libraries/messages.inc.php:105 libraries/sql_query_form.lib.php:365 +#: libraries/messages.inc.php:101 libraries/sql_query_form.lib.php:365 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/messages.inc.php:106 libraries/sql_query_form.lib.php:352 +#: libraries/messages.inc.php:102 libraries/sql_query_form.lib.php:352 #: sql.php:665 sql.php:666 sql.php:683 msgid "Bookmark this SQL query" msgstr "" -#: libraries/messages.inc.php:107 libraries/sql_query_form.lib.php:466 +#: libraries/messages.inc.php:103 libraries/sql_query_form.lib.php:466 msgid "View only" msgstr "" -#: libraries/messages.inc.php:109 tbl_structure.php:161 +#: libraries/messages.inc.php:105 tbl_structure.php:161 msgid "Browse distinct values" msgstr "" -#: libraries/messages.inc.php:110 tbl_change.php:252 tbl_select.php:27 +#: libraries/messages.inc.php:106 tbl_change.php:252 tbl_select.php:27 #: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34 msgid "Browse foreign values" msgstr "" -#: libraries/messages.inc.php:118 libraries/mysql_charsets.lib.php:213 +#: libraries/messages.inc.php:114 libraries/mysql_charsets.lib.php:213 msgid "Bulgarian" msgstr "బల్గేరియన్" -#: libraries/messages.inc.php:120 +#: libraries/messages.inc.php:116 msgid "\"bzipped\"" msgstr "" -#: libraries/messages.inc.php:122 +#: libraries/messages.inc.php:118 msgid "Calendar" msgstr "" -#: libraries/messages.inc.php:129 tbl_indexes.php:75 +#: libraries/messages.inc.php:125 tbl_indexes.php:75 msgid "Can't rename index to PRIMARY!" msgstr "" -#: libraries/messages.inc.php:132 libraries/mysql_charsets.lib.php:223 +#: libraries/messages.inc.php:128 libraries/mysql_charsets.lib.php:223 #: libraries/mysql_charsets.lib.php:409 msgid "case-insensitive" msgstr "" -#: libraries/messages.inc.php:133 libraries/mysql_charsets.lib.php:226 +#: libraries/messages.inc.php:129 libraries/mysql_charsets.lib.php:226 #: libraries/mysql_charsets.lib.php:411 msgid "case-sensitive" msgstr "" -#: libraries/messages.inc.php:134 libraries/mysql_charsets.lib.php:332 +#: libraries/messages.inc.php:130 libraries/mysql_charsets.lib.php:332 msgid "Central European" msgstr "" # మొదటి అనువాదము -#: libraries/messages.inc.php:136 server_privileges.php:1969 +#: libraries/messages.inc.php:132 server_privileges.php:1969 msgid "... keep the old one." msgstr "... పాతదే ఉంచుము" -#: libraries/messages.inc.php:137 server_privileges.php:1967 +#: libraries/messages.inc.php:133 server_privileges.php:1967 msgid "Create a new user with the same privileges and ..." msgstr "" -#: libraries/messages.inc.php:138 server_privileges.php:1972 +#: libraries/messages.inc.php:134 server_privileges.php:1972 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/messages.inc.php:139 server_privileges.php:1970 +#: libraries/messages.inc.php:135 server_privileges.php:1970 msgid " ... delete the old one from the user tables." msgstr "" -#: libraries/messages.inc.php:140 server_privileges.php:1971 +#: libraries/messages.inc.php:136 server_privileges.php:1971 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/messages.inc.php:141 server_privileges.php:1964 +#: libraries/messages.inc.php:137 server_privileges.php:1964 msgid "Change Login Information / Copy User" msgstr "" # మొదటి అనువాదము -#: libraries/messages.inc.php:144 libraries/mysql_charsets.lib.php:107 +#: libraries/messages.inc.php:140 libraries/mysql_charsets.lib.php:107 msgid "Charset" msgstr "అక్షరమాల" -#: libraries/messages.inc.php:146 server_collations.php:40 +#: libraries/messages.inc.php:142 server_collations.php:40 msgid "Character Sets and Collations" msgstr "" -#: libraries/messages.inc.php:147 libraries/server_links.inc.php:57 +#: libraries/messages.inc.php:143 libraries/server_links.inc.php:57 #: test/theme.php:109 msgid "Charsets" msgstr "" -#: libraries/messages.inc.php:149 tbl_operations.php:661 +#: libraries/messages.inc.php:145 tbl_operations.php:661 msgid "Check" msgstr "" -#: libraries/messages.inc.php:151 server_databases.php:293 +#: libraries/messages.inc.php:147 server_databases.php:293 #: server_databases.php:294 msgid "Check Privileges" msgstr "" -#: libraries/messages.inc.php:152 server_databases.php:289 +#: libraries/messages.inc.php:148 server_databases.php:289 #, php-format msgid "Check privileges for database "%s"." msgstr "" -#: libraries/messages.inc.php:154 pdf_pages.php:261 +#: libraries/messages.inc.php:150 pdf_pages.php:261 msgid "Please choose a page to edit" msgstr "" -#: libraries/messages.inc.php:157 +#: libraries/messages.inc.php:153 msgid "Displaying Column Comments" msgstr "" -#: libraries/messages.inc.php:159 pdf_pages.php:483 view_create.php:148 +#: libraries/messages.inc.php:155 pdf_pages.php:483 view_create.php:148 msgid "Column names" msgstr "" -#: libraries/messages.inc.php:160 server_privileges.php:1685 +#: libraries/messages.inc.php:156 server_privileges.php:1685 msgid "Column-specific privileges" msgstr "" -#: libraries/messages.inc.php:164 +#: libraries/messages.inc.php:160 msgid "MySQL 4.0 compatible" msgstr "" -#: libraries/messages.inc.php:165 +#: libraries/messages.inc.php:161 msgid "Complete inserts" msgstr "" -#: libraries/messages.inc.php:168 +#: libraries/messages.inc.php:164 #, php-format msgid "Could not load default configuration from: \"%1$s\"" msgstr "" -#: libraries/messages.inc.php:169 main.php:306 +#: libraries/messages.inc.php:165 main.php:306 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: libraries/messages.inc.php:171 pdf_schema.php:672 +#: libraries/messages.inc.php:167 pdf_schema.php:672 #, php-format msgid "Please configure the coordinates for table %s" msgstr "" -#: libraries/messages.inc.php:173 server_status.php:433 +#: libraries/messages.inc.php:169 server_status.php:433 msgid "Connections" msgstr "అనుసంధానాలు" -#: libraries/messages.inc.php:179 tbl_operations.php:509 +#: libraries/messages.inc.php:175 tbl_operations.php:509 msgid "Copy table to (database.table):" msgstr "" -#: libraries/messages.inc.php:180 tbl_move_copy.php:58 +#: libraries/messages.inc.php:176 tbl_move_copy.php:58 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/messages.inc.php:181 tbl_move_copy.php:48 +#: libraries/messages.inc.php:177 tbl_move_copy.php:48 msgid "Can't copy table to same one!" msgstr "" -#: libraries/messages.inc.php:182 server_synchronize.php:94 +#: libraries/messages.inc.php:178 server_synchronize.php:94 msgid "Could not connect to the source" msgstr "" -#: libraries/messages.inc.php:183 server_synchronize.php:97 +#: libraries/messages.inc.php:179 server_synchronize.php:97 msgid "Could not connect to the target" msgstr "" -#: libraries/messages.inc.php:184 server_processlist.php:24 +#: libraries/messages.inc.php:180 server_processlist.php:24 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: libraries/messages.inc.php:187 +#: libraries/messages.inc.php:183 #, php-format msgid "Create an index on %s columns" msgstr "" -#: libraries/messages.inc.php:188 tbl_indexes.php:160 +#: libraries/messages.inc.php:184 tbl_indexes.php:160 msgid "Create a new index" msgstr "" # మొదటి అనువాదము -#: libraries/messages.inc.php:191 pdf_pages.php:297 pmd_pdf.php:114 +#: libraries/messages.inc.php:187 pdf_pages.php:297 pmd_pdf.php:114 msgid "Create a page" msgstr "పుటని సృష్టించు" -#: libraries/messages.inc.php:192 +#: libraries/messages.inc.php:188 msgid "Creation of PDFs" msgstr "" -#: libraries/messages.inc.php:193 pmd_general.php:74 pmd_general.php:306 +#: libraries/messages.inc.php:189 pmd_general.php:74 pmd_general.php:306 msgid "Create relation" msgstr "" -#: libraries/messages.inc.php:194 pmd_general.php:71 +#: libraries/messages.inc.php:190 pmd_general.php:71 #: server_synchronize.php:429 server_synchronize.php:872 msgid "Create table" msgstr "" -#: libraries/messages.inc.php:195 +#: libraries/messages.inc.php:191 msgctxt "$strCreateTableShort" msgid "Create table" msgstr "" -#: libraries/messages.inc.php:196 server_privileges.php:1994 +#: libraries/messages.inc.php:192 server_privileges.php:1994 msgid "Database for user" msgstr "" -#: libraries/messages.inc.php:197 server_privileges.php:1999 +#: libraries/messages.inc.php:193 server_privileges.php:1999 msgid "Create database with same name and grant all privileges" msgstr "" -#: libraries/messages.inc.php:198 +#: libraries/messages.inc.php:194 msgctxt "$strCreateUserDatabaseNone" msgid "None" msgstr "" -#: libraries/messages.inc.php:199 server_privileges.php:2003 +#: libraries/messages.inc.php:195 server_privileges.php:2003 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: libraries/messages.inc.php:200 server_privileges.php:2000 +#: libraries/messages.inc.php:196 server_privileges.php:2000 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: libraries/messages.inc.php:201 +#: libraries/messages.inc.php:197 msgid "Creation/Update/Check dates" msgstr "" -#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:229 +#: libraries/messages.inc.php:199 libraries/mysql_charsets.lib.php:229 msgid "Croatian" msgstr "క్రొయోషియన్" -#: libraries/messages.inc.php:204 +#: libraries/messages.inc.php:200 msgid "CSV" msgstr "" -#: libraries/messages.inc.php:205 libraries/server_synchronize.lib.php:1343 +#: libraries/messages.inc.php:201 libraries/server_synchronize.lib.php:1343 #: libraries/server_synchronize.lib.php:1369 msgid "Current server" msgstr "" -#: libraries/messages.inc.php:206 main.php:159 +#: libraries/messages.inc.php:202 main.php:159 msgid "Custom color" msgstr "" -#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:365 +#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:365 msgid "Cyrillic" msgstr "" # మొదటి అనువాదము -#: libraries/messages.inc.php:208 libraries/mysql_charsets.lib.php:232 +#: libraries/messages.inc.php:204 libraries/mysql_charsets.lib.php:232 msgid "Czech" msgstr "ఛెక్" # మొదటి అనువాదము -#: libraries/messages.inc.php:209 libraries/mysql_charsets.lib.php:383 +#: libraries/messages.inc.php:205 libraries/mysql_charsets.lib.php:383 msgid "Czech-Slovak" msgstr "ఛెక్-స్లోవాక్" -#: libraries/messages.inc.php:211 libraries/mysql_charsets.lib.php:235 +#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:235 msgid "Danish" msgstr "డానిష్" -#: libraries/messages.inc.php:214 +#: libraries/messages.inc.php:210 msgid "Database export options" msgstr "" -#: libraries/messages.inc.php:217 server_synchronize.php:122 +#: libraries/messages.inc.php:213 server_synchronize.php:122 #: server_synchronize.php:125 tbl_create.php:82 tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "" -#: libraries/messages.inc.php:219 server_databases.php:63 +#: libraries/messages.inc.php:215 server_databases.php:63 #, php-format msgid "%s databases have been dropped successfully." msgstr "" -#: libraries/messages.inc.php:220 libraries/server_synchronize.lib.php:1341 +#: libraries/messages.inc.php:216 libraries/server_synchronize.lib.php:1341 #: server_synchronize.php:1110 msgid "Source database" msgstr "" -#: libraries/messages.inc.php:221 server_databases.php:88 +#: libraries/messages.inc.php:217 server_databases.php:88 msgid "Databases statistics" msgstr "" -#: libraries/messages.inc.php:222 server_databases.php:362 +#: libraries/messages.inc.php:218 server_databases.php:362 #: server_databases.php:363 msgid "Disable Statistics" msgstr "గణాంకాలని అచేతనంచేయి" -#: libraries/messages.inc.php:223 server_databases.php:358 +#: libraries/messages.inc.php:219 server_databases.php:358 #: server_databases.php:359 msgid "Enable Statistics" msgstr "గణాంకాలని చేతనంచేయి" -#: libraries/messages.inc.php:224 server_databases.php:366 +#: libraries/messages.inc.php:220 server_databases.php:366 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." msgstr "" -#: libraries/messages.inc.php:225 libraries/server_synchronize.lib.php:1367 +#: libraries/messages.inc.php:221 libraries/server_synchronize.lib.php:1367 #: server_synchronize.php:1112 msgid "Target database" msgstr "" -#: libraries/messages.inc.php:228 server_synchronize.php:425 +#: libraries/messages.inc.php:224 server_synchronize.php:425 #: server_synchronize.php:868 msgid "Data Difference" msgstr "" -#: libraries/messages.inc.php:231 server_synchronize.php:272 +#: libraries/messages.inc.php:227 server_synchronize.php:272 msgid "Data Synchronization" msgstr "" -#: libraries/messages.inc.php:235 server_privileges.php:526 +#: libraries/messages.inc.php:231 server_privileges.php:526 #: server_privileges.php:1679 msgid "Database-specific privileges" msgstr "" -#: libraries/messages.inc.php:237 server_privileges.php:2136 +#: libraries/messages.inc.php:233 server_privileges.php:2136 msgid "database-specific" msgstr "" -#: libraries/messages.inc.php:240 libraries/tbl_properties.inc.php:106 +#: libraries/messages.inc.php:236 libraries/tbl_properties.inc.php:106 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" msgstr "" -#: libraries/messages.inc.php:241 tbl_operations.php:589 +#: libraries/messages.inc.php:237 tbl_operations.php:589 msgid "Defragment table" msgstr "" -#: libraries/messages.inc.php:242 +#: libraries/messages.inc.php:238 msgid "Use delayed inserts" msgstr "" -#: libraries/messages.inc.php:245 server_privileges.php:1243 +#: libraries/messages.inc.php:241 server_privileges.php:1243 msgid "No users selected for deleting!" msgstr "" -#: libraries/messages.inc.php:246 pmd_general.php:372 +#: libraries/messages.inc.php:242 pmd_general.php:372 msgid "Delete relation" msgstr "" -#: libraries/messages.inc.php:248 server_privileges.php:1232 +#: libraries/messages.inc.php:244 server_privileges.php:1232 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/messages.inc.php:249 libraries/sql_query_form.lib.php:388 +#: libraries/messages.inc.php:245 libraries/sql_query_form.lib.php:388 msgid "Delimiter" msgstr "" -#: libraries/messages.inc.php:250 pdf_pages.php:506 +#: libraries/messages.inc.php:246 pdf_pages.php:506 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" msgstr "" -#: libraries/messages.inc.php:254 pmd_help.php:29 +#: libraries/messages.inc.php:250 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." msgstr "" -#: libraries/messages.inc.php:256 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:252 libraries/mysql_charsets.lib.php:247 msgid "dictionary" msgstr "నిఘంటువు" -#: libraries/messages.inc.php:257 libraries/server_synchronize.lib.php:1348 +#: libraries/messages.inc.php:253 libraries/server_synchronize.lib.php:1348 msgid "Difference" msgstr "తేడా" -#: libraries/messages.inc.php:258 pmd_general.php:87 +#: libraries/messages.inc.php:254 pmd_general.php:87 msgid "Direct links" msgstr "నేరు లంకెలు" -#: libraries/messages.inc.php:261 +#: libraries/messages.inc.php:257 msgid "Disable foreign key checks" msgstr "" -#: libraries/messages.inc.php:262 +#: libraries/messages.inc.php:258 msgid "Display Features" msgstr "" -#: libraries/messages.inc.php:263 tbl_select.php:301 +#: libraries/messages.inc.php:259 tbl_select.php:301 msgid "Display order:" msgstr "" -#: libraries/messages.inc.php:265 tbl_select.php:132 +#: libraries/messages.inc.php:261 tbl_select.php:132 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "" -#: libraries/messages.inc.php:266 +#: libraries/messages.inc.php:262 msgid "DocSQL" msgstr "" -#: libraries/messages.inc.php:268 +#: libraries/messages.inc.php:264 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/messages.inc.php:273 server_privileges.php:1579 +#: libraries/messages.inc.php:269 server_privileges.php:1579 #: server_privileges.php:1580 server_privileges.php:1581 msgid "Drop the databases that have the same names as the users." msgstr "" -#: libraries/messages.inc.php:278 tbl_printview.php:382 tbl_structure.php:743 +#: libraries/messages.inc.php:274 tbl_printview.php:382 tbl_structure.php:743 msgid "dynamic" msgstr "" -#: libraries/messages.inc.php:282 server_privileges.php:1324 +#: libraries/messages.inc.php:278 server_privileges.php:1324 #: server_privileges.php:1610 msgid "Edit Privileges" msgstr "" -#: libraries/messages.inc.php:283 tbl_printview.php:341 tbl_structure.php:688 +#: libraries/messages.inc.php:279 tbl_printview.php:341 tbl_structure.php:688 msgid "Effective" msgstr "" -#: libraries/messages.inc.php:286 libraries/relation.lib.php:100 +#: libraries/messages.inc.php:282 libraries/relation.lib.php:100 msgid "Enabled" msgstr "" -#: libraries/messages.inc.php:287 +#: libraries/messages.inc.php:283 msgid "Enclose export in a transaction" msgstr "" -#: libraries/messages.inc.php:288 libraries/sqlparser.lib.php:177 +#: libraries/messages.inc.php:284 libraries/sqlparser.lib.php:177 msgid "END CUT" msgstr "" -#: libraries/messages.inc.php:290 libraries/sqlparser.lib.php:183 +#: libraries/messages.inc.php:286 libraries/sqlparser.lib.php:183 msgid "END RAW" msgstr "" -#: libraries/messages.inc.php:293 libraries/server_links.inc.php:61 +#: libraries/messages.inc.php:289 libraries/server_links.inc.php:61 #: test/theme.php:113 msgid "Engines" msgstr "" -#: libraries/messages.inc.php:295 libraries/mysql_charsets.lib.php:238 +#: libraries/messages.inc.php:291 libraries/mysql_charsets.lib.php:238 msgid "English" msgstr "ఆంగ్లం" -#: libraries/messages.inc.php:296 server_privileges.php:393 +#: libraries/messages.inc.php:292 server_privileges.php:393 #: server_privileges.php:535 server_privileges.php:1501 msgid " Note: MySQL privilege names are expressed in English " msgstr "" -#: libraries/messages.inc.php:298 libraries/zip_extension.lib.php:49 +#: libraries/messages.inc.php:294 libraries/zip_extension.lib.php:49 #: libraries/zip_extension.lib.php:51 libraries/zip_extension.lib.php:66 msgid "Error in ZIP archive:" msgstr "" -#: libraries/messages.inc.php:303 libraries/mysql_charsets.lib.php:241 +#: libraries/messages.inc.php:299 libraries/mysql_charsets.lib.php:241 msgid "Esperanto" msgstr "" -#: libraries/messages.inc.php:304 libraries/mysql_charsets.lib.php:244 +#: libraries/messages.inc.php:300 libraries/mysql_charsets.lib.php:244 msgid "Estonian" msgstr "" -#: libraries/messages.inc.php:305 libraries/tbl_triggers.lib.php:29 +#: libraries/messages.inc.php:301 libraries/tbl_triggers.lib.php:29 msgid "Event" msgstr "" -#: libraries/messages.inc.php:307 +#: libraries/messages.inc.php:303 msgid "Excel edition" msgstr "" -#: libraries/messages.inc.php:311 pmd_pdf.php:85 +#: libraries/messages.inc.php:307 pmd_pdf.php:85 msgid "Export/Import to scale" msgstr "" -#: libraries/messages.inc.php:313 +#: libraries/messages.inc.php:309 msgid "Extended inserts" msgstr "" -#: libraries/messages.inc.php:314 pdf_schema.php:1267 pdf_schema.php:1288 +#: libraries/messages.inc.php:310 pdf_schema.php:1267 pdf_schema.php:1288 #: tbl_printview.php:147 tbl_structure.php:183 tbl_tracking.php:278 msgid "Extra" msgstr "" -#: libraries/messages.inc.php:316 server_status.php:447 +#: libraries/messages.inc.php:312 server_status.php:447 msgid "Failed attempts" msgstr "" -#: libraries/messages.inc.php:318 tbl_structure.php:375 +#: libraries/messages.inc.php:314 tbl_structure.php:375 #, php-format msgid "Field %s has been dropped" msgstr "" -#: libraries/messages.inc.php:322 libraries/sql_query_form.lib.php:317 +#: libraries/messages.inc.php:318 libraries/sql_query_form.lib.php:317 msgid "Fields" msgstr "" -#: libraries/messages.inc.php:332 server_binlog.php:136 +#: libraries/messages.inc.php:328 server_binlog.php:136 msgid "Files" msgstr "దస్త్రాలు" -#: libraries/messages.inc.php:334 server_privileges.php:1597 +#: libraries/messages.inc.php:330 server_privileges.php:1597 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -3717,218 +3717,218 @@ msgid "" "sreload the privileges%s before you continue." msgstr "" -#: libraries/messages.inc.php:335 server_status.php:289 +#: libraries/messages.inc.php:331 server_status.php:289 msgid "Flush query cache" msgstr "" -#: libraries/messages.inc.php:336 +#: libraries/messages.inc.php:332 msgid "Flush the table (\"FLUSH\")" msgstr "" -#: libraries/messages.inc.php:337 server_status.php:271 +#: libraries/messages.inc.php:333 server_status.php:271 msgid "Flush (close) all tables" msgstr "" -#: libraries/messages.inc.php:339 tbl_relation.php:279 +#: libraries/messages.inc.php:335 tbl_relation.php:279 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" -#: libraries/messages.inc.php:341 setup/lib/messages.inc.php:88 +#: libraries/messages.inc.php:337 setup/lib/messages.inc.php:88 #: tbl_printview.php:376 tbl_structure.php:738 msgid "Format" msgstr "" -#: libraries/messages.inc.php:344 server_replication.php:325 +#: libraries/messages.inc.php:340 server_replication.php:325 msgid "Full start" msgstr "" -#: libraries/messages.inc.php:345 server_replication.php:325 +#: libraries/messages.inc.php:341 server_replication.php:325 msgid "Full stop" msgstr "" -#: libraries/messages.inc.php:347 tbl_change.php:282 tbl_change.php:320 +#: libraries/messages.inc.php:343 tbl_change.php:282 tbl_change.php:320 msgid "Function" msgstr "" -#: libraries/messages.inc.php:355 libraries/mysql_charsets.lib.php:377 +#: libraries/messages.inc.php:351 libraries/mysql_charsets.lib.php:377 msgid "Georgian" msgstr "" -#: libraries/messages.inc.php:356 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:352 libraries/mysql_charsets.lib.php:247 #: libraries/mysql_charsets.lib.php:250 msgid "German" msgstr "జర్మన్" -#: libraries/messages.inc.php:357 themes.php:42 +#: libraries/messages.inc.php:353 themes.php:42 msgid "Get more themes!" msgstr "" -#: libraries/messages.inc.php:358 server_privileges.php:2134 +#: libraries/messages.inc.php:354 server_privileges.php:2134 msgid "global" msgstr "" -#: libraries/messages.inc.php:359 server_privileges.php:524 +#: libraries/messages.inc.php:355 server_privileges.php:524 #: server_privileges.php:1500 msgid "Global privileges" msgstr "" -#: libraries/messages.inc.php:360 server_variables.php:55 +#: libraries/messages.inc.php:356 server_variables.php:55 #: server_variables.php:89 msgid "Global value" msgstr "సార్వత్రిక విలువ" -#: libraries/messages.inc.php:365 server_privileges.php:1502 +#: libraries/messages.inc.php:361 server_privileges.php:1502 #: server_privileges.php:1684 server_privileges.php:2033 msgid "Grant" msgstr "" -#: libraries/messages.inc.php:366 libraries/mysql_charsets.lib.php:380 +#: libraries/messages.inc.php:362 libraries/mysql_charsets.lib.php:380 msgid "Greek" msgstr "గ్రీకు" -#: libraries/messages.inc.php:367 +#: libraries/messages.inc.php:363 msgid "\"gzipped\"" msgstr "" -#: libraries/messages.inc.php:369 server_status.php:250 +#: libraries/messages.inc.php:365 server_status.php:250 msgid "Handler" msgstr "" -#: libraries/messages.inc.php:370 server_synchronize.php:464 +#: libraries/messages.inc.php:366 server_synchronize.php:464 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: libraries/messages.inc.php:372 libraries/mysql_charsets.lib.php:374 +#: libraries/messages.inc.php:368 libraries/mysql_charsets.lib.php:374 msgid "Hebrew" msgstr "హిబ్రూ" -#: libraries/messages.inc.php:373 pmd_general.php:83 +#: libraries/messages.inc.php:369 pmd_general.php:83 msgid "Help" msgstr "సహాయం" -#: libraries/messages.inc.php:374 +#: libraries/messages.inc.php:370 msgid "Use hexadecimal for BLOB" msgstr "" # మొదటి అనువాదము -#: libraries/messages.inc.php:376 pmd_general.php:120 +#: libraries/messages.inc.php:372 pmd_general.php:120 msgid "Hide/Show all" msgstr "అన్నింటిని చూపుము/దాచుము" -#: libraries/messages.inc.php:377 pmd_general.php:124 +#: libraries/messages.inc.php:373 pmd_general.php:124 msgid "Hide/Show Tables with no relation" msgstr "" -#: libraries/messages.inc.php:378 libraries/navigation_header.inc.php:54 +#: libraries/messages.inc.php:374 libraries/navigation_header.inc.php:54 #: libraries/navigation_header.inc.php:57 #: libraries/navigation_header.inc.php:58 msgid "Home" msgstr "ముంగిలి" -#: libraries/messages.inc.php:379 main.php:233 +#: libraries/messages.inc.php:375 main.php:233 msgid "Official Homepage" msgstr "" -#: libraries/messages.inc.php:382 libraries/replication_gui.lib.php:327 +#: libraries/messages.inc.php:378 libraries/replication_gui.lib.php:327 #: server_privileges.php:753 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/messages.inc.php:383 +#: libraries/messages.inc.php:379 msgid "Microsoft Word 2000" msgstr "" -#: libraries/messages.inc.php:384 libraries/mysql_charsets.lib.php:253 +#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:253 msgid "Hungarian" msgstr "హంగేరియన్" -#: libraries/messages.inc.php:386 libraries/mysql_charsets.lib.php:256 +#: libraries/messages.inc.php:382 libraries/mysql_charsets.lib.php:256 msgid "Icelandic" msgstr "" -#: libraries/messages.inc.php:387 server_processlist.php:53 +#: libraries/messages.inc.php:383 server_processlist.php:53 msgid "ID" msgstr "" -#: libraries/messages.inc.php:388 libraries/mult_submits.inc.php:108 +#: libraries/messages.inc.php:384 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:479 msgid "Fulltext" msgstr "" -#: libraries/messages.inc.php:389 +#: libraries/messages.inc.php:385 msgid "Ignore duplicate rows" msgstr "" -#: libraries/messages.inc.php:390 tbl_change.php:302 tbl_indexes.php:200 +#: libraries/messages.inc.php:386 tbl_change.php:302 tbl_indexes.php:200 #: tbl_indexes.php:225 msgid "Ignore" msgstr "" -#: libraries/messages.inc.php:391 +#: libraries/messages.inc.php:387 msgid "Use ignore inserts" msgstr "" -#: libraries/messages.inc.php:392 +#: libraries/messages.inc.php:388 msgid "Column names in first row" msgstr "" -#: libraries/messages.inc.php:393 +#: libraries/messages.inc.php:389 msgid "Do not import empty rows" msgstr "" -#: libraries/messages.inc.php:394 pmd_general.php:104 +#: libraries/messages.inc.php:390 pmd_general.php:104 msgid "Import/Export coordinates for PDF schema" msgstr "" -#: libraries/messages.inc.php:395 querywindow.php:104 +#: libraries/messages.inc.php:391 querywindow.php:104 msgid "Import files" msgstr "" -#: libraries/messages.inc.php:403 +#: libraries/messages.inc.php:399 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/messages.inc.php:404 libraries/messages.inc.php:584 +#: libraries/messages.inc.php:400 libraries/messages.inc.php:580 msgid "Open Document Spreadsheet" msgstr "" -#: libraries/messages.inc.php:405 +#: libraries/messages.inc.php:401 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/messages.inc.php:409 +#: libraries/messages.inc.php:405 msgid "Excel 97-2003 XLS Workbook" msgstr "" -#: libraries/messages.inc.php:410 +#: libraries/messages.inc.php:406 msgid "Excel 2007 XLSX Workbook" msgstr "" -#: libraries/messages.inc.php:414 libraries/mult_submits.inc.php:98 +#: libraries/messages.inc.php:410 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:476 tbl_structure.php:674 msgid "Index" msgstr "" -#: libraries/messages.inc.php:415 tbl_indexes.php:168 +#: libraries/messages.inc.php:411 tbl_indexes.php:168 msgid "Index name:" msgstr "" -#: libraries/messages.inc.php:416 tbl_indexes.php:174 +#: libraries/messages.inc.php:412 tbl_indexes.php:174 msgid "Index type:" msgstr "" -#: libraries/messages.inc.php:417 sql.php:639 +#: libraries/messages.inc.php:413 sql.php:639 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: libraries/messages.inc.php:427 main.php:266 +#: libraries/messages.inc.php:423 main.php:266 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -3936,195 +3936,195 @@ msgid "" "this security hole by setting a password for user 'root'." msgstr "" -#: libraries/messages.inc.php:428 tbl_change.php:1130 +#: libraries/messages.inc.php:424 tbl_change.php:1130 msgid "Insert as new row" msgstr "" -#: libraries/messages.inc.php:429 sql.php:496 tbl_replace.php:386 +#: libraries/messages.inc.php:425 sql.php:496 tbl_replace.php:386 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: libraries/messages.inc.php:430 tbl_change.php:1131 +#: libraries/messages.inc.php:426 tbl_change.php:1131 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/messages.inc.php:432 main.php:139 +#: libraries/messages.inc.php:428 main.php:139 msgid "Interface" msgstr "" -#: libraries/messages.inc.php:433 tbl_relation.php:407 +#: libraries/messages.inc.php:429 tbl_relation.php:407 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: libraries/messages.inc.php:435 pdf_pages.php:303 +#: libraries/messages.inc.php:431 pdf_pages.php:303 msgid "Internal relations" msgstr "అంతర్గత సంబంధాలు" -#: libraries/messages.inc.php:438 tbl_indexes.php:256 tbl_structure.php:590 +#: libraries/messages.inc.php:434 tbl_indexes.php:256 tbl_structure.php:590 #: tbl_structure.php:601 msgid "Column count has to be larger than zero." msgstr "" -#: libraries/messages.inc.php:444 libraries/tbl_properties.inc.php:784 +#: libraries/messages.inc.php:440 libraries/tbl_properties.inc.php:784 #: tbl_structure.php:537 msgid "You have to add at least one field." msgstr "" -#: libraries/messages.inc.php:449 +#: libraries/messages.inc.php:445 #, php-format msgid "Invalid server index: \"%s\"" msgstr "" # మొదటి అనువాదము -#: libraries/messages.inc.php:452 libraries/mysql_charsets.lib.php:259 +#: libraries/messages.inc.php:448 libraries/mysql_charsets.lib.php:259 #: libraries/mysql_charsets.lib.php:349 msgid "Japanese" msgstr "జాపనీస్" -#: libraries/messages.inc.php:453 main.php:331 +#: libraries/messages.inc.php:449 main.php:331 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: libraries/messages.inc.php:454 server_status.php:257 +#: libraries/messages.inc.php:450 server_status.php:257 msgid "Joins" msgstr "" -#: libraries/messages.inc.php:457 server_privileges.php:763 +#: libraries/messages.inc.php:453 server_privileges.php:763 msgid "Do not change the password" msgstr "" -#: libraries/messages.inc.php:458 server_status.php:256 +#: libraries/messages.inc.php:454 server_status.php:256 msgid "Key cache" msgstr "" -#: libraries/messages.inc.php:462 libraries/mysql_charsets.lib.php:268 +#: libraries/messages.inc.php:458 libraries/mysql_charsets.lib.php:268 #: libraries/mysql_charsets.lib.php:371 msgid "Korean" msgstr "కొరియన్" -#: libraries/messages.inc.php:466 libraries/select_lang.lib.php:480 +#: libraries/messages.inc.php:462 libraries/select_lang.lib.php:480 #: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492 #, php-format msgid "Unknown language: %1$s." msgstr "" -#: libraries/messages.inc.php:468 +#: libraries/messages.inc.php:464 msgid "Table caption" msgstr "" -#: libraries/messages.inc.php:469 +#: libraries/messages.inc.php:465 msgid "Content of table __TABLE__" msgstr "" -#: libraries/messages.inc.php:470 +#: libraries/messages.inc.php:466 msgid "Continued table caption" msgstr "" -#: libraries/messages.inc.php:471 +#: libraries/messages.inc.php:467 msgid "(continued)" msgstr "" -#: libraries/messages.inc.php:472 +#: libraries/messages.inc.php:468 msgid "Include table caption" msgstr "" -#: libraries/messages.inc.php:473 +#: libraries/messages.inc.php:469 msgid "Label key" msgstr "" -#: libraries/messages.inc.php:474 +#: libraries/messages.inc.php:470 msgid "LaTeX" msgstr "" -#: libraries/messages.inc.php:475 +#: libraries/messages.inc.php:471 msgid "Structure of table __TABLE__" msgstr "" -#: libraries/messages.inc.php:476 libraries/mysql_charsets.lib.php:262 +#: libraries/messages.inc.php:472 libraries/mysql_charsets.lib.php:262 msgid "Latvian" msgstr "" -#: libraries/messages.inc.php:477 +#: libraries/messages.inc.php:473 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/messages.inc.php:478 +#: libraries/messages.inc.php:474 msgid "Use LOCAL keyword" msgstr "" -#: libraries/messages.inc.php:479 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:475 libraries/tbl_properties.inc.php:105 msgid "Length/Values" msgstr "" -#: libraries/messages.inc.php:480 tbl_select.php:295 +#: libraries/messages.inc.php:476 tbl_select.php:295 msgid "Number of rows per page" msgstr "" -#: libraries/messages.inc.php:484 libraries/mysql_charsets.lib.php:265 +#: libraries/messages.inc.php:480 libraries/mysql_charsets.lib.php:265 msgid "Lithuanian" msgstr "లిథుయేనియన్" -#: libraries/messages.inc.php:485 libraries/replication_gui.lib.php:302 +#: libraries/messages.inc.php:481 libraries/replication_gui.lib.php:302 #: server_privileges.php:729 msgid "Local" msgstr "స్థానిక" -#: libraries/messages.inc.php:487 server_privileges.php:669 +#: libraries/messages.inc.php:483 server_privileges.php:669 msgid "Login Information" msgstr "ప్రవేశపు సమాచారం" -#: libraries/messages.inc.php:490 libraries/navigation_header.inc.php:67 +#: libraries/messages.inc.php:486 libraries/navigation_header.inc.php:67 #: libraries/navigation_header.inc.php:70 #: libraries/navigation_header.inc.php:71 main.php:99 msgid "Log out" msgstr "నిష్క్రమించు" -#: libraries/messages.inc.php:497 server_status.php:440 +#: libraries/messages.inc.php:493 server_status.php:440 msgid "max. concurrent connections" msgstr "" -#: libraries/messages.inc.php:498 +#: libraries/messages.inc.php:494 msgid "Maximal length of created query" msgstr "" -#: libraries/messages.inc.php:500 main.php:282 +#: libraries/messages.inc.php:496 main.php:282 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " "split strings correctly and it may result in unexpected results." msgstr "" -#: libraries/messages.inc.php:501 main.php:274 +#: libraries/messages.inc.php:497 main.php:274 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " "corrupted!" msgstr "" -#: libraries/messages.inc.php:502 +#: libraries/messages.inc.php:498 msgid "MediaWiki Table" msgstr "" -#: libraries/messages.inc.php:503 transformation_overview.php:25 +#: libraries/messages.inc.php:499 transformation_overview.php:25 msgid "Available MIME types" msgstr "" -#: libraries/messages.inc.php:504 transformation_overview.php:43 +#: libraries/messages.inc.php:500 transformation_overview.php:43 msgid "Available transformations" msgstr "" -#: libraries/messages.inc.php:505 +#: libraries/messages.inc.php:501 msgctxt "$strMIME_description" msgid "Description" msgstr "వివరణ" -#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:580 +#: libraries/messages.inc.php:503 libraries/tbl_properties.inc.php:580 #: transformation_overview.php:60 #, php-format msgid "" @@ -4132,14 +4132,14 @@ msgid "" "author what %s does." msgstr "" -#: libraries/messages.inc.php:509 libraries/tbl_properties.inc.php:137 +#: libraries/messages.inc.php:505 libraries/tbl_properties.inc.php:137 #, php-format msgid "" "For a list of available transformation options and their MIME type " "transformations, click on %stransformation descriptions%s" msgstr "" -#: libraries/messages.inc.php:510 libraries/tbl_properties.inc.php:146 +#: libraries/messages.inc.php:506 libraries/tbl_properties.inc.php:146 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -4147,458 +4147,458 @@ msgid "" "'\\\\xyz' or 'a\\'b')." msgstr "" -#: libraries/messages.inc.php:511 libraries/tbl_properties.inc.php:145 +#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:145 msgid "Transformation options" msgstr "" -#: libraries/messages.inc.php:513 transformation_overview.php:38 +#: libraries/messages.inc.php:509 transformation_overview.php:38 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "" -#: libraries/messages.inc.php:515 tbl_indexes.php:162 +#: libraries/messages.inc.php:511 tbl_indexes.php:162 msgid "Modify an index" msgstr "" -#: libraries/messages.inc.php:517 pmd_general.php:108 +#: libraries/messages.inc.php:513 pmd_general.php:108 msgid "Move Menu" msgstr "" -#: libraries/messages.inc.php:518 tbl_operations.php:276 +#: libraries/messages.inc.php:514 tbl_operations.php:276 msgid "Move table to (database.table):" msgstr "" -#: libraries/messages.inc.php:519 tbl_move_copy.php:56 +#: libraries/messages.inc.php:515 tbl_move_copy.php:56 #, php-format msgid "Table %s has been moved to %s." msgstr "" -#: libraries/messages.inc.php:520 tbl_move_copy.php:46 +#: libraries/messages.inc.php:516 tbl_move_copy.php:46 msgid "Can't move table to same one!" msgstr "" # మొదటి అనువాదము -#: libraries/messages.inc.php:521 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:517 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 #: libraries/mysql_charsets.lib.php:332 libraries/mysql_charsets.lib.php:354 #: libraries/mysql_charsets.lib.php:365 msgid "multilingual" msgstr "బహు భాషా" -#: libraries/messages.inc.php:534 main.php:193 +#: libraries/messages.inc.php:530 main.php:193 msgid "MySQL charset" msgstr "" -#: libraries/messages.inc.php:535 main.php:211 +#: libraries/messages.inc.php:531 main.php:211 msgid "MySQL client version" msgstr "" -#: libraries/messages.inc.php:536 main.php:125 +#: libraries/messages.inc.php:532 main.php:125 msgid "MySQL connection collation" msgstr "" -#: libraries/messages.inc.php:537 main.php:346 +#: libraries/messages.inc.php:533 main.php:346 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: libraries/messages.inc.php:539 server_status.php:294 +#: libraries/messages.inc.php:535 server_status.php:294 msgid "Show processes" msgstr "" -#: libraries/messages.inc.php:545 navigation.php:210 server_databases.php:371 +#: libraries/messages.inc.php:541 navigation.php:210 server_databases.php:371 #: server_synchronize.php:1191 msgid "No databases" msgstr "" -#: libraries/messages.inc.php:546 server_databases.php:52 +#: libraries/messages.inc.php:542 server_databases.php:52 msgid "No databases selected." msgstr "" -#: libraries/messages.inc.php:548 libraries/relation.lib.php:1173 +#: libraries/messages.inc.php:544 libraries/relation.lib.php:1173 msgid "no description" msgstr "వివరణ లేదు" -#: libraries/messages.inc.php:552 libraries/zip_extension.lib.php:26 +#: libraries/messages.inc.php:548 libraries/zip_extension.lib.php:26 msgid "No files found inside ZIP archive!" msgstr "" -#: libraries/messages.inc.php:555 tbl_indexes.php:91 +#: libraries/messages.inc.php:551 tbl_indexes.php:91 msgid "No index parts defined!" msgstr "" -#: libraries/messages.inc.php:556 libraries/mult_submits.inc.php:435 +#: libraries/messages.inc.php:552 libraries/mult_submits.inc.php:435 #: tbl_replace.php:331 msgid "No change" msgstr "" -#: libraries/messages.inc.php:557 +#: libraries/messages.inc.php:553 msgctxt "$strNoneDefault" msgid "None" msgstr "" -#: libraries/messages.inc.php:560 libraries/plugin_interface.lib.php:312 +#: libraries/messages.inc.php:556 libraries/plugin_interface.lib.php:312 msgid "This format has no options" msgstr "" -#: libraries/messages.inc.php:565 user_password.php:54 +#: libraries/messages.inc.php:561 user_password.php:54 msgid "You don't have sufficient privileges to be here right now!" msgstr "" -#: libraries/messages.inc.php:566 tbl_row_action.php:29 +#: libraries/messages.inc.php:562 tbl_row_action.php:29 msgid "No rows selected" msgstr "" -#: libraries/messages.inc.php:569 themes.php:32 +#: libraries/messages.inc.php:565 themes.php:32 #, php-format msgid "" "No themes support; please check your configuration and/or your themes in " "directory %s." msgstr "" -#: libraries/messages.inc.php:571 libraries/relation.lib.php:95 +#: libraries/messages.inc.php:567 libraries/relation.lib.php:95 msgid "not OK" msgstr "" -#: libraries/messages.inc.php:572 server_synchronize.php:400 +#: libraries/messages.inc.php:568 server_synchronize.php:400 #: server_synchronize.php:839 msgid "not present" msgstr "" -#: libraries/messages.inc.php:573 pdf_pages.php:36 pdf_pages.php:42 +#: libraries/messages.inc.php:569 pdf_pages.php:36 pdf_pages.php:42 #: pdf_pages.php:48 pdf_pages.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "" -#: libraries/messages.inc.php:574 server_privileges.php:804 +#: libraries/messages.inc.php:570 server_privileges.php:804 #: server_privileges.php:2166 msgid "No user(s) found." msgstr "" -#: libraries/messages.inc.php:578 pmd_general.php:164 +#: libraries/messages.inc.php:574 pmd_general.php:164 msgid "Number of tables" msgstr "" -#: libraries/messages.inc.php:581 server_databases.php:117 +#: libraries/messages.inc.php:577 server_databases.php:117 #: server_status.php:260 setup/lib/messages.inc.php:117 msgid "Tables" msgstr "" -#: libraries/messages.inc.php:583 libraries/relation.lib.php:99 +#: libraries/messages.inc.php:579 libraries/relation.lib.php:99 #: pmd_general.php:340 msgid "OK" msgstr "సరే" -#: libraries/messages.inc.php:585 +#: libraries/messages.inc.php:581 msgid "Open Document Text" msgstr "" -#: libraries/messages.inc.php:588 tbl_select.php:138 +#: libraries/messages.inc.php:584 tbl_select.php:138 msgid "Operator" msgstr "" -#: libraries/messages.inc.php:589 tbl_operations.php:662 +#: libraries/messages.inc.php:585 tbl_operations.php:662 msgid "Optimize" msgstr "" -#: libraries/messages.inc.php:602 libraries/tbl_properties.inc.php:755 +#: libraries/messages.inc.php:598 libraries/tbl_properties.inc.php:755 msgid "PARTITION definition" msgstr "" -#: libraries/messages.inc.php:603 tbl_structure.php:757 +#: libraries/messages.inc.php:599 tbl_structure.php:757 msgid "partitioned" msgstr "" -#: libraries/messages.inc.php:604 tbl_operations.php:649 +#: libraries/messages.inc.php:600 tbl_operations.php:649 msgid "Partition maintenance" msgstr "" -#: libraries/messages.inc.php:605 tbl_operations.php:657 +#: libraries/messages.inc.php:601 tbl_operations.php:657 #, php-format msgid "Partition %s" msgstr "" -#: libraries/messages.inc.php:606 server_privileges.php:1212 +#: libraries/messages.inc.php:602 server_privileges.php:1212 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/messages.inc.php:635 +#: libraries/messages.inc.php:631 #, php-format msgid "Schema of the \"%s\" database - Page %s" msgstr "" -#: libraries/messages.inc.php:636 +#: libraries/messages.inc.php:632 #, php-format msgid "The \"%s\" table doesn't exist!" msgstr "" -#: libraries/messages.inc.php:637 pdf_schema.php:1013 +#: libraries/messages.inc.php:633 pdf_schema.php:1013 msgid "No tables" msgstr "" # మొదటి అనువాదము -#: libraries/messages.inc.php:638 pmd_pdf.php:63 +#: libraries/messages.inc.php:634 pmd_pdf.php:63 msgid "Page has been created" msgstr "పుటను సృష్టించడమైనది" # మొదటి అనువాదము -#: libraries/messages.inc.php:639 pmd_pdf.php:65 +#: libraries/messages.inc.php:635 pmd_pdf.php:65 msgid "Page creation failed" msgstr "పుటని సృష్టించుటలో తప్పిదము జరిగినది" -#: libraries/messages.inc.php:640 +#: libraries/messages.inc.php:636 msgid "PDF" msgstr "" -#: libraries/messages.inc.php:641 +#: libraries/messages.inc.php:637 msgid "(Generates a report containing the data of a single table)" msgstr "" -#: libraries/messages.inc.php:642 +#: libraries/messages.inc.php:638 msgid "Report title" msgstr "" -#: libraries/messages.inc.php:643 server_status.php:389 server_status.php:434 +#: libraries/messages.inc.php:639 server_status.php:389 server_status.php:434 #: server_status.php:497 server_status.php:555 msgid "per hour" msgstr "గంటకి" -#: libraries/messages.inc.php:644 server_status.php:498 +#: libraries/messages.inc.php:640 server_status.php:498 msgid "per minute" msgstr "నిమిషానికి" -#: libraries/messages.inc.php:645 server_status.php:499 +#: libraries/messages.inc.php:641 server_status.php:499 msgid "per second" msgstr "క్షణానికి" -#: libraries/messages.inc.php:646 libraries/mysql_charsets.lib.php:271 +#: libraries/messages.inc.php:642 libraries/mysql_charsets.lib.php:271 msgid "Persian" msgstr "పెర్షియన్" -#: libraries/messages.inc.php:647 libraries/mysql_charsets.lib.php:250 +#: libraries/messages.inc.php:643 libraries/mysql_charsets.lib.php:250 msgid "phone book" msgstr "" -#: libraries/messages.inc.php:648 +#: libraries/messages.inc.php:644 msgid "PHP array" msgstr "" -#: libraries/messages.inc.php:650 main.php:213 +#: libraries/messages.inc.php:646 main.php:213 msgid "PHP extension" msgstr "" -#: libraries/messages.inc.php:654 libraries/relation.lib.php:163 +#: libraries/messages.inc.php:650 libraries/relation.lib.php:163 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/messages.inc.php:655 libraries/relation.lib.php:159 +#: libraries/messages.inc.php:651 libraries/relation.lib.php:159 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/messages.inc.php:656 libraries/relation.lib.php:161 +#: libraries/messages.inc.php:652 libraries/relation.lib.php:161 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" -#: libraries/messages.inc.php:657 libraries/relation.lib.php:162 +#: libraries/messages.inc.php:653 libraries/relation.lib.php:162 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/messages.inc.php:658 libraries/relation.lib.php:164 +#: libraries/messages.inc.php:654 libraries/relation.lib.php:164 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/messages.inc.php:661 libraries/mysql_charsets.lib.php:274 +#: libraries/messages.inc.php:657 libraries/mysql_charsets.lib.php:274 msgid "Polish" msgstr "పోలిష్" -#: libraries/messages.inc.php:662 libraries/replication_gui.lib.php:67 +#: libraries/messages.inc.php:658 libraries/replication_gui.lib.php:67 #: server_synchronize.php:1163 msgid "Port" msgstr "" -#: libraries/messages.inc.php:667 tbl_indexes.php:67 +#: libraries/messages.inc.php:663 tbl_indexes.php:67 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "" -#: libraries/messages.inc.php:668 tbl_indexes.php:184 +#: libraries/messages.inc.php:664 tbl_indexes.php:184 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" -#: libraries/messages.inc.php:669 libraries/mult_submits.inc.php:76 +#: libraries/messages.inc.php:665 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:474 msgid "Primary" msgstr "" -#: libraries/messages.inc.php:673 server_privileges.php:227 +#: libraries/messages.inc.php:669 server_privileges.php:227 msgid "Includes all privileges except GRANT." msgstr "" -#: libraries/messages.inc.php:674 server_privileges.php:153 +#: libraries/messages.inc.php:670 server_privileges.php:153 #: server_privileges.php:476 msgid "Allows altering the structure of existing tables." msgstr "" -#: libraries/messages.inc.php:675 server_privileges.php:169 +#: libraries/messages.inc.php:671 server_privileges.php:169 #: server_privileges.php:482 msgid "Allows altering and dropping stored routines." msgstr "" -#: libraries/messages.inc.php:676 server_privileges.php:145 +#: libraries/messages.inc.php:672 server_privileges.php:145 #: server_privileges.php:475 msgid "Allows creating new databases and tables." msgstr "" -#: libraries/messages.inc.php:677 server_privileges.php:168 +#: libraries/messages.inc.php:673 server_privileges.php:168 #: server_privileges.php:481 msgid "Allows creating stored routines." msgstr "" -#: libraries/messages.inc.php:678 server_privileges.php:475 +#: libraries/messages.inc.php:674 server_privileges.php:475 msgid "Allows creating new tables." msgstr "" -#: libraries/messages.inc.php:679 server_privileges.php:156 +#: libraries/messages.inc.php:675 server_privileges.php:156 #: server_privileges.php:479 msgid "Allows creating temporary tables." msgstr "" -#: libraries/messages.inc.php:680 server_privileges.php:170 +#: libraries/messages.inc.php:676 server_privileges.php:170 #: server_privileges.php:515 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: libraries/messages.inc.php:681 server_privileges.php:160 +#: libraries/messages.inc.php:677 server_privileges.php:160 #: server_privileges.php:164 server_privileges.php:487 #: server_privileges.php:491 msgid "Allows creating new views." msgstr "" -#: libraries/messages.inc.php:682 server_privileges.php:144 +#: libraries/messages.inc.php:678 server_privileges.php:144 #: server_privileges.php:467 msgid "Allows deleting data." msgstr "" -#: libraries/messages.inc.php:683 server_privileges.php:146 +#: libraries/messages.inc.php:679 server_privileges.php:146 #: server_privileges.php:478 msgid "Allows dropping databases and tables." msgstr "" -#: libraries/messages.inc.php:684 server_privileges.php:478 +#: libraries/messages.inc.php:680 server_privileges.php:478 msgid "Allows dropping tables." msgstr "" -#: libraries/messages.inc.php:685 server_privileges.php:161 +#: libraries/messages.inc.php:681 server_privileges.php:161 #: server_privileges.php:495 msgid "Allows to set up events for the event scheduler" msgstr "" -#: libraries/messages.inc.php:686 server_privileges.php:171 +#: libraries/messages.inc.php:682 server_privileges.php:171 #: server_privileges.php:483 msgid "Allows executing stored routines." msgstr "" -#: libraries/messages.inc.php:687 server_privileges.php:150 +#: libraries/messages.inc.php:683 server_privileges.php:150 #: server_privileges.php:470 msgid "Allows importing data from and exporting data into files." msgstr "" -#: libraries/messages.inc.php:688 server_privileges.php:501 +#: libraries/messages.inc.php:684 server_privileges.php:501 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: libraries/messages.inc.php:689 server_privileges.php:152 +#: libraries/messages.inc.php:685 server_privileges.php:152 #: server_privileges.php:477 msgid "Allows creating and dropping indexes." msgstr "" -#: libraries/messages.inc.php:690 server_privileges.php:142 +#: libraries/messages.inc.php:686 server_privileges.php:142 #: server_privileges.php:403 server_privileges.php:465 msgid "Allows inserting and replacing data." msgstr "" -#: libraries/messages.inc.php:691 server_privileges.php:157 +#: libraries/messages.inc.php:687 server_privileges.php:157 #: server_privileges.php:510 msgid "Allows locking tables for the current thread." msgstr "" -#: libraries/messages.inc.php:692 server_privileges.php:607 +#: libraries/messages.inc.php:688 server_privileges.php:607 #: server_privileges.php:609 msgid "Limits the number of new connections the user may open per hour." msgstr "" -#: libraries/messages.inc.php:693 server_privileges.php:595 +#: libraries/messages.inc.php:689 server_privileges.php:595 #: server_privileges.php:597 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" -#: libraries/messages.inc.php:694 server_privileges.php:601 +#: libraries/messages.inc.php:690 server_privileges.php:601 #: server_privileges.php:603 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" -#: libraries/messages.inc.php:695 server_privileges.php:613 +#: libraries/messages.inc.php:691 server_privileges.php:613 #: server_privileges.php:615 msgid "Limits the number of simultaneous connections the user may have." msgstr "" -#: libraries/messages.inc.php:696 server_privileges.php:149 +#: libraries/messages.inc.php:692 server_privileges.php:149 #: server_privileges.php:505 msgid "Allows viewing processes of all users" msgstr "" -#: libraries/messages.inc.php:697 server_privileges.php:151 +#: libraries/messages.inc.php:693 server_privileges.php:151 #: server_privileges.php:409 server_privileges.php:511 msgid "Has no effect in this MySQL version." msgstr "" -#: libraries/messages.inc.php:698 server_privileges.php:147 +#: libraries/messages.inc.php:694 server_privileges.php:147 #: server_privileges.php:506 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: libraries/messages.inc.php:699 server_privileges.php:159 +#: libraries/messages.inc.php:695 server_privileges.php:159 #: server_privileges.php:513 msgid "Allows the user to ask where the slaves / masters are." msgstr "" -#: libraries/messages.inc.php:700 server_privileges.php:158 +#: libraries/messages.inc.php:696 server_privileges.php:158 #: server_privileges.php:514 msgid "Needed for the replication slaves." msgstr "" -#: libraries/messages.inc.php:701 server_privileges.php:141 +#: libraries/messages.inc.php:697 server_privileges.php:141 #: server_privileges.php:400 server_privileges.php:464 msgid "Allows reading data." msgstr "" -#: libraries/messages.inc.php:702 server_privileges.php:154 +#: libraries/messages.inc.php:698 server_privileges.php:154 #: server_privileges.php:508 msgid "Gives access to the complete list of databases." msgstr "" -#: libraries/messages.inc.php:703 server_privileges.php:165 +#: libraries/messages.inc.php:699 server_privileges.php:165 #: server_privileges.php:167 server_privileges.php:480 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: libraries/messages.inc.php:704 server_privileges.php:148 +#: libraries/messages.inc.php:700 server_privileges.php:148 #: server_privileges.php:507 msgid "Allows shutting down the server." msgstr "" -#: libraries/messages.inc.php:705 server_privileges.php:155 +#: libraries/messages.inc.php:701 server_privileges.php:155 #: server_privileges.php:504 msgid "" "Allows connecting, even if maximum number of connections is reached; " @@ -4606,190 +4606,190 @@ msgid "" "killing threads of other users." msgstr "" -#: libraries/messages.inc.php:706 server_privileges.php:162 +#: libraries/messages.inc.php:702 server_privileges.php:162 #: server_privileges.php:496 msgid "Allows creating and dropping triggers" msgstr "" -#: libraries/messages.inc.php:707 server_privileges.php:143 +#: libraries/messages.inc.php:703 server_privileges.php:143 #: server_privileges.php:406 server_privileges.php:466 msgid "Allows changing data." msgstr "" -#: libraries/messages.inc.php:708 server_privileges.php:221 +#: libraries/messages.inc.php:704 server_privileges.php:221 msgid "No privileges." msgstr "" -#: libraries/messages.inc.php:710 server_privileges.php:1296 +#: libraries/messages.inc.php:706 server_privileges.php:1296 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/messages.inc.php:712 libraries/server_links.inc.php:80 +#: libraries/messages.inc.php:708 libraries/server_links.inc.php:80 msgid "Processes" msgstr "" -#: libraries/messages.inc.php:714 main.php:187 +#: libraries/messages.inc.php:710 main.php:187 msgid "Protocol version" msgstr "" -#: libraries/messages.inc.php:715 +#: libraries/messages.inc.php:711 msgid "Put fields names in the first row" msgstr "" -#: libraries/messages.inc.php:720 server_synchronize.php:1003 +#: libraries/messages.inc.php:716 server_synchronize.php:1003 msgid "The following queries have been executed:" msgstr "" -#: libraries/messages.inc.php:721 server_status.php:251 +#: libraries/messages.inc.php:717 server_status.php:251 msgid "Query cache" msgstr "" -#: libraries/messages.inc.php:722 libraries/navigation_header.inc.php:80 +#: libraries/messages.inc.php:718 libraries/navigation_header.inc.php:80 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 setup/lib/messages.inc.php:122 msgid "Query window" msgstr "" -#: libraries/messages.inc.php:725 querywindow.php:109 querywindow.php:217 +#: libraries/messages.inc.php:721 querywindow.php:109 querywindow.php:217 msgid "SQL history" msgstr "SQL చరిత్ర" -#: libraries/messages.inc.php:726 server_status.php:490 +#: libraries/messages.inc.php:722 server_status.php:490 #, php-format msgid "" "Query statistics: Since its startup, %s queries have been sent to the " "server." msgstr "" -#: libraries/messages.inc.php:728 server_status.php:554 +#: libraries/messages.inc.php:724 server_status.php:554 msgid "Query type" msgstr "" -#: libraries/messages.inc.php:729 libraries/sql_query_form.lib.php:381 +#: libraries/messages.inc.php:725 libraries/sql_query_form.lib.php:381 msgid "Do not overwrite this query from outside the window" msgstr "" -#: libraries/messages.inc.php:732 tbl_operations.php:663 +#: libraries/messages.inc.php:728 tbl_operations.php:663 msgid "Rebuild" msgstr "" -#: libraries/messages.inc.php:733 server_status.php:394 +#: libraries/messages.inc.php:729 server_status.php:394 msgid "Received" msgstr "" -#: libraries/messages.inc.php:734 pmd_pdf.php:89 +#: libraries/messages.inc.php:730 pmd_pdf.php:89 msgid "recommended" msgstr "" -#: libraries/messages.inc.php:736 tbl_operations.php:702 +#: libraries/messages.inc.php:732 tbl_operations.php:702 msgid "Check referential integrity:" msgstr "" -#: libraries/messages.inc.php:740 pdf_schema.php:1032 pdf_schema.php:1141 +#: libraries/messages.inc.php:736 pdf_schema.php:1032 pdf_schema.php:1141 msgid "Relational schema" msgstr "" -#: libraries/messages.inc.php:744 tbl_relation.php:399 +#: libraries/messages.inc.php:740 tbl_relation.php:399 msgid "Relations" msgstr "సంబంధాలు" -#: libraries/messages.inc.php:745 tbl_structure.php:507 tbl_structure.php:509 +#: libraries/messages.inc.php:741 tbl_structure.php:507 tbl_structure.php:509 msgid "Relation view" msgstr "" -#: libraries/messages.inc.php:746 server_privileges.php:1246 +#: libraries/messages.inc.php:742 server_privileges.php:1246 msgid "Reloading the privileges" msgstr "" -#: libraries/messages.inc.php:747 navigation.php:66 navigation.php:67 +#: libraries/messages.inc.php:743 navigation.php:66 navigation.php:67 #: navigation.php:70 msgid "Reload navigation frame" msgstr "" -#: libraries/messages.inc.php:748 pmd_general.php:80 +#: libraries/messages.inc.php:744 pmd_general.php:80 msgid "Reload" msgstr "" -#: libraries/messages.inc.php:749 libraries/server_synchronize.lib.php:1345 +#: libraries/messages.inc.php:745 libraries/server_synchronize.lib.php:1345 #: libraries/server_synchronize.lib.php:1371 msgid "Remote server" msgstr "" -#: libraries/messages.inc.php:750 +#: libraries/messages.inc.php:746 msgid "Remove CRLF characters within fields" msgstr "" -#: libraries/messages.inc.php:751 tbl_operations.php:676 +#: libraries/messages.inc.php:747 tbl_operations.php:676 msgid "Remove partitioning" msgstr "" -#: libraries/messages.inc.php:752 server_privileges.php:1575 +#: libraries/messages.inc.php:748 server_privileges.php:1575 msgid "Remove selected users" msgstr "" -#: libraries/messages.inc.php:755 tbl_operations.php:338 +#: libraries/messages.inc.php:751 tbl_operations.php:338 msgid "Rename table to" msgstr "" -#: libraries/messages.inc.php:756 view_operations.php:93 +#: libraries/messages.inc.php:752 view_operations.php:93 msgid "Rename view to" msgstr "" -#: libraries/messages.inc.php:757 tbl_operations.php:664 +#: libraries/messages.inc.php:753 tbl_operations.php:664 msgid "Repair" msgstr "" -#: libraries/messages.inc.php:759 +#: libraries/messages.inc.php:755 msgid "Replace NULL by" msgstr "" -#: libraries/messages.inc.php:760 +#: libraries/messages.inc.php:756 msgid "Replace table data with file" msgstr "" -#: libraries/messages.inc.php:761 server_replication.php:228 +#: libraries/messages.inc.php:757 server_replication.php:228 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: libraries/messages.inc.php:762 libraries/replication_gui.lib.php:236 +#: libraries/messages.inc.php:758 libraries/replication_gui.lib.php:236 #: server_replication.php:194 msgid "Add slave replication user" msgstr "" -#: libraries/messages.inc.php:763 server_replication.php:74 +#: libraries/messages.inc.php:759 server_replication.php:74 #, php-format msgid "Master server changed succesfully to %s" msgstr "" -#: libraries/messages.inc.php:764 server_replication.php:182 +#: libraries/messages.inc.php:760 server_replication.php:182 msgid "This server is configured as master in a replication process." msgstr "" -#: libraries/messages.inc.php:765 server_replication.php:322 +#: libraries/messages.inc.php:761 server_replication.php:322 msgid "Control slave:" msgstr "" -#: libraries/messages.inc.php:766 server_replication.php:65 +#: libraries/messages.inc.php:762 server_replication.php:65 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: libraries/messages.inc.php:767 server_replication.php:58 +#: libraries/messages.inc.php:763 server_replication.php:58 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: libraries/messages.inc.php:768 server_replication.php:221 +#: libraries/messages.inc.php:764 server_replication.php:221 msgid "Replicate all databases; Ignore:" msgstr "" -#: libraries/messages.inc.php:769 server_replication.php:222 +#: libraries/messages.inc.php:765 server_replication.php:222 msgid "Ignore all databases; Replicate:" msgstr "" -#: libraries/messages.inc.php:770 server_replication.php:218 +#: libraries/messages.inc.php:766 server_replication.php:218 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -4798,120 +4798,120 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: libraries/messages.inc.php:771 server_replication.php:217 +#: libraries/messages.inc.php:767 server_replication.php:217 msgid "Master configuration" msgstr "" -#: libraries/messages.inc.php:772 server_replication.php:181 +#: libraries/messages.inc.php:768 server_replication.php:181 #: server_replication.php:209 msgid "Master replication" msgstr "" -#: libraries/messages.inc.php:774 server_replication.php:230 +#: libraries/messages.inc.php:770 server_replication.php:230 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: libraries/messages.inc.php:775 server_replication.php:225 +#: libraries/messages.inc.php:771 server_replication.php:225 msgid "Please select databases:" msgstr "" -#: libraries/messages.inc.php:776 server_replication.php:210 +#: libraries/messages.inc.php:772 server_replication.php:210 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:188 +#: libraries/messages.inc.php:773 libraries/replication_gui.lib.php:188 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/messages.inc.php:778 server_replication.php:187 +#: libraries/messages.inc.php:774 server_replication.php:187 msgid "Show connected slaves" msgstr "" -#: libraries/messages.inc.php:779 libraries/messages.inc.php:885 +#: libraries/messages.inc.php:775 libraries/messages.inc.php:881 #: server_replication.php:184 server_status.php:281 msgid "Show master status" msgstr "" -#: libraries/messages.inc.php:780 server_replication.php:334 +#: libraries/messages.inc.php:776 server_replication.php:334 msgid "Skipping error(s) might lead into unsynchronized master and slave!" msgstr "" -#: libraries/messages.inc.php:781 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:51 #: server_replication.php:347 msgid "Change or reconfigure master server" msgstr "" -#: libraries/messages.inc.php:782 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:778 libraries/replication_gui.lib.php:51 msgid "Slave configuration" msgstr "" -#: libraries/messages.inc.php:783 server_replication.php:305 +#: libraries/messages.inc.php:779 server_replication.php:305 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: libraries/messages.inc.php:784 server_replication.php:332 +#: libraries/messages.inc.php:780 server_replication.php:332 msgid "Error management:" msgstr "" -#: libraries/messages.inc.php:785 server_replication.php:328 +#: libraries/messages.inc.php:781 server_replication.php:328 #, php-format msgid "IO Thread %s only" msgstr "" -#: libraries/messages.inc.php:786 server_replication.php:296 +#: libraries/messages.inc.php:782 server_replication.php:296 msgid "Slave IO Thread not running!" msgstr "" -#: libraries/messages.inc.php:787 server_replication.php:355 +#: libraries/messages.inc.php:783 server_replication.php:355 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/messages.inc.php:788 server_replication.php:326 +#: libraries/messages.inc.php:784 server_replication.php:326 msgid "Reset slave" msgstr "" -#: libraries/messages.inc.php:789 server_replication.php:308 +#: libraries/messages.inc.php:785 server_replication.php:308 msgid "See slave status table" msgstr "" -#: libraries/messages.inc.php:790 server_replication.php:336 +#: libraries/messages.inc.php:786 server_replication.php:336 msgid "Skip current error" msgstr "" -#: libraries/messages.inc.php:791 server_replication.php:340 +#: libraries/messages.inc.php:787 server_replication.php:340 msgid "errors." msgstr "" -#: libraries/messages.inc.php:792 server_replication.php:337 +#: libraries/messages.inc.php:788 server_replication.php:337 msgid "Skip next" msgstr "" -#: libraries/messages.inc.php:793 server_replication.php:248 +#: libraries/messages.inc.php:789 server_replication.php:248 msgid "Slave replication" msgstr "" -#: libraries/messages.inc.php:794 server_replication.php:293 +#: libraries/messages.inc.php:790 server_replication.php:293 msgid "Slave SQL Thread not running!" msgstr "" -#: libraries/messages.inc.php:795 server_replication.php:327 +#: libraries/messages.inc.php:791 server_replication.php:327 #, php-format msgid "SQL Thread %s only" msgstr "" -#: libraries/messages.inc.php:796 +#: libraries/messages.inc.php:792 #, php-format msgid "" "This MySQL server works as %s in replication process. For further " @@ -4919,168 +4919,168 @@ msgid "" "\"#replication\">replication section." msgstr "" -#: libraries/messages.inc.php:797 +#: libraries/messages.inc.php:793 msgid "Master status" msgstr "" -#: libraries/messages.inc.php:798 server_status.php:721 +#: libraries/messages.inc.php:794 server_status.php:721 msgid "Replication status" msgstr "" -#: libraries/messages.inc.php:799 +#: libraries/messages.inc.php:795 msgid "Slave status" msgstr "" -#: libraries/messages.inc.php:800 server_replication.php:311 +#: libraries/messages.inc.php:796 server_replication.php:311 msgid "Synchronize databases with master" msgstr "" -#: libraries/messages.inc.php:801 server_replication.php:71 +#: libraries/messages.inc.php:797 server_replication.php:71 msgid "Unable to change master" msgstr "" -#: libraries/messages.inc.php:802 server_replication.php:51 +#: libraries/messages.inc.php:798 server_replication.php:51 msgid "Unknown error" msgstr "" -#: libraries/messages.inc.php:803 main.php:163 pdf_pages.php:344 +#: libraries/messages.inc.php:799 main.php:163 pdf_pages.php:344 #: setup/lib/FormDisplay.tpl.php:216 tbl_change.php:1175 msgid "Reset" msgstr "" -#: libraries/messages.inc.php:804 server_privileges.php:591 +#: libraries/messages.inc.php:800 server_privileges.php:591 msgid "Resource limits" msgstr "" -#: libraries/messages.inc.php:805 tbl_change.php:1209 +#: libraries/messages.inc.php:801 tbl_change.php:1209 #, php-format msgid "Restart insertion with %s rows" msgstr "" -#: libraries/messages.inc.php:807 server_privileges.php:1578 +#: libraries/messages.inc.php:803 server_privileges.php:1578 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: libraries/messages.inc.php:808 server_privileges.php:1176 +#: libraries/messages.inc.php:804 server_privileges.php:1176 #, php-format msgid "You have revoked the privileges for %s" msgstr "" -#: libraries/messages.inc.php:809 server_privileges.php:1333 +#: libraries/messages.inc.php:805 server_privileges.php:1333 msgid "Revoke" msgstr "" -#: libraries/messages.inc.php:810 libraries/mysql_charsets.lib.php:280 +#: libraries/messages.inc.php:806 libraries/mysql_charsets.lib.php:280 msgid "Romanian" msgstr "రొమేనియన్" -#: libraries/messages.inc.php:813 tbl_printview.php:404 tbl_structure.php:786 +#: libraries/messages.inc.php:809 tbl_printview.php:404 tbl_structure.php:786 msgid "Row length" msgstr "" -#: libraries/messages.inc.php:815 tbl_printview.php:414 tbl_structure.php:794 +#: libraries/messages.inc.php:811 tbl_printview.php:414 tbl_structure.php:794 msgid " Row size " msgstr "" -#: libraries/messages.inc.php:821 tbl_printview.php:366 tbl_structure.php:726 +#: libraries/messages.inc.php:817 tbl_printview.php:366 tbl_structure.php:726 msgid "Row Statistics" msgstr "వరుసల గణాంకాలు" -#: libraries/messages.inc.php:822 +#: libraries/messages.inc.php:818 #, php-format msgid "running on %s" msgstr "" -#: libraries/messages.inc.php:824 libraries/sql_query_form.lib.php:223 +#: libraries/messages.inc.php:820 libraries/sql_query_form.lib.php:223 #, php-format msgid "Run SQL query/queries on server %s" msgstr "" -#: libraries/messages.inc.php:825 libraries/sql_query_form.lib.php:240 +#: libraries/messages.inc.php:821 libraries/sql_query_form.lib.php:240 #: libraries/sql_query_form.lib.php:265 #, php-format msgid "Run SQL query/queries on database %s" msgstr "" -#: libraries/messages.inc.php:826 libraries/mysql_charsets.lib.php:337 +#: libraries/messages.inc.php:822 libraries/mysql_charsets.lib.php:337 msgid "Russian" msgstr "రష్యన్" -#: libraries/messages.inc.php:829 pmd_general.php:68 +#: libraries/messages.inc.php:825 pmd_general.php:68 msgid "Save position" msgstr "" -#: libraries/messages.inc.php:830 libraries/tbl_properties.inc.php:776 +#: libraries/messages.inc.php:826 libraries/tbl_properties.inc.php:776 #: pdf_pages.php:484 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:214 setup/lib/FormDisplay.tpl.php:215 #: tbl_change.php:1126 tbl_indexes.php:248 tbl_relation.php:566 msgid "Save" msgstr "భద్రపరచు" -#: libraries/messages.inc.php:831 +#: libraries/messages.inc.php:827 msgid "The scale factor is too small to fit the schema on one page" msgstr "" -#: libraries/messages.inc.php:843 main.php:298 +#: libraries/messages.inc.php:839 main.php:298 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" -#: libraries/messages.inc.php:844 navigation.php:353 navigation.php:516 +#: libraries/messages.inc.php:840 navigation.php:353 navigation.php:516 msgid "Please select a database" msgstr "" -#: libraries/messages.inc.php:846 server_binlog.php:120 +#: libraries/messages.inc.php:842 server_binlog.php:120 msgid "Select binary log to view" msgstr "" -#: libraries/messages.inc.php:847 tbl_select.php:270 +#: libraries/messages.inc.php:843 tbl_select.php:270 msgid "Select fields (at least one):" msgstr "" -#: libraries/messages.inc.php:851 pdf_pages.php:320 +#: libraries/messages.inc.php:847 pdf_pages.php:320 msgid "Select Tables" msgstr "" # మొదటి అనువాదము -#: libraries/messages.inc.php:853 server_status.php:404 +#: libraries/messages.inc.php:849 server_status.php:404 msgid "Sent" msgstr "పంపించు" -#: libraries/messages.inc.php:857 libraries/select_server.lib.php:45 +#: libraries/messages.inc.php:853 libraries/select_server.lib.php:45 #: setup/frames/index.inc.php:97 setup/lib/messages.inc.php:115 msgid "Servers" msgstr "" -#: libraries/messages.inc.php:858 server_status.php:255 +#: libraries/messages.inc.php:854 server_status.php:255 msgid "Delayed inserts" msgstr "" -#: libraries/messages.inc.php:859 server_status.php:46 +#: libraries/messages.inc.php:855 server_status.php:46 msgid "Runtime Information" msgstr "" -#: libraries/messages.inc.php:860 server_status.php:350 +#: libraries/messages.inc.php:856 server_status.php:350 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "" -#: libraries/messages.inc.php:861 libraries/server_links.inc.php:53 +#: libraries/messages.inc.php:857 libraries/server_links.inc.php:53 #: server_engines.php:112 server_engines.php:116 server_status.php:304 #: test/theme.php:105 msgid "Variables" msgstr "" -#: libraries/messages.inc.php:862 server_status.php:383 +#: libraries/messages.inc.php:858 server_status.php:383 msgid "" "Server traffic: These tables show the network traffic statistics of " "this MySQL server since its startup." msgstr "" -#: libraries/messages.inc.php:863 server_variables.php:35 +#: libraries/messages.inc.php:859 server_variables.php:35 msgid "Server variables and settings" msgstr "" -#: libraries/messages.inc.php:865 main.php:290 +#: libraries/messages.inc.php:861 main.php:290 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -5088,17 +5088,17 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: libraries/messages.inc.php:866 +#: libraries/messages.inc.php:862 msgid "" "Cannot start session without errors, please check errors given in your PHP " "and/or webserver log file and configure your PHP installation properly." msgstr "" -#: libraries/messages.inc.php:867 server_variables.php:55 +#: libraries/messages.inc.php:863 server_variables.php:55 msgid "Session value" msgstr "" -#: libraries/messages.inc.php:868 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:864 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 " @@ -5106,56 +5106,56 @@ msgid "" "(for example '\\\\xyz' or 'a\\'b')." msgstr "" -#: libraries/messages.inc.php:876 server_binlog.php:192 server_binlog.php:195 +#: libraries/messages.inc.php:872 server_binlog.php:192 server_binlog.php:195 #: server_processlist.php:49 server_processlist.php:51 msgid "Show Full Queries" msgstr "" # మొదటి అనువాదము -#: libraries/messages.inc.php:878 pmd_general.php:64 +#: libraries/messages.inc.php:874 pmd_general.php:64 msgid "Show/Hide left menu" msgstr "ఎడమవైపున మెనుని చూపించు/దాచు" -#: libraries/messages.inc.php:880 sql.php:513 +#: libraries/messages.inc.php:876 sql.php:513 msgid "Showing as PHP code" msgstr "" -#: libraries/messages.inc.php:882 sql.php:516 tbl_replace.php:360 +#: libraries/messages.inc.php:878 sql.php:516 tbl_replace.php:360 msgid "Showing SQL query" msgstr "" -#: libraries/messages.inc.php:883 tbl_change.php:1132 +#: libraries/messages.inc.php:879 tbl_change.php:1132 msgid "Show insert query" msgstr "" -#: libraries/messages.inc.php:886 server_status.php:273 +#: libraries/messages.inc.php:882 server_status.php:273 msgid "Show open tables" msgstr "" -#: libraries/messages.inc.php:887 main.php:219 +#: libraries/messages.inc.php:883 main.php:219 msgid "Show PHP information" msgstr "" -#: libraries/messages.inc.php:889 server_status.php:278 +#: libraries/messages.inc.php:885 server_status.php:278 msgid "Show slave hosts" msgstr "" -#: libraries/messages.inc.php:890 server_status.php:284 +#: libraries/messages.inc.php:886 server_status.php:284 msgid "Show slave status" msgstr "" -#: libraries/messages.inc.php:891 +#: libraries/messages.inc.php:887 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/messages.inc.php:892 +#: libraries/messages.inc.php:888 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/messages.inc.php:893 +#: libraries/messages.inc.php:889 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -5163,78 +5163,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/messages.inc.php:894 +#: libraries/messages.inc.php:890 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/messages.inc.php:895 +#: libraries/messages.inc.php:891 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/messages.inc.php:896 +#: libraries/messages.inc.php:892 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/messages.inc.php:897 +#: libraries/messages.inc.php:893 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/messages.inc.php:898 +#: libraries/messages.inc.php:894 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/messages.inc.php:899 +#: libraries/messages.inc.php:895 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/messages.inc.php:900 +#: libraries/messages.inc.php:896 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/messages.inc.php:901 +#: libraries/messages.inc.php:897 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/messages.inc.php:902 +#: libraries/messages.inc.php:898 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/messages.inc.php:903 +#: libraries/messages.inc.php:899 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/messages.inc.php:904 +#: libraries/messages.inc.php:900 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: libraries/messages.inc.php:905 +#: libraries/messages.inc.php:901 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/messages.inc.php:906 +#: libraries/messages.inc.php:902 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: libraries/messages.inc.php:907 +#: libraries/messages.inc.php:903 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -5242,7 +5242,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/messages.inc.php:908 +#: libraries/messages.inc.php:904 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -5250,42 +5250,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/messages.inc.php:909 +#: libraries/messages.inc.php:905 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/messages.inc.php:910 +#: libraries/messages.inc.php:906 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/messages.inc.php:911 +#: libraries/messages.inc.php:907 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/messages.inc.php:912 +#: libraries/messages.inc.php:908 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/messages.inc.php:913 +#: libraries/messages.inc.php:909 msgid "The number of pages currently dirty." msgstr "" -#: libraries/messages.inc.php:914 +#: libraries/messages.inc.php:910 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/messages.inc.php:915 +#: libraries/messages.inc.php:911 msgid "The number of free pages." msgstr "" -#: libraries/messages.inc.php:916 +#: libraries/messages.inc.php:912 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/messages.inc.php:917 +#: libraries/messages.inc.php:913 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -5293,33 +5293,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/messages.inc.php:918 +#: libraries/messages.inc.php:914 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/messages.inc.php:919 +#: libraries/messages.inc.php:915 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/messages.inc.php:920 +#: libraries/messages.inc.php:916 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/messages.inc.php:921 +#: libraries/messages.inc.php:917 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/messages.inc.php:922 +#: libraries/messages.inc.php:918 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/messages.inc.php:923 +#: libraries/messages.inc.php:919 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -5328,221 +5328,221 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/messages.inc.php:924 +#: libraries/messages.inc.php:920 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/messages.inc.php:925 +#: libraries/messages.inc.php:921 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/messages.inc.php:926 +#: libraries/messages.inc.php:922 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/messages.inc.php:927 +#: libraries/messages.inc.php:923 msgid "The current number of pending reads." msgstr "" -#: libraries/messages.inc.php:928 +#: libraries/messages.inc.php:924 msgid "The current number of pending writes." msgstr "" -#: libraries/messages.inc.php:929 +#: libraries/messages.inc.php:925 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/messages.inc.php:930 +#: libraries/messages.inc.php:926 msgid "The total number of data reads." msgstr "" -#: libraries/messages.inc.php:931 +#: libraries/messages.inc.php:927 msgid "The total number of data writes." msgstr "" -#: libraries/messages.inc.php:932 +#: libraries/messages.inc.php:928 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/messages.inc.php:933 +#: libraries/messages.inc.php:929 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/messages.inc.php:934 +#: libraries/messages.inc.php:930 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/messages.inc.php:935 +#: libraries/messages.inc.php:931 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/messages.inc.php:936 +#: libraries/messages.inc.php:932 msgid "The number of log write requests." msgstr "" -#: libraries/messages.inc.php:937 +#: libraries/messages.inc.php:933 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/messages.inc.php:938 +#: libraries/messages.inc.php:934 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/messages.inc.php:939 +#: libraries/messages.inc.php:935 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/messages.inc.php:940 +#: libraries/messages.inc.php:936 msgid "Pending log file writes." msgstr "" -#: libraries/messages.inc.php:941 +#: libraries/messages.inc.php:937 msgid "The number of bytes written to the log file." msgstr "" # మొదటి అనువాదము -#: libraries/messages.inc.php:942 +#: libraries/messages.inc.php:938 msgid "The number of pages created." msgstr "సృష్టించబడిన పుటల సంఖ్య" -#: libraries/messages.inc.php:943 +#: libraries/messages.inc.php:939 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" # మొదటి అనువాదము -#: libraries/messages.inc.php:944 +#: libraries/messages.inc.php:940 msgid "The number of pages read." msgstr "చదివిన పుటల సంఖ్య" # మొదటి అనువాదము -#: libraries/messages.inc.php:945 +#: libraries/messages.inc.php:941 msgid "The number of pages written." msgstr "వ్రాసిన పుటల సంఖ్య" -#: libraries/messages.inc.php:946 +#: libraries/messages.inc.php:942 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/messages.inc.php:947 +#: libraries/messages.inc.php:943 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/messages.inc.php:948 +#: libraries/messages.inc.php:944 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/messages.inc.php:949 +#: libraries/messages.inc.php:945 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/messages.inc.php:950 +#: libraries/messages.inc.php:946 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/messages.inc.php:951 +#: libraries/messages.inc.php:947 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/messages.inc.php:952 +#: libraries/messages.inc.php:948 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/messages.inc.php:953 +#: libraries/messages.inc.php:949 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/messages.inc.php:954 +#: libraries/messages.inc.php:950 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/messages.inc.php:955 +#: libraries/messages.inc.php:951 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/messages.inc.php:956 +#: libraries/messages.inc.php:952 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: libraries/messages.inc.php:957 +#: libraries/messages.inc.php:953 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/messages.inc.php:958 +#: libraries/messages.inc.php:954 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/messages.inc.php:959 +#: libraries/messages.inc.php:955 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/messages.inc.php:960 +#: libraries/messages.inc.php:956 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/messages.inc.php:961 +#: libraries/messages.inc.php:957 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/messages.inc.php:962 +#: libraries/messages.inc.php:958 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/messages.inc.php:963 +#: libraries/messages.inc.php:959 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/messages.inc.php:964 +#: libraries/messages.inc.php:960 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/messages.inc.php:965 +#: libraries/messages.inc.php:961 msgid "The number of files that are open." msgstr "" -#: libraries/messages.inc.php:966 +#: libraries/messages.inc.php:962 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/messages.inc.php:967 +#: libraries/messages.inc.php:963 msgid "The number of tables that are open." msgstr "" -#: libraries/messages.inc.php:968 +#: libraries/messages.inc.php:964 msgid "The number of free memory blocks in query cache." msgstr "" -#: libraries/messages.inc.php:969 +#: libraries/messages.inc.php:965 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/messages.inc.php:970 +#: libraries/messages.inc.php:966 msgid "The number of cache hits." msgstr "" -#: libraries/messages.inc.php:971 +#: libraries/messages.inc.php:967 msgid "The number of queries added to the cache." msgstr "" -#: libraries/messages.inc.php:972 +#: libraries/messages.inc.php:968 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -5550,104 +5550,104 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/messages.inc.php:973 +#: libraries/messages.inc.php:969 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/messages.inc.php:974 +#: libraries/messages.inc.php:970 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/messages.inc.php:975 +#: libraries/messages.inc.php:971 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/messages.inc.php:976 +#: libraries/messages.inc.php:972 msgctxt "$strShowStatusReset" msgid "Reset" msgstr "" -#: libraries/messages.inc.php:977 +#: libraries/messages.inc.php:973 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/messages.inc.php:978 +#: libraries/messages.inc.php:974 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: libraries/messages.inc.php:979 +#: libraries/messages.inc.php:975 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/messages.inc.php:980 +#: libraries/messages.inc.php:976 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: libraries/messages.inc.php:981 +#: libraries/messages.inc.php:977 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/messages.inc.php:982 +#: libraries/messages.inc.php:978 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/messages.inc.php:983 +#: libraries/messages.inc.php:979 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/messages.inc.php:984 +#: libraries/messages.inc.php:980 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/messages.inc.php:985 +#: libraries/messages.inc.php:981 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/messages.inc.php:986 +#: libraries/messages.inc.php:982 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/messages.inc.php:987 +#: libraries/messages.inc.php:983 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/messages.inc.php:988 +#: libraries/messages.inc.php:984 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/messages.inc.php:989 +#: libraries/messages.inc.php:985 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/messages.inc.php:990 +#: libraries/messages.inc.php:986 msgid "The number of sorted rows." msgstr "" -#: libraries/messages.inc.php:991 +#: libraries/messages.inc.php:987 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/messages.inc.php:992 +#: libraries/messages.inc.php:988 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/messages.inc.php:993 +#: libraries/messages.inc.php:989 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -5655,18 +5655,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/messages.inc.php:994 +#: libraries/messages.inc.php:990 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/messages.inc.php:995 +#: libraries/messages.inc.php:991 msgid "The number of currently open connections." msgstr "" -#: libraries/messages.inc.php:996 +#: libraries/messages.inc.php:992 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -5674,78 +5674,78 @@ msgid "" "implementation.)" msgstr "" -#: libraries/messages.inc.php:997 +#: libraries/messages.inc.php:993 msgid "The number of threads that are not sleeping." msgstr "" -#: libraries/messages.inc.php:999 tbl_printview.php:75 +#: libraries/messages.inc.php:995 tbl_printview.php:75 msgid "Show tables" msgstr "" -#: libraries/messages.inc.php:1000 libraries/sql_query_form.lib.php:396 +#: libraries/messages.inc.php:996 libraries/sql_query_form.lib.php:396 msgid " Show this query here again " msgstr "" # మొదటి అనువాదము -#: libraries/messages.inc.php:1001 libraries/mysql_charsets.lib.php:217 +#: libraries/messages.inc.php:997 libraries/mysql_charsets.lib.php:217 #: libraries/mysql_charsets.lib.php:342 msgid "Simplified Chinese" msgstr "సరళ చైనీసు" -#: libraries/messages.inc.php:1002 tbl_operations.php:258 +#: libraries/messages.inc.php:998 tbl_operations.php:258 msgid "(singly)" msgstr "" -#: libraries/messages.inc.php:1005 libraries/replication_gui.lib.php:52 +#: libraries/messages.inc.php:1001 libraries/replication_gui.lib.php:52 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" msgstr "" # మొదటి అనువాదము -#: libraries/messages.inc.php:1006 libraries/mysql_charsets.lib.php:283 +#: libraries/messages.inc.php:1002 libraries/mysql_charsets.lib.php:283 msgid "Slovak" msgstr "స్లోవాక్" # మొదటి అనువాదము -#: libraries/messages.inc.php:1007 libraries/mysql_charsets.lib.php:286 +#: libraries/messages.inc.php:1003 libraries/mysql_charsets.lib.php:286 msgid "Slovenian" msgstr "స్లోవాక్ దేశరి" # మొదటి అనువాదము -#: libraries/messages.inc.php:1008 pmd_general.php:95 +#: libraries/messages.inc.php:1004 pmd_general.php:95 msgid "Small/Big All" msgstr "చిన్నవి / పెద్దవి అన్నియు" -#: libraries/messages.inc.php:1009 pmd_general.php:91 +#: libraries/messages.inc.php:1005 pmd_general.php:91 msgid "Snap to grid" msgstr "" -#: libraries/messages.inc.php:1011 server_synchronize.php:1167 +#: libraries/messages.inc.php:1007 server_synchronize.php:1167 msgid "Socket" msgstr "" -#: libraries/messages.inc.php:1013 server_status.php:259 +#: libraries/messages.inc.php:1009 server_status.php:259 msgid "Sorting" msgstr "" -#: libraries/messages.inc.php:1015 tbl_printview.php:310 tbl_structure.php:657 +#: libraries/messages.inc.php:1011 tbl_printview.php:310 tbl_structure.php:657 msgid "Space usage" msgstr "" -#: libraries/messages.inc.php:1016 libraries/mysql_charsets.lib.php:289 +#: libraries/messages.inc.php:1012 libraries/mysql_charsets.lib.php:289 msgid "Spanish" msgstr "స్పానిష్" -#: libraries/messages.inc.php:1019 +#: libraries/messages.inc.php:1015 msgid "Export type" msgstr "ఎగుమతి రకం" -#: libraries/messages.inc.php:1020 +#: libraries/messages.inc.php:1016 msgid "Export time in UTC" msgstr "" -#: libraries/messages.inc.php:1021 libraries/sqlparser.lib.php:173 +#: libraries/messages.inc.php:1017 libraries/sqlparser.lib.php:173 msgid "" "There is a chance that you may have found a bug in the SQL parser. Please " "examine your query closely, and check that the quotes are correct and not " @@ -5758,81 +5758,81 @@ msgid "" "and submit a bug report with the data chunk in the CUT section below:" msgstr "" -#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:137 +#: libraries/messages.inc.php:1018 libraries/sqlparser.lib.php:137 msgid "" "There seems to be an error in your SQL query. The MySQL server error output " "below, if there is any, may also help you in diagnosing the problem" msgstr "" -#: libraries/messages.inc.php:1026 libraries/sqlparser.lib.php:495 +#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:495 msgid "Invalid Identifer" msgstr "" -#: libraries/messages.inc.php:1027 libraries/sqlparser.lib.php:344 +#: libraries/messages.inc.php:1023 libraries/sqlparser.lib.php:344 msgid "Unclosed quote" msgstr "" -#: libraries/messages.inc.php:1028 libraries/sqlparser.lib.php:612 +#: libraries/messages.inc.php:1024 libraries/sqlparser.lib.php:612 msgid "Unknown Punctuation String" msgstr "" # మొదటి అనువాదము -#: libraries/messages.inc.php:1030 server_replication.php:327 +#: libraries/messages.inc.php:1026 server_replication.php:327 #: server_replication.php:328 msgid "Start" msgstr "మొదలుపెట్టు" -#: libraries/messages.inc.php:1033 tbl_printview.php:369 tbl_structure.php:729 +#: libraries/messages.inc.php:1029 tbl_printview.php:369 tbl_structure.php:729 msgid "Statements" msgstr "" -#: libraries/messages.inc.php:1034 tbl_printview.php:380 tbl_structure.php:741 +#: libraries/messages.inc.php:1030 tbl_printview.php:380 tbl_structure.php:741 msgid "static" msgstr "" -#: libraries/messages.inc.php:1035 server_status.php:388 +#: libraries/messages.inc.php:1031 server_status.php:388 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" # మొదటి అనువాదము -#: libraries/messages.inc.php:1038 server_replication.php:327 +#: libraries/messages.inc.php:1034 server_replication.php:327 #: server_replication.php:328 msgid "Stop" msgstr "ఆపుము" -#: libraries/messages.inc.php:1039 server_engines.php:49 +#: libraries/messages.inc.php:1035 server_engines.php:49 msgid "Storage Engines" msgstr "" -#: libraries/messages.inc.php:1040 libraries/tbl_properties.inc.php:726 +#: libraries/messages.inc.php:1036 libraries/tbl_properties.inc.php:726 #: server_engines.php:58 tbl_operations.php:353 msgid "Storage Engine" msgstr "" -#: libraries/messages.inc.php:1042 +#: libraries/messages.inc.php:1038 msgid "CSV for MS Excel" msgstr "" -#: libraries/messages.inc.php:1044 tbl_structure.php:516 tbl_structure.php:518 +#: libraries/messages.inc.php:1040 tbl_structure.php:516 tbl_structure.php:518 msgid "Propose table structure" msgstr "" -#: libraries/messages.inc.php:1045 server_synchronize.php:424 +#: libraries/messages.inc.php:1041 server_synchronize.php:424 #: server_synchronize.php:867 msgid "Structure Difference" msgstr "" -#: libraries/messages.inc.php:1049 server_synchronize.php:265 +#: libraries/messages.inc.php:1045 server_synchronize.php:265 msgid "Structure Synchronization" msgstr "" -#: libraries/messages.inc.php:1050 libraries/sql_query_form.lib.php:462 +#: libraries/messages.inc.php:1046 libraries/sql_query_form.lib.php:462 msgid "Submit" msgstr "దాఖలుచేయి" -#: libraries/messages.inc.php:1052 main.php:358 +#: libraries/messages.inc.php:1048 main.php:358 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -5840,343 +5840,343 @@ msgid "" msgstr "" # మొదటి అనువాదము -#: libraries/messages.inc.php:1054 libraries/mysql_charsets.lib.php:295 +#: libraries/messages.inc.php:1050 libraries/mysql_charsets.lib.php:295 #: libraries/mysql_charsets.lib.php:392 msgid "Swedish" msgstr "స్వీడీష్" -#: libraries/messages.inc.php:1060 tbl_operations.php:556 +#: libraries/messages.inc.php:1056 tbl_operations.php:556 msgid "Switch to copied table" msgstr "" -#: libraries/messages.inc.php:1061 server_synchronize.php:1213 +#: libraries/messages.inc.php:1057 server_synchronize.php:1213 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." msgstr "" -#: libraries/messages.inc.php:1062 server_synchronize.php:451 +#: libraries/messages.inc.php:1058 server_synchronize.php:451 #: server_synchronize.php:896 msgid "Synchronize Databases" msgstr "" -#: libraries/messages.inc.php:1063 libraries/server_links.inc.php:92 +#: libraries/messages.inc.php:1059 libraries/server_links.inc.php:92 #: server_synchronize.php:1092 server_synchronize.php:1100 msgid "Synchronize" msgstr "" -#: libraries/messages.inc.php:1065 server_synchronize.php:430 +#: libraries/messages.inc.php:1061 server_synchronize.php:430 #: server_synchronize.php:873 msgid "Add column(s)" msgstr "" -#: libraries/messages.inc.php:1066 tbl_create.php:62 +#: libraries/messages.inc.php:1062 tbl_create.php:62 #, php-format msgid "Table %s already exists!" msgstr "" -#: libraries/messages.inc.php:1067 server_synchronize.php:432 +#: libraries/messages.inc.php:1063 server_synchronize.php:432 #: server_synchronize.php:875 msgid "Alter column(s)" msgstr "" -#: libraries/messages.inc.php:1068 tbl_addfield.php:189 tbl_alter.php:103 +#: libraries/messages.inc.php:1064 tbl_addfield.php:189 tbl_alter.php:103 #: tbl_indexes.php:98 #, php-format msgid "Table %1$s has been altered successfully" msgstr "" -#: libraries/messages.inc.php:1069 server_synchronize.php:434 +#: libraries/messages.inc.php:1065 server_synchronize.php:434 #: server_synchronize.php:877 msgid "Apply index(s)" msgstr "" -#: libraries/messages.inc.php:1071 server_synchronize.php:446 +#: libraries/messages.inc.php:1067 server_synchronize.php:446 #: server_synchronize.php:890 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: libraries/messages.inc.php:1072 tbl_move_copy.php:82 +#: libraries/messages.inc.php:1068 tbl_move_copy.php:82 msgid "The table name is empty!" msgstr "" -#: libraries/messages.inc.php:1073 tbl_create.php:249 +#: libraries/messages.inc.php:1069 tbl_create.php:249 #, php-format msgid "Table %1$s has been created." msgstr "" -#: libraries/messages.inc.php:1076 tbl_operations.php:628 +#: libraries/messages.inc.php:1072 tbl_operations.php:628 #, php-format msgid "Table %s has been flushed" msgstr "" -#: libraries/messages.inc.php:1077 server_synchronize.php:436 +#: libraries/messages.inc.php:1073 server_synchronize.php:436 #: server_synchronize.php:879 msgid "Insert row(s)" msgstr "" -#: libraries/messages.inc.php:1078 libraries/tbl_links.inc.php:107 +#: libraries/messages.inc.php:1074 libraries/tbl_links.inc.php:107 #: libraries/tbl_links.inc.php:140 libraries/tbl_links.inc.php:141 msgid "Table seems to be empty!" msgstr "" -#: libraries/messages.inc.php:1079 tbl_operations.php:568 +#: libraries/messages.inc.php:1075 tbl_operations.php:568 msgid "Table maintenance" msgstr "" -#: libraries/messages.inc.php:1080 libraries/tbl_properties.inc.php:618 +#: libraries/messages.inc.php:1076 libraries/tbl_properties.inc.php:618 #: server_synchronize.php:428 server_synchronize.php:871 msgid "Table name" msgstr "" -#: libraries/messages.inc.php:1081 pdf_schema.php:1116 +#: libraries/messages.inc.php:1077 pdf_schema.php:1116 msgid "Table of contents" msgstr "" -#: libraries/messages.inc.php:1082 tbl_operations.php:334 +#: libraries/messages.inc.php:1078 tbl_operations.php:334 msgid "Table options" msgstr "" -#: libraries/messages.inc.php:1083 server_synchronize.php:431 +#: libraries/messages.inc.php:1079 server_synchronize.php:431 #: server_synchronize.php:874 msgid "Remove column(s)" msgstr "" -#: libraries/messages.inc.php:1084 server_synchronize.php:433 +#: libraries/messages.inc.php:1080 server_synchronize.php:433 #: server_synchronize.php:876 msgid "Remove index(s)" msgstr "" -#: libraries/messages.inc.php:1088 server_synchronize.php:435 +#: libraries/messages.inc.php:1084 server_synchronize.php:435 #: server_synchronize.php:878 msgid "Update row(s)" msgstr "" -#: libraries/messages.inc.php:1090 server_synchronize.php:942 +#: libraries/messages.inc.php:1086 server_synchronize.php:942 msgid "Target database has been synchronized with source database" msgstr "" -#: libraries/messages.inc.php:1091 server_privileges.php:392 +#: libraries/messages.inc.php:1087 server_privileges.php:392 #: server_privileges.php:527 server_privileges.php:1679 #: server_privileges.php:1685 msgid "Table-specific privileges" msgstr "" -#: libraries/messages.inc.php:1092 server_status.php:254 +#: libraries/messages.inc.php:1088 server_status.php:254 msgid "Temporary data" msgstr "" -#: libraries/messages.inc.php:1093 tbl_change.php:728 +#: libraries/messages.inc.php:1089 tbl_change.php:728 msgid " Because of its length,
this field might not be editable " msgstr "" -#: libraries/messages.inc.php:1094 +#: libraries/messages.inc.php:1090 msgid "Texy! text" msgstr "" # మొదటి అనువాదము -#: libraries/messages.inc.php:1095 libraries/mysql_charsets.lib.php:298 +#: libraries/messages.inc.php:1091 libraries/mysql_charsets.lib.php:298 #: libraries/mysql_charsets.lib.php:395 msgid "Thai" msgstr "థాయ్" -#: libraries/messages.inc.php:1102 libraries/replication_gui.lib.php:308 +#: libraries/messages.inc.php:1098 libraries/replication_gui.lib.php:308 #: server_privileges.php:734 msgid "This Host" msgstr "" -#: libraries/messages.inc.php:1103 server_status.php:252 +#: libraries/messages.inc.php:1099 server_status.php:252 msgid "Threads" msgstr "" -#: libraries/messages.inc.php:1104 server_processlist.php:22 +#: libraries/messages.inc.php:1100 server_processlist.php:22 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: libraries/messages.inc.php:1106 +#: libraries/messages.inc.php:1102 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." msgstr "" -#: libraries/messages.inc.php:1109 pmd_pdf.php:94 +#: libraries/messages.inc.php:1105 pmd_pdf.php:94 msgid "to/from page" msgstr "" -#: libraries/messages.inc.php:1110 pdf_pages.php:343 +#: libraries/messages.inc.php:1106 pdf_pages.php:343 msgid "Toggle scratchboard" msgstr "" -#: libraries/messages.inc.php:1111 pmd_general.php:99 +#: libraries/messages.inc.php:1107 pmd_general.php:99 msgid "Toggle small/big" msgstr "" -#: libraries/messages.inc.php:1112 pmd_help.php:27 +#: libraries/messages.inc.php:1108 pmd_help.php:27 msgid "To select relation, click :" msgstr "" -#: libraries/messages.inc.php:1115 libraries/tbl_links.inc.php:149 +#: libraries/messages.inc.php:1111 libraries/tbl_links.inc.php:149 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" -#: libraries/messages.inc.php:1116 tbl_tracking.php:655 +#: libraries/messages.inc.php:1112 tbl_tracking.php:655 msgid "Activate now" msgstr "" -#: libraries/messages.inc.php:1117 tbl_tracking.php:653 +#: libraries/messages.inc.php:1113 tbl_tracking.php:653 #, php-format msgid "Activate tracking for %s.%s" msgstr "" -#: libraries/messages.inc.php:1118 tbl_tracking.php:221 +#: libraries/messages.inc.php:1114 tbl_tracking.php:221 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/messages.inc.php:1119 tbl_tracking.php:688 +#: libraries/messages.inc.php:1115 tbl_tracking.php:688 msgid "Create version" msgstr "" -#: libraries/messages.inc.php:1120 tbl_tracking.php:668 +#: libraries/messages.inc.php:1116 tbl_tracking.php:668 #, php-format msgid "Create version %s of %s.%s" msgstr "" -#: libraries/messages.inc.php:1122 tbl_tracking.php:412 +#: libraries/messages.inc.php:1118 tbl_tracking.php:412 msgid "Data definition statement" msgstr "" -#: libraries/messages.inc.php:1123 tbl_tracking.php:463 +#: libraries/messages.inc.php:1119 tbl_tracking.php:463 msgid "Data manipulation statement" msgstr "" -#: libraries/messages.inc.php:1124 tbl_tracking.php:410 tbl_tracking.php:461 +#: libraries/messages.inc.php:1120 tbl_tracking.php:410 tbl_tracking.php:461 msgid "Date" msgstr "తేదీ" -#: libraries/messages.inc.php:1125 tbl_tracking.php:642 +#: libraries/messages.inc.php:1121 tbl_tracking.php:642 msgid "Deactivate now" msgstr "" -#: libraries/messages.inc.php:1126 tbl_tracking.php:640 +#: libraries/messages.inc.php:1122 tbl_tracking.php:640 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "" -#: libraries/messages.inc.php:1127 tbl_tracking.php:521 +#: libraries/messages.inc.php:1123 tbl_tracking.php:521 #, php-format msgid "Export as %s" msgstr "" -#: libraries/messages.inc.php:1130 tbl_tracking.php:251 tbl_tracking.php:379 +#: libraries/messages.inc.php:1126 tbl_tracking.php:251 tbl_tracking.php:379 msgid "Close" msgstr "మూసివేయి" -#: libraries/messages.inc.php:1131 tbl_tracking.php:114 +#: libraries/messages.inc.php:1127 tbl_tracking.php:114 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/messages.inc.php:1133 tbl_tracking.php:397 tbl_tracking.php:504 +#: libraries/messages.inc.php:1129 tbl_tracking.php:397 tbl_tracking.php:504 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "" -#: libraries/messages.inc.php:1134 tbl_tracking.php:561 +#: libraries/messages.inc.php:1130 tbl_tracking.php:561 msgid "Show versions" msgstr "" -#: libraries/messages.inc.php:1135 tbl_tracking.php:507 +#: libraries/messages.inc.php:1131 tbl_tracking.php:507 msgid "SQL dump (file download)" msgstr "" -#: libraries/messages.inc.php:1136 tbl_tracking.php:508 +#: libraries/messages.inc.php:1132 tbl_tracking.php:508 msgid "SQL dump" msgstr "" -#: libraries/messages.inc.php:1137 tbl_tracking.php:213 +#: libraries/messages.inc.php:1133 tbl_tracking.php:213 msgid "SQL statements executed." msgstr "" -#: libraries/messages.inc.php:1138 +#: libraries/messages.inc.php:1134 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/messages.inc.php:1139 tbl_tracking.php:509 +#: libraries/messages.inc.php:1135 tbl_tracking.php:509 msgid "SQL execution" msgstr "" -#: libraries/messages.inc.php:1140 tbl_tracking.php:230 +#: libraries/messages.inc.php:1136 tbl_tracking.php:230 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/messages.inc.php:1141 tbl_tracking.php:381 +#: libraries/messages.inc.php:1137 tbl_tracking.php:381 msgid "Tracking statements" msgstr "" -#: libraries/messages.inc.php:1148 tbl_tracking.php:593 +#: libraries/messages.inc.php:1144 tbl_tracking.php:593 msgid "Version" msgstr "" -#: libraries/messages.inc.php:1149 tbl_tracking.php:672 +#: libraries/messages.inc.php:1145 tbl_tracking.php:672 msgid "Track these data definition statements:" msgstr "" -#: libraries/messages.inc.php:1150 tbl_tracking.php:680 +#: libraries/messages.inc.php:1146 tbl_tracking.php:680 msgid "Track these data manipulation statements:" msgstr "" -#: libraries/messages.inc.php:1155 tbl_tracking.php:411 tbl_tracking.php:462 +#: libraries/messages.inc.php:1151 tbl_tracking.php:411 tbl_tracking.php:462 msgid "Username" msgstr "వాడుకరిపేరు" -#: libraries/messages.inc.php:1156 tbl_tracking.php:203 +#: libraries/messages.inc.php:1152 tbl_tracking.php:203 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "" -#: libraries/messages.inc.php:1157 tbl_tracking.php:187 +#: libraries/messages.inc.php:1153 tbl_tracking.php:187 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "" -#: libraries/messages.inc.php:1158 tbl_tracking.php:195 +#: libraries/messages.inc.php:1154 tbl_tracking.php:195 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "" -#: libraries/messages.inc.php:1159 tbl_tracking.php:262 +#: libraries/messages.inc.php:1155 tbl_tracking.php:262 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/messages.inc.php:1161 tbl_tracking.php:220 +#: libraries/messages.inc.php:1157 tbl_tracking.php:220 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" # మొదటి అనువాదము -#: libraries/messages.inc.php:1162 libraries/mysql_charsets.lib.php:219 +#: libraries/messages.inc.php:1158 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:362 msgid "Traditional Chinese" msgstr "సాంప్రదాయ చైనీస్" # మొదటి అనువాదము -#: libraries/messages.inc.php:1163 libraries/mysql_charsets.lib.php:292 +#: libraries/messages.inc.php:1159 libraries/mysql_charsets.lib.php:292 msgid "Traditional Spanish" msgstr "సాంప్రదాయ స్పానిష్" -#: libraries/messages.inc.php:1164 server_status.php:388 +#: libraries/messages.inc.php:1160 server_status.php:388 msgid "Traffic" msgstr "" -#: libraries/messages.inc.php:1165 server_status.php:261 +#: libraries/messages.inc.php:1161 server_status.php:261 msgid "Transaction coordinator" msgstr "" -#: libraries/messages.inc.php:1166 +#: libraries/messages.inc.php:1162 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 " @@ -6184,27 +6184,27 @@ msgid "" "need to set the first option to the empty string." msgstr "" -#: libraries/messages.inc.php:1167 +#: libraries/messages.inc.php:1163 msgid "" "Displays hexadecimal representation of data. Optional first parameter " "specifies how often space will be added (defaults to 2 nibbles)." msgstr "" -#: libraries/messages.inc.php:1168 +#: libraries/messages.inc.php:1164 msgid "" "Displays a clickable thumbnail. The options are the maximum width and height " "in pixels. The original aspect ratio is preserved." msgstr "" -#: libraries/messages.inc.php:1169 +#: libraries/messages.inc.php:1165 msgid "Displays a link to download this image." msgstr "" -#: libraries/messages.inc.php:1170 +#: libraries/messages.inc.php:1166 msgid "See image/jpeg: inline" msgstr "" -#: libraries/messages.inc.php:1171 +#: libraries/messages.inc.php:1167 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 " @@ -6216,7 +6216,7 @@ msgid "" "gmdate() function." msgstr "" -#: libraries/messages.inc.php:1172 +#: libraries/messages.inc.php:1168 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 " @@ -6230,31 +6230,31 @@ msgid "" "(Default 1)." msgstr "" -#: libraries/messages.inc.php:1173 +#: libraries/messages.inc.php:1169 msgid "" "Displays the contents of the field as-is, without running it through " "htmlspecialchars(). That is, the field is assumed to contain valid HTML." msgstr "" -#: libraries/messages.inc.php:1174 +#: libraries/messages.inc.php:1170 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." msgstr "" -#: libraries/messages.inc.php:1175 +#: libraries/messages.inc.php:1171 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." msgstr "" -#: libraries/messages.inc.php:1176 +#: libraries/messages.inc.php:1172 msgid "Formats text as SQL query with syntax highlighting." msgstr "" -#: libraries/messages.inc.php:1177 +#: libraries/messages.inc.php:1173 msgid "" "Displays a part of a string. The first option is the number of characters to " "skip from the beginning of the string (Default 0). The second option is the " @@ -6263,69 +6263,69 @@ msgid "" "(Default: \"...\")." msgstr "" -#: libraries/messages.inc.php:1179 server_binlog.php:183 server_binlog.php:186 +#: libraries/messages.inc.php:1175 server_binlog.php:183 server_binlog.php:186 #: server_processlist.php:49 server_processlist.php:51 msgid "Truncate Shown Queries" msgstr "" -#: libraries/messages.inc.php:1180 libraries/mysql_charsets.lib.php:301 +#: libraries/messages.inc.php:1176 libraries/mysql_charsets.lib.php:301 #: libraries/mysql_charsets.lib.php:389 msgid "Turkish" msgstr "టర్కిష్" -#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:304 +#: libraries/messages.inc.php:1179 libraries/mysql_charsets.lib.php:304 #: libraries/mysql_charsets.lib.php:386 msgid "Ukrainian" msgstr "ఉక్రేనియన్" -#: libraries/messages.inc.php:1185 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:1181 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 msgid "Unicode" msgstr "యూనికోడ్" -#: libraries/messages.inc.php:1187 libraries/mysql_charsets.lib.php:398 +#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:398 #: libraries/mysql_charsets.lib.php:405 msgid "unknown" msgstr "" -#: libraries/messages.inc.php:1190 server_privileges.php:1152 +#: libraries/messages.inc.php:1186 server_privileges.php:1152 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/messages.inc.php:1191 user_password.php:112 +#: libraries/messages.inc.php:1187 user_password.php:112 msgid "The profile has been updated." msgstr "" -#: libraries/messages.inc.php:1193 libraries/relation.lib.php:138 +#: libraries/messages.inc.php:1189 libraries/relation.lib.php:138 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" -#: libraries/messages.inc.php:1194 +#: libraries/messages.inc.php:1190 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/messages.inc.php:1204 tbl_printview.php:314 tbl_structure.php:661 +#: libraries/messages.inc.php:1200 tbl_printview.php:314 tbl_structure.php:661 msgid "Usage" msgstr "వాడుక" -#: libraries/messages.inc.php:1205 +#: libraries/messages.inc.php:1201 msgid "Enclose table and field names with backquotes" msgstr "" -#: libraries/messages.inc.php:1206 libraries/replication_gui.lib.php:314 +#: libraries/messages.inc.php:1202 libraries/replication_gui.lib.php:314 #: server_privileges.php:740 msgid "Use Host Table" msgstr "" -#: libraries/messages.inc.php:1207 server_privileges.php:848 +#: libraries/messages.inc.php:1203 server_privileges.php:848 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/messages.inc.php:1209 libraries/replication_gui.lib.php:55 +#: libraries/messages.inc.php:1205 libraries/replication_gui.lib.php:55 #: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245 #: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255 #: server_privileges.php:672 server_privileges.php:675 @@ -6333,35 +6333,35 @@ msgstr "" msgid "User name" msgstr "వాడుకరి పేరు" -#: libraries/messages.inc.php:1210 server_privileges.php:1645 +#: libraries/messages.inc.php:1206 server_privileges.php:1645 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/messages.inc.php:1211 server_privileges.php:1365 +#: libraries/messages.inc.php:1207 server_privileges.php:1365 msgid "User overview" msgstr "" -#: libraries/messages.inc.php:1212 server_privileges.php:1261 +#: libraries/messages.inc.php:1208 server_privileges.php:1261 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/messages.inc.php:1213 server_privileges.php:2026 +#: libraries/messages.inc.php:1209 server_privileges.php:2026 #, php-format msgid "Users having access to "%s"" msgstr "" -#: libraries/messages.inc.php:1214 main.php:189 server_privileges.php:1350 +#: libraries/messages.inc.php:1210 main.php:189 server_privileges.php:1350 #: server_privileges.php:1497 server_privileges.php:1611 #: server_privileges.php:2029 server_processlist.php:54 msgid "User" msgstr "వాడుకరి" -#: libraries/messages.inc.php:1215 tbl_change.php:1171 +#: libraries/messages.inc.php:1211 tbl_change.php:1171 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/messages.inc.php:1217 libraries/replication_gui.lib.php:251 +#: libraries/messages.inc.php:1213 libraries/replication_gui.lib.php:251 #: libraries/replication_gui.lib.php:319 libraries/replication_gui.lib.php:342 #: server_privileges.php:678 server_privileges.php:745 #: server_privileges.php:769 server_privileges.php:1889 @@ -6369,92 +6369,92 @@ msgstr "" msgid "Use text field" msgstr "" -#: libraries/messages.inc.php:1221 libraries/sqlvalidator.lib.php:68 +#: libraries/messages.inc.php:1217 libraries/sqlvalidator.lib.php:68 #, php-format msgid "" "The SQL validator could not be initialized. Please check if you have " "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" -#: libraries/messages.inc.php:1222 libraries/replication_gui.lib.php:111 +#: libraries/messages.inc.php:1218 libraries/replication_gui.lib.php:111 #: server_status.php:627 tbl_change.php:324 tbl_printview.php:370 #: tbl_select.php:139 tbl_structure.php:730 msgid "Value" msgstr "విలువ" -#: libraries/messages.inc.php:1223 libraries/replication_gui.lib.php:110 +#: libraries/messages.inc.php:1219 libraries/replication_gui.lib.php:110 #: libraries/sql_query_form.lib.php:445 server_status.php:626 #: server_variables.php:52 msgid "Variable" msgstr "" -#: libraries/messages.inc.php:1225 server_export.php:21 +#: libraries/messages.inc.php:1221 server_export.php:21 msgid "View dump (schema) of databases" msgstr "" -#: libraries/messages.inc.php:1227 tbl_export.php:23 +#: libraries/messages.inc.php:1223 tbl_export.php:23 msgid "View dump (schema) of table" msgstr "" # మొదటి అనువాదము -#: libraries/messages.inc.php:1231 view_create.php:142 +#: libraries/messages.inc.php:1227 view_create.php:142 msgid "VIEW name" msgstr "నామధేయమును చూపుము" -#: libraries/messages.inc.php:1237 main.php:205 +#: libraries/messages.inc.php:1233 main.php:205 msgid "Web server" msgstr "" -#: libraries/messages.inc.php:1239 libraries/mysql_charsets.lib.php:277 +#: libraries/messages.inc.php:1235 libraries/mysql_charsets.lib.php:277 #: libraries/mysql_charsets.lib.php:325 msgid "West European" msgstr "పశ్చిమ ఐరోపియన్" -#: libraries/messages.inc.php:1240 main.php:230 +#: libraries/messages.inc.php:1236 main.php:230 msgid "Wiki" msgstr "వికీ" -#: libraries/messages.inc.php:1241 server_privileges.php:2138 +#: libraries/messages.inc.php:1237 server_privileges.php:2138 msgid "wildcard" msgstr "" -#: libraries/messages.inc.php:1248 +#: libraries/messages.inc.php:1244 msgid "Export contents" msgstr "" -#: libraries/messages.inc.php:1249 +#: libraries/messages.inc.php:1245 msgid "Export functions" msgstr "" -#: libraries/messages.inc.php:1250 +#: libraries/messages.inc.php:1246 msgid "Export procedures" msgstr "" -#: libraries/messages.inc.php:1251 +#: libraries/messages.inc.php:1247 msgid "Export Structure Schemas (recommended)" msgstr "" -#: libraries/messages.inc.php:1252 +#: libraries/messages.inc.php:1248 msgid "Export tables" msgstr "" -#: libraries/messages.inc.php:1253 +#: libraries/messages.inc.php:1249 msgid "Export triggers" msgstr "" -#: libraries/messages.inc.php:1254 +#: libraries/messages.inc.php:1250 msgid "Export views" msgstr "" -#: libraries/messages.inc.php:1255 +#: libraries/messages.inc.php:1251 msgid "XML" msgstr "" -#: libraries/messages.inc.php:1259 server_privileges.php:592 +#: libraries/messages.inc.php:1255 server_privileges.php:592 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" -#: libraries/messages.inc.php:1260 +#: libraries/messages.inc.php:1256 msgid "\"zipped\"" msgstr "" diff --git a/po/th.po b/po/th.po index 51a3244e3..bea08656b 100644 --- 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-05-13 11:25+0200\n" +"POT-Creation-Date: 2010-05-13 11:30+0200\n" "PO-Revision-Date: 2010-03-12 09:19+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: thai \n" @@ -13,19 +13,19 @@ msgstr "" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:38 browse_foreigners.php:59 -#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:870 +#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:866 #: server_privileges.php:1475 msgid "Show all" msgstr "แสดงทั้งหมด" #: browse_foreigners.php:82 db_operations.php:648 -#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:394 -#: libraries/export/pdf.php:147 libraries/messages.inc.php:597 +#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394 +#: libraries/export/pdf.php:147 libraries/messages.inc.php:593 #: pdf_schema.php:283 pdf_schema.php:1123 pdf_schema.php:1139 msgid "Page number:" msgstr "หมายเลขหน้า:" -#: browse_foreigners.php:132 libraries/messages.inc.php:1242 +#: browse_foreigners.php:132 libraries/messages.inc.php:1238 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -35,7 +35,7 @@ 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/db_links.inc.php:75 -#: libraries/messages.inc.php:841 libraries/tbl_links.inc.php:63 +#: libraries/messages.inc.php:837 libraries/tbl_links.inc.php:63 msgid "Search" msgstr "ค้นหา" @@ -44,12 +44,12 @@ msgstr "ค้นหา" #: db_search.php:362 db_structure.php:567 js/messages.php:48 #: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2267 +#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 #: 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 #: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614 -#: libraries/messages.inc.php:361 libraries/replication_gui.lib.php:73 +#: libraries/messages.inc.php:357 libraries/replication_gui.lib.php:73 #: libraries/replication_gui.lib.php:365 libraries/select_server.lib.php:104 #: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477 #: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782 @@ -69,33 +69,33 @@ msgid "Go" msgstr "ลงมือ" #: browse_foreigners.php:168 browse_foreigners.php:172 -#: libraries/Index.class.php:442 libraries/messages.inc.php:459 +#: libraries/Index.class.php:442 libraries/messages.inc.php:455 #: tbl_tracking.php:320 msgid "Keyname" msgstr "ชื่อคีย์" #: browse_foreigners.php:169 browse_foreigners.php:171 -#: libraries/messages.inc.php:252 server_collations.php:55 +#: libraries/messages.inc.php:248 server_collations.php:55 #: server_collations.php:67 server_engines.php:59 server_status.php:628 msgid "Description" msgstr "รายละเอียด" #: browse_foreigners.php:247 browse_foreigners.php:256 #: browse_foreigners.php:268 browse_foreigners.php:276 -#: libraries/messages.inc.php:1218 +#: libraries/messages.inc.php:1214 msgid "Use this value" msgstr "ใช้ค่านี้" -#: db_create.php:46 libraries/messages.inc.php:215 +#: db_create.php:46 libraries/messages.inc.php:211 #, fuzzy, php-format msgid "Database %1$s has been created." msgstr "โยนฐานข้อมูล %s ทิ้งไปเรียบร้อยแล้ว" -#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:232 +#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:228 msgid "Database comment: " msgstr "หมายเหตุของฐานข้อมูล: " -#: db_datadict.php:165 libraries/messages.inc.php:1070 +#: db_datadict.php:165 libraries/messages.inc.php:1066 #: libraries/tbl_properties.inc.php:724 pdf_schema.php:1236 #: tbl_operations.php:345 tbl_printview.php:130 msgid "Table comments" @@ -104,7 +104,7 @@ msgstr "หมายเหตุของตาราง" #: db_datadict.php:174 db_qbe.php:174 libraries/Index.class.php:446 #: libraries/export/htmlword.php:244 libraries/export/latex.php:360 #: libraries/export/odt.php:294 libraries/export/texytext.php:233 -#: libraries/messages.inc.php:317 libraries/tbl_properties.inc.php:99 +#: libraries/messages.inc.php:313 libraries/tbl_properties.inc.php:99 #: libraries/tbl_properties.inc.php:275 pdf_schema.php:1262 #: pdf_schema.php:1283 tbl_change.php:308 tbl_indexes.php:189 #: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135 @@ -116,7 +116,7 @@ msgstr "ฟิลด์" #: libraries/db_events.inc.php:31 libraries/db_routines.inc.php:42 #: 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/messages.inc.php:1181 +#: libraries/export/texytext.php:234 libraries/messages.inc.php:1177 #: libraries/tbl_properties.inc.php:100 pdf_schema.php:1263 #: pdf_schema.php:1284 server_privileges.php:2031 tbl_change.php:287 #: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313 @@ -128,7 +128,7 @@ msgstr "ชนิด" #: db_datadict.php:177 libraries/Index.class.php:449 #: libraries/export/htmlword.php:246 libraries/export/latex.php:360 #: libraries/export/odt.php:300 libraries/export/texytext.php:235 -#: libraries/messages.inc.php:576 libraries/tbl_properties.inc.php:109 +#: libraries/messages.inc.php:572 libraries/tbl_properties.inc.php:109 #: pdf_schema.php:1265 pdf_schema.php:1286 tbl_change.php:323 #: tbl_printview.php:145 tbl_structure.php:181 tbl_tracking.php:276 #: tbl_tracking.php:327 @@ -137,7 +137,7 @@ msgstr "ว่างเปล่า (null)" #: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 -#: libraries/export/texytext.php:236 libraries/messages.inc.php:238 +#: libraries/export/texytext.php:236 libraries/messages.inc.php:234 #: libraries/tbl_properties.inc.php:106 pdf_schema.php:1266 #: pdf_schema.php:1287 tbl_printview.php:146 tbl_structure.php:182 #: tbl_tracking.php:277 @@ -146,14 +146,14 @@ msgstr "ค่าปริยาย" #: db_datadict.php:182 libraries/export/htmlword.php:249 #: libraries/export/latex.php:362 libraries/export/odt.php:307 -#: libraries/export/texytext.php:238 libraries/messages.inc.php:483 +#: libraries/export/texytext.php:238 libraries/messages.inc.php:479 #: pdf_schema.php:1268 pdf_schema.php:1289 tbl_printview.php:150 msgid "Links to" msgstr "เชื่อมไปยัง" #: db_datadict.php:184 db_printview.php:112 libraries/export/htmlword.php:252 #: libraries/export/latex.php:365 libraries/export/odt.php:312 -#: libraries/export/texytext.php:241 libraries/messages.inc.php:163 +#: libraries/export/texytext.php:241 libraries/messages.inc.php:159 #: libraries/tbl_properties.inc.php:130 pdf_schema.php:1279 #: pdf_schema.php:1290 tbl_printview.php:152 msgid "Comments" @@ -162,7 +162,7 @@ msgstr "หมายเหตุ" #: db_datadict.php:267 libraries/Index.class.php:359 #: 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/messages.inc.php:559 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:555 #: libraries/mult_submits.inc.php:263 pdf_schema.php:1344 #: server_privileges.php:1529 server_privileges.php:1540 #: server_privileges.php:1850 server_privileges.php:1855 @@ -174,7 +174,7 @@ msgstr "ไม่" #: db_datadict.php:267 libraries/Index.class.php:360 #: libraries/Index.class.php:385 libraries/export/htmlword.php:322 #: libraries/export/latex.php:430 libraries/export/odt.php:368 -#: libraries/export/texytext.php:311 libraries/messages.inc.php:1257 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:1253 #: libraries/mult_submits.inc.php:45 libraries/mult_submits.inc.php:50 #: libraries/mult_submits.inc.php:55 libraries/mult_submits.inc.php:60 #: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:101 @@ -188,111 +188,111 @@ msgstr "ไม่" msgid "Yes" msgstr "ใช่" -#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:670 +#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:666 #: tbl_printview.php:498 msgid "Print" msgstr "พิมพ์" -#: db_export.php:29 libraries/messages.inc.php:1226 +#: db_export.php:29 libraries/messages.inc.php:1222 msgid "View dump (schema) of database" msgstr "ดูโครงสร้างของฐานข้อมูล" #: db_export.php:33 db_printview.php:96 db_qbe.php:102 db_structure.php:51 -#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:568 +#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:564 #: navigation.php:346 msgid "No tables found in database." msgstr "ไม่พบตารางใด ๆ ในฐานข้อมูล" -#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:845 +#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:841 #: server_export.php:27 msgid "Select All" msgstr "เลือกทั้งหมด" -#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1188 +#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1184 #: server_export.php:29 msgid "Unselect All" msgstr "ไม่เลือกเลย" -#: db_operations.php:38 libraries/messages.inc.php:213 tbl_create.php:54 +#: db_operations.php:38 libraries/messages.inc.php:209 tbl_create.php:54 #, fuzzy msgid "The database name is empty!" msgstr "ชื่อตารางยังว่างอยู่!" -#: db_operations.php:236 libraries/messages.inc.php:753 +#: db_operations.php:236 libraries/messages.inc.php:749 #, fuzzy, php-format msgid "Database %s has been renamed to %s" msgstr "ตาราง %s ได้ถูกเปลี่ยนชื่อเป็น %s" -#: db_operations.php:240 libraries/messages.inc.php:178 +#: db_operations.php:240 libraries/messages.inc.php:174 #, fuzzy, php-format msgid "Database %s has been copied to %s" msgstr "คัดลอกตาราง %s ไปเก็บในชื่อ %s เรียบร้อยแล้ว." -#: db_operations.php:410 libraries/messages.inc.php:236 +#: db_operations.php:410 libraries/messages.inc.php:232 msgid "Rename database to" msgstr "เปลี่ยนชื่อฐานข้อมูลเป็น" -#: db_operations.php:415 libraries/messages.inc.php:161 +#: db_operations.php:415 libraries/messages.inc.php:157 #: server_processlist.php:57 msgid "Command" msgstr "คำสั่ง" -#: db_operations.php:425 libraries/messages.inc.php:58 tbl_change.php:1143 +#: db_operations.php:425 libraries/messages.inc.php:54 tbl_change.php:1143 msgid "and then" msgstr "" -#: db_operations.php:451 libraries/messages.inc.php:233 +#: db_operations.php:451 libraries/messages.inc.php:229 #, fuzzy msgid "Copy database to" msgstr "เปลี่ยนชื่อฐานข้อมูลเป็น" -#: db_operations.php:458 libraries/messages.inc.php:1043 +#: db_operations.php:458 libraries/messages.inc.php:1039 #: tbl_operations.php:526 tbl_tracking.php:388 msgid "Structure only" msgstr "เฉพาะโครงสร้าง" -#: db_operations.php:459 libraries/messages.inc.php:1041 +#: db_operations.php:459 libraries/messages.inc.php:1037 #: tbl_operations.php:527 tbl_tracking.php:390 msgid "Structure and data" msgstr "ทั้งโครงสร้างและข้อมูล" -#: db_operations.php:460 libraries/messages.inc.php:229 tbl_operations.php:528 +#: db_operations.php:460 libraries/messages.inc.php:225 tbl_operations.php:528 #: tbl_tracking.php:389 msgid "Data only" msgstr "เฉพาะข้อมูล" -#: db_operations.php:468 libraries/messages.inc.php:186 +#: db_operations.php:468 libraries/messages.inc.php:182 msgid "CREATE DATABASE before copying" msgstr "" #: db_operations.php:471 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 -#: libraries/export/sql.php:82 libraries/messages.inc.php:30 +#: libraries/export/sql.php:82 libraries/messages.inc.php:26 #: tbl_operations.php:534 #, php-format msgid "Add %s" msgstr "" -#: db_operations.php:475 libraries/messages.inc.php:29 tbl_operations.php:297 +#: db_operations.php:475 libraries/messages.inc.php:25 tbl_operations.php:297 #: tbl_operations.php:536 msgid "Add AUTO_INCREMENT value" msgstr "เพิ่มค่า AUTO_INCREMENT" -#: db_operations.php:479 libraries/messages.inc.php:31 tbl_operations.php:543 +#: db_operations.php:479 libraries/messages.inc.php:27 tbl_operations.php:543 msgid "Add constraints" msgstr "" -#: db_operations.php:492 libraries/messages.inc.php:1059 +#: db_operations.php:492 libraries/messages.inc.php:1055 #, fuzzy msgid "Switch to copied database" msgstr "สลับไปที่ตารางที่ถูกทำสำเนาไว้" -#: db_operations.php:533 libraries/messages.inc.php:89 +#: db_operations.php:533 libraries/messages.inc.php:85 msgid "BLOB Repository" msgstr "" #: db_operations.php:536 db_tracking.php:76 libraries/common.lib.php:1350 -#: libraries/messages.inc.php:1037 libraries/server_links.inc.php:49 +#: libraries/messages.inc.php:1033 libraries/server_links.inc.php:49 #: server_processlist.php:59 tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "สถานะ" @@ -304,12 +304,12 @@ msgctxt "BLOB repository" msgid "Enabled" msgstr "เปิดใช้อยู่" -#: db_operations.php:548 libraries/messages.inc.php:93 +#: db_operations.php:548 libraries/messages.inc.php:89 #, fuzzy msgid "Disable" msgstr "ระงับการใช้อยู่" -#: db_operations.php:558 libraries/messages.inc.php:90 +#: db_operations.php:558 libraries/messages.inc.php:86 msgid "Damaged" msgstr "" @@ -326,13 +326,13 @@ msgctxt "BLOB repository" msgid "Disabled" msgstr "ระงับการใช้อยู่" -#: db_operations.php:574 libraries/messages.inc.php:96 +#: db_operations.php:574 libraries/messages.inc.php:92 #, fuzzy msgid "Enable" msgstr "เปิดใช้อยู่" #: db_operations.php:598 libraries/Index.class.php:448 -#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:158 +#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:154 #: 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:361 @@ -341,7 +341,7 @@ msgstr "เปิดใช้อยู่" msgid "Collation" msgstr "การเรียงลำดับ" -#: db_operations.php:609 libraries/messages.inc.php:742 main.php:316 +#: db_operations.php:609 libraries/messages.inc.php:738 main.php:316 #: pdf_schema.php:34 #, php-format msgid "" @@ -350,58 +350,58 @@ msgid "" msgstr "" "ความสามารถเพิ่มเติมสำหรับ linked Tables ได้ถูกระงับเอาไว้ ตามเหตุผลที่แจ้งไว้ใน %shere%s" -#: db_operations.php:645 libraries/messages.inc.php:264 pdf_pages.php:528 +#: db_operations.php:645 libraries/messages.inc.php:260 pdf_pages.php:528 msgid "Display PDF schema" msgstr "แสดงสกีมาของ PDF" -#: db_operations.php:661 libraries/messages.inc.php:877 pdf_pages.php:529 +#: db_operations.php:661 libraries/messages.inc.php:873 pdf_pages.php:529 msgid "Show grid" msgstr "แสดงกริด" -#: db_operations.php:664 libraries/messages.inc.php:874 pdf_pages.php:530 +#: db_operations.php:664 libraries/messages.inc.php:870 pdf_pages.php:530 msgid "Show color" msgstr "แสดงสี" -#: db_operations.php:666 libraries/messages.inc.php:998 pdf_pages.php:531 +#: db_operations.php:666 libraries/messages.inc.php:994 pdf_pages.php:531 msgid "Show dimension of tables" msgstr "แสดงมิติของตาราง" -#: db_operations.php:669 libraries/messages.inc.php:52 pdf_pages.php:532 +#: db_operations.php:669 libraries/messages.inc.php:48 pdf_pages.php:532 msgid "Display all tables with the same width" msgstr "ให้แสดงตารางทุกอัน ด้วยความกว้างเท่ากันหรือไม่?" -#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:227 +#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:223 #: pdf_pages.php:533 msgid "Data Dictionary" msgstr "พจนานุกรมข้อมูล" -#: db_operations.php:674 libraries/messages.inc.php:884 pdf_pages.php:534 +#: db_operations.php:674 libraries/messages.inc.php:880 pdf_pages.php:534 msgid "Only show keys" msgstr "" -#: db_operations.php:676 libraries/messages.inc.php:875 pdf_pages.php:535 +#: db_operations.php:676 libraries/messages.inc.php:871 pdf_pages.php:535 msgid "Data Dictionary Format" msgstr "รูปแบบพจนานุกรมข้อมูล" -#: db_operations.php:678 libraries/messages.inc.php:464 pdf_pages.php:537 +#: db_operations.php:678 libraries/messages.inc.php:460 pdf_pages.php:537 msgid "Landscape" msgstr "แนวนอน" -#: db_operations.php:679 libraries/messages.inc.php:663 pdf_pages.php:538 +#: db_operations.php:679 libraries/messages.inc.php:659 pdf_pages.php:538 msgid "Portrait" msgstr "แนวตั้ง" -#: db_operations.php:682 libraries/messages.inc.php:599 pdf_pages.php:541 +#: db_operations.php:682 libraries/messages.inc.php:595 pdf_pages.php:541 msgid "Paper size" msgstr "ขนาดกระดาษ" -#: db_operations.php:706 libraries/messages.inc.php:281 +#: db_operations.php:706 libraries/messages.inc.php:277 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 libraries/messages.inc.php:1087 +#: libraries/header.inc.php:126 libraries/messages.inc.php:1083 #: pdf_pages.php:405 server_privileges.php:1626 server_privileges.php:1682 #: server_privileges.php:1946 server_synchronize.php:423 #: server_synchronize.php:866 tbl_tracking.php:592 test/theme.php:75 @@ -409,176 +409,176 @@ msgid "Table" msgstr "ตาราง " #: db_printview.php:105 libraries/db_structure.lib.php:56 -#: libraries/messages.inc.php:735 +#: libraries/messages.inc.php:731 msgid "Records" msgstr "ระเบียน" #: db_printview.php:109 libraries/db_structure.lib.php:67 -#: libraries/messages.inc.php:1003 tbl_indexes.php:190 +#: libraries/messages.inc.php:999 tbl_indexes.php:190 msgid "Size" msgstr "ขนาด" #: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 -#: libraries/export/sql.php:899 libraries/messages.inc.php:436 +#: libraries/export/sql.php:899 libraries/messages.inc.php:432 msgid "in use" msgstr "ใช้อยู่" #: db_printview.php:187 libraries/db_info.inc.php:88 -#: libraries/export/sql.php:514 libraries/messages.inc.php:1032 +#: libraries/export/sql.php:514 libraries/messages.inc.php:1028 #: pdf_schema.php:1241 tbl_printview.php:434 tbl_structure.php:810 msgid "Creation" msgstr "สร้างเมื่อ" #: db_printview.php:196 libraries/db_info.inc.php:93 -#: libraries/export/sql.php:519 libraries/messages.inc.php:1036 +#: libraries/export/sql.php:519 libraries/messages.inc.php:1032 #: pdf_schema.php:1246 tbl_printview.php:444 tbl_structure.php:818 msgid "Last update" msgstr "ปรับปรุงครั้งสุดท้ายเมื่อ" #: db_printview.php:205 libraries/db_info.inc.php:98 -#: libraries/export/sql.php:524 libraries/messages.inc.php:1031 +#: libraries/export/sql.php:524 libraries/messages.inc.php:1027 #: pdf_schema.php:1251 tbl_printview.php:454 tbl_structure.php:826 msgid "Last check" msgstr "ตรวจสอบครั้งสุดท้ายเมื่อ" -#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1085 +#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1081 #, php-format msgid "%s table(s)" msgstr "%s ตาราง" #: db_qbe.php:29 libraries/display_tbl.lib.php:1981 -#: libraries/messages.inc.php:1051 libraries/sql_query_form.lib.php:140 +#: libraries/messages.inc.php:1047 libraries/sql_query_form.lib.php:140 #: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131 #: view_operations.php:62 msgid "Your SQL query has been executed successfully" msgstr "ทำคำค้นเสร็จเรียบร้อยแล้ว" -#: db_qbe.php:42 libraries/messages.inc.php:371 +#: db_qbe.php:42 libraries/messages.inc.php:367 msgid "You have to choose at least one column to display" msgstr "ต้องเลือกให้แสดงอย่างน้อยหนึ่งคอลัมน์" #: db_qbe.php:200 libraries/db_structure.lib.php:104 -#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1014 +#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1010 msgid "Sort" msgstr "เรียง" #: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111 #: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828 -#: libraries/messages.inc.php:69 server_databases.php:170 +#: libraries/messages.inc.php:65 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314 msgid "Ascending" msgstr "น้อยไปมาก" #: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119 #: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825 -#: libraries/messages.inc.php:251 server_databases.php:170 +#: libraries/messages.inc.php:247 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315 msgid "Descending" msgstr "มากไปน้อย" #: db_qbe.php:264 db_tracking.php:78 libraries/display_tbl.lib.php:308 -#: libraries/messages.inc.php:888 tbl_change.php:277 tbl_tracking.php:597 +#: libraries/messages.inc.php:884 tbl_change.php:277 tbl_tracking.php:597 msgid "Show" msgstr "แสดง" -#: db_qbe.php:300 libraries/messages.inc.php:202 +#: db_qbe.php:300 libraries/messages.inc.php:198 msgid "Criteria" msgstr "เงื่อนไข" #: db_qbe.php:353 db_qbe.php:435 db_qbe.php:527 db_qbe.php:558 -#: libraries/messages.inc.php:718 +#: libraries/messages.inc.php:714 msgid "Ins" msgstr "เพิ่ม" #: db_qbe.php:357 db_qbe.php:439 db_qbe.php:524 db_qbe.php:555 -#: libraries/messages.inc.php:56 +#: libraries/messages.inc.php:52 msgid "And" msgstr "และ" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:529 db_qbe.php:560 -#: libraries/messages.inc.php:717 +#: libraries/messages.inc.php:713 msgid "Del" msgstr "ลบ" #: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553 -#: libraries/display_import.lib.php:166 libraries/messages.inc.php:592 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:588 #: libraries/tbl_properties.inc.php:779 server_privileges.php:258 #: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288 msgid "Or" msgstr "หรือ" -#: db_qbe.php:507 libraries/messages.inc.php:516 +#: db_qbe.php:507 libraries/messages.inc.php:512 msgid "Modify" msgstr "แก้ไข" -#: db_qbe.php:584 libraries/messages.inc.php:33 +#: db_qbe.php:584 libraries/messages.inc.php:29 msgid "Add/Delete Criteria Row" msgstr "เพิ่ม/ลบ แถว" -#: db_qbe.php:596 libraries/messages.inc.php:32 +#: db_qbe.php:596 libraries/messages.inc.php:28 msgid "Add/Delete Field Columns" msgstr "เพิ่ม/ลบ คอลัมน์ (ฟิลด์)" -#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1192 +#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1188 msgid "Update Query" msgstr "ปรับปรุงคำค้น" -#: db_qbe.php:617 libraries/messages.inc.php:1216 +#: db_qbe.php:617 libraries/messages.inc.php:1212 msgid "Use Tables" msgstr "ใช้ตาราง" -#: db_qbe.php:640 libraries/messages.inc.php:723 +#: db_qbe.php:640 libraries/messages.inc.php:719 #, php-format msgid "SQL query on database %s:" msgstr "คำค้นบนฐานข้อมูล %s:" -#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:823 +#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:819 msgid "Submit Query" msgstr "ประมวลผลคำค้น" #: db_search.php:68 libraries/auth/config.auth.lib.php:84 #: libraries/auth/config.auth.lib.php:103 #: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52 -#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:26 +#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:22 msgid "Access denied" msgstr "ไม่อนุญาตให้ใช้งาน" -#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:836 +#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:832 msgid "at least one of the words" msgstr "อย่างน้อยหนึ่งคำ" -#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:837 +#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:833 msgid "all words" msgstr "ทุกคำ" -#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:838 +#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:834 msgid "the exact phrase" msgstr "เหมือนทั้งวลี" -#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:839 +#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:835 msgid "as regular expression" msgstr "รูปแบบคำพ้อง (regular expression)" -#: db_search.php:242 libraries/messages.inc.php:840 +#: db_search.php:242 libraries/messages.inc.php:836 #, php-format msgid "Search results for \"%s\" %s:" msgstr "ผลการค้นหา \"%s\" %s:" -#: db_search.php:260 libraries/messages.inc.php:579 +#: db_search.php:260 libraries/messages.inc.php:575 #, php-format msgid "%s match(es) inside table %s" 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/messages.inc.php:108 +#: db_structure.php:105 libraries/messages.inc.php:104 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468 msgid "Browse" msgstr "เปิดดู" #: db_search.php:272 libraries/display_tbl.lib.php:1165 -#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:243 +#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:239 #: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406 #: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377 #: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216 @@ -586,45 +586,45 @@ msgstr "เปิดดู" msgid "Delete" msgstr "ลบ" -#: db_search.php:285 libraries/messages.inc.php:580 +#: db_search.php:285 libraries/messages.inc.php:576 #, php-format msgid "Total: %s match(es)" msgstr "รวม: %s ผลลัพธ์ที่ตรง" -#: db_search.php:299 libraries/messages.inc.php:832 +#: db_search.php:299 libraries/messages.inc.php:828 msgid "Search in database" msgstr "ค้นหาในฐานข้อมูล" -#: db_search.php:302 libraries/messages.inc.php:835 +#: db_search.php:302 libraries/messages.inc.php:831 msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgstr "คำ หรือ ค่าที่ต้องการค้นหา (wildcard: \"%\"):" -#: db_search.php:307 libraries/messages.inc.php:842 +#: db_search.php:307 libraries/messages.inc.php:838 msgid "Find:" msgstr "ค้น:" -#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1017 +#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1013 msgid "Words are separated by a space character (\" \")." msgstr "คำถูกแบ่งด้วยช่องว่าง (\" \")." -#: db_search.php:325 libraries/messages.inc.php:834 +#: db_search.php:325 libraries/messages.inc.php:830 msgid "Inside table(s):" msgstr "ในตาราง:" -#: db_search.php:355 libraries/messages.inc.php:833 +#: db_search.php:355 libraries/messages.inc.php:829 msgid "Inside field:" 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/messages.inc.php:431 libraries/sql_query_form.lib.php:334 +#: libraries/messages.inc.php:427 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/db_links.inc.php:63 libraries/export/latex.php:337 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:1048 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:1044 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 #: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269 msgid "Structure" @@ -633,8 +633,8 @@ 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:1642 -#: libraries/db_links.inc.php:100 libraries/messages.inc.php:272 +#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/db_links.inc.php:100 libraries/messages.inc.php:268 #: 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 @@ -644,40 +644,40 @@ 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:1641 -#: libraries/messages.inc.php:284 libraries/mult_submits.inc.php:39 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: libraries/messages.inc.php:280 libraries/mult_submits.inc.php:39 #: libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "ลบข้อมูล" -#: db_structure.php:316 libraries/messages.inc.php:1075 +#: db_structure.php:316 libraries/messages.inc.php:1071 #: libraries/tbl_links.inc.php:100 #, php-format msgid "Table %s has been emptied" msgstr "ลบข้อมูลในตาราง %s เรียบร้อยแล้ว" -#: db_structure.php:326 libraries/messages.inc.php:1229 +#: db_structure.php:326 libraries/messages.inc.php:1225 #: libraries/tbl_links.inc.php:133 #, fuzzy, php-format msgid "View %s has been dropped" msgstr "โยนฟิลด์ %s ทิ้งไปเรียบร้อยแล้ว" -#: db_structure.php:326 libraries/messages.inc.php:1074 +#: db_structure.php:326 libraries/messages.inc.php:1070 #: libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "โยนตาราง %s ทิ้งไปเรียบร้อยแล้ว" -#: db_structure.php:333 libraries/messages.inc.php:1128 +#: db_structure.php:333 libraries/messages.inc.php:1124 msgid "Tracking is active." msgstr "" -#: db_structure.php:335 libraries/messages.inc.php:1129 +#: db_structure.php:335 libraries/messages.inc.php:1125 msgid "Tracking is not active." msgstr "" #: db_structure.php:420 libraries/display_tbl.lib.php:1944 -#: libraries/messages.inc.php:1228 +#: libraries/messages.inc.php:1224 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -685,84 +685,84 @@ msgid "" msgstr "" #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 -#: libraries/messages.inc.php:1233 libraries/tbl_info.inc.php:66 +#: libraries/messages.inc.php:1229 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/messages.inc.php:773 libraries/server_links.inc.php:70 +#: libraries/messages.inc.php:769 libraries/server_links.inc.php:70 #: server_replication.php:33 server_replication.php:164 server_status.php:258 #, fuzzy msgid "Replication" msgstr "รีเลชัน" -#: db_structure.php:489 libraries/messages.inc.php:1053 +#: db_structure.php:489 libraries/messages.inc.php:1049 msgid "Sum" msgstr "ผลรวม" #: db_structure.php:496 libraries/StorageEngine.class.php:356 -#: libraries/messages.inc.php:239 +#: libraries/messages.inc.php:235 #, 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 #: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086 -#: libraries/messages.inc.php:1243 libraries/mult_submits.inc.php:16 +#: libraries/messages.inc.php:1239 libraries/mult_submits.inc.php:16 #: server_databases.php:346 server_databases.php:351 #: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465 msgid "With selected:" msgstr "ทำกับที่เลือก:" #: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: libraries/messages.inc.php:148 server_databases.php:348 +#: libraries/messages.inc.php:144 server_databases.php:348 #: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459 msgid "Check All" msgstr "เลือกทั้งหมด" #: db_structure.php:531 libraries/display_tbl.lib.php:2077 -#: libraries/messages.inc.php:1184 libraries/replication_gui.lib.php:33 +#: libraries/messages.inc.php:1180 libraries/replication_gui.lib.php:33 #: server_databases.php:350 server_privileges.php:533 #: server_privileges.php:1564 tbl_structure.php:463 msgid "Uncheck All" msgstr "ไม่เลือกเลย" -#: db_structure.php:536 libraries/messages.inc.php:150 +#: db_structure.php:536 libraries/messages.inc.php:146 msgid "Check tables having overhead" msgstr "" #: db_structure.php:547 db_structure.php:548 db_structure.php:599 -#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:672 +#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:668 #: libraries/mult_submits.inc.php:28 tbl_structure.php:493 #: tbl_structure.php:495 msgid "Print view" msgstr "แสดง" -#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:153 +#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:149 #: libraries/mult_submits.inc.php:42 tbl_operations.php:579 msgid "Check table" msgstr "ตรวจสอบตาราง" -#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:590 +#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:586 #: libraries/mult_submits.inc.php:47 tbl_operations.php:619 #: tbl_structure.php:710 tbl_structure.php:712 msgid "Optimize table" msgstr "ปรับแต่งตาราง" -#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:758 +#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:754 #: libraries/mult_submits.inc.php:52 tbl_operations.php:609 msgid "Repair table" msgstr "ซ่อมแซมตาราง" -#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:55 +#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:51 #: libraries/mult_submits.inc.php:57 tbl_operations.php:599 msgid "Analyze table" msgstr "วิเคราะห์ตาราง" #: db_structure.php:557 db_structure.php:558 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/messages.inc.php:310 +#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:306 #: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84 #: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109 #: server_privileges.php:1341 setup/frames/menu.inc.php:22 @@ -770,7 +770,7 @@ msgstr "วิเคราะห์ตาราง" msgid "Export" msgstr "ส่งออก" -#: db_tracking.php:66 libraries/messages.inc.php:1151 +#: db_tracking.php:66 libraries/messages.inc.php:1147 msgid "Tracked tables" msgstr "" @@ -778,7 +778,7 @@ msgstr "" #: 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/header_printview.inc.php:58 libraries/messages.inc.php:212 +#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:208 #: navigation.php:233 server_databases.php:169 server_privileges.php:1621 #: server_privileges.php:1682 server_privileges.php:1940 #: server_processlist.php:56 server_synchronize.php:1179 @@ -786,97 +786,97 @@ msgstr "" msgid "Database" msgstr "ฐานข้อมูล" -#: db_tracking.php:73 libraries/messages.inc.php:1146 +#: db_tracking.php:73 libraries/messages.inc.php:1142 msgid "Last version" msgstr "" -#: db_tracking.php:74 libraries/messages.inc.php:1145 tbl_tracking.php:594 +#: db_tracking.php:74 libraries/messages.inc.php:1141 tbl_tracking.php:594 #, fuzzy msgid "Created" msgstr "สร้าง" -#: db_tracking.php:75 libraries/messages.inc.php:1147 tbl_tracking.php:595 +#: db_tracking.php:75 libraries/messages.inc.php:1143 tbl_tracking.php:595 msgid "Updated" msgstr "" #: db_tracking.php:77 libraries/Index.class.php:440 -#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:27 +#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:23 #: server_databases.php:203 server_privileges.php:1503 #: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187 msgid "Action" msgstr "กระทำการ" -#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:247 +#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:243 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:106 libraries/messages.inc.php:1142 tbl_tracking.php:548 +#: db_tracking.php:106 libraries/messages.inc.php:1138 tbl_tracking.php:548 #: tbl_tracking.php:606 tbl_tracking.php:613 msgid "active" msgstr "" -#: db_tracking.php:108 libraries/messages.inc.php:1143 tbl_tracking.php:550 +#: db_tracking.php:108 libraries/messages.inc.php:1139 tbl_tracking.php:550 #: tbl_tracking.php:608 tbl_tracking.php:610 msgid "not active" msgstr "" -#: db_tracking.php:121 libraries/messages.inc.php:1160 +#: db_tracking.php:121 libraries/messages.inc.php:1156 #, fuzzy msgid "Versions" msgstr "กระบวนการ" -#: db_tracking.php:122 libraries/messages.inc.php:1132 tbl_tracking.php:379 +#: db_tracking.php:122 libraries/messages.inc.php:1128 tbl_tracking.php:379 #: tbl_tracking.php:624 msgid "Tracking report" msgstr "" -#: db_tracking.php:123 libraries/messages.inc.php:1144 tbl_tracking.php:251 +#: db_tracking.php:123 libraries/messages.inc.php:1140 tbl_tracking.php:251 #: tbl_tracking.php:624 #, fuzzy msgid "Structure snapshot" msgstr "เฉพาะโครงสร้าง" -#: db_tracking.php:152 libraries/messages.inc.php:1154 +#: db_tracking.php:152 libraries/messages.inc.php:1150 msgid "Untracked tables" msgstr "" -#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1153 +#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1149 #: tbl_structure.php:529 tbl_structure.php:531 #, fuzzy msgid "Track table" msgstr "ตรวจสอบตาราง" -#: db_tracking.php:200 libraries/messages.inc.php:1121 +#: db_tracking.php:200 libraries/messages.inc.php:1117 #, fuzzy msgid "Database Log" msgstr "ฐานข้อมูล" -#: export.php:62 libraries/messages.inc.php:312 +#: export.php:62 libraries/messages.inc.php:308 msgid "Selected export type has to be saved in file!" msgstr "" -#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:567 +#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:563 #, php-format msgid "Insufficient space to save the file %s." msgstr "" -#: export.php:294 libraries/messages.inc.php:324 +#: export.php:294 libraries/messages.inc.php:320 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "" -#: export.php:298 export.php:302 libraries/messages.inc.php:562 +#: export.php:298 export.php:302 libraries/messages.inc.php:558 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "" -#: export.php:629 libraries/messages.inc.php:276 +#: export.php:629 libraries/messages.inc.php:272 #, php-format msgid "Dump has been saved to file %s." msgstr "" -#: import.php:60 libraries/messages.inc.php:1202 +#: import.php:60 libraries/messages.inc.php:1198 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation%" @@ -884,21 +884,21 @@ msgid "" msgstr "" #: import.php:279 import.php:332 libraries/File.class.php:849 -#: libraries/File.class.php:961 libraries/messages.inc.php:325 +#: libraries/File.class.php:961 libraries/messages.inc.php:321 msgid "File could not be read" msgstr "อ่านไฟล์ไม่ได้" #: import.php:287 import.php:296 import.php:315 import.php:324 #: libraries/File.class.php:1031 libraries/File.class.php:1039 #: libraries/File.class.php:1055 libraries/File.class.php:1063 -#: libraries/messages.inc.php:1189 +#: libraries/messages.inc.php:1185 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." msgstr "" -#: import.php:337 libraries/messages.inc.php:547 +#: import.php:337 libraries/messages.inc.php:543 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -906,39 +906,39 @@ msgid "" msgstr "" #: import.php:372 libraries/display_import.lib.php:24 -#: libraries/messages.inc.php:125 +#: libraries/messages.inc.php:121 msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:397 libraries/messages.inc.php:102 +#: import.php:397 libraries/messages.inc.php:98 msgid "The bookmark has been deleted." msgstr "ลบคำค้นที่จดไว้เรียบร้อยแล้ว" -#: import.php:401 libraries/messages.inc.php:879 +#: import.php:401 libraries/messages.inc.php:875 msgid "Showing bookmark" msgstr "" -#: import.php:403 libraries/messages.inc.php:101 +#: import.php:403 libraries/messages.inc.php:97 #, php-format msgid "Bookmark %s created" msgstr "" -#: import.php:409 import.php:415 libraries/messages.inc.php:407 +#: import.php:409 import.php:415 libraries/messages.inc.php:403 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" -#: import.php:424 libraries/messages.inc.php:1107 +#: import.php:424 libraries/messages.inc.php:1103 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: index.php:190 libraries/messages.inc.php:553 +#: index.php:190 libraries/messages.inc.php:549 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "เบราเซอร์ที่ใช้เฟรมได้ จะช่วยให้ใช้ phpMyAdmin ได้ง่ายขึ้น" -#: js/messages.php:25 libraries/messages.inc.php:155 +#: js/messages.php:25 libraries/messages.inc.php:151 #: server_synchronize.php:345 server_synchronize.php:357 #: server_synchronize.php:373 server_synchronize.php:380 #: server_synchronize.php:739 server_synchronize.php:767 @@ -946,118 +946,118 @@ msgstr "เบราเซอร์ที่ใช้เฟรมได้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!" @@ -1731,22 +1731,22 @@ msgstr "ต้องกำหนดค่า $cfg['PmaAbsoluteUri']กรุณาตรวจสอบการตั้งค่าของ PHP" #: libraries/db_events.inc.php:20 libraries/db_events.inc.php:22 -#: libraries/export/sql.php:415 libraries/messages.inc.php:306 +#: libraries/export/sql.php:415 libraries/messages.inc.php:302 msgid "Events" msgstr "" #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 -#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:541 +#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:537 #: libraries/tbl_triggers.lib.php:27 setup/frames/index.inc.php:112 msgid "Name" msgstr "ชื่อ" -#: libraries/db_links.inc.php:45 libraries/messages.inc.php:216 +#: libraries/db_links.inc.php:45 libraries/messages.inc.php:212 #, php-format msgid "Database %s has been dropped." msgstr "โยนฐานข้อมูล %s ทิ้งไปเรียบร้อยแล้ว" #: libraries/db_links.inc.php:57 libraries/db_links.inc.php:58 -#: libraries/db_links.inc.php:59 libraries/messages.inc.php:234 +#: libraries/db_links.inc.php:59 libraries/messages.inc.php:230 msgid "Database seems to be empty!" msgstr "" -#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1025 +#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1021 #: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60 #: querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1152 +#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1148 #: libraries/tbl_links.inc.php:69 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:86 libraries/messages.inc.php:719 +#: libraries/db_links.inc.php:86 libraries/messages.inc.php:715 msgid "Query" msgstr "คำค้นจากตัวอย่าง" -#: libraries/db_links.inc.php:91 libraries/messages.inc.php:253 +#: libraries/db_links.inc.php:91 libraries/messages.inc.php:249 msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:98 libraries/messages.inc.php:397 +#: libraries/db_links.inc.php:98 libraries/messages.inc.php:393 #: libraries/server_links.inc.php:88 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:104 libraries/messages.inc.php:587 +#: libraries/db_links.inc.php:104 libraries/messages.inc.php:583 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" msgstr "กระบวนการ" -#: libraries/db_links.inc.php:111 libraries/messages.inc.php:709 +#: libraries/db_links.inc.php:111 libraries/messages.inc.php:705 #: libraries/server_links.inc.php:66 server_privileges.php:72 #: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117 msgid "Privileges" msgstr "สิทธิ" #: libraries/db_routines.inc.php:30 libraries/db_routines.inc.php:32 -#: libraries/messages.inc.php:812 +#: libraries/messages.inc.php:808 msgid "Routines" msgstr "" -#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:811 +#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:807 msgid "Return type" msgstr "" #: libraries/db_structure.lib.php:57 libraries/display_tbl.lib.php:1848 -#: libraries/messages.inc.php:65 +#: libraries/messages.inc.php:61 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "" -#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:593 +#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:589 #: server_databases.php:142 tbl_printview.php:336 tbl_structure.php:683 msgid "Overhead" msgstr "เกินความจำเป็น" #: libraries/dbi/mysql.dbi.lib.php:112 libraries/dbi/mysqli.dbi.lib.php:124 -#: libraries/messages.inc.php:176 +#: libraries/messages.inc.php:172 msgid "Connection for controluser as defined in your configuration failed." msgstr "" #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 -#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:855 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:851 msgid "The server is not responding" msgstr "เซิร์ฟเวอร์ดังกล่าวไม่ตอบสนอง" #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:1010 +#: libraries/messages.inc.php:1006 msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "" -#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:255 +#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:251 #: tbl_structure.php:609 msgid "Details..." msgstr "" -#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:143 +#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:139 #: main.php:91 user_password.php:111 user_password.php:129 msgid "Change password" msgstr "เปลี่ยนรหัสผ่าน" -#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:561 +#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:557 #: libraries/replication_gui.lib.php:341 server_privileges.php:768 msgid "No Password" msgstr "ไม่มีรหัสผ่าน" -#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:610 +#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:606 #: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60 #: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335 #: libraries/replication_gui.lib.php:345 server_privileges.php:757 @@ -2043,13 +2053,13 @@ msgstr "ไม่มีรหัสผ่าน" msgid "Password" msgstr "รหัสผ่าน" -#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:806 +#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:802 #: libraries/replication_gui.lib.php:349 libraries/replication_gui.lib.php:352 #: server_privileges.php:776 server_privileges.php:779 msgid "Re-type" msgstr "พิมพ์ใหม่" -#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:608 +#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:604 msgid "Password Hashing" msgstr "" @@ -2057,91 +2067,91 @@ msgstr "" msgid "MySQL 4.0 compatible" msgstr "" -#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:353 +#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:349 #: libraries/replication_gui.lib.php:356 server_privileges.php:783 msgid "Generate Password" msgstr "" -#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:352 +#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:348 #: libraries/replication_gui.lib.php:359 server_privileges.php:786 #, fuzzy msgid "Generate" msgstr "สร้างโดย" #: libraries/display_create_database.lib.php:22 -#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:189 +#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:185 msgid "Create new database" msgstr "สร้างฐานข้อมูลใหม่" -#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:185 +#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:181 msgid "Create" msgstr "สร้าง" -#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:564 +#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:560 #: server_privileges.php:74 server_privileges.php:1388 #: server_replication.php:35 msgid "No Privileges" msgstr "ไม่มีสิทธิ" -#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:445 +#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:441 msgid "Table must have at least one field." msgstr "" -#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:190 +#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:186 #, php-format msgid "Create table on database %s" msgstr "สร้างตารางในฐานข้อมูลนี้ %s" -#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:577 +#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:573 msgid "Number of fields" msgstr "" -#: libraries/display_export.lib.php:42 libraries/messages.inc.php:124 +#: libraries/display_export.lib.php:42 libraries/messages.inc.php:120 msgid "Could not load export plugins, please check your installation!" msgstr "" -#: libraries/display_export.lib.php:107 libraries/messages.inc.php:277 +#: libraries/display_export.lib.php:107 libraries/messages.inc.php:273 #, php-format msgid "Dump %s row(s) starting at record # %s" msgstr "ดัมพ์แถว %s แถว เริ่มที่แถว %s" -#: libraries/display_export.lib.php:115 libraries/messages.inc.php:274 +#: libraries/display_export.lib.php:115 libraries/messages.inc.php:270 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:125 libraries/messages.inc.php:852 +#: libraries/display_export.lib.php:125 libraries/messages.inc.php:848 #: setup/lib/messages.inc.php:82 msgid "Save as file" msgstr "ส่งมาเป็นไฟล์" -#: libraries/display_export.lib.php:134 libraries/messages.inc.php:828 +#: libraries/display_export.lib.php:134 libraries/messages.inc.php:824 #, fuzzy, php-format msgid "Save on server in %s directory" msgstr "ไดเรกทอรีสำหรับอัพโหลด ที่เว็บเซิร์ฟเวอร์" -#: libraries/display_export.lib.php:142 libraries/messages.inc.php:594 +#: libraries/display_export.lib.php:142 libraries/messages.inc.php:590 #: setup/lib/messages.inc.php:90 msgid "Overwrite existing file(s)" msgstr "เขียนทับแฟ้มที่มีอยู่แล้ว" -#: libraries/display_export.lib.php:148 libraries/messages.inc.php:330 +#: libraries/display_export.lib.php:148 libraries/messages.inc.php:326 msgid "File name template" msgstr "รูปแบบของชื่อไฟล์" -#: libraries/display_export.lib.php:152 libraries/messages.inc.php:327 +#: libraries/display_export.lib.php:152 libraries/messages.inc.php:323 #, fuzzy msgid "server name" msgstr "ชื่อผู้ใช้" -#: libraries/display_export.lib.php:155 libraries/messages.inc.php:326 +#: libraries/display_export.lib.php:155 libraries/messages.inc.php:322 msgid "database name" msgstr "" -#: libraries/display_export.lib.php:158 libraries/messages.inc.php:328 +#: libraries/display_export.lib.php:158 libraries/messages.inc.php:324 msgid "table name" msgstr "" -#: libraries/display_export.lib.php:162 libraries/messages.inc.php:329 +#: libraries/display_export.lib.php:162 libraries/messages.inc.php:325 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2149,24 +2159,24 @@ msgid "" "3$s. Other text will be kept as is." msgstr "" -#: libraries/display_export.lib.php:202 libraries/messages.inc.php:331 +#: libraries/display_export.lib.php:202 libraries/messages.inc.php:327 msgid "remember template" msgstr "จำรูปแบบ" #: libraries/display_export.lib.php:210 libraries/display_import.lib.php:178 -#: libraries/display_import.lib.php:191 libraries/messages.inc.php:145 +#: libraries/display_import.lib.php:191 libraries/messages.inc.php:141 #: libraries/sql_query_form.lib.php:549 msgid "Character set of the file:" msgstr "ชุดอักขระของไฟล์ (character set):" -#: libraries/display_export.lib.php:235 libraries/messages.inc.php:166 +#: libraries/display_export.lib.php:235 libraries/messages.inc.php:162 #: setup/lib/messages.inc.php:84 msgid "Compression" 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/messages.inc.php:558 +#: libraries/export/sql.php:868 libraries/messages.inc.php:554 #: libraries/tbl_properties.inc.php:575 server_privileges.php:1836 #: server_processlist.php:75 msgid "None" @@ -2190,468 +2200,468 @@ msgstr "\"gzipped\"" msgid "bzipped" msgstr "\"bzipped\"" -#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1018 +#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1014 msgid "SQL compatibility mode" msgstr "" -#: libraries/display_import.lib.php:67 libraries/messages.inc.php:398 +#: libraries/display_import.lib.php:67 libraries/messages.inc.php:394 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " "browsers." msgstr "" -#: libraries/display_import.lib.php:77 libraries/messages.inc.php:406 +#: libraries/display_import.lib.php:77 libraries/messages.inc.php:402 msgid "The file is being processed, please be patient." msgstr "" -#: libraries/display_import.lib.php:99 libraries/messages.inc.php:408 +#: libraries/display_import.lib.php:99 libraries/messages.inc.php:404 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." msgstr "" -#: libraries/display_import.lib.php:126 libraries/messages.inc.php:333 +#: libraries/display_import.lib.php:126 libraries/messages.inc.php:329 msgid "File to import" msgstr "" -#: libraries/display_import.lib.php:137 libraries/messages.inc.php:486 +#: libraries/display_import.lib.php:137 libraries/messages.inc.php:482 #: libraries/sql_query_form.lib.php:524 msgid "Location of the text file" msgstr "เลือกไฟล์ข้อความจาก" -#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1203 +#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1199 msgid "File uploads are not allowed on this server." msgstr "" -#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1235 +#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1231 #: libraries/sql_query_form.lib.php:533 tbl_change.php:1028 msgid "The directory you set for upload work cannot be reached" msgstr "ไม่สามารถใช้งาน ไดเรกทอรีที่ตั้งไว้สำหรับอัพโหลดได้" -#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1236 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1232 #: libraries/sql_query_form.lib.php:536 tbl_change.php:1031 msgid "web server upload directory" msgstr "ไดเรกทอรีสำหรับอัพโหลด ที่เว็บเซิร์ฟเวอร์" -#: libraries/display_import.lib.php:212 libraries/messages.inc.php:167 +#: libraries/display_import.lib.php:212 libraries/messages.inc.php:163 #, php-format msgid "Imported file compression will be automatically detected from: %s" msgstr "" -#: libraries/display_import.lib.php:219 libraries/messages.inc.php:600 +#: libraries/display_import.lib.php:219 libraries/messages.inc.php:596 msgid "Partial import" msgstr "" -#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1105 +#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1101 #, php-format msgid "" "Previous import timed out, after resubmitting will continue from position %d." msgstr "" -#: libraries/display_import.lib.php:232 libraries/messages.inc.php:51 +#: libraries/display_import.lib.php:232 libraries/messages.inc.php:47 msgid "" "Allow the interruption of an import in case the script detects it is close " "to the PHP timeout limit. This might be good way to import large files, " "however it can break transactions." msgstr "" -#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1004 +#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1000 #: setup/lib/messages.inc.php:161 msgid "Number of records (queries) to skip from start" msgstr "" -#: libraries/display_import.lib.php:255 libraries/messages.inc.php:396 +#: libraries/display_import.lib.php:255 libraries/messages.inc.php:392 #: setup/lib/messages.inc.php:160 msgid "Format of imported file" msgstr "" #: libraries/display_select_lang.lib.php:45 -#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:465 +#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:461 #: setup/frames/index.inc.php:70 msgid "Language" msgstr "" -#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:447 +#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:443 #, php-format msgid "%d is not valid row number." msgstr "" -#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:814 +#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:810 msgid "row(s) starting from record #" msgstr "แถว เริ่มจากแถวที่" -#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:817 +#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:813 msgid "horizontal" msgstr "แนวนอน" -#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:816 +#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:812 msgid "horizontal (rotated headers)" msgstr "แนวนอน (หมุนหัวเรื่อง)" -#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:819 +#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:815 msgid "vertical" msgstr "แนวตั้ง" -#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:818 +#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:814 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "อยู่ใน %s และซ้ำหัวแถวทุกๆ %s เซลล์" -#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:495 +#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:491 msgid "This operation could take a long time. Proceed anyway?" msgstr "" -#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1012 +#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1008 msgid "Sort by key" msgstr "เรียงโดยคีย์" #: libraries/display_tbl.lib.php:555 libraries/import.lib.php:1082 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:591 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:587 #: tbl_select.php:267 tbl_structure.php:754 #, fuzzy msgid "Options" msgstr "กระบวนการ" #: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:570 -#: libraries/messages.inc.php:601 +#: libraries/messages.inc.php:597 msgid "Partial Texts" msgstr "ข้อความบางส่วน" #: libraries/display_tbl.lib.php:561 libraries/display_tbl.lib.php:574 -#: libraries/messages.inc.php:346 +#: libraries/messages.inc.php:342 msgid "Full Texts" msgstr "ทั้งข้อความ" -#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:739 +#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:735 #, fuzzy msgid "Relational key" msgstr "รีเลชันแนล สกีมา" -#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:738 +#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:734 msgid "Relational display field" msgstr "" -#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:872 +#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:868 msgid "Show binary contents" msgstr "" -#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:873 +#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:869 msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:871 +#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:867 msgid "Show binary contents as HEX" msgstr "" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:375 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:371 #: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320 msgid "Hide" msgstr "" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:508 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:504 #: libraries/tbl_properties.inc.php:144 transformation_overview.php:47 #, fuzzy msgid "Browser transformation" msgstr "การแปลงที่เรียกใช้ได้" #: libraries/display_tbl.lib.php:1126 libraries/display_tbl.lib.php:1130 -#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:308 +#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:304 msgid "Execute bookmarked query" msgstr "" #: libraries/display_tbl.lib.php:1145 libraries/display_tbl.lib.php:1157 -#: libraries/messages.inc.php:244 +#: libraries/messages.inc.php:240 msgid "The row has been deleted" msgstr "ลบเรียบร้อยแล้ว" #: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056 -#: libraries/messages.inc.php:460 server_processlist.php:71 +#: libraries/messages.inc.php:456 server_processlist.php:71 #: tbl_row_action.php:64 msgid "Kill" msgstr "ฆ่าทิ้ง" -#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:849 +#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:845 msgid "in query" msgstr "ในคำค้น" -#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:881 +#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:877 msgid "Showing rows" msgstr "แสดงระเบียนที่ " -#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1113 +#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1109 msgid "total" msgstr "ทั้งหมด" -#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:727 +#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:723 #: sql.php:524 #, php-format msgid "Query took %01.4f sec" msgstr "คำค้นใช้เวลา %01.4f วินาที" -#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:135 +#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:131 #: 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:471 msgid "Change" msgstr "เปลี่ยน" -#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:724 +#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:720 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:671 +#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:667 msgid "Print view (with full texts)" msgstr "" -#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:482 +#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:478 msgid "Link not found" msgstr "ไม่พบลิงก์" -#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1224 +#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1220 #: main.php:228 #, fuzzy msgid "Version information" msgstr "ข้อมูลล็อกอิน" -#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:423 +#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:419 msgid "Data home directory" msgstr "" -#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:424 +#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:420 msgid "The common part of the directory path for all InnoDB data files." msgstr "" -#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:422 +#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:418 #, fuzzy msgid "Data files" msgstr "เฉพาะข้อมูล" -#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:418 +#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:414 msgid "Autoextend increment" msgstr "" -#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:419 +#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:415 msgid "" " The increment size for extending the size of an autoextending tablespace " "when it becomes full." msgstr "" -#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:420 +#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:416 msgid "Buffer pool size" msgstr "" -#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:421 +#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:417 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." msgstr "" -#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:112 +#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:108 msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:426 +#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:422 #: server_status.php:306 msgid "InnoDB Status" msgstr "สถานะของ InnoDB" -#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:113 +#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:109 msgid "Buffer Pool Usage" msgstr "" -#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1114 +#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1110 #: server_databases.php:137 server_databases.php:305 server_status.php:414 #: server_status.php:475 server_status.php:496 tbl_printview.php:351 #: tbl_structure.php:697 msgid "Total" msgstr "รวม" -#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:425 +#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:421 msgid "pages" msgstr "" -#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:343 +#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:339 msgid "Free pages" msgstr "" -#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:259 +#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:255 msgid "Dirty pages" msgstr "" -#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:230 +#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:226 msgid "Pages containing data" msgstr "" -#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:598 +#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:594 #, fuzzy msgid "Pages to be flushed" msgstr "ล้างตาราง %s เรียบร้อยแล้ว" -#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:119 +#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:115 msgid "Busy pages" msgstr "" -#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:467 +#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:463 msgid "Latched pages" msgstr "" -#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:111 +#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:107 msgid "Buffer Pool Activity" msgstr "" -#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:731 +#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:727 msgid "Read requests" msgstr "" -#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1244 +#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1240 msgid "Write requests" msgstr "" -#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:115 +#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:111 msgid "Read misses" msgstr "" -#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:117 +#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:113 msgid "Write waits" msgstr "" -#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:114 +#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:110 msgid "Read misses in %" msgstr "" -#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:116 +#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:112 msgid "Write waits in %" msgstr "" -#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:522 +#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:518 msgid "Data pointer size" msgstr "" -#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:523 +#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:519 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." msgstr "" -#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:528 +#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:524 msgid "Automatic recovery mode" msgstr "" -#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:529 +#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:525 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." msgstr "" -#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:527 +#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:523 msgid "Maximum size for temporary sort files" msgstr "" -#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:526 +#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:522 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " "INFILE)." msgstr "" -#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:525 +#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:521 msgid "Maximum size for temporary files on index creation" msgstr "" -#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:524 +#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:520 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " "method." msgstr "" -#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:531 +#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:527 msgid "Repair threads" msgstr "" -#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:530 +#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:526 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." msgstr "" -#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:533 +#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:529 msgid "Sort buffer size" msgstr "" -#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:532 +#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:528 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." msgstr "" -#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:620 +#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:616 msgid "Index cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:619 +#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:615 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." msgstr "" -#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:630 +#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:626 msgid "Record cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:629 +#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:625 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " "to the handle data (.xtd) and row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:624 +#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:620 msgid "Log cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:623 +#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:619 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:628 +#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:624 msgid "Log file threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:627 +#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:623 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:634 +#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:630 msgid "Transaction buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:633 +#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:629 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." msgstr "" -#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:611 +#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:607 msgid "Checkpoint frequency" msgstr "" -#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:612 +#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:608 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." msgstr "" -#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:615 +#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:611 msgid "Data log threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:616 +#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:612 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -2659,48 +2669,48 @@ msgid "" "that can be stored in the database." msgstr "" -#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:618 +#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:614 msgid "Garbage threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:617 +#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:613 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." msgstr "" -#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:622 +#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:618 msgid "Log buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:621 +#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:617 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " "required to write a data log." msgstr "" -#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:613 +#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:609 msgid "Data file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:614 +#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:610 msgid "The grow size of the handle data (.xtd) files." msgstr "" -#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:632 +#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:628 msgid "Row file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:631 +#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:627 msgid "The grow size of the row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:626 +#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:622 msgid "Log file count" msgstr "" -#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:625 +#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:621 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -2710,19 +2720,19 @@ msgstr "" #: libraries/export/htmlword.php:132 libraries/export/odt.php:168 #: libraries/export/sql.php:881 libraries/export/texytext.php:130 -#: libraries/messages.inc.php:275 +#: libraries/messages.inc.php:271 msgid "Dumping data for table" msgstr "dump ตาราง" #: libraries/export/htmlword.php:185 libraries/export/odt.php:238 #: libraries/export/sql.php:785 libraries/export/texytext.php:177 -#: libraries/messages.inc.php:1086 +#: libraries/messages.inc.php:1082 msgid "Table structure for table" msgstr "โครงสร้างตาราง" #: libraries/export/latex.php:125 libraries/export/sql.php:232 #: libraries/export/xml.php:102 libraries/header_printview.inc.php:57 -#: libraries/messages.inc.php:381 libraries/replication_gui.lib.php:63 +#: libraries/messages.inc.php:377 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:170 libraries/replication_gui.lib.php:265 #: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325 #: server_privileges.php:692 server_privileges.php:695 @@ -2734,189 +2744,189 @@ msgstr "โฮสต์" #: libraries/export/latex.php:130 libraries/export/sql.php:233 #: libraries/export/xml.php:107 libraries/header_printview.inc.php:59 -#: libraries/messages.inc.php:354 +#: libraries/messages.inc.php:350 msgid "Generation Time" msgstr "เวลาในการสร้าง" #: libraries/export/latex.php:131 libraries/export/sql.php:235 -#: libraries/export/xml.php:108 libraries/messages.inc.php:864 main.php:186 +#: libraries/export/xml.php:108 libraries/messages.inc.php:860 main.php:186 msgid "Server version" msgstr "รุ่นของเซิร์ฟเวอร์" #: libraries/export/latex.php:132 libraries/export/sql.php:236 -#: libraries/export/xml.php:109 libraries/messages.inc.php:651 +#: libraries/export/xml.php:109 libraries/messages.inc.php:647 msgid "PHP Version" msgstr "รุ่นของ PHP" #: libraries/export/latex.php:201 libraries/export/sql.php:868 -#: libraries/messages.inc.php:226 server_databases.php:127 +#: libraries/messages.inc.php:222 server_databases.php:127 #: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317 #: tbl_structure.php:666 msgid "Data" msgstr "ข้อมูล" -#: libraries/export/odt.php:318 libraries/messages.inc.php:506 +#: libraries/export/odt.php:318 libraries/messages.inc.php:502 #: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "MIME-type" -#: libraries/export/sql.php:387 libraries/messages.inc.php:711 +#: libraries/export/sql.php:387 libraries/messages.inc.php:707 #, fuzzy msgid "Procedures" msgstr "โพรเซส" -#: libraries/export/sql.php:401 libraries/messages.inc.php:348 +#: libraries/export/sql.php:401 libraries/messages.inc.php:344 #, fuzzy msgid "Functions" msgstr "ฟังก์ชั่น" -#: libraries/export/sql.php:618 libraries/messages.inc.php:174 +#: libraries/export/sql.php:618 libraries/messages.inc.php:170 msgid "Constraints for dumped tables" msgstr "" -#: libraries/export/sql.php:627 libraries/messages.inc.php:175 +#: libraries/export/sql.php:627 libraries/messages.inc.php:171 msgid "Constraints for table" msgstr "" -#: libraries/export/sql.php:727 libraries/messages.inc.php:512 +#: libraries/export/sql.php:727 libraries/messages.inc.php:508 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/export/sql.php:739 libraries/messages.inc.php:743 +#: libraries/export/sql.php:739 libraries/messages.inc.php:739 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/export/sql.php:796 libraries/messages.inc.php:1178 +#: libraries/export/sql.php:796 libraries/messages.inc.php:1174 #: libraries/tbl_triggers.lib.php:19 msgid "Triggers" msgstr "" -#: libraries/export/sql.php:808 libraries/messages.inc.php:1046 +#: libraries/export/sql.php:808 libraries/messages.inc.php:1042 #, fuzzy msgid "Structure for view" msgstr "เฉพาะโครงสร้าง" -#: libraries/export/sql.php:817 libraries/messages.inc.php:1029 +#: libraries/export/sql.php:817 libraries/messages.inc.php:1025 msgid "Stand-in structure for view" msgstr "" #: libraries/footer.inc.php:184 libraries/footer.inc.php:195 -#: libraries/footer.inc.php:198 libraries/messages.inc.php:586 +#: libraries/footer.inc.php:198 libraries/messages.inc.php:582 msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/header.inc.php:115 libraries/messages.inc.php:542 +#: libraries/header.inc.php:115 libraries/messages.inc.php:538 #, fuzzy msgid "New table" msgstr "ไม่มีตาราง" #: libraries/header_printview.inc.php:50 libraries/header_printview.inc.php:55 -#: libraries/messages.inc.php:1024 +#: libraries/messages.inc.php:1020 msgid "SQL result" msgstr "ผลลัพธ์ SQL" -#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:350 +#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:346 msgid "Generated by" msgstr "สร้างโดย" #: libraries/header_printview.inc.php:63 libraries/import.lib.php:145 -#: libraries/messages.inc.php:820 navigation.php:652 navigation.php:674 +#: libraries/messages.inc.php:816 navigation.php:652 navigation.php:674 #: server_databases.php:122 tbl_printview.php:394 tbl_structure.php:366 #: tbl_structure.php:778 msgid "Rows" msgstr "แถว" -#: libraries/import.lib.php:150 libraries/messages.inc.php:285 sql.php:520 +#: libraries/import.lib.php:150 libraries/messages.inc.php:281 sql.php:520 #: tbl_change.php:181 tbl_get_field.php:35 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL คืนผลลัพธ์ว่างเปล่ากลับมา (null / 0 แถว)." -#: libraries/import.lib.php:1078 libraries/messages.inc.php:399 +#: libraries/import.lib.php:1078 libraries/messages.inc.php:395 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1079 libraries/messages.inc.php:400 +#: libraries/import.lib.php:1079 libraries/messages.inc.php:396 msgid "View a structure`s contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1080 libraries/messages.inc.php:401 +#: libraries/import.lib.php:1080 libraries/messages.inc.php:397 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1081 libraries/messages.inc.php:402 +#: libraries/import.lib.php:1081 libraries/messages.inc.php:398 msgid "Edit its structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1084 libraries/messages.inc.php:362 +#: libraries/import.lib.php:1084 libraries/messages.inc.php:358 #, fuzzy msgid "Go to database" msgstr "ไม่มีฐานข้อมูล" #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:869 +#: libraries/messages.inc.php:865 msgid "settings" msgstr "" -#: libraries/import.lib.php:1106 libraries/messages.inc.php:363 +#: libraries/import.lib.php:1106 libraries/messages.inc.php:359 msgid "Go to table" msgstr "" -#: libraries/import.lib.php:1109 libraries/messages.inc.php:1047 +#: libraries/import.lib.php:1109 libraries/messages.inc.php:1043 #, fuzzy msgid "structure" msgstr "โครงสร้าง" -#: libraries/import.lib.php:1115 libraries/messages.inc.php:364 +#: libraries/import.lib.php:1115 libraries/messages.inc.php:360 msgid "Go to view" msgstr "" #: libraries/import/csv.php:58 libraries/import/csv.php:70 #: libraries/import/csv.php:74 libraries/import/csv.php:78 -#: libraries/messages.inc.php:442 +#: libraries/messages.inc.php:438 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "" -#: libraries/import/csv.php:59 libraries/messages.inc.php:323 +#: libraries/import/csv.php:59 libraries/messages.inc.php:319 msgid "Fields terminated by" msgstr "จบฟิลด์ด้วย" -#: libraries/import/csv.php:71 libraries/messages.inc.php:320 +#: libraries/import/csv.php:71 libraries/messages.inc.php:316 msgid "Fields enclosed by" msgstr "คร่อมฟิลด์ด้วย" -#: libraries/import/csv.php:75 libraries/messages.inc.php:321 +#: libraries/import/csv.php:75 libraries/messages.inc.php:317 msgid "Fields escaped by" msgstr "เครื่องหมายสำหรับ escape char" -#: libraries/import/csv.php:79 libraries/messages.inc.php:481 +#: libraries/import/csv.php:79 libraries/messages.inc.php:477 msgid "Lines terminated by" msgstr "จบแถวด้วย" -#: libraries/import/csv.php:119 libraries/messages.inc.php:439 +#: libraries/import/csv.php:119 libraries/messages.inc.php:435 #, php-format msgid "Invalid column (%s) specified!" msgstr "" #: libraries/import/csv.php:177 libraries/import/csv.php:424 -#: libraries/messages.inc.php:441 +#: libraries/messages.inc.php:437 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/import/csv.php:312 libraries/messages.inc.php:440 +#: libraries/import/csv.php:312 libraries/messages.inc.php:436 #, php-format msgid "Invalid field count in CSV input on line %d." msgstr "" -#: libraries/import/ldi.php:55 libraries/messages.inc.php:446 +#: libraries/import/ldi.php:55 libraries/messages.inc.php:442 msgid "This plugin does not support compressed imports!" msgstr "" #: libraries/import/xml.php:74 libraries/import/xml.php:130 -#: libraries/messages.inc.php:1247 +#: libraries/messages.inc.php:1243 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -2945,580 +2955,570 @@ msgstr "" msgid "ltr" msgstr "ltr" -#. l10n: Thousands separator -#: libraries/messages.inc.php:21 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: libraries/messages.inc.php:23 -msgid "." -msgstr "." - -#: libraries/messages.inc.php:25 server_status.php:461 +#: libraries/messages.inc.php:21 server_status.php:461 msgid "Aborted" msgstr "ยกเลิก" -#: libraries/messages.inc.php:28 main.php:68 +#: libraries/messages.inc.php:24 main.php:68 #, fuzzy msgid "Actions" msgstr "กระทำการ" -#: libraries/messages.inc.php:34 libraries/tbl_properties.inc.php:780 +#: libraries/messages.inc.php:30 libraries/tbl_properties.inc.php:780 #: tbl_structure.php:543 #, fuzzy, php-format msgid "Add %s field(s)" msgstr "เพิ่มฟิลด์ใหม่" -#: libraries/messages.inc.php:35 +#: libraries/messages.inc.php:31 msgid "Add custom comment into header (\\n splits lines)" msgstr "" -#: libraries/messages.inc.php:36 +#: libraries/messages.inc.php:32 msgid "Add into comments" msgstr "" -#: libraries/messages.inc.php:37 tbl_structure.php:541 +#: libraries/messages.inc.php:33 tbl_structure.php:541 msgid "Add new field" msgstr "เพิ่มฟิลด์ใหม่" -#: libraries/messages.inc.php:38 server_privileges.php:1886 +#: libraries/messages.inc.php:34 server_privileges.php:1886 msgid "Add privileges on the following database" msgstr "เพิ่มสิทธิของฐานข้อมูลต่อไปนี้" -#: libraries/messages.inc.php:39 server_privileges.php:1907 +#: libraries/messages.inc.php:35 server_privileges.php:1907 msgid "Add privileges on the following table" msgstr "เพิ่มสิทธิของตารางต่อไปนี้" -#: libraries/messages.inc.php:40 tbl_select.php:288 +#: libraries/messages.inc.php:36 tbl_select.php:288 msgid "Add search conditions (body of the \"where\" clause):" msgstr "เพิ่มเงื่อนไขในการค้นหา:" -#: libraries/messages.inc.php:41 tbl_indexes.php:251 +#: libraries/messages.inc.php:37 tbl_indexes.php:251 #, php-format msgid "Add to index  %s column(s)" msgstr "เพิ่มดัชนีคอลัมน์ %s" -#: libraries/messages.inc.php:42 server_privileges.php:1570 +#: libraries/messages.inc.php:38 server_privileges.php:1570 #: server_privileges.php:1594 server_privileges.php:1988 #: server_privileges.php:2177 msgid "Add a new User" msgstr "เพิ่มผู้ใช้ใหม่" -#: libraries/messages.inc.php:43 server_privileges.php:931 +#: libraries/messages.inc.php:39 server_privileges.php:931 msgid "You have added a new user." msgstr "เพิ่มผู้ใช้ใหม่เรียบร้อยแล้ว" -#: libraries/messages.inc.php:44 server_privileges.php:571 +#: libraries/messages.inc.php:40 server_privileges.php:571 msgid "Administration" msgstr "การดูแลระบบ" -#: libraries/messages.inc.php:45 tbl_structure.php:557 +#: libraries/messages.inc.php:41 tbl_structure.php:557 #, php-format msgid "After %s" msgstr "หลัง %s" -#: libraries/messages.inc.php:46 tbl_change.php:1147 +#: libraries/messages.inc.php:42 tbl_change.php:1147 msgid "Go back to previous page" msgstr "ส่งกลับ" -#: libraries/messages.inc.php:47 tbl_change.php:1148 +#: libraries/messages.inc.php:43 tbl_change.php:1148 msgid "Insert another new row" msgstr "แทรกระเบียนใหม่" -#: libraries/messages.inc.php:48 tbl_change.php:1160 +#: libraries/messages.inc.php:44 tbl_change.php:1160 msgid "Edit next row" msgstr "" -#: libraries/messages.inc.php:49 tbl_change.php:1152 +#: libraries/messages.inc.php:45 tbl_change.php:1152 #, fuzzy msgid "Go back to this page" msgstr "ส่งกลับ" -#: libraries/messages.inc.php:50 querywindow.php:115 +#: libraries/messages.inc.php:46 querywindow.php:115 msgid "All" msgstr "ทั้งหมด" -#: libraries/messages.inc.php:53 tbl_operations.php:249 +#: libraries/messages.inc.php:49 tbl_operations.php:249 msgid "Alter table order by" msgstr "เรียงค่าในตารางตาม" -#: libraries/messages.inc.php:54 tbl_operations.php:660 +#: libraries/messages.inc.php:50 tbl_operations.php:660 msgid "Analyze" msgstr "" -#: libraries/messages.inc.php:57 +#: libraries/messages.inc.php:53 #, fuzzy msgid "and" msgstr "และ" -#: libraries/messages.inc.php:59 pmd_general.php:87 +#: libraries/messages.inc.php:55 pmd_general.php:87 msgid "Angular links" msgstr "" -#: libraries/messages.inc.php:60 tbl_structure.php:401 tbl_structure.php:415 +#: libraries/messages.inc.php:56 tbl_structure.php:401 tbl_structure.php:415 #: tbl_structure.php:429 #, php-format msgid "An index has been added on %s" msgstr "ได้เพิ่มดัชนีแล้วใน %s" -#: libraries/messages.inc.php:61 server_privileges.php:1521 +#: libraries/messages.inc.php:57 server_privileges.php:1521 #: server_privileges.php:2123 msgid "Any" msgstr "ใดๆ" -#: libraries/messages.inc.php:62 libraries/replication_gui.lib.php:298 +#: libraries/messages.inc.php:58 libraries/replication_gui.lib.php:298 #: server_privileges.php:725 msgid "Any host" msgstr "โฮสต์ใดๆ" -#: libraries/messages.inc.php:63 libraries/replication_gui.lib.php:250 +#: libraries/messages.inc.php:59 libraries/replication_gui.lib.php:250 #: server_privileges.php:677 msgid "Any user" msgstr "ผู้ใช้ใดๆ" -#: libraries/messages.inc.php:64 server_synchronize.php:449 +#: libraries/messages.inc.php:60 server_synchronize.php:449 #: server_synchronize.php:894 msgid "Apply Selected Changes" msgstr "" -#: libraries/messages.inc.php:66 tbl_structure.php:386 +#: libraries/messages.inc.php:62 tbl_structure.php:386 #, php-format msgid "A primary key has been added on %s" msgstr "ได้เพิ่มไพรมารีคีย์แล้วใน %s" -#: libraries/messages.inc.php:67 libraries/mysql_charsets.lib.php:368 +#: libraries/messages.inc.php:63 libraries/mysql_charsets.lib.php:368 msgid "Arabic" msgstr "อารบิค" -#: libraries/messages.inc.php:68 libraries/mysql_charsets.lib.php:359 +#: libraries/messages.inc.php:64 libraries/mysql_charsets.lib.php:359 msgid "Armenian" msgstr "อาร์เมเนีย" -#: libraries/messages.inc.php:70 libraries/tbl_properties.inc.php:394 +#: libraries/messages.inc.php:66 libraries/tbl_properties.inc.php:394 msgid "As defined:" msgstr "" -#: libraries/messages.inc.php:71 tbl_structure.php:556 +#: libraries/messages.inc.php:67 tbl_structure.php:556 msgid "At Beginning of Table" msgstr "ที่จุดเริ่มต้นของตาราง" -#: libraries/messages.inc.php:72 tbl_structure.php:555 +#: libraries/messages.inc.php:68 tbl_structure.php:555 msgid "At End of Table" msgstr "ที่จุดสุดท้ายของตาราง" -#: libraries/messages.inc.php:73 libraries/tbl_properties.inc.php:108 +#: libraries/messages.inc.php:69 libraries/tbl_properties.inc.php:108 #: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:144 #: tbl_structure.php:180 msgid "Attributes" msgstr "แอตทริบิวต์" -#: libraries/messages.inc.php:74 pdf_pages.php:303 pdf_pages.php:306 +#: libraries/messages.inc.php:70 pdf_pages.php:303 pdf_pages.php:306 msgid "Automatic layout" msgstr "จัดตำแหน่งอัตโนมัติ" -#: libraries/messages.inc.php:77 libraries/mysql_charsets.lib.php:354 +#: libraries/messages.inc.php:73 libraries/mysql_charsets.lib.php:354 msgid "Baltic" msgstr "บอลติก" -#: libraries/messages.inc.php:78 libraries/sqlparser.lib.php:175 +#: libraries/messages.inc.php:74 libraries/sqlparser.lib.php:175 msgid "BEGIN CUT" msgstr "เริ่มจุดตัด" -#: libraries/messages.inc.php:79 libraries/sqlparser.lib.php:179 +#: libraries/messages.inc.php:75 libraries/sqlparser.lib.php:179 msgid "BEGIN RAW" msgstr "เริ่มข้อมูลดิบ" -#: libraries/messages.inc.php:80 libraries/mysql_charsets.lib.php:201 +#: libraries/messages.inc.php:76 libraries/mysql_charsets.lib.php:201 #: libraries/mysql_charsets.lib.php:402 tbl_change.php:518 msgid "Binary" msgstr " ข้อมูลไบนารี " -#: libraries/messages.inc.php:81 tbl_change.php:894 +#: libraries/messages.inc.php:77 tbl_change.php:894 msgid "Binary - do not edit" msgstr " ข้อมูลไบนารี - ห้ามแก้ไข " -#: libraries/messages.inc.php:82 libraries/server_links.inc.php:76 +#: libraries/messages.inc.php:78 libraries/server_links.inc.php:76 #: server_binlog.php:110 server_status.php:253 test/theme.php:121 #, fuzzy msgid "Binary log" msgstr " ข้อมูลไบนารี " -#: libraries/messages.inc.php:83 server_binlog.php:217 +#: libraries/messages.inc.php:79 server_binlog.php:217 #, fuzzy msgid "Event type" msgstr "ชนิดคำค้น" -#: libraries/messages.inc.php:84 server_binlog.php:220 +#: libraries/messages.inc.php:80 server_binlog.php:220 #, fuzzy msgid "Information" msgstr "ข้อมูลล็อกอิน" -#: libraries/messages.inc.php:85 server_binlog.php:215 +#: libraries/messages.inc.php:81 server_binlog.php:215 msgid "Log name" msgstr "" -#: libraries/messages.inc.php:86 server_binlog.php:219 +#: libraries/messages.inc.php:82 server_binlog.php:219 msgid "Original position" msgstr "" -#: libraries/messages.inc.php:87 server_binlog.php:216 +#: libraries/messages.inc.php:83 server_binlog.php:216 msgid "Position" msgstr "" -#: libraries/messages.inc.php:88 libraries/replication_gui.lib.php:169 +#: libraries/messages.inc.php:84 libraries/replication_gui.lib.php:169 #: server_binlog.php:218 #, fuzzy msgid "Server ID" msgstr "เซิร์ฟเวอร์" -#: libraries/messages.inc.php:92 +#: libraries/messages.inc.php:88 #, fuzzy msgctxt "$strBLOBRepositoryDisabled" msgid "Disabled" msgstr "ระงับการใช้อยู่" -#: libraries/messages.inc.php:95 +#: libraries/messages.inc.php:91 #, fuzzy msgctxt "$strBLOBRepositoryEnabled" msgid "Enabled" msgstr "เปิดใช้อยู่" -#: libraries/messages.inc.php:97 tbl_change.php:888 +#: libraries/messages.inc.php:93 tbl_change.php:888 msgid "Remove BLOB Repository Reference" msgstr "" -#: libraries/messages.inc.php:98 +#: libraries/messages.inc.php:94 #, fuzzy msgctxt "$strBLOBRepositoryRepair" msgid "Repair" msgstr "ซ่อมแซมตาราง" -#: libraries/messages.inc.php:99 tbl_change.php:987 +#: libraries/messages.inc.php:95 tbl_change.php:987 msgid "Upload to BLOB repository" msgstr "" -#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:359 +#: libraries/messages.inc.php:96 libraries/sql_query_form.lib.php:359 #: sql.php:677 msgid "Let every user access this bookmark" msgstr "" -#: libraries/messages.inc.php:103 sql.php:671 +#: libraries/messages.inc.php:99 sql.php:671 msgid "Label" msgstr "ป้ายชื่อ" -#: libraries/messages.inc.php:104 libraries/sql_query_form.lib.php:433 +#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:433 msgid "Bookmarked SQL query" msgstr "คำค้นนี้ถูกจดไว้แล้ว" -#: libraries/messages.inc.php:105 libraries/sql_query_form.lib.php:365 +#: libraries/messages.inc.php:101 libraries/sql_query_form.lib.php:365 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/messages.inc.php:106 libraries/sql_query_form.lib.php:352 +#: libraries/messages.inc.php:102 libraries/sql_query_form.lib.php:352 #: sql.php:665 sql.php:666 sql.php:683 msgid "Bookmark this SQL query" msgstr "จดคำค้นนี้ไว้" -#: libraries/messages.inc.php:107 libraries/sql_query_form.lib.php:466 +#: libraries/messages.inc.php:103 libraries/sql_query_form.lib.php:466 msgid "View only" msgstr "ดูอย่างเดียว" -#: libraries/messages.inc.php:109 tbl_structure.php:161 +#: libraries/messages.inc.php:105 tbl_structure.php:161 msgid "Browse distinct values" msgstr "" -#: libraries/messages.inc.php:110 tbl_change.php:252 tbl_select.php:27 +#: libraries/messages.inc.php:106 tbl_change.php:252 tbl_select.php:27 #: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34 msgid "Browse foreign values" msgstr "" -#: libraries/messages.inc.php:118 libraries/mysql_charsets.lib.php:213 +#: libraries/messages.inc.php:114 libraries/mysql_charsets.lib.php:213 msgid "Bulgarian" msgstr "บัลเกเรีย" -#: libraries/messages.inc.php:120 +#: libraries/messages.inc.php:116 msgid "\"bzipped\"" msgstr "\"bzipped\"" -#: libraries/messages.inc.php:122 +#: libraries/messages.inc.php:118 msgid "Calendar" msgstr "ปฏิทิน" -#: libraries/messages.inc.php:129 tbl_indexes.php:75 +#: libraries/messages.inc.php:125 tbl_indexes.php:75 msgid "Can't rename index to PRIMARY!" msgstr "เปลี่ยนชื่อดัชนีเป็น PRIMARY ไม่ได้!" -#: libraries/messages.inc.php:132 libraries/mysql_charsets.lib.php:223 +#: libraries/messages.inc.php:128 libraries/mysql_charsets.lib.php:223 #: libraries/mysql_charsets.lib.php:409 msgid "case-insensitive" msgstr "ไม่สนใจตัวเล็กตัวใหญ่" -#: libraries/messages.inc.php:133 libraries/mysql_charsets.lib.php:226 +#: libraries/messages.inc.php:129 libraries/mysql_charsets.lib.php:226 #: libraries/mysql_charsets.lib.php:411 msgid "case-sensitive" msgstr "สนใจตัวเล็กตัวใหญ่" -#: libraries/messages.inc.php:134 libraries/mysql_charsets.lib.php:332 +#: libraries/messages.inc.php:130 libraries/mysql_charsets.lib.php:332 msgid "Central European" msgstr "ยุโรปกลาง" -#: libraries/messages.inc.php:136 server_privileges.php:1969 +#: libraries/messages.inc.php:132 server_privileges.php:1969 msgid "... keep the old one." msgstr "... เก็บของเก่าไว้." -#: libraries/messages.inc.php:137 server_privileges.php:1967 +#: libraries/messages.inc.php:133 server_privileges.php:1967 msgid "Create a new user with the same privileges and ..." msgstr "สร้างผู้ใช้ใหม่ ให้มีสิทธิเหมือนกัน และ ..." -#: libraries/messages.inc.php:138 server_privileges.php:1972 +#: libraries/messages.inc.php:134 server_privileges.php:1972 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr " ... ลบของเก่าจากตารางผู้ใช้ แล้วเรียกใช้รายการสิทธิ์ใหม่หลังจากนั้น." -#: libraries/messages.inc.php:139 server_privileges.php:1970 +#: libraries/messages.inc.php:135 server_privileges.php:1970 msgid " ... delete the old one from the user tables." msgstr " ... ลบของเก่าทิ้งไปจากตารางผู้ใช้." -#: libraries/messages.inc.php:140 server_privileges.php:1971 +#: libraries/messages.inc.php:136 server_privileges.php:1971 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr " ... เรียกคืนสิทธิ์ทั้งหมดจากเดิม แล้วลบมันหลังจากนั้น." -#: libraries/messages.inc.php:141 server_privileges.php:1964 +#: libraries/messages.inc.php:137 server_privileges.php:1964 msgid "Change Login Information / Copy User" msgstr "เปลี่ยนข้อมูลล็อกอิน / ทำสำเนาผู้ใช้" -#: libraries/messages.inc.php:144 libraries/mysql_charsets.lib.php:107 +#: libraries/messages.inc.php:140 libraries/mysql_charsets.lib.php:107 msgid "Charset" msgstr "ชุดตัวอักษร" -#: libraries/messages.inc.php:146 server_collations.php:40 +#: libraries/messages.inc.php:142 server_collations.php:40 msgid "Character Sets and Collations" msgstr "ชุดตัวอักษร และการเรียงลำดับ" -#: libraries/messages.inc.php:147 libraries/server_links.inc.php:57 +#: libraries/messages.inc.php:143 libraries/server_links.inc.php:57 #: test/theme.php:109 msgid "Charsets" msgstr "ชุดตัวอักษร" -#: libraries/messages.inc.php:149 tbl_operations.php:661 +#: libraries/messages.inc.php:145 tbl_operations.php:661 #, fuzzy msgid "Check" msgstr "เช็ค" -#: libraries/messages.inc.php:151 server_databases.php:293 +#: libraries/messages.inc.php:147 server_databases.php:293 #: server_databases.php:294 msgid "Check Privileges" msgstr "ตรวจสอบสิทธิ" -#: libraries/messages.inc.php:152 server_databases.php:289 +#: libraries/messages.inc.php:148 server_databases.php:289 #, php-format msgid "Check privileges for database "%s"." msgstr "ตรวจสอบสิทธิสำหรับฐานข้อมูล "%s"." -#: libraries/messages.inc.php:154 pdf_pages.php:261 +#: libraries/messages.inc.php:150 pdf_pages.php:261 msgid "Please choose a page to edit" msgstr "เลือกหน้าที่ต้องการแก้ไข" -#: libraries/messages.inc.php:157 +#: libraries/messages.inc.php:153 msgid "Displaying Column Comments" msgstr "แสดงหมายเหตุของคอลัมน์" -#: libraries/messages.inc.php:159 pdf_pages.php:483 view_create.php:148 +#: libraries/messages.inc.php:155 pdf_pages.php:483 view_create.php:148 msgid "Column names" msgstr "ชื่อคอลัมน์" -#: libraries/messages.inc.php:160 server_privileges.php:1685 +#: libraries/messages.inc.php:156 server_privileges.php:1685 msgid "Column-specific privileges" msgstr "สิทธิเฉพาะคอลัมน์" -#: libraries/messages.inc.php:164 +#: libraries/messages.inc.php:160 msgid "MySQL 4.0 compatible" msgstr "" -#: libraries/messages.inc.php:165 +#: libraries/messages.inc.php:161 msgid "Complete inserts" msgstr "คำสั่ง INSERT เต็มรูปแบบ" -#: libraries/messages.inc.php:168 +#: libraries/messages.inc.php:164 #, php-format msgid "Could not load default configuration from: \"%1$s\"" msgstr "" -#: libraries/messages.inc.php:169 main.php:306 +#: libraries/messages.inc.php:165 main.php:306 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: libraries/messages.inc.php:171 pdf_schema.php:672 +#: libraries/messages.inc.php:167 pdf_schema.php:672 #, php-format msgid "Please configure the coordinates for table %s" msgstr "กรุณาตั้งค่าโคออร์ดิเนตของตาราง %s" -#: libraries/messages.inc.php:173 server_status.php:433 +#: libraries/messages.inc.php:169 server_status.php:433 msgid "Connections" msgstr "การเชื่อมต่อ" -#: libraries/messages.inc.php:179 tbl_operations.php:509 +#: libraries/messages.inc.php:175 tbl_operations.php:509 msgid "Copy table to (database.table):" msgstr "คัดลอกตารางไปยัง (ฐานข้อมูล.ตาราง):" -#: libraries/messages.inc.php:180 tbl_move_copy.php:58 +#: libraries/messages.inc.php:176 tbl_move_copy.php:58 #, php-format msgid "Table %s has been copied to %s." msgstr "คัดลอกตาราง %s ไปเก็บในชื่อ %s เรียบร้อยแล้ว." -#: libraries/messages.inc.php:181 tbl_move_copy.php:48 +#: libraries/messages.inc.php:177 tbl_move_copy.php:48 msgid "Can't copy table to same one!" msgstr "คัดลอกตารางไปที่เดิมไม่ได้" -#: libraries/messages.inc.php:182 server_synchronize.php:94 +#: libraries/messages.inc.php:178 server_synchronize.php:94 msgid "Could not connect to the source" msgstr "" -#: libraries/messages.inc.php:183 server_synchronize.php:97 +#: libraries/messages.inc.php:179 server_synchronize.php:97 msgid "Could not connect to the target" msgstr "" -#: libraries/messages.inc.php:184 server_processlist.php:24 +#: libraries/messages.inc.php:180 server_processlist.php:24 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin ไม่สามารถฆ่าเธรด %s. บางทีมันอาจจะถูกปิดไปแล้วก็ได้." -#: libraries/messages.inc.php:187 +#: libraries/messages.inc.php:183 #, php-format msgid "Create an index on %s columns" msgstr "สร้างดัชนีโดยคอลัมน์ %s" -#: libraries/messages.inc.php:188 tbl_indexes.php:160 +#: libraries/messages.inc.php:184 tbl_indexes.php:160 msgid "Create a new index" msgstr "สร้างดัชนีใหม่" -#: libraries/messages.inc.php:191 pdf_pages.php:297 pmd_pdf.php:114 +#: libraries/messages.inc.php:187 pdf_pages.php:297 pmd_pdf.php:114 msgid "Create a page" msgstr "เริ่มหน้าใหม่" -#: libraries/messages.inc.php:192 +#: libraries/messages.inc.php:188 msgid "Creation of PDFs" msgstr "การสร้างเอกสาร PDF" -#: libraries/messages.inc.php:193 pmd_general.php:74 pmd_general.php:306 +#: libraries/messages.inc.php:189 pmd_general.php:74 pmd_general.php:306 msgid "Create relation" msgstr "" -#: libraries/messages.inc.php:194 pmd_general.php:71 +#: libraries/messages.inc.php:190 pmd_general.php:71 #: server_synchronize.php:429 server_synchronize.php:872 #, fuzzy msgid "Create table" msgstr "เริ่มหน้าใหม่" -#: libraries/messages.inc.php:195 +#: libraries/messages.inc.php:191 #, fuzzy msgctxt "$strCreateTableShort" msgid "Create table" msgstr "เริ่มหน้าใหม่" -#: libraries/messages.inc.php:196 server_privileges.php:1994 +#: libraries/messages.inc.php:192 server_privileges.php:1994 msgid "Database for user" msgstr "" -#: libraries/messages.inc.php:197 server_privileges.php:1999 +#: libraries/messages.inc.php:193 server_privileges.php:1999 msgid "Create database with same name and grant all privileges" msgstr "" -#: libraries/messages.inc.php:198 +#: libraries/messages.inc.php:194 #, fuzzy msgctxt "$strCreateUserDatabaseNone" msgid "None" msgstr "ไม่มี" -#: libraries/messages.inc.php:199 server_privileges.php:2003 +#: libraries/messages.inc.php:195 server_privileges.php:2003 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "ตรวจสอบสิทธิสำหรับฐานข้อมูล "%s"." -#: libraries/messages.inc.php:200 server_privileges.php:2000 +#: libraries/messages.inc.php:196 server_privileges.php:2000 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: libraries/messages.inc.php:201 +#: libraries/messages.inc.php:197 msgid "Creation/Update/Check dates" msgstr "" -#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:229 +#: libraries/messages.inc.php:199 libraries/mysql_charsets.lib.php:229 msgid "Croatian" msgstr "โครเอเชีย" -#: libraries/messages.inc.php:204 +#: libraries/messages.inc.php:200 msgid "CSV" msgstr "ข้อมูล CSV (คั่นด้วยเครื่องหมายลูกน้ำ \",\")" -#: libraries/messages.inc.php:205 libraries/server_synchronize.lib.php:1343 +#: libraries/messages.inc.php:201 libraries/server_synchronize.lib.php:1343 #: libraries/server_synchronize.lib.php:1369 msgid "Current server" msgstr "" -#: libraries/messages.inc.php:206 main.php:159 +#: libraries/messages.inc.php:202 main.php:159 msgid "Custom color" msgstr "" -#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:365 +#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:365 msgid "Cyrillic" msgstr "ซิริลิค" -#: libraries/messages.inc.php:208 libraries/mysql_charsets.lib.php:232 +#: libraries/messages.inc.php:204 libraries/mysql_charsets.lib.php:232 msgid "Czech" msgstr "เช็ค" -#: libraries/messages.inc.php:209 libraries/mysql_charsets.lib.php:383 +#: libraries/messages.inc.php:205 libraries/mysql_charsets.lib.php:383 msgid "Czech-Slovak" msgstr "เช็ค-สโลวัก" -#: libraries/messages.inc.php:211 libraries/mysql_charsets.lib.php:235 +#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:235 msgid "Danish" msgstr "เดนมาร์ก" -#: libraries/messages.inc.php:214 +#: libraries/messages.inc.php:210 msgid "Database export options" msgstr "" -#: libraries/messages.inc.php:217 server_synchronize.php:122 +#: libraries/messages.inc.php:213 server_synchronize.php:122 #: server_synchronize.php:125 tbl_create.php:82 tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "" -#: libraries/messages.inc.php:219 server_databases.php:63 +#: libraries/messages.inc.php:215 server_databases.php:63 #, php-format msgid "%s databases have been dropped successfully." msgstr "%s ฐานข้อมูลได้ถูกทิ้งไปเรียบร้อยแล้ว." -#: libraries/messages.inc.php:220 libraries/server_synchronize.lib.php:1341 +#: libraries/messages.inc.php:216 libraries/server_synchronize.lib.php:1341 #: server_synchronize.php:1110 #, fuzzy msgid "Source database" msgstr "ค้นหาในฐานข้อมูล" -#: libraries/messages.inc.php:221 server_databases.php:88 +#: libraries/messages.inc.php:217 server_databases.php:88 msgid "Databases statistics" msgstr "สถิติฐานข้อมูล" -#: libraries/messages.inc.php:222 server_databases.php:362 +#: libraries/messages.inc.php:218 server_databases.php:362 #: server_databases.php:363 msgid "Disable Statistics" msgstr "ยกเลิกการเก็บสถิติ" -#: libraries/messages.inc.php:223 server_databases.php:358 +#: libraries/messages.inc.php:219 server_databases.php:358 #: server_databases.php:359 msgid "Enable Statistics" msgstr "ให้มีการเก็บสถิติ" -#: libraries/messages.inc.php:224 server_databases.php:366 +#: libraries/messages.inc.php:220 server_databases.php:366 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -3526,212 +3526,212 @@ msgstr "" "โปรดทราบ: การเปิดใช้การเก็บสถิติของฐานข้อมูล อาจจะทำให้มีปริมาณการถ่ายโอนข้อมูลจำนวนมาก " "ระหว่างเว็บเซิร์ฟเวอร์ และเซิร์ฟเวอร์ MySQL." -#: libraries/messages.inc.php:225 libraries/server_synchronize.lib.php:1367 +#: libraries/messages.inc.php:221 libraries/server_synchronize.lib.php:1367 #: server_synchronize.php:1112 #, fuzzy msgid "Target database" msgstr "ค้นหาในฐานข้อมูล" -#: libraries/messages.inc.php:228 server_synchronize.php:425 +#: libraries/messages.inc.php:224 server_synchronize.php:425 #: server_synchronize.php:868 msgid "Data Difference" msgstr "" -#: libraries/messages.inc.php:231 server_synchronize.php:272 +#: libraries/messages.inc.php:227 server_synchronize.php:272 msgid "Data Synchronization" msgstr "" -#: libraries/messages.inc.php:235 server_privileges.php:526 +#: libraries/messages.inc.php:231 server_privileges.php:526 #: server_privileges.php:1679 msgid "Database-specific privileges" msgstr "สิทธิเจาะจงเฉพาะฐานข้อมูล" -#: libraries/messages.inc.php:237 server_privileges.php:2136 +#: libraries/messages.inc.php:233 server_privileges.php:2136 msgid "database-specific" msgstr "เฉพาะฐานข้อมูล" -#: libraries/messages.inc.php:240 libraries/tbl_properties.inc.php:106 +#: libraries/messages.inc.php:236 libraries/tbl_properties.inc.php:106 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" msgstr "" -#: libraries/messages.inc.php:241 tbl_operations.php:589 +#: libraries/messages.inc.php:237 tbl_operations.php:589 msgid "Defragment table" msgstr "จัดระเบียบตาราง" -#: libraries/messages.inc.php:242 +#: libraries/messages.inc.php:238 msgid "Use delayed inserts" msgstr "" -#: libraries/messages.inc.php:245 server_privileges.php:1243 +#: libraries/messages.inc.php:241 server_privileges.php:1243 msgid "No users selected for deleting!" msgstr "" -#: libraries/messages.inc.php:246 pmd_general.php:372 +#: libraries/messages.inc.php:242 pmd_general.php:372 msgid "Delete relation" msgstr "" -#: libraries/messages.inc.php:248 server_privileges.php:1232 +#: libraries/messages.inc.php:244 server_privileges.php:1232 #, php-format msgid "Deleting %s" msgstr "กำลังลบ %s" -#: libraries/messages.inc.php:249 libraries/sql_query_form.lib.php:388 +#: libraries/messages.inc.php:245 libraries/sql_query_form.lib.php:388 msgid "Delimiter" msgstr "" -#: libraries/messages.inc.php:250 pdf_pages.php:506 +#: libraries/messages.inc.php:246 pdf_pages.php:506 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" msgstr "" -#: libraries/messages.inc.php:254 pmd_help.php:29 +#: libraries/messages.inc.php:250 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." msgstr "" -#: libraries/messages.inc.php:256 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:252 libraries/mysql_charsets.lib.php:247 msgid "dictionary" msgstr "พจนานุกรม" -#: libraries/messages.inc.php:257 libraries/server_synchronize.lib.php:1348 +#: libraries/messages.inc.php:253 libraries/server_synchronize.lib.php:1348 msgid "Difference" msgstr "" -#: libraries/messages.inc.php:258 pmd_general.php:87 +#: libraries/messages.inc.php:254 pmd_general.php:87 msgid "Direct links" msgstr "" -#: libraries/messages.inc.php:261 +#: libraries/messages.inc.php:257 msgid "Disable foreign key checks" msgstr "" -#: libraries/messages.inc.php:262 +#: libraries/messages.inc.php:258 msgid "Display Features" msgstr "ความสามารถด้านการแสดงผล" -#: libraries/messages.inc.php:263 tbl_select.php:301 +#: libraries/messages.inc.php:259 tbl_select.php:301 msgid "Display order:" msgstr "ลำดับการแสดง:" -#: libraries/messages.inc.php:265 tbl_select.php:132 +#: libraries/messages.inc.php:261 tbl_select.php:132 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "ทำ \"คำค้นจากตัวอย่าง\" (wildcard: \"%\")" -#: libraries/messages.inc.php:266 +#: libraries/messages.inc.php:262 msgid "DocSQL" msgstr "" -#: libraries/messages.inc.php:268 +#: libraries/messages.inc.php:264 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/messages.inc.php:273 server_privileges.php:1579 +#: libraries/messages.inc.php:269 server_privileges.php:1579 #: server_privileges.php:1580 server_privileges.php:1581 msgid "Drop the databases that have the same names as the users." msgstr "โยนฐานข้อมูลที่มีชื่อเดียวกับผู้ใช้ทิ้ง." -#: libraries/messages.inc.php:278 tbl_printview.php:382 tbl_structure.php:743 +#: libraries/messages.inc.php:274 tbl_printview.php:382 tbl_structure.php:743 msgid "dynamic" msgstr "ไม่คงที่" -#: libraries/messages.inc.php:282 server_privileges.php:1324 +#: libraries/messages.inc.php:278 server_privileges.php:1324 #: server_privileges.php:1610 msgid "Edit Privileges" msgstr "แก้ไขสิทธิ" -#: libraries/messages.inc.php:283 tbl_printview.php:341 tbl_structure.php:688 +#: libraries/messages.inc.php:279 tbl_printview.php:341 tbl_structure.php:688 msgid "Effective" msgstr "มีผล" -#: libraries/messages.inc.php:286 libraries/relation.lib.php:100 +#: libraries/messages.inc.php:282 libraries/relation.lib.php:100 msgid "Enabled" msgstr "เปิดใช้อยู่" -#: libraries/messages.inc.php:287 +#: libraries/messages.inc.php:283 msgid "Enclose export in a transaction" msgstr "" -#: libraries/messages.inc.php:288 libraries/sqlparser.lib.php:177 +#: libraries/messages.inc.php:284 libraries/sqlparser.lib.php:177 msgid "END CUT" msgstr "สิ้นสุดจุดตัด" -#: libraries/messages.inc.php:290 libraries/sqlparser.lib.php:183 +#: libraries/messages.inc.php:286 libraries/sqlparser.lib.php:183 msgid "END RAW" msgstr "สิ้นสุดข้อมูลดิบ" -#: libraries/messages.inc.php:293 libraries/server_links.inc.php:61 +#: libraries/messages.inc.php:289 libraries/server_links.inc.php:61 #: test/theme.php:113 msgid "Engines" msgstr "" -#: libraries/messages.inc.php:295 libraries/mysql_charsets.lib.php:238 +#: libraries/messages.inc.php:291 libraries/mysql_charsets.lib.php:238 msgid "English" msgstr "อังกฤษ" -#: libraries/messages.inc.php:296 server_privileges.php:393 +#: libraries/messages.inc.php:292 server_privileges.php:393 #: server_privileges.php:535 server_privileges.php:1501 msgid " Note: MySQL privilege names are expressed in English " msgstr " โปรดทราบ: ชื่อของสิทธิใน MySQL จะแสดงเป็นภาษาอังกฤษ " -#: libraries/messages.inc.php:298 libraries/zip_extension.lib.php:49 +#: libraries/messages.inc.php:294 libraries/zip_extension.lib.php:49 #: libraries/zip_extension.lib.php:51 libraries/zip_extension.lib.php:66 msgid "Error in ZIP archive:" msgstr "" -#: libraries/messages.inc.php:303 libraries/mysql_charsets.lib.php:241 +#: libraries/messages.inc.php:299 libraries/mysql_charsets.lib.php:241 msgid "Esperanto" msgstr "" -#: libraries/messages.inc.php:304 libraries/mysql_charsets.lib.php:244 +#: libraries/messages.inc.php:300 libraries/mysql_charsets.lib.php:244 msgid "Estonian" msgstr "เอสโตเนีย" -#: libraries/messages.inc.php:305 libraries/tbl_triggers.lib.php:29 +#: libraries/messages.inc.php:301 libraries/tbl_triggers.lib.php:29 #, fuzzy msgid "Event" msgstr "ถูกส่ง" -#: libraries/messages.inc.php:307 +#: libraries/messages.inc.php:303 msgid "Excel edition" msgstr "" -#: libraries/messages.inc.php:311 pmd_pdf.php:85 +#: libraries/messages.inc.php:307 pmd_pdf.php:85 msgid "Export/Import to scale" msgstr "" -#: libraries/messages.inc.php:313 +#: libraries/messages.inc.php:309 msgid "Extended inserts" msgstr "แทรกหลายระเบียนในคราวเดียว" -#: libraries/messages.inc.php:314 pdf_schema.php:1267 pdf_schema.php:1288 +#: libraries/messages.inc.php:310 pdf_schema.php:1267 pdf_schema.php:1288 #: tbl_printview.php:147 tbl_structure.php:183 tbl_tracking.php:278 msgid "Extra" msgstr "เพิ่มเติม" -#: libraries/messages.inc.php:316 server_status.php:447 +#: libraries/messages.inc.php:312 server_status.php:447 msgid "Failed attempts" msgstr "ความพยายามล้มเหลว" -#: libraries/messages.inc.php:318 tbl_structure.php:375 +#: libraries/messages.inc.php:314 tbl_structure.php:375 #, php-format msgid "Field %s has been dropped" msgstr "โยนฟิลด์ %s ทิ้งไปเรียบร้อยแล้ว" -#: libraries/messages.inc.php:322 libraries/sql_query_form.lib.php:317 +#: libraries/messages.inc.php:318 libraries/sql_query_form.lib.php:317 msgid "Fields" msgstr "จำนวนฟิลด์" -#: libraries/messages.inc.php:332 server_binlog.php:136 +#: libraries/messages.inc.php:328 server_binlog.php:136 #, fuzzy msgid "Files" msgstr "จำนวนฟิลด์" -#: libraries/messages.inc.php:334 server_privileges.php:1597 +#: libraries/messages.inc.php:330 server_privileges.php:1597 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -3740,219 +3740,219 @@ msgid "" "sreload the privileges%s before you continue." msgstr "" -#: libraries/messages.inc.php:335 server_status.php:289 +#: libraries/messages.inc.php:331 server_status.php:289 msgid "Flush query cache" msgstr "" -#: libraries/messages.inc.php:336 +#: libraries/messages.inc.php:332 msgid "Flush the table (\"FLUSH\")" msgstr "ล้างตาราง (flush)" -#: libraries/messages.inc.php:337 server_status.php:271 +#: libraries/messages.inc.php:333 server_status.php:271 msgid "Flush (close) all tables" msgstr "" -#: libraries/messages.inc.php:339 tbl_relation.php:279 +#: libraries/messages.inc.php:335 tbl_relation.php:279 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" -#: libraries/messages.inc.php:341 setup/lib/messages.inc.php:88 +#: libraries/messages.inc.php:337 setup/lib/messages.inc.php:88 #: tbl_printview.php:376 tbl_structure.php:738 msgid "Format" msgstr "รูปแบบ" -#: libraries/messages.inc.php:344 server_replication.php:325 +#: libraries/messages.inc.php:340 server_replication.php:325 #, fuzzy msgid "Full start" msgstr "ข้อความเต็ม (fulltext)" -#: libraries/messages.inc.php:345 server_replication.php:325 +#: libraries/messages.inc.php:341 server_replication.php:325 msgid "Full stop" msgstr "" -#: libraries/messages.inc.php:347 tbl_change.php:282 tbl_change.php:320 +#: libraries/messages.inc.php:343 tbl_change.php:282 tbl_change.php:320 msgid "Function" msgstr "ฟังก์ชั่น" -#: libraries/messages.inc.php:355 libraries/mysql_charsets.lib.php:377 +#: libraries/messages.inc.php:351 libraries/mysql_charsets.lib.php:377 msgid "Georgian" msgstr "จอร์เจีย" -#: libraries/messages.inc.php:356 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:352 libraries/mysql_charsets.lib.php:247 #: libraries/mysql_charsets.lib.php:250 msgid "German" msgstr "เยอรมัน" -#: libraries/messages.inc.php:357 themes.php:42 +#: libraries/messages.inc.php:353 themes.php:42 msgid "Get more themes!" msgstr "" -#: libraries/messages.inc.php:358 server_privileges.php:2134 +#: libraries/messages.inc.php:354 server_privileges.php:2134 msgid "global" msgstr "โกลบอล" -#: libraries/messages.inc.php:359 server_privileges.php:524 +#: libraries/messages.inc.php:355 server_privileges.php:524 #: server_privileges.php:1500 msgid "Global privileges" msgstr "สิทธิแบบโกลบอล" -#: libraries/messages.inc.php:360 server_variables.php:55 +#: libraries/messages.inc.php:356 server_variables.php:55 #: server_variables.php:89 msgid "Global value" msgstr "ค่าแบบโกลบอล" -#: libraries/messages.inc.php:365 server_privileges.php:1502 +#: libraries/messages.inc.php:361 server_privileges.php:1502 #: server_privileges.php:1684 server_privileges.php:2033 msgid "Grant" msgstr "มอบสิทธิ" -#: libraries/messages.inc.php:366 libraries/mysql_charsets.lib.php:380 +#: libraries/messages.inc.php:362 libraries/mysql_charsets.lib.php:380 msgid "Greek" msgstr "กรีก" -#: libraries/messages.inc.php:367 +#: libraries/messages.inc.php:363 msgid "\"gzipped\"" msgstr "\"gzipped\"" -#: libraries/messages.inc.php:369 server_status.php:250 +#: libraries/messages.inc.php:365 server_status.php:250 msgid "Handler" msgstr "" -#: libraries/messages.inc.php:370 server_synchronize.php:464 +#: libraries/messages.inc.php:366 server_synchronize.php:464 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: libraries/messages.inc.php:372 libraries/mysql_charsets.lib.php:374 +#: libraries/messages.inc.php:368 libraries/mysql_charsets.lib.php:374 msgid "Hebrew" msgstr "ฮิบรู" -#: libraries/messages.inc.php:373 pmd_general.php:83 +#: libraries/messages.inc.php:369 pmd_general.php:83 msgid "Help" msgstr "" -#: libraries/messages.inc.php:374 +#: libraries/messages.inc.php:370 msgid "Use hexadecimal for BLOB" msgstr "" -#: libraries/messages.inc.php:376 pmd_general.php:120 +#: libraries/messages.inc.php:372 pmd_general.php:120 #, fuzzy msgid "Hide/Show all" msgstr "แสดงทั้งหมด" -#: libraries/messages.inc.php:377 pmd_general.php:124 +#: libraries/messages.inc.php:373 pmd_general.php:124 msgid "Hide/Show Tables with no relation" msgstr "" -#: libraries/messages.inc.php:378 libraries/navigation_header.inc.php:54 +#: libraries/messages.inc.php:374 libraries/navigation_header.inc.php:54 #: libraries/navigation_header.inc.php:57 #: libraries/navigation_header.inc.php:58 msgid "Home" msgstr "หน้าบ้าน" -#: libraries/messages.inc.php:379 main.php:233 +#: libraries/messages.inc.php:375 main.php:233 msgid "Official Homepage" msgstr "โฮมเพจอย่างเป็นทางการของ phpMyAdmin" -#: libraries/messages.inc.php:382 libraries/replication_gui.lib.php:327 +#: libraries/messages.inc.php:378 libraries/replication_gui.lib.php:327 #: server_privileges.php:753 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/messages.inc.php:383 +#: libraries/messages.inc.php:379 msgid "Microsoft Word 2000" msgstr "" -#: libraries/messages.inc.php:384 libraries/mysql_charsets.lib.php:253 +#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:253 msgid "Hungarian" msgstr "ฮังการี" -#: libraries/messages.inc.php:386 libraries/mysql_charsets.lib.php:256 +#: libraries/messages.inc.php:382 libraries/mysql_charsets.lib.php:256 msgid "Icelandic" msgstr "ไอซ์แลนด์" -#: libraries/messages.inc.php:387 server_processlist.php:53 +#: libraries/messages.inc.php:383 server_processlist.php:53 msgid "ID" msgstr "ID" -#: libraries/messages.inc.php:388 libraries/mult_submits.inc.php:108 +#: libraries/messages.inc.php:384 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:479 msgid "Fulltext" msgstr "ข้อความเต็ม (fulltext)" -#: libraries/messages.inc.php:389 +#: libraries/messages.inc.php:385 msgid "Ignore duplicate rows" msgstr "" -#: libraries/messages.inc.php:390 tbl_change.php:302 tbl_indexes.php:200 +#: libraries/messages.inc.php:386 tbl_change.php:302 tbl_indexes.php:200 #: tbl_indexes.php:225 msgid "Ignore" msgstr "ไม่สนใจ" -#: libraries/messages.inc.php:391 +#: libraries/messages.inc.php:387 msgid "Use ignore inserts" msgstr "" -#: libraries/messages.inc.php:392 +#: libraries/messages.inc.php:388 msgid "Column names in first row" msgstr "" -#: libraries/messages.inc.php:393 +#: libraries/messages.inc.php:389 msgid "Do not import empty rows" msgstr "" -#: libraries/messages.inc.php:394 pmd_general.php:104 +#: libraries/messages.inc.php:390 pmd_general.php:104 msgid "Import/Export coordinates for PDF schema" msgstr "" -#: libraries/messages.inc.php:395 querywindow.php:104 +#: libraries/messages.inc.php:391 querywindow.php:104 msgid "Import files" msgstr "นำเข้าไฟล์" -#: libraries/messages.inc.php:403 +#: libraries/messages.inc.php:399 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/messages.inc.php:404 libraries/messages.inc.php:584 +#: libraries/messages.inc.php:400 libraries/messages.inc.php:580 msgid "Open Document Spreadsheet" msgstr "" -#: libraries/messages.inc.php:405 +#: libraries/messages.inc.php:401 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/messages.inc.php:409 +#: libraries/messages.inc.php:405 msgid "Excel 97-2003 XLS Workbook" msgstr "" -#: libraries/messages.inc.php:410 +#: libraries/messages.inc.php:406 msgid "Excel 2007 XLSX Workbook" msgstr "" -#: libraries/messages.inc.php:414 libraries/mult_submits.inc.php:98 +#: libraries/messages.inc.php:410 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:476 tbl_structure.php:674 msgid "Index" msgstr "ดัชนี" -#: libraries/messages.inc.php:415 tbl_indexes.php:168 +#: libraries/messages.inc.php:411 tbl_indexes.php:168 msgid "Index name:" msgstr "ชื่อดัชนี :" -#: libraries/messages.inc.php:416 tbl_indexes.php:174 +#: libraries/messages.inc.php:412 tbl_indexes.php:174 msgid "Index type:" msgstr "ชนิดของดัชนี :" -#: libraries/messages.inc.php:417 sql.php:639 +#: libraries/messages.inc.php:413 sql.php:639 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: libraries/messages.inc.php:427 main.php:266 +#: libraries/messages.inc.php:423 main.php:266 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -3963,194 +3963,194 @@ msgstr "" "ซึ่งจะถูกใช้เป็นชื่อปริยายซึ่งมีสิทธิพิเศษ. เซิร์ฟเวอร์ MySQL ที่ทำงานด้วยค่าปริยายนี้ อาจถูกบุกรุกได้ " "คุณควรจะแก้ไขรูรั่วอันนี้ทันที เพื่อความปลอดภัย" -#: libraries/messages.inc.php:428 tbl_change.php:1130 +#: libraries/messages.inc.php:424 tbl_change.php:1130 msgid "Insert as new row" msgstr "แทรกเป็นแถวใหม่" -#: libraries/messages.inc.php:429 sql.php:496 tbl_replace.php:386 +#: libraries/messages.inc.php:425 sql.php:496 tbl_replace.php:386 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: libraries/messages.inc.php:430 tbl_change.php:1131 +#: libraries/messages.inc.php:426 tbl_change.php:1131 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/messages.inc.php:432 main.php:139 +#: libraries/messages.inc.php:428 main.php:139 msgid "Interface" msgstr "" -#: libraries/messages.inc.php:433 tbl_relation.php:407 +#: libraries/messages.inc.php:429 tbl_relation.php:407 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: libraries/messages.inc.php:435 pdf_pages.php:303 +#: libraries/messages.inc.php:431 pdf_pages.php:303 msgid "Internal relations" msgstr "รีเลชันภายใน" -#: libraries/messages.inc.php:438 tbl_indexes.php:256 tbl_structure.php:590 +#: libraries/messages.inc.php:434 tbl_indexes.php:256 tbl_structure.php:590 #: tbl_structure.php:601 msgid "Column count has to be larger than zero." msgstr "" -#: libraries/messages.inc.php:444 libraries/tbl_properties.inc.php:784 +#: libraries/messages.inc.php:440 libraries/tbl_properties.inc.php:784 #: tbl_structure.php:537 msgid "You have to add at least one field." msgstr "" -#: libraries/messages.inc.php:449 +#: libraries/messages.inc.php:445 #, php-format msgid "Invalid server index: \"%s\"" msgstr "" -#: libraries/messages.inc.php:452 libraries/mysql_charsets.lib.php:259 +#: libraries/messages.inc.php:448 libraries/mysql_charsets.lib.php:259 #: libraries/mysql_charsets.lib.php:349 msgid "Japanese" msgstr "ญี่ปุ่น" -#: libraries/messages.inc.php:453 main.php:331 +#: libraries/messages.inc.php:449 main.php:331 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: libraries/messages.inc.php:454 server_status.php:257 +#: libraries/messages.inc.php:450 server_status.php:257 msgid "Joins" msgstr "" -#: libraries/messages.inc.php:457 server_privileges.php:763 +#: libraries/messages.inc.php:453 server_privileges.php:763 msgid "Do not change the password" msgstr "กรุณาอย่าเปลี่ยนรหัสผ่าน" -#: libraries/messages.inc.php:458 server_status.php:256 +#: libraries/messages.inc.php:454 server_status.php:256 msgid "Key cache" msgstr "" -#: libraries/messages.inc.php:462 libraries/mysql_charsets.lib.php:268 +#: libraries/messages.inc.php:458 libraries/mysql_charsets.lib.php:268 #: libraries/mysql_charsets.lib.php:371 msgid "Korean" msgstr "เกาหลี" -#: libraries/messages.inc.php:466 libraries/select_lang.lib.php:480 +#: libraries/messages.inc.php:462 libraries/select_lang.lib.php:480 #: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492 #, php-format msgid "Unknown language: %1$s." msgstr "" -#: libraries/messages.inc.php:468 +#: libraries/messages.inc.php:464 msgid "Table caption" msgstr "คำอธิบายตาราง" -#: libraries/messages.inc.php:469 +#: libraries/messages.inc.php:465 msgid "Content of table __TABLE__" msgstr "" -#: libraries/messages.inc.php:470 +#: libraries/messages.inc.php:466 msgid "Continued table caption" msgstr "" -#: libraries/messages.inc.php:471 +#: libraries/messages.inc.php:467 msgid "(continued)" msgstr "(ต่อ)" -#: libraries/messages.inc.php:472 +#: libraries/messages.inc.php:468 msgid "Include table caption" msgstr "" -#: libraries/messages.inc.php:473 +#: libraries/messages.inc.php:469 msgid "Label key" msgstr "" -#: libraries/messages.inc.php:474 +#: libraries/messages.inc.php:470 msgid "LaTeX" msgstr "LaTeX" -#: libraries/messages.inc.php:475 +#: libraries/messages.inc.php:471 msgid "Structure of table __TABLE__" msgstr "" -#: libraries/messages.inc.php:476 libraries/mysql_charsets.lib.php:262 +#: libraries/messages.inc.php:472 libraries/mysql_charsets.lib.php:262 msgid "Latvian" msgstr "ลัตเวีย" -#: libraries/messages.inc.php:477 +#: libraries/messages.inc.php:473 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/messages.inc.php:478 +#: libraries/messages.inc.php:474 msgid "Use LOCAL keyword" msgstr "" -#: libraries/messages.inc.php:479 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:475 libraries/tbl_properties.inc.php:105 msgid "Length/Values" msgstr "ความยาว/เซต*" -#: libraries/messages.inc.php:480 tbl_select.php:295 +#: libraries/messages.inc.php:476 tbl_select.php:295 msgid "Number of rows per page" msgstr "ระเบียนต่อหน้า" -#: libraries/messages.inc.php:484 libraries/mysql_charsets.lib.php:265 +#: libraries/messages.inc.php:480 libraries/mysql_charsets.lib.php:265 msgid "Lithuanian" msgstr "ลิธัวเนีย" -#: libraries/messages.inc.php:485 libraries/replication_gui.lib.php:302 +#: libraries/messages.inc.php:481 libraries/replication_gui.lib.php:302 #: server_privileges.php:729 msgid "Local" msgstr "โลคอล" -#: libraries/messages.inc.php:487 server_privileges.php:669 +#: libraries/messages.inc.php:483 server_privileges.php:669 msgid "Login Information" msgstr "ข้อมูลล็อกอิน" -#: libraries/messages.inc.php:490 libraries/navigation_header.inc.php:67 +#: libraries/messages.inc.php:486 libraries/navigation_header.inc.php:67 #: libraries/navigation_header.inc.php:70 #: libraries/navigation_header.inc.php:71 main.php:99 msgid "Log out" msgstr "ออกจากระบบ" -#: libraries/messages.inc.php:497 server_status.php:440 +#: libraries/messages.inc.php:493 server_status.php:440 msgid "max. concurrent connections" msgstr "" -#: libraries/messages.inc.php:498 +#: libraries/messages.inc.php:494 msgid "Maximal length of created query" msgstr "" -#: libraries/messages.inc.php:500 main.php:282 +#: libraries/messages.inc.php:496 main.php:282 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " "split strings correctly and it may result in unexpected results." msgstr "" -#: libraries/messages.inc.php:501 main.php:274 +#: libraries/messages.inc.php:497 main.php:274 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " "corrupted!" msgstr "" -#: libraries/messages.inc.php:502 +#: libraries/messages.inc.php:498 msgid "MediaWiki Table" msgstr "" -#: libraries/messages.inc.php:503 transformation_overview.php:25 +#: libraries/messages.inc.php:499 transformation_overview.php:25 msgid "Available MIME types" msgstr "MIME-types ที่มีอยู่" -#: libraries/messages.inc.php:504 transformation_overview.php:43 +#: libraries/messages.inc.php:500 transformation_overview.php:43 msgid "Available transformations" msgstr "การแปลงที่เรียกใช้ได้" -#: libraries/messages.inc.php:505 +#: libraries/messages.inc.php:501 msgctxt "$strMIME_description" msgid "Description" msgstr "รายละเอียด" -#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:580 +#: libraries/messages.inc.php:503 libraries/tbl_properties.inc.php:580 #: transformation_overview.php:60 #, php-format msgid "" @@ -4158,14 +4158,14 @@ msgid "" "author what %s does." msgstr "ไม่ปรากฏรายละเอียดสำหรับการแปลงนี้.
กรุณาสอบถามผู้เขียนว่า, %s ทำอะไร." -#: libraries/messages.inc.php:509 libraries/tbl_properties.inc.php:137 +#: libraries/messages.inc.php:505 libraries/tbl_properties.inc.php:137 #, php-format msgid "" "For a list of available transformation options and their MIME type " "transformations, click on %stransformation descriptions%s" msgstr "" -#: libraries/messages.inc.php:510 libraries/tbl_properties.inc.php:146 +#: libraries/messages.inc.php:506 libraries/tbl_properties.inc.php:146 #, fuzzy msgid "" "Please enter the values for transformation options using this format: 'a', " @@ -4177,408 +4177,408 @@ msgstr "" ">ถ้าต้องการใส่เครื่องหมาย backslash (\"\\\") หรือ อัญประกาศเดี่ยว (\"'\") " "เข้าไปในค่าเหล่านั้น ให้ใส่เครื่องหมาย แบ๊กแสลช นำหน้า (ตัวอย่าง: '\\\\xyz' or 'a\\'b')" -#: libraries/messages.inc.php:511 libraries/tbl_properties.inc.php:145 +#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:145 msgid "Transformation options" msgstr "ตัวเลือกการแปลง" -#: libraries/messages.inc.php:513 transformation_overview.php:38 +#: libraries/messages.inc.php:509 transformation_overview.php:38 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "" -#: libraries/messages.inc.php:515 tbl_indexes.php:162 +#: libraries/messages.inc.php:511 tbl_indexes.php:162 msgid "Modify an index" msgstr "แก้ไขดัชนี" -#: libraries/messages.inc.php:517 pmd_general.php:108 +#: libraries/messages.inc.php:513 pmd_general.php:108 msgid "Move Menu" msgstr "" -#: libraries/messages.inc.php:518 tbl_operations.php:276 +#: libraries/messages.inc.php:514 tbl_operations.php:276 msgid "Move table to (database.table):" msgstr "ย้ายตารางไป (database.table):" -#: libraries/messages.inc.php:519 tbl_move_copy.php:56 +#: libraries/messages.inc.php:515 tbl_move_copy.php:56 #, php-format msgid "Table %s has been moved to %s." msgstr "ตาราง %s ถูกย้ายไป %s แล้ว" -#: libraries/messages.inc.php:520 tbl_move_copy.php:46 +#: libraries/messages.inc.php:516 tbl_move_copy.php:46 msgid "Can't move table to same one!" msgstr "ย้ายตารางไปที่เดิมไม่ได้" -#: libraries/messages.inc.php:521 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:517 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 #: libraries/mysql_charsets.lib.php:332 libraries/mysql_charsets.lib.php:354 #: libraries/mysql_charsets.lib.php:365 msgid "multilingual" msgstr "หลายภาษา" -#: libraries/messages.inc.php:534 main.php:193 +#: libraries/messages.inc.php:530 main.php:193 msgid "MySQL charset" msgstr "ชุดตัวอักษร (charset) ของ MySQL" -#: libraries/messages.inc.php:535 main.php:211 +#: libraries/messages.inc.php:531 main.php:211 msgid "MySQL client version" msgstr "" -#: libraries/messages.inc.php:536 main.php:125 +#: libraries/messages.inc.php:532 main.php:125 msgid "MySQL connection collation" msgstr "" -#: libraries/messages.inc.php:537 main.php:346 +#: libraries/messages.inc.php:533 main.php:346 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: libraries/messages.inc.php:539 server_status.php:294 +#: libraries/messages.inc.php:535 server_status.php:294 msgid "Show processes" msgstr "แสดงงานที่ทำอยู่ของ MySQL" -#: libraries/messages.inc.php:545 navigation.php:210 server_databases.php:371 +#: libraries/messages.inc.php:541 navigation.php:210 server_databases.php:371 #: server_synchronize.php:1191 msgid "No databases" msgstr "ไม่มีฐานข้อมูล" -#: libraries/messages.inc.php:546 server_databases.php:52 +#: libraries/messages.inc.php:542 server_databases.php:52 msgid "No databases selected." msgstr "ยังไม่ได้เลือกฐานข้อมูล." -#: libraries/messages.inc.php:548 libraries/relation.lib.php:1173 +#: libraries/messages.inc.php:544 libraries/relation.lib.php:1173 msgid "no description" msgstr "ไม่มีรายละเอียด" -#: libraries/messages.inc.php:552 libraries/zip_extension.lib.php:26 +#: libraries/messages.inc.php:548 libraries/zip_extension.lib.php:26 msgid "No files found inside ZIP archive!" msgstr "" -#: libraries/messages.inc.php:555 tbl_indexes.php:91 +#: libraries/messages.inc.php:551 tbl_indexes.php:91 msgid "No index parts defined!" msgstr "ไม่ได้กำหนดส่วนใดๆ ของดัชนี!" -#: libraries/messages.inc.php:556 libraries/mult_submits.inc.php:435 +#: libraries/messages.inc.php:552 libraries/mult_submits.inc.php:435 #: tbl_replace.php:331 msgid "No change" msgstr "ไม่มีการเปลี่ยนแปลง" -#: libraries/messages.inc.php:557 +#: libraries/messages.inc.php:553 #, fuzzy msgctxt "$strNoneDefault" msgid "None" msgstr "ไม่มี" -#: libraries/messages.inc.php:560 libraries/plugin_interface.lib.php:312 +#: libraries/messages.inc.php:556 libraries/plugin_interface.lib.php:312 msgid "This format has no options" msgstr "รูปแบบนี้ไม่มีตัวเลือก" -#: libraries/messages.inc.php:565 user_password.php:54 +#: libraries/messages.inc.php:561 user_password.php:54 msgid "You don't have sufficient privileges to be here right now!" msgstr "คุณไม่มีสิทธิที่จะเข้ามาตรงนี้!" -#: libraries/messages.inc.php:566 tbl_row_action.php:29 +#: libraries/messages.inc.php:562 tbl_row_action.php:29 msgid "No rows selected" msgstr "ยังไม่ได้เลือกแถว" -#: libraries/messages.inc.php:569 themes.php:32 +#: libraries/messages.inc.php:565 themes.php:32 #, php-format msgid "" "No themes support; please check your configuration and/or your themes in " "directory %s." msgstr "" -#: libraries/messages.inc.php:571 libraries/relation.lib.php:95 +#: libraries/messages.inc.php:567 libraries/relation.lib.php:95 msgid "not OK" msgstr "ไม่ตกลง" -#: libraries/messages.inc.php:572 server_synchronize.php:400 +#: libraries/messages.inc.php:568 server_synchronize.php:400 #: server_synchronize.php:839 msgid "not present" msgstr "" -#: libraries/messages.inc.php:573 pdf_pages.php:36 pdf_pages.php:42 +#: libraries/messages.inc.php:569 pdf_pages.php:36 pdf_pages.php:42 #: pdf_pages.php:48 pdf_pages.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "ไม่พบตาราง %s ใน %s" -#: libraries/messages.inc.php:574 server_privileges.php:804 +#: libraries/messages.inc.php:570 server_privileges.php:804 #: server_privileges.php:2166 msgid "No user(s) found." msgstr "ไม่พบผู้ใช้ใดๆ." -#: libraries/messages.inc.php:578 pmd_general.php:164 +#: libraries/messages.inc.php:574 pmd_general.php:164 msgid "Number of tables" msgstr "" -#: libraries/messages.inc.php:581 server_databases.php:117 +#: libraries/messages.inc.php:577 server_databases.php:117 #: server_status.php:260 setup/lib/messages.inc.php:117 msgid "Tables" msgstr "ตาราง" -#: libraries/messages.inc.php:583 libraries/relation.lib.php:99 +#: libraries/messages.inc.php:579 libraries/relation.lib.php:99 #: pmd_general.php:340 msgid "OK" msgstr "ตกลง" -#: libraries/messages.inc.php:585 +#: libraries/messages.inc.php:581 msgid "Open Document Text" msgstr "" -#: libraries/messages.inc.php:588 tbl_select.php:138 +#: libraries/messages.inc.php:584 tbl_select.php:138 #, fuzzy msgid "Operator" msgstr "กระบวนการ" -#: libraries/messages.inc.php:589 tbl_operations.php:662 +#: libraries/messages.inc.php:585 tbl_operations.php:662 msgid "Optimize" msgstr "" -#: libraries/messages.inc.php:602 libraries/tbl_properties.inc.php:755 +#: libraries/messages.inc.php:598 libraries/tbl_properties.inc.php:755 msgid "PARTITION definition" msgstr "" -#: libraries/messages.inc.php:603 tbl_structure.php:757 +#: libraries/messages.inc.php:599 tbl_structure.php:757 msgid "partitioned" msgstr "" -#: libraries/messages.inc.php:604 tbl_operations.php:649 +#: libraries/messages.inc.php:600 tbl_operations.php:649 #, fuzzy msgid "Partition maintenance" msgstr "การดูแลรักษาตาราง" -#: libraries/messages.inc.php:605 tbl_operations.php:657 +#: libraries/messages.inc.php:601 tbl_operations.php:657 #, php-format msgid "Partition %s" msgstr "" -#: libraries/messages.inc.php:606 server_privileges.php:1212 +#: libraries/messages.inc.php:602 server_privileges.php:1212 #, php-format msgid "The password for %s was changed successfully." msgstr "เปลี่ยนรหัสผ่านของ %s เรียบร้อยแล้ว" -#: libraries/messages.inc.php:635 +#: libraries/messages.inc.php:631 #, php-format msgid "Schema of the \"%s\" database - Page %s" msgstr "schema ของฐานข้อมูล \"%s\" - หน้า %s" -#: libraries/messages.inc.php:636 +#: libraries/messages.inc.php:632 #, php-format msgid "The \"%s\" table doesn't exist!" msgstr "ไม่มีตาราง \"%s\"!" -#: libraries/messages.inc.php:637 pdf_schema.php:1013 +#: libraries/messages.inc.php:633 pdf_schema.php:1013 msgid "No tables" msgstr "ไม่มีตาราง" -#: libraries/messages.inc.php:638 pmd_pdf.php:63 +#: libraries/messages.inc.php:634 pmd_pdf.php:63 #, fuzzy msgid "Page has been created" msgstr "โยนตาราง %s ทิ้งไปเรียบร้อยแล้ว" -#: libraries/messages.inc.php:639 pmd_pdf.php:65 +#: libraries/messages.inc.php:635 pmd_pdf.php:65 msgid "Page creation failed" msgstr "" -#: libraries/messages.inc.php:640 +#: libraries/messages.inc.php:636 msgid "PDF" msgstr "" -#: libraries/messages.inc.php:641 +#: libraries/messages.inc.php:637 msgid "(Generates a report containing the data of a single table)" msgstr "" -#: libraries/messages.inc.php:642 +#: libraries/messages.inc.php:638 msgid "Report title" msgstr "" -#: libraries/messages.inc.php:643 server_status.php:389 server_status.php:434 +#: libraries/messages.inc.php:639 server_status.php:389 server_status.php:434 #: server_status.php:497 server_status.php:555 msgid "per hour" msgstr "ต่อชั่วโมง" -#: libraries/messages.inc.php:644 server_status.php:498 +#: libraries/messages.inc.php:640 server_status.php:498 msgid "per minute" msgstr "ต่อนาที" -#: libraries/messages.inc.php:645 server_status.php:499 +#: libraries/messages.inc.php:641 server_status.php:499 msgid "per second" msgstr "ต่อวินาที" -#: libraries/messages.inc.php:646 libraries/mysql_charsets.lib.php:271 +#: libraries/messages.inc.php:642 libraries/mysql_charsets.lib.php:271 #, fuzzy msgid "Persian" msgstr "จอร์เจีย" -#: libraries/messages.inc.php:647 libraries/mysql_charsets.lib.php:250 +#: libraries/messages.inc.php:643 libraries/mysql_charsets.lib.php:250 msgid "phone book" msgstr "สมุดโทรศัพท์" -#: libraries/messages.inc.php:648 +#: libraries/messages.inc.php:644 msgid "PHP array" msgstr "" -#: libraries/messages.inc.php:650 main.php:213 +#: libraries/messages.inc.php:646 main.php:213 #, fuzzy msgid "PHP extension" msgstr "รุ่นของ PHP" -#: libraries/messages.inc.php:654 libraries/relation.lib.php:163 +#: libraries/messages.inc.php:650 libraries/relation.lib.php:163 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/messages.inc.php:655 libraries/relation.lib.php:159 +#: libraries/messages.inc.php:651 libraries/relation.lib.php:159 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/messages.inc.php:656 libraries/relation.lib.php:161 +#: libraries/messages.inc.php:652 libraries/relation.lib.php:161 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" -#: libraries/messages.inc.php:657 libraries/relation.lib.php:162 +#: libraries/messages.inc.php:653 libraries/relation.lib.php:162 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/messages.inc.php:658 libraries/relation.lib.php:164 +#: libraries/messages.inc.php:654 libraries/relation.lib.php:164 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/messages.inc.php:661 libraries/mysql_charsets.lib.php:274 +#: libraries/messages.inc.php:657 libraries/mysql_charsets.lib.php:274 msgid "Polish" msgstr "โปแลนด์" -#: libraries/messages.inc.php:662 libraries/replication_gui.lib.php:67 +#: libraries/messages.inc.php:658 libraries/replication_gui.lib.php:67 #: server_synchronize.php:1163 #, fuzzy msgid "Port" msgstr "เรียง" -#: libraries/messages.inc.php:667 tbl_indexes.php:67 +#: libraries/messages.inc.php:663 tbl_indexes.php:67 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "ชื่อของไพรมารีคีย์ จะต้องเป็น PRIMARY เท่านั้น" -#: libraries/messages.inc.php:668 tbl_indexes.php:184 +#: libraries/messages.inc.php:664 tbl_indexes.php:184 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "(ชื่อของไพรมารีคีย์จะต้องเป็น \"PRIMARY\" เท่านั้น!)" -#: libraries/messages.inc.php:669 libraries/mult_submits.inc.php:76 +#: libraries/messages.inc.php:665 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:474 msgid "Primary" msgstr "ไพรมารี" -#: libraries/messages.inc.php:673 server_privileges.php:227 +#: libraries/messages.inc.php:669 server_privileges.php:227 msgid "Includes all privileges except GRANT." msgstr "ให้สิทธิทุกอย่าง ยกเว้นการให้สิทธิแก่ผู้อื่น (GRANT)." -#: libraries/messages.inc.php:674 server_privileges.php:153 +#: libraries/messages.inc.php:670 server_privileges.php:153 #: server_privileges.php:476 msgid "Allows altering the structure of existing tables." msgstr "อนุญาตให้เปลี่ยนโครงสร้างของตารางที่มีอยู่เดิม." -#: libraries/messages.inc.php:675 server_privileges.php:169 +#: libraries/messages.inc.php:671 server_privileges.php:169 #: server_privileges.php:482 #, fuzzy msgid "Allows altering and dropping stored routines." msgstr "อนุญาตให้สร้าง และทิ้ง ดัชนี" -#: libraries/messages.inc.php:676 server_privileges.php:145 +#: libraries/messages.inc.php:672 server_privileges.php:145 #: server_privileges.php:475 msgid "Allows creating new databases and tables." msgstr "อนุญาตให้สร้างฐานข้อมูล และตารางใหม่." -#: libraries/messages.inc.php:677 server_privileges.php:168 +#: libraries/messages.inc.php:673 server_privileges.php:168 #: server_privileges.php:481 #, fuzzy msgid "Allows creating stored routines." msgstr "อนุญาตให้สร้างตารางใหม่." -#: libraries/messages.inc.php:678 server_privileges.php:475 +#: libraries/messages.inc.php:674 server_privileges.php:475 msgid "Allows creating new tables." msgstr "อนุญาตให้สร้างตารางใหม่." -#: libraries/messages.inc.php:679 server_privileges.php:156 +#: libraries/messages.inc.php:675 server_privileges.php:156 #: server_privileges.php:479 msgid "Allows creating temporary tables." msgstr "อนุญาตให้สร้างตารางชั่วคราว." -#: libraries/messages.inc.php:680 server_privileges.php:170 +#: libraries/messages.inc.php:676 server_privileges.php:170 #: server_privileges.php:515 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: libraries/messages.inc.php:681 server_privileges.php:160 +#: libraries/messages.inc.php:677 server_privileges.php:160 #: server_privileges.php:164 server_privileges.php:487 #: server_privileges.php:491 #, fuzzy msgid "Allows creating new views." msgstr "อนุญาตให้สร้างตารางใหม่." -#: libraries/messages.inc.php:682 server_privileges.php:144 +#: libraries/messages.inc.php:678 server_privileges.php:144 #: server_privileges.php:467 msgid "Allows deleting data." msgstr "อนุญาตให้ลบข้อมูล" -#: libraries/messages.inc.php:683 server_privileges.php:146 +#: libraries/messages.inc.php:679 server_privileges.php:146 #: server_privileges.php:478 msgid "Allows dropping databases and tables." msgstr "อนุญาตให้ทิ้งฐานข้อมูล และตาราง" -#: libraries/messages.inc.php:684 server_privileges.php:478 +#: libraries/messages.inc.php:680 server_privileges.php:478 msgid "Allows dropping tables." msgstr "อนุญาตให้ทิ้งตาราง" -#: libraries/messages.inc.php:685 server_privileges.php:161 +#: libraries/messages.inc.php:681 server_privileges.php:161 #: server_privileges.php:495 msgid "Allows to set up events for the event scheduler" msgstr "" -#: libraries/messages.inc.php:686 server_privileges.php:171 +#: libraries/messages.inc.php:682 server_privileges.php:171 #: server_privileges.php:483 msgid "Allows executing stored routines." msgstr "" -#: libraries/messages.inc.php:687 server_privileges.php:150 +#: libraries/messages.inc.php:683 server_privileges.php:150 #: server_privileges.php:470 msgid "Allows importing data from and exporting data into files." msgstr "อนุญาตให้นำเข้าข้อมูล และส่งออกข้อมูล ไปที่ไฟล์" -#: libraries/messages.inc.php:688 server_privileges.php:501 +#: libraries/messages.inc.php:684 server_privileges.php:501 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "อนุญาตให้เพิ่มผู้ใช้ และสิทธิเข้าถึง โดยไม่ต้องเรียกใช้ตารางสิทธิใหม่" -#: libraries/messages.inc.php:689 server_privileges.php:152 +#: libraries/messages.inc.php:685 server_privileges.php:152 #: server_privileges.php:477 msgid "Allows creating and dropping indexes." msgstr "อนุญาตให้สร้าง และทิ้ง ดัชนี" -#: libraries/messages.inc.php:690 server_privileges.php:142 +#: libraries/messages.inc.php:686 server_privileges.php:142 #: server_privileges.php:403 server_privileges.php:465 msgid "Allows inserting and replacing data." msgstr "อนุญาตให้เพิ่ม และแทนที่ ข้อมูล" -#: libraries/messages.inc.php:691 server_privileges.php:157 +#: libraries/messages.inc.php:687 server_privileges.php:157 #: server_privileges.php:510 msgid "Allows locking tables for the current thread." msgstr "อนุญาตให้ล็อกตารางสำหรับเธรดปัจจุบัน" -#: libraries/messages.inc.php:692 server_privileges.php:607 +#: libraries/messages.inc.php:688 server_privileges.php:607 #: server_privileges.php:609 msgid "Limits the number of new connections the user may open per hour." msgstr "จำกัดจำนวนการเชื่อมต่อใหม่ ที่ผู้ใช้จะสามารถเปิดได้ ต่อชั่วโมง" -#: libraries/messages.inc.php:693 server_privileges.php:595 +#: libraries/messages.inc.php:689 server_privileges.php:595 #: server_privileges.php:597 msgid "Limits the number of queries the user may send to the server per hour." msgstr "จำกัดจำนวนของคำค้น ที่ผู้ใช้จะสามารถส่งมาที่เซิร์ฟเวอร์ได้ ต่อชั่วโมง" -#: libraries/messages.inc.php:694 server_privileges.php:601 +#: libraries/messages.inc.php:690 server_privileges.php:601 #: server_privileges.php:603 msgid "" "Limits the number of commands that change any table or database the user may " @@ -4586,58 +4586,58 @@ msgid "" msgstr "" "จำกัดจำนวนของคำสั่ง ที่จะเปลี่ยนแปลงตาราง หรือฐานข้อมูลใดๆ ที่ผู้ใช้จะสามารถสั่งได้ ต่อชั่วโมง" -#: libraries/messages.inc.php:695 server_privileges.php:613 +#: libraries/messages.inc.php:691 server_privileges.php:613 #: server_privileges.php:615 #, fuzzy msgid "Limits the number of simultaneous connections the user may have." msgstr "จำกัดจำนวนการเชื่อมต่อใหม่ ที่ผู้ใช้จะสามารถเปิดได้ ต่อชั่วโมง" -#: libraries/messages.inc.php:696 server_privileges.php:149 +#: libraries/messages.inc.php:692 server_privileges.php:149 #: server_privileges.php:505 msgid "Allows viewing processes of all users" msgstr "" -#: libraries/messages.inc.php:697 server_privileges.php:151 +#: libraries/messages.inc.php:693 server_privileges.php:151 #: server_privileges.php:409 server_privileges.php:511 msgid "Has no effect in this MySQL version." msgstr "ไม่มีผลใน MySQL รุ่นนี้" -#: libraries/messages.inc.php:698 server_privileges.php:147 +#: libraries/messages.inc.php:694 server_privileges.php:147 #: server_privileges.php:506 msgid "Allows reloading server settings and flushing the server's caches." msgstr "อนุญาตให้เรียกใช้ค่ากำหนดของเซิร์ฟเวอร์ใหม่ และล้างแคชของเซิร์ฟเวอร์" -#: libraries/messages.inc.php:699 server_privileges.php:159 +#: libraries/messages.inc.php:695 server_privileges.php:159 #: server_privileges.php:513 msgid "Allows the user to ask where the slaves / masters are." msgstr "มอบสิทธิให้ผู้ใช้ ในการถามว่า slaves หรือ masters อยู่ที่ไหน." -#: libraries/messages.inc.php:700 server_privileges.php:158 +#: libraries/messages.inc.php:696 server_privileges.php:158 #: server_privileges.php:514 msgid "Needed for the replication slaves." msgstr "" -#: libraries/messages.inc.php:701 server_privileges.php:141 +#: libraries/messages.inc.php:697 server_privileges.php:141 #: server_privileges.php:400 server_privileges.php:464 msgid "Allows reading data." msgstr "อนุญาตให้อ่านข้อมูลได้." -#: libraries/messages.inc.php:702 server_privileges.php:154 +#: libraries/messages.inc.php:698 server_privileges.php:154 #: server_privileges.php:508 msgid "Gives access to the complete list of databases." msgstr "สามารถเรียกดูรายการฐานข้อมูลทั้งหมดได้" -#: libraries/messages.inc.php:703 server_privileges.php:165 +#: libraries/messages.inc.php:699 server_privileges.php:165 #: server_privileges.php:167 server_privileges.php:480 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: libraries/messages.inc.php:704 server_privileges.php:148 +#: libraries/messages.inc.php:700 server_privileges.php:148 #: server_privileges.php:507 msgid "Allows shutting down the server." msgstr "อนุญาตให้ปิดเซิร์ฟเวอร์ได้" -#: libraries/messages.inc.php:705 server_privileges.php:155 +#: libraries/messages.inc.php:701 server_privileges.php:155 #: server_privileges.php:504 msgid "" "Allows connecting, even if maximum number of connections is reached; " @@ -4645,194 +4645,194 @@ msgid "" "killing threads of other users." msgstr "" -#: libraries/messages.inc.php:706 server_privileges.php:162 +#: libraries/messages.inc.php:702 server_privileges.php:162 #: server_privileges.php:496 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "อนุญาตให้สร้าง และทิ้ง ดัชนี" -#: libraries/messages.inc.php:707 server_privileges.php:143 +#: libraries/messages.inc.php:703 server_privileges.php:143 #: server_privileges.php:406 server_privileges.php:466 msgid "Allows changing data." msgstr "อนุญาตให้เปลี่ยนข้อมูลได้." -#: libraries/messages.inc.php:708 server_privileges.php:221 +#: libraries/messages.inc.php:704 server_privileges.php:221 msgid "No privileges." msgstr "ไม่มีสิทธิใดๆ." -#: libraries/messages.inc.php:710 server_privileges.php:1296 +#: libraries/messages.inc.php:706 server_privileges.php:1296 msgid "The privileges were reloaded successfully." msgstr "สิทธิได้ถูกเรียกใช้ใหม่เรียบร้อยแล้ว" -#: libraries/messages.inc.php:712 libraries/server_links.inc.php:80 +#: libraries/messages.inc.php:708 libraries/server_links.inc.php:80 msgid "Processes" msgstr "โพรเซส" -#: libraries/messages.inc.php:714 main.php:187 +#: libraries/messages.inc.php:710 main.php:187 msgid "Protocol version" msgstr "" -#: libraries/messages.inc.php:715 +#: libraries/messages.inc.php:711 msgid "Put fields names in the first row" msgstr "ใส่ชื่อฟิลด์ที่แถวแรก" -#: libraries/messages.inc.php:720 server_synchronize.php:1003 +#: libraries/messages.inc.php:716 server_synchronize.php:1003 msgid "The following queries have been executed:" msgstr "" -#: libraries/messages.inc.php:721 server_status.php:251 +#: libraries/messages.inc.php:717 server_status.php:251 #, fuzzy msgid "Query cache" msgstr "ชนิดคำค้น" -#: libraries/messages.inc.php:722 libraries/navigation_header.inc.php:80 +#: libraries/messages.inc.php:718 libraries/navigation_header.inc.php:80 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 setup/lib/messages.inc.php:122 msgid "Query window" msgstr "หน้าต่างคำค้น" -#: libraries/messages.inc.php:725 querywindow.php:109 querywindow.php:217 +#: libraries/messages.inc.php:721 querywindow.php:109 querywindow.php:217 msgid "SQL history" msgstr "SQL-history" -#: libraries/messages.inc.php:726 server_status.php:490 +#: libraries/messages.inc.php:722 server_status.php:490 #, php-format msgid "" "Query statistics: Since its startup, %s queries have been sent to the " "server." msgstr "สถิติคำค้น: มี %s คำค้น ถูกส่งไปที่เซิร์ฟเวอร์ นับตั้งแต่เริ่มระบบ." -#: libraries/messages.inc.php:728 server_status.php:554 +#: libraries/messages.inc.php:724 server_status.php:554 msgid "Query type" msgstr "ชนิดคำค้น" -#: libraries/messages.inc.php:729 libraries/sql_query_form.lib.php:381 +#: libraries/messages.inc.php:725 libraries/sql_query_form.lib.php:381 msgid "Do not overwrite this query from outside the window" msgstr "" -#: libraries/messages.inc.php:732 tbl_operations.php:663 +#: libraries/messages.inc.php:728 tbl_operations.php:663 msgid "Rebuild" msgstr "" -#: libraries/messages.inc.php:733 server_status.php:394 +#: libraries/messages.inc.php:729 server_status.php:394 msgid "Received" msgstr "ได้รับ" -#: libraries/messages.inc.php:734 pmd_pdf.php:89 +#: libraries/messages.inc.php:730 pmd_pdf.php:89 msgid "recommended" msgstr "" -#: libraries/messages.inc.php:736 tbl_operations.php:702 +#: libraries/messages.inc.php:732 tbl_operations.php:702 msgid "Check referential integrity:" msgstr "ตรวจสอบความสมบูรณ์ของการอ้างถึง:" -#: libraries/messages.inc.php:740 pdf_schema.php:1032 pdf_schema.php:1141 +#: libraries/messages.inc.php:736 pdf_schema.php:1032 pdf_schema.php:1141 msgid "Relational schema" msgstr "รีเลชันแนล สกีมา" -#: libraries/messages.inc.php:744 tbl_relation.php:399 +#: libraries/messages.inc.php:740 tbl_relation.php:399 msgid "Relations" msgstr "รีเลชัน" -#: libraries/messages.inc.php:745 tbl_structure.php:507 tbl_structure.php:509 +#: libraries/messages.inc.php:741 tbl_structure.php:507 tbl_structure.php:509 msgid "Relation view" msgstr "มุมมองรีเลชัน" -#: libraries/messages.inc.php:746 server_privileges.php:1246 +#: libraries/messages.inc.php:742 server_privileges.php:1246 msgid "Reloading the privileges" msgstr "ปรับปรุงสิทธิเข้าถึงใหม่อีกรอบ" -#: libraries/messages.inc.php:747 navigation.php:66 navigation.php:67 +#: libraries/messages.inc.php:743 navigation.php:66 navigation.php:67 #: navigation.php:70 msgid "Reload navigation frame" msgstr "" -#: libraries/messages.inc.php:748 pmd_general.php:80 +#: libraries/messages.inc.php:744 pmd_general.php:80 msgid "Reload" msgstr "" -#: libraries/messages.inc.php:749 libraries/server_synchronize.lib.php:1345 +#: libraries/messages.inc.php:745 libraries/server_synchronize.lib.php:1345 #: libraries/server_synchronize.lib.php:1371 msgid "Remote server" msgstr "" -#: libraries/messages.inc.php:750 +#: libraries/messages.inc.php:746 msgid "Remove CRLF characters within fields" msgstr "" -#: libraries/messages.inc.php:751 tbl_operations.php:676 +#: libraries/messages.inc.php:747 tbl_operations.php:676 msgid "Remove partitioning" msgstr "" -#: libraries/messages.inc.php:752 server_privileges.php:1575 +#: libraries/messages.inc.php:748 server_privileges.php:1575 msgid "Remove selected users" msgstr "ถอนผู้ใช้ที่เลือก" -#: libraries/messages.inc.php:755 tbl_operations.php:338 +#: libraries/messages.inc.php:751 tbl_operations.php:338 msgid "Rename table to" msgstr "เปลี่ยนชื่อตารางเป็น" -#: libraries/messages.inc.php:756 view_operations.php:93 +#: libraries/messages.inc.php:752 view_operations.php:93 #, fuzzy msgid "Rename view to" msgstr "เปลี่ยนชื่อตารางเป็น" -#: libraries/messages.inc.php:757 tbl_operations.php:664 +#: libraries/messages.inc.php:753 tbl_operations.php:664 #, fuzzy msgid "Repair" msgstr "ซ่อมแซมตาราง" -#: libraries/messages.inc.php:759 +#: libraries/messages.inc.php:755 msgid "Replace NULL by" msgstr "แทนที่ NULL เป็น" -#: libraries/messages.inc.php:760 +#: libraries/messages.inc.php:756 msgid "Replace table data with file" msgstr "เขียนทับด้วยข้อมูลจากไฟล์" -#: libraries/messages.inc.php:761 server_replication.php:228 +#: libraries/messages.inc.php:757 server_replication.php:228 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: libraries/messages.inc.php:762 libraries/replication_gui.lib.php:236 +#: libraries/messages.inc.php:758 libraries/replication_gui.lib.php:236 #: server_replication.php:194 msgid "Add slave replication user" msgstr "" -#: libraries/messages.inc.php:763 server_replication.php:74 +#: libraries/messages.inc.php:759 server_replication.php:74 #, php-format msgid "Master server changed succesfully to %s" msgstr "" -#: libraries/messages.inc.php:764 server_replication.php:182 +#: libraries/messages.inc.php:760 server_replication.php:182 msgid "This server is configured as master in a replication process." msgstr "" -#: libraries/messages.inc.php:765 server_replication.php:322 +#: libraries/messages.inc.php:761 server_replication.php:322 msgid "Control slave:" msgstr "" -#: libraries/messages.inc.php:766 server_replication.php:65 +#: libraries/messages.inc.php:762 server_replication.php:65 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: libraries/messages.inc.php:767 server_replication.php:58 +#: libraries/messages.inc.php:763 server_replication.php:58 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: libraries/messages.inc.php:768 server_replication.php:221 +#: libraries/messages.inc.php:764 server_replication.php:221 msgid "Replicate all databases; Ignore:" msgstr "" -#: libraries/messages.inc.php:769 server_replication.php:222 +#: libraries/messages.inc.php:765 server_replication.php:222 msgid "Ignore all databases; Replicate:" msgstr "" -#: libraries/messages.inc.php:770 server_replication.php:218 +#: libraries/messages.inc.php:766 server_replication.php:218 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -4841,121 +4841,121 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: libraries/messages.inc.php:771 server_replication.php:217 +#: libraries/messages.inc.php:767 server_replication.php:217 msgid "Master configuration" msgstr "" -#: libraries/messages.inc.php:772 server_replication.php:181 +#: libraries/messages.inc.php:768 server_replication.php:181 #: server_replication.php:209 msgid "Master replication" msgstr "" -#: libraries/messages.inc.php:774 server_replication.php:230 +#: libraries/messages.inc.php:770 server_replication.php:230 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: libraries/messages.inc.php:775 server_replication.php:225 +#: libraries/messages.inc.php:771 server_replication.php:225 #, fuzzy msgid "Please select databases:" msgstr "โปรดเลือกฐานข้อมูล" -#: libraries/messages.inc.php:776 server_replication.php:210 +#: libraries/messages.inc.php:772 server_replication.php:210 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:188 +#: libraries/messages.inc.php:773 libraries/replication_gui.lib.php:188 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/messages.inc.php:778 server_replication.php:187 +#: libraries/messages.inc.php:774 server_replication.php:187 msgid "Show connected slaves" msgstr "" -#: libraries/messages.inc.php:779 libraries/messages.inc.php:885 +#: libraries/messages.inc.php:775 libraries/messages.inc.php:881 #: server_replication.php:184 server_status.php:281 msgid "Show master status" msgstr "" -#: libraries/messages.inc.php:780 server_replication.php:334 +#: libraries/messages.inc.php:776 server_replication.php:334 msgid "Skipping error(s) might lead into unsynchronized master and slave!" msgstr "" -#: libraries/messages.inc.php:781 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:51 #: server_replication.php:347 msgid "Change or reconfigure master server" msgstr "" -#: libraries/messages.inc.php:782 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:778 libraries/replication_gui.lib.php:51 msgid "Slave configuration" msgstr "" -#: libraries/messages.inc.php:783 server_replication.php:305 +#: libraries/messages.inc.php:779 server_replication.php:305 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: libraries/messages.inc.php:784 server_replication.php:332 +#: libraries/messages.inc.php:780 server_replication.php:332 msgid "Error management:" msgstr "" -#: libraries/messages.inc.php:785 server_replication.php:328 +#: libraries/messages.inc.php:781 server_replication.php:328 #, php-format msgid "IO Thread %s only" msgstr "" -#: libraries/messages.inc.php:786 server_replication.php:296 +#: libraries/messages.inc.php:782 server_replication.php:296 msgid "Slave IO Thread not running!" msgstr "" -#: libraries/messages.inc.php:787 server_replication.php:355 +#: libraries/messages.inc.php:783 server_replication.php:355 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/messages.inc.php:788 server_replication.php:326 +#: libraries/messages.inc.php:784 server_replication.php:326 msgid "Reset slave" msgstr "" -#: libraries/messages.inc.php:789 server_replication.php:308 +#: libraries/messages.inc.php:785 server_replication.php:308 msgid "See slave status table" msgstr "" -#: libraries/messages.inc.php:790 server_replication.php:336 +#: libraries/messages.inc.php:786 server_replication.php:336 msgid "Skip current error" msgstr "" -#: libraries/messages.inc.php:791 server_replication.php:340 +#: libraries/messages.inc.php:787 server_replication.php:340 msgid "errors." msgstr "" -#: libraries/messages.inc.php:792 server_replication.php:337 +#: libraries/messages.inc.php:788 server_replication.php:337 msgid "Skip next" msgstr "" -#: libraries/messages.inc.php:793 server_replication.php:248 +#: libraries/messages.inc.php:789 server_replication.php:248 msgid "Slave replication" msgstr "" -#: libraries/messages.inc.php:794 server_replication.php:293 +#: libraries/messages.inc.php:790 server_replication.php:293 msgid "Slave SQL Thread not running!" msgstr "" -#: libraries/messages.inc.php:795 server_replication.php:327 +#: libraries/messages.inc.php:791 server_replication.php:327 #, php-format msgid "SQL Thread %s only" msgstr "" -#: libraries/messages.inc.php:796 +#: libraries/messages.inc.php:792 #, php-format msgid "" "This MySQL server works as %s in replication process. For further " @@ -4963,159 +4963,159 @@ msgid "" "\"#replication\">replication section." msgstr "" -#: libraries/messages.inc.php:797 +#: libraries/messages.inc.php:793 msgid "Master status" msgstr "" -#: libraries/messages.inc.php:798 server_status.php:721 +#: libraries/messages.inc.php:794 server_status.php:721 msgid "Replication status" msgstr "" -#: libraries/messages.inc.php:799 +#: libraries/messages.inc.php:795 msgid "Slave status" msgstr "" -#: libraries/messages.inc.php:800 server_replication.php:311 +#: libraries/messages.inc.php:796 server_replication.php:311 msgid "Synchronize databases with master" msgstr "" -#: libraries/messages.inc.php:801 server_replication.php:71 +#: libraries/messages.inc.php:797 server_replication.php:71 msgid "Unable to change master" msgstr "" -#: libraries/messages.inc.php:802 server_replication.php:51 +#: libraries/messages.inc.php:798 server_replication.php:51 msgid "Unknown error" msgstr "" -#: libraries/messages.inc.php:803 main.php:163 pdf_pages.php:344 +#: libraries/messages.inc.php:799 main.php:163 pdf_pages.php:344 #: setup/lib/FormDisplay.tpl.php:216 tbl_change.php:1175 msgid "Reset" msgstr "เริ่มใหม่" -#: libraries/messages.inc.php:804 server_privileges.php:591 +#: libraries/messages.inc.php:800 server_privileges.php:591 msgid "Resource limits" msgstr "ขีดจำกัดของทรัพยากร" -#: libraries/messages.inc.php:805 tbl_change.php:1209 +#: libraries/messages.inc.php:801 tbl_change.php:1209 #, php-format msgid "Restart insertion with %s rows" msgstr "" -#: libraries/messages.inc.php:807 server_privileges.php:1578 +#: libraries/messages.inc.php:803 server_privileges.php:1578 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "เพิกถอน active privileges ทั้งหมดจากผู้ใช้ และลบผู้ใช้ทิ้งหลังจากนั้น." -#: libraries/messages.inc.php:808 server_privileges.php:1176 +#: libraries/messages.inc.php:804 server_privileges.php:1176 #, php-format msgid "You have revoked the privileges for %s" msgstr "คุณได้เพิกถอนสิทธิของ %s" -#: libraries/messages.inc.php:809 server_privileges.php:1333 +#: libraries/messages.inc.php:805 server_privileges.php:1333 msgid "Revoke" msgstr "เพิกถอน" -#: libraries/messages.inc.php:810 libraries/mysql_charsets.lib.php:280 +#: libraries/messages.inc.php:806 libraries/mysql_charsets.lib.php:280 msgid "Romanian" msgstr "โรมาเนีย" -#: libraries/messages.inc.php:813 tbl_printview.php:404 tbl_structure.php:786 +#: libraries/messages.inc.php:809 tbl_printview.php:404 tbl_structure.php:786 msgid "Row length" msgstr "ความยาวแถว" -#: libraries/messages.inc.php:815 tbl_printview.php:414 tbl_structure.php:794 +#: libraries/messages.inc.php:811 tbl_printview.php:414 tbl_structure.php:794 msgid " Row size " msgstr " ขนาดแถว " -#: libraries/messages.inc.php:821 tbl_printview.php:366 tbl_structure.php:726 +#: libraries/messages.inc.php:817 tbl_printview.php:366 tbl_structure.php:726 msgid "Row Statistics" msgstr "สถิติของแถว" -#: libraries/messages.inc.php:822 +#: libraries/messages.inc.php:818 #, php-format msgid "running on %s" msgstr "ทำงานอยู่บน %s" -#: libraries/messages.inc.php:824 libraries/sql_query_form.lib.php:223 +#: libraries/messages.inc.php:820 libraries/sql_query_form.lib.php:223 #, fuzzy, php-format msgid "Run SQL query/queries on server %s" msgstr "ประมวลผลคำค้นบนฐานข้อมูล %s" -#: libraries/messages.inc.php:825 libraries/sql_query_form.lib.php:240 +#: libraries/messages.inc.php:821 libraries/sql_query_form.lib.php:240 #: libraries/sql_query_form.lib.php:265 #, php-format msgid "Run SQL query/queries on database %s" msgstr "ประมวลผลคำค้นบนฐานข้อมูล %s" -#: libraries/messages.inc.php:826 libraries/mysql_charsets.lib.php:337 +#: libraries/messages.inc.php:822 libraries/mysql_charsets.lib.php:337 msgid "Russian" msgstr "รัสเซีย" -#: libraries/messages.inc.php:829 pmd_general.php:68 +#: libraries/messages.inc.php:825 pmd_general.php:68 msgid "Save position" msgstr "" -#: libraries/messages.inc.php:830 libraries/tbl_properties.inc.php:776 +#: libraries/messages.inc.php:826 libraries/tbl_properties.inc.php:776 #: pdf_pages.php:484 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:214 setup/lib/FormDisplay.tpl.php:215 #: tbl_change.php:1126 tbl_indexes.php:248 tbl_relation.php:566 msgid "Save" msgstr "บันทึก" -#: libraries/messages.inc.php:831 +#: libraries/messages.inc.php:827 msgid "The scale factor is too small to fit the schema on one page" msgstr "อัตราย่อน้อยเกินไป ที่จะจัดให้สกีมาอยู่ในหน้าเดียว" -#: libraries/messages.inc.php:843 main.php:298 +#: libraries/messages.inc.php:839 main.php:298 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" -#: libraries/messages.inc.php:844 navigation.php:353 navigation.php:516 +#: libraries/messages.inc.php:840 navigation.php:353 navigation.php:516 msgid "Please select a database" msgstr "โปรดเลือกฐานข้อมูล" -#: libraries/messages.inc.php:846 server_binlog.php:120 +#: libraries/messages.inc.php:842 server_binlog.php:120 msgid "Select binary log to view" msgstr "" -#: libraries/messages.inc.php:847 tbl_select.php:270 +#: libraries/messages.inc.php:843 tbl_select.php:270 msgid "Select fields (at least one):" msgstr "เลือกฟิลด์ (อย่างน้อยหนึ่งฟิลด์):" -#: libraries/messages.inc.php:851 pdf_pages.php:320 +#: libraries/messages.inc.php:847 pdf_pages.php:320 msgid "Select Tables" msgstr "เลือกตาราง" -#: libraries/messages.inc.php:853 server_status.php:404 +#: libraries/messages.inc.php:849 server_status.php:404 msgid "Sent" msgstr "ถูกส่ง" -#: libraries/messages.inc.php:857 libraries/select_server.lib.php:45 +#: libraries/messages.inc.php:853 libraries/select_server.lib.php:45 #: setup/frames/index.inc.php:97 setup/lib/messages.inc.php:115 #, fuzzy msgid "Servers" msgstr "เซิร์ฟเวอร์" -#: libraries/messages.inc.php:858 server_status.php:255 +#: libraries/messages.inc.php:854 server_status.php:255 #, fuzzy msgid "Delayed inserts" msgstr "แทรกหลายระเบียนในคราวเดียว" -#: libraries/messages.inc.php:859 server_status.php:46 +#: libraries/messages.inc.php:855 server_status.php:46 msgid "Runtime Information" msgstr "ข้อมูลรันไทม์" -#: libraries/messages.inc.php:860 server_status.php:350 +#: libraries/messages.inc.php:856 server_status.php:350 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "เซิร์ฟเวอร์ MySQL นี้รันมาเป็นเวลา %s. เริ่มตอน %s." -#: libraries/messages.inc.php:861 libraries/server_links.inc.php:53 +#: libraries/messages.inc.php:857 libraries/server_links.inc.php:53 #: server_engines.php:112 server_engines.php:116 server_status.php:304 #: test/theme.php:105 msgid "Variables" msgstr "ตัวแปร" -#: libraries/messages.inc.php:862 server_status.php:383 +#: libraries/messages.inc.php:858 server_status.php:383 msgid "" "Server traffic: These tables show the network traffic statistics of " "this MySQL server since its startup." @@ -5123,11 +5123,11 @@ msgstr "" "การจราจรของเซิร์ฟเวอร์: ตารางนี้แสดงสถิติของการจราจรบนเครือข่าย สำหรับเซิร์ฟเวอร์ " "MySQL นี้ ตั้งแต่มันเริ่มทำงาน." -#: libraries/messages.inc.php:863 server_variables.php:35 +#: libraries/messages.inc.php:859 server_variables.php:35 msgid "Server variables and settings" msgstr "ตัวแปร และค่ากำหนด ของเซิร์ฟเวอร์" -#: libraries/messages.inc.php:865 main.php:290 +#: libraries/messages.inc.php:861 main.php:290 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -5135,17 +5135,17 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: libraries/messages.inc.php:866 +#: libraries/messages.inc.php:862 msgid "" "Cannot start session without errors, please check errors given in your PHP " "and/or webserver log file and configure your PHP installation properly." msgstr "" -#: libraries/messages.inc.php:867 server_variables.php:55 +#: libraries/messages.inc.php:863 server_variables.php:55 msgid "Session value" msgstr "ค่าเซสชั่น" -#: libraries/messages.inc.php:868 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:864 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 " @@ -5156,56 +5156,56 @@ msgstr "" ">ถ้าต้องการใส่เครื่องหมาย backslash (\"\\\") หรือ อัญประกาศเดี่ยว (\"'\") " "เข้าไปในค่าเหล่านั้น ให้ใส่เครื่องหมาย แบ๊กแสลช นำหน้า (ตัวอย่าง: '\\\\xyz' or 'a\\'b')" -#: libraries/messages.inc.php:876 server_binlog.php:192 server_binlog.php:195 +#: libraries/messages.inc.php:872 server_binlog.php:192 server_binlog.php:195 #: server_processlist.php:49 server_processlist.php:51 msgid "Show Full Queries" msgstr "แสดงคำค้นแบบเต็ม" -#: libraries/messages.inc.php:878 pmd_general.php:64 +#: libraries/messages.inc.php:874 pmd_general.php:64 msgid "Show/Hide left menu" msgstr "" -#: libraries/messages.inc.php:880 sql.php:513 +#: libraries/messages.inc.php:876 sql.php:513 msgid "Showing as PHP code" msgstr "" -#: libraries/messages.inc.php:882 sql.php:516 tbl_replace.php:360 +#: libraries/messages.inc.php:878 sql.php:516 tbl_replace.php:360 msgid "Showing SQL query" msgstr "" -#: libraries/messages.inc.php:883 tbl_change.php:1132 +#: libraries/messages.inc.php:879 tbl_change.php:1132 msgid "Show insert query" msgstr "" -#: libraries/messages.inc.php:886 server_status.php:273 +#: libraries/messages.inc.php:882 server_status.php:273 #, fuzzy msgid "Show open tables" msgstr "แสดงตาราง" -#: libraries/messages.inc.php:887 main.php:219 +#: libraries/messages.inc.php:883 main.php:219 msgid "Show PHP information" msgstr "แสดงข้อมูลของ PHP" -#: libraries/messages.inc.php:889 server_status.php:278 +#: libraries/messages.inc.php:885 server_status.php:278 msgid "Show slave hosts" msgstr "" -#: libraries/messages.inc.php:890 server_status.php:284 +#: libraries/messages.inc.php:886 server_status.php:284 msgid "Show slave status" msgstr "" -#: libraries/messages.inc.php:891 +#: libraries/messages.inc.php:887 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/messages.inc.php:892 +#: libraries/messages.inc.php:888 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/messages.inc.php:893 +#: libraries/messages.inc.php:889 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -5213,78 +5213,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/messages.inc.php:894 +#: libraries/messages.inc.php:890 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/messages.inc.php:895 +#: libraries/messages.inc.php:891 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/messages.inc.php:896 +#: libraries/messages.inc.php:892 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/messages.inc.php:897 +#: libraries/messages.inc.php:893 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/messages.inc.php:898 +#: libraries/messages.inc.php:894 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/messages.inc.php:899 +#: libraries/messages.inc.php:895 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/messages.inc.php:900 +#: libraries/messages.inc.php:896 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/messages.inc.php:901 +#: libraries/messages.inc.php:897 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/messages.inc.php:902 +#: libraries/messages.inc.php:898 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/messages.inc.php:903 +#: libraries/messages.inc.php:899 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/messages.inc.php:904 +#: libraries/messages.inc.php:900 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: libraries/messages.inc.php:905 +#: libraries/messages.inc.php:901 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/messages.inc.php:906 +#: libraries/messages.inc.php:902 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: libraries/messages.inc.php:907 +#: libraries/messages.inc.php:903 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -5292,7 +5292,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/messages.inc.php:908 +#: libraries/messages.inc.php:904 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -5300,42 +5300,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/messages.inc.php:909 +#: libraries/messages.inc.php:905 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/messages.inc.php:910 +#: libraries/messages.inc.php:906 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/messages.inc.php:911 +#: libraries/messages.inc.php:907 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/messages.inc.php:912 +#: libraries/messages.inc.php:908 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/messages.inc.php:913 +#: libraries/messages.inc.php:909 msgid "The number of pages currently dirty." msgstr "" -#: libraries/messages.inc.php:914 +#: libraries/messages.inc.php:910 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/messages.inc.php:915 +#: libraries/messages.inc.php:911 msgid "The number of free pages." msgstr "" -#: libraries/messages.inc.php:916 +#: libraries/messages.inc.php:912 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/messages.inc.php:917 +#: libraries/messages.inc.php:913 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -5343,33 +5343,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/messages.inc.php:918 +#: libraries/messages.inc.php:914 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/messages.inc.php:919 +#: libraries/messages.inc.php:915 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/messages.inc.php:920 +#: libraries/messages.inc.php:916 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/messages.inc.php:921 +#: libraries/messages.inc.php:917 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/messages.inc.php:922 +#: libraries/messages.inc.php:918 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/messages.inc.php:923 +#: libraries/messages.inc.php:919 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -5378,218 +5378,218 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/messages.inc.php:924 +#: libraries/messages.inc.php:920 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/messages.inc.php:925 +#: libraries/messages.inc.php:921 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/messages.inc.php:926 +#: libraries/messages.inc.php:922 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/messages.inc.php:927 +#: libraries/messages.inc.php:923 msgid "The current number of pending reads." msgstr "" -#: libraries/messages.inc.php:928 +#: libraries/messages.inc.php:924 msgid "The current number of pending writes." msgstr "" -#: libraries/messages.inc.php:929 +#: libraries/messages.inc.php:925 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/messages.inc.php:930 +#: libraries/messages.inc.php:926 msgid "The total number of data reads." msgstr "" -#: libraries/messages.inc.php:931 +#: libraries/messages.inc.php:927 msgid "The total number of data writes." msgstr "" -#: libraries/messages.inc.php:932 +#: libraries/messages.inc.php:928 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/messages.inc.php:933 +#: libraries/messages.inc.php:929 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/messages.inc.php:934 +#: libraries/messages.inc.php:930 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/messages.inc.php:935 +#: libraries/messages.inc.php:931 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/messages.inc.php:936 +#: libraries/messages.inc.php:932 msgid "The number of log write requests." msgstr "" -#: libraries/messages.inc.php:937 +#: libraries/messages.inc.php:933 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/messages.inc.php:938 +#: libraries/messages.inc.php:934 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/messages.inc.php:939 +#: libraries/messages.inc.php:935 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/messages.inc.php:940 +#: libraries/messages.inc.php:936 msgid "Pending log file writes." msgstr "" -#: libraries/messages.inc.php:941 +#: libraries/messages.inc.php:937 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/messages.inc.php:942 +#: libraries/messages.inc.php:938 msgid "The number of pages created." msgstr "" -#: libraries/messages.inc.php:943 +#: libraries/messages.inc.php:939 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: libraries/messages.inc.php:944 +#: libraries/messages.inc.php:940 msgid "The number of pages read." msgstr "" -#: libraries/messages.inc.php:945 +#: libraries/messages.inc.php:941 msgid "The number of pages written." msgstr "" -#: libraries/messages.inc.php:946 +#: libraries/messages.inc.php:942 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/messages.inc.php:947 +#: libraries/messages.inc.php:943 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/messages.inc.php:948 +#: libraries/messages.inc.php:944 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/messages.inc.php:949 +#: libraries/messages.inc.php:945 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/messages.inc.php:950 +#: libraries/messages.inc.php:946 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/messages.inc.php:951 +#: libraries/messages.inc.php:947 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/messages.inc.php:952 +#: libraries/messages.inc.php:948 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/messages.inc.php:953 +#: libraries/messages.inc.php:949 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/messages.inc.php:954 +#: libraries/messages.inc.php:950 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/messages.inc.php:955 +#: libraries/messages.inc.php:951 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/messages.inc.php:956 +#: libraries/messages.inc.php:952 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: libraries/messages.inc.php:957 +#: libraries/messages.inc.php:953 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/messages.inc.php:958 +#: libraries/messages.inc.php:954 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/messages.inc.php:959 +#: libraries/messages.inc.php:955 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/messages.inc.php:960 +#: libraries/messages.inc.php:956 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/messages.inc.php:961 +#: libraries/messages.inc.php:957 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/messages.inc.php:962 +#: libraries/messages.inc.php:958 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/messages.inc.php:963 +#: libraries/messages.inc.php:959 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/messages.inc.php:964 +#: libraries/messages.inc.php:960 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/messages.inc.php:965 +#: libraries/messages.inc.php:961 msgid "The number of files that are open." msgstr "" -#: libraries/messages.inc.php:966 +#: libraries/messages.inc.php:962 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/messages.inc.php:967 +#: libraries/messages.inc.php:963 msgid "The number of tables that are open." msgstr "" -#: libraries/messages.inc.php:968 +#: libraries/messages.inc.php:964 msgid "The number of free memory blocks in query cache." msgstr "" -#: libraries/messages.inc.php:969 +#: libraries/messages.inc.php:965 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/messages.inc.php:970 +#: libraries/messages.inc.php:966 msgid "The number of cache hits." msgstr "" -#: libraries/messages.inc.php:971 +#: libraries/messages.inc.php:967 msgid "The number of queries added to the cache." msgstr "" -#: libraries/messages.inc.php:972 +#: libraries/messages.inc.php:968 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -5597,105 +5597,105 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/messages.inc.php:973 +#: libraries/messages.inc.php:969 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/messages.inc.php:974 +#: libraries/messages.inc.php:970 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/messages.inc.php:975 +#: libraries/messages.inc.php:971 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/messages.inc.php:976 +#: libraries/messages.inc.php:972 #, fuzzy msgctxt "$strShowStatusReset" msgid "Reset" msgstr "เริ่มใหม่" -#: libraries/messages.inc.php:977 +#: libraries/messages.inc.php:973 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/messages.inc.php:978 +#: libraries/messages.inc.php:974 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: libraries/messages.inc.php:979 +#: libraries/messages.inc.php:975 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/messages.inc.php:980 +#: libraries/messages.inc.php:976 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: libraries/messages.inc.php:981 +#: libraries/messages.inc.php:977 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/messages.inc.php:982 +#: libraries/messages.inc.php:978 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/messages.inc.php:983 +#: libraries/messages.inc.php:979 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/messages.inc.php:984 +#: libraries/messages.inc.php:980 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/messages.inc.php:985 +#: libraries/messages.inc.php:981 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/messages.inc.php:986 +#: libraries/messages.inc.php:982 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/messages.inc.php:987 +#: libraries/messages.inc.php:983 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/messages.inc.php:988 +#: libraries/messages.inc.php:984 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/messages.inc.php:989 +#: libraries/messages.inc.php:985 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/messages.inc.php:990 +#: libraries/messages.inc.php:986 msgid "The number of sorted rows." msgstr "" -#: libraries/messages.inc.php:991 +#: libraries/messages.inc.php:987 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/messages.inc.php:992 +#: libraries/messages.inc.php:988 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/messages.inc.php:993 +#: libraries/messages.inc.php:989 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -5703,18 +5703,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/messages.inc.php:994 +#: libraries/messages.inc.php:990 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/messages.inc.php:995 +#: libraries/messages.inc.php:991 msgid "The number of currently open connections." msgstr "" -#: libraries/messages.inc.php:996 +#: libraries/messages.inc.php:992 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -5722,74 +5722,74 @@ msgid "" "implementation.)" msgstr "" -#: libraries/messages.inc.php:997 +#: libraries/messages.inc.php:993 msgid "The number of threads that are not sleeping." msgstr "" -#: libraries/messages.inc.php:999 tbl_printview.php:75 +#: libraries/messages.inc.php:995 tbl_printview.php:75 msgid "Show tables" msgstr "แสดงตาราง" -#: libraries/messages.inc.php:1000 libraries/sql_query_form.lib.php:396 +#: libraries/messages.inc.php:996 libraries/sql_query_form.lib.php:396 msgid " Show this query here again " msgstr " แสดงคำค้นนี้อีกที " -#: libraries/messages.inc.php:1001 libraries/mysql_charsets.lib.php:217 +#: libraries/messages.inc.php:997 libraries/mysql_charsets.lib.php:217 #: libraries/mysql_charsets.lib.php:342 msgid "Simplified Chinese" msgstr "จีน (แผ่นดินใหญ่)" -#: libraries/messages.inc.php:1002 tbl_operations.php:258 +#: libraries/messages.inc.php:998 tbl_operations.php:258 msgid "(singly)" msgstr "(เดี่ยว)" -#: libraries/messages.inc.php:1005 libraries/replication_gui.lib.php:52 +#: libraries/messages.inc.php:1001 libraries/replication_gui.lib.php:52 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" msgstr "" -#: libraries/messages.inc.php:1006 libraries/mysql_charsets.lib.php:283 +#: libraries/messages.inc.php:1002 libraries/mysql_charsets.lib.php:283 msgid "Slovak" msgstr "สโลวัก" -#: libraries/messages.inc.php:1007 libraries/mysql_charsets.lib.php:286 +#: libraries/messages.inc.php:1003 libraries/mysql_charsets.lib.php:286 msgid "Slovenian" msgstr "สโลเวเนีย" -#: libraries/messages.inc.php:1008 pmd_general.php:95 +#: libraries/messages.inc.php:1004 pmd_general.php:95 msgid "Small/Big All" msgstr "" -#: libraries/messages.inc.php:1009 pmd_general.php:91 +#: libraries/messages.inc.php:1005 pmd_general.php:91 msgid "Snap to grid" msgstr "" -#: libraries/messages.inc.php:1011 server_synchronize.php:1167 +#: libraries/messages.inc.php:1007 server_synchronize.php:1167 msgid "Socket" msgstr "" -#: libraries/messages.inc.php:1013 server_status.php:259 +#: libraries/messages.inc.php:1009 server_status.php:259 msgid "Sorting" msgstr "" -#: libraries/messages.inc.php:1015 tbl_printview.php:310 tbl_structure.php:657 +#: libraries/messages.inc.php:1011 tbl_printview.php:310 tbl_structure.php:657 msgid "Space usage" msgstr "เนื้อที่ที่ใช้" -#: libraries/messages.inc.php:1016 libraries/mysql_charsets.lib.php:289 +#: libraries/messages.inc.php:1012 libraries/mysql_charsets.lib.php:289 msgid "Spanish" msgstr "สเปน" -#: libraries/messages.inc.php:1019 +#: libraries/messages.inc.php:1015 msgid "Export type" msgstr "" -#: libraries/messages.inc.php:1020 +#: libraries/messages.inc.php:1016 msgid "Export time in UTC" msgstr "" -#: libraries/messages.inc.php:1021 libraries/sqlparser.lib.php:173 +#: libraries/messages.inc.php:1017 libraries/sqlparser.lib.php:173 msgid "" "There is a chance that you may have found a bug in the SQL parser. Please " "examine your query closely, and check that the quotes are correct and not " @@ -5810,7 +5810,7 @@ msgstr "" "ให้ลองลดความยาวของคำค้น SQL ลง จนกระทั่งเหลือคำค้น SQL เดี่ยวๆ ที่ยังทำให้เกิดปัญหาอยู่อีก, " "แล้วแจ้งข้อผิดพลาดดังกล่าวมาที่เรา, ส่งมันมาพร้อมกับตัวข้อมูลที่คุณค้น ซึ่งได้จากส่วนของ CUT ด้านล่าง." -#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:137 +#: libraries/messages.inc.php:1018 libraries/sqlparser.lib.php:137 msgid "" "There seems to be an error in your SQL query. The MySQL server error output " "below, if there is any, may also help you in diagnosing the problem" @@ -5818,418 +5818,418 @@ msgstr "" "อาจจะมีข้อผิดพลาดบางอย่างในคำค้น SQL ของคุณ. หาก MySQL server " "ได้แจ้งข้อผิดพลาดมาด้านล่างนี้ ให้ลองอ่านดู มันอาจจะช่วยให้คุณวินิจฉัยปัญหาได้ดีขึ้น" -#: libraries/messages.inc.php:1026 libraries/sqlparser.lib.php:495 +#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:495 msgid "Invalid Identifer" msgstr "ชื่อตัวแปรไม่ถูกต้อง" -#: libraries/messages.inc.php:1027 libraries/sqlparser.lib.php:344 +#: libraries/messages.inc.php:1023 libraries/sqlparser.lib.php:344 msgid "Unclosed quote" msgstr "ไม่ได้ปิดเครื่องหมายคำพูด" -#: libraries/messages.inc.php:1028 libraries/sqlparser.lib.php:612 +#: libraries/messages.inc.php:1024 libraries/sqlparser.lib.php:612 msgid "Unknown Punctuation String" msgstr "มีเครื่องหมายวรรคตอนที่ไม่รู้จัก" -#: libraries/messages.inc.php:1030 server_replication.php:327 +#: libraries/messages.inc.php:1026 server_replication.php:327 #: server_replication.php:328 #, fuzzy msgid "Start" msgstr "ส." -#: libraries/messages.inc.php:1033 tbl_printview.php:369 tbl_structure.php:729 +#: libraries/messages.inc.php:1029 tbl_printview.php:369 tbl_structure.php:729 msgid "Statements" msgstr "คำสั่ง" -#: libraries/messages.inc.php:1034 tbl_printview.php:380 tbl_structure.php:741 +#: libraries/messages.inc.php:1030 tbl_printview.php:380 tbl_structure.php:741 msgid "static" msgstr "" -#: libraries/messages.inc.php:1035 server_status.php:388 +#: libraries/messages.inc.php:1031 server_status.php:388 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: libraries/messages.inc.php:1038 server_replication.php:327 +#: libraries/messages.inc.php:1034 server_replication.php:327 #: server_replication.php:328 msgid "Stop" msgstr "" -#: libraries/messages.inc.php:1039 server_engines.php:49 +#: libraries/messages.inc.php:1035 server_engines.php:49 msgid "Storage Engines" msgstr "" -#: libraries/messages.inc.php:1040 libraries/tbl_properties.inc.php:726 +#: libraries/messages.inc.php:1036 libraries/tbl_properties.inc.php:726 #: server_engines.php:58 tbl_operations.php:353 msgid "Storage Engine" msgstr "" -#: libraries/messages.inc.php:1042 +#: libraries/messages.inc.php:1038 msgid "CSV for MS Excel" msgstr "ข้อมูล CSV สำหรับไมโครซอฟต์เอ็กเซล" -#: libraries/messages.inc.php:1044 tbl_structure.php:516 tbl_structure.php:518 +#: libraries/messages.inc.php:1040 tbl_structure.php:516 tbl_structure.php:518 msgid "Propose table structure" msgstr "เสนอโครงสร้างตาราง" -#: libraries/messages.inc.php:1045 server_synchronize.php:424 +#: libraries/messages.inc.php:1041 server_synchronize.php:424 #: server_synchronize.php:867 msgid "Structure Difference" msgstr "" -#: libraries/messages.inc.php:1049 server_synchronize.php:265 +#: libraries/messages.inc.php:1045 server_synchronize.php:265 msgid "Structure Synchronization" msgstr "" -#: libraries/messages.inc.php:1050 libraries/sql_query_form.lib.php:462 +#: libraries/messages.inc.php:1046 libraries/sql_query_form.lib.php:462 msgid "Submit" msgstr "ส่ง" -#: libraries/messages.inc.php:1052 main.php:358 +#: libraries/messages.inc.php:1048 main.php:358 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " "issues." msgstr "" -#: libraries/messages.inc.php:1054 libraries/mysql_charsets.lib.php:295 +#: libraries/messages.inc.php:1050 libraries/mysql_charsets.lib.php:295 #: libraries/mysql_charsets.lib.php:392 msgid "Swedish" msgstr "สวีเดน" -#: libraries/messages.inc.php:1060 tbl_operations.php:556 +#: libraries/messages.inc.php:1056 tbl_operations.php:556 msgid "Switch to copied table" msgstr "สลับไปที่ตารางที่ถูกทำสำเนาไว้" -#: libraries/messages.inc.php:1061 server_synchronize.php:1213 +#: libraries/messages.inc.php:1057 server_synchronize.php:1213 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." msgstr "" -#: libraries/messages.inc.php:1062 server_synchronize.php:451 +#: libraries/messages.inc.php:1058 server_synchronize.php:451 #: server_synchronize.php:896 msgid "Synchronize Databases" msgstr "" -#: libraries/messages.inc.php:1063 libraries/server_links.inc.php:92 +#: libraries/messages.inc.php:1059 libraries/server_links.inc.php:92 #: server_synchronize.php:1092 server_synchronize.php:1100 msgid "Synchronize" msgstr "" -#: libraries/messages.inc.php:1065 server_synchronize.php:430 +#: libraries/messages.inc.php:1061 server_synchronize.php:430 #: server_synchronize.php:873 msgid "Add column(s)" msgstr "" -#: libraries/messages.inc.php:1066 tbl_create.php:62 +#: libraries/messages.inc.php:1062 tbl_create.php:62 #, fuzzy, php-format msgid "Table %s already exists!" msgstr "มีผู้ใช้ %s อยู่แล้ว!" -#: libraries/messages.inc.php:1067 server_synchronize.php:432 +#: libraries/messages.inc.php:1063 server_synchronize.php:432 #: server_synchronize.php:875 msgid "Alter column(s)" msgstr "" -#: libraries/messages.inc.php:1068 tbl_addfield.php:189 tbl_alter.php:103 +#: libraries/messages.inc.php:1064 tbl_addfield.php:189 tbl_alter.php:103 #: tbl_indexes.php:98 #, fuzzy, php-format msgid "Table %1$s has been altered successfully" msgstr "ลบผู้ใช้ที่เลือกไว้เรียบร้อยแล้ว." -#: libraries/messages.inc.php:1069 server_synchronize.php:434 +#: libraries/messages.inc.php:1065 server_synchronize.php:434 #: server_synchronize.php:877 msgid "Apply index(s)" msgstr "" -#: libraries/messages.inc.php:1071 server_synchronize.php:446 +#: libraries/messages.inc.php:1067 server_synchronize.php:446 #: server_synchronize.php:890 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: libraries/messages.inc.php:1072 tbl_move_copy.php:82 +#: libraries/messages.inc.php:1068 tbl_move_copy.php:82 msgid "The table name is empty!" msgstr "ชื่อตารางยังว่างอยู่!" -#: libraries/messages.inc.php:1073 tbl_create.php:249 +#: libraries/messages.inc.php:1069 tbl_create.php:249 #, fuzzy, php-format msgid "Table %1$s has been created." msgstr "โยนตาราง %s ทิ้งไปเรียบร้อยแล้ว" -#: libraries/messages.inc.php:1076 tbl_operations.php:628 +#: libraries/messages.inc.php:1072 tbl_operations.php:628 #, php-format msgid "Table %s has been flushed" msgstr "ล้างตาราง %s เรียบร้อยแล้ว" -#: libraries/messages.inc.php:1077 server_synchronize.php:436 +#: libraries/messages.inc.php:1073 server_synchronize.php:436 #: server_synchronize.php:879 msgid "Insert row(s)" msgstr "" -#: libraries/messages.inc.php:1078 libraries/tbl_links.inc.php:107 +#: libraries/messages.inc.php:1074 libraries/tbl_links.inc.php:107 #: libraries/tbl_links.inc.php:140 libraries/tbl_links.inc.php:141 msgid "Table seems to be empty!" msgstr "" -#: libraries/messages.inc.php:1079 tbl_operations.php:568 +#: libraries/messages.inc.php:1075 tbl_operations.php:568 msgid "Table maintenance" msgstr "การดูแลรักษาตาราง" -#: libraries/messages.inc.php:1080 libraries/tbl_properties.inc.php:618 +#: libraries/messages.inc.php:1076 libraries/tbl_properties.inc.php:618 #: server_synchronize.php:428 server_synchronize.php:871 msgid "Table name" msgstr "" -#: libraries/messages.inc.php:1081 pdf_schema.php:1116 +#: libraries/messages.inc.php:1077 pdf_schema.php:1116 msgid "Table of contents" msgstr "สารบัญ" -#: libraries/messages.inc.php:1082 tbl_operations.php:334 +#: libraries/messages.inc.php:1078 tbl_operations.php:334 msgid "Table options" msgstr "ตัวเลือกตาราง" -#: libraries/messages.inc.php:1083 server_synchronize.php:431 +#: libraries/messages.inc.php:1079 server_synchronize.php:431 #: server_synchronize.php:874 msgid "Remove column(s)" msgstr "" -#: libraries/messages.inc.php:1084 server_synchronize.php:433 +#: libraries/messages.inc.php:1080 server_synchronize.php:433 #: server_synchronize.php:876 msgid "Remove index(s)" msgstr "" -#: libraries/messages.inc.php:1088 server_synchronize.php:435 +#: libraries/messages.inc.php:1084 server_synchronize.php:435 #: server_synchronize.php:878 msgid "Update row(s)" msgstr "" -#: libraries/messages.inc.php:1090 server_synchronize.php:942 +#: libraries/messages.inc.php:1086 server_synchronize.php:942 msgid "Target database has been synchronized with source database" msgstr "" -#: libraries/messages.inc.php:1091 server_privileges.php:392 +#: libraries/messages.inc.php:1087 server_privileges.php:392 #: server_privileges.php:527 server_privileges.php:1679 #: server_privileges.php:1685 msgid "Table-specific privileges" msgstr "สิทธิเจาะจงเฉพาะตาราง" -#: libraries/messages.inc.php:1092 server_status.php:254 +#: libraries/messages.inc.php:1088 server_status.php:254 msgid "Temporary data" msgstr "" -#: libraries/messages.inc.php:1093 tbl_change.php:728 +#: libraries/messages.inc.php:1089 tbl_change.php:728 msgid " Because of its length,
this field might not be editable " msgstr "เนื่องจากความยาวของมัน
ฟิลด์นี้ ไม่อาจแก้ไขได้" -#: libraries/messages.inc.php:1094 +#: libraries/messages.inc.php:1090 msgid "Texy! text" msgstr "" -#: libraries/messages.inc.php:1095 libraries/mysql_charsets.lib.php:298 +#: libraries/messages.inc.php:1091 libraries/mysql_charsets.lib.php:298 #: libraries/mysql_charsets.lib.php:395 msgid "Thai" msgstr "ไทย" -#: libraries/messages.inc.php:1102 libraries/replication_gui.lib.php:308 +#: libraries/messages.inc.php:1098 libraries/replication_gui.lib.php:308 #: server_privileges.php:734 msgid "This Host" msgstr "โฮสต์นี้" -#: libraries/messages.inc.php:1103 server_status.php:252 +#: libraries/messages.inc.php:1099 server_status.php:252 msgid "Threads" msgstr "" -#: libraries/messages.inc.php:1104 server_processlist.php:22 +#: libraries/messages.inc.php:1100 server_processlist.php:22 #, php-format msgid "Thread %s was successfully killed." msgstr "เธรด %s ถูกทำลายเรียบร้อยแล้ว." -#: libraries/messages.inc.php:1106 +#: libraries/messages.inc.php:1102 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." msgstr "" -#: libraries/messages.inc.php:1109 pmd_pdf.php:94 +#: libraries/messages.inc.php:1105 pmd_pdf.php:94 msgid "to/from page" msgstr "" -#: libraries/messages.inc.php:1110 pdf_pages.php:343 +#: libraries/messages.inc.php:1106 pdf_pages.php:343 msgid "Toggle scratchboard" msgstr "" -#: libraries/messages.inc.php:1111 pmd_general.php:99 +#: libraries/messages.inc.php:1107 pmd_general.php:99 msgid "Toggle small/big" msgstr "" -#: libraries/messages.inc.php:1112 pmd_help.php:27 +#: libraries/messages.inc.php:1108 pmd_help.php:27 msgid "To select relation, click :" msgstr "" -#: libraries/messages.inc.php:1115 libraries/tbl_links.inc.php:149 +#: libraries/messages.inc.php:1111 libraries/tbl_links.inc.php:149 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" -#: libraries/messages.inc.php:1116 tbl_tracking.php:655 +#: libraries/messages.inc.php:1112 tbl_tracking.php:655 msgid "Activate now" msgstr "" -#: libraries/messages.inc.php:1117 tbl_tracking.php:653 +#: libraries/messages.inc.php:1113 tbl_tracking.php:653 #, php-format msgid "Activate tracking for %s.%s" msgstr "" -#: libraries/messages.inc.php:1118 tbl_tracking.php:221 +#: libraries/messages.inc.php:1114 tbl_tracking.php:221 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/messages.inc.php:1119 tbl_tracking.php:688 +#: libraries/messages.inc.php:1115 tbl_tracking.php:688 #, fuzzy msgid "Create version" msgstr "รุ่นของเซิร์ฟเวอร์" -#: libraries/messages.inc.php:1120 tbl_tracking.php:668 +#: libraries/messages.inc.php:1116 tbl_tracking.php:668 #, php-format msgid "Create version %s of %s.%s" msgstr "" -#: libraries/messages.inc.php:1122 tbl_tracking.php:412 +#: libraries/messages.inc.php:1118 tbl_tracking.php:412 msgid "Data definition statement" msgstr "" -#: libraries/messages.inc.php:1123 tbl_tracking.php:463 +#: libraries/messages.inc.php:1119 tbl_tracking.php:463 msgid "Data manipulation statement" msgstr "" -#: libraries/messages.inc.php:1124 tbl_tracking.php:410 tbl_tracking.php:461 +#: libraries/messages.inc.php:1120 tbl_tracking.php:410 tbl_tracking.php:461 #, fuzzy msgid "Date" msgstr "ข้อมูล" -#: libraries/messages.inc.php:1125 tbl_tracking.php:642 +#: libraries/messages.inc.php:1121 tbl_tracking.php:642 msgid "Deactivate now" msgstr "" -#: libraries/messages.inc.php:1126 tbl_tracking.php:640 +#: libraries/messages.inc.php:1122 tbl_tracking.php:640 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "" -#: libraries/messages.inc.php:1127 tbl_tracking.php:521 +#: libraries/messages.inc.php:1123 tbl_tracking.php:521 #, php-format msgid "Export as %s" msgstr "" -#: libraries/messages.inc.php:1130 tbl_tracking.php:251 tbl_tracking.php:379 +#: libraries/messages.inc.php:1126 tbl_tracking.php:251 tbl_tracking.php:379 msgid "Close" msgstr "" -#: libraries/messages.inc.php:1131 tbl_tracking.php:114 +#: libraries/messages.inc.php:1127 tbl_tracking.php:114 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/messages.inc.php:1133 tbl_tracking.php:397 tbl_tracking.php:504 +#: libraries/messages.inc.php:1129 tbl_tracking.php:397 tbl_tracking.php:504 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "" -#: libraries/messages.inc.php:1134 tbl_tracking.php:561 +#: libraries/messages.inc.php:1130 tbl_tracking.php:561 msgid "Show versions" msgstr "" -#: libraries/messages.inc.php:1135 tbl_tracking.php:507 +#: libraries/messages.inc.php:1131 tbl_tracking.php:507 msgid "SQL dump (file download)" msgstr "" -#: libraries/messages.inc.php:1136 tbl_tracking.php:508 +#: libraries/messages.inc.php:1132 tbl_tracking.php:508 msgid "SQL dump" msgstr "" -#: libraries/messages.inc.php:1137 tbl_tracking.php:213 +#: libraries/messages.inc.php:1133 tbl_tracking.php:213 msgid "SQL statements executed." msgstr "" -#: libraries/messages.inc.php:1138 +#: libraries/messages.inc.php:1134 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/messages.inc.php:1139 tbl_tracking.php:509 +#: libraries/messages.inc.php:1135 tbl_tracking.php:509 msgid "SQL execution" msgstr "" -#: libraries/messages.inc.php:1140 tbl_tracking.php:230 +#: libraries/messages.inc.php:1136 tbl_tracking.php:230 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/messages.inc.php:1141 tbl_tracking.php:381 +#: libraries/messages.inc.php:1137 tbl_tracking.php:381 msgid "Tracking statements" msgstr "" -#: libraries/messages.inc.php:1148 tbl_tracking.php:593 +#: libraries/messages.inc.php:1144 tbl_tracking.php:593 #, fuzzy msgid "Version" msgstr "รุ่นของ PHP" -#: libraries/messages.inc.php:1149 tbl_tracking.php:672 +#: libraries/messages.inc.php:1145 tbl_tracking.php:672 msgid "Track these data definition statements:" msgstr "" -#: libraries/messages.inc.php:1150 tbl_tracking.php:680 +#: libraries/messages.inc.php:1146 tbl_tracking.php:680 msgid "Track these data manipulation statements:" msgstr "" -#: libraries/messages.inc.php:1155 tbl_tracking.php:411 tbl_tracking.php:462 +#: libraries/messages.inc.php:1151 tbl_tracking.php:411 tbl_tracking.php:462 #, fuzzy msgid "Username" msgstr "ชื่อผู้ใช้:" -#: libraries/messages.inc.php:1156 tbl_tracking.php:203 +#: libraries/messages.inc.php:1152 tbl_tracking.php:203 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "" -#: libraries/messages.inc.php:1157 tbl_tracking.php:187 +#: libraries/messages.inc.php:1153 tbl_tracking.php:187 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "" -#: libraries/messages.inc.php:1158 tbl_tracking.php:195 +#: libraries/messages.inc.php:1154 tbl_tracking.php:195 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "" -#: libraries/messages.inc.php:1159 tbl_tracking.php:262 +#: libraries/messages.inc.php:1155 tbl_tracking.php:262 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/messages.inc.php:1161 tbl_tracking.php:220 +#: libraries/messages.inc.php:1157 tbl_tracking.php:220 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/messages.inc.php:1162 libraries/mysql_charsets.lib.php:219 +#: libraries/messages.inc.php:1158 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:362 msgid "Traditional Chinese" msgstr "จีน (ไต้หวัน)" -#: libraries/messages.inc.php:1163 libraries/mysql_charsets.lib.php:292 +#: libraries/messages.inc.php:1159 libraries/mysql_charsets.lib.php:292 msgid "Traditional Spanish" msgstr "สเปน (ดั้งเดิม)" -#: libraries/messages.inc.php:1164 server_status.php:388 +#: libraries/messages.inc.php:1160 server_status.php:388 msgid "Traffic" msgstr "การจราจร" -#: libraries/messages.inc.php:1165 server_status.php:261 +#: libraries/messages.inc.php:1161 server_status.php:261 msgid "Transaction coordinator" msgstr "" -#: libraries/messages.inc.php:1166 +#: libraries/messages.inc.php:1162 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 " @@ -6237,13 +6237,13 @@ msgid "" "need to set the first option to the empty string." msgstr "" -#: libraries/messages.inc.php:1167 +#: libraries/messages.inc.php:1163 msgid "" "Displays hexadecimal representation of data. Optional first parameter " "specifies how often space will be added (defaults to 2 nibbles)." msgstr "" -#: libraries/messages.inc.php:1168 +#: libraries/messages.inc.php:1164 msgid "" "Displays a clickable thumbnail. The options are the maximum width and height " "in pixels. The original aspect ratio is preserved." @@ -6251,15 +6251,15 @@ msgstr "" "แสดงรูปขนาดเล็กที่กดเข้าไปดูภาพใหญ่ได้; ตัวเลือก: ความกว้าง, ความสูง หน่วยเป็นพิกเซล " "(คงสัดส่วนเดิม)" -#: libraries/messages.inc.php:1169 +#: libraries/messages.inc.php:1165 msgid "Displays a link to download this image." msgstr "แสดงลิงก์ไปยังรูป (ดาวน์โหลดข้อมูลไบนารีโดยตรง/blob)." -#: libraries/messages.inc.php:1170 +#: libraries/messages.inc.php:1166 msgid "See image/jpeg: inline" msgstr "ดูรูปชนิด image/jpeg ทันที" -#: libraries/messages.inc.php:1171 +#: libraries/messages.inc.php:1167 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 " @@ -6271,7 +6271,7 @@ msgid "" "gmdate() function." msgstr "" -#: libraries/messages.inc.php:1172 +#: libraries/messages.inc.php:1168 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 " @@ -6285,31 +6285,31 @@ msgid "" "(Default 1)." msgstr "" -#: libraries/messages.inc.php:1173 +#: libraries/messages.inc.php:1169 msgid "" "Displays the contents of the field as-is, without running it through " "htmlspecialchars(). That is, the field is assumed to contain valid HTML." msgstr "สงวนการจัดรูปแบบเดิมในฟิลด์ไว้ -- ไม่แทรก escape character." -#: libraries/messages.inc.php:1174 +#: libraries/messages.inc.php:1170 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." msgstr "" -#: libraries/messages.inc.php:1175 +#: libraries/messages.inc.php:1171 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." msgstr "" -#: libraries/messages.inc.php:1176 +#: libraries/messages.inc.php:1172 msgid "Formats text as SQL query with syntax highlighting." msgstr "" -#: libraries/messages.inc.php:1177 +#: libraries/messages.inc.php:1173 msgid "" "Displays a part of a string. The first option is the number of characters to " "skip from the beginning of the string (Default 0). The second option is the " @@ -6318,71 +6318,71 @@ msgid "" "(Default: \"...\")." msgstr "" -#: libraries/messages.inc.php:1179 server_binlog.php:183 server_binlog.php:186 +#: libraries/messages.inc.php:1175 server_binlog.php:183 server_binlog.php:186 #: server_processlist.php:49 server_processlist.php:51 msgid "Truncate Shown Queries" msgstr "ตัดทอนคำค้นที่แสดง" -#: libraries/messages.inc.php:1180 libraries/mysql_charsets.lib.php:301 +#: libraries/messages.inc.php:1176 libraries/mysql_charsets.lib.php:301 #: libraries/mysql_charsets.lib.php:389 msgid "Turkish" msgstr "ตุรกี" -#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:304 +#: libraries/messages.inc.php:1179 libraries/mysql_charsets.lib.php:304 #: libraries/mysql_charsets.lib.php:386 msgid "Ukrainian" msgstr "ยูเครน" -#: libraries/messages.inc.php:1185 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:1181 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 msgid "Unicode" msgstr "ยูนิโค้ด" -#: libraries/messages.inc.php:1187 libraries/mysql_charsets.lib.php:398 +#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:398 #: libraries/mysql_charsets.lib.php:405 msgid "unknown" msgstr "ไม่ระบุ" -#: libraries/messages.inc.php:1190 server_privileges.php:1152 +#: libraries/messages.inc.php:1186 server_privileges.php:1152 #, php-format msgid "You have updated the privileges for %s." msgstr "คุณได้ปรับปรุงสิทธิสำหรับ %s แล้ว" -#: libraries/messages.inc.php:1191 user_password.php:112 +#: libraries/messages.inc.php:1187 user_password.php:112 msgid "The profile has been updated." msgstr "ปรับปรุงโพรไฟล์เรียบร้อยแล้ว" -#: libraries/messages.inc.php:1193 libraries/relation.lib.php:138 +#: libraries/messages.inc.php:1189 libraries/relation.lib.php:138 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "โปรดอ่านเอกสารเกี่ยวกับ วิธีการปรับปรุงตาราง Column_comments (เก็บหมายเหตุของคอลัมน์) " "ของคุณ" -#: libraries/messages.inc.php:1194 +#: libraries/messages.inc.php:1190 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/messages.inc.php:1204 tbl_printview.php:314 tbl_structure.php:661 +#: libraries/messages.inc.php:1200 tbl_printview.php:314 tbl_structure.php:661 msgid "Usage" msgstr "ใช้งาน" -#: libraries/messages.inc.php:1205 +#: libraries/messages.inc.php:1201 msgid "Enclose table and field names with backquotes" msgstr "ใส่ 'backqoute' ให้กับชื่อตารางและฟิลด์" -#: libraries/messages.inc.php:1206 libraries/replication_gui.lib.php:314 +#: libraries/messages.inc.php:1202 libraries/replication_gui.lib.php:314 #: server_privileges.php:740 msgid "Use Host Table" msgstr "" -#: libraries/messages.inc.php:1207 server_privileges.php:848 +#: libraries/messages.inc.php:1203 server_privileges.php:848 #, php-format msgid "The user %s already exists!" msgstr "มีผู้ใช้ %s อยู่แล้ว!" -#: libraries/messages.inc.php:1209 libraries/replication_gui.lib.php:55 +#: libraries/messages.inc.php:1205 libraries/replication_gui.lib.php:55 #: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245 #: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255 #: server_privileges.php:672 server_privileges.php:675 @@ -6390,35 +6390,35 @@ msgstr "มีผู้ใช้ %s อยู่แล้ว!" msgid "User name" msgstr "ชื่อผู้ใช้" -#: libraries/messages.inc.php:1210 server_privileges.php:1645 +#: libraries/messages.inc.php:1206 server_privileges.php:1645 msgid "The selected user was not found in the privilege table." msgstr "ไม่พบผู้ใช้ที่เลือกในตารางแสดงสิทธิ" -#: libraries/messages.inc.php:1211 server_privileges.php:1365 +#: libraries/messages.inc.php:1207 server_privileges.php:1365 msgid "User overview" msgstr "ข้อมูลทั่วไปของผู้ใช้" -#: libraries/messages.inc.php:1212 server_privileges.php:1261 +#: libraries/messages.inc.php:1208 server_privileges.php:1261 msgid "The selected users have been deleted successfully." msgstr "ลบผู้ใช้ที่เลือกไว้เรียบร้อยแล้ว." -#: libraries/messages.inc.php:1213 server_privileges.php:2026 +#: libraries/messages.inc.php:1209 server_privileges.php:2026 #, php-format msgid "Users having access to "%s"" msgstr "ผู้ใช้มีสิทธิเข้าถึงฐานข้อมูล "%s"" -#: libraries/messages.inc.php:1214 main.php:189 server_privileges.php:1350 +#: libraries/messages.inc.php:1210 main.php:189 server_privileges.php:1350 #: server_privileges.php:1497 server_privileges.php:1611 #: server_privileges.php:2029 server_processlist.php:54 msgid "User" msgstr "ผู้ใช้" -#: libraries/messages.inc.php:1215 tbl_change.php:1171 +#: libraries/messages.inc.php:1211 tbl_change.php:1171 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/messages.inc.php:1217 libraries/replication_gui.lib.php:251 +#: libraries/messages.inc.php:1213 libraries/replication_gui.lib.php:251 #: libraries/replication_gui.lib.php:319 libraries/replication_gui.lib.php:342 #: server_privileges.php:678 server_privileges.php:745 #: server_privileges.php:769 server_privileges.php:1889 @@ -6426,7 +6426,7 @@ msgstr "" msgid "Use text field" msgstr "ใช้ช่องใส่ข้อความ (text field)" -#: libraries/messages.inc.php:1221 libraries/sqlvalidator.lib.php:68 +#: libraries/messages.inc.php:1217 libraries/sqlvalidator.lib.php:68 #, php-format msgid "" "The SQL validator could not be initialized. Please check if you have " @@ -6435,86 +6435,86 @@ msgstr "" "ไม่สามารถเริ่มตัวตรวจสอบ SQL ได้. กรุณาตรวจสอบว่า คุณได้ติดตั้ง php extensions ที่จำเป็น " "ดังที่อธิบายไว้ใน %sdocumentation%s เรียบร้อยแล้ว" -#: libraries/messages.inc.php:1222 libraries/replication_gui.lib.php:111 +#: libraries/messages.inc.php:1218 libraries/replication_gui.lib.php:111 #: server_status.php:627 tbl_change.php:324 tbl_printview.php:370 #: tbl_select.php:139 tbl_structure.php:730 msgid "Value" msgstr "ค่า" -#: libraries/messages.inc.php:1223 libraries/replication_gui.lib.php:110 +#: libraries/messages.inc.php:1219 libraries/replication_gui.lib.php:110 #: libraries/sql_query_form.lib.php:445 server_status.php:626 #: server_variables.php:52 msgid "Variable" msgstr "ตัวแปร" -#: libraries/messages.inc.php:1225 server_export.php:21 +#: libraries/messages.inc.php:1221 server_export.php:21 #, fuzzy msgid "View dump (schema) of databases" msgstr "ดูโครงสร้างของฐานข้อมูล" -#: libraries/messages.inc.php:1227 tbl_export.php:23 +#: libraries/messages.inc.php:1223 tbl_export.php:23 msgid "View dump (schema) of table" msgstr "ดูโครงสร้างของตาราง" -#: libraries/messages.inc.php:1231 view_create.php:142 +#: libraries/messages.inc.php:1227 view_create.php:142 msgid "VIEW name" msgstr "" -#: libraries/messages.inc.php:1237 main.php:205 +#: libraries/messages.inc.php:1233 main.php:205 msgid "Web server" msgstr "" -#: libraries/messages.inc.php:1239 libraries/mysql_charsets.lib.php:277 +#: libraries/messages.inc.php:1235 libraries/mysql_charsets.lib.php:277 #: libraries/mysql_charsets.lib.php:325 msgid "West European" msgstr "ยุโรปตะวันตก" -#: libraries/messages.inc.php:1240 main.php:230 +#: libraries/messages.inc.php:1236 main.php:230 msgid "Wiki" msgstr "" -#: libraries/messages.inc.php:1241 server_privileges.php:2138 +#: libraries/messages.inc.php:1237 server_privileges.php:2138 msgid "wildcard" msgstr "ไวล์การ์ด" -#: libraries/messages.inc.php:1248 +#: libraries/messages.inc.php:1244 msgid "Export contents" msgstr "" -#: libraries/messages.inc.php:1249 +#: libraries/messages.inc.php:1245 msgid "Export functions" msgstr "" -#: libraries/messages.inc.php:1250 +#: libraries/messages.inc.php:1246 msgid "Export procedures" msgstr "" -#: libraries/messages.inc.php:1251 +#: libraries/messages.inc.php:1247 msgid "Export Structure Schemas (recommended)" msgstr "" -#: libraries/messages.inc.php:1252 +#: libraries/messages.inc.php:1248 #, fuzzy msgid "Export tables" msgstr "ไม่มีตาราง" -#: libraries/messages.inc.php:1253 +#: libraries/messages.inc.php:1249 msgid "Export triggers" msgstr "" -#: libraries/messages.inc.php:1254 +#: libraries/messages.inc.php:1250 msgid "Export views" msgstr "" -#: libraries/messages.inc.php:1255 +#: libraries/messages.inc.php:1251 msgid "XML" msgstr "XML" -#: libraries/messages.inc.php:1259 server_privileges.php:592 +#: libraries/messages.inc.php:1255 server_privileges.php:592 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "โปรดทราบ: ถ้าเปลี่ยนค่าเหล่านี้เป็น 0 (ศูนย์) จะหมายถึง ไม่มีขีดจำกัด." -#: libraries/messages.inc.php:1260 +#: libraries/messages.inc.php:1256 msgid "\"zipped\"" msgstr "\"ถูกบีบอัดอยู่ (zip)\"" diff --git a/po/tr.po b/po/tr.po index 9fd997835..4bcd6c4b3 100644 --- a/po/tr.po +++ b/po/tr.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-05-13 11:25+0200\n" +"POT-Creation-Date: 2010-05-13 11:30+0200\n" "PO-Revision-Date: 2010-04-03 11:44+0200\n" "Last-Translator: \n" "Language-Team: turkish \n" @@ -15,19 +15,19 @@ msgstr "" "X-Generator: Pootle 2.0.1\n" #: browse_foreigners.php:38 browse_foreigners.php:59 -#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:870 +#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:866 #: server_privileges.php:1475 msgid "Show all" msgstr "Tümünü göster" #: browse_foreigners.php:82 db_operations.php:648 -#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:394 -#: libraries/export/pdf.php:147 libraries/messages.inc.php:597 +#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394 +#: libraries/export/pdf.php:147 libraries/messages.inc.php:593 #: pdf_schema.php:283 pdf_schema.php:1123 pdf_schema.php:1139 msgid "Page number:" msgstr "Sayfa numarası:" -#: browse_foreigners.php:132 libraries/messages.inc.php:1242 +#: browse_foreigners.php:132 libraries/messages.inc.php:1238 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -40,7 +40,7 @@ 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/db_links.inc.php:75 -#: libraries/messages.inc.php:841 libraries/tbl_links.inc.php:63 +#: libraries/messages.inc.php:837 libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Ara" @@ -49,12 +49,12 @@ msgstr "Ara" #: db_search.php:362 db_structure.php:567 js/messages.php:48 #: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2267 +#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 #: 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 #: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614 -#: libraries/messages.inc.php:361 libraries/replication_gui.lib.php:73 +#: libraries/messages.inc.php:357 libraries/replication_gui.lib.php:73 #: libraries/replication_gui.lib.php:365 libraries/select_server.lib.php:104 #: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477 #: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782 @@ -74,33 +74,33 @@ msgid "Go" msgstr "Git" #: browse_foreigners.php:168 browse_foreigners.php:172 -#: libraries/Index.class.php:442 libraries/messages.inc.php:459 +#: libraries/Index.class.php:442 libraries/messages.inc.php:455 #: tbl_tracking.php:320 msgid "Keyname" msgstr "Anahtar ismi" #: browse_foreigners.php:169 browse_foreigners.php:171 -#: libraries/messages.inc.php:252 server_collations.php:55 +#: libraries/messages.inc.php:248 server_collations.php:55 #: server_collations.php:67 server_engines.php:59 server_status.php:628 msgid "Description" msgstr "Açıklama" #: browse_foreigners.php:247 browse_foreigners.php:256 #: browse_foreigners.php:268 browse_foreigners.php:276 -#: libraries/messages.inc.php:1218 +#: libraries/messages.inc.php:1214 msgid "Use this value" msgstr "Bu değeri kullan" -#: db_create.php:46 libraries/messages.inc.php:215 +#: db_create.php:46 libraries/messages.inc.php:211 #, php-format msgid "Database %1$s has been created." msgstr "Veritabanı %1$s oluşturuldu." -#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:232 +#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:228 msgid "Database comment: " msgstr "Veritabanı yorumu:" -#: db_datadict.php:165 libraries/messages.inc.php:1070 +#: db_datadict.php:165 libraries/messages.inc.php:1066 #: libraries/tbl_properties.inc.php:724 pdf_schema.php:1236 #: tbl_operations.php:345 tbl_printview.php:130 msgid "Table comments" @@ -109,7 +109,7 @@ msgstr "Tablo yorumları" #: db_datadict.php:174 db_qbe.php:174 libraries/Index.class.php:446 #: libraries/export/htmlword.php:244 libraries/export/latex.php:360 #: libraries/export/odt.php:294 libraries/export/texytext.php:233 -#: libraries/messages.inc.php:317 libraries/tbl_properties.inc.php:99 +#: libraries/messages.inc.php:313 libraries/tbl_properties.inc.php:99 #: libraries/tbl_properties.inc.php:275 pdf_schema.php:1262 #: pdf_schema.php:1283 tbl_change.php:308 tbl_indexes.php:189 #: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135 @@ -121,7 +121,7 @@ msgstr "Alan" #: libraries/db_events.inc.php:31 libraries/db_routines.inc.php:42 #: 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/messages.inc.php:1181 +#: libraries/export/texytext.php:234 libraries/messages.inc.php:1177 #: libraries/tbl_properties.inc.php:100 pdf_schema.php:1263 #: pdf_schema.php:1284 server_privileges.php:2031 tbl_change.php:287 #: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313 @@ -133,7 +133,7 @@ msgstr "Türü" #: db_datadict.php:177 libraries/Index.class.php:449 #: libraries/export/htmlword.php:246 libraries/export/latex.php:360 #: libraries/export/odt.php:300 libraries/export/texytext.php:235 -#: libraries/messages.inc.php:576 libraries/tbl_properties.inc.php:109 +#: libraries/messages.inc.php:572 libraries/tbl_properties.inc.php:109 #: pdf_schema.php:1265 pdf_schema.php:1286 tbl_change.php:323 #: tbl_printview.php:145 tbl_structure.php:181 tbl_tracking.php:276 #: tbl_tracking.php:327 @@ -142,7 +142,7 @@ msgstr "Boş" #: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 -#: libraries/export/texytext.php:236 libraries/messages.inc.php:238 +#: libraries/export/texytext.php:236 libraries/messages.inc.php:234 #: libraries/tbl_properties.inc.php:106 pdf_schema.php:1266 #: pdf_schema.php:1287 tbl_printview.php:146 tbl_structure.php:182 #: tbl_tracking.php:277 @@ -151,14 +151,14 @@ msgstr "Varsayılan" #: db_datadict.php:182 libraries/export/htmlword.php:249 #: libraries/export/latex.php:362 libraries/export/odt.php:307 -#: libraries/export/texytext.php:238 libraries/messages.inc.php:483 +#: libraries/export/texytext.php:238 libraries/messages.inc.php:479 #: pdf_schema.php:1268 pdf_schema.php:1289 tbl_printview.php:150 msgid "Links to" msgstr "Şuna bağlantı ver ->" #: db_datadict.php:184 db_printview.php:112 libraries/export/htmlword.php:252 #: libraries/export/latex.php:365 libraries/export/odt.php:312 -#: libraries/export/texytext.php:241 libraries/messages.inc.php:163 +#: libraries/export/texytext.php:241 libraries/messages.inc.php:159 #: libraries/tbl_properties.inc.php:130 pdf_schema.php:1279 #: pdf_schema.php:1290 tbl_printview.php:152 msgid "Comments" @@ -167,7 +167,7 @@ msgstr "Yorumlar" #: db_datadict.php:267 libraries/Index.class.php:359 #: 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/messages.inc.php:559 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:555 #: libraries/mult_submits.inc.php:263 pdf_schema.php:1344 #: server_privileges.php:1529 server_privileges.php:1540 #: server_privileges.php:1850 server_privileges.php:1855 @@ -179,7 +179,7 @@ msgstr "Hayır" #: db_datadict.php:267 libraries/Index.class.php:360 #: libraries/Index.class.php:385 libraries/export/htmlword.php:322 #: libraries/export/latex.php:430 libraries/export/odt.php:368 -#: libraries/export/texytext.php:311 libraries/messages.inc.php:1257 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:1253 #: libraries/mult_submits.inc.php:45 libraries/mult_submits.inc.php:50 #: libraries/mult_submits.inc.php:55 libraries/mult_submits.inc.php:60 #: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:101 @@ -193,108 +193,108 @@ msgstr "Hayır" msgid "Yes" msgstr "Evet" -#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:670 +#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:666 #: tbl_printview.php:498 msgid "Print" msgstr "Yazdır" -#: db_export.php:29 libraries/messages.inc.php:1226 +#: db_export.php:29 libraries/messages.inc.php:1222 msgid "View dump (schema) of database" msgstr "Veritabanının dökümünü (şemasını) göster" #: db_export.php:33 db_printview.php:96 db_qbe.php:102 db_structure.php:51 -#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:568 +#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:564 #: navigation.php:346 msgid "No tables found in database." msgstr "Veritabanında tablo bulunamadı." -#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:845 +#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:841 #: server_export.php:27 msgid "Select All" msgstr "Tümünü Seç" -#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1188 +#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1184 #: server_export.php:29 msgid "Unselect All" msgstr "Tüm Seçimi Kaldır" -#: db_operations.php:38 libraries/messages.inc.php:213 tbl_create.php:54 +#: db_operations.php:38 libraries/messages.inc.php:209 tbl_create.php:54 msgid "The database name is empty!" msgstr "Veritabanı adı boş!" -#: db_operations.php:236 libraries/messages.inc.php:753 +#: db_operations.php:236 libraries/messages.inc.php:749 #, php-format msgid "Database %s has been renamed to %s" msgstr "%s veritabanı %s olarak yeniden adlandırıldı" -#: db_operations.php:240 libraries/messages.inc.php:178 +#: db_operations.php:240 libraries/messages.inc.php:174 #, php-format msgid "Database %s has been copied to %s" msgstr "%s veritabanı %s'e kopyalandı." -#: db_operations.php:410 libraries/messages.inc.php:236 +#: db_operations.php:410 libraries/messages.inc.php:232 msgid "Rename database to" msgstr "Veritabanını şuna yeniden adlandır" -#: db_operations.php:415 libraries/messages.inc.php:161 +#: db_operations.php:415 libraries/messages.inc.php:157 #: server_processlist.php:57 msgid "Command" msgstr "Komut" -#: db_operations.php:425 libraries/messages.inc.php:58 tbl_change.php:1143 +#: db_operations.php:425 libraries/messages.inc.php:54 tbl_change.php:1143 msgid "and then" msgstr "ve sonra" -#: db_operations.php:451 libraries/messages.inc.php:233 +#: db_operations.php:451 libraries/messages.inc.php:229 msgid "Copy database to" msgstr "Veritabanını şuraya kopyala:" -#: db_operations.php:458 libraries/messages.inc.php:1043 +#: db_operations.php:458 libraries/messages.inc.php:1039 #: tbl_operations.php:526 tbl_tracking.php:388 msgid "Structure only" msgstr "Sadece yapı" -#: db_operations.php:459 libraries/messages.inc.php:1041 +#: db_operations.php:459 libraries/messages.inc.php:1037 #: tbl_operations.php:527 tbl_tracking.php:390 msgid "Structure and data" msgstr "Yapı ve Veri" -#: db_operations.php:460 libraries/messages.inc.php:229 tbl_operations.php:528 +#: db_operations.php:460 libraries/messages.inc.php:225 tbl_operations.php:528 #: tbl_tracking.php:389 msgid "Data only" msgstr "Sadece veri" -#: db_operations.php:468 libraries/messages.inc.php:186 +#: db_operations.php:468 libraries/messages.inc.php:182 msgid "CREATE DATABASE before copying" msgstr "Kopyalamadan önce CREATE DATABASE (Veritabanı Oluştur)" #: db_operations.php:471 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 -#: libraries/export/sql.php:82 libraries/messages.inc.php:30 +#: libraries/export/sql.php:82 libraries/messages.inc.php:26 #: tbl_operations.php:534 #, php-format msgid "Add %s" msgstr "%s komutu ekle" -#: db_operations.php:475 libraries/messages.inc.php:29 tbl_operations.php:297 +#: db_operations.php:475 libraries/messages.inc.php:25 tbl_operations.php:297 #: tbl_operations.php:536 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT değeri ekle" -#: db_operations.php:479 libraries/messages.inc.php:31 tbl_operations.php:543 +#: db_operations.php:479 libraries/messages.inc.php:27 tbl_operations.php:543 msgid "Add constraints" msgstr "Kısıtlamaları ekle" -#: db_operations.php:492 libraries/messages.inc.php:1059 +#: db_operations.php:492 libraries/messages.inc.php:1055 msgid "Switch to copied database" msgstr "Kopyalanmış veritabanına geç." -#: db_operations.php:533 libraries/messages.inc.php:89 +#: db_operations.php:533 libraries/messages.inc.php:85 msgid "BLOB Repository" msgstr "BLOB Havuzu" #: db_operations.php:536 db_tracking.php:76 libraries/common.lib.php:1350 -#: libraries/messages.inc.php:1037 libraries/server_links.inc.php:49 +#: libraries/messages.inc.php:1033 libraries/server_links.inc.php:49 #: server_processlist.php:59 tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "Durum" @@ -306,11 +306,11 @@ msgctxt "BLOB repository" msgid "Enabled" msgstr "Etkin" -#: db_operations.php:548 libraries/messages.inc.php:93 +#: db_operations.php:548 libraries/messages.inc.php:89 msgid "Disable" msgstr "Etkisiz" -#: db_operations.php:558 libraries/messages.inc.php:90 +#: db_operations.php:558 libraries/messages.inc.php:86 msgid "Damaged" msgstr "Hasarlı" @@ -328,12 +328,12 @@ msgctxt "BLOB repository" msgid "Disabled" msgstr "Etkisiz" -#: db_operations.php:574 libraries/messages.inc.php:96 +#: db_operations.php:574 libraries/messages.inc.php:92 msgid "Enable" msgstr "Etkin" #: db_operations.php:598 libraries/Index.class.php:448 -#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:158 +#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:154 #: 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:361 @@ -342,7 +342,7 @@ msgstr "Etkin" msgid "Collation" msgstr "Karşılaştırma" -#: db_operations.php:609 libraries/messages.inc.php:742 main.php:316 +#: db_operations.php:609 libraries/messages.inc.php:738 main.php:316 #: pdf_schema.php:34 #, php-format msgid "" @@ -352,58 +352,58 @@ msgstr "" "Bağlı tablolar ile çalışan ilave özellikler etkisizleştirildi. Nedenini " "öğrenmek için %sburaya%s tıklayın." -#: db_operations.php:645 libraries/messages.inc.php:264 pdf_pages.php:528 +#: db_operations.php:645 libraries/messages.inc.php:260 pdf_pages.php:528 msgid "Display PDF schema" msgstr "PDF şemasını göster" -#: db_operations.php:661 libraries/messages.inc.php:877 pdf_pages.php:529 +#: db_operations.php:661 libraries/messages.inc.php:873 pdf_pages.php:529 msgid "Show grid" msgstr "Izgara göster" -#: db_operations.php:664 libraries/messages.inc.php:874 pdf_pages.php:530 +#: db_operations.php:664 libraries/messages.inc.php:870 pdf_pages.php:530 msgid "Show color" msgstr "Rengi göster" -#: db_operations.php:666 libraries/messages.inc.php:998 pdf_pages.php:531 +#: db_operations.php:666 libraries/messages.inc.php:994 pdf_pages.php:531 msgid "Show dimension of tables" msgstr "Tabloların boyutlarını göster" -#: db_operations.php:669 libraries/messages.inc.php:52 pdf_pages.php:532 +#: db_operations.php:669 libraries/messages.inc.php:48 pdf_pages.php:532 msgid "Display all tables with the same width" msgstr "Bütün tablolar aynı genişlikte gösterilsin?" -#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:227 +#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:223 #: pdf_pages.php:533 msgid "Data Dictionary" msgstr "Veri sözlüğü" -#: db_operations.php:674 libraries/messages.inc.php:884 pdf_pages.php:534 +#: db_operations.php:674 libraries/messages.inc.php:880 pdf_pages.php:534 msgid "Only show keys" msgstr "Sadece anahtarları göster" -#: db_operations.php:676 libraries/messages.inc.php:875 pdf_pages.php:535 +#: db_operations.php:676 libraries/messages.inc.php:871 pdf_pages.php:535 msgid "Data Dictionary Format" msgstr "Veri Sözlüğü Biçimi" -#: db_operations.php:678 libraries/messages.inc.php:464 pdf_pages.php:537 +#: db_operations.php:678 libraries/messages.inc.php:460 pdf_pages.php:537 msgid "Landscape" msgstr "Peyzaj" -#: db_operations.php:679 libraries/messages.inc.php:663 pdf_pages.php:538 +#: db_operations.php:679 libraries/messages.inc.php:659 pdf_pages.php:538 msgid "Portrait" msgstr "Portre" -#: db_operations.php:682 libraries/messages.inc.php:599 pdf_pages.php:541 +#: db_operations.php:682 libraries/messages.inc.php:595 pdf_pages.php:541 msgid "Paper size" msgstr "Kağıt boyutu" -#: db_operations.php:706 libraries/messages.inc.php:281 +#: db_operations.php:706 libraries/messages.inc.php:277 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 libraries/messages.inc.php:1087 +#: libraries/header.inc.php:126 libraries/messages.inc.php:1083 #: pdf_pages.php:405 server_privileges.php:1626 server_privileges.php:1682 #: server_privileges.php:1946 server_synchronize.php:423 #: server_synchronize.php:866 tbl_tracking.php:592 test/theme.php:75 @@ -411,176 +411,176 @@ msgid "Table" msgstr "Tablo:" #: db_printview.php:105 libraries/db_structure.lib.php:56 -#: libraries/messages.inc.php:735 +#: libraries/messages.inc.php:731 msgid "Records" msgstr "Kayıtlar" #: db_printview.php:109 libraries/db_structure.lib.php:67 -#: libraries/messages.inc.php:1003 tbl_indexes.php:190 +#: libraries/messages.inc.php:999 tbl_indexes.php:190 msgid "Size" msgstr "Boyut" #: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 -#: libraries/export/sql.php:899 libraries/messages.inc.php:436 +#: libraries/export/sql.php:899 libraries/messages.inc.php:432 msgid "in use" msgstr "kullanımda" #: db_printview.php:187 libraries/db_info.inc.php:88 -#: libraries/export/sql.php:514 libraries/messages.inc.php:1032 +#: libraries/export/sql.php:514 libraries/messages.inc.php:1028 #: pdf_schema.php:1241 tbl_printview.php:434 tbl_structure.php:810 msgid "Creation" msgstr "Oluşturma" #: db_printview.php:196 libraries/db_info.inc.php:93 -#: libraries/export/sql.php:519 libraries/messages.inc.php:1036 +#: libraries/export/sql.php:519 libraries/messages.inc.php:1032 #: pdf_schema.php:1246 tbl_printview.php:444 tbl_structure.php:818 msgid "Last update" msgstr "Son güncellenme" #: db_printview.php:205 libraries/db_info.inc.php:98 -#: libraries/export/sql.php:524 libraries/messages.inc.php:1031 +#: libraries/export/sql.php:524 libraries/messages.inc.php:1027 #: pdf_schema.php:1251 tbl_printview.php:454 tbl_structure.php:826 msgid "Last check" msgstr "Son kontrol" -#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1085 +#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1081 #, php-format msgid "%s table(s)" msgstr "%s tablo" #: db_qbe.php:29 libraries/display_tbl.lib.php:1981 -#: libraries/messages.inc.php:1051 libraries/sql_query_form.lib.php:140 +#: libraries/messages.inc.php:1047 libraries/sql_query_form.lib.php:140 #: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131 #: view_operations.php:62 msgid "Your SQL query has been executed successfully" msgstr "SQL sorgunuz başarılı olarak çalıştırıldı" -#: db_qbe.php:42 libraries/messages.inc.php:371 +#: db_qbe.php:42 libraries/messages.inc.php:367 msgid "You have to choose at least one column to display" msgstr "Görüntülemek için en az bir sütun seçmelisiniz" #: db_qbe.php:200 libraries/db_structure.lib.php:104 -#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1014 +#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1010 msgid "Sort" msgstr "Sırala" #: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111 #: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828 -#: libraries/messages.inc.php:69 server_databases.php:170 +#: libraries/messages.inc.php:65 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314 msgid "Ascending" msgstr "Küçükten Büyüğe" #: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119 #: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825 -#: libraries/messages.inc.php:251 server_databases.php:170 +#: libraries/messages.inc.php:247 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315 msgid "Descending" msgstr "Büyükten Küçüğe" #: db_qbe.php:264 db_tracking.php:78 libraries/display_tbl.lib.php:308 -#: libraries/messages.inc.php:888 tbl_change.php:277 tbl_tracking.php:597 +#: libraries/messages.inc.php:884 tbl_change.php:277 tbl_tracking.php:597 msgid "Show" msgstr "Göster" -#: db_qbe.php:300 libraries/messages.inc.php:202 +#: db_qbe.php:300 libraries/messages.inc.php:198 msgid "Criteria" msgstr "Kriter" #: db_qbe.php:353 db_qbe.php:435 db_qbe.php:527 db_qbe.php:558 -#: libraries/messages.inc.php:718 +#: libraries/messages.inc.php:714 msgid "Ins" msgstr "Ins" #: db_qbe.php:357 db_qbe.php:439 db_qbe.php:524 db_qbe.php:555 -#: libraries/messages.inc.php:56 +#: libraries/messages.inc.php:52 msgid "And" msgstr "Ve" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:529 db_qbe.php:560 -#: libraries/messages.inc.php:717 +#: libraries/messages.inc.php:713 msgid "Del" 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/messages.inc.php:592 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:588 #: libraries/tbl_properties.inc.php:779 server_privileges.php:258 #: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288 msgid "Or" msgstr "Veya" -#: db_qbe.php:507 libraries/messages.inc.php:516 +#: db_qbe.php:507 libraries/messages.inc.php:512 msgid "Modify" msgstr "Değiştir" -#: db_qbe.php:584 libraries/messages.inc.php:33 +#: db_qbe.php:584 libraries/messages.inc.php:29 msgid "Add/Delete Criteria Row" msgstr "Kriter Satırı Ekle/Sil" -#: db_qbe.php:596 libraries/messages.inc.php:32 +#: db_qbe.php:596 libraries/messages.inc.php:28 msgid "Add/Delete Field Columns" msgstr "Alan Sütunları Ekle/Sil" -#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1192 +#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1188 msgid "Update Query" msgstr "Sorguyu Güncelle" -#: db_qbe.php:617 libraries/messages.inc.php:1216 +#: db_qbe.php:617 libraries/messages.inc.php:1212 msgid "Use Tables" msgstr "Tabloları kullan" -#: db_qbe.php:640 libraries/messages.inc.php:723 +#: db_qbe.php:640 libraries/messages.inc.php:719 #, php-format msgid "SQL query on database %s:" msgstr "%s veritabanındaki SQL sorgusu:" -#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:823 +#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:819 msgid "Submit Query" msgstr "Sorguyu Gönder" #: db_search.php:68 libraries/auth/config.auth.lib.php:84 #: libraries/auth/config.auth.lib.php:103 #: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52 -#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:26 +#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:22 msgid "Access denied" msgstr "Erişim engellendi" -#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:836 +#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:832 msgid "at least one of the words" msgstr "kelimelerin en azından biri" -#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:837 +#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:833 msgid "all words" msgstr "tüm kelimeler" -#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:838 +#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:834 msgid "the exact phrase" msgstr "kesin ifade" -#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:839 +#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:835 msgid "as regular expression" msgstr "kurallı ifade olarak" -#: db_search.php:242 libraries/messages.inc.php:840 +#: db_search.php:242 libraries/messages.inc.php:836 #, php-format msgid "Search results for \"%s\" %s:" msgstr "\"%s\" %s için arama sonuçları:" -#: db_search.php:260 libraries/messages.inc.php:579 +#: db_search.php:260 libraries/messages.inc.php:575 #, php-format msgid "%s match(es) inside table %s" 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/messages.inc.php:108 +#: db_structure.php:105 libraries/messages.inc.php:104 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468 msgid "Browse" msgstr "Gözat" #: db_search.php:272 libraries/display_tbl.lib.php:1165 -#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:243 +#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:239 #: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406 #: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377 #: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216 @@ -588,45 +588,45 @@ msgstr "Gözat" msgid "Delete" msgstr "Sil" -#: db_search.php:285 libraries/messages.inc.php:580 +#: db_search.php:285 libraries/messages.inc.php:576 #, php-format msgid "Total: %s match(es)" msgstr "Toplam: %s eşleşme" -#: db_search.php:299 libraries/messages.inc.php:832 +#: db_search.php:299 libraries/messages.inc.php:828 msgid "Search in database" msgstr "Veritabanında ara" -#: db_search.php:302 libraries/messages.inc.php:835 +#: db_search.php:302 libraries/messages.inc.php:831 msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgstr "Aranacak kelime(ler) veya değer(ler) ( joker: \"%\" ):" -#: db_search.php:307 libraries/messages.inc.php:842 +#: db_search.php:307 libraries/messages.inc.php:838 msgid "Find:" msgstr "Bul:" -#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1017 +#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1013 msgid "Words are separated by a space character (\" \")." msgstr "Kelimeler boşlukla ayrılır (\" \")." -#: db_search.php:325 libraries/messages.inc.php:834 +#: db_search.php:325 libraries/messages.inc.php:830 msgid "Inside table(s):" msgstr "Tablo içindeki(ler):" -#: db_search.php:355 libraries/messages.inc.php:833 +#: db_search.php:355 libraries/messages.inc.php:829 msgid "Inside field:" msgstr "İç alan:" #: db_structure.php:81 db_structure.php:82 db_structure.php:94 #: db_structure.php:95 db_structure.php:107 db_structure.php:108 -#: libraries/messages.inc.php:431 libraries/sql_query_form.lib.php:334 +#: libraries/messages.inc.php:427 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/db_links.inc.php:63 libraries/export/latex.php:337 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:1048 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:1044 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 #: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269 msgid "Structure" @@ -635,8 +635,8 @@ 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:1642 -#: libraries/db_links.inc.php:100 libraries/messages.inc.php:272 +#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/db_links.inc.php:100 libraries/messages.inc.php:268 #: 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 @@ -646,40 +646,40 @@ 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:1641 -#: libraries/messages.inc.php:284 libraries/mult_submits.inc.php:39 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: libraries/messages.inc.php:280 libraries/mult_submits.inc.php:39 #: libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Boşalt" -#: db_structure.php:316 libraries/messages.inc.php:1075 +#: db_structure.php:316 libraries/messages.inc.php:1071 #: libraries/tbl_links.inc.php:100 #, php-format msgid "Table %s has been emptied" msgstr "%s tablosu boşaltıldı" -#: db_structure.php:326 libraries/messages.inc.php:1229 +#: db_structure.php:326 libraries/messages.inc.php:1225 #: 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/messages.inc.php:1074 +#: db_structure.php:326 libraries/messages.inc.php:1070 #: libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "%s tablosu kaldırıldı" -#: db_structure.php:333 libraries/messages.inc.php:1128 +#: db_structure.php:333 libraries/messages.inc.php:1124 msgid "Tracking is active." msgstr "İzleme aktif." -#: db_structure.php:335 libraries/messages.inc.php:1129 +#: db_structure.php:335 libraries/messages.inc.php:1125 msgid "Tracking is not active." msgstr "İzleme aktif değil." #: db_structure.php:420 libraries/display_tbl.lib.php:1944 -#: libraries/messages.inc.php:1228 +#: libraries/messages.inc.php:1224 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -689,83 +689,83 @@ msgstr "" "belgesinden yararlanın." #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 -#: libraries/messages.inc.php:1233 libraries/tbl_info.inc.php:66 +#: libraries/messages.inc.php:1229 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/messages.inc.php:773 libraries/server_links.inc.php:70 +#: libraries/messages.inc.php:769 libraries/server_links.inc.php:70 #: server_replication.php:33 server_replication.php:164 server_status.php:258 msgid "Replication" msgstr "Kopya etme" -#: db_structure.php:489 libraries/messages.inc.php:1053 +#: db_structure.php:489 libraries/messages.inc.php:1049 msgid "Sum" msgstr "Toplam" #: db_structure.php:496 libraries/StorageEngine.class.php:356 -#: libraries/messages.inc.php:239 +#: libraries/messages.inc.php:235 #, 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 #: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086 -#: libraries/messages.inc.php:1243 libraries/mult_submits.inc.php:16 +#: libraries/messages.inc.php:1239 libraries/mult_submits.inc.php:16 #: server_databases.php:346 server_databases.php:351 #: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465 msgid "With selected:" msgstr "Seçilileri:" #: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: libraries/messages.inc.php:148 server_databases.php:348 +#: libraries/messages.inc.php:144 server_databases.php:348 #: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459 msgid "Check All" msgstr "Tümünü Seç" #: db_structure.php:531 libraries/display_tbl.lib.php:2077 -#: libraries/messages.inc.php:1184 libraries/replication_gui.lib.php:33 +#: libraries/messages.inc.php:1180 libraries/replication_gui.lib.php:33 #: server_databases.php:350 server_privileges.php:533 #: server_privileges.php:1564 tbl_structure.php:463 msgid "Uncheck All" msgstr "Hiçbirini Seçme" -#: db_structure.php:536 libraries/messages.inc.php:150 +#: db_structure.php:536 libraries/messages.inc.php:146 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 -#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:672 +#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:668 #: libraries/mult_submits.inc.php:28 tbl_structure.php:493 #: tbl_structure.php:495 msgid "Print view" msgstr "Baskı görünümü" -#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:153 +#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:149 #: libraries/mult_submits.inc.php:42 tbl_operations.php:579 msgid "Check table" msgstr "Tabloyu kontrol et" -#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:590 +#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:586 #: libraries/mult_submits.inc.php:47 tbl_operations.php:619 #: tbl_structure.php:710 tbl_structure.php:712 msgid "Optimize table" msgstr "Tabloyu uyarla" -#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:758 +#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:754 #: libraries/mult_submits.inc.php:52 tbl_operations.php:609 msgid "Repair table" msgstr "Tabloyu onar" -#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:55 +#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:51 #: libraries/mult_submits.inc.php:57 tbl_operations.php:599 msgid "Analyze table" msgstr "Tabloyu incele" #: db_structure.php:557 db_structure.php:558 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/messages.inc.php:310 +#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:306 #: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84 #: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109 #: server_privileges.php:1341 setup/frames/menu.inc.php:22 @@ -773,7 +773,7 @@ msgstr "Tabloyu incele" msgid "Export" msgstr "Dışarı Aktar" -#: db_tracking.php:66 libraries/messages.inc.php:1151 +#: db_tracking.php:66 libraries/messages.inc.php:1147 msgid "Tracked tables" msgstr "İzlenen tablolar" @@ -781,7 +781,7 @@ msgstr "İzlenen tablolar" #: 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/header_printview.inc.php:58 libraries/messages.inc.php:212 +#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:208 #: navigation.php:233 server_databases.php:169 server_privileges.php:1621 #: server_privileges.php:1682 server_privileges.php:1940 #: server_processlist.php:56 server_synchronize.php:1179 @@ -789,76 +789,76 @@ msgstr "İzlenen tablolar" msgid "Database" msgstr "Veritabanı" -#: db_tracking.php:73 libraries/messages.inc.php:1146 +#: db_tracking.php:73 libraries/messages.inc.php:1142 msgid "Last version" msgstr "Son sürüm" -#: db_tracking.php:74 libraries/messages.inc.php:1145 tbl_tracking.php:594 +#: db_tracking.php:74 libraries/messages.inc.php:1141 tbl_tracking.php:594 msgid "Created" msgstr "Oluşturuldu" -#: db_tracking.php:75 libraries/messages.inc.php:1147 tbl_tracking.php:595 +#: db_tracking.php:75 libraries/messages.inc.php:1143 tbl_tracking.php:595 msgid "Updated" msgstr "Güncellendi" #: db_tracking.php:77 libraries/Index.class.php:440 -#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:27 +#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:23 #: server_databases.php:203 server_privileges.php:1503 #: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187 msgid "Action" msgstr "Eylem" -#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:247 +#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:243 msgid "Delete tracking data for this table" msgstr "Bu tabloyu izleme verisini sil" -#: db_tracking.php:106 libraries/messages.inc.php:1142 tbl_tracking.php:548 +#: db_tracking.php:106 libraries/messages.inc.php:1138 tbl_tracking.php:548 #: tbl_tracking.php:606 tbl_tracking.php:613 msgid "active" msgstr "aktif" -#: db_tracking.php:108 libraries/messages.inc.php:1143 tbl_tracking.php:550 +#: db_tracking.php:108 libraries/messages.inc.php:1139 tbl_tracking.php:550 #: tbl_tracking.php:608 tbl_tracking.php:610 msgid "not active" msgstr "aktif değil" -#: db_tracking.php:121 libraries/messages.inc.php:1160 +#: db_tracking.php:121 libraries/messages.inc.php:1156 msgid "Versions" msgstr "Sürümler" -#: db_tracking.php:122 libraries/messages.inc.php:1132 tbl_tracking.php:379 +#: db_tracking.php:122 libraries/messages.inc.php:1128 tbl_tracking.php:379 #: tbl_tracking.php:624 msgid "Tracking report" msgstr "İzleme raporu" -#: db_tracking.php:123 libraries/messages.inc.php:1144 tbl_tracking.php:251 +#: db_tracking.php:123 libraries/messages.inc.php:1140 tbl_tracking.php:251 #: tbl_tracking.php:624 msgid "Structure snapshot" msgstr "Yapı görüntüsü yakalama" -#: db_tracking.php:152 libraries/messages.inc.php:1154 +#: db_tracking.php:152 libraries/messages.inc.php:1150 msgid "Untracked tables" msgstr "İzlenmeyen tablolar" -#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1153 +#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1149 #: tbl_structure.php:529 tbl_structure.php:531 msgid "Track table" msgstr "Tabloyu izle" -#: db_tracking.php:200 libraries/messages.inc.php:1121 +#: db_tracking.php:200 libraries/messages.inc.php:1117 msgid "Database Log" msgstr "Veritabanı Günlüğü" -#: export.php:62 libraries/messages.inc.php:312 +#: export.php:62 libraries/messages.inc.php:308 msgid "Selected export type has to be saved in file!" msgstr "Seçili dışarı aktarma türü dosyaya kaydedilmelidir!" -#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:567 +#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:563 #, php-format msgid "Insufficient space to save the file %s." msgstr "%s dosyasını kaydetmek için yetersiz alan." -#: export.php:294 libraries/messages.inc.php:324 +#: export.php:294 libraries/messages.inc.php:320 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -866,17 +866,17 @@ msgstr "" "%s dosyası zaten sunucuda var, dosya adını değiştirin veya üzerine yazma " "seçeneğini işaretleyin." -#: export.php:298 export.php:302 libraries/messages.inc.php:562 +#: export.php:298 export.php:302 libraries/messages.inc.php:558 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Web sunucusu %s dosyasını kaydetmek için izne sahip değil." -#: export.php:629 libraries/messages.inc.php:276 +#: export.php:629 libraries/messages.inc.php:272 #, php-format msgid "Dump has been saved to file %s." msgstr "Döküm dosyası %s dosyasına kaydedildi" -#: import.php:60 libraries/messages.inc.php:1202 +#: import.php:60 libraries/messages.inc.php:1198 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation%" @@ -886,14 +886,14 @@ msgstr "" "bulmak için %sbelgelere%s başvurun." #: import.php:279 import.php:332 libraries/File.class.php:849 -#: libraries/File.class.php:961 libraries/messages.inc.php:325 +#: libraries/File.class.php:961 libraries/messages.inc.php:321 msgid "File could not be read" msgstr "Dosya okunamadı" #: import.php:287 import.php:296 import.php:315 import.php:324 #: libraries/File.class.php:1031 libraries/File.class.php:1039 #: libraries/File.class.php:1055 libraries/File.class.php:1063 -#: libraries/messages.inc.php:1189 +#: libraries/messages.inc.php:1185 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -902,7 +902,7 @@ msgstr "" "Desteklenmeyen sıkıştırmayla (%s) dosya yüklemeyi denediniz. Ya bunun için " "destek henüz tamamlanmadı ya da yapılandırmanız tarafından etkisizleştirildi." -#: import.php:337 libraries/messages.inc.php:547 +#: import.php:337 libraries/messages.inc.php:543 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -913,30 +913,30 @@ msgstr "" "bakın." #: import.php:372 libraries/display_import.lib.php:24 -#: libraries/messages.inc.php:125 +#: libraries/messages.inc.php:121 msgid "Could not load import plugins, please check your installation!" msgstr "" "İçeri aktarma eklentileri yüklenemedi, lütfen kurulumunuzu kontrol edin!" -#: import.php:397 libraries/messages.inc.php:102 +#: import.php:397 libraries/messages.inc.php:98 msgid "The bookmark has been deleted." msgstr "İşaretleme silindi." -#: import.php:401 libraries/messages.inc.php:879 +#: import.php:401 libraries/messages.inc.php:875 msgid "Showing bookmark" msgstr "İşaret gösteriliyor" -#: import.php:403 libraries/messages.inc.php:101 +#: import.php:403 libraries/messages.inc.php:97 #, php-format msgid "Bookmark %s created" msgstr "İşaretleme %s oluşturuldu" -#: import.php:409 import.php:415 libraries/messages.inc.php:407 +#: import.php:409 import.php:415 libraries/messages.inc.php:403 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "İçeri aktarma başarılı olarak bitti, %d sorgu çalıştırıldı." -#: import.php:424 libraries/messages.inc.php:1107 +#: import.php:424 libraries/messages.inc.php:1103 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -944,12 +944,12 @@ msgstr "" "Küçük program zaman aşımı geçti, eğer içeri aktarmayı bitirmek istiyorsanız, " "lütfen aynı dosyayı yeniden gönderin ve içeri aktarma devam edecektir." -#: index.php:190 libraries/messages.inc.php:553 +#: index.php:190 libraries/messages.inc.php:549 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" "phpMyAdmin, çerçeve-kabiliyeti olan tarayıcı ile daha kullanışlıdır." -#: js/messages.php:25 libraries/messages.inc.php:155 +#: js/messages.php:25 libraries/messages.inc.php:151 #: server_synchronize.php:345 server_synchronize.php:357 #: server_synchronize.php:373 server_synchronize.php:380 #: server_synchronize.php:739 server_synchronize.php:767 @@ -957,118 +957,118 @@ msgstr "" msgid "Click to select" msgstr "Seçmek için tıklayın" -#: js/messages.php:26 libraries/messages.inc.php:156 +#: js/messages.php:26 libraries/messages.inc.php:152 msgid "Click to unselect" msgstr "Seçimi kaldırmak için tıklayın" #: js/messages.php:27 libraries/import.lib.php:103 -#: libraries/messages.inc.php:550 sql.php:89 +#: libraries/messages.inc.php:546 sql.php:89 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" ifadesi etkisiz." -#: js/messages.php:30 libraries/messages.inc.php:270 +#: js/messages.php:30 libraries/messages.inc.php:266 #: libraries/mult_submits.inc.php:258 sql.php:188 msgid "Do you really want to " msgstr "Aşağıdaki komutu uygulamak istediğinize emin misiniz? " -#: js/messages.php:31 libraries/messages.inc.php:271 +#: js/messages.php:31 libraries/messages.inc.php:267 #: libraries/mult_submits.inc.php:258 sql.php:172 msgid "You are about to DESTROY a complete database!" msgstr "Bütün bir veritabanını YOK ETMEK üzeresiniz!" -#: js/messages.php:34 libraries/messages.inc.php:94 +#: js/messages.php:34 libraries/messages.inc.php:90 msgid "You are about to DISABLE a BLOB Repository!" msgstr "BLOB Havuzunu ETKİSİZLEŞTİRMEK'tesiniz!" -#: js/messages.php:35 libraries/messages.inc.php:91 +#: js/messages.php:35 libraries/messages.inc.php:87 #, php-format msgid "Are you sure you want to disable all BLOB references for database %s?" msgstr "" "Tüm BLOB referanslarını %s veritabanı için etkisizleştirmek istediğinize " "emin misiniz?" -#: js/messages.php:38 libraries/messages.inc.php:342 +#: js/messages.php:38 libraries/messages.inc.php:338 msgid "Missing value in the form!" msgstr "Formda eksik değer!" -#: js/messages.php:39 libraries/messages.inc.php:570 +#: js/messages.php:39 libraries/messages.inc.php:566 msgid "This is not a number!" msgstr "Bu bir sayı değil!" -#: js/messages.php:42 libraries/messages.inc.php:380 +#: js/messages.php:42 libraries/messages.inc.php:376 msgid "The host name is empty!" msgstr "Anamakine adı boş!" -#: js/messages.php:43 libraries/messages.inc.php:1208 +#: js/messages.php:43 libraries/messages.inc.php:1204 msgid "The user name is empty!" msgstr "Kullanıcı adı boş!" -#: js/messages.php:44 libraries/messages.inc.php:607 +#: js/messages.php:44 libraries/messages.inc.php:603 #: server_privileges.php:1197 user_password.php:70 msgid "The password is empty!" msgstr "Parola boş!" -#: js/messages.php:45 libraries/messages.inc.php:609 +#: js/messages.php:45 libraries/messages.inc.php:605 #: server_privileges.php:1195 user_password.php:73 msgid "The passwords aren't the same!" msgstr "Parolalar birbiriyle aynı değil!" -#: js/messages.php:49 libraries/messages.inc.php:123 pmd_general.php:342 +#: js/messages.php:49 libraries/messages.inc.php:119 pmd_general.php:342 #: pmd_general.php:379 msgid "Cancel" msgstr "İptal" -#: js/messages.php:52 libraries/messages.inc.php:514 +#: js/messages.php:52 libraries/messages.inc.php:510 msgid "Modifications have been saved" msgstr "Değişiklikler kaydedildi" -#: js/messages.php:53 libraries/messages.inc.php:741 +#: js/messages.php:53 libraries/messages.inc.php:737 msgid "Relation deleted" msgstr "İlişki silindi" -#: js/messages.php:54 libraries/messages.inc.php:340 +#: js/messages.php:54 libraries/messages.inc.php:336 msgid "FOREIGN KEY relation added" msgstr "FOREIGN KEY bağlantısı eklendi" -#: js/messages.php:55 libraries/messages.inc.php:434 +#: js/messages.php:55 libraries/messages.inc.php:430 msgid "Internal relation added" msgstr "Dahili ilişki eklendi" -#: js/messages.php:56 libraries/messages.inc.php:299 +#: js/messages.php:56 libraries/messages.inc.php:295 msgid "Error: Relation not added." msgstr "Hata: İlişki eklenmedi." -#: js/messages.php:57 libraries/messages.inc.php:300 +#: js/messages.php:57 libraries/messages.inc.php:296 msgid "Error: relation already exists." msgstr "Hata: İlişki zaten var." -#: js/messages.php:58 libraries/messages.inc.php:302 +#: js/messages.php:58 libraries/messages.inc.php:298 msgid "Error saving coordinates for Designer." msgstr "Tasarımcı düzenlemelerini kaydetme hatası." -#: js/messages.php:59 libraries/messages.inc.php:351 +#: js/messages.php:59 libraries/messages.inc.php:347 #: libraries/relation.lib.php:107 msgid "General relation features" msgstr "Genel ilişki özellikleri" -#: js/messages.php:59 libraries/messages.inc.php:260 +#: js/messages.php:59 libraries/messages.inc.php:256 #: libraries/relation.lib.php:101 libraries/relation.lib.php:108 msgid "Disabled" msgstr "Etkisiz" -#: js/messages.php:60 libraries/messages.inc.php:850 +#: js/messages.php:60 libraries/messages.inc.php:846 msgid "Select referenced key" msgstr "Kaynak gösterilen anahtarı seç" -#: js/messages.php:61 libraries/messages.inc.php:848 +#: js/messages.php:61 libraries/messages.inc.php:844 msgid "Select Foreign Key" msgstr "Dış Anahtarı seç" -#: js/messages.php:62 libraries/messages.inc.php:653 +#: js/messages.php:62 libraries/messages.inc.php:649 msgid "Please select the primary key or a unique key" msgstr "Lütfen birincil anaktarı veya benzersiz anahtarı seçin" -#: js/messages.php:63 libraries/messages.inc.php:142 pmd_general.php:77 +#: js/messages.php:63 libraries/messages.inc.php:138 pmd_general.php:77 #: tbl_relation.php:548 msgid "Choose field to display" msgstr "Göstermek için alan seçin" @@ -1088,9 +1088,9 @@ msgid "Prev" msgstr "Önceki" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2332 -#: libraries/common.lib.php:2335 libraries/display_tbl.lib.php:338 -#: libraries/messages.inc.php:543 server_binlog.php:205 server_binlog.php:207 +#: js/messages.php:77 libraries/common.lib.php:2344 +#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: libraries/messages.inc.php:539 server_binlog.php:205 server_binlog.php:207 #: tbl_printview.php:424 tbl_structure.php:802 msgid "Next" msgstr "İleri" @@ -1165,27 +1165,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1543 +#: js/messages.php:97 libraries/common.lib.php:1555 msgid "Jan" msgstr "Ocak" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1545 +#: js/messages.php:99 libraries/common.lib.php:1557 msgid "Feb" msgstr "Şubat" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1547 +#: js/messages.php:101 libraries/common.lib.php:1559 msgid "Mar" msgstr "Mart" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1549 +#: js/messages.php:103 libraries/common.lib.php:1561 msgid "Apr" msgstr "Nis" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1551 +#: js/messages.php:105 libraries/common.lib.php:1563 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1193,37 +1193,37 @@ msgid "May" msgstr "May" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1553 +#: js/messages.php:107 libraries/common.lib.php:1565 msgid "Jun" msgstr "Haz" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1555 +#: js/messages.php:109 libraries/common.lib.php:1567 msgid "Jul" msgstr "Tem" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1557 +#: js/messages.php:111 libraries/common.lib.php:1569 msgid "Aug" msgstr "Ağu" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1559 +#: js/messages.php:113 libraries/common.lib.php:1571 msgid "Sep" msgstr "Eylül" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1561 +#: js/messages.php:115 libraries/common.lib.php:1573 msgid "Oct" msgstr "Ekim" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1563 +#: js/messages.php:117 libraries/common.lib.php:1575 msgid "Nov" msgstr "Kas" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1565 +#: js/messages.php:119 libraries/common.lib.php:1577 msgid "Dec" msgstr "Ara" @@ -1264,37 +1264,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1568 +#: js/messages.php:132 libraries/common.lib.php:1580 msgid "Sun" msgstr "Paz" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1570 +#: js/messages.php:134 libraries/common.lib.php:1582 msgid "Mon" msgstr "Ptesi" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1572 +#: js/messages.php:136 libraries/common.lib.php:1584 msgid "Tue" msgstr "Salı" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1574 +#: js/messages.php:138 libraries/common.lib.php:1586 msgid "Wed" msgstr "Çar" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1576 +#: js/messages.php:140 libraries/common.lib.php:1588 msgid "Thu" msgstr "Per" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1578 +#: js/messages.php:142 libraries/common.lib.php:1590 msgid "Fri" msgstr "Cu" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1580 +#: js/messages.php:144 libraries/common.lib.php:1592 msgid "Sat" msgstr "Ctesi" @@ -1370,22 +1370,22 @@ msgstr "kullanımda" msgid "Second" msgstr "saniye başına" -#: libraries/Config.class.php:1015 libraries/messages.inc.php:338 +#: libraries/Config.class.php:1015 libraries/messages.inc.php:334 msgid "Font size" msgstr "Yazı Tipi boyutu" #: libraries/File.class.php:344 libraries/File.class.php:432 #: libraries/File.class.php:569 libraries/File.class.php:708 -#: libraries/messages.inc.php:1201 +#: libraries/messages.inc.php:1197 msgid "Unknown error in file upload." msgstr "Dosya göndermede bilinmeyen hata oldu." -#: libraries/File.class.php:414 libraries/messages.inc.php:1198 +#: libraries/File.class.php:414 libraries/messages.inc.php:1194 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "Gönderilen dosya, php.ini içindeki upload_max_filesize yönergesini aşıyor." -#: libraries/File.class.php:417 libraries/messages.inc.php:1197 +#: libraries/File.class.php:417 libraries/messages.inc.php:1193 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -1393,56 +1393,56 @@ msgstr "" "Gönderilen dosya, HTML formu içinde belirlenmiş MAX_FILE_SIZE yönergesini " "aşıyor." -#: libraries/File.class.php:420 libraries/messages.inc.php:1200 +#: libraries/File.class.php:420 libraries/messages.inc.php:1196 msgid "The uploaded file was only partially uploaded." msgstr "Gönderilen dosya sadece kısmen gönderildi." -#: libraries/File.class.php:423 libraries/messages.inc.php:1199 +#: libraries/File.class.php:423 libraries/messages.inc.php:1195 msgid "Missing a temporary folder." msgstr "Eksik geçici klasör." -#: libraries/File.class.php:426 libraries/messages.inc.php:1195 +#: libraries/File.class.php:426 libraries/messages.inc.php:1191 msgid "Failed to write file to disk." msgstr "Dosyayı diske yazma başarısız." -#: libraries/File.class.php:429 libraries/messages.inc.php:1196 +#: libraries/File.class.php:429 libraries/messages.inc.php:1192 msgid "File upload stopped by extension." msgstr "Dosya gönderme uzantısından dolayı durduruldu." -#: libraries/File.class.php:908 libraries/messages.inc.php:319 +#: libraries/File.class.php:908 libraries/messages.inc.php:315 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "Gönderilen dosyayı taşıma hatası, SSS 1.11'e bakın" -#: libraries/Index.class.php:428 libraries/messages.inc.php:554 +#: libraries/Index.class.php:428 libraries/messages.inc.php:550 #: tbl_relation.php:529 msgid "No index defined!" msgstr "Tanımlı indeks yok!" -#: libraries/Index.class.php:433 libraries/messages.inc.php:411 +#: libraries/Index.class.php:433 libraries/messages.inc.php:407 #: server_databases.php:132 tbl_tracking.php:316 msgid "Indexes" msgstr "İndeksler" -#: libraries/Index.class.php:444 libraries/messages.inc.php:1186 +#: libraries/Index.class.php:444 libraries/messages.inc.php:1182 #: 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:475 tbl_tracking.php:322 msgid "Unique" msgstr "Eşsiz" -#: libraries/Index.class.php:445 libraries/messages.inc.php:596 +#: libraries/Index.class.php:445 libraries/messages.inc.php:592 #: tbl_tracking.php:323 msgid "Packed" msgstr "Paketlendi" -#: libraries/Index.class.php:447 libraries/messages.inc.php:131 +#: libraries/Index.class.php:447 libraries/messages.inc.php:127 #: tbl_tracking.php:325 msgid "Cardinality" msgstr "Önemlilik" -#: libraries/Index.class.php:450 libraries/messages.inc.php:162 +#: libraries/Index.class.php:450 libraries/messages.inc.php:158 #: tbl_tracking.php:279 tbl_tracking.php:328 msgid "Comment" msgstr "Yorum" @@ -1450,22 +1450,22 @@ msgstr "Yorum" #: libraries/Index.class.php:466 libraries/common.lib.php:616 #: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:280 pdf_pages.php:280 +#: libraries/messages.inc.php:276 pdf_pages.php:280 #: setup/frames/index.inc.php:124 setup/lib/messages.inc.php:352 #: tbl_row_action.php:69 msgid "Edit" msgstr "Düzenle" -#: libraries/Index.class.php:472 libraries/messages.inc.php:666 +#: libraries/Index.class.php:472 libraries/messages.inc.php:662 msgid "The primary key has been dropped" msgstr "Birincil anahtar kaldırıldı" -#: libraries/Index.class.php:476 libraries/messages.inc.php:413 +#: libraries/Index.class.php:476 libraries/messages.inc.php:409 #, php-format msgid "Index %s has been dropped" msgstr "%s indeksi kaldırıldı" -#: libraries/Index.class.php:576 libraries/messages.inc.php:412 +#: libraries/Index.class.php:576 libraries/messages.inc.php:408 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -1474,7 +1474,7 @@ 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/messages.inc.php:218 +#: libraries/List_Database.class.php:431 libraries/messages.inc.php:214 #: libraries/server_links.inc.php:41 server_databases.php:88 #: server_privileges.php:1621 setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" @@ -1498,85 +1498,85 @@ msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." msgstr[0] "%1$d satır eklendi." -#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:549 +#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:545 msgid "" "There is no detailed status information available for this storage engine." msgstr "Bu depolama motoru için ayrıntılı durum bilgisi mevcut değil." -#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:291 +#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:287 #, php-format msgid "%s is available on this MySQL server." msgstr "%s bu MySQL sunucusunda var." -#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:292 +#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:288 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s bu MySQL sunucusu için etkisizleştirildi." -#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:294 +#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:290 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "Bu MySQL sunucusu %s depolama motorunu desteklemez." -#: libraries/Table.class.php:1019 libraries/messages.inc.php:443 +#: libraries/Table.class.php:1019 libraries/messages.inc.php:439 msgid "Invalid database" msgstr "Geçersiz veritabanı" -#: libraries/Table.class.php:1033 libraries/messages.inc.php:450 +#: libraries/Table.class.php:1033 libraries/messages.inc.php:446 #: tbl_get_field.php:26 msgid "Invalid table name" msgstr "Geçersiz tablo adı" -#: libraries/Table.class.php:1048 libraries/messages.inc.php:301 +#: libraries/Table.class.php:1048 libraries/messages.inc.php:297 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "%1$s tablo adını %2$s tablo adına değiştirme hatası" -#: libraries/Table.class.php:1132 libraries/messages.inc.php:754 +#: libraries/Table.class.php:1132 libraries/messages.inc.php:750 #, php-format msgid "Table %s has been renamed to %s" msgstr "%s tablosu %s olarak yeniden adlandırıldı" -#: libraries/Theme.class.php:162 libraries/messages.inc.php:1099 +#: libraries/Theme.class.php:162 libraries/messages.inc.php:1095 #, php-format msgid "No valid image path for theme %s found!" msgstr "%s teması için geçerli resim yolu bulunamadı!" -#: libraries/Theme.class.php:384 libraries/messages.inc.php:1097 +#: libraries/Theme.class.php:384 libraries/messages.inc.php:1093 msgid "No preview available." msgstr "Önizleme mevcut değil." -#: libraries/Theme.class.php:387 libraries/messages.inc.php:1089 +#: libraries/Theme.class.php:387 libraries/messages.inc.php:1085 msgid "take it" msgstr "Al" -#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1096 +#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1092 #, php-format msgid "Default theme %s not found!" msgstr "Varsayılan tema %s bulunamadı!" -#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1098 +#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1094 #, php-format msgid "Theme %s not found!" msgstr "%s teması bulunamadı!" -#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1100 +#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1096 #, php-format msgid "Theme path not found for theme %s!" msgstr "%s teması için tema yolu bulunamadı!" -#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1101 +#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1097 #: test/theme.php:161 themes.php:21 themes.php:41 msgid "Theme / Style" msgstr "Tema / Stil" -#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:172 +#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:168 msgid "Cannot connect: invalid settings." msgstr "Bağlanamıyor: geçersiz ayarlar." #: libraries/auth/config.auth.lib.php:92 #: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65 -#: libraries/messages.inc.php:1238 test/theme.php:152 +#: libraries/messages.inc.php:1234 test/theme.php:152 #, php-format msgid "Welcome to %s" msgstr "%s sürümüne Hoş Geldiniz" @@ -1602,47 +1602,47 @@ msgstr "" "parolayı kontrol edin ve MySQL sunucusunun yöneticisi tarafından verilen " "bilgiyle uyuştuğundan emin olun." -#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:488 +#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:484 msgid "Log in" msgstr "Oturum Aç" #: libraries/auth/cookie.auth.lib.php:246 -#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:659 +#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:655 #: libraries/navigation_header.inc.php:93 #: libraries/navigation_header.inc.php:95 msgid "phpMyAdmin documentation" msgstr "phpMyAdmin belgeleri" #: libraries/auth/cookie.auth.lib.php:258 -#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:492 +#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:488 msgid "You can enter hostname/IP address and port separated by space." msgstr "" "Anamakine adı/IP adresi ve bağlantı noktasını boşluk bırakarak ayrı ayrı " "girebilirsiniz." -#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:493 +#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:489 msgid "Server:" msgstr "Sunucu" -#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:494 +#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:490 msgid "Username:" msgstr "Kullanıcı Adı:" -#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:491 +#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:487 msgid "Password:" msgstr "Parola:" -#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:854 +#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:850 msgid "Server Choice" msgstr "Sunucu Seçimi" #: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 -#: libraries/messages.inc.php:177 +#: libraries/messages.inc.php:173 msgid "Cookies must be enabled past this point." msgstr "Bu kısmı geçmek için tanımlama bilgileri (Cookies) açık olmalı." #: libraries/auth/cookie.auth.lib.php:671 -#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:489 +#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:485 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" @@ -1650,60 +1650,60 @@ msgstr "" "bakın)" #: libraries/auth/cookie.auth.lib.php:675 -#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:544 +#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:540 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "%s saniye içinde hiçbir işlem yapılmadı, lütfen yeniden oturum açın" #: libraries/auth/cookie.auth.lib.php:685 #: libraries/auth/cookie.auth.lib.php:687 -#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:126 +#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:122 msgid "Cannot log in to the MySQL server" msgstr "MySQL sunucusuna oturum açılamıyor" -#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1245 +#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1241 msgid "Wrong username/password. Access denied." msgstr "Yanlış kullanıcı adı/parola girdiniz. Erişim engellendi." #: libraries/auth/swekey/swekey.auth.lib.php:118 -#: libraries/messages.inc.php:1057 +#: libraries/messages.inc.php:1053 #, php-format msgid "File %s does not contain any key id" msgstr "%s dosyası herhangi bir anahtar kimliği içermiyor" #: libraries/auth/swekey/swekey.auth.lib.php:157 #: libraries/auth/swekey/swekey.auth.lib.php:180 -#: libraries/messages.inc.php:1056 +#: libraries/messages.inc.php:1052 msgid "Hardware authentication failed" msgstr "Donanım kimlik denetimi başarısız" #: libraries/auth/swekey/swekey.auth.lib.php:166 -#: libraries/messages.inc.php:1058 +#: libraries/messages.inc.php:1054 msgid "No valid authentication key plugged" msgstr "Geçerli kimlik denetimi anahtarı takılı değil" #: libraries/auth/swekey/swekey.auth.lib.php:202 -#: libraries/messages.inc.php:1055 +#: libraries/messages.inc.php:1051 msgid "Authenticating..." msgstr "Kimlik denetleniyor..." -#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1230 +#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1226 msgid "View image" msgstr "Resmi göster" -#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:652 +#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:648 msgid "Play audio" msgstr "Ses çal" -#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1232 +#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1228 msgid "View video" msgstr "Videoyu göster" -#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:269 +#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:265 msgid "Download file" msgstr "Dosyayı indir" -#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:128 +#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:124 msgid "" "Couldn't load the iconv or recode extension needed for charset conversion. " "Either configure PHP to enable these extensions or disable charset " @@ -1715,7 +1715,7 @@ msgstr "" #: libraries/charset_conversion.lib.php:79 #: libraries/charset_conversion.lib.php:90 -#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:130 +#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:126 msgid "" "Couldn't use the iconv, libiconv, or recode_string functions, although the " "necessary extensions appear to be loaded. Check your PHP configuration." @@ -1723,7 +1723,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/messages.inc.php:170 +#: libraries/common.inc.php:583 libraries/messages.inc.php:166 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!" @@ -1759,7 +1759,7 @@ msgstr "" msgid "Invalid server index: %s" msgstr "Geçersiz sunucu indeksi: \"%s\"" -#: libraries/common.inc.php:636 libraries/messages.inc.php:448 +#: libraries/common.inc.php:636 libraries/messages.inc.php:444 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" @@ -1767,16 +1767,16 @@ msgstr "" "geçirin." #: libraries/common.inc.php:645 libraries/header.inc.php:96 -#: libraries/messages.inc.php:856 libraries/select_server.lib.php:41 +#: libraries/messages.inc.php:852 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/messages.inc.php:437 +#: libraries/common.inc.php:823 libraries/messages.inc.php:433 msgid "Invalid authentication method set in configuration:" msgstr "Yapılandırma içinde geçersiz kimlik denetimi yöntemi ayarı:" -#: libraries/common.lib.php:147 libraries/messages.inc.php:499 +#: libraries/common.lib.php:147 libraries/messages.inc.php:495 #, php-format msgid "Max: %s%s" msgstr "En fazla: %s%s" @@ -1796,7 +1796,7 @@ msgstr "tr" #: libraries/common.lib.php:428 libraries/common.lib.php:430 #: libraries/common.lib.php:432 libraries/common.lib.php:448 #: libraries/common.lib.php:450 libraries/dbg/setup.php:25 -#: libraries/display_export.lib.php:164 libraries/messages.inc.php:267 +#: libraries/display_export.lib.php:164 libraries/messages.inc.php:263 #: libraries/relation.lib.php:97 libraries/sql_query_form.lib.php:451 #: libraries/sql_query_form.lib.php:454 main.php:229 pdf_pages.php:37 #: pdf_pages.php:43 pdf_pages.php:49 pdf_pages.php:54 @@ -1806,55 +1806,55 @@ msgstr "Belgeler" #: libraries/common.lib.php:581 libraries/core.lib.php:234 #: libraries/core.lib.php:263 libraries/import.lib.php:134 -#: libraries/messages.inc.php:297 pdf_schema.php:32 pdf_schema.php:232 +#: libraries/messages.inc.php:293 pdf_schema.php:32 pdf_schema.php:232 #: tbl_change.php:1027 tbl_operations.php:213 tbl_relation.php:290 #: view_operations.php:62 msgid "Error" msgstr "Hata" #: libraries/common.lib.php:595 libraries/header_printview.inc.php:61 -#: libraries/messages.inc.php:1023 server_processlist.php:60 +#: libraries/messages.inc.php:1019 server_processlist.php:60 #: server_status.php:247 msgid "SQL query" msgstr "SQL sorgusu" -#: libraries/common.lib.php:634 libraries/messages.inc.php:538 +#: libraries/common.lib.php:634 libraries/messages.inc.php:534 msgid "MySQL said: " msgstr "MySQL çıktısı: " -#: libraries/common.lib.php:667 libraries/messages.inc.php:76 +#: libraries/common.lib.php:667 libraries/messages.inc.php:72 #: pdf_schema.php:241 user_password.php:115 msgid "Back" msgstr "Geri" -#: libraries/common.lib.php:1177 libraries/messages.inc.php:309 +#: libraries/common.lib.php:1177 libraries/messages.inc.php:305 #: setup/lib/messages.inc.php:353 msgid "Explain SQL" msgstr "SQL'i açıkla" -#: libraries/common.lib.php:1180 libraries/messages.inc.php:551 +#: libraries/common.lib.php:1180 libraries/messages.inc.php:547 msgid "Skip Explain SQL" msgstr "SQL Açıklamasını atla" -#: libraries/common.lib.php:1212 libraries/messages.inc.php:563 +#: libraries/common.lib.php:1212 libraries/messages.inc.php:559 msgid "Without PHP Code" msgstr "PHP Kodsuz" -#: libraries/common.lib.php:1215 libraries/messages.inc.php:649 +#: libraries/common.lib.php:1215 libraries/messages.inc.php:645 #: setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "PHP Kodu oluştur" -#: libraries/common.lib.php:1233 libraries/messages.inc.php:737 +#: libraries/common.lib.php:1233 libraries/messages.inc.php:733 #: server_status.php:341 setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "Yenile" -#: libraries/common.lib.php:1242 libraries/messages.inc.php:575 +#: libraries/common.lib.php:1242 libraries/messages.inc.php:571 msgid "Skip Validate SQL" msgstr "SQL Onaylamayı atla" -#: libraries/common.lib.php:1245 libraries/messages.inc.php:1220 +#: libraries/common.lib.php:1245 libraries/messages.inc.php:1216 #: setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "SQL'i onayla" @@ -1870,11 +1870,11 @@ msgid "Inline" msgstr "Motorlar" #: libraries/common.lib.php:1332 libraries/common.lib.php:1347 -#: libraries/messages.inc.php:713 +#: libraries/messages.inc.php:709 msgid "Profiling" msgstr "Profil çıkart" -#: libraries/common.lib.php:1351 libraries/messages.inc.php:1108 +#: libraries/common.lib.php:1351 libraries/messages.inc.php:1104 #: libraries/tbl_triggers.lib.php:28 server_processlist.php:58 msgid "Time" msgstr "Süre" @@ -1908,46 +1908,56 @@ msgstr "PiB" msgid "EiB" msgstr "EiB" +#. l10n: Thousands separator +#: libraries/common.lib.php:1417 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: libraries/common.lib.php:1419 +msgid "." +msgstr "." + #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1584 +#: libraries/common.lib.php:1596 #: libraries/transformations/text_plain__dateformat.inc.php:28 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y, %H:%M:%S" -#: libraries/common.lib.php:1886 +#: libraries/common.lib.php:1898 #, 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:2301 libraries/common.lib.php:2304 -#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:664 +#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:660 #: server_status.php:608 msgid "Begin" msgstr "Yukarı" -#: libraries/common.lib.php:2302 libraries/common.lib.php:2305 -#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:665 +#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:661 #: server_binlog.php:168 server_binlog.php:170 msgid "Previous" msgstr "Önceki" -#: libraries/common.lib.php:2333 libraries/common.lib.php:2336 -#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:289 +#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:285 msgid "End" msgstr "Son" -#: libraries/common.lib.php:2409 libraries/messages.inc.php:455 +#: libraries/common.lib.php:2421 libraries/messages.inc.php:451 #, php-format msgid "Jump to database "%s"." msgstr ""%s" veritabanına git." -#: libraries/common.lib.php:2429 libraries/messages.inc.php:461 +#: libraries/common.lib.php:2441 libraries/messages.inc.php:457 #, 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/core.lib.php:286 libraries/dbg/setup.php:22 -#: libraries/messages.inc.php:127 +#: libraries/messages.inc.php:123 #, php-format msgid "" "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " @@ -1957,74 +1967,74 @@ msgstr "" "yüklenemiyor. Lütfen PHP yapılandırmanızı kontrol edin." #: libraries/db_events.inc.php:20 libraries/db_events.inc.php:22 -#: libraries/export/sql.php:415 libraries/messages.inc.php:306 +#: libraries/export/sql.php:415 libraries/messages.inc.php:302 msgid "Events" msgstr "Olaylar" #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 -#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:541 +#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:537 #: libraries/tbl_triggers.lib.php:27 setup/frames/index.inc.php:112 msgid "Name" msgstr "İsim" -#: libraries/db_links.inc.php:45 libraries/messages.inc.php:216 +#: libraries/db_links.inc.php:45 libraries/messages.inc.php:212 #, php-format msgid "Database %s has been dropped." msgstr "%s veritabanı kaldırıldı." #: libraries/db_links.inc.php:57 libraries/db_links.inc.php:58 -#: libraries/db_links.inc.php:59 libraries/messages.inc.php:234 +#: libraries/db_links.inc.php:59 libraries/messages.inc.php:230 msgid "Database seems to be empty!" msgstr "Veritabanı boş olarak görünüyor!" -#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1025 +#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1021 #: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60 #: querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1152 +#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1148 #: libraries/tbl_links.inc.php:69 msgid "Tracking" msgstr "İzleme" -#: libraries/db_links.inc.php:86 libraries/messages.inc.php:719 +#: libraries/db_links.inc.php:86 libraries/messages.inc.php:715 msgid "Query" msgstr "Sorgu" -#: libraries/db_links.inc.php:91 libraries/messages.inc.php:253 +#: libraries/db_links.inc.php:91 libraries/messages.inc.php:249 msgid "Designer" msgstr "Tasarımcı" -#: libraries/db_links.inc.php:98 libraries/messages.inc.php:397 +#: libraries/db_links.inc.php:98 libraries/messages.inc.php:393 #: libraries/server_links.inc.php:88 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:104 libraries/messages.inc.php:587 +#: libraries/db_links.inc.php:104 libraries/messages.inc.php:583 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" msgstr "İşlemler" -#: libraries/db_links.inc.php:111 libraries/messages.inc.php:709 +#: libraries/db_links.inc.php:111 libraries/messages.inc.php:705 #: libraries/server_links.inc.php:66 server_privileges.php:72 #: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117 msgid "Privileges" msgstr "Yetkiler" #: libraries/db_routines.inc.php:30 libraries/db_routines.inc.php:32 -#: libraries/messages.inc.php:812 +#: libraries/messages.inc.php:808 msgid "Routines" msgstr "Yordamlar" -#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:811 +#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:807 msgid "Return type" msgstr "Dönüş türü" #: libraries/db_structure.lib.php:57 libraries/display_tbl.lib.php:1848 -#: libraries/messages.inc.php:65 +#: libraries/messages.inc.php:61 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -2032,44 +2042,44 @@ msgstr "" "Yaklaşık olabilir. [a@./Documentation.html#faq3_11@Documentation]SSS 3.11[/" "a]'e bakın" -#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:593 +#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:589 #: server_databases.php:142 tbl_printview.php:336 tbl_structure.php:683 msgid "Overhead" msgstr "Ek Yük" #: libraries/dbi/mysql.dbi.lib.php:112 libraries/dbi/mysqli.dbi.lib.php:124 -#: libraries/messages.inc.php:176 +#: libraries/messages.inc.php:172 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Yapılandırmanız içinde tanımlanmış denetim kullanıcıları için bağlantı " "başarısız." #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 -#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:855 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:851 msgid "The server is not responding" msgstr "Sunucu yanıt vermiyor" #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:1010 +#: libraries/messages.inc.php:1006 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 libraries/messages.inc.php:255 +#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:251 #: tbl_structure.php:609 msgid "Details..." msgstr "Ayrıntılar..." -#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:143 +#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:139 #: main.php:91 user_password.php:111 user_password.php:129 msgid "Change password" msgstr "Parola değiştir" -#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:561 +#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:557 #: libraries/replication_gui.lib.php:341 server_privileges.php:768 msgid "No Password" msgstr "Parola yok" -#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:610 +#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:606 #: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60 #: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335 #: libraries/replication_gui.lib.php:345 server_privileges.php:757 @@ -2078,13 +2088,13 @@ msgstr "Parola yok" msgid "Password" msgstr "Parola" -#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:806 +#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:802 #: libraries/replication_gui.lib.php:349 libraries/replication_gui.lib.php:352 #: server_privileges.php:776 server_privileges.php:779 msgid "Re-type" msgstr "Yeniden gir" -#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:608 +#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:604 msgid "Password Hashing" msgstr "Parola Hesaplanıyor" @@ -2094,90 +2104,90 @@ msgstr "Parola Hesaplanıyor" msgid "MySQL 4.0 compatible" msgstr "MySQL 4.0 uyumlu" -#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:353 +#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:349 #: libraries/replication_gui.lib.php:356 server_privileges.php:783 msgid "Generate Password" msgstr "Parola Üret" -#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:352 +#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:348 #: libraries/replication_gui.lib.php:359 server_privileges.php:786 msgid "Generate" msgstr "Üret" #: libraries/display_create_database.lib.php:22 -#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:189 +#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:185 msgid "Create new database" msgstr "Yeni veritabanı oluştur" -#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:185 +#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:181 msgid "Create" msgstr "Oluştur" -#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:564 +#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:560 #: server_privileges.php:74 server_privileges.php:1388 #: server_replication.php:35 msgid "No Privileges" msgstr "Yetkiniz yok" -#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:445 +#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:441 msgid "Table must have at least one field." msgstr "Tablonun en az bir alanı olmalı." -#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:190 +#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:186 #, php-format msgid "Create table on database %s" msgstr "%s veritabanında yeni tablo oluştur" -#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:577 +#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:573 msgid "Number of fields" msgstr "Alan sayısı" -#: libraries/display_export.lib.php:42 libraries/messages.inc.php:124 +#: libraries/display_export.lib.php:42 libraries/messages.inc.php:120 msgid "Could not load export plugins, please check your installation!" msgstr "" "Dışarı aktarma eklentileri yüklenemedi, lütfen kurulumunuzu kontrol edin!" -#: libraries/display_export.lib.php:107 libraries/messages.inc.php:277 +#: libraries/display_export.lib.php:107 libraries/messages.inc.php:273 #, php-format msgid "Dump %s row(s) starting at record # %s" msgstr "%s satır dökümü, %s. kayıttan başlıyor." -#: libraries/display_export.lib.php:115 libraries/messages.inc.php:274 +#: libraries/display_export.lib.php:115 libraries/messages.inc.php:270 msgid "Dump all rows" msgstr "Tüm satırları yığınla" -#: libraries/display_export.lib.php:125 libraries/messages.inc.php:852 +#: libraries/display_export.lib.php:125 libraries/messages.inc.php:848 #: setup/lib/messages.inc.php:82 msgid "Save as file" msgstr "Dosya olarak kaydet" -#: libraries/display_export.lib.php:134 libraries/messages.inc.php:828 +#: libraries/display_export.lib.php:134 libraries/messages.inc.php:824 #, php-format msgid "Save on server in %s directory" msgstr "Sunucuda %s dizinine kaydet" -#: libraries/display_export.lib.php:142 libraries/messages.inc.php:594 +#: libraries/display_export.lib.php:142 libraries/messages.inc.php:590 #: setup/lib/messages.inc.php:90 msgid "Overwrite existing file(s)" msgstr "Mevcut dosya(ların)nın üzerine yaz" -#: libraries/display_export.lib.php:148 libraries/messages.inc.php:330 +#: libraries/display_export.lib.php:148 libraries/messages.inc.php:326 msgid "File name template" msgstr "Dosya adı şablonu" -#: libraries/display_export.lib.php:152 libraries/messages.inc.php:327 +#: libraries/display_export.lib.php:152 libraries/messages.inc.php:323 msgid "server name" msgstr "sunucu adı" -#: libraries/display_export.lib.php:155 libraries/messages.inc.php:326 +#: libraries/display_export.lib.php:155 libraries/messages.inc.php:322 msgid "database name" msgstr "veritabanı adı" -#: libraries/display_export.lib.php:158 libraries/messages.inc.php:328 +#: libraries/display_export.lib.php:158 libraries/messages.inc.php:324 msgid "table name" msgstr "tablo adı" -#: libraries/display_export.lib.php:162 libraries/messages.inc.php:329 +#: libraries/display_export.lib.php:162 libraries/messages.inc.php:325 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2188,24 +2198,24 @@ msgstr "" "biçimlendirme dizgisi kullanabilirsiniz. İlave olarak yandaki dönüşümler " "meydana gelecek: %3$s. Diğer metin olduğu gibi tutulacak." -#: libraries/display_export.lib.php:202 libraries/messages.inc.php:331 +#: libraries/display_export.lib.php:202 libraries/messages.inc.php:327 msgid "remember template" msgstr "şablonu hatırla" #: libraries/display_export.lib.php:210 libraries/display_import.lib.php:178 -#: libraries/display_import.lib.php:191 libraries/messages.inc.php:145 +#: libraries/display_import.lib.php:191 libraries/messages.inc.php:141 #: libraries/sql_query_form.lib.php:549 msgid "Character set of the file:" msgstr "Dosyanın karakter grubu:" -#: libraries/display_export.lib.php:235 libraries/messages.inc.php:166 +#: libraries/display_export.lib.php:235 libraries/messages.inc.php:162 #: setup/lib/messages.inc.php:84 msgid "Compression" 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/messages.inc.php:558 +#: libraries/export/sql.php:868 libraries/messages.inc.php:554 #: libraries/tbl_properties.inc.php:575 server_privileges.php:1836 #: server_processlist.php:75 msgid "None" @@ -2229,11 +2239,11 @@ msgstr "\"gzip olarak\"" msgid "bzipped" msgstr "\"bzip olarak\"" -#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1018 +#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1014 msgid "SQL compatibility mode" msgstr "SQL uyumluluk kipi" -#: libraries/display_import.lib.php:67 libraries/messages.inc.php:398 +#: libraries/display_import.lib.php:67 libraries/messages.inc.php:394 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " @@ -2243,11 +2253,11 @@ msgstr "" "webkit tabanlı (Safari, Google Chrome, Arora vs.) tarayıcılardaki bilinen " "bir hatadır." -#: libraries/display_import.lib.php:77 libraries/messages.inc.php:406 +#: libraries/display_import.lib.php:77 libraries/messages.inc.php:402 msgid "The file is being processed, please be patient." msgstr "Dosya işleme alındı, lütfen sabırlı olun." -#: libraries/display_import.lib.php:99 libraries/messages.inc.php:408 +#: libraries/display_import.lib.php:99 libraries/messages.inc.php:404 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." @@ -2255,41 +2265,41 @@ msgstr "" "Lütfen sabırlı olun, dosya gönderilmekte. Gönderme ile ilgili ayrıntılar " "mevcut değil." -#: libraries/display_import.lib.php:126 libraries/messages.inc.php:333 +#: libraries/display_import.lib.php:126 libraries/messages.inc.php:329 msgid "File to import" msgstr "İçeri aktarmak için dosya" -#: libraries/display_import.lib.php:137 libraries/messages.inc.php:486 +#: libraries/display_import.lib.php:137 libraries/messages.inc.php:482 #: libraries/sql_query_form.lib.php:524 msgid "Location of the text file" msgstr "Metin dosyasının yeri" -#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1203 +#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1199 msgid "File uploads are not allowed on this server." msgstr "Bu sunucuda dosya gönderimlerine izin verilmez." -#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1235 +#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1231 #: libraries/sql_query_form.lib.php:533 tbl_change.php:1028 msgid "The directory you set for upload work cannot be reached" msgstr "Gönderme işi için ayarladığınız dizine ulaşılamıyor" -#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1236 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1232 #: libraries/sql_query_form.lib.php:536 tbl_change.php:1031 msgid "web server upload directory" msgstr "web sunucusu gönderme dizini" -#: libraries/display_import.lib.php:212 libraries/messages.inc.php:167 +#: libraries/display_import.lib.php:212 libraries/messages.inc.php:163 #, php-format msgid "Imported file compression will be automatically detected from: %s" msgstr "" "İçeri aktarılmış dosya sıkıştırması otomatik olarak bu dosya türlerinden " "algılanacak: %s" -#: libraries/display_import.lib.php:219 libraries/messages.inc.php:600 +#: libraries/display_import.lib.php:219 libraries/messages.inc.php:596 msgid "Partial import" msgstr "Kısmi içeri aktarma" -#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1105 +#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1101 #, php-format msgid "" "Previous import timed out, after resubmitting will continue from position %d." @@ -2297,7 +2307,7 @@ msgstr "" "Önceki içeri aktarma zaman aşımına uğradı, sonradan yeniden gönderim %d " "konumundan devam edecek." -#: libraries/display_import.lib.php:232 libraries/messages.inc.php:51 +#: libraries/display_import.lib.php:232 libraries/messages.inc.php:47 msgid "" "Allow the interruption of an import in case the script detects it is close " "to the PHP timeout limit. This might be good way to import large files, " @@ -2307,177 +2317,177 @@ msgstr "" "aktarımı kesmeye izin ver. Bu büyük dosyaların içeri aktarımı için iyi bir " "yol olabilir, ancak hareketleri kesebilir." -#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1004 +#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1000 #: setup/lib/messages.inc.php:161 msgid "Number of records (queries) to skip from start" msgstr "Başlangıçtan atlanacak kayıt (sorgu) sayısı" -#: libraries/display_import.lib.php:255 libraries/messages.inc.php:396 +#: libraries/display_import.lib.php:255 libraries/messages.inc.php:392 #: setup/lib/messages.inc.php:160 msgid "Format of imported file" msgstr "İçeri aktarılmış dosyanın biçimi" #: libraries/display_select_lang.lib.php:45 -#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:465 +#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:461 #: setup/frames/index.inc.php:70 msgid "Language" msgstr "Dil" -#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:447 +#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:443 #, php-format msgid "%d is not valid row number." msgstr "%d geçerli bir satır sayısı değil." -#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:814 +#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:810 msgid "row(s) starting from record #" msgstr "satır, başlayacağı kayıt numarası:" -#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:817 +#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:813 msgid "horizontal" msgstr "yatay" -#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:816 +#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:812 msgid "horizontal (rotated headers)" msgstr "yatay (döndürülmüş başlıklar)" -#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:819 +#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:815 msgid "vertical" msgstr "dikey" -#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:818 +#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:814 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "%s kipinde ve %s hücre sonra başlığı tekrarla." -#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:495 +#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:491 msgid "This operation could take a long time. Proceed anyway?" msgstr "Bu işlem uzun zaman alabilir. Yine de ilerlensin mi?" -#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1012 +#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1008 msgid "Sort by key" msgstr "Anahtara göre sırala" #: libraries/display_tbl.lib.php:555 libraries/import.lib.php:1082 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:591 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:587 #: tbl_select.php:267 tbl_structure.php:754 msgid "Options" msgstr "Seçenekler" #: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:570 -#: libraries/messages.inc.php:601 +#: libraries/messages.inc.php:597 msgid "Partial Texts" msgstr "Kısmi Metinler" #: libraries/display_tbl.lib.php:561 libraries/display_tbl.lib.php:574 -#: libraries/messages.inc.php:346 +#: libraries/messages.inc.php:342 msgid "Full Texts" msgstr "Tam Metinler" -#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:739 +#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:735 msgid "Relational key" msgstr "Bağlantılı anahtar" -#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:738 +#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:734 msgid "Relational display field" msgstr "Bağlantılı görüntü alanı" -#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:872 +#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:868 msgid "Show binary contents" msgstr "Binari içerikleri göster" -#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:873 +#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:869 msgid "Show BLOB contents" msgstr "BLOB içerikleri göster" -#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:871 +#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:867 msgid "Show binary contents as HEX" msgstr "Binari içerikleri HEX olarak göster" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:375 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:371 #: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320 msgid "Hide" msgstr "Gizle" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:508 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:504 #: libraries/tbl_properties.inc.php:144 transformation_overview.php:47 msgid "Browser transformation" msgstr "Tarayıcı dönüşümü" #: libraries/display_tbl.lib.php:1126 libraries/display_tbl.lib.php:1130 -#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:308 +#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:304 msgid "Execute bookmarked query" msgstr "İşaretlenmiş sorguyu çalıştır" #: libraries/display_tbl.lib.php:1145 libraries/display_tbl.lib.php:1157 -#: libraries/messages.inc.php:244 +#: libraries/messages.inc.php:240 msgid "The row has been deleted" msgstr "Satır silindi" #: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056 -#: libraries/messages.inc.php:460 server_processlist.php:71 +#: libraries/messages.inc.php:456 server_processlist.php:71 #: tbl_row_action.php:64 msgid "Kill" msgstr "Sonlandır" -#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:849 +#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:845 msgid "in query" msgstr "sorgu içerisinde" -#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:881 +#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:877 msgid "Showing rows" msgstr "Satırlar gösteriliyor" -#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1113 +#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1109 msgid "total" msgstr "toplam" -#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:727 +#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:723 #: sql.php:524 #, php-format msgid "Query took %01.4f sec" msgstr "Sorgu %01.4f san. sürdü" -#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:135 +#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:131 #: 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:471 msgid "Change" msgstr "Değiştir" -#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:724 +#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:720 msgid "Query results operations" msgstr "Sorgu sonuçları işlemleri" -#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:671 +#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:667 msgid "Print view (with full texts)" msgstr "Baskı görünümü (tüm metinler ile)" -#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:482 +#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:478 msgid "Link not found" msgstr "Bağlantı bulunamadı" -#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1224 +#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1220 #: main.php:228 msgid "Version information" msgstr "Sürüm bilgisi" -#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:423 +#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:419 msgid "Data home directory" msgstr "Veri ana dizini" -#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:424 +#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:420 msgid "The common part of the directory path for all InnoDB data files." msgstr "Tüm InnoDB veri dosyaları için dizin yolunun ortak kısmı." -#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:422 +#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:418 msgid "Data files" msgstr "Veri dosyaları" -#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:418 +#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:414 msgid "Autoextend increment" msgstr "Artış miktarını otomatik genişlet" -#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:419 +#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:415 msgid "" " The increment size for extending the size of an autoextending tablespace " "when it becomes full." @@ -2485,11 +2495,11 @@ msgstr "" "Tablo dolduğunda otomatik genişleyen tablo alanının genişlemesi için artış " "miktarı boyutu." -#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:420 +#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:416 msgid "Buffer pool size" msgstr "Ara bellek havuzu boyutu" -#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:421 +#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:417 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." @@ -2497,87 +2507,87 @@ msgstr "" "Hafıza ara belleği boyutu InnoDB, veriyi önbelleklemek ve tablolarını " "indekslemek için kullanır." -#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:112 +#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:108 msgid "Buffer Pool" msgstr "Ara Bellek Havuzu" -#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:426 +#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:422 #: server_status.php:306 msgid "InnoDB Status" msgstr "InnoDB Durumu" -#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:113 +#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:109 msgid "Buffer Pool Usage" msgstr "Ara Bellek Havuzu Kullanımı" -#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1114 +#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1110 #: server_databases.php:137 server_databases.php:305 server_status.php:414 #: server_status.php:475 server_status.php:496 tbl_printview.php:351 #: tbl_structure.php:697 msgid "Total" msgstr "Toplam" -#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:425 +#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:421 msgid "pages" msgstr "sayfa" -#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:343 +#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:339 msgid "Free pages" msgstr "Serbest sayfalar" -#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:259 +#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:255 msgid "Dirty pages" msgstr "Bozuk sayfalar" -#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:230 +#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:226 msgid "Pages containing data" msgstr "Veri içeren sayfalar" -#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:598 +#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:594 msgid "Pages to be flushed" msgstr "Temizlenen sayfalar" -#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:119 +#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:115 msgid "Busy pages" msgstr "Meşgul sayfalar" -#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:467 +#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:463 msgid "Latched pages" msgstr "Sabitlenmiş sayfalar" -#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:111 +#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:107 msgid "Buffer Pool Activity" msgstr "Ara Bellek Havuzu Etkinliği" -#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:731 +#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:727 msgid "Read requests" msgstr "İstekleri oku" -#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1244 +#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1240 msgid "Write requests" msgstr "Yazma istekleri" -#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:115 +#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:111 msgid "Read misses" msgstr "Okuma kaçırıyor" -#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:117 +#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:113 msgid "Write waits" msgstr "Yazma bekliyor" -#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:114 +#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:110 msgid "Read misses in %" msgstr "Okuma kaçırması %" -#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:116 +#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:112 msgid "Write waits in %" msgstr "Yazma beklemesi %" -#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:522 +#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:518 msgid "Data pointer size" msgstr "Veri imleci boyutu" -#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:523 +#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:519 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." @@ -2585,11 +2595,11 @@ msgstr "" "MAX_ROWS seçeneği belirlenmediğinde MyISAM tabloları için CREATE TABLE " "komutuyla kullanılacak olan bayt cinsinden varsayılan imleç boyutu." -#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:528 +#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:524 msgid "Automatic recovery mode" msgstr "Otomatik kurtarma kipi" -#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:529 +#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:525 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." @@ -2597,11 +2607,11 @@ msgstr "" "-myisam-recover sunucusu başlat seçeneği yoluyla ayarlanan, çökmüş MyISAM " "tablolarını otomatik kurtarmak için kip." -#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:527 +#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:523 msgid "Maximum size for temporary sort files" msgstr "Geçici sıralama dosyaları için en fazla boyut." -#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:526 +#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:522 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " @@ -2611,11 +2621,11 @@ msgstr "" "geçici dosyanın en fazla boyutu (REPAIR TABLE, ALTER TABLE, ya da LOAD DATA " "INFILE sırasında)." -#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:525 +#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:521 msgid "Maximum size for temporary files on index creation" msgstr "İndeks oluşturmada kullanılan geçici dosyalar için en fazla boyut" -#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:524 +#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:520 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " @@ -2625,11 +2635,11 @@ msgstr "" "belirlenmiş miktar tarafından kullanılan anahtar önbelleğinden büyükse, " "anahtar önbellek yöntemi tercih edilir." -#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:531 +#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:527 msgid "Repair threads" msgstr "İşlemleri onar" -#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:530 +#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:526 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." @@ -2638,11 +2648,11 @@ msgstr "" "sırasında, MyISAM tablosu indeksleri (her bir indeks kendi işlemi içinde) " "paralel olarak oluşturulur." -#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:533 +#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:529 msgid "Sort buffer size" msgstr "Ara bellek boyutunu sırala" -#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:532 +#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:528 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." @@ -2651,11 +2661,11 @@ msgstr "" "CREATE INDEX veya ALTER TABLE komutuyla indeksler oluşturulduğunda ayrılan " "ara bellek miktarı." -#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:620 +#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:616 msgid "Index cache size" msgstr "İndeks önbellek boyutu" -#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:619 +#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:615 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." @@ -2664,11 +2674,11 @@ msgstr "" "32MB'tır. Burada ayrılmış bellek sadece indeks sayfalarının önbelleklenmesi " "için kullanılır." -#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:630 +#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:626 msgid "Record cache size" msgstr "Kayıt önbellek boyutu" -#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:629 +#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:625 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " @@ -2679,11 +2689,11 @@ msgstr "" "veri (.xtd) ve sıra işaretçisi (.xtr) dosyalarında önbellek değişimleri için " "kullanılır." -#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:624 +#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:620 msgid "Log cache size" msgstr "Günlük önbellek boyutu" -#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:623 +#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:619 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." @@ -2691,11 +2701,11 @@ msgstr "" "Bellek miktarı işlem günlüğü verisinde önbellek olarak kullanılmak üzere " "işlem günlüğü önbelleğine ayrıldı. Varsayılan 16MB'tır." -#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:628 +#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:624 msgid "Log file threshold" msgstr "Günlük dosyası başı" -#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:627 +#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:623 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." @@ -2703,11 +2713,11 @@ msgstr "" "Yuvarlamadan önceki işlem günlüğü boyutu ve yeni günlük oluşturma. " "Varsayılan değer 16MB'tır." -#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:634 +#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:630 msgid "Transaction buffer size" msgstr "İşlem arabellek boyutu" -#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:633 +#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:629 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." @@ -2715,11 +2725,11 @@ msgstr "" "Genel işlem günlüğü arabellek boyutu (motor bu boyutun 2 arabelleğini " "ayırır). Varsayılan 1MB'tır." -#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:611 +#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:607 msgid "Checkpoint frequency" msgstr "Kontrol noktası sıklığı" -#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:612 +#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:608 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." @@ -2727,11 +2737,11 @@ msgstr "" "Kontrol noktası oluşturulmadan önce işlem günlüğüne yazılan veri miktarı. " "Varsayılan değer 24MB'tır." -#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:615 +#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:611 msgid "Data log threshold" msgstr "Veri günlüğü başı" -#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:616 +#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:612 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -2743,11 +2753,11 @@ msgstr "" "yüzden veritabanında depolanabilir toplam veri miktarını arttırmak için bu " "değişkenin değeri arttırılabilir." -#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:618 +#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:614 msgid "Garbage threshold" msgstr "Artık başı" -#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:617 +#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:613 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." @@ -2755,11 +2765,11 @@ msgstr "" "Küçültülmeden önce veri günlük dosyasındaki artık yüzdesi. Bu 1 ile 99 " "arasında bir değerdir. Varsayılan değer 50'dir." -#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:622 +#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:618 msgid "Log buffer size" msgstr "Günlük arabellek boyutu" -#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:621 +#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:617 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " @@ -2769,27 +2779,27 @@ msgstr "" "256MB'tır. Motor işlem öncesi bir arabellek hesaplar ama sadece işlemin veri " "günlüğü yazmasını gerektirirse." -#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:613 +#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:609 msgid "Data file grow size" msgstr "Veri dosyası büyüme boyutu" -#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:614 +#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:610 msgid "The grow size of the handle data (.xtd) files." msgstr "İşlenen veri (.xtd) dosyalarının büyüme boyutu." -#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:632 +#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:628 msgid "Row file grow size" msgstr "Satır dosyası büyüme boyutu" -#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:631 +#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:627 msgid "The grow size of the row pointer (.xtr) files." msgstr "Satır gösterge (.xtr) dosyalarının büyüme boyutu." -#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:626 +#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:622 msgid "Log file count" msgstr "Günlük dosyası sayısı" -#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:625 +#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:621 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -2802,19 +2812,19 @@ msgstr "" #: libraries/export/htmlword.php:132 libraries/export/odt.php:168 #: libraries/export/sql.php:881 libraries/export/texytext.php:130 -#: libraries/messages.inc.php:275 +#: libraries/messages.inc.php:271 msgid "Dumping data for table" msgstr "Tablo döküm verisi" #: libraries/export/htmlword.php:185 libraries/export/odt.php:238 #: libraries/export/sql.php:785 libraries/export/texytext.php:177 -#: libraries/messages.inc.php:1086 +#: libraries/messages.inc.php:1082 msgid "Table structure for table" msgstr "Tablo için tablo yapısı:" #: libraries/export/latex.php:125 libraries/export/sql.php:232 #: libraries/export/xml.php:102 libraries/header_printview.inc.php:57 -#: libraries/messages.inc.php:381 libraries/replication_gui.lib.php:63 +#: libraries/messages.inc.php:377 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:170 libraries/replication_gui.lib.php:265 #: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325 #: server_privileges.php:692 server_privileges.php:695 @@ -2826,185 +2836,185 @@ msgstr "Anamakine" #: libraries/export/latex.php:130 libraries/export/sql.php:233 #: libraries/export/xml.php:107 libraries/header_printview.inc.php:59 -#: libraries/messages.inc.php:354 +#: libraries/messages.inc.php:350 msgid "Generation Time" msgstr "Üretim Zamanı" #: libraries/export/latex.php:131 libraries/export/sql.php:235 -#: libraries/export/xml.php:108 libraries/messages.inc.php:864 main.php:186 +#: libraries/export/xml.php:108 libraries/messages.inc.php:860 main.php:186 msgid "Server version" msgstr "Sunucu sürümü" #: libraries/export/latex.php:132 libraries/export/sql.php:236 -#: libraries/export/xml.php:109 libraries/messages.inc.php:651 +#: libraries/export/xml.php:109 libraries/messages.inc.php:647 msgid "PHP Version" msgstr "PHP Sürümü" #: libraries/export/latex.php:201 libraries/export/sql.php:868 -#: libraries/messages.inc.php:226 server_databases.php:127 +#: libraries/messages.inc.php:222 server_databases.php:127 #: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317 #: tbl_structure.php:666 msgid "Data" msgstr "Veri" -#: libraries/export/odt.php:318 libraries/messages.inc.php:506 +#: libraries/export/odt.php:318 libraries/messages.inc.php:502 #: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "MIME türü" -#: libraries/export/sql.php:387 libraries/messages.inc.php:711 +#: libraries/export/sql.php:387 libraries/messages.inc.php:707 msgid "Procedures" msgstr "Yordamlar" -#: libraries/export/sql.php:401 libraries/messages.inc.php:348 +#: libraries/export/sql.php:401 libraries/messages.inc.php:344 msgid "Functions" msgstr "İşlevler" -#: libraries/export/sql.php:618 libraries/messages.inc.php:174 +#: libraries/export/sql.php:618 libraries/messages.inc.php:170 msgid "Constraints for dumped tables" msgstr "Dökümü yapılmış tablolar için kısıtlamalar" -#: libraries/export/sql.php:627 libraries/messages.inc.php:175 +#: libraries/export/sql.php:627 libraries/messages.inc.php:171 msgid "Constraints for table" msgstr "Tablo kısıtlamaları" -#: libraries/export/sql.php:727 libraries/messages.inc.php:512 +#: libraries/export/sql.php:727 libraries/messages.inc.php:508 msgid "MIME TYPES FOR TABLE" msgstr "TABLO MIME TÜRLERİ" -#: libraries/export/sql.php:739 libraries/messages.inc.php:743 +#: libraries/export/sql.php:739 libraries/messages.inc.php:739 msgid "RELATIONS FOR TABLE" msgstr "TABLO İLİŞKİLERİ" -#: libraries/export/sql.php:796 libraries/messages.inc.php:1178 +#: libraries/export/sql.php:796 libraries/messages.inc.php:1174 #: libraries/tbl_triggers.lib.php:19 msgid "Triggers" msgstr "Tetikleyiciler" -#: libraries/export/sql.php:808 libraries/messages.inc.php:1046 +#: libraries/export/sql.php:808 libraries/messages.inc.php:1042 msgid "Structure for view" msgstr "Görünüm yapısı" -#: libraries/export/sql.php:817 libraries/messages.inc.php:1029 +#: libraries/export/sql.php:817 libraries/messages.inc.php:1025 msgid "Stand-in structure for view" msgstr "Görünüm yapısı durumu" #: libraries/footer.inc.php:184 libraries/footer.inc.php:195 -#: libraries/footer.inc.php:198 libraries/messages.inc.php:586 +#: libraries/footer.inc.php:198 libraries/messages.inc.php:582 msgid "Open new phpMyAdmin window" msgstr "Yeni phpMyAdmin penceresi aç" -#: libraries/header.inc.php:115 libraries/messages.inc.php:542 +#: libraries/header.inc.php:115 libraries/messages.inc.php:538 msgid "New table" msgstr "Yeni tablo" #: libraries/header_printview.inc.php:50 libraries/header_printview.inc.php:55 -#: libraries/messages.inc.php:1024 +#: libraries/messages.inc.php:1020 msgid "SQL result" msgstr "SQL sonucu" -#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:350 +#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:346 msgid "Generated by" msgstr "Üreten:" #: libraries/header_printview.inc.php:63 libraries/import.lib.php:145 -#: libraries/messages.inc.php:820 navigation.php:652 navigation.php:674 +#: libraries/messages.inc.php:816 navigation.php:652 navigation.php:674 #: server_databases.php:122 tbl_printview.php:394 tbl_structure.php:366 #: tbl_structure.php:778 msgid "Rows" msgstr "Satır" -#: libraries/import.lib.php:150 libraries/messages.inc.php:285 sql.php:520 +#: libraries/import.lib.php:150 libraries/messages.inc.php:281 sql.php:520 #: tbl_change.php:181 tbl_get_field.php:35 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL boş bir sonuç kümesi döndürdü (örn. sıfır satır)." -#: libraries/import.lib.php:1078 libraries/messages.inc.php:399 +#: libraries/import.lib.php:1078 libraries/messages.inc.php:395 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "Aşağıdaki yapılar ya oluşturuldu ya da değiştirildi. Buyurun:" -#: libraries/import.lib.php:1079 libraries/messages.inc.php:400 +#: libraries/import.lib.php:1079 libraries/messages.inc.php:396 msgid "View a structure`s contents by clicking on its name" msgstr "İsmine tıklayarak yapının içeriklerini görüntüleyin" -#: libraries/import.lib.php:1080 libraries/messages.inc.php:401 +#: libraries/import.lib.php:1080 libraries/messages.inc.php:397 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" "Uyan \"Seçenekler\" bağlantısına tıklayarak bunun herhangi bir ayarını " "değiştirin" -#: libraries/import.lib.php:1081 libraries/messages.inc.php:402 +#: libraries/import.lib.php:1081 libraries/messages.inc.php:398 msgid "Edit its structure by following the \"Structure\" link" msgstr "Aşağıdaki \"Yapı\" bağlantısıyla bunun yapısını düzenleyin" -#: libraries/import.lib.php:1084 libraries/messages.inc.php:362 +#: libraries/import.lib.php:1084 libraries/messages.inc.php:358 msgid "Go to database" msgstr "Veritabanına git" #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:869 +#: libraries/messages.inc.php:865 msgid "settings" msgstr "ayarlar" -#: libraries/import.lib.php:1106 libraries/messages.inc.php:363 +#: libraries/import.lib.php:1106 libraries/messages.inc.php:359 msgid "Go to table" msgstr "Tabloya git" -#: libraries/import.lib.php:1109 libraries/messages.inc.php:1047 +#: libraries/import.lib.php:1109 libraries/messages.inc.php:1043 msgid "structure" msgstr "yapı" -#: libraries/import.lib.php:1115 libraries/messages.inc.php:364 +#: libraries/import.lib.php:1115 libraries/messages.inc.php:360 msgid "Go to view" msgstr "Görünüme git" #: libraries/import/csv.php:58 libraries/import/csv.php:70 #: libraries/import/csv.php:74 libraries/import/csv.php:78 -#: libraries/messages.inc.php:442 +#: libraries/messages.inc.php:438 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "CSV girişi için geçersiz parametre: %s" -#: libraries/import/csv.php:59 libraries/messages.inc.php:323 +#: libraries/import/csv.php:59 libraries/messages.inc.php:319 msgid "Fields terminated by" msgstr "Alanları sonlandıran:" -#: libraries/import/csv.php:71 libraries/messages.inc.php:320 +#: libraries/import/csv.php:71 libraries/messages.inc.php:316 msgid "Fields enclosed by" msgstr "Alanları kapsayan:" -#: libraries/import/csv.php:75 libraries/messages.inc.php:321 +#: libraries/import/csv.php:75 libraries/messages.inc.php:317 msgid "Fields escaped by" msgstr "Alanları dolduran:" -#: libraries/import/csv.php:79 libraries/messages.inc.php:481 +#: libraries/import/csv.php:79 libraries/messages.inc.php:477 msgid "Lines terminated by" msgstr "Satırı sonlandıran:" -#: libraries/import/csv.php:119 libraries/messages.inc.php:439 +#: libraries/import/csv.php:119 libraries/messages.inc.php:435 #, php-format msgid "Invalid column (%s) specified!" msgstr "Geçersiz sütun (%s) belirlenmiş!" #: libraries/import/csv.php:177 libraries/import/csv.php:424 -#: libraries/messages.inc.php:441 +#: libraries/messages.inc.php:437 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "CSV girişinin %d. satırında geçersiz biçim." -#: libraries/import/csv.php:312 libraries/messages.inc.php:440 +#: libraries/import/csv.php:312 libraries/messages.inc.php:436 #, php-format msgid "Invalid field count in CSV input on line %d." msgstr "CSV girişinde %d. satırda geçersiz alan sayısı." -#: libraries/import/ldi.php:55 libraries/messages.inc.php:446 +#: libraries/import/ldi.php:55 libraries/messages.inc.php:442 msgid "This plugin does not support compressed imports!" msgstr "Bu eklenti sıkıştırılmış içeri aktarım dosyalarını desteklemez!" #: libraries/import/xml.php:74 libraries/import/xml.php:130 -#: libraries/messages.inc.php:1247 +#: libraries/messages.inc.php:1243 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -3037,326 +3047,316 @@ msgstr "" msgid "ltr" msgstr "ltr" -#. l10n: Thousands separator -#: libraries/messages.inc.php:21 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: libraries/messages.inc.php:23 -msgid "." -msgstr "." - -#: libraries/messages.inc.php:25 server_status.php:461 +#: libraries/messages.inc.php:21 server_status.php:461 msgid "Aborted" msgstr "İptal edilen" -#: libraries/messages.inc.php:28 main.php:68 +#: libraries/messages.inc.php:24 main.php:68 msgid "Actions" msgstr "Eylemler" -#: libraries/messages.inc.php:34 libraries/tbl_properties.inc.php:780 +#: libraries/messages.inc.php:30 libraries/tbl_properties.inc.php:780 #: tbl_structure.php:543 #, php-format msgid "Add %s field(s)" msgstr "%s alan ekle" -#: libraries/messages.inc.php:35 +#: libraries/messages.inc.php:31 msgid "Add custom comment into header (\\n splits lines)" msgstr "Başlık içine özel yorum ekle (\\n satırları böler)" -#: libraries/messages.inc.php:36 +#: libraries/messages.inc.php:32 msgid "Add into comments" msgstr "Yorumların içine ekle" -#: libraries/messages.inc.php:37 tbl_structure.php:541 +#: libraries/messages.inc.php:33 tbl_structure.php:541 msgid "Add new field" msgstr "Yeni alan ekle" -#: libraries/messages.inc.php:38 server_privileges.php:1886 +#: libraries/messages.inc.php:34 server_privileges.php:1886 msgid "Add privileges on the following database" msgstr "Aşağıdaki veritabanına yetkileri ekle" -#: libraries/messages.inc.php:39 server_privileges.php:1907 +#: libraries/messages.inc.php:35 server_privileges.php:1907 msgid "Add privileges on the following table" msgstr "Aşağıdaki tabloya yetkileri ekle" -#: libraries/messages.inc.php:40 tbl_select.php:288 +#: libraries/messages.inc.php:36 tbl_select.php:288 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Arama koşulu ekle (\"where\" koşulu gövdesi):" -#: libraries/messages.inc.php:41 tbl_indexes.php:251 +#: libraries/messages.inc.php:37 tbl_indexes.php:251 #, php-format msgid "Add to index  %s column(s)" msgstr "İndekse %s sütun ekle" -#: libraries/messages.inc.php:42 server_privileges.php:1570 +#: libraries/messages.inc.php:38 server_privileges.php:1570 #: server_privileges.php:1594 server_privileges.php:1988 #: server_privileges.php:2177 msgid "Add a new User" msgstr "Yeni Kullanıcı ekle" -#: libraries/messages.inc.php:43 server_privileges.php:931 +#: libraries/messages.inc.php:39 server_privileges.php:931 msgid "You have added a new user." msgstr "Yeni bir kullanıcı eklediniz." -#: libraries/messages.inc.php:44 server_privileges.php:571 +#: libraries/messages.inc.php:40 server_privileges.php:571 msgid "Administration" msgstr "Yönetim" -#: libraries/messages.inc.php:45 tbl_structure.php:557 +#: libraries/messages.inc.php:41 tbl_structure.php:557 #, php-format msgid "After %s" msgstr "%s tablosundan sonra" -#: libraries/messages.inc.php:46 tbl_change.php:1147 +#: libraries/messages.inc.php:42 tbl_change.php:1147 msgid "Go back to previous page" msgstr "Önceki sayfaya geri dön" -#: libraries/messages.inc.php:47 tbl_change.php:1148 +#: libraries/messages.inc.php:43 tbl_change.php:1148 msgid "Insert another new row" msgstr "Yeni başka bir satır ekle" -#: libraries/messages.inc.php:48 tbl_change.php:1160 +#: libraries/messages.inc.php:44 tbl_change.php:1160 msgid "Edit next row" msgstr "Sonraki satırı düzenle" -#: libraries/messages.inc.php:49 tbl_change.php:1152 +#: libraries/messages.inc.php:45 tbl_change.php:1152 msgid "Go back to this page" msgstr "Bu sayfaya geri dön" -#: libraries/messages.inc.php:50 querywindow.php:115 +#: libraries/messages.inc.php:46 querywindow.php:115 msgid "All" msgstr "Tümü" -#: libraries/messages.inc.php:53 tbl_operations.php:249 +#: libraries/messages.inc.php:49 tbl_operations.php:249 msgid "Alter table order by" msgstr "Tablo sıralamasını şuna göre değiştir" -#: libraries/messages.inc.php:54 tbl_operations.php:660 +#: libraries/messages.inc.php:50 tbl_operations.php:660 msgid "Analyze" msgstr "İncele" -#: libraries/messages.inc.php:57 +#: libraries/messages.inc.php:53 msgid "and" msgstr "ve" -#: libraries/messages.inc.php:59 pmd_general.php:87 +#: libraries/messages.inc.php:55 pmd_general.php:87 msgid "Angular links" msgstr "Yönlendirmeli bağlantılar" -#: libraries/messages.inc.php:60 tbl_structure.php:401 tbl_structure.php:415 +#: libraries/messages.inc.php:56 tbl_structure.php:401 tbl_structure.php:415 #: tbl_structure.php:429 #, php-format msgid "An index has been added on %s" msgstr "%s üzerinde bir indeks eklendi" -#: libraries/messages.inc.php:61 server_privileges.php:1521 +#: libraries/messages.inc.php:57 server_privileges.php:1521 #: server_privileges.php:2123 msgid "Any" msgstr "Herhangi" -#: libraries/messages.inc.php:62 libraries/replication_gui.lib.php:298 +#: libraries/messages.inc.php:58 libraries/replication_gui.lib.php:298 #: server_privileges.php:725 msgid "Any host" msgstr "Herhangi anamakine" -#: libraries/messages.inc.php:63 libraries/replication_gui.lib.php:250 +#: libraries/messages.inc.php:59 libraries/replication_gui.lib.php:250 #: server_privileges.php:677 msgid "Any user" msgstr "Herhangi kullanıcı" -#: libraries/messages.inc.php:64 server_synchronize.php:449 +#: libraries/messages.inc.php:60 server_synchronize.php:449 #: server_synchronize.php:894 msgid "Apply Selected Changes" msgstr "Seçili Değişiklikleri Uygula" -#: libraries/messages.inc.php:66 tbl_structure.php:386 +#: libraries/messages.inc.php:62 tbl_structure.php:386 #, php-format msgid "A primary key has been added on %s" msgstr "%s üzerinde birincil anahtar eklendi" -#: libraries/messages.inc.php:67 libraries/mysql_charsets.lib.php:368 +#: libraries/messages.inc.php:63 libraries/mysql_charsets.lib.php:368 msgid "Arabic" msgstr "Arapça" -#: libraries/messages.inc.php:68 libraries/mysql_charsets.lib.php:359 +#: libraries/messages.inc.php:64 libraries/mysql_charsets.lib.php:359 msgid "Armenian" msgstr "Ermenice" -#: libraries/messages.inc.php:70 libraries/tbl_properties.inc.php:394 +#: libraries/messages.inc.php:66 libraries/tbl_properties.inc.php:394 msgid "As defined:" msgstr "Tanımlandığı gibi:" -#: libraries/messages.inc.php:71 tbl_structure.php:556 +#: libraries/messages.inc.php:67 tbl_structure.php:556 msgid "At Beginning of Table" msgstr "Tablonun Başına" -#: libraries/messages.inc.php:72 tbl_structure.php:555 +#: libraries/messages.inc.php:68 tbl_structure.php:555 msgid "At End of Table" msgstr "Tablonun Sonuna" -#: libraries/messages.inc.php:73 libraries/tbl_properties.inc.php:108 +#: libraries/messages.inc.php:69 libraries/tbl_properties.inc.php:108 #: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:144 #: tbl_structure.php:180 msgid "Attributes" msgstr "Öznitelikler" -#: libraries/messages.inc.php:74 pdf_pages.php:303 pdf_pages.php:306 +#: libraries/messages.inc.php:70 pdf_pages.php:303 pdf_pages.php:306 msgid "Automatic layout" msgstr "Otomatik yerleşim" -#: libraries/messages.inc.php:77 libraries/mysql_charsets.lib.php:354 +#: libraries/messages.inc.php:73 libraries/mysql_charsets.lib.php:354 msgid "Baltic" msgstr "Baltık" -#: libraries/messages.inc.php:78 libraries/sqlparser.lib.php:175 +#: libraries/messages.inc.php:74 libraries/sqlparser.lib.php:175 msgid "BEGIN CUT" msgstr "BEGIN CUT" -#: libraries/messages.inc.php:79 libraries/sqlparser.lib.php:179 +#: libraries/messages.inc.php:75 libraries/sqlparser.lib.php:179 msgid "BEGIN RAW" msgstr "BEGIN RAW" -#: libraries/messages.inc.php:80 libraries/mysql_charsets.lib.php:201 +#: libraries/messages.inc.php:76 libraries/mysql_charsets.lib.php:201 #: libraries/mysql_charsets.lib.php:402 tbl_change.php:518 msgid "Binary" msgstr "Binari" -#: libraries/messages.inc.php:81 tbl_change.php:894 +#: libraries/messages.inc.php:77 tbl_change.php:894 msgid "Binary - do not edit" msgstr "Binari - düzenlemeyiniz" -#: libraries/messages.inc.php:82 libraries/server_links.inc.php:76 +#: libraries/messages.inc.php:78 libraries/server_links.inc.php:76 #: server_binlog.php:110 server_status.php:253 test/theme.php:121 msgid "Binary log" msgstr "Binari günlüğü" -#: libraries/messages.inc.php:83 server_binlog.php:217 +#: libraries/messages.inc.php:79 server_binlog.php:217 msgid "Event type" msgstr "Olay türü" -#: libraries/messages.inc.php:84 server_binlog.php:220 +#: libraries/messages.inc.php:80 server_binlog.php:220 msgid "Information" msgstr "Bilgi" -#: libraries/messages.inc.php:85 server_binlog.php:215 +#: libraries/messages.inc.php:81 server_binlog.php:215 msgid "Log name" msgstr "Günlük ismi" -#: libraries/messages.inc.php:86 server_binlog.php:219 +#: libraries/messages.inc.php:82 server_binlog.php:219 msgid "Original position" msgstr "Orijinal konum" -#: libraries/messages.inc.php:87 server_binlog.php:216 +#: libraries/messages.inc.php:83 server_binlog.php:216 msgid "Position" msgstr "Konum" -#: libraries/messages.inc.php:88 libraries/replication_gui.lib.php:169 +#: libraries/messages.inc.php:84 libraries/replication_gui.lib.php:169 #: server_binlog.php:218 msgid "Server ID" msgstr "Sunucu ID" -#: libraries/messages.inc.php:92 +#: libraries/messages.inc.php:88 #, fuzzy msgctxt "$strBLOBRepositoryDisabled" msgid "Disabled" msgstr "Etkisizleştirildi" -#: libraries/messages.inc.php:95 +#: libraries/messages.inc.php:91 #, fuzzy msgctxt "$strBLOBRepositoryEnabled" msgid "Enabled" msgstr "Etkinleştirildi" -#: libraries/messages.inc.php:97 tbl_change.php:888 +#: libraries/messages.inc.php:93 tbl_change.php:888 msgid "Remove BLOB Repository Reference" msgstr "BLOB Havuzu Referansını kaldır" -#: libraries/messages.inc.php:98 +#: libraries/messages.inc.php:94 #, fuzzy msgctxt "$strBLOBRepositoryRepair" msgid "Repair" msgstr "Onar" -#: libraries/messages.inc.php:99 tbl_change.php:987 +#: libraries/messages.inc.php:95 tbl_change.php:987 msgid "Upload to BLOB repository" msgstr "BLOB Havuzuna gönder" -#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:359 +#: libraries/messages.inc.php:96 libraries/sql_query_form.lib.php:359 #: sql.php:677 msgid "Let every user access this bookmark" msgstr "Bütün kullanıcıların bu işaretlemeye erişimlerine izin ver" -#: libraries/messages.inc.php:103 sql.php:671 +#: libraries/messages.inc.php:99 sql.php:671 msgid "Label" msgstr "Etiket" -#: libraries/messages.inc.php:104 libraries/sql_query_form.lib.php:433 +#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:433 msgid "Bookmarked SQL query" msgstr "SQL sorgusu işaretlendi" -#: libraries/messages.inc.php:105 libraries/sql_query_form.lib.php:365 +#: libraries/messages.inc.php:101 libraries/sql_query_form.lib.php:365 msgid "Replace existing bookmark of same name" msgstr "Mevcut aynı ismin işaretlemesini değiştir" -#: libraries/messages.inc.php:106 libraries/sql_query_form.lib.php:352 +#: libraries/messages.inc.php:102 libraries/sql_query_form.lib.php:352 #: sql.php:665 sql.php:666 sql.php:683 msgid "Bookmark this SQL query" msgstr "Bu SQL sorgusunu işaretle" -#: libraries/messages.inc.php:107 libraries/sql_query_form.lib.php:466 +#: libraries/messages.inc.php:103 libraries/sql_query_form.lib.php:466 msgid "View only" msgstr "Sadece göster" -#: libraries/messages.inc.php:109 tbl_structure.php:161 +#: libraries/messages.inc.php:105 tbl_structure.php:161 msgid "Browse distinct values" msgstr "Belirgin değerlere gözat" -#: libraries/messages.inc.php:110 tbl_change.php:252 tbl_select.php:27 +#: libraries/messages.inc.php:106 tbl_change.php:252 tbl_select.php:27 #: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34 msgid "Browse foreign values" msgstr "Dış değerlere gözat" -#: libraries/messages.inc.php:118 libraries/mysql_charsets.lib.php:213 +#: libraries/messages.inc.php:114 libraries/mysql_charsets.lib.php:213 msgid "Bulgarian" msgstr "Bulgarca" -#: libraries/messages.inc.php:120 +#: libraries/messages.inc.php:116 msgid "\"bzipped\"" msgstr "\"bzip olarak\"" -#: libraries/messages.inc.php:122 +#: libraries/messages.inc.php:118 msgid "Calendar" msgstr "Takvim" -#: libraries/messages.inc.php:129 tbl_indexes.php:75 +#: libraries/messages.inc.php:125 tbl_indexes.php:75 msgid "Can't rename index to PRIMARY!" msgstr "İndeks'i PRIMARY olarak yeniden adlandıramazsınız!" -#: libraries/messages.inc.php:132 libraries/mysql_charsets.lib.php:223 +#: libraries/messages.inc.php:128 libraries/mysql_charsets.lib.php:223 #: libraries/mysql_charsets.lib.php:409 msgid "case-insensitive" msgstr "büyük küçük harfe duyarsız" -#: libraries/messages.inc.php:133 libraries/mysql_charsets.lib.php:226 +#: libraries/messages.inc.php:129 libraries/mysql_charsets.lib.php:226 #: libraries/mysql_charsets.lib.php:411 msgid "case-sensitive" msgstr "büyük küçük harfe duyarlı" -#: libraries/messages.inc.php:134 libraries/mysql_charsets.lib.php:332 +#: libraries/messages.inc.php:130 libraries/mysql_charsets.lib.php:332 msgid "Central European" msgstr "Orta Avrupa" -#: libraries/messages.inc.php:136 server_privileges.php:1969 +#: libraries/messages.inc.php:132 server_privileges.php:1969 msgid "... keep the old one." msgstr "... eski olanı sakla." -#: libraries/messages.inc.php:137 server_privileges.php:1967 +#: libraries/messages.inc.php:133 server_privileges.php:1967 msgid "Create a new user with the same privileges and ..." msgstr "Aynı yetkilerle yeni bir kullanıcı oluştur ve ..." -#: libraries/messages.inc.php:138 server_privileges.php:1972 +#: libraries/messages.inc.php:134 server_privileges.php:1972 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -3364,76 +3364,76 @@ msgstr "" "... eski olanı kullanıcı tablolarından sil ve sonra da yetkileri yeniden " "yükle." -#: libraries/messages.inc.php:139 server_privileges.php:1970 +#: libraries/messages.inc.php:135 server_privileges.php:1970 msgid " ... delete the old one from the user tables." msgstr "... eski olanı kullanıcı tablolarından sil." -#: libraries/messages.inc.php:140 server_privileges.php:1971 +#: libraries/messages.inc.php:136 server_privileges.php:1971 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." -#: libraries/messages.inc.php:141 server_privileges.php:1964 +#: libraries/messages.inc.php:137 server_privileges.php:1964 msgid "Change Login Information / Copy User" msgstr "Otutum Açma Bilgisini değiştir / Kullanıcıyı kopyala" -#: libraries/messages.inc.php:144 libraries/mysql_charsets.lib.php:107 +#: libraries/messages.inc.php:140 libraries/mysql_charsets.lib.php:107 msgid "Charset" msgstr "Karakter grubu" -#: libraries/messages.inc.php:146 server_collations.php:40 +#: libraries/messages.inc.php:142 server_collations.php:40 msgid "Character Sets and Collations" msgstr "Karakter Grupları ve Karşılaştırmalar" -#: libraries/messages.inc.php:147 libraries/server_links.inc.php:57 +#: libraries/messages.inc.php:143 libraries/server_links.inc.php:57 #: test/theme.php:109 msgid "Charsets" msgstr "Karakter grupları" -#: libraries/messages.inc.php:149 tbl_operations.php:661 +#: libraries/messages.inc.php:145 tbl_operations.php:661 msgid "Check" msgstr "Seç" -#: libraries/messages.inc.php:151 server_databases.php:293 +#: libraries/messages.inc.php:147 server_databases.php:293 #: server_databases.php:294 msgid "Check Privileges" msgstr "Yetkileri kontrol et" -#: libraries/messages.inc.php:152 server_databases.php:289 +#: libraries/messages.inc.php:148 server_databases.php:289 #, php-format msgid "Check privileges for database "%s"." msgstr ""%s" veritabanı için yetkileri kontrol et." -#: libraries/messages.inc.php:154 pdf_pages.php:261 +#: libraries/messages.inc.php:150 pdf_pages.php:261 msgid "Please choose a page to edit" msgstr "Lütfen düzenlemek için sayfa seçin" -#: libraries/messages.inc.php:157 +#: libraries/messages.inc.php:153 msgid "Displaying Column Comments" msgstr "Sütun Yorumları gösteriliyor" -#: libraries/messages.inc.php:159 pdf_pages.php:483 view_create.php:148 +#: libraries/messages.inc.php:155 pdf_pages.php:483 view_create.php:148 msgid "Column names" msgstr "Sütun adları" -#: libraries/messages.inc.php:160 server_privileges.php:1685 +#: libraries/messages.inc.php:156 server_privileges.php:1685 msgid "Column-specific privileges" msgstr "Sütuna özgü yetkiler" -#: libraries/messages.inc.php:164 +#: libraries/messages.inc.php:160 msgid "MySQL 4.0 compatible" msgstr "MySQL 4.0 uyumlu" -#: libraries/messages.inc.php:165 +#: libraries/messages.inc.php:161 msgid "Complete inserts" msgstr "Bütün eklemeler" -#: libraries/messages.inc.php:168 +#: libraries/messages.inc.php:164 #, php-format msgid "Could not load default configuration from: \"%1$s\"" msgstr "Varsayılan yapılandırma bundan yüklenemedi: \"%1$s\"" -#: libraries/messages.inc.php:169 main.php:306 +#: libraries/messages.inc.php:165 main.php:306 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " @@ -3443,169 +3443,169 @@ msgstr "" "phpMyAdmin dizininiz içinde mevcut. Birkez phpMyAdmin yapılandırıldı mı bunu " "kaldırmalısınız." -#: libraries/messages.inc.php:171 pdf_schema.php:672 +#: libraries/messages.inc.php:167 pdf_schema.php:672 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Lütfen %s tablosu için koordinatları yapılandırın" -#: libraries/messages.inc.php:173 server_status.php:433 +#: libraries/messages.inc.php:169 server_status.php:433 msgid "Connections" msgstr "Bağlantılar" -#: libraries/messages.inc.php:179 tbl_operations.php:509 +#: libraries/messages.inc.php:175 tbl_operations.php:509 msgid "Copy table to (database.table):" msgstr "Tabloyu şuna (veritabanı.tablo) kopyala:" -#: libraries/messages.inc.php:180 tbl_move_copy.php:58 +#: libraries/messages.inc.php:176 tbl_move_copy.php:58 #, php-format msgid "Table %s has been copied to %s." msgstr "%s tablosu %s üzerine kopyalandı." -#: libraries/messages.inc.php:181 tbl_move_copy.php:48 +#: libraries/messages.inc.php:177 tbl_move_copy.php:48 msgid "Can't copy table to same one!" msgstr "Tablo aynısına kopyalanamıyor!" -#: libraries/messages.inc.php:182 server_synchronize.php:94 +#: libraries/messages.inc.php:178 server_synchronize.php:94 msgid "Could not connect to the source" msgstr "Kaynağa bağlanamadı" -#: libraries/messages.inc.php:183 server_synchronize.php:97 +#: libraries/messages.inc.php:179 server_synchronize.php:97 msgid "Could not connect to the target" msgstr "Hedefe bağlanamadı" -#: libraries/messages.inc.php:184 server_processlist.php:24 +#: libraries/messages.inc.php:180 server_processlist.php:24 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin %s işlemini sonlandıramadı. Muhtemelen zaten kapatılmış." -#: libraries/messages.inc.php:187 +#: libraries/messages.inc.php:183 #, php-format msgid "Create an index on %s columns" msgstr " %s sütunda indeks oluştur." -#: libraries/messages.inc.php:188 tbl_indexes.php:160 +#: libraries/messages.inc.php:184 tbl_indexes.php:160 msgid "Create a new index" msgstr "Yeni bir indeks oluştur" -#: libraries/messages.inc.php:191 pdf_pages.php:297 pmd_pdf.php:114 +#: libraries/messages.inc.php:187 pdf_pages.php:297 pmd_pdf.php:114 msgid "Create a page" msgstr "Yeni bir sayfa oluştur" -#: libraries/messages.inc.php:192 +#: libraries/messages.inc.php:188 msgid "Creation of PDFs" msgstr "PDF'lerin oluşturulması" -#: libraries/messages.inc.php:193 pmd_general.php:74 pmd_general.php:306 +#: libraries/messages.inc.php:189 pmd_general.php:74 pmd_general.php:306 msgid "Create relation" msgstr "İlişki oluştur" -#: libraries/messages.inc.php:194 pmd_general.php:71 +#: libraries/messages.inc.php:190 pmd_general.php:71 #: server_synchronize.php:429 server_synchronize.php:872 msgid "Create table" msgstr "Tablo oluştur" -#: libraries/messages.inc.php:195 +#: libraries/messages.inc.php:191 #, fuzzy msgctxt "$strCreateTableShort" msgid "Create table" msgstr "Tablo oluştur" -#: libraries/messages.inc.php:196 server_privileges.php:1994 +#: libraries/messages.inc.php:192 server_privileges.php:1994 msgid "Database for user" msgstr "Kullanıcı için veritabanı" -#: libraries/messages.inc.php:197 server_privileges.php:1999 +#: libraries/messages.inc.php:193 server_privileges.php:1999 msgid "Create database with same name and grant all privileges" msgstr "Aynı isimle veritabanı oluştur ve tüm yetkileri ver" -#: libraries/messages.inc.php:198 +#: libraries/messages.inc.php:194 #, fuzzy msgctxt "$strCreateUserDatabaseNone" msgid "None" msgstr "Hiçbiri" -#: libraries/messages.inc.php:199 server_privileges.php:2003 +#: libraries/messages.inc.php:195 server_privileges.php:2003 #, php-format msgid "Grant all privileges on database "%s"" msgstr ""%s" veritabanı üzerindeki tüm yetkileri ver" -#: libraries/messages.inc.php:200 server_privileges.php:2000 +#: libraries/messages.inc.php:196 server_privileges.php:2000 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Joker isimlere tüm yetkileri ver (kullanıcıadı\\_%)" -#: libraries/messages.inc.php:201 +#: libraries/messages.inc.php:197 msgid "Creation/Update/Check dates" msgstr "Oluşturma/Güncelleme/Kontrol tarihleri" -#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:229 +#: libraries/messages.inc.php:199 libraries/mysql_charsets.lib.php:229 msgid "Croatian" msgstr "Hırvatça" -#: libraries/messages.inc.php:204 +#: libraries/messages.inc.php:200 msgid "CSV" msgstr "CSV" -#: libraries/messages.inc.php:205 libraries/server_synchronize.lib.php:1343 +#: libraries/messages.inc.php:201 libraries/server_synchronize.lib.php:1343 #: libraries/server_synchronize.lib.php:1369 msgid "Current server" msgstr "Şu anki sunucu" -#: libraries/messages.inc.php:206 main.php:159 +#: libraries/messages.inc.php:202 main.php:159 msgid "Custom color" msgstr "Özel renk" -#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:365 +#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:365 msgid "Cyrillic" msgstr "Kiril" -#: libraries/messages.inc.php:208 libraries/mysql_charsets.lib.php:232 +#: libraries/messages.inc.php:204 libraries/mysql_charsets.lib.php:232 msgid "Czech" msgstr "Çekçe" -#: libraries/messages.inc.php:209 libraries/mysql_charsets.lib.php:383 +#: libraries/messages.inc.php:205 libraries/mysql_charsets.lib.php:383 msgid "Czech-Slovak" msgstr "Çekçe-Slovakça" -#: libraries/messages.inc.php:211 libraries/mysql_charsets.lib.php:235 +#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:235 msgid "Danish" msgstr "Danca" -#: libraries/messages.inc.php:214 +#: libraries/messages.inc.php:210 msgid "Database export options" msgstr "Veritabanı dışarı aktarma seçenekleri" -#: libraries/messages.inc.php:217 server_synchronize.php:122 +#: libraries/messages.inc.php:213 server_synchronize.php:122 #: server_synchronize.php:125 tbl_create.php:82 tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "'%s' veritabanı mevcut değil." -#: libraries/messages.inc.php:219 server_databases.php:63 +#: libraries/messages.inc.php:215 server_databases.php:63 #, php-format msgid "%s databases have been dropped successfully." msgstr "%s veritabanları başarılı olarak kaldırıldı." -#: libraries/messages.inc.php:220 libraries/server_synchronize.lib.php:1341 +#: libraries/messages.inc.php:216 libraries/server_synchronize.lib.php:1341 #: server_synchronize.php:1110 msgid "Source database" msgstr "Kaynak veritabanı" -#: libraries/messages.inc.php:221 server_databases.php:88 +#: libraries/messages.inc.php:217 server_databases.php:88 msgid "Databases statistics" msgstr "Veritabanı istatistikleri" -#: libraries/messages.inc.php:222 server_databases.php:362 +#: libraries/messages.inc.php:218 server_databases.php:362 #: server_databases.php:363 msgid "Disable Statistics" msgstr "İstatistikler etkisiz" -#: libraries/messages.inc.php:223 server_databases.php:358 +#: libraries/messages.inc.php:219 server_databases.php:358 #: server_databases.php:359 msgid "Enable Statistics" msgstr "İstatistikler etkin" -#: libraries/messages.inc.php:224 server_databases.php:366 +#: libraries/messages.inc.php:220 server_databases.php:366 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -3613,30 +3613,30 @@ msgstr "" "Not: Buradaki veritabanı istatistiklerini etkinleştirmek web sunucusu ile " "MySQL sunucusu arasında yüksek trafiğe yol açabilir." -#: libraries/messages.inc.php:225 libraries/server_synchronize.lib.php:1367 +#: libraries/messages.inc.php:221 libraries/server_synchronize.lib.php:1367 #: server_synchronize.php:1112 msgid "Target database" msgstr "Hedef veritabanı" -#: libraries/messages.inc.php:228 server_synchronize.php:425 +#: libraries/messages.inc.php:224 server_synchronize.php:425 #: server_synchronize.php:868 msgid "Data Difference" msgstr "Veri Farklılığı" -#: libraries/messages.inc.php:231 server_synchronize.php:272 +#: libraries/messages.inc.php:227 server_synchronize.php:272 msgid "Data Synchronization" msgstr "Veri Eşitleme" -#: libraries/messages.inc.php:235 server_privileges.php:526 +#: libraries/messages.inc.php:231 server_privileges.php:526 #: server_privileges.php:1679 msgid "Database-specific privileges" msgstr "Veritabanına özgü yetkiler" -#: libraries/messages.inc.php:237 server_privileges.php:2136 +#: libraries/messages.inc.php:233 server_privileges.php:2136 msgid "database-specific" msgstr "Veritabanına özgü" -#: libraries/messages.inc.php:240 libraries/tbl_properties.inc.php:106 +#: libraries/messages.inc.php:236 libraries/tbl_properties.inc.php:106 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" @@ -3644,32 +3644,32 @@ msgstr "" "Varsayılan değerler için lütfen sola eğik çizgisiz veya alıntısız sadece tek " "değer girin. Bu biçimi kullanın: a" -#: libraries/messages.inc.php:241 tbl_operations.php:589 +#: libraries/messages.inc.php:237 tbl_operations.php:589 msgid "Defragment table" msgstr "Tabloyu birleştir" -#: libraries/messages.inc.php:242 +#: libraries/messages.inc.php:238 msgid "Use delayed inserts" msgstr "Gecikmiş eklemeleri kullan" -#: libraries/messages.inc.php:245 server_privileges.php:1243 +#: libraries/messages.inc.php:241 server_privileges.php:1243 msgid "No users selected for deleting!" msgstr "Silmek için kullanıcı seçilmedi!" -#: libraries/messages.inc.php:246 pmd_general.php:372 +#: libraries/messages.inc.php:242 pmd_general.php:372 msgid "Delete relation" msgstr "İlişkiyi sil" -#: libraries/messages.inc.php:248 server_privileges.php:1232 +#: libraries/messages.inc.php:244 server_privileges.php:1232 #, php-format msgid "Deleting %s" msgstr "%s siliniyor" -#: libraries/messages.inc.php:249 libraries/sql_query_form.lib.php:388 +#: libraries/messages.inc.php:245 libraries/sql_query_form.lib.php:388 msgid "Delimiter" msgstr "Sınırlayıcı" -#: libraries/messages.inc.php:250 pdf_pages.php:506 +#: libraries/messages.inc.php:246 pdf_pages.php:506 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -3677,7 +3677,7 @@ msgstr "" "Şu anki sayfa, daha fazla bulunması gereksiz tablolara verilmiş referanslara " "sahip. Bu referansları silmek ister misiniz?" -#: libraries/messages.inc.php:254 pmd_help.php:29 +#: libraries/messages.inc.php:250 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 " @@ -3687,142 +3687,142 @@ msgstr "" "ayarı kaldırmak için \"Görüntülemek için alan seç\" simgesine tıklayın, " "sonrada uygun alan adı üzerine tıklayın." -#: libraries/messages.inc.php:256 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:252 libraries/mysql_charsets.lib.php:247 msgid "dictionary" msgstr "sözlük" -#: libraries/messages.inc.php:257 libraries/server_synchronize.lib.php:1348 +#: libraries/messages.inc.php:253 libraries/server_synchronize.lib.php:1348 msgid "Difference" msgstr "Farkı" -#: libraries/messages.inc.php:258 pmd_general.php:87 +#: libraries/messages.inc.php:254 pmd_general.php:87 msgid "Direct links" msgstr "Doğrudan bağlantılar" -#: libraries/messages.inc.php:261 +#: libraries/messages.inc.php:257 msgid "Disable foreign key checks" msgstr "Dış anahtar kontrolünü etkisizleştir" -#: libraries/messages.inc.php:262 +#: libraries/messages.inc.php:258 msgid "Display Features" msgstr "Özellikleri Göster" -#: libraries/messages.inc.php:263 tbl_select.php:301 +#: libraries/messages.inc.php:259 tbl_select.php:301 msgid "Display order:" msgstr "Görünüm düzeni:" -#: libraries/messages.inc.php:265 tbl_select.php:132 +#: libraries/messages.inc.php:261 tbl_select.php:132 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "\"Örnek sorgu\" yap. (joker: \"%\")" -#: libraries/messages.inc.php:266 +#: libraries/messages.inc.php:262 msgid "DocSQL" msgstr "DocSQL" -#: libraries/messages.inc.php:268 +#: libraries/messages.inc.php:264 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Sıfır değerleri için AUTO_INCREMENT değeri kullanma" -#: libraries/messages.inc.php:273 server_privileges.php:1579 +#: libraries/messages.inc.php:269 server_privileges.php:1579 #: server_privileges.php:1580 server_privileges.php:1581 msgid "Drop the databases that have the same names as the users." msgstr "Kullanıcılarla aynı isimlerde olan veritabanlarını kaldır." -#: libraries/messages.inc.php:278 tbl_printview.php:382 tbl_structure.php:743 +#: libraries/messages.inc.php:274 tbl_printview.php:382 tbl_structure.php:743 msgid "dynamic" msgstr "değişken" -#: libraries/messages.inc.php:282 server_privileges.php:1324 +#: libraries/messages.inc.php:278 server_privileges.php:1324 #: server_privileges.php:1610 msgid "Edit Privileges" msgstr "Yetkileri düzenle" -#: libraries/messages.inc.php:283 tbl_printview.php:341 tbl_structure.php:688 +#: libraries/messages.inc.php:279 tbl_printview.php:341 tbl_structure.php:688 msgid "Effective" msgstr "Etkili" -#: libraries/messages.inc.php:286 libraries/relation.lib.php:100 +#: libraries/messages.inc.php:282 libraries/relation.lib.php:100 msgid "Enabled" msgstr "Etkin" -#: libraries/messages.inc.php:287 +#: libraries/messages.inc.php:283 msgid "Enclose export in a transaction" msgstr "İşlem içinde dışarı aktarmayı kapsa" -#: libraries/messages.inc.php:288 libraries/sqlparser.lib.php:177 +#: libraries/messages.inc.php:284 libraries/sqlparser.lib.php:177 msgid "END CUT" msgstr "END CUT" -#: libraries/messages.inc.php:290 libraries/sqlparser.lib.php:183 +#: libraries/messages.inc.php:286 libraries/sqlparser.lib.php:183 msgid "END RAW" msgstr "END RAW" -#: libraries/messages.inc.php:293 libraries/server_links.inc.php:61 +#: libraries/messages.inc.php:289 libraries/server_links.inc.php:61 #: test/theme.php:113 msgid "Engines" msgstr "Motorlar" -#: libraries/messages.inc.php:295 libraries/mysql_charsets.lib.php:238 +#: libraries/messages.inc.php:291 libraries/mysql_charsets.lib.php:238 msgid "English" msgstr "İngilizce" -#: libraries/messages.inc.php:296 server_privileges.php:393 +#: libraries/messages.inc.php:292 server_privileges.php:393 #: server_privileges.php:535 server_privileges.php:1501 msgid " Note: MySQL privilege names are expressed in English " msgstr " Not: MySQL yetki adları İngilizce olarak belirtilir " -#: libraries/messages.inc.php:298 libraries/zip_extension.lib.php:49 +#: libraries/messages.inc.php:294 libraries/zip_extension.lib.php:49 #: libraries/zip_extension.lib.php:51 libraries/zip_extension.lib.php:66 msgid "Error in ZIP archive:" msgstr "ZIP arşivinde hata:" -#: libraries/messages.inc.php:303 libraries/mysql_charsets.lib.php:241 +#: libraries/messages.inc.php:299 libraries/mysql_charsets.lib.php:241 msgid "Esperanto" msgstr "Esperanto" -#: libraries/messages.inc.php:304 libraries/mysql_charsets.lib.php:244 +#: libraries/messages.inc.php:300 libraries/mysql_charsets.lib.php:244 msgid "Estonian" msgstr "Estçe" -#: libraries/messages.inc.php:305 libraries/tbl_triggers.lib.php:29 +#: libraries/messages.inc.php:301 libraries/tbl_triggers.lib.php:29 msgid "Event" msgstr "Olay" -#: libraries/messages.inc.php:307 +#: libraries/messages.inc.php:303 msgid "Excel edition" msgstr "Excel yapısı" -#: libraries/messages.inc.php:311 pmd_pdf.php:85 +#: libraries/messages.inc.php:307 pmd_pdf.php:85 msgid "Export/Import to scale" msgstr "Ölçeklemek için İçeri/Dışarı Aktar" -#: libraries/messages.inc.php:313 +#: libraries/messages.inc.php:309 msgid "Extended inserts" msgstr "Genişletilmiş eklemeler" -#: libraries/messages.inc.php:314 pdf_schema.php:1267 pdf_schema.php:1288 +#: libraries/messages.inc.php:310 pdf_schema.php:1267 pdf_schema.php:1288 #: tbl_printview.php:147 tbl_structure.php:183 tbl_tracking.php:278 msgid "Extra" msgstr "Ekstra" -#: libraries/messages.inc.php:316 server_status.php:447 +#: libraries/messages.inc.php:312 server_status.php:447 msgid "Failed attempts" msgstr "Başarısız deneme" -#: libraries/messages.inc.php:318 tbl_structure.php:375 +#: libraries/messages.inc.php:314 tbl_structure.php:375 #, php-format msgid "Field %s has been dropped" msgstr "%s alanı kaldırıldı" -#: libraries/messages.inc.php:322 libraries/sql_query_form.lib.php:317 +#: libraries/messages.inc.php:318 libraries/sql_query_form.lib.php:317 msgid "Fields" msgstr "Alanlar" -#: libraries/messages.inc.php:332 server_binlog.php:136 +#: libraries/messages.inc.php:328 server_binlog.php:136 msgid "Files" msgstr "Dosyalar" -#: libraries/messages.inc.php:334 server_privileges.php:1597 +#: libraries/messages.inc.php:330 server_privileges.php:1597 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -3835,120 +3835,120 @@ msgstr "" "sunucunun kullandığı yetkilerden farklı olabilir. Bu durumda devam etmeden " "önce %syetkileri yeniden yüklemeniz%s gerekir." -#: libraries/messages.inc.php:335 server_status.php:289 +#: libraries/messages.inc.php:331 server_status.php:289 msgid "Flush query cache" msgstr "Sorgu önbelleğini temizle" -#: libraries/messages.inc.php:336 +#: libraries/messages.inc.php:332 msgid "Flush the table (\"FLUSH\")" msgstr "Tabloyu temizle (\"FLUSH\")" -#: libraries/messages.inc.php:337 server_status.php:271 +#: libraries/messages.inc.php:333 server_status.php:271 msgid "Flush (close) all tables" msgstr "Tüm tabloları temizle (kapat)" -#: libraries/messages.inc.php:339 tbl_relation.php:279 +#: libraries/messages.inc.php:335 tbl_relation.php:279 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" "%1$s üzerinde dış anahtar oluşturma hatası (veri türlerini kontrol edin)" -#: libraries/messages.inc.php:341 setup/lib/messages.inc.php:88 +#: libraries/messages.inc.php:337 setup/lib/messages.inc.php:88 #: tbl_printview.php:376 tbl_structure.php:738 msgid "Format" msgstr "Biçim" -#: libraries/messages.inc.php:344 server_replication.php:325 +#: libraries/messages.inc.php:340 server_replication.php:325 msgid "Full start" msgstr "Tam başlat" -#: libraries/messages.inc.php:345 server_replication.php:325 +#: libraries/messages.inc.php:341 server_replication.php:325 msgid "Full stop" msgstr "Tam durdur" -#: libraries/messages.inc.php:347 tbl_change.php:282 tbl_change.php:320 +#: libraries/messages.inc.php:343 tbl_change.php:282 tbl_change.php:320 msgid "Function" msgstr "İşlev" -#: libraries/messages.inc.php:355 libraries/mysql_charsets.lib.php:377 +#: libraries/messages.inc.php:351 libraries/mysql_charsets.lib.php:377 msgid "Georgian" msgstr "Gürcüce" -#: libraries/messages.inc.php:356 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:352 libraries/mysql_charsets.lib.php:247 #: libraries/mysql_charsets.lib.php:250 msgid "German" msgstr "Almanca" -#: libraries/messages.inc.php:357 themes.php:42 +#: libraries/messages.inc.php:353 themes.php:42 msgid "Get more themes!" msgstr "Daha fazla tema al!" -#: libraries/messages.inc.php:358 server_privileges.php:2134 +#: libraries/messages.inc.php:354 server_privileges.php:2134 msgid "global" msgstr "genel" -#: libraries/messages.inc.php:359 server_privileges.php:524 +#: libraries/messages.inc.php:355 server_privileges.php:524 #: server_privileges.php:1500 msgid "Global privileges" msgstr "Genel yetkiler" -#: libraries/messages.inc.php:360 server_variables.php:55 +#: libraries/messages.inc.php:356 server_variables.php:55 #: server_variables.php:89 msgid "Global value" msgstr "Genel değer" -#: libraries/messages.inc.php:365 server_privileges.php:1502 +#: libraries/messages.inc.php:361 server_privileges.php:1502 #: server_privileges.php:1684 server_privileges.php:2033 msgid "Grant" msgstr "Onayla" -#: libraries/messages.inc.php:366 libraries/mysql_charsets.lib.php:380 +#: libraries/messages.inc.php:362 libraries/mysql_charsets.lib.php:380 msgid "Greek" msgstr "Yunanca" -#: libraries/messages.inc.php:367 +#: libraries/messages.inc.php:363 msgid "\"gzipped\"" msgstr "\"gzip olarak\"" -#: libraries/messages.inc.php:369 server_status.php:250 +#: libraries/messages.inc.php:365 server_status.php:250 msgid "Handler" msgstr "Denetimci" -#: libraries/messages.inc.php:370 server_synchronize.php:464 +#: libraries/messages.inc.php:366 server_synchronize.php:464 msgid "Selected target tables have been synchronized with source tables." msgstr "Seçili hedef tablolar kaynak tablolar ile eşitlendi." -#: libraries/messages.inc.php:372 libraries/mysql_charsets.lib.php:374 +#: libraries/messages.inc.php:368 libraries/mysql_charsets.lib.php:374 msgid "Hebrew" msgstr "İbranice" -#: libraries/messages.inc.php:373 pmd_general.php:83 +#: libraries/messages.inc.php:369 pmd_general.php:83 msgid "Help" msgstr "Yardım" -#: libraries/messages.inc.php:374 +#: libraries/messages.inc.php:370 msgid "Use hexadecimal for BLOB" msgstr "BLOB için onaltılık sistem kullan" -#: libraries/messages.inc.php:376 pmd_general.php:120 +#: libraries/messages.inc.php:372 pmd_general.php:120 msgid "Hide/Show all" msgstr "Tümünü Gizle/Göster" -#: libraries/messages.inc.php:377 pmd_general.php:124 +#: libraries/messages.inc.php:373 pmd_general.php:124 msgid "Hide/Show Tables with no relation" msgstr "İlişkisi olmayan Tabloları Gizle/Göster" -#: libraries/messages.inc.php:378 libraries/navigation_header.inc.php:54 +#: libraries/messages.inc.php:374 libraries/navigation_header.inc.php:54 #: libraries/navigation_header.inc.php:57 #: libraries/navigation_header.inc.php:58 msgid "Home" msgstr "Giriş" -#: libraries/messages.inc.php:379 main.php:233 +#: libraries/messages.inc.php:375 main.php:233 msgid "Official Homepage" msgstr "Resmî phpMyAdmin Anasayfası" -#: libraries/messages.inc.php:382 libraries/replication_gui.lib.php:327 +#: libraries/messages.inc.php:378 libraries/replication_gui.lib.php:327 #: server_privileges.php:753 msgid "" "When Host table is used, this field is ignored and values stored in Host " @@ -3957,98 +3957,98 @@ msgstr "" "Anamakine tablosu kullanıldığında bu alan yoksayılır ve yerine Anamakine " "tablosunda depolanan değerler kullanılır." -#: libraries/messages.inc.php:383 +#: libraries/messages.inc.php:379 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/messages.inc.php:384 libraries/mysql_charsets.lib.php:253 +#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:253 msgid "Hungarian" msgstr "Macarca" -#: libraries/messages.inc.php:386 libraries/mysql_charsets.lib.php:256 +#: libraries/messages.inc.php:382 libraries/mysql_charsets.lib.php:256 msgid "Icelandic" msgstr "İzlandaca" -#: libraries/messages.inc.php:387 server_processlist.php:53 +#: libraries/messages.inc.php:383 server_processlist.php:53 msgid "ID" msgstr "ID" -#: libraries/messages.inc.php:388 libraries/mult_submits.inc.php:108 +#: libraries/messages.inc.php:384 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:479 msgid "Fulltext" msgstr "Tam metin" -#: libraries/messages.inc.php:389 +#: libraries/messages.inc.php:385 msgid "Ignore duplicate rows" msgstr "Kopya satırları yoksay" -#: libraries/messages.inc.php:390 tbl_change.php:302 tbl_indexes.php:200 +#: libraries/messages.inc.php:386 tbl_change.php:302 tbl_indexes.php:200 #: tbl_indexes.php:225 msgid "Ignore" msgstr "Yoksay" -#: libraries/messages.inc.php:391 +#: libraries/messages.inc.php:387 msgid "Use ignore inserts" msgstr "Yoksayılan eklemeleri kullan" -#: libraries/messages.inc.php:392 +#: libraries/messages.inc.php:388 msgid "Column names in first row" msgstr "İlk sıradaki sütun isimleri" -#: libraries/messages.inc.php:393 +#: libraries/messages.inc.php:389 msgid "Do not import empty rows" msgstr "Boş sıraları içeri aktarma" -#: libraries/messages.inc.php:394 pmd_general.php:104 +#: libraries/messages.inc.php:390 pmd_general.php:104 msgid "Import/Export coordinates for PDF schema" msgstr "PDF şeması için düzenlemeleri İçeri/Dışarı Aktar" -#: libraries/messages.inc.php:395 querywindow.php:104 +#: libraries/messages.inc.php:391 querywindow.php:104 msgid "Import files" msgstr "Dosyaları içeri aktar" -#: libraries/messages.inc.php:403 +#: libraries/messages.inc.php:399 msgid "Import currencies ($5.00 to 5.00)" msgstr "Parasalları içeri aktar ($5.00'dan 5.00'a)" -#: libraries/messages.inc.php:404 libraries/messages.inc.php:584 +#: libraries/messages.inc.php:400 libraries/messages.inc.php:580 msgid "Open Document Spreadsheet" msgstr "Açık Kaynaklı Tablolama Belgesi" -#: libraries/messages.inc.php:405 +#: libraries/messages.inc.php:401 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "Yüzdeleri doğru ondalık olarak içeri aktar (%12.00'dan .12'ye)" -#: libraries/messages.inc.php:409 +#: libraries/messages.inc.php:405 msgid "Excel 97-2003 XLS Workbook" msgstr "Excel 97-2003 XLS Kitabı" -#: libraries/messages.inc.php:410 +#: libraries/messages.inc.php:406 msgid "Excel 2007 XLSX Workbook" msgstr "Excel 2007 XLSX Kitabı" -#: libraries/messages.inc.php:414 libraries/mult_submits.inc.php:98 +#: libraries/messages.inc.php:410 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:476 tbl_structure.php:674 msgid "Index" msgstr "İndeks" -#: libraries/messages.inc.php:415 tbl_indexes.php:168 +#: libraries/messages.inc.php:411 tbl_indexes.php:168 msgid "Index name:" msgstr "İndeks ismi:" -#: libraries/messages.inc.php:416 tbl_indexes.php:174 +#: libraries/messages.inc.php:412 tbl_indexes.php:174 msgid "Index type:" msgstr "İndeks türü :" -#: libraries/messages.inc.php:417 sql.php:639 +#: libraries/messages.inc.php:413 sql.php:639 #, php-format msgid "Problems with indexes of table `%s`" msgstr "`%s` tablosunun indeksleri ile ilgili sorunlar" -#: libraries/messages.inc.php:427 main.php:266 +#: libraries/messages.inc.php:423 main.php:266 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -4060,24 +4060,24 @@ msgstr "" "açık ayarlarla çalışıyor ve bu güvenlik açığını gerçekten düzeltmeniz " "gerekmektedir." -#: libraries/messages.inc.php:428 tbl_change.php:1130 +#: libraries/messages.inc.php:424 tbl_change.php:1130 msgid "Insert as new row" msgstr "Yeni satır olarak ekle" -#: libraries/messages.inc.php:429 sql.php:496 tbl_replace.php:386 +#: libraries/messages.inc.php:425 sql.php:496 tbl_replace.php:386 #, php-format msgid "Inserted row id: %1$d" msgstr "Eklenen satır id: %1$d" -#: libraries/messages.inc.php:430 tbl_change.php:1131 +#: libraries/messages.inc.php:426 tbl_change.php:1131 msgid "Insert as new row and ignore errors" msgstr "Yeni satır olarak ekle ve hataları yoksay" -#: libraries/messages.inc.php:432 main.php:139 +#: libraries/messages.inc.php:428 main.php:139 msgid "Interface" msgstr "Arabirim" -#: libraries/messages.inc.php:433 tbl_relation.php:407 +#: libraries/messages.inc.php:429 tbl_relation.php:407 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -4085,31 +4085,31 @@ msgstr "" "FOREIGN KEY bağlantısının yerini tutan bir bağlantı varken dahili bağlantı " "mümkün değildir." -#: libraries/messages.inc.php:435 pdf_pages.php:303 +#: libraries/messages.inc.php:431 pdf_pages.php:303 msgid "Internal relations" msgstr "Dahili ilişkiler" -#: libraries/messages.inc.php:438 tbl_indexes.php:256 tbl_structure.php:590 +#: libraries/messages.inc.php:434 tbl_indexes.php:256 tbl_structure.php:590 #: tbl_structure.php:601 msgid "Column count has to be larger than zero." msgstr "Sütun sayısı sıfırdan büyük olmalı." -#: libraries/messages.inc.php:444 libraries/tbl_properties.inc.php:784 +#: libraries/messages.inc.php:440 libraries/tbl_properties.inc.php:784 #: tbl_structure.php:537 msgid "You have to add at least one field." msgstr "En az bir alan eklemek zorundasınız." -#: libraries/messages.inc.php:449 +#: libraries/messages.inc.php:445 #, php-format msgid "Invalid server index: \"%s\"" msgstr "Geçersiz sunucu indeksi: \"%s\"" -#: libraries/messages.inc.php:452 libraries/mysql_charsets.lib.php:259 +#: libraries/messages.inc.php:448 libraries/mysql_charsets.lib.php:259 #: libraries/mysql_charsets.lib.php:349 msgid "Japanese" msgstr "Japonca" -#: libraries/messages.inc.php:453 main.php:331 +#: libraries/messages.inc.php:449 main.php:331 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " @@ -4119,109 +4119,109 @@ msgstr "" "phpMyAdmin işevselliği eksik olacaktır. Örneğin rehber çerçeveyi otomatik " "olarak yenilemeyecek." -#: libraries/messages.inc.php:454 server_status.php:257 +#: libraries/messages.inc.php:450 server_status.php:257 msgid "Joins" msgstr "Birleştirmeler" -#: libraries/messages.inc.php:457 server_privileges.php:763 +#: libraries/messages.inc.php:453 server_privileges.php:763 msgid "Do not change the password" msgstr "Parolayı değiştirme" -#: libraries/messages.inc.php:458 server_status.php:256 +#: libraries/messages.inc.php:454 server_status.php:256 msgid "Key cache" msgstr "Anahtar önbelleği" -#: libraries/messages.inc.php:462 libraries/mysql_charsets.lib.php:268 +#: libraries/messages.inc.php:458 libraries/mysql_charsets.lib.php:268 #: libraries/mysql_charsets.lib.php:371 msgid "Korean" msgstr "Korece" -#: libraries/messages.inc.php:466 libraries/select_lang.lib.php:480 +#: libraries/messages.inc.php:462 libraries/select_lang.lib.php:480 #: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492 #, php-format msgid "Unknown language: %1$s." msgstr "Bilinmeyen dil: %1$s." -#: libraries/messages.inc.php:468 +#: libraries/messages.inc.php:464 msgid "Table caption" msgstr "Tablo başlığı" -#: libraries/messages.inc.php:469 +#: libraries/messages.inc.php:465 msgid "Content of table __TABLE__" msgstr "__TABLE__ tablosunun içeriği" -#: libraries/messages.inc.php:470 +#: libraries/messages.inc.php:466 msgid "Continued table caption" msgstr "Devam eden tablo başlığı" -#: libraries/messages.inc.php:471 +#: libraries/messages.inc.php:467 msgid "(continued)" msgstr "(devam eden)" -#: libraries/messages.inc.php:472 +#: libraries/messages.inc.php:468 msgid "Include table caption" msgstr "Tablo başlığını dahil et" -#: libraries/messages.inc.php:473 +#: libraries/messages.inc.php:469 msgid "Label key" msgstr "Etiket anahtarı" -#: libraries/messages.inc.php:474 +#: libraries/messages.inc.php:470 msgid "LaTeX" msgstr "LaTeX" -#: libraries/messages.inc.php:475 +#: libraries/messages.inc.php:471 msgid "Structure of table __TABLE__" msgstr "__TABLE__ tablosunun yapısı" -#: libraries/messages.inc.php:476 libraries/mysql_charsets.lib.php:262 +#: libraries/messages.inc.php:472 libraries/mysql_charsets.lib.php:262 msgid "Latvian" msgstr "Litvanyaca" -#: libraries/messages.inc.php:477 +#: libraries/messages.inc.php:473 msgid "CSV using LOAD DATA" msgstr "VERİ YÜKLE kullanarak CSV" -#: libraries/messages.inc.php:478 +#: libraries/messages.inc.php:474 msgid "Use LOCAL keyword" msgstr "YEREL anahtar kelime kullan" -#: libraries/messages.inc.php:479 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:475 libraries/tbl_properties.inc.php:105 msgid "Length/Values" msgstr "Uzunluk/Değerler" -#: libraries/messages.inc.php:480 tbl_select.php:295 +#: libraries/messages.inc.php:476 tbl_select.php:295 msgid "Number of rows per page" msgstr "Sayfa başına satır sayısı" -#: libraries/messages.inc.php:484 libraries/mysql_charsets.lib.php:265 +#: libraries/messages.inc.php:480 libraries/mysql_charsets.lib.php:265 msgid "Lithuanian" msgstr "Litvanyaca" -#: libraries/messages.inc.php:485 libraries/replication_gui.lib.php:302 +#: libraries/messages.inc.php:481 libraries/replication_gui.lib.php:302 #: server_privileges.php:729 msgid "Local" msgstr "Yerel" -#: libraries/messages.inc.php:487 server_privileges.php:669 +#: libraries/messages.inc.php:483 server_privileges.php:669 msgid "Login Information" msgstr "Oturum Açma Bilgisi" -#: libraries/messages.inc.php:490 libraries/navigation_header.inc.php:67 +#: libraries/messages.inc.php:486 libraries/navigation_header.inc.php:67 #: libraries/navigation_header.inc.php:70 #: libraries/navigation_header.inc.php:71 main.php:99 msgid "Log out" msgstr "Oturumu Kapat" -#: libraries/messages.inc.php:497 server_status.php:440 +#: libraries/messages.inc.php:493 server_status.php:440 msgid "max. concurrent connections" msgstr "En fazla eşzamanlı bağlantı" -#: libraries/messages.inc.php:498 +#: libraries/messages.inc.php:494 msgid "Maximal length of created query" msgstr "Oluşturulan sorgunun azami uzunluğu" -#: libraries/messages.inc.php:500 main.php:282 +#: libraries/messages.inc.php:496 main.php:282 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -4231,7 +4231,7 @@ msgstr "" "görünüyor. Mbstring uzantısı olmadan phpMyAdmin karakter dizgilerini doğru " "olarak bölemez ve bu beklenmedik sonuçlar doğurabilir." -#: libraries/messages.inc.php:501 main.php:274 +#: libraries/messages.inc.php:497 main.php:274 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -4241,24 +4241,24 @@ msgstr "" "Bu seçenek phpMyAdmin ile uyumlusuzdur ve bazı veri bozulmalarına sebep " "olabilir!" -#: libraries/messages.inc.php:502 +#: libraries/messages.inc.php:498 msgid "MediaWiki Table" msgstr "MedyaViki Tablosu" -#: libraries/messages.inc.php:503 transformation_overview.php:25 +#: libraries/messages.inc.php:499 transformation_overview.php:25 msgid "Available MIME types" msgstr "Mevcut MIME türleri" -#: libraries/messages.inc.php:504 transformation_overview.php:43 +#: libraries/messages.inc.php:500 transformation_overview.php:43 msgid "Available transformations" msgstr "Mevcut dönüşümler" -#: libraries/messages.inc.php:505 +#: libraries/messages.inc.php:501 msgctxt "$strMIME_description" msgid "Description" msgstr "Açıklama" -#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:580 +#: libraries/messages.inc.php:503 libraries/tbl_properties.inc.php:580 #: transformation_overview.php:60 #, php-format msgid "" @@ -4268,7 +4268,7 @@ msgstr "" "Bu dönüşüm için mevcut açıklama yok.
Lütfen yazara %s ne yapar diye " "sorun." -#: libraries/messages.inc.php:509 libraries/tbl_properties.inc.php:137 +#: libraries/messages.inc.php:505 libraries/tbl_properties.inc.php:137 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -4277,7 +4277,7 @@ msgstr "" "Mevcut dönüşüm seçeneklerinin listesi ve bunların MIME türü dönüşümleri için " "%sdönüşüm tanımlamarı%s'na tıklayın" -#: libraries/messages.inc.php:510 libraries/tbl_properties.inc.php:146 +#: libraries/messages.inc.php:506 libraries/tbl_properties.inc.php:146 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -4289,57 +4289,57 @@ msgstr "" "veya tek tırnak (\"'\") koymanız gerekirse, önlerine ters eğik çizgi koyun " "(örneğin '\\\\xyz' veya 'a\\'b')." -#: libraries/messages.inc.php:511 libraries/tbl_properties.inc.php:145 +#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:145 msgid "Transformation options" msgstr "Dönüşüm seçenekleri" -#: libraries/messages.inc.php:513 transformation_overview.php:38 +#: libraries/messages.inc.php:509 transformation_overview.php:38 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "" "İtalik olarak yazılmış MIME türleri ayrı bir dönüşüm işlevine sahip değildir." -#: libraries/messages.inc.php:515 tbl_indexes.php:162 +#: libraries/messages.inc.php:511 tbl_indexes.php:162 msgid "Modify an index" msgstr "Indeksi değiştir" -#: libraries/messages.inc.php:517 pmd_general.php:108 +#: libraries/messages.inc.php:513 pmd_general.php:108 msgid "Move Menu" msgstr "Menüyü taşı" -#: libraries/messages.inc.php:518 tbl_operations.php:276 +#: libraries/messages.inc.php:514 tbl_operations.php:276 msgid "Move table to (database.table):" msgstr "Tabloyu şuna (veritabanı.tablo) taşı:" -#: libraries/messages.inc.php:519 tbl_move_copy.php:56 +#: libraries/messages.inc.php:515 tbl_move_copy.php:56 #, php-format msgid "Table %s has been moved to %s." msgstr "%s tablosu %s üzerine taşındı." -#: libraries/messages.inc.php:520 tbl_move_copy.php:46 +#: libraries/messages.inc.php:516 tbl_move_copy.php:46 msgid "Can't move table to same one!" msgstr "Tablo aynısına taşınamıyor!" -#: libraries/messages.inc.php:521 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:517 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 #: libraries/mysql_charsets.lib.php:332 libraries/mysql_charsets.lib.php:354 #: libraries/mysql_charsets.lib.php:365 msgid "multilingual" msgstr "çokdilli" -#: libraries/messages.inc.php:534 main.php:193 +#: libraries/messages.inc.php:530 main.php:193 msgid "MySQL charset" msgstr "MySQL karakter grubu" -#: libraries/messages.inc.php:535 main.php:211 +#: libraries/messages.inc.php:531 main.php:211 msgid "MySQL client version" msgstr "MySQL istemci sürümü" -#: libraries/messages.inc.php:536 main.php:125 +#: libraries/messages.inc.php:532 main.php:125 msgid "MySQL connection collation" msgstr "MySQL bağlantı karşılaştırması" -#: libraries/messages.inc.php:537 main.php:346 +#: libraries/messages.inc.php:533 main.php:346 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -4348,54 +4348,54 @@ msgstr "" "PHP MySQL kütüphanenizin %s sürümü MySQL sunucunuzun %s sürümünden farklı. " "Bu tarafsız davranışa sebep olabilir." -#: libraries/messages.inc.php:539 server_status.php:294 +#: libraries/messages.inc.php:535 server_status.php:294 msgid "Show processes" msgstr "İşlemleri göster" -#: libraries/messages.inc.php:545 navigation.php:210 server_databases.php:371 +#: libraries/messages.inc.php:541 navigation.php:210 server_databases.php:371 #: server_synchronize.php:1191 msgid "No databases" msgstr "Veritabanı yok" -#: libraries/messages.inc.php:546 server_databases.php:52 +#: libraries/messages.inc.php:542 server_databases.php:52 msgid "No databases selected." msgstr "Veritabanı seçilmedi." -#: libraries/messages.inc.php:548 libraries/relation.lib.php:1173 +#: libraries/messages.inc.php:544 libraries/relation.lib.php:1173 msgid "no description" msgstr "Açıklama yok" -#: libraries/messages.inc.php:552 libraries/zip_extension.lib.php:26 +#: libraries/messages.inc.php:548 libraries/zip_extension.lib.php:26 msgid "No files found inside ZIP archive!" msgstr "ZIP arşivi içinde hiç dosya bulunamadı!" -#: libraries/messages.inc.php:555 tbl_indexes.php:91 +#: libraries/messages.inc.php:551 tbl_indexes.php:91 msgid "No index parts defined!" msgstr "Tanımlı indeks kısımları yok!" -#: libraries/messages.inc.php:556 libraries/mult_submits.inc.php:435 +#: libraries/messages.inc.php:552 libraries/mult_submits.inc.php:435 #: tbl_replace.php:331 msgid "No change" msgstr "Değişiklik yok" -#: libraries/messages.inc.php:557 +#: libraries/messages.inc.php:553 msgctxt "$strNoneDefault" msgid "None" msgstr "Hiçbiri" -#: libraries/messages.inc.php:560 libraries/plugin_interface.lib.php:312 +#: libraries/messages.inc.php:556 libraries/plugin_interface.lib.php:312 msgid "This format has no options" msgstr "Bu biçimin seçenekleri yok" -#: libraries/messages.inc.php:565 user_password.php:54 +#: libraries/messages.inc.php:561 user_password.php:54 msgid "You don't have sufficient privileges to be here right now!" msgstr "Burada bulunmak için yeterli izinlere sahip değilsiniz!" -#: libraries/messages.inc.php:566 tbl_row_action.php:29 +#: libraries/messages.inc.php:562 tbl_row_action.php:29 msgid "No rows selected" msgstr "Satır seçilmedi" -#: libraries/messages.inc.php:569 themes.php:32 +#: libraries/messages.inc.php:565 themes.php:32 #, php-format msgid "" "No themes support; please check your configuration and/or your themes in " @@ -4404,138 +4404,138 @@ msgstr "" "Tema desteği yok, lütfen yapılandırmanızı ve/veya %s dizinindeki " "temalarınızı kontrol edin." -#: libraries/messages.inc.php:571 libraries/relation.lib.php:95 +#: libraries/messages.inc.php:567 libraries/relation.lib.php:95 msgid "not OK" msgstr "TAMAM değil" -#: libraries/messages.inc.php:572 server_synchronize.php:400 +#: libraries/messages.inc.php:568 server_synchronize.php:400 #: server_synchronize.php:839 msgid "not present" msgstr "mevcut değil" -#: libraries/messages.inc.php:573 pdf_pages.php:36 pdf_pages.php:42 +#: libraries/messages.inc.php:569 pdf_pages.php:36 pdf_pages.php:42 #: pdf_pages.php:48 pdf_pages.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "%s tablosu bulunamadı veya %s içinde ayarlanmadı" -#: libraries/messages.inc.php:574 server_privileges.php:804 +#: libraries/messages.inc.php:570 server_privileges.php:804 #: server_privileges.php:2166 msgid "No user(s) found." msgstr "Kullanıcı(lar) bulunamadı." -#: libraries/messages.inc.php:578 pmd_general.php:164 +#: libraries/messages.inc.php:574 pmd_general.php:164 msgid "Number of tables" msgstr "Tablo sayısı" -#: libraries/messages.inc.php:581 server_databases.php:117 +#: libraries/messages.inc.php:577 server_databases.php:117 #: server_status.php:260 setup/lib/messages.inc.php:117 msgid "Tables" msgstr "Tablolar" -#: libraries/messages.inc.php:583 libraries/relation.lib.php:99 +#: libraries/messages.inc.php:579 libraries/relation.lib.php:99 #: pmd_general.php:340 msgid "OK" msgstr "TAMAM" -#: libraries/messages.inc.php:585 +#: libraries/messages.inc.php:581 msgid "Open Document Text" msgstr "Açık Belge Metini" -#: libraries/messages.inc.php:588 tbl_select.php:138 +#: libraries/messages.inc.php:584 tbl_select.php:138 msgid "Operator" msgstr "İşletici" -#: libraries/messages.inc.php:589 tbl_operations.php:662 +#: libraries/messages.inc.php:585 tbl_operations.php:662 msgid "Optimize" msgstr "Uyarla" -#: libraries/messages.inc.php:602 libraries/tbl_properties.inc.php:755 +#: libraries/messages.inc.php:598 libraries/tbl_properties.inc.php:755 msgid "PARTITION definition" msgstr "PARTITION tanımı" -#: libraries/messages.inc.php:603 tbl_structure.php:757 +#: libraries/messages.inc.php:599 tbl_structure.php:757 msgid "partitioned" msgstr "bölüme ayrıldı" -#: libraries/messages.inc.php:604 tbl_operations.php:649 +#: libraries/messages.inc.php:600 tbl_operations.php:649 msgid "Partition maintenance" msgstr "Bölüm bakımı" -#: libraries/messages.inc.php:605 tbl_operations.php:657 +#: libraries/messages.inc.php:601 tbl_operations.php:657 #, php-format msgid "Partition %s" msgstr "Bölüm %s" -#: libraries/messages.inc.php:606 server_privileges.php:1212 +#: libraries/messages.inc.php:602 server_privileges.php:1212 #, php-format msgid "The password for %s was changed successfully." msgstr "%s için parola başarılı olarak değiştirildi." -#: libraries/messages.inc.php:635 +#: libraries/messages.inc.php:631 #, php-format msgid "Schema of the \"%s\" database - Page %s" msgstr " \"%s\" veritabanının şeması - Sayfa %s" -#: libraries/messages.inc.php:636 +#: libraries/messages.inc.php:632 #, php-format msgid "The \"%s\" table doesn't exist!" msgstr " \"%s\" tablosu yok!" -#: libraries/messages.inc.php:637 pdf_schema.php:1013 +#: libraries/messages.inc.php:633 pdf_schema.php:1013 msgid "No tables" msgstr "Tablolar yok" -#: libraries/messages.inc.php:638 pmd_pdf.php:63 +#: libraries/messages.inc.php:634 pmd_pdf.php:63 msgid "Page has been created" msgstr "Sayfa oluşturuldu" -#: libraries/messages.inc.php:639 pmd_pdf.php:65 +#: libraries/messages.inc.php:635 pmd_pdf.php:65 msgid "Page creation failed" msgstr "Sayfa oluşturma başarısız" -#: libraries/messages.inc.php:640 +#: libraries/messages.inc.php:636 msgid "PDF" msgstr "PDF" -#: libraries/messages.inc.php:641 +#: libraries/messages.inc.php:637 msgid "(Generates a report containing the data of a single table)" msgstr "(Tek tablonun verisini içeren bir rapor üretir)" -#: libraries/messages.inc.php:642 +#: libraries/messages.inc.php:638 msgid "Report title" msgstr "Rapor başlığı" -#: libraries/messages.inc.php:643 server_status.php:389 server_status.php:434 +#: libraries/messages.inc.php:639 server_status.php:389 server_status.php:434 #: server_status.php:497 server_status.php:555 msgid "per hour" msgstr "saat başına" -#: libraries/messages.inc.php:644 server_status.php:498 +#: libraries/messages.inc.php:640 server_status.php:498 msgid "per minute" msgstr "dakika başına" -#: libraries/messages.inc.php:645 server_status.php:499 +#: libraries/messages.inc.php:641 server_status.php:499 msgid "per second" msgstr "saniye başına" -#: libraries/messages.inc.php:646 libraries/mysql_charsets.lib.php:271 +#: libraries/messages.inc.php:642 libraries/mysql_charsets.lib.php:271 msgid "Persian" msgstr "Farsça" -#: libraries/messages.inc.php:647 libraries/mysql_charsets.lib.php:250 +#: libraries/messages.inc.php:643 libraries/mysql_charsets.lib.php:250 msgid "phone book" msgstr "telefon defteri" -#: libraries/messages.inc.php:648 +#: libraries/messages.inc.php:644 msgid "PHP array" msgstr "PHP düzeni" -#: libraries/messages.inc.php:650 main.php:213 +#: libraries/messages.inc.php:646 main.php:213 msgid "PHP extension" msgstr "PHP uzantısı" -#: libraries/messages.inc.php:654 libraries/relation.lib.php:163 +#: libraries/messages.inc.php:650 libraries/relation.lib.php:163 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." @@ -4543,160 +4543,160 @@ msgstr "" "(config.inc.php) yapılandırma dosyasında gelişmiş özellikler " "etkin, örneğin config.sample.inc.php dosyasından başlayarak." -#: libraries/messages.inc.php:655 libraries/relation.lib.php:159 +#: libraries/messages.inc.php:651 libraries/relation.lib.php:159 msgid "Quick steps to setup advanced features:" msgstr "Gelişmiş özellikleri kurmak için hızlı adımlar:" -#: libraries/messages.inc.php:656 libraries/relation.lib.php:161 +#: libraries/messages.inc.php:652 libraries/relation.lib.php:161 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "Gerekli tabloları script/create_tables.sql ile oluştur." -#: libraries/messages.inc.php:657 libraries/relation.lib.php:162 +#: libraries/messages.inc.php:653 libraries/relation.lib.php:162 msgid "Create a pma user and give access to these tables." msgstr "Pma kullanıcısı oluştur ve bu tablolara erişim ver." -#: libraries/messages.inc.php:658 libraries/relation.lib.php:164 +#: libraries/messages.inc.php:654 libraries/relation.lib.php:164 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" "Güncellenmiş yapılandırma dosyasını yüklemek için phpMyAdmin'e yeniden " "oturum açın." -#: libraries/messages.inc.php:661 libraries/mysql_charsets.lib.php:274 +#: libraries/messages.inc.php:657 libraries/mysql_charsets.lib.php:274 msgid "Polish" msgstr "Polonyaca" -#: libraries/messages.inc.php:662 libraries/replication_gui.lib.php:67 +#: libraries/messages.inc.php:658 libraries/replication_gui.lib.php:67 #: server_synchronize.php:1163 msgid "Port" msgstr "B.Noktası" -#: libraries/messages.inc.php:667 tbl_indexes.php:67 +#: libraries/messages.inc.php:663 tbl_indexes.php:67 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Birincil anahtarın ismi \"PRIMARY\" olmalıdır!" -#: libraries/messages.inc.php:668 tbl_indexes.php:184 +#: libraries/messages.inc.php:664 tbl_indexes.php:184 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" "(\"PRIMARY\" sadece ve sadece bir birincil anahtarın ismi " "olmalıdır!" -#: libraries/messages.inc.php:669 libraries/mult_submits.inc.php:76 +#: libraries/messages.inc.php:665 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:474 msgid "Primary" msgstr "Birincil" -#: libraries/messages.inc.php:673 server_privileges.php:227 +#: libraries/messages.inc.php:669 server_privileges.php:227 msgid "Includes all privileges except GRANT." msgstr "GRANT hariç tüm yetkileri içerir." -#: libraries/messages.inc.php:674 server_privileges.php:153 +#: libraries/messages.inc.php:670 server_privileges.php:153 #: server_privileges.php:476 msgid "Allows altering the structure of existing tables." msgstr "Varolan tabloların yapısının değiştirilmesine izin verir." -#: libraries/messages.inc.php:675 server_privileges.php:169 +#: libraries/messages.inc.php:671 server_privileges.php:169 #: server_privileges.php:482 msgid "Allows altering and dropping stored routines." msgstr "Depolanan yordamların değiştirilmesine ve kaldırılmasına izin verir." -#: libraries/messages.inc.php:676 server_privileges.php:145 +#: libraries/messages.inc.php:672 server_privileges.php:145 #: server_privileges.php:475 msgid "Allows creating new databases and tables." msgstr "Yeni veritabanları ve tabloların oluşturulmasına izin verir." -#: libraries/messages.inc.php:677 server_privileges.php:168 +#: libraries/messages.inc.php:673 server_privileges.php:168 #: server_privileges.php:481 msgid "Allows creating stored routines." msgstr "Depolanan yordamların oluşturulmasına izin verir." -#: libraries/messages.inc.php:678 server_privileges.php:475 +#: libraries/messages.inc.php:674 server_privileges.php:475 msgid "Allows creating new tables." msgstr "Yeni tabloların oluşturulmasına izin verir." -#: libraries/messages.inc.php:679 server_privileges.php:156 +#: libraries/messages.inc.php:675 server_privileges.php:156 #: server_privileges.php:479 msgid "Allows creating temporary tables." msgstr "Geçici tablolara oluşturulmasına izin verir." -#: libraries/messages.inc.php:680 server_privileges.php:170 +#: libraries/messages.inc.php:676 server_privileges.php:170 #: server_privileges.php:515 msgid "Allows creating, dropping and renaming user accounts." msgstr "" "Kullanıcı hesaplarının oluşturulmasına, kaldırılmasına ve yeniden " "adlandırılmasına izin verir." -#: libraries/messages.inc.php:681 server_privileges.php:160 +#: libraries/messages.inc.php:677 server_privileges.php:160 #: server_privileges.php:164 server_privileges.php:487 #: server_privileges.php:491 msgid "Allows creating new views." msgstr "Yeni görünümlerin oluşturulmasına izin verir." -#: libraries/messages.inc.php:682 server_privileges.php:144 +#: libraries/messages.inc.php:678 server_privileges.php:144 #: server_privileges.php:467 msgid "Allows deleting data." msgstr "Veri silinmesine izin verir." -#: libraries/messages.inc.php:683 server_privileges.php:146 +#: libraries/messages.inc.php:679 server_privileges.php:146 #: server_privileges.php:478 msgid "Allows dropping databases and tables." msgstr "Veritabanları ve tabloların kaldırılmasına izin verir." -#: libraries/messages.inc.php:684 server_privileges.php:478 +#: libraries/messages.inc.php:680 server_privileges.php:478 msgid "Allows dropping tables." msgstr "Tabloların kaldırılmasına izin verir." -#: libraries/messages.inc.php:685 server_privileges.php:161 +#: libraries/messages.inc.php:681 server_privileges.php:161 #: server_privileges.php:495 msgid "Allows to set up events for the event scheduler" msgstr "Olay zamanlayıcısı için olayları ayarlamaya izin verir" -#: libraries/messages.inc.php:686 server_privileges.php:171 +#: libraries/messages.inc.php:682 server_privileges.php:171 #: server_privileges.php:483 msgid "Allows executing stored routines." msgstr "Depolanan yordamların yürütülmesine izin verir." -#: libraries/messages.inc.php:687 server_privileges.php:150 +#: libraries/messages.inc.php:683 server_privileges.php:150 #: server_privileges.php:470 msgid "Allows importing data from and exporting data into files." msgstr "Verinin içeri ve dışarı aktarılmasına izin verir." -#: libraries/messages.inc.php:688 server_privileges.php:501 +#: libraries/messages.inc.php:684 server_privileges.php:501 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Yetki tablolarını yeniden yüklemeden yeni kullanıcıların ve yetkilerin " "eklenmesine izin verir." -#: libraries/messages.inc.php:689 server_privileges.php:152 +#: libraries/messages.inc.php:685 server_privileges.php:152 #: server_privileges.php:477 msgid "Allows creating and dropping indexes." msgstr "İndekslerin oluşturulmasına ve kaldırılmasına izin verir." -#: libraries/messages.inc.php:690 server_privileges.php:142 +#: libraries/messages.inc.php:686 server_privileges.php:142 #: server_privileges.php:403 server_privileges.php:465 msgid "Allows inserting and replacing data." msgstr "Verinin eklenmesine ve yerinin değiştirilmesine izin verir." -#: libraries/messages.inc.php:691 server_privileges.php:157 +#: libraries/messages.inc.php:687 server_privileges.php:157 #: server_privileges.php:510 msgid "Allows locking tables for the current thread." msgstr "Şu anki işlem için tabloların kilitlenmesine izin verir." -#: libraries/messages.inc.php:692 server_privileges.php:607 +#: libraries/messages.inc.php:688 server_privileges.php:607 #: server_privileges.php:609 msgid "Limits the number of new connections the user may open per hour." msgstr "Kullanıcının saat başına açabileceği yeni bağlantı sayısını sınırlar." -#: libraries/messages.inc.php:693 server_privileges.php:595 +#: libraries/messages.inc.php:689 server_privileges.php:595 #: server_privileges.php:597 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Kullanıcının saat başına sunucuya gönderebileceği sorgu sayısını sınırlar." -#: libraries/messages.inc.php:694 server_privileges.php:601 +#: libraries/messages.inc.php:690 server_privileges.php:601 #: server_privileges.php:603 msgid "" "Limits the number of commands that change any table or database the user may " @@ -4705,60 +4705,60 @@ msgstr "" "Kullanıcının saat başına çalıştırabileceği herhangi bir tabloyu veya " "veritabanını değiştiren komut sayısını sınırlar." -#: libraries/messages.inc.php:695 server_privileges.php:613 +#: libraries/messages.inc.php:691 server_privileges.php:613 #: server_privileges.php:615 msgid "Limits the number of simultaneous connections the user may have." msgstr "Kullanıcının eşzamanlı bağlantı sayısını sınırlar." -#: libraries/messages.inc.php:696 server_privileges.php:149 +#: libraries/messages.inc.php:692 server_privileges.php:149 #: server_privileges.php:505 msgid "Allows viewing processes of all users" msgstr "Tüm kullanıcıların işlemlerini görüntülemeye izin verir" -#: libraries/messages.inc.php:697 server_privileges.php:151 +#: libraries/messages.inc.php:693 server_privileges.php:151 #: server_privileges.php:409 server_privileges.php:511 msgid "Has no effect in this MySQL version." msgstr "Bu MySQL sürümünde etkisi yoktur." -#: libraries/messages.inc.php:698 server_privileges.php:147 +#: libraries/messages.inc.php:694 server_privileges.php:147 #: server_privileges.php:506 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Sunucu ayarlarının yeniden yüklenmesine ve sunucunun önbelleğinin " "temizlenmesine izin verir" -#: libraries/messages.inc.php:699 server_privileges.php:159 +#: libraries/messages.inc.php:695 server_privileges.php:159 #: server_privileges.php:513 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Kullanıcılara Slave ve Master'ların nerede olduğunu sormasına izin verir." -#: libraries/messages.inc.php:700 server_privileges.php:158 +#: libraries/messages.inc.php:696 server_privileges.php:158 #: server_privileges.php:514 msgid "Needed for the replication slaves." msgstr "Kopya edilen slave'ler için gereklidir." -#: libraries/messages.inc.php:701 server_privileges.php:141 +#: libraries/messages.inc.php:697 server_privileges.php:141 #: server_privileges.php:400 server_privileges.php:464 msgid "Allows reading data." msgstr "Veri okunmasına izin verir." -#: libraries/messages.inc.php:702 server_privileges.php:154 +#: libraries/messages.inc.php:698 server_privileges.php:154 #: server_privileges.php:508 msgid "Gives access to the complete list of databases." msgstr "Bütün veritabanı listesine erişim verir." -#: libraries/messages.inc.php:703 server_privileges.php:165 +#: libraries/messages.inc.php:699 server_privileges.php:165 #: server_privileges.php:167 server_privileges.php:480 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "SHOW CREATE VIEW sorgularının yapılmasına izin verir." -#: libraries/messages.inc.php:704 server_privileges.php:148 +#: libraries/messages.inc.php:700 server_privileges.php:148 #: server_privileges.php:507 msgid "Allows shutting down the server." msgstr "Sunucunun kapatılmasına izin ver." -#: libraries/messages.inc.php:705 server_privileges.php:155 +#: libraries/messages.inc.php:701 server_privileges.php:155 #: server_privileges.php:504 msgid "" "Allows connecting, even if maximum number of connections is reached; " @@ -4769,55 +4769,55 @@ msgstr "" "değişkenleri ayarlamak veya diğer kullanıcıların işlemlerini sonlandırmak " "gibi pek çok yönetimsel işlemler için gereklidir." -#: libraries/messages.inc.php:706 server_privileges.php:162 +#: libraries/messages.inc.php:702 server_privileges.php:162 #: server_privileges.php:496 msgid "Allows creating and dropping triggers" msgstr "Tetikleyicileri oluşturmaya ve kaldırmaya izin verir" -#: libraries/messages.inc.php:707 server_privileges.php:143 +#: libraries/messages.inc.php:703 server_privileges.php:143 #: server_privileges.php:406 server_privileges.php:466 msgid "Allows changing data." msgstr "Veri değiştirilmesine izin ver." -#: libraries/messages.inc.php:708 server_privileges.php:221 +#: libraries/messages.inc.php:704 server_privileges.php:221 msgid "No privileges." msgstr "Yetkiniz yok." -#: libraries/messages.inc.php:710 server_privileges.php:1296 +#: libraries/messages.inc.php:706 server_privileges.php:1296 msgid "The privileges were reloaded successfully." msgstr "Yetkiler başarılı olarak yüklendi." -#: libraries/messages.inc.php:712 libraries/server_links.inc.php:80 +#: libraries/messages.inc.php:708 libraries/server_links.inc.php:80 msgid "Processes" msgstr "İşlemler" -#: libraries/messages.inc.php:714 main.php:187 +#: libraries/messages.inc.php:710 main.php:187 msgid "Protocol version" msgstr "Protokol sürümü" -#: libraries/messages.inc.php:715 +#: libraries/messages.inc.php:711 msgid "Put fields names in the first row" msgstr "İlk satır içine alan adlarını koy" -#: libraries/messages.inc.php:720 server_synchronize.php:1003 +#: libraries/messages.inc.php:716 server_synchronize.php:1003 msgid "The following queries have been executed:" msgstr "Aşağıdaki sorgular çalıştırıldı:" -#: libraries/messages.inc.php:721 server_status.php:251 +#: libraries/messages.inc.php:717 server_status.php:251 msgid "Query cache" msgstr "Sorgu önbelleği" -#: libraries/messages.inc.php:722 libraries/navigation_header.inc.php:80 +#: libraries/messages.inc.php:718 libraries/navigation_header.inc.php:80 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 setup/lib/messages.inc.php:122 msgid "Query window" msgstr "Sorgu penceresi" -#: libraries/messages.inc.php:725 querywindow.php:109 querywindow.php:217 +#: libraries/messages.inc.php:721 querywindow.php:109 querywindow.php:217 msgid "SQL history" msgstr "SQL geçmişi" -#: libraries/messages.inc.php:726 server_status.php:490 +#: libraries/messages.inc.php:722 server_status.php:490 #, php-format msgid "" "Query statistics: Since its startup, %s queries have been sent to the " @@ -4825,93 +4825,93 @@ msgid "" msgstr "" "Sorgu istatistikleri: Başlangıçtan beri sunucuya %s sorgu gönderildi." -#: libraries/messages.inc.php:728 server_status.php:554 +#: libraries/messages.inc.php:724 server_status.php:554 msgid "Query type" msgstr "Sorgu türü" -#: libraries/messages.inc.php:729 libraries/sql_query_form.lib.php:381 +#: libraries/messages.inc.php:725 libraries/sql_query_form.lib.php:381 msgid "Do not overwrite this query from outside the window" msgstr "Pencere dışından bu sorgunun üzerine yazma" -#: libraries/messages.inc.php:732 tbl_operations.php:663 +#: libraries/messages.inc.php:728 tbl_operations.php:663 msgid "Rebuild" msgstr "Yeniden Oluştur" -#: libraries/messages.inc.php:733 server_status.php:394 +#: libraries/messages.inc.php:729 server_status.php:394 msgid "Received" msgstr "Alınan" -#: libraries/messages.inc.php:734 pmd_pdf.php:89 +#: libraries/messages.inc.php:730 pmd_pdf.php:89 msgid "recommended" msgstr "önerilir" -#: libraries/messages.inc.php:736 tbl_operations.php:702 +#: libraries/messages.inc.php:732 tbl_operations.php:702 msgid "Check referential integrity:" msgstr "İlgili bütünlük kontrolü:" -#: libraries/messages.inc.php:740 pdf_schema.php:1032 pdf_schema.php:1141 +#: libraries/messages.inc.php:736 pdf_schema.php:1032 pdf_schema.php:1141 msgid "Relational schema" msgstr "İlişkisel şema" -#: libraries/messages.inc.php:744 tbl_relation.php:399 +#: libraries/messages.inc.php:740 tbl_relation.php:399 msgid "Relations" msgstr "İlişkiler" -#: libraries/messages.inc.php:745 tbl_structure.php:507 tbl_structure.php:509 +#: libraries/messages.inc.php:741 tbl_structure.php:507 tbl_structure.php:509 msgid "Relation view" msgstr "İlişki görünümü" -#: libraries/messages.inc.php:746 server_privileges.php:1246 +#: libraries/messages.inc.php:742 server_privileges.php:1246 msgid "Reloading the privileges" msgstr "Yetkiler yeniden yükleniyor" -#: libraries/messages.inc.php:747 navigation.php:66 navigation.php:67 +#: libraries/messages.inc.php:743 navigation.php:66 navigation.php:67 #: navigation.php:70 msgid "Reload navigation frame" msgstr "Rehber çerçeveyi yeniden yükle" -#: libraries/messages.inc.php:748 pmd_general.php:80 +#: libraries/messages.inc.php:744 pmd_general.php:80 msgid "Reload" msgstr "Yeniden Yükle" -#: libraries/messages.inc.php:749 libraries/server_synchronize.lib.php:1345 +#: libraries/messages.inc.php:745 libraries/server_synchronize.lib.php:1345 #: libraries/server_synchronize.lib.php:1371 msgid "Remote server" msgstr "Uzak sunucu" -#: libraries/messages.inc.php:750 +#: libraries/messages.inc.php:746 msgid "Remove CRLF characters within fields" msgstr "Alanlar içindeki CRLF karakterlerini kaldır" -#: libraries/messages.inc.php:751 tbl_operations.php:676 +#: libraries/messages.inc.php:747 tbl_operations.php:676 msgid "Remove partitioning" msgstr "Bölümlendirmeyi kaldır" -#: libraries/messages.inc.php:752 server_privileges.php:1575 +#: libraries/messages.inc.php:748 server_privileges.php:1575 msgid "Remove selected users" msgstr "Seçili kullanıcıları kaldır" -#: libraries/messages.inc.php:755 tbl_operations.php:338 +#: libraries/messages.inc.php:751 tbl_operations.php:338 msgid "Rename table to" msgstr "Tabloyu yeniden şuna adlandır" -#: libraries/messages.inc.php:756 view_operations.php:93 +#: libraries/messages.inc.php:752 view_operations.php:93 msgid "Rename view to" msgstr "Görünümü yeniden şuna adlandır" -#: libraries/messages.inc.php:757 tbl_operations.php:664 +#: libraries/messages.inc.php:753 tbl_operations.php:664 msgid "Repair" msgstr "Onar" -#: libraries/messages.inc.php:759 +#: libraries/messages.inc.php:755 msgid "Replace NULL by" msgstr "NULL'u bunla değiştir:" -#: libraries/messages.inc.php:760 +#: libraries/messages.inc.php:756 msgid "Replace table data with file" msgstr "Tablo verisini dosya ile değiştir" -#: libraries/messages.inc.php:761 server_replication.php:228 +#: libraries/messages.inc.php:757 server_replication.php:228 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -4919,44 +4919,44 @@ msgstr "" "Şimdi, aşağıdaki satırları my.cnf dosyamın sonuna ekle ve ondan sonra lütfen " "MySQL sunucusunu yeniden başlatın." -#: libraries/messages.inc.php:762 libraries/replication_gui.lib.php:236 +#: libraries/messages.inc.php:758 libraries/replication_gui.lib.php:236 #: server_replication.php:194 msgid "Add slave replication user" msgstr "Slave kopya etme kullanıcısı ekle" -#: libraries/messages.inc.php:763 server_replication.php:74 +#: libraries/messages.inc.php:759 server_replication.php:74 #, php-format msgid "Master server changed succesfully to %s" msgstr "Asıl sunucu %s 'na başarılı olarak değiştirildi" -#: libraries/messages.inc.php:764 server_replication.php:182 +#: libraries/messages.inc.php:760 server_replication.php:182 msgid "This server is configured as master in a replication process." msgstr "" "Bu sunucu kopya etme işlemi sırasında asıl sunucu olarak yapılandırıldı." -#: libraries/messages.inc.php:765 server_replication.php:322 +#: libraries/messages.inc.php:761 server_replication.php:322 msgid "Control slave:" msgstr "Slave'i kontrol et:" -#: libraries/messages.inc.php:766 server_replication.php:65 +#: libraries/messages.inc.php:762 server_replication.php:65 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "Master günlük konumu okunamıyor. Master üzerinde mümkün yetki sorunu." -#: libraries/messages.inc.php:767 server_replication.php:58 +#: libraries/messages.inc.php:763 server_replication.php:58 #, php-format msgid "Unable to connect to master %s." msgstr "Master %s sunucusuna bağlanılamıyor." -#: libraries/messages.inc.php:768 server_replication.php:221 +#: libraries/messages.inc.php:764 server_replication.php:221 msgid "Replicate all databases; Ignore:" msgstr "Tüm veritabanlarını kopya et; Yoksay:" -#: libraries/messages.inc.php:769 server_replication.php:222 +#: libraries/messages.inc.php:765 server_replication.php:222 msgid "Ignore all databases; Replicate:" msgstr "Tüm veritabanlarını yoksay; Kopya et:" -#: libraries/messages.inc.php:770 server_replication.php:218 +#: libraries/messages.inc.php:766 server_replication.php:218 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -4971,16 +4971,16 @@ msgstr "" "kopya etmek için sadece belirli veritabanlarına izin verebilirsiniz. Lütfen " "modu seçin:" -#: libraries/messages.inc.php:771 server_replication.php:217 +#: libraries/messages.inc.php:767 server_replication.php:217 msgid "Master configuration" msgstr "Master yapılandırması" -#: libraries/messages.inc.php:772 server_replication.php:181 +#: libraries/messages.inc.php:768 server_replication.php:181 #: server_replication.php:209 msgid "Master replication" msgstr "Asılı kopya etme" -#: libraries/messages.inc.php:774 server_replication.php:230 +#: libraries/messages.inc.php:770 server_replication.php:230 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " @@ -4990,11 +4990,11 @@ msgstr "" "tıklayın. Ondan sonra bu sunucunun asıl olarak yapılandırıldığını " "gösteren, sizi uyaran bir mesaj görmelisiniz" -#: libraries/messages.inc.php:775 server_replication.php:225 +#: libraries/messages.inc.php:771 server_replication.php:225 msgid "Please select databases:" msgstr "Lütfen veritabanlarını seçin:" -#: libraries/messages.inc.php:776 server_replication.php:210 +#: libraries/messages.inc.php:772 server_replication.php:210 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -5003,7 +5003,7 @@ msgstr "" "Bu sunucu kopya etme işlemi sırasında asıl sunucu olarak yapılandırılmadı. " "Bunu yapılandırmak ister misiniz?" -#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:188 +#: libraries/messages.inc.php:773 libraries/replication_gui.lib.php:188 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." @@ -5011,49 +5011,49 @@ msgstr "" "Sadece slave'ler, bu listede --report-host=host_name seçeneğiyle görünen bu " "şekilde başlar." -#: libraries/messages.inc.php:778 server_replication.php:187 +#: libraries/messages.inc.php:774 server_replication.php:187 msgid "Show connected slaves" msgstr "Bağlı slave'leri göster" -#: libraries/messages.inc.php:779 libraries/messages.inc.php:885 +#: libraries/messages.inc.php:775 libraries/messages.inc.php:881 #: server_replication.php:184 server_status.php:281 msgid "Show master status" msgstr "Master durumunu göster" -#: libraries/messages.inc.php:780 server_replication.php:334 +#: libraries/messages.inc.php:776 server_replication.php:334 msgid "Skipping error(s) might lead into unsynchronized master and slave!" msgstr "Hata(ları)yı atlamak master ve slave'i eşitlenmemeye sürükleyebilir!" -#: libraries/messages.inc.php:781 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:51 #: server_replication.php:347 msgid "Change or reconfigure master server" msgstr "Asıl sunucuyu değiştir veya yeniden yapılandır" -#: libraries/messages.inc.php:782 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:778 libraries/replication_gui.lib.php:51 msgid "Slave configuration" msgstr "Slave yapılandırması" -#: libraries/messages.inc.php:783 server_replication.php:305 +#: libraries/messages.inc.php:779 server_replication.php:305 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" "Sunucu kopya etme işlemi sırasında slave sunucu olarak yapılandırıldı. Bunu " "istiyor musunuz:" -#: libraries/messages.inc.php:784 server_replication.php:332 +#: libraries/messages.inc.php:780 server_replication.php:332 msgid "Error management:" msgstr "Hata yönetimi:" -#: libraries/messages.inc.php:785 server_replication.php:328 +#: libraries/messages.inc.php:781 server_replication.php:328 #, php-format msgid "IO Thread %s only" msgstr "Sadece G/Ç İşlemi %s" -#: libraries/messages.inc.php:786 server_replication.php:296 +#: libraries/messages.inc.php:782 server_replication.php:296 msgid "Slave IO Thread not running!" msgstr "Slave G/Ç işlemi çalışmıyor!" -#: libraries/messages.inc.php:787 server_replication.php:355 +#: libraries/messages.inc.php:783 server_replication.php:355 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -5062,40 +5062,40 @@ msgstr "" "Bu sunucu kopya etme işlemi sırasında slave sunucu olarak yapılandırılmadı. " "Bunu yapılandırmak ister misiniz?" -#: libraries/messages.inc.php:788 server_replication.php:326 +#: libraries/messages.inc.php:784 server_replication.php:326 msgid "Reset slave" msgstr "Slave'i sıfırla" -#: libraries/messages.inc.php:789 server_replication.php:308 +#: libraries/messages.inc.php:785 server_replication.php:308 msgid "See slave status table" msgstr "Slave durum tablosuna bak" -#: libraries/messages.inc.php:790 server_replication.php:336 +#: libraries/messages.inc.php:786 server_replication.php:336 msgid "Skip current error" msgstr "Şu anki hatayı atla" -#: libraries/messages.inc.php:791 server_replication.php:340 +#: libraries/messages.inc.php:787 server_replication.php:340 msgid "errors." msgstr "hata." -#: libraries/messages.inc.php:792 server_replication.php:337 +#: libraries/messages.inc.php:788 server_replication.php:337 msgid "Skip next" msgstr "İleri atla" -#: libraries/messages.inc.php:793 server_replication.php:248 +#: libraries/messages.inc.php:789 server_replication.php:248 msgid "Slave replication" msgstr "Slave kopya etme" -#: libraries/messages.inc.php:794 server_replication.php:293 +#: libraries/messages.inc.php:790 server_replication.php:293 msgid "Slave SQL Thread not running!" msgstr "Slave SQL işlemi çalışmıyor!" -#: libraries/messages.inc.php:795 server_replication.php:327 +#: libraries/messages.inc.php:791 server_replication.php:327 #, php-format msgid "SQL Thread %s only" msgstr "Sadece SQL İşlemi %s" -#: libraries/messages.inc.php:796 +#: libraries/messages.inc.php:792 #, php-format msgid "" "This MySQL server works as %s in replication process. For further " @@ -5106,159 +5106,159 @@ msgstr "" "Sunucudaki kopya etme durumuyla ilgili daha ayrıntılı bilgi için lütfen kopya etme bölümünü ziyaret edin." -#: libraries/messages.inc.php:797 +#: libraries/messages.inc.php:793 msgid "Master status" msgstr "Master durumu" -#: libraries/messages.inc.php:798 server_status.php:721 +#: libraries/messages.inc.php:794 server_status.php:721 msgid "Replication status" msgstr "Kopya etme durumu" -#: libraries/messages.inc.php:799 +#: libraries/messages.inc.php:795 msgid "Slave status" msgstr "Slave durumu" -#: libraries/messages.inc.php:800 server_replication.php:311 +#: libraries/messages.inc.php:796 server_replication.php:311 msgid "Synchronize databases with master" msgstr "Asılı ile veritabanlarını eşitle" -#: libraries/messages.inc.php:801 server_replication.php:71 +#: libraries/messages.inc.php:797 server_replication.php:71 msgid "Unable to change master" msgstr "Master değiştirilemiyor" -#: libraries/messages.inc.php:802 server_replication.php:51 +#: libraries/messages.inc.php:798 server_replication.php:51 msgid "Unknown error" msgstr "Bilinmeyen hata" -#: libraries/messages.inc.php:803 main.php:163 pdf_pages.php:344 +#: libraries/messages.inc.php:799 main.php:163 pdf_pages.php:344 #: setup/lib/FormDisplay.tpl.php:216 tbl_change.php:1175 msgid "Reset" msgstr "Sıfırla" -#: libraries/messages.inc.php:804 server_privileges.php:591 +#: libraries/messages.inc.php:800 server_privileges.php:591 msgid "Resource limits" msgstr "Kaynak sınırları" -#: libraries/messages.inc.php:805 tbl_change.php:1209 +#: libraries/messages.inc.php:801 tbl_change.php:1209 #, php-format msgid "Restart insertion with %s rows" msgstr "%s satırlı eklemeyi yeniden başlat" -#: libraries/messages.inc.php:807 server_privileges.php:1578 +#: libraries/messages.inc.php:803 server_privileges.php:1578 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." -#: libraries/messages.inc.php:808 server_privileges.php:1176 +#: libraries/messages.inc.php:804 server_privileges.php:1176 #, php-format msgid "You have revoked the privileges for %s" msgstr "%s için yetkileri geri aldınız" -#: libraries/messages.inc.php:809 server_privileges.php:1333 +#: libraries/messages.inc.php:805 server_privileges.php:1333 msgid "Revoke" msgstr "Geri al" -#: libraries/messages.inc.php:810 libraries/mysql_charsets.lib.php:280 +#: libraries/messages.inc.php:806 libraries/mysql_charsets.lib.php:280 msgid "Romanian" msgstr "Romence" -#: libraries/messages.inc.php:813 tbl_printview.php:404 tbl_structure.php:786 +#: libraries/messages.inc.php:809 tbl_printview.php:404 tbl_structure.php:786 msgid "Row length" msgstr "Satır uzunluğu" -#: libraries/messages.inc.php:815 tbl_printview.php:414 tbl_structure.php:794 +#: libraries/messages.inc.php:811 tbl_printview.php:414 tbl_structure.php:794 msgid " Row size " msgstr " Satır boyutu " -#: libraries/messages.inc.php:821 tbl_printview.php:366 tbl_structure.php:726 +#: libraries/messages.inc.php:817 tbl_printview.php:366 tbl_structure.php:726 msgid "Row Statistics" msgstr "Satır İstatistikleri" -#: libraries/messages.inc.php:822 +#: libraries/messages.inc.php:818 #, php-format msgid "running on %s" msgstr "%s üzerinde çalışıyor" -#: libraries/messages.inc.php:824 libraries/sql_query_form.lib.php:223 +#: libraries/messages.inc.php:820 libraries/sql_query_form.lib.php:223 #, php-format msgid "Run SQL query/queries on server %s" msgstr "%s sunucusu üzerinde SQL sorgusunu/sorgularını çalıştır" -#: libraries/messages.inc.php:825 libraries/sql_query_form.lib.php:240 +#: libraries/messages.inc.php:821 libraries/sql_query_form.lib.php:240 #: libraries/sql_query_form.lib.php:265 #, php-format msgid "Run SQL query/queries on database %s" msgstr "%s veritabanı üzerinde SQL sorgusunu/sorgularını çalıştır" -#: libraries/messages.inc.php:826 libraries/mysql_charsets.lib.php:337 +#: libraries/messages.inc.php:822 libraries/mysql_charsets.lib.php:337 msgid "Russian" msgstr "Rusça" -#: libraries/messages.inc.php:829 pmd_general.php:68 +#: libraries/messages.inc.php:825 pmd_general.php:68 msgid "Save position" msgstr "Konumu kaydet" -#: libraries/messages.inc.php:830 libraries/tbl_properties.inc.php:776 +#: libraries/messages.inc.php:826 libraries/tbl_properties.inc.php:776 #: pdf_pages.php:484 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:214 setup/lib/FormDisplay.tpl.php:215 #: tbl_change.php:1126 tbl_indexes.php:248 tbl_relation.php:566 msgid "Save" msgstr "Kaydet" -#: libraries/messages.inc.php:831 +#: libraries/messages.inc.php:827 msgid "The scale factor is too small to fit the schema on one page" msgstr "Ölçek, şemayı bir sayfaya sığdırmak için çok küçük" -#: libraries/messages.inc.php:843 main.php:298 +#: libraries/messages.inc.php:839 main.php:298 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "Yapılandırma dosyası için gizli bir parola ifadesi gerekiyor " "(blowfish_secret)." -#: libraries/messages.inc.php:844 navigation.php:353 navigation.php:516 +#: libraries/messages.inc.php:840 navigation.php:353 navigation.php:516 msgid "Please select a database" msgstr " Lütfen bir veritabanı seçin" -#: libraries/messages.inc.php:846 server_binlog.php:120 +#: libraries/messages.inc.php:842 server_binlog.php:120 msgid "Select binary log to view" msgstr "Görüntülemek için binari günlüğünü seçin" -#: libraries/messages.inc.php:847 tbl_select.php:270 +#: libraries/messages.inc.php:843 tbl_select.php:270 msgid "Select fields (at least one):" msgstr "Alanları seç (en az bir):" -#: libraries/messages.inc.php:851 pdf_pages.php:320 +#: libraries/messages.inc.php:847 pdf_pages.php:320 msgid "Select Tables" msgstr "Tabloları seç" -#: libraries/messages.inc.php:853 server_status.php:404 +#: libraries/messages.inc.php:849 server_status.php:404 msgid "Sent" msgstr "Gönderilen" -#: libraries/messages.inc.php:857 libraries/select_server.lib.php:45 +#: libraries/messages.inc.php:853 libraries/select_server.lib.php:45 #: setup/frames/index.inc.php:97 setup/lib/messages.inc.php:115 msgid "Servers" msgstr "Sunucular" -#: libraries/messages.inc.php:858 server_status.php:255 +#: libraries/messages.inc.php:854 server_status.php:255 msgid "Delayed inserts" msgstr "Gecikmiş eklemeler" -#: libraries/messages.inc.php:859 server_status.php:46 +#: libraries/messages.inc.php:855 server_status.php:46 msgid "Runtime Information" msgstr "Çalışma Süresi Bilgisi" -#: libraries/messages.inc.php:860 server_status.php:350 +#: libraries/messages.inc.php:856 server_status.php:350 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Bu MySQL sunucusunun çalışma süresi: %s. Başlatıldığı zaman: %s." -#: libraries/messages.inc.php:861 libraries/server_links.inc.php:53 +#: libraries/messages.inc.php:857 libraries/server_links.inc.php:53 #: server_engines.php:112 server_engines.php:116 server_status.php:304 #: test/theme.php:105 msgid "Variables" msgstr "Değişkenler" -#: libraries/messages.inc.php:862 server_status.php:383 +#: libraries/messages.inc.php:858 server_status.php:383 msgid "" "Server traffic: These tables show the network traffic statistics of " "this MySQL server since its startup." @@ -5266,11 +5266,11 @@ msgstr "" "Sunucu trafiği: Bu tablolar sunucunun başlatıldığı andan itibaren " "MySQL sunucusunun ağ trafiği istatistiklerini gösterir." -#: libraries/messages.inc.php:863 server_variables.php:35 +#: libraries/messages.inc.php:859 server_variables.php:35 msgid "Server variables and settings" msgstr "Sunucu değişkenleri ve ayarları" -#: libraries/messages.inc.php:865 main.php:290 +#: libraries/messages.inc.php:861 main.php:290 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -5282,7 +5282,7 @@ msgstr "" "session.gc-maxlifetime@]session.gc_maxlifetime[/a] düşük, bundan dolayı " "oturum açmanızın süresi phpMyAdmin içinde yapılandırılmadıkça dolacaktır." -#: libraries/messages.inc.php:866 +#: libraries/messages.inc.php:862 msgid "" "Cannot start session without errors, please check errors given in your PHP " "and/or webserver log file and configure your PHP installation properly." @@ -5291,11 +5291,11 @@ msgstr "" "günlüğü dosyanızda verilen hataları kontrol edin ve PHP kurulumunuzu düzgün " "olarak yapılandırın." -#: libraries/messages.inc.php:867 server_variables.php:55 +#: libraries/messages.inc.php:863 server_variables.php:55 msgid "Session value" msgstr "Oturum değeri" -#: libraries/messages.inc.php:868 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:864 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 " @@ -5307,44 +5307,44 @@ msgstr "" "çizgi (\"\\\") veya tek tırnak (\"'\") koymanız gerekirse, önlerine ters " "eğik çizgi koyun (örneğin '\\\\xyz' veya 'a\\'b')." -#: libraries/messages.inc.php:876 server_binlog.php:192 server_binlog.php:195 +#: libraries/messages.inc.php:872 server_binlog.php:192 server_binlog.php:195 #: server_processlist.php:49 server_processlist.php:51 msgid "Show Full Queries" msgstr "Tüm Sorguları Göster" -#: libraries/messages.inc.php:878 pmd_general.php:64 +#: libraries/messages.inc.php:874 pmd_general.php:64 msgid "Show/Hide left menu" msgstr "Sol menüyü Göster/Gizle" -#: libraries/messages.inc.php:880 sql.php:513 +#: libraries/messages.inc.php:876 sql.php:513 msgid "Showing as PHP code" msgstr "PHP kodu olarak gösteriliyor" -#: libraries/messages.inc.php:882 sql.php:516 tbl_replace.php:360 +#: libraries/messages.inc.php:878 sql.php:516 tbl_replace.php:360 msgid "Showing SQL query" msgstr "SQL sorgusu gösteriliyor" -#: libraries/messages.inc.php:883 tbl_change.php:1132 +#: libraries/messages.inc.php:879 tbl_change.php:1132 msgid "Show insert query" msgstr "Ekleme sorgusunu göster" -#: libraries/messages.inc.php:886 server_status.php:273 +#: libraries/messages.inc.php:882 server_status.php:273 msgid "Show open tables" msgstr "Açık tabloları göster" -#: libraries/messages.inc.php:887 main.php:219 +#: libraries/messages.inc.php:883 main.php:219 msgid "Show PHP information" msgstr "PHP bilgisini göster" -#: libraries/messages.inc.php:889 server_status.php:278 +#: libraries/messages.inc.php:885 server_status.php:278 msgid "Show slave hosts" msgstr "Slave anamakineleri göster" -#: libraries/messages.inc.php:890 server_status.php:284 +#: libraries/messages.inc.php:886 server_status.php:284 msgid "Show slave status" msgstr "Slave durumunu göster" -#: libraries/messages.inc.php:891 +#: libraries/messages.inc.php:887 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -5354,11 +5354,11 @@ msgstr "" "binlog_cache_size değerini aştı ve işlemdeki ifadeleri depolamak için geçici " "dosya kullandı." -#: libraries/messages.inc.php:892 +#: libraries/messages.inc.php:888 msgid "The number of transactions that used the temporary binary log cache." msgstr "Geçici binari günlüğü önbelleğinde kullanılan işlemlerin sayısı." -#: libraries/messages.inc.php:893 +#: libraries/messages.inc.php:889 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -5370,11 +5370,11 @@ msgstr "" "büyük ise, geçici tabloların disk tabanlı yerine bellek tabanlı olamasına " "sebep olmak için tmp_table_size değerini arttırmak isteyebilirsiniz." -#: libraries/messages.inc.php:894 +#: libraries/messages.inc.php:890 msgid "How many temporary files mysqld has created." msgstr "mysqld'nin kaç tane geçici dosya oluşturduğudur." -#: libraries/messages.inc.php:895 +#: libraries/messages.inc.php:891 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -5382,7 +5382,7 @@ msgstr "" "İfadeler çalıştırılırken sunucu tarafından bellek içindeki geçici tabloların " "sayısı otomatik olarak oluşturuldu." -#: libraries/messages.inc.php:896 +#: libraries/messages.inc.php:892 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -5390,7 +5390,7 @@ msgstr "" "INSERT DELAYED komutu ile yazılmış, bazı hataların meydana geldiği satır " "sayısı (muhtemelen kopya anahtar)." -#: libraries/messages.inc.php:897 +#: libraries/messages.inc.php:893 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -5398,23 +5398,23 @@ msgstr "" "Kullanımda olan INSERT DELAYED işleticisi işlem sayısı. INSERT DELAYED " "komutunu kullanan her farklı tablodan biri kendi işlemini alır." -#: libraries/messages.inc.php:898 +#: libraries/messages.inc.php:894 msgid "The number of INSERT DELAYED rows written." msgstr "INSERT DELAYED satır yazımı sayısıdır." -#: libraries/messages.inc.php:899 +#: libraries/messages.inc.php:895 msgid "The number of executed FLUSH statements." msgstr "Çalıştırılmış FLUSH ifadesi sayısıdır." -#: libraries/messages.inc.php:900 +#: libraries/messages.inc.php:896 msgid "The number of internal COMMIT statements." msgstr "Dahili COMMIT ifadesi sayısıdır." -#: libraries/messages.inc.php:901 +#: libraries/messages.inc.php:897 msgid "The number of times a row was deleted from a table." msgstr "Tablodan satırın kaç kez silindiği sayısıdır." -#: libraries/messages.inc.php:902 +#: libraries/messages.inc.php:898 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -5424,7 +5424,7 @@ msgstr "" "motorunu sorabilir. Buna keşfetme denir. Handler_discover tabloların keç kez " "keşfedildiğini gösterir." -#: libraries/messages.inc.php:903 +#: libraries/messages.inc.php:899 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -5434,7 +5434,7 @@ msgstr "" "sunucunun çok fazla indeks taraması yapıyor olduğunu gösterir; örneğin, " "SELECT col1 FROM foo, anlaşılıyor ki col1 indekslenmiş." -#: libraries/messages.inc.php:904 +#: libraries/messages.inc.php:900 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -5443,7 +5443,7 @@ msgstr "" "sorgularınızın ve tablolarınızın düzgün bir şekilde indekslenmesinin iyi " "olduğu belirtisidir." -#: libraries/messages.inc.php:905 +#: libraries/messages.inc.php:901 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -5453,7 +5453,7 @@ msgstr "" "aralık ile indeks sütununu sorguluyorsanız ya da indeks taraması " "yapıyorsanız, bu arttırılan miktardır." -#: libraries/messages.inc.php:906 +#: libraries/messages.inc.php:902 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -5461,7 +5461,7 @@ msgstr "" "Anahtar sırasında önceki satırı okumak için istek sayısıdır. Bu okuma " "yöntemi başlıca ORDER BY ... DESC komutunu uyarlamak için kullanılır." -#: libraries/messages.inc.php:907 +#: libraries/messages.inc.php:903 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -5474,7 +5474,7 @@ msgstr "" "fazla sorgulamanız vardır veya düzgün bir şekilde anahtarları " "kullanmamaktasınız." -#: libraries/messages.inc.php:908 +#: libraries/messages.inc.php:904 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -5486,35 +5486,35 @@ msgstr "" "düzgün bir şekilde indekslenmediğinde ya da sorgularınız, sahip olduğunuz " "indeksleri çıkarına kullanmak için yazmadığında önerilir." -#: libraries/messages.inc.php:909 +#: libraries/messages.inc.php:905 msgid "The number of internal ROLLBACK statements." msgstr "Dahili ROLLBACK ifadesi sayısıdır." -#: libraries/messages.inc.php:910 +#: libraries/messages.inc.php:906 msgid "The number of requests to update a row in a table." msgstr "Tablo içinde satır güncellemek için istek sayısıdır." -#: libraries/messages.inc.php:911 +#: libraries/messages.inc.php:907 msgid "The number of requests to insert a row in a table." msgstr "Tablo içinde satır eklemek için istek sayısıdır." -#: libraries/messages.inc.php:912 +#: libraries/messages.inc.php:908 msgid "The number of pages containing data (dirty or clean)." msgstr "Veri içeren sayfa sayısıdır (dolu veya temiz)." -#: libraries/messages.inc.php:913 +#: libraries/messages.inc.php:909 msgid "The number of pages currently dirty." msgstr "Şu anki dolu sayfa sayısıdır." -#: libraries/messages.inc.php:914 +#: libraries/messages.inc.php:910 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Temizlenmesi için istenmiş ara bellek havuz sayfa sayısıdır." -#: libraries/messages.inc.php:915 +#: libraries/messages.inc.php:911 msgid "The number of free pages." msgstr "Boş sayfa sayısıdır." -#: libraries/messages.inc.php:916 +#: libraries/messages.inc.php:912 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -5524,7 +5524,7 @@ msgstr "" "okunan veya yazılmış ya da bazı diğer sebepler yüzünden temizlenemeyen veya " "taşınamayan sayfalardır." -#: libraries/messages.inc.php:917 +#: libraries/messages.inc.php:913 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -5536,11 +5536,11 @@ msgstr "" "zamanda Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data değerleri gibi hesaplanabilir." -#: libraries/messages.inc.php:918 +#: libraries/messages.inc.php:914 msgid "Total size of buffer pool, in pages." msgstr "Sayfalardaki ara bellek havuzunun toplam boyutudur." -#: libraries/messages.inc.php:919 +#: libraries/messages.inc.php:915 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -5548,7 +5548,7 @@ msgstr "" "InnoDB \"rastgele\" önden okuma başlatımı sayısıdır. Sorgu tablonun büyük " "bir kısmını taradığı zaman bu olur ama rastgele düzende." -#: libraries/messages.inc.php:920 +#: libraries/messages.inc.php:916 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -5556,11 +5556,11 @@ msgstr "" "InnoDB sıralı önden okuma başlatımı sayısıdır. InnoDB sıralı tam tablo " "taraması yaptığı zaman bu olur." -#: libraries/messages.inc.php:921 +#: libraries/messages.inc.php:917 msgid "The number of logical read requests InnoDB has done." msgstr "InnoDB'nin bitirdiği veya yaptığı mantıksal okuma isteği sayısıdır." -#: libraries/messages.inc.php:922 +#: libraries/messages.inc.php:918 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -5568,7 +5568,7 @@ msgstr "" "InnoDB'nin ara bellek havuzundan tatmin olamadığı ve tek-sayfa okuması " "yapmak zorunda olduğu mantıksal okuma sayısıdır." -#: libraries/messages.inc.php:923 +#: libraries/messages.inc.php:919 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -5582,55 +5582,55 @@ msgstr "" "durumlarını sayar. Eğer ara bellek havuzu boyutu düzgün bir şekilde " "ayarlandıysa, bu değer küçük olmalıdır." -#: libraries/messages.inc.php:924 +#: libraries/messages.inc.php:920 msgid "The number writes done to the InnoDB buffer pool." msgstr "InnoDB ara bellek havuzuna bitti yazma sayısıdır." -#: libraries/messages.inc.php:925 +#: libraries/messages.inc.php:921 msgid "The number of fsync() operations so far." msgstr "Şimdiye kadarki fsync() işlem sayısıdır." -#: libraries/messages.inc.php:926 +#: libraries/messages.inc.php:922 msgid "The current number of pending fsync() operations." msgstr "Şu anki bekleyen fsync() işlem sayısıdır." -#: libraries/messages.inc.php:927 +#: libraries/messages.inc.php:923 msgid "The current number of pending reads." msgstr "Şu anki bekleyen okuma sayısıdır." -#: libraries/messages.inc.php:928 +#: libraries/messages.inc.php:924 msgid "The current number of pending writes." msgstr "Şu anki bekleyen yazma sayısıdır." -#: libraries/messages.inc.php:929 +#: libraries/messages.inc.php:925 msgid "The amount of data read so far, in bytes." msgstr "Bayt cinsinden şimdiye kadarki veri okuma miktarıdır." -#: libraries/messages.inc.php:930 +#: libraries/messages.inc.php:926 msgid "The total number of data reads." msgstr "Toplam veri okuma sayısıdır." -#: libraries/messages.inc.php:931 +#: libraries/messages.inc.php:927 msgid "The total number of data writes." msgstr "Toplam veri yazma sayısıdır." -#: libraries/messages.inc.php:932 +#: libraries/messages.inc.php:928 msgid "The amount of data written so far, in bytes." msgstr "Bayt cinsinden şimdiye kadarki yazılmış veri miktarıdır." -#: libraries/messages.inc.php:933 +#: libraries/messages.inc.php:929 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Bu amaç için yazılmış sayfa sayısı ve gerçekleştirilmiş çifte-yazım yazma " "sayısıdır." -#: libraries/messages.inc.php:934 +#: libraries/messages.inc.php:930 msgid "The number of doublewrite operations that have been performed." msgstr "" "Bu amaç için yazılmış sayfa sayısı ve gerçekleştirilmiş çifte-yazım yazma " "sayısıdır." -#: libraries/messages.inc.php:935 +#: libraries/messages.inc.php:931 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -5638,35 +5638,35 @@ msgstr "" "Sahip olunan bekleme sayısıdır çünkü günlük ara belleği çok küçük ve devam " "etmeden önce temizlenmesi için beklemek zorundayız." -#: libraries/messages.inc.php:936 +#: libraries/messages.inc.php:932 msgid "The number of log write requests." msgstr "Günlük yazma isteği sayısıdır." -#: libraries/messages.inc.php:937 +#: libraries/messages.inc.php:933 msgid "The number of physical writes to the log file." msgstr "Günlük dosyasına fiziksel yazma sayısıdır." -#: libraries/messages.inc.php:938 +#: libraries/messages.inc.php:934 msgid "The number of fsync() writes done to the log file." msgstr "Günlük dosyasına bitmiş fsyncs yazma sayısıdır." -#: libraries/messages.inc.php:939 +#: libraries/messages.inc.php:935 msgid "The number of pending log file fsyncs." msgstr "Bekleyen günlük dosyası fsyncs sayısıdır." -#: libraries/messages.inc.php:940 +#: libraries/messages.inc.php:936 msgid "Pending log file writes." msgstr "Bekleyen günlük dosyası yazma sayısıdır." -#: libraries/messages.inc.php:941 +#: libraries/messages.inc.php:937 msgid "The number of bytes written to the log file." msgstr "Günlük dosyasına yazılı bayt sayısıdır." -#: libraries/messages.inc.php:942 +#: libraries/messages.inc.php:938 msgid "The number of pages created." msgstr "Oluşturulmuş sayfa sayısıdır." -#: libraries/messages.inc.php:943 +#: libraries/messages.inc.php:939 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -5674,52 +5674,52 @@ msgstr "" "Derlenen InnoDB sayfa boyutu (varsayılan 16KB). Birçok değer sayfalarda " "sayılır; sayfa boyutu bunların kolaylıkla bayt'a dönüştürülmesine izin verir." -#: libraries/messages.inc.php:944 +#: libraries/messages.inc.php:940 msgid "The number of pages read." msgstr "Okunan sayfa sayısıdır." -#: libraries/messages.inc.php:945 +#: libraries/messages.inc.php:941 msgid "The number of pages written." msgstr "Yazılmış sayfa sayısıdır." -#: libraries/messages.inc.php:946 +#: libraries/messages.inc.php:942 msgid "The number of row locks currently being waited for." msgstr "Şu anki beklenen satır kilidi sayısıdır." -#: libraries/messages.inc.php:947 +#: libraries/messages.inc.php:943 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Milisaniye cinsinden satır kilidi elde etmek için ortalama süredir." -#: libraries/messages.inc.php:948 +#: libraries/messages.inc.php:944 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" "Milisaniye cinsinden satır kilidi elde ederken harcanmış toplam süredir." -#: libraries/messages.inc.php:949 +#: libraries/messages.inc.php:945 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Milisaniye cinsinden satır kilidi elde etmek için en fazla süredir." -#: libraries/messages.inc.php:950 +#: libraries/messages.inc.php:946 msgid "The number of times a row lock had to be waited for." msgstr "Satır kilidinin beklemek zorunda kaldığı süre sayısıdır." -#: libraries/messages.inc.php:951 +#: libraries/messages.inc.php:947 msgid "The number of rows deleted from InnoDB tables." msgstr "InnoDB tablolarından silinen satır sayısıdır." -#: libraries/messages.inc.php:952 +#: libraries/messages.inc.php:948 msgid "The number of rows inserted in InnoDB tables." msgstr "InnoDB tablolarına eklenen satır sayısıdır." -#: libraries/messages.inc.php:953 +#: libraries/messages.inc.php:949 msgid "The number of rows read from InnoDB tables." msgstr "InnoDB tablolarından okunan satır sayısıdır." -#: libraries/messages.inc.php:954 +#: libraries/messages.inc.php:950 msgid "The number of rows updated in InnoDB tables." msgstr "InnoDB tablolarında güncellenen satır sayısıdır." -#: libraries/messages.inc.php:955 +#: libraries/messages.inc.php:951 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -5727,7 +5727,7 @@ msgstr "" "Anahtar önbelleğindeki değiştirilmiş ama diskte henüz temizlenmemiş anahtar " "bloğu sayısıdır. Not_flushed_key_blocks olarak bilinip kullanılır." -#: libraries/messages.inc.php:956 +#: libraries/messages.inc.php:952 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -5736,7 +5736,7 @@ msgstr "" "önbelleğinin ne kadarının kullanımda olmasını belirlemek için " "kullanabilirsiniz." -#: libraries/messages.inc.php:957 +#: libraries/messages.inc.php:953 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -5745,11 +5745,11 @@ msgstr "" "Anahtar önbelleğinde kullanılan blok sayısıdır. Bu değerin en uç noktada " "olması bir kerede en fazla blok sayısının kullanımda olmamasını gösterir." -#: libraries/messages.inc.php:958 +#: libraries/messages.inc.php:954 msgid "The number of requests to read a key block from the cache." msgstr "Önbellekten anahtar bloğunun okunması için istek sayısıdır." -#: libraries/messages.inc.php:959 +#: libraries/messages.inc.php:955 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -5759,15 +5759,15 @@ msgstr "" "büyükse, key_buffer_size değeriniz muhtemelen çok küçüktür. Eksik önbellek " "oranı Key_reads/Key_read_requests olarak hesaplanabilir." -#: libraries/messages.inc.php:960 +#: libraries/messages.inc.php:956 msgid "The number of requests to write a key block to the cache." msgstr "Önbelleğe anahtar bloğu yazmak için istek sayısıdır." -#: libraries/messages.inc.php:961 +#: libraries/messages.inc.php:957 msgid "The number of physical writes of a key block to disk." msgstr "Diske anahtar bloğunu fiziksel yazma sayısıdır." -#: libraries/messages.inc.php:962 +#: libraries/messages.inc.php:958 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -5778,11 +5778,11 @@ msgstr "" "karşılaştırmak için yararlıdır. Varsayılan değer 0, henüz derlenmiş sorgu " "olmadığı anlamına gelir." -#: libraries/messages.inc.php:963 +#: libraries/messages.inc.php:959 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "INSERT DELAYED sıralarında yazılmak için bekleyen satır sayısıdır." -#: libraries/messages.inc.php:964 +#: libraries/messages.inc.php:960 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -5790,35 +5790,35 @@ msgstr "" "Açık olan tablo sayısıdır. Eğer açık tablolar büyükse, tablo önbellek " "değeriniz muhtemelen çok küçüktür." -#: libraries/messages.inc.php:965 +#: libraries/messages.inc.php:961 msgid "The number of files that are open." msgstr "Açık olan dosya sayısıdır." -#: libraries/messages.inc.php:966 +#: libraries/messages.inc.php:962 msgid "The number of streams that are open (used mainly for logging)." msgstr "Açık olan akış sayısıdır (başlıca günlükleme için kullanılır)." -#: libraries/messages.inc.php:967 +#: libraries/messages.inc.php:963 msgid "The number of tables that are open." msgstr "Açık olan tablo sayısıdır." -#: libraries/messages.inc.php:968 +#: libraries/messages.inc.php:964 msgid "The number of free memory blocks in query cache." msgstr "Sorgu önbelleğindeki boş bellek bloğu sayısıdır." -#: libraries/messages.inc.php:969 +#: libraries/messages.inc.php:965 msgid "The amount of free memory for query cache." msgstr "Sorgu önbelleği için boş bellek miktarıdır." -#: libraries/messages.inc.php:970 +#: libraries/messages.inc.php:966 msgid "The number of cache hits." msgstr "Önbelleğe ulaşma sayısıdır." -#: libraries/messages.inc.php:971 +#: libraries/messages.inc.php:967 msgid "The number of queries added to the cache." msgstr "Önbelleğe eklenen sorgu sayısıdır." -#: libraries/messages.inc.php:972 +#: libraries/messages.inc.php:968 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -5830,7 +5830,7 @@ msgstr "" "yardımcı olabilir. Önbellekten hangi sorguların kaldırılacağına karar vermek " "için sorgu önbelleği en az son kullanılmış (LRU) stratejisini kullanır." -#: libraries/messages.inc.php:973 +#: libraries/messages.inc.php:969 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -5838,24 +5838,24 @@ msgstr "" "Önbelleklenmemiş sorgu sayısıdır (önbelleklenemez, ya da query_cache_type " "ayarından dolayı önbelleklenmedi)." -#: libraries/messages.inc.php:974 +#: libraries/messages.inc.php:970 msgid "The number of queries registered in the cache." msgstr "Önbellekte kayıtlı sorgu sayısıdır." -#: libraries/messages.inc.php:975 +#: libraries/messages.inc.php:971 msgid "The total number of blocks in the query cache." msgstr "Sorgu önbelleği içindeki toplam blok sayısıdır." -#: libraries/messages.inc.php:976 +#: libraries/messages.inc.php:972 msgctxt "$strShowStatusReset" msgid "Reset" msgstr "Sıfırla" -#: libraries/messages.inc.php:977 +#: libraries/messages.inc.php:973 msgid "The status of failsafe replication (not yet implemented)." msgstr "Arıza-güvenli kopya etme durumu (henüz tamamlanmadı)." -#: libraries/messages.inc.php:978 +#: libraries/messages.inc.php:974 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -5863,11 +5863,11 @@ msgstr "" "İndeksler kullanmayan birleştirme sayısıdır. Eğer bu değer 0 değilse, " "tablolarınızın indekslerini dikkatli olarak kontrol etmelisiniz." -#: libraries/messages.inc.php:979 +#: libraries/messages.inc.php:975 msgid "The number of joins that used a range search on a reference table." msgstr "Referans tablosunda aralık araması kullanan birleştirme sayısıdır." -#: libraries/messages.inc.php:980 +#: libraries/messages.inc.php:976 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -5876,7 +5876,7 @@ msgstr "" "birleştirme sayısıdır. (Eğer bu değer 0 değilse, tablolarınızın indekslerini " "dikkatli olarak kontrol etmelisiniz.)" -#: libraries/messages.inc.php:981 +#: libraries/messages.inc.php:977 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -5884,15 +5884,15 @@ msgstr "" "İlk tabloda aralıkları kullanan birleştirme sayısıdır. (Normal olarak " "kusurlu değildir, eğer büyükse bile.)" -#: libraries/messages.inc.php:982 +#: libraries/messages.inc.php:978 msgid "The number of joins that did a full scan of the first table." msgstr "İlk tablonun tam taramasının yapıldığı birleştirme sayısıdır." -#: libraries/messages.inc.php:983 +#: libraries/messages.inc.php:979 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "Slave SQL işlemi tarafından şu anki açık geçici tablo sayısıdır." -#: libraries/messages.inc.php:984 +#: libraries/messages.inc.php:980 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -5900,11 +5900,11 @@ msgstr "" "Kopya edilen slave SQL işleminin yeniden denediği işlerin toplam " "(başlangıçtan beri) süre sayısıdır." -#: libraries/messages.inc.php:985 +#: libraries/messages.inc.php:981 msgid "This is ON if this server is a slave that is connected to a master." msgstr "Eğer sunucu master'a bağlı slave ise, bu AÇIKTIR." -#: libraries/messages.inc.php:986 +#: libraries/messages.inc.php:982 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -5912,12 +5912,12 @@ msgstr "" "Oluşturmak için slow_launch_time saniyeden daha uzun zaman almış işlem " "sayısıdır." -#: libraries/messages.inc.php:987 +#: libraries/messages.inc.php:983 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "long_query_time saniyeden daha uzun zaman almış sorgu sayısıdır." -#: libraries/messages.inc.php:988 +#: libraries/messages.inc.php:984 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -5927,23 +5927,23 @@ msgstr "" "değer büyükse, sort_buffer_size sistem değişkeninin değerini arttırmayı " "dikkate almalısınız." -#: libraries/messages.inc.php:989 +#: libraries/messages.inc.php:985 msgid "The number of sorts that were done with ranges." msgstr "Aralıklarla yapılmış sıralama sayısıdır." -#: libraries/messages.inc.php:990 +#: libraries/messages.inc.php:986 msgid "The number of sorted rows." msgstr "Sıralanmış satır sayısıdır." -#: libraries/messages.inc.php:991 +#: libraries/messages.inc.php:987 msgid "The number of sorts that were done by scanning the table." msgstr "Taranan tablo tarafından yapılmış sıralama sayısıdır." -#: libraries/messages.inc.php:992 +#: libraries/messages.inc.php:988 msgid "The number of times that a table lock was acquired immediately." msgstr "Tablo kilidinin hemen tanındığı süre sayısıdır." -#: libraries/messages.inc.php:993 +#: libraries/messages.inc.php:989 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -5955,7 +5955,7 @@ msgstr "" "uyarlamalısınız ve sonra ya tablonuzu ya da tablolarınızı bölün veya kopya " "etmeyi kullanın." -#: libraries/messages.inc.php:994 +#: libraries/messages.inc.php:990 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -5965,11 +5965,11 @@ msgstr "" "Threads_created/Bağlantılar olarak hesaplanabilir. Eğer bu değer kırmızı " "ise, thread_cache_size boyutunuzu yükseltmelisiniz." -#: libraries/messages.inc.php:995 +#: libraries/messages.inc.php:991 msgid "The number of currently open connections." msgstr "Şu anki açık bağlantı sayısıdır." -#: libraries/messages.inc.php:996 +#: libraries/messages.inc.php:992 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -5981,28 +5981,28 @@ msgstr "" "(eğer iyi bir işlem uygulamasına sahipseniz, normal olarak bu, dikkate değer " "bir performans artışı vermez.)" -#: libraries/messages.inc.php:997 +#: libraries/messages.inc.php:993 msgid "The number of threads that are not sleeping." msgstr "Hala faaliyette olan işlemler sayısıdır." -#: libraries/messages.inc.php:999 tbl_printview.php:75 +#: libraries/messages.inc.php:995 tbl_printview.php:75 msgid "Show tables" msgstr "Tabloları göster" -#: libraries/messages.inc.php:1000 libraries/sql_query_form.lib.php:396 +#: libraries/messages.inc.php:996 libraries/sql_query_form.lib.php:396 msgid " Show this query here again " msgstr "Bu sorguyu burada tekrar göster" -#: libraries/messages.inc.php:1001 libraries/mysql_charsets.lib.php:217 +#: libraries/messages.inc.php:997 libraries/mysql_charsets.lib.php:217 #: libraries/mysql_charsets.lib.php:342 msgid "Simplified Chinese" msgstr "Basitleştirilmiş Çince" -#: libraries/messages.inc.php:1002 tbl_operations.php:258 +#: libraries/messages.inc.php:998 tbl_operations.php:258 msgid "(singly)" msgstr "(birer birer)" -#: libraries/messages.inc.php:1005 libraries/replication_gui.lib.php:52 +#: libraries/messages.inc.php:1001 libraries/replication_gui.lib.php:52 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" @@ -6010,47 +6010,47 @@ msgstr "" "Yapılandırma dosyanız (my.cnf) içinde benzersiz sunucu-id olduğundan emin " "olun. Eğer değilseniz lütfen aşağıdaki satırı [mysqld] bölümü içine ekleyin:" -#: libraries/messages.inc.php:1006 libraries/mysql_charsets.lib.php:283 +#: libraries/messages.inc.php:1002 libraries/mysql_charsets.lib.php:283 msgid "Slovak" msgstr "Slovakça" -#: libraries/messages.inc.php:1007 libraries/mysql_charsets.lib.php:286 +#: libraries/messages.inc.php:1003 libraries/mysql_charsets.lib.php:286 msgid "Slovenian" msgstr "Slovence" -#: libraries/messages.inc.php:1008 pmd_general.php:95 +#: libraries/messages.inc.php:1004 pmd_general.php:95 msgid "Small/Big All" msgstr "Tümü Küçük/Büyük" -#: libraries/messages.inc.php:1009 pmd_general.php:91 +#: libraries/messages.inc.php:1005 pmd_general.php:91 msgid "Snap to grid" msgstr "Kılavuza ayarla" -#: libraries/messages.inc.php:1011 server_synchronize.php:1167 +#: libraries/messages.inc.php:1007 server_synchronize.php:1167 msgid "Socket" msgstr "Soket" -#: libraries/messages.inc.php:1013 server_status.php:259 +#: libraries/messages.inc.php:1009 server_status.php:259 msgid "Sorting" msgstr "Sıralama" -#: libraries/messages.inc.php:1015 tbl_printview.php:310 tbl_structure.php:657 +#: libraries/messages.inc.php:1011 tbl_printview.php:310 tbl_structure.php:657 msgid "Space usage" msgstr "Alan kullanımı" -#: libraries/messages.inc.php:1016 libraries/mysql_charsets.lib.php:289 +#: libraries/messages.inc.php:1012 libraries/mysql_charsets.lib.php:289 msgid "Spanish" msgstr "İspanyolca" -#: libraries/messages.inc.php:1019 +#: libraries/messages.inc.php:1015 msgid "Export type" msgstr "Dışarı aktarma türü" -#: libraries/messages.inc.php:1020 +#: libraries/messages.inc.php:1016 msgid "Export time in UTC" msgstr "UTC olarak zamanı dışarı aktar" -#: libraries/messages.inc.php:1021 libraries/sqlparser.lib.php:173 +#: libraries/messages.inc.php:1017 libraries/sqlparser.lib.php:173 msgid "" "There is a chance that you may have found a bug in the SQL parser. Please " "examine your query closely, and check that the quotes are correct and not " @@ -6073,7 +6073,7 @@ msgstr "" "sorgu girişinizi tek bir sorguya indirgeyin ve aşağıdaki CUT bölümü içindeki " "veri yığını ile birlikte hata raporunu gönderin:" -#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:137 +#: libraries/messages.inc.php:1018 libraries/sqlparser.lib.php:137 msgid "" "There seems to be an error in your SQL query. The MySQL server error output " "below, if there is any, may also help you in diagnosing the problem" @@ -6081,32 +6081,32 @@ msgstr "" "SQL sorgunuzda bir hata olduğu görünüyor. Eğer varsa, aşağıdaki MySQL sunucu " "hata çıktısı, sorunu teşhis etmenizde ayrıca size yardımcı olabilir." -#: libraries/messages.inc.php:1026 libraries/sqlparser.lib.php:495 +#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:495 msgid "Invalid Identifer" msgstr "Geçersiz Tanımlayıcı" -#: libraries/messages.inc.php:1027 libraries/sqlparser.lib.php:344 +#: libraries/messages.inc.php:1023 libraries/sqlparser.lib.php:344 msgid "Unclosed quote" msgstr "Kapatılmamış tırnak" -#: libraries/messages.inc.php:1028 libraries/sqlparser.lib.php:612 +#: libraries/messages.inc.php:1024 libraries/sqlparser.lib.php:612 msgid "Unknown Punctuation String" msgstr "Bilinmeyen Noktalama İşareti Dizgisi" -#: libraries/messages.inc.php:1030 server_replication.php:327 +#: libraries/messages.inc.php:1026 server_replication.php:327 #: server_replication.php:328 msgid "Start" msgstr "Başlat" -#: libraries/messages.inc.php:1033 tbl_printview.php:369 tbl_structure.php:729 +#: libraries/messages.inc.php:1029 tbl_printview.php:369 tbl_structure.php:729 msgid "Statements" msgstr "İfadeler" -#: libraries/messages.inc.php:1034 tbl_printview.php:380 tbl_structure.php:741 +#: libraries/messages.inc.php:1030 tbl_printview.php:380 tbl_structure.php:741 msgid "static" msgstr "sabit" -#: libraries/messages.inc.php:1035 server_status.php:388 +#: libraries/messages.inc.php:1031 server_status.php:388 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -6114,42 +6114,42 @@ msgstr "" "Meşgul sunucu üzerinde, bayt sayaçları aşırı işleyebilir, bu yüzden MySQL " "sunucusu tarafından raporlanan istatistikler doğru olmayabilir." -#: libraries/messages.inc.php:1038 server_replication.php:327 +#: libraries/messages.inc.php:1034 server_replication.php:327 #: server_replication.php:328 msgid "Stop" msgstr "Durdur" -#: libraries/messages.inc.php:1039 server_engines.php:49 +#: libraries/messages.inc.php:1035 server_engines.php:49 msgid "Storage Engines" msgstr "Depolama Motorları" -#: libraries/messages.inc.php:1040 libraries/tbl_properties.inc.php:726 +#: libraries/messages.inc.php:1036 libraries/tbl_properties.inc.php:726 #: server_engines.php:58 tbl_operations.php:353 msgid "Storage Engine" msgstr "Depolama Motoru" -#: libraries/messages.inc.php:1042 +#: libraries/messages.inc.php:1038 msgid "CSV for MS Excel" msgstr "MS Excel için CSV" -#: libraries/messages.inc.php:1044 tbl_structure.php:516 tbl_structure.php:518 +#: libraries/messages.inc.php:1040 tbl_structure.php:516 tbl_structure.php:518 msgid "Propose table structure" msgstr "Tablo yapısı öner" -#: libraries/messages.inc.php:1045 server_synchronize.php:424 +#: libraries/messages.inc.php:1041 server_synchronize.php:424 #: server_synchronize.php:867 msgid "Structure Difference" msgstr "Yapı Farklılığı" -#: libraries/messages.inc.php:1049 server_synchronize.php:265 +#: libraries/messages.inc.php:1045 server_synchronize.php:265 msgid "Structure Synchronization" msgstr "Yapı Eşitleme" -#: libraries/messages.inc.php:1050 libraries/sql_query_form.lib.php:462 +#: libraries/messages.inc.php:1046 libraries/sql_query_form.lib.php:462 msgid "Submit" msgstr "Gönder" -#: libraries/messages.inc.php:1052 main.php:358 +#: libraries/messages.inc.php:1048 main.php:358 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -6158,16 +6158,16 @@ msgstr "" "Sunucu Suhosin ile çalışıyor. Lütfen olası sorunlar için %sdocumentation%s " "belgesinden yararlanın." -#: libraries/messages.inc.php:1054 libraries/mysql_charsets.lib.php:295 +#: libraries/messages.inc.php:1050 libraries/mysql_charsets.lib.php:295 #: libraries/mysql_charsets.lib.php:392 msgid "Swedish" msgstr "İsveççe" -#: libraries/messages.inc.php:1060 tbl_operations.php:556 +#: libraries/messages.inc.php:1056 tbl_operations.php:556 msgid "Switch to copied table" msgstr "Kopyalanmış tabloya geç" -#: libraries/messages.inc.php:1061 server_synchronize.php:1213 +#: libraries/messages.inc.php:1057 server_synchronize.php:1213 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -6175,145 +6175,145 @@ msgstr "" "Hedef veritabanı kaynak veritabanı ile tamamen eşitlenecektir. Kaynak " "veritabanı değitirelemeyecektir." -#: libraries/messages.inc.php:1062 server_synchronize.php:451 +#: libraries/messages.inc.php:1058 server_synchronize.php:451 #: server_synchronize.php:896 msgid "Synchronize Databases" msgstr "Veritabanlarını Eşitle" -#: libraries/messages.inc.php:1063 libraries/server_links.inc.php:92 +#: libraries/messages.inc.php:1059 libraries/server_links.inc.php:92 #: server_synchronize.php:1092 server_synchronize.php:1100 msgid "Synchronize" msgstr "Eşitle" -#: libraries/messages.inc.php:1065 server_synchronize.php:430 +#: libraries/messages.inc.php:1061 server_synchronize.php:430 #: server_synchronize.php:873 msgid "Add column(s)" msgstr "Sekme(leri) ekle" -#: libraries/messages.inc.php:1066 tbl_create.php:62 +#: libraries/messages.inc.php:1062 tbl_create.php:62 #, php-format msgid "Table %s already exists!" msgstr "%s tablosu zaten var!" -#: libraries/messages.inc.php:1067 server_synchronize.php:432 +#: libraries/messages.inc.php:1063 server_synchronize.php:432 #: server_synchronize.php:875 msgid "Alter column(s)" msgstr "Sekme(leri)yi değiştir" -#: libraries/messages.inc.php:1068 tbl_addfield.php:189 tbl_alter.php:103 +#: libraries/messages.inc.php:1064 tbl_addfield.php:189 tbl_alter.php:103 #: tbl_indexes.php:98 #, php-format msgid "Table %1$s has been altered successfully" msgstr "Tablo %1$s başarılı olarak değiştirldi" -#: libraries/messages.inc.php:1069 server_synchronize.php:434 +#: libraries/messages.inc.php:1065 server_synchronize.php:434 #: server_synchronize.php:877 msgid "Apply index(s)" msgstr "İndeks(leri)i uygula" -#: libraries/messages.inc.php:1071 server_synchronize.php:446 +#: libraries/messages.inc.php:1067 server_synchronize.php:446 #: server_synchronize.php:890 msgid "Would you like to delete all the previous rows from target tables?" msgstr "Hedef tablolardan önceki tüm sıraları silme istiyor musunuz?" -#: libraries/messages.inc.php:1072 tbl_move_copy.php:82 +#: libraries/messages.inc.php:1068 tbl_move_copy.php:82 msgid "The table name is empty!" msgstr "Tablo adı boş!" -#: libraries/messages.inc.php:1073 tbl_create.php:249 +#: libraries/messages.inc.php:1069 tbl_create.php:249 #, php-format msgid "Table %1$s has been created." msgstr "Tablo %1$s oluşturuldu." -#: libraries/messages.inc.php:1076 tbl_operations.php:628 +#: libraries/messages.inc.php:1072 tbl_operations.php:628 #, php-format msgid "Table %s has been flushed" msgstr "%s tablosu temizlendi" -#: libraries/messages.inc.php:1077 server_synchronize.php:436 +#: libraries/messages.inc.php:1073 server_synchronize.php:436 #: server_synchronize.php:879 msgid "Insert row(s)" msgstr "Sıra(ları) ekle" -#: libraries/messages.inc.php:1078 libraries/tbl_links.inc.php:107 +#: libraries/messages.inc.php:1074 libraries/tbl_links.inc.php:107 #: libraries/tbl_links.inc.php:140 libraries/tbl_links.inc.php:141 msgid "Table seems to be empty!" msgstr "Tablo boş olarak görünüyor!" -#: libraries/messages.inc.php:1079 tbl_operations.php:568 +#: libraries/messages.inc.php:1075 tbl_operations.php:568 msgid "Table maintenance" msgstr "Tablo bakımı" -#: libraries/messages.inc.php:1080 libraries/tbl_properties.inc.php:618 +#: libraries/messages.inc.php:1076 libraries/tbl_properties.inc.php:618 #: server_synchronize.php:428 server_synchronize.php:871 msgid "Table name" msgstr "Tablo adı" -#: libraries/messages.inc.php:1081 pdf_schema.php:1116 +#: libraries/messages.inc.php:1077 pdf_schema.php:1116 msgid "Table of contents" msgstr "İçerik tablosu" -#: libraries/messages.inc.php:1082 tbl_operations.php:334 +#: libraries/messages.inc.php:1078 tbl_operations.php:334 msgid "Table options" msgstr "Tablo seçenekleri" -#: libraries/messages.inc.php:1083 server_synchronize.php:431 +#: libraries/messages.inc.php:1079 server_synchronize.php:431 #: server_synchronize.php:874 msgid "Remove column(s)" msgstr "Sekme(leri)yi kaldır" -#: libraries/messages.inc.php:1084 server_synchronize.php:433 +#: libraries/messages.inc.php:1080 server_synchronize.php:433 #: server_synchronize.php:876 msgid "Remove index(s)" msgstr "İndeks(leri)i kaldır" -#: libraries/messages.inc.php:1088 server_synchronize.php:435 +#: libraries/messages.inc.php:1084 server_synchronize.php:435 #: server_synchronize.php:878 msgid "Update row(s)" msgstr "Sıra(ları)yı güncelle" -#: libraries/messages.inc.php:1090 server_synchronize.php:942 +#: libraries/messages.inc.php:1086 server_synchronize.php:942 msgid "Target database has been synchronized with source database" msgstr "Hedef veritabanı kaynak veritabanı ile eşitlendi" -#: libraries/messages.inc.php:1091 server_privileges.php:392 +#: libraries/messages.inc.php:1087 server_privileges.php:392 #: server_privileges.php:527 server_privileges.php:1679 #: server_privileges.php:1685 msgid "Table-specific privileges" msgstr "Tabloya özgü yetkiler" -#: libraries/messages.inc.php:1092 server_status.php:254 +#: libraries/messages.inc.php:1088 server_status.php:254 msgid "Temporary data" msgstr "Geçici veri" -#: libraries/messages.inc.php:1093 tbl_change.php:728 +#: libraries/messages.inc.php:1089 tbl_change.php:728 msgid " Because of its length,
this field might not be editable " msgstr "Uzunluğu nedeniyle,
bu alan düzenlenebilir olmayabilir " -#: libraries/messages.inc.php:1094 +#: libraries/messages.inc.php:1090 msgid "Texy! text" msgstr "Texy! metni" -#: libraries/messages.inc.php:1095 libraries/mysql_charsets.lib.php:298 +#: libraries/messages.inc.php:1091 libraries/mysql_charsets.lib.php:298 #: libraries/mysql_charsets.lib.php:395 msgid "Thai" msgstr "Tayca" -#: libraries/messages.inc.php:1102 libraries/replication_gui.lib.php:308 +#: libraries/messages.inc.php:1098 libraries/replication_gui.lib.php:308 #: server_privileges.php:734 msgid "This Host" msgstr "Bu Anamakine" -#: libraries/messages.inc.php:1103 server_status.php:252 +#: libraries/messages.inc.php:1099 server_status.php:252 msgid "Threads" msgstr "İşlemler" -#: libraries/messages.inc.php:1104 server_processlist.php:22 +#: libraries/messages.inc.php:1100 server_processlist.php:22 #, php-format msgid "Thread %s was successfully killed." msgstr "%s işlemi başarılı olarak sonlandırıldı." -#: libraries/messages.inc.php:1106 +#: libraries/messages.inc.php:1102 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -6322,160 +6322,160 @@ msgstr "" "sınırlarını arttırmadığınız sürece phpMyAdmin'in bu içeri aktarmayı " "biteremeyeceği anlamına gelir." -#: libraries/messages.inc.php:1109 pmd_pdf.php:94 +#: libraries/messages.inc.php:1105 pmd_pdf.php:94 msgid "to/from page" msgstr "sayfadan/sayfaya" -#: libraries/messages.inc.php:1110 pdf_pages.php:343 +#: libraries/messages.inc.php:1106 pdf_pages.php:343 msgid "Toggle scratchboard" msgstr "Karalama panosunu değiştir" -#: libraries/messages.inc.php:1111 pmd_general.php:99 +#: libraries/messages.inc.php:1107 pmd_general.php:99 msgid "Toggle small/big" msgstr "Küçüğü/büyüğü değiştir" -#: libraries/messages.inc.php:1112 pmd_help.php:27 +#: libraries/messages.inc.php:1108 pmd_help.php:27 msgid "To select relation, click :" msgstr "İlişkiyi seçmek için buraya tıklayın :" -#: libraries/messages.inc.php:1115 libraries/tbl_links.inc.php:149 +#: libraries/messages.inc.php:1111 libraries/tbl_links.inc.php:149 #, php-format msgid "Tracking of %s.%s is activated." msgstr "%s.%s izleme aktif." -#: libraries/messages.inc.php:1116 tbl_tracking.php:655 +#: libraries/messages.inc.php:1112 tbl_tracking.php:655 msgid "Activate now" msgstr "Hemen aktif et" -#: libraries/messages.inc.php:1117 tbl_tracking.php:653 +#: libraries/messages.inc.php:1113 tbl_tracking.php:653 #, php-format msgid "Activate tracking for %s.%s" msgstr "%s.%s için izlemeyi aktif et" -#: libraries/messages.inc.php:1118 tbl_tracking.php:221 +#: libraries/messages.inc.php:1114 tbl_tracking.php:221 msgid "Comment out these two lines if you do not need them." msgstr "Eğer ihtiyacınız yoksa bu iki satırı yorum dışı bırakın." -#: libraries/messages.inc.php:1119 tbl_tracking.php:688 +#: libraries/messages.inc.php:1115 tbl_tracking.php:688 msgid "Create version" msgstr "Sürüm oluştur" -#: libraries/messages.inc.php:1120 tbl_tracking.php:668 +#: libraries/messages.inc.php:1116 tbl_tracking.php:668 #, php-format msgid "Create version %s of %s.%s" msgstr "%s.%s için %s sürümü oluştur" -#: libraries/messages.inc.php:1122 tbl_tracking.php:412 +#: libraries/messages.inc.php:1118 tbl_tracking.php:412 msgid "Data definition statement" msgstr "Veri tanımlama ifadesi" -#: libraries/messages.inc.php:1123 tbl_tracking.php:463 +#: libraries/messages.inc.php:1119 tbl_tracking.php:463 msgid "Data manipulation statement" msgstr "Veri işleme ifadesi" -#: libraries/messages.inc.php:1124 tbl_tracking.php:410 tbl_tracking.php:461 +#: libraries/messages.inc.php:1120 tbl_tracking.php:410 tbl_tracking.php:461 msgid "Date" msgstr "Tarih" -#: libraries/messages.inc.php:1125 tbl_tracking.php:642 +#: libraries/messages.inc.php:1121 tbl_tracking.php:642 msgid "Deactivate now" msgstr "Hemen devre dışı bırak" -#: libraries/messages.inc.php:1126 tbl_tracking.php:640 +#: libraries/messages.inc.php:1122 tbl_tracking.php:640 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "%s.%s için izlemeyi devre dışı bırak" -#: libraries/messages.inc.php:1127 tbl_tracking.php:521 +#: libraries/messages.inc.php:1123 tbl_tracking.php:521 #, php-format msgid "Export as %s" msgstr "%s olarak dışarı aktar" -#: libraries/messages.inc.php:1130 tbl_tracking.php:251 tbl_tracking.php:379 +#: libraries/messages.inc.php:1126 tbl_tracking.php:251 tbl_tracking.php:379 msgid "Close" msgstr "Kapat" -#: libraries/messages.inc.php:1131 tbl_tracking.php:114 +#: libraries/messages.inc.php:1127 tbl_tracking.php:114 #, php-format msgid "Tracking report for table `%s`" msgstr "`%s` tablosu için izleme raporu" -#: libraries/messages.inc.php:1133 tbl_tracking.php:397 tbl_tracking.php:504 +#: libraries/messages.inc.php:1129 tbl_tracking.php:397 tbl_tracking.php:504 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "" "%s tarihleriyle göster. %s ile %s arasını. %s %s kullanıcısı tarafından" -#: libraries/messages.inc.php:1134 tbl_tracking.php:561 +#: libraries/messages.inc.php:1130 tbl_tracking.php:561 msgid "Show versions" msgstr "Sürümleri göster" -#: libraries/messages.inc.php:1135 tbl_tracking.php:507 +#: libraries/messages.inc.php:1131 tbl_tracking.php:507 msgid "SQL dump (file download)" msgstr "SQL yığını (dosya indirme)" -#: libraries/messages.inc.php:1136 tbl_tracking.php:508 +#: libraries/messages.inc.php:1132 tbl_tracking.php:508 msgid "SQL dump" msgstr "SQL yığını" -#: libraries/messages.inc.php:1137 tbl_tracking.php:213 +#: libraries/messages.inc.php:1133 tbl_tracking.php:213 msgid "SQL statements executed." msgstr "SQL ifadeleri çalıştırıldı." -#: libraries/messages.inc.php:1138 +#: libraries/messages.inc.php:1134 msgid "This option will replace your table and contained data." msgstr "Bu seçenek tablolarınızı ve içerdiği veriyi değiştirecektir." -#: libraries/messages.inc.php:1139 tbl_tracking.php:509 +#: libraries/messages.inc.php:1135 tbl_tracking.php:509 msgid "SQL execution" msgstr "SQL çalıştırma" -#: libraries/messages.inc.php:1140 tbl_tracking.php:230 +#: libraries/messages.inc.php:1136 tbl_tracking.php:230 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" "SQL ifadeleri dışarı aktarıldı. Lütfen yığını kopyalayın ya da çalıştırın." -#: libraries/messages.inc.php:1141 tbl_tracking.php:381 +#: libraries/messages.inc.php:1137 tbl_tracking.php:381 msgid "Tracking statements" msgstr "İzleme ifadeleri" -#: libraries/messages.inc.php:1148 tbl_tracking.php:593 +#: libraries/messages.inc.php:1144 tbl_tracking.php:593 msgid "Version" msgstr "Sürüm" -#: libraries/messages.inc.php:1149 tbl_tracking.php:672 +#: libraries/messages.inc.php:1145 tbl_tracking.php:672 msgid "Track these data definition statements:" msgstr "Bu veri tanımlama ifadelerini izle:" -#: libraries/messages.inc.php:1150 tbl_tracking.php:680 +#: libraries/messages.inc.php:1146 tbl_tracking.php:680 msgid "Track these data manipulation statements:" msgstr "Bu veri işleme ifadelerini izle:" -#: libraries/messages.inc.php:1155 tbl_tracking.php:411 tbl_tracking.php:462 +#: libraries/messages.inc.php:1151 tbl_tracking.php:411 tbl_tracking.php:462 msgid "Username" msgstr "Kullanıcı Adı" -#: libraries/messages.inc.php:1156 tbl_tracking.php:203 +#: libraries/messages.inc.php:1152 tbl_tracking.php:203 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "%s.%s için izleniyor, sürüm %s aktif." -#: libraries/messages.inc.php:1157 tbl_tracking.php:187 +#: libraries/messages.inc.php:1153 tbl_tracking.php:187 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "Sürüm %s oluşturuldu, %s.%s için izlenen aktif." -#: libraries/messages.inc.php:1158 tbl_tracking.php:195 +#: libraries/messages.inc.php:1154 tbl_tracking.php:195 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "%s.%s için izleniyor, sürüm %s devre dışı." -#: libraries/messages.inc.php:1159 tbl_tracking.php:262 +#: libraries/messages.inc.php:1155 tbl_tracking.php:262 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Sürüm %s görüntüsü yakalama (SQL kodu)" -#: libraries/messages.inc.php:1161 tbl_tracking.php:220 +#: libraries/messages.inc.php:1157 tbl_tracking.php:220 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -6484,24 +6484,24 @@ msgstr "" "çalıştırabilirsiniz. Lütfen bunu yapmak için izinlerinizin olduğundan emin " "olun." -#: libraries/messages.inc.php:1162 libraries/mysql_charsets.lib.php:219 +#: libraries/messages.inc.php:1158 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:362 msgid "Traditional Chinese" msgstr "Geleneksel Çince" -#: libraries/messages.inc.php:1163 libraries/mysql_charsets.lib.php:292 +#: libraries/messages.inc.php:1159 libraries/mysql_charsets.lib.php:292 msgid "Traditional Spanish" msgstr "Geleneksel İspanyolca" -#: libraries/messages.inc.php:1164 server_status.php:388 +#: libraries/messages.inc.php:1160 server_status.php:388 msgid "Traffic" msgstr "Trafik" -#: libraries/messages.inc.php:1165 server_status.php:261 +#: libraries/messages.inc.php:1161 server_status.php:261 msgid "Transaction coordinator" msgstr "İşlem koordinatörü" -#: libraries/messages.inc.php:1166 +#: libraries/messages.inc.php:1162 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 " @@ -6514,7 +6514,7 @@ msgstr "" "kullanırsanız birinci seçeneği boş karakter dizgisi olarak ayarlamanız " "gerekir." -#: libraries/messages.inc.php:1167 +#: libraries/messages.inc.php:1163 msgid "" "Displays hexadecimal representation of data. Optional first parameter " "specifies how often space will be added (defaults to 2 nibbles)." @@ -6522,7 +6522,7 @@ msgstr "" "Verinin onaltılık gösterimini görüntüler. İsteğe bağlı ilk parametre, ne " "sıklıkta boşluk ekleneceğini belirler (varsayılanı 2 yarım bayttır)." -#: libraries/messages.inc.php:1168 +#: libraries/messages.inc.php:1164 msgid "" "Displays a clickable thumbnail. The options are the maximum width and height " "in pixels. The original aspect ratio is preserved." @@ -6530,15 +6530,15 @@ msgstr "" "Tıklanabilir küçük resim görüntüler. Seçenekler piksel cinsinden en fazla " "genişlik ve yüksekliktir. Orijinal en-boy oranı korunur." -#: libraries/messages.inc.php:1169 +#: libraries/messages.inc.php:1165 msgid "Displays a link to download this image." msgstr "Bu resmi indirme için bağlantı görüntüler." -#: libraries/messages.inc.php:1170 +#: libraries/messages.inc.php:1166 msgid "See image/jpeg: inline" msgstr "Resme/jpeg'e bakın: satıriçi" -#: libraries/messages.inc.php:1171 +#: libraries/messages.inc.php:1167 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 " @@ -6558,7 +6558,7 @@ msgstr "" "\"local\" için PHP'nin strftime() işlevine belgelerden bakın ve \"utc\" ise " "gmdate() işlevi kullanılarak olur." -#: libraries/messages.inc.php:1172 +#: libraries/messages.inc.php:1168 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 " @@ -6582,7 +6582,7 @@ msgstr "" "ayarlanırsa, sözcük kaydırma korunacak ve tüm çıktı tek bir satırda " "görünecektir (Varsayılan 1)." -#: libraries/messages.inc.php:1173 +#: libraries/messages.inc.php:1169 msgid "" "Displays the contents of the field as-is, without running it through " "htmlspecialchars(). That is, the field is assumed to contain valid HTML." @@ -6590,7 +6590,7 @@ msgstr "" "Alanın içeriğini, htmlspecialchars() işlevini çalıştırmadan olduğu gibi " "görüntüler. Bu, geçerli HTML içerdiği var sayılan alandır." -#: libraries/messages.inc.php:1174 +#: libraries/messages.inc.php:1170 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 " @@ -6600,7 +6600,7 @@ msgstr "" "\"http://www.adresim.com/\" gibi bir URL ön ekidir. İkinci ve üçüncü " "seçenekler piksel cinsinden genişlik ve yüksekliktir." -#: libraries/messages.inc.php:1175 +#: libraries/messages.inc.php:1171 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 " @@ -6610,11 +6610,11 @@ msgstr "" "adresim.com/\" gibi bir URL ön ekidir. İkinci seçenek bağlantı için " "başlıktır." -#: libraries/messages.inc.php:1176 +#: libraries/messages.inc.php:1172 msgid "Formats text as SQL query with syntax highlighting." msgstr "Sözdizimi vurgulamalı SQL sorgusu gibi metni biçimlendirir." -#: libraries/messages.inc.php:1177 +#: libraries/messages.inc.php:1173 msgid "" "Displays a part of a string. The first option is the number of characters to " "skip from the beginning of the string (Default 0). The second option is the " @@ -6628,71 +6628,71 @@ msgstr "" "Üçüncü seçenek kısaltma meydana geldiğinde eklemek ve/veya başa eklemek için " "dizgidir (Varsayılan: \"...\")." -#: libraries/messages.inc.php:1179 server_binlog.php:183 server_binlog.php:186 +#: libraries/messages.inc.php:1175 server_binlog.php:183 server_binlog.php:186 #: server_processlist.php:49 server_processlist.php:51 msgid "Truncate Shown Queries" msgstr "Gösterilen Sorguları Kısalt" -#: libraries/messages.inc.php:1180 libraries/mysql_charsets.lib.php:301 +#: libraries/messages.inc.php:1176 libraries/mysql_charsets.lib.php:301 #: libraries/mysql_charsets.lib.php:389 msgid "Turkish" msgstr "Türkçe" -#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:304 +#: libraries/messages.inc.php:1179 libraries/mysql_charsets.lib.php:304 #: libraries/mysql_charsets.lib.php:386 msgid "Ukrainian" msgstr "Ukraynaca" -#: libraries/messages.inc.php:1185 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:1181 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 msgid "Unicode" msgstr "Unicode" -#: libraries/messages.inc.php:1187 libraries/mysql_charsets.lib.php:398 +#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:398 #: libraries/mysql_charsets.lib.php:405 msgid "unknown" msgstr "bilinmeyen" -#: libraries/messages.inc.php:1190 server_privileges.php:1152 +#: libraries/messages.inc.php:1186 server_privileges.php:1152 #, php-format msgid "You have updated the privileges for %s." msgstr "%s için yetkileri güncellediniz." -#: libraries/messages.inc.php:1191 user_password.php:112 +#: libraries/messages.inc.php:1187 user_password.php:112 msgid "The profile has been updated." msgstr "Profil güncellendi." -#: libraries/messages.inc.php:1193 libraries/relation.lib.php:138 +#: libraries/messages.inc.php:1189 libraries/relation.lib.php:138 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "Sütun_Yorumları tablonuzun nasıl güncelleneceğini öğrenmek için lütfen " "belgelere bakın." -#: libraries/messages.inc.php:1194 +#: libraries/messages.inc.php:1190 #, php-format msgid "You should upgrade to %s %s or later." msgstr "%s %s veya sonrasına yükseltmelisiniz." -#: libraries/messages.inc.php:1204 tbl_printview.php:314 tbl_structure.php:661 +#: libraries/messages.inc.php:1200 tbl_printview.php:314 tbl_structure.php:661 msgid "Usage" msgstr "Kullanım" -#: libraries/messages.inc.php:1205 +#: libraries/messages.inc.php:1201 msgid "Enclose table and field names with backquotes" msgstr "Tablo ve alan adlarını ters tırnak ile kapsa" -#: libraries/messages.inc.php:1206 libraries/replication_gui.lib.php:314 +#: libraries/messages.inc.php:1202 libraries/replication_gui.lib.php:314 #: server_privileges.php:740 msgid "Use Host Table" msgstr "Anamakine Tablosu kullan" -#: libraries/messages.inc.php:1207 server_privileges.php:848 +#: libraries/messages.inc.php:1203 server_privileges.php:848 #, php-format msgid "The user %s already exists!" msgstr "%s kullanıcısı zaten var!" -#: libraries/messages.inc.php:1209 libraries/replication_gui.lib.php:55 +#: libraries/messages.inc.php:1205 libraries/replication_gui.lib.php:55 #: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245 #: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255 #: server_privileges.php:672 server_privileges.php:675 @@ -6700,37 +6700,37 @@ msgstr "%s kullanıcısı zaten var!" msgid "User name" msgstr "Kullanıcı Adı" -#: libraries/messages.inc.php:1210 server_privileges.php:1645 +#: libraries/messages.inc.php:1206 server_privileges.php:1645 msgid "The selected user was not found in the privilege table." msgstr "Seçili kullanıcı yetki tablosunda bulunamadı." -#: libraries/messages.inc.php:1211 server_privileges.php:1365 +#: libraries/messages.inc.php:1207 server_privileges.php:1365 msgid "User overview" msgstr "Kullanıcı gözden geçirme" -#: libraries/messages.inc.php:1212 server_privileges.php:1261 +#: libraries/messages.inc.php:1208 server_privileges.php:1261 msgid "The selected users have been deleted successfully." msgstr "Seçili kullanıcılar başarılı olarak silindi." -#: libraries/messages.inc.php:1213 server_privileges.php:2026 +#: libraries/messages.inc.php:1209 server_privileges.php:2026 #, php-format msgid "Users having access to "%s"" msgstr ""%s" veritabanına erişimi olan kullanıcılar" -#: libraries/messages.inc.php:1214 main.php:189 server_privileges.php:1350 +#: libraries/messages.inc.php:1210 main.php:189 server_privileges.php:1350 #: server_privileges.php:1497 server_privileges.php:1611 #: server_privileges.php:2029 server_processlist.php:54 msgid "User" msgstr "Kullanıcı" -#: libraries/messages.inc.php:1215 tbl_change.php:1171 +#: libraries/messages.inc.php:1211 tbl_change.php:1171 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Değerden değere geçmek için TAB tuşunu veya herhangi bir yere gitmek için " "CTRL+OK TUŞLARI'nı kullanın." -#: libraries/messages.inc.php:1217 libraries/replication_gui.lib.php:251 +#: libraries/messages.inc.php:1213 libraries/replication_gui.lib.php:251 #: libraries/replication_gui.lib.php:319 libraries/replication_gui.lib.php:342 #: server_privileges.php:678 server_privileges.php:745 #: server_privileges.php:769 server_privileges.php:1889 @@ -6738,7 +6738,7 @@ msgstr "" msgid "Use text field" msgstr "Metin alanını kullan" -#: libraries/messages.inc.php:1221 libraries/sqlvalidator.lib.php:68 +#: libraries/messages.inc.php:1217 libraries/sqlvalidator.lib.php:68 #, php-format msgid "" "The SQL validator could not be initialized. Please check if you have " @@ -6747,84 +6747,84 @@ msgstr "" "SQL onaylayıcısı başlatılamadı. %sBelgelerde%s anlatıldığı gibi lütfen " "gerekli php uzantılarının kurulu olduğunu kontrol edin." -#: libraries/messages.inc.php:1222 libraries/replication_gui.lib.php:111 +#: libraries/messages.inc.php:1218 libraries/replication_gui.lib.php:111 #: server_status.php:627 tbl_change.php:324 tbl_printview.php:370 #: tbl_select.php:139 tbl_structure.php:730 msgid "Value" msgstr "Değer" -#: libraries/messages.inc.php:1223 libraries/replication_gui.lib.php:110 +#: libraries/messages.inc.php:1219 libraries/replication_gui.lib.php:110 #: libraries/sql_query_form.lib.php:445 server_status.php:626 #: server_variables.php:52 msgid "Variable" msgstr "Değişken" -#: libraries/messages.inc.php:1225 server_export.php:21 +#: libraries/messages.inc.php:1221 server_export.php:21 msgid "View dump (schema) of databases" msgstr "Veritabanlarının dökümünü (şemasını) göster" -#: libraries/messages.inc.php:1227 tbl_export.php:23 +#: libraries/messages.inc.php:1223 tbl_export.php:23 msgid "View dump (schema) of table" msgstr "Tablonun dökümünü (şemasını) göster" -#: libraries/messages.inc.php:1231 view_create.php:142 +#: libraries/messages.inc.php:1227 view_create.php:142 msgid "VIEW name" msgstr "GÖRÜNÜM adı" -#: libraries/messages.inc.php:1237 main.php:205 +#: libraries/messages.inc.php:1233 main.php:205 msgid "Web server" msgstr "Web sunucusu" -#: libraries/messages.inc.php:1239 libraries/mysql_charsets.lib.php:277 +#: libraries/messages.inc.php:1235 libraries/mysql_charsets.lib.php:277 #: libraries/mysql_charsets.lib.php:325 msgid "West European" msgstr "Batı Avrupa" -#: libraries/messages.inc.php:1240 main.php:230 +#: libraries/messages.inc.php:1236 main.php:230 msgid "Wiki" msgstr "Viki" -#: libraries/messages.inc.php:1241 server_privileges.php:2138 +#: libraries/messages.inc.php:1237 server_privileges.php:2138 msgid "wildcard" msgstr "joker" -#: libraries/messages.inc.php:1248 +#: libraries/messages.inc.php:1244 msgid "Export contents" msgstr "İçerikleri dışarı aktar" -#: libraries/messages.inc.php:1249 +#: libraries/messages.inc.php:1245 msgid "Export functions" msgstr "İşlevleri dışarı aktar" -#: libraries/messages.inc.php:1250 +#: libraries/messages.inc.php:1246 msgid "Export procedures" msgstr "İşlemleri dışarı aktar" -#: libraries/messages.inc.php:1251 +#: libraries/messages.inc.php:1247 msgid "Export Structure Schemas (recommended)" msgstr "Yapı Şemalarını dışarı aktar (önerilir)" -#: libraries/messages.inc.php:1252 +#: libraries/messages.inc.php:1248 msgid "Export tables" msgstr "Tabloları dışarı aktar" -#: libraries/messages.inc.php:1253 +#: libraries/messages.inc.php:1249 msgid "Export triggers" msgstr "Tetikleyicileri dışarı aktar" -#: libraries/messages.inc.php:1254 +#: libraries/messages.inc.php:1250 msgid "Export views" msgstr "Görünümleri dışarı aktar" -#: libraries/messages.inc.php:1255 +#: libraries/messages.inc.php:1251 msgid "XML" msgstr "XML" -#: libraries/messages.inc.php:1259 server_privileges.php:592 +#: libraries/messages.inc.php:1255 server_privileges.php:592 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Not: Bu seçeneklerin 0 (sıfır)'a ayarlanması sınırı kaldırır." -#: libraries/messages.inc.php:1260 +#: libraries/messages.inc.php:1256 msgid "\"zipped\"" msgstr "\"zip olarak\"" diff --git a/po/tt.po b/po/tt.po index 5df4271d6..6c1a185e4 100644 --- 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-05-13 11:25+0200\n" +"POT-Creation-Date: 2010-05-13 11:30+0200\n" "PO-Revision-Date: 2010-03-30 23:14+0200\n" "Last-Translator: Michal \n" "Language-Team: tatarish \n" @@ -15,19 +15,19 @@ msgstr "" "X-Generator: Pootle 2.0.1\n" #: browse_foreigners.php:38 browse_foreigners.php:59 -#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:870 +#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:866 #: server_privileges.php:1475 msgid "Show all" msgstr "Barısın kürsät" #: browse_foreigners.php:82 db_operations.php:648 -#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:394 -#: libraries/export/pdf.php:147 libraries/messages.inc.php:597 +#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394 +#: libraries/export/pdf.php:147 libraries/messages.inc.php:593 #: pdf_schema.php:283 pdf_schema.php:1123 pdf_schema.php:1139 msgid "Page number:" msgstr "Bitneñ sanı:" -#: browse_foreigners.php:132 libraries/messages.inc.php:1242 +#: browse_foreigners.php:132 libraries/messages.inc.php:1238 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -40,7 +40,7 @@ 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/db_links.inc.php:75 -#: libraries/messages.inc.php:841 libraries/tbl_links.inc.php:63 +#: libraries/messages.inc.php:837 libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Ezläw" @@ -49,12 +49,12 @@ msgstr "Ezläw" #: db_search.php:362 db_structure.php:567 js/messages.php:48 #: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2267 +#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 #: 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 #: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614 -#: libraries/messages.inc.php:361 libraries/replication_gui.lib.php:73 +#: libraries/messages.inc.php:357 libraries/replication_gui.lib.php:73 #: libraries/replication_gui.lib.php:365 libraries/select_server.lib.php:104 #: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477 #: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782 @@ -74,33 +74,33 @@ msgid "Go" msgstr "Äydä" #: browse_foreigners.php:168 browse_foreigners.php:172 -#: libraries/Index.class.php:442 libraries/messages.inc.php:459 +#: libraries/Index.class.php:442 libraries/messages.inc.php:455 #: tbl_tracking.php:320 msgid "Keyname" msgstr "Tezeş adı" #: browse_foreigners.php:169 browse_foreigners.php:171 -#: libraries/messages.inc.php:252 server_collations.php:55 +#: libraries/messages.inc.php:248 server_collations.php:55 #: server_collations.php:67 server_engines.php:59 server_status.php:628 msgid "Description" msgstr "Açıqlama" #: browse_foreigners.php:247 browse_foreigners.php:256 #: browse_foreigners.php:268 browse_foreigners.php:276 -#: libraries/messages.inc.php:1218 +#: libraries/messages.inc.php:1214 msgid "Use this value" msgstr "Bu bäyä belän" -#: db_create.php:46 libraries/messages.inc.php:215 +#: db_create.php:46 libraries/messages.inc.php:211 #, fuzzy, php-format msgid "Database %1$s has been created." msgstr "%s biremlege beterelde." -#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:232 +#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:228 msgid "Database comment: " msgstr "Biremlek açıqlaması:" -#: db_datadict.php:165 libraries/messages.inc.php:1070 +#: db_datadict.php:165 libraries/messages.inc.php:1066 #: libraries/tbl_properties.inc.php:724 pdf_schema.php:1236 #: tbl_operations.php:345 tbl_printview.php:130 msgid "Table comments" @@ -109,7 +109,7 @@ msgstr "Tüşämä açıqlaması" #: db_datadict.php:174 db_qbe.php:174 libraries/Index.class.php:446 #: libraries/export/htmlword.php:244 libraries/export/latex.php:360 #: libraries/export/odt.php:294 libraries/export/texytext.php:233 -#: libraries/messages.inc.php:317 libraries/tbl_properties.inc.php:99 +#: libraries/messages.inc.php:313 libraries/tbl_properties.inc.php:99 #: libraries/tbl_properties.inc.php:275 pdf_schema.php:1262 #: pdf_schema.php:1283 tbl_change.php:308 tbl_indexes.php:189 #: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135 @@ -121,7 +121,7 @@ msgstr "Alan" #: libraries/db_events.inc.php:31 libraries/db_routines.inc.php:42 #: 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/messages.inc.php:1181 +#: libraries/export/texytext.php:234 libraries/messages.inc.php:1177 #: libraries/tbl_properties.inc.php:100 pdf_schema.php:1263 #: pdf_schema.php:1284 server_privileges.php:2031 tbl_change.php:287 #: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313 @@ -133,7 +133,7 @@ msgstr "Töre" #: db_datadict.php:177 libraries/Index.class.php:449 #: libraries/export/htmlword.php:246 libraries/export/latex.php:360 #: libraries/export/odt.php:300 libraries/export/texytext.php:235 -#: libraries/messages.inc.php:576 libraries/tbl_properties.inc.php:109 +#: libraries/messages.inc.php:572 libraries/tbl_properties.inc.php:109 #: pdf_schema.php:1265 pdf_schema.php:1286 tbl_change.php:323 #: tbl_printview.php:145 tbl_structure.php:181 tbl_tracking.php:276 #: tbl_tracking.php:327 @@ -142,7 +142,7 @@ msgstr "Buş" #: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 -#: libraries/export/texytext.php:236 libraries/messages.inc.php:238 +#: libraries/export/texytext.php:236 libraries/messages.inc.php:234 #: libraries/tbl_properties.inc.php:106 pdf_schema.php:1266 #: pdf_schema.php:1287 tbl_printview.php:146 tbl_structure.php:182 #: tbl_tracking.php:277 @@ -151,14 +151,14 @@ msgstr "Töpcay" #: db_datadict.php:182 libraries/export/htmlword.php:249 #: libraries/export/latex.php:362 libraries/export/odt.php:307 -#: libraries/export/texytext.php:238 libraries/messages.inc.php:483 +#: libraries/export/texytext.php:238 libraries/messages.inc.php:479 #: pdf_schema.php:1268 pdf_schema.php:1289 tbl_printview.php:150 msgid "Links to" msgstr "Bonı belän bäyläneş:" #: db_datadict.php:184 db_printview.php:112 libraries/export/htmlword.php:252 #: libraries/export/latex.php:365 libraries/export/odt.php:312 -#: libraries/export/texytext.php:241 libraries/messages.inc.php:163 +#: libraries/export/texytext.php:241 libraries/messages.inc.php:159 #: libraries/tbl_properties.inc.php:130 pdf_schema.php:1279 #: pdf_schema.php:1290 tbl_printview.php:152 msgid "Comments" @@ -167,7 +167,7 @@ msgstr "Açıqlama" #: db_datadict.php:267 libraries/Index.class.php:359 #: 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/messages.inc.php:559 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:555 #: libraries/mult_submits.inc.php:263 pdf_schema.php:1344 #: server_privileges.php:1529 server_privileges.php:1540 #: server_privileges.php:1850 server_privileges.php:1855 @@ -179,7 +179,7 @@ msgstr "Yuq" #: db_datadict.php:267 libraries/Index.class.php:360 #: libraries/Index.class.php:385 libraries/export/htmlword.php:322 #: libraries/export/latex.php:430 libraries/export/odt.php:368 -#: libraries/export/texytext.php:311 libraries/messages.inc.php:1257 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:1253 #: libraries/mult_submits.inc.php:45 libraries/mult_submits.inc.php:50 #: libraries/mult_submits.inc.php:55 libraries/mult_submits.inc.php:60 #: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:101 @@ -193,108 +193,108 @@ msgstr "Yuq" msgid "Yes" msgstr "Äye" -#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:670 +#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:666 #: tbl_printview.php:498 msgid "Print" msgstr "Bastır" -#: db_export.php:29 libraries/messages.inc.php:1226 +#: db_export.php:29 libraries/messages.inc.php:1222 msgid "View dump (schema) of database" msgstr "Biremlek eçtälegen (tözeleşen) çığaru" #: db_export.php:33 db_printview.php:96 db_qbe.php:102 db_structure.php:51 -#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:568 +#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:564 #: navigation.php:346 msgid "No tables found in database." msgstr "Bu biremlektä ber genä dä tüşämä yuq." -#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:845 +#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:841 #: server_export.php:27 msgid "Select All" msgstr "Saylap Beter" -#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1188 +#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1184 #: server_export.php:29 msgid "Unselect All" msgstr "Saylanunı Töşer" -#: db_operations.php:38 libraries/messages.inc.php:213 tbl_create.php:54 +#: db_operations.php:38 libraries/messages.inc.php:209 tbl_create.php:54 msgid "The database name is empty!" msgstr "Biremlek iseme buş!" -#: db_operations.php:236 libraries/messages.inc.php:753 +#: db_operations.php:236 libraries/messages.inc.php:749 #, php-format msgid "Database %s has been renamed to %s" msgstr "\"%s\" biremlege \"%s\" itep ataldı" -#: db_operations.php:240 libraries/messages.inc.php:178 +#: db_operations.php:240 libraries/messages.inc.php:174 #, php-format msgid "Database %s has been copied to %s" msgstr "Database %s has been copied to %s" -#: db_operations.php:410 libraries/messages.inc.php:236 +#: db_operations.php:410 libraries/messages.inc.php:232 msgid "Rename database to" msgstr "Biremlekne bolay atap quy" -#: db_operations.php:415 libraries/messages.inc.php:161 +#: db_operations.php:415 libraries/messages.inc.php:157 #: server_processlist.php:57 msgid "Command" msgstr "Ämer" -#: db_operations.php:425 libraries/messages.inc.php:58 tbl_change.php:1143 +#: db_operations.php:425 libraries/messages.inc.php:54 tbl_change.php:1143 msgid "and then" msgstr ", şunnan soñ" -#: db_operations.php:451 libraries/messages.inc.php:233 +#: db_operations.php:451 libraries/messages.inc.php:229 msgid "Copy database to" msgstr "Biremlekne boña kübäyt" -#: db_operations.php:458 libraries/messages.inc.php:1043 +#: db_operations.php:458 libraries/messages.inc.php:1039 #: tbl_operations.php:526 tbl_tracking.php:388 msgid "Structure only" msgstr "Tözeleşen genä" -#: db_operations.php:459 libraries/messages.inc.php:1041 +#: db_operations.php:459 libraries/messages.inc.php:1037 #: tbl_operations.php:527 tbl_tracking.php:390 msgid "Structure and data" msgstr "Tözeleşen dä, eçtälegen dä" -#: db_operations.php:460 libraries/messages.inc.php:229 tbl_operations.php:528 +#: db_operations.php:460 libraries/messages.inc.php:225 tbl_operations.php:528 #: tbl_tracking.php:389 msgid "Data only" msgstr "Eçtälegen genä" -#: db_operations.php:468 libraries/messages.inc.php:186 +#: db_operations.php:468 libraries/messages.inc.php:182 msgid "CREATE DATABASE before copying" msgstr "Kübäytü aldınnan CREATE DATABASE östise" #: db_operations.php:471 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 -#: libraries/export/sql.php:82 libraries/messages.inc.php:30 +#: libraries/export/sql.php:82 libraries/messages.inc.php:26 #: tbl_operations.php:534 #, php-format msgid "Add %s" msgstr "%s östäw" -#: db_operations.php:475 libraries/messages.inc.php:29 tbl_operations.php:297 +#: db_operations.php:475 libraries/messages.inc.php:25 tbl_operations.php:297 #: tbl_operations.php:536 msgid "Add AUTO_INCREMENT value" msgstr "\"AUTO_INCREMENT\" bäyäsen östise" -#: db_operations.php:479 libraries/messages.inc.php:31 tbl_operations.php:543 +#: db_operations.php:479 libraries/messages.inc.php:27 tbl_operations.php:543 msgid "Add constraints" msgstr "Çikläwlär östise" -#: db_operations.php:492 libraries/messages.inc.php:1059 +#: db_operations.php:492 libraries/messages.inc.php:1055 msgid "Switch to copied database" msgstr "Kübäytelgän biremlekkä küçäse" -#: db_operations.php:533 libraries/messages.inc.php:89 +#: db_operations.php:533 libraries/messages.inc.php:85 msgid "BLOB Repository" msgstr "" #: db_operations.php:536 db_tracking.php:76 libraries/common.lib.php:1350 -#: libraries/messages.inc.php:1037 libraries/server_links.inc.php:49 +#: libraries/messages.inc.php:1033 libraries/server_links.inc.php:49 #: server_processlist.php:59 tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "Torış" @@ -306,12 +306,12 @@ msgctxt "BLOB repository" msgid "Enabled" msgstr "Açıq" -#: db_operations.php:548 libraries/messages.inc.php:93 +#: db_operations.php:548 libraries/messages.inc.php:89 #, fuzzy msgid "Disable" msgstr "Sünek" -#: db_operations.php:558 libraries/messages.inc.php:90 +#: db_operations.php:558 libraries/messages.inc.php:86 msgid "Damaged" msgstr "" @@ -328,13 +328,13 @@ msgctxt "BLOB repository" msgid "Disabled" msgstr "Sünek" -#: db_operations.php:574 libraries/messages.inc.php:96 +#: db_operations.php:574 libraries/messages.inc.php:92 #, fuzzy msgid "Enable" msgstr "Açıq" #: db_operations.php:598 libraries/Index.class.php:448 -#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:158 +#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:154 #: 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:361 @@ -343,7 +343,7 @@ msgstr "Açıq" msgid "Collation" msgstr "Tezü cayı" -#: db_operations.php:609 libraries/messages.inc.php:742 main.php:316 +#: db_operations.php:609 libraries/messages.inc.php:738 main.php:316 #: pdf_schema.php:34 #, php-format msgid "" @@ -353,58 +353,58 @@ 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:645 libraries/messages.inc.php:264 pdf_pages.php:528 +#: db_operations.php:645 libraries/messages.inc.php:260 pdf_pages.php:528 msgid "Display PDF schema" msgstr "PDF schema kürsätü" -#: db_operations.php:661 libraries/messages.inc.php:877 pdf_pages.php:529 +#: db_operations.php:661 libraries/messages.inc.php:873 pdf_pages.php:529 msgid "Show grid" msgstr "Sırlı kürsät" -#: db_operations.php:664 libraries/messages.inc.php:874 pdf_pages.php:530 +#: db_operations.php:664 libraries/messages.inc.php:870 pdf_pages.php:530 msgid "Show color" msgstr "Tösle kürsät" -#: db_operations.php:666 libraries/messages.inc.php:998 pdf_pages.php:531 +#: db_operations.php:666 libraries/messages.inc.php:994 pdf_pages.php:531 msgid "Show dimension of tables" msgstr "Tüşämä ülçämen kürsätü" -#: db_operations.php:669 libraries/messages.inc.php:52 pdf_pages.php:532 +#: db_operations.php:669 libraries/messages.inc.php:48 pdf_pages.php:532 msgid "Display all tables with the same width" msgstr "display all Tables with same width?" -#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:227 +#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:223 #: pdf_pages.php:533 msgid "Data Dictionary" msgstr "Eçtälek Süzlege" -#: db_operations.php:674 libraries/messages.inc.php:884 pdf_pages.php:534 +#: db_operations.php:674 libraries/messages.inc.php:880 pdf_pages.php:534 msgid "Only show keys" msgstr "" -#: db_operations.php:676 libraries/messages.inc.php:875 pdf_pages.php:535 +#: db_operations.php:676 libraries/messages.inc.php:871 pdf_pages.php:535 msgid "Data Dictionary Format" msgstr "Eçtälek Süzlegeneñ Tözeleşe" -#: db_operations.php:678 libraries/messages.inc.php:464 pdf_pages.php:537 +#: db_operations.php:678 libraries/messages.inc.php:460 pdf_pages.php:537 msgid "Landscape" msgstr "Yatqırıp" -#: db_operations.php:679 libraries/messages.inc.php:663 pdf_pages.php:538 +#: db_operations.php:679 libraries/messages.inc.php:659 pdf_pages.php:538 msgid "Portrait" msgstr "Batırıp" -#: db_operations.php:682 libraries/messages.inc.php:599 pdf_pages.php:541 +#: db_operations.php:682 libraries/messages.inc.php:595 pdf_pages.php:541 msgid "Paper size" msgstr "Qäğäz zuqlığı" -#: db_operations.php:706 libraries/messages.inc.php:281 +#: db_operations.php:706 libraries/messages.inc.php:277 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 libraries/messages.inc.php:1087 +#: libraries/header.inc.php:126 libraries/messages.inc.php:1083 #: pdf_pages.php:405 server_privileges.php:1626 server_privileges.php:1682 #: server_privileges.php:1946 server_synchronize.php:423 #: server_synchronize.php:866 tbl_tracking.php:592 test/theme.php:75 @@ -412,176 +412,176 @@ msgid "Table" msgstr "Tüşämä" #: db_printview.php:105 libraries/db_structure.lib.php:56 -#: libraries/messages.inc.php:735 +#: libraries/messages.inc.php:731 msgid "Records" msgstr "Yazma" #: db_printview.php:109 libraries/db_structure.lib.php:67 -#: libraries/messages.inc.php:1003 tbl_indexes.php:190 +#: libraries/messages.inc.php:999 tbl_indexes.php:190 msgid "Size" msgstr "Küläme" #: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 -#: libraries/export/sql.php:899 libraries/messages.inc.php:436 +#: libraries/export/sql.php:899 libraries/messages.inc.php:432 msgid "in use" msgstr "totıla" #: db_printview.php:187 libraries/db_info.inc.php:88 -#: libraries/export/sql.php:514 libraries/messages.inc.php:1032 +#: libraries/export/sql.php:514 libraries/messages.inc.php:1028 #: pdf_schema.php:1241 tbl_printview.php:434 tbl_structure.php:810 msgid "Creation" msgstr "Yasalışı" #: db_printview.php:196 libraries/db_info.inc.php:93 -#: libraries/export/sql.php:519 libraries/messages.inc.php:1036 +#: libraries/export/sql.php:519 libraries/messages.inc.php:1032 #: pdf_schema.php:1246 tbl_printview.php:444 tbl_structure.php:818 msgid "Last update" msgstr "Soñğı yañartılu" #: db_printview.php:205 libraries/db_info.inc.php:98 -#: libraries/export/sql.php:524 libraries/messages.inc.php:1031 +#: libraries/export/sql.php:524 libraries/messages.inc.php:1027 #: pdf_schema.php:1251 tbl_printview.php:454 tbl_structure.php:826 msgid "Last check" msgstr "Soñğı tikşerü" -#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1085 +#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1081 #, php-format msgid "%s table(s)" msgstr "%s tüşämä" #: db_qbe.php:29 libraries/display_tbl.lib.php:1981 -#: libraries/messages.inc.php:1051 libraries/sql_query_form.lib.php:140 +#: libraries/messages.inc.php:1047 libraries/sql_query_form.lib.php:140 #: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131 #: view_operations.php:62 msgid "Your SQL query has been executed successfully" msgstr "SQL-sorawıñ uñışlı eşkärtelde" -#: db_qbe.php:42 libraries/messages.inc.php:371 +#: db_qbe.php:42 libraries/messages.inc.php:367 msgid "You have to choose at least one column to display" msgstr "You have to choose at least one Column to display" #: db_qbe.php:200 libraries/db_structure.lib.php:104 -#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1014 +#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1010 msgid "Sort" msgstr "Tezü" #: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111 #: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828 -#: libraries/messages.inc.php:69 server_databases.php:170 +#: libraries/messages.inc.php:65 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314 msgid "Ascending" msgstr "Artıp" #: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119 #: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825 -#: libraries/messages.inc.php:251 server_databases.php:170 +#: libraries/messages.inc.php:247 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315 msgid "Descending" msgstr "Kimep" #: db_qbe.php:264 db_tracking.php:78 libraries/display_tbl.lib.php:308 -#: libraries/messages.inc.php:888 tbl_change.php:277 tbl_tracking.php:597 +#: libraries/messages.inc.php:884 tbl_change.php:277 tbl_tracking.php:597 msgid "Show" msgstr "Kürsät" -#: db_qbe.php:300 libraries/messages.inc.php:202 +#: db_qbe.php:300 libraries/messages.inc.php:198 msgid "Criteria" msgstr "Şart" #: db_qbe.php:353 db_qbe.php:435 db_qbe.php:527 db_qbe.php:558 -#: libraries/messages.inc.php:718 +#: libraries/messages.inc.php:714 msgid "Ins" msgstr "Tıq" #: db_qbe.php:357 db_qbe.php:439 db_qbe.php:524 db_qbe.php:555 -#: libraries/messages.inc.php:56 +#: libraries/messages.inc.php:52 msgid "And" msgstr "Wä" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:529 db_qbe.php:560 -#: libraries/messages.inc.php:717 +#: libraries/messages.inc.php:713 msgid "Del" 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/messages.inc.php:592 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:588 #: libraries/tbl_properties.inc.php:779 server_privileges.php:258 #: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288 msgid "Or" msgstr "Yä" -#: db_qbe.php:507 libraries/messages.inc.php:516 +#: db_qbe.php:507 libraries/messages.inc.php:512 msgid "Modify" msgstr "Üzgärt" -#: db_qbe.php:584 libraries/messages.inc.php:33 +#: db_qbe.php:584 libraries/messages.inc.php:29 msgid "Add/Delete Criteria Row" msgstr "Add/Delete Criteria Row" -#: db_qbe.php:596 libraries/messages.inc.php:32 +#: db_qbe.php:596 libraries/messages.inc.php:28 msgid "Add/Delete Field Columns" msgstr "Add/Delete Field Columns" -#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1192 +#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1188 msgid "Update Query" msgstr "Sorawnı Yañart" -#: db_qbe.php:617 libraries/messages.inc.php:1216 +#: db_qbe.php:617 libraries/messages.inc.php:1212 msgid "Use Tables" msgstr "Tüşämä qullanıp" -#: db_qbe.php:640 libraries/messages.inc.php:723 +#: db_qbe.php:640 libraries/messages.inc.php:719 #, php-format msgid "SQL query on database %s:" msgstr "%s biremlegenä SQL-soraw:" -#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:823 +#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:819 msgid "Submit Query" msgstr "Sorawnı Yulla" #: db_search.php:68 libraries/auth/config.auth.lib.php:84 #: libraries/auth/config.auth.lib.php:103 #: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52 -#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:26 +#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:22 msgid "Access denied" msgstr "İreşep Bulmadı" -#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:836 +#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:832 msgid "at least one of the words" msgstr "berärse bulsa" -#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:837 +#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:833 msgid "all words" msgstr "barısı da bulsa" -#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:838 +#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:834 msgid "the exact phrase" msgstr "tulı tezmä, tögäl kileş" -#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:839 +#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:835 msgid "as regular expression" msgstr "regexp kileş" -#: db_search.php:242 libraries/messages.inc.php:840 +#: db_search.php:242 libraries/messages.inc.php:836 #, php-format msgid "Search results for \"%s\" %s:" msgstr "\"%s\" ezläw näticäse %s:" -#: db_search.php:260 libraries/messages.inc.php:579 +#: db_search.php:260 libraries/messages.inc.php:575 #, php-format msgid "%s match(es) inside table %s" 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/messages.inc.php:108 +#: db_structure.php:105 libraries/messages.inc.php:104 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468 msgid "Browse" msgstr "Küzätü" #: db_search.php:272 libraries/display_tbl.lib.php:1165 -#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:243 +#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:239 #: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406 #: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377 #: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216 @@ -589,45 +589,45 @@ msgstr "Küzätü" msgid "Delete" msgstr "Sal" -#: db_search.php:285 libraries/messages.inc.php:580 +#: db_search.php:285 libraries/messages.inc.php:576 #, php-format msgid "Total: %s match(es)" msgstr "Tulayım: %s kileşü" -#: db_search.php:299 libraries/messages.inc.php:832 +#: db_search.php:299 libraries/messages.inc.php:828 msgid "Search in database" msgstr "Biremlektä ezläw: " -#: db_search.php:302 libraries/messages.inc.php:835 +#: db_search.php:302 libraries/messages.inc.php:831 msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgstr "Tabası süz/bäyä tezmäse (almaşbilgese: \"%\"):" -#: db_search.php:307 libraries/messages.inc.php:842 +#: db_search.php:307 libraries/messages.inc.php:838 msgid "Find:" msgstr "Ezläw:" -#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1017 +#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1013 msgid "Words are separated by a space character (\" \")." msgstr "Süzlärne buşlıq bilgese belän ayırası (\" \")." -#: db_search.php:325 libraries/messages.inc.php:834 +#: db_search.php:325 libraries/messages.inc.php:830 msgid "Inside table(s):" msgstr "Kiläse tüşämä eçendä:" -#: db_search.php:355 libraries/messages.inc.php:833 +#: db_search.php:355 libraries/messages.inc.php:829 msgid "Inside field:" 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/messages.inc.php:431 libraries/sql_query_form.lib.php:334 +#: libraries/messages.inc.php:427 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/db_links.inc.php:63 libraries/export/latex.php:337 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:1048 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:1044 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 #: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269 msgid "Structure" @@ -636,8 +636,8 @@ 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:1642 -#: libraries/db_links.inc.php:100 libraries/messages.inc.php:272 +#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/db_links.inc.php:100 libraries/messages.inc.php:268 #: 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 @@ -647,40 +647,40 @@ 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:1641 -#: libraries/messages.inc.php:284 libraries/mult_submits.inc.php:39 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: libraries/messages.inc.php:280 libraries/mult_submits.inc.php:39 #: libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Buşat" -#: db_structure.php:316 libraries/messages.inc.php:1075 +#: db_structure.php:316 libraries/messages.inc.php:1071 #: libraries/tbl_links.inc.php:100 #, php-format msgid "Table %s has been emptied" msgstr "\"%s\" atlı tüşämä buşatıldı" -#: db_structure.php:326 libraries/messages.inc.php:1229 +#: db_structure.php:326 libraries/messages.inc.php:1225 #: 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/messages.inc.php:1074 +#: db_structure.php:326 libraries/messages.inc.php:1070 #: libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "\"%s\" atlı tüşämä beterelde" -#: db_structure.php:333 libraries/messages.inc.php:1128 +#: db_structure.php:333 libraries/messages.inc.php:1124 msgid "Tracking is active." msgstr "" -#: db_structure.php:335 libraries/messages.inc.php:1129 +#: db_structure.php:335 libraries/messages.inc.php:1125 msgid "Tracking is not active." msgstr "" #: db_structure.php:420 libraries/display_tbl.lib.php:1944 -#: libraries/messages.inc.php:1228 +#: libraries/messages.inc.php:1224 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -688,84 +688,84 @@ msgid "" msgstr "" #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 -#: libraries/messages.inc.php:1233 libraries/tbl_info.inc.php:66 +#: libraries/messages.inc.php:1229 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/messages.inc.php:773 libraries/server_links.inc.php:70 +#: libraries/messages.inc.php:769 libraries/server_links.inc.php:70 #: server_replication.php:33 server_replication.php:164 server_status.php:258 #, fuzzy msgid "Replication" msgstr "Bäyläneşlär" -#: db_structure.php:489 libraries/messages.inc.php:1053 +#: db_structure.php:489 libraries/messages.inc.php:1049 msgid "Sum" msgstr "Sum" #: db_structure.php:496 libraries/StorageEngine.class.php:356 -#: libraries/messages.inc.php:239 +#: libraries/messages.inc.php:235 #, 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 #: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086 -#: libraries/messages.inc.php:1243 libraries/mult_submits.inc.php:16 +#: libraries/messages.inc.php:1239 libraries/mult_submits.inc.php:16 #: server_databases.php:346 server_databases.php:351 #: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465 msgid "With selected:" msgstr "Saylanğannı:" #: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: libraries/messages.inc.php:148 server_databases.php:348 +#: libraries/messages.inc.php:144 server_databases.php:348 #: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459 msgid "Check All" msgstr "Saylap Beter" #: db_structure.php:531 libraries/display_tbl.lib.php:2077 -#: libraries/messages.inc.php:1184 libraries/replication_gui.lib.php:33 +#: libraries/messages.inc.php:1180 libraries/replication_gui.lib.php:33 #: server_databases.php:350 server_privileges.php:533 #: server_privileges.php:1564 tbl_structure.php:463 msgid "Uncheck All" msgstr "Saylanunı Töşer" -#: db_structure.php:536 libraries/messages.inc.php:150 +#: db_structure.php:536 libraries/messages.inc.php:146 msgid "Check tables having overhead" msgstr "Check overheaded" #: db_structure.php:547 db_structure.php:548 db_structure.php:599 -#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:672 +#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:668 #: libraries/mult_submits.inc.php:28 tbl_structure.php:493 #: tbl_structure.php:495 msgid "Print view" msgstr "Bastıru küreneşe" -#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:153 +#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:149 #: libraries/mult_submits.inc.php:42 tbl_operations.php:579 msgid "Check table" msgstr "Tüşämä tikşerü" -#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:590 +#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:586 #: libraries/mult_submits.inc.php:47 tbl_operations.php:619 #: tbl_structure.php:710 tbl_structure.php:712 msgid "Optimize table" msgstr "Optimize table" -#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:758 +#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:754 #: libraries/mult_submits.inc.php:52 tbl_operations.php:609 msgid "Repair table" msgstr "Tüşämä tözätü" -#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:55 +#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:51 #: libraries/mult_submits.inc.php:57 tbl_operations.php:599 msgid "Analyze table" msgstr "Tüşämä centekläw" #: db_structure.php:557 db_structure.php:558 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/messages.inc.php:310 +#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:306 #: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84 #: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109 #: server_privileges.php:1341 setup/frames/menu.inc.php:22 @@ -773,7 +773,7 @@ msgstr "Tüşämä centekläw" msgid "Export" msgstr "Export" -#: db_tracking.php:66 libraries/messages.inc.php:1151 +#: db_tracking.php:66 libraries/messages.inc.php:1147 #, fuzzy msgid "Tracked tables" msgstr "Tüşämä tikşerü" @@ -782,7 +782,7 @@ msgstr "Tüşämä tikşerü" #: 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/header_printview.inc.php:58 libraries/messages.inc.php:212 +#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:208 #: navigation.php:233 server_databases.php:169 server_privileges.php:1621 #: server_privileges.php:1682 server_privileges.php:1940 #: server_processlist.php:56 server_synchronize.php:1179 @@ -790,83 +790,83 @@ msgstr "Tüşämä tikşerü" msgid "Database" msgstr "Biremlek" -#: db_tracking.php:73 libraries/messages.inc.php:1146 +#: db_tracking.php:73 libraries/messages.inc.php:1142 #, fuzzy msgid "Last version" msgstr "Server söreme" -#: db_tracking.php:74 libraries/messages.inc.php:1145 tbl_tracking.php:594 +#: db_tracking.php:74 libraries/messages.inc.php:1141 tbl_tracking.php:594 #, fuzzy msgid "Created" msgstr "Yarat" -#: db_tracking.php:75 libraries/messages.inc.php:1147 tbl_tracking.php:595 +#: db_tracking.php:75 libraries/messages.inc.php:1143 tbl_tracking.php:595 msgid "Updated" msgstr "" #: db_tracking.php:77 libraries/Index.class.php:440 -#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:27 +#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:23 #: server_databases.php:203 server_privileges.php:1503 #: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187 msgid "Action" msgstr "Eş" -#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:247 +#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:243 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:106 libraries/messages.inc.php:1142 tbl_tracking.php:548 +#: db_tracking.php:106 libraries/messages.inc.php:1138 tbl_tracking.php:548 #: tbl_tracking.php:606 tbl_tracking.php:613 msgid "active" msgstr "" -#: db_tracking.php:108 libraries/messages.inc.php:1143 tbl_tracking.php:550 +#: db_tracking.php:108 libraries/messages.inc.php:1139 tbl_tracking.php:550 #: tbl_tracking.php:608 tbl_tracking.php:610 msgid "not active" msgstr "" -#: db_tracking.php:121 libraries/messages.inc.php:1160 +#: db_tracking.php:121 libraries/messages.inc.php:1156 #, fuzzy msgid "Versions" msgstr "Farsíça" -#: db_tracking.php:122 libraries/messages.inc.php:1132 tbl_tracking.php:379 +#: db_tracking.php:122 libraries/messages.inc.php:1128 tbl_tracking.php:379 #: tbl_tracking.php:624 msgid "Tracking report" msgstr "" -#: db_tracking.php:123 libraries/messages.inc.php:1144 tbl_tracking.php:251 +#: db_tracking.php:123 libraries/messages.inc.php:1140 tbl_tracking.php:251 #: tbl_tracking.php:624 #, fuzzy msgid "Structure snapshot" msgstr "Tözeleşen genä" -#: db_tracking.php:152 libraries/messages.inc.php:1154 +#: db_tracking.php:152 libraries/messages.inc.php:1150 #, fuzzy msgid "Untracked tables" msgstr "Tüşämä tikşerü" -#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1153 +#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1149 #: tbl_structure.php:529 tbl_structure.php:531 #, fuzzy msgid "Track table" msgstr "Tüşämä tikşerü" -#: db_tracking.php:200 libraries/messages.inc.php:1121 +#: db_tracking.php:200 libraries/messages.inc.php:1117 #, fuzzy msgid "Database Log" msgstr "Biremlek" -#: export.php:62 libraries/messages.inc.php:312 +#: export.php:62 libraries/messages.inc.php:308 msgid "Selected export type has to be saved in file!" msgstr "" -#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:567 +#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:563 #, php-format msgid "Insufficient space to save the file %s." msgstr "\"%s\" biremen saqlaw öçen buş ara citmi." -#: export.php:294 libraries/messages.inc.php:324 +#: export.php:294 libraries/messages.inc.php:320 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -874,17 +874,17 @@ msgstr "" "Serverdä %s digän birem bar inde, adın almaştırası, yä inde östän yazu " "tamğasın açası qala." -#: export.php:298 export.php:302 libraries/messages.inc.php:562 +#: export.php:298 export.php:302 libraries/messages.inc.php:558 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "The web server does not have permission to save the file %s." -#: export.php:629 libraries/messages.inc.php:276 +#: export.php:629 libraries/messages.inc.php:272 #, php-format msgid "Dump has been saved to file %s." msgstr "Eçtälege \"%s\" biremenä saqlandı." -#: import.php:60 libraries/messages.inc.php:1202 +#: import.php:60 libraries/messages.inc.php:1198 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation%" @@ -892,21 +892,21 @@ msgid "" msgstr "" #: import.php:279 import.php:332 libraries/File.class.php:849 -#: libraries/File.class.php:961 libraries/messages.inc.php:325 +#: libraries/File.class.php:961 libraries/messages.inc.php:321 msgid "File could not be read" msgstr "Birem uqıp bulmadı" #: import.php:287 import.php:296 import.php:315 import.php:324 #: libraries/File.class.php:1031 libraries/File.class.php:1039 #: libraries/File.class.php:1055 libraries/File.class.php:1063 -#: libraries/messages.inc.php:1189 +#: libraries/messages.inc.php:1185 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." msgstr "" -#: import.php:337 libraries/messages.inc.php:547 +#: import.php:337 libraries/messages.inc.php:543 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -914,39 +914,39 @@ msgid "" msgstr "" #: import.php:372 libraries/display_import.lib.php:24 -#: libraries/messages.inc.php:125 +#: libraries/messages.inc.php:121 msgid "Could not load import plugins, please check your installation!" msgstr "Totaşmalar yökläp bulmadı, quyılışın tikşerep alası!" -#: import.php:397 libraries/messages.inc.php:102 +#: import.php:397 libraries/messages.inc.php:98 msgid "The bookmark has been deleted." msgstr "Tamğa beterelde." -#: import.php:401 libraries/messages.inc.php:879 +#: import.php:401 libraries/messages.inc.php:875 msgid "Showing bookmark" msgstr "Bitbilge kürsätü" -#: import.php:403 libraries/messages.inc.php:101 +#: import.php:403 libraries/messages.inc.php:97 #, php-format msgid "Bookmark %s created" msgstr "%s digän bitbilge yaratıldı" -#: import.php:409 import.php:415 libraries/messages.inc.php:407 +#: import.php:409 import.php:415 libraries/messages.inc.php:403 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" -#: import.php:424 libraries/messages.inc.php:1107 +#: import.php:424 libraries/messages.inc.php:1103 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: index.php:190 libraries/messages.inc.php:553 +#: index.php:190 libraries/messages.inc.php:549 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin is more friendly with a frames-capable browser." -#: js/messages.php:25 libraries/messages.inc.php:155 +#: js/messages.php:25 libraries/messages.inc.php:151 #: server_synchronize.php:345 server_synchronize.php:357 #: server_synchronize.php:373 server_synchronize.php:380 #: server_synchronize.php:739 server_synchronize.php:767 @@ -954,118 +954,118 @@ msgstr "phpMyAdmin is more friendly with a frames-capable browser." msgid "Click to select" msgstr "" -#: js/messages.php:26 libraries/messages.inc.php:156 +#: js/messages.php:26 libraries/messages.inc.php:152 msgid "Click to unselect" msgstr "" #: js/messages.php:27 libraries/import.lib.php:103 -#: libraries/messages.inc.php:550 sql.php:89 +#: libraries/messages.inc.php:546 sql.php:89 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" cönläläre sünderelgän." -#: js/messages.php:30 libraries/messages.inc.php:270 +#: js/messages.php:30 libraries/messages.inc.php:266 #: libraries/mult_submits.inc.php:258 sql.php:188 msgid "Do you really want to " msgstr "Sin çınlap ta bonı eşlärgä teliseñme: " -#: js/messages.php:31 libraries/messages.inc.php:271 +#: js/messages.php:31 libraries/messages.inc.php:267 #: libraries/mult_submits.inc.php:258 sql.php:172 msgid "You are about to DESTROY a complete database!" msgstr "You are about to DESTROY a complete database!" -#: js/messages.php:34 libraries/messages.inc.php:94 +#: js/messages.php:34 libraries/messages.inc.php:90 msgid "You are about to DISABLE a BLOB Repository!" msgstr "" -#: js/messages.php:35 libraries/messages.inc.php:91 +#: js/messages.php:35 libraries/messages.inc.php:87 #, php-format msgid "Are you sure you want to disable all BLOB references for database %s?" msgstr "" -#: js/messages.php:38 libraries/messages.inc.php:342 +#: js/messages.php:38 libraries/messages.inc.php:338 msgid "Missing value in the form!" msgstr "Bu formıda bäyä kertelmi qalğan!" -#: js/messages.php:39 libraries/messages.inc.php:570 +#: js/messages.php:39 libraries/messages.inc.php:566 msgid "This is not a number!" msgstr "San tügel bu!" -#: js/messages.php:42 libraries/messages.inc.php:380 +#: js/messages.php:42 libraries/messages.inc.php:376 msgid "The host name is empty!" msgstr "Host adı buş!" -#: js/messages.php:43 libraries/messages.inc.php:1208 +#: js/messages.php:43 libraries/messages.inc.php:1204 msgid "The user name is empty!" msgstr "Atama buş!" -#: js/messages.php:44 libraries/messages.inc.php:607 +#: js/messages.php:44 libraries/messages.inc.php:603 #: server_privileges.php:1197 user_password.php:70 msgid "The password is empty!" msgstr "Sersüzeñ buş!" -#: js/messages.php:45 libraries/messages.inc.php:609 +#: js/messages.php:45 libraries/messages.inc.php:605 #: server_privileges.php:1195 user_password.php:73 msgid "The passwords aren't the same!" msgstr "Sersüzlär berbersenä kileşmi!" -#: js/messages.php:49 libraries/messages.inc.php:123 pmd_general.php:342 +#: js/messages.php:49 libraries/messages.inc.php:119 pmd_general.php:342 #: pmd_general.php:379 msgid "Cancel" msgstr "" -#: js/messages.php:52 libraries/messages.inc.php:514 +#: js/messages.php:52 libraries/messages.inc.php:510 msgid "Modifications have been saved" msgstr "Üzgärtülär saqlandı" -#: js/messages.php:53 libraries/messages.inc.php:741 +#: js/messages.php:53 libraries/messages.inc.php:737 #, fuzzy msgid "Relation deleted" msgstr "Bäyläneşkä küzätü" -#: js/messages.php:54 libraries/messages.inc.php:340 +#: js/messages.php:54 libraries/messages.inc.php:336 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:55 libraries/messages.inc.php:434 +#: js/messages.php:55 libraries/messages.inc.php:430 #, fuzzy msgid "Internal relation added" msgstr "Eçke bäyläneş" -#: js/messages.php:56 libraries/messages.inc.php:299 +#: js/messages.php:56 libraries/messages.inc.php:295 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:57 libraries/messages.inc.php:300 +#: js/messages.php:57 libraries/messages.inc.php:296 msgid "Error: relation already exists." msgstr "" -#: js/messages.php:58 libraries/messages.inc.php:302 +#: js/messages.php:58 libraries/messages.inc.php:298 msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:59 libraries/messages.inc.php:351 +#: js/messages.php:59 libraries/messages.inc.php:347 #: libraries/relation.lib.php:107 msgid "General relation features" msgstr "Bäyläneşlär buyınça töp mömkinleklär" -#: js/messages.php:59 libraries/messages.inc.php:260 +#: js/messages.php:59 libraries/messages.inc.php:256 #: libraries/relation.lib.php:101 libraries/relation.lib.php:108 msgid "Disabled" msgstr "Sünek" -#: js/messages.php:60 libraries/messages.inc.php:850 +#: js/messages.php:60 libraries/messages.inc.php:846 msgid "Select referenced key" msgstr "" -#: js/messages.php:61 libraries/messages.inc.php:848 +#: js/messages.php:61 libraries/messages.inc.php:844 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:62 libraries/messages.inc.php:653 +#: js/messages.php:62 libraries/messages.inc.php:649 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:63 libraries/messages.inc.php:142 pmd_general.php:77 +#: js/messages.php:63 libraries/messages.inc.php:138 pmd_general.php:77 #: tbl_relation.php:548 msgid "Choose field to display" msgstr "Kürsätäse Alan saylaw" @@ -1084,9 +1084,9 @@ msgid "Prev" msgstr "Uzğan" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2332 -#: libraries/common.lib.php:2335 libraries/display_tbl.lib.php:338 -#: libraries/messages.inc.php:543 server_binlog.php:205 server_binlog.php:207 +#: js/messages.php:77 libraries/common.lib.php:2344 +#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: libraries/messages.inc.php:539 server_binlog.php:205 server_binlog.php:207 #: tbl_printview.php:424 tbl_structure.php:802 msgid "Next" msgstr "Kiläse" @@ -1161,27 +1161,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1543 +#: js/messages.php:97 libraries/common.lib.php:1555 msgid "Jan" msgstr "Ğın" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1545 +#: js/messages.php:99 libraries/common.lib.php:1557 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1547 +#: js/messages.php:101 libraries/common.lib.php:1559 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1549 +#: js/messages.php:103 libraries/common.lib.php:1561 msgid "Apr" msgstr "Äpr" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1551 +#: js/messages.php:105 libraries/common.lib.php:1563 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1189,37 +1189,37 @@ msgid "May" msgstr "May" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1553 +#: js/messages.php:107 libraries/common.lib.php:1565 msgid "Jun" msgstr "Yün" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1555 +#: js/messages.php:109 libraries/common.lib.php:1567 msgid "Jul" msgstr "Yül" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1557 +#: js/messages.php:111 libraries/common.lib.php:1569 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1559 +#: js/messages.php:113 libraries/common.lib.php:1571 msgid "Sep" msgstr "Sen" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1561 +#: js/messages.php:115 libraries/common.lib.php:1573 msgid "Oct" msgstr "Ökt" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1563 +#: js/messages.php:117 libraries/common.lib.php:1575 msgid "Nov" msgstr "Nöy" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1565 +#: js/messages.php:119 libraries/common.lib.php:1577 msgid "Dec" msgstr "Dek" @@ -1260,37 +1260,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1568 +#: js/messages.php:132 libraries/common.lib.php:1580 msgid "Sun" msgstr "Ykş" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1570 +#: js/messages.php:134 libraries/common.lib.php:1582 msgid "Mon" msgstr "Dşm" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1572 +#: js/messages.php:136 libraries/common.lib.php:1584 msgid "Tue" msgstr "Sşm" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1574 +#: js/messages.php:138 libraries/common.lib.php:1586 msgid "Wed" msgstr "Çrş" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1576 +#: js/messages.php:140 libraries/common.lib.php:1588 msgid "Thu" msgstr "Pnc" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1578 +#: js/messages.php:142 libraries/common.lib.php:1590 msgid "Fri" msgstr "Cmğ" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1580 +#: js/messages.php:144 libraries/common.lib.php:1592 msgid "Sat" msgstr "Şmb" @@ -1364,77 +1364,77 @@ msgstr "totıla" msgid "Second" msgstr "sekund sayın" -#: libraries/Config.class.php:1015 libraries/messages.inc.php:338 +#: libraries/Config.class.php:1015 libraries/messages.inc.php:334 msgid "Font size" msgstr "" #: libraries/File.class.php:344 libraries/File.class.php:432 #: libraries/File.class.php:569 libraries/File.class.php:708 -#: libraries/messages.inc.php:1201 +#: libraries/messages.inc.php:1197 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.class.php:414 libraries/messages.inc.php:1198 +#: libraries/File.class.php:414 libraries/messages.inc.php:1194 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:417 libraries/messages.inc.php:1197 +#: libraries/File.class.php:417 libraries/messages.inc.php:1193 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:420 libraries/messages.inc.php:1200 +#: libraries/File.class.php:420 libraries/messages.inc.php:1196 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:423 libraries/messages.inc.php:1199 +#: libraries/File.class.php:423 libraries/messages.inc.php:1195 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:426 libraries/messages.inc.php:1195 +#: libraries/File.class.php:426 libraries/messages.inc.php:1191 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:429 libraries/messages.inc.php:1196 +#: libraries/File.class.php:429 libraries/messages.inc.php:1192 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:908 libraries/messages.inc.php:319 +#: libraries/File.class.php:908 libraries/messages.inc.php:315 #, fuzzy msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "Törle buluı bar. YBS 3.11 qarísı" -#: libraries/Index.class.php:428 libraries/messages.inc.php:554 +#: libraries/Index.class.php:428 libraries/messages.inc.php:550 #: tbl_relation.php:529 msgid "No index defined!" msgstr "Açqıç bilgelänmäde!" -#: libraries/Index.class.php:433 libraries/messages.inc.php:411 +#: libraries/Index.class.php:433 libraries/messages.inc.php:407 #: server_databases.php:132 tbl_tracking.php:316 msgid "Indexes" msgstr "Tezeşlär" -#: libraries/Index.class.php:444 libraries/messages.inc.php:1186 +#: libraries/Index.class.php:444 libraries/messages.inc.php:1182 #: 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:475 tbl_tracking.php:322 msgid "Unique" msgstr "Qabatsız" -#: libraries/Index.class.php:445 libraries/messages.inc.php:596 +#: libraries/Index.class.php:445 libraries/messages.inc.php:592 #: tbl_tracking.php:323 msgid "Packed" msgstr "" -#: libraries/Index.class.php:447 libraries/messages.inc.php:131 +#: libraries/Index.class.php:447 libraries/messages.inc.php:127 #: tbl_tracking.php:325 msgid "Cardinality" msgstr "Qabatlanu sanı" -#: libraries/Index.class.php:450 libraries/messages.inc.php:162 +#: libraries/Index.class.php:450 libraries/messages.inc.php:158 #: tbl_tracking.php:279 tbl_tracking.php:328 #, fuzzy msgid "Comment" @@ -1443,29 +1443,29 @@ msgstr "Açıqlama" #: libraries/Index.class.php:466 libraries/common.lib.php:616 #: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:280 pdf_pages.php:280 +#: libraries/messages.inc.php:276 pdf_pages.php:280 #: setup/frames/index.inc.php:124 setup/lib/messages.inc.php:352 #: tbl_row_action.php:69 msgid "Edit" msgstr "Tözätü" -#: libraries/Index.class.php:472 libraries/messages.inc.php:666 +#: libraries/Index.class.php:472 libraries/messages.inc.php:662 msgid "The primary key has been dropped" msgstr "Töp açqıç beterelde" -#: libraries/Index.class.php:476 libraries/messages.inc.php:413 +#: libraries/Index.class.php:476 libraries/messages.inc.php:409 #, php-format msgid "Index %s has been dropped" msgstr "\"%s\" digän tezeş salındı" -#: libraries/Index.class.php:576 libraries/messages.inc.php:412 +#: libraries/Index.class.php:576 libraries/messages.inc.php:408 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "" -#: libraries/List_Database.class.php:431 libraries/messages.inc.php:218 +#: libraries/List_Database.class.php:431 libraries/messages.inc.php:214 #: libraries/server_links.inc.php:41 server_databases.php:88 #: server_privileges.php:1621 setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" @@ -1494,85 +1494,85 @@ msgid_plural "%1$d rows inserted." msgstr[0] "Kertemnär sayladı" msgstr[1] "Kertemnär sayladı" -#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:549 +#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:545 msgid "" "There is no detailed status information available for this storage engine." msgstr "Bu saqlaw engine öçen xälät turında centekle belem yuq." -#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:291 +#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:287 #, php-format msgid "%s is available on this MySQL server." msgstr "Bu MySQL serverdä %s bar." -#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:292 +#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:288 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "Bu MySQL serverdä %s sünderelgän bulğan." -#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:294 +#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:290 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "Bu MySQL server %s saqlaw enginen totmí." -#: libraries/Table.class.php:1019 libraries/messages.inc.php:443 +#: libraries/Table.class.php:1019 libraries/messages.inc.php:439 msgid "Invalid database" msgstr "Yaraqsız biremlek" -#: libraries/Table.class.php:1033 libraries/messages.inc.php:450 +#: libraries/Table.class.php:1033 libraries/messages.inc.php:446 #: tbl_get_field.php:26 msgid "Invalid table name" msgstr "Tüşämä adı yaraqsız" -#: libraries/Table.class.php:1048 libraries/messages.inc.php:301 +#: libraries/Table.class.php:1048 libraries/messages.inc.php:297 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "%1$s atlı tüşämä adın %2$s itep üzgärtep bulmadı" -#: libraries/Table.class.php:1132 libraries/messages.inc.php:754 +#: libraries/Table.class.php:1132 libraries/messages.inc.php:750 #, php-format msgid "Table %s has been renamed to %s" msgstr "\"%s\" tüşämäse \"%s\" itep ataldı" -#: libraries/Theme.class.php:162 libraries/messages.inc.php:1099 +#: libraries/Theme.class.php:162 libraries/messages.inc.php:1095 #, php-format msgid "No valid image path for theme %s found!" msgstr "%s digän tışlaw sürätläre urınlaşqan yul tabılmadı!" -#: libraries/Theme.class.php:384 libraries/messages.inc.php:1097 +#: libraries/Theme.class.php:384 libraries/messages.inc.php:1093 msgid "No preview available." msgstr "" -#: libraries/Theme.class.php:387 libraries/messages.inc.php:1089 +#: libraries/Theme.class.php:387 libraries/messages.inc.php:1085 msgid "take it" msgstr "bonı sayla" -#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1096 +#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1092 #, php-format msgid "Default theme %s not found!" msgstr "%s digän töp tışlaw tabılmadı!" -#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1098 +#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1094 #, php-format msgid "Theme %s not found!" msgstr "%s digän tışlaw tabılmadı!" -#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1100 +#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1096 #, php-format msgid "Theme path not found for theme %s!" msgstr "%s digän tışlaw urınlaşqan yul tabılmadı!" -#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1101 +#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1097 #: test/theme.php:161 themes.php:21 themes.php:41 msgid "Theme / Style" msgstr "Tışlaw / Bizäleş" -#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:172 +#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:168 msgid "Cannot connect: invalid settings." msgstr "Totaşa almím: yaraqsız köyläwlär." #: libraries/auth/config.auth.lib.php:92 #: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65 -#: libraries/messages.inc.php:1238 test/theme.php:152 +#: libraries/messages.inc.php:1234 test/theme.php:152 #, php-format msgid "Welcome to %s" msgstr "%s siña İsäñme di" @@ -1596,104 +1596,104 @@ msgstr "" "sersüzlär tikäserep, alarnı MySQL idäräçese birgän mäğlümät belän çağıştırıp " "qarísı qala." -#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:488 +#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:484 msgid "Log in" msgstr "Kereş" #: libraries/auth/cookie.auth.lib.php:246 -#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:659 +#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:655 #: libraries/navigation_header.inc.php:93 #: libraries/navigation_header.inc.php:95 msgid "phpMyAdmin documentation" msgstr "phpMyAdmin qullanması" #: libraries/auth/cookie.auth.lib.php:258 -#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:492 +#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:488 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:493 +#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:489 msgid "Server:" msgstr "Server" -#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:494 +#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:490 msgid "Username:" msgstr "Atama:" -#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:491 +#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:487 msgid "Password:" msgstr "Sersüz:" -#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:854 +#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:850 msgid "Server Choice" msgstr "Server Saylaw" #: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 -#: libraries/messages.inc.php:177 +#: libraries/messages.inc.php:173 msgid "Cookies must be enabled past this point." msgstr "Cookies must be enabled past this point." #: libraries/auth/cookie.auth.lib.php:671 -#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:489 +#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:485 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" #: libraries/auth/cookie.auth.lib.php:675 -#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:544 +#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:540 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "Kimendä %s sekund eşlämi tordıq, şuña kürä yañadan keräse" #: libraries/auth/cookie.auth.lib.php:685 #: libraries/auth/cookie.auth.lib.php:687 -#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:126 +#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:122 msgid "Cannot log in to the MySQL server" msgstr "MySQL servergä totaşılıp bulmadı" -#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1245 +#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1241 msgid "Wrong username/password. Access denied." msgstr "Atama/sersüzeñ yalğış buluına kürä ireşep bulmadı." #: libraries/auth/swekey/swekey.auth.lib.php:118 -#: libraries/messages.inc.php:1057 +#: libraries/messages.inc.php:1053 #, php-format msgid "File %s does not contain any key id" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:157 #: libraries/auth/swekey/swekey.auth.lib.php:180 -#: libraries/messages.inc.php:1056 +#: libraries/messages.inc.php:1052 msgid "Hardware authentication failed" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:166 -#: libraries/messages.inc.php:1058 +#: libraries/messages.inc.php:1054 msgid "No valid authentication key plugged" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:202 -#: libraries/messages.inc.php:1055 +#: libraries/messages.inc.php:1051 msgid "Authenticating..." msgstr "" -#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1230 +#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1226 msgid "View image" msgstr "" -#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:652 +#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:648 msgid "Play audio" msgstr "" -#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1232 +#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1228 msgid "View video" msgstr "" -#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:269 +#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:265 msgid "Download file" msgstr "" -#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:128 +#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:124 msgid "" "Couldn't load the iconv or recode extension needed for charset conversion. " "Either configure PHP to enable these extensions or disable charset " @@ -1705,7 +1705,7 @@ msgstr "" #: libraries/charset_conversion.lib.php:79 #: libraries/charset_conversion.lib.php:90 -#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:130 +#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:126 msgid "" "Couldn't use the iconv, libiconv, or recode_string functions, although the " "necessary extensions appear to be loaded. Check your PHP configuration." @@ -1713,7 +1713,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/messages.inc.php:170 +#: libraries/common.inc.php:583 libraries/messages.inc.php:166 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!" @@ -1749,22 +1749,22 @@ msgstr "" msgid "Invalid server index: %s" msgstr "Serverdäge \"%s\" digän tezeleş yaraqsız" -#: libraries/common.inc.php:636 libraries/messages.inc.php:448 +#: libraries/common.inc.php:636 libraries/messages.inc.php:444 #, 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/messages.inc.php:856 libraries/select_server.lib.php:41 +#: libraries/messages.inc.php:852 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/messages.inc.php:437 +#: libraries/common.inc.php:823 libraries/messages.inc.php:433 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.lib.php:147 libraries/messages.inc.php:499 +#: libraries/common.lib.php:147 libraries/messages.inc.php:495 #, php-format msgid "Max: %s%s" msgstr "Max: %s%s" @@ -1784,7 +1784,7 @@ msgstr "en" #: libraries/common.lib.php:428 libraries/common.lib.php:430 #: libraries/common.lib.php:432 libraries/common.lib.php:448 #: libraries/common.lib.php:450 libraries/dbg/setup.php:25 -#: libraries/display_export.lib.php:164 libraries/messages.inc.php:267 +#: libraries/display_export.lib.php:164 libraries/messages.inc.php:263 #: libraries/relation.lib.php:97 libraries/sql_query_form.lib.php:451 #: libraries/sql_query_form.lib.php:454 main.php:229 pdf_pages.php:37 #: pdf_pages.php:43 pdf_pages.php:49 pdf_pages.php:54 @@ -1794,55 +1794,55 @@ msgstr "Qullanma" #: libraries/common.lib.php:581 libraries/core.lib.php:234 #: libraries/core.lib.php:263 libraries/import.lib.php:134 -#: libraries/messages.inc.php:297 pdf_schema.php:32 pdf_schema.php:232 +#: libraries/messages.inc.php:293 pdf_schema.php:32 pdf_schema.php:232 #: tbl_change.php:1027 tbl_operations.php:213 tbl_relation.php:290 #: view_operations.php:62 msgid "Error" msgstr "Xata" #: libraries/common.lib.php:595 libraries/header_printview.inc.php:61 -#: libraries/messages.inc.php:1023 server_processlist.php:60 +#: libraries/messages.inc.php:1019 server_processlist.php:60 #: server_status.php:247 msgid "SQL query" msgstr "SQL-soraw" -#: libraries/common.lib.php:634 libraries/messages.inc.php:538 +#: libraries/common.lib.php:634 libraries/messages.inc.php:534 msgid "MySQL said: " msgstr "MySQL qaytarışı:" -#: libraries/common.lib.php:667 libraries/messages.inc.php:76 +#: libraries/common.lib.php:667 libraries/messages.inc.php:72 #: pdf_schema.php:241 user_password.php:115 msgid "Back" msgstr "Kire" -#: libraries/common.lib.php:1177 libraries/messages.inc.php:309 +#: libraries/common.lib.php:1177 libraries/messages.inc.php:305 #: setup/lib/messages.inc.php:353 msgid "Explain SQL" msgstr "SQL Centekläw" -#: libraries/common.lib.php:1180 libraries/messages.inc.php:551 +#: libraries/common.lib.php:1180 libraries/messages.inc.php:547 msgid "Skip Explain SQL" msgstr "SQL Centeklämäskä" -#: libraries/common.lib.php:1212 libraries/messages.inc.php:563 +#: libraries/common.lib.php:1212 libraries/messages.inc.php:559 msgid "Without PHP Code" msgstr "PHP Kodısız" -#: libraries/common.lib.php:1215 libraries/messages.inc.php:649 +#: libraries/common.lib.php:1215 libraries/messages.inc.php:645 #: setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "PHP-Kod yasa" -#: libraries/common.lib.php:1233 libraries/messages.inc.php:737 +#: libraries/common.lib.php:1233 libraries/messages.inc.php:733 #: server_status.php:341 setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "Yañart" -#: libraries/common.lib.php:1242 libraries/messages.inc.php:575 +#: libraries/common.lib.php:1242 libraries/messages.inc.php:571 msgid "Skip Validate SQL" msgstr "SQL Tikşermäskä" -#: libraries/common.lib.php:1245 libraries/messages.inc.php:1220 +#: libraries/common.lib.php:1245 libraries/messages.inc.php:1216 #: setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "SQL'nı Tikşer" @@ -1858,11 +1858,11 @@ msgid "Inline" msgstr "Engine" #: libraries/common.lib.php:1332 libraries/common.lib.php:1347 -#: libraries/messages.inc.php:713 +#: libraries/messages.inc.php:709 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1351 libraries/messages.inc.php:1108 +#: libraries/common.lib.php:1351 libraries/messages.inc.php:1104 #: libraries/tbl_triggers.lib.php:28 server_processlist.php:58 msgid "Time" msgstr "Waqıt" @@ -1896,46 +1896,56 @@ msgstr "PB" msgid "EiB" msgstr "EB" +#. l10n: Thousands separator +#: libraries/common.lib.php:1417 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: libraries/common.lib.php:1419 +msgid "." +msgstr "." + #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1584 +#: libraries/common.lib.php:1596 #: libraries/transformations/text_plain__dateformat.inc.php:28 msgid "%B %d, %Y at %I:%M %p" msgstr "%Y.%m.%d, %H:%M" -#: libraries/common.lib.php:1886 +#: libraries/common.lib.php:1898 #, 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:2301 libraries/common.lib.php:2304 -#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:664 +#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:660 #: server_status.php:608 msgid "Begin" msgstr "Başlawğa" -#: libraries/common.lib.php:2302 libraries/common.lib.php:2305 -#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:665 +#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:661 #: server_binlog.php:168 server_binlog.php:170 msgid "Previous" msgstr "Uzğan" -#: libraries/common.lib.php:2333 libraries/common.lib.php:2336 -#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:289 +#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:285 msgid "End" msgstr "Azaq" -#: libraries/common.lib.php:2409 libraries/messages.inc.php:455 +#: libraries/common.lib.php:2421 libraries/messages.inc.php:451 #, php-format msgid "Jump to database "%s"." msgstr ""%s" biremlegenä küç." -#: libraries/common.lib.php:2429 libraries/messages.inc.php:461 +#: libraries/common.lib.php:2441 libraries/messages.inc.php:457 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/core.lib.php:286 libraries/dbg/setup.php:22 -#: libraries/messages.inc.php:127 +#: libraries/messages.inc.php:123 #, php-format msgid "" "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " @@ -1943,116 +1953,116 @@ msgid "" msgstr "\"%s\" yöklämäsen cibärep bulmadı,
PHP Caylawın tikşerçe" #: libraries/db_events.inc.php:20 libraries/db_events.inc.php:22 -#: libraries/export/sql.php:415 libraries/messages.inc.php:306 +#: libraries/export/sql.php:415 libraries/messages.inc.php:302 #, fuzzy msgid "Events" msgstr "Cibärelde" #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 -#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:541 +#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:537 #: libraries/tbl_triggers.lib.php:27 setup/frames/index.inc.php:112 msgid "Name" msgstr "Adı" -#: libraries/db_links.inc.php:45 libraries/messages.inc.php:216 +#: libraries/db_links.inc.php:45 libraries/messages.inc.php:212 #, php-format msgid "Database %s has been dropped." msgstr "%s biremlege beterelde." #: libraries/db_links.inc.php:57 libraries/db_links.inc.php:58 -#: libraries/db_links.inc.php:59 libraries/messages.inc.php:234 +#: libraries/db_links.inc.php:59 libraries/messages.inc.php:230 msgid "Database seems to be empty!" msgstr "" -#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1025 +#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1021 #: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60 #: querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1152 +#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1148 #: libraries/tbl_links.inc.php:69 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:86 libraries/messages.inc.php:719 +#: libraries/db_links.inc.php:86 libraries/messages.inc.php:715 msgid "Query" msgstr "Soraw" -#: libraries/db_links.inc.php:91 libraries/messages.inc.php:253 +#: libraries/db_links.inc.php:91 libraries/messages.inc.php:249 msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:98 libraries/messages.inc.php:397 +#: libraries/db_links.inc.php:98 libraries/messages.inc.php:393 #: libraries/server_links.inc.php:88 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:104 libraries/messages.inc.php:587 +#: libraries/db_links.inc.php:104 libraries/messages.inc.php:583 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" msgstr "Eşkärtü" -#: libraries/db_links.inc.php:111 libraries/messages.inc.php:709 +#: libraries/db_links.inc.php:111 libraries/messages.inc.php:705 #: libraries/server_links.inc.php:66 server_privileges.php:72 #: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117 msgid "Privileges" msgstr "Xoquqlar" #: libraries/db_routines.inc.php:30 libraries/db_routines.inc.php:32 -#: libraries/messages.inc.php:812 +#: libraries/messages.inc.php:808 msgid "Routines" msgstr "" -#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:811 +#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:807 msgid "Return type" msgstr "" #: libraries/db_structure.lib.php:57 libraries/display_tbl.lib.php:1848 -#: libraries/messages.inc.php:65 +#: libraries/messages.inc.php:61 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "Törle buluı bar. YBS 3.11 qarísı" -#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:593 +#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:589 #: server_databases.php:142 tbl_printview.php:336 tbl_structure.php:683 msgid "Overhead" msgstr "Overhead" #: libraries/dbi/mysql.dbi.lib.php:112 libraries/dbi/mysqli.dbi.lib.php:124 -#: libraries/messages.inc.php:176 +#: libraries/messages.inc.php:172 msgid "Connection for controluser as defined in your configuration failed." msgstr "" #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 -#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:855 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:851 msgid "The server is not responding" msgstr "Bu server endäşmi" #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:1010 +#: libraries/messages.inc.php:1006 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 libraries/messages.inc.php:255 +#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:251 #: tbl_structure.php:609 msgid "Details..." msgstr "" -#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:143 +#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:139 #: main.php:91 user_password.php:111 user_password.php:129 msgid "Change password" msgstr "Sersüz üzgärtü" -#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:561 +#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:557 #: libraries/replication_gui.lib.php:341 server_privileges.php:768 msgid "No Password" msgstr "Sersüzsez" -#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:610 +#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:606 #: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60 #: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335 #: libraries/replication_gui.lib.php:345 server_privileges.php:757 @@ -2061,13 +2071,13 @@ msgstr "Sersüzsez" msgid "Password" msgstr "Sersüz" -#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:806 +#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:802 #: libraries/replication_gui.lib.php:349 libraries/replication_gui.lib.php:352 #: server_privileges.php:776 server_privileges.php:779 msgid "Re-type" msgstr "Qabatla" -#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:608 +#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:604 msgid "Password Hashing" msgstr "Sersüz Hash'law" @@ -2077,90 +2087,90 @@ msgstr "Sersüz Hash'law" msgid "MySQL 4.0 compatible" msgstr "MySQL 4.0 öçen yaraqlı" -#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:353 +#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:349 #: libraries/replication_gui.lib.php:356 server_privileges.php:783 msgid "Generate Password" msgstr "Sersüz Ürçetü" -#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:352 +#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:348 #: libraries/replication_gui.lib.php:359 server_privileges.php:786 msgid "Generate" msgstr "Ürçet" #: libraries/display_create_database.lib.php:22 -#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:189 +#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:185 msgid "Create new database" msgstr "Yaña biremlek yaratu" -#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:185 +#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:181 msgid "Create" msgstr "Yarat" -#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:564 +#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:560 #: server_privileges.php:74 server_privileges.php:1388 #: server_replication.php:35 msgid "No Privileges" msgstr "Xoquqsız" -#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:445 +#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:441 msgid "Table must have at least one field." msgstr "Töşämä alannarı sanı kimendä 1 bulırğa teş." -#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:190 +#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:186 #, php-format msgid "Create table on database %s" msgstr "%s biremlegendä yaña tüşämä yaratu" -#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:577 +#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:573 msgid "Number of fields" msgstr "Alannar sanı" -#: libraries/display_export.lib.php:42 libraries/messages.inc.php:124 +#: libraries/display_export.lib.php:42 libraries/messages.inc.php:120 #, fuzzy msgid "Could not load export plugins, please check your installation!" msgstr "Totaşmalar yökläp bulmadı, quyılışın tikşerep alası!" -#: libraries/display_export.lib.php:107 libraries/messages.inc.php:277 +#: libraries/display_export.lib.php:107 libraries/messages.inc.php:273 #, php-format msgid "Dump %s row(s) starting at record # %s" msgstr "Eçtälek: %s kerem, #%s keremnän başlap." -#: libraries/display_export.lib.php:115 libraries/messages.inc.php:274 +#: libraries/display_export.lib.php:115 libraries/messages.inc.php:270 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:125 libraries/messages.inc.php:852 +#: libraries/display_export.lib.php:125 libraries/messages.inc.php:848 #: setup/lib/messages.inc.php:82 msgid "Save as file" msgstr "Biremgä saqlıysı" -#: libraries/display_export.lib.php:134 libraries/messages.inc.php:828 +#: libraries/display_export.lib.php:134 libraries/messages.inc.php:824 #, php-format msgid "Save on server in %s directory" msgstr "Serverneñ \"%s\" törgägendä saqla" -#: libraries/display_export.lib.php:142 libraries/messages.inc.php:594 +#: libraries/display_export.lib.php:142 libraries/messages.inc.php:590 #: setup/lib/messages.inc.php:90 msgid "Overwrite existing file(s)" msgstr "Birem bar bulsa, östän yazdırası" -#: libraries/display_export.lib.php:148 libraries/messages.inc.php:330 +#: libraries/display_export.lib.php:148 libraries/messages.inc.php:326 msgid "File name template" msgstr "Birem adınıñ tözeleşe" -#: libraries/display_export.lib.php:152 libraries/messages.inc.php:327 +#: libraries/display_export.lib.php:152 libraries/messages.inc.php:323 msgid "server name" msgstr "server adı" -#: libraries/display_export.lib.php:155 libraries/messages.inc.php:326 +#: libraries/display_export.lib.php:155 libraries/messages.inc.php:322 msgid "database name" msgstr "biremlek adı" -#: libraries/display_export.lib.php:158 libraries/messages.inc.php:328 +#: libraries/display_export.lib.php:158 libraries/messages.inc.php:324 msgid "table name" msgstr "tüşämä adı" -#: libraries/display_export.lib.php:162 libraries/messages.inc.php:329 +#: libraries/display_export.lib.php:162 libraries/messages.inc.php:325 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2168,24 +2178,24 @@ msgid "" "3$s. Other text will be kept as is." msgstr "" -#: libraries/display_export.lib.php:202 libraries/messages.inc.php:331 +#: libraries/display_export.lib.php:202 libraries/messages.inc.php:327 msgid "remember template" msgstr "tözeleşen yatla" #: libraries/display_export.lib.php:210 libraries/display_import.lib.php:178 -#: libraries/display_import.lib.php:191 libraries/messages.inc.php:145 +#: libraries/display_import.lib.php:191 libraries/messages.inc.php:141 #: libraries/sql_query_form.lib.php:549 msgid "Character set of the file:" msgstr "Şul biremneñ bilgelämäse:" -#: libraries/display_export.lib.php:235 libraries/messages.inc.php:166 +#: libraries/display_export.lib.php:235 libraries/messages.inc.php:162 #: setup/lib/messages.inc.php:84 msgid "Compression" 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/messages.inc.php:558 +#: libraries/export/sql.php:868 libraries/messages.inc.php:554 #: libraries/tbl_properties.inc.php:575 server_privileges.php:1836 #: server_processlist.php:75 msgid "None" @@ -2209,255 +2219,255 @@ msgstr "\"gziple\"" msgid "bzipped" msgstr "\"bziple\"" -#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1018 +#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1014 msgid "SQL compatibility mode" msgstr "SQL, kileşterü ısulı" -#: libraries/display_import.lib.php:67 libraries/messages.inc.php:398 +#: libraries/display_import.lib.php:67 libraries/messages.inc.php:394 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " "browsers." msgstr "" -#: libraries/display_import.lib.php:77 libraries/messages.inc.php:406 +#: libraries/display_import.lib.php:77 libraries/messages.inc.php:402 msgid "The file is being processed, please be patient." msgstr "" -#: libraries/display_import.lib.php:99 libraries/messages.inc.php:408 +#: libraries/display_import.lib.php:99 libraries/messages.inc.php:404 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." msgstr "" -#: libraries/display_import.lib.php:126 libraries/messages.inc.php:333 +#: libraries/display_import.lib.php:126 libraries/messages.inc.php:329 msgid "File to import" msgstr "Yöklise birem" -#: libraries/display_import.lib.php:137 libraries/messages.inc.php:486 +#: libraries/display_import.lib.php:137 libraries/messages.inc.php:482 #: libraries/sql_query_form.lib.php:524 msgid "Location of the text file" msgstr "SQL-ämerlege belän birem yökläw" -#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1203 +#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1199 msgid "File uploads are not allowed on this server." msgstr "" -#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1235 +#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1231 #: libraries/sql_query_form.lib.php:533 tbl_change.php:1028 msgid "The directory you set for upload work cannot be reached" msgstr "Yökläw öçen bigelängän törgäkne uqıp bulmí" -#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1236 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1232 #: libraries/sql_query_form.lib.php:536 tbl_change.php:1031 msgid "web server upload directory" msgstr "web-server'neñ yökläw törgäge" -#: libraries/display_import.lib.php:212 libraries/messages.inc.php:167 +#: libraries/display_import.lib.php:212 libraries/messages.inc.php:163 #, php-format msgid "Imported file compression will be automatically detected from: %s" msgstr "" -#: libraries/display_import.lib.php:219 libraries/messages.inc.php:600 +#: libraries/display_import.lib.php:219 libraries/messages.inc.php:596 msgid "Partial import" msgstr "Öleşçä yökläw" -#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1105 +#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1101 #, php-format msgid "" "Previous import timed out, after resubmitting will continue from position %d." msgstr "" -#: libraries/display_import.lib.php:232 libraries/messages.inc.php:51 +#: libraries/display_import.lib.php:232 libraries/messages.inc.php:47 msgid "" "Allow the interruption of an import in case the script detects it is close " "to the PHP timeout limit. This might be good way to import large files, " "however it can break transactions." msgstr "" -#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1004 +#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1000 #: setup/lib/messages.inc.php:161 msgid "Number of records (queries) to skip from start" msgstr "Baştan ütep kitäse yazma sanı" -#: libraries/display_import.lib.php:255 libraries/messages.inc.php:396 +#: libraries/display_import.lib.php:255 libraries/messages.inc.php:392 #: setup/lib/messages.inc.php:160 msgid "Format of imported file" msgstr "Yöklänğan birem tözeleşe" #: libraries/display_select_lang.lib.php:45 -#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:465 +#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:461 #: setup/frames/index.inc.php:70 msgid "Language" msgstr "" -#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:447 +#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:443 #, php-format msgid "%d is not valid row number." msgstr "%d digäne yazma sanı öçen kileşmi." -#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:814 +#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:810 msgid "row(s) starting from record #" msgstr "kerem; berençese #" -#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:817 +#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:813 msgid "horizontal" msgstr "yatqırıp" -#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:816 +#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:812 msgid "horizontal (rotated headers)" msgstr "yatqırıp (başlıqlar almaşıp)" -#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:819 +#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:815 msgid "vertical" msgstr "bastırıp" -#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:818 +#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:814 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "%s ısulı belän; başlıqnı %s yul sayın qabatlísı" -#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:495 +#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:491 msgid "This operation could take a long time. Proceed anyway?" msgstr "Bu eş ozaqqa suzıla ala. Barıber eşliseme?" -#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1012 +#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1008 msgid "Sort by key" msgstr "Qullanası tezeş" #: libraries/display_tbl.lib.php:555 libraries/import.lib.php:1082 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:591 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:587 #: tbl_select.php:267 tbl_structure.php:754 #, fuzzy msgid "Options" msgstr "Eşkärtü" #: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:570 -#: libraries/messages.inc.php:601 +#: libraries/messages.inc.php:597 msgid "Partial Texts" msgstr "Partial Texts" #: libraries/display_tbl.lib.php:561 libraries/display_tbl.lib.php:574 -#: libraries/messages.inc.php:346 +#: libraries/messages.inc.php:342 msgid "Full Texts" msgstr "Tulı Mätennär" -#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:739 +#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:735 #, fuzzy msgid "Relational key" msgstr "Bäyläneşlär sxeme" -#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:738 +#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:734 msgid "Relational display field" msgstr "" -#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:872 +#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:868 msgid "Show binary contents" msgstr "" -#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:873 +#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:869 msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:871 +#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:867 msgid "Show binary contents as HEX" msgstr "" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:375 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:371 #: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320 msgid "Hide" msgstr "" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:508 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:504 #: libraries/tbl_properties.inc.php:144 transformation_overview.php:47 msgid "Browser transformation" msgstr "Browser transformation" #: libraries/display_tbl.lib.php:1126 libraries/display_tbl.lib.php:1130 -#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:308 +#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:304 msgid "Execute bookmarked query" msgstr "Tamğalanğan soraw cibärü" #: libraries/display_tbl.lib.php:1145 libraries/display_tbl.lib.php:1157 -#: libraries/messages.inc.php:244 +#: libraries/messages.inc.php:240 msgid "The row has been deleted" msgstr "Bu yazma salınğan buldı" #: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056 -#: libraries/messages.inc.php:460 server_processlist.php:71 +#: libraries/messages.inc.php:456 server_processlist.php:71 #: tbl_row_action.php:64 msgid "Kill" msgstr "Üter" -#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:849 +#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:845 msgid "in query" msgstr "sorawda" -#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:881 +#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:877 msgid "Showing rows" msgstr "Yazma sanı:" -#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1113 +#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1109 msgid "total" msgstr "tulayım" -#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:727 +#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:723 #: sql.php:524 #, php-format msgid "Query took %01.4f sec" msgstr "Soraw eşkärtü %01.4f sek aldı" -#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:135 +#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:131 #: 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:471 msgid "Change" msgstr "Üzgärt" -#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:724 +#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:720 msgid "Query results operations" msgstr "Soraw qaytarmasın eşkärtü" -#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:671 +#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:667 msgid "Print view (with full texts)" msgstr "Bastıru küreneşe (bar mätennär belän)" -#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:482 +#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:478 msgid "Link not found" msgstr "Bäyläneş tabılmadı" -#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1224 +#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1220 #: main.php:228 msgid "Version information" msgstr "Söreme turında" -#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:423 +#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:419 msgid "Data home directory" msgstr "Biremnär törgäge" -#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:424 +#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:420 msgid "The common part of the directory path for all InnoDB data files." msgstr "InnoDB biremnäre öçen törgäk yulınıñ töp öleşe bu." -#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:422 +#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:418 msgid "Data files" msgstr "Eçtälek bireme" -#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:418 +#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:414 msgid "Autoextend increment" msgstr "Biremlektä arttıru adımı" -#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:419 +#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:415 msgid "" " The increment size for extending the size of an autoextending tablespace " "when it becomes full." msgstr "Tüşämä alanı tulğaç, anı arttıruçı adımı bu." -#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:420 +#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:416 msgid "Buffer pool size" msgstr "Bufer pul olılığı" -#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:421 +#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:417 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." @@ -2465,87 +2475,87 @@ msgstr "" "InnoDB üz tüşämä öçen alxäter belän açqıçlar urnaştırğanda bu olılıqta " "bulğan bufer qullana." -#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:112 +#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:108 msgid "Buffer Pool" msgstr "Bufer Pulı" -#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:426 +#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:422 #: server_status.php:306 msgid "InnoDB Status" msgstr "InnoDB Torışı" -#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:113 +#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:109 msgid "Buffer Pool Usage" msgstr "Bufer Pul Totılğanlığı" -#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1114 +#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1110 #: server_databases.php:137 server_databases.php:305 server_status.php:414 #: server_status.php:475 server_status.php:496 tbl_printview.php:351 #: tbl_structure.php:697 msgid "Total" msgstr "Tulayım" -#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:425 +#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:421 msgid "pages" msgstr "bit" -#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:343 +#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:339 msgid "Free pages" msgstr "Buş bit sanı" -#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:259 +#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:255 msgid "Dirty pages" msgstr "Üzgärtelgän bit" -#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:230 +#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:226 msgid "Pages containing data" msgstr "Eçtälekle bitlär" -#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:598 +#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:594 msgid "Pages to be flushed" msgstr "Buşatası bit" -#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:119 +#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:115 msgid "Busy pages" msgstr "Eştä bit" -#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:467 +#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:463 msgid "Latched pages" msgstr "Berketelgän bit" -#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:111 +#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:107 msgid "Buffer Pool Activity" msgstr "Bufer Pul Terelege" -#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:731 +#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:727 msgid "Read requests" msgstr "Uquğa soraw" -#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1244 +#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1240 msgid "Write requests" msgstr "Yazuğa soraw" -#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:115 +#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:111 msgid "Read misses" msgstr "Uñışsız uqu" -#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:117 +#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:113 msgid "Write waits" msgstr "Yazğanda kötterü" -#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:114 +#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:110 msgid "Read misses in %" msgstr "Uñışsız uqu, % öçen" -#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:116 +#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:112 msgid "Write waits in %" msgstr "Yazğanda kötterü, % öçen" -#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:522 +#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:518 msgid "Data pointer size" msgstr "Data pointer olılığı" -#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:523 +#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:519 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." @@ -2553,11 +2563,11 @@ msgstr "" "MAX_ROWS köylämäse bäyälängän oçraqta, CREATE TABLE aşa MyISAM tüşämä " "qorğanda qullanası pointerneñ baytlı olılığı." -#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:528 +#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:524 msgid "Automatic recovery mode" msgstr "Üzennän tözälü ısulı" -#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:529 +#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:525 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." @@ -2565,11 +2575,11 @@ msgstr "" "Cimerelgän MyISAM tüşämä üzennän tözälü ısulı, serverne --myisam-recover " "köylämäse belän cibärgän çaqta kebek." -#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:527 +#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:523 msgid "Maximum size for temporary sort files" msgstr "Tezü öçen waqıtlı birem olılığın çıläw" -#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:526 +#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:522 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " @@ -2578,11 +2588,11 @@ msgstr "" "MyISAM açqıçın yañadan qorğanda (REPAIR TABLE, ALTER TABLE, yä LOAD DATA " "INFILE aşa), MySQL qullanırlıq waqıtlı birem olılığın çikläw bu." -#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:525 +#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:521 msgid "Maximum size for temporary files on index creation" msgstr "Açqıç yasaw öçen waqıtlı birem olılığın çıläw" -#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:524 +#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:520 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " @@ -2592,11 +2602,11 @@ msgstr "" "bilgelängän açqıç alxäterennän olıraq bulırğa tieş, şul açqıç alxäterläw " "ısulına qarap." -#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:531 +#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:527 msgid "Repair threads" msgstr "Tözätü cebe" -#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:530 +#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:526 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." @@ -2604,11 +2614,11 @@ msgstr "" "Bu bäyä 1dän dä olıraq ikän, MyISAM tüşämä tezüle Tözätü eşe belän bergä " "açqıçlar qoru eşe dä cibäreler (açqıç sayın ber ayırım cep)." -#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:533 +#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:529 msgid "Sort buffer size" msgstr "Tezü bufer küläme" -#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:532 +#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:528 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." @@ -2616,73 +2626,73 @@ msgstr "" "REPAIR TABLE aşa MyISAM-açqıç tözätkändä dä, CREATE INDEX yä ALTER TABLE aşa " "açqıç östägändä dä yasala torğan bufer bu." -#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:620 +#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:616 msgid "Index cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:619 +#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:615 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." msgstr "" -#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:630 +#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:626 msgid "Record cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:629 +#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:625 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " "to the handle data (.xtd) and row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:624 +#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:620 #, fuzzy msgid "Log cache size" msgstr "Tezü bufer küläme" -#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:623 +#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:619 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:628 +#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:624 msgid "Log file threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:627 +#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:623 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:634 +#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:630 msgid "Transaction buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:633 +#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:629 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." msgstr "" -#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:611 +#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:607 msgid "Checkpoint frequency" msgstr "" -#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:612 +#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:608 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." msgstr "" -#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:615 +#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:611 msgid "Data log threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:616 +#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:612 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -2690,49 +2700,49 @@ msgid "" "that can be stored in the database." msgstr "" -#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:618 +#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:614 msgid "Garbage threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:617 +#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:613 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." msgstr "" -#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:622 +#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:618 #, fuzzy msgid "Log buffer size" msgstr "Tezü bufer küläme" -#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:621 +#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:617 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " "required to write a data log." msgstr "" -#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:613 +#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:609 msgid "Data file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:614 +#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:610 msgid "The grow size of the handle data (.xtd) files." msgstr "" -#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:632 +#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:628 msgid "Row file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:631 +#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:627 msgid "The grow size of the row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:626 +#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:622 msgid "Log file count" msgstr "" -#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:625 +#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:621 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -2742,19 +2752,19 @@ msgstr "" #: libraries/export/htmlword.php:132 libraries/export/odt.php:168 #: libraries/export/sql.php:881 libraries/export/texytext.php:130 -#: libraries/messages.inc.php:275 +#: libraries/messages.inc.php:271 msgid "Dumping data for table" msgstr "Tüşämä eçtälegen çığaru" #: libraries/export/htmlword.php:185 libraries/export/odt.php:238 #: libraries/export/sql.php:785 libraries/export/texytext.php:177 -#: libraries/messages.inc.php:1086 +#: libraries/messages.inc.php:1082 msgid "Table structure for table" msgstr "Tüşämä tözeleşe" #: libraries/export/latex.php:125 libraries/export/sql.php:232 #: libraries/export/xml.php:102 libraries/header_printview.inc.php:57 -#: libraries/messages.inc.php:381 libraries/replication_gui.lib.php:63 +#: libraries/messages.inc.php:377 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:170 libraries/replication_gui.lib.php:265 #: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325 #: server_privileges.php:692 server_privileges.php:695 @@ -2766,191 +2776,191 @@ msgstr "Host" #: libraries/export/latex.php:130 libraries/export/sql.php:233 #: libraries/export/xml.php:107 libraries/header_printview.inc.php:59 -#: libraries/messages.inc.php:354 +#: libraries/messages.inc.php:350 msgid "Generation Time" msgstr "Ürçäw Zamanı" #: libraries/export/latex.php:131 libraries/export/sql.php:235 -#: libraries/export/xml.php:108 libraries/messages.inc.php:864 main.php:186 +#: libraries/export/xml.php:108 libraries/messages.inc.php:860 main.php:186 msgid "Server version" msgstr "Server söreme" #: libraries/export/latex.php:132 libraries/export/sql.php:236 -#: libraries/export/xml.php:109 libraries/messages.inc.php:651 +#: libraries/export/xml.php:109 libraries/messages.inc.php:647 msgid "PHP Version" msgstr "PHP Söreme" #: libraries/export/latex.php:201 libraries/export/sql.php:868 -#: libraries/messages.inc.php:226 server_databases.php:127 +#: libraries/messages.inc.php:222 server_databases.php:127 #: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317 #: tbl_structure.php:666 msgid "Data" msgstr "Eçtälek" -#: libraries/export/odt.php:318 libraries/messages.inc.php:506 +#: libraries/export/odt.php:318 libraries/messages.inc.php:502 #: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "MIME-törläre" -#: libraries/export/sql.php:387 libraries/messages.inc.php:711 +#: libraries/export/sql.php:387 libraries/messages.inc.php:707 #, fuzzy msgid "Procedures" msgstr "Proseslar" -#: libraries/export/sql.php:401 libraries/messages.inc.php:348 +#: libraries/export/sql.php:401 libraries/messages.inc.php:344 #, fuzzy msgid "Functions" msgstr "Funksí" -#: libraries/export/sql.php:618 libraries/messages.inc.php:174 +#: libraries/export/sql.php:618 libraries/messages.inc.php:170 msgid "Constraints for dumped tables" msgstr "Constraints for dumped tables" -#: libraries/export/sql.php:627 libraries/messages.inc.php:175 +#: libraries/export/sql.php:627 libraries/messages.inc.php:171 msgid "Constraints for table" msgstr "Constraints for table" -#: libraries/export/sql.php:727 libraries/messages.inc.php:512 +#: libraries/export/sql.php:727 libraries/messages.inc.php:508 msgid "MIME TYPES FOR TABLE" msgstr "MIME TYPES FOR TABLE" -#: libraries/export/sql.php:739 libraries/messages.inc.php:743 +#: libraries/export/sql.php:739 libraries/messages.inc.php:739 msgid "RELATIONS FOR TABLE" msgstr "RELATIONS FOR TABLE" -#: libraries/export/sql.php:796 libraries/messages.inc.php:1178 +#: libraries/export/sql.php:796 libraries/messages.inc.php:1174 #: libraries/tbl_triggers.lib.php:19 msgid "Triggers" msgstr "" -#: libraries/export/sql.php:808 libraries/messages.inc.php:1046 +#: libraries/export/sql.php:808 libraries/messages.inc.php:1042 #, fuzzy msgid "Structure for view" msgstr "Tözeleşen genä" -#: libraries/export/sql.php:817 libraries/messages.inc.php:1029 +#: libraries/export/sql.php:817 libraries/messages.inc.php:1025 #, fuzzy msgid "Stand-in structure for view" msgstr "Tözeleşen genä" #: libraries/footer.inc.php:184 libraries/footer.inc.php:195 -#: libraries/footer.inc.php:198 libraries/messages.inc.php:586 +#: libraries/footer.inc.php:198 libraries/messages.inc.php:582 msgid "Open new phpMyAdmin window" msgstr "Yaña phpMyAdmin-täräzä açu" -#: libraries/header.inc.php:115 libraries/messages.inc.php:542 +#: libraries/header.inc.php:115 libraries/messages.inc.php:538 #, fuzzy msgid "New table" msgstr "Berär genä dä tüşämä yuq" #: libraries/header_printview.inc.php:50 libraries/header_printview.inc.php:55 -#: libraries/messages.inc.php:1024 +#: libraries/messages.inc.php:1020 msgid "SQL result" msgstr "SQL qaytarışı" -#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:350 +#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:346 msgid "Generated by" msgstr "Ürçätkeç:" #: libraries/header_printview.inc.php:63 libraries/import.lib.php:145 -#: libraries/messages.inc.php:820 navigation.php:652 navigation.php:674 +#: libraries/messages.inc.php:816 navigation.php:652 navigation.php:674 #: server_databases.php:122 tbl_printview.php:394 tbl_structure.php:366 #: tbl_structure.php:778 msgid "Rows" msgstr "Kerem" -#: libraries/import.lib.php:150 libraries/messages.inc.php:285 sql.php:520 +#: libraries/import.lib.php:150 libraries/messages.inc.php:281 sql.php:520 #: tbl_change.php:181 tbl_get_field.php:35 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL sorawğa buş cawap, yäğni nül kertem qaytarttı." -#: libraries/import.lib.php:1078 libraries/messages.inc.php:399 +#: libraries/import.lib.php:1078 libraries/messages.inc.php:395 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1079 libraries/messages.inc.php:400 +#: libraries/import.lib.php:1079 libraries/messages.inc.php:396 msgid "View a structure`s contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1080 libraries/messages.inc.php:401 +#: libraries/import.lib.php:1080 libraries/messages.inc.php:397 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1081 libraries/messages.inc.php:402 +#: libraries/import.lib.php:1081 libraries/messages.inc.php:398 msgid "Edit its structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1084 libraries/messages.inc.php:362 +#: libraries/import.lib.php:1084 libraries/messages.inc.php:358 #, fuzzy msgid "Go to database" msgstr "Biremleklär yuq" #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:869 +#: libraries/messages.inc.php:865 msgid "settings" msgstr "" -#: libraries/import.lib.php:1106 libraries/messages.inc.php:363 +#: libraries/import.lib.php:1106 libraries/messages.inc.php:359 #, fuzzy msgid "Go to table" msgstr "Biremleklär yuq" -#: libraries/import.lib.php:1109 libraries/messages.inc.php:1047 +#: libraries/import.lib.php:1109 libraries/messages.inc.php:1043 #, fuzzy msgid "structure" msgstr "Tözeleş" -#: libraries/import.lib.php:1115 libraries/messages.inc.php:364 +#: libraries/import.lib.php:1115 libraries/messages.inc.php:360 msgid "Go to view" msgstr "" #: libraries/import/csv.php:58 libraries/import/csv.php:70 #: libraries/import/csv.php:74 libraries/import/csv.php:78 -#: libraries/messages.inc.php:442 +#: libraries/messages.inc.php:438 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "CSV yökläweneñ yaraqsız köyläneşe: %s" -#: libraries/import/csv.php:59 libraries/messages.inc.php:323 +#: libraries/import/csv.php:59 libraries/messages.inc.php:319 msgid "Fields terminated by" msgstr "Alan arasında bilge" -#: libraries/import/csv.php:71 libraries/messages.inc.php:320 +#: libraries/import/csv.php:71 libraries/messages.inc.php:316 msgid "Fields enclosed by" msgstr "Alan yaptıruçı bilge" -#: libraries/import/csv.php:75 libraries/messages.inc.php:321 +#: libraries/import/csv.php:75 libraries/messages.inc.php:317 msgid "Fields escaped by" msgstr "Alan uzdıru bilgese" -#: libraries/import/csv.php:79 libraries/messages.inc.php:481 +#: libraries/import/csv.php:79 libraries/messages.inc.php:477 msgid "Lines terminated by" msgstr "Yul ara bilgese" -#: libraries/import/csv.php:119 libraries/messages.inc.php:439 +#: libraries/import/csv.php:119 libraries/messages.inc.php:435 #, php-format msgid "Invalid column (%s) specified!" msgstr "" #: libraries/import/csv.php:177 libraries/import/csv.php:424 -#: libraries/messages.inc.php:441 +#: libraries/messages.inc.php:437 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/import/csv.php:312 libraries/messages.inc.php:440 +#: libraries/import/csv.php:312 libraries/messages.inc.php:436 #, php-format msgid "Invalid field count in CSV input on line %d." msgstr "" -#: libraries/import/ldi.php:55 libraries/messages.inc.php:446 +#: libraries/import/ldi.php:55 libraries/messages.inc.php:442 msgid "This plugin does not support compressed imports!" msgstr "" #: libraries/import/xml.php:74 libraries/import/xml.php:130 -#: libraries/messages.inc.php:1247 +#: libraries/messages.inc.php:1243 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -2980,329 +2990,319 @@ msgstr "" msgid "ltr" msgstr "ltr" -#. l10n: Thousands separator -#: libraries/messages.inc.php:21 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: libraries/messages.inc.php:23 -msgid "." -msgstr "." - -#: libraries/messages.inc.php:25 server_status.php:461 +#: libraries/messages.inc.php:21 server_status.php:461 msgid "Aborted" msgstr "Özderelde" -#: libraries/messages.inc.php:28 main.php:68 +#: libraries/messages.inc.php:24 main.php:68 #, fuzzy msgid "Actions" msgstr "Eş" -#: libraries/messages.inc.php:34 libraries/tbl_properties.inc.php:780 +#: libraries/messages.inc.php:30 libraries/tbl_properties.inc.php:780 #: tbl_structure.php:543 #, php-format msgid "Add %s field(s)" msgstr "%s alan östäw" -#: libraries/messages.inc.php:35 +#: libraries/messages.inc.php:31 msgid "Add custom comment into header (\\n splits lines)" msgstr "Başlıqqa östämä açıqlama östäw (yullar \\n belän ayırıla)" -#: libraries/messages.inc.php:36 +#: libraries/messages.inc.php:32 msgid "Add into comments" msgstr "Açıqlama eçenä östise" -#: libraries/messages.inc.php:37 tbl_structure.php:541 +#: libraries/messages.inc.php:33 tbl_structure.php:541 msgid "Add new field" msgstr "Yaña alan östäw" -#: libraries/messages.inc.php:38 server_privileges.php:1886 +#: libraries/messages.inc.php:34 server_privileges.php:1886 msgid "Add privileges on the following database" msgstr "Kiläse biremlek öçen xoquqlar östäw" -#: libraries/messages.inc.php:39 server_privileges.php:1907 +#: libraries/messages.inc.php:35 server_privileges.php:1907 msgid "Add privileges on the following table" msgstr "Kiläse tüşämä öçen xoquqlar östäw" -#: libraries/messages.inc.php:40 tbl_select.php:288 +#: libraries/messages.inc.php:36 tbl_select.php:288 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Ezläw şartın östäw (\"WHERE\" eçtälege):" -#: libraries/messages.inc.php:41 tbl_indexes.php:251 +#: libraries/messages.inc.php:37 tbl_indexes.php:251 #, php-format msgid "Add to index  %s column(s)" msgstr "Açqıçqa tağın  %s alan östise" -#: libraries/messages.inc.php:42 server_privileges.php:1570 +#: libraries/messages.inc.php:38 server_privileges.php:1570 #: server_privileges.php:1594 server_privileges.php:1988 #: server_privileges.php:2177 msgid "Add a new User" msgstr "Yaña qullanuçı östäw" -#: libraries/messages.inc.php:43 server_privileges.php:931 +#: libraries/messages.inc.php:39 server_privileges.php:931 msgid "You have added a new user." msgstr "Yana qullanuçı östälände." -#: libraries/messages.inc.php:44 server_privileges.php:571 +#: libraries/messages.inc.php:40 server_privileges.php:571 msgid "Administration" msgstr "İdärä" -#: libraries/messages.inc.php:45 tbl_structure.php:557 +#: libraries/messages.inc.php:41 tbl_structure.php:557 #, php-format msgid "After %s" msgstr "%s artınnan" -#: libraries/messages.inc.php:46 tbl_change.php:1147 +#: libraries/messages.inc.php:42 tbl_change.php:1147 msgid "Go back to previous page" msgstr "Aldağı bitkä qaytu" -#: libraries/messages.inc.php:47 tbl_change.php:1148 +#: libraries/messages.inc.php:43 tbl_change.php:1148 msgid "Insert another new row" msgstr "Tağın ber yazma östäw" -#: libraries/messages.inc.php:48 tbl_change.php:1160 +#: libraries/messages.inc.php:44 tbl_change.php:1160 msgid "Edit next row" msgstr "Kiläse yazma üzgärtü" -#: libraries/messages.inc.php:49 tbl_change.php:1152 +#: libraries/messages.inc.php:45 tbl_change.php:1152 msgid "Go back to this page" msgstr "Bu bitkä kire qaytası" -#: libraries/messages.inc.php:50 querywindow.php:115 +#: libraries/messages.inc.php:46 querywindow.php:115 msgid "All" msgstr "Barısı" -#: libraries/messages.inc.php:53 tbl_operations.php:249 +#: libraries/messages.inc.php:49 tbl_operations.php:249 msgid "Alter table order by" msgstr "Tüşämä eçtälegen bolay tezäse" -#: libraries/messages.inc.php:54 tbl_operations.php:660 +#: libraries/messages.inc.php:50 tbl_operations.php:660 msgid "Analyze" msgstr "" -#: libraries/messages.inc.php:57 +#: libraries/messages.inc.php:53 #, fuzzy msgid "and" msgstr "Wä" -#: libraries/messages.inc.php:59 pmd_general.php:87 +#: libraries/messages.inc.php:55 pmd_general.php:87 msgid "Angular links" msgstr "" -#: libraries/messages.inc.php:60 tbl_structure.php:401 tbl_structure.php:415 +#: libraries/messages.inc.php:56 tbl_structure.php:401 tbl_structure.php:415 #: tbl_structure.php:429 #, php-format msgid "An index has been added on %s" msgstr "\"%s\" öçen ber açqıç qorıldı" -#: libraries/messages.inc.php:61 server_privileges.php:1521 +#: libraries/messages.inc.php:57 server_privileges.php:1521 #: server_privileges.php:2123 msgid "Any" msgstr "Törle" -#: libraries/messages.inc.php:62 libraries/replication_gui.lib.php:298 +#: libraries/messages.inc.php:58 libraries/replication_gui.lib.php:298 #: server_privileges.php:725 msgid "Any host" msgstr "Bar bulğan host" -#: libraries/messages.inc.php:63 libraries/replication_gui.lib.php:250 +#: libraries/messages.inc.php:59 libraries/replication_gui.lib.php:250 #: server_privileges.php:677 msgid "Any user" msgstr "Törle qullanuçı" -#: libraries/messages.inc.php:64 server_synchronize.php:449 +#: libraries/messages.inc.php:60 server_synchronize.php:449 #: server_synchronize.php:894 msgid "Apply Selected Changes" msgstr "" -#: libraries/messages.inc.php:66 tbl_structure.php:386 +#: libraries/messages.inc.php:62 tbl_structure.php:386 #, php-format msgid "A primary key has been added on %s" msgstr "\"%s\" öçen töp açqıç qorıldı" -#: libraries/messages.inc.php:67 libraries/mysql_charsets.lib.php:368 +#: libraries/messages.inc.php:63 libraries/mysql_charsets.lib.php:368 msgid "Arabic" msgstr "Çäräpçä" -#: libraries/messages.inc.php:68 libraries/mysql_charsets.lib.php:359 +#: libraries/messages.inc.php:64 libraries/mysql_charsets.lib.php:359 msgid "Armenian" msgstr "Ärmänçä" -#: libraries/messages.inc.php:70 libraries/tbl_properties.inc.php:394 +#: libraries/messages.inc.php:66 libraries/tbl_properties.inc.php:394 msgid "As defined:" msgstr "" -#: libraries/messages.inc.php:71 tbl_structure.php:556 +#: libraries/messages.inc.php:67 tbl_structure.php:556 msgid "At Beginning of Table" msgstr "Tüşämä Başına" -#: libraries/messages.inc.php:72 tbl_structure.php:555 +#: libraries/messages.inc.php:68 tbl_structure.php:555 msgid "At End of Table" msgstr "Tüşämä azağına" -#: libraries/messages.inc.php:73 libraries/tbl_properties.inc.php:108 +#: libraries/messages.inc.php:69 libraries/tbl_properties.inc.php:108 #: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:144 #: tbl_structure.php:180 msgid "Attributes" msgstr "Üzençälek" -#: libraries/messages.inc.php:74 pdf_pages.php:303 pdf_pages.php:306 +#: libraries/messages.inc.php:70 pdf_pages.php:303 pdf_pages.php:306 msgid "Automatic layout" msgstr "Zihenle urnaştıru" -#: libraries/messages.inc.php:77 libraries/mysql_charsets.lib.php:354 +#: libraries/messages.inc.php:73 libraries/mysql_charsets.lib.php:354 msgid "Baltic" msgstr "Baltiq" -#: libraries/messages.inc.php:78 libraries/sqlparser.lib.php:175 +#: libraries/messages.inc.php:74 libraries/sqlparser.lib.php:175 msgid "BEGIN CUT" msgstr "BEGIN CUT" -#: libraries/messages.inc.php:79 libraries/sqlparser.lib.php:179 +#: libraries/messages.inc.php:75 libraries/sqlparser.lib.php:179 msgid "BEGIN RAW" msgstr "BEGIN RAW" -#: libraries/messages.inc.php:80 libraries/mysql_charsets.lib.php:201 +#: libraries/messages.inc.php:76 libraries/mysql_charsets.lib.php:201 #: libraries/mysql_charsets.lib.php:402 tbl_change.php:518 msgid "Binary" msgstr "Binar" -#: libraries/messages.inc.php:81 tbl_change.php:894 +#: libraries/messages.inc.php:77 tbl_change.php:894 msgid "Binary - do not edit" msgstr "Binar - üzgärtmäslek" -#: libraries/messages.inc.php:82 libraries/server_links.inc.php:76 +#: libraries/messages.inc.php:78 libraries/server_links.inc.php:76 #: server_binlog.php:110 server_status.php:253 test/theme.php:121 msgid "Binary log" msgstr "Binar köndälek" -#: libraries/messages.inc.php:83 server_binlog.php:217 +#: libraries/messages.inc.php:79 server_binlog.php:217 msgid "Event type" msgstr "Buldıq töre" -#: libraries/messages.inc.php:84 server_binlog.php:220 +#: libraries/messages.inc.php:80 server_binlog.php:220 msgid "Information" msgstr "Beleşmä" -#: libraries/messages.inc.php:85 server_binlog.php:215 +#: libraries/messages.inc.php:81 server_binlog.php:215 msgid "Log name" msgstr "Köndälek adı" -#: libraries/messages.inc.php:86 server_binlog.php:219 +#: libraries/messages.inc.php:82 server_binlog.php:219 msgid "Original position" msgstr "Tärtip buyınça urın" -#: libraries/messages.inc.php:87 server_binlog.php:216 +#: libraries/messages.inc.php:83 server_binlog.php:216 msgid "Position" msgstr "Urın" -#: libraries/messages.inc.php:88 libraries/replication_gui.lib.php:169 +#: libraries/messages.inc.php:84 libraries/replication_gui.lib.php:169 #: server_binlog.php:218 msgid "Server ID" msgstr "Server ID'e" -#: libraries/messages.inc.php:92 +#: libraries/messages.inc.php:88 #, fuzzy msgctxt "$strBLOBRepositoryDisabled" msgid "Disabled" msgstr "Sünek" -#: libraries/messages.inc.php:95 +#: libraries/messages.inc.php:91 #, fuzzy msgctxt "$strBLOBRepositoryEnabled" msgid "Enabled" msgstr "Açıq" -#: libraries/messages.inc.php:97 tbl_change.php:888 +#: libraries/messages.inc.php:93 tbl_change.php:888 msgid "Remove BLOB Repository Reference" msgstr "" -#: libraries/messages.inc.php:98 +#: libraries/messages.inc.php:94 #, fuzzy msgctxt "$strBLOBRepositoryRepair" msgid "Repair" msgstr "Tüşämä tözätü" -#: libraries/messages.inc.php:99 tbl_change.php:987 +#: libraries/messages.inc.php:95 tbl_change.php:987 msgid "Upload to BLOB repository" msgstr "" -#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:359 +#: libraries/messages.inc.php:96 libraries/sql_query_form.lib.php:359 #: sql.php:677 msgid "Let every user access this bookmark" msgstr "Bu tamğanı bar qullanuçığa da ireşüle itäse" -#: libraries/messages.inc.php:103 sql.php:671 +#: libraries/messages.inc.php:99 sql.php:671 msgid "Label" msgstr "Yarlıq" -#: libraries/messages.inc.php:104 libraries/sql_query_form.lib.php:433 +#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:433 msgid "Bookmarked SQL query" msgstr "Tamğalanğan SQL-soraw" -#: libraries/messages.inc.php:105 libraries/sql_query_form.lib.php:365 +#: libraries/messages.inc.php:101 libraries/sql_query_form.lib.php:365 msgid "Replace existing bookmark of same name" msgstr "Şulay uq atalğan bitbilgelärne almaştırası" -#: libraries/messages.inc.php:106 libraries/sql_query_form.lib.php:352 +#: libraries/messages.inc.php:102 libraries/sql_query_form.lib.php:352 #: sql.php:665 sql.php:666 sql.php:683 msgid "Bookmark this SQL query" msgstr "Bu SQL-sorawğa tamğa quy" -#: libraries/messages.inc.php:107 libraries/sql_query_form.lib.php:466 +#: libraries/messages.inc.php:103 libraries/sql_query_form.lib.php:466 msgid "View only" msgstr "Kürep kenä" -#: libraries/messages.inc.php:109 tbl_structure.php:161 +#: libraries/messages.inc.php:105 tbl_structure.php:161 #, fuzzy msgid "Browse distinct values" msgstr "Browse foreign values" -#: libraries/messages.inc.php:110 tbl_change.php:252 tbl_select.php:27 +#: libraries/messages.inc.php:106 tbl_change.php:252 tbl_select.php:27 #: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34 msgid "Browse foreign values" msgstr "Browse foreign values" -#: libraries/messages.inc.php:118 libraries/mysql_charsets.lib.php:213 +#: libraries/messages.inc.php:114 libraries/mysql_charsets.lib.php:213 msgid "Bulgarian" msgstr "Balgarça" -#: libraries/messages.inc.php:120 +#: libraries/messages.inc.php:116 msgid "\"bzipped\"" msgstr "\"bziple\"" -#: libraries/messages.inc.php:122 +#: libraries/messages.inc.php:118 msgid "Calendar" msgstr "Täqwim" -#: libraries/messages.inc.php:129 tbl_indexes.php:75 +#: libraries/messages.inc.php:125 tbl_indexes.php:75 msgid "Can't rename index to PRIMARY!" msgstr "Açqıçnı \"PRIMARY\" itep atap bulmí!" -#: libraries/messages.inc.php:132 libraries/mysql_charsets.lib.php:223 +#: libraries/messages.inc.php:128 libraries/mysql_charsets.lib.php:223 #: libraries/mysql_charsets.lib.php:409 msgid "case-insensitive" msgstr "keşe/olı sizmiçä" -#: libraries/messages.inc.php:133 libraries/mysql_charsets.lib.php:226 +#: libraries/messages.inc.php:129 libraries/mysql_charsets.lib.php:226 #: libraries/mysql_charsets.lib.php:411 msgid "case-sensitive" msgstr "keşe/olı sizep" -#: libraries/messages.inc.php:134 libraries/mysql_charsets.lib.php:332 +#: libraries/messages.inc.php:130 libraries/mysql_charsets.lib.php:332 msgid "Central European" msgstr "Üzäk Awrupı" -#: libraries/messages.inc.php:136 server_privileges.php:1969 +#: libraries/messages.inc.php:132 server_privileges.php:1969 msgid "... keep the old one." msgstr "... keep the old one." -#: libraries/messages.inc.php:137 server_privileges.php:1967 +#: libraries/messages.inc.php:133 server_privileges.php:1967 msgid "Create a new user with the same privileges and ..." msgstr "Create a new user with the same privileges and ..." -#: libraries/messages.inc.php:138 server_privileges.php:1972 +#: libraries/messages.inc.php:134 server_privileges.php:1972 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -3310,250 +3310,250 @@ msgstr "" " ... delete the old one from the user tables and reload the privileges " "afterwards." -#: libraries/messages.inc.php:139 server_privileges.php:1970 +#: libraries/messages.inc.php:135 server_privileges.php:1970 msgid " ... delete the old one from the user tables." msgstr " ... delete the old one from the user tables." -#: libraries/messages.inc.php:140 server_privileges.php:1971 +#: libraries/messages.inc.php:136 server_privileges.php:1971 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "" " ... revoke all active privileges from the old one and delete it afterwards." -#: libraries/messages.inc.php:141 server_privileges.php:1964 +#: libraries/messages.inc.php:137 server_privileges.php:1964 msgid "Change Login Information / Copy User" msgstr "Change Login Information / Copy User" -#: libraries/messages.inc.php:144 libraries/mysql_charsets.lib.php:107 +#: libraries/messages.inc.php:140 libraries/mysql_charsets.lib.php:107 msgid "Charset" msgstr "Bilgelämä" -#: libraries/messages.inc.php:146 server_collations.php:40 +#: libraries/messages.inc.php:142 server_collations.php:40 msgid "Character Sets and Collations" msgstr "Bilgelämä & Tezü cayı" -#: libraries/messages.inc.php:147 libraries/server_links.inc.php:57 +#: libraries/messages.inc.php:143 libraries/server_links.inc.php:57 #: test/theme.php:109 msgid "Charsets" msgstr "Bilgelämä" -#: libraries/messages.inc.php:149 tbl_operations.php:661 +#: libraries/messages.inc.php:145 tbl_operations.php:661 #, fuzzy msgid "Check" msgstr "Çexçä" -#: libraries/messages.inc.php:151 server_databases.php:293 +#: libraries/messages.inc.php:147 server_databases.php:293 #: server_databases.php:294 msgid "Check Privileges" msgstr "Xoquqlar tikşerü" -#: libraries/messages.inc.php:152 server_databases.php:289 +#: libraries/messages.inc.php:148 server_databases.php:289 #, php-format msgid "Check privileges for database "%s"." msgstr "\"%s\" biremlege öçen xoquqlar tikşerü." -#: libraries/messages.inc.php:154 pdf_pages.php:261 +#: libraries/messages.inc.php:150 pdf_pages.php:261 msgid "Please choose a page to edit" msgstr "Tözätü öçen berär bit sayla" -#: libraries/messages.inc.php:157 +#: libraries/messages.inc.php:153 msgid "Displaying Column Comments" msgstr "Buy Açıqlamasın Kürsätäse" -#: libraries/messages.inc.php:159 pdf_pages.php:483 view_create.php:148 +#: libraries/messages.inc.php:155 pdf_pages.php:483 view_create.php:148 msgid "Column names" msgstr "Alan iseme" -#: libraries/messages.inc.php:160 server_privileges.php:1685 +#: libraries/messages.inc.php:156 server_privileges.php:1685 msgid "Column-specific privileges" msgstr "Berär bağana öçen xoquqlar" -#: libraries/messages.inc.php:164 +#: libraries/messages.inc.php:160 msgid "MySQL 4.0 compatible" msgstr "MySQL 4.0 öçen yaraqlı" -#: libraries/messages.inc.php:165 +#: libraries/messages.inc.php:161 msgid "Complete inserts" msgstr "Tulayım östise" -#: libraries/messages.inc.php:168 +#: libraries/messages.inc.php:164 #, php-format msgid "Could not load default configuration from: \"%1$s\"" msgstr "Töp köyläneşen yökläp bulmadı: \"%1$s\"" -#: libraries/messages.inc.php:169 main.php:306 +#: libraries/messages.inc.php:165 main.php:306 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: libraries/messages.inc.php:171 pdf_schema.php:672 +#: libraries/messages.inc.php:167 pdf_schema.php:672 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Please configure the coordinates for table %s" -#: libraries/messages.inc.php:173 server_status.php:433 +#: libraries/messages.inc.php:169 server_status.php:433 msgid "Connections" msgstr "Totaşular" -#: libraries/messages.inc.php:179 tbl_operations.php:509 +#: libraries/messages.inc.php:175 tbl_operations.php:509 msgid "Copy table to (database.table):" msgstr "Boña kübäyt (biremlek.tüşämä):" -#: libraries/messages.inc.php:180 tbl_move_copy.php:58 +#: libraries/messages.inc.php:176 tbl_move_copy.php:58 #, php-format msgid "Table %s has been copied to %s." msgstr "Table %s has been copied to %s." -#: libraries/messages.inc.php:181 tbl_move_copy.php:48 +#: libraries/messages.inc.php:177 tbl_move_copy.php:48 msgid "Can't copy table to same one!" msgstr "Can't copy table to same one!" -#: libraries/messages.inc.php:182 server_synchronize.php:94 +#: libraries/messages.inc.php:178 server_synchronize.php:94 msgid "Could not connect to the source" msgstr "" -#: libraries/messages.inc.php:183 server_synchronize.php:97 +#: libraries/messages.inc.php:179 server_synchronize.php:97 msgid "Could not connect to the target" msgstr "" -#: libraries/messages.inc.php:184 server_processlist.php:24 +#: libraries/messages.inc.php:180 server_processlist.php:24 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin %s ceben üterä almadı. Bälki ul yabılğan bulğan da inde." -#: libraries/messages.inc.php:187 +#: libraries/messages.inc.php:183 #, php-format msgid "Create an index on %s columns" msgstr "%s alannan tezeş yaratu" -#: libraries/messages.inc.php:188 tbl_indexes.php:160 +#: libraries/messages.inc.php:184 tbl_indexes.php:160 msgid "Create a new index" msgstr "Yaña tezeş yaratu" -#: libraries/messages.inc.php:191 pdf_pages.php:297 pmd_pdf.php:114 +#: libraries/messages.inc.php:187 pdf_pages.php:297 pmd_pdf.php:114 msgid "Create a page" msgstr "Yaña Bit yaratu" -#: libraries/messages.inc.php:192 +#: libraries/messages.inc.php:188 msgid "Creation of PDFs" msgstr "PDF yaratu" -#: libraries/messages.inc.php:193 pmd_general.php:74 pmd_general.php:306 +#: libraries/messages.inc.php:189 pmd_general.php:74 pmd_general.php:306 #, fuzzy msgid "Create relation" msgstr "Server söreme" -#: libraries/messages.inc.php:194 pmd_general.php:71 +#: libraries/messages.inc.php:190 pmd_general.php:71 #: server_synchronize.php:429 server_synchronize.php:872 #, fuzzy msgid "Create table" msgstr "Yaña Bit yaratu" -#: libraries/messages.inc.php:195 +#: libraries/messages.inc.php:191 #, fuzzy msgctxt "$strCreateTableShort" msgid "Create table" msgstr "Yaña Bit yaratu" -#: libraries/messages.inc.php:196 server_privileges.php:1994 +#: libraries/messages.inc.php:192 server_privileges.php:1994 msgid "Database for user" msgstr "Qullanuçı biremlege" -#: libraries/messages.inc.php:197 server_privileges.php:1999 +#: libraries/messages.inc.php:193 server_privileges.php:1999 msgid "Create database with same name and grant all privileges" msgstr "" -#: libraries/messages.inc.php:198 +#: libraries/messages.inc.php:194 #, fuzzy msgctxt "$strCreateUserDatabaseNone" msgid "None" msgstr "Buş" -#: libraries/messages.inc.php:199 server_privileges.php:2003 +#: libraries/messages.inc.php:195 server_privileges.php:2003 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "\"%s\" biremlege öçen xoquqlar tikşerü." -#: libraries/messages.inc.php:200 server_privileges.php:2000 +#: libraries/messages.inc.php:196 server_privileges.php:2000 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: libraries/messages.inc.php:201 +#: libraries/messages.inc.php:197 msgid "Creation/Update/Check dates" msgstr "Yaratılu/Üzgärelü/Tikşerü çaqları" -#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:229 +#: libraries/messages.inc.php:199 libraries/mysql_charsets.lib.php:229 msgid "Croatian" msgstr "Kroatça" -#: libraries/messages.inc.php:204 +#: libraries/messages.inc.php:200 msgid "CSV" msgstr "CSV" -#: libraries/messages.inc.php:205 libraries/server_synchronize.lib.php:1343 +#: libraries/messages.inc.php:201 libraries/server_synchronize.lib.php:1343 #: libraries/server_synchronize.lib.php:1369 msgid "Current server" msgstr "" -#: libraries/messages.inc.php:206 main.php:159 +#: libraries/messages.inc.php:202 main.php:159 msgid "Custom color" msgstr "" -#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:365 +#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:365 msgid "Cyrillic" msgstr "Urısälif" -#: libraries/messages.inc.php:208 libraries/mysql_charsets.lib.php:232 +#: libraries/messages.inc.php:204 libraries/mysql_charsets.lib.php:232 msgid "Czech" msgstr "Çexçä" -#: libraries/messages.inc.php:209 libraries/mysql_charsets.lib.php:383 +#: libraries/messages.inc.php:205 libraries/mysql_charsets.lib.php:383 msgid "Czech-Slovak" msgstr "Çex-Slovak" -#: libraries/messages.inc.php:211 libraries/mysql_charsets.lib.php:235 +#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:235 msgid "Danish" msgstr "Dança" -#: libraries/messages.inc.php:214 +#: libraries/messages.inc.php:210 msgid "Database export options" msgstr "Biremlek saqlaw köyläneşe" -#: libraries/messages.inc.php:217 server_synchronize.php:122 +#: libraries/messages.inc.php:213 server_synchronize.php:122 #: server_synchronize.php:125 tbl_create.php:82 tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "" -#: libraries/messages.inc.php:219 server_databases.php:63 +#: libraries/messages.inc.php:215 server_databases.php:63 #, php-format msgid "%s databases have been dropped successfully." msgstr "\"%s\" biremlegen beterü uñışlı uzdı." -#: libraries/messages.inc.php:220 libraries/server_synchronize.lib.php:1341 +#: libraries/messages.inc.php:216 libraries/server_synchronize.lib.php:1341 #: server_synchronize.php:1110 #, fuzzy msgid "Source database" msgstr "Biremlektä ezläw: " -#: libraries/messages.inc.php:221 server_databases.php:88 +#: libraries/messages.inc.php:217 server_databases.php:88 msgid "Databases statistics" msgstr "Biremlek nöfüsläre" -#: libraries/messages.inc.php:222 server_databases.php:362 +#: libraries/messages.inc.php:218 server_databases.php:362 #: server_databases.php:363 msgid "Disable Statistics" msgstr "Nöfüse Sünderü" -#: libraries/messages.inc.php:223 server_databases.php:358 +#: libraries/messages.inc.php:219 server_databases.php:358 #: server_databases.php:359 msgid "Enable Statistics" msgstr "Nöfüsne Cibärü" -#: libraries/messages.inc.php:224 server_databases.php:366 +#: libraries/messages.inc.php:220 server_databases.php:366 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -3561,31 +3561,31 @@ msgstr "" "Note: Enabling the Database statistics here might cause heavy traffic " "between the webserver and the MySQL one." -#: libraries/messages.inc.php:225 libraries/server_synchronize.lib.php:1367 +#: libraries/messages.inc.php:221 libraries/server_synchronize.lib.php:1367 #: server_synchronize.php:1112 #, fuzzy msgid "Target database" msgstr "Biremlektä ezläw: " -#: libraries/messages.inc.php:228 server_synchronize.php:425 +#: libraries/messages.inc.php:224 server_synchronize.php:425 #: server_synchronize.php:868 msgid "Data Difference" msgstr "" -#: libraries/messages.inc.php:231 server_synchronize.php:272 +#: libraries/messages.inc.php:227 server_synchronize.php:272 msgid "Data Synchronization" msgstr "" -#: libraries/messages.inc.php:235 server_privileges.php:526 +#: libraries/messages.inc.php:231 server_privileges.php:526 #: server_privileges.php:1679 msgid "Database-specific privileges" msgstr "Berär biremlekkä qağılışlı xoquqlar" -#: libraries/messages.inc.php:237 server_privileges.php:2136 +#: libraries/messages.inc.php:233 server_privileges.php:2136 msgid "database-specific" msgstr "berär biremlekkä qağılışlı" -#: libraries/messages.inc.php:240 libraries/tbl_properties.inc.php:106 +#: libraries/messages.inc.php:236 libraries/tbl_properties.inc.php:106 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" @@ -3593,32 +3593,32 @@ msgstr "" "Töpcay bäyäsen kertkändä, kireawışlar qullanmasqa, cäyä eçenä da salmasqa. " "Bolayraq kertäse: a" -#: libraries/messages.inc.php:241 tbl_operations.php:589 +#: libraries/messages.inc.php:237 tbl_operations.php:589 msgid "Defragment table" msgstr "Tüşämä kisäklären berläşterü" -#: libraries/messages.inc.php:242 +#: libraries/messages.inc.php:238 msgid "Use delayed inserts" msgstr "Kötterep östise" -#: libraries/messages.inc.php:245 server_privileges.php:1243 +#: libraries/messages.inc.php:241 server_privileges.php:1243 msgid "No users selected for deleting!" msgstr "Beteräse qullanuçılar saylanmağan!" -#: libraries/messages.inc.php:246 pmd_general.php:372 +#: libraries/messages.inc.php:242 pmd_general.php:372 msgid "Delete relation" msgstr "" -#: libraries/messages.inc.php:248 server_privileges.php:1232 +#: libraries/messages.inc.php:244 server_privileges.php:1232 #, php-format msgid "Deleting %s" msgstr "\"%s\" Beterü" -#: libraries/messages.inc.php:249 libraries/sql_query_form.lib.php:388 +#: libraries/messages.inc.php:245 libraries/sql_query_form.lib.php:388 msgid "Delimiter" msgstr "" -#: libraries/messages.inc.php:250 pdf_pages.php:506 +#: libraries/messages.inc.php:246 pdf_pages.php:506 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -3626,151 +3626,151 @@ msgstr "" "The current Page has References to Tables that no longer exist. Would you " "like to delete those References?" -#: libraries/messages.inc.php:254 pmd_help.php:29 +#: libraries/messages.inc.php:250 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." msgstr "" -#: libraries/messages.inc.php:256 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:252 libraries/mysql_charsets.lib.php:247 msgid "dictionary" msgstr "süzlek" -#: libraries/messages.inc.php:257 libraries/server_synchronize.lib.php:1348 +#: libraries/messages.inc.php:253 libraries/server_synchronize.lib.php:1348 msgid "Difference" msgstr "" -#: libraries/messages.inc.php:258 pmd_general.php:87 +#: libraries/messages.inc.php:254 pmd_general.php:87 msgid "Direct links" msgstr "" -#: libraries/messages.inc.php:261 +#: libraries/messages.inc.php:257 msgid "Disable foreign key checks" msgstr "Yat tezeş tikşerüen sünderep" -#: libraries/messages.inc.php:262 +#: libraries/messages.inc.php:258 msgid "Display Features" msgstr "Mömkinleklär Kürsätü" -#: libraries/messages.inc.php:263 tbl_select.php:301 +#: libraries/messages.inc.php:259 tbl_select.php:301 msgid "Display order:" msgstr "Kürsätü tärtibe:" -#: libraries/messages.inc.php:265 tbl_select.php:132 +#: libraries/messages.inc.php:261 tbl_select.php:132 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "\"Ürnäk buyınça soraw\" eşkärtü (almaştırma: \"%\")" -#: libraries/messages.inc.php:266 +#: libraries/messages.inc.php:262 msgid "DocSQL" msgstr "" -#: libraries/messages.inc.php:268 +#: libraries/messages.inc.php:264 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/messages.inc.php:273 server_privileges.php:1579 +#: libraries/messages.inc.php:269 server_privileges.php:1579 #: server_privileges.php:1580 server_privileges.php:1581 msgid "Drop the databases that have the same names as the users." msgstr "Bu qullanuçılar kebek atalğan biremleklärne beteräse." -#: libraries/messages.inc.php:278 tbl_printview.php:382 tbl_structure.php:743 +#: libraries/messages.inc.php:274 tbl_printview.php:382 tbl_structure.php:743 msgid "dynamic" msgstr "üzgärüçän" -#: libraries/messages.inc.php:282 server_privileges.php:1324 +#: libraries/messages.inc.php:278 server_privileges.php:1324 #: server_privileges.php:1610 msgid "Edit Privileges" msgstr "Xoquqlar Üzgärtü" -#: libraries/messages.inc.php:283 tbl_printview.php:341 tbl_structure.php:688 +#: libraries/messages.inc.php:279 tbl_printview.php:341 tbl_structure.php:688 msgid "Effective" msgstr "Uñışlı" -#: libraries/messages.inc.php:286 libraries/relation.lib.php:100 +#: libraries/messages.inc.php:282 libraries/relation.lib.php:100 msgid "Enabled" msgstr "Açıq" -#: libraries/messages.inc.php:287 +#: libraries/messages.inc.php:283 msgid "Enclose export in a transaction" msgstr "Transaksi eçendä ütkärep" -#: libraries/messages.inc.php:288 libraries/sqlparser.lib.php:177 +#: libraries/messages.inc.php:284 libraries/sqlparser.lib.php:177 msgid "END CUT" msgstr "END CUT" -#: libraries/messages.inc.php:290 libraries/sqlparser.lib.php:183 +#: libraries/messages.inc.php:286 libraries/sqlparser.lib.php:183 msgid "END RAW" msgstr "END RAW" -#: libraries/messages.inc.php:293 libraries/server_links.inc.php:61 +#: libraries/messages.inc.php:289 libraries/server_links.inc.php:61 #: test/theme.php:113 msgid "Engines" msgstr "Engine" -#: libraries/messages.inc.php:295 libraries/mysql_charsets.lib.php:238 +#: libraries/messages.inc.php:291 libraries/mysql_charsets.lib.php:238 msgid "English" msgstr "İnglizçä" -#: libraries/messages.inc.php:296 server_privileges.php:393 +#: libraries/messages.inc.php:292 server_privileges.php:393 #: server_privileges.php:535 server_privileges.php:1501 msgid " Note: MySQL privilege names are expressed in English " msgstr " Beläse: MySQL'da xoquq adı İnglizçä kertelä!" -#: libraries/messages.inc.php:298 libraries/zip_extension.lib.php:49 +#: libraries/messages.inc.php:294 libraries/zip_extension.lib.php:49 #: libraries/zip_extension.lib.php:51 libraries/zip_extension.lib.php:66 msgid "Error in ZIP archive:" msgstr "ZIP-tuplama eçendä xata:" -#: libraries/messages.inc.php:303 libraries/mysql_charsets.lib.php:241 +#: libraries/messages.inc.php:299 libraries/mysql_charsets.lib.php:241 msgid "Esperanto" msgstr "Esperanto" -#: libraries/messages.inc.php:304 libraries/mysql_charsets.lib.php:244 +#: libraries/messages.inc.php:300 libraries/mysql_charsets.lib.php:244 msgid "Estonian" msgstr "Estonça" -#: libraries/messages.inc.php:305 libraries/tbl_triggers.lib.php:29 +#: libraries/messages.inc.php:301 libraries/tbl_triggers.lib.php:29 #, fuzzy msgid "Event" msgstr "Cibärelde" -#: libraries/messages.inc.php:307 +#: libraries/messages.inc.php:303 msgid "Excel edition" msgstr "Excel söreme" -#: libraries/messages.inc.php:311 pmd_pdf.php:85 +#: libraries/messages.inc.php:307 pmd_pdf.php:85 msgid "Export/Import to scale" msgstr "" -#: libraries/messages.inc.php:313 +#: libraries/messages.inc.php:309 msgid "Extended inserts" msgstr "Kiñäytep östise" -#: libraries/messages.inc.php:314 pdf_schema.php:1267 pdf_schema.php:1288 +#: libraries/messages.inc.php:310 pdf_schema.php:1267 pdf_schema.php:1288 #: tbl_printview.php:147 tbl_structure.php:183 tbl_tracking.php:278 msgid "Extra" msgstr "Östämä" -#: libraries/messages.inc.php:316 server_status.php:447 +#: libraries/messages.inc.php:312 server_status.php:447 msgid "Failed attempts" msgstr "Failed attempts" -#: libraries/messages.inc.php:318 tbl_structure.php:375 +#: libraries/messages.inc.php:314 tbl_structure.php:375 #, php-format msgid "Field %s has been dropped" msgstr "%s isemle alan beterelde" -#: libraries/messages.inc.php:322 libraries/sql_query_form.lib.php:317 +#: libraries/messages.inc.php:318 libraries/sql_query_form.lib.php:317 msgid "Fields" msgstr "Alan" -#: libraries/messages.inc.php:332 server_binlog.php:136 +#: libraries/messages.inc.php:328 server_binlog.php:136 #, fuzzy msgid "Files" msgstr "Alan" -#: libraries/messages.inc.php:334 server_privileges.php:1597 +#: libraries/messages.inc.php:330 server_privileges.php:1597 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -3783,220 +3783,220 @@ msgstr "" "alardan ayırıla ala. Andí çaqlarda, dawam itü aldınnan, %sxoquqlarnı qabat " "yökläp alası%s." -#: libraries/messages.inc.php:335 server_status.php:289 +#: libraries/messages.inc.php:331 server_status.php:289 msgid "Flush query cache" msgstr "Soraw alxäteren awdar" -#: libraries/messages.inc.php:336 +#: libraries/messages.inc.php:332 msgid "Flush the table (\"FLUSH\")" msgstr "Tüşäwne awdar (\"FLUSH\")" -#: libraries/messages.inc.php:337 server_status.php:271 +#: libraries/messages.inc.php:333 server_status.php:271 msgid "Flush (close) all tables" msgstr "Tüşämälärne yabıp beteräse" -#: libraries/messages.inc.php:339 tbl_relation.php:279 +#: libraries/messages.inc.php:335 tbl_relation.php:279 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" -#: libraries/messages.inc.php:341 setup/lib/messages.inc.php:88 +#: libraries/messages.inc.php:337 setup/lib/messages.inc.php:88 #: tbl_printview.php:376 tbl_structure.php:738 msgid "Format" msgstr "Tözeleş" -#: libraries/messages.inc.php:344 server_replication.php:325 +#: libraries/messages.inc.php:340 server_replication.php:325 #, fuzzy msgid "Full start" msgstr "Tulımäten" -#: libraries/messages.inc.php:345 server_replication.php:325 +#: libraries/messages.inc.php:341 server_replication.php:325 #, fuzzy msgid "Full stop" msgstr "Tulımäten" -#: libraries/messages.inc.php:347 tbl_change.php:282 tbl_change.php:320 +#: libraries/messages.inc.php:343 tbl_change.php:282 tbl_change.php:320 msgid "Function" msgstr "Funksí" -#: libraries/messages.inc.php:355 libraries/mysql_charsets.lib.php:377 +#: libraries/messages.inc.php:351 libraries/mysql_charsets.lib.php:377 msgid "Georgian" msgstr "Görceçä" -#: libraries/messages.inc.php:356 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:352 libraries/mysql_charsets.lib.php:247 #: libraries/mysql_charsets.lib.php:250 msgid "German" msgstr "Almança" -#: libraries/messages.inc.php:357 themes.php:42 +#: libraries/messages.inc.php:353 themes.php:42 msgid "Get more themes!" msgstr "" -#: libraries/messages.inc.php:358 server_privileges.php:2134 +#: libraries/messages.inc.php:354 server_privileges.php:2134 msgid "global" msgstr "ğömümi" -#: libraries/messages.inc.php:359 server_privileges.php:524 +#: libraries/messages.inc.php:355 server_privileges.php:524 #: server_privileges.php:1500 msgid "Global privileges" msgstr "Töp xoquq" -#: libraries/messages.inc.php:360 server_variables.php:55 +#: libraries/messages.inc.php:356 server_variables.php:55 #: server_variables.php:89 msgid "Global value" msgstr "Töp bäyä" -#: libraries/messages.inc.php:365 server_privileges.php:1502 +#: libraries/messages.inc.php:361 server_privileges.php:1502 #: server_privileges.php:1684 server_privileges.php:2033 msgid "Grant" msgstr "Xoquq" -#: libraries/messages.inc.php:366 libraries/mysql_charsets.lib.php:380 +#: libraries/messages.inc.php:362 libraries/mysql_charsets.lib.php:380 msgid "Greek" msgstr "Yunança" -#: libraries/messages.inc.php:367 +#: libraries/messages.inc.php:363 msgid "\"gzipped\"" msgstr "\"gziple\"" -#: libraries/messages.inc.php:369 server_status.php:250 +#: libraries/messages.inc.php:365 server_status.php:250 msgid "Handler" msgstr "Eşkärtkeç" -#: libraries/messages.inc.php:370 server_synchronize.php:464 +#: libraries/messages.inc.php:366 server_synchronize.php:464 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: libraries/messages.inc.php:372 libraries/mysql_charsets.lib.php:374 +#: libraries/messages.inc.php:368 libraries/mysql_charsets.lib.php:374 msgid "Hebrew" msgstr "Yähüdçä" -#: libraries/messages.inc.php:373 pmd_general.php:83 +#: libraries/messages.inc.php:369 pmd_general.php:83 msgid "Help" msgstr "" -#: libraries/messages.inc.php:374 +#: libraries/messages.inc.php:370 msgid "Use hexadecimal for BLOB" msgstr "" -#: libraries/messages.inc.php:376 pmd_general.php:120 +#: libraries/messages.inc.php:372 pmd_general.php:120 #, fuzzy msgid "Hide/Show all" msgstr "Barısın kürsät" -#: libraries/messages.inc.php:377 pmd_general.php:124 +#: libraries/messages.inc.php:373 pmd_general.php:124 msgid "Hide/Show Tables with no relation" msgstr "" -#: libraries/messages.inc.php:378 libraries/navigation_header.inc.php:54 +#: libraries/messages.inc.php:374 libraries/navigation_header.inc.php:54 #: libraries/navigation_header.inc.php:57 #: libraries/navigation_header.inc.php:58 msgid "Home" msgstr "Başbit" -#: libraries/messages.inc.php:379 main.php:233 +#: libraries/messages.inc.php:375 main.php:233 msgid "Official Homepage" msgstr "phpMyAdmin säxifäse" -#: libraries/messages.inc.php:382 libraries/replication_gui.lib.php:327 +#: libraries/messages.inc.php:378 libraries/replication_gui.lib.php:327 #: server_privileges.php:753 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/messages.inc.php:383 +#: libraries/messages.inc.php:379 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/messages.inc.php:384 libraries/mysql_charsets.lib.php:253 +#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:253 msgid "Hungarian" msgstr "Macarça" -#: libraries/messages.inc.php:386 libraries/mysql_charsets.lib.php:256 +#: libraries/messages.inc.php:382 libraries/mysql_charsets.lib.php:256 msgid "Icelandic" msgstr "İclandça" -#: libraries/messages.inc.php:387 server_processlist.php:53 +#: libraries/messages.inc.php:383 server_processlist.php:53 msgid "ID" msgstr "ID" -#: libraries/messages.inc.php:388 libraries/mult_submits.inc.php:108 +#: libraries/messages.inc.php:384 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:479 msgid "Fulltext" msgstr "Tulımäten" -#: libraries/messages.inc.php:389 +#: libraries/messages.inc.php:385 msgid "Ignore duplicate rows" msgstr "Qabatlanğan yazmalarnı ütäse" -#: libraries/messages.inc.php:390 tbl_change.php:302 tbl_indexes.php:200 +#: libraries/messages.inc.php:386 tbl_change.php:302 tbl_indexes.php:200 #: tbl_indexes.php:225 msgid "Ignore" msgstr "Qarama" -#: libraries/messages.inc.php:391 +#: libraries/messages.inc.php:387 msgid "Use ignore inserts" msgstr "\"IGNORE\" belän kertäse" -#: libraries/messages.inc.php:392 +#: libraries/messages.inc.php:388 msgid "Column names in first row" msgstr "" -#: libraries/messages.inc.php:393 +#: libraries/messages.inc.php:389 msgid "Do not import empty rows" msgstr "" -#: libraries/messages.inc.php:394 pmd_general.php:104 +#: libraries/messages.inc.php:390 pmd_general.php:104 msgid "Import/Export coordinates for PDF schema" msgstr "" -#: libraries/messages.inc.php:395 querywindow.php:104 +#: libraries/messages.inc.php:391 querywindow.php:104 msgid "Import files" msgstr "Biremdän alu" -#: libraries/messages.inc.php:403 +#: libraries/messages.inc.php:399 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/messages.inc.php:404 libraries/messages.inc.php:584 +#: libraries/messages.inc.php:400 libraries/messages.inc.php:580 msgid "Open Document Spreadsheet" msgstr "" -#: libraries/messages.inc.php:405 +#: libraries/messages.inc.php:401 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/messages.inc.php:409 +#: libraries/messages.inc.php:405 msgid "Excel 97-2003 XLS Workbook" msgstr "" -#: libraries/messages.inc.php:410 +#: libraries/messages.inc.php:406 msgid "Excel 2007 XLSX Workbook" msgstr "" -#: libraries/messages.inc.php:414 libraries/mult_submits.inc.php:98 +#: libraries/messages.inc.php:410 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:476 tbl_structure.php:674 msgid "Index" msgstr "Tezeş" -#: libraries/messages.inc.php:415 tbl_indexes.php:168 +#: libraries/messages.inc.php:411 tbl_indexes.php:168 msgid "Index name:" msgstr "Tezeş adı :" -#: libraries/messages.inc.php:416 tbl_indexes.php:174 +#: libraries/messages.inc.php:412 tbl_indexes.php:174 msgid "Index type:" msgstr "Tezeş töre :" -#: libraries/messages.inc.php:417 sql.php:639 +#: libraries/messages.inc.php:413 sql.php:639 #, php-format msgid "Problems with indexes of table `%s`" msgstr "`%s` atlı tüşäw tezeşläre belän nidider tiskärlek bar" -#: libraries/messages.inc.php:427 main.php:266 +#: libraries/messages.inc.php:423 main.php:266 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -4007,163 +4007,163 @@ msgstr "" "xisap saylanğan (sersüzsez \"root\"). MySQL-server şul töp xisap belän " "açılğan da, andıy xällär iminlekneñ citdi tişege tip sanala." -#: libraries/messages.inc.php:428 tbl_change.php:1130 +#: libraries/messages.inc.php:424 tbl_change.php:1130 msgid "Insert as new row" msgstr "Yaña yazma kert tä" -#: libraries/messages.inc.php:429 sql.php:496 tbl_replace.php:386 +#: libraries/messages.inc.php:425 sql.php:496 tbl_replace.php:386 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: libraries/messages.inc.php:430 tbl_change.php:1131 +#: libraries/messages.inc.php:426 tbl_change.php:1131 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/messages.inc.php:432 main.php:139 +#: libraries/messages.inc.php:428 main.php:139 msgid "Interface" msgstr "" -#: libraries/messages.inc.php:433 tbl_relation.php:407 +#: libraries/messages.inc.php:429 tbl_relation.php:407 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: libraries/messages.inc.php:435 pdf_pages.php:303 +#: libraries/messages.inc.php:431 pdf_pages.php:303 msgid "Internal relations" msgstr "Eçke bäyläneş" -#: libraries/messages.inc.php:438 tbl_indexes.php:256 tbl_structure.php:590 +#: libraries/messages.inc.php:434 tbl_indexes.php:256 tbl_structure.php:590 #: tbl_structure.php:601 msgid "Column count has to be larger than zero." msgstr "" -#: libraries/messages.inc.php:444 libraries/tbl_properties.inc.php:784 +#: libraries/messages.inc.php:440 libraries/tbl_properties.inc.php:784 #: tbl_structure.php:537 msgid "You have to add at least one field." msgstr "Kimendä berär alan kertäse." -#: libraries/messages.inc.php:449 +#: libraries/messages.inc.php:445 #, php-format msgid "Invalid server index: \"%s\"" msgstr "Serverdäge \"%s\" digän tezeleş yaraqsız" -#: libraries/messages.inc.php:452 libraries/mysql_charsets.lib.php:259 +#: libraries/messages.inc.php:448 libraries/mysql_charsets.lib.php:259 #: libraries/mysql_charsets.lib.php:349 msgid "Japanese" msgstr "Japança" -#: libraries/messages.inc.php:453 main.php:331 +#: libraries/messages.inc.php:449 main.php:331 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: libraries/messages.inc.php:454 server_status.php:257 +#: libraries/messages.inc.php:450 server_status.php:257 msgid "Joins" msgstr "Bäylär" -#: libraries/messages.inc.php:457 server_privileges.php:763 +#: libraries/messages.inc.php:453 server_privileges.php:763 msgid "Do not change the password" msgstr "Sersüzen üzgärtäse tügel" -#: libraries/messages.inc.php:458 server_status.php:256 +#: libraries/messages.inc.php:454 server_status.php:256 msgid "Key cache" msgstr "Tezeş alxätere" -#: libraries/messages.inc.php:462 libraries/mysql_charsets.lib.php:268 +#: libraries/messages.inc.php:458 libraries/mysql_charsets.lib.php:268 #: libraries/mysql_charsets.lib.php:371 msgid "Korean" msgstr "Koreyçä" -#: libraries/messages.inc.php:466 libraries/select_lang.lib.php:480 +#: libraries/messages.inc.php:462 libraries/select_lang.lib.php:480 #: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492 #, php-format msgid "Unknown language: %1$s." msgstr "Belgesez tel: %1$s." -#: libraries/messages.inc.php:468 +#: libraries/messages.inc.php:464 msgid "Table caption" msgstr "Tüşämä başlığı" -#: libraries/messages.inc.php:469 +#: libraries/messages.inc.php:465 msgid "Content of table __TABLE__" msgstr "__TABLE__ atlı tüşämä eçtälege" -#: libraries/messages.inc.php:470 +#: libraries/messages.inc.php:466 msgid "Continued table caption" msgstr "Tüşämä dawamınıñ başlığı" -#: libraries/messages.inc.php:471 +#: libraries/messages.inc.php:467 msgid "(continued)" msgstr "(dawamlı)" -#: libraries/messages.inc.php:472 +#: libraries/messages.inc.php:468 msgid "Include table caption" msgstr "Tüşämä başlığın östise" -#: libraries/messages.inc.php:473 +#: libraries/messages.inc.php:469 msgid "Label key" msgstr "Açqıç yazması" -#: libraries/messages.inc.php:474 +#: libraries/messages.inc.php:470 msgid "LaTeX" msgstr "LaTeX" -#: libraries/messages.inc.php:475 +#: libraries/messages.inc.php:471 msgid "Structure of table __TABLE__" msgstr "__TABLE__ atlı tüşämä tözeleşe" -#: libraries/messages.inc.php:476 libraries/mysql_charsets.lib.php:262 +#: libraries/messages.inc.php:472 libraries/mysql_charsets.lib.php:262 msgid "Latvian" msgstr "Latça" -#: libraries/messages.inc.php:477 +#: libraries/messages.inc.php:473 msgid "CSV using LOAD DATA" msgstr "LOAD DATA qullanıp CSV" -#: libraries/messages.inc.php:478 +#: libraries/messages.inc.php:474 msgid "Use LOCAL keyword" msgstr "LOCAL digän süz qullanıp" -#: libraries/messages.inc.php:479 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:475 libraries/tbl_properties.inc.php:105 msgid "Length/Values" msgstr "Ozınlıq/Bäyä*" -#: libraries/messages.inc.php:480 tbl_select.php:295 +#: libraries/messages.inc.php:476 tbl_select.php:295 msgid "Number of rows per page" msgstr "Bit sayın Kertem sanı" -#: libraries/messages.inc.php:484 libraries/mysql_charsets.lib.php:265 +#: libraries/messages.inc.php:480 libraries/mysql_charsets.lib.php:265 msgid "Lithuanian" msgstr "Litçä" -#: libraries/messages.inc.php:485 libraries/replication_gui.lib.php:302 +#: libraries/messages.inc.php:481 libraries/replication_gui.lib.php:302 #: server_privileges.php:729 msgid "Local" msgstr "Cirle" -#: libraries/messages.inc.php:487 server_privileges.php:669 +#: libraries/messages.inc.php:483 server_privileges.php:669 msgid "Login Information" msgstr "Kereş Turında" -#: libraries/messages.inc.php:490 libraries/navigation_header.inc.php:67 +#: libraries/messages.inc.php:486 libraries/navigation_header.inc.php:67 #: libraries/navigation_header.inc.php:70 #: libraries/navigation_header.inc.php:71 main.php:99 msgid "Log out" msgstr "Çığış" -#: libraries/messages.inc.php:497 server_status.php:440 +#: libraries/messages.inc.php:493 server_status.php:440 msgid "max. concurrent connections" msgstr "" -#: libraries/messages.inc.php:498 +#: libraries/messages.inc.php:494 msgid "Maximal length of created query" msgstr "Kilgän soraw külämeneñ öske küläme" -#: libraries/messages.inc.php:500 main.php:282 +#: libraries/messages.inc.php:496 main.php:282 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -4173,7 +4173,7 @@ msgstr "" "charset. Without mbstring extension phpMyAdmin is unable to split strings " "correctly and it may result in unexpected results." -#: libraries/messages.inc.php:501 main.php:274 +#: libraries/messages.inc.php:497 main.php:274 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -4182,24 +4182,24 @@ msgstr "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause breaking of some data!" -#: libraries/messages.inc.php:502 +#: libraries/messages.inc.php:498 msgid "MediaWiki Table" msgstr "" -#: libraries/messages.inc.php:503 transformation_overview.php:25 +#: libraries/messages.inc.php:499 transformation_overview.php:25 msgid "Available MIME types" msgstr "Barlıq MIME-törlär" -#: libraries/messages.inc.php:504 transformation_overview.php:43 +#: libraries/messages.inc.php:500 transformation_overview.php:43 msgid "Available transformations" msgstr "Available transformations" -#: libraries/messages.inc.php:505 +#: libraries/messages.inc.php:501 msgctxt "$strMIME_description" msgid "Description" msgstr "Açıqlama" -#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:580 +#: libraries/messages.inc.php:503 libraries/tbl_properties.inc.php:580 #: transformation_overview.php:60 #, php-format msgid "" @@ -4209,7 +4209,7 @@ msgstr "" "No Description is available for this transformation.
Please ask the " "author, what %s does." -#: libraries/messages.inc.php:509 libraries/tbl_properties.inc.php:137 +#: libraries/messages.inc.php:505 libraries/tbl_properties.inc.php:137 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -4218,7 +4218,7 @@ msgstr "" "For a list of available transformation options and their MIME-type " "transformations, click on %stransformation descriptions%s" -#: libraries/messages.inc.php:510 libraries/tbl_properties.inc.php:146 +#: libraries/messages.inc.php:506 libraries/tbl_properties.inc.php:146 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -4230,112 +4230,112 @@ msgstr "" "quote (\"'\") amongst those values, backslash it (for example '\\\\xyz' or 'a" "\\'b')." -#: libraries/messages.inc.php:511 libraries/tbl_properties.inc.php:145 +#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:145 msgid "Transformation options" msgstr "Transformation options" -#: libraries/messages.inc.php:513 transformation_overview.php:38 +#: libraries/messages.inc.php:509 transformation_overview.php:38 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "" "MIME-types printed in italics do not have a seperate transformation function" -#: libraries/messages.inc.php:515 tbl_indexes.php:162 +#: libraries/messages.inc.php:511 tbl_indexes.php:162 msgid "Modify an index" msgstr "Açqıç üzgärtü" -#: libraries/messages.inc.php:517 pmd_general.php:108 +#: libraries/messages.inc.php:513 pmd_general.php:108 msgid "Move Menu" msgstr "" -#: libraries/messages.inc.php:518 tbl_operations.php:276 +#: libraries/messages.inc.php:514 tbl_operations.php:276 msgid "Move table to (database.table):" msgstr "Boña küçerü (biremlek.tüşämä):" -#: libraries/messages.inc.php:519 tbl_move_copy.php:56 +#: libraries/messages.inc.php:515 tbl_move_copy.php:56 #, php-format msgid "Table %s has been moved to %s." msgstr "\"%s\" atlı tüşämä \"%s\" kebek ataldı." -#: libraries/messages.inc.php:520 tbl_move_copy.php:46 +#: libraries/messages.inc.php:516 tbl_move_copy.php:46 msgid "Can't move table to same one!" msgstr "Ber ük at belän tüşämä küçerep bulmí!" -#: libraries/messages.inc.php:521 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:517 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 #: libraries/mysql_charsets.lib.php:332 libraries/mysql_charsets.lib.php:354 #: libraries/mysql_charsets.lib.php:365 msgid "multilingual" msgstr "küptelle" -#: libraries/messages.inc.php:534 main.php:193 +#: libraries/messages.inc.php:530 main.php:193 msgid "MySQL charset" msgstr "MySQL bilgelämäse" -#: libraries/messages.inc.php:535 main.php:211 +#: libraries/messages.inc.php:531 main.php:211 msgid "MySQL client version" msgstr "MySQL belän totaştırğıç söreme" -#: libraries/messages.inc.php:536 main.php:125 +#: libraries/messages.inc.php:532 main.php:125 msgid "MySQL connection collation" msgstr "MySQL-totaşunıñ tezü cayı" -#: libraries/messages.inc.php:537 main.php:346 +#: libraries/messages.inc.php:533 main.php:346 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: libraries/messages.inc.php:539 server_status.php:294 +#: libraries/messages.inc.php:535 server_status.php:294 msgid "Show processes" msgstr "Proseslär tezmäse" -#: libraries/messages.inc.php:545 navigation.php:210 server_databases.php:371 +#: libraries/messages.inc.php:541 navigation.php:210 server_databases.php:371 #: server_synchronize.php:1191 msgid "No databases" msgstr "Biremleklär yuq" -#: libraries/messages.inc.php:546 server_databases.php:52 +#: libraries/messages.inc.php:542 server_databases.php:52 msgid "No databases selected." msgstr "Biremlek saylanmağan." -#: libraries/messages.inc.php:548 libraries/relation.lib.php:1173 +#: libraries/messages.inc.php:544 libraries/relation.lib.php:1173 msgid "no description" msgstr "Açıqlamasız" -#: libraries/messages.inc.php:552 libraries/zip_extension.lib.php:26 +#: libraries/messages.inc.php:548 libraries/zip_extension.lib.php:26 msgid "No files found inside ZIP archive!" msgstr "ZIP-tuplama eçendä biremnär tabılmadı!" -#: libraries/messages.inc.php:555 tbl_indexes.php:91 +#: libraries/messages.inc.php:551 tbl_indexes.php:91 msgid "No index parts defined!" msgstr "No index parts defined!" -#: libraries/messages.inc.php:556 libraries/mult_submits.inc.php:435 +#: libraries/messages.inc.php:552 libraries/mult_submits.inc.php:435 #: tbl_replace.php:331 msgid "No change" msgstr "Üzgäreşsez" -#: libraries/messages.inc.php:557 +#: libraries/messages.inc.php:553 #, fuzzy msgctxt "$strNoneDefault" msgid "None" msgstr "Buş" -#: libraries/messages.inc.php:560 libraries/plugin_interface.lib.php:312 +#: libraries/messages.inc.php:556 libraries/plugin_interface.lib.php:312 msgid "This format has no options" msgstr "Bu tözeleşeneñ köyläneşe yuq" -#: libraries/messages.inc.php:565 user_password.php:54 +#: libraries/messages.inc.php:561 user_password.php:54 msgid "You don't have sufficient privileges to be here right now!" msgstr "Bonda bulu öçen, xoquqlarıñ citmi!" -#: libraries/messages.inc.php:566 tbl_row_action.php:29 +#: libraries/messages.inc.php:562 tbl_row_action.php:29 msgid "No rows selected" msgstr "Kertemnär sayladı" -#: libraries/messages.inc.php:569 themes.php:32 +#: libraries/messages.inc.php:565 themes.php:32 #, php-format msgid "" "No themes support; please check your configuration and/or your themes in " @@ -4344,294 +4344,294 @@ msgstr "" "No themes support, please check your configuration and/or your themes in " "directory %s." -#: libraries/messages.inc.php:571 libraries/relation.lib.php:95 +#: libraries/messages.inc.php:567 libraries/relation.lib.php:95 msgid "not OK" msgstr "OK tügel" -#: libraries/messages.inc.php:572 server_synchronize.php:400 +#: libraries/messages.inc.php:568 server_synchronize.php:400 #: server_synchronize.php:839 msgid "not present" msgstr "" -#: libraries/messages.inc.php:573 pdf_pages.php:36 pdf_pages.php:42 +#: libraries/messages.inc.php:569 pdf_pages.php:36 pdf_pages.php:42 #: pdf_pages.php:48 pdf_pages.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "%s atlı tüşämä yuq, yä ki \"%s\" tezmäsenä kermi" -#: libraries/messages.inc.php:574 server_privileges.php:804 +#: libraries/messages.inc.php:570 server_privileges.php:804 #: server_privileges.php:2166 msgid "No user(s) found." msgstr "Qullanuçı yuq." -#: libraries/messages.inc.php:578 pmd_general.php:164 +#: libraries/messages.inc.php:574 pmd_general.php:164 #, fuzzy msgid "Number of tables" msgstr "Alannar sanı" -#: libraries/messages.inc.php:581 server_databases.php:117 +#: libraries/messages.inc.php:577 server_databases.php:117 #: server_status.php:260 setup/lib/messages.inc.php:117 msgid "Tables" msgstr "Tüşämä" -#: libraries/messages.inc.php:583 libraries/relation.lib.php:99 +#: libraries/messages.inc.php:579 libraries/relation.lib.php:99 #: pmd_general.php:340 msgid "OK" msgstr "OK" -#: libraries/messages.inc.php:585 +#: libraries/messages.inc.php:581 msgid "Open Document Text" msgstr "" -#: libraries/messages.inc.php:588 tbl_select.php:138 +#: libraries/messages.inc.php:584 tbl_select.php:138 msgid "Operator" msgstr "Operator" -#: libraries/messages.inc.php:589 tbl_operations.php:662 +#: libraries/messages.inc.php:585 tbl_operations.php:662 msgid "Optimize" msgstr "" -#: libraries/messages.inc.php:602 libraries/tbl_properties.inc.php:755 +#: libraries/messages.inc.php:598 libraries/tbl_properties.inc.php:755 msgid "PARTITION definition" msgstr "" -#: libraries/messages.inc.php:603 tbl_structure.php:757 +#: libraries/messages.inc.php:599 tbl_structure.php:757 msgid "partitioned" msgstr "" -#: libraries/messages.inc.php:604 tbl_operations.php:649 +#: libraries/messages.inc.php:600 tbl_operations.php:649 #, fuzzy msgid "Partition maintenance" msgstr "Tüşämä eşkärtü" -#: libraries/messages.inc.php:605 tbl_operations.php:657 +#: libraries/messages.inc.php:601 tbl_operations.php:657 #, php-format msgid "Partition %s" msgstr "" -#: libraries/messages.inc.php:606 server_privileges.php:1212 +#: libraries/messages.inc.php:602 server_privileges.php:1212 #, php-format msgid "The password for %s was changed successfully." msgstr "\"%s\" öçen sezsüz üzgärtü uñışlı uzdı." -#: libraries/messages.inc.php:635 +#: libraries/messages.inc.php:631 #, php-format msgid "Schema of the \"%s\" database - Page %s" msgstr "\"%s\" biremlek tözeleşe - %s. bit" -#: libraries/messages.inc.php:636 +#: libraries/messages.inc.php:632 #, php-format msgid "The \"%s\" table doesn't exist!" msgstr "\"%s\" atlı tüşämä yuq äle!" -#: libraries/messages.inc.php:637 pdf_schema.php:1013 +#: libraries/messages.inc.php:633 pdf_schema.php:1013 msgid "No tables" msgstr "Berär genä dä tüşämä yuq" -#: libraries/messages.inc.php:638 pmd_pdf.php:63 +#: libraries/messages.inc.php:634 pmd_pdf.php:63 #, fuzzy msgid "Page has been created" msgstr "\"%s\" atlı tüşämä beterelde" -#: libraries/messages.inc.php:639 pmd_pdf.php:65 +#: libraries/messages.inc.php:635 pmd_pdf.php:65 msgid "Page creation failed" msgstr "" -#: libraries/messages.inc.php:640 +#: libraries/messages.inc.php:636 msgid "PDF" msgstr "PDF" -#: libraries/messages.inc.php:641 +#: libraries/messages.inc.php:637 msgid "(Generates a report containing the data of a single table)" msgstr "" -#: libraries/messages.inc.php:642 +#: libraries/messages.inc.php:638 msgid "Report title" msgstr "Yomğaq başlığı" -#: libraries/messages.inc.php:643 server_status.php:389 server_status.php:434 +#: libraries/messages.inc.php:639 server_status.php:389 server_status.php:434 #: server_status.php:497 server_status.php:555 msgid "per hour" msgstr "säğät sayın" -#: libraries/messages.inc.php:644 server_status.php:498 +#: libraries/messages.inc.php:640 server_status.php:498 msgid "per minute" msgstr "minut sayın" -#: libraries/messages.inc.php:645 server_status.php:499 +#: libraries/messages.inc.php:641 server_status.php:499 msgid "per second" msgstr "sekund sayın" -#: libraries/messages.inc.php:646 libraries/mysql_charsets.lib.php:271 +#: libraries/messages.inc.php:642 libraries/mysql_charsets.lib.php:271 msgid "Persian" msgstr "Farsíça" -#: libraries/messages.inc.php:647 libraries/mysql_charsets.lib.php:250 +#: libraries/messages.inc.php:643 libraries/mysql_charsets.lib.php:250 msgid "phone book" msgstr "telefon däftäre" -#: libraries/messages.inc.php:648 +#: libraries/messages.inc.php:644 msgid "PHP array" msgstr "" -#: libraries/messages.inc.php:650 main.php:213 +#: libraries/messages.inc.php:646 main.php:213 #, fuzzy msgid "PHP extension" msgstr "PHP Söreme" -#: libraries/messages.inc.php:654 libraries/relation.lib.php:163 +#: libraries/messages.inc.php:650 libraries/relation.lib.php:163 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/messages.inc.php:655 libraries/relation.lib.php:159 +#: libraries/messages.inc.php:651 libraries/relation.lib.php:159 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/messages.inc.php:656 libraries/relation.lib.php:161 +#: libraries/messages.inc.php:652 libraries/relation.lib.php:161 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" -#: libraries/messages.inc.php:657 libraries/relation.lib.php:162 +#: libraries/messages.inc.php:653 libraries/relation.lib.php:162 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/messages.inc.php:658 libraries/relation.lib.php:164 +#: libraries/messages.inc.php:654 libraries/relation.lib.php:164 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/messages.inc.php:661 libraries/mysql_charsets.lib.php:274 +#: libraries/messages.inc.php:657 libraries/mysql_charsets.lib.php:274 msgid "Polish" msgstr "Polça" -#: libraries/messages.inc.php:662 libraries/replication_gui.lib.php:67 +#: libraries/messages.inc.php:658 libraries/replication_gui.lib.php:67 #: server_synchronize.php:1163 #, fuzzy msgid "Port" msgstr "Tezü" -#: libraries/messages.inc.php:667 tbl_indexes.php:67 +#: libraries/messages.inc.php:663 tbl_indexes.php:67 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Bu töp açqıçnıñ adı \"PRIMARY\" bulırğa tieş!" -#: libraries/messages.inc.php:668 tbl_indexes.php:184 +#: libraries/messages.inc.php:664 tbl_indexes.php:184 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "(Töp açqıçnıñ ğına adı \"PRIMARY\" bulırğa tieş!)" -#: libraries/messages.inc.php:669 libraries/mult_submits.inc.php:76 +#: libraries/messages.inc.php:665 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:474 msgid "Primary" msgstr "Töp" -#: libraries/messages.inc.php:673 server_privileges.php:227 +#: libraries/messages.inc.php:669 server_privileges.php:227 msgid "Includes all privileges except GRANT." msgstr "GRANT'tan basqa bar xoquqlar da bar." -#: libraries/messages.inc.php:674 server_privileges.php:153 +#: libraries/messages.inc.php:670 server_privileges.php:153 #: server_privileges.php:476 msgid "Allows altering the structure of existing tables." msgstr "Biredä bulğan tüşämä tözeleşen üzgärtü xoquqı." -#: libraries/messages.inc.php:675 server_privileges.php:169 +#: libraries/messages.inc.php:671 server_privileges.php:169 #: server_privileges.php:482 msgid "Allows altering and dropping stored routines." msgstr "Allows altering and dropping stored routines." -#: libraries/messages.inc.php:676 server_privileges.php:145 +#: libraries/messages.inc.php:672 server_privileges.php:145 #: server_privileges.php:475 msgid "Allows creating new databases and tables." msgstr "Yaña biremlek/tüşämä yasaw xoquqı." -#: libraries/messages.inc.php:677 server_privileges.php:168 +#: libraries/messages.inc.php:673 server_privileges.php:168 #: server_privileges.php:481 msgid "Allows creating stored routines." msgstr "Saqlanğan funksílar qorırğa birä." -#: libraries/messages.inc.php:678 server_privileges.php:475 +#: libraries/messages.inc.php:674 server_privileges.php:475 msgid "Allows creating new tables." msgstr "Yaña tüşämä yasaw xoquqı." -#: libraries/messages.inc.php:679 server_privileges.php:156 +#: libraries/messages.inc.php:675 server_privileges.php:156 #: server_privileges.php:479 msgid "Allows creating temporary tables." msgstr "Waqıtlı tüşämä yasaw xoquqı." -#: libraries/messages.inc.php:680 server_privileges.php:170 +#: libraries/messages.inc.php:676 server_privileges.php:170 #: server_privileges.php:515 msgid "Allows creating, dropping and renaming user accounts." msgstr "Qullanuçı xísabın qoru/salu/ataw eşen qılırğa birä." -#: libraries/messages.inc.php:681 server_privileges.php:160 +#: libraries/messages.inc.php:677 server_privileges.php:160 #: server_privileges.php:164 server_privileges.php:487 #: server_privileges.php:491 msgid "Allows creating new views." msgstr "Yaña qaraş qorırğa birä." -#: libraries/messages.inc.php:682 server_privileges.php:144 +#: libraries/messages.inc.php:678 server_privileges.php:144 #: server_privileges.php:467 msgid "Allows deleting data." msgstr "Eçtälek beterü xoquqı." -#: libraries/messages.inc.php:683 server_privileges.php:146 +#: libraries/messages.inc.php:679 server_privileges.php:146 #: server_privileges.php:478 msgid "Allows dropping databases and tables." msgstr "Biremlek/tüşämä beterü xoquqı." -#: libraries/messages.inc.php:684 server_privileges.php:478 +#: libraries/messages.inc.php:680 server_privileges.php:478 msgid "Allows dropping tables." msgstr "Tüşämä beterü xoquqı." -#: libraries/messages.inc.php:685 server_privileges.php:161 +#: libraries/messages.inc.php:681 server_privileges.php:161 #: server_privileges.php:495 msgid "Allows to set up events for the event scheduler" msgstr "" -#: libraries/messages.inc.php:686 server_privileges.php:171 +#: libraries/messages.inc.php:682 server_privileges.php:171 #: server_privileges.php:483 msgid "Allows executing stored routines." msgstr "Eçke funksílar eşlätterergä birä." -#: libraries/messages.inc.php:687 server_privileges.php:150 +#: libraries/messages.inc.php:683 server_privileges.php:150 #: server_privileges.php:470 msgid "Allows importing data from and exporting data into files." msgstr "Allows importing data from and exporting data into files." -#: libraries/messages.inc.php:688 server_privileges.php:501 +#: libraries/messages.inc.php:684 server_privileges.php:501 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Allows adding users and privileges without reloading the privilege tüşämä." -#: libraries/messages.inc.php:689 server_privileges.php:152 +#: libraries/messages.inc.php:685 server_privileges.php:152 #: server_privileges.php:477 msgid "Allows creating and dropping indexes." msgstr "Açqıçlarnı qoru/beterü xoquqı." -#: libraries/messages.inc.php:690 server_privileges.php:142 +#: libraries/messages.inc.php:686 server_privileges.php:142 #: server_privileges.php:403 server_privileges.php:465 msgid "Allows inserting and replacing data." msgstr "Eçtälek östäw/almaştıru xoquqı." -#: libraries/messages.inc.php:691 server_privileges.php:157 +#: libraries/messages.inc.php:687 server_privileges.php:157 #: server_privileges.php:510 msgid "Allows locking tables for the current thread." msgstr "Allows locking tables for the current thread." -#: libraries/messages.inc.php:692 server_privileges.php:607 +#: libraries/messages.inc.php:688 server_privileges.php:607 #: server_privileges.php:609 msgid "Limits the number of new connections the user may open per hour." msgstr "Limits the number of new connections the user may open per hour." -#: libraries/messages.inc.php:693 server_privileges.php:595 +#: libraries/messages.inc.php:689 server_privileges.php:595 #: server_privileges.php:597 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Limits the number of queries the user may send to the server per hour." -#: libraries/messages.inc.php:694 server_privileges.php:601 +#: libraries/messages.inc.php:690 server_privileges.php:601 #: server_privileges.php:603 msgid "" "Limits the number of commands that change any table or database the user may " @@ -4640,58 +4640,58 @@ msgstr "" "Limits the number of commands that change any table or database the user may " "execute per hour." -#: libraries/messages.inc.php:695 server_privileges.php:613 +#: libraries/messages.inc.php:691 server_privileges.php:613 #: server_privileges.php:615 #, fuzzy msgid "Limits the number of simultaneous connections the user may have." msgstr "Limits the number of new connections the user may open per hour." -#: libraries/messages.inc.php:696 server_privileges.php:149 +#: libraries/messages.inc.php:692 server_privileges.php:149 #: server_privileges.php:505 msgid "Allows viewing processes of all users" msgstr "" -#: libraries/messages.inc.php:697 server_privileges.php:151 +#: libraries/messages.inc.php:693 server_privileges.php:151 #: server_privileges.php:409 server_privileges.php:511 msgid "Has no effect in this MySQL version." msgstr "Has no effect in this MySQL version." -#: libraries/messages.inc.php:698 server_privileges.php:147 +#: libraries/messages.inc.php:694 server_privileges.php:147 #: server_privileges.php:506 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Allows reloading server settings and flushing the server's caches." -#: libraries/messages.inc.php:699 server_privileges.php:159 +#: libraries/messages.inc.php:695 server_privileges.php:159 #: server_privileges.php:513 msgid "Allows the user to ask where the slaves / masters are." msgstr "Gives the right to the user to ask where the slaves / masters are." -#: libraries/messages.inc.php:700 server_privileges.php:158 +#: libraries/messages.inc.php:696 server_privileges.php:158 #: server_privileges.php:514 msgid "Needed for the replication slaves." msgstr "Needed for the replication slaves." -#: libraries/messages.inc.php:701 server_privileges.php:141 +#: libraries/messages.inc.php:697 server_privileges.php:141 #: server_privileges.php:400 server_privileges.php:464 msgid "Allows reading data." msgstr "Eçtälekne uqu xoquqı." -#: libraries/messages.inc.php:702 server_privileges.php:154 +#: libraries/messages.inc.php:698 server_privileges.php:154 #: server_privileges.php:508 msgid "Gives access to the complete list of databases." msgstr "Gives access to the complete list of databases." -#: libraries/messages.inc.php:703 server_privileges.php:165 +#: libraries/messages.inc.php:699 server_privileges.php:165 #: server_privileges.php:167 server_privileges.php:480 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "SHOW CREATE VIEW sorawların eşläterlek itä." -#: libraries/messages.inc.php:704 server_privileges.php:148 +#: libraries/messages.inc.php:700 server_privileges.php:148 #: server_privileges.php:507 msgid "Allows shutting down the server." msgstr "Serverne tuqtatu xoquqı." -#: libraries/messages.inc.php:705 server_privileges.php:155 +#: libraries/messages.inc.php:701 server_privileges.php:155 #: server_privileges.php:504 msgid "" "Allows connecting, even if maximum number of connections is reached; " @@ -4702,56 +4702,56 @@ msgstr "" "Required for most administrative operations like setting global variables or " "killing threads of other users." -#: libraries/messages.inc.php:706 server_privileges.php:162 +#: libraries/messages.inc.php:702 server_privileges.php:162 #: server_privileges.php:496 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "Açqıçlarnı qoru/beterü xoquqı." -#: libraries/messages.inc.php:707 server_privileges.php:143 +#: libraries/messages.inc.php:703 server_privileges.php:143 #: server_privileges.php:406 server_privileges.php:466 msgid "Allows changing data." msgstr "Eçtälek üzgärtü xoquqı." -#: libraries/messages.inc.php:708 server_privileges.php:221 +#: libraries/messages.inc.php:704 server_privileges.php:221 msgid "No privileges." msgstr "Xoquqlar yuq." -#: libraries/messages.inc.php:710 server_privileges.php:1296 +#: libraries/messages.inc.php:706 server_privileges.php:1296 msgid "The privileges were reloaded successfully." msgstr "Bu xoquqlarnı yökläw uñışlı uzdı." -#: libraries/messages.inc.php:712 libraries/server_links.inc.php:80 +#: libraries/messages.inc.php:708 libraries/server_links.inc.php:80 msgid "Processes" msgstr "Proseslar" -#: libraries/messages.inc.php:714 main.php:187 +#: libraries/messages.inc.php:710 main.php:187 msgid "Protocol version" msgstr "Protokol söreme" -#: libraries/messages.inc.php:715 +#: libraries/messages.inc.php:711 msgid "Put fields names in the first row" msgstr "Berençe yulda alannarnıñ iseme çığarası" -#: libraries/messages.inc.php:720 server_synchronize.php:1003 +#: libraries/messages.inc.php:716 server_synchronize.php:1003 msgid "The following queries have been executed:" msgstr "" -#: libraries/messages.inc.php:721 server_status.php:251 +#: libraries/messages.inc.php:717 server_status.php:251 msgid "Query cache" msgstr "Soraw alxätere" -#: libraries/messages.inc.php:722 libraries/navigation_header.inc.php:80 +#: libraries/messages.inc.php:718 libraries/navigation_header.inc.php:80 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 setup/lib/messages.inc.php:122 msgid "Query window" msgstr "Soraw täräzäse" -#: libraries/messages.inc.php:725 querywindow.php:109 querywindow.php:217 +#: libraries/messages.inc.php:721 querywindow.php:109 querywindow.php:217 msgid "SQL history" msgstr "SQL-taríxı" -#: libraries/messages.inc.php:726 server_status.php:490 +#: libraries/messages.inc.php:722 server_status.php:490 #, php-format msgid "" "Query statistics: Since its startup, %s queries have been sent to the " @@ -4759,137 +4759,137 @@ msgid "" msgstr "" "Soraw nöfüse: Bu server yöklännän birle, aña taba %s soraw kilgän." -#: libraries/messages.inc.php:728 server_status.php:554 +#: libraries/messages.inc.php:724 server_status.php:554 msgid "Query type" msgstr "Soraw töre" -#: libraries/messages.inc.php:729 libraries/sql_query_form.lib.php:381 +#: libraries/messages.inc.php:725 libraries/sql_query_form.lib.php:381 msgid "Do not overwrite this query from outside the window" msgstr "Bu sorawnı, täräzä tışında bulğanı belän almaştırası tügel" -#: libraries/messages.inc.php:732 tbl_operations.php:663 +#: libraries/messages.inc.php:728 tbl_operations.php:663 msgid "Rebuild" msgstr "" -#: libraries/messages.inc.php:733 server_status.php:394 +#: libraries/messages.inc.php:729 server_status.php:394 msgid "Received" msgstr "Alındı" -#: libraries/messages.inc.php:734 pmd_pdf.php:89 +#: libraries/messages.inc.php:730 pmd_pdf.php:89 msgid "recommended" msgstr "" -#: libraries/messages.inc.php:736 tbl_operations.php:702 +#: libraries/messages.inc.php:732 tbl_operations.php:702 msgid "Check referential integrity:" msgstr "Bäyläneşlärne döreslekkä tikşerü:" -#: libraries/messages.inc.php:740 pdf_schema.php:1032 pdf_schema.php:1141 +#: libraries/messages.inc.php:736 pdf_schema.php:1032 pdf_schema.php:1141 msgid "Relational schema" msgstr "Bäyläneşlär sxeme" -#: libraries/messages.inc.php:744 tbl_relation.php:399 +#: libraries/messages.inc.php:740 tbl_relation.php:399 msgid "Relations" msgstr "Bäyläneşlär" -#: libraries/messages.inc.php:745 tbl_structure.php:507 tbl_structure.php:509 +#: libraries/messages.inc.php:741 tbl_structure.php:507 tbl_structure.php:509 msgid "Relation view" msgstr "Bäyläneşkä küzätü" -#: libraries/messages.inc.php:746 server_privileges.php:1246 +#: libraries/messages.inc.php:742 server_privileges.php:1246 msgid "Reloading the privileges" msgstr "Bu xoquqlarnı yöklä" -#: libraries/messages.inc.php:747 navigation.php:66 navigation.php:67 +#: libraries/messages.inc.php:743 navigation.php:66 navigation.php:67 #: navigation.php:70 msgid "Reload navigation frame" msgstr "" -#: libraries/messages.inc.php:748 pmd_general.php:80 +#: libraries/messages.inc.php:744 pmd_general.php:80 msgid "Reload" msgstr "" -#: libraries/messages.inc.php:749 libraries/server_synchronize.lib.php:1345 +#: libraries/messages.inc.php:745 libraries/server_synchronize.lib.php:1345 #: libraries/server_synchronize.lib.php:1371 msgid "Remote server" msgstr "" -#: libraries/messages.inc.php:750 +#: libraries/messages.inc.php:746 msgid "Remove CRLF characters within fields" msgstr "" -#: libraries/messages.inc.php:751 tbl_operations.php:676 +#: libraries/messages.inc.php:747 tbl_operations.php:676 msgid "Remove partitioning" msgstr "" -#: libraries/messages.inc.php:752 server_privileges.php:1575 +#: libraries/messages.inc.php:748 server_privileges.php:1575 msgid "Remove selected users" msgstr "Saylanğan qullanuçı beterü" -#: libraries/messages.inc.php:755 tbl_operations.php:338 +#: libraries/messages.inc.php:751 tbl_operations.php:338 msgid "Rename table to" msgstr "Tüşämä adın üzgärtü" -#: libraries/messages.inc.php:756 view_operations.php:93 +#: libraries/messages.inc.php:752 view_operations.php:93 #, fuzzy msgid "Rename view to" msgstr "Tüşämä adın üzgärtü" -#: libraries/messages.inc.php:757 tbl_operations.php:664 +#: libraries/messages.inc.php:753 tbl_operations.php:664 #, fuzzy msgid "Repair" msgstr "Tüşämä tözätü" -#: libraries/messages.inc.php:759 +#: libraries/messages.inc.php:755 msgid "Replace NULL by" msgstr "NULL'nı almaştırası:" -#: libraries/messages.inc.php:760 +#: libraries/messages.inc.php:756 msgid "Replace table data with file" msgstr "Tüşämä eçtälegen bu biremlektäge belän alamştırası" -#: libraries/messages.inc.php:761 server_replication.php:228 +#: libraries/messages.inc.php:757 server_replication.php:228 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: libraries/messages.inc.php:762 libraries/replication_gui.lib.php:236 +#: libraries/messages.inc.php:758 libraries/replication_gui.lib.php:236 #: server_replication.php:194 msgid "Add slave replication user" msgstr "" -#: libraries/messages.inc.php:763 server_replication.php:74 +#: libraries/messages.inc.php:759 server_replication.php:74 #, php-format msgid "Master server changed succesfully to %s" msgstr "" -#: libraries/messages.inc.php:764 server_replication.php:182 +#: libraries/messages.inc.php:760 server_replication.php:182 msgid "This server is configured as master in a replication process." msgstr "" -#: libraries/messages.inc.php:765 server_replication.php:322 +#: libraries/messages.inc.php:761 server_replication.php:322 msgid "Control slave:" msgstr "" -#: libraries/messages.inc.php:766 server_replication.php:65 +#: libraries/messages.inc.php:762 server_replication.php:65 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: libraries/messages.inc.php:767 server_replication.php:58 +#: libraries/messages.inc.php:763 server_replication.php:58 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: libraries/messages.inc.php:768 server_replication.php:221 +#: libraries/messages.inc.php:764 server_replication.php:221 msgid "Replicate all databases; Ignore:" msgstr "" -#: libraries/messages.inc.php:769 server_replication.php:222 +#: libraries/messages.inc.php:765 server_replication.php:222 msgid "Ignore all databases; Replicate:" msgstr "" -#: libraries/messages.inc.php:770 server_replication.php:218 +#: libraries/messages.inc.php:766 server_replication.php:218 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -4898,121 +4898,121 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: libraries/messages.inc.php:771 server_replication.php:217 +#: libraries/messages.inc.php:767 server_replication.php:217 msgid "Master configuration" msgstr "" -#: libraries/messages.inc.php:772 server_replication.php:181 +#: libraries/messages.inc.php:768 server_replication.php:181 #: server_replication.php:209 msgid "Master replication" msgstr "" -#: libraries/messages.inc.php:774 server_replication.php:230 +#: libraries/messages.inc.php:770 server_replication.php:230 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: libraries/messages.inc.php:775 server_replication.php:225 +#: libraries/messages.inc.php:771 server_replication.php:225 #, fuzzy msgid "Please select databases:" msgstr "Berär biremlek saylísı" -#: libraries/messages.inc.php:776 server_replication.php:210 +#: libraries/messages.inc.php:772 server_replication.php:210 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:188 +#: libraries/messages.inc.php:773 libraries/replication_gui.lib.php:188 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/messages.inc.php:778 server_replication.php:187 +#: libraries/messages.inc.php:774 server_replication.php:187 msgid "Show connected slaves" msgstr "" -#: libraries/messages.inc.php:779 libraries/messages.inc.php:885 +#: libraries/messages.inc.php:775 libraries/messages.inc.php:881 #: server_replication.php:184 server_status.php:281 msgid "Show master status" msgstr "" -#: libraries/messages.inc.php:780 server_replication.php:334 +#: libraries/messages.inc.php:776 server_replication.php:334 msgid "Skipping error(s) might lead into unsynchronized master and slave!" msgstr "" -#: libraries/messages.inc.php:781 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:51 #: server_replication.php:347 msgid "Change or reconfigure master server" msgstr "" -#: libraries/messages.inc.php:782 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:778 libraries/replication_gui.lib.php:51 msgid "Slave configuration" msgstr "" -#: libraries/messages.inc.php:783 server_replication.php:305 +#: libraries/messages.inc.php:779 server_replication.php:305 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: libraries/messages.inc.php:784 server_replication.php:332 +#: libraries/messages.inc.php:780 server_replication.php:332 msgid "Error management:" msgstr "" -#: libraries/messages.inc.php:785 server_replication.php:328 +#: libraries/messages.inc.php:781 server_replication.php:328 #, php-format msgid "IO Thread %s only" msgstr "" -#: libraries/messages.inc.php:786 server_replication.php:296 +#: libraries/messages.inc.php:782 server_replication.php:296 msgid "Slave IO Thread not running!" msgstr "" -#: libraries/messages.inc.php:787 server_replication.php:355 +#: libraries/messages.inc.php:783 server_replication.php:355 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/messages.inc.php:788 server_replication.php:326 +#: libraries/messages.inc.php:784 server_replication.php:326 msgid "Reset slave" msgstr "" -#: libraries/messages.inc.php:789 server_replication.php:308 +#: libraries/messages.inc.php:785 server_replication.php:308 msgid "See slave status table" msgstr "" -#: libraries/messages.inc.php:790 server_replication.php:336 +#: libraries/messages.inc.php:786 server_replication.php:336 msgid "Skip current error" msgstr "" -#: libraries/messages.inc.php:791 server_replication.php:340 +#: libraries/messages.inc.php:787 server_replication.php:340 msgid "errors." msgstr "" -#: libraries/messages.inc.php:792 server_replication.php:337 +#: libraries/messages.inc.php:788 server_replication.php:337 msgid "Skip next" msgstr "" -#: libraries/messages.inc.php:793 server_replication.php:248 +#: libraries/messages.inc.php:789 server_replication.php:248 msgid "Slave replication" msgstr "" -#: libraries/messages.inc.php:794 server_replication.php:293 +#: libraries/messages.inc.php:790 server_replication.php:293 msgid "Slave SQL Thread not running!" msgstr "" -#: libraries/messages.inc.php:795 server_replication.php:327 +#: libraries/messages.inc.php:791 server_replication.php:327 #, php-format msgid "SQL Thread %s only" msgstr "" -#: libraries/messages.inc.php:796 +#: libraries/messages.inc.php:792 #, php-format msgid "" "This MySQL server works as %s in replication process. For further " @@ -5020,159 +5020,159 @@ msgid "" "\"#replication\">replication section." msgstr "" -#: libraries/messages.inc.php:797 +#: libraries/messages.inc.php:793 msgid "Master status" msgstr "" -#: libraries/messages.inc.php:798 server_status.php:721 +#: libraries/messages.inc.php:794 server_status.php:721 #, fuzzy msgid "Replication status" msgstr "Bäyläneşlär" -#: libraries/messages.inc.php:799 +#: libraries/messages.inc.php:795 msgid "Slave status" msgstr "" -#: libraries/messages.inc.php:800 server_replication.php:311 +#: libraries/messages.inc.php:796 server_replication.php:311 msgid "Synchronize databases with master" msgstr "" -#: libraries/messages.inc.php:801 server_replication.php:71 +#: libraries/messages.inc.php:797 server_replication.php:71 msgid "Unable to change master" msgstr "" -#: libraries/messages.inc.php:802 server_replication.php:51 +#: libraries/messages.inc.php:798 server_replication.php:51 msgid "Unknown error" msgstr "" -#: libraries/messages.inc.php:803 main.php:163 pdf_pages.php:344 +#: libraries/messages.inc.php:799 main.php:163 pdf_pages.php:344 #: setup/lib/FormDisplay.tpl.php:216 tbl_change.php:1175 msgid "Reset" msgstr "Awdar" -#: libraries/messages.inc.php:804 server_privileges.php:591 +#: libraries/messages.inc.php:800 server_privileges.php:591 msgid "Resource limits" msgstr "Resurs çikläwläre" -#: libraries/messages.inc.php:805 tbl_change.php:1209 +#: libraries/messages.inc.php:801 tbl_change.php:1209 #, php-format msgid "Restart insertion with %s rows" msgstr "" -#: libraries/messages.inc.php:807 server_privileges.php:1578 +#: libraries/messages.inc.php:803 server_privileges.php:1578 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Qullanuçı xoquqların awdarıp beteräse." -#: libraries/messages.inc.php:808 server_privileges.php:1176 +#: libraries/messages.inc.php:804 server_privileges.php:1176 #, php-format msgid "You have revoked the privileges for %s" msgstr "You have revoked the privileges for %s" -#: libraries/messages.inc.php:809 server_privileges.php:1333 +#: libraries/messages.inc.php:805 server_privileges.php:1333 msgid "Revoke" msgstr "Töşer" -#: libraries/messages.inc.php:810 libraries/mysql_charsets.lib.php:280 +#: libraries/messages.inc.php:806 libraries/mysql_charsets.lib.php:280 msgid "Romanian" msgstr "Romança" -#: libraries/messages.inc.php:813 tbl_printview.php:404 tbl_structure.php:786 +#: libraries/messages.inc.php:809 tbl_printview.php:404 tbl_structure.php:786 msgid "Row length" msgstr "Kerem ozınlığı" -#: libraries/messages.inc.php:815 tbl_printview.php:414 tbl_structure.php:794 +#: libraries/messages.inc.php:811 tbl_printview.php:414 tbl_structure.php:794 msgid " Row size " msgstr " Kerem olılığı" -#: libraries/messages.inc.php:821 tbl_printview.php:366 tbl_structure.php:726 +#: libraries/messages.inc.php:817 tbl_printview.php:366 tbl_structure.php:726 msgid "Row Statistics" msgstr "Kerem Nöfüse" -#: libraries/messages.inc.php:822 +#: libraries/messages.inc.php:818 #, php-format msgid "running on %s" msgstr "Sanaq: %s" -#: libraries/messages.inc.php:824 libraries/sql_query_form.lib.php:223 +#: libraries/messages.inc.php:820 libraries/sql_query_form.lib.php:223 #, php-format msgid "Run SQL query/queries on server %s" msgstr "%s digän serverdä SQL-soraw eşlätü" -#: libraries/messages.inc.php:825 libraries/sql_query_form.lib.php:240 +#: libraries/messages.inc.php:821 libraries/sql_query_form.lib.php:240 #: libraries/sql_query_form.lib.php:265 #, php-format msgid "Run SQL query/queries on database %s" msgstr "%s biremlegendä eşlätäse SQL-soraw" -#: libraries/messages.inc.php:826 libraries/mysql_charsets.lib.php:337 +#: libraries/messages.inc.php:822 libraries/mysql_charsets.lib.php:337 msgid "Russian" msgstr "Urısça" -#: libraries/messages.inc.php:829 pmd_general.php:68 +#: libraries/messages.inc.php:825 pmd_general.php:68 msgid "Save position" msgstr "" -#: libraries/messages.inc.php:830 libraries/tbl_properties.inc.php:776 +#: libraries/messages.inc.php:826 libraries/tbl_properties.inc.php:776 #: pdf_pages.php:484 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:214 setup/lib/FormDisplay.tpl.php:215 #: tbl_change.php:1126 tbl_indexes.php:248 tbl_relation.php:566 msgid "Save" msgstr "Saqla" -#: libraries/messages.inc.php:831 +#: libraries/messages.inc.php:827 msgid "The scale factor is too small to fit the schema on one page" msgstr "Bu sxemnı ber bittä urnaştıru öçen, olılıq sanı bik keçe" -#: libraries/messages.inc.php:843 main.php:298 +#: libraries/messages.inc.php:839 main.php:298 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "The configuration file now needs a secret passphrase (blowfish_secret)." -#: libraries/messages.inc.php:844 navigation.php:353 navigation.php:516 +#: libraries/messages.inc.php:840 navigation.php:353 navigation.php:516 msgid "Please select a database" msgstr "Berär biremlek saylísı" -#: libraries/messages.inc.php:846 server_binlog.php:120 +#: libraries/messages.inc.php:842 server_binlog.php:120 msgid "Select binary log to view" msgstr "Qaraw öçen binar köndälek saylaw" -#: libraries/messages.inc.php:847 tbl_select.php:270 +#: libraries/messages.inc.php:843 tbl_select.php:270 msgid "Select fields (at least one):" msgstr "Alannar saylísı (iñ kimendä ber):" -#: libraries/messages.inc.php:851 pdf_pages.php:320 +#: libraries/messages.inc.php:847 pdf_pages.php:320 msgid "Select Tables" msgstr "Tüşämä Saylaw" -#: libraries/messages.inc.php:853 server_status.php:404 +#: libraries/messages.inc.php:849 server_status.php:404 msgid "Sent" msgstr "Cibärelde" -#: libraries/messages.inc.php:857 libraries/select_server.lib.php:45 +#: libraries/messages.inc.php:853 libraries/select_server.lib.php:45 #: setup/frames/index.inc.php:97 setup/lib/messages.inc.php:115 msgid "Servers" msgstr "Serverlär" -#: libraries/messages.inc.php:858 server_status.php:255 +#: libraries/messages.inc.php:854 server_status.php:255 msgid "Delayed inserts" msgstr "Kiçerelgän östäw" -#: libraries/messages.inc.php:859 server_status.php:46 +#: libraries/messages.inc.php:855 server_status.php:46 msgid "Runtime Information" msgstr "Eşläw Torışı" -#: libraries/messages.inc.php:860 server_status.php:350 +#: libraries/messages.inc.php:856 server_status.php:350 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Bu MySQL-server %s eşli. %s çorında cibärelgän ide ul." -#: libraries/messages.inc.php:861 libraries/server_links.inc.php:53 +#: libraries/messages.inc.php:857 libraries/server_links.inc.php:53 #: server_engines.php:112 server_engines.php:116 server_status.php:304 #: test/theme.php:105 msgid "Variables" msgstr "Üzgärmälär" -#: libraries/messages.inc.php:862 server_status.php:383 +#: libraries/messages.inc.php:858 server_status.php:383 msgid "" "Server traffic: These tables show the network traffic statistics of " "this MySQL server since its startup." @@ -5180,11 +5180,11 @@ msgstr "" "Server taşımı: MySQL-server cibärelgännän birle, anıñ belän çeltär " "arasında bulğan taşım turında belem bondağı tüşämä eçendä birelä." -#: libraries/messages.inc.php:863 server_variables.php:35 +#: libraries/messages.inc.php:859 server_variables.php:35 msgid "Server variables and settings" msgstr "Server üzgärmäläre & köyläneşe" -#: libraries/messages.inc.php:865 main.php:290 +#: libraries/messages.inc.php:861 main.php:290 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -5192,17 +5192,17 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: libraries/messages.inc.php:866 +#: libraries/messages.inc.php:862 msgid "" "Cannot start session without errors, please check errors given in your PHP " "and/or webserver log file and configure your PHP installation properly." msgstr "" -#: libraries/messages.inc.php:867 server_variables.php:55 +#: libraries/messages.inc.php:863 server_variables.php:55 msgid "Session value" msgstr "Sessi bäyäse" -#: libraries/messages.inc.php:868 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:864 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 " @@ -5213,56 +5213,56 @@ msgstr "" ">Bäyä eçenä kireawış (\"\\\") yä sıñarquote (\"'\") kertäse bulsa, anı " "kireawıştırası bula (ürnäk: '\\\\xyz' yä ki 'a\\'b')." -#: libraries/messages.inc.php:876 server_binlog.php:192 server_binlog.php:195 +#: libraries/messages.inc.php:872 server_binlog.php:192 server_binlog.php:195 #: server_processlist.php:49 server_processlist.php:51 msgid "Show Full Queries" msgstr "Tulı Sorawlar Kürsät" -#: libraries/messages.inc.php:878 pmd_general.php:64 +#: libraries/messages.inc.php:874 pmd_general.php:64 msgid "Show/Hide left menu" msgstr "" -#: libraries/messages.inc.php:880 sql.php:513 +#: libraries/messages.inc.php:876 sql.php:513 msgid "Showing as PHP code" msgstr "" -#: libraries/messages.inc.php:882 sql.php:516 tbl_replace.php:360 +#: libraries/messages.inc.php:878 sql.php:516 tbl_replace.php:360 #, fuzzy msgid "Showing SQL query" msgstr "Tulı Sorawlar Kürsät" -#: libraries/messages.inc.php:883 tbl_change.php:1132 +#: libraries/messages.inc.php:879 tbl_change.php:1132 msgid "Show insert query" msgstr "" -#: libraries/messages.inc.php:886 server_status.php:273 +#: libraries/messages.inc.php:882 server_status.php:273 msgid "Show open tables" msgstr "Açıq tüşämä tezmäse" -#: libraries/messages.inc.php:887 main.php:219 +#: libraries/messages.inc.php:883 main.php:219 msgid "Show PHP information" msgstr "PHP turında" -#: libraries/messages.inc.php:889 server_status.php:278 +#: libraries/messages.inc.php:885 server_status.php:278 msgid "Show slave hosts" msgstr "" -#: libraries/messages.inc.php:890 server_status.php:284 +#: libraries/messages.inc.php:886 server_status.php:284 msgid "Show slave status" msgstr "" -#: libraries/messages.inc.php:891 +#: libraries/messages.inc.php:887 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/messages.inc.php:892 +#: libraries/messages.inc.php:888 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/messages.inc.php:893 +#: libraries/messages.inc.php:889 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -5270,78 +5270,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/messages.inc.php:894 +#: libraries/messages.inc.php:890 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/messages.inc.php:895 +#: libraries/messages.inc.php:891 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/messages.inc.php:896 +#: libraries/messages.inc.php:892 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/messages.inc.php:897 +#: libraries/messages.inc.php:893 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/messages.inc.php:898 +#: libraries/messages.inc.php:894 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/messages.inc.php:899 +#: libraries/messages.inc.php:895 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/messages.inc.php:900 +#: libraries/messages.inc.php:896 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/messages.inc.php:901 +#: libraries/messages.inc.php:897 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/messages.inc.php:902 +#: libraries/messages.inc.php:898 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/messages.inc.php:903 +#: libraries/messages.inc.php:899 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/messages.inc.php:904 +#: libraries/messages.inc.php:900 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: libraries/messages.inc.php:905 +#: libraries/messages.inc.php:901 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/messages.inc.php:906 +#: libraries/messages.inc.php:902 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: libraries/messages.inc.php:907 +#: libraries/messages.inc.php:903 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -5349,7 +5349,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/messages.inc.php:908 +#: libraries/messages.inc.php:904 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -5357,43 +5357,43 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/messages.inc.php:909 +#: libraries/messages.inc.php:905 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/messages.inc.php:910 +#: libraries/messages.inc.php:906 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/messages.inc.php:911 +#: libraries/messages.inc.php:907 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/messages.inc.php:912 +#: libraries/messages.inc.php:908 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/messages.inc.php:913 +#: libraries/messages.inc.php:909 #, fuzzy msgid "The number of pages currently dirty." msgstr "Yaratılğan bit sanı bu." -#: libraries/messages.inc.php:914 +#: libraries/messages.inc.php:910 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/messages.inc.php:915 +#: libraries/messages.inc.php:911 msgid "The number of free pages." msgstr "Buş bitlär sanı." -#: libraries/messages.inc.php:916 +#: libraries/messages.inc.php:912 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/messages.inc.php:917 +#: libraries/messages.inc.php:913 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -5401,33 +5401,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/messages.inc.php:918 +#: libraries/messages.inc.php:914 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/messages.inc.php:919 +#: libraries/messages.inc.php:915 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/messages.inc.php:920 +#: libraries/messages.inc.php:916 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/messages.inc.php:921 +#: libraries/messages.inc.php:917 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/messages.inc.php:922 +#: libraries/messages.inc.php:918 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/messages.inc.php:923 +#: libraries/messages.inc.php:919 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -5436,92 +5436,92 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/messages.inc.php:924 +#: libraries/messages.inc.php:920 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/messages.inc.php:925 +#: libraries/messages.inc.php:921 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/messages.inc.php:926 +#: libraries/messages.inc.php:922 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/messages.inc.php:927 +#: libraries/messages.inc.php:923 #, fuzzy msgid "The current number of pending reads." msgstr "Uqılğan bit sanı bu." -#: libraries/messages.inc.php:928 +#: libraries/messages.inc.php:924 #, fuzzy msgid "The current number of pending writes." msgstr "Yazılğan bit sanı bu." -#: libraries/messages.inc.php:929 +#: libraries/messages.inc.php:925 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/messages.inc.php:930 +#: libraries/messages.inc.php:926 #, fuzzy msgid "The total number of data reads." msgstr "Uqılğan bit sanı bu." -#: libraries/messages.inc.php:931 +#: libraries/messages.inc.php:927 #, fuzzy msgid "The total number of data writes." msgstr "Yazılğan bit sanı bu." -#: libraries/messages.inc.php:932 +#: libraries/messages.inc.php:928 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/messages.inc.php:933 +#: libraries/messages.inc.php:929 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/messages.inc.php:934 +#: libraries/messages.inc.php:930 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/messages.inc.php:935 +#: libraries/messages.inc.php:931 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/messages.inc.php:936 +#: libraries/messages.inc.php:932 #, fuzzy msgid "The number of log write requests." msgstr "Tezelgän yazma sanı bu." -#: libraries/messages.inc.php:937 +#: libraries/messages.inc.php:933 #, fuzzy msgid "The number of physical writes to the log file." msgstr "Köndälek biremenä yazılğan bayt sanı bu." -#: libraries/messages.inc.php:938 +#: libraries/messages.inc.php:934 #, fuzzy msgid "The number of fsync() writes done to the log file." msgstr "Köndälek biremenä yazılğan bayt sanı bu." -#: libraries/messages.inc.php:939 +#: libraries/messages.inc.php:935 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/messages.inc.php:940 +#: libraries/messages.inc.php:936 msgid "Pending log file writes." msgstr "" -#: libraries/messages.inc.php:941 +#: libraries/messages.inc.php:937 msgid "The number of bytes written to the log file." msgstr "Köndälek biremenä yazılğan bayt sanı bu." -#: libraries/messages.inc.php:942 +#: libraries/messages.inc.php:938 msgid "The number of pages created." msgstr "Yaratılğan bit sanı bu." -#: libraries/messages.inc.php:943 +#: libraries/messages.inc.php:939 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -5530,135 +5530,135 @@ msgstr "" "values are counted in pages; the page size allows them to be easily " "converted to bytes." -#: libraries/messages.inc.php:944 +#: libraries/messages.inc.php:940 msgid "The number of pages read." msgstr "Uqılğan bit sanı bu." -#: libraries/messages.inc.php:945 +#: libraries/messages.inc.php:941 msgid "The number of pages written." msgstr "Yazılğan bit sanı bu." -#: libraries/messages.inc.php:946 +#: libraries/messages.inc.php:942 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/messages.inc.php:947 +#: libraries/messages.inc.php:943 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/messages.inc.php:948 +#: libraries/messages.inc.php:944 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/messages.inc.php:949 +#: libraries/messages.inc.php:945 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/messages.inc.php:950 +#: libraries/messages.inc.php:946 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/messages.inc.php:951 +#: libraries/messages.inc.php:947 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/messages.inc.php:952 +#: libraries/messages.inc.php:948 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/messages.inc.php:953 +#: libraries/messages.inc.php:949 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/messages.inc.php:954 +#: libraries/messages.inc.php:950 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/messages.inc.php:955 +#: libraries/messages.inc.php:951 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/messages.inc.php:956 +#: libraries/messages.inc.php:952 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: libraries/messages.inc.php:957 +#: libraries/messages.inc.php:953 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/messages.inc.php:958 +#: libraries/messages.inc.php:954 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/messages.inc.php:959 +#: libraries/messages.inc.php:955 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/messages.inc.php:960 +#: libraries/messages.inc.php:956 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/messages.inc.php:961 +#: libraries/messages.inc.php:957 #, fuzzy msgid "The number of physical writes of a key block to disk." msgstr "Köndälek biremenä yazılğan bayt sanı bu." -#: libraries/messages.inc.php:962 +#: libraries/messages.inc.php:958 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/messages.inc.php:963 +#: libraries/messages.inc.php:959 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/messages.inc.php:964 +#: libraries/messages.inc.php:960 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/messages.inc.php:965 +#: libraries/messages.inc.php:961 msgid "The number of files that are open." msgstr "Açıq toruçı birem sanı." -#: libraries/messages.inc.php:966 +#: libraries/messages.inc.php:962 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/messages.inc.php:967 +#: libraries/messages.inc.php:963 msgid "The number of tables that are open." msgstr "Açıq toruçı tüşämä sanı." -#: libraries/messages.inc.php:968 +#: libraries/messages.inc.php:964 msgid "The number of free memory blocks in query cache." msgstr "" -#: libraries/messages.inc.php:969 +#: libraries/messages.inc.php:965 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/messages.inc.php:970 +#: libraries/messages.inc.php:966 msgid "The number of cache hits." msgstr "Alxätergä turı kilü sanı bu." -#: libraries/messages.inc.php:971 +#: libraries/messages.inc.php:967 msgid "The number of queries added to the cache." msgstr "" -#: libraries/messages.inc.php:972 +#: libraries/messages.inc.php:968 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -5666,104 +5666,104 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/messages.inc.php:973 +#: libraries/messages.inc.php:969 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/messages.inc.php:974 +#: libraries/messages.inc.php:970 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/messages.inc.php:975 +#: libraries/messages.inc.php:971 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/messages.inc.php:976 +#: libraries/messages.inc.php:972 msgctxt "$strShowStatusReset" msgid "Reset" msgstr "Awdar" -#: libraries/messages.inc.php:977 +#: libraries/messages.inc.php:973 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/messages.inc.php:978 +#: libraries/messages.inc.php:974 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: libraries/messages.inc.php:979 +#: libraries/messages.inc.php:975 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/messages.inc.php:980 +#: libraries/messages.inc.php:976 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: libraries/messages.inc.php:981 +#: libraries/messages.inc.php:977 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/messages.inc.php:982 +#: libraries/messages.inc.php:978 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/messages.inc.php:983 +#: libraries/messages.inc.php:979 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/messages.inc.php:984 +#: libraries/messages.inc.php:980 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/messages.inc.php:985 +#: libraries/messages.inc.php:981 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/messages.inc.php:986 +#: libraries/messages.inc.php:982 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/messages.inc.php:987 +#: libraries/messages.inc.php:983 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/messages.inc.php:988 +#: libraries/messages.inc.php:984 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/messages.inc.php:989 +#: libraries/messages.inc.php:985 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/messages.inc.php:990 +#: libraries/messages.inc.php:986 msgid "The number of sorted rows." msgstr "Tezelgän yazma sanı bu." -#: libraries/messages.inc.php:991 +#: libraries/messages.inc.php:987 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/messages.inc.php:992 +#: libraries/messages.inc.php:988 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/messages.inc.php:993 +#: libraries/messages.inc.php:989 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -5771,18 +5771,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/messages.inc.php:994 +#: libraries/messages.inc.php:990 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/messages.inc.php:995 +#: libraries/messages.inc.php:991 msgid "The number of currently open connections." msgstr "Biredä açıq bulğan totaşu sanı." -#: libraries/messages.inc.php:996 +#: libraries/messages.inc.php:992 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -5790,75 +5790,75 @@ msgid "" "implementation.)" msgstr "" -#: libraries/messages.inc.php:997 +#: libraries/messages.inc.php:993 #, fuzzy msgid "The number of threads that are not sleeping." msgstr "Açıq toruçı birem sanı." -#: libraries/messages.inc.php:999 tbl_printview.php:75 +#: libraries/messages.inc.php:995 tbl_printview.php:75 msgid "Show tables" msgstr "Tüşämälär kürsätäse" -#: libraries/messages.inc.php:1000 libraries/sql_query_form.lib.php:396 +#: libraries/messages.inc.php:996 libraries/sql_query_form.lib.php:396 msgid " Show this query here again " msgstr " Bu sorawnı qabat kürsätäse" -#: libraries/messages.inc.php:1001 libraries/mysql_charsets.lib.php:217 +#: libraries/messages.inc.php:997 libraries/mysql_charsets.lib.php:217 #: libraries/mysql_charsets.lib.php:342 msgid "Simplified Chinese" msgstr "Ciñel Çinçä" -#: libraries/messages.inc.php:1002 tbl_operations.php:258 +#: libraries/messages.inc.php:998 tbl_operations.php:258 msgid "(singly)" msgstr "(sıñar)" -#: libraries/messages.inc.php:1005 libraries/replication_gui.lib.php:52 +#: libraries/messages.inc.php:1001 libraries/replication_gui.lib.php:52 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" msgstr "" -#: libraries/messages.inc.php:1006 libraries/mysql_charsets.lib.php:283 +#: libraries/messages.inc.php:1002 libraries/mysql_charsets.lib.php:283 msgid "Slovak" msgstr "Slovakça" -#: libraries/messages.inc.php:1007 libraries/mysql_charsets.lib.php:286 +#: libraries/messages.inc.php:1003 libraries/mysql_charsets.lib.php:286 msgid "Slovenian" msgstr "Slovença" -#: libraries/messages.inc.php:1008 pmd_general.php:95 +#: libraries/messages.inc.php:1004 pmd_general.php:95 msgid "Small/Big All" msgstr "" -#: libraries/messages.inc.php:1009 pmd_general.php:91 +#: libraries/messages.inc.php:1005 pmd_general.php:91 msgid "Snap to grid" msgstr "" -#: libraries/messages.inc.php:1011 server_synchronize.php:1167 +#: libraries/messages.inc.php:1007 server_synchronize.php:1167 msgid "Socket" msgstr "" -#: libraries/messages.inc.php:1013 server_status.php:259 +#: libraries/messages.inc.php:1009 server_status.php:259 msgid "Sorting" msgstr "Tezü" -#: libraries/messages.inc.php:1015 tbl_printview.php:310 tbl_structure.php:657 +#: libraries/messages.inc.php:1011 tbl_printview.php:310 tbl_structure.php:657 msgid "Space usage" msgstr "Totılğan Alan" -#: libraries/messages.inc.php:1016 libraries/mysql_charsets.lib.php:289 +#: libraries/messages.inc.php:1012 libraries/mysql_charsets.lib.php:289 msgid "Spanish" msgstr "İspança" -#: libraries/messages.inc.php:1019 +#: libraries/messages.inc.php:1015 msgid "Export type" msgstr "Çığaru ısulı" -#: libraries/messages.inc.php:1020 +#: libraries/messages.inc.php:1016 msgid "Export time in UTC" msgstr "" -#: libraries/messages.inc.php:1021 libraries/sqlparser.lib.php:173 +#: libraries/messages.inc.php:1017 libraries/sqlparser.lib.php:173 msgid "" "There is a chance that you may have found a bug in the SQL parser. Please " "examine your query closely, and check that the quotes are correct and not " @@ -5880,7 +5880,7 @@ msgstr "" "please reduce your SQL query input to the single query that causes problems, " "and submit a bug report with the data chunk in the CUT section below:" -#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:137 +#: libraries/messages.inc.php:1018 libraries/sqlparser.lib.php:137 msgid "" "There seems to be an error in your SQL query. The MySQL server error output " "below, if there is any, may also help you in diagnosing the problem" @@ -5888,420 +5888,420 @@ msgstr "" "There seems to be an error in your SQL query. The MySQL server error output " "below, if there is any, may also help you in diagnosing the problem" -#: libraries/messages.inc.php:1026 libraries/sqlparser.lib.php:495 +#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:495 msgid "Invalid Identifer" msgstr "Tanıtması Yaraqsız" -#: libraries/messages.inc.php:1027 libraries/sqlparser.lib.php:344 +#: libraries/messages.inc.php:1023 libraries/sqlparser.lib.php:344 msgid "Unclosed quote" msgstr "Yabılmağan cäyä" -#: libraries/messages.inc.php:1028 libraries/sqlparser.lib.php:612 +#: libraries/messages.inc.php:1024 libraries/sqlparser.lib.php:612 msgid "Unknown Punctuation String" msgstr "Unknown Punctuation String" -#: libraries/messages.inc.php:1030 server_replication.php:327 +#: libraries/messages.inc.php:1026 server_replication.php:327 #: server_replication.php:328 #, fuzzy msgid "Start" msgstr "Şmb" -#: libraries/messages.inc.php:1033 tbl_printview.php:369 tbl_structure.php:729 +#: libraries/messages.inc.php:1029 tbl_printview.php:369 tbl_structure.php:729 msgid "Statements" msgstr "Cömlä" -#: libraries/messages.inc.php:1034 tbl_printview.php:380 tbl_structure.php:741 +#: libraries/messages.inc.php:1030 tbl_printview.php:380 tbl_structure.php:741 msgid "static" msgstr "" -#: libraries/messages.inc.php:1035 server_status.php:388 +#: libraries/messages.inc.php:1031 server_status.php:388 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: libraries/messages.inc.php:1038 server_replication.php:327 +#: libraries/messages.inc.php:1034 server_replication.php:327 #: server_replication.php:328 msgid "Stop" msgstr "" -#: libraries/messages.inc.php:1039 server_engines.php:49 +#: libraries/messages.inc.php:1035 server_engines.php:49 msgid "Storage Engines" msgstr "Saqlaw Isulı" -#: libraries/messages.inc.php:1040 libraries/tbl_properties.inc.php:726 +#: libraries/messages.inc.php:1036 libraries/tbl_properties.inc.php:726 #: server_engines.php:58 tbl_operations.php:353 msgid "Storage Engine" msgstr "Saqlaw Isulı" -#: libraries/messages.inc.php:1042 +#: libraries/messages.inc.php:1038 msgid "CSV for MS Excel" msgstr "CSV bireme, MS Excel öçen" -#: libraries/messages.inc.php:1044 tbl_structure.php:516 tbl_structure.php:518 +#: libraries/messages.inc.php:1040 tbl_structure.php:516 tbl_structure.php:518 msgid "Propose table structure" msgstr "Tüşämä tözeleşenä küzätü" -#: libraries/messages.inc.php:1045 server_synchronize.php:424 +#: libraries/messages.inc.php:1041 server_synchronize.php:424 #: server_synchronize.php:867 #, fuzzy msgid "Structure Difference" msgstr "Tözeleşen genä" -#: libraries/messages.inc.php:1049 server_synchronize.php:265 +#: libraries/messages.inc.php:1045 server_synchronize.php:265 msgid "Structure Synchronization" msgstr "" -#: libraries/messages.inc.php:1050 libraries/sql_query_form.lib.php:462 +#: libraries/messages.inc.php:1046 libraries/sql_query_form.lib.php:462 msgid "Submit" msgstr "Künder" -#: libraries/messages.inc.php:1052 main.php:358 +#: libraries/messages.inc.php:1048 main.php:358 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " "issues." msgstr "" -#: libraries/messages.inc.php:1054 libraries/mysql_charsets.lib.php:295 +#: libraries/messages.inc.php:1050 libraries/mysql_charsets.lib.php:295 #: libraries/mysql_charsets.lib.php:392 msgid "Swedish" msgstr "İswäcçä" -#: libraries/messages.inc.php:1060 tbl_operations.php:556 +#: libraries/messages.inc.php:1056 tbl_operations.php:556 msgid "Switch to copied table" msgstr "Kübäytelgän tüşämägä küçäse" -#: libraries/messages.inc.php:1061 server_synchronize.php:1213 +#: libraries/messages.inc.php:1057 server_synchronize.php:1213 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." msgstr "" -#: libraries/messages.inc.php:1062 server_synchronize.php:451 +#: libraries/messages.inc.php:1058 server_synchronize.php:451 #: server_synchronize.php:896 msgid "Synchronize Databases" msgstr "" -#: libraries/messages.inc.php:1063 libraries/server_links.inc.php:92 +#: libraries/messages.inc.php:1059 libraries/server_links.inc.php:92 #: server_synchronize.php:1092 server_synchronize.php:1100 msgid "Synchronize" msgstr "" -#: libraries/messages.inc.php:1065 server_synchronize.php:430 +#: libraries/messages.inc.php:1061 server_synchronize.php:430 #: server_synchronize.php:873 msgid "Add column(s)" msgstr "" -#: libraries/messages.inc.php:1066 tbl_create.php:62 +#: libraries/messages.inc.php:1062 tbl_create.php:62 #, php-format msgid "Table %s already exists!" msgstr "%s atlı tüşämä bar inde!" -#: libraries/messages.inc.php:1067 server_synchronize.php:432 +#: libraries/messages.inc.php:1063 server_synchronize.php:432 #: server_synchronize.php:875 msgid "Alter column(s)" msgstr "" -#: libraries/messages.inc.php:1068 tbl_addfield.php:189 tbl_alter.php:103 +#: libraries/messages.inc.php:1064 tbl_addfield.php:189 tbl_alter.php:103 #: tbl_indexes.php:98 #, fuzzy, php-format msgid "Table %1$s has been altered successfully" msgstr "Saylanğan qullanuçını beterü uñışlı uzdı." -#: libraries/messages.inc.php:1069 server_synchronize.php:434 +#: libraries/messages.inc.php:1065 server_synchronize.php:434 #: server_synchronize.php:877 msgid "Apply index(s)" msgstr "" -#: libraries/messages.inc.php:1071 server_synchronize.php:446 +#: libraries/messages.inc.php:1067 server_synchronize.php:446 #: server_synchronize.php:890 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: libraries/messages.inc.php:1072 tbl_move_copy.php:82 +#: libraries/messages.inc.php:1068 tbl_move_copy.php:82 msgid "The table name is empty!" msgstr "Tüşämä adı kertelmi qaldı!" -#: libraries/messages.inc.php:1073 tbl_create.php:249 +#: libraries/messages.inc.php:1069 tbl_create.php:249 #, fuzzy, php-format msgid "Table %1$s has been created." msgstr "\"%s\" atlı tüşämä beterelde" -#: libraries/messages.inc.php:1076 tbl_operations.php:628 +#: libraries/messages.inc.php:1072 tbl_operations.php:628 #, php-format msgid "Table %s has been flushed" msgstr "\"%s\" atlı tüşämä awdarıldı" -#: libraries/messages.inc.php:1077 server_synchronize.php:436 +#: libraries/messages.inc.php:1073 server_synchronize.php:436 #: server_synchronize.php:879 msgid "Insert row(s)" msgstr "" -#: libraries/messages.inc.php:1078 libraries/tbl_links.inc.php:107 +#: libraries/messages.inc.php:1074 libraries/tbl_links.inc.php:107 #: libraries/tbl_links.inc.php:140 libraries/tbl_links.inc.php:141 msgid "Table seems to be empty!" msgstr "" -#: libraries/messages.inc.php:1079 tbl_operations.php:568 +#: libraries/messages.inc.php:1075 tbl_operations.php:568 msgid "Table maintenance" msgstr "Tüşämä eşkärtü" -#: libraries/messages.inc.php:1080 libraries/tbl_properties.inc.php:618 +#: libraries/messages.inc.php:1076 libraries/tbl_properties.inc.php:618 #: server_synchronize.php:428 server_synchronize.php:871 #, fuzzy msgid "Table name" msgstr "tüşämä adı" -#: libraries/messages.inc.php:1081 pdf_schema.php:1116 +#: libraries/messages.inc.php:1077 pdf_schema.php:1116 msgid "Table of contents" msgstr "Eçtälek isemlege" -#: libraries/messages.inc.php:1082 tbl_operations.php:334 +#: libraries/messages.inc.php:1078 tbl_operations.php:334 msgid "Table options" msgstr "Tüşämä köyläneşe" -#: libraries/messages.inc.php:1083 server_synchronize.php:431 +#: libraries/messages.inc.php:1079 server_synchronize.php:431 #: server_synchronize.php:874 msgid "Remove column(s)" msgstr "" -#: libraries/messages.inc.php:1084 server_synchronize.php:433 +#: libraries/messages.inc.php:1080 server_synchronize.php:433 #: server_synchronize.php:876 msgid "Remove index(s)" msgstr "" -#: libraries/messages.inc.php:1088 server_synchronize.php:435 +#: libraries/messages.inc.php:1084 server_synchronize.php:435 #: server_synchronize.php:878 msgid "Update row(s)" msgstr "" -#: libraries/messages.inc.php:1090 server_synchronize.php:942 +#: libraries/messages.inc.php:1086 server_synchronize.php:942 msgid "Target database has been synchronized with source database" msgstr "" -#: libraries/messages.inc.php:1091 server_privileges.php:392 +#: libraries/messages.inc.php:1087 server_privileges.php:392 #: server_privileges.php:527 server_privileges.php:1679 #: server_privileges.php:1685 msgid "Table-specific privileges" msgstr "Berär tüşämä öçen xoquqlar" -#: libraries/messages.inc.php:1092 server_status.php:254 +#: libraries/messages.inc.php:1088 server_status.php:254 msgid "Temporary data" msgstr "Çaqlı birem" -#: libraries/messages.inc.php:1093 tbl_change.php:728 +#: libraries/messages.inc.php:1089 tbl_change.php:728 msgid " Because of its length,
this field might not be editable " msgstr " Because of its length,
this field might not be editable" -#: libraries/messages.inc.php:1094 +#: libraries/messages.inc.php:1090 msgid "Texy! text" msgstr "" -#: libraries/messages.inc.php:1095 libraries/mysql_charsets.lib.php:298 +#: libraries/messages.inc.php:1091 libraries/mysql_charsets.lib.php:298 #: libraries/mysql_charsets.lib.php:395 msgid "Thai" msgstr "Tayça" -#: libraries/messages.inc.php:1102 libraries/replication_gui.lib.php:308 +#: libraries/messages.inc.php:1098 libraries/replication_gui.lib.php:308 #: server_privileges.php:734 msgid "This Host" msgstr "Bu Sanaq" -#: libraries/messages.inc.php:1103 server_status.php:252 +#: libraries/messages.inc.php:1099 server_status.php:252 msgid "Threads" msgstr "Ceplär" -#: libraries/messages.inc.php:1104 server_processlist.php:22 +#: libraries/messages.inc.php:1100 server_processlist.php:22 #, php-format msgid "Thread %s was successfully killed." msgstr "%s cebe uñışlı üterelgän buldı." -#: libraries/messages.inc.php:1106 +#: libraries/messages.inc.php:1102 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." msgstr "" -#: libraries/messages.inc.php:1109 pmd_pdf.php:94 +#: libraries/messages.inc.php:1105 pmd_pdf.php:94 msgid "to/from page" msgstr "" -#: libraries/messages.inc.php:1110 pdf_pages.php:343 +#: libraries/messages.inc.php:1106 pdf_pages.php:343 msgid "Toggle scratchboard" msgstr "Toggle scratchboard" -#: libraries/messages.inc.php:1111 pmd_general.php:99 +#: libraries/messages.inc.php:1107 pmd_general.php:99 msgid "Toggle small/big" msgstr "" -#: libraries/messages.inc.php:1112 pmd_help.php:27 +#: libraries/messages.inc.php:1108 pmd_help.php:27 msgid "To select relation, click :" msgstr "" -#: libraries/messages.inc.php:1115 libraries/tbl_links.inc.php:149 +#: libraries/messages.inc.php:1111 libraries/tbl_links.inc.php:149 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" -#: libraries/messages.inc.php:1116 tbl_tracking.php:655 +#: libraries/messages.inc.php:1112 tbl_tracking.php:655 msgid "Activate now" msgstr "" -#: libraries/messages.inc.php:1117 tbl_tracking.php:653 +#: libraries/messages.inc.php:1113 tbl_tracking.php:653 #, php-format msgid "Activate tracking for %s.%s" msgstr "" -#: libraries/messages.inc.php:1118 tbl_tracking.php:221 +#: libraries/messages.inc.php:1114 tbl_tracking.php:221 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/messages.inc.php:1119 tbl_tracking.php:688 +#: libraries/messages.inc.php:1115 tbl_tracking.php:688 #, fuzzy msgid "Create version" msgstr "Server söreme" -#: libraries/messages.inc.php:1120 tbl_tracking.php:668 +#: libraries/messages.inc.php:1116 tbl_tracking.php:668 #, php-format msgid "Create version %s of %s.%s" msgstr "" -#: libraries/messages.inc.php:1122 tbl_tracking.php:412 +#: libraries/messages.inc.php:1118 tbl_tracking.php:412 msgid "Data definition statement" msgstr "" -#: libraries/messages.inc.php:1123 tbl_tracking.php:463 +#: libraries/messages.inc.php:1119 tbl_tracking.php:463 msgid "Data manipulation statement" msgstr "" -#: libraries/messages.inc.php:1124 tbl_tracking.php:410 tbl_tracking.php:461 +#: libraries/messages.inc.php:1120 tbl_tracking.php:410 tbl_tracking.php:461 #, fuzzy msgid "Date" msgstr "Eçtälek" -#: libraries/messages.inc.php:1125 tbl_tracking.php:642 +#: libraries/messages.inc.php:1121 tbl_tracking.php:642 msgid "Deactivate now" msgstr "" -#: libraries/messages.inc.php:1126 tbl_tracking.php:640 +#: libraries/messages.inc.php:1122 tbl_tracking.php:640 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "" -#: libraries/messages.inc.php:1127 tbl_tracking.php:521 +#: libraries/messages.inc.php:1123 tbl_tracking.php:521 #, fuzzy, php-format msgid "Export as %s" msgstr "Çığaru ısulı" -#: libraries/messages.inc.php:1130 tbl_tracking.php:251 tbl_tracking.php:379 +#: libraries/messages.inc.php:1126 tbl_tracking.php:251 tbl_tracking.php:379 msgid "Close" msgstr "" -#: libraries/messages.inc.php:1131 tbl_tracking.php:114 +#: libraries/messages.inc.php:1127 tbl_tracking.php:114 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/messages.inc.php:1133 tbl_tracking.php:397 tbl_tracking.php:504 +#: libraries/messages.inc.php:1129 tbl_tracking.php:397 tbl_tracking.php:504 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "" -#: libraries/messages.inc.php:1134 tbl_tracking.php:561 +#: libraries/messages.inc.php:1130 tbl_tracking.php:561 msgid "Show versions" msgstr "" -#: libraries/messages.inc.php:1135 tbl_tracking.php:507 +#: libraries/messages.inc.php:1131 tbl_tracking.php:507 msgid "SQL dump (file download)" msgstr "" -#: libraries/messages.inc.php:1136 tbl_tracking.php:508 +#: libraries/messages.inc.php:1132 tbl_tracking.php:508 msgid "SQL dump" msgstr "" -#: libraries/messages.inc.php:1137 tbl_tracking.php:213 +#: libraries/messages.inc.php:1133 tbl_tracking.php:213 msgid "SQL statements executed." msgstr "" -#: libraries/messages.inc.php:1138 +#: libraries/messages.inc.php:1134 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/messages.inc.php:1139 tbl_tracking.php:509 +#: libraries/messages.inc.php:1135 tbl_tracking.php:509 msgid "SQL execution" msgstr "" -#: libraries/messages.inc.php:1140 tbl_tracking.php:230 +#: libraries/messages.inc.php:1136 tbl_tracking.php:230 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/messages.inc.php:1141 tbl_tracking.php:381 +#: libraries/messages.inc.php:1137 tbl_tracking.php:381 msgid "Tracking statements" msgstr "" -#: libraries/messages.inc.php:1148 tbl_tracking.php:593 +#: libraries/messages.inc.php:1144 tbl_tracking.php:593 #, fuzzy msgid "Version" msgstr "Farsíça" -#: libraries/messages.inc.php:1149 tbl_tracking.php:672 +#: libraries/messages.inc.php:1145 tbl_tracking.php:672 msgid "Track these data definition statements:" msgstr "" -#: libraries/messages.inc.php:1150 tbl_tracking.php:680 +#: libraries/messages.inc.php:1146 tbl_tracking.php:680 msgid "Track these data manipulation statements:" msgstr "" -#: libraries/messages.inc.php:1155 tbl_tracking.php:411 tbl_tracking.php:462 +#: libraries/messages.inc.php:1151 tbl_tracking.php:411 tbl_tracking.php:462 #, fuzzy msgid "Username" msgstr "Atama:" -#: libraries/messages.inc.php:1156 tbl_tracking.php:203 +#: libraries/messages.inc.php:1152 tbl_tracking.php:203 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "" -#: libraries/messages.inc.php:1157 tbl_tracking.php:187 +#: libraries/messages.inc.php:1153 tbl_tracking.php:187 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "" -#: libraries/messages.inc.php:1158 tbl_tracking.php:195 +#: libraries/messages.inc.php:1154 tbl_tracking.php:195 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "" -#: libraries/messages.inc.php:1159 tbl_tracking.php:262 +#: libraries/messages.inc.php:1155 tbl_tracking.php:262 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/messages.inc.php:1161 tbl_tracking.php:220 +#: libraries/messages.inc.php:1157 tbl_tracking.php:220 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/messages.inc.php:1162 libraries/mysql_charsets.lib.php:219 +#: libraries/messages.inc.php:1158 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:362 msgid "Traditional Chinese" msgstr "Ğädäti Çinçä" -#: libraries/messages.inc.php:1163 libraries/mysql_charsets.lib.php:292 +#: libraries/messages.inc.php:1159 libraries/mysql_charsets.lib.php:292 msgid "Traditional Spanish" msgstr "Ğädäti İspança" -#: libraries/messages.inc.php:1164 server_status.php:388 +#: libraries/messages.inc.php:1160 server_status.php:388 msgid "Traffic" msgstr "Taşım" -#: libraries/messages.inc.php:1165 server_status.php:261 +#: libraries/messages.inc.php:1161 server_status.php:261 msgid "Transaction coordinator" msgstr "Eş-ara idäräçese" -#: libraries/messages.inc.php:1166 +#: libraries/messages.inc.php:1162 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 " @@ -6313,13 +6313,13 @@ msgstr "" "table row containing the filename. If you provide a second option you need " "to have the first option set to an empty string" -#: libraries/messages.inc.php:1167 +#: libraries/messages.inc.php:1163 msgid "" "Displays hexadecimal representation of data. Optional first parameter " "specifies how often space will be added (defaults to 2 nibbles)." msgstr "" -#: libraries/messages.inc.php:1168 +#: libraries/messages.inc.php:1164 msgid "" "Displays a clickable thumbnail. The options are the maximum width and height " "in pixels. The original aspect ratio is preserved." @@ -6327,15 +6327,15 @@ msgstr "" "Displays a clickable thumbnail; options: width,height in pixels (keeps the " "original ratio)" -#: libraries/messages.inc.php:1169 +#: libraries/messages.inc.php:1165 msgid "Displays a link to download this image." msgstr "Displays a link to this image (direct blob download, i.e.)." -#: libraries/messages.inc.php:1170 +#: libraries/messages.inc.php:1166 msgid "See image/jpeg: inline" msgstr "See image/jpeg: inline" -#: libraries/messages.inc.php:1171 +#: libraries/messages.inc.php:1167 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 " @@ -6347,7 +6347,7 @@ msgid "" "gmdate() function." msgstr "" -#: libraries/messages.inc.php:1172 +#: libraries/messages.inc.php:1168 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 " @@ -6371,13 +6371,13 @@ msgstr "" "a NOWRAP to the content cell so that the whole output will be shown without " "reformatting (Default 1)" -#: libraries/messages.inc.php:1173 +#: libraries/messages.inc.php:1169 msgid "" "Displays the contents of the field as-is, without running it through " "htmlspecialchars(). That is, the field is assumed to contain valid HTML." msgstr "Preserves original formatting of the field. No Escaping is done." -#: libraries/messages.inc.php:1174 +#: libraries/messages.inc.php:1170 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 " @@ -6387,7 +6387,7 @@ msgstr "" "is a prefix like \"http://domain.com/\", second option is the width in " "pixels, third is the height." -#: libraries/messages.inc.php:1175 +#: libraries/messages.inc.php:1171 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 " @@ -6396,11 +6396,11 @@ msgstr "" "Displays a link, the field contains the filename; first option is a prefix " "like \"http://domain.com/\", second option is a title for the link." -#: libraries/messages.inc.php:1176 +#: libraries/messages.inc.php:1172 msgid "Formats text as SQL query with syntax highlighting." msgstr "" -#: libraries/messages.inc.php:1177 +#: libraries/messages.inc.php:1173 msgid "" "Displays a part of a string. The first option is the number of characters to " "skip from the beginning of the string (Default 0). The second option is the " @@ -6414,69 +6414,69 @@ msgstr "" "defines which chars will be appended to the output when a substring is " "returned (Default: ...) ." -#: libraries/messages.inc.php:1179 server_binlog.php:183 server_binlog.php:186 +#: libraries/messages.inc.php:1175 server_binlog.php:183 server_binlog.php:186 #: server_processlist.php:49 server_processlist.php:51 msgid "Truncate Shown Queries" msgstr "Sorawnı Qısqartıp Kürsätäse" -#: libraries/messages.inc.php:1180 libraries/mysql_charsets.lib.php:301 +#: libraries/messages.inc.php:1176 libraries/mysql_charsets.lib.php:301 #: libraries/mysql_charsets.lib.php:389 msgid "Turkish" msgstr "Törekçä" -#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:304 +#: libraries/messages.inc.php:1179 libraries/mysql_charsets.lib.php:304 #: libraries/mysql_charsets.lib.php:386 msgid "Ukrainian" msgstr "Ukrainça" -#: libraries/messages.inc.php:1185 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:1181 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 msgid "Unicode" msgstr "Unicode" -#: libraries/messages.inc.php:1187 libraries/mysql_charsets.lib.php:398 +#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:398 #: libraries/mysql_charsets.lib.php:405 msgid "unknown" msgstr "belgesez" -#: libraries/messages.inc.php:1190 server_privileges.php:1152 +#: libraries/messages.inc.php:1186 server_privileges.php:1152 #, php-format msgid "You have updated the privileges for %s." msgstr "You have updated the privileges for %s." -#: libraries/messages.inc.php:1191 user_password.php:112 +#: libraries/messages.inc.php:1187 user_password.php:112 msgid "The profile has been updated." msgstr "The profile has been updated." -#: libraries/messages.inc.php:1193 libraries/relation.lib.php:138 +#: libraries/messages.inc.php:1189 libraries/relation.lib.php:138 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "Sineñ Column_comments Tüşämä yañartu eşe turında Qullanmada qarísı" -#: libraries/messages.inc.php:1194 +#: libraries/messages.inc.php:1190 #, php-format msgid "You should upgrade to %s %s or later." msgstr "You should upgrade to %s %s or later." -#: libraries/messages.inc.php:1204 tbl_printview.php:314 tbl_structure.php:661 +#: libraries/messages.inc.php:1200 tbl_printview.php:314 tbl_structure.php:661 msgid "Usage" msgstr "Totılu" -#: libraries/messages.inc.php:1205 +#: libraries/messages.inc.php:1201 msgid "Enclose table and field names with backquotes" msgstr "Tüşämä/alan isemnären kirequote eçenä salası" -#: libraries/messages.inc.php:1206 libraries/replication_gui.lib.php:314 +#: libraries/messages.inc.php:1202 libraries/replication_gui.lib.php:314 #: server_privileges.php:740 msgid "Use Host Table" msgstr "Host Tüşämä eçennän" -#: libraries/messages.inc.php:1207 server_privileges.php:848 +#: libraries/messages.inc.php:1203 server_privileges.php:848 #, php-format msgid "The user %s already exists!" msgstr "\"%s\" atlı qullanuçı bar inde!" -#: libraries/messages.inc.php:1209 libraries/replication_gui.lib.php:55 +#: libraries/messages.inc.php:1205 libraries/replication_gui.lib.php:55 #: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245 #: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255 #: server_privileges.php:672 server_privileges.php:675 @@ -6484,37 +6484,37 @@ msgstr "\"%s\" atlı qullanuçı bar inde!" msgid "User name" msgstr "İreşü iseme" -#: libraries/messages.inc.php:1210 server_privileges.php:1645 +#: libraries/messages.inc.php:1206 server_privileges.php:1645 msgid "The selected user was not found in the privilege table." msgstr "Bu qullanuçı xoquqlar tüşämä eçendä tabılmadı." -#: libraries/messages.inc.php:1211 server_privileges.php:1365 +#: libraries/messages.inc.php:1207 server_privileges.php:1365 msgid "User overview" msgstr "Qullanuçılar tezmäse" -#: libraries/messages.inc.php:1212 server_privileges.php:1261 +#: libraries/messages.inc.php:1208 server_privileges.php:1261 msgid "The selected users have been deleted successfully." msgstr "Saylanğan qullanuçını beterü uñışlı uzdı." -#: libraries/messages.inc.php:1213 server_privileges.php:2026 +#: libraries/messages.inc.php:1209 server_privileges.php:2026 #, php-format msgid "Users having access to "%s"" msgstr "\"%s\" belän eşläw xoquqı bulğan qullanuçılar" -#: libraries/messages.inc.php:1214 main.php:189 server_privileges.php:1350 +#: libraries/messages.inc.php:1210 main.php:189 server_privileges.php:1350 #: server_privileges.php:1497 server_privileges.php:1611 #: server_privileges.php:2029 server_processlist.php:54 msgid "User" msgstr "Qullanuçı" -#: libraries/messages.inc.php:1215 tbl_change.php:1171 +#: libraries/messages.inc.php:1211 tbl_change.php:1171 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Ber bäyädän ikençegä küçü öçen TAB töymäsen qullanası, başqa cirgä küçü " "öçen, CTRL+uq töymäläre bar" -#: libraries/messages.inc.php:1217 libraries/replication_gui.lib.php:251 +#: libraries/messages.inc.php:1213 libraries/replication_gui.lib.php:251 #: libraries/replication_gui.lib.php:319 libraries/replication_gui.lib.php:342 #: server_privileges.php:678 server_privileges.php:745 #: server_privileges.php:769 server_privileges.php:1889 @@ -6522,7 +6522,7 @@ msgstr "" msgid "Use text field" msgstr "Bu mätennän" -#: libraries/messages.inc.php:1221 libraries/sqlvalidator.lib.php:68 +#: libraries/messages.inc.php:1217 libraries/sqlvalidator.lib.php:68 #, php-format msgid "" "The SQL validator could not be initialized. Please check if you have " @@ -6531,88 +6531,88 @@ msgstr "" "SQL-tikşerüçe köylänmägän. Bu kiräk bulğan php-yöklämäne köyläw turında %" "squllanmada%s uqıp bula." -#: libraries/messages.inc.php:1222 libraries/replication_gui.lib.php:111 +#: libraries/messages.inc.php:1218 libraries/replication_gui.lib.php:111 #: server_status.php:627 tbl_change.php:324 tbl_printview.php:370 #: tbl_select.php:139 tbl_structure.php:730 msgid "Value" msgstr "Bäyä" -#: libraries/messages.inc.php:1223 libraries/replication_gui.lib.php:110 +#: libraries/messages.inc.php:1219 libraries/replication_gui.lib.php:110 #: libraries/sql_query_form.lib.php:445 server_status.php:626 #: server_variables.php:52 msgid "Variable" msgstr "Üzgärmä" -#: libraries/messages.inc.php:1225 server_export.php:21 +#: libraries/messages.inc.php:1221 server_export.php:21 msgid "View dump (schema) of databases" msgstr "Biremleklärneñ eçtälegen (tözeleşen) çığaru" -#: libraries/messages.inc.php:1227 tbl_export.php:23 +#: libraries/messages.inc.php:1223 tbl_export.php:23 msgid "View dump (schema) of table" msgstr "Tüşämä eçtälegen (tözeleşen) çığaru" -#: libraries/messages.inc.php:1231 view_create.php:142 +#: libraries/messages.inc.php:1227 view_create.php:142 msgid "VIEW name" msgstr "" -#: libraries/messages.inc.php:1237 main.php:205 +#: libraries/messages.inc.php:1233 main.php:205 msgid "Web server" msgstr "" -#: libraries/messages.inc.php:1239 libraries/mysql_charsets.lib.php:277 +#: libraries/messages.inc.php:1235 libraries/mysql_charsets.lib.php:277 #: libraries/mysql_charsets.lib.php:325 msgid "West European" msgstr "Batış Awrupı" -#: libraries/messages.inc.php:1240 main.php:230 +#: libraries/messages.inc.php:1236 main.php:230 msgid "Wiki" msgstr "" -#: libraries/messages.inc.php:1241 server_privileges.php:2138 +#: libraries/messages.inc.php:1237 server_privileges.php:2138 msgid "wildcard" msgstr "almaşbilge" -#: libraries/messages.inc.php:1248 +#: libraries/messages.inc.php:1244 #, fuzzy msgid "Export contents" msgstr "Çığaru ısulı" -#: libraries/messages.inc.php:1249 +#: libraries/messages.inc.php:1245 msgid "Export functions" msgstr "" -#: libraries/messages.inc.php:1250 +#: libraries/messages.inc.php:1246 msgid "Export procedures" msgstr "" -#: libraries/messages.inc.php:1251 +#: libraries/messages.inc.php:1247 msgid "Export Structure Schemas (recommended)" msgstr "" -#: libraries/messages.inc.php:1252 +#: libraries/messages.inc.php:1248 #, fuzzy msgid "Export tables" msgstr "Çığaru ısulı" -#: libraries/messages.inc.php:1253 +#: libraries/messages.inc.php:1249 #, fuzzy msgid "Export triggers" msgstr "Çığaru ısulı" -#: libraries/messages.inc.php:1254 +#: libraries/messages.inc.php:1250 #, fuzzy msgid "Export views" msgstr "Çığaru ısulı" -#: libraries/messages.inc.php:1255 +#: libraries/messages.inc.php:1251 msgid "XML" msgstr "XML" -#: libraries/messages.inc.php:1259 server_privileges.php:592 +#: libraries/messages.inc.php:1255 server_privileges.php:592 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Beläse: 0 (nül) kertelgän çaqta çikläwe beterelä." -#: libraries/messages.inc.php:1260 +#: libraries/messages.inc.php:1256 msgid "\"zipped\"" msgstr "\"ziple\"" diff --git a/po/uk.po b/po/uk.po index fa506f7ef..aa49d8189 100644 --- a/po/uk.po +++ b/po/uk.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.4.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2010-05-13 11:25+0200\n" +"POT-Creation-Date: 2010-05-13 11:30+0200\n" "PO-Revision-Date: 2010-03-12 09:19+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: ukrainian \n" @@ -13,19 +13,19 @@ msgstr "" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:38 browse_foreigners.php:59 -#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:870 +#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:866 #: server_privileges.php:1475 msgid "Show all" msgstr "Показати все" #: browse_foreigners.php:82 db_operations.php:648 -#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:394 -#: libraries/export/pdf.php:147 libraries/messages.inc.php:597 +#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394 +#: libraries/export/pdf.php:147 libraries/messages.inc.php:593 #: pdf_schema.php:283 pdf_schema.php:1123 pdf_schema.php:1139 msgid "Page number:" msgstr "Номер сторінки:" -#: browse_foreigners.php:132 libraries/messages.inc.php:1242 +#: browse_foreigners.php:132 libraries/messages.inc.php:1238 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -35,7 +35,7 @@ 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/db_links.inc.php:75 -#: libraries/messages.inc.php:841 libraries/tbl_links.inc.php:63 +#: libraries/messages.inc.php:837 libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Шукати" @@ -44,12 +44,12 @@ msgstr "Шукати" #: db_search.php:362 db_structure.php:567 js/messages.php:48 #: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2267 +#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 #: 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 #: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614 -#: libraries/messages.inc.php:361 libraries/replication_gui.lib.php:73 +#: libraries/messages.inc.php:357 libraries/replication_gui.lib.php:73 #: libraries/replication_gui.lib.php:365 libraries/select_server.lib.php:104 #: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477 #: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782 @@ -69,33 +69,33 @@ msgid "Go" msgstr "Вперед" #: browse_foreigners.php:168 browse_foreigners.php:172 -#: libraries/Index.class.php:442 libraries/messages.inc.php:459 +#: libraries/Index.class.php:442 libraries/messages.inc.php:455 #: tbl_tracking.php:320 msgid "Keyname" msgstr "Ім'я ключа" #: browse_foreigners.php:169 browse_foreigners.php:171 -#: libraries/messages.inc.php:252 server_collations.php:55 +#: libraries/messages.inc.php:248 server_collations.php:55 #: server_collations.php:67 server_engines.php:59 server_status.php:628 msgid "Description" msgstr "Опис" #: browse_foreigners.php:247 browse_foreigners.php:256 #: browse_foreigners.php:268 browse_foreigners.php:276 -#: libraries/messages.inc.php:1218 +#: libraries/messages.inc.php:1214 msgid "Use this value" msgstr "" -#: db_create.php:46 libraries/messages.inc.php:215 +#: db_create.php:46 libraries/messages.inc.php:211 #, php-format msgid "Database %1$s has been created." msgstr "" -#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:232 +#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:228 msgid "Database comment: " msgstr "Коментар бази даних: " -#: db_datadict.php:165 libraries/messages.inc.php:1070 +#: db_datadict.php:165 libraries/messages.inc.php:1066 #: libraries/tbl_properties.inc.php:724 pdf_schema.php:1236 #: tbl_operations.php:345 tbl_printview.php:130 msgid "Table comments" @@ -104,7 +104,7 @@ msgstr "Коментар до таблиці" #: db_datadict.php:174 db_qbe.php:174 libraries/Index.class.php:446 #: libraries/export/htmlword.php:244 libraries/export/latex.php:360 #: libraries/export/odt.php:294 libraries/export/texytext.php:233 -#: libraries/messages.inc.php:317 libraries/tbl_properties.inc.php:99 +#: libraries/messages.inc.php:313 libraries/tbl_properties.inc.php:99 #: libraries/tbl_properties.inc.php:275 pdf_schema.php:1262 #: pdf_schema.php:1283 tbl_change.php:308 tbl_indexes.php:189 #: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135 @@ -116,7 +116,7 @@ msgstr "Поле" #: libraries/db_events.inc.php:31 libraries/db_routines.inc.php:42 #: 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/messages.inc.php:1181 +#: libraries/export/texytext.php:234 libraries/messages.inc.php:1177 #: libraries/tbl_properties.inc.php:100 pdf_schema.php:1263 #: pdf_schema.php:1284 server_privileges.php:2031 tbl_change.php:287 #: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313 @@ -128,7 +128,7 @@ msgstr "Тип" #: db_datadict.php:177 libraries/Index.class.php:449 #: libraries/export/htmlword.php:246 libraries/export/latex.php:360 #: libraries/export/odt.php:300 libraries/export/texytext.php:235 -#: libraries/messages.inc.php:576 libraries/tbl_properties.inc.php:109 +#: libraries/messages.inc.php:572 libraries/tbl_properties.inc.php:109 #: pdf_schema.php:1265 pdf_schema.php:1286 tbl_change.php:323 #: tbl_printview.php:145 tbl_structure.php:181 tbl_tracking.php:276 #: tbl_tracking.php:327 @@ -137,7 +137,7 @@ msgstr "Нуль" #: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 -#: libraries/export/texytext.php:236 libraries/messages.inc.php:238 +#: libraries/export/texytext.php:236 libraries/messages.inc.php:234 #: libraries/tbl_properties.inc.php:106 pdf_schema.php:1266 #: pdf_schema.php:1287 tbl_printview.php:146 tbl_structure.php:182 #: tbl_tracking.php:277 @@ -146,14 +146,14 @@ msgstr "По замовчуванню" #: db_datadict.php:182 libraries/export/htmlword.php:249 #: libraries/export/latex.php:362 libraries/export/odt.php:307 -#: libraries/export/texytext.php:238 libraries/messages.inc.php:483 +#: libraries/export/texytext.php:238 libraries/messages.inc.php:479 #: pdf_schema.php:1268 pdf_schema.php:1289 tbl_printview.php:150 msgid "Links to" msgstr "Лінки до" #: db_datadict.php:184 db_printview.php:112 libraries/export/htmlword.php:252 #: libraries/export/latex.php:365 libraries/export/odt.php:312 -#: libraries/export/texytext.php:241 libraries/messages.inc.php:163 +#: libraries/export/texytext.php:241 libraries/messages.inc.php:159 #: libraries/tbl_properties.inc.php:130 pdf_schema.php:1279 #: pdf_schema.php:1290 tbl_printview.php:152 msgid "Comments" @@ -162,7 +162,7 @@ msgstr "Коментарі" #: db_datadict.php:267 libraries/Index.class.php:359 #: 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/messages.inc.php:559 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:555 #: libraries/mult_submits.inc.php:263 pdf_schema.php:1344 #: server_privileges.php:1529 server_privileges.php:1540 #: server_privileges.php:1850 server_privileges.php:1855 @@ -174,7 +174,7 @@ msgstr "Ні" #: db_datadict.php:267 libraries/Index.class.php:360 #: libraries/Index.class.php:385 libraries/export/htmlword.php:322 #: libraries/export/latex.php:430 libraries/export/odt.php:368 -#: libraries/export/texytext.php:311 libraries/messages.inc.php:1257 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:1253 #: libraries/mult_submits.inc.php:45 libraries/mult_submits.inc.php:50 #: libraries/mult_submits.inc.php:55 libraries/mult_submits.inc.php:60 #: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:101 @@ -188,108 +188,108 @@ msgstr "Ні" msgid "Yes" msgstr "Так" -#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:670 +#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:666 #: tbl_printview.php:498 msgid "Print" msgstr "Друк" -#: db_export.php:29 libraries/messages.inc.php:1226 +#: db_export.php:29 libraries/messages.inc.php:1222 msgid "View dump (schema) of database" msgstr "Переглянути дамп (схему) БД" #: db_export.php:33 db_printview.php:96 db_qbe.php:102 db_structure.php:51 -#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:568 +#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:564 #: navigation.php:346 msgid "No tables found in database." msgstr "В БД не виявлено таблиць." -#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:845 +#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:841 #: server_export.php:27 msgid "Select All" msgstr "Відмітити все" -#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1188 +#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1184 #: server_export.php:29 msgid "Unselect All" msgstr "Зняти всі відмітки" -#: db_operations.php:38 libraries/messages.inc.php:213 tbl_create.php:54 +#: db_operations.php:38 libraries/messages.inc.php:209 tbl_create.php:54 msgid "The database name is empty!" msgstr "" -#: db_operations.php:236 libraries/messages.inc.php:753 +#: db_operations.php:236 libraries/messages.inc.php:749 #, php-format msgid "Database %s has been renamed to %s" msgstr "" -#: db_operations.php:240 libraries/messages.inc.php:178 +#: db_operations.php:240 libraries/messages.inc.php:174 #, php-format msgid "Database %s has been copied to %s" msgstr "" -#: db_operations.php:410 libraries/messages.inc.php:236 +#: db_operations.php:410 libraries/messages.inc.php:232 msgid "Rename database to" msgstr "" -#: db_operations.php:415 libraries/messages.inc.php:161 +#: db_operations.php:415 libraries/messages.inc.php:157 #: server_processlist.php:57 msgid "Command" msgstr "Команда" -#: db_operations.php:425 libraries/messages.inc.php:58 tbl_change.php:1143 +#: db_operations.php:425 libraries/messages.inc.php:54 tbl_change.php:1143 msgid "and then" msgstr "" -#: db_operations.php:451 libraries/messages.inc.php:233 +#: db_operations.php:451 libraries/messages.inc.php:229 msgid "Copy database to" msgstr "" -#: db_operations.php:458 libraries/messages.inc.php:1043 +#: db_operations.php:458 libraries/messages.inc.php:1039 #: tbl_operations.php:526 tbl_tracking.php:388 msgid "Structure only" msgstr "Лише структуру" -#: db_operations.php:459 libraries/messages.inc.php:1041 +#: db_operations.php:459 libraries/messages.inc.php:1037 #: tbl_operations.php:527 tbl_tracking.php:390 msgid "Structure and data" msgstr "Структуру і дані" -#: db_operations.php:460 libraries/messages.inc.php:229 tbl_operations.php:528 +#: db_operations.php:460 libraries/messages.inc.php:225 tbl_operations.php:528 #: tbl_tracking.php:389 msgid "Data only" msgstr "Лише дані" -#: db_operations.php:468 libraries/messages.inc.php:186 +#: db_operations.php:468 libraries/messages.inc.php:182 msgid "CREATE DATABASE before copying" msgstr "" #: db_operations.php:471 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 -#: libraries/export/sql.php:82 libraries/messages.inc.php:30 +#: libraries/export/sql.php:82 libraries/messages.inc.php:26 #: tbl_operations.php:534 #, php-format msgid "Add %s" msgstr "" -#: db_operations.php:475 libraries/messages.inc.php:29 tbl_operations.php:297 +#: db_operations.php:475 libraries/messages.inc.php:25 tbl_operations.php:297 #: tbl_operations.php:536 msgid "Add AUTO_INCREMENT value" msgstr "" -#: db_operations.php:479 libraries/messages.inc.php:31 tbl_operations.php:543 +#: db_operations.php:479 libraries/messages.inc.php:27 tbl_operations.php:543 msgid "Add constraints" msgstr "" -#: db_operations.php:492 libraries/messages.inc.php:1059 +#: db_operations.php:492 libraries/messages.inc.php:1055 msgid "Switch to copied database" msgstr "" -#: db_operations.php:533 libraries/messages.inc.php:89 +#: db_operations.php:533 libraries/messages.inc.php:85 msgid "BLOB Repository" msgstr "" #: db_operations.php:536 db_tracking.php:76 libraries/common.lib.php:1350 -#: libraries/messages.inc.php:1037 libraries/server_links.inc.php:49 +#: libraries/messages.inc.php:1033 libraries/server_links.inc.php:49 #: server_processlist.php:59 tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "Статус" @@ -301,11 +301,11 @@ msgctxt "BLOB repository" msgid "Enabled" msgstr "дозволено" -#: db_operations.php:548 libraries/messages.inc.php:93 +#: db_operations.php:548 libraries/messages.inc.php:89 msgid "Disable" msgstr "" -#: db_operations.php:558 libraries/messages.inc.php:90 +#: db_operations.php:558 libraries/messages.inc.php:86 msgid "Damaged" msgstr "" @@ -323,12 +323,12 @@ msgctxt "BLOB repository" msgid "Disabled" msgstr "заблоковано" -#: db_operations.php:574 libraries/messages.inc.php:96 +#: db_operations.php:574 libraries/messages.inc.php:92 msgid "Enable" msgstr "" #: db_operations.php:598 libraries/Index.class.php:448 -#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:158 +#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:154 #: 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:361 @@ -337,7 +337,7 @@ msgstr "" msgid "Collation" msgstr "Порівняння" -#: db_operations.php:609 libraries/messages.inc.php:742 main.php:316 +#: db_operations.php:609 libraries/messages.inc.php:738 main.php:316 #: pdf_schema.php:34 #, php-format msgid "" @@ -347,58 +347,58 @@ msgstr "" "Додаткова можливість роботи із залінкованими таблицями деактивована. Для " "того, щоб довідатись чому, натисніть %sтут%s." -#: db_operations.php:645 libraries/messages.inc.php:264 pdf_pages.php:528 +#: db_operations.php:645 libraries/messages.inc.php:260 pdf_pages.php:528 msgid "Display PDF schema" msgstr "Показати PDF схему" -#: db_operations.php:661 libraries/messages.inc.php:877 pdf_pages.php:529 +#: db_operations.php:661 libraries/messages.inc.php:873 pdf_pages.php:529 msgid "Show grid" msgstr "Показати сітку" -#: db_operations.php:664 libraries/messages.inc.php:874 pdf_pages.php:530 +#: db_operations.php:664 libraries/messages.inc.php:870 pdf_pages.php:530 msgid "Show color" msgstr "Показати колір" -#: db_operations.php:666 libraries/messages.inc.php:998 pdf_pages.php:531 +#: db_operations.php:666 libraries/messages.inc.php:994 pdf_pages.php:531 msgid "Show dimension of tables" msgstr "Показати розміри таблиць" -#: db_operations.php:669 libraries/messages.inc.php:52 pdf_pages.php:532 +#: db_operations.php:669 libraries/messages.inc.php:48 pdf_pages.php:532 msgid "Display all tables with the same width" msgstr "показувати всі таблиці однакової ширини?" -#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:227 +#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:223 #: pdf_pages.php:533 msgid "Data Dictionary" msgstr "Словник даних" -#: db_operations.php:674 libraries/messages.inc.php:884 pdf_pages.php:534 +#: db_operations.php:674 libraries/messages.inc.php:880 pdf_pages.php:534 msgid "Only show keys" msgstr "" -#: db_operations.php:676 libraries/messages.inc.php:875 pdf_pages.php:535 +#: db_operations.php:676 libraries/messages.inc.php:871 pdf_pages.php:535 msgid "Data Dictionary Format" msgstr "Формат словника" -#: db_operations.php:678 libraries/messages.inc.php:464 pdf_pages.php:537 +#: db_operations.php:678 libraries/messages.inc.php:460 pdf_pages.php:537 msgid "Landscape" msgstr "Landscape" -#: db_operations.php:679 libraries/messages.inc.php:663 pdf_pages.php:538 +#: db_operations.php:679 libraries/messages.inc.php:659 pdf_pages.php:538 msgid "Portrait" msgstr "Portrait" -#: db_operations.php:682 libraries/messages.inc.php:599 pdf_pages.php:541 +#: db_operations.php:682 libraries/messages.inc.php:595 pdf_pages.php:541 msgid "Paper size" msgstr "Формат паперу" -#: db_operations.php:706 libraries/messages.inc.php:281 +#: db_operations.php:706 libraries/messages.inc.php:277 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 libraries/messages.inc.php:1087 +#: libraries/header.inc.php:126 libraries/messages.inc.php:1083 #: pdf_pages.php:405 server_privileges.php:1626 server_privileges.php:1682 #: server_privileges.php:1946 server_synchronize.php:423 #: server_synchronize.php:866 tbl_tracking.php:592 test/theme.php:75 @@ -406,176 +406,176 @@ msgid "Table" msgstr "таблиця " #: db_printview.php:105 libraries/db_structure.lib.php:56 -#: libraries/messages.inc.php:735 +#: libraries/messages.inc.php:731 msgid "Records" msgstr "Записи" #: db_printview.php:109 libraries/db_structure.lib.php:67 -#: libraries/messages.inc.php:1003 tbl_indexes.php:190 +#: libraries/messages.inc.php:999 tbl_indexes.php:190 msgid "Size" msgstr "Розмір" #: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 -#: libraries/export/sql.php:899 libraries/messages.inc.php:436 +#: libraries/export/sql.php:899 libraries/messages.inc.php:432 msgid "in use" msgstr "використовується" #: db_printview.php:187 libraries/db_info.inc.php:88 -#: libraries/export/sql.php:514 libraries/messages.inc.php:1032 +#: libraries/export/sql.php:514 libraries/messages.inc.php:1028 #: pdf_schema.php:1241 tbl_printview.php:434 tbl_structure.php:810 msgid "Creation" msgstr "Створено" #: db_printview.php:196 libraries/db_info.inc.php:93 -#: libraries/export/sql.php:519 libraries/messages.inc.php:1036 +#: libraries/export/sql.php:519 libraries/messages.inc.php:1032 #: pdf_schema.php:1246 tbl_printview.php:444 tbl_structure.php:818 msgid "Last update" msgstr "Поновлено" #: db_printview.php:205 libraries/db_info.inc.php:98 -#: libraries/export/sql.php:524 libraries/messages.inc.php:1031 +#: libraries/export/sql.php:524 libraries/messages.inc.php:1027 #: pdf_schema.php:1251 tbl_printview.php:454 tbl_structure.php:826 msgid "Last check" msgstr "Перевірено" -#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1085 +#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1081 #, php-format msgid "%s table(s)" msgstr "%s таблиц(і)" #: db_qbe.php:29 libraries/display_tbl.lib.php:1981 -#: libraries/messages.inc.php:1051 libraries/sql_query_form.lib.php:140 +#: libraries/messages.inc.php:1047 libraries/sql_query_form.lib.php:140 #: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131 #: view_operations.php:62 msgid "Your SQL query has been executed successfully" msgstr "Ваш SQL-запит було успішно виконано" -#: db_qbe.php:42 libraries/messages.inc.php:371 +#: db_qbe.php:42 libraries/messages.inc.php:367 msgid "You have to choose at least one column to display" msgstr "Необхідно вибрати принаймі один Стовпчик для показу" #: db_qbe.php:200 libraries/db_structure.lib.php:104 -#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1014 +#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1010 msgid "Sort" msgstr "Посортувати" #: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111 #: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828 -#: libraries/messages.inc.php:69 server_databases.php:170 +#: libraries/messages.inc.php:65 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314 msgid "Ascending" msgstr "Зростаючий" #: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119 #: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825 -#: libraries/messages.inc.php:251 server_databases.php:170 +#: libraries/messages.inc.php:247 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315 msgid "Descending" msgstr "Спадаючий" #: db_qbe.php:264 db_tracking.php:78 libraries/display_tbl.lib.php:308 -#: libraries/messages.inc.php:888 tbl_change.php:277 tbl_tracking.php:597 +#: libraries/messages.inc.php:884 tbl_change.php:277 tbl_tracking.php:597 msgid "Show" msgstr "Показати" -#: db_qbe.php:300 libraries/messages.inc.php:202 +#: db_qbe.php:300 libraries/messages.inc.php:198 msgid "Criteria" msgstr "Критерій" #: db_qbe.php:353 db_qbe.php:435 db_qbe.php:527 db_qbe.php:558 -#: libraries/messages.inc.php:718 +#: libraries/messages.inc.php:714 msgid "Ins" msgstr "Вставити" #: db_qbe.php:357 db_qbe.php:439 db_qbe.php:524 db_qbe.php:555 -#: libraries/messages.inc.php:56 +#: libraries/messages.inc.php:52 msgid "And" msgstr "І" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:529 db_qbe.php:560 -#: libraries/messages.inc.php:717 +#: libraries/messages.inc.php:713 msgid "Del" msgstr "Видалити" #: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553 -#: libraries/display_import.lib.php:166 libraries/messages.inc.php:592 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:588 #: libraries/tbl_properties.inc.php:779 server_privileges.php:258 #: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288 msgid "Or" msgstr "або" -#: db_qbe.php:507 libraries/messages.inc.php:516 +#: db_qbe.php:507 libraries/messages.inc.php:512 msgid "Modify" msgstr "Змінити" -#: db_qbe.php:584 libraries/messages.inc.php:33 +#: db_qbe.php:584 libraries/messages.inc.php:29 msgid "Add/Delete Criteria Row" msgstr "Додати/забрати рядок критерію" -#: db_qbe.php:596 libraries/messages.inc.php:32 +#: db_qbe.php:596 libraries/messages.inc.php:28 msgid "Add/Delete Field Columns" msgstr "Додати/забрати колонку критерію" -#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1192 +#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1188 msgid "Update Query" msgstr "Доповнити запит" -#: db_qbe.php:617 libraries/messages.inc.php:1216 +#: db_qbe.php:617 libraries/messages.inc.php:1212 msgid "Use Tables" msgstr "Використовувати таблиці" -#: db_qbe.php:640 libraries/messages.inc.php:723 +#: db_qbe.php:640 libraries/messages.inc.php:719 #, php-format msgid "SQL query on database %s:" msgstr "SQL-запит до БД %s:" -#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:823 +#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:819 msgid "Submit Query" msgstr "Виконати запит" #: db_search.php:68 libraries/auth/config.auth.lib.php:84 #: libraries/auth/config.auth.lib.php:103 #: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52 -#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:26 +#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:22 msgid "Access denied" msgstr "Доступ заборонено" -#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:836 +#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:832 msgid "at least one of the words" msgstr "принаймі одне з слів" -#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:837 +#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:833 msgid "all words" msgstr "всі слова" -#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:838 +#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:834 msgid "the exact phrase" msgstr "точну фразу" -#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:839 +#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:835 msgid "as regular expression" msgstr "регулярний вираз" -#: db_search.php:242 libraries/messages.inc.php:840 +#: db_search.php:242 libraries/messages.inc.php:836 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Результати пошуку \"%s\" %s:" -#: db_search.php:260 libraries/messages.inc.php:579 +#: db_search.php:260 libraries/messages.inc.php:575 #, php-format msgid "%s match(es) inside table %s" 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/messages.inc.php:108 +#: db_structure.php:105 libraries/messages.inc.php:104 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468 msgid "Browse" msgstr "Переглянути" #: db_search.php:272 libraries/display_tbl.lib.php:1165 -#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:243 +#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:239 #: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406 #: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377 #: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216 @@ -583,45 +583,45 @@ msgstr "Переглянути" msgid "Delete" msgstr "Видалити" -#: db_search.php:285 libraries/messages.inc.php:580 +#: db_search.php:285 libraries/messages.inc.php:576 #, php-format msgid "Total: %s match(es)" msgstr "Разом: %s співпадіння" -#: db_search.php:299 libraries/messages.inc.php:832 +#: db_search.php:299 libraries/messages.inc.php:828 msgid "Search in database" msgstr "Шукати в базі даних" -#: db_search.php:302 libraries/messages.inc.php:835 +#: db_search.php:302 libraries/messages.inc.php:831 msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgstr "Слова чи значення, які потрібно знайти (маска: \"%\"):" -#: db_search.php:307 libraries/messages.inc.php:842 +#: db_search.php:307 libraries/messages.inc.php:838 msgid "Find:" msgstr "Знайти:" -#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1017 +#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1013 msgid "Words are separated by a space character (\" \")." msgstr "Слова розділені пробілом (\" \")." -#: db_search.php:325 libraries/messages.inc.php:834 +#: db_search.php:325 libraries/messages.inc.php:830 msgid "Inside table(s):" msgstr "Всередині таблиць:" -#: db_search.php:355 libraries/messages.inc.php:833 +#: db_search.php:355 libraries/messages.inc.php:829 msgid "Inside field:" 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/messages.inc.php:431 libraries/sql_query_form.lib.php:334 +#: libraries/messages.inc.php:427 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/db_links.inc.php:63 libraries/export/latex.php:337 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:1048 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:1044 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 #: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269 msgid "Structure" @@ -630,8 +630,8 @@ 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:1642 -#: libraries/db_links.inc.php:100 libraries/messages.inc.php:272 +#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/db_links.inc.php:100 libraries/messages.inc.php:268 #: 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 @@ -641,40 +641,40 @@ 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:1641 -#: libraries/messages.inc.php:284 libraries/mult_submits.inc.php:39 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: libraries/messages.inc.php:280 libraries/mult_submits.inc.php:39 #: libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Очистити" -#: db_structure.php:316 libraries/messages.inc.php:1075 +#: db_structure.php:316 libraries/messages.inc.php:1071 #: libraries/tbl_links.inc.php:100 #, php-format msgid "Table %s has been emptied" msgstr "Таблицю %s було очищено" -#: db_structure.php:326 libraries/messages.inc.php:1229 +#: db_structure.php:326 libraries/messages.inc.php:1225 #: libraries/tbl_links.inc.php:133 #, php-format msgid "View %s has been dropped" msgstr "" -#: db_structure.php:326 libraries/messages.inc.php:1074 +#: db_structure.php:326 libraries/messages.inc.php:1070 #: libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "Таблицю %s було знищено" -#: db_structure.php:333 libraries/messages.inc.php:1128 +#: db_structure.php:333 libraries/messages.inc.php:1124 msgid "Tracking is active." msgstr "" -#: db_structure.php:335 libraries/messages.inc.php:1129 +#: db_structure.php:335 libraries/messages.inc.php:1125 msgid "Tracking is not active." msgstr "" #: db_structure.php:420 libraries/display_tbl.lib.php:1944 -#: libraries/messages.inc.php:1228 +#: libraries/messages.inc.php:1224 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -682,83 +682,83 @@ msgid "" msgstr "" #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 -#: libraries/messages.inc.php:1233 libraries/tbl_info.inc.php:66 +#: libraries/messages.inc.php:1229 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/messages.inc.php:773 libraries/server_links.inc.php:70 +#: libraries/messages.inc.php:769 libraries/server_links.inc.php:70 #: server_replication.php:33 server_replication.php:164 server_status.php:258 msgid "Replication" msgstr "" -#: db_structure.php:489 libraries/messages.inc.php:1053 +#: db_structure.php:489 libraries/messages.inc.php:1049 msgid "Sum" msgstr "Всього" #: db_structure.php:496 libraries/StorageEngine.class.php:356 -#: libraries/messages.inc.php:239 +#: libraries/messages.inc.php:235 #, 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 #: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086 -#: libraries/messages.inc.php:1243 libraries/mult_submits.inc.php:16 +#: libraries/messages.inc.php:1239 libraries/mult_submits.inc.php:16 #: server_databases.php:346 server_databases.php:351 #: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465 msgid "With selected:" msgstr "З відміченими:" #: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: libraries/messages.inc.php:148 server_databases.php:348 +#: libraries/messages.inc.php:144 server_databases.php:348 #: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459 msgid "Check All" msgstr "Відмітити все" #: db_structure.php:531 libraries/display_tbl.lib.php:2077 -#: libraries/messages.inc.php:1184 libraries/replication_gui.lib.php:33 +#: libraries/messages.inc.php:1180 libraries/replication_gui.lib.php:33 #: server_databases.php:350 server_privileges.php:533 #: server_privileges.php:1564 tbl_structure.php:463 msgid "Uncheck All" msgstr "Зняти усі відмітки" -#: db_structure.php:536 libraries/messages.inc.php:150 +#: db_structure.php:536 libraries/messages.inc.php:146 msgid "Check tables having overhead" msgstr "" #: db_structure.php:547 db_structure.php:548 db_structure.php:599 -#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:672 +#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:668 #: libraries/mult_submits.inc.php:28 tbl_structure.php:493 #: tbl_structure.php:495 msgid "Print view" msgstr "Версія для друку" -#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:153 +#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:149 #: libraries/mult_submits.inc.php:42 tbl_operations.php:579 msgid "Check table" msgstr "Перевірити таблицю" -#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:590 +#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:586 #: libraries/mult_submits.inc.php:47 tbl_operations.php:619 #: tbl_structure.php:710 tbl_structure.php:712 msgid "Optimize table" msgstr "Оптимізувати таблицю" -#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:758 +#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:754 #: libraries/mult_submits.inc.php:52 tbl_operations.php:609 msgid "Repair table" msgstr "Ремонтувати таблицю" -#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:55 +#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:51 #: libraries/mult_submits.inc.php:57 tbl_operations.php:599 msgid "Analyze table" msgstr "Аналіз таблиці" #: db_structure.php:557 db_structure.php:558 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/messages.inc.php:310 +#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:306 #: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84 #: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109 #: server_privileges.php:1341 setup/frames/menu.inc.php:22 @@ -766,7 +766,7 @@ msgstr "Аналіз таблиці" msgid "Export" msgstr "Експорт" -#: db_tracking.php:66 libraries/messages.inc.php:1151 +#: db_tracking.php:66 libraries/messages.inc.php:1147 msgid "Tracked tables" msgstr "" @@ -774,7 +774,7 @@ msgstr "" #: 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/header_printview.inc.php:58 libraries/messages.inc.php:212 +#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:208 #: navigation.php:233 server_databases.php:169 server_privileges.php:1621 #: server_privileges.php:1682 server_privileges.php:1940 #: server_processlist.php:56 server_synchronize.php:1179 @@ -782,76 +782,76 @@ msgstr "" msgid "Database" msgstr "БД" -#: db_tracking.php:73 libraries/messages.inc.php:1146 +#: db_tracking.php:73 libraries/messages.inc.php:1142 msgid "Last version" msgstr "" -#: db_tracking.php:74 libraries/messages.inc.php:1145 tbl_tracking.php:594 +#: db_tracking.php:74 libraries/messages.inc.php:1141 tbl_tracking.php:594 msgid "Created" msgstr "" -#: db_tracking.php:75 libraries/messages.inc.php:1147 tbl_tracking.php:595 +#: db_tracking.php:75 libraries/messages.inc.php:1143 tbl_tracking.php:595 msgid "Updated" msgstr "" #: db_tracking.php:77 libraries/Index.class.php:440 -#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:27 +#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:23 #: server_databases.php:203 server_privileges.php:1503 #: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187 msgid "Action" msgstr "Дія" -#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:247 +#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:243 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:106 libraries/messages.inc.php:1142 tbl_tracking.php:548 +#: db_tracking.php:106 libraries/messages.inc.php:1138 tbl_tracking.php:548 #: tbl_tracking.php:606 tbl_tracking.php:613 msgid "active" msgstr "" -#: db_tracking.php:108 libraries/messages.inc.php:1143 tbl_tracking.php:550 +#: db_tracking.php:108 libraries/messages.inc.php:1139 tbl_tracking.php:550 #: tbl_tracking.php:608 tbl_tracking.php:610 msgid "not active" msgstr "" -#: db_tracking.php:121 libraries/messages.inc.php:1160 +#: db_tracking.php:121 libraries/messages.inc.php:1156 msgid "Versions" msgstr "" -#: db_tracking.php:122 libraries/messages.inc.php:1132 tbl_tracking.php:379 +#: db_tracking.php:122 libraries/messages.inc.php:1128 tbl_tracking.php:379 #: tbl_tracking.php:624 msgid "Tracking report" msgstr "" -#: db_tracking.php:123 libraries/messages.inc.php:1144 tbl_tracking.php:251 +#: db_tracking.php:123 libraries/messages.inc.php:1140 tbl_tracking.php:251 #: tbl_tracking.php:624 msgid "Structure snapshot" msgstr "" -#: db_tracking.php:152 libraries/messages.inc.php:1154 +#: db_tracking.php:152 libraries/messages.inc.php:1150 msgid "Untracked tables" msgstr "" -#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1153 +#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1149 #: tbl_structure.php:529 tbl_structure.php:531 msgid "Track table" msgstr "" -#: db_tracking.php:200 libraries/messages.inc.php:1121 +#: db_tracking.php:200 libraries/messages.inc.php:1117 msgid "Database Log" msgstr "" -#: export.php:62 libraries/messages.inc.php:312 +#: export.php:62 libraries/messages.inc.php:308 msgid "Selected export type has to be saved in file!" msgstr "" -#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:567 +#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:563 #, php-format msgid "Insufficient space to save the file %s." msgstr "Бракує місця для збереження файлу %s." -#: export.php:294 libraries/messages.inc.php:324 +#: export.php:294 libraries/messages.inc.php:320 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -859,17 +859,17 @@ msgstr "" "Файл %s існує на сервері, прошу змінити назву файлу, або відмітити опцію " "заміни існуючих файлів." -#: export.php:298 export.php:302 libraries/messages.inc.php:562 +#: export.php:298 export.php:302 libraries/messages.inc.php:558 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Веб-сервер не має привілеїв для збереження файлу %s." -#: export.php:629 libraries/messages.inc.php:276 +#: export.php:629 libraries/messages.inc.php:272 #, php-format msgid "Dump has been saved to file %s." msgstr "Dump збережено у файл %s." -#: import.php:60 libraries/messages.inc.php:1202 +#: import.php:60 libraries/messages.inc.php:1198 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation%" @@ -877,21 +877,21 @@ msgid "" msgstr "" #: import.php:279 import.php:332 libraries/File.class.php:849 -#: libraries/File.class.php:961 libraries/messages.inc.php:325 +#: libraries/File.class.php:961 libraries/messages.inc.php:321 msgid "File could not be read" msgstr "Неможливо прочитати файл" #: import.php:287 import.php:296 import.php:315 import.php:324 #: libraries/File.class.php:1031 libraries/File.class.php:1039 #: libraries/File.class.php:1055 libraries/File.class.php:1063 -#: libraries/messages.inc.php:1189 +#: libraries/messages.inc.php:1185 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." msgstr "" -#: import.php:337 libraries/messages.inc.php:547 +#: import.php:337 libraries/messages.inc.php:543 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -899,39 +899,39 @@ msgid "" msgstr "" #: import.php:372 libraries/display_import.lib.php:24 -#: libraries/messages.inc.php:125 +#: libraries/messages.inc.php:121 msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:397 libraries/messages.inc.php:102 +#: import.php:397 libraries/messages.inc.php:98 msgid "The bookmark has been deleted." msgstr "Закладку було видалено." -#: import.php:401 libraries/messages.inc.php:879 +#: import.php:401 libraries/messages.inc.php:875 msgid "Showing bookmark" msgstr "" -#: import.php:403 libraries/messages.inc.php:101 +#: import.php:403 libraries/messages.inc.php:97 #, php-format msgid "Bookmark %s created" msgstr "" -#: import.php:409 import.php:415 libraries/messages.inc.php:407 +#: import.php:409 import.php:415 libraries/messages.inc.php:403 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" -#: import.php:424 libraries/messages.inc.php:1107 +#: import.php:424 libraries/messages.inc.php:1103 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: index.php:190 libraries/messages.inc.php:553 +#: index.php:190 libraries/messages.inc.php:549 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "Для роботи phpMyAdmin потрібно браузер з підтримкою фреймів." -#: js/messages.php:25 libraries/messages.inc.php:155 +#: js/messages.php:25 libraries/messages.inc.php:151 #: server_synchronize.php:345 server_synchronize.php:357 #: server_synchronize.php:373 server_synchronize.php:380 #: server_synchronize.php:739 server_synchronize.php:767 @@ -939,116 +939,116 @@ msgstr "Для роботи phpMyAdmin потрібно браузер з під msgid "Click to select" msgstr "" -#: js/messages.php:26 libraries/messages.inc.php:156 +#: js/messages.php:26 libraries/messages.inc.php:152 msgid "Click to unselect" msgstr "" #: js/messages.php:27 libraries/import.lib.php:103 -#: libraries/messages.inc.php:550 sql.php:89 +#: libraries/messages.inc.php:546 sql.php:89 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Оператори \"DROP DATABASE\" заборонені." -#: js/messages.php:30 libraries/messages.inc.php:270 +#: js/messages.php:30 libraries/messages.inc.php:266 #: libraries/mult_submits.inc.php:258 sql.php:188 msgid "Do you really want to " msgstr "Ви насправді хочете " -#: js/messages.php:31 libraries/messages.inc.php:271 +#: js/messages.php:31 libraries/messages.inc.php:267 #: libraries/mult_submits.inc.php:258 sql.php:172 msgid "You are about to DESTROY a complete database!" msgstr "" -#: js/messages.php:34 libraries/messages.inc.php:94 +#: js/messages.php:34 libraries/messages.inc.php:90 msgid "You are about to DISABLE a BLOB Repository!" msgstr "" -#: js/messages.php:35 libraries/messages.inc.php:91 +#: js/messages.php:35 libraries/messages.inc.php:87 #, php-format msgid "Are you sure you want to disable all BLOB references for database %s?" msgstr "" -#: js/messages.php:38 libraries/messages.inc.php:342 +#: js/messages.php:38 libraries/messages.inc.php:338 msgid "Missing value in the form!" msgstr "Не задано значення для форми!" -#: js/messages.php:39 libraries/messages.inc.php:570 +#: js/messages.php:39 libraries/messages.inc.php:566 msgid "This is not a number!" msgstr "Це не число!" -#: js/messages.php:42 libraries/messages.inc.php:380 +#: js/messages.php:42 libraries/messages.inc.php:376 msgid "The host name is empty!" msgstr "Порожнє ім'я хоста!" -#: js/messages.php:43 libraries/messages.inc.php:1208 +#: js/messages.php:43 libraries/messages.inc.php:1204 msgid "The user name is empty!" msgstr "Порожнє і'мя користувача!" -#: js/messages.php:44 libraries/messages.inc.php:607 +#: js/messages.php:44 libraries/messages.inc.php:603 #: server_privileges.php:1197 user_password.php:70 msgid "The password is empty!" msgstr "Порожній пароль!" -#: js/messages.php:45 libraries/messages.inc.php:609 +#: js/messages.php:45 libraries/messages.inc.php:605 #: server_privileges.php:1195 user_password.php:73 msgid "The passwords aren't the same!" msgstr "Паролі не однакові!" -#: js/messages.php:49 libraries/messages.inc.php:123 pmd_general.php:342 +#: js/messages.php:49 libraries/messages.inc.php:119 pmd_general.php:342 #: pmd_general.php:379 msgid "Cancel" msgstr "" -#: js/messages.php:52 libraries/messages.inc.php:514 +#: js/messages.php:52 libraries/messages.inc.php:510 msgid "Modifications have been saved" msgstr "Модифікації було збережено" -#: js/messages.php:53 libraries/messages.inc.php:741 +#: js/messages.php:53 libraries/messages.inc.php:737 msgid "Relation deleted" msgstr "" -#: js/messages.php:54 libraries/messages.inc.php:340 +#: js/messages.php:54 libraries/messages.inc.php:336 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:55 libraries/messages.inc.php:434 +#: js/messages.php:55 libraries/messages.inc.php:430 msgid "Internal relation added" msgstr "" -#: js/messages.php:56 libraries/messages.inc.php:299 +#: js/messages.php:56 libraries/messages.inc.php:295 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:57 libraries/messages.inc.php:300 +#: js/messages.php:57 libraries/messages.inc.php:296 msgid "Error: relation already exists." msgstr "" -#: js/messages.php:58 libraries/messages.inc.php:302 +#: js/messages.php:58 libraries/messages.inc.php:298 msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:59 libraries/messages.inc.php:351 +#: js/messages.php:59 libraries/messages.inc.php:347 #: libraries/relation.lib.php:107 msgid "General relation features" msgstr "Загальні можливості" -#: js/messages.php:59 libraries/messages.inc.php:260 +#: js/messages.php:59 libraries/messages.inc.php:256 #: libraries/relation.lib.php:101 libraries/relation.lib.php:108 msgid "Disabled" msgstr "заблоковано" -#: js/messages.php:60 libraries/messages.inc.php:850 +#: js/messages.php:60 libraries/messages.inc.php:846 msgid "Select referenced key" msgstr "" -#: js/messages.php:61 libraries/messages.inc.php:848 +#: js/messages.php:61 libraries/messages.inc.php:844 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:62 libraries/messages.inc.php:653 +#: js/messages.php:62 libraries/messages.inc.php:649 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:63 libraries/messages.inc.php:142 pmd_general.php:77 +#: js/messages.php:63 libraries/messages.inc.php:138 pmd_general.php:77 #: tbl_relation.php:548 msgid "Choose field to display" msgstr "Виберіть поля для відображення" @@ -1068,9 +1068,9 @@ msgid "Prev" msgstr "Назад" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2332 -#: libraries/common.lib.php:2335 libraries/display_tbl.lib.php:338 -#: libraries/messages.inc.php:543 server_binlog.php:205 server_binlog.php:207 +#: js/messages.php:77 libraries/common.lib.php:2344 +#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: libraries/messages.inc.php:539 server_binlog.php:205 server_binlog.php:207 #: tbl_printview.php:424 tbl_structure.php:802 msgid "Next" msgstr "Дальше" @@ -1145,27 +1145,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1543 +#: js/messages.php:97 libraries/common.lib.php:1555 msgid "Jan" msgstr "Січ" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1545 +#: js/messages.php:99 libraries/common.lib.php:1557 msgid "Feb" msgstr "Лют" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1547 +#: js/messages.php:101 libraries/common.lib.php:1559 msgid "Mar" msgstr "Бер" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1549 +#: js/messages.php:103 libraries/common.lib.php:1561 msgid "Apr" msgstr "Квт" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1551 +#: js/messages.php:105 libraries/common.lib.php:1563 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1173,37 +1173,37 @@ msgid "May" msgstr "Трв" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1553 +#: js/messages.php:107 libraries/common.lib.php:1565 msgid "Jun" msgstr "Чрв" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1555 +#: js/messages.php:109 libraries/common.lib.php:1567 msgid "Jul" msgstr "Лип" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1557 +#: js/messages.php:111 libraries/common.lib.php:1569 msgid "Aug" msgstr "Сер" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1559 +#: js/messages.php:113 libraries/common.lib.php:1571 msgid "Sep" msgstr "Вер" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1561 +#: js/messages.php:115 libraries/common.lib.php:1573 msgid "Oct" msgstr "Жов" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1563 +#: js/messages.php:117 libraries/common.lib.php:1575 msgid "Nov" msgstr "Лис" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1565 +#: js/messages.php:119 libraries/common.lib.php:1577 msgid "Dec" msgstr "Гру" @@ -1244,37 +1244,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1568 +#: js/messages.php:132 libraries/common.lib.php:1580 msgid "Sun" msgstr "Нд" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1570 +#: js/messages.php:134 libraries/common.lib.php:1582 msgid "Mon" msgstr "Пн" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1572 +#: js/messages.php:136 libraries/common.lib.php:1584 msgid "Tue" msgstr "Вт" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1574 +#: js/messages.php:138 libraries/common.lib.php:1586 msgid "Wed" msgstr "Ср" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1576 +#: js/messages.php:140 libraries/common.lib.php:1588 msgid "Thu" msgstr "Чт" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1578 +#: js/messages.php:142 libraries/common.lib.php:1590 msgid "Fri" msgstr "Пт" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1580 +#: js/messages.php:144 libraries/common.lib.php:1592 msgid "Sat" msgstr "Сб" @@ -1348,76 +1348,76 @@ msgstr "використовується" msgid "Second" msgstr "за секунду" -#: libraries/Config.class.php:1015 libraries/messages.inc.php:338 +#: libraries/Config.class.php:1015 libraries/messages.inc.php:334 msgid "Font size" msgstr "" #: libraries/File.class.php:344 libraries/File.class.php:432 #: libraries/File.class.php:569 libraries/File.class.php:708 -#: libraries/messages.inc.php:1201 +#: libraries/messages.inc.php:1197 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.class.php:414 libraries/messages.inc.php:1198 +#: libraries/File.class.php:414 libraries/messages.inc.php:1194 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:417 libraries/messages.inc.php:1197 +#: libraries/File.class.php:417 libraries/messages.inc.php:1193 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:420 libraries/messages.inc.php:1200 +#: libraries/File.class.php:420 libraries/messages.inc.php:1196 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:423 libraries/messages.inc.php:1199 +#: libraries/File.class.php:423 libraries/messages.inc.php:1195 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:426 libraries/messages.inc.php:1195 +#: libraries/File.class.php:426 libraries/messages.inc.php:1191 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:429 libraries/messages.inc.php:1196 +#: libraries/File.class.php:429 libraries/messages.inc.php:1192 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:908 libraries/messages.inc.php:319 +#: libraries/File.class.php:908 libraries/messages.inc.php:315 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "" -#: libraries/Index.class.php:428 libraries/messages.inc.php:554 +#: libraries/Index.class.php:428 libraries/messages.inc.php:550 #: tbl_relation.php:529 msgid "No index defined!" msgstr "Індекс не визначено!" -#: libraries/Index.class.php:433 libraries/messages.inc.php:411 +#: libraries/Index.class.php:433 libraries/messages.inc.php:407 #: server_databases.php:132 tbl_tracking.php:316 msgid "Indexes" msgstr "Індекси" -#: libraries/Index.class.php:444 libraries/messages.inc.php:1186 +#: libraries/Index.class.php:444 libraries/messages.inc.php:1182 #: 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:475 tbl_tracking.php:322 msgid "Unique" msgstr "Унікальне" -#: libraries/Index.class.php:445 libraries/messages.inc.php:596 +#: libraries/Index.class.php:445 libraries/messages.inc.php:592 #: tbl_tracking.php:323 msgid "Packed" msgstr "" -#: libraries/Index.class.php:447 libraries/messages.inc.php:131 +#: libraries/Index.class.php:447 libraries/messages.inc.php:127 #: tbl_tracking.php:325 msgid "Cardinality" msgstr "Кількість елементів" -#: libraries/Index.class.php:450 libraries/messages.inc.php:162 +#: libraries/Index.class.php:450 libraries/messages.inc.php:158 #: tbl_tracking.php:279 tbl_tracking.php:328 msgid "Comment" msgstr "" @@ -1425,29 +1425,29 @@ msgstr "" #: libraries/Index.class.php:466 libraries/common.lib.php:616 #: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:280 pdf_pages.php:280 +#: libraries/messages.inc.php:276 pdf_pages.php:280 #: setup/frames/index.inc.php:124 setup/lib/messages.inc.php:352 #: tbl_row_action.php:69 msgid "Edit" msgstr "Редагувати" -#: libraries/Index.class.php:472 libraries/messages.inc.php:666 +#: libraries/Index.class.php:472 libraries/messages.inc.php:662 msgid "The primary key has been dropped" msgstr "Первинний ключ було знищено" -#: libraries/Index.class.php:476 libraries/messages.inc.php:413 +#: libraries/Index.class.php:476 libraries/messages.inc.php:409 #, php-format msgid "Index %s has been dropped" msgstr "Індекс %s було знищено" -#: libraries/Index.class.php:576 libraries/messages.inc.php:412 +#: libraries/Index.class.php:576 libraries/messages.inc.php:408 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "" -#: libraries/List_Database.class.php:431 libraries/messages.inc.php:218 +#: libraries/List_Database.class.php:431 libraries/messages.inc.php:214 #: libraries/server_links.inc.php:41 server_databases.php:88 #: server_privileges.php:1621 setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" @@ -1474,85 +1474,85 @@ msgid_plural "%1$d rows inserted." msgstr[0] "" msgstr[1] "" -#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:549 +#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:545 msgid "" "There is no detailed status information available for this storage engine." msgstr "" -#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:291 +#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:287 #, php-format msgid "%s is available on this MySQL server." msgstr "" -#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:292 +#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:288 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "" -#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:294 +#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:290 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "" -#: libraries/Table.class.php:1019 libraries/messages.inc.php:443 +#: libraries/Table.class.php:1019 libraries/messages.inc.php:439 msgid "Invalid database" msgstr "" -#: libraries/Table.class.php:1033 libraries/messages.inc.php:450 +#: libraries/Table.class.php:1033 libraries/messages.inc.php:446 #: tbl_get_field.php:26 msgid "Invalid table name" msgstr "" -#: libraries/Table.class.php:1048 libraries/messages.inc.php:301 +#: libraries/Table.class.php:1048 libraries/messages.inc.php:297 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "" -#: libraries/Table.class.php:1132 libraries/messages.inc.php:754 +#: libraries/Table.class.php:1132 libraries/messages.inc.php:750 #, php-format msgid "Table %s has been renamed to %s" msgstr "Таблицю %s було перейменовано в %s" -#: libraries/Theme.class.php:162 libraries/messages.inc.php:1099 +#: libraries/Theme.class.php:162 libraries/messages.inc.php:1095 #, php-format msgid "No valid image path for theme %s found!" msgstr "" -#: libraries/Theme.class.php:384 libraries/messages.inc.php:1097 +#: libraries/Theme.class.php:384 libraries/messages.inc.php:1093 msgid "No preview available." msgstr "" -#: libraries/Theme.class.php:387 libraries/messages.inc.php:1089 +#: libraries/Theme.class.php:387 libraries/messages.inc.php:1085 msgid "take it" msgstr "" -#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1096 +#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1092 #, php-format msgid "Default theme %s not found!" msgstr "" -#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1098 +#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1094 #, php-format msgid "Theme %s not found!" msgstr "" -#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1100 +#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1096 #, php-format msgid "Theme path not found for theme %s!" msgstr "" -#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1101 +#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1097 #: test/theme.php:161 themes.php:21 themes.php:41 msgid "Theme / Style" msgstr "" -#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:172 +#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:168 msgid "Cannot connect: invalid settings." msgstr "" #: libraries/auth/config.auth.lib.php:92 #: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65 -#: libraries/messages.inc.php:1238 test/theme.php:152 +#: libraries/messages.inc.php:1234 test/theme.php:152 #, php-format msgid "Welcome to %s" msgstr "Ласкаво просимо до %s" @@ -1576,104 +1576,104 @@ msgstr "" "config.inc.php та впевнитися, що вони відповідають даним отриманим Вами від " "адміністратора MySQL сервера." -#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:488 +#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:484 msgid "Log in" msgstr "Вхід в систему" #: libraries/auth/cookie.auth.lib.php:246 -#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:659 +#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:655 #: libraries/navigation_header.inc.php:93 #: libraries/navigation_header.inc.php:95 msgid "phpMyAdmin documentation" msgstr "Документація по phpMyAdmin" #: libraries/auth/cookie.auth.lib.php:258 -#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:492 +#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:488 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:493 +#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:489 msgid "Server:" msgstr "" -#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:494 +#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:490 msgid "Username:" msgstr "Ім'я користувача:" -#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:491 +#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:487 msgid "Password:" msgstr "Пароль:" -#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:854 +#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:850 msgid "Server Choice" msgstr "Вибір сервера" #: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 -#: libraries/messages.inc.php:177 +#: libraries/messages.inc.php:173 msgid "Cookies must be enabled past this point." msgstr "З цього моменту Cookies повинні бути дозволені." #: libraries/auth/cookie.auth.lib.php:671 -#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:489 +#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:485 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" #: libraries/auth/cookie.auth.lib.php:675 -#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:544 +#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:540 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" #: libraries/auth/cookie.auth.lib.php:685 #: libraries/auth/cookie.auth.lib.php:687 -#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:126 +#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:122 msgid "Cannot log in to the MySQL server" msgstr "Не можу зареєструватися на MySQL сервері" -#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1245 +#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1241 msgid "Wrong username/password. Access denied." msgstr "Невірний логін/пароль. Доступ не дозволено." #: libraries/auth/swekey/swekey.auth.lib.php:118 -#: libraries/messages.inc.php:1057 +#: libraries/messages.inc.php:1053 #, php-format msgid "File %s does not contain any key id" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:157 #: libraries/auth/swekey/swekey.auth.lib.php:180 -#: libraries/messages.inc.php:1056 +#: libraries/messages.inc.php:1052 msgid "Hardware authentication failed" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:166 -#: libraries/messages.inc.php:1058 +#: libraries/messages.inc.php:1054 msgid "No valid authentication key plugged" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:202 -#: libraries/messages.inc.php:1055 +#: libraries/messages.inc.php:1051 msgid "Authenticating..." msgstr "" -#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1230 +#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1226 msgid "View image" msgstr "" -#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:652 +#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:648 msgid "Play audio" msgstr "" -#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1232 +#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1228 msgid "View video" msgstr "" -#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:269 +#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:265 msgid "Download file" msgstr "" -#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:128 +#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:124 msgid "" "Couldn't load the iconv or recode extension needed for charset conversion. " "Either configure PHP to enable these extensions or disable charset " @@ -1685,7 +1685,7 @@ msgstr "" #: libraries/charset_conversion.lib.php:79 #: libraries/charset_conversion.lib.php:90 -#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:130 +#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:126 msgid "" "Couldn't use the iconv, libiconv, or recode_string functions, although the " "necessary extensions appear to be loaded. Check your PHP configuration." @@ -1694,7 +1694,7 @@ msgstr "" "recode_string поки буде завантажено extension reports. Перевірте Вашу php " "конфігурацію." -#: libraries/common.inc.php:583 libraries/messages.inc.php:170 +#: libraries/common.inc.php:583 libraries/messages.inc.php:166 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!" @@ -1729,22 +1729,22 @@ msgstr "" msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:636 libraries/messages.inc.php:448 +#: libraries/common.inc.php:636 libraries/messages.inc.php:444 #, 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/messages.inc.php:856 libraries/select_server.lib.php:41 +#: libraries/messages.inc.php:852 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/messages.inc.php:437 +#: libraries/common.inc.php:823 libraries/messages.inc.php:433 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.lib.php:147 libraries/messages.inc.php:499 +#: libraries/common.lib.php:147 libraries/messages.inc.php:495 #, php-format msgid "Max: %s%s" msgstr "" @@ -1764,7 +1764,7 @@ msgstr "" #: libraries/common.lib.php:428 libraries/common.lib.php:430 #: libraries/common.lib.php:432 libraries/common.lib.php:448 #: libraries/common.lib.php:450 libraries/dbg/setup.php:25 -#: libraries/display_export.lib.php:164 libraries/messages.inc.php:267 +#: libraries/display_export.lib.php:164 libraries/messages.inc.php:263 #: libraries/relation.lib.php:97 libraries/sql_query_form.lib.php:451 #: libraries/sql_query_form.lib.php:454 main.php:229 pdf_pages.php:37 #: pdf_pages.php:43 pdf_pages.php:49 pdf_pages.php:54 @@ -1774,55 +1774,55 @@ msgstr "Документація" #: libraries/common.lib.php:581 libraries/core.lib.php:234 #: libraries/core.lib.php:263 libraries/import.lib.php:134 -#: libraries/messages.inc.php:297 pdf_schema.php:32 pdf_schema.php:232 +#: libraries/messages.inc.php:293 pdf_schema.php:32 pdf_schema.php:232 #: tbl_change.php:1027 tbl_operations.php:213 tbl_relation.php:290 #: view_operations.php:62 msgid "Error" msgstr "Помилка" #: libraries/common.lib.php:595 libraries/header_printview.inc.php:61 -#: libraries/messages.inc.php:1023 server_processlist.php:60 +#: libraries/messages.inc.php:1019 server_processlist.php:60 #: server_status.php:247 msgid "SQL query" msgstr "SQL-запит" -#: libraries/common.lib.php:634 libraries/messages.inc.php:538 +#: libraries/common.lib.php:634 libraries/messages.inc.php:534 msgid "MySQL said: " msgstr "Відповідь MySQL: " -#: libraries/common.lib.php:667 libraries/messages.inc.php:76 +#: libraries/common.lib.php:667 libraries/messages.inc.php:72 #: pdf_schema.php:241 user_password.php:115 msgid "Back" msgstr "Назад" -#: libraries/common.lib.php:1177 libraries/messages.inc.php:309 +#: libraries/common.lib.php:1177 libraries/messages.inc.php:305 #: setup/lib/messages.inc.php:353 msgid "Explain SQL" msgstr "Тлумачити SQL" -#: libraries/common.lib.php:1180 libraries/messages.inc.php:551 +#: libraries/common.lib.php:1180 libraries/messages.inc.php:547 msgid "Skip Explain SQL" msgstr "Не тлумачити SQL" -#: libraries/common.lib.php:1212 libraries/messages.inc.php:563 +#: libraries/common.lib.php:1212 libraries/messages.inc.php:559 msgid "Without PHP Code" msgstr "без PHP коду" -#: libraries/common.lib.php:1215 libraries/messages.inc.php:649 +#: libraries/common.lib.php:1215 libraries/messages.inc.php:645 #: setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "Створити PHP код" -#: libraries/common.lib.php:1233 libraries/messages.inc.php:737 +#: libraries/common.lib.php:1233 libraries/messages.inc.php:733 #: server_status.php:341 setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "" -#: libraries/common.lib.php:1242 libraries/messages.inc.php:575 +#: libraries/common.lib.php:1242 libraries/messages.inc.php:571 msgid "Skip Validate SQL" msgstr "Не перевіряти SQL" -#: libraries/common.lib.php:1245 libraries/messages.inc.php:1220 +#: libraries/common.lib.php:1245 libraries/messages.inc.php:1216 #: setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "Перевірити SQL" @@ -1836,11 +1836,11 @@ msgid "Inline" msgstr "" #: libraries/common.lib.php:1332 libraries/common.lib.php:1347 -#: libraries/messages.inc.php:713 +#: libraries/messages.inc.php:709 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1351 libraries/messages.inc.php:1108 +#: libraries/common.lib.php:1351 libraries/messages.inc.php:1104 #: libraries/tbl_triggers.lib.php:28 server_processlist.php:58 msgid "Time" msgstr "Час" @@ -1874,46 +1874,56 @@ msgstr "PB" msgid "EiB" msgstr "EB" +#. l10n: Thousands separator +#: libraries/common.lib.php:1417 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: libraries/common.lib.php:1419 +msgid "." +msgstr "." + #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1584 +#: libraries/common.lib.php:1596 #: libraries/transformations/text_plain__dateformat.inc.php:28 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d %Y р., %H:%M" -#: libraries/common.lib.php:1886 +#: libraries/common.lib.php:1898 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s днів, %s годин, %s хвилин і %s секунд" -#: libraries/common.lib.php:2301 libraries/common.lib.php:2304 -#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:664 +#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:660 #: server_status.php:608 msgid "Begin" msgstr "Початок" -#: libraries/common.lib.php:2302 libraries/common.lib.php:2305 -#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:665 +#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:661 #: server_binlog.php:168 server_binlog.php:170 msgid "Previous" msgstr "Назад" -#: libraries/common.lib.php:2333 libraries/common.lib.php:2336 -#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:289 +#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:285 msgid "End" msgstr "Кінець" -#: libraries/common.lib.php:2409 libraries/messages.inc.php:455 +#: libraries/common.lib.php:2421 libraries/messages.inc.php:451 #, php-format msgid "Jump to database "%s"." msgstr "Перейти до бази даних "%s"." -#: libraries/common.lib.php:2429 libraries/messages.inc.php:461 +#: libraries/common.lib.php:2441 libraries/messages.inc.php:457 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/core.lib.php:286 libraries/dbg/setup.php:22 -#: libraries/messages.inc.php:127 +#: libraries/messages.inc.php:123 #, php-format msgid "" "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " @@ -1921,115 +1931,115 @@ msgid "" msgstr "не можу завантажити %s,
прошу перевірити конфігурацію PHP." #: libraries/db_events.inc.php:20 libraries/db_events.inc.php:22 -#: libraries/export/sql.php:415 libraries/messages.inc.php:306 +#: libraries/export/sql.php:415 libraries/messages.inc.php:302 msgid "Events" msgstr "" #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 -#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:541 +#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:537 #: libraries/tbl_triggers.lib.php:27 setup/frames/index.inc.php:112 msgid "Name" msgstr "Назва" -#: libraries/db_links.inc.php:45 libraries/messages.inc.php:216 +#: libraries/db_links.inc.php:45 libraries/messages.inc.php:212 #, php-format msgid "Database %s has been dropped." msgstr "Базу даних %s знищено." #: libraries/db_links.inc.php:57 libraries/db_links.inc.php:58 -#: libraries/db_links.inc.php:59 libraries/messages.inc.php:234 +#: libraries/db_links.inc.php:59 libraries/messages.inc.php:230 msgid "Database seems to be empty!" msgstr "" -#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1025 +#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1021 #: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60 #: querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1152 +#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1148 #: libraries/tbl_links.inc.php:69 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:86 libraries/messages.inc.php:719 +#: libraries/db_links.inc.php:86 libraries/messages.inc.php:715 msgid "Query" msgstr "Запит згідно прикладу" -#: libraries/db_links.inc.php:91 libraries/messages.inc.php:253 +#: libraries/db_links.inc.php:91 libraries/messages.inc.php:249 msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:98 libraries/messages.inc.php:397 +#: libraries/db_links.inc.php:98 libraries/messages.inc.php:393 #: libraries/server_links.inc.php:88 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:104 libraries/messages.inc.php:587 +#: libraries/db_links.inc.php:104 libraries/messages.inc.php:583 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" msgstr "Операцій" -#: libraries/db_links.inc.php:111 libraries/messages.inc.php:709 +#: libraries/db_links.inc.php:111 libraries/messages.inc.php:705 #: libraries/server_links.inc.php:66 server_privileges.php:72 #: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117 msgid "Privileges" msgstr "Привілеї" #: libraries/db_routines.inc.php:30 libraries/db_routines.inc.php:32 -#: libraries/messages.inc.php:812 +#: libraries/messages.inc.php:808 msgid "Routines" msgstr "" -#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:811 +#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:807 msgid "Return type" msgstr "" #: libraries/db_structure.lib.php:57 libraries/display_tbl.lib.php:1848 -#: libraries/messages.inc.php:65 +#: libraries/messages.inc.php:61 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "" -#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:593 +#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:589 #: server_databases.php:142 tbl_printview.php:336 tbl_structure.php:683 msgid "Overhead" msgstr "Надмірні видатки" #: libraries/dbi/mysql.dbi.lib.php:112 libraries/dbi/mysqli.dbi.lib.php:124 -#: libraries/messages.inc.php:176 +#: libraries/messages.inc.php:172 msgid "Connection for controluser as defined in your configuration failed." msgstr "" #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 -#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:855 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:851 msgid "The server is not responding" msgstr "" #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:1010 +#: libraries/messages.inc.php:1006 msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "" -#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:255 +#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:251 #: tbl_structure.php:609 msgid "Details..." msgstr "" -#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:143 +#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:139 #: main.php:91 user_password.php:111 user_password.php:129 msgid "Change password" msgstr "Змінити пароль" -#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:561 +#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:557 #: libraries/replication_gui.lib.php:341 server_privileges.php:768 msgid "No Password" msgstr "Без паролю" -#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:610 +#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:606 #: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60 #: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335 #: libraries/replication_gui.lib.php:345 server_privileges.php:757 @@ -2038,13 +2048,13 @@ msgstr "Без паролю" msgid "Password" msgstr "Пароль" -#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:806 +#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:802 #: libraries/replication_gui.lib.php:349 libraries/replication_gui.lib.php:352 #: server_privileges.php:776 server_privileges.php:779 msgid "Re-type" msgstr "Підтвердження" -#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:608 +#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:604 msgid "Password Hashing" msgstr "" @@ -2052,89 +2062,89 @@ msgstr "" msgid "MySQL 4.0 compatible" msgstr "" -#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:353 +#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:349 #: libraries/replication_gui.lib.php:356 server_privileges.php:783 msgid "Generate Password" msgstr "" -#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:352 +#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:348 #: libraries/replication_gui.lib.php:359 server_privileges.php:786 msgid "Generate" msgstr "" #: libraries/display_create_database.lib.php:22 -#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:189 +#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:185 msgid "Create new database" msgstr "Створити нову БД" -#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:185 +#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:181 msgid "Create" msgstr "Створити" -#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:564 +#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:560 #: server_privileges.php:74 server_privileges.php:1388 #: server_replication.php:35 msgid "No Privileges" msgstr "Без привілеїв" -#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:445 +#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:441 msgid "Table must have at least one field." msgstr "" -#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:190 +#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:186 #, php-format msgid "Create table on database %s" msgstr "Створити нову таблицю в БД %s" -#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:577 +#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:573 msgid "Number of fields" msgstr "" -#: libraries/display_export.lib.php:42 libraries/messages.inc.php:124 +#: libraries/display_export.lib.php:42 libraries/messages.inc.php:120 msgid "Could not load export plugins, please check your installation!" msgstr "" -#: libraries/display_export.lib.php:107 libraries/messages.inc.php:277 +#: libraries/display_export.lib.php:107 libraries/messages.inc.php:273 #, php-format msgid "Dump %s row(s) starting at record # %s" msgstr "Зґенерувати дамп %s рядків починаючи з %s -го." -#: libraries/display_export.lib.php:115 libraries/messages.inc.php:274 +#: libraries/display_export.lib.php:115 libraries/messages.inc.php:270 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:125 libraries/messages.inc.php:852 +#: libraries/display_export.lib.php:125 libraries/messages.inc.php:848 #: setup/lib/messages.inc.php:82 msgid "Save as file" msgstr "Відіслати" -#: libraries/display_export.lib.php:134 libraries/messages.inc.php:828 +#: libraries/display_export.lib.php:134 libraries/messages.inc.php:824 #, php-format msgid "Save on server in %s directory" msgstr "Зберегти на сервері в каталогу %s " -#: libraries/display_export.lib.php:142 libraries/messages.inc.php:594 +#: libraries/display_export.lib.php:142 libraries/messages.inc.php:590 #: setup/lib/messages.inc.php:90 msgid "Overwrite existing file(s)" msgstr "Заміняти існуючі файли" -#: libraries/display_export.lib.php:148 libraries/messages.inc.php:330 +#: libraries/display_export.lib.php:148 libraries/messages.inc.php:326 msgid "File name template" msgstr "Шаблон назви файлу" -#: libraries/display_export.lib.php:152 libraries/messages.inc.php:327 +#: libraries/display_export.lib.php:152 libraries/messages.inc.php:323 msgid "server name" msgstr "" -#: libraries/display_export.lib.php:155 libraries/messages.inc.php:326 +#: libraries/display_export.lib.php:155 libraries/messages.inc.php:322 msgid "database name" msgstr "" -#: libraries/display_export.lib.php:158 libraries/messages.inc.php:328 +#: libraries/display_export.lib.php:158 libraries/messages.inc.php:324 msgid "table name" msgstr "" -#: libraries/display_export.lib.php:162 libraries/messages.inc.php:329 +#: libraries/display_export.lib.php:162 libraries/messages.inc.php:325 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2142,24 +2152,24 @@ msgid "" "3$s. Other text will be kept as is." msgstr "" -#: libraries/display_export.lib.php:202 libraries/messages.inc.php:331 +#: libraries/display_export.lib.php:202 libraries/messages.inc.php:327 msgid "remember template" msgstr "запам'ятати шаблон" #: libraries/display_export.lib.php:210 libraries/display_import.lib.php:178 -#: libraries/display_import.lib.php:191 libraries/messages.inc.php:145 +#: libraries/display_import.lib.php:191 libraries/messages.inc.php:141 #: libraries/sql_query_form.lib.php:549 msgid "Character set of the file:" msgstr "Кодування файлу:" -#: libraries/display_export.lib.php:235 libraries/messages.inc.php:166 +#: libraries/display_export.lib.php:235 libraries/messages.inc.php:162 #: setup/lib/messages.inc.php:84 msgid "Compression" 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/messages.inc.php:558 +#: libraries/export/sql.php:868 libraries/messages.inc.php:554 #: libraries/tbl_properties.inc.php:575 server_privileges.php:1836 #: server_processlist.php:75 msgid "None" @@ -2183,462 +2193,462 @@ msgstr "запакувати в \"gzip\"" msgid "bzipped" msgstr "запакувати в \"bzip\"" -#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1018 +#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1014 msgid "SQL compatibility mode" msgstr "" -#: libraries/display_import.lib.php:67 libraries/messages.inc.php:398 +#: libraries/display_import.lib.php:67 libraries/messages.inc.php:394 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " "browsers." msgstr "" -#: libraries/display_import.lib.php:77 libraries/messages.inc.php:406 +#: libraries/display_import.lib.php:77 libraries/messages.inc.php:402 msgid "The file is being processed, please be patient." msgstr "" -#: libraries/display_import.lib.php:99 libraries/messages.inc.php:408 +#: libraries/display_import.lib.php:99 libraries/messages.inc.php:404 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." msgstr "" -#: libraries/display_import.lib.php:126 libraries/messages.inc.php:333 +#: libraries/display_import.lib.php:126 libraries/messages.inc.php:329 msgid "File to import" msgstr "" -#: libraries/display_import.lib.php:137 libraries/messages.inc.php:486 +#: libraries/display_import.lib.php:137 libraries/messages.inc.php:482 #: libraries/sql_query_form.lib.php:524 msgid "Location of the text file" msgstr "вкажіть розташування текстового файлу" -#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1203 +#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1199 msgid "File uploads are not allowed on this server." msgstr "" -#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1235 +#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1231 #: libraries/sql_query_form.lib.php:533 tbl_change.php:1028 msgid "The directory you set for upload work cannot be reached" msgstr "Встановлений Вами каталог для завантаження файлів недоступний" -#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1236 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1232 #: libraries/sql_query_form.lib.php:536 tbl_change.php:1031 msgid "web server upload directory" msgstr "каталог веб-сервера для завантаження файлів (upload directory)" -#: libraries/display_import.lib.php:212 libraries/messages.inc.php:167 +#: libraries/display_import.lib.php:212 libraries/messages.inc.php:163 #, php-format msgid "Imported file compression will be automatically detected from: %s" msgstr "" -#: libraries/display_import.lib.php:219 libraries/messages.inc.php:600 +#: libraries/display_import.lib.php:219 libraries/messages.inc.php:596 msgid "Partial import" msgstr "" -#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1105 +#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1101 #, php-format msgid "" "Previous import timed out, after resubmitting will continue from position %d." msgstr "" -#: libraries/display_import.lib.php:232 libraries/messages.inc.php:51 +#: libraries/display_import.lib.php:232 libraries/messages.inc.php:47 msgid "" "Allow the interruption of an import in case the script detects it is close " "to the PHP timeout limit. This might be good way to import large files, " "however it can break transactions." msgstr "" -#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1004 +#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1000 #: setup/lib/messages.inc.php:161 msgid "Number of records (queries) to skip from start" msgstr "" -#: libraries/display_import.lib.php:255 libraries/messages.inc.php:396 +#: libraries/display_import.lib.php:255 libraries/messages.inc.php:392 #: setup/lib/messages.inc.php:160 msgid "Format of imported file" msgstr "" #: libraries/display_select_lang.lib.php:45 -#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:465 +#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:461 #: setup/frames/index.inc.php:70 msgid "Language" msgstr "" -#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:447 +#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:443 #, php-format msgid "%d is not valid row number." msgstr "" -#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:814 +#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:810 msgid "row(s) starting from record #" msgstr "рядків з" -#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:817 +#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:813 msgid "horizontal" msgstr " горизонтально " -#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:816 +#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:812 msgid "horizontal (rotated headers)" msgstr "горизонтально (rotated headers)" -#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:819 +#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:815 msgid "vertical" msgstr " вертикально " -#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:818 +#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:814 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "-го %s і дублювати заголовки через кожні %s рядків " -#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:495 +#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:491 msgid "This operation could take a long time. Proceed anyway?" msgstr "" -#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1012 +#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1008 msgid "Sort by key" msgstr "" #: libraries/display_tbl.lib.php:555 libraries/import.lib.php:1082 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:591 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:587 #: tbl_select.php:267 tbl_structure.php:754 msgid "Options" msgstr "" #: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:570 -#: libraries/messages.inc.php:601 +#: libraries/messages.inc.php:597 msgid "Partial Texts" msgstr "Часткові тексти" #: libraries/display_tbl.lib.php:561 libraries/display_tbl.lib.php:574 -#: libraries/messages.inc.php:346 +#: libraries/messages.inc.php:342 msgid "Full Texts" msgstr "Повні тексти" -#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:739 +#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:735 msgid "Relational key" msgstr "" -#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:738 +#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:734 msgid "Relational display field" msgstr "" -#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:872 +#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:868 msgid "Show binary contents" msgstr "" -#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:873 +#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:869 msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:871 +#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:867 msgid "Show binary contents as HEX" msgstr "" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:375 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:371 #: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320 msgid "Hide" msgstr "" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:508 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:504 #: libraries/tbl_properties.inc.php:144 transformation_overview.php:47 msgid "Browser transformation" msgstr "Перетворення МІМЕ-типу бровзером" #: libraries/display_tbl.lib.php:1126 libraries/display_tbl.lib.php:1130 -#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:308 +#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:304 msgid "Execute bookmarked query" msgstr "Виконати збережений запит" #: libraries/display_tbl.lib.php:1145 libraries/display_tbl.lib.php:1157 -#: libraries/messages.inc.php:244 +#: libraries/messages.inc.php:240 msgid "The row has been deleted" msgstr "Рядок видалено" #: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056 -#: libraries/messages.inc.php:460 server_processlist.php:71 +#: libraries/messages.inc.php:456 server_processlist.php:71 #: tbl_row_action.php:64 msgid "Kill" msgstr "Вбити" -#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:849 +#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:845 msgid "in query" msgstr "по запиту" -#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:881 +#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:877 msgid "Showing rows" msgstr "Показано записи " -#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1113 +#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1109 msgid "total" msgstr "всього" -#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:727 +#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:723 #: sql.php:524 #, php-format msgid "Query took %01.4f sec" msgstr "Запит виконувався %01.4f сек" -#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:135 +#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:131 #: 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:471 msgid "Change" msgstr "Змінити" -#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:724 +#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:720 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:671 +#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:667 msgid "Print view (with full texts)" msgstr "" -#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:482 +#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:478 msgid "Link not found" msgstr "Лінк не знайдено" -#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1224 +#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1220 #: main.php:228 msgid "Version information" msgstr "" -#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:423 +#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:419 msgid "Data home directory" msgstr "" -#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:424 +#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:420 msgid "The common part of the directory path for all InnoDB data files." msgstr "" -#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:422 +#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:418 msgid "Data files" msgstr "" -#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:418 +#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:414 msgid "Autoextend increment" msgstr "" -#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:419 +#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:415 msgid "" " The increment size for extending the size of an autoextending tablespace " "when it becomes full." msgstr "" -#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:420 +#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:416 msgid "Buffer pool size" msgstr "" -#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:421 +#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:417 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." msgstr "" -#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:112 +#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:108 msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:426 +#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:422 #: server_status.php:306 msgid "InnoDB Status" msgstr "Статус InnoDB" -#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:113 +#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:109 msgid "Buffer Pool Usage" msgstr "" -#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1114 +#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1110 #: server_databases.php:137 server_databases.php:305 server_status.php:414 #: server_status.php:475 server_status.php:496 tbl_printview.php:351 #: tbl_structure.php:697 msgid "Total" msgstr "Разом" -#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:425 +#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:421 msgid "pages" msgstr "" -#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:343 +#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:339 msgid "Free pages" msgstr "" -#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:259 +#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:255 msgid "Dirty pages" msgstr "" -#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:230 +#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:226 msgid "Pages containing data" msgstr "" -#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:598 +#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:594 msgid "Pages to be flushed" msgstr "" -#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:119 +#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:115 msgid "Busy pages" msgstr "" -#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:467 +#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:463 msgid "Latched pages" msgstr "" -#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:111 +#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:107 msgid "Buffer Pool Activity" msgstr "" -#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:731 +#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:727 msgid "Read requests" msgstr "" -#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1244 +#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1240 msgid "Write requests" msgstr "" -#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:115 +#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:111 msgid "Read misses" msgstr "" -#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:117 +#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:113 msgid "Write waits" msgstr "" -#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:114 +#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:110 msgid "Read misses in %" msgstr "" -#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:116 +#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:112 msgid "Write waits in %" msgstr "" -#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:522 +#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:518 msgid "Data pointer size" msgstr "" -#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:523 +#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:519 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." msgstr "" -#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:528 +#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:524 msgid "Automatic recovery mode" msgstr "" -#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:529 +#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:525 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." msgstr "" -#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:527 +#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:523 msgid "Maximum size for temporary sort files" msgstr "" -#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:526 +#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:522 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " "INFILE)." msgstr "" -#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:525 +#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:521 msgid "Maximum size for temporary files on index creation" msgstr "" -#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:524 +#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:520 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " "method." msgstr "" -#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:531 +#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:527 msgid "Repair threads" msgstr "" -#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:530 +#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:526 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." msgstr "" -#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:533 +#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:529 msgid "Sort buffer size" msgstr "" -#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:532 +#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:528 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." msgstr "" -#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:620 +#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:616 msgid "Index cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:619 +#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:615 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." msgstr "" -#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:630 +#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:626 msgid "Record cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:629 +#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:625 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " "to the handle data (.xtd) and row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:624 +#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:620 msgid "Log cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:623 +#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:619 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:628 +#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:624 msgid "Log file threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:627 +#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:623 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:634 +#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:630 msgid "Transaction buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:633 +#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:629 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." msgstr "" -#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:611 +#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:607 msgid "Checkpoint frequency" msgstr "" -#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:612 +#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:608 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." msgstr "" -#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:615 +#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:611 msgid "Data log threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:616 +#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:612 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -2646,48 +2656,48 @@ msgid "" "that can be stored in the database." msgstr "" -#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:618 +#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:614 msgid "Garbage threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:617 +#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:613 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." msgstr "" -#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:622 +#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:618 msgid "Log buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:621 +#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:617 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " "required to write a data log." msgstr "" -#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:613 +#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:609 msgid "Data file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:614 +#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:610 msgid "The grow size of the handle data (.xtd) files." msgstr "" -#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:632 +#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:628 msgid "Row file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:631 +#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:627 msgid "The grow size of the row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:626 +#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:622 msgid "Log file count" msgstr "" -#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:625 +#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:621 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -2697,19 +2707,19 @@ msgstr "" #: libraries/export/htmlword.php:132 libraries/export/odt.php:168 #: libraries/export/sql.php:881 libraries/export/texytext.php:130 -#: libraries/messages.inc.php:275 +#: libraries/messages.inc.php:271 msgid "Dumping data for table" msgstr "Дамп даних таблиці" #: libraries/export/htmlword.php:185 libraries/export/odt.php:238 #: libraries/export/sql.php:785 libraries/export/texytext.php:177 -#: libraries/messages.inc.php:1086 +#: libraries/messages.inc.php:1082 msgid "Table structure for table" msgstr "Структура таблиці" #: libraries/export/latex.php:125 libraries/export/sql.php:232 #: libraries/export/xml.php:102 libraries/header_printview.inc.php:57 -#: libraries/messages.inc.php:381 libraries/replication_gui.lib.php:63 +#: libraries/messages.inc.php:377 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:170 libraries/replication_gui.lib.php:265 #: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325 #: server_privileges.php:692 server_privileges.php:695 @@ -2721,183 +2731,183 @@ msgstr "Хост" #: libraries/export/latex.php:130 libraries/export/sql.php:233 #: libraries/export/xml.php:107 libraries/header_printview.inc.php:59 -#: libraries/messages.inc.php:354 +#: libraries/messages.inc.php:350 msgid "Generation Time" msgstr "Час створення" #: libraries/export/latex.php:131 libraries/export/sql.php:235 -#: libraries/export/xml.php:108 libraries/messages.inc.php:864 main.php:186 +#: libraries/export/xml.php:108 libraries/messages.inc.php:860 main.php:186 msgid "Server version" msgstr "Версія сервера" #: libraries/export/latex.php:132 libraries/export/sql.php:236 -#: libraries/export/xml.php:109 libraries/messages.inc.php:651 +#: libraries/export/xml.php:109 libraries/messages.inc.php:647 msgid "PHP Version" msgstr "Версія PHP" #: libraries/export/latex.php:201 libraries/export/sql.php:868 -#: libraries/messages.inc.php:226 server_databases.php:127 +#: libraries/messages.inc.php:222 server_databases.php:127 #: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317 #: tbl_structure.php:666 msgid "Data" msgstr "Дані" -#: libraries/export/odt.php:318 libraries/messages.inc.php:506 +#: libraries/export/odt.php:318 libraries/messages.inc.php:502 #: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "MIME-type" -#: libraries/export/sql.php:387 libraries/messages.inc.php:711 +#: libraries/export/sql.php:387 libraries/messages.inc.php:707 msgid "Procedures" msgstr "" -#: libraries/export/sql.php:401 libraries/messages.inc.php:348 +#: libraries/export/sql.php:401 libraries/messages.inc.php:344 msgid "Functions" msgstr "" -#: libraries/export/sql.php:618 libraries/messages.inc.php:174 +#: libraries/export/sql.php:618 libraries/messages.inc.php:170 msgid "Constraints for dumped tables" msgstr "" -#: libraries/export/sql.php:627 libraries/messages.inc.php:175 +#: libraries/export/sql.php:627 libraries/messages.inc.php:171 msgid "Constraints for table" msgstr "" -#: libraries/export/sql.php:727 libraries/messages.inc.php:512 +#: libraries/export/sql.php:727 libraries/messages.inc.php:508 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/export/sql.php:739 libraries/messages.inc.php:743 +#: libraries/export/sql.php:739 libraries/messages.inc.php:739 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/export/sql.php:796 libraries/messages.inc.php:1178 +#: libraries/export/sql.php:796 libraries/messages.inc.php:1174 #: libraries/tbl_triggers.lib.php:19 msgid "Triggers" msgstr "" -#: libraries/export/sql.php:808 libraries/messages.inc.php:1046 +#: libraries/export/sql.php:808 libraries/messages.inc.php:1042 msgid "Structure for view" msgstr "" -#: libraries/export/sql.php:817 libraries/messages.inc.php:1029 +#: libraries/export/sql.php:817 libraries/messages.inc.php:1025 msgid "Stand-in structure for view" msgstr "" #: libraries/footer.inc.php:184 libraries/footer.inc.php:195 -#: libraries/footer.inc.php:198 libraries/messages.inc.php:586 +#: libraries/footer.inc.php:198 libraries/messages.inc.php:582 msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/header.inc.php:115 libraries/messages.inc.php:542 +#: libraries/header.inc.php:115 libraries/messages.inc.php:538 msgid "New table" msgstr "" #: libraries/header_printview.inc.php:50 libraries/header_printview.inc.php:55 -#: libraries/messages.inc.php:1024 +#: libraries/messages.inc.php:1020 msgid "SQL result" msgstr "SQL result" -#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:350 +#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:346 msgid "Generated by" msgstr "Згенеровано" #: libraries/header_printview.inc.php:63 libraries/import.lib.php:145 -#: libraries/messages.inc.php:820 navigation.php:652 navigation.php:674 +#: libraries/messages.inc.php:816 navigation.php:652 navigation.php:674 #: server_databases.php:122 tbl_printview.php:394 tbl_structure.php:366 #: tbl_structure.php:778 msgid "Rows" msgstr "Рядки" -#: libraries/import.lib.php:150 libraries/messages.inc.php:285 sql.php:520 +#: libraries/import.lib.php:150 libraries/messages.inc.php:281 sql.php:520 #: tbl_change.php:181 tbl_get_field.php:35 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL повернула пустий результат (тобто нуль рядків)." -#: libraries/import.lib.php:1078 libraries/messages.inc.php:399 +#: libraries/import.lib.php:1078 libraries/messages.inc.php:395 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1079 libraries/messages.inc.php:400 +#: libraries/import.lib.php:1079 libraries/messages.inc.php:396 msgid "View a structure`s contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1080 libraries/messages.inc.php:401 +#: libraries/import.lib.php:1080 libraries/messages.inc.php:397 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1081 libraries/messages.inc.php:402 +#: libraries/import.lib.php:1081 libraries/messages.inc.php:398 msgid "Edit its structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1084 libraries/messages.inc.php:362 +#: libraries/import.lib.php:1084 libraries/messages.inc.php:358 msgid "Go to database" msgstr "" #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:869 +#: libraries/messages.inc.php:865 msgid "settings" msgstr "" -#: libraries/import.lib.php:1106 libraries/messages.inc.php:363 +#: libraries/import.lib.php:1106 libraries/messages.inc.php:359 msgid "Go to table" msgstr "" -#: libraries/import.lib.php:1109 libraries/messages.inc.php:1047 +#: libraries/import.lib.php:1109 libraries/messages.inc.php:1043 msgid "structure" msgstr "" -#: libraries/import.lib.php:1115 libraries/messages.inc.php:364 +#: libraries/import.lib.php:1115 libraries/messages.inc.php:360 msgid "Go to view" msgstr "" #: libraries/import/csv.php:58 libraries/import/csv.php:70 #: libraries/import/csv.php:74 libraries/import/csv.php:78 -#: libraries/messages.inc.php:442 +#: libraries/messages.inc.php:438 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "" -#: libraries/import/csv.php:59 libraries/messages.inc.php:323 +#: libraries/import/csv.php:59 libraries/messages.inc.php:319 msgid "Fields terminated by" msgstr "Поля розділені" -#: libraries/import/csv.php:71 libraries/messages.inc.php:320 +#: libraries/import/csv.php:71 libraries/messages.inc.php:316 msgid "Fields enclosed by" msgstr "Поля взято в" -#: libraries/import/csv.php:75 libraries/messages.inc.php:321 +#: libraries/import/csv.php:75 libraries/messages.inc.php:317 msgid "Fields escaped by" msgstr "Поля екрануються" -#: libraries/import/csv.php:79 libraries/messages.inc.php:481 +#: libraries/import/csv.php:79 libraries/messages.inc.php:477 msgid "Lines terminated by" msgstr "Рядки розділено" -#: libraries/import/csv.php:119 libraries/messages.inc.php:439 +#: libraries/import/csv.php:119 libraries/messages.inc.php:435 #, php-format msgid "Invalid column (%s) specified!" msgstr "" #: libraries/import/csv.php:177 libraries/import/csv.php:424 -#: libraries/messages.inc.php:441 +#: libraries/messages.inc.php:437 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/import/csv.php:312 libraries/messages.inc.php:440 +#: libraries/import/csv.php:312 libraries/messages.inc.php:436 #, php-format msgid "Invalid field count in CSV input on line %d." msgstr "" -#: libraries/import/ldi.php:55 libraries/messages.inc.php:446 +#: libraries/import/ldi.php:55 libraries/messages.inc.php:442 msgid "This plugin does not support compressed imports!" msgstr "" #: libraries/import/xml.php:74 libraries/import/xml.php:130 -#: libraries/messages.inc.php:1247 +#: libraries/messages.inc.php:1243 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -2926,323 +2936,313 @@ msgstr "" msgid "ltr" msgstr "ltr" -#. l10n: Thousands separator -#: libraries/messages.inc.php:21 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: libraries/messages.inc.php:23 -msgid "." -msgstr "." - -#: libraries/messages.inc.php:25 server_status.php:461 +#: libraries/messages.inc.php:21 server_status.php:461 msgid "Aborted" msgstr "Перервано" -#: libraries/messages.inc.php:28 main.php:68 +#: libraries/messages.inc.php:24 main.php:68 msgid "Actions" msgstr "" -#: libraries/messages.inc.php:34 libraries/tbl_properties.inc.php:780 +#: libraries/messages.inc.php:30 libraries/tbl_properties.inc.php:780 #: tbl_structure.php:543 #, php-format msgid "Add %s field(s)" msgstr "" -#: libraries/messages.inc.php:35 +#: libraries/messages.inc.php:31 msgid "Add custom comment into header (\\n splits lines)" msgstr "" -#: libraries/messages.inc.php:36 +#: libraries/messages.inc.php:32 msgid "Add into comments" msgstr "Додати коментар" -#: libraries/messages.inc.php:37 tbl_structure.php:541 +#: libraries/messages.inc.php:33 tbl_structure.php:541 msgid "Add new field" msgstr "Додати нове поле" -#: libraries/messages.inc.php:38 server_privileges.php:1886 +#: libraries/messages.inc.php:34 server_privileges.php:1886 msgid "Add privileges on the following database" msgstr "Додати права для цієї бази даних" -#: libraries/messages.inc.php:39 server_privileges.php:1907 +#: libraries/messages.inc.php:35 server_privileges.php:1907 msgid "Add privileges on the following table" msgstr "Додати права для цієї таблиці" -#: libraries/messages.inc.php:40 tbl_select.php:288 +#: libraries/messages.inc.php:36 tbl_select.php:288 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Додати умови пошуку (тіло для умови \"where\"):" -#: libraries/messages.inc.php:41 tbl_indexes.php:251 +#: libraries/messages.inc.php:37 tbl_indexes.php:251 #, php-format msgid "Add to index  %s column(s)" msgstr "Додати до індексу %s колоноку(и)" -#: libraries/messages.inc.php:42 server_privileges.php:1570 +#: libraries/messages.inc.php:38 server_privileges.php:1570 #: server_privileges.php:1594 server_privileges.php:1988 #: server_privileges.php:2177 msgid "Add a new User" msgstr "Додати нового користувача" -#: libraries/messages.inc.php:43 server_privileges.php:931 +#: libraries/messages.inc.php:39 server_privileges.php:931 msgid "You have added a new user." msgstr "Було додано нового користувача." -#: libraries/messages.inc.php:44 server_privileges.php:571 +#: libraries/messages.inc.php:40 server_privileges.php:571 msgid "Administration" msgstr "Адміністратор" -#: libraries/messages.inc.php:45 tbl_structure.php:557 +#: libraries/messages.inc.php:41 tbl_structure.php:557 #, php-format msgid "After %s" msgstr "Після %s" -#: libraries/messages.inc.php:46 tbl_change.php:1147 +#: libraries/messages.inc.php:42 tbl_change.php:1147 msgid "Go back to previous page" msgstr "Повернутись" -#: libraries/messages.inc.php:47 tbl_change.php:1148 +#: libraries/messages.inc.php:43 tbl_change.php:1148 msgid "Insert another new row" msgstr "Вставити новий запис" -#: libraries/messages.inc.php:48 tbl_change.php:1160 +#: libraries/messages.inc.php:44 tbl_change.php:1160 msgid "Edit next row" msgstr "" -#: libraries/messages.inc.php:49 tbl_change.php:1152 +#: libraries/messages.inc.php:45 tbl_change.php:1152 msgid "Go back to this page" msgstr "" -#: libraries/messages.inc.php:50 querywindow.php:115 +#: libraries/messages.inc.php:46 querywindow.php:115 msgid "All" msgstr "Все" -#: libraries/messages.inc.php:53 tbl_operations.php:249 +#: libraries/messages.inc.php:49 tbl_operations.php:249 msgid "Alter table order by" msgstr "Змінити порядок таблиці" -#: libraries/messages.inc.php:54 tbl_operations.php:660 +#: libraries/messages.inc.php:50 tbl_operations.php:660 msgid "Analyze" msgstr "" -#: libraries/messages.inc.php:57 +#: libraries/messages.inc.php:53 msgid "and" msgstr "" -#: libraries/messages.inc.php:59 pmd_general.php:87 +#: libraries/messages.inc.php:55 pmd_general.php:87 msgid "Angular links" msgstr "" -#: libraries/messages.inc.php:60 tbl_structure.php:401 tbl_structure.php:415 +#: libraries/messages.inc.php:56 tbl_structure.php:401 tbl_structure.php:415 #: tbl_structure.php:429 #, php-format msgid "An index has been added on %s" msgstr "Було додано індекс для %s" -#: libraries/messages.inc.php:61 server_privileges.php:1521 +#: libraries/messages.inc.php:57 server_privileges.php:1521 #: server_privileges.php:2123 msgid "Any" msgstr "Довільний" -#: libraries/messages.inc.php:62 libraries/replication_gui.lib.php:298 +#: libraries/messages.inc.php:58 libraries/replication_gui.lib.php:298 #: server_privileges.php:725 msgid "Any host" msgstr "Довільний хост" -#: libraries/messages.inc.php:63 libraries/replication_gui.lib.php:250 +#: libraries/messages.inc.php:59 libraries/replication_gui.lib.php:250 #: server_privileges.php:677 msgid "Any user" msgstr "Довільний користувач" -#: libraries/messages.inc.php:64 server_synchronize.php:449 +#: libraries/messages.inc.php:60 server_synchronize.php:449 #: server_synchronize.php:894 msgid "Apply Selected Changes" msgstr "" -#: libraries/messages.inc.php:66 tbl_structure.php:386 +#: libraries/messages.inc.php:62 tbl_structure.php:386 #, php-format msgid "A primary key has been added on %s" msgstr "Було додано первинний ключ до %s" -#: libraries/messages.inc.php:67 libraries/mysql_charsets.lib.php:368 +#: libraries/messages.inc.php:63 libraries/mysql_charsets.lib.php:368 msgid "Arabic" msgstr "Арабське" -#: libraries/messages.inc.php:68 libraries/mysql_charsets.lib.php:359 +#: libraries/messages.inc.php:64 libraries/mysql_charsets.lib.php:359 msgid "Armenian" msgstr "Вірменське" -#: libraries/messages.inc.php:70 libraries/tbl_properties.inc.php:394 +#: libraries/messages.inc.php:66 libraries/tbl_properties.inc.php:394 msgid "As defined:" msgstr "" -#: libraries/messages.inc.php:71 tbl_structure.php:556 +#: libraries/messages.inc.php:67 tbl_structure.php:556 msgid "At Beginning of Table" msgstr "На початку таблиці" -#: libraries/messages.inc.php:72 tbl_structure.php:555 +#: libraries/messages.inc.php:68 tbl_structure.php:555 msgid "At End of Table" msgstr "У кінці таблиці" -#: libraries/messages.inc.php:73 libraries/tbl_properties.inc.php:108 +#: libraries/messages.inc.php:69 libraries/tbl_properties.inc.php:108 #: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:144 #: tbl_structure.php:180 msgid "Attributes" msgstr "Атрибути" -#: libraries/messages.inc.php:74 pdf_pages.php:303 pdf_pages.php:306 +#: libraries/messages.inc.php:70 pdf_pages.php:303 pdf_pages.php:306 msgid "Automatic layout" msgstr "Автоматичний layout" -#: libraries/messages.inc.php:77 libraries/mysql_charsets.lib.php:354 +#: libraries/messages.inc.php:73 libraries/mysql_charsets.lib.php:354 msgid "Baltic" msgstr "Балтійське" -#: libraries/messages.inc.php:78 libraries/sqlparser.lib.php:175 +#: libraries/messages.inc.php:74 libraries/sqlparser.lib.php:175 msgid "BEGIN CUT" msgstr "BEGIN CUT" -#: libraries/messages.inc.php:79 libraries/sqlparser.lib.php:179 +#: libraries/messages.inc.php:75 libraries/sqlparser.lib.php:179 msgid "BEGIN RAW" msgstr "BEGIN RAW" -#: libraries/messages.inc.php:80 libraries/mysql_charsets.lib.php:201 +#: libraries/messages.inc.php:76 libraries/mysql_charsets.lib.php:201 #: libraries/mysql_charsets.lib.php:402 tbl_change.php:518 msgid "Binary" msgstr " Двійковий " -#: libraries/messages.inc.php:81 tbl_change.php:894 +#: libraries/messages.inc.php:77 tbl_change.php:894 msgid "Binary - do not edit" msgstr " Двійкові дані - не редагуються " -#: libraries/messages.inc.php:82 libraries/server_links.inc.php:76 +#: libraries/messages.inc.php:78 libraries/server_links.inc.php:76 #: server_binlog.php:110 server_status.php:253 test/theme.php:121 msgid "Binary log" msgstr "" -#: libraries/messages.inc.php:83 server_binlog.php:217 +#: libraries/messages.inc.php:79 server_binlog.php:217 msgid "Event type" msgstr "" -#: libraries/messages.inc.php:84 server_binlog.php:220 +#: libraries/messages.inc.php:80 server_binlog.php:220 msgid "Information" msgstr "" -#: libraries/messages.inc.php:85 server_binlog.php:215 +#: libraries/messages.inc.php:81 server_binlog.php:215 msgid "Log name" msgstr "" -#: libraries/messages.inc.php:86 server_binlog.php:219 +#: libraries/messages.inc.php:82 server_binlog.php:219 msgid "Original position" msgstr "" -#: libraries/messages.inc.php:87 server_binlog.php:216 +#: libraries/messages.inc.php:83 server_binlog.php:216 msgid "Position" msgstr "" -#: libraries/messages.inc.php:88 libraries/replication_gui.lib.php:169 +#: libraries/messages.inc.php:84 libraries/replication_gui.lib.php:169 #: server_binlog.php:218 msgid "Server ID" msgstr "" -#: libraries/messages.inc.php:92 +#: libraries/messages.inc.php:88 msgctxt "$strBLOBRepositoryDisabled" msgid "Disabled" msgstr "" -#: libraries/messages.inc.php:95 +#: libraries/messages.inc.php:91 msgctxt "$strBLOBRepositoryEnabled" msgid "Enabled" msgstr "" -#: libraries/messages.inc.php:97 tbl_change.php:888 +#: libraries/messages.inc.php:93 tbl_change.php:888 msgid "Remove BLOB Repository Reference" msgstr "" -#: libraries/messages.inc.php:98 +#: libraries/messages.inc.php:94 msgctxt "$strBLOBRepositoryRepair" msgid "Repair" msgstr "" -#: libraries/messages.inc.php:99 tbl_change.php:987 +#: libraries/messages.inc.php:95 tbl_change.php:987 msgid "Upload to BLOB repository" msgstr "" -#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:359 +#: libraries/messages.inc.php:96 libraries/sql_query_form.lib.php:359 #: sql.php:677 msgid "Let every user access this bookmark" msgstr "" -#: libraries/messages.inc.php:103 sql.php:671 +#: libraries/messages.inc.php:99 sql.php:671 msgid "Label" msgstr "Мітка" -#: libraries/messages.inc.php:104 libraries/sql_query_form.lib.php:433 +#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:433 msgid "Bookmarked SQL query" msgstr "Закладка на SQL-запит" -#: libraries/messages.inc.php:105 libraries/sql_query_form.lib.php:365 +#: libraries/messages.inc.php:101 libraries/sql_query_form.lib.php:365 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/messages.inc.php:106 libraries/sql_query_form.lib.php:352 +#: libraries/messages.inc.php:102 libraries/sql_query_form.lib.php:352 #: sql.php:665 sql.php:666 sql.php:683 msgid "Bookmark this SQL query" msgstr "Закладка на даний SQL-запит" -#: libraries/messages.inc.php:107 libraries/sql_query_form.lib.php:466 +#: libraries/messages.inc.php:103 libraries/sql_query_form.lib.php:466 msgid "View only" msgstr "Лише перегляд" -#: libraries/messages.inc.php:109 tbl_structure.php:161 +#: libraries/messages.inc.php:105 tbl_structure.php:161 msgid "Browse distinct values" msgstr "" -#: libraries/messages.inc.php:110 tbl_change.php:252 tbl_select.php:27 +#: libraries/messages.inc.php:106 tbl_change.php:252 tbl_select.php:27 #: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34 msgid "Browse foreign values" msgstr "" -#: libraries/messages.inc.php:118 libraries/mysql_charsets.lib.php:213 +#: libraries/messages.inc.php:114 libraries/mysql_charsets.lib.php:213 msgid "Bulgarian" msgstr "Болгарське" -#: libraries/messages.inc.php:120 +#: libraries/messages.inc.php:116 msgid "\"bzipped\"" msgstr "запакувати в \"bzip\"" -#: libraries/messages.inc.php:122 +#: libraries/messages.inc.php:118 msgid "Calendar" msgstr "" -#: libraries/messages.inc.php:129 tbl_indexes.php:75 +#: libraries/messages.inc.php:125 tbl_indexes.php:75 msgid "Can't rename index to PRIMARY!" msgstr "Неможливо перейменувати індекс в PRIMARY!" -#: libraries/messages.inc.php:132 libraries/mysql_charsets.lib.php:223 +#: libraries/messages.inc.php:128 libraries/mysql_charsets.lib.php:223 #: libraries/mysql_charsets.lib.php:409 msgid "case-insensitive" msgstr "case-insensitive" -#: libraries/messages.inc.php:133 libraries/mysql_charsets.lib.php:226 +#: libraries/messages.inc.php:129 libraries/mysql_charsets.lib.php:226 #: libraries/mysql_charsets.lib.php:411 msgid "case-sensitive" msgstr "case-sensitive" -#: libraries/messages.inc.php:134 libraries/mysql_charsets.lib.php:332 +#: libraries/messages.inc.php:130 libraries/mysql_charsets.lib.php:332 msgid "Central European" msgstr "СхідноЄвропейське" -#: libraries/messages.inc.php:136 server_privileges.php:1969 +#: libraries/messages.inc.php:132 server_privileges.php:1969 msgid "... keep the old one." msgstr "... залишити старого." -#: libraries/messages.inc.php:137 server_privileges.php:1967 +#: libraries/messages.inc.php:133 server_privileges.php:1967 msgid "Create a new user with the same privileges and ..." msgstr "Створити нового користувача з такими ж правами і ..." -#: libraries/messages.inc.php:138 server_privileges.php:1972 +#: libraries/messages.inc.php:134 server_privileges.php:1972 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -3250,245 +3250,245 @@ msgstr "" " ... знищити старого з таблиці користувачів та перевантажити права після " "того." -#: libraries/messages.inc.php:139 server_privileges.php:1970 +#: libraries/messages.inc.php:135 server_privileges.php:1970 msgid " ... delete the old one from the user tables." msgstr " ... знищити старого з таблиці користувачів." -#: libraries/messages.inc.php:140 server_privileges.php:1971 +#: libraries/messages.inc.php:136 server_privileges.php:1971 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "" " ... анулювати всі активні права старого користувача, знищивши його після " "того." -#: libraries/messages.inc.php:141 server_privileges.php:1964 +#: libraries/messages.inc.php:137 server_privileges.php:1964 msgid "Change Login Information / Copy User" msgstr "Змінити реєстраційні дані / Копіювати користувача" -#: libraries/messages.inc.php:144 libraries/mysql_charsets.lib.php:107 +#: libraries/messages.inc.php:140 libraries/mysql_charsets.lib.php:107 msgid "Charset" msgstr "Набір символів" -#: libraries/messages.inc.php:146 server_collations.php:40 +#: libraries/messages.inc.php:142 server_collations.php:40 msgid "Character Sets and Collations" msgstr "Набори символів та схеми" -#: libraries/messages.inc.php:147 libraries/server_links.inc.php:57 +#: libraries/messages.inc.php:143 libraries/server_links.inc.php:57 #: test/theme.php:109 msgid "Charsets" msgstr "Кодування" -#: libraries/messages.inc.php:149 tbl_operations.php:661 +#: libraries/messages.inc.php:145 tbl_operations.php:661 msgid "Check" msgstr "" -#: libraries/messages.inc.php:151 server_databases.php:293 +#: libraries/messages.inc.php:147 server_databases.php:293 #: server_databases.php:294 msgid "Check Privileges" msgstr "Перевірити права" -#: libraries/messages.inc.php:152 server_databases.php:289 +#: libraries/messages.inc.php:148 server_databases.php:289 #, php-format msgid "Check privileges for database "%s"." msgstr "Перевірити права для бази даних "%s"." -#: libraries/messages.inc.php:154 pdf_pages.php:261 +#: libraries/messages.inc.php:150 pdf_pages.php:261 msgid "Please choose a page to edit" msgstr "Прошу вибрати сторінку для редагування" -#: libraries/messages.inc.php:157 +#: libraries/messages.inc.php:153 msgid "Displaying Column Comments" msgstr "Показувати коментарі стовпців" -#: libraries/messages.inc.php:159 pdf_pages.php:483 view_create.php:148 +#: libraries/messages.inc.php:155 pdf_pages.php:483 view_create.php:148 msgid "Column names" msgstr "Назви колонок" -#: libraries/messages.inc.php:160 server_privileges.php:1685 +#: libraries/messages.inc.php:156 server_privileges.php:1685 msgid "Column-specific privileges" msgstr "Права, які стосуються колонок таблиці" -#: libraries/messages.inc.php:164 +#: libraries/messages.inc.php:160 msgid "MySQL 4.0 compatible" msgstr "" -#: libraries/messages.inc.php:165 +#: libraries/messages.inc.php:161 msgid "Complete inserts" msgstr "Повна вставка" -#: libraries/messages.inc.php:168 +#: libraries/messages.inc.php:164 #, php-format msgid "Could not load default configuration from: \"%1$s\"" msgstr "" -#: libraries/messages.inc.php:169 main.php:306 +#: libraries/messages.inc.php:165 main.php:306 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: libraries/messages.inc.php:171 pdf_schema.php:672 +#: libraries/messages.inc.php:167 pdf_schema.php:672 #, php-format msgid "Please configure the coordinates for table %s" msgstr "Прошу сконфіґурувати координати таблиці %s" -#: libraries/messages.inc.php:173 server_status.php:433 +#: libraries/messages.inc.php:169 server_status.php:433 msgid "Connections" msgstr "З'єднань" -#: libraries/messages.inc.php:179 tbl_operations.php:509 +#: libraries/messages.inc.php:175 tbl_operations.php:509 msgid "Copy table to (database.table):" msgstr "Скопіювати таблицю в (база даних.таблиця):" -#: libraries/messages.inc.php:180 tbl_move_copy.php:58 +#: libraries/messages.inc.php:176 tbl_move_copy.php:58 #, php-format msgid "Table %s has been copied to %s." msgstr "Таблицю %s було скопійовано в %s." -#: libraries/messages.inc.php:181 tbl_move_copy.php:48 +#: libraries/messages.inc.php:177 tbl_move_copy.php:48 msgid "Can't copy table to same one!" msgstr "Не можу скопіювати таблицю саму в себе!" -#: libraries/messages.inc.php:182 server_synchronize.php:94 +#: libraries/messages.inc.php:178 server_synchronize.php:94 msgid "Could not connect to the source" msgstr "" -#: libraries/messages.inc.php:183 server_synchronize.php:97 +#: libraries/messages.inc.php:179 server_synchronize.php:97 msgid "Could not connect to the target" msgstr "" -#: libraries/messages.inc.php:184 server_processlist.php:24 +#: libraries/messages.inc.php:180 server_processlist.php:24 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin не може припинити процес %s. Він вже напевно був зупинений." -#: libraries/messages.inc.php:187 +#: libraries/messages.inc.php:183 #, php-format msgid "Create an index on %s columns" msgstr "Створити індекс на %s колонках" -#: libraries/messages.inc.php:188 tbl_indexes.php:160 +#: libraries/messages.inc.php:184 tbl_indexes.php:160 msgid "Create a new index" msgstr "Створити новий індекс" -#: libraries/messages.inc.php:191 pdf_pages.php:297 pmd_pdf.php:114 +#: libraries/messages.inc.php:187 pdf_pages.php:297 pmd_pdf.php:114 msgid "Create a page" msgstr "Створити нову сторінку" -#: libraries/messages.inc.php:192 +#: libraries/messages.inc.php:188 msgid "Creation of PDFs" msgstr "Створити PDF-файл" -#: libraries/messages.inc.php:193 pmd_general.php:74 pmd_general.php:306 +#: libraries/messages.inc.php:189 pmd_general.php:74 pmd_general.php:306 msgid "Create relation" msgstr "" -#: libraries/messages.inc.php:194 pmd_general.php:71 +#: libraries/messages.inc.php:190 pmd_general.php:71 #: server_synchronize.php:429 server_synchronize.php:872 msgid "Create table" msgstr "" -#: libraries/messages.inc.php:195 +#: libraries/messages.inc.php:191 msgctxt "$strCreateTableShort" msgid "Create table" msgstr "" -#: libraries/messages.inc.php:196 server_privileges.php:1994 +#: libraries/messages.inc.php:192 server_privileges.php:1994 msgid "Database for user" msgstr "" -#: libraries/messages.inc.php:197 server_privileges.php:1999 +#: libraries/messages.inc.php:193 server_privileges.php:1999 msgid "Create database with same name and grant all privileges" msgstr "" -#: libraries/messages.inc.php:198 +#: libraries/messages.inc.php:194 msgctxt "$strCreateUserDatabaseNone" msgid "None" msgstr "" -#: libraries/messages.inc.php:199 server_privileges.php:2003 +#: libraries/messages.inc.php:195 server_privileges.php:2003 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: libraries/messages.inc.php:200 server_privileges.php:2000 +#: libraries/messages.inc.php:196 server_privileges.php:2000 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: libraries/messages.inc.php:201 +#: libraries/messages.inc.php:197 msgid "Creation/Update/Check dates" msgstr "" -#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:229 +#: libraries/messages.inc.php:199 libraries/mysql_charsets.lib.php:229 msgid "Croatian" msgstr "Кроатське" -#: libraries/messages.inc.php:204 +#: libraries/messages.inc.php:200 msgid "CSV" msgstr "CSV дані" -#: libraries/messages.inc.php:205 libraries/server_synchronize.lib.php:1343 +#: libraries/messages.inc.php:201 libraries/server_synchronize.lib.php:1343 #: libraries/server_synchronize.lib.php:1369 msgid "Current server" msgstr "" -#: libraries/messages.inc.php:206 main.php:159 +#: libraries/messages.inc.php:202 main.php:159 msgid "Custom color" msgstr "" -#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:365 +#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:365 msgid "Cyrillic" msgstr "Кириличне" -#: libraries/messages.inc.php:208 libraries/mysql_charsets.lib.php:232 +#: libraries/messages.inc.php:204 libraries/mysql_charsets.lib.php:232 msgid "Czech" msgstr "Чеське" -#: libraries/messages.inc.php:209 libraries/mysql_charsets.lib.php:383 +#: libraries/messages.inc.php:205 libraries/mysql_charsets.lib.php:383 msgid "Czech-Slovak" msgstr "" -#: libraries/messages.inc.php:211 libraries/mysql_charsets.lib.php:235 +#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:235 msgid "Danish" msgstr "Данське" -#: libraries/messages.inc.php:214 +#: libraries/messages.inc.php:210 msgid "Database export options" msgstr "Налаштування експорту бази даних" -#: libraries/messages.inc.php:217 server_synchronize.php:122 +#: libraries/messages.inc.php:213 server_synchronize.php:122 #: server_synchronize.php:125 tbl_create.php:82 tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "" -#: libraries/messages.inc.php:219 server_databases.php:63 +#: libraries/messages.inc.php:215 server_databases.php:63 #, php-format msgid "%s databases have been dropped successfully." msgstr "%s баз(а\\и) даних успішно знищено." -#: libraries/messages.inc.php:220 libraries/server_synchronize.lib.php:1341 +#: libraries/messages.inc.php:216 libraries/server_synchronize.lib.php:1341 #: server_synchronize.php:1110 msgid "Source database" msgstr "" -#: libraries/messages.inc.php:221 server_databases.php:88 +#: libraries/messages.inc.php:217 server_databases.php:88 msgid "Databases statistics" msgstr "Статистика баз даних" -#: libraries/messages.inc.php:222 server_databases.php:362 +#: libraries/messages.inc.php:218 server_databases.php:362 #: server_databases.php:363 msgid "Disable Statistics" msgstr "Заборонити статистику" -#: libraries/messages.inc.php:223 server_databases.php:358 +#: libraries/messages.inc.php:219 server_databases.php:358 #: server_databases.php:359 msgid "Enable Statistics" msgstr "Дозволити статистику" -#: libraries/messages.inc.php:224 server_databases.php:366 +#: libraries/messages.inc.php:220 server_databases.php:366 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -3496,30 +3496,30 @@ msgstr "" "Примітка: Активізація збору статистики бази даних може спричинити значний " "трафік між веб сервером та базою даних MySQL." -#: libraries/messages.inc.php:225 libraries/server_synchronize.lib.php:1367 +#: libraries/messages.inc.php:221 libraries/server_synchronize.lib.php:1367 #: server_synchronize.php:1112 msgid "Target database" msgstr "" -#: libraries/messages.inc.php:228 server_synchronize.php:425 +#: libraries/messages.inc.php:224 server_synchronize.php:425 #: server_synchronize.php:868 msgid "Data Difference" msgstr "" -#: libraries/messages.inc.php:231 server_synchronize.php:272 +#: libraries/messages.inc.php:227 server_synchronize.php:272 msgid "Data Synchronization" msgstr "" -#: libraries/messages.inc.php:235 server_privileges.php:526 +#: libraries/messages.inc.php:231 server_privileges.php:526 #: server_privileges.php:1679 msgid "Database-specific privileges" msgstr "Права, які стосуються бази даних" -#: libraries/messages.inc.php:237 server_privileges.php:2136 +#: libraries/messages.inc.php:233 server_privileges.php:2136 msgid "database-specific" msgstr "специфічний для бази даних" -#: libraries/messages.inc.php:240 libraries/tbl_properties.inc.php:106 +#: libraries/messages.inc.php:236 libraries/tbl_properties.inc.php:106 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" @@ -3527,32 +3527,32 @@ msgstr "" "Для значень за замовчуванням, введіть лише значення, без використання " "зворотніх слешів чи лапок, у такому форматі: a" -#: libraries/messages.inc.php:241 tbl_operations.php:589 +#: libraries/messages.inc.php:237 tbl_operations.php:589 msgid "Defragment table" msgstr "" -#: libraries/messages.inc.php:242 +#: libraries/messages.inc.php:238 msgid "Use delayed inserts" msgstr "" -#: libraries/messages.inc.php:245 server_privileges.php:1243 +#: libraries/messages.inc.php:241 server_privileges.php:1243 msgid "No users selected for deleting!" msgstr "" -#: libraries/messages.inc.php:246 pmd_general.php:372 +#: libraries/messages.inc.php:242 pmd_general.php:372 msgid "Delete relation" msgstr "" -#: libraries/messages.inc.php:248 server_privileges.php:1232 +#: libraries/messages.inc.php:244 server_privileges.php:1232 #, php-format msgid "Deleting %s" msgstr "Усунути %s" -#: libraries/messages.inc.php:249 libraries/sql_query_form.lib.php:388 +#: libraries/messages.inc.php:245 libraries/sql_query_form.lib.php:388 msgid "Delimiter" msgstr "" -#: libraries/messages.inc.php:250 pdf_pages.php:506 +#: libraries/messages.inc.php:246 pdf_pages.php:506 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -3560,149 +3560,149 @@ msgstr "" "Ця сторінка має посилання на таблицю, якої вже немає. Бажаєте видалити ці " "посилання?" -#: libraries/messages.inc.php:254 pmd_help.php:29 +#: libraries/messages.inc.php:250 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." msgstr "" -#: libraries/messages.inc.php:256 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:252 libraries/mysql_charsets.lib.php:247 msgid "dictionary" msgstr "словник" -#: libraries/messages.inc.php:257 libraries/server_synchronize.lib.php:1348 +#: libraries/messages.inc.php:253 libraries/server_synchronize.lib.php:1348 msgid "Difference" msgstr "" -#: libraries/messages.inc.php:258 pmd_general.php:87 +#: libraries/messages.inc.php:254 pmd_general.php:87 msgid "Direct links" msgstr "" -#: libraries/messages.inc.php:261 +#: libraries/messages.inc.php:257 msgid "Disable foreign key checks" msgstr "" -#: libraries/messages.inc.php:262 +#: libraries/messages.inc.php:258 msgid "Display Features" msgstr "Показати можливості" -#: libraries/messages.inc.php:263 tbl_select.php:301 +#: libraries/messages.inc.php:259 tbl_select.php:301 msgid "Display order:" msgstr "Порядок перегляду:" -#: libraries/messages.inc.php:265 tbl_select.php:132 +#: libraries/messages.inc.php:261 tbl_select.php:132 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Виконати \"запит згідно прикладу\" (символ підставновки: \"%\")" -#: libraries/messages.inc.php:266 +#: libraries/messages.inc.php:262 msgid "DocSQL" msgstr "" -#: libraries/messages.inc.php:268 +#: libraries/messages.inc.php:264 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/messages.inc.php:273 server_privileges.php:1579 +#: libraries/messages.inc.php:269 server_privileges.php:1579 #: server_privileges.php:1580 server_privileges.php:1581 msgid "Drop the databases that have the same names as the users." msgstr "Усунути бази даних, які мають такі ж назви як імена користувачів." -#: libraries/messages.inc.php:278 tbl_printview.php:382 tbl_structure.php:743 +#: libraries/messages.inc.php:274 tbl_printview.php:382 tbl_structure.php:743 msgid "dynamic" msgstr "динамічний" -#: libraries/messages.inc.php:282 server_privileges.php:1324 +#: libraries/messages.inc.php:278 server_privileges.php:1324 #: server_privileges.php:1610 msgid "Edit Privileges" msgstr "Редагування привілеїв" -#: libraries/messages.inc.php:283 tbl_printview.php:341 tbl_structure.php:688 +#: libraries/messages.inc.php:279 tbl_printview.php:341 tbl_structure.php:688 msgid "Effective" msgstr "Ефективність" -#: libraries/messages.inc.php:286 libraries/relation.lib.php:100 +#: libraries/messages.inc.php:282 libraries/relation.lib.php:100 msgid "Enabled" msgstr "дозволено" -#: libraries/messages.inc.php:287 +#: libraries/messages.inc.php:283 msgid "Enclose export in a transaction" msgstr "" -#: libraries/messages.inc.php:288 libraries/sqlparser.lib.php:177 +#: libraries/messages.inc.php:284 libraries/sqlparser.lib.php:177 msgid "END CUT" msgstr "END CUT" -#: libraries/messages.inc.php:290 libraries/sqlparser.lib.php:183 +#: libraries/messages.inc.php:286 libraries/sqlparser.lib.php:183 msgid "END RAW" msgstr "END RAW" -#: libraries/messages.inc.php:293 libraries/server_links.inc.php:61 +#: libraries/messages.inc.php:289 libraries/server_links.inc.php:61 #: test/theme.php:113 msgid "Engines" msgstr "" -#: libraries/messages.inc.php:295 libraries/mysql_charsets.lib.php:238 +#: libraries/messages.inc.php:291 libraries/mysql_charsets.lib.php:238 msgid "English" msgstr "Англійське" -#: libraries/messages.inc.php:296 server_privileges.php:393 +#: libraries/messages.inc.php:292 server_privileges.php:393 #: server_privileges.php:535 server_privileges.php:1501 msgid " Note: MySQL privilege names are expressed in English " msgstr " Зауваження: привілеї MySQL задаються по-англійськи " -#: libraries/messages.inc.php:298 libraries/zip_extension.lib.php:49 +#: libraries/messages.inc.php:294 libraries/zip_extension.lib.php:49 #: libraries/zip_extension.lib.php:51 libraries/zip_extension.lib.php:66 msgid "Error in ZIP archive:" msgstr "" -#: libraries/messages.inc.php:303 libraries/mysql_charsets.lib.php:241 +#: libraries/messages.inc.php:299 libraries/mysql_charsets.lib.php:241 msgid "Esperanto" msgstr "" -#: libraries/messages.inc.php:304 libraries/mysql_charsets.lib.php:244 +#: libraries/messages.inc.php:300 libraries/mysql_charsets.lib.php:244 msgid "Estonian" msgstr "Естонське" -#: libraries/messages.inc.php:305 libraries/tbl_triggers.lib.php:29 +#: libraries/messages.inc.php:301 libraries/tbl_triggers.lib.php:29 msgid "Event" msgstr "" -#: libraries/messages.inc.php:307 +#: libraries/messages.inc.php:303 msgid "Excel edition" msgstr "" -#: libraries/messages.inc.php:311 pmd_pdf.php:85 +#: libraries/messages.inc.php:307 pmd_pdf.php:85 msgid "Export/Import to scale" msgstr "" -#: libraries/messages.inc.php:313 +#: libraries/messages.inc.php:309 msgid "Extended inserts" msgstr "Розширена вставка" -#: libraries/messages.inc.php:314 pdf_schema.php:1267 pdf_schema.php:1288 +#: libraries/messages.inc.php:310 pdf_schema.php:1267 pdf_schema.php:1288 #: tbl_printview.php:147 tbl_structure.php:183 tbl_tracking.php:278 msgid "Extra" msgstr "Додатково" -#: libraries/messages.inc.php:316 server_status.php:447 +#: libraries/messages.inc.php:312 server_status.php:447 msgid "Failed attempts" msgstr "Невдалих спроб" -#: libraries/messages.inc.php:318 tbl_structure.php:375 +#: libraries/messages.inc.php:314 tbl_structure.php:375 #, php-format msgid "Field %s has been dropped" msgstr "Поле %s було видалено" -#: libraries/messages.inc.php:322 libraries/sql_query_form.lib.php:317 +#: libraries/messages.inc.php:318 libraries/sql_query_form.lib.php:317 msgid "Fields" msgstr "Поля" -#: libraries/messages.inc.php:332 server_binlog.php:136 +#: libraries/messages.inc.php:328 server_binlog.php:136 msgid "Files" msgstr "" -#: libraries/messages.inc.php:334 server_privileges.php:1597 +#: libraries/messages.inc.php:330 server_privileges.php:1597 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -3715,217 +3715,217 @@ msgstr "" "сервером, якщо в цю таблицю вносилися зміни вручну. У цьому випадку Вам " "необхідно %sперезавантажити права%s перед продовженням." -#: libraries/messages.inc.php:335 server_status.php:289 +#: libraries/messages.inc.php:331 server_status.php:289 msgid "Flush query cache" msgstr "" -#: libraries/messages.inc.php:336 +#: libraries/messages.inc.php:332 msgid "Flush the table (\"FLUSH\")" msgstr "Очистити кеш таблиці (\"FLUSH\")" -#: libraries/messages.inc.php:337 server_status.php:271 +#: libraries/messages.inc.php:333 server_status.php:271 msgid "Flush (close) all tables" msgstr "" -#: libraries/messages.inc.php:339 tbl_relation.php:279 +#: libraries/messages.inc.php:335 tbl_relation.php:279 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" -#: libraries/messages.inc.php:341 setup/lib/messages.inc.php:88 +#: libraries/messages.inc.php:337 setup/lib/messages.inc.php:88 #: tbl_printview.php:376 tbl_structure.php:738 msgid "Format" msgstr "Формат" -#: libraries/messages.inc.php:344 server_replication.php:325 +#: libraries/messages.inc.php:340 server_replication.php:325 msgid "Full start" msgstr "" -#: libraries/messages.inc.php:345 server_replication.php:325 +#: libraries/messages.inc.php:341 server_replication.php:325 msgid "Full stop" msgstr "" -#: libraries/messages.inc.php:347 tbl_change.php:282 tbl_change.php:320 +#: libraries/messages.inc.php:343 tbl_change.php:282 tbl_change.php:320 msgid "Function" msgstr "Функція" -#: libraries/messages.inc.php:355 libraries/mysql_charsets.lib.php:377 +#: libraries/messages.inc.php:351 libraries/mysql_charsets.lib.php:377 msgid "Georgian" msgstr "" -#: libraries/messages.inc.php:356 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:352 libraries/mysql_charsets.lib.php:247 #: libraries/mysql_charsets.lib.php:250 msgid "German" msgstr "Німецьке" -#: libraries/messages.inc.php:357 themes.php:42 +#: libraries/messages.inc.php:353 themes.php:42 msgid "Get more themes!" msgstr "" -#: libraries/messages.inc.php:358 server_privileges.php:2134 +#: libraries/messages.inc.php:354 server_privileges.php:2134 msgid "global" msgstr "глобальний" -#: libraries/messages.inc.php:359 server_privileges.php:524 +#: libraries/messages.inc.php:355 server_privileges.php:524 #: server_privileges.php:1500 msgid "Global privileges" msgstr "Глобальні права" -#: libraries/messages.inc.php:360 server_variables.php:55 +#: libraries/messages.inc.php:356 server_variables.php:55 #: server_variables.php:89 msgid "Global value" msgstr "Загальне значення" -#: libraries/messages.inc.php:365 server_privileges.php:1502 +#: libraries/messages.inc.php:361 server_privileges.php:1502 #: server_privileges.php:1684 server_privileges.php:2033 msgid "Grant" msgstr "Grant" -#: libraries/messages.inc.php:366 libraries/mysql_charsets.lib.php:380 +#: libraries/messages.inc.php:362 libraries/mysql_charsets.lib.php:380 msgid "Greek" msgstr "Грецьке" -#: libraries/messages.inc.php:367 +#: libraries/messages.inc.php:363 msgid "\"gzipped\"" msgstr "запакувати в \"gzip\"" -#: libraries/messages.inc.php:369 server_status.php:250 +#: libraries/messages.inc.php:365 server_status.php:250 msgid "Handler" msgstr "" -#: libraries/messages.inc.php:370 server_synchronize.php:464 +#: libraries/messages.inc.php:366 server_synchronize.php:464 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: libraries/messages.inc.php:372 libraries/mysql_charsets.lib.php:374 +#: libraries/messages.inc.php:368 libraries/mysql_charsets.lib.php:374 msgid "Hebrew" msgstr "Іврит" -#: libraries/messages.inc.php:373 pmd_general.php:83 +#: libraries/messages.inc.php:369 pmd_general.php:83 msgid "Help" msgstr "" -#: libraries/messages.inc.php:374 +#: libraries/messages.inc.php:370 msgid "Use hexadecimal for BLOB" msgstr "" -#: libraries/messages.inc.php:376 pmd_general.php:120 +#: libraries/messages.inc.php:372 pmd_general.php:120 msgid "Hide/Show all" msgstr "" -#: libraries/messages.inc.php:377 pmd_general.php:124 +#: libraries/messages.inc.php:373 pmd_general.php:124 msgid "Hide/Show Tables with no relation" msgstr "" -#: libraries/messages.inc.php:378 libraries/navigation_header.inc.php:54 +#: libraries/messages.inc.php:374 libraries/navigation_header.inc.php:54 #: libraries/navigation_header.inc.php:57 #: libraries/navigation_header.inc.php:58 msgid "Home" msgstr "На початок" -#: libraries/messages.inc.php:379 main.php:233 +#: libraries/messages.inc.php:375 main.php:233 msgid "Official Homepage" msgstr "Офіційна сторінка phpMyAdmin" -#: libraries/messages.inc.php:382 libraries/replication_gui.lib.php:327 +#: libraries/messages.inc.php:378 libraries/replication_gui.lib.php:327 #: server_privileges.php:753 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/messages.inc.php:383 +#: libraries/messages.inc.php:379 msgid "Microsoft Word 2000" msgstr "" -#: libraries/messages.inc.php:384 libraries/mysql_charsets.lib.php:253 +#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:253 msgid "Hungarian" msgstr "Мадярське" -#: libraries/messages.inc.php:386 libraries/mysql_charsets.lib.php:256 +#: libraries/messages.inc.php:382 libraries/mysql_charsets.lib.php:256 msgid "Icelandic" msgstr "" -#: libraries/messages.inc.php:387 server_processlist.php:53 +#: libraries/messages.inc.php:383 server_processlist.php:53 msgid "ID" msgstr "ID" -#: libraries/messages.inc.php:388 libraries/mult_submits.inc.php:108 +#: libraries/messages.inc.php:384 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:479 msgid "Fulltext" msgstr "ПовнТекст" -#: libraries/messages.inc.php:389 +#: libraries/messages.inc.php:385 msgid "Ignore duplicate rows" msgstr "" -#: libraries/messages.inc.php:390 tbl_change.php:302 tbl_indexes.php:200 +#: libraries/messages.inc.php:386 tbl_change.php:302 tbl_indexes.php:200 #: tbl_indexes.php:225 msgid "Ignore" msgstr "Ігноруровати" -#: libraries/messages.inc.php:391 +#: libraries/messages.inc.php:387 msgid "Use ignore inserts" msgstr "" -#: libraries/messages.inc.php:392 +#: libraries/messages.inc.php:388 msgid "Column names in first row" msgstr "" -#: libraries/messages.inc.php:393 +#: libraries/messages.inc.php:389 msgid "Do not import empty rows" msgstr "" -#: libraries/messages.inc.php:394 pmd_general.php:104 +#: libraries/messages.inc.php:390 pmd_general.php:104 msgid "Import/Export coordinates for PDF schema" msgstr "" -#: libraries/messages.inc.php:395 querywindow.php:104 +#: libraries/messages.inc.php:391 querywindow.php:104 msgid "Import files" msgstr "Імпорт файлів" -#: libraries/messages.inc.php:403 +#: libraries/messages.inc.php:399 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/messages.inc.php:404 libraries/messages.inc.php:584 +#: libraries/messages.inc.php:400 libraries/messages.inc.php:580 msgid "Open Document Spreadsheet" msgstr "" -#: libraries/messages.inc.php:405 +#: libraries/messages.inc.php:401 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/messages.inc.php:409 +#: libraries/messages.inc.php:405 msgid "Excel 97-2003 XLS Workbook" msgstr "" -#: libraries/messages.inc.php:410 +#: libraries/messages.inc.php:406 msgid "Excel 2007 XLSX Workbook" msgstr "" -#: libraries/messages.inc.php:414 libraries/mult_submits.inc.php:98 +#: libraries/messages.inc.php:410 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:476 tbl_structure.php:674 msgid "Index" msgstr "Індекс" -#: libraries/messages.inc.php:415 tbl_indexes.php:168 +#: libraries/messages.inc.php:411 tbl_indexes.php:168 msgid "Index name:" msgstr "Назва індекса :" -#: libraries/messages.inc.php:416 tbl_indexes.php:174 +#: libraries/messages.inc.php:412 tbl_indexes.php:174 msgid "Index type:" msgstr "Тип індекса :" -#: libraries/messages.inc.php:417 sql.php:639 +#: libraries/messages.inc.php:413 sql.php:639 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: libraries/messages.inc.php:427 main.php:266 +#: libraries/messages.inc.php:423 main.php:266 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -3937,194 +3937,194 @@ msgstr "" "відкритий для вторгнення і тому Вам обов'язково слід виправити цю прогалину " "у безпеці." -#: libraries/messages.inc.php:428 tbl_change.php:1130 +#: libraries/messages.inc.php:424 tbl_change.php:1130 msgid "Insert as new row" msgstr "Вставити як новий рядок" -#: libraries/messages.inc.php:429 sql.php:496 tbl_replace.php:386 +#: libraries/messages.inc.php:425 sql.php:496 tbl_replace.php:386 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: libraries/messages.inc.php:430 tbl_change.php:1131 +#: libraries/messages.inc.php:426 tbl_change.php:1131 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/messages.inc.php:432 main.php:139 +#: libraries/messages.inc.php:428 main.php:139 msgid "Interface" msgstr "" -#: libraries/messages.inc.php:433 tbl_relation.php:407 +#: libraries/messages.inc.php:429 tbl_relation.php:407 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: libraries/messages.inc.php:435 pdf_pages.php:303 +#: libraries/messages.inc.php:431 pdf_pages.php:303 msgid "Internal relations" msgstr "" -#: libraries/messages.inc.php:438 tbl_indexes.php:256 tbl_structure.php:590 +#: libraries/messages.inc.php:434 tbl_indexes.php:256 tbl_structure.php:590 #: tbl_structure.php:601 msgid "Column count has to be larger than zero." msgstr "" -#: libraries/messages.inc.php:444 libraries/tbl_properties.inc.php:784 +#: libraries/messages.inc.php:440 libraries/tbl_properties.inc.php:784 #: tbl_structure.php:537 msgid "You have to add at least one field." msgstr "" -#: libraries/messages.inc.php:449 +#: libraries/messages.inc.php:445 #, php-format msgid "Invalid server index: \"%s\"" msgstr "" -#: libraries/messages.inc.php:452 libraries/mysql_charsets.lib.php:259 +#: libraries/messages.inc.php:448 libraries/mysql_charsets.lib.php:259 #: libraries/mysql_charsets.lib.php:349 msgid "Japanese" msgstr "Японське" -#: libraries/messages.inc.php:453 main.php:331 +#: libraries/messages.inc.php:449 main.php:331 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: libraries/messages.inc.php:454 server_status.php:257 +#: libraries/messages.inc.php:450 server_status.php:257 msgid "Joins" msgstr "" -#: libraries/messages.inc.php:457 server_privileges.php:763 +#: libraries/messages.inc.php:453 server_privileges.php:763 msgid "Do not change the password" msgstr "Не змінювати пароль" -#: libraries/messages.inc.php:458 server_status.php:256 +#: libraries/messages.inc.php:454 server_status.php:256 msgid "Key cache" msgstr "" -#: libraries/messages.inc.php:462 libraries/mysql_charsets.lib.php:268 +#: libraries/messages.inc.php:458 libraries/mysql_charsets.lib.php:268 #: libraries/mysql_charsets.lib.php:371 msgid "Korean" msgstr "Корейське" -#: libraries/messages.inc.php:466 libraries/select_lang.lib.php:480 +#: libraries/messages.inc.php:462 libraries/select_lang.lib.php:480 #: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492 #, php-format msgid "Unknown language: %1$s." msgstr "" -#: libraries/messages.inc.php:468 +#: libraries/messages.inc.php:464 msgid "Table caption" msgstr "" -#: libraries/messages.inc.php:469 +#: libraries/messages.inc.php:465 msgid "Content of table __TABLE__" msgstr "" -#: libraries/messages.inc.php:470 +#: libraries/messages.inc.php:466 msgid "Continued table caption" msgstr "" -#: libraries/messages.inc.php:471 +#: libraries/messages.inc.php:467 msgid "(continued)" msgstr "" -#: libraries/messages.inc.php:472 +#: libraries/messages.inc.php:468 msgid "Include table caption" msgstr "" -#: libraries/messages.inc.php:473 +#: libraries/messages.inc.php:469 msgid "Label key" msgstr "" -#: libraries/messages.inc.php:474 +#: libraries/messages.inc.php:470 msgid "LaTeX" msgstr "LaTeX" -#: libraries/messages.inc.php:475 +#: libraries/messages.inc.php:471 msgid "Structure of table __TABLE__" msgstr "" -#: libraries/messages.inc.php:476 libraries/mysql_charsets.lib.php:262 +#: libraries/messages.inc.php:472 libraries/mysql_charsets.lib.php:262 msgid "Latvian" msgstr "" -#: libraries/messages.inc.php:477 +#: libraries/messages.inc.php:473 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/messages.inc.php:478 +#: libraries/messages.inc.php:474 msgid "Use LOCAL keyword" msgstr "" -#: libraries/messages.inc.php:479 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:475 libraries/tbl_properties.inc.php:105 msgid "Length/Values" msgstr "Довжини/Значення*" -#: libraries/messages.inc.php:480 tbl_select.php:295 +#: libraries/messages.inc.php:476 tbl_select.php:295 msgid "Number of rows per page" msgstr "записів на сторінці" -#: libraries/messages.inc.php:484 libraries/mysql_charsets.lib.php:265 +#: libraries/messages.inc.php:480 libraries/mysql_charsets.lib.php:265 msgid "Lithuanian" msgstr "Литовське" -#: libraries/messages.inc.php:485 libraries/replication_gui.lib.php:302 +#: libraries/messages.inc.php:481 libraries/replication_gui.lib.php:302 #: server_privileges.php:729 msgid "Local" msgstr "Локальний" -#: libraries/messages.inc.php:487 server_privileges.php:669 +#: libraries/messages.inc.php:483 server_privileges.php:669 msgid "Login Information" msgstr "Вхідна інформація (Login)" -#: libraries/messages.inc.php:490 libraries/navigation_header.inc.php:67 +#: libraries/messages.inc.php:486 libraries/navigation_header.inc.php:67 #: libraries/navigation_header.inc.php:70 #: libraries/navigation_header.inc.php:71 main.php:99 msgid "Log out" msgstr "Вийти з системи" -#: libraries/messages.inc.php:497 server_status.php:440 +#: libraries/messages.inc.php:493 server_status.php:440 msgid "max. concurrent connections" msgstr "" -#: libraries/messages.inc.php:498 +#: libraries/messages.inc.php:494 msgid "Maximal length of created query" msgstr "" -#: libraries/messages.inc.php:500 main.php:282 +#: libraries/messages.inc.php:496 main.php:282 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " "split strings correctly and it may result in unexpected results." msgstr "" -#: libraries/messages.inc.php:501 main.php:274 +#: libraries/messages.inc.php:497 main.php:274 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " "corrupted!" msgstr "" -#: libraries/messages.inc.php:502 +#: libraries/messages.inc.php:498 msgid "MediaWiki Table" msgstr "" -#: libraries/messages.inc.php:503 transformation_overview.php:25 +#: libraries/messages.inc.php:499 transformation_overview.php:25 msgid "Available MIME types" msgstr "Доступні MIME-types" -#: libraries/messages.inc.php:504 transformation_overview.php:43 +#: libraries/messages.inc.php:500 transformation_overview.php:43 msgid "Available transformations" msgstr "Доступні перетворення" -#: libraries/messages.inc.php:505 +#: libraries/messages.inc.php:501 msgctxt "$strMIME_description" msgid "Description" msgstr "Опис" -#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:580 +#: libraries/messages.inc.php:503 libraries/tbl_properties.inc.php:580 #: transformation_overview.php:60 #, php-format msgid "" @@ -4133,7 +4133,7 @@ msgid "" msgstr "" "Немає опису для цього перетворення.
Прошу питатися автора, що робить %s." -#: libraries/messages.inc.php:509 libraries/tbl_properties.inc.php:137 +#: libraries/messages.inc.php:505 libraries/tbl_properties.inc.php:137 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -4142,7 +4142,7 @@ msgstr "" "Щоб отримати список можливих опцій і їх MIME-type перетворень, натисніть %" "sописи перетворень%s" -#: libraries/messages.inc.php:510 libraries/tbl_properties.inc.php:146 +#: libraries/messages.inc.php:506 libraries/tbl_properties.inc.php:146 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -4154,403 +4154,403 @@ msgstr "" "лапки (\"'\") у цих значеннях, поставте перед ними додатковий зворотній слеш " "(наприклад '\\\\xyz' чи 'a\\'b')." -#: libraries/messages.inc.php:511 libraries/tbl_properties.inc.php:145 +#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:145 msgid "Transformation options" msgstr "Опції перетворення" -#: libraries/messages.inc.php:513 transformation_overview.php:38 +#: libraries/messages.inc.php:509 transformation_overview.php:38 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "MIME-types подані курсивом не мають окремих функцій перетворення" -#: libraries/messages.inc.php:515 tbl_indexes.php:162 +#: libraries/messages.inc.php:511 tbl_indexes.php:162 msgid "Modify an index" msgstr "Змінити індекс" -#: libraries/messages.inc.php:517 pmd_general.php:108 +#: libraries/messages.inc.php:513 pmd_general.php:108 msgid "Move Menu" msgstr "" -#: libraries/messages.inc.php:518 tbl_operations.php:276 +#: libraries/messages.inc.php:514 tbl_operations.php:276 msgid "Move table to (database.table):" msgstr "Перенести таблицю в (база даних.таблиця):" -#: libraries/messages.inc.php:519 tbl_move_copy.php:56 +#: libraries/messages.inc.php:515 tbl_move_copy.php:56 #, php-format msgid "Table %s has been moved to %s." msgstr "Таблицю %s було перенесено в %s." -#: libraries/messages.inc.php:520 tbl_move_copy.php:46 +#: libraries/messages.inc.php:516 tbl_move_copy.php:46 msgid "Can't move table to same one!" msgstr "Не можу перенести таблицю саму в себе!" -#: libraries/messages.inc.php:521 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:517 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 #: libraries/mysql_charsets.lib.php:332 libraries/mysql_charsets.lib.php:354 #: libraries/mysql_charsets.lib.php:365 msgid "multilingual" msgstr "багатомовні" -#: libraries/messages.inc.php:534 main.php:193 +#: libraries/messages.inc.php:530 main.php:193 msgid "MySQL charset" msgstr "MySQL Charset" -#: libraries/messages.inc.php:535 main.php:211 +#: libraries/messages.inc.php:531 main.php:211 msgid "MySQL client version" msgstr "" -#: libraries/messages.inc.php:536 main.php:125 +#: libraries/messages.inc.php:532 main.php:125 msgid "MySQL connection collation" msgstr "" -#: libraries/messages.inc.php:537 main.php:346 +#: libraries/messages.inc.php:533 main.php:346 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: libraries/messages.inc.php:539 server_status.php:294 +#: libraries/messages.inc.php:535 server_status.php:294 msgid "Show processes" msgstr "Показати процеси" -#: libraries/messages.inc.php:545 navigation.php:210 server_databases.php:371 +#: libraries/messages.inc.php:541 navigation.php:210 server_databases.php:371 #: server_synchronize.php:1191 msgid "No databases" msgstr "БД відсутні" -#: libraries/messages.inc.php:546 server_databases.php:52 +#: libraries/messages.inc.php:542 server_databases.php:52 msgid "No databases selected." msgstr "Не вибрано бази даних." -#: libraries/messages.inc.php:548 libraries/relation.lib.php:1173 +#: libraries/messages.inc.php:544 libraries/relation.lib.php:1173 msgid "no description" msgstr "без опису" -#: libraries/messages.inc.php:552 libraries/zip_extension.lib.php:26 +#: libraries/messages.inc.php:548 libraries/zip_extension.lib.php:26 msgid "No files found inside ZIP archive!" msgstr "" -#: libraries/messages.inc.php:555 tbl_indexes.php:91 +#: libraries/messages.inc.php:551 tbl_indexes.php:91 msgid "No index parts defined!" msgstr "Не визначено частини індекса!" -#: libraries/messages.inc.php:556 libraries/mult_submits.inc.php:435 +#: libraries/messages.inc.php:552 libraries/mult_submits.inc.php:435 #: tbl_replace.php:331 msgid "No change" msgstr "Змін немає" -#: libraries/messages.inc.php:557 +#: libraries/messages.inc.php:553 msgctxt "$strNoneDefault" msgid "None" msgstr "" -#: libraries/messages.inc.php:560 libraries/plugin_interface.lib.php:312 +#: libraries/messages.inc.php:556 libraries/plugin_interface.lib.php:312 msgid "This format has no options" msgstr "Цей формат не має опцій" -#: libraries/messages.inc.php:565 user_password.php:54 +#: libraries/messages.inc.php:561 user_password.php:54 msgid "You don't have sufficient privileges to be here right now!" msgstr "Ви для цього маєте недостатньо прав!" -#: libraries/messages.inc.php:566 tbl_row_action.php:29 +#: libraries/messages.inc.php:562 tbl_row_action.php:29 msgid "No rows selected" msgstr "" -#: libraries/messages.inc.php:569 themes.php:32 +#: libraries/messages.inc.php:565 themes.php:32 #, php-format msgid "" "No themes support; please check your configuration and/or your themes in " "directory %s." msgstr "" -#: libraries/messages.inc.php:571 libraries/relation.lib.php:95 +#: libraries/messages.inc.php:567 libraries/relation.lib.php:95 msgid "not OK" msgstr "не OK" -#: libraries/messages.inc.php:572 server_synchronize.php:400 +#: libraries/messages.inc.php:568 server_synchronize.php:400 #: server_synchronize.php:839 msgid "not present" msgstr "" -#: libraries/messages.inc.php:573 pdf_pages.php:36 pdf_pages.php:42 +#: libraries/messages.inc.php:569 pdf_pages.php:36 pdf_pages.php:42 #: pdf_pages.php:48 pdf_pages.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "Таблицю %s не знайдено або не визначено у %s" -#: libraries/messages.inc.php:574 server_privileges.php:804 +#: libraries/messages.inc.php:570 server_privileges.php:804 #: server_privileges.php:2166 msgid "No user(s) found." msgstr "Не знайдено користувача." -#: libraries/messages.inc.php:578 pmd_general.php:164 +#: libraries/messages.inc.php:574 pmd_general.php:164 msgid "Number of tables" msgstr "" -#: libraries/messages.inc.php:581 server_databases.php:117 +#: libraries/messages.inc.php:577 server_databases.php:117 #: server_status.php:260 setup/lib/messages.inc.php:117 msgid "Tables" msgstr "Таблиць" -#: libraries/messages.inc.php:583 libraries/relation.lib.php:99 +#: libraries/messages.inc.php:579 libraries/relation.lib.php:99 #: pmd_general.php:340 msgid "OK" msgstr "OK" -#: libraries/messages.inc.php:585 +#: libraries/messages.inc.php:581 msgid "Open Document Text" msgstr "" -#: libraries/messages.inc.php:588 tbl_select.php:138 +#: libraries/messages.inc.php:584 tbl_select.php:138 msgid "Operator" msgstr "" -#: libraries/messages.inc.php:589 tbl_operations.php:662 +#: libraries/messages.inc.php:585 tbl_operations.php:662 msgid "Optimize" msgstr "" -#: libraries/messages.inc.php:602 libraries/tbl_properties.inc.php:755 +#: libraries/messages.inc.php:598 libraries/tbl_properties.inc.php:755 msgid "PARTITION definition" msgstr "" -#: libraries/messages.inc.php:603 tbl_structure.php:757 +#: libraries/messages.inc.php:599 tbl_structure.php:757 msgid "partitioned" msgstr "" -#: libraries/messages.inc.php:604 tbl_operations.php:649 +#: libraries/messages.inc.php:600 tbl_operations.php:649 msgid "Partition maintenance" msgstr "" -#: libraries/messages.inc.php:605 tbl_operations.php:657 +#: libraries/messages.inc.php:601 tbl_operations.php:657 #, php-format msgid "Partition %s" msgstr "" -#: libraries/messages.inc.php:606 server_privileges.php:1212 +#: libraries/messages.inc.php:602 server_privileges.php:1212 #, php-format msgid "The password for %s was changed successfully." msgstr "Пароль для %s успішно змінено." -#: libraries/messages.inc.php:635 +#: libraries/messages.inc.php:631 #, php-format msgid "Schema of the \"%s\" database - Page %s" msgstr "Схема бази даних \"%s\" - Сторінка %s" -#: libraries/messages.inc.php:636 +#: libraries/messages.inc.php:632 #, php-format msgid "The \"%s\" table doesn't exist!" msgstr "Таблиці \"%s\" не існує!" -#: libraries/messages.inc.php:637 pdf_schema.php:1013 +#: libraries/messages.inc.php:633 pdf_schema.php:1013 msgid "No tables" msgstr "Таблиць немає" -#: libraries/messages.inc.php:638 pmd_pdf.php:63 +#: libraries/messages.inc.php:634 pmd_pdf.php:63 msgid "Page has been created" msgstr "" -#: libraries/messages.inc.php:639 pmd_pdf.php:65 +#: libraries/messages.inc.php:635 pmd_pdf.php:65 msgid "Page creation failed" msgstr "" -#: libraries/messages.inc.php:640 +#: libraries/messages.inc.php:636 msgid "PDF" msgstr "" -#: libraries/messages.inc.php:641 +#: libraries/messages.inc.php:637 msgid "(Generates a report containing the data of a single table)" msgstr "" -#: libraries/messages.inc.php:642 +#: libraries/messages.inc.php:638 msgid "Report title" msgstr "" -#: libraries/messages.inc.php:643 server_status.php:389 server_status.php:434 +#: libraries/messages.inc.php:639 server_status.php:389 server_status.php:434 #: server_status.php:497 server_status.php:555 msgid "per hour" msgstr "за годину" -#: libraries/messages.inc.php:644 server_status.php:498 +#: libraries/messages.inc.php:640 server_status.php:498 msgid "per minute" msgstr "за хвилину" -#: libraries/messages.inc.php:645 server_status.php:499 +#: libraries/messages.inc.php:641 server_status.php:499 msgid "per second" msgstr "за секунду" -#: libraries/messages.inc.php:646 libraries/mysql_charsets.lib.php:271 +#: libraries/messages.inc.php:642 libraries/mysql_charsets.lib.php:271 msgid "Persian" msgstr "" -#: libraries/messages.inc.php:647 libraries/mysql_charsets.lib.php:250 +#: libraries/messages.inc.php:643 libraries/mysql_charsets.lib.php:250 msgid "phone book" msgstr "телефонна книга" -#: libraries/messages.inc.php:648 +#: libraries/messages.inc.php:644 msgid "PHP array" msgstr "" -#: libraries/messages.inc.php:650 main.php:213 +#: libraries/messages.inc.php:646 main.php:213 msgid "PHP extension" msgstr "" -#: libraries/messages.inc.php:654 libraries/relation.lib.php:163 +#: libraries/messages.inc.php:650 libraries/relation.lib.php:163 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/messages.inc.php:655 libraries/relation.lib.php:159 +#: libraries/messages.inc.php:651 libraries/relation.lib.php:159 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/messages.inc.php:656 libraries/relation.lib.php:161 +#: libraries/messages.inc.php:652 libraries/relation.lib.php:161 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" -#: libraries/messages.inc.php:657 libraries/relation.lib.php:162 +#: libraries/messages.inc.php:653 libraries/relation.lib.php:162 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/messages.inc.php:658 libraries/relation.lib.php:164 +#: libraries/messages.inc.php:654 libraries/relation.lib.php:164 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/messages.inc.php:661 libraries/mysql_charsets.lib.php:274 +#: libraries/messages.inc.php:657 libraries/mysql_charsets.lib.php:274 msgid "Polish" msgstr "" -#: libraries/messages.inc.php:662 libraries/replication_gui.lib.php:67 +#: libraries/messages.inc.php:658 libraries/replication_gui.lib.php:67 #: server_synchronize.php:1163 msgid "Port" msgstr "" -#: libraries/messages.inc.php:667 tbl_indexes.php:67 +#: libraries/messages.inc.php:663 tbl_indexes.php:67 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Ім'я первинного ключа повинно бути PRIMARY!" -#: libraries/messages.inc.php:668 tbl_indexes.php:184 +#: libraries/messages.inc.php:664 tbl_indexes.php:184 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "(\"PRIMARY\" повинно бути іменем лише первинного ключа!)" -#: libraries/messages.inc.php:669 libraries/mult_submits.inc.php:76 +#: libraries/messages.inc.php:665 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:474 msgid "Primary" msgstr "Первинний" -#: libraries/messages.inc.php:673 server_privileges.php:227 +#: libraries/messages.inc.php:669 server_privileges.php:227 msgid "Includes all privileges except GRANT." msgstr "Дозволити всі права за винятком GRANT." -#: libraries/messages.inc.php:674 server_privileges.php:153 +#: libraries/messages.inc.php:670 server_privileges.php:153 #: server_privileges.php:476 msgid "Allows altering the structure of existing tables." msgstr "Дозволити змінювати структуру наявних таблиць." -#: libraries/messages.inc.php:675 server_privileges.php:169 +#: libraries/messages.inc.php:671 server_privileges.php:169 #: server_privileges.php:482 msgid "Allows altering and dropping stored routines." msgstr "" -#: libraries/messages.inc.php:676 server_privileges.php:145 +#: libraries/messages.inc.php:672 server_privileges.php:145 #: server_privileges.php:475 msgid "Allows creating new databases and tables." msgstr "Дозволити створювати нові бази даних та таблиці." -#: libraries/messages.inc.php:677 server_privileges.php:168 +#: libraries/messages.inc.php:673 server_privileges.php:168 #: server_privileges.php:481 msgid "Allows creating stored routines." msgstr "" -#: libraries/messages.inc.php:678 server_privileges.php:475 +#: libraries/messages.inc.php:674 server_privileges.php:475 msgid "Allows creating new tables." msgstr "Дозволити створювати нові таблиці." -#: libraries/messages.inc.php:679 server_privileges.php:156 +#: libraries/messages.inc.php:675 server_privileges.php:156 #: server_privileges.php:479 msgid "Allows creating temporary tables." msgstr "Дозволити створювати тимчасові таблиці." -#: libraries/messages.inc.php:680 server_privileges.php:170 +#: libraries/messages.inc.php:676 server_privileges.php:170 #: server_privileges.php:515 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: libraries/messages.inc.php:681 server_privileges.php:160 +#: libraries/messages.inc.php:677 server_privileges.php:160 #: server_privileges.php:164 server_privileges.php:487 #: server_privileges.php:491 msgid "Allows creating new views." msgstr "" -#: libraries/messages.inc.php:682 server_privileges.php:144 +#: libraries/messages.inc.php:678 server_privileges.php:144 #: server_privileges.php:467 msgid "Allows deleting data." msgstr "Дозволити знищувати дані з таблиць." -#: libraries/messages.inc.php:683 server_privileges.php:146 +#: libraries/messages.inc.php:679 server_privileges.php:146 #: server_privileges.php:478 msgid "Allows dropping databases and tables." msgstr "Дозволити знищувати бази даних та таблиці." -#: libraries/messages.inc.php:684 server_privileges.php:478 +#: libraries/messages.inc.php:680 server_privileges.php:478 msgid "Allows dropping tables." msgstr "Дозволити знищувати таблиці." -#: libraries/messages.inc.php:685 server_privileges.php:161 +#: libraries/messages.inc.php:681 server_privileges.php:161 #: server_privileges.php:495 msgid "Allows to set up events for the event scheduler" msgstr "" -#: libraries/messages.inc.php:686 server_privileges.php:171 +#: libraries/messages.inc.php:682 server_privileges.php:171 #: server_privileges.php:483 msgid "Allows executing stored routines." msgstr "" -#: libraries/messages.inc.php:687 server_privileges.php:150 +#: libraries/messages.inc.php:683 server_privileges.php:150 #: server_privileges.php:470 msgid "Allows importing data from and exporting data into files." msgstr "Дозволити імпорт даних з файлів, та експорт у файли." -#: libraries/messages.inc.php:688 server_privileges.php:501 +#: libraries/messages.inc.php:684 server_privileges.php:501 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Дозволити додавання користувачів та прав без перезавантаження таблиці прав." -#: libraries/messages.inc.php:689 server_privileges.php:152 +#: libraries/messages.inc.php:685 server_privileges.php:152 #: server_privileges.php:477 msgid "Allows creating and dropping indexes." msgstr "Дозволити створення та знищення індексів." -#: libraries/messages.inc.php:690 server_privileges.php:142 +#: libraries/messages.inc.php:686 server_privileges.php:142 #: server_privileges.php:403 server_privileges.php:465 msgid "Allows inserting and replacing data." msgstr "Дозволити вставку та заміну даних." -#: libraries/messages.inc.php:691 server_privileges.php:157 +#: libraries/messages.inc.php:687 server_privileges.php:157 #: server_privileges.php:510 msgid "Allows locking tables for the current thread." msgstr "Дозволити блокування таблиць для біжучих потоків." -#: libraries/messages.inc.php:692 server_privileges.php:607 +#: libraries/messages.inc.php:688 server_privileges.php:607 #: server_privileges.php:609 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Обмежити кількість нових під'єднань, які користувач може створювати протягом " "години." -#: libraries/messages.inc.php:693 server_privileges.php:595 +#: libraries/messages.inc.php:689 server_privileges.php:595 #: server_privileges.php:597 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Обмежити кількість запитів, які користувач може надіслати серверу протягом " "години." -#: libraries/messages.inc.php:694 server_privileges.php:601 +#: libraries/messages.inc.php:690 server_privileges.php:601 #: server_privileges.php:603 msgid "" "Limits the number of commands that change any table or database the user may " @@ -4559,57 +4559,57 @@ msgstr "" "Обмежити кількість команд, що вносять зміни до будь-якої таблиці чи бази " "даних, які користувач може виконати протягом години." -#: libraries/messages.inc.php:695 server_privileges.php:613 +#: libraries/messages.inc.php:691 server_privileges.php:613 #: server_privileges.php:615 msgid "Limits the number of simultaneous connections the user may have." msgstr "" -#: libraries/messages.inc.php:696 server_privileges.php:149 +#: libraries/messages.inc.php:692 server_privileges.php:149 #: server_privileges.php:505 msgid "Allows viewing processes of all users" msgstr "" -#: libraries/messages.inc.php:697 server_privileges.php:151 +#: libraries/messages.inc.php:693 server_privileges.php:151 #: server_privileges.php:409 server_privileges.php:511 msgid "Has no effect in this MySQL version." msgstr "Неефективно для цієї версії MySQL." -#: libraries/messages.inc.php:698 server_privileges.php:147 +#: libraries/messages.inc.php:694 server_privileges.php:147 #: server_privileges.php:506 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Дозволити перезавантаження установок та очищення кешу сервера." -#: libraries/messages.inc.php:699 server_privileges.php:159 +#: libraries/messages.inc.php:695 server_privileges.php:159 #: server_privileges.php:513 msgid "Allows the user to ask where the slaves / masters are." msgstr "Надати користувачу право запитувати де є slaves / masters." -#: libraries/messages.inc.php:700 server_privileges.php:158 +#: libraries/messages.inc.php:696 server_privileges.php:158 #: server_privileges.php:514 msgid "Needed for the replication slaves." msgstr "Необхідно для реплікації slaves." -#: libraries/messages.inc.php:701 server_privileges.php:141 +#: libraries/messages.inc.php:697 server_privileges.php:141 #: server_privileges.php:400 server_privileges.php:464 msgid "Allows reading data." msgstr "Дозволити читання даних." -#: libraries/messages.inc.php:702 server_privileges.php:154 +#: libraries/messages.inc.php:698 server_privileges.php:154 #: server_privileges.php:508 msgid "Gives access to the complete list of databases." msgstr "Надати доступ до повного списку баз даних." -#: libraries/messages.inc.php:703 server_privileges.php:165 +#: libraries/messages.inc.php:699 server_privileges.php:165 #: server_privileges.php:167 server_privileges.php:480 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: libraries/messages.inc.php:704 server_privileges.php:148 +#: libraries/messages.inc.php:700 server_privileges.php:148 #: server_privileges.php:507 msgid "Allows shutting down the server." msgstr "Дозволити вимкнення сервера." -#: libraries/messages.inc.php:705 server_privileges.php:155 +#: libraries/messages.inc.php:701 server_privileges.php:155 #: server_privileges.php:504 msgid "" "Allows connecting, even if maximum number of connections is reached; " @@ -4620,55 +4620,55 @@ msgstr "" "під'єднань; Обов'язково для більшості адміністративних операцій таких як " "встановлення ґлобальних змінних чи припинення процесів інших користувачів." -#: libraries/messages.inc.php:706 server_privileges.php:162 +#: libraries/messages.inc.php:702 server_privileges.php:162 #: server_privileges.php:496 msgid "Allows creating and dropping triggers" msgstr "" -#: libraries/messages.inc.php:707 server_privileges.php:143 +#: libraries/messages.inc.php:703 server_privileges.php:143 #: server_privileges.php:406 server_privileges.php:466 msgid "Allows changing data." msgstr "Дозволити зміну даних." -#: libraries/messages.inc.php:708 server_privileges.php:221 +#: libraries/messages.inc.php:704 server_privileges.php:221 msgid "No privileges." msgstr "Немає прав." -#: libraries/messages.inc.php:710 server_privileges.php:1296 +#: libraries/messages.inc.php:706 server_privileges.php:1296 msgid "The privileges were reloaded successfully." msgstr "Права успішно перезавантажено." -#: libraries/messages.inc.php:712 libraries/server_links.inc.php:80 +#: libraries/messages.inc.php:708 libraries/server_links.inc.php:80 msgid "Processes" msgstr "Процеси" -#: libraries/messages.inc.php:714 main.php:187 +#: libraries/messages.inc.php:710 main.php:187 msgid "Protocol version" msgstr "" -#: libraries/messages.inc.php:715 +#: libraries/messages.inc.php:711 msgid "Put fields names in the first row" msgstr "Дати назви полів у першому рядку" -#: libraries/messages.inc.php:720 server_synchronize.php:1003 +#: libraries/messages.inc.php:716 server_synchronize.php:1003 msgid "The following queries have been executed:" msgstr "" -#: libraries/messages.inc.php:721 server_status.php:251 +#: libraries/messages.inc.php:717 server_status.php:251 msgid "Query cache" msgstr "" -#: libraries/messages.inc.php:722 libraries/navigation_header.inc.php:80 +#: libraries/messages.inc.php:718 libraries/navigation_header.inc.php:80 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 setup/lib/messages.inc.php:122 msgid "Query window" msgstr "Вікно запиту" -#: libraries/messages.inc.php:725 querywindow.php:109 querywindow.php:217 +#: libraries/messages.inc.php:721 querywindow.php:109 querywindow.php:217 msgid "SQL history" msgstr "SQL-history" -#: libraries/messages.inc.php:726 server_status.php:490 +#: libraries/messages.inc.php:722 server_status.php:490 #, php-format msgid "" "Query statistics: Since its startup, %s queries have been sent to the " @@ -4677,135 +4677,135 @@ msgstr "" "Статистика запитів: З моменту запуску, до сервера було надіслано %s " "запитів." -#: libraries/messages.inc.php:728 server_status.php:554 +#: libraries/messages.inc.php:724 server_status.php:554 msgid "Query type" msgstr "Тип запиту" -#: libraries/messages.inc.php:729 libraries/sql_query_form.lib.php:381 +#: libraries/messages.inc.php:725 libraries/sql_query_form.lib.php:381 msgid "Do not overwrite this query from outside the window" msgstr "Не перекривати цей запит в інших вікнах" -#: libraries/messages.inc.php:732 tbl_operations.php:663 +#: libraries/messages.inc.php:728 tbl_operations.php:663 msgid "Rebuild" msgstr "" -#: libraries/messages.inc.php:733 server_status.php:394 +#: libraries/messages.inc.php:729 server_status.php:394 msgid "Received" msgstr "Отримано" -#: libraries/messages.inc.php:734 pmd_pdf.php:89 +#: libraries/messages.inc.php:730 pmd_pdf.php:89 msgid "recommended" msgstr "" -#: libraries/messages.inc.php:736 tbl_operations.php:702 +#: libraries/messages.inc.php:732 tbl_operations.php:702 msgid "Check referential integrity:" msgstr "Перевір цілісність даних на рівні посилань:" -#: libraries/messages.inc.php:740 pdf_schema.php:1032 pdf_schema.php:1141 +#: libraries/messages.inc.php:736 pdf_schema.php:1032 pdf_schema.php:1141 msgid "Relational schema" msgstr "Схема зв'язків" -#: libraries/messages.inc.php:744 tbl_relation.php:399 +#: libraries/messages.inc.php:740 tbl_relation.php:399 msgid "Relations" msgstr "Зв'язки" -#: libraries/messages.inc.php:745 tbl_structure.php:507 tbl_structure.php:509 +#: libraries/messages.inc.php:741 tbl_structure.php:507 tbl_structure.php:509 msgid "Relation view" msgstr "Перегляд залежностей" -#: libraries/messages.inc.php:746 server_privileges.php:1246 +#: libraries/messages.inc.php:742 server_privileges.php:1246 msgid "Reloading the privileges" msgstr "Перезавантаження прав" -#: libraries/messages.inc.php:747 navigation.php:66 navigation.php:67 +#: libraries/messages.inc.php:743 navigation.php:66 navigation.php:67 #: navigation.php:70 msgid "Reload navigation frame" msgstr "" -#: libraries/messages.inc.php:748 pmd_general.php:80 +#: libraries/messages.inc.php:744 pmd_general.php:80 msgid "Reload" msgstr "" -#: libraries/messages.inc.php:749 libraries/server_synchronize.lib.php:1345 +#: libraries/messages.inc.php:745 libraries/server_synchronize.lib.php:1345 #: libraries/server_synchronize.lib.php:1371 msgid "Remote server" msgstr "" -#: libraries/messages.inc.php:750 +#: libraries/messages.inc.php:746 msgid "Remove CRLF characters within fields" msgstr "" -#: libraries/messages.inc.php:751 tbl_operations.php:676 +#: libraries/messages.inc.php:747 tbl_operations.php:676 msgid "Remove partitioning" msgstr "" -#: libraries/messages.inc.php:752 server_privileges.php:1575 +#: libraries/messages.inc.php:748 server_privileges.php:1575 msgid "Remove selected users" msgstr "Усунути відмічених користувачів" -#: libraries/messages.inc.php:755 tbl_operations.php:338 +#: libraries/messages.inc.php:751 tbl_operations.php:338 msgid "Rename table to" msgstr "Перейменувати таблицю в" -#: libraries/messages.inc.php:756 view_operations.php:93 +#: libraries/messages.inc.php:752 view_operations.php:93 msgid "Rename view to" msgstr "" -#: libraries/messages.inc.php:757 tbl_operations.php:664 +#: libraries/messages.inc.php:753 tbl_operations.php:664 msgid "Repair" msgstr "" -#: libraries/messages.inc.php:759 +#: libraries/messages.inc.php:755 msgid "Replace NULL by" msgstr "Замінити NULL на" -#: libraries/messages.inc.php:760 +#: libraries/messages.inc.php:756 msgid "Replace table data with file" msgstr "Замінити дані таблиці даними з файлу" -#: libraries/messages.inc.php:761 server_replication.php:228 +#: libraries/messages.inc.php:757 server_replication.php:228 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: libraries/messages.inc.php:762 libraries/replication_gui.lib.php:236 +#: libraries/messages.inc.php:758 libraries/replication_gui.lib.php:236 #: server_replication.php:194 msgid "Add slave replication user" msgstr "" -#: libraries/messages.inc.php:763 server_replication.php:74 +#: libraries/messages.inc.php:759 server_replication.php:74 #, php-format msgid "Master server changed succesfully to %s" msgstr "" -#: libraries/messages.inc.php:764 server_replication.php:182 +#: libraries/messages.inc.php:760 server_replication.php:182 msgid "This server is configured as master in a replication process." msgstr "" -#: libraries/messages.inc.php:765 server_replication.php:322 +#: libraries/messages.inc.php:761 server_replication.php:322 msgid "Control slave:" msgstr "" -#: libraries/messages.inc.php:766 server_replication.php:65 +#: libraries/messages.inc.php:762 server_replication.php:65 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: libraries/messages.inc.php:767 server_replication.php:58 +#: libraries/messages.inc.php:763 server_replication.php:58 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: libraries/messages.inc.php:768 server_replication.php:221 +#: libraries/messages.inc.php:764 server_replication.php:221 msgid "Replicate all databases; Ignore:" msgstr "" -#: libraries/messages.inc.php:769 server_replication.php:222 +#: libraries/messages.inc.php:765 server_replication.php:222 msgid "Ignore all databases; Replicate:" msgstr "" -#: libraries/messages.inc.php:770 server_replication.php:218 +#: libraries/messages.inc.php:766 server_replication.php:218 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -4814,120 +4814,120 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: libraries/messages.inc.php:771 server_replication.php:217 +#: libraries/messages.inc.php:767 server_replication.php:217 msgid "Master configuration" msgstr "" -#: libraries/messages.inc.php:772 server_replication.php:181 +#: libraries/messages.inc.php:768 server_replication.php:181 #: server_replication.php:209 msgid "Master replication" msgstr "" -#: libraries/messages.inc.php:774 server_replication.php:230 +#: libraries/messages.inc.php:770 server_replication.php:230 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: libraries/messages.inc.php:775 server_replication.php:225 +#: libraries/messages.inc.php:771 server_replication.php:225 msgid "Please select databases:" msgstr "" -#: libraries/messages.inc.php:776 server_replication.php:210 +#: libraries/messages.inc.php:772 server_replication.php:210 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:188 +#: libraries/messages.inc.php:773 libraries/replication_gui.lib.php:188 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/messages.inc.php:778 server_replication.php:187 +#: libraries/messages.inc.php:774 server_replication.php:187 msgid "Show connected slaves" msgstr "" -#: libraries/messages.inc.php:779 libraries/messages.inc.php:885 +#: libraries/messages.inc.php:775 libraries/messages.inc.php:881 #: server_replication.php:184 server_status.php:281 msgid "Show master status" msgstr "" -#: libraries/messages.inc.php:780 server_replication.php:334 +#: libraries/messages.inc.php:776 server_replication.php:334 msgid "Skipping error(s) might lead into unsynchronized master and slave!" msgstr "" -#: libraries/messages.inc.php:781 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:51 #: server_replication.php:347 msgid "Change or reconfigure master server" msgstr "" -#: libraries/messages.inc.php:782 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:778 libraries/replication_gui.lib.php:51 msgid "Slave configuration" msgstr "" -#: libraries/messages.inc.php:783 server_replication.php:305 +#: libraries/messages.inc.php:779 server_replication.php:305 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: libraries/messages.inc.php:784 server_replication.php:332 +#: libraries/messages.inc.php:780 server_replication.php:332 msgid "Error management:" msgstr "" -#: libraries/messages.inc.php:785 server_replication.php:328 +#: libraries/messages.inc.php:781 server_replication.php:328 #, php-format msgid "IO Thread %s only" msgstr "" -#: libraries/messages.inc.php:786 server_replication.php:296 +#: libraries/messages.inc.php:782 server_replication.php:296 msgid "Slave IO Thread not running!" msgstr "" -#: libraries/messages.inc.php:787 server_replication.php:355 +#: libraries/messages.inc.php:783 server_replication.php:355 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/messages.inc.php:788 server_replication.php:326 +#: libraries/messages.inc.php:784 server_replication.php:326 msgid "Reset slave" msgstr "" -#: libraries/messages.inc.php:789 server_replication.php:308 +#: libraries/messages.inc.php:785 server_replication.php:308 msgid "See slave status table" msgstr "" -#: libraries/messages.inc.php:790 server_replication.php:336 +#: libraries/messages.inc.php:786 server_replication.php:336 msgid "Skip current error" msgstr "" -#: libraries/messages.inc.php:791 server_replication.php:340 +#: libraries/messages.inc.php:787 server_replication.php:340 msgid "errors." msgstr "" -#: libraries/messages.inc.php:792 server_replication.php:337 +#: libraries/messages.inc.php:788 server_replication.php:337 msgid "Skip next" msgstr "" -#: libraries/messages.inc.php:793 server_replication.php:248 +#: libraries/messages.inc.php:789 server_replication.php:248 msgid "Slave replication" msgstr "" -#: libraries/messages.inc.php:794 server_replication.php:293 +#: libraries/messages.inc.php:790 server_replication.php:293 msgid "Slave SQL Thread not running!" msgstr "" -#: libraries/messages.inc.php:795 server_replication.php:327 +#: libraries/messages.inc.php:791 server_replication.php:327 #, php-format msgid "SQL Thread %s only" msgstr "" -#: libraries/messages.inc.php:796 +#: libraries/messages.inc.php:792 #, php-format msgid "" "This MySQL server works as %s in replication process. For further " @@ -4935,157 +4935,157 @@ msgid "" "\"#replication\">replication section." msgstr "" -#: libraries/messages.inc.php:797 +#: libraries/messages.inc.php:793 msgid "Master status" msgstr "" -#: libraries/messages.inc.php:798 server_status.php:721 +#: libraries/messages.inc.php:794 server_status.php:721 msgid "Replication status" msgstr "" -#: libraries/messages.inc.php:799 +#: libraries/messages.inc.php:795 msgid "Slave status" msgstr "" -#: libraries/messages.inc.php:800 server_replication.php:311 +#: libraries/messages.inc.php:796 server_replication.php:311 msgid "Synchronize databases with master" msgstr "" -#: libraries/messages.inc.php:801 server_replication.php:71 +#: libraries/messages.inc.php:797 server_replication.php:71 msgid "Unable to change master" msgstr "" -#: libraries/messages.inc.php:802 server_replication.php:51 +#: libraries/messages.inc.php:798 server_replication.php:51 msgid "Unknown error" msgstr "" -#: libraries/messages.inc.php:803 main.php:163 pdf_pages.php:344 +#: libraries/messages.inc.php:799 main.php:163 pdf_pages.php:344 #: setup/lib/FormDisplay.tpl.php:216 tbl_change.php:1175 msgid "Reset" msgstr "Перевстановити" -#: libraries/messages.inc.php:804 server_privileges.php:591 +#: libraries/messages.inc.php:800 server_privileges.php:591 msgid "Resource limits" msgstr "Обмеження ресурсів" -#: libraries/messages.inc.php:805 tbl_change.php:1209 +#: libraries/messages.inc.php:801 tbl_change.php:1209 #, php-format msgid "Restart insertion with %s rows" msgstr "" -#: libraries/messages.inc.php:807 server_privileges.php:1578 +#: libraries/messages.inc.php:803 server_privileges.php:1578 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Відмінити всі активні права користувачів та усунути їх після цього." -#: libraries/messages.inc.php:808 server_privileges.php:1176 +#: libraries/messages.inc.php:804 server_privileges.php:1176 #, php-format msgid "You have revoked the privileges for %s" msgstr "Ви змінили привілеї для %s" -#: libraries/messages.inc.php:809 server_privileges.php:1333 +#: libraries/messages.inc.php:805 server_privileges.php:1333 msgid "Revoke" msgstr "Відмінити" -#: libraries/messages.inc.php:810 libraries/mysql_charsets.lib.php:280 +#: libraries/messages.inc.php:806 libraries/mysql_charsets.lib.php:280 msgid "Romanian" msgstr "" -#: libraries/messages.inc.php:813 tbl_printview.php:404 tbl_structure.php:786 +#: libraries/messages.inc.php:809 tbl_printview.php:404 tbl_structure.php:786 msgid "Row length" msgstr "Довжина рядка" -#: libraries/messages.inc.php:815 tbl_printview.php:414 tbl_structure.php:794 +#: libraries/messages.inc.php:811 tbl_printview.php:414 tbl_structure.php:794 msgid " Row size " msgstr " Розмір рядка " -#: libraries/messages.inc.php:821 tbl_printview.php:366 tbl_structure.php:726 +#: libraries/messages.inc.php:817 tbl_printview.php:366 tbl_structure.php:726 msgid "Row Statistics" msgstr "Статистика рядка" -#: libraries/messages.inc.php:822 +#: libraries/messages.inc.php:818 #, php-format msgid "running on %s" msgstr "на %s" -#: libraries/messages.inc.php:824 libraries/sql_query_form.lib.php:223 +#: libraries/messages.inc.php:820 libraries/sql_query_form.lib.php:223 #, php-format msgid "Run SQL query/queries on server %s" msgstr "" -#: libraries/messages.inc.php:825 libraries/sql_query_form.lib.php:240 +#: libraries/messages.inc.php:821 libraries/sql_query_form.lib.php:240 #: libraries/sql_query_form.lib.php:265 #, php-format msgid "Run SQL query/queries on database %s" msgstr "Виконати SQL запит(и) до БД %s" -#: libraries/messages.inc.php:826 libraries/mysql_charsets.lib.php:337 +#: libraries/messages.inc.php:822 libraries/mysql_charsets.lib.php:337 msgid "Russian" msgstr "Російське" -#: libraries/messages.inc.php:829 pmd_general.php:68 +#: libraries/messages.inc.php:825 pmd_general.php:68 msgid "Save position" msgstr "" -#: libraries/messages.inc.php:830 libraries/tbl_properties.inc.php:776 +#: libraries/messages.inc.php:826 libraries/tbl_properties.inc.php:776 #: pdf_pages.php:484 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:214 setup/lib/FormDisplay.tpl.php:215 #: tbl_change.php:1126 tbl_indexes.php:248 tbl_relation.php:566 msgid "Save" msgstr "Зберегти" -#: libraries/messages.inc.php:831 +#: libraries/messages.inc.php:827 msgid "The scale factor is too small to fit the schema on one page" msgstr "Занадто малий масштаб щоб схема займала цілу сторінку" -#: libraries/messages.inc.php:843 main.php:298 +#: libraries/messages.inc.php:839 main.php:298 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "Конфігураційний файл потребує секретну фразу (пароль)." -#: libraries/messages.inc.php:844 navigation.php:353 navigation.php:516 +#: libraries/messages.inc.php:840 navigation.php:353 navigation.php:516 msgid "Please select a database" msgstr "Прошу вибрати БД" -#: libraries/messages.inc.php:846 server_binlog.php:120 +#: libraries/messages.inc.php:842 server_binlog.php:120 msgid "Select binary log to view" msgstr "" -#: libraries/messages.inc.php:847 tbl_select.php:270 +#: libraries/messages.inc.php:843 tbl_select.php:270 msgid "Select fields (at least one):" msgstr "Вибрати поля (щонайменше одне):" -#: libraries/messages.inc.php:851 pdf_pages.php:320 +#: libraries/messages.inc.php:847 pdf_pages.php:320 msgid "Select Tables" msgstr "Вибрати таблиці" -#: libraries/messages.inc.php:853 server_status.php:404 +#: libraries/messages.inc.php:849 server_status.php:404 msgid "Sent" msgstr "Відправлено" -#: libraries/messages.inc.php:857 libraries/select_server.lib.php:45 +#: libraries/messages.inc.php:853 libraries/select_server.lib.php:45 #: setup/frames/index.inc.php:97 setup/lib/messages.inc.php:115 msgid "Servers" msgstr "" -#: libraries/messages.inc.php:858 server_status.php:255 +#: libraries/messages.inc.php:854 server_status.php:255 msgid "Delayed inserts" msgstr "" -#: libraries/messages.inc.php:859 server_status.php:46 +#: libraries/messages.inc.php:855 server_status.php:46 msgid "Runtime Information" msgstr "Інформація про роботу сервера" -#: libraries/messages.inc.php:860 server_status.php:350 +#: libraries/messages.inc.php:856 server_status.php:350 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "Цей MySQL сервер працює %s. Стартував %s." -#: libraries/messages.inc.php:861 libraries/server_links.inc.php:53 +#: libraries/messages.inc.php:857 libraries/server_links.inc.php:53 #: server_engines.php:112 server_engines.php:116 server_status.php:304 #: test/theme.php:105 msgid "Variables" msgstr "Змінні" -#: libraries/messages.inc.php:862 server_status.php:383 +#: libraries/messages.inc.php:858 server_status.php:383 msgid "" "Server traffic: These tables show the network traffic statistics of " "this MySQL server since its startup." @@ -5093,11 +5093,11 @@ msgstr "" "Трафік сервера: таблиці показують статистику завантаження мережі цим " "MySQL сервером з моменту його запуску." -#: libraries/messages.inc.php:863 server_variables.php:35 +#: libraries/messages.inc.php:859 server_variables.php:35 msgid "Server variables and settings" msgstr "Змінні сервера та налаштування" -#: libraries/messages.inc.php:865 main.php:290 +#: libraries/messages.inc.php:861 main.php:290 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -5105,17 +5105,17 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: libraries/messages.inc.php:866 +#: libraries/messages.inc.php:862 msgid "" "Cannot start session without errors, please check errors given in your PHP " "and/or webserver log file and configure your PHP installation properly." msgstr "" -#: libraries/messages.inc.php:867 server_variables.php:55 +#: libraries/messages.inc.php:863 server_variables.php:55 msgid "Session value" msgstr "Значення сесії" -#: libraries/messages.inc.php:868 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:864 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 " @@ -5127,55 +5127,55 @@ msgstr "" "\"\") або поодинокі лапки (\"'\") посеред цих значень, поставте перед ними " "зворотню косу риску (наприклад, '\\\\xyz' чи 'a\\'b')." -#: libraries/messages.inc.php:876 server_binlog.php:192 server_binlog.php:195 +#: libraries/messages.inc.php:872 server_binlog.php:192 server_binlog.php:195 #: server_processlist.php:49 server_processlist.php:51 msgid "Show Full Queries" msgstr "Показати повні запити" -#: libraries/messages.inc.php:878 pmd_general.php:64 +#: libraries/messages.inc.php:874 pmd_general.php:64 msgid "Show/Hide left menu" msgstr "" -#: libraries/messages.inc.php:880 sql.php:513 +#: libraries/messages.inc.php:876 sql.php:513 msgid "Showing as PHP code" msgstr "" -#: libraries/messages.inc.php:882 sql.php:516 tbl_replace.php:360 +#: libraries/messages.inc.php:878 sql.php:516 tbl_replace.php:360 msgid "Showing SQL query" msgstr "" -#: libraries/messages.inc.php:883 tbl_change.php:1132 +#: libraries/messages.inc.php:879 tbl_change.php:1132 msgid "Show insert query" msgstr "" -#: libraries/messages.inc.php:886 server_status.php:273 +#: libraries/messages.inc.php:882 server_status.php:273 msgid "Show open tables" msgstr "" -#: libraries/messages.inc.php:887 main.php:219 +#: libraries/messages.inc.php:883 main.php:219 msgid "Show PHP information" msgstr "Показати інформацію про PHP" -#: libraries/messages.inc.php:889 server_status.php:278 +#: libraries/messages.inc.php:885 server_status.php:278 msgid "Show slave hosts" msgstr "" -#: libraries/messages.inc.php:890 server_status.php:284 +#: libraries/messages.inc.php:886 server_status.php:284 msgid "Show slave status" msgstr "" -#: libraries/messages.inc.php:891 +#: libraries/messages.inc.php:887 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/messages.inc.php:892 +#: libraries/messages.inc.php:888 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/messages.inc.php:893 +#: libraries/messages.inc.php:889 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -5183,78 +5183,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/messages.inc.php:894 +#: libraries/messages.inc.php:890 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/messages.inc.php:895 +#: libraries/messages.inc.php:891 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/messages.inc.php:896 +#: libraries/messages.inc.php:892 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/messages.inc.php:897 +#: libraries/messages.inc.php:893 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/messages.inc.php:898 +#: libraries/messages.inc.php:894 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/messages.inc.php:899 +#: libraries/messages.inc.php:895 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/messages.inc.php:900 +#: libraries/messages.inc.php:896 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/messages.inc.php:901 +#: libraries/messages.inc.php:897 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/messages.inc.php:902 +#: libraries/messages.inc.php:898 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/messages.inc.php:903 +#: libraries/messages.inc.php:899 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/messages.inc.php:904 +#: libraries/messages.inc.php:900 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: libraries/messages.inc.php:905 +#: libraries/messages.inc.php:901 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/messages.inc.php:906 +#: libraries/messages.inc.php:902 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: libraries/messages.inc.php:907 +#: libraries/messages.inc.php:903 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -5262,7 +5262,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/messages.inc.php:908 +#: libraries/messages.inc.php:904 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -5270,42 +5270,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/messages.inc.php:909 +#: libraries/messages.inc.php:905 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/messages.inc.php:910 +#: libraries/messages.inc.php:906 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/messages.inc.php:911 +#: libraries/messages.inc.php:907 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/messages.inc.php:912 +#: libraries/messages.inc.php:908 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/messages.inc.php:913 +#: libraries/messages.inc.php:909 msgid "The number of pages currently dirty." msgstr "" -#: libraries/messages.inc.php:914 +#: libraries/messages.inc.php:910 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/messages.inc.php:915 +#: libraries/messages.inc.php:911 msgid "The number of free pages." msgstr "" -#: libraries/messages.inc.php:916 +#: libraries/messages.inc.php:912 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/messages.inc.php:917 +#: libraries/messages.inc.php:913 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -5313,33 +5313,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/messages.inc.php:918 +#: libraries/messages.inc.php:914 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/messages.inc.php:919 +#: libraries/messages.inc.php:915 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/messages.inc.php:920 +#: libraries/messages.inc.php:916 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/messages.inc.php:921 +#: libraries/messages.inc.php:917 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/messages.inc.php:922 +#: libraries/messages.inc.php:918 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/messages.inc.php:923 +#: libraries/messages.inc.php:919 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -5348,218 +5348,218 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/messages.inc.php:924 +#: libraries/messages.inc.php:920 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/messages.inc.php:925 +#: libraries/messages.inc.php:921 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/messages.inc.php:926 +#: libraries/messages.inc.php:922 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/messages.inc.php:927 +#: libraries/messages.inc.php:923 msgid "The current number of pending reads." msgstr "" -#: libraries/messages.inc.php:928 +#: libraries/messages.inc.php:924 msgid "The current number of pending writes." msgstr "" -#: libraries/messages.inc.php:929 +#: libraries/messages.inc.php:925 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/messages.inc.php:930 +#: libraries/messages.inc.php:926 msgid "The total number of data reads." msgstr "" -#: libraries/messages.inc.php:931 +#: libraries/messages.inc.php:927 msgid "The total number of data writes." msgstr "" -#: libraries/messages.inc.php:932 +#: libraries/messages.inc.php:928 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/messages.inc.php:933 +#: libraries/messages.inc.php:929 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/messages.inc.php:934 +#: libraries/messages.inc.php:930 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/messages.inc.php:935 +#: libraries/messages.inc.php:931 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/messages.inc.php:936 +#: libraries/messages.inc.php:932 msgid "The number of log write requests." msgstr "" -#: libraries/messages.inc.php:937 +#: libraries/messages.inc.php:933 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/messages.inc.php:938 +#: libraries/messages.inc.php:934 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/messages.inc.php:939 +#: libraries/messages.inc.php:935 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/messages.inc.php:940 +#: libraries/messages.inc.php:936 msgid "Pending log file writes." msgstr "" -#: libraries/messages.inc.php:941 +#: libraries/messages.inc.php:937 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/messages.inc.php:942 +#: libraries/messages.inc.php:938 msgid "The number of pages created." msgstr "" -#: libraries/messages.inc.php:943 +#: libraries/messages.inc.php:939 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: libraries/messages.inc.php:944 +#: libraries/messages.inc.php:940 msgid "The number of pages read." msgstr "" -#: libraries/messages.inc.php:945 +#: libraries/messages.inc.php:941 msgid "The number of pages written." msgstr "" -#: libraries/messages.inc.php:946 +#: libraries/messages.inc.php:942 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/messages.inc.php:947 +#: libraries/messages.inc.php:943 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/messages.inc.php:948 +#: libraries/messages.inc.php:944 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/messages.inc.php:949 +#: libraries/messages.inc.php:945 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/messages.inc.php:950 +#: libraries/messages.inc.php:946 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/messages.inc.php:951 +#: libraries/messages.inc.php:947 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/messages.inc.php:952 +#: libraries/messages.inc.php:948 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/messages.inc.php:953 +#: libraries/messages.inc.php:949 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/messages.inc.php:954 +#: libraries/messages.inc.php:950 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/messages.inc.php:955 +#: libraries/messages.inc.php:951 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/messages.inc.php:956 +#: libraries/messages.inc.php:952 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: libraries/messages.inc.php:957 +#: libraries/messages.inc.php:953 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/messages.inc.php:958 +#: libraries/messages.inc.php:954 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/messages.inc.php:959 +#: libraries/messages.inc.php:955 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/messages.inc.php:960 +#: libraries/messages.inc.php:956 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/messages.inc.php:961 +#: libraries/messages.inc.php:957 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/messages.inc.php:962 +#: libraries/messages.inc.php:958 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/messages.inc.php:963 +#: libraries/messages.inc.php:959 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/messages.inc.php:964 +#: libraries/messages.inc.php:960 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/messages.inc.php:965 +#: libraries/messages.inc.php:961 msgid "The number of files that are open." msgstr "" -#: libraries/messages.inc.php:966 +#: libraries/messages.inc.php:962 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/messages.inc.php:967 +#: libraries/messages.inc.php:963 msgid "The number of tables that are open." msgstr "" -#: libraries/messages.inc.php:968 +#: libraries/messages.inc.php:964 msgid "The number of free memory blocks in query cache." msgstr "" -#: libraries/messages.inc.php:969 +#: libraries/messages.inc.php:965 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/messages.inc.php:970 +#: libraries/messages.inc.php:966 msgid "The number of cache hits." msgstr "" -#: libraries/messages.inc.php:971 +#: libraries/messages.inc.php:967 msgid "The number of queries added to the cache." msgstr "" -#: libraries/messages.inc.php:972 +#: libraries/messages.inc.php:968 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -5567,104 +5567,104 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/messages.inc.php:973 +#: libraries/messages.inc.php:969 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/messages.inc.php:974 +#: libraries/messages.inc.php:970 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/messages.inc.php:975 +#: libraries/messages.inc.php:971 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/messages.inc.php:976 +#: libraries/messages.inc.php:972 msgctxt "$strShowStatusReset" msgid "Reset" msgstr "" -#: libraries/messages.inc.php:977 +#: libraries/messages.inc.php:973 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/messages.inc.php:978 +#: libraries/messages.inc.php:974 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: libraries/messages.inc.php:979 +#: libraries/messages.inc.php:975 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/messages.inc.php:980 +#: libraries/messages.inc.php:976 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: libraries/messages.inc.php:981 +#: libraries/messages.inc.php:977 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/messages.inc.php:982 +#: libraries/messages.inc.php:978 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/messages.inc.php:983 +#: libraries/messages.inc.php:979 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/messages.inc.php:984 +#: libraries/messages.inc.php:980 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/messages.inc.php:985 +#: libraries/messages.inc.php:981 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/messages.inc.php:986 +#: libraries/messages.inc.php:982 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/messages.inc.php:987 +#: libraries/messages.inc.php:983 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/messages.inc.php:988 +#: libraries/messages.inc.php:984 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/messages.inc.php:989 +#: libraries/messages.inc.php:985 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/messages.inc.php:990 +#: libraries/messages.inc.php:986 msgid "The number of sorted rows." msgstr "" -#: libraries/messages.inc.php:991 +#: libraries/messages.inc.php:987 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/messages.inc.php:992 +#: libraries/messages.inc.php:988 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/messages.inc.php:993 +#: libraries/messages.inc.php:989 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -5672,18 +5672,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/messages.inc.php:994 +#: libraries/messages.inc.php:990 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/messages.inc.php:995 +#: libraries/messages.inc.php:991 msgid "The number of currently open connections." msgstr "" -#: libraries/messages.inc.php:996 +#: libraries/messages.inc.php:992 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -5691,74 +5691,74 @@ msgid "" "implementation.)" msgstr "" -#: libraries/messages.inc.php:997 +#: libraries/messages.inc.php:993 msgid "The number of threads that are not sleeping." msgstr "" -#: libraries/messages.inc.php:999 tbl_printview.php:75 +#: libraries/messages.inc.php:995 tbl_printview.php:75 msgid "Show tables" msgstr "Показати таблиці" -#: libraries/messages.inc.php:1000 libraries/sql_query_form.lib.php:396 +#: libraries/messages.inc.php:996 libraries/sql_query_form.lib.php:396 msgid " Show this query here again " msgstr " Показати даний запит знову " -#: libraries/messages.inc.php:1001 libraries/mysql_charsets.lib.php:217 +#: libraries/messages.inc.php:997 libraries/mysql_charsets.lib.php:217 #: libraries/mysql_charsets.lib.php:342 msgid "Simplified Chinese" msgstr "Китайське Спрощене" -#: libraries/messages.inc.php:1002 tbl_operations.php:258 +#: libraries/messages.inc.php:998 tbl_operations.php:258 msgid "(singly)" msgstr "(окремо)" -#: libraries/messages.inc.php:1005 libraries/replication_gui.lib.php:52 +#: libraries/messages.inc.php:1001 libraries/replication_gui.lib.php:52 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" msgstr "" -#: libraries/messages.inc.php:1006 libraries/mysql_charsets.lib.php:283 +#: libraries/messages.inc.php:1002 libraries/mysql_charsets.lib.php:283 msgid "Slovak" msgstr "" -#: libraries/messages.inc.php:1007 libraries/mysql_charsets.lib.php:286 +#: libraries/messages.inc.php:1003 libraries/mysql_charsets.lib.php:286 msgid "Slovenian" msgstr "" -#: libraries/messages.inc.php:1008 pmd_general.php:95 +#: libraries/messages.inc.php:1004 pmd_general.php:95 msgid "Small/Big All" msgstr "" -#: libraries/messages.inc.php:1009 pmd_general.php:91 +#: libraries/messages.inc.php:1005 pmd_general.php:91 msgid "Snap to grid" msgstr "" -#: libraries/messages.inc.php:1011 server_synchronize.php:1167 +#: libraries/messages.inc.php:1007 server_synchronize.php:1167 msgid "Socket" msgstr "" -#: libraries/messages.inc.php:1013 server_status.php:259 +#: libraries/messages.inc.php:1009 server_status.php:259 msgid "Sorting" msgstr "" -#: libraries/messages.inc.php:1015 tbl_printview.php:310 tbl_structure.php:657 +#: libraries/messages.inc.php:1011 tbl_printview.php:310 tbl_structure.php:657 msgid "Space usage" msgstr "Простір, що використовується" -#: libraries/messages.inc.php:1016 libraries/mysql_charsets.lib.php:289 +#: libraries/messages.inc.php:1012 libraries/mysql_charsets.lib.php:289 msgid "Spanish" msgstr "" -#: libraries/messages.inc.php:1019 +#: libraries/messages.inc.php:1015 msgid "Export type" msgstr "" -#: libraries/messages.inc.php:1020 +#: libraries/messages.inc.php:1016 msgid "Export time in UTC" msgstr "" -#: libraries/messages.inc.php:1021 libraries/sqlparser.lib.php:173 +#: libraries/messages.inc.php:1017 libraries/sqlparser.lib.php:173 msgid "" "There is a chance that you may have found a bug in the SQL parser. Please " "examine your query closely, and check that the quotes are correct and not " @@ -5781,7 +5781,7 @@ msgstr "" "запиту, який власне і викликає проблеми, і відішліть повідомлення про " "помилку з порцією даних у розділі CUT нижче:" -#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:137 +#: libraries/messages.inc.php:1018 libraries/sqlparser.lib.php:137 msgid "" "There seems to be an error in your SQL query. The MySQL server error output " "below, if there is any, may also help you in diagnosing the problem" @@ -5790,413 +5790,413 @@ msgstr "" "помилку подане нижче (якщо є таке) також може допомогти Вам у визначенні " "проблеми." -#: libraries/messages.inc.php:1026 libraries/sqlparser.lib.php:495 +#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:495 msgid "Invalid Identifer" msgstr "Некоректний ідентифікатор" -#: libraries/messages.inc.php:1027 libraries/sqlparser.lib.php:344 +#: libraries/messages.inc.php:1023 libraries/sqlparser.lib.php:344 msgid "Unclosed quote" msgstr "Не закриті лапки" -#: libraries/messages.inc.php:1028 libraries/sqlparser.lib.php:612 +#: libraries/messages.inc.php:1024 libraries/sqlparser.lib.php:612 msgid "Unknown Punctuation String" msgstr "Невідомий символ пунктуації" -#: libraries/messages.inc.php:1030 server_replication.php:327 +#: libraries/messages.inc.php:1026 server_replication.php:327 #: server_replication.php:328 msgid "Start" msgstr "" -#: libraries/messages.inc.php:1033 tbl_printview.php:369 tbl_structure.php:729 +#: libraries/messages.inc.php:1029 tbl_printview.php:369 tbl_structure.php:729 msgid "Statements" msgstr "Параметр" -#: libraries/messages.inc.php:1034 tbl_printview.php:380 tbl_structure.php:741 +#: libraries/messages.inc.php:1030 tbl_printview.php:380 tbl_structure.php:741 msgid "static" msgstr "" -#: libraries/messages.inc.php:1035 server_status.php:388 +#: libraries/messages.inc.php:1031 server_status.php:388 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: libraries/messages.inc.php:1038 server_replication.php:327 +#: libraries/messages.inc.php:1034 server_replication.php:327 #: server_replication.php:328 msgid "Stop" msgstr "" -#: libraries/messages.inc.php:1039 server_engines.php:49 +#: libraries/messages.inc.php:1035 server_engines.php:49 msgid "Storage Engines" msgstr "" -#: libraries/messages.inc.php:1040 libraries/tbl_properties.inc.php:726 +#: libraries/messages.inc.php:1036 libraries/tbl_properties.inc.php:726 #: server_engines.php:58 tbl_operations.php:353 msgid "Storage Engine" msgstr "" -#: libraries/messages.inc.php:1042 +#: libraries/messages.inc.php:1038 msgid "CSV for MS Excel" msgstr "CSV для даних MS Excel" -#: libraries/messages.inc.php:1044 tbl_structure.php:516 tbl_structure.php:518 +#: libraries/messages.inc.php:1040 tbl_structure.php:516 tbl_structure.php:518 msgid "Propose table structure" msgstr "Запропонувати структуру таблиці" -#: libraries/messages.inc.php:1045 server_synchronize.php:424 +#: libraries/messages.inc.php:1041 server_synchronize.php:424 #: server_synchronize.php:867 msgid "Structure Difference" msgstr "" -#: libraries/messages.inc.php:1049 server_synchronize.php:265 +#: libraries/messages.inc.php:1045 server_synchronize.php:265 msgid "Structure Synchronization" msgstr "" -#: libraries/messages.inc.php:1050 libraries/sql_query_form.lib.php:462 +#: libraries/messages.inc.php:1046 libraries/sql_query_form.lib.php:462 msgid "Submit" msgstr "Виконати" -#: libraries/messages.inc.php:1052 main.php:358 +#: libraries/messages.inc.php:1048 main.php:358 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " "issues." msgstr "" -#: libraries/messages.inc.php:1054 libraries/mysql_charsets.lib.php:295 +#: libraries/messages.inc.php:1050 libraries/mysql_charsets.lib.php:295 #: libraries/mysql_charsets.lib.php:392 msgid "Swedish" msgstr "Шведське" -#: libraries/messages.inc.php:1060 tbl_operations.php:556 +#: libraries/messages.inc.php:1056 tbl_operations.php:556 msgid "Switch to copied table" msgstr "Перейти до скопійованої таблиці" -#: libraries/messages.inc.php:1061 server_synchronize.php:1213 +#: libraries/messages.inc.php:1057 server_synchronize.php:1213 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." msgstr "" -#: libraries/messages.inc.php:1062 server_synchronize.php:451 +#: libraries/messages.inc.php:1058 server_synchronize.php:451 #: server_synchronize.php:896 msgid "Synchronize Databases" msgstr "" -#: libraries/messages.inc.php:1063 libraries/server_links.inc.php:92 +#: libraries/messages.inc.php:1059 libraries/server_links.inc.php:92 #: server_synchronize.php:1092 server_synchronize.php:1100 msgid "Synchronize" msgstr "" -#: libraries/messages.inc.php:1065 server_synchronize.php:430 +#: libraries/messages.inc.php:1061 server_synchronize.php:430 #: server_synchronize.php:873 msgid "Add column(s)" msgstr "" -#: libraries/messages.inc.php:1066 tbl_create.php:62 +#: libraries/messages.inc.php:1062 tbl_create.php:62 #, php-format msgid "Table %s already exists!" msgstr "" -#: libraries/messages.inc.php:1067 server_synchronize.php:432 +#: libraries/messages.inc.php:1063 server_synchronize.php:432 #: server_synchronize.php:875 msgid "Alter column(s)" msgstr "" -#: libraries/messages.inc.php:1068 tbl_addfield.php:189 tbl_alter.php:103 +#: libraries/messages.inc.php:1064 tbl_addfield.php:189 tbl_alter.php:103 #: tbl_indexes.php:98 #, php-format msgid "Table %1$s has been altered successfully" msgstr "" -#: libraries/messages.inc.php:1069 server_synchronize.php:434 +#: libraries/messages.inc.php:1065 server_synchronize.php:434 #: server_synchronize.php:877 msgid "Apply index(s)" msgstr "" -#: libraries/messages.inc.php:1071 server_synchronize.php:446 +#: libraries/messages.inc.php:1067 server_synchronize.php:446 #: server_synchronize.php:890 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: libraries/messages.inc.php:1072 tbl_move_copy.php:82 +#: libraries/messages.inc.php:1068 tbl_move_copy.php:82 msgid "The table name is empty!" msgstr "Порожня назва таблиці!" -#: libraries/messages.inc.php:1073 tbl_create.php:249 +#: libraries/messages.inc.php:1069 tbl_create.php:249 #, php-format msgid "Table %1$s has been created." msgstr "" -#: libraries/messages.inc.php:1076 tbl_operations.php:628 +#: libraries/messages.inc.php:1072 tbl_operations.php:628 #, php-format msgid "Table %s has been flushed" msgstr "Було очищено кеш таблиці %s" -#: libraries/messages.inc.php:1077 server_synchronize.php:436 +#: libraries/messages.inc.php:1073 server_synchronize.php:436 #: server_synchronize.php:879 msgid "Insert row(s)" msgstr "" -#: libraries/messages.inc.php:1078 libraries/tbl_links.inc.php:107 +#: libraries/messages.inc.php:1074 libraries/tbl_links.inc.php:107 #: libraries/tbl_links.inc.php:140 libraries/tbl_links.inc.php:141 msgid "Table seems to be empty!" msgstr "" -#: libraries/messages.inc.php:1079 tbl_operations.php:568 +#: libraries/messages.inc.php:1075 tbl_operations.php:568 msgid "Table maintenance" msgstr "Обслговування таблиці" -#: libraries/messages.inc.php:1080 libraries/tbl_properties.inc.php:618 +#: libraries/messages.inc.php:1076 libraries/tbl_properties.inc.php:618 #: server_synchronize.php:428 server_synchronize.php:871 msgid "Table name" msgstr "" -#: libraries/messages.inc.php:1081 pdf_schema.php:1116 +#: libraries/messages.inc.php:1077 pdf_schema.php:1116 msgid "Table of contents" msgstr "Зміст" -#: libraries/messages.inc.php:1082 tbl_operations.php:334 +#: libraries/messages.inc.php:1078 tbl_operations.php:334 msgid "Table options" msgstr "Налаштування таблиці" -#: libraries/messages.inc.php:1083 server_synchronize.php:431 +#: libraries/messages.inc.php:1079 server_synchronize.php:431 #: server_synchronize.php:874 msgid "Remove column(s)" msgstr "" -#: libraries/messages.inc.php:1084 server_synchronize.php:433 +#: libraries/messages.inc.php:1080 server_synchronize.php:433 #: server_synchronize.php:876 msgid "Remove index(s)" msgstr "" -#: libraries/messages.inc.php:1088 server_synchronize.php:435 +#: libraries/messages.inc.php:1084 server_synchronize.php:435 #: server_synchronize.php:878 msgid "Update row(s)" msgstr "" -#: libraries/messages.inc.php:1090 server_synchronize.php:942 +#: libraries/messages.inc.php:1086 server_synchronize.php:942 msgid "Target database has been synchronized with source database" msgstr "" -#: libraries/messages.inc.php:1091 server_privileges.php:392 +#: libraries/messages.inc.php:1087 server_privileges.php:392 #: server_privileges.php:527 server_privileges.php:1679 #: server_privileges.php:1685 msgid "Table-specific privileges" msgstr "Права, які стосуються таблиці" -#: libraries/messages.inc.php:1092 server_status.php:254 +#: libraries/messages.inc.php:1088 server_status.php:254 msgid "Temporary data" msgstr "" -#: libraries/messages.inc.php:1093 tbl_change.php:728 +#: libraries/messages.inc.php:1089 tbl_change.php:728 msgid " Because of its length,
this field might not be editable " msgstr " Через велику довжину,
це поле не може бути відредаговано " -#: libraries/messages.inc.php:1094 +#: libraries/messages.inc.php:1090 msgid "Texy! text" msgstr "" -#: libraries/messages.inc.php:1095 libraries/mysql_charsets.lib.php:298 +#: libraries/messages.inc.php:1091 libraries/mysql_charsets.lib.php:298 #: libraries/mysql_charsets.lib.php:395 msgid "Thai" msgstr "Тайське" -#: libraries/messages.inc.php:1102 libraries/replication_gui.lib.php:308 +#: libraries/messages.inc.php:1098 libraries/replication_gui.lib.php:308 #: server_privileges.php:734 msgid "This Host" msgstr "Цей хост" -#: libraries/messages.inc.php:1103 server_status.php:252 +#: libraries/messages.inc.php:1099 server_status.php:252 msgid "Threads" msgstr "" -#: libraries/messages.inc.php:1104 server_processlist.php:22 +#: libraries/messages.inc.php:1100 server_processlist.php:22 #, php-format msgid "Thread %s was successfully killed." msgstr "Процес %s припинено." -#: libraries/messages.inc.php:1106 +#: libraries/messages.inc.php:1102 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." msgstr "" -#: libraries/messages.inc.php:1109 pmd_pdf.php:94 +#: libraries/messages.inc.php:1105 pmd_pdf.php:94 msgid "to/from page" msgstr "" -#: libraries/messages.inc.php:1110 pdf_pages.php:343 +#: libraries/messages.inc.php:1106 pdf_pages.php:343 msgid "Toggle scratchboard" msgstr "ввімкнути чорновик (scratchboard)" -#: libraries/messages.inc.php:1111 pmd_general.php:99 +#: libraries/messages.inc.php:1107 pmd_general.php:99 msgid "Toggle small/big" msgstr "" -#: libraries/messages.inc.php:1112 pmd_help.php:27 +#: libraries/messages.inc.php:1108 pmd_help.php:27 msgid "To select relation, click :" msgstr "" -#: libraries/messages.inc.php:1115 libraries/tbl_links.inc.php:149 +#: libraries/messages.inc.php:1111 libraries/tbl_links.inc.php:149 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" -#: libraries/messages.inc.php:1116 tbl_tracking.php:655 +#: libraries/messages.inc.php:1112 tbl_tracking.php:655 msgid "Activate now" msgstr "" -#: libraries/messages.inc.php:1117 tbl_tracking.php:653 +#: libraries/messages.inc.php:1113 tbl_tracking.php:653 #, php-format msgid "Activate tracking for %s.%s" msgstr "" -#: libraries/messages.inc.php:1118 tbl_tracking.php:221 +#: libraries/messages.inc.php:1114 tbl_tracking.php:221 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/messages.inc.php:1119 tbl_tracking.php:688 +#: libraries/messages.inc.php:1115 tbl_tracking.php:688 msgid "Create version" msgstr "" -#: libraries/messages.inc.php:1120 tbl_tracking.php:668 +#: libraries/messages.inc.php:1116 tbl_tracking.php:668 #, php-format msgid "Create version %s of %s.%s" msgstr "" -#: libraries/messages.inc.php:1122 tbl_tracking.php:412 +#: libraries/messages.inc.php:1118 tbl_tracking.php:412 msgid "Data definition statement" msgstr "" -#: libraries/messages.inc.php:1123 tbl_tracking.php:463 +#: libraries/messages.inc.php:1119 tbl_tracking.php:463 msgid "Data manipulation statement" msgstr "" -#: libraries/messages.inc.php:1124 tbl_tracking.php:410 tbl_tracking.php:461 +#: libraries/messages.inc.php:1120 tbl_tracking.php:410 tbl_tracking.php:461 msgid "Date" msgstr "" -#: libraries/messages.inc.php:1125 tbl_tracking.php:642 +#: libraries/messages.inc.php:1121 tbl_tracking.php:642 msgid "Deactivate now" msgstr "" -#: libraries/messages.inc.php:1126 tbl_tracking.php:640 +#: libraries/messages.inc.php:1122 tbl_tracking.php:640 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "" -#: libraries/messages.inc.php:1127 tbl_tracking.php:521 +#: libraries/messages.inc.php:1123 tbl_tracking.php:521 #, php-format msgid "Export as %s" msgstr "" -#: libraries/messages.inc.php:1130 tbl_tracking.php:251 tbl_tracking.php:379 +#: libraries/messages.inc.php:1126 tbl_tracking.php:251 tbl_tracking.php:379 msgid "Close" msgstr "" -#: libraries/messages.inc.php:1131 tbl_tracking.php:114 +#: libraries/messages.inc.php:1127 tbl_tracking.php:114 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/messages.inc.php:1133 tbl_tracking.php:397 tbl_tracking.php:504 +#: libraries/messages.inc.php:1129 tbl_tracking.php:397 tbl_tracking.php:504 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "" -#: libraries/messages.inc.php:1134 tbl_tracking.php:561 +#: libraries/messages.inc.php:1130 tbl_tracking.php:561 msgid "Show versions" msgstr "" -#: libraries/messages.inc.php:1135 tbl_tracking.php:507 +#: libraries/messages.inc.php:1131 tbl_tracking.php:507 msgid "SQL dump (file download)" msgstr "" -#: libraries/messages.inc.php:1136 tbl_tracking.php:508 +#: libraries/messages.inc.php:1132 tbl_tracking.php:508 msgid "SQL dump" msgstr "" -#: libraries/messages.inc.php:1137 tbl_tracking.php:213 +#: libraries/messages.inc.php:1133 tbl_tracking.php:213 msgid "SQL statements executed." msgstr "" -#: libraries/messages.inc.php:1138 +#: libraries/messages.inc.php:1134 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/messages.inc.php:1139 tbl_tracking.php:509 +#: libraries/messages.inc.php:1135 tbl_tracking.php:509 msgid "SQL execution" msgstr "" -#: libraries/messages.inc.php:1140 tbl_tracking.php:230 +#: libraries/messages.inc.php:1136 tbl_tracking.php:230 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/messages.inc.php:1141 tbl_tracking.php:381 +#: libraries/messages.inc.php:1137 tbl_tracking.php:381 msgid "Tracking statements" msgstr "" -#: libraries/messages.inc.php:1148 tbl_tracking.php:593 +#: libraries/messages.inc.php:1144 tbl_tracking.php:593 msgid "Version" msgstr "" -#: libraries/messages.inc.php:1149 tbl_tracking.php:672 +#: libraries/messages.inc.php:1145 tbl_tracking.php:672 msgid "Track these data definition statements:" msgstr "" -#: libraries/messages.inc.php:1150 tbl_tracking.php:680 +#: libraries/messages.inc.php:1146 tbl_tracking.php:680 msgid "Track these data manipulation statements:" msgstr "" -#: libraries/messages.inc.php:1155 tbl_tracking.php:411 tbl_tracking.php:462 +#: libraries/messages.inc.php:1151 tbl_tracking.php:411 tbl_tracking.php:462 msgid "Username" msgstr "" -#: libraries/messages.inc.php:1156 tbl_tracking.php:203 +#: libraries/messages.inc.php:1152 tbl_tracking.php:203 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "" -#: libraries/messages.inc.php:1157 tbl_tracking.php:187 +#: libraries/messages.inc.php:1153 tbl_tracking.php:187 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "" -#: libraries/messages.inc.php:1158 tbl_tracking.php:195 +#: libraries/messages.inc.php:1154 tbl_tracking.php:195 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "" -#: libraries/messages.inc.php:1159 tbl_tracking.php:262 +#: libraries/messages.inc.php:1155 tbl_tracking.php:262 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/messages.inc.php:1161 tbl_tracking.php:220 +#: libraries/messages.inc.php:1157 tbl_tracking.php:220 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/messages.inc.php:1162 libraries/mysql_charsets.lib.php:219 +#: libraries/messages.inc.php:1158 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:362 msgid "Traditional Chinese" msgstr "Китайське Традиційне" -#: libraries/messages.inc.php:1163 libraries/mysql_charsets.lib.php:292 +#: libraries/messages.inc.php:1159 libraries/mysql_charsets.lib.php:292 msgid "Traditional Spanish" msgstr "" -#: libraries/messages.inc.php:1164 server_status.php:388 +#: libraries/messages.inc.php:1160 server_status.php:388 msgid "Traffic" msgstr "Трафік" -#: libraries/messages.inc.php:1165 server_status.php:261 +#: libraries/messages.inc.php:1161 server_status.php:261 msgid "Transaction coordinator" msgstr "" -#: libraries/messages.inc.php:1166 +#: libraries/messages.inc.php:1162 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 " @@ -6204,13 +6204,13 @@ msgid "" "need to set the first option to the empty string." msgstr "" -#: libraries/messages.inc.php:1167 +#: libraries/messages.inc.php:1163 msgid "" "Displays hexadecimal representation of data. Optional first parameter " "specifies how often space will be added (defaults to 2 nibbles)." msgstr "" -#: libraries/messages.inc.php:1168 +#: libraries/messages.inc.php:1164 msgid "" "Displays a clickable thumbnail. The options are the maximum width and height " "in pixels. The original aspect ratio is preserved." @@ -6218,15 +6218,15 @@ msgstr "" "Відображає clickable thumbnail; опції: ширина, висота у пікселах (зберігає " "початкові пропорції)" -#: libraries/messages.inc.php:1169 +#: libraries/messages.inc.php:1165 msgid "Displays a link to download this image." msgstr "Відображає лінк до цього малюнку (direct blob download, i.e.)." -#: libraries/messages.inc.php:1170 +#: libraries/messages.inc.php:1166 msgid "See image/jpeg: inline" msgstr "Див. image/jpeg: inline" -#: libraries/messages.inc.php:1171 +#: libraries/messages.inc.php:1167 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 " @@ -6238,7 +6238,7 @@ msgid "" "gmdate() function." msgstr "" -#: libraries/messages.inc.php:1172 +#: libraries/messages.inc.php:1168 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 " @@ -6262,13 +6262,13 @@ msgstr "" "буде додавати NOWRAP до кожної комірки контенту, так що веси вивід буде " "показано без переформатування (за замовчуванням: 1)" -#: libraries/messages.inc.php:1173 +#: libraries/messages.inc.php:1169 msgid "" "Displays the contents of the field as-is, without running it through " "htmlspecialchars(). That is, the field is assumed to contain valid HTML." msgstr "Зберігає початкове форматування поля. Не вносяться модифікації." -#: libraries/messages.inc.php:1174 +#: libraries/messages.inc.php:1170 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 " @@ -6277,7 +6277,7 @@ msgstr "" "Показує малюнок і лінк, поле містить назву файлу; перша опція - префікс, " "подібно до \"http://domain.com/\", друга - ширина в пікселах, третя - висота." -#: libraries/messages.inc.php:1175 +#: libraries/messages.inc.php:1171 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 " @@ -6286,11 +6286,11 @@ msgstr "" "Показує лінк, поле містить назву файлу; перша опція - префікс, подібно до " "\"http://domain.com/\", друга опція - title для лінку." -#: libraries/messages.inc.php:1176 +#: libraries/messages.inc.php:1172 msgid "Formats text as SQL query with syntax highlighting." msgstr "" -#: libraries/messages.inc.php:1177 +#: libraries/messages.inc.php:1173 msgid "" "Displays a part of a string. The first option is the number of characters to " "skip from the beginning of the string (Default 0). The second option is the " @@ -6304,71 +6304,71 @@ msgstr "" "всього тексту. Третя опція - визначає які символи буде додано після " "виведеного текстового сегменту (за замовчуванням: ...) ." -#: libraries/messages.inc.php:1179 server_binlog.php:183 server_binlog.php:186 +#: libraries/messages.inc.php:1175 server_binlog.php:183 server_binlog.php:186 #: server_processlist.php:49 server_processlist.php:51 msgid "Truncate Shown Queries" msgstr "Обрізати показані запити" -#: libraries/messages.inc.php:1180 libraries/mysql_charsets.lib.php:301 +#: libraries/messages.inc.php:1176 libraries/mysql_charsets.lib.php:301 #: libraries/mysql_charsets.lib.php:389 msgid "Turkish" msgstr "Турецьке" -#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:304 +#: libraries/messages.inc.php:1179 libraries/mysql_charsets.lib.php:304 #: libraries/mysql_charsets.lib.php:386 msgid "Ukrainian" msgstr "Українське" -#: libraries/messages.inc.php:1185 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:1181 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 msgid "Unicode" msgstr "Юнікод" -#: libraries/messages.inc.php:1187 libraries/mysql_charsets.lib.php:398 +#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:398 #: libraries/mysql_charsets.lib.php:405 msgid "unknown" msgstr "невідоме" -#: libraries/messages.inc.php:1190 server_privileges.php:1152 +#: libraries/messages.inc.php:1186 server_privileges.php:1152 #, fuzzy, php-format msgid "You have updated the privileges for %s." msgstr "Було змінено привілеї для" -#: libraries/messages.inc.php:1191 user_password.php:112 +#: libraries/messages.inc.php:1187 user_password.php:112 msgid "The profile has been updated." msgstr "Профіль було поновлено." -#: libraries/messages.inc.php:1193 libraries/relation.lib.php:138 +#: libraries/messages.inc.php:1189 libraries/relation.lib.php:138 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "За інформацією як поновити Вашу таблицю Column_comments прошу дивитись у " "Документації" -#: libraries/messages.inc.php:1194 +#: libraries/messages.inc.php:1190 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/messages.inc.php:1204 tbl_printview.php:314 tbl_structure.php:661 +#: libraries/messages.inc.php:1200 tbl_printview.php:314 tbl_structure.php:661 msgid "Usage" msgstr "Використання" -#: libraries/messages.inc.php:1205 +#: libraries/messages.inc.php:1201 msgid "Enclose table and field names with backquotes" msgstr "Зворотні лапки в назвах таблиць і полів" -#: libraries/messages.inc.php:1206 libraries/replication_gui.lib.php:314 +#: libraries/messages.inc.php:1202 libraries/replication_gui.lib.php:314 #: server_privileges.php:740 msgid "Use Host Table" msgstr "Використовувати Таблицю Хостів" -#: libraries/messages.inc.php:1207 server_privileges.php:848 +#: libraries/messages.inc.php:1203 server_privileges.php:848 #, php-format msgid "The user %s already exists!" msgstr "Користувач %s вже існує!" -#: libraries/messages.inc.php:1209 libraries/replication_gui.lib.php:55 +#: libraries/messages.inc.php:1205 libraries/replication_gui.lib.php:55 #: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245 #: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255 #: server_privileges.php:672 server_privileges.php:675 @@ -6376,35 +6376,35 @@ msgstr "Користувач %s вже існує!" msgid "User name" msgstr "Ім'я користувача" -#: libraries/messages.inc.php:1210 server_privileges.php:1645 +#: libraries/messages.inc.php:1206 server_privileges.php:1645 msgid "The selected user was not found in the privilege table." msgstr "Вказаного користувача не знайдено в таблиці прав." -#: libraries/messages.inc.php:1211 server_privileges.php:1365 +#: libraries/messages.inc.php:1207 server_privileges.php:1365 msgid "User overview" msgstr "Огляд користувачів" -#: libraries/messages.inc.php:1212 server_privileges.php:1261 +#: libraries/messages.inc.php:1208 server_privileges.php:1261 msgid "The selected users have been deleted successfully." msgstr "Відмічених користувачів успішно усунуто." -#: libraries/messages.inc.php:1213 server_privileges.php:2026 +#: libraries/messages.inc.php:1209 server_privileges.php:2026 #, php-format msgid "Users having access to "%s"" msgstr "Користувачі, котрі мають доступ до "%s"" -#: libraries/messages.inc.php:1214 main.php:189 server_privileges.php:1350 +#: libraries/messages.inc.php:1210 main.php:189 server_privileges.php:1350 #: server_privileges.php:1497 server_privileges.php:1611 #: server_privileges.php:2029 server_processlist.php:54 msgid "User" msgstr "Користувач" -#: libraries/messages.inc.php:1215 tbl_change.php:1171 +#: libraries/messages.inc.php:1211 tbl_change.php:1171 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/messages.inc.php:1217 libraries/replication_gui.lib.php:251 +#: libraries/messages.inc.php:1213 libraries/replication_gui.lib.php:251 #: libraries/replication_gui.lib.php:319 libraries/replication_gui.lib.php:342 #: server_privileges.php:678 server_privileges.php:745 #: server_privileges.php:769 server_privileges.php:1889 @@ -6412,7 +6412,7 @@ msgstr "" msgid "Use text field" msgstr "Використовувати текстове поле" -#: libraries/messages.inc.php:1221 libraries/sqlvalidator.lib.php:68 +#: libraries/messages.inc.php:1217 libraries/sqlvalidator.lib.php:68 #, php-format msgid "" "The SQL validator could not be initialized. Please check if you have " @@ -6421,84 +6421,84 @@ msgstr "" "Не можу запустити перевірку SQL. Прошу проконтролювати чи заінстальовано " "необхідні php extensions як описано в %sдокументації%s." -#: libraries/messages.inc.php:1222 libraries/replication_gui.lib.php:111 +#: libraries/messages.inc.php:1218 libraries/replication_gui.lib.php:111 #: server_status.php:627 tbl_change.php:324 tbl_printview.php:370 #: tbl_select.php:139 tbl_structure.php:730 msgid "Value" msgstr "Значення" -#: libraries/messages.inc.php:1223 libraries/replication_gui.lib.php:110 +#: libraries/messages.inc.php:1219 libraries/replication_gui.lib.php:110 #: libraries/sql_query_form.lib.php:445 server_status.php:626 #: server_variables.php:52 msgid "Variable" msgstr "Змінна" -#: libraries/messages.inc.php:1225 server_export.php:21 +#: libraries/messages.inc.php:1221 server_export.php:21 msgid "View dump (schema) of databases" msgstr "Переглянути dump (схему) баз даних" -#: libraries/messages.inc.php:1227 tbl_export.php:23 +#: libraries/messages.inc.php:1223 tbl_export.php:23 msgid "View dump (schema) of table" msgstr "Переглянути дамп (схему) таблиці" -#: libraries/messages.inc.php:1231 view_create.php:142 +#: libraries/messages.inc.php:1227 view_create.php:142 msgid "VIEW name" msgstr "" -#: libraries/messages.inc.php:1237 main.php:205 +#: libraries/messages.inc.php:1233 main.php:205 msgid "Web server" msgstr "" -#: libraries/messages.inc.php:1239 libraries/mysql_charsets.lib.php:277 +#: libraries/messages.inc.php:1235 libraries/mysql_charsets.lib.php:277 #: libraries/mysql_charsets.lib.php:325 msgid "West European" msgstr "Західно Європейське" -#: libraries/messages.inc.php:1240 main.php:230 +#: libraries/messages.inc.php:1236 main.php:230 msgid "Wiki" msgstr "" -#: libraries/messages.inc.php:1241 server_privileges.php:2138 +#: libraries/messages.inc.php:1237 server_privileges.php:2138 msgid "wildcard" msgstr "шаблон" -#: libraries/messages.inc.php:1248 +#: libraries/messages.inc.php:1244 msgid "Export contents" msgstr "" -#: libraries/messages.inc.php:1249 +#: libraries/messages.inc.php:1245 msgid "Export functions" msgstr "" -#: libraries/messages.inc.php:1250 +#: libraries/messages.inc.php:1246 msgid "Export procedures" msgstr "" -#: libraries/messages.inc.php:1251 +#: libraries/messages.inc.php:1247 msgid "Export Structure Schemas (recommended)" msgstr "" -#: libraries/messages.inc.php:1252 +#: libraries/messages.inc.php:1248 msgid "Export tables" msgstr "" -#: libraries/messages.inc.php:1253 +#: libraries/messages.inc.php:1249 msgid "Export triggers" msgstr "" -#: libraries/messages.inc.php:1254 +#: libraries/messages.inc.php:1250 msgid "Export views" msgstr "" -#: libraries/messages.inc.php:1255 +#: libraries/messages.inc.php:1251 msgid "XML" msgstr "XML" -#: libraries/messages.inc.php:1259 server_privileges.php:592 +#: libraries/messages.inc.php:1255 server_privileges.php:592 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Примітка: Встановлення цієї опції у 0 (нуль) знімає обмеження." -#: libraries/messages.inc.php:1260 +#: libraries/messages.inc.php:1256 msgid "\"zipped\"" msgstr "запакувати в \"zip\"" diff --git a/po/ur.po b/po/ur.po index e1cbdfad0..9781d3442 100644 --- 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-05-13 11:25+0200\n" +"POT-Creation-Date: 2010-05-13 11:30+0200\n" "PO-Revision-Date: 2010-04-09 14:02+0200\n" "Last-Translator: Michal \n" "Language-Team: Urdu \n" @@ -18,19 +18,19 @@ msgstr "" "X-Generator: Pootle 2.0.1\n" #: browse_foreigners.php:38 browse_foreigners.php:59 -#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:870 +#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:866 #: server_privileges.php:1475 msgid "Show all" msgstr "" #: browse_foreigners.php:82 db_operations.php:648 -#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:394 -#: libraries/export/pdf.php:147 libraries/messages.inc.php:597 +#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394 +#: libraries/export/pdf.php:147 libraries/messages.inc.php:593 #: pdf_schema.php:283 pdf_schema.php:1123 pdf_schema.php:1139 msgid "Page number:" msgstr "" -#: browse_foreigners.php:132 libraries/messages.inc.php:1242 +#: browse_foreigners.php:132 libraries/messages.inc.php:1238 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -40,7 +40,7 @@ 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/db_links.inc.php:75 -#: libraries/messages.inc.php:841 libraries/tbl_links.inc.php:63 +#: libraries/messages.inc.php:837 libraries/tbl_links.inc.php:63 msgid "Search" msgstr "" @@ -49,12 +49,12 @@ msgstr "" #: db_search.php:362 db_structure.php:567 js/messages.php:48 #: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2267 +#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 #: 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 #: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614 -#: libraries/messages.inc.php:361 libraries/replication_gui.lib.php:73 +#: libraries/messages.inc.php:357 libraries/replication_gui.lib.php:73 #: libraries/replication_gui.lib.php:365 libraries/select_server.lib.php:104 #: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477 #: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782 @@ -74,33 +74,33 @@ msgid "Go" msgstr "" #: browse_foreigners.php:168 browse_foreigners.php:172 -#: libraries/Index.class.php:442 libraries/messages.inc.php:459 +#: libraries/Index.class.php:442 libraries/messages.inc.php:455 #: tbl_tracking.php:320 msgid "Keyname" msgstr "" #: browse_foreigners.php:169 browse_foreigners.php:171 -#: libraries/messages.inc.php:252 server_collations.php:55 +#: libraries/messages.inc.php:248 server_collations.php:55 #: server_collations.php:67 server_engines.php:59 server_status.php:628 msgid "Description" msgstr "" #: browse_foreigners.php:247 browse_foreigners.php:256 #: browse_foreigners.php:268 browse_foreigners.php:276 -#: libraries/messages.inc.php:1218 +#: libraries/messages.inc.php:1214 msgid "Use this value" msgstr "" -#: db_create.php:46 libraries/messages.inc.php:215 +#: db_create.php:46 libraries/messages.inc.php:211 #, php-format msgid "Database %1$s has been created." msgstr "" -#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:232 +#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:228 msgid "Database comment: " msgstr "" -#: db_datadict.php:165 libraries/messages.inc.php:1070 +#: db_datadict.php:165 libraries/messages.inc.php:1066 #: libraries/tbl_properties.inc.php:724 pdf_schema.php:1236 #: tbl_operations.php:345 tbl_printview.php:130 msgid "Table comments" @@ -109,7 +109,7 @@ msgstr "" #: db_datadict.php:174 db_qbe.php:174 libraries/Index.class.php:446 #: libraries/export/htmlword.php:244 libraries/export/latex.php:360 #: libraries/export/odt.php:294 libraries/export/texytext.php:233 -#: libraries/messages.inc.php:317 libraries/tbl_properties.inc.php:99 +#: libraries/messages.inc.php:313 libraries/tbl_properties.inc.php:99 #: libraries/tbl_properties.inc.php:275 pdf_schema.php:1262 #: pdf_schema.php:1283 tbl_change.php:308 tbl_indexes.php:189 #: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135 @@ -121,7 +121,7 @@ msgstr "" #: libraries/db_events.inc.php:31 libraries/db_routines.inc.php:42 #: 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/messages.inc.php:1181 +#: libraries/export/texytext.php:234 libraries/messages.inc.php:1177 #: libraries/tbl_properties.inc.php:100 pdf_schema.php:1263 #: pdf_schema.php:1284 server_privileges.php:2031 tbl_change.php:287 #: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313 @@ -133,7 +133,7 @@ msgstr "" #: db_datadict.php:177 libraries/Index.class.php:449 #: libraries/export/htmlword.php:246 libraries/export/latex.php:360 #: libraries/export/odt.php:300 libraries/export/texytext.php:235 -#: libraries/messages.inc.php:576 libraries/tbl_properties.inc.php:109 +#: libraries/messages.inc.php:572 libraries/tbl_properties.inc.php:109 #: pdf_schema.php:1265 pdf_schema.php:1286 tbl_change.php:323 #: tbl_printview.php:145 tbl_structure.php:181 tbl_tracking.php:276 #: tbl_tracking.php:327 @@ -142,7 +142,7 @@ msgstr "" #: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 -#: libraries/export/texytext.php:236 libraries/messages.inc.php:238 +#: libraries/export/texytext.php:236 libraries/messages.inc.php:234 #: libraries/tbl_properties.inc.php:106 pdf_schema.php:1266 #: pdf_schema.php:1287 tbl_printview.php:146 tbl_structure.php:182 #: tbl_tracking.php:277 @@ -151,14 +151,14 @@ msgstr "" #: db_datadict.php:182 libraries/export/htmlword.php:249 #: libraries/export/latex.php:362 libraries/export/odt.php:307 -#: libraries/export/texytext.php:238 libraries/messages.inc.php:483 +#: libraries/export/texytext.php:238 libraries/messages.inc.php:479 #: pdf_schema.php:1268 pdf_schema.php:1289 tbl_printview.php:150 msgid "Links to" msgstr "" #: db_datadict.php:184 db_printview.php:112 libraries/export/htmlword.php:252 #: libraries/export/latex.php:365 libraries/export/odt.php:312 -#: libraries/export/texytext.php:241 libraries/messages.inc.php:163 +#: libraries/export/texytext.php:241 libraries/messages.inc.php:159 #: libraries/tbl_properties.inc.php:130 pdf_schema.php:1279 #: pdf_schema.php:1290 tbl_printview.php:152 msgid "Comments" @@ -167,7 +167,7 @@ msgstr "" #: db_datadict.php:267 libraries/Index.class.php:359 #: 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/messages.inc.php:559 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:555 #: libraries/mult_submits.inc.php:263 pdf_schema.php:1344 #: server_privileges.php:1529 server_privileges.php:1540 #: server_privileges.php:1850 server_privileges.php:1855 @@ -179,7 +179,7 @@ msgstr "" #: db_datadict.php:267 libraries/Index.class.php:360 #: libraries/Index.class.php:385 libraries/export/htmlword.php:322 #: libraries/export/latex.php:430 libraries/export/odt.php:368 -#: libraries/export/texytext.php:311 libraries/messages.inc.php:1257 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:1253 #: libraries/mult_submits.inc.php:45 libraries/mult_submits.inc.php:50 #: libraries/mult_submits.inc.php:55 libraries/mult_submits.inc.php:60 #: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:101 @@ -193,108 +193,108 @@ msgstr "" msgid "Yes" msgstr "" -#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:670 +#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:666 #: tbl_printview.php:498 msgid "Print" msgstr "" -#: db_export.php:29 libraries/messages.inc.php:1226 +#: db_export.php:29 libraries/messages.inc.php:1222 msgid "View dump (schema) of database" msgstr "" #: db_export.php:33 db_printview.php:96 db_qbe.php:102 db_structure.php:51 -#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:568 +#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:564 #: navigation.php:346 msgid "No tables found in database." msgstr "" -#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:845 +#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:841 #: server_export.php:27 msgid "Select All" msgstr "" -#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1188 +#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1184 #: server_export.php:29 msgid "Unselect All" msgstr "" -#: db_operations.php:38 libraries/messages.inc.php:213 tbl_create.php:54 +#: db_operations.php:38 libraries/messages.inc.php:209 tbl_create.php:54 msgid "The database name is empty!" msgstr "" -#: db_operations.php:236 libraries/messages.inc.php:753 +#: db_operations.php:236 libraries/messages.inc.php:749 #, php-format msgid "Database %s has been renamed to %s" msgstr "" -#: db_operations.php:240 libraries/messages.inc.php:178 +#: db_operations.php:240 libraries/messages.inc.php:174 #, php-format msgid "Database %s has been copied to %s" msgstr "" -#: db_operations.php:410 libraries/messages.inc.php:236 +#: db_operations.php:410 libraries/messages.inc.php:232 msgid "Rename database to" msgstr "" -#: db_operations.php:415 libraries/messages.inc.php:161 +#: db_operations.php:415 libraries/messages.inc.php:157 #: server_processlist.php:57 msgid "Command" msgstr "" -#: db_operations.php:425 libraries/messages.inc.php:58 tbl_change.php:1143 +#: db_operations.php:425 libraries/messages.inc.php:54 tbl_change.php:1143 msgid "and then" msgstr "" -#: db_operations.php:451 libraries/messages.inc.php:233 +#: db_operations.php:451 libraries/messages.inc.php:229 msgid "Copy database to" msgstr "" -#: db_operations.php:458 libraries/messages.inc.php:1043 +#: db_operations.php:458 libraries/messages.inc.php:1039 #: tbl_operations.php:526 tbl_tracking.php:388 msgid "Structure only" msgstr "" -#: db_operations.php:459 libraries/messages.inc.php:1041 +#: db_operations.php:459 libraries/messages.inc.php:1037 #: tbl_operations.php:527 tbl_tracking.php:390 msgid "Structure and data" msgstr "" -#: db_operations.php:460 libraries/messages.inc.php:229 tbl_operations.php:528 +#: db_operations.php:460 libraries/messages.inc.php:225 tbl_operations.php:528 #: tbl_tracking.php:389 msgid "Data only" msgstr "" -#: db_operations.php:468 libraries/messages.inc.php:186 +#: db_operations.php:468 libraries/messages.inc.php:182 msgid "CREATE DATABASE before copying" msgstr "" #: db_operations.php:471 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 -#: libraries/export/sql.php:82 libraries/messages.inc.php:30 +#: libraries/export/sql.php:82 libraries/messages.inc.php:26 #: tbl_operations.php:534 #, php-format msgid "Add %s" msgstr "" -#: db_operations.php:475 libraries/messages.inc.php:29 tbl_operations.php:297 +#: db_operations.php:475 libraries/messages.inc.php:25 tbl_operations.php:297 #: tbl_operations.php:536 msgid "Add AUTO_INCREMENT value" msgstr "" -#: db_operations.php:479 libraries/messages.inc.php:31 tbl_operations.php:543 +#: db_operations.php:479 libraries/messages.inc.php:27 tbl_operations.php:543 msgid "Add constraints" msgstr "" -#: db_operations.php:492 libraries/messages.inc.php:1059 +#: db_operations.php:492 libraries/messages.inc.php:1055 msgid "Switch to copied database" msgstr "" -#: db_operations.php:533 libraries/messages.inc.php:89 +#: db_operations.php:533 libraries/messages.inc.php:85 msgid "BLOB Repository" msgstr "" #: db_operations.php:536 db_tracking.php:76 libraries/common.lib.php:1350 -#: libraries/messages.inc.php:1037 libraries/server_links.inc.php:49 +#: libraries/messages.inc.php:1033 libraries/server_links.inc.php:49 #: server_processlist.php:59 tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "" @@ -304,11 +304,11 @@ msgctxt "BLOB repository" msgid "Enabled" msgstr "" -#: db_operations.php:548 libraries/messages.inc.php:93 +#: db_operations.php:548 libraries/messages.inc.php:89 msgid "Disable" msgstr "" -#: db_operations.php:558 libraries/messages.inc.php:90 +#: db_operations.php:558 libraries/messages.inc.php:86 msgid "Damaged" msgstr "" @@ -322,12 +322,12 @@ msgctxt "BLOB repository" msgid "Disabled" msgstr "" -#: db_operations.php:574 libraries/messages.inc.php:96 +#: db_operations.php:574 libraries/messages.inc.php:92 msgid "Enable" msgstr "" #: db_operations.php:598 libraries/Index.class.php:448 -#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:158 +#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:154 #: 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:361 @@ -336,7 +336,7 @@ msgstr "" msgid "Collation" msgstr "" -#: db_operations.php:609 libraries/messages.inc.php:742 main.php:316 +#: db_operations.php:609 libraries/messages.inc.php:738 main.php:316 #: pdf_schema.php:34 #, php-format msgid "" @@ -344,58 +344,58 @@ msgid "" "deactivated. To find out why click %shere%s." msgstr "" -#: db_operations.php:645 libraries/messages.inc.php:264 pdf_pages.php:528 +#: db_operations.php:645 libraries/messages.inc.php:260 pdf_pages.php:528 msgid "Display PDF schema" msgstr "" -#: db_operations.php:661 libraries/messages.inc.php:877 pdf_pages.php:529 +#: db_operations.php:661 libraries/messages.inc.php:873 pdf_pages.php:529 msgid "Show grid" msgstr "" -#: db_operations.php:664 libraries/messages.inc.php:874 pdf_pages.php:530 +#: db_operations.php:664 libraries/messages.inc.php:870 pdf_pages.php:530 msgid "Show color" msgstr "" -#: db_operations.php:666 libraries/messages.inc.php:998 pdf_pages.php:531 +#: db_operations.php:666 libraries/messages.inc.php:994 pdf_pages.php:531 msgid "Show dimension of tables" msgstr "" -#: db_operations.php:669 libraries/messages.inc.php:52 pdf_pages.php:532 +#: db_operations.php:669 libraries/messages.inc.php:48 pdf_pages.php:532 msgid "Display all tables with the same width" msgstr "" -#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:227 +#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:223 #: pdf_pages.php:533 msgid "Data Dictionary" msgstr "" -#: db_operations.php:674 libraries/messages.inc.php:884 pdf_pages.php:534 +#: db_operations.php:674 libraries/messages.inc.php:880 pdf_pages.php:534 msgid "Only show keys" msgstr "" -#: db_operations.php:676 libraries/messages.inc.php:875 pdf_pages.php:535 +#: db_operations.php:676 libraries/messages.inc.php:871 pdf_pages.php:535 msgid "Data Dictionary Format" msgstr "" -#: db_operations.php:678 libraries/messages.inc.php:464 pdf_pages.php:537 +#: db_operations.php:678 libraries/messages.inc.php:460 pdf_pages.php:537 msgid "Landscape" msgstr "" -#: db_operations.php:679 libraries/messages.inc.php:663 pdf_pages.php:538 +#: db_operations.php:679 libraries/messages.inc.php:659 pdf_pages.php:538 msgid "Portrait" msgstr "" -#: db_operations.php:682 libraries/messages.inc.php:599 pdf_pages.php:541 +#: db_operations.php:682 libraries/messages.inc.php:595 pdf_pages.php:541 msgid "Paper size" msgstr "" -#: db_operations.php:706 libraries/messages.inc.php:281 +#: db_operations.php:706 libraries/messages.inc.php:277 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 libraries/messages.inc.php:1087 +#: libraries/header.inc.php:126 libraries/messages.inc.php:1083 #: pdf_pages.php:405 server_privileges.php:1626 server_privileges.php:1682 #: server_privileges.php:1946 server_synchronize.php:423 #: server_synchronize.php:866 tbl_tracking.php:592 test/theme.php:75 @@ -403,176 +403,176 @@ msgid "Table" msgstr "" #: db_printview.php:105 libraries/db_structure.lib.php:56 -#: libraries/messages.inc.php:735 +#: libraries/messages.inc.php:731 msgid "Records" msgstr "" #: db_printview.php:109 libraries/db_structure.lib.php:67 -#: libraries/messages.inc.php:1003 tbl_indexes.php:190 +#: libraries/messages.inc.php:999 tbl_indexes.php:190 msgid "Size" msgstr "" #: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 -#: libraries/export/sql.php:899 libraries/messages.inc.php:436 +#: libraries/export/sql.php:899 libraries/messages.inc.php:432 msgid "in use" msgstr "" #: db_printview.php:187 libraries/db_info.inc.php:88 -#: libraries/export/sql.php:514 libraries/messages.inc.php:1032 +#: libraries/export/sql.php:514 libraries/messages.inc.php:1028 #: pdf_schema.php:1241 tbl_printview.php:434 tbl_structure.php:810 msgid "Creation" msgstr "" #: db_printview.php:196 libraries/db_info.inc.php:93 -#: libraries/export/sql.php:519 libraries/messages.inc.php:1036 +#: libraries/export/sql.php:519 libraries/messages.inc.php:1032 #: pdf_schema.php:1246 tbl_printview.php:444 tbl_structure.php:818 msgid "Last update" msgstr "" #: db_printview.php:205 libraries/db_info.inc.php:98 -#: libraries/export/sql.php:524 libraries/messages.inc.php:1031 +#: libraries/export/sql.php:524 libraries/messages.inc.php:1027 #: pdf_schema.php:1251 tbl_printview.php:454 tbl_structure.php:826 msgid "Last check" msgstr "" -#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1085 +#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1081 #, php-format msgid "%s table(s)" msgstr "" #: db_qbe.php:29 libraries/display_tbl.lib.php:1981 -#: libraries/messages.inc.php:1051 libraries/sql_query_form.lib.php:140 +#: libraries/messages.inc.php:1047 libraries/sql_query_form.lib.php:140 #: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131 #: view_operations.php:62 msgid "Your SQL query has been executed successfully" msgstr "" -#: db_qbe.php:42 libraries/messages.inc.php:371 +#: db_qbe.php:42 libraries/messages.inc.php:367 msgid "You have to choose at least one column to display" msgstr "" #: db_qbe.php:200 libraries/db_structure.lib.php:104 -#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1014 +#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1010 msgid "Sort" msgstr "" #: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111 #: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828 -#: libraries/messages.inc.php:69 server_databases.php:170 +#: libraries/messages.inc.php:65 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314 msgid "Ascending" msgstr "" #: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119 #: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825 -#: libraries/messages.inc.php:251 server_databases.php:170 +#: libraries/messages.inc.php:247 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315 msgid "Descending" msgstr "" #: db_qbe.php:264 db_tracking.php:78 libraries/display_tbl.lib.php:308 -#: libraries/messages.inc.php:888 tbl_change.php:277 tbl_tracking.php:597 +#: libraries/messages.inc.php:884 tbl_change.php:277 tbl_tracking.php:597 msgid "Show" msgstr "" -#: db_qbe.php:300 libraries/messages.inc.php:202 +#: db_qbe.php:300 libraries/messages.inc.php:198 msgid "Criteria" msgstr "" #: db_qbe.php:353 db_qbe.php:435 db_qbe.php:527 db_qbe.php:558 -#: libraries/messages.inc.php:718 +#: libraries/messages.inc.php:714 msgid "Ins" msgstr "" #: db_qbe.php:357 db_qbe.php:439 db_qbe.php:524 db_qbe.php:555 -#: libraries/messages.inc.php:56 +#: libraries/messages.inc.php:52 msgid "And" msgstr "" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:529 db_qbe.php:560 -#: libraries/messages.inc.php:717 +#: libraries/messages.inc.php:713 msgid "Del" msgstr "" #: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553 -#: libraries/display_import.lib.php:166 libraries/messages.inc.php:592 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:588 #: libraries/tbl_properties.inc.php:779 server_privileges.php:258 #: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288 msgid "Or" msgstr "" -#: db_qbe.php:507 libraries/messages.inc.php:516 +#: db_qbe.php:507 libraries/messages.inc.php:512 msgid "Modify" msgstr "" -#: db_qbe.php:584 libraries/messages.inc.php:33 +#: db_qbe.php:584 libraries/messages.inc.php:29 msgid "Add/Delete Criteria Row" msgstr "" -#: db_qbe.php:596 libraries/messages.inc.php:32 +#: db_qbe.php:596 libraries/messages.inc.php:28 msgid "Add/Delete Field Columns" msgstr "" -#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1192 +#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1188 msgid "Update Query" msgstr "" -#: db_qbe.php:617 libraries/messages.inc.php:1216 +#: db_qbe.php:617 libraries/messages.inc.php:1212 msgid "Use Tables" msgstr "" -#: db_qbe.php:640 libraries/messages.inc.php:723 +#: db_qbe.php:640 libraries/messages.inc.php:719 #, php-format msgid "SQL query on database %s:" msgstr "" -#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:823 +#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:819 msgid "Submit Query" msgstr "" #: db_search.php:68 libraries/auth/config.auth.lib.php:84 #: libraries/auth/config.auth.lib.php:103 #: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52 -#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:26 +#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:22 msgid "Access denied" msgstr "" -#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:836 +#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:832 msgid "at least one of the words" msgstr "" -#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:837 +#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:833 msgid "all words" msgstr "" -#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:838 +#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:834 msgid "the exact phrase" msgstr "" -#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:839 +#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:835 msgid "as regular expression" msgstr "" -#: db_search.php:242 libraries/messages.inc.php:840 +#: db_search.php:242 libraries/messages.inc.php:836 #, php-format msgid "Search results for \"%s\" %s:" msgstr "" -#: db_search.php:260 libraries/messages.inc.php:579 +#: db_search.php:260 libraries/messages.inc.php:575 #, php-format msgid "%s match(es) inside table %s" 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/messages.inc.php:108 +#: db_structure.php:105 libraries/messages.inc.php:104 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468 msgid "Browse" msgstr "" #: db_search.php:272 libraries/display_tbl.lib.php:1165 -#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:243 +#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:239 #: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406 #: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377 #: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216 @@ -580,45 +580,45 @@ msgstr "" msgid "Delete" msgstr "" -#: db_search.php:285 libraries/messages.inc.php:580 +#: db_search.php:285 libraries/messages.inc.php:576 #, php-format msgid "Total: %s match(es)" msgstr "" -#: db_search.php:299 libraries/messages.inc.php:832 +#: db_search.php:299 libraries/messages.inc.php:828 msgid "Search in database" msgstr "" -#: db_search.php:302 libraries/messages.inc.php:835 +#: db_search.php:302 libraries/messages.inc.php:831 msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgstr "" -#: db_search.php:307 libraries/messages.inc.php:842 +#: db_search.php:307 libraries/messages.inc.php:838 msgid "Find:" msgstr "" -#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1017 +#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1013 msgid "Words are separated by a space character (\" \")." msgstr "" -#: db_search.php:325 libraries/messages.inc.php:834 +#: db_search.php:325 libraries/messages.inc.php:830 msgid "Inside table(s):" msgstr "" -#: db_search.php:355 libraries/messages.inc.php:833 +#: db_search.php:355 libraries/messages.inc.php:829 msgid "Inside field:" 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/messages.inc.php:431 libraries/sql_query_form.lib.php:334 +#: libraries/messages.inc.php:427 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/db_links.inc.php:63 libraries/export/latex.php:337 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:1048 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:1044 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 #: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269 msgid "Structure" @@ -627,8 +627,8 @@ 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:1642 -#: libraries/db_links.inc.php:100 libraries/messages.inc.php:272 +#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/db_links.inc.php:100 libraries/messages.inc.php:268 #: 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 @@ -638,40 +638,40 @@ 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:1641 -#: libraries/messages.inc.php:284 libraries/mult_submits.inc.php:39 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: libraries/messages.inc.php:280 libraries/mult_submits.inc.php:39 #: libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "" -#: db_structure.php:316 libraries/messages.inc.php:1075 +#: db_structure.php:316 libraries/messages.inc.php:1071 #: libraries/tbl_links.inc.php:100 #, php-format msgid "Table %s has been emptied" msgstr "" -#: db_structure.php:326 libraries/messages.inc.php:1229 +#: db_structure.php:326 libraries/messages.inc.php:1225 #: libraries/tbl_links.inc.php:133 #, php-format msgid "View %s has been dropped" msgstr "" -#: db_structure.php:326 libraries/messages.inc.php:1074 +#: db_structure.php:326 libraries/messages.inc.php:1070 #: libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "" -#: db_structure.php:333 libraries/messages.inc.php:1128 +#: db_structure.php:333 libraries/messages.inc.php:1124 msgid "Tracking is active." msgstr "" -#: db_structure.php:335 libraries/messages.inc.php:1129 +#: db_structure.php:335 libraries/messages.inc.php:1125 msgid "Tracking is not active." msgstr "" #: db_structure.php:420 libraries/display_tbl.lib.php:1944 -#: libraries/messages.inc.php:1228 +#: libraries/messages.inc.php:1224 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -679,83 +679,83 @@ msgid "" msgstr "" #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 -#: libraries/messages.inc.php:1233 libraries/tbl_info.inc.php:66 +#: libraries/messages.inc.php:1229 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/messages.inc.php:773 libraries/server_links.inc.php:70 +#: libraries/messages.inc.php:769 libraries/server_links.inc.php:70 #: server_replication.php:33 server_replication.php:164 server_status.php:258 msgid "Replication" msgstr "" -#: db_structure.php:489 libraries/messages.inc.php:1053 +#: db_structure.php:489 libraries/messages.inc.php:1049 msgid "Sum" msgstr "" #: db_structure.php:496 libraries/StorageEngine.class.php:356 -#: libraries/messages.inc.php:239 +#: libraries/messages.inc.php:235 #, 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 #: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086 -#: libraries/messages.inc.php:1243 libraries/mult_submits.inc.php:16 +#: libraries/messages.inc.php:1239 libraries/mult_submits.inc.php:16 #: server_databases.php:346 server_databases.php:351 #: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465 msgid "With selected:" msgstr "" #: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: libraries/messages.inc.php:148 server_databases.php:348 +#: libraries/messages.inc.php:144 server_databases.php:348 #: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459 msgid "Check All" msgstr "" #: db_structure.php:531 libraries/display_tbl.lib.php:2077 -#: libraries/messages.inc.php:1184 libraries/replication_gui.lib.php:33 +#: libraries/messages.inc.php:1180 libraries/replication_gui.lib.php:33 #: server_databases.php:350 server_privileges.php:533 #: server_privileges.php:1564 tbl_structure.php:463 msgid "Uncheck All" msgstr "" -#: db_structure.php:536 libraries/messages.inc.php:150 +#: db_structure.php:536 libraries/messages.inc.php:146 msgid "Check tables having overhead" msgstr "" #: db_structure.php:547 db_structure.php:548 db_structure.php:599 -#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:672 +#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:668 #: libraries/mult_submits.inc.php:28 tbl_structure.php:493 #: tbl_structure.php:495 msgid "Print view" msgstr "" -#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:153 +#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:149 #: libraries/mult_submits.inc.php:42 tbl_operations.php:579 msgid "Check table" msgstr "" -#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:590 +#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:586 #: libraries/mult_submits.inc.php:47 tbl_operations.php:619 #: tbl_structure.php:710 tbl_structure.php:712 msgid "Optimize table" msgstr "" -#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:758 +#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:754 #: libraries/mult_submits.inc.php:52 tbl_operations.php:609 msgid "Repair table" msgstr "" -#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:55 +#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:51 #: libraries/mult_submits.inc.php:57 tbl_operations.php:599 msgid "Analyze table" msgstr "" #: db_structure.php:557 db_structure.php:558 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/messages.inc.php:310 +#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:306 #: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84 #: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109 #: server_privileges.php:1341 setup/frames/menu.inc.php:22 @@ -763,7 +763,7 @@ msgstr "" msgid "Export" msgstr "" -#: db_tracking.php:66 libraries/messages.inc.php:1151 +#: db_tracking.php:66 libraries/messages.inc.php:1147 msgid "Tracked tables" msgstr "" @@ -771,7 +771,7 @@ msgstr "" #: 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/header_printview.inc.php:58 libraries/messages.inc.php:212 +#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:208 #: navigation.php:233 server_databases.php:169 server_privileges.php:1621 #: server_privileges.php:1682 server_privileges.php:1940 #: server_processlist.php:56 server_synchronize.php:1179 @@ -779,92 +779,92 @@ msgstr "" msgid "Database" msgstr "" -#: db_tracking.php:73 libraries/messages.inc.php:1146 +#: db_tracking.php:73 libraries/messages.inc.php:1142 msgid "Last version" msgstr "" -#: db_tracking.php:74 libraries/messages.inc.php:1145 tbl_tracking.php:594 +#: db_tracking.php:74 libraries/messages.inc.php:1141 tbl_tracking.php:594 msgid "Created" msgstr "" -#: db_tracking.php:75 libraries/messages.inc.php:1147 tbl_tracking.php:595 +#: db_tracking.php:75 libraries/messages.inc.php:1143 tbl_tracking.php:595 msgid "Updated" msgstr "" #: db_tracking.php:77 libraries/Index.class.php:440 -#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:27 +#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:23 #: server_databases.php:203 server_privileges.php:1503 #: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187 msgid "Action" msgstr "" -#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:247 +#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:243 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:106 libraries/messages.inc.php:1142 tbl_tracking.php:548 +#: db_tracking.php:106 libraries/messages.inc.php:1138 tbl_tracking.php:548 #: tbl_tracking.php:606 tbl_tracking.php:613 msgid "active" msgstr "" -#: db_tracking.php:108 libraries/messages.inc.php:1143 tbl_tracking.php:550 +#: db_tracking.php:108 libraries/messages.inc.php:1139 tbl_tracking.php:550 #: tbl_tracking.php:608 tbl_tracking.php:610 msgid "not active" msgstr "" -#: db_tracking.php:121 libraries/messages.inc.php:1160 +#: db_tracking.php:121 libraries/messages.inc.php:1156 msgid "Versions" msgstr "" -#: db_tracking.php:122 libraries/messages.inc.php:1132 tbl_tracking.php:379 +#: db_tracking.php:122 libraries/messages.inc.php:1128 tbl_tracking.php:379 #: tbl_tracking.php:624 msgid "Tracking report" msgstr "" -#: db_tracking.php:123 libraries/messages.inc.php:1144 tbl_tracking.php:251 +#: db_tracking.php:123 libraries/messages.inc.php:1140 tbl_tracking.php:251 #: tbl_tracking.php:624 msgid "Structure snapshot" msgstr "" -#: db_tracking.php:152 libraries/messages.inc.php:1154 +#: db_tracking.php:152 libraries/messages.inc.php:1150 msgid "Untracked tables" msgstr "" -#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1153 +#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1149 #: tbl_structure.php:529 tbl_structure.php:531 msgid "Track table" msgstr "" -#: db_tracking.php:200 libraries/messages.inc.php:1121 +#: db_tracking.php:200 libraries/messages.inc.php:1117 msgid "Database Log" msgstr "" -#: export.php:62 libraries/messages.inc.php:312 +#: export.php:62 libraries/messages.inc.php:308 msgid "Selected export type has to be saved in file!" msgstr "" -#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:567 +#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:563 #, php-format msgid "Insufficient space to save the file %s." msgstr "" -#: export.php:294 libraries/messages.inc.php:324 +#: export.php:294 libraries/messages.inc.php:320 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "" -#: export.php:298 export.php:302 libraries/messages.inc.php:562 +#: export.php:298 export.php:302 libraries/messages.inc.php:558 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "" -#: export.php:629 libraries/messages.inc.php:276 +#: export.php:629 libraries/messages.inc.php:272 #, php-format msgid "Dump has been saved to file %s." msgstr "" -#: import.php:60 libraries/messages.inc.php:1202 +#: import.php:60 libraries/messages.inc.php:1198 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation%" @@ -872,21 +872,21 @@ msgid "" msgstr "" #: import.php:279 import.php:332 libraries/File.class.php:849 -#: libraries/File.class.php:961 libraries/messages.inc.php:325 +#: libraries/File.class.php:961 libraries/messages.inc.php:321 msgid "File could not be read" msgstr "" #: import.php:287 import.php:296 import.php:315 import.php:324 #: libraries/File.class.php:1031 libraries/File.class.php:1039 #: libraries/File.class.php:1055 libraries/File.class.php:1063 -#: libraries/messages.inc.php:1189 +#: libraries/messages.inc.php:1185 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." msgstr "" -#: import.php:337 libraries/messages.inc.php:547 +#: import.php:337 libraries/messages.inc.php:543 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -894,39 +894,39 @@ msgid "" msgstr "" #: import.php:372 libraries/display_import.lib.php:24 -#: libraries/messages.inc.php:125 +#: libraries/messages.inc.php:121 msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:397 libraries/messages.inc.php:102 +#: import.php:397 libraries/messages.inc.php:98 msgid "The bookmark has been deleted." msgstr "" -#: import.php:401 libraries/messages.inc.php:879 +#: import.php:401 libraries/messages.inc.php:875 msgid "Showing bookmark" msgstr "" -#: import.php:403 libraries/messages.inc.php:101 +#: import.php:403 libraries/messages.inc.php:97 #, php-format msgid "Bookmark %s created" msgstr "" -#: import.php:409 import.php:415 libraries/messages.inc.php:407 +#: import.php:409 import.php:415 libraries/messages.inc.php:403 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" -#: import.php:424 libraries/messages.inc.php:1107 +#: import.php:424 libraries/messages.inc.php:1103 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: index.php:190 libraries/messages.inc.php:553 +#: index.php:190 libraries/messages.inc.php:549 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" -#: js/messages.php:25 libraries/messages.inc.php:155 +#: js/messages.php:25 libraries/messages.inc.php:151 #: server_synchronize.php:345 server_synchronize.php:357 #: server_synchronize.php:373 server_synchronize.php:380 #: server_synchronize.php:739 server_synchronize.php:767 @@ -934,116 +934,116 @@ msgstr "" msgid "Click to select" msgstr "" -#: js/messages.php:26 libraries/messages.inc.php:156 +#: js/messages.php:26 libraries/messages.inc.php:152 msgid "Click to unselect" msgstr "" #: js/messages.php:27 libraries/import.lib.php:103 -#: libraries/messages.inc.php:550 sql.php:89 +#: libraries/messages.inc.php:546 sql.php:89 msgid "\"DROP DATABASE\" statements are disabled." msgstr "" -#: js/messages.php:30 libraries/messages.inc.php:270 +#: js/messages.php:30 libraries/messages.inc.php:266 #: libraries/mult_submits.inc.php:258 sql.php:188 msgid "Do you really want to " msgstr "" -#: js/messages.php:31 libraries/messages.inc.php:271 +#: js/messages.php:31 libraries/messages.inc.php:267 #: libraries/mult_submits.inc.php:258 sql.php:172 msgid "You are about to DESTROY a complete database!" msgstr "" -#: js/messages.php:34 libraries/messages.inc.php:94 +#: js/messages.php:34 libraries/messages.inc.php:90 msgid "You are about to DISABLE a BLOB Repository!" msgstr "" -#: js/messages.php:35 libraries/messages.inc.php:91 +#: js/messages.php:35 libraries/messages.inc.php:87 #, php-format msgid "Are you sure you want to disable all BLOB references for database %s?" msgstr "" -#: js/messages.php:38 libraries/messages.inc.php:342 +#: js/messages.php:38 libraries/messages.inc.php:338 msgid "Missing value in the form!" msgstr "" -#: js/messages.php:39 libraries/messages.inc.php:570 +#: js/messages.php:39 libraries/messages.inc.php:566 msgid "This is not a number!" msgstr "" -#: js/messages.php:42 libraries/messages.inc.php:380 +#: js/messages.php:42 libraries/messages.inc.php:376 msgid "The host name is empty!" msgstr "" -#: js/messages.php:43 libraries/messages.inc.php:1208 +#: js/messages.php:43 libraries/messages.inc.php:1204 msgid "The user name is empty!" msgstr "" -#: js/messages.php:44 libraries/messages.inc.php:607 +#: js/messages.php:44 libraries/messages.inc.php:603 #: server_privileges.php:1197 user_password.php:70 msgid "The password is empty!" msgstr "" -#: js/messages.php:45 libraries/messages.inc.php:609 +#: js/messages.php:45 libraries/messages.inc.php:605 #: server_privileges.php:1195 user_password.php:73 msgid "The passwords aren't the same!" msgstr "" -#: js/messages.php:49 libraries/messages.inc.php:123 pmd_general.php:342 +#: js/messages.php:49 libraries/messages.inc.php:119 pmd_general.php:342 #: pmd_general.php:379 msgid "Cancel" msgstr "" -#: js/messages.php:52 libraries/messages.inc.php:514 +#: js/messages.php:52 libraries/messages.inc.php:510 msgid "Modifications have been saved" msgstr "" -#: js/messages.php:53 libraries/messages.inc.php:741 +#: js/messages.php:53 libraries/messages.inc.php:737 msgid "Relation deleted" msgstr "" -#: js/messages.php:54 libraries/messages.inc.php:340 +#: js/messages.php:54 libraries/messages.inc.php:336 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:55 libraries/messages.inc.php:434 +#: js/messages.php:55 libraries/messages.inc.php:430 msgid "Internal relation added" msgstr "" -#: js/messages.php:56 libraries/messages.inc.php:299 +#: js/messages.php:56 libraries/messages.inc.php:295 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:57 libraries/messages.inc.php:300 +#: js/messages.php:57 libraries/messages.inc.php:296 msgid "Error: relation already exists." msgstr "" -#: js/messages.php:58 libraries/messages.inc.php:302 +#: js/messages.php:58 libraries/messages.inc.php:298 msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:59 libraries/messages.inc.php:351 +#: js/messages.php:59 libraries/messages.inc.php:347 #: libraries/relation.lib.php:107 msgid "General relation features" msgstr "" -#: js/messages.php:59 libraries/messages.inc.php:260 +#: js/messages.php:59 libraries/messages.inc.php:256 #: libraries/relation.lib.php:101 libraries/relation.lib.php:108 msgid "Disabled" msgstr "" -#: js/messages.php:60 libraries/messages.inc.php:850 +#: js/messages.php:60 libraries/messages.inc.php:846 msgid "Select referenced key" msgstr "" -#: js/messages.php:61 libraries/messages.inc.php:848 +#: js/messages.php:61 libraries/messages.inc.php:844 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:62 libraries/messages.inc.php:653 +#: js/messages.php:62 libraries/messages.inc.php:649 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:63 libraries/messages.inc.php:142 pmd_general.php:77 +#: js/messages.php:63 libraries/messages.inc.php:138 pmd_general.php:77 #: tbl_relation.php:548 msgid "Choose field to display" msgstr "" @@ -1059,9 +1059,9 @@ msgid "Prev" msgstr "" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2332 -#: libraries/common.lib.php:2335 libraries/display_tbl.lib.php:338 -#: libraries/messages.inc.php:543 server_binlog.php:205 server_binlog.php:207 +#: js/messages.php:77 libraries/common.lib.php:2344 +#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: libraries/messages.inc.php:539 server_binlog.php:205 server_binlog.php:207 #: tbl_printview.php:424 tbl_structure.php:802 msgid "Next" msgstr "" @@ -1120,63 +1120,63 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1543 +#: js/messages.php:97 libraries/common.lib.php:1555 msgid "Jan" msgstr "" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1545 +#: js/messages.php:99 libraries/common.lib.php:1557 msgid "Feb" msgstr "" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1547 +#: js/messages.php:101 libraries/common.lib.php:1559 msgid "Mar" msgstr "" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1549 +#: js/messages.php:103 libraries/common.lib.php:1561 msgid "Apr" msgstr "" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1551 +#: js/messages.php:105 libraries/common.lib.php:1563 msgctxt "Short month name" msgid "May" msgstr "" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1553 +#: js/messages.php:107 libraries/common.lib.php:1565 msgid "Jun" msgstr "" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1555 +#: js/messages.php:109 libraries/common.lib.php:1567 msgid "Jul" msgstr "" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1557 +#: js/messages.php:111 libraries/common.lib.php:1569 msgid "Aug" msgstr "" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1559 +#: js/messages.php:113 libraries/common.lib.php:1571 msgid "Sep" msgstr "" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1561 +#: js/messages.php:115 libraries/common.lib.php:1573 msgid "Oct" msgstr "" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1563 +#: js/messages.php:117 libraries/common.lib.php:1575 msgid "Nov" msgstr "" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1565 +#: js/messages.php:119 libraries/common.lib.php:1577 msgid "Dec" msgstr "" @@ -1209,37 +1209,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1568 +#: js/messages.php:132 libraries/common.lib.php:1580 msgid "Sun" msgstr "" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1570 +#: js/messages.php:134 libraries/common.lib.php:1582 msgid "Mon" msgstr "" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1572 +#: js/messages.php:136 libraries/common.lib.php:1584 msgid "Tue" msgstr "" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1574 +#: js/messages.php:138 libraries/common.lib.php:1586 msgid "Wed" msgstr "" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1576 +#: js/messages.php:140 libraries/common.lib.php:1588 msgid "Thu" msgstr "" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1578 +#: js/messages.php:142 libraries/common.lib.php:1590 msgid "Fri" msgstr "" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1580 +#: js/messages.php:144 libraries/common.lib.php:1592 msgid "Sat" msgstr "" @@ -1295,76 +1295,76 @@ msgstr "" msgid "Second" msgstr "" -#: libraries/Config.class.php:1015 libraries/messages.inc.php:338 +#: libraries/Config.class.php:1015 libraries/messages.inc.php:334 msgid "Font size" msgstr "" #: libraries/File.class.php:344 libraries/File.class.php:432 #: libraries/File.class.php:569 libraries/File.class.php:708 -#: libraries/messages.inc.php:1201 +#: libraries/messages.inc.php:1197 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.class.php:414 libraries/messages.inc.php:1198 +#: libraries/File.class.php:414 libraries/messages.inc.php:1194 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:417 libraries/messages.inc.php:1197 +#: libraries/File.class.php:417 libraries/messages.inc.php:1193 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:420 libraries/messages.inc.php:1200 +#: libraries/File.class.php:420 libraries/messages.inc.php:1196 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:423 libraries/messages.inc.php:1199 +#: libraries/File.class.php:423 libraries/messages.inc.php:1195 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:426 libraries/messages.inc.php:1195 +#: libraries/File.class.php:426 libraries/messages.inc.php:1191 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:429 libraries/messages.inc.php:1196 +#: libraries/File.class.php:429 libraries/messages.inc.php:1192 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:908 libraries/messages.inc.php:319 +#: libraries/File.class.php:908 libraries/messages.inc.php:315 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "" -#: libraries/Index.class.php:428 libraries/messages.inc.php:554 +#: libraries/Index.class.php:428 libraries/messages.inc.php:550 #: tbl_relation.php:529 msgid "No index defined!" msgstr "" -#: libraries/Index.class.php:433 libraries/messages.inc.php:411 +#: libraries/Index.class.php:433 libraries/messages.inc.php:407 #: server_databases.php:132 tbl_tracking.php:316 msgid "Indexes" msgstr "" -#: libraries/Index.class.php:444 libraries/messages.inc.php:1186 +#: libraries/Index.class.php:444 libraries/messages.inc.php:1182 #: 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:475 tbl_tracking.php:322 msgid "Unique" msgstr "" -#: libraries/Index.class.php:445 libraries/messages.inc.php:596 +#: libraries/Index.class.php:445 libraries/messages.inc.php:592 #: tbl_tracking.php:323 msgid "Packed" msgstr "" -#: libraries/Index.class.php:447 libraries/messages.inc.php:131 +#: libraries/Index.class.php:447 libraries/messages.inc.php:127 #: tbl_tracking.php:325 msgid "Cardinality" msgstr "" -#: libraries/Index.class.php:450 libraries/messages.inc.php:162 +#: libraries/Index.class.php:450 libraries/messages.inc.php:158 #: tbl_tracking.php:279 tbl_tracking.php:328 msgid "Comment" msgstr "" @@ -1372,29 +1372,29 @@ msgstr "" #: libraries/Index.class.php:466 libraries/common.lib.php:616 #: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:280 pdf_pages.php:280 +#: libraries/messages.inc.php:276 pdf_pages.php:280 #: setup/frames/index.inc.php:124 setup/lib/messages.inc.php:352 #: tbl_row_action.php:69 msgid "Edit" msgstr "" -#: libraries/Index.class.php:472 libraries/messages.inc.php:666 +#: libraries/Index.class.php:472 libraries/messages.inc.php:662 msgid "The primary key has been dropped" msgstr "" -#: libraries/Index.class.php:476 libraries/messages.inc.php:413 +#: libraries/Index.class.php:476 libraries/messages.inc.php:409 #, php-format msgid "Index %s has been dropped" msgstr "" -#: libraries/Index.class.php:576 libraries/messages.inc.php:412 +#: libraries/Index.class.php:576 libraries/messages.inc.php:408 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "" -#: libraries/List_Database.class.php:431 libraries/messages.inc.php:218 +#: libraries/List_Database.class.php:431 libraries/messages.inc.php:214 #: libraries/server_links.inc.php:41 server_databases.php:88 #: server_privileges.php:1621 setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" @@ -1421,85 +1421,85 @@ msgid_plural "%1$d rows inserted." msgstr[0] "" msgstr[1] "" -#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:549 +#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:545 msgid "" "There is no detailed status information available for this storage engine." msgstr "" -#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:291 +#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:287 #, php-format msgid "%s is available on this MySQL server." msgstr "" -#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:292 +#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:288 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "" -#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:294 +#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:290 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "" -#: libraries/Table.class.php:1019 libraries/messages.inc.php:443 +#: libraries/Table.class.php:1019 libraries/messages.inc.php:439 msgid "Invalid database" msgstr "" -#: libraries/Table.class.php:1033 libraries/messages.inc.php:450 +#: libraries/Table.class.php:1033 libraries/messages.inc.php:446 #: tbl_get_field.php:26 msgid "Invalid table name" msgstr "" -#: libraries/Table.class.php:1048 libraries/messages.inc.php:301 +#: libraries/Table.class.php:1048 libraries/messages.inc.php:297 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "" -#: libraries/Table.class.php:1132 libraries/messages.inc.php:754 +#: libraries/Table.class.php:1132 libraries/messages.inc.php:750 #, php-format msgid "Table %s has been renamed to %s" msgstr "" -#: libraries/Theme.class.php:162 libraries/messages.inc.php:1099 +#: libraries/Theme.class.php:162 libraries/messages.inc.php:1095 #, php-format msgid "No valid image path for theme %s found!" msgstr "" -#: libraries/Theme.class.php:384 libraries/messages.inc.php:1097 +#: libraries/Theme.class.php:384 libraries/messages.inc.php:1093 msgid "No preview available." msgstr "" -#: libraries/Theme.class.php:387 libraries/messages.inc.php:1089 +#: libraries/Theme.class.php:387 libraries/messages.inc.php:1085 msgid "take it" msgstr "" -#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1096 +#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1092 #, php-format msgid "Default theme %s not found!" msgstr "" -#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1098 +#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1094 #, php-format msgid "Theme %s not found!" msgstr "" -#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1100 +#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1096 #, php-format msgid "Theme path not found for theme %s!" msgstr "" -#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1101 +#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1097 #: test/theme.php:161 themes.php:21 themes.php:41 msgid "Theme / Style" msgstr "" -#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:172 +#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:168 msgid "Cannot connect: invalid settings." msgstr "" #: libraries/auth/config.auth.lib.php:92 #: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65 -#: libraries/messages.inc.php:1238 test/theme.php:152 +#: libraries/messages.inc.php:1234 test/theme.php:152 #, php-format msgid "Welcome to %s" msgstr "" @@ -1519,104 +1519,104 @@ msgid "" "the administrator of the MySQL server." msgstr "" -#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:488 +#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:484 msgid "Log in" msgstr "" #: libraries/auth/cookie.auth.lib.php:246 -#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:659 +#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:655 #: libraries/navigation_header.inc.php:93 #: libraries/navigation_header.inc.php:95 msgid "phpMyAdmin documentation" msgstr "" #: libraries/auth/cookie.auth.lib.php:258 -#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:492 +#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:488 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:493 +#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:489 msgid "Server:" msgstr "" -#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:494 +#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:490 msgid "Username:" msgstr "" -#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:491 +#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:487 msgid "Password:" msgstr "" -#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:854 +#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:850 msgid "Server Choice" msgstr "" #: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 -#: libraries/messages.inc.php:177 +#: libraries/messages.inc.php:173 msgid "Cookies must be enabled past this point." msgstr "" #: libraries/auth/cookie.auth.lib.php:671 -#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:489 +#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:485 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" #: libraries/auth/cookie.auth.lib.php:675 -#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:544 +#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:540 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" #: libraries/auth/cookie.auth.lib.php:685 #: libraries/auth/cookie.auth.lib.php:687 -#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:126 +#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:122 msgid "Cannot log in to the MySQL server" msgstr "" -#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1245 +#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1241 msgid "Wrong username/password. Access denied." msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:118 -#: libraries/messages.inc.php:1057 +#: libraries/messages.inc.php:1053 #, php-format msgid "File %s does not contain any key id" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:157 #: libraries/auth/swekey/swekey.auth.lib.php:180 -#: libraries/messages.inc.php:1056 +#: libraries/messages.inc.php:1052 msgid "Hardware authentication failed" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:166 -#: libraries/messages.inc.php:1058 +#: libraries/messages.inc.php:1054 msgid "No valid authentication key plugged" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:202 -#: libraries/messages.inc.php:1055 +#: libraries/messages.inc.php:1051 msgid "Authenticating..." msgstr "" -#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1230 +#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1226 msgid "View image" msgstr "" -#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:652 +#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:648 msgid "Play audio" msgstr "" -#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1232 +#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1228 msgid "View video" msgstr "" -#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:269 +#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:265 msgid "Download file" msgstr "" -#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:128 +#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:124 msgid "" "Couldn't load the iconv or recode extension needed for charset conversion. " "Either configure PHP to enable these extensions or disable charset " @@ -1625,13 +1625,13 @@ msgstr "" #: libraries/charset_conversion.lib.php:79 #: libraries/charset_conversion.lib.php:90 -#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:130 +#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:126 msgid "" "Couldn't use the iconv, libiconv, or recode_string functions, although the " "necessary extensions appear to be loaded. Check your PHP configuration." msgstr "" -#: libraries/common.inc.php:583 libraries/messages.inc.php:170 +#: libraries/common.inc.php:583 libraries/messages.inc.php:166 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!" @@ -1657,22 +1657,22 @@ msgstr "" msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:636 libraries/messages.inc.php:448 +#: libraries/common.inc.php:636 libraries/messages.inc.php:444 #, 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/messages.inc.php:856 libraries/select_server.lib.php:41 +#: libraries/messages.inc.php:852 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/messages.inc.php:437 +#: libraries/common.inc.php:823 libraries/messages.inc.php:433 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.lib.php:147 libraries/messages.inc.php:499 +#: libraries/common.lib.php:147 libraries/messages.inc.php:495 #, php-format msgid "Max: %s%s" msgstr "" @@ -1692,7 +1692,7 @@ msgstr "en" #: libraries/common.lib.php:428 libraries/common.lib.php:430 #: libraries/common.lib.php:432 libraries/common.lib.php:448 #: libraries/common.lib.php:450 libraries/dbg/setup.php:25 -#: libraries/display_export.lib.php:164 libraries/messages.inc.php:267 +#: libraries/display_export.lib.php:164 libraries/messages.inc.php:263 #: libraries/relation.lib.php:97 libraries/sql_query_form.lib.php:451 #: libraries/sql_query_form.lib.php:454 main.php:229 pdf_pages.php:37 #: pdf_pages.php:43 pdf_pages.php:49 pdf_pages.php:54 @@ -1702,55 +1702,55 @@ msgstr "" #: libraries/common.lib.php:581 libraries/core.lib.php:234 #: libraries/core.lib.php:263 libraries/import.lib.php:134 -#: libraries/messages.inc.php:297 pdf_schema.php:32 pdf_schema.php:232 +#: libraries/messages.inc.php:293 pdf_schema.php:32 pdf_schema.php:232 #: tbl_change.php:1027 tbl_operations.php:213 tbl_relation.php:290 #: view_operations.php:62 msgid "Error" msgstr "" #: libraries/common.lib.php:595 libraries/header_printview.inc.php:61 -#: libraries/messages.inc.php:1023 server_processlist.php:60 +#: libraries/messages.inc.php:1019 server_processlist.php:60 #: server_status.php:247 msgid "SQL query" msgstr "" -#: libraries/common.lib.php:634 libraries/messages.inc.php:538 +#: libraries/common.lib.php:634 libraries/messages.inc.php:534 msgid "MySQL said: " msgstr "" -#: libraries/common.lib.php:667 libraries/messages.inc.php:76 +#: libraries/common.lib.php:667 libraries/messages.inc.php:72 #: pdf_schema.php:241 user_password.php:115 msgid "Back" msgstr "" -#: libraries/common.lib.php:1177 libraries/messages.inc.php:309 +#: libraries/common.lib.php:1177 libraries/messages.inc.php:305 #: setup/lib/messages.inc.php:353 msgid "Explain SQL" msgstr "" -#: libraries/common.lib.php:1180 libraries/messages.inc.php:551 +#: libraries/common.lib.php:1180 libraries/messages.inc.php:547 msgid "Skip Explain SQL" msgstr "" -#: libraries/common.lib.php:1212 libraries/messages.inc.php:563 +#: libraries/common.lib.php:1212 libraries/messages.inc.php:559 msgid "Without PHP Code" msgstr "" -#: libraries/common.lib.php:1215 libraries/messages.inc.php:649 +#: libraries/common.lib.php:1215 libraries/messages.inc.php:645 #: setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "" -#: libraries/common.lib.php:1233 libraries/messages.inc.php:737 +#: libraries/common.lib.php:1233 libraries/messages.inc.php:733 #: server_status.php:341 setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "" -#: libraries/common.lib.php:1242 libraries/messages.inc.php:575 +#: libraries/common.lib.php:1242 libraries/messages.inc.php:571 msgid "Skip Validate SQL" msgstr "" -#: libraries/common.lib.php:1245 libraries/messages.inc.php:1220 +#: libraries/common.lib.php:1245 libraries/messages.inc.php:1216 #: setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "" @@ -1764,11 +1764,11 @@ msgid "Inline" msgstr "" #: libraries/common.lib.php:1332 libraries/common.lib.php:1347 -#: libraries/messages.inc.php:713 +#: libraries/messages.inc.php:709 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1351 libraries/messages.inc.php:1108 +#: libraries/common.lib.php:1351 libraries/messages.inc.php:1104 #: libraries/tbl_triggers.lib.php:28 server_processlist.php:58 msgid "Time" msgstr "" @@ -1802,46 +1802,56 @@ msgstr "" msgid "EiB" msgstr "" +#. l10n: Thousands separator +#: libraries/common.lib.php:1417 +msgid "," +msgstr "" + +#. l10n: Decimal separator +#: libraries/common.lib.php:1419 +msgid "." +msgstr "" + #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1584 +#: libraries/common.lib.php:1596 #: libraries/transformations/text_plain__dateformat.inc.php:28 msgid "%B %d, %Y at %I:%M %p" msgstr "" -#: libraries/common.lib.php:1886 +#: libraries/common.lib.php:1898 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "" -#: libraries/common.lib.php:2301 libraries/common.lib.php:2304 -#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:664 +#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:660 #: server_status.php:608 msgid "Begin" msgstr "" -#: libraries/common.lib.php:2302 libraries/common.lib.php:2305 -#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:665 +#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:661 #: server_binlog.php:168 server_binlog.php:170 msgid "Previous" msgstr "" -#: libraries/common.lib.php:2333 libraries/common.lib.php:2336 -#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:289 +#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:285 msgid "End" msgstr "" -#: libraries/common.lib.php:2409 libraries/messages.inc.php:455 +#: libraries/common.lib.php:2421 libraries/messages.inc.php:451 #, php-format msgid "Jump to database "%s"." msgstr "" -#: libraries/common.lib.php:2429 libraries/messages.inc.php:461 +#: libraries/common.lib.php:2441 libraries/messages.inc.php:457 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/core.lib.php:286 libraries/dbg/setup.php:22 -#: libraries/messages.inc.php:127 +#: libraries/messages.inc.php:123 #, php-format msgid "" "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " @@ -1849,115 +1859,115 @@ msgid "" msgstr "" #: libraries/db_events.inc.php:20 libraries/db_events.inc.php:22 -#: libraries/export/sql.php:415 libraries/messages.inc.php:306 +#: libraries/export/sql.php:415 libraries/messages.inc.php:302 msgid "Events" msgstr "" #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 -#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:541 +#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:537 #: libraries/tbl_triggers.lib.php:27 setup/frames/index.inc.php:112 msgid "Name" msgstr "" -#: libraries/db_links.inc.php:45 libraries/messages.inc.php:216 +#: libraries/db_links.inc.php:45 libraries/messages.inc.php:212 #, php-format msgid "Database %s has been dropped." msgstr "" #: libraries/db_links.inc.php:57 libraries/db_links.inc.php:58 -#: libraries/db_links.inc.php:59 libraries/messages.inc.php:234 +#: libraries/db_links.inc.php:59 libraries/messages.inc.php:230 msgid "Database seems to be empty!" msgstr "" -#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1025 +#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1021 #: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60 #: querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "" -#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1152 +#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1148 #: libraries/tbl_links.inc.php:69 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:86 libraries/messages.inc.php:719 +#: libraries/db_links.inc.php:86 libraries/messages.inc.php:715 msgid "Query" msgstr "" -#: libraries/db_links.inc.php:91 libraries/messages.inc.php:253 +#: libraries/db_links.inc.php:91 libraries/messages.inc.php:249 msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:98 libraries/messages.inc.php:397 +#: libraries/db_links.inc.php:98 libraries/messages.inc.php:393 #: libraries/server_links.inc.php:88 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:104 libraries/messages.inc.php:587 +#: libraries/db_links.inc.php:104 libraries/messages.inc.php:583 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" msgstr "" -#: libraries/db_links.inc.php:111 libraries/messages.inc.php:709 +#: libraries/db_links.inc.php:111 libraries/messages.inc.php:705 #: libraries/server_links.inc.php:66 server_privileges.php:72 #: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117 msgid "Privileges" msgstr "" #: libraries/db_routines.inc.php:30 libraries/db_routines.inc.php:32 -#: libraries/messages.inc.php:812 +#: libraries/messages.inc.php:808 msgid "Routines" msgstr "" -#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:811 +#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:807 msgid "Return type" msgstr "" #: libraries/db_structure.lib.php:57 libraries/display_tbl.lib.php:1848 -#: libraries/messages.inc.php:65 +#: libraries/messages.inc.php:61 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "" -#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:593 +#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:589 #: server_databases.php:142 tbl_printview.php:336 tbl_structure.php:683 msgid "Overhead" msgstr "" #: libraries/dbi/mysql.dbi.lib.php:112 libraries/dbi/mysqli.dbi.lib.php:124 -#: libraries/messages.inc.php:176 +#: libraries/messages.inc.php:172 msgid "Connection for controluser as defined in your configuration failed." msgstr "" #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 -#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:855 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:851 msgid "The server is not responding" msgstr "" #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:1010 +#: libraries/messages.inc.php:1006 msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "" -#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:255 +#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:251 #: tbl_structure.php:609 msgid "Details..." msgstr "" -#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:143 +#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:139 #: main.php:91 user_password.php:111 user_password.php:129 msgid "Change password" msgstr "" -#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:561 +#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:557 #: libraries/replication_gui.lib.php:341 server_privileges.php:768 msgid "No Password" msgstr "" -#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:610 +#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:606 #: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60 #: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335 #: libraries/replication_gui.lib.php:345 server_privileges.php:757 @@ -1966,13 +1976,13 @@ msgstr "" msgid "Password" msgstr "" -#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:806 +#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:802 #: libraries/replication_gui.lib.php:349 libraries/replication_gui.lib.php:352 #: server_privileges.php:776 server_privileges.php:779 msgid "Re-type" msgstr "" -#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:608 +#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:604 msgid "Password Hashing" msgstr "" @@ -1980,89 +1990,89 @@ msgstr "" msgid "MySQL 4.0 compatible" msgstr "" -#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:353 +#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:349 #: libraries/replication_gui.lib.php:356 server_privileges.php:783 msgid "Generate Password" msgstr "" -#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:352 +#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:348 #: libraries/replication_gui.lib.php:359 server_privileges.php:786 msgid "Generate" msgstr "" #: libraries/display_create_database.lib.php:22 -#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:189 +#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:185 msgid "Create new database" msgstr "" -#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:185 +#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:181 msgid "Create" msgstr "" -#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:564 +#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:560 #: server_privileges.php:74 server_privileges.php:1388 #: server_replication.php:35 msgid "No Privileges" msgstr "" -#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:445 +#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:441 msgid "Table must have at least one field." msgstr "" -#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:190 +#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:186 #, php-format msgid "Create table on database %s" msgstr "" -#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:577 +#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:573 msgid "Number of fields" msgstr "" -#: libraries/display_export.lib.php:42 libraries/messages.inc.php:124 +#: libraries/display_export.lib.php:42 libraries/messages.inc.php:120 msgid "Could not load export plugins, please check your installation!" msgstr "" -#: libraries/display_export.lib.php:107 libraries/messages.inc.php:277 +#: libraries/display_export.lib.php:107 libraries/messages.inc.php:273 #, php-format msgid "Dump %s row(s) starting at record # %s" msgstr "" -#: libraries/display_export.lib.php:115 libraries/messages.inc.php:274 +#: libraries/display_export.lib.php:115 libraries/messages.inc.php:270 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:125 libraries/messages.inc.php:852 +#: libraries/display_export.lib.php:125 libraries/messages.inc.php:848 #: setup/lib/messages.inc.php:82 msgid "Save as file" msgstr "" -#: libraries/display_export.lib.php:134 libraries/messages.inc.php:828 +#: libraries/display_export.lib.php:134 libraries/messages.inc.php:824 #, php-format msgid "Save on server in %s directory" msgstr "" -#: libraries/display_export.lib.php:142 libraries/messages.inc.php:594 +#: libraries/display_export.lib.php:142 libraries/messages.inc.php:590 #: setup/lib/messages.inc.php:90 msgid "Overwrite existing file(s)" msgstr "" -#: libraries/display_export.lib.php:148 libraries/messages.inc.php:330 +#: libraries/display_export.lib.php:148 libraries/messages.inc.php:326 msgid "File name template" msgstr "" -#: libraries/display_export.lib.php:152 libraries/messages.inc.php:327 +#: libraries/display_export.lib.php:152 libraries/messages.inc.php:323 msgid "server name" msgstr "" -#: libraries/display_export.lib.php:155 libraries/messages.inc.php:326 +#: libraries/display_export.lib.php:155 libraries/messages.inc.php:322 msgid "database name" msgstr "" -#: libraries/display_export.lib.php:158 libraries/messages.inc.php:328 +#: libraries/display_export.lib.php:158 libraries/messages.inc.php:324 msgid "table name" msgstr "" -#: libraries/display_export.lib.php:162 libraries/messages.inc.php:329 +#: libraries/display_export.lib.php:162 libraries/messages.inc.php:325 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2070,24 +2080,24 @@ msgid "" "3$s. Other text will be kept as is." msgstr "" -#: libraries/display_export.lib.php:202 libraries/messages.inc.php:331 +#: libraries/display_export.lib.php:202 libraries/messages.inc.php:327 msgid "remember template" msgstr "" #: libraries/display_export.lib.php:210 libraries/display_import.lib.php:178 -#: libraries/display_import.lib.php:191 libraries/messages.inc.php:145 +#: libraries/display_import.lib.php:191 libraries/messages.inc.php:141 #: libraries/sql_query_form.lib.php:549 msgid "Character set of the file:" msgstr "" -#: libraries/display_export.lib.php:235 libraries/messages.inc.php:166 +#: libraries/display_export.lib.php:235 libraries/messages.inc.php:162 #: setup/lib/messages.inc.php:84 msgid "Compression" 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/messages.inc.php:558 +#: libraries/export/sql.php:868 libraries/messages.inc.php:554 #: libraries/tbl_properties.inc.php:575 server_privileges.php:1836 #: server_processlist.php:75 msgid "None" @@ -2105,462 +2115,462 @@ msgstr "" msgid "bzipped" msgstr "" -#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1018 +#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1014 msgid "SQL compatibility mode" msgstr "" -#: libraries/display_import.lib.php:67 libraries/messages.inc.php:398 +#: libraries/display_import.lib.php:67 libraries/messages.inc.php:394 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " "browsers." msgstr "" -#: libraries/display_import.lib.php:77 libraries/messages.inc.php:406 +#: libraries/display_import.lib.php:77 libraries/messages.inc.php:402 msgid "The file is being processed, please be patient." msgstr "" -#: libraries/display_import.lib.php:99 libraries/messages.inc.php:408 +#: libraries/display_import.lib.php:99 libraries/messages.inc.php:404 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." msgstr "" -#: libraries/display_import.lib.php:126 libraries/messages.inc.php:333 +#: libraries/display_import.lib.php:126 libraries/messages.inc.php:329 msgid "File to import" msgstr "" -#: libraries/display_import.lib.php:137 libraries/messages.inc.php:486 +#: libraries/display_import.lib.php:137 libraries/messages.inc.php:482 #: libraries/sql_query_form.lib.php:524 msgid "Location of the text file" msgstr "" -#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1203 +#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1199 msgid "File uploads are not allowed on this server." msgstr "" -#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1235 +#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1231 #: libraries/sql_query_form.lib.php:533 tbl_change.php:1028 msgid "The directory you set for upload work cannot be reached" msgstr "" -#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1236 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1232 #: libraries/sql_query_form.lib.php:536 tbl_change.php:1031 msgid "web server upload directory" msgstr "" -#: libraries/display_import.lib.php:212 libraries/messages.inc.php:167 +#: libraries/display_import.lib.php:212 libraries/messages.inc.php:163 #, php-format msgid "Imported file compression will be automatically detected from: %s" msgstr "" -#: libraries/display_import.lib.php:219 libraries/messages.inc.php:600 +#: libraries/display_import.lib.php:219 libraries/messages.inc.php:596 msgid "Partial import" msgstr "" -#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1105 +#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1101 #, php-format msgid "" "Previous import timed out, after resubmitting will continue from position %d." msgstr "" -#: libraries/display_import.lib.php:232 libraries/messages.inc.php:51 +#: libraries/display_import.lib.php:232 libraries/messages.inc.php:47 msgid "" "Allow the interruption of an import in case the script detects it is close " "to the PHP timeout limit. This might be good way to import large files, " "however it can break transactions." msgstr "" -#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1004 +#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1000 #: setup/lib/messages.inc.php:161 msgid "Number of records (queries) to skip from start" msgstr "" -#: libraries/display_import.lib.php:255 libraries/messages.inc.php:396 +#: libraries/display_import.lib.php:255 libraries/messages.inc.php:392 #: setup/lib/messages.inc.php:160 msgid "Format of imported file" msgstr "" #: libraries/display_select_lang.lib.php:45 -#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:465 +#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:461 #: setup/frames/index.inc.php:70 msgid "Language" msgstr "" -#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:447 +#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:443 #, php-format msgid "%d is not valid row number." msgstr "" -#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:814 +#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:810 msgid "row(s) starting from record #" msgstr "" -#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:817 +#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:813 msgid "horizontal" msgstr "" -#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:816 +#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:812 msgid "horizontal (rotated headers)" msgstr "" -#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:819 +#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:815 msgid "vertical" msgstr "" -#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:818 +#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:814 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "" -#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:495 +#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:491 msgid "This operation could take a long time. Proceed anyway?" msgstr "" -#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1012 +#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1008 msgid "Sort by key" msgstr "" #: libraries/display_tbl.lib.php:555 libraries/import.lib.php:1082 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:591 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:587 #: tbl_select.php:267 tbl_structure.php:754 msgid "Options" msgstr "" #: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:570 -#: libraries/messages.inc.php:601 +#: libraries/messages.inc.php:597 msgid "Partial Texts" msgstr "" #: libraries/display_tbl.lib.php:561 libraries/display_tbl.lib.php:574 -#: libraries/messages.inc.php:346 +#: libraries/messages.inc.php:342 msgid "Full Texts" msgstr "" -#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:739 +#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:735 msgid "Relational key" msgstr "" -#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:738 +#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:734 msgid "Relational display field" msgstr "" -#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:872 +#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:868 msgid "Show binary contents" msgstr "" -#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:873 +#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:869 msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:871 +#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:867 msgid "Show binary contents as HEX" msgstr "" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:375 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:371 #: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320 msgid "Hide" msgstr "" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:508 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:504 #: libraries/tbl_properties.inc.php:144 transformation_overview.php:47 msgid "Browser transformation" msgstr "" #: libraries/display_tbl.lib.php:1126 libraries/display_tbl.lib.php:1130 -#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:308 +#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:304 msgid "Execute bookmarked query" msgstr "" #: libraries/display_tbl.lib.php:1145 libraries/display_tbl.lib.php:1157 -#: libraries/messages.inc.php:244 +#: libraries/messages.inc.php:240 msgid "The row has been deleted" msgstr "" #: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056 -#: libraries/messages.inc.php:460 server_processlist.php:71 +#: libraries/messages.inc.php:456 server_processlist.php:71 #: tbl_row_action.php:64 msgid "Kill" msgstr "" -#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:849 +#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:845 msgid "in query" msgstr "" -#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:881 +#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:877 msgid "Showing rows" msgstr "" -#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1113 +#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1109 msgid "total" msgstr "" -#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:727 +#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:723 #: sql.php:524 #, php-format msgid "Query took %01.4f sec" msgstr "" -#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:135 +#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:131 #: 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:471 msgid "Change" msgstr "" -#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:724 +#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:720 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:671 +#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:667 msgid "Print view (with full texts)" msgstr "" -#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:482 +#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:478 msgid "Link not found" msgstr "" -#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1224 +#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1220 #: main.php:228 msgid "Version information" msgstr "" -#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:423 +#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:419 msgid "Data home directory" msgstr "" -#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:424 +#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:420 msgid "The common part of the directory path for all InnoDB data files." msgstr "" -#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:422 +#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:418 msgid "Data files" msgstr "" -#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:418 +#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:414 msgid "Autoextend increment" msgstr "" -#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:419 +#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:415 msgid "" " The increment size for extending the size of an autoextending tablespace " "when it becomes full." msgstr "" -#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:420 +#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:416 msgid "Buffer pool size" msgstr "" -#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:421 +#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:417 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." msgstr "" -#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:112 +#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:108 msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:426 +#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:422 #: server_status.php:306 msgid "InnoDB Status" msgstr "" -#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:113 +#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:109 msgid "Buffer Pool Usage" msgstr "" -#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1114 +#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1110 #: server_databases.php:137 server_databases.php:305 server_status.php:414 #: server_status.php:475 server_status.php:496 tbl_printview.php:351 #: tbl_structure.php:697 msgid "Total" msgstr "" -#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:425 +#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:421 msgid "pages" msgstr "" -#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:343 +#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:339 msgid "Free pages" msgstr "" -#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:259 +#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:255 msgid "Dirty pages" msgstr "" -#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:230 +#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:226 msgid "Pages containing data" msgstr "" -#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:598 +#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:594 msgid "Pages to be flushed" msgstr "" -#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:119 +#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:115 msgid "Busy pages" msgstr "" -#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:467 +#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:463 msgid "Latched pages" msgstr "" -#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:111 +#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:107 msgid "Buffer Pool Activity" msgstr "" -#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:731 +#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:727 msgid "Read requests" msgstr "" -#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1244 +#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1240 msgid "Write requests" msgstr "" -#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:115 +#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:111 msgid "Read misses" msgstr "" -#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:117 +#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:113 msgid "Write waits" msgstr "" -#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:114 +#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:110 msgid "Read misses in %" msgstr "" -#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:116 +#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:112 msgid "Write waits in %" msgstr "" -#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:522 +#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:518 msgid "Data pointer size" msgstr "" -#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:523 +#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:519 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." msgstr "" -#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:528 +#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:524 msgid "Automatic recovery mode" msgstr "" -#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:529 +#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:525 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." msgstr "" -#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:527 +#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:523 msgid "Maximum size for temporary sort files" msgstr "" -#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:526 +#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:522 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " "INFILE)." msgstr "" -#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:525 +#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:521 msgid "Maximum size for temporary files on index creation" msgstr "" -#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:524 +#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:520 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " "method." msgstr "" -#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:531 +#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:527 msgid "Repair threads" msgstr "" -#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:530 +#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:526 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." msgstr "" -#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:533 +#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:529 msgid "Sort buffer size" msgstr "" -#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:532 +#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:528 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." msgstr "" -#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:620 +#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:616 msgid "Index cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:619 +#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:615 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." msgstr "" -#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:630 +#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:626 msgid "Record cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:629 +#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:625 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " "to the handle data (.xtd) and row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:624 +#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:620 msgid "Log cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:623 +#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:619 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:628 +#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:624 msgid "Log file threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:627 +#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:623 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:634 +#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:630 msgid "Transaction buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:633 +#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:629 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." msgstr "" -#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:611 +#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:607 msgid "Checkpoint frequency" msgstr "" -#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:612 +#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:608 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." msgstr "" -#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:615 +#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:611 msgid "Data log threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:616 +#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:612 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -2568,48 +2578,48 @@ msgid "" "that can be stored in the database." msgstr "" -#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:618 +#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:614 msgid "Garbage threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:617 +#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:613 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." msgstr "" -#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:622 +#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:618 msgid "Log buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:621 +#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:617 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " "required to write a data log." msgstr "" -#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:613 +#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:609 msgid "Data file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:614 +#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:610 msgid "The grow size of the handle data (.xtd) files." msgstr "" -#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:632 +#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:628 msgid "Row file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:631 +#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:627 msgid "The grow size of the row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:626 +#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:622 msgid "Log file count" msgstr "" -#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:625 +#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:621 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -2619,19 +2629,19 @@ msgstr "" #: libraries/export/htmlword.php:132 libraries/export/odt.php:168 #: libraries/export/sql.php:881 libraries/export/texytext.php:130 -#: libraries/messages.inc.php:275 +#: libraries/messages.inc.php:271 msgid "Dumping data for table" msgstr "" #: libraries/export/htmlword.php:185 libraries/export/odt.php:238 #: libraries/export/sql.php:785 libraries/export/texytext.php:177 -#: libraries/messages.inc.php:1086 +#: libraries/messages.inc.php:1082 msgid "Table structure for table" msgstr "" #: libraries/export/latex.php:125 libraries/export/sql.php:232 #: libraries/export/xml.php:102 libraries/header_printview.inc.php:57 -#: libraries/messages.inc.php:381 libraries/replication_gui.lib.php:63 +#: libraries/messages.inc.php:377 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:170 libraries/replication_gui.lib.php:265 #: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325 #: server_privileges.php:692 server_privileges.php:695 @@ -2643,183 +2653,183 @@ msgstr "" #: libraries/export/latex.php:130 libraries/export/sql.php:233 #: libraries/export/xml.php:107 libraries/header_printview.inc.php:59 -#: libraries/messages.inc.php:354 +#: libraries/messages.inc.php:350 msgid "Generation Time" msgstr "" #: libraries/export/latex.php:131 libraries/export/sql.php:235 -#: libraries/export/xml.php:108 libraries/messages.inc.php:864 main.php:186 +#: libraries/export/xml.php:108 libraries/messages.inc.php:860 main.php:186 msgid "Server version" msgstr "" #: libraries/export/latex.php:132 libraries/export/sql.php:236 -#: libraries/export/xml.php:109 libraries/messages.inc.php:651 +#: libraries/export/xml.php:109 libraries/messages.inc.php:647 msgid "PHP Version" msgstr "" #: libraries/export/latex.php:201 libraries/export/sql.php:868 -#: libraries/messages.inc.php:226 server_databases.php:127 +#: libraries/messages.inc.php:222 server_databases.php:127 #: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317 #: tbl_structure.php:666 msgid "Data" msgstr "" -#: libraries/export/odt.php:318 libraries/messages.inc.php:506 +#: libraries/export/odt.php:318 libraries/messages.inc.php:502 #: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "" -#: libraries/export/sql.php:387 libraries/messages.inc.php:711 +#: libraries/export/sql.php:387 libraries/messages.inc.php:707 msgid "Procedures" msgstr "" -#: libraries/export/sql.php:401 libraries/messages.inc.php:348 +#: libraries/export/sql.php:401 libraries/messages.inc.php:344 msgid "Functions" msgstr "" -#: libraries/export/sql.php:618 libraries/messages.inc.php:174 +#: libraries/export/sql.php:618 libraries/messages.inc.php:170 msgid "Constraints for dumped tables" msgstr "" -#: libraries/export/sql.php:627 libraries/messages.inc.php:175 +#: libraries/export/sql.php:627 libraries/messages.inc.php:171 msgid "Constraints for table" msgstr "" -#: libraries/export/sql.php:727 libraries/messages.inc.php:512 +#: libraries/export/sql.php:727 libraries/messages.inc.php:508 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/export/sql.php:739 libraries/messages.inc.php:743 +#: libraries/export/sql.php:739 libraries/messages.inc.php:739 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/export/sql.php:796 libraries/messages.inc.php:1178 +#: libraries/export/sql.php:796 libraries/messages.inc.php:1174 #: libraries/tbl_triggers.lib.php:19 msgid "Triggers" msgstr "" -#: libraries/export/sql.php:808 libraries/messages.inc.php:1046 +#: libraries/export/sql.php:808 libraries/messages.inc.php:1042 msgid "Structure for view" msgstr "" -#: libraries/export/sql.php:817 libraries/messages.inc.php:1029 +#: libraries/export/sql.php:817 libraries/messages.inc.php:1025 msgid "Stand-in structure for view" msgstr "" #: libraries/footer.inc.php:184 libraries/footer.inc.php:195 -#: libraries/footer.inc.php:198 libraries/messages.inc.php:586 +#: libraries/footer.inc.php:198 libraries/messages.inc.php:582 msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/header.inc.php:115 libraries/messages.inc.php:542 +#: libraries/header.inc.php:115 libraries/messages.inc.php:538 msgid "New table" msgstr "" #: libraries/header_printview.inc.php:50 libraries/header_printview.inc.php:55 -#: libraries/messages.inc.php:1024 +#: libraries/messages.inc.php:1020 msgid "SQL result" msgstr "" -#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:350 +#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:346 msgid "Generated by" msgstr "" #: libraries/header_printview.inc.php:63 libraries/import.lib.php:145 -#: libraries/messages.inc.php:820 navigation.php:652 navigation.php:674 +#: libraries/messages.inc.php:816 navigation.php:652 navigation.php:674 #: server_databases.php:122 tbl_printview.php:394 tbl_structure.php:366 #: tbl_structure.php:778 msgid "Rows" msgstr "" -#: libraries/import.lib.php:150 libraries/messages.inc.php:285 sql.php:520 +#: libraries/import.lib.php:150 libraries/messages.inc.php:281 sql.php:520 #: tbl_change.php:181 tbl_get_field.php:35 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" -#: libraries/import.lib.php:1078 libraries/messages.inc.php:399 +#: libraries/import.lib.php:1078 libraries/messages.inc.php:395 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1079 libraries/messages.inc.php:400 +#: libraries/import.lib.php:1079 libraries/messages.inc.php:396 msgid "View a structure`s contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1080 libraries/messages.inc.php:401 +#: libraries/import.lib.php:1080 libraries/messages.inc.php:397 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1081 libraries/messages.inc.php:402 +#: libraries/import.lib.php:1081 libraries/messages.inc.php:398 msgid "Edit its structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1084 libraries/messages.inc.php:362 +#: libraries/import.lib.php:1084 libraries/messages.inc.php:358 msgid "Go to database" msgstr "" #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:869 +#: libraries/messages.inc.php:865 msgid "settings" msgstr "" -#: libraries/import.lib.php:1106 libraries/messages.inc.php:363 +#: libraries/import.lib.php:1106 libraries/messages.inc.php:359 msgid "Go to table" msgstr "" -#: libraries/import.lib.php:1109 libraries/messages.inc.php:1047 +#: libraries/import.lib.php:1109 libraries/messages.inc.php:1043 msgid "structure" msgstr "" -#: libraries/import.lib.php:1115 libraries/messages.inc.php:364 +#: libraries/import.lib.php:1115 libraries/messages.inc.php:360 msgid "Go to view" msgstr "" #: libraries/import/csv.php:58 libraries/import/csv.php:70 #: libraries/import/csv.php:74 libraries/import/csv.php:78 -#: libraries/messages.inc.php:442 +#: libraries/messages.inc.php:438 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "" -#: libraries/import/csv.php:59 libraries/messages.inc.php:323 +#: libraries/import/csv.php:59 libraries/messages.inc.php:319 msgid "Fields terminated by" msgstr "" -#: libraries/import/csv.php:71 libraries/messages.inc.php:320 +#: libraries/import/csv.php:71 libraries/messages.inc.php:316 msgid "Fields enclosed by" msgstr "" -#: libraries/import/csv.php:75 libraries/messages.inc.php:321 +#: libraries/import/csv.php:75 libraries/messages.inc.php:317 msgid "Fields escaped by" msgstr "" -#: libraries/import/csv.php:79 libraries/messages.inc.php:481 +#: libraries/import/csv.php:79 libraries/messages.inc.php:477 msgid "Lines terminated by" msgstr "" -#: libraries/import/csv.php:119 libraries/messages.inc.php:439 +#: libraries/import/csv.php:119 libraries/messages.inc.php:435 #, php-format msgid "Invalid column (%s) specified!" msgstr "" #: libraries/import/csv.php:177 libraries/import/csv.php:424 -#: libraries/messages.inc.php:441 +#: libraries/messages.inc.php:437 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" -#: libraries/import/csv.php:312 libraries/messages.inc.php:440 +#: libraries/import/csv.php:312 libraries/messages.inc.php:436 #, php-format msgid "Invalid field count in CSV input on line %d." msgstr "" -#: libraries/import/ldi.php:55 libraries/messages.inc.php:446 +#: libraries/import/ldi.php:55 libraries/messages.inc.php:442 msgid "This plugin does not support compressed imports!" msgstr "" #: libraries/import/xml.php:74 libraries/import/xml.php:130 -#: libraries/messages.inc.php:1247 +#: libraries/messages.inc.php:1243 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -2846,773 +2856,763 @@ msgstr "" msgid "ltr" msgstr "rtl" -#. l10n: Thousands separator -#: libraries/messages.inc.php:21 -msgid "," -msgstr "" - -#. l10n: Decimal separator -#: libraries/messages.inc.php:23 -msgid "." -msgstr "" - -#: libraries/messages.inc.php:25 server_status.php:461 +#: libraries/messages.inc.php:21 server_status.php:461 msgid "Aborted" msgstr "" -#: libraries/messages.inc.php:28 main.php:68 +#: libraries/messages.inc.php:24 main.php:68 msgid "Actions" msgstr "" -#: libraries/messages.inc.php:34 libraries/tbl_properties.inc.php:780 +#: libraries/messages.inc.php:30 libraries/tbl_properties.inc.php:780 #: tbl_structure.php:543 #, php-format msgid "Add %s field(s)" msgstr "" -#: libraries/messages.inc.php:35 +#: libraries/messages.inc.php:31 msgid "Add custom comment into header (\\n splits lines)" msgstr "" -#: libraries/messages.inc.php:36 +#: libraries/messages.inc.php:32 msgid "Add into comments" msgstr "" -#: libraries/messages.inc.php:37 tbl_structure.php:541 +#: libraries/messages.inc.php:33 tbl_structure.php:541 msgid "Add new field" msgstr "" -#: libraries/messages.inc.php:38 server_privileges.php:1886 +#: libraries/messages.inc.php:34 server_privileges.php:1886 msgid "Add privileges on the following database" msgstr "" -#: libraries/messages.inc.php:39 server_privileges.php:1907 +#: libraries/messages.inc.php:35 server_privileges.php:1907 msgid "Add privileges on the following table" msgstr "" -#: libraries/messages.inc.php:40 tbl_select.php:288 +#: libraries/messages.inc.php:36 tbl_select.php:288 msgid "Add search conditions (body of the \"where\" clause):" msgstr "" -#: libraries/messages.inc.php:41 tbl_indexes.php:251 +#: libraries/messages.inc.php:37 tbl_indexes.php:251 #, php-format msgid "Add to index  %s column(s)" msgstr "" -#: libraries/messages.inc.php:42 server_privileges.php:1570 +#: libraries/messages.inc.php:38 server_privileges.php:1570 #: server_privileges.php:1594 server_privileges.php:1988 #: server_privileges.php:2177 msgid "Add a new User" msgstr "" -#: libraries/messages.inc.php:43 server_privileges.php:931 +#: libraries/messages.inc.php:39 server_privileges.php:931 msgid "You have added a new user." msgstr "" -#: libraries/messages.inc.php:44 server_privileges.php:571 +#: libraries/messages.inc.php:40 server_privileges.php:571 msgid "Administration" msgstr "" -#: libraries/messages.inc.php:45 tbl_structure.php:557 +#: libraries/messages.inc.php:41 tbl_structure.php:557 #, php-format msgid "After %s" msgstr "" -#: libraries/messages.inc.php:46 tbl_change.php:1147 +#: libraries/messages.inc.php:42 tbl_change.php:1147 msgid "Go back to previous page" msgstr "" -#: libraries/messages.inc.php:47 tbl_change.php:1148 +#: libraries/messages.inc.php:43 tbl_change.php:1148 msgid "Insert another new row" msgstr "" -#: libraries/messages.inc.php:48 tbl_change.php:1160 +#: libraries/messages.inc.php:44 tbl_change.php:1160 msgid "Edit next row" msgstr "" -#: libraries/messages.inc.php:49 tbl_change.php:1152 +#: libraries/messages.inc.php:45 tbl_change.php:1152 msgid "Go back to this page" msgstr "" -#: libraries/messages.inc.php:50 querywindow.php:115 +#: libraries/messages.inc.php:46 querywindow.php:115 msgid "All" msgstr "" -#: libraries/messages.inc.php:53 tbl_operations.php:249 +#: libraries/messages.inc.php:49 tbl_operations.php:249 msgid "Alter table order by" msgstr "" -#: libraries/messages.inc.php:54 tbl_operations.php:660 +#: libraries/messages.inc.php:50 tbl_operations.php:660 msgid "Analyze" msgstr "" -#: libraries/messages.inc.php:57 +#: libraries/messages.inc.php:53 msgid "and" msgstr "" -#: libraries/messages.inc.php:59 pmd_general.php:87 +#: libraries/messages.inc.php:55 pmd_general.php:87 msgid "Angular links" msgstr "" -#: libraries/messages.inc.php:60 tbl_structure.php:401 tbl_structure.php:415 +#: libraries/messages.inc.php:56 tbl_structure.php:401 tbl_structure.php:415 #: tbl_structure.php:429 #, php-format msgid "An index has been added on %s" msgstr "" -#: libraries/messages.inc.php:61 server_privileges.php:1521 +#: libraries/messages.inc.php:57 server_privileges.php:1521 #: server_privileges.php:2123 msgid "Any" msgstr "" -#: libraries/messages.inc.php:62 libraries/replication_gui.lib.php:298 +#: libraries/messages.inc.php:58 libraries/replication_gui.lib.php:298 #: server_privileges.php:725 msgid "Any host" msgstr "" -#: libraries/messages.inc.php:63 libraries/replication_gui.lib.php:250 +#: libraries/messages.inc.php:59 libraries/replication_gui.lib.php:250 #: server_privileges.php:677 msgid "Any user" msgstr "" -#: libraries/messages.inc.php:64 server_synchronize.php:449 +#: libraries/messages.inc.php:60 server_synchronize.php:449 #: server_synchronize.php:894 msgid "Apply Selected Changes" msgstr "" -#: libraries/messages.inc.php:66 tbl_structure.php:386 +#: libraries/messages.inc.php:62 tbl_structure.php:386 #, php-format msgid "A primary key has been added on %s" msgstr "" -#: libraries/messages.inc.php:67 libraries/mysql_charsets.lib.php:368 +#: libraries/messages.inc.php:63 libraries/mysql_charsets.lib.php:368 msgid "Arabic" msgstr "" -#: libraries/messages.inc.php:68 libraries/mysql_charsets.lib.php:359 +#: libraries/messages.inc.php:64 libraries/mysql_charsets.lib.php:359 msgid "Armenian" msgstr "" -#: libraries/messages.inc.php:70 libraries/tbl_properties.inc.php:394 +#: libraries/messages.inc.php:66 libraries/tbl_properties.inc.php:394 msgid "As defined:" msgstr "" -#: libraries/messages.inc.php:71 tbl_structure.php:556 +#: libraries/messages.inc.php:67 tbl_structure.php:556 msgid "At Beginning of Table" msgstr "" -#: libraries/messages.inc.php:72 tbl_structure.php:555 +#: libraries/messages.inc.php:68 tbl_structure.php:555 msgid "At End of Table" msgstr "" -#: libraries/messages.inc.php:73 libraries/tbl_properties.inc.php:108 +#: libraries/messages.inc.php:69 libraries/tbl_properties.inc.php:108 #: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:144 #: tbl_structure.php:180 msgid "Attributes" msgstr "" -#: libraries/messages.inc.php:74 pdf_pages.php:303 pdf_pages.php:306 +#: libraries/messages.inc.php:70 pdf_pages.php:303 pdf_pages.php:306 msgid "Automatic layout" msgstr "" -#: libraries/messages.inc.php:77 libraries/mysql_charsets.lib.php:354 +#: libraries/messages.inc.php:73 libraries/mysql_charsets.lib.php:354 msgid "Baltic" msgstr "" -#: libraries/messages.inc.php:78 libraries/sqlparser.lib.php:175 +#: libraries/messages.inc.php:74 libraries/sqlparser.lib.php:175 msgid "BEGIN CUT" msgstr "" -#: libraries/messages.inc.php:79 libraries/sqlparser.lib.php:179 +#: libraries/messages.inc.php:75 libraries/sqlparser.lib.php:179 msgid "BEGIN RAW" msgstr "" -#: libraries/messages.inc.php:80 libraries/mysql_charsets.lib.php:201 +#: libraries/messages.inc.php:76 libraries/mysql_charsets.lib.php:201 #: libraries/mysql_charsets.lib.php:402 tbl_change.php:518 msgid "Binary" msgstr "" -#: libraries/messages.inc.php:81 tbl_change.php:894 +#: libraries/messages.inc.php:77 tbl_change.php:894 msgid "Binary - do not edit" msgstr "" -#: libraries/messages.inc.php:82 libraries/server_links.inc.php:76 +#: libraries/messages.inc.php:78 libraries/server_links.inc.php:76 #: server_binlog.php:110 server_status.php:253 test/theme.php:121 msgid "Binary log" msgstr "" -#: libraries/messages.inc.php:83 server_binlog.php:217 +#: libraries/messages.inc.php:79 server_binlog.php:217 msgid "Event type" msgstr "" -#: libraries/messages.inc.php:84 server_binlog.php:220 +#: libraries/messages.inc.php:80 server_binlog.php:220 msgid "Information" msgstr "" -#: libraries/messages.inc.php:85 server_binlog.php:215 +#: libraries/messages.inc.php:81 server_binlog.php:215 msgid "Log name" msgstr "" -#: libraries/messages.inc.php:86 server_binlog.php:219 +#: libraries/messages.inc.php:82 server_binlog.php:219 msgid "Original position" msgstr "" -#: libraries/messages.inc.php:87 server_binlog.php:216 +#: libraries/messages.inc.php:83 server_binlog.php:216 msgid "Position" msgstr "" -#: libraries/messages.inc.php:88 libraries/replication_gui.lib.php:169 +#: libraries/messages.inc.php:84 libraries/replication_gui.lib.php:169 #: server_binlog.php:218 msgid "Server ID" msgstr "" -#: libraries/messages.inc.php:92 +#: libraries/messages.inc.php:88 msgctxt "$strBLOBRepositoryDisabled" msgid "Disabled" msgstr "" -#: libraries/messages.inc.php:95 +#: libraries/messages.inc.php:91 msgctxt "$strBLOBRepositoryEnabled" msgid "Enabled" msgstr "" -#: libraries/messages.inc.php:97 tbl_change.php:888 +#: libraries/messages.inc.php:93 tbl_change.php:888 msgid "Remove BLOB Repository Reference" msgstr "" -#: libraries/messages.inc.php:98 +#: libraries/messages.inc.php:94 msgctxt "$strBLOBRepositoryRepair" msgid "Repair" msgstr "" -#: libraries/messages.inc.php:99 tbl_change.php:987 +#: libraries/messages.inc.php:95 tbl_change.php:987 msgid "Upload to BLOB repository" msgstr "" -#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:359 +#: libraries/messages.inc.php:96 libraries/sql_query_form.lib.php:359 #: sql.php:677 msgid "Let every user access this bookmark" msgstr "" -#: libraries/messages.inc.php:103 sql.php:671 +#: libraries/messages.inc.php:99 sql.php:671 msgid "Label" msgstr "" -#: libraries/messages.inc.php:104 libraries/sql_query_form.lib.php:433 +#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:433 msgid "Bookmarked SQL query" msgstr "" -#: libraries/messages.inc.php:105 libraries/sql_query_form.lib.php:365 +#: libraries/messages.inc.php:101 libraries/sql_query_form.lib.php:365 msgid "Replace existing bookmark of same name" msgstr "" -#: libraries/messages.inc.php:106 libraries/sql_query_form.lib.php:352 +#: libraries/messages.inc.php:102 libraries/sql_query_form.lib.php:352 #: sql.php:665 sql.php:666 sql.php:683 msgid "Bookmark this SQL query" msgstr "" -#: libraries/messages.inc.php:107 libraries/sql_query_form.lib.php:466 +#: libraries/messages.inc.php:103 libraries/sql_query_form.lib.php:466 msgid "View only" msgstr "" -#: libraries/messages.inc.php:109 tbl_structure.php:161 +#: libraries/messages.inc.php:105 tbl_structure.php:161 msgid "Browse distinct values" msgstr "" -#: libraries/messages.inc.php:110 tbl_change.php:252 tbl_select.php:27 +#: libraries/messages.inc.php:106 tbl_change.php:252 tbl_select.php:27 #: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34 msgid "Browse foreign values" msgstr "" -#: libraries/messages.inc.php:118 libraries/mysql_charsets.lib.php:213 +#: libraries/messages.inc.php:114 libraries/mysql_charsets.lib.php:213 msgid "Bulgarian" msgstr "" -#: libraries/messages.inc.php:120 +#: libraries/messages.inc.php:116 msgid "\"bzipped\"" msgstr "" -#: libraries/messages.inc.php:122 +#: libraries/messages.inc.php:118 msgid "Calendar" msgstr "" -#: libraries/messages.inc.php:129 tbl_indexes.php:75 +#: libraries/messages.inc.php:125 tbl_indexes.php:75 msgid "Can't rename index to PRIMARY!" msgstr "" -#: libraries/messages.inc.php:132 libraries/mysql_charsets.lib.php:223 +#: libraries/messages.inc.php:128 libraries/mysql_charsets.lib.php:223 #: libraries/mysql_charsets.lib.php:409 msgid "case-insensitive" msgstr "" -#: libraries/messages.inc.php:133 libraries/mysql_charsets.lib.php:226 +#: libraries/messages.inc.php:129 libraries/mysql_charsets.lib.php:226 #: libraries/mysql_charsets.lib.php:411 msgid "case-sensitive" msgstr "" -#: libraries/messages.inc.php:134 libraries/mysql_charsets.lib.php:332 +#: libraries/messages.inc.php:130 libraries/mysql_charsets.lib.php:332 msgid "Central European" msgstr "" -#: libraries/messages.inc.php:136 server_privileges.php:1969 +#: libraries/messages.inc.php:132 server_privileges.php:1969 msgid "... keep the old one." msgstr "" -#: libraries/messages.inc.php:137 server_privileges.php:1967 +#: libraries/messages.inc.php:133 server_privileges.php:1967 msgid "Create a new user with the same privileges and ..." msgstr "" -#: libraries/messages.inc.php:138 server_privileges.php:1972 +#: libraries/messages.inc.php:134 server_privileges.php:1972 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: libraries/messages.inc.php:139 server_privileges.php:1970 +#: libraries/messages.inc.php:135 server_privileges.php:1970 msgid " ... delete the old one from the user tables." msgstr "" -#: libraries/messages.inc.php:140 server_privileges.php:1971 +#: libraries/messages.inc.php:136 server_privileges.php:1971 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: libraries/messages.inc.php:141 server_privileges.php:1964 +#: libraries/messages.inc.php:137 server_privileges.php:1964 msgid "Change Login Information / Copy User" msgstr "" -#: libraries/messages.inc.php:144 libraries/mysql_charsets.lib.php:107 +#: libraries/messages.inc.php:140 libraries/mysql_charsets.lib.php:107 msgid "Charset" msgstr "" -#: libraries/messages.inc.php:146 server_collations.php:40 +#: libraries/messages.inc.php:142 server_collations.php:40 msgid "Character Sets and Collations" msgstr "" -#: libraries/messages.inc.php:147 libraries/server_links.inc.php:57 +#: libraries/messages.inc.php:143 libraries/server_links.inc.php:57 #: test/theme.php:109 msgid "Charsets" msgstr "" -#: libraries/messages.inc.php:149 tbl_operations.php:661 +#: libraries/messages.inc.php:145 tbl_operations.php:661 msgid "Check" msgstr "" -#: libraries/messages.inc.php:151 server_databases.php:293 +#: libraries/messages.inc.php:147 server_databases.php:293 #: server_databases.php:294 msgid "Check Privileges" msgstr "" -#: libraries/messages.inc.php:152 server_databases.php:289 +#: libraries/messages.inc.php:148 server_databases.php:289 #, php-format msgid "Check privileges for database "%s"." msgstr "" -#: libraries/messages.inc.php:154 pdf_pages.php:261 +#: libraries/messages.inc.php:150 pdf_pages.php:261 msgid "Please choose a page to edit" msgstr "" -#: libraries/messages.inc.php:157 +#: libraries/messages.inc.php:153 msgid "Displaying Column Comments" msgstr "" -#: libraries/messages.inc.php:159 pdf_pages.php:483 view_create.php:148 +#: libraries/messages.inc.php:155 pdf_pages.php:483 view_create.php:148 msgid "Column names" msgstr "" -#: libraries/messages.inc.php:160 server_privileges.php:1685 +#: libraries/messages.inc.php:156 server_privileges.php:1685 msgid "Column-specific privileges" msgstr "" -#: libraries/messages.inc.php:164 +#: libraries/messages.inc.php:160 msgid "MySQL 4.0 compatible" msgstr "" -#: libraries/messages.inc.php:165 +#: libraries/messages.inc.php:161 msgid "Complete inserts" msgstr "" -#: libraries/messages.inc.php:168 +#: libraries/messages.inc.php:164 #, php-format msgid "Could not load default configuration from: \"%1$s\"" msgstr "" -#: libraries/messages.inc.php:169 main.php:306 +#: libraries/messages.inc.php:165 main.php:306 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: libraries/messages.inc.php:171 pdf_schema.php:672 +#: libraries/messages.inc.php:167 pdf_schema.php:672 #, php-format msgid "Please configure the coordinates for table %s" msgstr "" -#: libraries/messages.inc.php:173 server_status.php:433 +#: libraries/messages.inc.php:169 server_status.php:433 msgid "Connections" msgstr "" -#: libraries/messages.inc.php:179 tbl_operations.php:509 +#: libraries/messages.inc.php:175 tbl_operations.php:509 msgid "Copy table to (database.table):" msgstr "" -#: libraries/messages.inc.php:180 tbl_move_copy.php:58 +#: libraries/messages.inc.php:176 tbl_move_copy.php:58 #, php-format msgid "Table %s has been copied to %s." msgstr "" -#: libraries/messages.inc.php:181 tbl_move_copy.php:48 +#: libraries/messages.inc.php:177 tbl_move_copy.php:48 msgid "Can't copy table to same one!" msgstr "" -#: libraries/messages.inc.php:182 server_synchronize.php:94 +#: libraries/messages.inc.php:178 server_synchronize.php:94 msgid "Could not connect to the source" msgstr "" -#: libraries/messages.inc.php:183 server_synchronize.php:97 +#: libraries/messages.inc.php:179 server_synchronize.php:97 msgid "Could not connect to the target" msgstr "" -#: libraries/messages.inc.php:184 server_processlist.php:24 +#: libraries/messages.inc.php:180 server_processlist.php:24 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: libraries/messages.inc.php:187 +#: libraries/messages.inc.php:183 #, php-format msgid "Create an index on %s columns" msgstr "" -#: libraries/messages.inc.php:188 tbl_indexes.php:160 +#: libraries/messages.inc.php:184 tbl_indexes.php:160 msgid "Create a new index" msgstr "" -#: libraries/messages.inc.php:191 pdf_pages.php:297 pmd_pdf.php:114 +#: libraries/messages.inc.php:187 pdf_pages.php:297 pmd_pdf.php:114 msgid "Create a page" msgstr "" -#: libraries/messages.inc.php:192 +#: libraries/messages.inc.php:188 msgid "Creation of PDFs" msgstr "" -#: libraries/messages.inc.php:193 pmd_general.php:74 pmd_general.php:306 +#: libraries/messages.inc.php:189 pmd_general.php:74 pmd_general.php:306 msgid "Create relation" msgstr "" -#: libraries/messages.inc.php:194 pmd_general.php:71 +#: libraries/messages.inc.php:190 pmd_general.php:71 #: server_synchronize.php:429 server_synchronize.php:872 msgid "Create table" msgstr "" -#: libraries/messages.inc.php:195 +#: libraries/messages.inc.php:191 msgctxt "$strCreateTableShort" msgid "Create table" msgstr "" -#: libraries/messages.inc.php:196 server_privileges.php:1994 +#: libraries/messages.inc.php:192 server_privileges.php:1994 msgid "Database for user" msgstr "" -#: libraries/messages.inc.php:197 server_privileges.php:1999 +#: libraries/messages.inc.php:193 server_privileges.php:1999 msgid "Create database with same name and grant all privileges" msgstr "" -#: libraries/messages.inc.php:198 +#: libraries/messages.inc.php:194 msgctxt "$strCreateUserDatabaseNone" msgid "None" msgstr "" -#: libraries/messages.inc.php:199 server_privileges.php:2003 +#: libraries/messages.inc.php:195 server_privileges.php:2003 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: libraries/messages.inc.php:200 server_privileges.php:2000 +#: libraries/messages.inc.php:196 server_privileges.php:2000 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: libraries/messages.inc.php:201 +#: libraries/messages.inc.php:197 msgid "Creation/Update/Check dates" msgstr "" -#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:229 +#: libraries/messages.inc.php:199 libraries/mysql_charsets.lib.php:229 msgid "Croatian" msgstr "" -#: libraries/messages.inc.php:204 +#: libraries/messages.inc.php:200 msgid "CSV" msgstr "" -#: libraries/messages.inc.php:205 libraries/server_synchronize.lib.php:1343 +#: libraries/messages.inc.php:201 libraries/server_synchronize.lib.php:1343 #: libraries/server_synchronize.lib.php:1369 msgid "Current server" msgstr "" -#: libraries/messages.inc.php:206 main.php:159 +#: libraries/messages.inc.php:202 main.php:159 msgid "Custom color" msgstr "" -#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:365 +#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:365 msgid "Cyrillic" msgstr "" -#: libraries/messages.inc.php:208 libraries/mysql_charsets.lib.php:232 +#: libraries/messages.inc.php:204 libraries/mysql_charsets.lib.php:232 msgid "Czech" msgstr "" -#: libraries/messages.inc.php:209 libraries/mysql_charsets.lib.php:383 +#: libraries/messages.inc.php:205 libraries/mysql_charsets.lib.php:383 msgid "Czech-Slovak" msgstr "" -#: libraries/messages.inc.php:211 libraries/mysql_charsets.lib.php:235 +#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:235 msgid "Danish" msgstr "" -#: libraries/messages.inc.php:214 +#: libraries/messages.inc.php:210 msgid "Database export options" msgstr "" -#: libraries/messages.inc.php:217 server_synchronize.php:122 +#: libraries/messages.inc.php:213 server_synchronize.php:122 #: server_synchronize.php:125 tbl_create.php:82 tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "" -#: libraries/messages.inc.php:219 server_databases.php:63 +#: libraries/messages.inc.php:215 server_databases.php:63 #, php-format msgid "%s databases have been dropped successfully." msgstr "" -#: libraries/messages.inc.php:220 libraries/server_synchronize.lib.php:1341 +#: libraries/messages.inc.php:216 libraries/server_synchronize.lib.php:1341 #: server_synchronize.php:1110 msgid "Source database" msgstr "" -#: libraries/messages.inc.php:221 server_databases.php:88 +#: libraries/messages.inc.php:217 server_databases.php:88 msgid "Databases statistics" msgstr "" -#: libraries/messages.inc.php:222 server_databases.php:362 +#: libraries/messages.inc.php:218 server_databases.php:362 #: server_databases.php:363 msgid "Disable Statistics" msgstr "" -#: libraries/messages.inc.php:223 server_databases.php:358 +#: libraries/messages.inc.php:219 server_databases.php:358 #: server_databases.php:359 msgid "Enable Statistics" msgstr "" -#: libraries/messages.inc.php:224 server_databases.php:366 +#: libraries/messages.inc.php:220 server_databases.php:366 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." msgstr "" -#: libraries/messages.inc.php:225 libraries/server_synchronize.lib.php:1367 +#: libraries/messages.inc.php:221 libraries/server_synchronize.lib.php:1367 #: server_synchronize.php:1112 msgid "Target database" msgstr "" -#: libraries/messages.inc.php:228 server_synchronize.php:425 +#: libraries/messages.inc.php:224 server_synchronize.php:425 #: server_synchronize.php:868 msgid "Data Difference" msgstr "" -#: libraries/messages.inc.php:231 server_synchronize.php:272 +#: libraries/messages.inc.php:227 server_synchronize.php:272 msgid "Data Synchronization" msgstr "" -#: libraries/messages.inc.php:235 server_privileges.php:526 +#: libraries/messages.inc.php:231 server_privileges.php:526 #: server_privileges.php:1679 msgid "Database-specific privileges" msgstr "" -#: libraries/messages.inc.php:237 server_privileges.php:2136 +#: libraries/messages.inc.php:233 server_privileges.php:2136 msgid "database-specific" msgstr "" -#: libraries/messages.inc.php:240 libraries/tbl_properties.inc.php:106 +#: libraries/messages.inc.php:236 libraries/tbl_properties.inc.php:106 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" msgstr "" -#: libraries/messages.inc.php:241 tbl_operations.php:589 +#: libraries/messages.inc.php:237 tbl_operations.php:589 msgid "Defragment table" msgstr "" -#: libraries/messages.inc.php:242 +#: libraries/messages.inc.php:238 msgid "Use delayed inserts" msgstr "" -#: libraries/messages.inc.php:245 server_privileges.php:1243 +#: libraries/messages.inc.php:241 server_privileges.php:1243 msgid "No users selected for deleting!" msgstr "" -#: libraries/messages.inc.php:246 pmd_general.php:372 +#: libraries/messages.inc.php:242 pmd_general.php:372 msgid "Delete relation" msgstr "" -#: libraries/messages.inc.php:248 server_privileges.php:1232 +#: libraries/messages.inc.php:244 server_privileges.php:1232 #, php-format msgid "Deleting %s" msgstr "" -#: libraries/messages.inc.php:249 libraries/sql_query_form.lib.php:388 +#: libraries/messages.inc.php:245 libraries/sql_query_form.lib.php:388 msgid "Delimiter" msgstr "" -#: libraries/messages.inc.php:250 pdf_pages.php:506 +#: libraries/messages.inc.php:246 pdf_pages.php:506 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" msgstr "" -#: libraries/messages.inc.php:254 pmd_help.php:29 +#: libraries/messages.inc.php:250 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." msgstr "" -#: libraries/messages.inc.php:256 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:252 libraries/mysql_charsets.lib.php:247 msgid "dictionary" msgstr "" -#: libraries/messages.inc.php:257 libraries/server_synchronize.lib.php:1348 +#: libraries/messages.inc.php:253 libraries/server_synchronize.lib.php:1348 msgid "Difference" msgstr "" -#: libraries/messages.inc.php:258 pmd_general.php:87 +#: libraries/messages.inc.php:254 pmd_general.php:87 msgid "Direct links" msgstr "" -#: libraries/messages.inc.php:261 +#: libraries/messages.inc.php:257 msgid "Disable foreign key checks" msgstr "" -#: libraries/messages.inc.php:262 +#: libraries/messages.inc.php:258 msgid "Display Features" msgstr "" -#: libraries/messages.inc.php:263 tbl_select.php:301 +#: libraries/messages.inc.php:259 tbl_select.php:301 msgid "Display order:" msgstr "" -#: libraries/messages.inc.php:265 tbl_select.php:132 +#: libraries/messages.inc.php:261 tbl_select.php:132 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "" -#: libraries/messages.inc.php:266 +#: libraries/messages.inc.php:262 msgid "DocSQL" msgstr "" -#: libraries/messages.inc.php:268 +#: libraries/messages.inc.php:264 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/messages.inc.php:273 server_privileges.php:1579 +#: libraries/messages.inc.php:269 server_privileges.php:1579 #: server_privileges.php:1580 server_privileges.php:1581 msgid "Drop the databases that have the same names as the users." msgstr "" -#: libraries/messages.inc.php:278 tbl_printview.php:382 tbl_structure.php:743 +#: libraries/messages.inc.php:274 tbl_printview.php:382 tbl_structure.php:743 msgid "dynamic" msgstr "" -#: libraries/messages.inc.php:282 server_privileges.php:1324 +#: libraries/messages.inc.php:278 server_privileges.php:1324 #: server_privileges.php:1610 msgid "Edit Privileges" msgstr "" -#: libraries/messages.inc.php:283 tbl_printview.php:341 tbl_structure.php:688 +#: libraries/messages.inc.php:279 tbl_printview.php:341 tbl_structure.php:688 msgid "Effective" msgstr "" -#: libraries/messages.inc.php:286 libraries/relation.lib.php:100 +#: libraries/messages.inc.php:282 libraries/relation.lib.php:100 msgid "Enabled" msgstr "" -#: libraries/messages.inc.php:287 +#: libraries/messages.inc.php:283 msgid "Enclose export in a transaction" msgstr "" -#: libraries/messages.inc.php:288 libraries/sqlparser.lib.php:177 +#: libraries/messages.inc.php:284 libraries/sqlparser.lib.php:177 msgid "END CUT" msgstr "" -#: libraries/messages.inc.php:290 libraries/sqlparser.lib.php:183 +#: libraries/messages.inc.php:286 libraries/sqlparser.lib.php:183 msgid "END RAW" msgstr "" -#: libraries/messages.inc.php:293 libraries/server_links.inc.php:61 +#: libraries/messages.inc.php:289 libraries/server_links.inc.php:61 #: test/theme.php:113 msgid "Engines" msgstr "" -#: libraries/messages.inc.php:295 libraries/mysql_charsets.lib.php:238 +#: libraries/messages.inc.php:291 libraries/mysql_charsets.lib.php:238 msgid "English" msgstr "" -#: libraries/messages.inc.php:296 server_privileges.php:393 +#: libraries/messages.inc.php:292 server_privileges.php:393 #: server_privileges.php:535 server_privileges.php:1501 msgid " Note: MySQL privilege names are expressed in English " msgstr "" -#: libraries/messages.inc.php:298 libraries/zip_extension.lib.php:49 +#: libraries/messages.inc.php:294 libraries/zip_extension.lib.php:49 #: libraries/zip_extension.lib.php:51 libraries/zip_extension.lib.php:66 msgid "Error in ZIP archive:" msgstr "" -#: libraries/messages.inc.php:303 libraries/mysql_charsets.lib.php:241 +#: libraries/messages.inc.php:299 libraries/mysql_charsets.lib.php:241 msgid "Esperanto" msgstr "" -#: libraries/messages.inc.php:304 libraries/mysql_charsets.lib.php:244 +#: libraries/messages.inc.php:300 libraries/mysql_charsets.lib.php:244 msgid "Estonian" msgstr "" -#: libraries/messages.inc.php:305 libraries/tbl_triggers.lib.php:29 +#: libraries/messages.inc.php:301 libraries/tbl_triggers.lib.php:29 msgid "Event" msgstr "" -#: libraries/messages.inc.php:307 +#: libraries/messages.inc.php:303 msgid "Excel edition" msgstr "" -#: libraries/messages.inc.php:311 pmd_pdf.php:85 +#: libraries/messages.inc.php:307 pmd_pdf.php:85 msgid "Export/Import to scale" msgstr "" -#: libraries/messages.inc.php:313 +#: libraries/messages.inc.php:309 msgid "Extended inserts" msgstr "" -#: libraries/messages.inc.php:314 pdf_schema.php:1267 pdf_schema.php:1288 +#: libraries/messages.inc.php:310 pdf_schema.php:1267 pdf_schema.php:1288 #: tbl_printview.php:147 tbl_structure.php:183 tbl_tracking.php:278 msgid "Extra" msgstr "" -#: libraries/messages.inc.php:316 server_status.php:447 +#: libraries/messages.inc.php:312 server_status.php:447 msgid "Failed attempts" msgstr "" -#: libraries/messages.inc.php:318 tbl_structure.php:375 +#: libraries/messages.inc.php:314 tbl_structure.php:375 #, php-format msgid "Field %s has been dropped" msgstr "" -#: libraries/messages.inc.php:322 libraries/sql_query_form.lib.php:317 +#: libraries/messages.inc.php:318 libraries/sql_query_form.lib.php:317 msgid "Fields" msgstr "" -#: libraries/messages.inc.php:332 server_binlog.php:136 +#: libraries/messages.inc.php:328 server_binlog.php:136 msgid "Files" msgstr "" -#: libraries/messages.inc.php:334 server_privileges.php:1597 +#: libraries/messages.inc.php:330 server_privileges.php:1597 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -3621,217 +3621,217 @@ msgid "" "sreload the privileges%s before you continue." msgstr "" -#: libraries/messages.inc.php:335 server_status.php:289 +#: libraries/messages.inc.php:331 server_status.php:289 msgid "Flush query cache" msgstr "" -#: libraries/messages.inc.php:336 +#: libraries/messages.inc.php:332 msgid "Flush the table (\"FLUSH\")" msgstr "" -#: libraries/messages.inc.php:337 server_status.php:271 +#: libraries/messages.inc.php:333 server_status.php:271 msgid "Flush (close) all tables" msgstr "" -#: libraries/messages.inc.php:339 tbl_relation.php:279 +#: libraries/messages.inc.php:335 tbl_relation.php:279 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" -#: libraries/messages.inc.php:341 setup/lib/messages.inc.php:88 +#: libraries/messages.inc.php:337 setup/lib/messages.inc.php:88 #: tbl_printview.php:376 tbl_structure.php:738 msgid "Format" msgstr "" -#: libraries/messages.inc.php:344 server_replication.php:325 +#: libraries/messages.inc.php:340 server_replication.php:325 msgid "Full start" msgstr "" -#: libraries/messages.inc.php:345 server_replication.php:325 +#: libraries/messages.inc.php:341 server_replication.php:325 msgid "Full stop" msgstr "" -#: libraries/messages.inc.php:347 tbl_change.php:282 tbl_change.php:320 +#: libraries/messages.inc.php:343 tbl_change.php:282 tbl_change.php:320 msgid "Function" msgstr "" -#: libraries/messages.inc.php:355 libraries/mysql_charsets.lib.php:377 +#: libraries/messages.inc.php:351 libraries/mysql_charsets.lib.php:377 msgid "Georgian" msgstr "" -#: libraries/messages.inc.php:356 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:352 libraries/mysql_charsets.lib.php:247 #: libraries/mysql_charsets.lib.php:250 msgid "German" msgstr "" -#: libraries/messages.inc.php:357 themes.php:42 +#: libraries/messages.inc.php:353 themes.php:42 msgid "Get more themes!" msgstr "" -#: libraries/messages.inc.php:358 server_privileges.php:2134 +#: libraries/messages.inc.php:354 server_privileges.php:2134 msgid "global" msgstr "" -#: libraries/messages.inc.php:359 server_privileges.php:524 +#: libraries/messages.inc.php:355 server_privileges.php:524 #: server_privileges.php:1500 msgid "Global privileges" msgstr "" -#: libraries/messages.inc.php:360 server_variables.php:55 +#: libraries/messages.inc.php:356 server_variables.php:55 #: server_variables.php:89 msgid "Global value" msgstr "" -#: libraries/messages.inc.php:365 server_privileges.php:1502 +#: libraries/messages.inc.php:361 server_privileges.php:1502 #: server_privileges.php:1684 server_privileges.php:2033 msgid "Grant" msgstr "" -#: libraries/messages.inc.php:366 libraries/mysql_charsets.lib.php:380 +#: libraries/messages.inc.php:362 libraries/mysql_charsets.lib.php:380 msgid "Greek" msgstr "" -#: libraries/messages.inc.php:367 +#: libraries/messages.inc.php:363 msgid "\"gzipped\"" msgstr "" -#: libraries/messages.inc.php:369 server_status.php:250 +#: libraries/messages.inc.php:365 server_status.php:250 msgid "Handler" msgstr "" -#: libraries/messages.inc.php:370 server_synchronize.php:464 +#: libraries/messages.inc.php:366 server_synchronize.php:464 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: libraries/messages.inc.php:372 libraries/mysql_charsets.lib.php:374 +#: libraries/messages.inc.php:368 libraries/mysql_charsets.lib.php:374 msgid "Hebrew" msgstr "" -#: libraries/messages.inc.php:373 pmd_general.php:83 +#: libraries/messages.inc.php:369 pmd_general.php:83 msgid "Help" msgstr "" -#: libraries/messages.inc.php:374 +#: libraries/messages.inc.php:370 msgid "Use hexadecimal for BLOB" msgstr "" -#: libraries/messages.inc.php:376 pmd_general.php:120 +#: libraries/messages.inc.php:372 pmd_general.php:120 msgid "Hide/Show all" msgstr "" -#: libraries/messages.inc.php:377 pmd_general.php:124 +#: libraries/messages.inc.php:373 pmd_general.php:124 msgid "Hide/Show Tables with no relation" msgstr "" -#: libraries/messages.inc.php:378 libraries/navigation_header.inc.php:54 +#: libraries/messages.inc.php:374 libraries/navigation_header.inc.php:54 #: libraries/navigation_header.inc.php:57 #: libraries/navigation_header.inc.php:58 msgid "Home" msgstr "" -#: libraries/messages.inc.php:379 main.php:233 +#: libraries/messages.inc.php:375 main.php:233 msgid "Official Homepage" msgstr "" -#: libraries/messages.inc.php:382 libraries/replication_gui.lib.php:327 +#: libraries/messages.inc.php:378 libraries/replication_gui.lib.php:327 #: server_privileges.php:753 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/messages.inc.php:383 +#: libraries/messages.inc.php:379 msgid "Microsoft Word 2000" msgstr "" -#: libraries/messages.inc.php:384 libraries/mysql_charsets.lib.php:253 +#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:253 msgid "Hungarian" msgstr "" -#: libraries/messages.inc.php:386 libraries/mysql_charsets.lib.php:256 +#: libraries/messages.inc.php:382 libraries/mysql_charsets.lib.php:256 msgid "Icelandic" msgstr "" -#: libraries/messages.inc.php:387 server_processlist.php:53 +#: libraries/messages.inc.php:383 server_processlist.php:53 msgid "ID" msgstr "" -#: libraries/messages.inc.php:388 libraries/mult_submits.inc.php:108 +#: libraries/messages.inc.php:384 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:479 msgid "Fulltext" msgstr "" -#: libraries/messages.inc.php:389 +#: libraries/messages.inc.php:385 msgid "Ignore duplicate rows" msgstr "" -#: libraries/messages.inc.php:390 tbl_change.php:302 tbl_indexes.php:200 +#: libraries/messages.inc.php:386 tbl_change.php:302 tbl_indexes.php:200 #: tbl_indexes.php:225 msgid "Ignore" msgstr "" -#: libraries/messages.inc.php:391 +#: libraries/messages.inc.php:387 msgid "Use ignore inserts" msgstr "" -#: libraries/messages.inc.php:392 +#: libraries/messages.inc.php:388 msgid "Column names in first row" msgstr "" -#: libraries/messages.inc.php:393 +#: libraries/messages.inc.php:389 msgid "Do not import empty rows" msgstr "" -#: libraries/messages.inc.php:394 pmd_general.php:104 +#: libraries/messages.inc.php:390 pmd_general.php:104 msgid "Import/Export coordinates for PDF schema" msgstr "" -#: libraries/messages.inc.php:395 querywindow.php:104 +#: libraries/messages.inc.php:391 querywindow.php:104 msgid "Import files" msgstr "" -#: libraries/messages.inc.php:403 +#: libraries/messages.inc.php:399 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/messages.inc.php:404 libraries/messages.inc.php:584 +#: libraries/messages.inc.php:400 libraries/messages.inc.php:580 msgid "Open Document Spreadsheet" msgstr "" -#: libraries/messages.inc.php:405 +#: libraries/messages.inc.php:401 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/messages.inc.php:409 +#: libraries/messages.inc.php:405 msgid "Excel 97-2003 XLS Workbook" msgstr "" -#: libraries/messages.inc.php:410 +#: libraries/messages.inc.php:406 msgid "Excel 2007 XLSX Workbook" msgstr "" -#: libraries/messages.inc.php:414 libraries/mult_submits.inc.php:98 +#: libraries/messages.inc.php:410 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:476 tbl_structure.php:674 msgid "Index" msgstr "" -#: libraries/messages.inc.php:415 tbl_indexes.php:168 +#: libraries/messages.inc.php:411 tbl_indexes.php:168 msgid "Index name:" msgstr "" -#: libraries/messages.inc.php:416 tbl_indexes.php:174 +#: libraries/messages.inc.php:412 tbl_indexes.php:174 msgid "Index type:" msgstr "" -#: libraries/messages.inc.php:417 sql.php:639 +#: libraries/messages.inc.php:413 sql.php:639 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: libraries/messages.inc.php:427 main.php:266 +#: libraries/messages.inc.php:423 main.php:266 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -3839,194 +3839,194 @@ msgid "" "this security hole by setting a password for user 'root'." msgstr "" -#: libraries/messages.inc.php:428 tbl_change.php:1130 +#: libraries/messages.inc.php:424 tbl_change.php:1130 msgid "Insert as new row" msgstr "" -#: libraries/messages.inc.php:429 sql.php:496 tbl_replace.php:386 +#: libraries/messages.inc.php:425 sql.php:496 tbl_replace.php:386 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: libraries/messages.inc.php:430 tbl_change.php:1131 +#: libraries/messages.inc.php:426 tbl_change.php:1131 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/messages.inc.php:432 main.php:139 +#: libraries/messages.inc.php:428 main.php:139 msgid "Interface" msgstr "" -#: libraries/messages.inc.php:433 tbl_relation.php:407 +#: libraries/messages.inc.php:429 tbl_relation.php:407 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: libraries/messages.inc.php:435 pdf_pages.php:303 +#: libraries/messages.inc.php:431 pdf_pages.php:303 msgid "Internal relations" msgstr "" -#: libraries/messages.inc.php:438 tbl_indexes.php:256 tbl_structure.php:590 +#: libraries/messages.inc.php:434 tbl_indexes.php:256 tbl_structure.php:590 #: tbl_structure.php:601 msgid "Column count has to be larger than zero." msgstr "" -#: libraries/messages.inc.php:444 libraries/tbl_properties.inc.php:784 +#: libraries/messages.inc.php:440 libraries/tbl_properties.inc.php:784 #: tbl_structure.php:537 msgid "You have to add at least one field." msgstr "" -#: libraries/messages.inc.php:449 +#: libraries/messages.inc.php:445 #, php-format msgid "Invalid server index: \"%s\"" msgstr "" -#: libraries/messages.inc.php:452 libraries/mysql_charsets.lib.php:259 +#: libraries/messages.inc.php:448 libraries/mysql_charsets.lib.php:259 #: libraries/mysql_charsets.lib.php:349 msgid "Japanese" msgstr "" -#: libraries/messages.inc.php:453 main.php:331 +#: libraries/messages.inc.php:449 main.php:331 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: libraries/messages.inc.php:454 server_status.php:257 +#: libraries/messages.inc.php:450 server_status.php:257 msgid "Joins" msgstr "" -#: libraries/messages.inc.php:457 server_privileges.php:763 +#: libraries/messages.inc.php:453 server_privileges.php:763 msgid "Do not change the password" msgstr "" -#: libraries/messages.inc.php:458 server_status.php:256 +#: libraries/messages.inc.php:454 server_status.php:256 msgid "Key cache" msgstr "" -#: libraries/messages.inc.php:462 libraries/mysql_charsets.lib.php:268 +#: libraries/messages.inc.php:458 libraries/mysql_charsets.lib.php:268 #: libraries/mysql_charsets.lib.php:371 msgid "Korean" msgstr "" -#: libraries/messages.inc.php:466 libraries/select_lang.lib.php:480 +#: libraries/messages.inc.php:462 libraries/select_lang.lib.php:480 #: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492 #, php-format msgid "Unknown language: %1$s." msgstr "" -#: libraries/messages.inc.php:468 +#: libraries/messages.inc.php:464 msgid "Table caption" msgstr "" -#: libraries/messages.inc.php:469 +#: libraries/messages.inc.php:465 msgid "Content of table __TABLE__" msgstr "" -#: libraries/messages.inc.php:470 +#: libraries/messages.inc.php:466 msgid "Continued table caption" msgstr "" -#: libraries/messages.inc.php:471 +#: libraries/messages.inc.php:467 msgid "(continued)" msgstr "" -#: libraries/messages.inc.php:472 +#: libraries/messages.inc.php:468 msgid "Include table caption" msgstr "" -#: libraries/messages.inc.php:473 +#: libraries/messages.inc.php:469 msgid "Label key" msgstr "" -#: libraries/messages.inc.php:474 +#: libraries/messages.inc.php:470 msgid "LaTeX" msgstr "" -#: libraries/messages.inc.php:475 +#: libraries/messages.inc.php:471 msgid "Structure of table __TABLE__" msgstr "" -#: libraries/messages.inc.php:476 libraries/mysql_charsets.lib.php:262 +#: libraries/messages.inc.php:472 libraries/mysql_charsets.lib.php:262 msgid "Latvian" msgstr "" -#: libraries/messages.inc.php:477 +#: libraries/messages.inc.php:473 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/messages.inc.php:478 +#: libraries/messages.inc.php:474 msgid "Use LOCAL keyword" msgstr "" -#: libraries/messages.inc.php:479 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:475 libraries/tbl_properties.inc.php:105 msgid "Length/Values" msgstr "" -#: libraries/messages.inc.php:480 tbl_select.php:295 +#: libraries/messages.inc.php:476 tbl_select.php:295 msgid "Number of rows per page" msgstr "" -#: libraries/messages.inc.php:484 libraries/mysql_charsets.lib.php:265 +#: libraries/messages.inc.php:480 libraries/mysql_charsets.lib.php:265 msgid "Lithuanian" msgstr "" -#: libraries/messages.inc.php:485 libraries/replication_gui.lib.php:302 +#: libraries/messages.inc.php:481 libraries/replication_gui.lib.php:302 #: server_privileges.php:729 msgid "Local" msgstr "" -#: libraries/messages.inc.php:487 server_privileges.php:669 +#: libraries/messages.inc.php:483 server_privileges.php:669 msgid "Login Information" msgstr "" -#: libraries/messages.inc.php:490 libraries/navigation_header.inc.php:67 +#: libraries/messages.inc.php:486 libraries/navigation_header.inc.php:67 #: libraries/navigation_header.inc.php:70 #: libraries/navigation_header.inc.php:71 main.php:99 msgid "Log out" msgstr "" -#: libraries/messages.inc.php:497 server_status.php:440 +#: libraries/messages.inc.php:493 server_status.php:440 msgid "max. concurrent connections" msgstr "" -#: libraries/messages.inc.php:498 +#: libraries/messages.inc.php:494 msgid "Maximal length of created query" msgstr "" -#: libraries/messages.inc.php:500 main.php:282 +#: libraries/messages.inc.php:496 main.php:282 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " "split strings correctly and it may result in unexpected results." msgstr "" -#: libraries/messages.inc.php:501 main.php:274 +#: libraries/messages.inc.php:497 main.php:274 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " "corrupted!" msgstr "" -#: libraries/messages.inc.php:502 +#: libraries/messages.inc.php:498 msgid "MediaWiki Table" msgstr "" -#: libraries/messages.inc.php:503 transformation_overview.php:25 +#: libraries/messages.inc.php:499 transformation_overview.php:25 msgid "Available MIME types" msgstr "" -#: libraries/messages.inc.php:504 transformation_overview.php:43 +#: libraries/messages.inc.php:500 transformation_overview.php:43 msgid "Available transformations" msgstr "" -#: libraries/messages.inc.php:505 +#: libraries/messages.inc.php:501 msgctxt "$strMIME_description" msgid "Description" msgstr "" -#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:580 +#: libraries/messages.inc.php:503 libraries/tbl_properties.inc.php:580 #: transformation_overview.php:60 #, php-format msgid "" @@ -4034,14 +4034,14 @@ msgid "" "author what %s does." msgstr "" -#: libraries/messages.inc.php:509 libraries/tbl_properties.inc.php:137 +#: libraries/messages.inc.php:505 libraries/tbl_properties.inc.php:137 #, php-format msgid "" "For a list of available transformation options and their MIME type " "transformations, click on %stransformation descriptions%s" msgstr "" -#: libraries/messages.inc.php:510 libraries/tbl_properties.inc.php:146 +#: libraries/messages.inc.php:506 libraries/tbl_properties.inc.php:146 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -4049,455 +4049,455 @@ msgid "" "'\\\\xyz' or 'a\\'b')." msgstr "" -#: libraries/messages.inc.php:511 libraries/tbl_properties.inc.php:145 +#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:145 msgid "Transformation options" msgstr "" -#: libraries/messages.inc.php:513 transformation_overview.php:38 +#: libraries/messages.inc.php:509 transformation_overview.php:38 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "" -#: libraries/messages.inc.php:515 tbl_indexes.php:162 +#: libraries/messages.inc.php:511 tbl_indexes.php:162 msgid "Modify an index" msgstr "" -#: libraries/messages.inc.php:517 pmd_general.php:108 +#: libraries/messages.inc.php:513 pmd_general.php:108 msgid "Move Menu" msgstr "" -#: libraries/messages.inc.php:518 tbl_operations.php:276 +#: libraries/messages.inc.php:514 tbl_operations.php:276 msgid "Move table to (database.table):" msgstr "" -#: libraries/messages.inc.php:519 tbl_move_copy.php:56 +#: libraries/messages.inc.php:515 tbl_move_copy.php:56 #, php-format msgid "Table %s has been moved to %s." msgstr "" -#: libraries/messages.inc.php:520 tbl_move_copy.php:46 +#: libraries/messages.inc.php:516 tbl_move_copy.php:46 msgid "Can't move table to same one!" msgstr "" -#: libraries/messages.inc.php:521 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:517 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 #: libraries/mysql_charsets.lib.php:332 libraries/mysql_charsets.lib.php:354 #: libraries/mysql_charsets.lib.php:365 msgid "multilingual" msgstr "" -#: libraries/messages.inc.php:534 main.php:193 +#: libraries/messages.inc.php:530 main.php:193 msgid "MySQL charset" msgstr "" -#: libraries/messages.inc.php:535 main.php:211 +#: libraries/messages.inc.php:531 main.php:211 msgid "MySQL client version" msgstr "" -#: libraries/messages.inc.php:536 main.php:125 +#: libraries/messages.inc.php:532 main.php:125 msgid "MySQL connection collation" msgstr "" -#: libraries/messages.inc.php:537 main.php:346 +#: libraries/messages.inc.php:533 main.php:346 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: libraries/messages.inc.php:539 server_status.php:294 +#: libraries/messages.inc.php:535 server_status.php:294 msgid "Show processes" msgstr "" -#: libraries/messages.inc.php:545 navigation.php:210 server_databases.php:371 +#: libraries/messages.inc.php:541 navigation.php:210 server_databases.php:371 #: server_synchronize.php:1191 msgid "No databases" msgstr "" -#: libraries/messages.inc.php:546 server_databases.php:52 +#: libraries/messages.inc.php:542 server_databases.php:52 msgid "No databases selected." msgstr "" -#: libraries/messages.inc.php:548 libraries/relation.lib.php:1173 +#: libraries/messages.inc.php:544 libraries/relation.lib.php:1173 msgid "no description" msgstr "" -#: libraries/messages.inc.php:552 libraries/zip_extension.lib.php:26 +#: libraries/messages.inc.php:548 libraries/zip_extension.lib.php:26 msgid "No files found inside ZIP archive!" msgstr "" -#: libraries/messages.inc.php:555 tbl_indexes.php:91 +#: libraries/messages.inc.php:551 tbl_indexes.php:91 msgid "No index parts defined!" msgstr "" -#: libraries/messages.inc.php:556 libraries/mult_submits.inc.php:435 +#: libraries/messages.inc.php:552 libraries/mult_submits.inc.php:435 #: tbl_replace.php:331 msgid "No change" msgstr "" -#: libraries/messages.inc.php:557 +#: libraries/messages.inc.php:553 msgctxt "$strNoneDefault" msgid "None" msgstr "" -#: libraries/messages.inc.php:560 libraries/plugin_interface.lib.php:312 +#: libraries/messages.inc.php:556 libraries/plugin_interface.lib.php:312 msgid "This format has no options" msgstr "" -#: libraries/messages.inc.php:565 user_password.php:54 +#: libraries/messages.inc.php:561 user_password.php:54 msgid "You don't have sufficient privileges to be here right now!" msgstr "" -#: libraries/messages.inc.php:566 tbl_row_action.php:29 +#: libraries/messages.inc.php:562 tbl_row_action.php:29 msgid "No rows selected" msgstr "" -#: libraries/messages.inc.php:569 themes.php:32 +#: libraries/messages.inc.php:565 themes.php:32 #, php-format msgid "" "No themes support; please check your configuration and/or your themes in " "directory %s." msgstr "" -#: libraries/messages.inc.php:571 libraries/relation.lib.php:95 +#: libraries/messages.inc.php:567 libraries/relation.lib.php:95 msgid "not OK" msgstr "" -#: libraries/messages.inc.php:572 server_synchronize.php:400 +#: libraries/messages.inc.php:568 server_synchronize.php:400 #: server_synchronize.php:839 msgid "not present" msgstr "" -#: libraries/messages.inc.php:573 pdf_pages.php:36 pdf_pages.php:42 +#: libraries/messages.inc.php:569 pdf_pages.php:36 pdf_pages.php:42 #: pdf_pages.php:48 pdf_pages.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "" -#: libraries/messages.inc.php:574 server_privileges.php:804 +#: libraries/messages.inc.php:570 server_privileges.php:804 #: server_privileges.php:2166 msgid "No user(s) found." msgstr "" -#: libraries/messages.inc.php:578 pmd_general.php:164 +#: libraries/messages.inc.php:574 pmd_general.php:164 msgid "Number of tables" msgstr "" -#: libraries/messages.inc.php:581 server_databases.php:117 +#: libraries/messages.inc.php:577 server_databases.php:117 #: server_status.php:260 setup/lib/messages.inc.php:117 msgid "Tables" msgstr "" -#: libraries/messages.inc.php:583 libraries/relation.lib.php:99 +#: libraries/messages.inc.php:579 libraries/relation.lib.php:99 #: pmd_general.php:340 msgid "OK" msgstr "" -#: libraries/messages.inc.php:585 +#: libraries/messages.inc.php:581 msgid "Open Document Text" msgstr "" -#: libraries/messages.inc.php:588 tbl_select.php:138 +#: libraries/messages.inc.php:584 tbl_select.php:138 msgid "Operator" msgstr "" -#: libraries/messages.inc.php:589 tbl_operations.php:662 +#: libraries/messages.inc.php:585 tbl_operations.php:662 msgid "Optimize" msgstr "" -#: libraries/messages.inc.php:602 libraries/tbl_properties.inc.php:755 +#: libraries/messages.inc.php:598 libraries/tbl_properties.inc.php:755 msgid "PARTITION definition" msgstr "" -#: libraries/messages.inc.php:603 tbl_structure.php:757 +#: libraries/messages.inc.php:599 tbl_structure.php:757 msgid "partitioned" msgstr "" -#: libraries/messages.inc.php:604 tbl_operations.php:649 +#: libraries/messages.inc.php:600 tbl_operations.php:649 msgid "Partition maintenance" msgstr "" -#: libraries/messages.inc.php:605 tbl_operations.php:657 +#: libraries/messages.inc.php:601 tbl_operations.php:657 #, php-format msgid "Partition %s" msgstr "" -#: libraries/messages.inc.php:606 server_privileges.php:1212 +#: libraries/messages.inc.php:602 server_privileges.php:1212 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: libraries/messages.inc.php:635 +#: libraries/messages.inc.php:631 #, php-format msgid "Schema of the \"%s\" database - Page %s" msgstr "" -#: libraries/messages.inc.php:636 +#: libraries/messages.inc.php:632 #, php-format msgid "The \"%s\" table doesn't exist!" msgstr "" -#: libraries/messages.inc.php:637 pdf_schema.php:1013 +#: libraries/messages.inc.php:633 pdf_schema.php:1013 msgid "No tables" msgstr "" -#: libraries/messages.inc.php:638 pmd_pdf.php:63 +#: libraries/messages.inc.php:634 pmd_pdf.php:63 msgid "Page has been created" msgstr "" -#: libraries/messages.inc.php:639 pmd_pdf.php:65 +#: libraries/messages.inc.php:635 pmd_pdf.php:65 msgid "Page creation failed" msgstr "" -#: libraries/messages.inc.php:640 +#: libraries/messages.inc.php:636 msgid "PDF" msgstr "" -#: libraries/messages.inc.php:641 +#: libraries/messages.inc.php:637 msgid "(Generates a report containing the data of a single table)" msgstr "" -#: libraries/messages.inc.php:642 +#: libraries/messages.inc.php:638 msgid "Report title" msgstr "" -#: libraries/messages.inc.php:643 server_status.php:389 server_status.php:434 +#: libraries/messages.inc.php:639 server_status.php:389 server_status.php:434 #: server_status.php:497 server_status.php:555 msgid "per hour" msgstr "" -#: libraries/messages.inc.php:644 server_status.php:498 +#: libraries/messages.inc.php:640 server_status.php:498 msgid "per minute" msgstr "" -#: libraries/messages.inc.php:645 server_status.php:499 +#: libraries/messages.inc.php:641 server_status.php:499 msgid "per second" msgstr "" -#: libraries/messages.inc.php:646 libraries/mysql_charsets.lib.php:271 +#: libraries/messages.inc.php:642 libraries/mysql_charsets.lib.php:271 msgid "Persian" msgstr "" -#: libraries/messages.inc.php:647 libraries/mysql_charsets.lib.php:250 +#: libraries/messages.inc.php:643 libraries/mysql_charsets.lib.php:250 msgid "phone book" msgstr "" -#: libraries/messages.inc.php:648 +#: libraries/messages.inc.php:644 msgid "PHP array" msgstr "" -#: libraries/messages.inc.php:650 main.php:213 +#: libraries/messages.inc.php:646 main.php:213 msgid "PHP extension" msgstr "" -#: libraries/messages.inc.php:654 libraries/relation.lib.php:163 +#: libraries/messages.inc.php:650 libraries/relation.lib.php:163 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/messages.inc.php:655 libraries/relation.lib.php:159 +#: libraries/messages.inc.php:651 libraries/relation.lib.php:159 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/messages.inc.php:656 libraries/relation.lib.php:161 +#: libraries/messages.inc.php:652 libraries/relation.lib.php:161 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" -#: libraries/messages.inc.php:657 libraries/relation.lib.php:162 +#: libraries/messages.inc.php:653 libraries/relation.lib.php:162 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/messages.inc.php:658 libraries/relation.lib.php:164 +#: libraries/messages.inc.php:654 libraries/relation.lib.php:164 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/messages.inc.php:661 libraries/mysql_charsets.lib.php:274 +#: libraries/messages.inc.php:657 libraries/mysql_charsets.lib.php:274 msgid "Polish" msgstr "" -#: libraries/messages.inc.php:662 libraries/replication_gui.lib.php:67 +#: libraries/messages.inc.php:658 libraries/replication_gui.lib.php:67 #: server_synchronize.php:1163 msgid "Port" msgstr "" -#: libraries/messages.inc.php:667 tbl_indexes.php:67 +#: libraries/messages.inc.php:663 tbl_indexes.php:67 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "" -#: libraries/messages.inc.php:668 tbl_indexes.php:184 +#: libraries/messages.inc.php:664 tbl_indexes.php:184 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" -#: libraries/messages.inc.php:669 libraries/mult_submits.inc.php:76 +#: libraries/messages.inc.php:665 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:474 msgid "Primary" msgstr "" -#: libraries/messages.inc.php:673 server_privileges.php:227 +#: libraries/messages.inc.php:669 server_privileges.php:227 msgid "Includes all privileges except GRANT." msgstr "" -#: libraries/messages.inc.php:674 server_privileges.php:153 +#: libraries/messages.inc.php:670 server_privileges.php:153 #: server_privileges.php:476 msgid "Allows altering the structure of existing tables." msgstr "" -#: libraries/messages.inc.php:675 server_privileges.php:169 +#: libraries/messages.inc.php:671 server_privileges.php:169 #: server_privileges.php:482 msgid "Allows altering and dropping stored routines." msgstr "" -#: libraries/messages.inc.php:676 server_privileges.php:145 +#: libraries/messages.inc.php:672 server_privileges.php:145 #: server_privileges.php:475 msgid "Allows creating new databases and tables." msgstr "" -#: libraries/messages.inc.php:677 server_privileges.php:168 +#: libraries/messages.inc.php:673 server_privileges.php:168 #: server_privileges.php:481 msgid "Allows creating stored routines." msgstr "" -#: libraries/messages.inc.php:678 server_privileges.php:475 +#: libraries/messages.inc.php:674 server_privileges.php:475 msgid "Allows creating new tables." msgstr "" -#: libraries/messages.inc.php:679 server_privileges.php:156 +#: libraries/messages.inc.php:675 server_privileges.php:156 #: server_privileges.php:479 msgid "Allows creating temporary tables." msgstr "" -#: libraries/messages.inc.php:680 server_privileges.php:170 +#: libraries/messages.inc.php:676 server_privileges.php:170 #: server_privileges.php:515 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: libraries/messages.inc.php:681 server_privileges.php:160 +#: libraries/messages.inc.php:677 server_privileges.php:160 #: server_privileges.php:164 server_privileges.php:487 #: server_privileges.php:491 msgid "Allows creating new views." msgstr "" -#: libraries/messages.inc.php:682 server_privileges.php:144 +#: libraries/messages.inc.php:678 server_privileges.php:144 #: server_privileges.php:467 msgid "Allows deleting data." msgstr "" -#: libraries/messages.inc.php:683 server_privileges.php:146 +#: libraries/messages.inc.php:679 server_privileges.php:146 #: server_privileges.php:478 msgid "Allows dropping databases and tables." msgstr "" -#: libraries/messages.inc.php:684 server_privileges.php:478 +#: libraries/messages.inc.php:680 server_privileges.php:478 msgid "Allows dropping tables." msgstr "" -#: libraries/messages.inc.php:685 server_privileges.php:161 +#: libraries/messages.inc.php:681 server_privileges.php:161 #: server_privileges.php:495 msgid "Allows to set up events for the event scheduler" msgstr "" -#: libraries/messages.inc.php:686 server_privileges.php:171 +#: libraries/messages.inc.php:682 server_privileges.php:171 #: server_privileges.php:483 msgid "Allows executing stored routines." msgstr "" -#: libraries/messages.inc.php:687 server_privileges.php:150 +#: libraries/messages.inc.php:683 server_privileges.php:150 #: server_privileges.php:470 msgid "Allows importing data from and exporting data into files." msgstr "" -#: libraries/messages.inc.php:688 server_privileges.php:501 +#: libraries/messages.inc.php:684 server_privileges.php:501 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: libraries/messages.inc.php:689 server_privileges.php:152 +#: libraries/messages.inc.php:685 server_privileges.php:152 #: server_privileges.php:477 msgid "Allows creating and dropping indexes." msgstr "" -#: libraries/messages.inc.php:690 server_privileges.php:142 +#: libraries/messages.inc.php:686 server_privileges.php:142 #: server_privileges.php:403 server_privileges.php:465 msgid "Allows inserting and replacing data." msgstr "" -#: libraries/messages.inc.php:691 server_privileges.php:157 +#: libraries/messages.inc.php:687 server_privileges.php:157 #: server_privileges.php:510 msgid "Allows locking tables for the current thread." msgstr "" -#: libraries/messages.inc.php:692 server_privileges.php:607 +#: libraries/messages.inc.php:688 server_privileges.php:607 #: server_privileges.php:609 msgid "Limits the number of new connections the user may open per hour." msgstr "" -#: libraries/messages.inc.php:693 server_privileges.php:595 +#: libraries/messages.inc.php:689 server_privileges.php:595 #: server_privileges.php:597 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" -#: libraries/messages.inc.php:694 server_privileges.php:601 +#: libraries/messages.inc.php:690 server_privileges.php:601 #: server_privileges.php:603 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" -#: libraries/messages.inc.php:695 server_privileges.php:613 +#: libraries/messages.inc.php:691 server_privileges.php:613 #: server_privileges.php:615 msgid "Limits the number of simultaneous connections the user may have." msgstr "" -#: libraries/messages.inc.php:696 server_privileges.php:149 +#: libraries/messages.inc.php:692 server_privileges.php:149 #: server_privileges.php:505 msgid "Allows viewing processes of all users" msgstr "" -#: libraries/messages.inc.php:697 server_privileges.php:151 +#: libraries/messages.inc.php:693 server_privileges.php:151 #: server_privileges.php:409 server_privileges.php:511 msgid "Has no effect in this MySQL version." msgstr "" -#: libraries/messages.inc.php:698 server_privileges.php:147 +#: libraries/messages.inc.php:694 server_privileges.php:147 #: server_privileges.php:506 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: libraries/messages.inc.php:699 server_privileges.php:159 +#: libraries/messages.inc.php:695 server_privileges.php:159 #: server_privileges.php:513 msgid "Allows the user to ask where the slaves / masters are." msgstr "" -#: libraries/messages.inc.php:700 server_privileges.php:158 +#: libraries/messages.inc.php:696 server_privileges.php:158 #: server_privileges.php:514 msgid "Needed for the replication slaves." msgstr "" -#: libraries/messages.inc.php:701 server_privileges.php:141 +#: libraries/messages.inc.php:697 server_privileges.php:141 #: server_privileges.php:400 server_privileges.php:464 msgid "Allows reading data." msgstr "" -#: libraries/messages.inc.php:702 server_privileges.php:154 +#: libraries/messages.inc.php:698 server_privileges.php:154 #: server_privileges.php:508 msgid "Gives access to the complete list of databases." msgstr "" -#: libraries/messages.inc.php:703 server_privileges.php:165 +#: libraries/messages.inc.php:699 server_privileges.php:165 #: server_privileges.php:167 server_privileges.php:480 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: libraries/messages.inc.php:704 server_privileges.php:148 +#: libraries/messages.inc.php:700 server_privileges.php:148 #: server_privileges.php:507 msgid "Allows shutting down the server." msgstr "" -#: libraries/messages.inc.php:705 server_privileges.php:155 +#: libraries/messages.inc.php:701 server_privileges.php:155 #: server_privileges.php:504 msgid "" "Allows connecting, even if maximum number of connections is reached; " @@ -4505,190 +4505,190 @@ msgid "" "killing threads of other users." msgstr "" -#: libraries/messages.inc.php:706 server_privileges.php:162 +#: libraries/messages.inc.php:702 server_privileges.php:162 #: server_privileges.php:496 msgid "Allows creating and dropping triggers" msgstr "" -#: libraries/messages.inc.php:707 server_privileges.php:143 +#: libraries/messages.inc.php:703 server_privileges.php:143 #: server_privileges.php:406 server_privileges.php:466 msgid "Allows changing data." msgstr "" -#: libraries/messages.inc.php:708 server_privileges.php:221 +#: libraries/messages.inc.php:704 server_privileges.php:221 msgid "No privileges." msgstr "" -#: libraries/messages.inc.php:710 server_privileges.php:1296 +#: libraries/messages.inc.php:706 server_privileges.php:1296 msgid "The privileges were reloaded successfully." msgstr "" -#: libraries/messages.inc.php:712 libraries/server_links.inc.php:80 +#: libraries/messages.inc.php:708 libraries/server_links.inc.php:80 msgid "Processes" msgstr "" -#: libraries/messages.inc.php:714 main.php:187 +#: libraries/messages.inc.php:710 main.php:187 msgid "Protocol version" msgstr "" -#: libraries/messages.inc.php:715 +#: libraries/messages.inc.php:711 msgid "Put fields names in the first row" msgstr "" -#: libraries/messages.inc.php:720 server_synchronize.php:1003 +#: libraries/messages.inc.php:716 server_synchronize.php:1003 msgid "The following queries have been executed:" msgstr "" -#: libraries/messages.inc.php:721 server_status.php:251 +#: libraries/messages.inc.php:717 server_status.php:251 msgid "Query cache" msgstr "" -#: libraries/messages.inc.php:722 libraries/navigation_header.inc.php:80 +#: libraries/messages.inc.php:718 libraries/navigation_header.inc.php:80 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 setup/lib/messages.inc.php:122 msgid "Query window" msgstr "" -#: libraries/messages.inc.php:725 querywindow.php:109 querywindow.php:217 +#: libraries/messages.inc.php:721 querywindow.php:109 querywindow.php:217 msgid "SQL history" msgstr "" -#: libraries/messages.inc.php:726 server_status.php:490 +#: libraries/messages.inc.php:722 server_status.php:490 #, php-format msgid "" "Query statistics: Since its startup, %s queries have been sent to the " "server." msgstr "" -#: libraries/messages.inc.php:728 server_status.php:554 +#: libraries/messages.inc.php:724 server_status.php:554 msgid "Query type" msgstr "" -#: libraries/messages.inc.php:729 libraries/sql_query_form.lib.php:381 +#: libraries/messages.inc.php:725 libraries/sql_query_form.lib.php:381 msgid "Do not overwrite this query from outside the window" msgstr "" -#: libraries/messages.inc.php:732 tbl_operations.php:663 +#: libraries/messages.inc.php:728 tbl_operations.php:663 msgid "Rebuild" msgstr "" -#: libraries/messages.inc.php:733 server_status.php:394 +#: libraries/messages.inc.php:729 server_status.php:394 msgid "Received" msgstr "" -#: libraries/messages.inc.php:734 pmd_pdf.php:89 +#: libraries/messages.inc.php:730 pmd_pdf.php:89 msgid "recommended" msgstr "" -#: libraries/messages.inc.php:736 tbl_operations.php:702 +#: libraries/messages.inc.php:732 tbl_operations.php:702 msgid "Check referential integrity:" msgstr "" -#: libraries/messages.inc.php:740 pdf_schema.php:1032 pdf_schema.php:1141 +#: libraries/messages.inc.php:736 pdf_schema.php:1032 pdf_schema.php:1141 msgid "Relational schema" msgstr "" -#: libraries/messages.inc.php:744 tbl_relation.php:399 +#: libraries/messages.inc.php:740 tbl_relation.php:399 msgid "Relations" msgstr "" -#: libraries/messages.inc.php:745 tbl_structure.php:507 tbl_structure.php:509 +#: libraries/messages.inc.php:741 tbl_structure.php:507 tbl_structure.php:509 msgid "Relation view" msgstr "" -#: libraries/messages.inc.php:746 server_privileges.php:1246 +#: libraries/messages.inc.php:742 server_privileges.php:1246 msgid "Reloading the privileges" msgstr "" -#: libraries/messages.inc.php:747 navigation.php:66 navigation.php:67 +#: libraries/messages.inc.php:743 navigation.php:66 navigation.php:67 #: navigation.php:70 msgid "Reload navigation frame" msgstr "" -#: libraries/messages.inc.php:748 pmd_general.php:80 +#: libraries/messages.inc.php:744 pmd_general.php:80 msgid "Reload" msgstr "" -#: libraries/messages.inc.php:749 libraries/server_synchronize.lib.php:1345 +#: libraries/messages.inc.php:745 libraries/server_synchronize.lib.php:1345 #: libraries/server_synchronize.lib.php:1371 msgid "Remote server" msgstr "" -#: libraries/messages.inc.php:750 +#: libraries/messages.inc.php:746 msgid "Remove CRLF characters within fields" msgstr "" -#: libraries/messages.inc.php:751 tbl_operations.php:676 +#: libraries/messages.inc.php:747 tbl_operations.php:676 msgid "Remove partitioning" msgstr "" -#: libraries/messages.inc.php:752 server_privileges.php:1575 +#: libraries/messages.inc.php:748 server_privileges.php:1575 msgid "Remove selected users" msgstr "" -#: libraries/messages.inc.php:755 tbl_operations.php:338 +#: libraries/messages.inc.php:751 tbl_operations.php:338 msgid "Rename table to" msgstr "" -#: libraries/messages.inc.php:756 view_operations.php:93 +#: libraries/messages.inc.php:752 view_operations.php:93 msgid "Rename view to" msgstr "" -#: libraries/messages.inc.php:757 tbl_operations.php:664 +#: libraries/messages.inc.php:753 tbl_operations.php:664 msgid "Repair" msgstr "" -#: libraries/messages.inc.php:759 +#: libraries/messages.inc.php:755 msgid "Replace NULL by" msgstr "" -#: libraries/messages.inc.php:760 +#: libraries/messages.inc.php:756 msgid "Replace table data with file" msgstr "" -#: libraries/messages.inc.php:761 server_replication.php:228 +#: libraries/messages.inc.php:757 server_replication.php:228 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: libraries/messages.inc.php:762 libraries/replication_gui.lib.php:236 +#: libraries/messages.inc.php:758 libraries/replication_gui.lib.php:236 #: server_replication.php:194 msgid "Add slave replication user" msgstr "" -#: libraries/messages.inc.php:763 server_replication.php:74 +#: libraries/messages.inc.php:759 server_replication.php:74 #, php-format msgid "Master server changed succesfully to %s" msgstr "" -#: libraries/messages.inc.php:764 server_replication.php:182 +#: libraries/messages.inc.php:760 server_replication.php:182 msgid "This server is configured as master in a replication process." msgstr "" -#: libraries/messages.inc.php:765 server_replication.php:322 +#: libraries/messages.inc.php:761 server_replication.php:322 msgid "Control slave:" msgstr "" -#: libraries/messages.inc.php:766 server_replication.php:65 +#: libraries/messages.inc.php:762 server_replication.php:65 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: libraries/messages.inc.php:767 server_replication.php:58 +#: libraries/messages.inc.php:763 server_replication.php:58 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: libraries/messages.inc.php:768 server_replication.php:221 +#: libraries/messages.inc.php:764 server_replication.php:221 msgid "Replicate all databases; Ignore:" msgstr "" -#: libraries/messages.inc.php:769 server_replication.php:222 +#: libraries/messages.inc.php:765 server_replication.php:222 msgid "Ignore all databases; Replicate:" msgstr "" -#: libraries/messages.inc.php:770 server_replication.php:218 +#: libraries/messages.inc.php:766 server_replication.php:218 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -4697,120 +4697,120 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: libraries/messages.inc.php:771 server_replication.php:217 +#: libraries/messages.inc.php:767 server_replication.php:217 msgid "Master configuration" msgstr "" -#: libraries/messages.inc.php:772 server_replication.php:181 +#: libraries/messages.inc.php:768 server_replication.php:181 #: server_replication.php:209 msgid "Master replication" msgstr "" -#: libraries/messages.inc.php:774 server_replication.php:230 +#: libraries/messages.inc.php:770 server_replication.php:230 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: libraries/messages.inc.php:775 server_replication.php:225 +#: libraries/messages.inc.php:771 server_replication.php:225 msgid "Please select databases:" msgstr "" -#: libraries/messages.inc.php:776 server_replication.php:210 +#: libraries/messages.inc.php:772 server_replication.php:210 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:188 +#: libraries/messages.inc.php:773 libraries/replication_gui.lib.php:188 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/messages.inc.php:778 server_replication.php:187 +#: libraries/messages.inc.php:774 server_replication.php:187 msgid "Show connected slaves" msgstr "" -#: libraries/messages.inc.php:779 libraries/messages.inc.php:885 +#: libraries/messages.inc.php:775 libraries/messages.inc.php:881 #: server_replication.php:184 server_status.php:281 msgid "Show master status" msgstr "" -#: libraries/messages.inc.php:780 server_replication.php:334 +#: libraries/messages.inc.php:776 server_replication.php:334 msgid "Skipping error(s) might lead into unsynchronized master and slave!" msgstr "" -#: libraries/messages.inc.php:781 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:51 #: server_replication.php:347 msgid "Change or reconfigure master server" msgstr "" -#: libraries/messages.inc.php:782 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:778 libraries/replication_gui.lib.php:51 msgid "Slave configuration" msgstr "" -#: libraries/messages.inc.php:783 server_replication.php:305 +#: libraries/messages.inc.php:779 server_replication.php:305 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: libraries/messages.inc.php:784 server_replication.php:332 +#: libraries/messages.inc.php:780 server_replication.php:332 msgid "Error management:" msgstr "" -#: libraries/messages.inc.php:785 server_replication.php:328 +#: libraries/messages.inc.php:781 server_replication.php:328 #, php-format msgid "IO Thread %s only" msgstr "" -#: libraries/messages.inc.php:786 server_replication.php:296 +#: libraries/messages.inc.php:782 server_replication.php:296 msgid "Slave IO Thread not running!" msgstr "" -#: libraries/messages.inc.php:787 server_replication.php:355 +#: libraries/messages.inc.php:783 server_replication.php:355 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/messages.inc.php:788 server_replication.php:326 +#: libraries/messages.inc.php:784 server_replication.php:326 msgid "Reset slave" msgstr "" -#: libraries/messages.inc.php:789 server_replication.php:308 +#: libraries/messages.inc.php:785 server_replication.php:308 msgid "See slave status table" msgstr "" -#: libraries/messages.inc.php:790 server_replication.php:336 +#: libraries/messages.inc.php:786 server_replication.php:336 msgid "Skip current error" msgstr "" -#: libraries/messages.inc.php:791 server_replication.php:340 +#: libraries/messages.inc.php:787 server_replication.php:340 msgid "errors." msgstr "" -#: libraries/messages.inc.php:792 server_replication.php:337 +#: libraries/messages.inc.php:788 server_replication.php:337 msgid "Skip next" msgstr "" -#: libraries/messages.inc.php:793 server_replication.php:248 +#: libraries/messages.inc.php:789 server_replication.php:248 msgid "Slave replication" msgstr "" -#: libraries/messages.inc.php:794 server_replication.php:293 +#: libraries/messages.inc.php:790 server_replication.php:293 msgid "Slave SQL Thread not running!" msgstr "" -#: libraries/messages.inc.php:795 server_replication.php:327 +#: libraries/messages.inc.php:791 server_replication.php:327 #, php-format msgid "SQL Thread %s only" msgstr "" -#: libraries/messages.inc.php:796 +#: libraries/messages.inc.php:792 #, php-format msgid "" "This MySQL server works as %s in replication process. For further " @@ -4818,167 +4818,167 @@ msgid "" "\"#replication\">replication section." msgstr "" -#: libraries/messages.inc.php:797 +#: libraries/messages.inc.php:793 msgid "Master status" msgstr "" -#: libraries/messages.inc.php:798 server_status.php:721 +#: libraries/messages.inc.php:794 server_status.php:721 msgid "Replication status" msgstr "" -#: libraries/messages.inc.php:799 +#: libraries/messages.inc.php:795 msgid "Slave status" msgstr "" -#: libraries/messages.inc.php:800 server_replication.php:311 +#: libraries/messages.inc.php:796 server_replication.php:311 msgid "Synchronize databases with master" msgstr "" -#: libraries/messages.inc.php:801 server_replication.php:71 +#: libraries/messages.inc.php:797 server_replication.php:71 msgid "Unable to change master" msgstr "" -#: libraries/messages.inc.php:802 server_replication.php:51 +#: libraries/messages.inc.php:798 server_replication.php:51 msgid "Unknown error" msgstr "" -#: libraries/messages.inc.php:803 main.php:163 pdf_pages.php:344 +#: libraries/messages.inc.php:799 main.php:163 pdf_pages.php:344 #: setup/lib/FormDisplay.tpl.php:216 tbl_change.php:1175 msgid "Reset" msgstr "" -#: libraries/messages.inc.php:804 server_privileges.php:591 +#: libraries/messages.inc.php:800 server_privileges.php:591 msgid "Resource limits" msgstr "" -#: libraries/messages.inc.php:805 tbl_change.php:1209 +#: libraries/messages.inc.php:801 tbl_change.php:1209 #, php-format msgid "Restart insertion with %s rows" msgstr "" -#: libraries/messages.inc.php:807 server_privileges.php:1578 +#: libraries/messages.inc.php:803 server_privileges.php:1578 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: libraries/messages.inc.php:808 server_privileges.php:1176 +#: libraries/messages.inc.php:804 server_privileges.php:1176 #, php-format msgid "You have revoked the privileges for %s" msgstr "" -#: libraries/messages.inc.php:809 server_privileges.php:1333 +#: libraries/messages.inc.php:805 server_privileges.php:1333 msgid "Revoke" msgstr "" -#: libraries/messages.inc.php:810 libraries/mysql_charsets.lib.php:280 +#: libraries/messages.inc.php:806 libraries/mysql_charsets.lib.php:280 msgid "Romanian" msgstr "" -#: libraries/messages.inc.php:813 tbl_printview.php:404 tbl_structure.php:786 +#: libraries/messages.inc.php:809 tbl_printview.php:404 tbl_structure.php:786 msgid "Row length" msgstr "" -#: libraries/messages.inc.php:815 tbl_printview.php:414 tbl_structure.php:794 +#: libraries/messages.inc.php:811 tbl_printview.php:414 tbl_structure.php:794 msgid " Row size " msgstr "" -#: libraries/messages.inc.php:821 tbl_printview.php:366 tbl_structure.php:726 +#: libraries/messages.inc.php:817 tbl_printview.php:366 tbl_structure.php:726 msgid "Row Statistics" msgstr "" -#: libraries/messages.inc.php:822 +#: libraries/messages.inc.php:818 #, php-format msgid "running on %s" msgstr "" -#: libraries/messages.inc.php:824 libraries/sql_query_form.lib.php:223 +#: libraries/messages.inc.php:820 libraries/sql_query_form.lib.php:223 #, php-format msgid "Run SQL query/queries on server %s" msgstr "" -#: libraries/messages.inc.php:825 libraries/sql_query_form.lib.php:240 +#: libraries/messages.inc.php:821 libraries/sql_query_form.lib.php:240 #: libraries/sql_query_form.lib.php:265 #, php-format msgid "Run SQL query/queries on database %s" msgstr "" -#: libraries/messages.inc.php:826 libraries/mysql_charsets.lib.php:337 +#: libraries/messages.inc.php:822 libraries/mysql_charsets.lib.php:337 msgid "Russian" msgstr "" -#: libraries/messages.inc.php:829 pmd_general.php:68 +#: libraries/messages.inc.php:825 pmd_general.php:68 msgid "Save position" msgstr "" -#: libraries/messages.inc.php:830 libraries/tbl_properties.inc.php:776 +#: libraries/messages.inc.php:826 libraries/tbl_properties.inc.php:776 #: pdf_pages.php:484 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:214 setup/lib/FormDisplay.tpl.php:215 #: tbl_change.php:1126 tbl_indexes.php:248 tbl_relation.php:566 msgid "Save" msgstr "" -#: libraries/messages.inc.php:831 +#: libraries/messages.inc.php:827 msgid "The scale factor is too small to fit the schema on one page" msgstr "" -#: libraries/messages.inc.php:843 main.php:298 +#: libraries/messages.inc.php:839 main.php:298 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" -#: libraries/messages.inc.php:844 navigation.php:353 navigation.php:516 +#: libraries/messages.inc.php:840 navigation.php:353 navigation.php:516 msgid "Please select a database" msgstr "" -#: libraries/messages.inc.php:846 server_binlog.php:120 +#: libraries/messages.inc.php:842 server_binlog.php:120 msgid "Select binary log to view" msgstr "" -#: libraries/messages.inc.php:847 tbl_select.php:270 +#: libraries/messages.inc.php:843 tbl_select.php:270 msgid "Select fields (at least one):" msgstr "" -#: libraries/messages.inc.php:851 pdf_pages.php:320 +#: libraries/messages.inc.php:847 pdf_pages.php:320 msgid "Select Tables" msgstr "" -#: libraries/messages.inc.php:853 server_status.php:404 +#: libraries/messages.inc.php:849 server_status.php:404 msgid "Sent" msgstr "" -#: libraries/messages.inc.php:857 libraries/select_server.lib.php:45 +#: libraries/messages.inc.php:853 libraries/select_server.lib.php:45 #: setup/frames/index.inc.php:97 setup/lib/messages.inc.php:115 msgid "Servers" msgstr "" -#: libraries/messages.inc.php:858 server_status.php:255 +#: libraries/messages.inc.php:854 server_status.php:255 msgid "Delayed inserts" msgstr "" -#: libraries/messages.inc.php:859 server_status.php:46 +#: libraries/messages.inc.php:855 server_status.php:46 msgid "Runtime Information" msgstr "" -#: libraries/messages.inc.php:860 server_status.php:350 +#: libraries/messages.inc.php:856 server_status.php:350 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "" -#: libraries/messages.inc.php:861 libraries/server_links.inc.php:53 +#: libraries/messages.inc.php:857 libraries/server_links.inc.php:53 #: server_engines.php:112 server_engines.php:116 server_status.php:304 #: test/theme.php:105 msgid "Variables" msgstr "" -#: libraries/messages.inc.php:862 server_status.php:383 +#: libraries/messages.inc.php:858 server_status.php:383 msgid "" "Server traffic: These tables show the network traffic statistics of " "this MySQL server since its startup." msgstr "" -#: libraries/messages.inc.php:863 server_variables.php:35 +#: libraries/messages.inc.php:859 server_variables.php:35 msgid "Server variables and settings" msgstr "" -#: libraries/messages.inc.php:865 main.php:290 +#: libraries/messages.inc.php:861 main.php:290 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -4986,17 +4986,17 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: libraries/messages.inc.php:866 +#: libraries/messages.inc.php:862 msgid "" "Cannot start session without errors, please check errors given in your PHP " "and/or webserver log file and configure your PHP installation properly." msgstr "" -#: libraries/messages.inc.php:867 server_variables.php:55 +#: libraries/messages.inc.php:863 server_variables.php:55 msgid "Session value" msgstr "" -#: libraries/messages.inc.php:868 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:864 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 " @@ -5004,55 +5004,55 @@ msgid "" "(for example '\\\\xyz' or 'a\\'b')." msgstr "" -#: libraries/messages.inc.php:876 server_binlog.php:192 server_binlog.php:195 +#: libraries/messages.inc.php:872 server_binlog.php:192 server_binlog.php:195 #: server_processlist.php:49 server_processlist.php:51 msgid "Show Full Queries" msgstr "" -#: libraries/messages.inc.php:878 pmd_general.php:64 +#: libraries/messages.inc.php:874 pmd_general.php:64 msgid "Show/Hide left menu" msgstr "" -#: libraries/messages.inc.php:880 sql.php:513 +#: libraries/messages.inc.php:876 sql.php:513 msgid "Showing as PHP code" msgstr "" -#: libraries/messages.inc.php:882 sql.php:516 tbl_replace.php:360 +#: libraries/messages.inc.php:878 sql.php:516 tbl_replace.php:360 msgid "Showing SQL query" msgstr "" -#: libraries/messages.inc.php:883 tbl_change.php:1132 +#: libraries/messages.inc.php:879 tbl_change.php:1132 msgid "Show insert query" msgstr "" -#: libraries/messages.inc.php:886 server_status.php:273 +#: libraries/messages.inc.php:882 server_status.php:273 msgid "Show open tables" msgstr "" -#: libraries/messages.inc.php:887 main.php:219 +#: libraries/messages.inc.php:883 main.php:219 msgid "Show PHP information" msgstr "" -#: libraries/messages.inc.php:889 server_status.php:278 +#: libraries/messages.inc.php:885 server_status.php:278 msgid "Show slave hosts" msgstr "" -#: libraries/messages.inc.php:890 server_status.php:284 +#: libraries/messages.inc.php:886 server_status.php:284 msgid "Show slave status" msgstr "" -#: libraries/messages.inc.php:891 +#: libraries/messages.inc.php:887 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/messages.inc.php:892 +#: libraries/messages.inc.php:888 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/messages.inc.php:893 +#: libraries/messages.inc.php:889 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -5060,78 +5060,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/messages.inc.php:894 +#: libraries/messages.inc.php:890 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/messages.inc.php:895 +#: libraries/messages.inc.php:891 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/messages.inc.php:896 +#: libraries/messages.inc.php:892 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/messages.inc.php:897 +#: libraries/messages.inc.php:893 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/messages.inc.php:898 +#: libraries/messages.inc.php:894 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/messages.inc.php:899 +#: libraries/messages.inc.php:895 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/messages.inc.php:900 +#: libraries/messages.inc.php:896 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/messages.inc.php:901 +#: libraries/messages.inc.php:897 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/messages.inc.php:902 +#: libraries/messages.inc.php:898 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/messages.inc.php:903 +#: libraries/messages.inc.php:899 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/messages.inc.php:904 +#: libraries/messages.inc.php:900 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: libraries/messages.inc.php:905 +#: libraries/messages.inc.php:901 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/messages.inc.php:906 +#: libraries/messages.inc.php:902 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: libraries/messages.inc.php:907 +#: libraries/messages.inc.php:903 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -5139,7 +5139,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/messages.inc.php:908 +#: libraries/messages.inc.php:904 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -5147,42 +5147,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/messages.inc.php:909 +#: libraries/messages.inc.php:905 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/messages.inc.php:910 +#: libraries/messages.inc.php:906 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/messages.inc.php:911 +#: libraries/messages.inc.php:907 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/messages.inc.php:912 +#: libraries/messages.inc.php:908 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/messages.inc.php:913 +#: libraries/messages.inc.php:909 msgid "The number of pages currently dirty." msgstr "" -#: libraries/messages.inc.php:914 +#: libraries/messages.inc.php:910 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/messages.inc.php:915 +#: libraries/messages.inc.php:911 msgid "The number of free pages." msgstr "" -#: libraries/messages.inc.php:916 +#: libraries/messages.inc.php:912 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/messages.inc.php:917 +#: libraries/messages.inc.php:913 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -5190,33 +5190,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/messages.inc.php:918 +#: libraries/messages.inc.php:914 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/messages.inc.php:919 +#: libraries/messages.inc.php:915 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/messages.inc.php:920 +#: libraries/messages.inc.php:916 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/messages.inc.php:921 +#: libraries/messages.inc.php:917 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/messages.inc.php:922 +#: libraries/messages.inc.php:918 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/messages.inc.php:923 +#: libraries/messages.inc.php:919 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -5225,218 +5225,218 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/messages.inc.php:924 +#: libraries/messages.inc.php:920 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/messages.inc.php:925 +#: libraries/messages.inc.php:921 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/messages.inc.php:926 +#: libraries/messages.inc.php:922 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/messages.inc.php:927 +#: libraries/messages.inc.php:923 msgid "The current number of pending reads." msgstr "" -#: libraries/messages.inc.php:928 +#: libraries/messages.inc.php:924 msgid "The current number of pending writes." msgstr "" -#: libraries/messages.inc.php:929 +#: libraries/messages.inc.php:925 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/messages.inc.php:930 +#: libraries/messages.inc.php:926 msgid "The total number of data reads." msgstr "" -#: libraries/messages.inc.php:931 +#: libraries/messages.inc.php:927 msgid "The total number of data writes." msgstr "" -#: libraries/messages.inc.php:932 +#: libraries/messages.inc.php:928 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/messages.inc.php:933 +#: libraries/messages.inc.php:929 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/messages.inc.php:934 +#: libraries/messages.inc.php:930 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/messages.inc.php:935 +#: libraries/messages.inc.php:931 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/messages.inc.php:936 +#: libraries/messages.inc.php:932 msgid "The number of log write requests." msgstr "" -#: libraries/messages.inc.php:937 +#: libraries/messages.inc.php:933 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/messages.inc.php:938 +#: libraries/messages.inc.php:934 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/messages.inc.php:939 +#: libraries/messages.inc.php:935 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/messages.inc.php:940 +#: libraries/messages.inc.php:936 msgid "Pending log file writes." msgstr "" -#: libraries/messages.inc.php:941 +#: libraries/messages.inc.php:937 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/messages.inc.php:942 +#: libraries/messages.inc.php:938 msgid "The number of pages created." msgstr "" -#: libraries/messages.inc.php:943 +#: libraries/messages.inc.php:939 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: libraries/messages.inc.php:944 +#: libraries/messages.inc.php:940 msgid "The number of pages read." msgstr "" -#: libraries/messages.inc.php:945 +#: libraries/messages.inc.php:941 msgid "The number of pages written." msgstr "" -#: libraries/messages.inc.php:946 +#: libraries/messages.inc.php:942 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/messages.inc.php:947 +#: libraries/messages.inc.php:943 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/messages.inc.php:948 +#: libraries/messages.inc.php:944 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/messages.inc.php:949 +#: libraries/messages.inc.php:945 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/messages.inc.php:950 +#: libraries/messages.inc.php:946 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/messages.inc.php:951 +#: libraries/messages.inc.php:947 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/messages.inc.php:952 +#: libraries/messages.inc.php:948 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/messages.inc.php:953 +#: libraries/messages.inc.php:949 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/messages.inc.php:954 +#: libraries/messages.inc.php:950 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/messages.inc.php:955 +#: libraries/messages.inc.php:951 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/messages.inc.php:956 +#: libraries/messages.inc.php:952 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: libraries/messages.inc.php:957 +#: libraries/messages.inc.php:953 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/messages.inc.php:958 +#: libraries/messages.inc.php:954 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/messages.inc.php:959 +#: libraries/messages.inc.php:955 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/messages.inc.php:960 +#: libraries/messages.inc.php:956 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/messages.inc.php:961 +#: libraries/messages.inc.php:957 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/messages.inc.php:962 +#: libraries/messages.inc.php:958 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/messages.inc.php:963 +#: libraries/messages.inc.php:959 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/messages.inc.php:964 +#: libraries/messages.inc.php:960 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/messages.inc.php:965 +#: libraries/messages.inc.php:961 msgid "The number of files that are open." msgstr "" -#: libraries/messages.inc.php:966 +#: libraries/messages.inc.php:962 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/messages.inc.php:967 +#: libraries/messages.inc.php:963 msgid "The number of tables that are open." msgstr "" -#: libraries/messages.inc.php:968 +#: libraries/messages.inc.php:964 msgid "The number of free memory blocks in query cache." msgstr "" -#: libraries/messages.inc.php:969 +#: libraries/messages.inc.php:965 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/messages.inc.php:970 +#: libraries/messages.inc.php:966 msgid "The number of cache hits." msgstr "" -#: libraries/messages.inc.php:971 +#: libraries/messages.inc.php:967 msgid "The number of queries added to the cache." msgstr "" -#: libraries/messages.inc.php:972 +#: libraries/messages.inc.php:968 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -5444,104 +5444,104 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/messages.inc.php:973 +#: libraries/messages.inc.php:969 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/messages.inc.php:974 +#: libraries/messages.inc.php:970 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/messages.inc.php:975 +#: libraries/messages.inc.php:971 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/messages.inc.php:976 +#: libraries/messages.inc.php:972 msgctxt "$strShowStatusReset" msgid "Reset" msgstr "" -#: libraries/messages.inc.php:977 +#: libraries/messages.inc.php:973 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/messages.inc.php:978 +#: libraries/messages.inc.php:974 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: libraries/messages.inc.php:979 +#: libraries/messages.inc.php:975 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/messages.inc.php:980 +#: libraries/messages.inc.php:976 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: libraries/messages.inc.php:981 +#: libraries/messages.inc.php:977 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/messages.inc.php:982 +#: libraries/messages.inc.php:978 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/messages.inc.php:983 +#: libraries/messages.inc.php:979 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/messages.inc.php:984 +#: libraries/messages.inc.php:980 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/messages.inc.php:985 +#: libraries/messages.inc.php:981 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/messages.inc.php:986 +#: libraries/messages.inc.php:982 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/messages.inc.php:987 +#: libraries/messages.inc.php:983 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/messages.inc.php:988 +#: libraries/messages.inc.php:984 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/messages.inc.php:989 +#: libraries/messages.inc.php:985 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/messages.inc.php:990 +#: libraries/messages.inc.php:986 msgid "The number of sorted rows." msgstr "" -#: libraries/messages.inc.php:991 +#: libraries/messages.inc.php:987 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/messages.inc.php:992 +#: libraries/messages.inc.php:988 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/messages.inc.php:993 +#: libraries/messages.inc.php:989 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -5549,18 +5549,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/messages.inc.php:994 +#: libraries/messages.inc.php:990 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/messages.inc.php:995 +#: libraries/messages.inc.php:991 msgid "The number of currently open connections." msgstr "" -#: libraries/messages.inc.php:996 +#: libraries/messages.inc.php:992 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -5568,74 +5568,74 @@ msgid "" "implementation.)" msgstr "" -#: libraries/messages.inc.php:997 +#: libraries/messages.inc.php:993 msgid "The number of threads that are not sleeping." msgstr "" -#: libraries/messages.inc.php:999 tbl_printview.php:75 +#: libraries/messages.inc.php:995 tbl_printview.php:75 msgid "Show tables" msgstr "" -#: libraries/messages.inc.php:1000 libraries/sql_query_form.lib.php:396 +#: libraries/messages.inc.php:996 libraries/sql_query_form.lib.php:396 msgid " Show this query here again " msgstr "" -#: libraries/messages.inc.php:1001 libraries/mysql_charsets.lib.php:217 +#: libraries/messages.inc.php:997 libraries/mysql_charsets.lib.php:217 #: libraries/mysql_charsets.lib.php:342 msgid "Simplified Chinese" msgstr "" -#: libraries/messages.inc.php:1002 tbl_operations.php:258 +#: libraries/messages.inc.php:998 tbl_operations.php:258 msgid "(singly)" msgstr "" -#: libraries/messages.inc.php:1005 libraries/replication_gui.lib.php:52 +#: libraries/messages.inc.php:1001 libraries/replication_gui.lib.php:52 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" msgstr "" -#: libraries/messages.inc.php:1006 libraries/mysql_charsets.lib.php:283 +#: libraries/messages.inc.php:1002 libraries/mysql_charsets.lib.php:283 msgid "Slovak" msgstr "" -#: libraries/messages.inc.php:1007 libraries/mysql_charsets.lib.php:286 +#: libraries/messages.inc.php:1003 libraries/mysql_charsets.lib.php:286 msgid "Slovenian" msgstr "" -#: libraries/messages.inc.php:1008 pmd_general.php:95 +#: libraries/messages.inc.php:1004 pmd_general.php:95 msgid "Small/Big All" msgstr "" -#: libraries/messages.inc.php:1009 pmd_general.php:91 +#: libraries/messages.inc.php:1005 pmd_general.php:91 msgid "Snap to grid" msgstr "" -#: libraries/messages.inc.php:1011 server_synchronize.php:1167 +#: libraries/messages.inc.php:1007 server_synchronize.php:1167 msgid "Socket" msgstr "" -#: libraries/messages.inc.php:1013 server_status.php:259 +#: libraries/messages.inc.php:1009 server_status.php:259 msgid "Sorting" msgstr "" -#: libraries/messages.inc.php:1015 tbl_printview.php:310 tbl_structure.php:657 +#: libraries/messages.inc.php:1011 tbl_printview.php:310 tbl_structure.php:657 msgid "Space usage" msgstr "" -#: libraries/messages.inc.php:1016 libraries/mysql_charsets.lib.php:289 +#: libraries/messages.inc.php:1012 libraries/mysql_charsets.lib.php:289 msgid "Spanish" msgstr "" -#: libraries/messages.inc.php:1019 +#: libraries/messages.inc.php:1015 msgid "Export type" msgstr "" -#: libraries/messages.inc.php:1020 +#: libraries/messages.inc.php:1016 msgid "Export time in UTC" msgstr "" -#: libraries/messages.inc.php:1021 libraries/sqlparser.lib.php:173 +#: libraries/messages.inc.php:1017 libraries/sqlparser.lib.php:173 msgid "" "There is a chance that you may have found a bug in the SQL parser. Please " "examine your query closely, and check that the quotes are correct and not " @@ -5648,419 +5648,419 @@ msgid "" "and submit a bug report with the data chunk in the CUT section below:" msgstr "" -#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:137 +#: libraries/messages.inc.php:1018 libraries/sqlparser.lib.php:137 msgid "" "There seems to be an error in your SQL query. The MySQL server error output " "below, if there is any, may also help you in diagnosing the problem" msgstr "" -#: libraries/messages.inc.php:1026 libraries/sqlparser.lib.php:495 +#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:495 msgid "Invalid Identifer" msgstr "" -#: libraries/messages.inc.php:1027 libraries/sqlparser.lib.php:344 +#: libraries/messages.inc.php:1023 libraries/sqlparser.lib.php:344 msgid "Unclosed quote" msgstr "" -#: libraries/messages.inc.php:1028 libraries/sqlparser.lib.php:612 +#: libraries/messages.inc.php:1024 libraries/sqlparser.lib.php:612 msgid "Unknown Punctuation String" msgstr "" -#: libraries/messages.inc.php:1030 server_replication.php:327 +#: libraries/messages.inc.php:1026 server_replication.php:327 #: server_replication.php:328 msgid "Start" msgstr "" -#: libraries/messages.inc.php:1033 tbl_printview.php:369 tbl_structure.php:729 +#: libraries/messages.inc.php:1029 tbl_printview.php:369 tbl_structure.php:729 msgid "Statements" msgstr "" -#: libraries/messages.inc.php:1034 tbl_printview.php:380 tbl_structure.php:741 +#: libraries/messages.inc.php:1030 tbl_printview.php:380 tbl_structure.php:741 msgid "static" msgstr "" -#: libraries/messages.inc.php:1035 server_status.php:388 +#: libraries/messages.inc.php:1031 server_status.php:388 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: libraries/messages.inc.php:1038 server_replication.php:327 +#: libraries/messages.inc.php:1034 server_replication.php:327 #: server_replication.php:328 msgid "Stop" msgstr "" -#: libraries/messages.inc.php:1039 server_engines.php:49 +#: libraries/messages.inc.php:1035 server_engines.php:49 msgid "Storage Engines" msgstr "" -#: libraries/messages.inc.php:1040 libraries/tbl_properties.inc.php:726 +#: libraries/messages.inc.php:1036 libraries/tbl_properties.inc.php:726 #: server_engines.php:58 tbl_operations.php:353 msgid "Storage Engine" msgstr "" -#: libraries/messages.inc.php:1042 +#: libraries/messages.inc.php:1038 msgid "CSV for MS Excel" msgstr "" -#: libraries/messages.inc.php:1044 tbl_structure.php:516 tbl_structure.php:518 +#: libraries/messages.inc.php:1040 tbl_structure.php:516 tbl_structure.php:518 msgid "Propose table structure" msgstr "" -#: libraries/messages.inc.php:1045 server_synchronize.php:424 +#: libraries/messages.inc.php:1041 server_synchronize.php:424 #: server_synchronize.php:867 msgid "Structure Difference" msgstr "" -#: libraries/messages.inc.php:1049 server_synchronize.php:265 +#: libraries/messages.inc.php:1045 server_synchronize.php:265 msgid "Structure Synchronization" msgstr "" -#: libraries/messages.inc.php:1050 libraries/sql_query_form.lib.php:462 +#: libraries/messages.inc.php:1046 libraries/sql_query_form.lib.php:462 msgid "Submit" msgstr "" -#: libraries/messages.inc.php:1052 main.php:358 +#: libraries/messages.inc.php:1048 main.php:358 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " "issues." msgstr "" -#: libraries/messages.inc.php:1054 libraries/mysql_charsets.lib.php:295 +#: libraries/messages.inc.php:1050 libraries/mysql_charsets.lib.php:295 #: libraries/mysql_charsets.lib.php:392 msgid "Swedish" msgstr "" -#: libraries/messages.inc.php:1060 tbl_operations.php:556 +#: libraries/messages.inc.php:1056 tbl_operations.php:556 msgid "Switch to copied table" msgstr "" -#: libraries/messages.inc.php:1061 server_synchronize.php:1213 +#: libraries/messages.inc.php:1057 server_synchronize.php:1213 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." msgstr "" -#: libraries/messages.inc.php:1062 server_synchronize.php:451 +#: libraries/messages.inc.php:1058 server_synchronize.php:451 #: server_synchronize.php:896 msgid "Synchronize Databases" msgstr "" -#: libraries/messages.inc.php:1063 libraries/server_links.inc.php:92 +#: libraries/messages.inc.php:1059 libraries/server_links.inc.php:92 #: server_synchronize.php:1092 server_synchronize.php:1100 msgid "Synchronize" msgstr "" -#: libraries/messages.inc.php:1065 server_synchronize.php:430 +#: libraries/messages.inc.php:1061 server_synchronize.php:430 #: server_synchronize.php:873 msgid "Add column(s)" msgstr "" -#: libraries/messages.inc.php:1066 tbl_create.php:62 +#: libraries/messages.inc.php:1062 tbl_create.php:62 #, php-format msgid "Table %s already exists!" msgstr "" -#: libraries/messages.inc.php:1067 server_synchronize.php:432 +#: libraries/messages.inc.php:1063 server_synchronize.php:432 #: server_synchronize.php:875 msgid "Alter column(s)" msgstr "" -#: libraries/messages.inc.php:1068 tbl_addfield.php:189 tbl_alter.php:103 +#: libraries/messages.inc.php:1064 tbl_addfield.php:189 tbl_alter.php:103 #: tbl_indexes.php:98 #, php-format msgid "Table %1$s has been altered successfully" msgstr "" -#: libraries/messages.inc.php:1069 server_synchronize.php:434 +#: libraries/messages.inc.php:1065 server_synchronize.php:434 #: server_synchronize.php:877 msgid "Apply index(s)" msgstr "" -#: libraries/messages.inc.php:1071 server_synchronize.php:446 +#: libraries/messages.inc.php:1067 server_synchronize.php:446 #: server_synchronize.php:890 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: libraries/messages.inc.php:1072 tbl_move_copy.php:82 +#: libraries/messages.inc.php:1068 tbl_move_copy.php:82 msgid "The table name is empty!" msgstr "" -#: libraries/messages.inc.php:1073 tbl_create.php:249 +#: libraries/messages.inc.php:1069 tbl_create.php:249 #, php-format msgid "Table %1$s has been created." msgstr "" -#: libraries/messages.inc.php:1076 tbl_operations.php:628 +#: libraries/messages.inc.php:1072 tbl_operations.php:628 #, php-format msgid "Table %s has been flushed" msgstr "" -#: libraries/messages.inc.php:1077 server_synchronize.php:436 +#: libraries/messages.inc.php:1073 server_synchronize.php:436 #: server_synchronize.php:879 msgid "Insert row(s)" msgstr "" -#: libraries/messages.inc.php:1078 libraries/tbl_links.inc.php:107 +#: libraries/messages.inc.php:1074 libraries/tbl_links.inc.php:107 #: libraries/tbl_links.inc.php:140 libraries/tbl_links.inc.php:141 msgid "Table seems to be empty!" msgstr "" -#: libraries/messages.inc.php:1079 tbl_operations.php:568 +#: libraries/messages.inc.php:1075 tbl_operations.php:568 msgid "Table maintenance" msgstr "" -#: libraries/messages.inc.php:1080 libraries/tbl_properties.inc.php:618 +#: libraries/messages.inc.php:1076 libraries/tbl_properties.inc.php:618 #: server_synchronize.php:428 server_synchronize.php:871 msgid "Table name" msgstr "" -#: libraries/messages.inc.php:1081 pdf_schema.php:1116 +#: libraries/messages.inc.php:1077 pdf_schema.php:1116 msgid "Table of contents" msgstr "" -#: libraries/messages.inc.php:1082 tbl_operations.php:334 +#: libraries/messages.inc.php:1078 tbl_operations.php:334 msgid "Table options" msgstr "" -#: libraries/messages.inc.php:1083 server_synchronize.php:431 +#: libraries/messages.inc.php:1079 server_synchronize.php:431 #: server_synchronize.php:874 msgid "Remove column(s)" msgstr "" -#: libraries/messages.inc.php:1084 server_synchronize.php:433 +#: libraries/messages.inc.php:1080 server_synchronize.php:433 #: server_synchronize.php:876 msgid "Remove index(s)" msgstr "" -#: libraries/messages.inc.php:1088 server_synchronize.php:435 +#: libraries/messages.inc.php:1084 server_synchronize.php:435 #: server_synchronize.php:878 msgid "Update row(s)" msgstr "" -#: libraries/messages.inc.php:1090 server_synchronize.php:942 +#: libraries/messages.inc.php:1086 server_synchronize.php:942 msgid "Target database has been synchronized with source database" msgstr "" -#: libraries/messages.inc.php:1091 server_privileges.php:392 +#: libraries/messages.inc.php:1087 server_privileges.php:392 #: server_privileges.php:527 server_privileges.php:1679 #: server_privileges.php:1685 msgid "Table-specific privileges" msgstr "" -#: libraries/messages.inc.php:1092 server_status.php:254 +#: libraries/messages.inc.php:1088 server_status.php:254 msgid "Temporary data" msgstr "" -#: libraries/messages.inc.php:1093 tbl_change.php:728 +#: libraries/messages.inc.php:1089 tbl_change.php:728 msgid " Because of its length,
this field might not be editable " msgstr "" -#: libraries/messages.inc.php:1094 +#: libraries/messages.inc.php:1090 msgid "Texy! text" msgstr "" -#: libraries/messages.inc.php:1095 libraries/mysql_charsets.lib.php:298 +#: libraries/messages.inc.php:1091 libraries/mysql_charsets.lib.php:298 #: libraries/mysql_charsets.lib.php:395 msgid "Thai" msgstr "" -#: libraries/messages.inc.php:1102 libraries/replication_gui.lib.php:308 +#: libraries/messages.inc.php:1098 libraries/replication_gui.lib.php:308 #: server_privileges.php:734 msgid "This Host" msgstr "" -#: libraries/messages.inc.php:1103 server_status.php:252 +#: libraries/messages.inc.php:1099 server_status.php:252 msgid "Threads" msgstr "" -#: libraries/messages.inc.php:1104 server_processlist.php:22 +#: libraries/messages.inc.php:1100 server_processlist.php:22 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: libraries/messages.inc.php:1106 +#: libraries/messages.inc.php:1102 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." msgstr "" -#: libraries/messages.inc.php:1109 pmd_pdf.php:94 +#: libraries/messages.inc.php:1105 pmd_pdf.php:94 msgid "to/from page" msgstr "" -#: libraries/messages.inc.php:1110 pdf_pages.php:343 +#: libraries/messages.inc.php:1106 pdf_pages.php:343 msgid "Toggle scratchboard" msgstr "" -#: libraries/messages.inc.php:1111 pmd_general.php:99 +#: libraries/messages.inc.php:1107 pmd_general.php:99 msgid "Toggle small/big" msgstr "" -#: libraries/messages.inc.php:1112 pmd_help.php:27 +#: libraries/messages.inc.php:1108 pmd_help.php:27 msgid "To select relation, click :" msgstr "" -#: libraries/messages.inc.php:1115 libraries/tbl_links.inc.php:149 +#: libraries/messages.inc.php:1111 libraries/tbl_links.inc.php:149 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" -#: libraries/messages.inc.php:1116 tbl_tracking.php:655 +#: libraries/messages.inc.php:1112 tbl_tracking.php:655 msgid "Activate now" msgstr "" -#: libraries/messages.inc.php:1117 tbl_tracking.php:653 +#: libraries/messages.inc.php:1113 tbl_tracking.php:653 #, php-format msgid "Activate tracking for %s.%s" msgstr "" -#: libraries/messages.inc.php:1118 tbl_tracking.php:221 +#: libraries/messages.inc.php:1114 tbl_tracking.php:221 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/messages.inc.php:1119 tbl_tracking.php:688 +#: libraries/messages.inc.php:1115 tbl_tracking.php:688 msgid "Create version" msgstr "" -#: libraries/messages.inc.php:1120 tbl_tracking.php:668 +#: libraries/messages.inc.php:1116 tbl_tracking.php:668 #, php-format msgid "Create version %s of %s.%s" msgstr "" -#: libraries/messages.inc.php:1122 tbl_tracking.php:412 +#: libraries/messages.inc.php:1118 tbl_tracking.php:412 msgid "Data definition statement" msgstr "" -#: libraries/messages.inc.php:1123 tbl_tracking.php:463 +#: libraries/messages.inc.php:1119 tbl_tracking.php:463 msgid "Data manipulation statement" msgstr "" -#: libraries/messages.inc.php:1124 tbl_tracking.php:410 tbl_tracking.php:461 +#: libraries/messages.inc.php:1120 tbl_tracking.php:410 tbl_tracking.php:461 msgid "Date" msgstr "" -#: libraries/messages.inc.php:1125 tbl_tracking.php:642 +#: libraries/messages.inc.php:1121 tbl_tracking.php:642 msgid "Deactivate now" msgstr "" -#: libraries/messages.inc.php:1126 tbl_tracking.php:640 +#: libraries/messages.inc.php:1122 tbl_tracking.php:640 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "" -#: libraries/messages.inc.php:1127 tbl_tracking.php:521 +#: libraries/messages.inc.php:1123 tbl_tracking.php:521 #, php-format msgid "Export as %s" msgstr "" -#: libraries/messages.inc.php:1130 tbl_tracking.php:251 tbl_tracking.php:379 +#: libraries/messages.inc.php:1126 tbl_tracking.php:251 tbl_tracking.php:379 msgid "Close" msgstr "" -#: libraries/messages.inc.php:1131 tbl_tracking.php:114 +#: libraries/messages.inc.php:1127 tbl_tracking.php:114 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/messages.inc.php:1133 tbl_tracking.php:397 tbl_tracking.php:504 +#: libraries/messages.inc.php:1129 tbl_tracking.php:397 tbl_tracking.php:504 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "" -#: libraries/messages.inc.php:1134 tbl_tracking.php:561 +#: libraries/messages.inc.php:1130 tbl_tracking.php:561 msgid "Show versions" msgstr "" -#: libraries/messages.inc.php:1135 tbl_tracking.php:507 +#: libraries/messages.inc.php:1131 tbl_tracking.php:507 msgid "SQL dump (file download)" msgstr "" -#: libraries/messages.inc.php:1136 tbl_tracking.php:508 +#: libraries/messages.inc.php:1132 tbl_tracking.php:508 msgid "SQL dump" msgstr "" -#: libraries/messages.inc.php:1137 tbl_tracking.php:213 +#: libraries/messages.inc.php:1133 tbl_tracking.php:213 msgid "SQL statements executed." msgstr "" -#: libraries/messages.inc.php:1138 +#: libraries/messages.inc.php:1134 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/messages.inc.php:1139 tbl_tracking.php:509 +#: libraries/messages.inc.php:1135 tbl_tracking.php:509 msgid "SQL execution" msgstr "" -#: libraries/messages.inc.php:1140 tbl_tracking.php:230 +#: libraries/messages.inc.php:1136 tbl_tracking.php:230 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/messages.inc.php:1141 tbl_tracking.php:381 +#: libraries/messages.inc.php:1137 tbl_tracking.php:381 msgid "Tracking statements" msgstr "" -#: libraries/messages.inc.php:1148 tbl_tracking.php:593 +#: libraries/messages.inc.php:1144 tbl_tracking.php:593 msgid "Version" msgstr "" -#: libraries/messages.inc.php:1149 tbl_tracking.php:672 +#: libraries/messages.inc.php:1145 tbl_tracking.php:672 msgid "Track these data definition statements:" msgstr "" -#: libraries/messages.inc.php:1150 tbl_tracking.php:680 +#: libraries/messages.inc.php:1146 tbl_tracking.php:680 msgid "Track these data manipulation statements:" msgstr "" -#: libraries/messages.inc.php:1155 tbl_tracking.php:411 tbl_tracking.php:462 +#: libraries/messages.inc.php:1151 tbl_tracking.php:411 tbl_tracking.php:462 msgid "Username" msgstr "" -#: libraries/messages.inc.php:1156 tbl_tracking.php:203 +#: libraries/messages.inc.php:1152 tbl_tracking.php:203 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "" -#: libraries/messages.inc.php:1157 tbl_tracking.php:187 +#: libraries/messages.inc.php:1153 tbl_tracking.php:187 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "" -#: libraries/messages.inc.php:1158 tbl_tracking.php:195 +#: libraries/messages.inc.php:1154 tbl_tracking.php:195 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "" -#: libraries/messages.inc.php:1159 tbl_tracking.php:262 +#: libraries/messages.inc.php:1155 tbl_tracking.php:262 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/messages.inc.php:1161 tbl_tracking.php:220 +#: libraries/messages.inc.php:1157 tbl_tracking.php:220 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/messages.inc.php:1162 libraries/mysql_charsets.lib.php:219 +#: libraries/messages.inc.php:1158 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:362 msgid "Traditional Chinese" msgstr "" -#: libraries/messages.inc.php:1163 libraries/mysql_charsets.lib.php:292 +#: libraries/messages.inc.php:1159 libraries/mysql_charsets.lib.php:292 msgid "Traditional Spanish" msgstr "" -#: libraries/messages.inc.php:1164 server_status.php:388 +#: libraries/messages.inc.php:1160 server_status.php:388 msgid "Traffic" msgstr "" -#: libraries/messages.inc.php:1165 server_status.php:261 +#: libraries/messages.inc.php:1161 server_status.php:261 msgid "Transaction coordinator" msgstr "" -#: libraries/messages.inc.php:1166 +#: libraries/messages.inc.php:1162 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 " @@ -6068,27 +6068,27 @@ msgid "" "need to set the first option to the empty string." msgstr "" -#: libraries/messages.inc.php:1167 +#: libraries/messages.inc.php:1163 msgid "" "Displays hexadecimal representation of data. Optional first parameter " "specifies how often space will be added (defaults to 2 nibbles)." msgstr "" -#: libraries/messages.inc.php:1168 +#: libraries/messages.inc.php:1164 msgid "" "Displays a clickable thumbnail. The options are the maximum width and height " "in pixels. The original aspect ratio is preserved." msgstr "" -#: libraries/messages.inc.php:1169 +#: libraries/messages.inc.php:1165 msgid "Displays a link to download this image." msgstr "" -#: libraries/messages.inc.php:1170 +#: libraries/messages.inc.php:1166 msgid "See image/jpeg: inline" msgstr "" -#: libraries/messages.inc.php:1171 +#: libraries/messages.inc.php:1167 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 " @@ -6100,7 +6100,7 @@ msgid "" "gmdate() function." msgstr "" -#: libraries/messages.inc.php:1172 +#: libraries/messages.inc.php:1168 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 " @@ -6114,31 +6114,31 @@ msgid "" "(Default 1)." msgstr "" -#: libraries/messages.inc.php:1173 +#: libraries/messages.inc.php:1169 msgid "" "Displays the contents of the field as-is, without running it through " "htmlspecialchars(). That is, the field is assumed to contain valid HTML." msgstr "" -#: libraries/messages.inc.php:1174 +#: libraries/messages.inc.php:1170 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." msgstr "" -#: libraries/messages.inc.php:1175 +#: libraries/messages.inc.php:1171 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." msgstr "" -#: libraries/messages.inc.php:1176 +#: libraries/messages.inc.php:1172 msgid "Formats text as SQL query with syntax highlighting." msgstr "" -#: libraries/messages.inc.php:1177 +#: libraries/messages.inc.php:1173 msgid "" "Displays a part of a string. The first option is the number of characters to " "skip from the beginning of the string (Default 0). The second option is the " @@ -6147,69 +6147,69 @@ msgid "" "(Default: \"...\")." msgstr "" -#: libraries/messages.inc.php:1179 server_binlog.php:183 server_binlog.php:186 +#: libraries/messages.inc.php:1175 server_binlog.php:183 server_binlog.php:186 #: server_processlist.php:49 server_processlist.php:51 msgid "Truncate Shown Queries" msgstr "" -#: libraries/messages.inc.php:1180 libraries/mysql_charsets.lib.php:301 +#: libraries/messages.inc.php:1176 libraries/mysql_charsets.lib.php:301 #: libraries/mysql_charsets.lib.php:389 msgid "Turkish" msgstr "" -#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:304 +#: libraries/messages.inc.php:1179 libraries/mysql_charsets.lib.php:304 #: libraries/mysql_charsets.lib.php:386 msgid "Ukrainian" msgstr "" -#: libraries/messages.inc.php:1185 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:1181 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 msgid "Unicode" msgstr "" -#: libraries/messages.inc.php:1187 libraries/mysql_charsets.lib.php:398 +#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:398 #: libraries/mysql_charsets.lib.php:405 msgid "unknown" msgstr "" -#: libraries/messages.inc.php:1190 server_privileges.php:1152 +#: libraries/messages.inc.php:1186 server_privileges.php:1152 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: libraries/messages.inc.php:1191 user_password.php:112 +#: libraries/messages.inc.php:1187 user_password.php:112 msgid "The profile has been updated." msgstr "" -#: libraries/messages.inc.php:1193 libraries/relation.lib.php:138 +#: libraries/messages.inc.php:1189 libraries/relation.lib.php:138 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" -#: libraries/messages.inc.php:1194 +#: libraries/messages.inc.php:1190 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/messages.inc.php:1204 tbl_printview.php:314 tbl_structure.php:661 +#: libraries/messages.inc.php:1200 tbl_printview.php:314 tbl_structure.php:661 msgid "Usage" msgstr "" -#: libraries/messages.inc.php:1205 +#: libraries/messages.inc.php:1201 msgid "Enclose table and field names with backquotes" msgstr "" -#: libraries/messages.inc.php:1206 libraries/replication_gui.lib.php:314 +#: libraries/messages.inc.php:1202 libraries/replication_gui.lib.php:314 #: server_privileges.php:740 msgid "Use Host Table" msgstr "" -#: libraries/messages.inc.php:1207 server_privileges.php:848 +#: libraries/messages.inc.php:1203 server_privileges.php:848 #, php-format msgid "The user %s already exists!" msgstr "" -#: libraries/messages.inc.php:1209 libraries/replication_gui.lib.php:55 +#: libraries/messages.inc.php:1205 libraries/replication_gui.lib.php:55 #: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245 #: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255 #: server_privileges.php:672 server_privileges.php:675 @@ -6217,35 +6217,35 @@ msgstr "" msgid "User name" msgstr "" -#: libraries/messages.inc.php:1210 server_privileges.php:1645 +#: libraries/messages.inc.php:1206 server_privileges.php:1645 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/messages.inc.php:1211 server_privileges.php:1365 +#: libraries/messages.inc.php:1207 server_privileges.php:1365 msgid "User overview" msgstr "" -#: libraries/messages.inc.php:1212 server_privileges.php:1261 +#: libraries/messages.inc.php:1208 server_privileges.php:1261 msgid "The selected users have been deleted successfully." msgstr "" -#: libraries/messages.inc.php:1213 server_privileges.php:2026 +#: libraries/messages.inc.php:1209 server_privileges.php:2026 #, php-format msgid "Users having access to "%s"" msgstr "" -#: libraries/messages.inc.php:1214 main.php:189 server_privileges.php:1350 +#: libraries/messages.inc.php:1210 main.php:189 server_privileges.php:1350 #: server_privileges.php:1497 server_privileges.php:1611 #: server_privileges.php:2029 server_processlist.php:54 msgid "User" msgstr "" -#: libraries/messages.inc.php:1215 tbl_change.php:1171 +#: libraries/messages.inc.php:1211 tbl_change.php:1171 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/messages.inc.php:1217 libraries/replication_gui.lib.php:251 +#: libraries/messages.inc.php:1213 libraries/replication_gui.lib.php:251 #: libraries/replication_gui.lib.php:319 libraries/replication_gui.lib.php:342 #: server_privileges.php:678 server_privileges.php:745 #: server_privileges.php:769 server_privileges.php:1889 @@ -6253,91 +6253,91 @@ msgstr "" msgid "Use text field" msgstr "" -#: libraries/messages.inc.php:1221 libraries/sqlvalidator.lib.php:68 +#: libraries/messages.inc.php:1217 libraries/sqlvalidator.lib.php:68 #, php-format msgid "" "The SQL validator could not be initialized. Please check if you have " "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" -#: libraries/messages.inc.php:1222 libraries/replication_gui.lib.php:111 +#: libraries/messages.inc.php:1218 libraries/replication_gui.lib.php:111 #: server_status.php:627 tbl_change.php:324 tbl_printview.php:370 #: tbl_select.php:139 tbl_structure.php:730 msgid "Value" msgstr "" -#: libraries/messages.inc.php:1223 libraries/replication_gui.lib.php:110 +#: libraries/messages.inc.php:1219 libraries/replication_gui.lib.php:110 #: libraries/sql_query_form.lib.php:445 server_status.php:626 #: server_variables.php:52 msgid "Variable" msgstr "" -#: libraries/messages.inc.php:1225 server_export.php:21 +#: libraries/messages.inc.php:1221 server_export.php:21 msgid "View dump (schema) of databases" msgstr "" -#: libraries/messages.inc.php:1227 tbl_export.php:23 +#: libraries/messages.inc.php:1223 tbl_export.php:23 msgid "View dump (schema) of table" msgstr "" -#: libraries/messages.inc.php:1231 view_create.php:142 +#: libraries/messages.inc.php:1227 view_create.php:142 msgid "VIEW name" msgstr "" -#: libraries/messages.inc.php:1237 main.php:205 +#: libraries/messages.inc.php:1233 main.php:205 msgid "Web server" msgstr "" -#: libraries/messages.inc.php:1239 libraries/mysql_charsets.lib.php:277 +#: libraries/messages.inc.php:1235 libraries/mysql_charsets.lib.php:277 #: libraries/mysql_charsets.lib.php:325 msgid "West European" msgstr "" -#: libraries/messages.inc.php:1240 main.php:230 +#: libraries/messages.inc.php:1236 main.php:230 msgid "Wiki" msgstr "" -#: libraries/messages.inc.php:1241 server_privileges.php:2138 +#: libraries/messages.inc.php:1237 server_privileges.php:2138 msgid "wildcard" msgstr "" -#: libraries/messages.inc.php:1248 +#: libraries/messages.inc.php:1244 msgid "Export contents" msgstr "" -#: libraries/messages.inc.php:1249 +#: libraries/messages.inc.php:1245 msgid "Export functions" msgstr "" -#: libraries/messages.inc.php:1250 +#: libraries/messages.inc.php:1246 msgid "Export procedures" msgstr "" -#: libraries/messages.inc.php:1251 +#: libraries/messages.inc.php:1247 msgid "Export Structure Schemas (recommended)" msgstr "" -#: libraries/messages.inc.php:1252 +#: libraries/messages.inc.php:1248 msgid "Export tables" msgstr "" -#: libraries/messages.inc.php:1253 +#: libraries/messages.inc.php:1249 msgid "Export triggers" msgstr "" -#: libraries/messages.inc.php:1254 +#: libraries/messages.inc.php:1250 msgid "Export views" msgstr "" -#: libraries/messages.inc.php:1255 +#: libraries/messages.inc.php:1251 msgid "XML" msgstr "" -#: libraries/messages.inc.php:1259 server_privileges.php:592 +#: libraries/messages.inc.php:1255 server_privileges.php:592 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" -#: libraries/messages.inc.php:1260 +#: libraries/messages.inc.php:1256 msgid "\"zipped\"" msgstr "" diff --git a/po/uz.po b/po/uz.po index 92ff9e06d..8479447a6 100644 --- 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-05-13 11:25+0200\n" +"POT-Creation-Date: 2010-05-13 11:30+0200\n" "PO-Revision-Date: 2010-03-12 09:20+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: uzbek_cyrillic \n" @@ -13,19 +13,19 @@ msgstr "" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:38 browse_foreigners.php:59 -#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:870 +#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:866 #: server_privileges.php:1475 msgid "Show all" msgstr "Барчасини кўрсатиш" #: browse_foreigners.php:82 db_operations.php:648 -#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:394 -#: libraries/export/pdf.php:147 libraries/messages.inc.php:597 +#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394 +#: libraries/export/pdf.php:147 libraries/messages.inc.php:593 #: pdf_schema.php:283 pdf_schema.php:1123 pdf_schema.php:1139 msgid "Page number:" msgstr "Саҳифа рақами: " -#: browse_foreigners.php:132 libraries/messages.inc.php:1242 +#: browse_foreigners.php:132 libraries/messages.inc.php:1238 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -37,7 +37,7 @@ 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/db_links.inc.php:75 -#: libraries/messages.inc.php:841 libraries/tbl_links.inc.php:63 +#: libraries/messages.inc.php:837 libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Қидириш" @@ -46,12 +46,12 @@ msgstr "Қидириш" #: db_search.php:362 db_structure.php:567 js/messages.php:48 #: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2267 +#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 #: 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 #: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614 -#: libraries/messages.inc.php:361 libraries/replication_gui.lib.php:73 +#: libraries/messages.inc.php:357 libraries/replication_gui.lib.php:73 #: libraries/replication_gui.lib.php:365 libraries/select_server.lib.php:104 #: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477 #: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782 @@ -71,33 +71,33 @@ msgid "Go" msgstr "OK" #: browse_foreigners.php:168 browse_foreigners.php:172 -#: libraries/Index.class.php:442 libraries/messages.inc.php:459 +#: libraries/Index.class.php:442 libraries/messages.inc.php:455 #: tbl_tracking.php:320 msgid "Keyname" msgstr "Индекс номи" #: browse_foreigners.php:169 browse_foreigners.php:171 -#: libraries/messages.inc.php:252 server_collations.php:55 +#: libraries/messages.inc.php:248 server_collations.php:55 #: server_collations.php:67 server_engines.php:59 server_status.php:628 msgid "Description" msgstr "Тавсифи" #: browse_foreigners.php:247 browse_foreigners.php:256 #: browse_foreigners.php:268 browse_foreigners.php:276 -#: libraries/messages.inc.php:1218 +#: libraries/messages.inc.php:1214 msgid "Use this value" msgstr "Ушбу қийматни ишлатиш" -#: db_create.php:46 libraries/messages.inc.php:215 +#: db_create.php:46 libraries/messages.inc.php:211 #, php-format msgid "Database %1$s has been created." msgstr " %1$s маълумотлар базаси тузилди." -#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:232 +#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:228 msgid "Database comment: " msgstr "Маълумотлар базасига изоҳ:" -#: db_datadict.php:165 libraries/messages.inc.php:1070 +#: db_datadict.php:165 libraries/messages.inc.php:1066 #: libraries/tbl_properties.inc.php:724 pdf_schema.php:1236 #: tbl_operations.php:345 tbl_printview.php:130 msgid "Table comments" @@ -106,7 +106,7 @@ msgstr "Жадвал изоҳи" #: db_datadict.php:174 db_qbe.php:174 libraries/Index.class.php:446 #: libraries/export/htmlword.php:244 libraries/export/latex.php:360 #: libraries/export/odt.php:294 libraries/export/texytext.php:233 -#: libraries/messages.inc.php:317 libraries/tbl_properties.inc.php:99 +#: libraries/messages.inc.php:313 libraries/tbl_properties.inc.php:99 #: libraries/tbl_properties.inc.php:275 pdf_schema.php:1262 #: pdf_schema.php:1283 tbl_change.php:308 tbl_indexes.php:189 #: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135 @@ -118,7 +118,7 @@ msgstr "Майдон" #: libraries/db_events.inc.php:31 libraries/db_routines.inc.php:42 #: 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/messages.inc.php:1181 +#: libraries/export/texytext.php:234 libraries/messages.inc.php:1177 #: libraries/tbl_properties.inc.php:100 pdf_schema.php:1263 #: pdf_schema.php:1284 server_privileges.php:2031 tbl_change.php:287 #: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313 @@ -130,7 +130,7 @@ msgstr "Тур" #: db_datadict.php:177 libraries/Index.class.php:449 #: libraries/export/htmlword.php:246 libraries/export/latex.php:360 #: libraries/export/odt.php:300 libraries/export/texytext.php:235 -#: libraries/messages.inc.php:576 libraries/tbl_properties.inc.php:109 +#: libraries/messages.inc.php:572 libraries/tbl_properties.inc.php:109 #: pdf_schema.php:1265 pdf_schema.php:1286 tbl_change.php:323 #: tbl_printview.php:145 tbl_structure.php:181 tbl_tracking.php:276 #: tbl_tracking.php:327 @@ -139,7 +139,7 @@ msgstr "Null" #: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 -#: libraries/export/texytext.php:236 libraries/messages.inc.php:238 +#: libraries/export/texytext.php:236 libraries/messages.inc.php:234 #: libraries/tbl_properties.inc.php:106 pdf_schema.php:1266 #: pdf_schema.php:1287 tbl_printview.php:146 tbl_structure.php:182 #: tbl_tracking.php:277 @@ -148,14 +148,14 @@ msgstr "Андоза" #: db_datadict.php:182 libraries/export/htmlword.php:249 #: libraries/export/latex.php:362 libraries/export/odt.php:307 -#: libraries/export/texytext.php:238 libraries/messages.inc.php:483 +#: libraries/export/texytext.php:238 libraries/messages.inc.php:479 #: pdf_schema.php:1268 pdf_schema.php:1289 tbl_printview.php:150 msgid "Links to" msgstr "Алоқалар" #: db_datadict.php:184 db_printview.php:112 libraries/export/htmlword.php:252 #: libraries/export/latex.php:365 libraries/export/odt.php:312 -#: libraries/export/texytext.php:241 libraries/messages.inc.php:163 +#: libraries/export/texytext.php:241 libraries/messages.inc.php:159 #: libraries/tbl_properties.inc.php:130 pdf_schema.php:1279 #: pdf_schema.php:1290 tbl_printview.php:152 msgid "Comments" @@ -164,7 +164,7 @@ msgstr "Изоҳлар" #: db_datadict.php:267 libraries/Index.class.php:359 #: 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/messages.inc.php:559 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:555 #: libraries/mult_submits.inc.php:263 pdf_schema.php:1344 #: server_privileges.php:1529 server_privileges.php:1540 #: server_privileges.php:1850 server_privileges.php:1855 @@ -176,7 +176,7 @@ msgstr "Йўқ" #: db_datadict.php:267 libraries/Index.class.php:360 #: libraries/Index.class.php:385 libraries/export/htmlword.php:322 #: libraries/export/latex.php:430 libraries/export/odt.php:368 -#: libraries/export/texytext.php:311 libraries/messages.inc.php:1257 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:1253 #: libraries/mult_submits.inc.php:45 libraries/mult_submits.inc.php:50 #: libraries/mult_submits.inc.php:55 libraries/mult_submits.inc.php:60 #: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:101 @@ -190,108 +190,108 @@ msgstr "Йўқ" msgid "Yes" msgstr "Ҳа" -#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:670 +#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:666 #: tbl_printview.php:498 msgid "Print" msgstr "Чоп этиш" -#: db_export.php:29 libraries/messages.inc.php:1226 +#: db_export.php:29 libraries/messages.inc.php:1222 msgid "View dump (schema) of database" msgstr "Маълумотлар базаси дампини (схемасини) намойиш этиш" #: db_export.php:33 db_printview.php:96 db_qbe.php:102 db_structure.php:51 -#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:568 +#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:564 #: navigation.php:346 msgid "No tables found in database." msgstr "Маълумотлар базасида биронта ҳам жадвал мавжуд эмас." -#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:845 +#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:841 #: server_export.php:27 msgid "Select All" msgstr "Барчасини белгилаш" -#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1188 +#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1184 #: server_export.php:29 msgid "Unselect All" msgstr "Белгилашни бекор қилиш" -#: db_operations.php:38 libraries/messages.inc.php:213 tbl_create.php:54 +#: db_operations.php:38 libraries/messages.inc.php:209 tbl_create.php:54 msgid "The database name is empty!" msgstr "Маълумотлар базаси номи бўш!" -#: db_operations.php:236 libraries/messages.inc.php:753 +#: db_operations.php:236 libraries/messages.inc.php:749 #, php-format msgid "Database %s has been renamed to %s" msgstr " `\"%s\"` маълумотлар базасининг номи `\"%s\"` деб ўзгартирилди." -#: db_operations.php:240 libraries/messages.inc.php:178 +#: db_operations.php:240 libraries/messages.inc.php:174 #, php-format msgid "Database %s has been copied to %s" msgstr "\"%s\" маълумотлар базасидан \"%s\" га нусха кўчирилди." -#: db_operations.php:410 libraries/messages.inc.php:236 +#: db_operations.php:410 libraries/messages.inc.php:232 msgid "Rename database to" msgstr "Маълумотлар базаси номини қуйидагига ўзгартириш" -#: db_operations.php:415 libraries/messages.inc.php:161 +#: db_operations.php:415 libraries/messages.inc.php:157 #: server_processlist.php:57 msgid "Command" msgstr "Буйруқ" -#: db_operations.php:425 libraries/messages.inc.php:58 tbl_change.php:1143 +#: db_operations.php:425 libraries/messages.inc.php:54 tbl_change.php:1143 msgid "and then" msgstr "ва сўнг" -#: db_operations.php:451 libraries/messages.inc.php:233 +#: db_operations.php:451 libraries/messages.inc.php:229 msgid "Copy database to" msgstr "Маълумотлар базасидан қуйидагига нусха олиш" -#: db_operations.php:458 libraries/messages.inc.php:1043 +#: db_operations.php:458 libraries/messages.inc.php:1039 #: tbl_operations.php:526 tbl_tracking.php:388 msgid "Structure only" msgstr "Фақат тузилиши" -#: db_operations.php:459 libraries/messages.inc.php:1041 +#: db_operations.php:459 libraries/messages.inc.php:1037 #: tbl_operations.php:527 tbl_tracking.php:390 msgid "Structure and data" msgstr "Тузилиши ва маълумотлари" -#: db_operations.php:460 libraries/messages.inc.php:229 tbl_operations.php:528 +#: db_operations.php:460 libraries/messages.inc.php:225 tbl_operations.php:528 #: tbl_tracking.php:389 msgid "Data only" msgstr "Фақат маълумотлар" -#: db_operations.php:468 libraries/messages.inc.php:186 +#: db_operations.php:468 libraries/messages.inc.php:182 msgid "CREATE DATABASE before copying" msgstr "Нусха кўчиришдан олдин маълумотлар базаси тузинг (CREATE DATABASE)" #: db_operations.php:471 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 -#: libraries/export/sql.php:82 libraries/messages.inc.php:30 +#: libraries/export/sql.php:82 libraries/messages.inc.php:26 #: tbl_operations.php:534 #, php-format msgid "Add %s" msgstr "\"%s\" қўшиш" -#: db_operations.php:475 libraries/messages.inc.php:29 tbl_operations.php:297 +#: db_operations.php:475 libraries/messages.inc.php:25 tbl_operations.php:297 #: tbl_operations.php:536 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT қўшиш" -#: db_operations.php:479 libraries/messages.inc.php:31 tbl_operations.php:543 +#: db_operations.php:479 libraries/messages.inc.php:27 tbl_operations.php:543 msgid "Add constraints" msgstr "Чекловлар қўшиш" -#: db_operations.php:492 libraries/messages.inc.php:1059 +#: db_operations.php:492 libraries/messages.inc.php:1055 msgid "Switch to copied database" msgstr "Нусха олинган маълумотлар базасига ўтиш" -#: db_operations.php:533 libraries/messages.inc.php:89 +#: db_operations.php:533 libraries/messages.inc.php:85 msgid "BLOB Repository" msgstr "BLOB омбори" #: db_operations.php:536 db_tracking.php:76 libraries/common.lib.php:1350 -#: libraries/messages.inc.php:1037 libraries/server_links.inc.php:49 +#: libraries/messages.inc.php:1033 libraries/server_links.inc.php:49 #: server_processlist.php:59 tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "Ҳолат" @@ -303,11 +303,11 @@ msgctxt "BLOB repository" msgid "Enabled" msgstr "Фаоллаштирилган" -#: db_operations.php:548 libraries/messages.inc.php:93 +#: db_operations.php:548 libraries/messages.inc.php:89 msgid "Disable" msgstr "Фаолсизлантириш" -#: db_operations.php:558 libraries/messages.inc.php:90 +#: db_operations.php:558 libraries/messages.inc.php:86 msgid "Damaged" msgstr "Шикастланган" @@ -325,12 +325,12 @@ msgctxt "BLOB repository" msgid "Disabled" msgstr "Фаолсизлантирилган" -#: db_operations.php:574 libraries/messages.inc.php:96 +#: db_operations.php:574 libraries/messages.inc.php:92 msgid "Enable" msgstr "Фаоллантириш" #: db_operations.php:598 libraries/Index.class.php:448 -#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:158 +#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:154 #: 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:361 @@ -339,7 +339,7 @@ msgstr "Фаоллантириш" msgid "Collation" msgstr "Таққослаш" -#: db_operations.php:609 libraries/messages.inc.php:742 main.php:316 +#: db_operations.php:609 libraries/messages.inc.php:738 main.php:316 #: pdf_schema.php:34 #, php-format msgid "" @@ -349,58 +349,58 @@ msgstr "" "Алоқадор жадваллар билан ишлаш учун қўшимча имкониятлар мавжуд эмас. " "Сабабларини аниқлаш учун %sбу ерга%s босинг." -#: db_operations.php:645 libraries/messages.inc.php:264 pdf_pages.php:528 +#: db_operations.php:645 libraries/messages.inc.php:260 pdf_pages.php:528 msgid "Display PDF schema" msgstr "PDF-схемани кўрсатиш" -#: db_operations.php:661 libraries/messages.inc.php:877 pdf_pages.php:529 +#: db_operations.php:661 libraries/messages.inc.php:873 pdf_pages.php:529 msgid "Show grid" msgstr "Тўрни кўрсатиш" -#: db_operations.php:664 libraries/messages.inc.php:874 pdf_pages.php:530 +#: db_operations.php:664 libraries/messages.inc.php:870 pdf_pages.php:530 msgid "Show color" msgstr "Рангда кўрсатиш" -#: db_operations.php:666 libraries/messages.inc.php:998 pdf_pages.php:531 +#: db_operations.php:666 libraries/messages.inc.php:994 pdf_pages.php:531 msgid "Show dimension of tables" msgstr "Жадвал ўлчамларини кўрсатиш" -#: db_operations.php:669 libraries/messages.inc.php:52 pdf_pages.php:532 +#: db_operations.php:669 libraries/messages.inc.php:48 pdf_pages.php:532 msgid "Display all tables with the same width" msgstr "Бир хил кенгликдаги барча жадвалларни кўрсатиш" -#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:227 +#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:223 #: pdf_pages.php:533 msgid "Data Dictionary" msgstr "Маълумотлар луғати" -#: db_operations.php:674 libraries/messages.inc.php:884 pdf_pages.php:534 +#: db_operations.php:674 libraries/messages.inc.php:880 pdf_pages.php:534 msgid "Only show keys" msgstr "Фақат калитларни кўрсатиш" -#: db_operations.php:676 libraries/messages.inc.php:875 pdf_pages.php:535 +#: db_operations.php:676 libraries/messages.inc.php:871 pdf_pages.php:535 msgid "Data Dictionary Format" msgstr "Маълумотлар луғати саҳифаси йўналиши" -#: db_operations.php:678 libraries/messages.inc.php:464 pdf_pages.php:537 +#: db_operations.php:678 libraries/messages.inc.php:460 pdf_pages.php:537 msgid "Landscape" msgstr "Албом шаклида" -#: db_operations.php:679 libraries/messages.inc.php:663 pdf_pages.php:538 +#: db_operations.php:679 libraries/messages.inc.php:659 pdf_pages.php:538 msgid "Portrait" msgstr "Китоб шаклида" -#: db_operations.php:682 libraries/messages.inc.php:599 pdf_pages.php:541 +#: db_operations.php:682 libraries/messages.inc.php:595 pdf_pages.php:541 msgid "Paper size" msgstr "Қоғоз ўлчами" -#: db_operations.php:706 libraries/messages.inc.php:281 +#: db_operations.php:706 libraries/messages.inc.php:277 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 libraries/messages.inc.php:1087 +#: libraries/header.inc.php:126 libraries/messages.inc.php:1083 #: pdf_pages.php:405 server_privileges.php:1626 server_privileges.php:1682 #: server_privileges.php:1946 server_synchronize.php:423 #: server_synchronize.php:866 tbl_tracking.php:592 test/theme.php:75 @@ -408,176 +408,176 @@ msgid "Table" msgstr "Жадвал " #: db_printview.php:105 libraries/db_structure.lib.php:56 -#: libraries/messages.inc.php:735 +#: libraries/messages.inc.php:731 msgid "Records" msgstr "Ёзувлар сони" #: db_printview.php:109 libraries/db_structure.lib.php:67 -#: libraries/messages.inc.php:1003 tbl_indexes.php:190 +#: libraries/messages.inc.php:999 tbl_indexes.php:190 msgid "Size" msgstr "Ҳажми" #: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 -#: libraries/export/sql.php:899 libraries/messages.inc.php:436 +#: libraries/export/sql.php:899 libraries/messages.inc.php:432 msgid "in use" msgstr "ишлатилмоқда" #: db_printview.php:187 libraries/db_info.inc.php:88 -#: libraries/export/sql.php:514 libraries/messages.inc.php:1032 +#: libraries/export/sql.php:514 libraries/messages.inc.php:1028 #: pdf_schema.php:1241 tbl_printview.php:434 tbl_structure.php:810 msgid "Creation" msgstr "Тузиш" #: db_printview.php:196 libraries/db_info.inc.php:93 -#: libraries/export/sql.php:519 libraries/messages.inc.php:1036 +#: libraries/export/sql.php:519 libraries/messages.inc.php:1032 #: pdf_schema.php:1246 tbl_printview.php:444 tbl_structure.php:818 msgid "Last update" msgstr "Охирги янгиланиш" #: db_printview.php:205 libraries/db_info.inc.php:98 -#: libraries/export/sql.php:524 libraries/messages.inc.php:1031 +#: libraries/export/sql.php:524 libraries/messages.inc.php:1027 #: pdf_schema.php:1251 tbl_printview.php:454 tbl_structure.php:826 msgid "Last check" msgstr "Охирги текширув" -#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1085 +#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1081 #, php-format msgid "%s table(s)" msgstr "Жадваллар сони: \"%s\"" #: db_qbe.php:29 libraries/display_tbl.lib.php:1981 -#: libraries/messages.inc.php:1051 libraries/sql_query_form.lib.php:140 +#: libraries/messages.inc.php:1047 libraries/sql_query_form.lib.php:140 #: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131 #: view_operations.php:62 msgid "Your SQL query has been executed successfully" msgstr "SQL сўрови муваффақиятли бажарилди" -#: db_qbe.php:42 libraries/messages.inc.php:371 +#: db_qbe.php:42 libraries/messages.inc.php:367 msgid "You have to choose at least one column to display" msgstr "Сўровни бажариш учун, майдон/майдонлар танланган бўлиши керак." #: db_qbe.php:200 libraries/db_structure.lib.php:104 -#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1014 +#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1010 msgid "Sort" msgstr "Сортировка қилиш" #: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111 #: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828 -#: libraries/messages.inc.php:69 server_databases.php:170 +#: libraries/messages.inc.php:65 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314 msgid "Ascending" msgstr "Ўсиш тартибида" #: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119 #: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825 -#: libraries/messages.inc.php:251 server_databases.php:170 +#: libraries/messages.inc.php:247 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315 msgid "Descending" msgstr "Камайиш тартибида" #: db_qbe.php:264 db_tracking.php:78 libraries/display_tbl.lib.php:308 -#: libraries/messages.inc.php:888 tbl_change.php:277 tbl_tracking.php:597 +#: libraries/messages.inc.php:884 tbl_change.php:277 tbl_tracking.php:597 msgid "Show" msgstr "Кўрсатиш" -#: db_qbe.php:300 libraries/messages.inc.php:202 +#: db_qbe.php:300 libraries/messages.inc.php:198 msgid "Criteria" msgstr "Критерий" #: db_qbe.php:353 db_qbe.php:435 db_qbe.php:527 db_qbe.php:558 -#: libraries/messages.inc.php:718 +#: libraries/messages.inc.php:714 msgid "Ins" msgstr "Қўйиш" #: db_qbe.php:357 db_qbe.php:439 db_qbe.php:524 db_qbe.php:555 -#: libraries/messages.inc.php:56 +#: libraries/messages.inc.php:52 msgid "And" msgstr "Ва" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:529 db_qbe.php:560 -#: libraries/messages.inc.php:717 +#: libraries/messages.inc.php:713 msgid "Del" msgstr "Ўчириш" #: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553 -#: libraries/display_import.lib.php:166 libraries/messages.inc.php:592 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:588 #: libraries/tbl_properties.inc.php:779 server_privileges.php:258 #: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288 msgid "Or" msgstr "Ёки" -#: db_qbe.php:507 libraries/messages.inc.php:516 +#: db_qbe.php:507 libraries/messages.inc.php:512 msgid "Modify" msgstr "Ўзгаририш" -#: db_qbe.php:584 libraries/messages.inc.php:33 +#: db_qbe.php:584 libraries/messages.inc.php:29 msgid "Add/Delete Criteria Row" msgstr "Қатор қўшиш/ўчириш" -#: db_qbe.php:596 libraries/messages.inc.php:32 +#: db_qbe.php:596 libraries/messages.inc.php:28 msgid "Add/Delete Field Columns" msgstr "Устун қўшиш/ўчириш" -#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1192 +#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1188 msgid "Update Query" msgstr "Сўровни янгилаш" -#: db_qbe.php:617 libraries/messages.inc.php:1216 +#: db_qbe.php:617 libraries/messages.inc.php:1212 msgid "Use Tables" msgstr "Жадвалларни ишлатиш" -#: db_qbe.php:640 libraries/messages.inc.php:723 +#: db_qbe.php:640 libraries/messages.inc.php:719 #, php-format msgid "SQL query on database %s:" msgstr "\"%s\" маълумотлар базасига SQL-сўров: " -#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:823 +#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:819 msgid "Submit Query" msgstr "сўровни бажариш" #: db_search.php:68 libraries/auth/config.auth.lib.php:84 #: libraries/auth/config.auth.lib.php:103 #: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52 -#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:26 +#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:22 msgid "Access denied" msgstr "Рухсат берилмади" -#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:836 +#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:832 msgid "at least one of the words" msgstr "сўзлардан бири" -#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:837 +#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:833 msgid "all words" msgstr "барча сўзлар" -#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:838 +#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:834 msgid "the exact phrase" msgstr "аниқ мослик" -#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:839 +#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:835 msgid "as regular expression" msgstr "мунтазам ибора" -#: db_search.php:242 libraries/messages.inc.php:840 +#: db_search.php:242 libraries/messages.inc.php:836 #, php-format msgid "Search results for \"%s\" %s:" msgstr "\"\"%s\"\" учун қидирув натижалари \"%s\":" -#: db_search.php:260 libraries/messages.inc.php:579 +#: db_search.php:260 libraries/messages.inc.php:575 #, php-format msgid "%s match(es) inside table %s" 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/messages.inc.php:108 +#: db_structure.php:105 libraries/messages.inc.php:104 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468 msgid "Browse" msgstr "Кўриб чиқиш" #: db_search.php:272 libraries/display_tbl.lib.php:1165 -#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:243 +#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:239 #: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406 #: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377 #: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216 @@ -585,45 +585,45 @@ msgstr "Кўриб чиқиш" msgid "Delete" msgstr "Ўчириш" -#: db_search.php:285 libraries/messages.inc.php:580 +#: db_search.php:285 libraries/messages.inc.php:576 #, php-format msgid "Total: %s match(es)" msgstr "Жами: \"%s\" ўхшашлик" -#: db_search.php:299 libraries/messages.inc.php:832 +#: db_search.php:299 libraries/messages.inc.php:828 msgid "Search in database" msgstr "Маълумотлар базасида қидириш" -#: db_search.php:302 libraries/messages.inc.php:835 +#: db_search.php:302 libraries/messages.inc.php:831 msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgstr "Қидириш учун сўз(лар) ёки қиймат(лар) (ўрнига қўйиш белгиси: \"%\"):" -#: db_search.php:307 libraries/messages.inc.php:842 +#: db_search.php:307 libraries/messages.inc.php:838 msgid "Find:" msgstr "Излаш:" -#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1017 +#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1013 msgid "Words are separated by a space character (\" \")." msgstr "Сўзлар бўш жой (\" \") ёрдамида бўлинган." -#: db_search.php:325 libraries/messages.inc.php:834 +#: db_search.php:325 libraries/messages.inc.php:830 msgid "Inside table(s):" msgstr "Қуйидаги жадвал(лар)да қидириш:" -#: db_search.php:355 libraries/messages.inc.php:833 +#: db_search.php:355 libraries/messages.inc.php:829 msgid "Inside field:" 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/messages.inc.php:431 libraries/sql_query_form.lib.php:334 +#: libraries/messages.inc.php:427 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/db_links.inc.php:63 libraries/export/latex.php:337 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:1048 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:1044 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 #: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269 msgid "Structure" @@ -632,8 +632,8 @@ 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:1642 -#: libraries/db_links.inc.php:100 libraries/messages.inc.php:272 +#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/db_links.inc.php:100 libraries/messages.inc.php:268 #: 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 @@ -643,40 +643,40 @@ 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:1641 -#: libraries/messages.inc.php:284 libraries/mult_submits.inc.php:39 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: libraries/messages.inc.php:280 libraries/mult_submits.inc.php:39 #: libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Тозалаш" -#: db_structure.php:316 libraries/messages.inc.php:1075 +#: db_structure.php:316 libraries/messages.inc.php:1071 #: libraries/tbl_links.inc.php:100 #, php-format msgid "Table %s has been emptied" msgstr "\"%s\" жадвали тозаланди" -#: db_structure.php:326 libraries/messages.inc.php:1229 +#: db_structure.php:326 libraries/messages.inc.php:1225 #: libraries/tbl_links.inc.php:133 #, php-format msgid "View %s has been dropped" msgstr " \"%s\" намойиши ўчирилди" -#: db_structure.php:326 libraries/messages.inc.php:1074 +#: db_structure.php:326 libraries/messages.inc.php:1070 #: libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "\"%s\" жадвали ўчирилди" -#: db_structure.php:333 libraries/messages.inc.php:1128 +#: db_structure.php:333 libraries/messages.inc.php:1124 msgid "Tracking is active." msgstr "Кузатиш фаол." -#: db_structure.php:335 libraries/messages.inc.php:1129 +#: db_structure.php:335 libraries/messages.inc.php:1125 msgid "Tracking is not active." msgstr "Кузатиш фаол эмас." #: db_structure.php:420 libraries/display_tbl.lib.php:1944 -#: libraries/messages.inc.php:1228 +#: libraries/messages.inc.php:1224 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -686,83 +686,83 @@ msgstr "" "учун %sдокументацияга%s қаранг." #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 -#: libraries/messages.inc.php:1233 libraries/tbl_info.inc.php:66 +#: libraries/messages.inc.php:1229 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/messages.inc.php:773 libraries/server_links.inc.php:70 +#: libraries/messages.inc.php:769 libraries/server_links.inc.php:70 #: server_replication.php:33 server_replication.php:164 server_status.php:258 msgid "Replication" msgstr "Репликация (захира нусха кўчириш)" -#: db_structure.php:489 libraries/messages.inc.php:1053 +#: db_structure.php:489 libraries/messages.inc.php:1049 msgid "Sum" msgstr "Жами" #: db_structure.php:496 libraries/StorageEngine.class.php:356 -#: libraries/messages.inc.php:239 +#: libraries/messages.inc.php:235 #, 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 #: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086 -#: libraries/messages.inc.php:1243 libraries/mult_submits.inc.php:16 +#: libraries/messages.inc.php:1239 libraries/mult_submits.inc.php:16 #: server_databases.php:346 server_databases.php:351 #: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465 msgid "With selected:" msgstr "Белгиланганларни: " #: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: libraries/messages.inc.php:148 server_databases.php:348 +#: libraries/messages.inc.php:144 server_databases.php:348 #: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459 msgid "Check All" msgstr "Барчасини белгилаш" #: db_structure.php:531 libraries/display_tbl.lib.php:2077 -#: libraries/messages.inc.php:1184 libraries/replication_gui.lib.php:33 +#: libraries/messages.inc.php:1180 libraries/replication_gui.lib.php:33 #: server_databases.php:350 server_privileges.php:533 #: server_privileges.php:1564 tbl_structure.php:463 msgid "Uncheck All" msgstr "Белгилашни бекор қилиш" -#: db_structure.php:536 libraries/messages.inc.php:150 +#: db_structure.php:536 libraries/messages.inc.php:146 msgid "Check tables having overhead" msgstr "Оптималлаштириш лозим бўлгн жадвалларни белгилаш" #: db_structure.php:547 db_structure.php:548 db_structure.php:599 -#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:672 +#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:668 #: libraries/mult_submits.inc.php:28 tbl_structure.php:493 #: tbl_structure.php:495 msgid "Print view" msgstr "Чоп этиш версияси" -#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:153 +#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:149 #: libraries/mult_submits.inc.php:42 tbl_operations.php:579 msgid "Check table" msgstr "Жадвални текшириш" -#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:590 +#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:586 #: libraries/mult_submits.inc.php:47 tbl_operations.php:619 #: tbl_structure.php:710 tbl_structure.php:712 msgid "Optimize table" msgstr "Жадвални оптималлаштириш" -#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:758 +#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:754 #: libraries/mult_submits.inc.php:52 tbl_operations.php:609 msgid "Repair table" msgstr "Жадвални тиклаш" -#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:55 +#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:51 #: libraries/mult_submits.inc.php:57 tbl_operations.php:599 msgid "Analyze table" msgstr "Жадвал таҳлили" #: db_structure.php:557 db_structure.php:558 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/messages.inc.php:310 +#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:306 #: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84 #: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109 #: server_privileges.php:1341 setup/frames/menu.inc.php:22 @@ -770,7 +770,7 @@ msgstr "Жадвал таҳлили" msgid "Export" msgstr "Экспорт" -#: db_tracking.php:66 libraries/messages.inc.php:1151 +#: db_tracking.php:66 libraries/messages.inc.php:1147 msgid "Tracked tables" msgstr "Кузатилган жадваллар" @@ -778,7 +778,7 @@ msgstr "Кузатилган жадваллар" #: 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/header_printview.inc.php:58 libraries/messages.inc.php:212 +#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:208 #: navigation.php:233 server_databases.php:169 server_privileges.php:1621 #: server_privileges.php:1682 server_privileges.php:1940 #: server_processlist.php:56 server_synchronize.php:1179 @@ -786,76 +786,76 @@ msgstr "Кузатилган жадваллар" msgid "Database" msgstr "Маълумотлар базаси" -#: db_tracking.php:73 libraries/messages.inc.php:1146 +#: db_tracking.php:73 libraries/messages.inc.php:1142 msgid "Last version" msgstr "Охирги версия" -#: db_tracking.php:74 libraries/messages.inc.php:1145 tbl_tracking.php:594 +#: db_tracking.php:74 libraries/messages.inc.php:1141 tbl_tracking.php:594 msgid "Created" msgstr "Тузилди" -#: db_tracking.php:75 libraries/messages.inc.php:1147 tbl_tracking.php:595 +#: db_tracking.php:75 libraries/messages.inc.php:1143 tbl_tracking.php:595 msgid "Updated" msgstr "Янгиланди" #: db_tracking.php:77 libraries/Index.class.php:440 -#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:27 +#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:23 #: server_databases.php:203 server_privileges.php:1503 #: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187 msgid "Action" msgstr "Амал" -#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:247 +#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:243 msgid "Delete tracking data for this table" msgstr "Ушбу жадвал учун кузатув маълумотлари ўчириш" -#: db_tracking.php:106 libraries/messages.inc.php:1142 tbl_tracking.php:548 +#: db_tracking.php:106 libraries/messages.inc.php:1138 tbl_tracking.php:548 #: tbl_tracking.php:606 tbl_tracking.php:613 msgid "active" msgstr "фаол" -#: db_tracking.php:108 libraries/messages.inc.php:1143 tbl_tracking.php:550 +#: db_tracking.php:108 libraries/messages.inc.php:1139 tbl_tracking.php:550 #: tbl_tracking.php:608 tbl_tracking.php:610 msgid "not active" msgstr "фаол эмас" -#: db_tracking.php:121 libraries/messages.inc.php:1160 +#: db_tracking.php:121 libraries/messages.inc.php:1156 msgid "Versions" msgstr "Версиялар" -#: db_tracking.php:122 libraries/messages.inc.php:1132 tbl_tracking.php:379 +#: db_tracking.php:122 libraries/messages.inc.php:1128 tbl_tracking.php:379 #: tbl_tracking.php:624 msgid "Tracking report" msgstr "Кузатиш ҳисоботи" -#: db_tracking.php:123 libraries/messages.inc.php:1144 tbl_tracking.php:251 +#: db_tracking.php:123 libraries/messages.inc.php:1140 tbl_tracking.php:251 #: tbl_tracking.php:624 msgid "Structure snapshot" msgstr "Тузилма расми" -#: db_tracking.php:152 libraries/messages.inc.php:1154 +#: db_tracking.php:152 libraries/messages.inc.php:1150 msgid "Untracked tables" msgstr "Кузатилмаган жадваллар" -#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1153 +#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1149 #: tbl_structure.php:529 tbl_structure.php:531 msgid "Track table" msgstr "Жадвални кузатиш" -#: db_tracking.php:200 libraries/messages.inc.php:1121 +#: db_tracking.php:200 libraries/messages.inc.php:1117 msgid "Database Log" msgstr "База лог файлини" -#: export.php:62 libraries/messages.inc.php:312 +#: export.php:62 libraries/messages.inc.php:308 msgid "Selected export type has to be saved in file!" msgstr "Белгиланган экспорт тури файлга сақланиши шарт!" -#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:567 +#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:563 #, php-format msgid "Insufficient space to save the file %s." msgstr "\"%s\" файлини сақлаш учун дискда етарли жой мавжуд эмас. " -#: export.php:294 libraries/messages.inc.php:324 +#: export.php:294 libraries/messages.inc.php:320 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -863,17 +863,17 @@ msgstr "" "\"%s\" файли серверда мавжуд, унинг номини ўзгартиринг ёки қайта ёзиш " "параметрини ёқинг." -#: export.php:298 export.php:302 libraries/messages.inc.php:562 +#: export.php:298 export.php:302 libraries/messages.inc.php:558 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "\"%s\" файлини веб-серверга сақлаш учун ҳуқуқлар етарли эмас." -#: export.php:629 libraries/messages.inc.php:276 +#: export.php:629 libraries/messages.inc.php:272 #, php-format msgid "Dump has been saved to file %s." msgstr "Дамп \"%s\" файлида сақланди." -#: import.php:60 libraries/messages.inc.php:1202 +#: import.php:60 libraries/messages.inc.php:1198 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation%" @@ -883,14 +883,14 @@ msgstr "" "sдокументацияда%s келтирилган." #: import.php:279 import.php:332 libraries/File.class.php:849 -#: libraries/File.class.php:961 libraries/messages.inc.php:325 +#: libraries/File.class.php:961 libraries/messages.inc.php:321 msgid "File could not be read" msgstr "Файлни ўқиб бўлмади!!" #: import.php:287 import.php:296 import.php:315 import.php:324 #: libraries/File.class.php:1031 libraries/File.class.php:1039 #: libraries/File.class.php:1055 libraries/File.class.php:1063 -#: libraries/messages.inc.php:1189 +#: libraries/messages.inc.php:1185 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -900,7 +900,7 @@ msgstr "" "эмас, шунинг учун ушбу файлни импорт қилиб бўлмайди. Агар дастур мавжуд " "бўлса, демак у конфигурация вақтида ўчириб қўйилган." -#: import.php:337 libraries/messages.inc.php:547 +#: import.php:337 libraries/messages.inc.php:543 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -912,31 +912,31 @@ msgstr "" "1.16[/a]." #: import.php:372 libraries/display_import.lib.php:24 -#: libraries/messages.inc.php:125 +#: libraries/messages.inc.php:121 msgid "Could not load import plugins, please check your installation!" msgstr "" "Импорт модуллари мавжуд эмас! Ўрнатилган phpMyAdmin нусхасининг libraries/" "export каталогини текширинг." -#: import.php:397 libraries/messages.inc.php:102 +#: import.php:397 libraries/messages.inc.php:98 msgid "The bookmark has been deleted." msgstr "Хатчўп ўчирилди." -#: import.php:401 libraries/messages.inc.php:879 +#: import.php:401 libraries/messages.inc.php:875 msgid "Showing bookmark" msgstr "Хатчўпларни кўрсатиш" -#: import.php:403 libraries/messages.inc.php:101 +#: import.php:403 libraries/messages.inc.php:97 #, php-format msgid "Bookmark %s created" msgstr "\"%s\" хатчўпи тузилди" -#: import.php:409 import.php:415 libraries/messages.inc.php:407 +#: import.php:409 import.php:415 libraries/messages.inc.php:403 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Импорт муваффақиятли тугатилди, бажарилган сўровлар сони: %d." -#: import.php:424 libraries/messages.inc.php:1107 +#: import.php:424 libraries/messages.inc.php:1103 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -945,12 +945,12 @@ msgstr "" "ўша файлни танлаган ҳолда уни қайта ишга туширинг ва жараён узилган жойдан " "бошлаб давом этади." -#: index.php:190 libraries/messages.inc.php:553 +#: index.php:190 libraries/messages.inc.php:549 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" "phpMyAdmin ишлаши учун фреймлар билан ишлай оладиган браузер керак." -#: js/messages.php:25 libraries/messages.inc.php:155 +#: js/messages.php:25 libraries/messages.inc.php:151 #: server_synchronize.php:345 server_synchronize.php:357 #: server_synchronize.php:373 server_synchronize.php:380 #: server_synchronize.php:739 server_synchronize.php:767 @@ -958,118 +958,118 @@ msgstr "" msgid "Click to select" msgstr "Танлаш учун сичқонча тугмасини босинг" -#: js/messages.php:26 libraries/messages.inc.php:156 +#: js/messages.php:26 libraries/messages.inc.php:152 msgid "Click to unselect" msgstr "Танлашни бекор қилиш учун сичқонча тугмасини босинг" #: js/messages.php:27 libraries/import.lib.php:103 -#: libraries/messages.inc.php:550 sql.php:89 +#: libraries/messages.inc.php:546 sql.php:89 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" (маълумотлар базасини ўчириш) буйруғи ўчирилган." -#: js/messages.php:30 libraries/messages.inc.php:270 +#: js/messages.php:30 libraries/messages.inc.php:266 #: libraries/mult_submits.inc.php:258 sql.php:188 msgid "Do you really want to " msgstr "Ҳақиқатан ҳам сўровни бажармоқчимисиз?" -#: js/messages.php:31 libraries/messages.inc.php:271 +#: js/messages.php:31 libraries/messages.inc.php:267 #: libraries/mult_submits.inc.php:258 sql.php:172 msgid "You are about to DESTROY a complete database!" msgstr "Маълумотлар базаси тўлиқ ЎЧИРИЛАДИ!" -#: js/messages.php:34 libraries/messages.inc.php:94 +#: js/messages.php:34 libraries/messages.inc.php:90 msgid "You are about to DISABLE a BLOB Repository!" msgstr "Сиз BLOB омборини ФАОЛСИЗЛАНТИРМОҚЧИСИЗ!" -#: js/messages.php:35 libraries/messages.inc.php:91 +#: js/messages.php:35 libraries/messages.inc.php:87 #, php-format msgid "Are you sure you want to disable all BLOB references for database %s?" msgstr "" "Сиз ҳақиқатдан ҳам \"%s\" базаси учун барча BLOB мурожаатларини бекор " "қилмоқчимисиз?" -#: js/messages.php:38 libraries/messages.inc.php:342 +#: js/messages.php:38 libraries/messages.inc.php:338 msgid "Missing value in the form!" msgstr "Форманинг керакли майдонлари тўлдирилмаган!" -#: js/messages.php:39 libraries/messages.inc.php:570 +#: js/messages.php:39 libraries/messages.inc.php:566 msgid "This is not a number!" msgstr "Сон киритинг!" -#: js/messages.php:42 libraries/messages.inc.php:380 +#: js/messages.php:42 libraries/messages.inc.php:376 msgid "The host name is empty!" msgstr "Хост номи бўш!" -#: js/messages.php:43 libraries/messages.inc.php:1208 +#: js/messages.php:43 libraries/messages.inc.php:1204 msgid "The user name is empty!" msgstr "Фойдаланувчи номи белгиланмаган!" -#: js/messages.php:44 libraries/messages.inc.php:607 +#: js/messages.php:44 libraries/messages.inc.php:603 #: server_privileges.php:1197 user_password.php:70 msgid "The password is empty!" msgstr "Парол белгиланмаган!" -#: js/messages.php:45 libraries/messages.inc.php:609 +#: js/messages.php:45 libraries/messages.inc.php:605 #: server_privileges.php:1195 user_password.php:73 msgid "The passwords aren't the same!" msgstr "Киритилган пароллар бир хил эмас!" -#: js/messages.php:49 libraries/messages.inc.php:123 pmd_general.php:342 +#: js/messages.php:49 libraries/messages.inc.php:119 pmd_general.php:342 #: pmd_general.php:379 msgid "Cancel" msgstr "Бекор қилиш" -#: js/messages.php:52 libraries/messages.inc.php:514 +#: js/messages.php:52 libraries/messages.inc.php:510 msgid "Modifications have been saved" msgstr "Ўзгариришлар сақланди" -#: js/messages.php:53 libraries/messages.inc.php:741 +#: js/messages.php:53 libraries/messages.inc.php:737 msgid "Relation deleted" msgstr "Алоқа ўчирилди" -#: js/messages.php:54 libraries/messages.inc.php:340 +#: js/messages.php:54 libraries/messages.inc.php:336 msgid "FOREIGN KEY relation added" msgstr "Ташқи калитга (FOREIGN KEY) алоқа ўрнатилди" -#: js/messages.php:55 libraries/messages.inc.php:434 +#: js/messages.php:55 libraries/messages.inc.php:430 msgid "Internal relation added" msgstr "Ички алоқа ўрнатилди" -#: js/messages.php:56 libraries/messages.inc.php:299 +#: js/messages.php:56 libraries/messages.inc.php:295 msgid "Error: Relation not added." msgstr "Хатолик: Боғлиқлик ўрнатилмади." -#: js/messages.php:57 libraries/messages.inc.php:300 +#: js/messages.php:57 libraries/messages.inc.php:296 msgid "Error: relation already exists." msgstr "Хатолик: Боғлиқлик аллақачон мавжуд." -#: js/messages.php:58 libraries/messages.inc.php:302 +#: js/messages.php:58 libraries/messages.inc.php:298 msgid "Error saving coordinates for Designer." msgstr "Координаталарни сақлашда хатолик." -#: js/messages.php:59 libraries/messages.inc.php:351 +#: js/messages.php:59 libraries/messages.inc.php:347 #: libraries/relation.lib.php:107 msgid "General relation features" msgstr "Алоқаларнинг асосий имкониятлари" -#: js/messages.php:59 libraries/messages.inc.php:260 +#: js/messages.php:59 libraries/messages.inc.php:256 #: libraries/relation.lib.php:101 libraries/relation.lib.php:108 msgid "Disabled" msgstr "Фаолсизлантирилган" -#: js/messages.php:60 libraries/messages.inc.php:850 +#: js/messages.php:60 libraries/messages.inc.php:846 msgid "Select referenced key" msgstr "Боғлиқ калитни танланг" -#: js/messages.php:61 libraries/messages.inc.php:848 +#: js/messages.php:61 libraries/messages.inc.php:844 msgid "Select Foreign Key" msgstr "Ташқи калитни танланг" -#: js/messages.php:62 libraries/messages.inc.php:653 +#: js/messages.php:62 libraries/messages.inc.php:649 msgid "Please select the primary key or a unique key" msgstr "Бирламчи (PRIMARY) ёки уникал (UNIQUE) индекс бўлган майдонни танланг!" -#: js/messages.php:63 libraries/messages.inc.php:142 pmd_general.php:77 +#: js/messages.php:63 libraries/messages.inc.php:138 pmd_general.php:77 #: tbl_relation.php:548 msgid "Choose field to display" msgstr "Кўрсатиладиган майдонни танлаш" @@ -1089,9 +1089,9 @@ msgid "Prev" msgstr "Орқага" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2332 -#: libraries/common.lib.php:2335 libraries/display_tbl.lib.php:338 -#: libraries/messages.inc.php:543 server_binlog.php:205 server_binlog.php:207 +#: js/messages.php:77 libraries/common.lib.php:2344 +#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: libraries/messages.inc.php:539 server_binlog.php:205 server_binlog.php:207 #: tbl_printview.php:424 tbl_structure.php:802 msgid "Next" msgstr "Кейинги" @@ -1166,27 +1166,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1543 +#: js/messages.php:97 libraries/common.lib.php:1555 msgid "Jan" msgstr "Янв" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1545 +#: js/messages.php:99 libraries/common.lib.php:1557 msgid "Feb" msgstr "Фев" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1547 +#: js/messages.php:101 libraries/common.lib.php:1559 msgid "Mar" msgstr "Мар" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1549 +#: js/messages.php:103 libraries/common.lib.php:1561 msgid "Apr" msgstr "Апр" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1551 +#: js/messages.php:105 libraries/common.lib.php:1563 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1194,37 +1194,37 @@ msgid "May" msgstr "Май" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1553 +#: js/messages.php:107 libraries/common.lib.php:1565 msgid "Jun" msgstr "Июн" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1555 +#: js/messages.php:109 libraries/common.lib.php:1567 msgid "Jul" msgstr "Июл" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1557 +#: js/messages.php:111 libraries/common.lib.php:1569 msgid "Aug" msgstr "Авг" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1559 +#: js/messages.php:113 libraries/common.lib.php:1571 msgid "Sep" msgstr "Сен" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1561 +#: js/messages.php:115 libraries/common.lib.php:1573 msgid "Oct" msgstr "Окт" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1563 +#: js/messages.php:117 libraries/common.lib.php:1575 msgid "Nov" msgstr "Ноя" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1565 +#: js/messages.php:119 libraries/common.lib.php:1577 msgid "Dec" msgstr "Дек" @@ -1265,37 +1265,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1568 +#: js/messages.php:132 libraries/common.lib.php:1580 msgid "Sun" msgstr "Якш" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1570 +#: js/messages.php:134 libraries/common.lib.php:1582 msgid "Mon" msgstr "Душ" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1572 +#: js/messages.php:136 libraries/common.lib.php:1584 msgid "Tue" msgstr "Сеш" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1574 +#: js/messages.php:138 libraries/common.lib.php:1586 msgid "Wed" msgstr "Чор" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1576 +#: js/messages.php:140 libraries/common.lib.php:1588 msgid "Thu" msgstr "Пай" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1578 +#: js/messages.php:142 libraries/common.lib.php:1590 msgid "Fri" msgstr "Жум" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1580 +#: js/messages.php:144 libraries/common.lib.php:1592 msgid "Sat" msgstr "Шан" @@ -1371,23 +1371,23 @@ msgstr "ишлатилмоқда" msgid "Second" msgstr "секундига" -#: libraries/Config.class.php:1015 libraries/messages.inc.php:338 +#: libraries/Config.class.php:1015 libraries/messages.inc.php:334 msgid "Font size" msgstr "Шрифт ўлчами" #: libraries/File.class.php:344 libraries/File.class.php:432 #: libraries/File.class.php:569 libraries/File.class.php:708 -#: libraries/messages.inc.php:1201 +#: libraries/messages.inc.php:1197 msgid "Unknown error in file upload." msgstr "Файл юкланаётган вақтда номаълум хатолик юз берди." -#: libraries/File.class.php:414 libraries/messages.inc.php:1198 +#: libraries/File.class.php:414 libraries/messages.inc.php:1194 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "Юкланаётган файл ҳажми PHP конфигурацион файлида (php.ini) кўрсатилган " "\"upload_max_filesize\" директиваси қийматидан катта!" -#: libraries/File.class.php:417 libraries/messages.inc.php:1197 +#: libraries/File.class.php:417 libraries/messages.inc.php:1193 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -1395,23 +1395,23 @@ msgstr "" "Юкланаётган файл ҳажми HTML формада кўрсатилган \"MAX_FILE_SIZE\" " "директиваси қийматидан катта!" -#: libraries/File.class.php:420 libraries/messages.inc.php:1200 +#: libraries/File.class.php:420 libraries/messages.inc.php:1196 msgid "The uploaded file was only partially uploaded." msgstr "Юкланаётган файл фақатгина қисман юкланди." -#: libraries/File.class.php:423 libraries/messages.inc.php:1199 +#: libraries/File.class.php:423 libraries/messages.inc.php:1195 msgid "Missing a temporary folder." msgstr "Вақтинчалик файлларни сақлаш учун каталог топилмади." -#: libraries/File.class.php:426 libraries/messages.inc.php:1195 +#: libraries/File.class.php:426 libraries/messages.inc.php:1191 msgid "Failed to write file to disk." msgstr "Файлни дискка ёзишдахатолик юз берди." -#: libraries/File.class.php:429 libraries/messages.inc.php:1196 +#: libraries/File.class.php:429 libraries/messages.inc.php:1192 msgid "File upload stopped by extension." msgstr "Файлнинг юкланиши унинг кенгайтмаси сабали тўхтатилди." -#: libraries/File.class.php:908 libraries/messages.inc.php:319 +#: libraries/File.class.php:908 libraries/messages.inc.php:315 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -1419,34 +1419,34 @@ msgstr "" "Юкланган файл жойини ўзгартиришда хатолик, [a@./Documentation." "html#faq1_11@Documentation]\"FAQ 1.11\"[/a]га қаранг" -#: libraries/Index.class.php:428 libraries/messages.inc.php:554 +#: libraries/Index.class.php:428 libraries/messages.inc.php:550 #: tbl_relation.php:529 msgid "No index defined!" msgstr "Индекс белгиланмаган!" -#: libraries/Index.class.php:433 libraries/messages.inc.php:411 +#: libraries/Index.class.php:433 libraries/messages.inc.php:407 #: server_databases.php:132 tbl_tracking.php:316 msgid "Indexes" msgstr "Индекслар" -#: libraries/Index.class.php:444 libraries/messages.inc.php:1186 +#: libraries/Index.class.php:444 libraries/messages.inc.php:1182 #: 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:475 tbl_tracking.php:322 msgid "Unique" msgstr "Уникал" -#: libraries/Index.class.php:445 libraries/messages.inc.php:596 +#: libraries/Index.class.php:445 libraries/messages.inc.php:592 #: tbl_tracking.php:323 msgid "Packed" msgstr "Қисилган" -#: libraries/Index.class.php:447 libraries/messages.inc.php:131 +#: libraries/Index.class.php:447 libraries/messages.inc.php:127 #: tbl_tracking.php:325 msgid "Cardinality" msgstr "Элементлар сони" -#: libraries/Index.class.php:450 libraries/messages.inc.php:162 +#: libraries/Index.class.php:450 libraries/messages.inc.php:158 #: tbl_tracking.php:279 tbl_tracking.php:328 msgid "Comment" msgstr "Изоҳ" @@ -1454,29 +1454,29 @@ msgstr "Изоҳ" #: libraries/Index.class.php:466 libraries/common.lib.php:616 #: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:280 pdf_pages.php:280 +#: libraries/messages.inc.php:276 pdf_pages.php:280 #: setup/frames/index.inc.php:124 setup/lib/messages.inc.php:352 #: tbl_row_action.php:69 msgid "Edit" msgstr "Таҳрирлаш" -#: libraries/Index.class.php:472 libraries/messages.inc.php:666 +#: libraries/Index.class.php:472 libraries/messages.inc.php:662 msgid "The primary key has been dropped" msgstr "Бирламчи калит ўчирилди" -#: libraries/Index.class.php:476 libraries/messages.inc.php:413 +#: libraries/Index.class.php:476 libraries/messages.inc.php:409 #, php-format msgid "Index %s has been dropped" msgstr " \"%s\" индекси ўчирилди" -#: libraries/Index.class.php:576 libraries/messages.inc.php:412 +#: libraries/Index.class.php:576 libraries/messages.inc.php:408 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr " %1$s ва %2$s индекслари бир хил, улардан бирини ўчириш мумкин." -#: libraries/List_Database.class.php:431 libraries/messages.inc.php:218 +#: libraries/List_Database.class.php:431 libraries/messages.inc.php:214 #: libraries/server_links.inc.php:41 server_databases.php:88 #: server_privileges.php:1621 setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" @@ -1506,85 +1506,85 @@ msgid_plural "%1$d rows inserted." msgstr[0] "%1$d та қаторлар қўйилди." msgstr[1] "%1$d та қаторлар қўйилди." -#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:549 +#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:545 msgid "" "There is no detailed status information available for this storage engine." msgstr "Ушбу турдаги жадваллар ҳақида қўшимча маълумот мавжуд эмас. " -#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:291 +#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:287 #, php-format msgid "%s is available on this MySQL server." msgstr "Ушбу MySQL сервери \"%s\" турдаги жадваллар билан ишлай олади." -#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:292 +#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:288 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "\"%s\" туридаги жадваллар ушбу MySQL серверда фаолсизлантирилган." -#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:294 +#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:290 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "Ушбу MySQL сервери \"%s\" турдаги жадваллар билан ишлай олмайди." -#: libraries/Table.class.php:1019 libraries/messages.inc.php:443 +#: libraries/Table.class.php:1019 libraries/messages.inc.php:439 msgid "Invalid database" msgstr "Нотўғри маълумотлар базаси" -#: libraries/Table.class.php:1033 libraries/messages.inc.php:450 +#: libraries/Table.class.php:1033 libraries/messages.inc.php:446 #: tbl_get_field.php:26 msgid "Invalid table name" msgstr "Жадвал номи нотўғри" -#: libraries/Table.class.php:1048 libraries/messages.inc.php:301 +#: libraries/Table.class.php:1048 libraries/messages.inc.php:297 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "%1$s жадвалини %2$s деб қайта номлашда хатолик" -#: libraries/Table.class.php:1132 libraries/messages.inc.php:754 +#: libraries/Table.class.php:1132 libraries/messages.inc.php:750 #, php-format msgid "Table %s has been renamed to %s" msgstr "`\"%s\"` жадвалининг номи `\"%s\"` деб ўзгартирилди." -#: libraries/Theme.class.php:162 libraries/messages.inc.php:1099 +#: libraries/Theme.class.php:162 libraries/messages.inc.php:1095 #, php-format msgid "No valid image path for theme %s found!" msgstr " \"%s\" мавзуси расмларига тўғри йўл топилмади!" -#: libraries/Theme.class.php:384 libraries/messages.inc.php:1097 +#: libraries/Theme.class.php:384 libraries/messages.inc.php:1093 msgid "No preview available." msgstr "Олдиндан кўриш мумкин эмас." -#: libraries/Theme.class.php:387 libraries/messages.inc.php:1089 +#: libraries/Theme.class.php:387 libraries/messages.inc.php:1085 msgid "take it" msgstr "Тадбиқ қилиш" -#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1096 +#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1092 #, php-format msgid "Default theme %s not found!" msgstr " \"%s\" асл мавзуси топилмади!" -#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1098 +#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1094 #, php-format msgid "Theme %s not found!" msgstr " \"%s\" мавзуси топилмади!" -#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1100 +#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1096 #, php-format msgid "Theme path not found for theme %s!" msgstr " \"%s\" мавзуси файлларига йўл топилмади!" -#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1101 +#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1097 #: test/theme.php:161 themes.php:21 themes.php:41 msgid "Theme / Style" msgstr "Мавзу / Услуб" -#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:172 +#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:168 msgid "Cannot connect: invalid settings." msgstr "Уланиб бўлмади: нотўғри созланган." #: libraries/auth/config.auth.lib.php:92 #: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65 -#: libraries/messages.inc.php:1238 test/theme.php:152 +#: libraries/messages.inc.php:1234 test/theme.php:152 #, php-format msgid "Welcome to %s" msgstr "\"%s\" дастурига хуш келибсиз" @@ -1609,45 +1609,45 @@ msgstr "" "файлидаги хост, фойдаланувчи ва паролни текширинг ва улар MySQL сервери " "администраторидан олинган маълумотларга мос келишига ишонч ҳосил қилинг." -#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:488 +#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:484 msgid "Log in" msgstr "Авторизация" #: libraries/auth/cookie.auth.lib.php:246 -#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:659 +#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:655 #: libraries/navigation_header.inc.php:93 #: libraries/navigation_header.inc.php:95 msgid "phpMyAdmin documentation" msgstr "phpMyAdmin документацияси" #: libraries/auth/cookie.auth.lib.php:258 -#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:492 +#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:488 msgid "You can enter hostname/IP address and port separated by space." msgstr "Сиз хост/IP адрес ва бўш жой қолдириб портни киритишингиз мумкин." -#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:493 +#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:489 msgid "Server:" msgstr "Сервер" -#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:494 +#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:490 msgid "Username:" msgstr "Фойдаланувчи:" -#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:491 +#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:487 msgid "Password:" msgstr "Парол:" -#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:854 +#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:850 msgid "Server Choice" msgstr "Серверни танланг" #: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 -#: libraries/messages.inc.php:177 +#: libraries/messages.inc.php:173 msgid "Cookies must be enabled past this point." msgstr "Браузерда \"cookies\" фаоллаштирилган бўлиши шарт." #: libraries/auth/cookie.auth.lib.php:671 -#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:489 +#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:485 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" @@ -1655,7 +1655,7 @@ msgstr "" "AllowNoPassword)" #: libraries/auth/cookie.auth.lib.php:675 -#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:544 +#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:540 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" @@ -1664,53 +1664,53 @@ msgstr "" #: libraries/auth/cookie.auth.lib.php:685 #: libraries/auth/cookie.auth.lib.php:687 -#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:126 +#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:122 msgid "Cannot log in to the MySQL server" msgstr "MySQL серверига уланиб бўлмади" -#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1245 +#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1241 msgid "Wrong username/password. Access denied." msgstr "Киритилган маълумотлар нотўғри. Кириш мумкин эмас." #: libraries/auth/swekey/swekey.auth.lib.php:118 -#: libraries/messages.inc.php:1057 +#: libraries/messages.inc.php:1053 #, php-format msgid "File %s does not contain any key id" msgstr "\"%s\" файлида калит идентификатори мавжуд эмас" #: libraries/auth/swekey/swekey.auth.lib.php:157 #: libraries/auth/swekey/swekey.auth.lib.php:180 -#: libraries/messages.inc.php:1056 +#: libraries/messages.inc.php:1052 msgid "Hardware authentication failed" msgstr "Ускунавий аутентификация муваффақиятсиз якунланди" #: libraries/auth/swekey/swekey.auth.lib.php:166 -#: libraries/messages.inc.php:1058 +#: libraries/messages.inc.php:1054 msgid "No valid authentication key plugged" msgstr "Тўғри аутентификация калити уланмаган" #: libraries/auth/swekey/swekey.auth.lib.php:202 -#: libraries/messages.inc.php:1055 +#: libraries/messages.inc.php:1051 msgid "Authenticating..." msgstr "Aутентификация..." -#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1230 +#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1226 msgid "View image" msgstr "Расм кўриниши" -#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:652 +#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:648 msgid "Play audio" msgstr "Аудиофайлни ўқиш" -#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1232 +#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1228 msgid "View video" msgstr "Видео кўриниши" -#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:269 +#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:265 msgid "Download file" msgstr "Файлни юклаб олиш" -#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:128 +#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:124 msgid "" "Couldn't load the iconv or recode extension needed for charset conversion. " "Either configure PHP to enable these extensions or disable charset " @@ -1723,7 +1723,7 @@ msgstr "" #: libraries/charset_conversion.lib.php:79 #: libraries/charset_conversion.lib.php:90 -#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:130 +#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:126 msgid "" "Couldn't use the iconv, libiconv, or recode_string functions, although the " "necessary extensions appear to be loaded. Check your PHP configuration." @@ -1732,7 +1732,7 @@ msgstr "" "\"recode_string\" функциясини ишлатиб бўлмади. Эҳтимол, PHP ни созлашда " "хатолик мавжуд." -#: libraries/common.inc.php:583 libraries/messages.inc.php:170 +#: libraries/common.inc.php:583 libraries/messages.inc.php:166 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!" @@ -1767,7 +1767,7 @@ msgstr "" msgid "Invalid server index: %s" msgstr "Сервер рақами нотўғри: \"%s\"" -#: libraries/common.inc.php:636 libraries/messages.inc.php:448 +#: libraries/common.inc.php:636 libraries/messages.inc.php:444 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" @@ -1775,17 +1775,17 @@ msgstr "" "файлида белгиланган созлашларни тўғирланг." #: libraries/common.inc.php:645 libraries/header.inc.php:96 -#: libraries/messages.inc.php:856 libraries/select_server.lib.php:41 +#: libraries/messages.inc.php:852 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/messages.inc.php:437 +#: libraries/common.inc.php:823 libraries/messages.inc.php:433 msgid "Invalid authentication method set in configuration:" msgstr "" "phpMyAdmin конфигурацион файлида нотўғри аутентификация усули белгиланган:" -#: libraries/common.lib.php:147 libraries/messages.inc.php:499 +#: libraries/common.lib.php:147 libraries/messages.inc.php:495 #, php-format msgid "Max: %s%s" msgstr "Максимал ҳажми: \"%s\"%s\"" @@ -1807,7 +1807,7 @@ msgstr "Юборилди" #: libraries/common.lib.php:428 libraries/common.lib.php:430 #: libraries/common.lib.php:432 libraries/common.lib.php:448 #: libraries/common.lib.php:450 libraries/dbg/setup.php:25 -#: libraries/display_export.lib.php:164 libraries/messages.inc.php:267 +#: libraries/display_export.lib.php:164 libraries/messages.inc.php:263 #: libraries/relation.lib.php:97 libraries/sql_query_form.lib.php:451 #: libraries/sql_query_form.lib.php:454 main.php:229 pdf_pages.php:37 #: pdf_pages.php:43 pdf_pages.php:49 pdf_pages.php:54 @@ -1817,55 +1817,55 @@ msgstr "Документация" #: libraries/common.lib.php:581 libraries/core.lib.php:234 #: libraries/core.lib.php:263 libraries/import.lib.php:134 -#: libraries/messages.inc.php:297 pdf_schema.php:32 pdf_schema.php:232 +#: libraries/messages.inc.php:293 pdf_schema.php:32 pdf_schema.php:232 #: tbl_change.php:1027 tbl_operations.php:213 tbl_relation.php:290 #: view_operations.php:62 msgid "Error" msgstr "Хатолик" #: libraries/common.lib.php:595 libraries/header_printview.inc.php:61 -#: libraries/messages.inc.php:1023 server_processlist.php:60 +#: libraries/messages.inc.php:1019 server_processlist.php:60 #: server_status.php:247 msgid "SQL query" msgstr "SQL сўрови" -#: libraries/common.lib.php:634 libraries/messages.inc.php:538 +#: libraries/common.lib.php:634 libraries/messages.inc.php:534 msgid "MySQL said: " msgstr "MySQL жавоби: " -#: libraries/common.lib.php:667 libraries/messages.inc.php:76 +#: libraries/common.lib.php:667 libraries/messages.inc.php:72 #: pdf_schema.php:241 user_password.php:115 msgid "Back" msgstr "Орқага" -#: libraries/common.lib.php:1177 libraries/messages.inc.php:309 +#: libraries/common.lib.php:1177 libraries/messages.inc.php:305 #: setup/lib/messages.inc.php:353 msgid "Explain SQL" msgstr "Сўров таҳлили" -#: libraries/common.lib.php:1180 libraries/messages.inc.php:551 +#: libraries/common.lib.php:1180 libraries/messages.inc.php:547 msgid "Skip Explain SQL" msgstr "Таҳлил керак эмас" -#: libraries/common.lib.php:1212 libraries/messages.inc.php:563 +#: libraries/common.lib.php:1212 libraries/messages.inc.php:559 msgid "Without PHP Code" msgstr "PHP-код олиб ташлаш" -#: libraries/common.lib.php:1215 libraries/messages.inc.php:649 +#: libraries/common.lib.php:1215 libraries/messages.inc.php:645 #: setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "PHP-код" -#: libraries/common.lib.php:1233 libraries/messages.inc.php:737 +#: libraries/common.lib.php:1233 libraries/messages.inc.php:733 #: server_status.php:341 setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "Янгилаш" -#: libraries/common.lib.php:1242 libraries/messages.inc.php:575 +#: libraries/common.lib.php:1242 libraries/messages.inc.php:571 msgid "Skip Validate SQL" msgstr "SQL синтаксиси текширувини олиб ташлаш" -#: libraries/common.lib.php:1245 libraries/messages.inc.php:1220 +#: libraries/common.lib.php:1245 libraries/messages.inc.php:1216 #: setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "SQL тўғрилигини текшириш" @@ -1881,11 +1881,11 @@ msgid "Inline" msgstr "Жадвал турлари" #: libraries/common.lib.php:1332 libraries/common.lib.php:1347 -#: libraries/messages.inc.php:713 +#: libraries/messages.inc.php:709 msgid "Profiling" msgstr "Профиллаштириш" -#: libraries/common.lib.php:1351 libraries/messages.inc.php:1108 +#: libraries/common.lib.php:1351 libraries/messages.inc.php:1104 #: libraries/tbl_triggers.lib.php:28 server_processlist.php:58 msgid "Time" msgstr "Вақт" @@ -1919,40 +1919,50 @@ msgstr "ПБ" msgid "EiB" msgstr "ЭБ" +#. l10n: Thousands separator +#: libraries/common.lib.php:1417 +msgid "," +msgstr " " + +#. l10n: Decimal separator +#: libraries/common.lib.php:1419 +msgid "." +msgstr "," + #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1584 +#: libraries/common.lib.php:1596 #: libraries/transformations/text_plain__dateformat.inc.php:28 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y й., %H:%M" -#: libraries/common.lib.php:1886 +#: libraries/common.lib.php:1898 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "\"%s\" кун, \"%s\" соат, \"%s\" минут ва \"%s\" секунд" -#: libraries/common.lib.php:2301 libraries/common.lib.php:2304 -#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:664 +#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:660 #: server_status.php:608 msgid "Begin" msgstr "Боши" -#: libraries/common.lib.php:2302 libraries/common.lib.php:2305 -#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:665 +#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:661 #: server_binlog.php:168 server_binlog.php:170 msgid "Previous" msgstr "Орқага" -#: libraries/common.lib.php:2333 libraries/common.lib.php:2336 -#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:289 +#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:285 msgid "End" msgstr "Охири" -#: libraries/common.lib.php:2409 libraries/messages.inc.php:455 +#: libraries/common.lib.php:2421 libraries/messages.inc.php:451 #, php-format msgid "Jump to database "%s"." msgstr " \"%s\" маълумотлар базасига ўтиш" -#: libraries/common.lib.php:2429 libraries/messages.inc.php:461 +#: libraries/common.lib.php:2441 libraries/messages.inc.php:457 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" @@ -1960,7 +1970,7 @@ msgstr "" "маълумот учун қаранг \"%s\"" #: libraries/core.lib.php:286 libraries/dbg/setup.php:22 -#: libraries/messages.inc.php:127 +#: libraries/messages.inc.php:123 #, php-format msgid "" "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " @@ -1970,74 +1980,74 @@ msgstr "" "бўлмади! PHP конфигурациясини созланг." #: libraries/db_events.inc.php:20 libraries/db_events.inc.php:22 -#: libraries/export/sql.php:415 libraries/messages.inc.php:306 +#: libraries/export/sql.php:415 libraries/messages.inc.php:302 msgid "Events" msgstr "Ҳодисалар" #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 -#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:541 +#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:537 #: libraries/tbl_triggers.lib.php:27 setup/frames/index.inc.php:112 msgid "Name" msgstr "Номи" -#: libraries/db_links.inc.php:45 libraries/messages.inc.php:216 +#: libraries/db_links.inc.php:45 libraries/messages.inc.php:212 #, php-format msgid "Database %s has been dropped." msgstr " \"%s\" маълумотлар омбори ўчирилди." #: libraries/db_links.inc.php:57 libraries/db_links.inc.php:58 -#: libraries/db_links.inc.php:59 libraries/messages.inc.php:234 +#: libraries/db_links.inc.php:59 libraries/messages.inc.php:230 msgid "Database seems to be empty!" msgstr "Маълумотлар базаси бўш!" -#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1025 +#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1021 #: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60 #: querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1152 +#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1148 #: libraries/tbl_links.inc.php:69 msgid "Tracking" msgstr "Кузатиш" -#: libraries/db_links.inc.php:86 libraries/messages.inc.php:719 +#: libraries/db_links.inc.php:86 libraries/messages.inc.php:715 msgid "Query" msgstr "Сўров" -#: libraries/db_links.inc.php:91 libraries/messages.inc.php:253 +#: libraries/db_links.inc.php:91 libraries/messages.inc.php:249 msgid "Designer" msgstr "Дизайнер" -#: libraries/db_links.inc.php:98 libraries/messages.inc.php:397 +#: libraries/db_links.inc.php:98 libraries/messages.inc.php:393 #: libraries/server_links.inc.php:88 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:104 libraries/messages.inc.php:587 +#: libraries/db_links.inc.php:104 libraries/messages.inc.php:583 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" msgstr "Операциялар" -#: libraries/db_links.inc.php:111 libraries/messages.inc.php:709 +#: libraries/db_links.inc.php:111 libraries/messages.inc.php:705 #: libraries/server_links.inc.php:66 server_privileges.php:72 #: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117 msgid "Privileges" msgstr "Привилегиялар" #: libraries/db_routines.inc.php:30 libraries/db_routines.inc.php:32 -#: libraries/messages.inc.php:812 +#: libraries/messages.inc.php:808 msgid "Routines" msgstr "Муолажалар" -#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:811 +#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:807 msgid "Return type" msgstr "Қайтариладиган тип" #: libraries/db_structure.lib.php:57 libraries/display_tbl.lib.php:1848 -#: libraries/messages.inc.php:65 +#: libraries/messages.inc.php:61 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -2045,44 +2055,44 @@ msgstr "" "Тахминий бўлиши мумкин. [a@./Documentation.html#faq3_11@Documentation]\"FAQ " "3.11\"[/a]га қаранг" -#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:593 +#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:589 #: server_databases.php:142 tbl_printview.php:336 tbl_structure.php:683 msgid "Overhead" msgstr "Фрагментланган" #: libraries/dbi/mysql.dbi.lib.php:112 libraries/dbi/mysqli.dbi.lib.php:124 -#: libraries/messages.inc.php:176 +#: libraries/messages.inc.php:172 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "\"config.inc.php\" конфигурацион файлининг \"controluser\" директивасида " "кўрсатилган фойдаланувчи ёрдамида уланиб бўлмади." #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 -#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:855 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:851 msgid "The server is not responding" msgstr "Сервер жавоб бермаяпти" #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:1010 +#: libraries/messages.inc.php:1006 msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "(ёки локал MySQL сервернинг сокети нотўғри созланган)" -#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:255 +#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:251 #: tbl_structure.php:609 msgid "Details..." msgstr "Тафсилотлар..." -#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:143 +#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:139 #: main.php:91 user_password.php:111 user_password.php:129 msgid "Change password" msgstr "Паролни ўзгартириш" -#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:561 +#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:557 #: libraries/replication_gui.lib.php:341 server_privileges.php:768 msgid "No Password" msgstr "Парол йўқ" -#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:610 +#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:606 #: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60 #: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335 #: libraries/replication_gui.lib.php:345 server_privileges.php:757 @@ -2091,13 +2101,13 @@ msgstr "Парол йўқ" msgid "Password" msgstr "Парол" -#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:806 +#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:802 #: libraries/replication_gui.lib.php:349 libraries/replication_gui.lib.php:352 #: server_privileges.php:776 server_privileges.php:779 msgid "Re-type" msgstr "Тасдиқлаш" -#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:608 +#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:604 msgid "Password Hashing" msgstr "Паролни хешлаш" @@ -2107,91 +2117,91 @@ msgstr "Паролни хешлаш" msgid "MySQL 4.0 compatible" msgstr "MySQL 4.0 га мос" -#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:353 +#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:349 #: libraries/replication_gui.lib.php:356 server_privileges.php:783 msgid "Generate Password" msgstr "Парол ўрнатиш" -#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:352 +#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:348 #: libraries/replication_gui.lib.php:359 server_privileges.php:786 msgid "Generate" msgstr "Генерация қилиш" #: libraries/display_create_database.lib.php:22 -#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:189 +#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:185 msgid "Create new database" msgstr "Янги маълумотлар базаси тузиш" -#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:185 +#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:181 msgid "Create" msgstr "Тузиш" -#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:564 +#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:560 #: server_privileges.php:74 server_privileges.php:1388 #: server_replication.php:35 msgid "No Privileges" msgstr "Привилегиялар йўқ" -#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:445 +#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:441 msgid "Table must have at least one field." msgstr "Жадвалда, ҳеч бўлмаганда, битта майдон бўлиши шарт." -#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:190 +#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:186 #, php-format msgid "Create table on database %s" msgstr "\"%s\" маълумотлар базасида янги жадвал тузиш" -#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:577 +#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:573 msgid "Number of fields" msgstr "Майдонлар сони " -#: libraries/display_export.lib.php:42 libraries/messages.inc.php:124 +#: libraries/display_export.lib.php:42 libraries/messages.inc.php:120 msgid "Could not load export plugins, please check your installation!" msgstr "" "Экспорт модуллари мавжуд эмас! Ўрнатилган phpMyAdmin нусхасининг libraries/" "export каталогини текширинг." -#: libraries/display_export.lib.php:107 libraries/messages.inc.php:277 +#: libraries/display_export.lib.php:107 libraries/messages.inc.php:273 #, php-format msgid "Dump %s row(s) starting at record # %s" msgstr "# %s ёзувидан бошлаб %s сатрни дамп қилиш." -#: libraries/display_export.lib.php:115 libraries/messages.inc.php:274 +#: libraries/display_export.lib.php:115 libraries/messages.inc.php:270 msgid "Dump all rows" msgstr "Барча қаторларни дамп қилиш" -#: libraries/display_export.lib.php:125 libraries/messages.inc.php:852 +#: libraries/display_export.lib.php:125 libraries/messages.inc.php:848 #: setup/lib/messages.inc.php:82 msgid "Save as file" msgstr "Файл каби сақлаш" -#: libraries/display_export.lib.php:134 libraries/messages.inc.php:828 +#: libraries/display_export.lib.php:134 libraries/messages.inc.php:824 #, php-format msgid "Save on server in %s directory" msgstr "Сервердаги \"%s\" каталокка сақлаш" -#: libraries/display_export.lib.php:142 libraries/messages.inc.php:594 +#: libraries/display_export.lib.php:142 libraries/messages.inc.php:590 #: setup/lib/messages.inc.php:90 msgid "Overwrite existing file(s)" msgstr "Мавжуд файл(лар) устидан ёзиш" -#: libraries/display_export.lib.php:148 libraries/messages.inc.php:330 +#: libraries/display_export.lib.php:148 libraries/messages.inc.php:326 msgid "File name template" msgstr "Файл номи шаблони" -#: libraries/display_export.lib.php:152 libraries/messages.inc.php:327 +#: libraries/display_export.lib.php:152 libraries/messages.inc.php:323 msgid "server name" msgstr "сервер номи" -#: libraries/display_export.lib.php:155 libraries/messages.inc.php:326 +#: libraries/display_export.lib.php:155 libraries/messages.inc.php:322 msgid "database name" msgstr "маълумотлар базаси номи" -#: libraries/display_export.lib.php:158 libraries/messages.inc.php:328 +#: libraries/display_export.lib.php:158 libraries/messages.inc.php:324 msgid "table name" msgstr "жадвал номи" -#: libraries/display_export.lib.php:162 libraries/messages.inc.php:329 +#: libraries/display_export.lib.php:162 libraries/messages.inc.php:325 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2202,24 +2212,24 @@ msgstr "" "вақт ва санани қўйиш мумкин. Қўшимча равишда қуйидагилар ишлатилиши мумкин: %" "3$s. Матннинг бошқа қисмлари ўзгаришсиз қолади." -#: libraries/display_export.lib.php:202 libraries/messages.inc.php:331 +#: libraries/display_export.lib.php:202 libraries/messages.inc.php:327 msgid "remember template" msgstr " шаблонни ёдда тутиш" #: libraries/display_export.lib.php:210 libraries/display_import.lib.php:178 -#: libraries/display_import.lib.php:191 libraries/messages.inc.php:145 +#: libraries/display_import.lib.php:191 libraries/messages.inc.php:141 #: libraries/sql_query_form.lib.php:549 msgid "Character set of the file:" msgstr "Файл кодировкаси: " -#: libraries/display_export.lib.php:235 libraries/messages.inc.php:166 +#: libraries/display_export.lib.php:235 libraries/messages.inc.php:162 #: setup/lib/messages.inc.php:84 msgid "Compression" 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/messages.inc.php:558 +#: libraries/export/sql.php:868 libraries/messages.inc.php:554 #: libraries/tbl_properties.inc.php:575 server_privileges.php:1836 #: server_processlist.php:75 msgid "None" @@ -2243,11 +2253,11 @@ msgstr "gzip" msgid "bzipped" msgstr "bzip ёрдамида сиқилган" -#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1018 +#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1014 msgid "SQL compatibility mode" msgstr "SQL билан мослик режими" -#: libraries/display_import.lib.php:67 libraries/messages.inc.php:398 +#: libraries/display_import.lib.php:67 libraries/messages.inc.php:394 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " @@ -2257,11 +2267,11 @@ msgstr "" "асосланган браузерларнинг (Safari, Google Chrome, Arora ва ҳкз) маълум " "камчилиги." -#: libraries/display_import.lib.php:77 libraries/messages.inc.php:406 +#: libraries/display_import.lib.php:77 libraries/messages.inc.php:402 msgid "The file is being processed, please be patient." msgstr "Файл қайта ишланмоқда, илтимос, сабр қилинг." -#: libraries/display_import.lib.php:99 libraries/messages.inc.php:408 +#: libraries/display_import.lib.php:99 libraries/messages.inc.php:404 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." @@ -2269,40 +2279,40 @@ msgstr "" "Сабр қилинг, файл юкланмоқда. Ушбу юкланиш ҳақида батафсил маълумот мавжуд " "эмас." -#: libraries/display_import.lib.php:126 libraries/messages.inc.php:333 +#: libraries/display_import.lib.php:126 libraries/messages.inc.php:329 msgid "File to import" msgstr "Импорт қилинаётган файл " -#: libraries/display_import.lib.php:137 libraries/messages.inc.php:486 +#: libraries/display_import.lib.php:137 libraries/messages.inc.php:482 #: libraries/sql_query_form.lib.php:524 msgid "Location of the text file" msgstr "Файлни танлаш" -#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1203 +#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1199 msgid "File uploads are not allowed on this server." msgstr "Файлларни серверга юклаб бўлмади." -#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1235 +#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1231 #: libraries/sql_query_form.lib.php:533 tbl_change.php:1028 msgid "The directory you set for upload work cannot be reached" msgstr "Кўрсатилган каталокка юклаб бўлмади" -#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1236 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1232 #: libraries/sql_query_form.lib.php:536 tbl_change.php:1031 msgid "web server upload directory" msgstr "Юклаш каталогидан" -#: libraries/display_import.lib.php:212 libraries/messages.inc.php:167 +#: libraries/display_import.lib.php:212 libraries/messages.inc.php:163 #, php-format msgid "Imported file compression will be automatically detected from: %s" msgstr "" "Импорт қилинган файл сиқиш турини автоматик аниқлаш, вариантлар: \"%s\"" -#: libraries/display_import.lib.php:219 libraries/messages.inc.php:600 +#: libraries/display_import.lib.php:219 libraries/messages.inc.php:596 msgid "Partial import" msgstr "Қисман импорт" -#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1105 +#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1101 #, php-format msgid "" "Previous import timed out, after resubmitting will continue from position %d." @@ -2310,7 +2320,7 @@ msgstr "" "Чегараланган вақт яқинлашганлиги сабабли, импорт жараёни узилди. Қайта ишга " "туширилганда, импорт жараёни %d позициядандавом этади." -#: libraries/display_import.lib.php:232 libraries/messages.inc.php:51 +#: libraries/display_import.lib.php:232 libraries/messages.inc.php:47 msgid "" "Allow the interruption of an import in case the script detects it is close " "to the PHP timeout limit. This might be good way to import large files, " @@ -2320,177 +2330,177 @@ msgstr "" "Катта ҳажмдаги файлларни импорт қилишда қўл келиши мумкин, аммо бунда " "транзакция узилиши мумкин." -#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1004 +#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1000 #: setup/lib/messages.inc.php:161 msgid "Number of records (queries) to skip from start" msgstr "Файл бошидаги эътибор бериш керак бўлмаган қаторлар (сўровлар) сони" -#: libraries/display_import.lib.php:255 libraries/messages.inc.php:396 +#: libraries/display_import.lib.php:255 libraries/messages.inc.php:392 #: setup/lib/messages.inc.php:160 msgid "Format of imported file" msgstr "Импорт қилинаётган файл формати" #: libraries/display_select_lang.lib.php:45 -#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:465 +#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:461 #: setup/frames/index.inc.php:70 msgid "Language" msgstr "Тил" -#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:447 +#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:443 #, php-format msgid "%d is not valid row number." msgstr " %d сони тўғри қатор рақами эмас!" -#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:814 +#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:810 msgid "row(s) starting from record #" msgstr "та қатор қуйидаги қатордан бошлаб " -#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:817 +#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:813 msgid "horizontal" msgstr "горизонтал" -#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:816 +#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:812 msgid "horizontal (rotated headers)" msgstr "горизонтал (айлантирилган сарлавҳалар)" -#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:819 +#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:815 msgid "vertical" msgstr "вертикал" -#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:818 +#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:814 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "\"%s\" режимида ва сарлавҳаларни ҳар \"%s\" катакчадан кейин такрорлаш" -#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:495 +#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:491 msgid "This operation could take a long time. Proceed anyway?" msgstr "Ушбу операцияни бажариш узоқ вақт талаб қилиши мумкин. Давом этсинми? " -#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1012 +#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1008 msgid "Sort by key" msgstr "Индекс бўйича сортировка қилиш" #: libraries/display_tbl.lib.php:555 libraries/import.lib.php:1082 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:591 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:587 #: tbl_select.php:267 tbl_structure.php:754 msgid "Options" msgstr "Параметрлар" #: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:570 -#: libraries/messages.inc.php:601 +#: libraries/messages.inc.php:597 msgid "Partial Texts" msgstr "Маълумотларни қисқартириб кўрсатиш" #: libraries/display_tbl.lib.php:561 libraries/display_tbl.lib.php:574 -#: libraries/messages.inc.php:346 +#: libraries/messages.inc.php:342 msgid "Full Texts" msgstr "Маълумотларни кенгайтирилган ҳолда кўрсатиш" -#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:739 +#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:735 msgid "Relational key" msgstr "Алоқадор калит" -#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:738 +#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:734 msgid "Relational display field" msgstr "Алоқадор майдон қиймати" -#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:872 +#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:868 msgid "Show binary contents" msgstr "Иккилик маълумотларни кўрсатиш" -#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:873 +#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:869 msgid "Show BLOB contents" msgstr "BLOB туридаги маълумотларни кўрсатиш" -#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:871 +#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:867 msgid "Show binary contents as HEX" msgstr "Иккилик маълумотларни ўн олтилик шаклда кўрсатиш" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:375 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:371 #: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320 msgid "Hide" msgstr "Яшириш" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:508 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:504 #: libraries/tbl_properties.inc.php:144 transformation_overview.php:47 msgid "Browser transformation" msgstr "Ўгириш" #: libraries/display_tbl.lib.php:1126 libraries/display_tbl.lib.php:1130 -#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:308 +#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:304 msgid "Execute bookmarked query" msgstr "Белгиланган сўровни бажариш" #: libraries/display_tbl.lib.php:1145 libraries/display_tbl.lib.php:1157 -#: libraries/messages.inc.php:244 +#: libraries/messages.inc.php:240 msgid "The row has been deleted" msgstr "Ёзув ўчирилди" #: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056 -#: libraries/messages.inc.php:460 server_processlist.php:71 +#: libraries/messages.inc.php:456 server_processlist.php:71 #: tbl_row_action.php:64 msgid "Kill" msgstr "Тугатиш" -#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:849 +#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:845 msgid "in query" msgstr "сўров бўйича" -#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:881 +#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:877 msgid "Showing rows" msgstr "Ёзувларни кўрсатиш" -#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1113 +#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1109 msgid "total" msgstr "жами" -#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:727 +#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:723 #: sql.php:524 #, php-format msgid "Query took %01.4f sec" msgstr "Сўров %01.4f секунд вақт олди" -#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:135 +#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:131 #: 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:471 msgid "Change" msgstr "Ўзгартириш" -#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:724 +#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:720 msgid "Query results operations" msgstr "Сўров натижаларини ишлатиш" -#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:671 +#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:667 msgid "Print view (with full texts)" msgstr "Чоп этиш версияси (тўла)" -#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:482 +#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:478 msgid "Link not found" msgstr "Алоқа топилмади" -#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1224 +#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1220 #: main.php:228 msgid "Version information" msgstr "Версия ҳақида маълумот" -#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:423 +#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:419 msgid "Data home directory" msgstr "Маълумотлар учун уй каталог" -#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:424 +#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:420 msgid "The common part of the directory path for all InnoDB data files." msgstr "InnoDB маълумотлар файллари сақланадиган каталог йўлининг умумий қисми" -#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:422 +#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:418 msgid "Data files" msgstr "Маълумотлар файли" -#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:418 +#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:414 msgid "Autoextend increment" msgstr "Автоматик ошириб бориш" -#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:419 +#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:415 msgid "" " The increment size for extending the size of an autoextending tablespace " "when it becomes full." @@ -2498,11 +2508,11 @@ msgstr "" "Жадвалда жой тугаганда маълумотлар файли ҳажмини автоматик ошириш " "(мегабайтларда) " -#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:420 +#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:416 msgid "Buffer pool size" msgstr "Буфер пули ҳажми" -#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:421 +#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:417 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." @@ -2510,87 +2520,87 @@ msgstr "" "Маълумотларни ва жадвал индексларини кешлашда InnoDB ишлатадиган хотира " "буфери ҳажми" -#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:112 +#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:108 msgid "Buffer Pool" msgstr "Буфер пули" -#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:426 +#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:422 #: server_status.php:306 msgid "InnoDB Status" msgstr "InnoDB аҳволи" -#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:113 +#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:109 msgid "Buffer Pool Usage" msgstr "Ишлатилиш" -#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1114 +#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1110 #: server_databases.php:137 server_databases.php:305 server_status.php:414 #: server_status.php:475 server_status.php:496 tbl_printview.php:351 #: tbl_structure.php:697 msgid "Total" msgstr "Жами" -#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:425 +#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:421 msgid "pages" msgstr "саҳифалар сони " -#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:343 +#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:339 msgid "Free pages" msgstr "Бўш саҳифалар сони " -#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:259 +#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:255 msgid "Dirty pages" msgstr "Кир саҳифалар" -#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:230 +#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:226 msgid "Pages containing data" msgstr "Маълумотлар мавжуд саҳифалар" -#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:598 +#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:594 msgid "Pages to be flushed" msgstr "Тозалаш керак бўлган саҳифалар сони: " -#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:119 +#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:115 msgid "Busy pages" msgstr "Банд саҳифалар" -#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:467 +#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:463 msgid "Latched pages" msgstr "Блокировка қилинган саҳифалар сони: " -#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:111 +#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:107 msgid "Buffer Pool Activity" msgstr "Фаоллик" -#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:731 +#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:727 msgid "Read requests" msgstr "Ўқишга рухсат сўраш" -#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1244 +#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1240 msgid "Write requests" msgstr "Ёзишга бўлган сўровлар сони" -#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:115 +#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:111 msgid "Read misses" msgstr "Буферни ўқишда қолдиришлар мавжуд" -#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:117 +#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:113 msgid "Write waits" msgstr "Буфернинг тозаланиши кутилмоқда" -#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:114 +#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:110 msgid "Read misses in %" msgstr "Буферни ўқишда % қолдиришлар мавжуд " -#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:116 +#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:112 msgid "Write waits in %" msgstr " % буфернинг тозаланиши кутилмоқда" -#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:522 +#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:518 msgid "Data pointer size" msgstr "Маълумотлар файли кўрсатгичи ҳажми" -#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:523 +#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:519 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." @@ -2599,11 +2609,11 @@ msgstr "" "туридаги жадвал тузишда (CREATE TABLE) ишлатиладиган маълумотлар файли " "кўрсатгичи ҳажми (байтларда)." -#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:528 +#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:524 msgid "Automatic recovery mode" msgstr "Автоматик тиклаш режими" -#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:529 +#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:525 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." @@ -2611,11 +2621,11 @@ msgstr "" "Жадвал бузилганда автоматик тиклаш режими. Сервер ишга туширилганда, --" "myisam-recover параметри орқали белгиланади." -#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:527 +#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:523 msgid "Maximum size for temporary sort files" msgstr "Вақтинчалик индекс файлларининг максимал ҳажми" -#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:526 +#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:522 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " @@ -2626,11 +2636,11 @@ msgstr "" "ҳажми. Агар файл ҳажми берилган қийматдан ошса, унда индекс кеши ёрдамида " "индекс тузилади (бундай алгоритм секинроқ лекин барқарорроқ ишлайди)." -#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:525 +#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:521 msgid "Maximum size for temporary files on index creation" msgstr "Индексни тузишда ишлатиладиган вақтинчалик файл ҳажми" -#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:524 +#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:520 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " @@ -2640,11 +2650,11 @@ msgstr "" "вақтинчалик файл ҳажми бу ерда кўрсатилган ҳажмдан катта бўлса, индексни " "кешлашнинг секинроқ лекин барқарорроқ усулига афзаллик берилади." -#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:531 +#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:527 msgid "Repair threads" msgstr "Оқимли тиклаш" -#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:530 +#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:526 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." @@ -2652,11 +2662,11 @@ msgstr "" "Агар қиймат бирдан катта бўлса, MyISAM туридаги жадвал индекслари тиклаш " "вақтида параллел равишда сортировка (Repair by sorting) ёрдамида тузилган." -#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:533 +#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:529 msgid "Sort buffer size" msgstr "Сортировка буфери ҳажми" -#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:532 +#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:528 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." @@ -2665,11 +2675,11 @@ msgstr "" "ёки ALTER TABLE буйруқлари ёрдамида индекс тузиш учун керак бўлган буфер " "ҳажми." -#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:620 +#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:616 msgid "Index cache size" msgstr "Индекс кеши ҳажми" -#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:619 +#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:615 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." @@ -2677,11 +2687,11 @@ msgstr "" "Индекслар кешига ажратилган хотира ҳажми. Асл қиймати – 32 Мб. Бунда " "ажратилган хотира фақатгина индекс саҳифаларни кешлашда фойдаланилади." -#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:630 +#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:626 msgid "Record cache size" msgstr "Ёзиш кеши ҳажми" -#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:629 +#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:625 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " @@ -2691,11 +2701,11 @@ msgstr "" "Мб. Ушбу хотира маълумотларни сақлаш файллари(.xtd)даги ва қатор " "кўрсатгичлари(.xtr)даги ўзгаришларни кешлашда ишлатилади. " -#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:624 +#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:620 msgid "Log cache size" msgstr "Журнал кеши ҳажми" -#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:623 +#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:619 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." @@ -2703,11 +2713,11 @@ msgstr "" "Транзакциялар журнали маълумотларини кешлаш учун ажратилган хотира ҳажми. " "Асл қиймати – 16 Мб." -#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:628 +#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:624 msgid "Log file threshold" msgstr "Журнал файли остонаси" -#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:627 +#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:623 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." @@ -2715,11 +2725,11 @@ msgstr "" "Транзакциялар журналининг қайтишгача ва янги журнал тузишгача ҳажми. Асл " "қиймати – 26 Мб." -#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:634 +#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:630 msgid "Transaction buffer size" msgstr "Транзакциялар буфери ҳажми" -#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:633 +#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:629 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." @@ -2727,11 +2737,11 @@ msgstr "" "Транзакция журналлари учун глобал буфер ҳажми (дастур шу ҳажмдаги 2 та буфер " "ажратади). Асл қиймати – 1 Мб." -#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:611 +#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:607 msgid "Checkpoint frequency" msgstr "Текширув частотаси" -#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:612 +#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:608 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." @@ -2739,11 +2749,11 @@ msgstr "" "Текширув амалга оширилганга қадар транзакциялар журналида ёзилган " "маълумотлар ҳажми. Асл қиймати – 24 Мб." -#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:615 +#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:611 msgid "Data log threshold" msgstr "Маълумотлар журнали остонаси" -#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:616 +#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:612 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -2755,11 +2765,11 @@ msgstr "" "мумкин. Шундай қилиб, маълумотлар базасида сақланадиган маълумотларнинг " "умумий ҳажмини ошириш учун ушбу ўзгарувчининг қийматини ошириш мумкин." -#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:618 +#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:614 msgid "Garbage threshold" msgstr "Ахлатланиш остонаси" -#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:617 +#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:613 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." @@ -2767,11 +2777,11 @@ msgstr "" "Ихчамлаштиришдан олдин маълумотлар журнали файли ахлатланишининг фоиз " "нисбати. Қиймат 1 ва 99 орасидабўлиши шарт. Асл қиймати – 50." -#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:622 +#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:618 msgid "Log buffer size" msgstr "Журнал буфери ҳажми" -#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:621 +#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:617 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " @@ -2781,27 +2791,27 @@ msgstr "" "Мб. Агар оқим журнал маълумотларини ёзиш учун керак бўлсагина, дастур ҳар " "бир оқимга битта буфер ажратади." -#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:613 +#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:609 msgid "Data file grow size" msgstr "Маълумотлар файлларининг ошиш ҳажми" -#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:614 +#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:610 msgid "The grow size of the handle data (.xtd) files." msgstr "Маълумотларни сақлаш файллари(.xtd)нинг ошиш ҳажми." -#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:632 +#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:628 msgid "Row file grow size" msgstr "Қатор файлларининг ошиш ҳажми" -#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:631 +#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:627 msgid "The grow size of the row pointer (.xtr) files." msgstr "Қатор кўрсатгичлари файллари(.xtr)нинг ошиш ҳажми." -#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:626 +#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:622 msgid "Log file count" msgstr "Журнал файллари сони" -#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:625 +#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:621 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -2815,19 +2825,19 @@ msgstr "" #: libraries/export/htmlword.php:132 libraries/export/odt.php:168 #: libraries/export/sql.php:881 libraries/export/texytext.php:130 -#: libraries/messages.inc.php:275 +#: libraries/messages.inc.php:271 msgid "Dumping data for table" msgstr "Жадвал маълумотларини дамп қилиш" #: libraries/export/htmlword.php:185 libraries/export/odt.php:238 #: libraries/export/sql.php:785 libraries/export/texytext.php:177 -#: libraries/messages.inc.php:1086 +#: libraries/messages.inc.php:1082 msgid "Table structure for table" msgstr "Жадвал тузилиши" #: libraries/export/latex.php:125 libraries/export/sql.php:232 #: libraries/export/xml.php:102 libraries/header_printview.inc.php:57 -#: libraries/messages.inc.php:381 libraries/replication_gui.lib.php:63 +#: libraries/messages.inc.php:377 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:170 libraries/replication_gui.lib.php:265 #: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325 #: server_privileges.php:692 server_privileges.php:695 @@ -2839,187 +2849,187 @@ msgstr "Хост" #: libraries/export/latex.php:130 libraries/export/sql.php:233 #: libraries/export/xml.php:107 libraries/header_printview.inc.php:59 -#: libraries/messages.inc.php:354 +#: libraries/messages.inc.php:350 msgid "Generation Time" msgstr "Тузилган сана " #: libraries/export/latex.php:131 libraries/export/sql.php:235 -#: libraries/export/xml.php:108 libraries/messages.inc.php:864 main.php:186 +#: libraries/export/xml.php:108 libraries/messages.inc.php:860 main.php:186 msgid "Server version" msgstr "Сервер версияси" #: libraries/export/latex.php:132 libraries/export/sql.php:236 -#: libraries/export/xml.php:109 libraries/messages.inc.php:651 +#: libraries/export/xml.php:109 libraries/messages.inc.php:647 msgid "PHP Version" msgstr "PHP версиясм" #: libraries/export/latex.php:201 libraries/export/sql.php:868 -#: libraries/messages.inc.php:226 server_databases.php:127 +#: libraries/messages.inc.php:222 server_databases.php:127 #: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317 #: tbl_structure.php:666 msgid "Data" msgstr "Маълумотлар" -#: libraries/export/odt.php:318 libraries/messages.inc.php:506 +#: libraries/export/odt.php:318 libraries/messages.inc.php:502 #: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "MIME тури" -#: libraries/export/sql.php:387 libraries/messages.inc.php:711 +#: libraries/export/sql.php:387 libraries/messages.inc.php:707 msgid "Procedures" msgstr "Муолажалар" -#: libraries/export/sql.php:401 libraries/messages.inc.php:348 +#: libraries/export/sql.php:401 libraries/messages.inc.php:344 msgid "Functions" msgstr "Функциялар" -#: libraries/export/sql.php:618 libraries/messages.inc.php:174 +#: libraries/export/sql.php:618 libraries/messages.inc.php:170 msgid "Constraints for dumped tables" msgstr "Сақланган жадвалларнинг ташқи калитида чекловлар" -#: libraries/export/sql.php:627 libraries/messages.inc.php:175 +#: libraries/export/sql.php:627 libraries/messages.inc.php:171 msgid "Constraints for table" msgstr "Жадвалларнинг ташқи калитида чекловлар" -#: libraries/export/sql.php:727 libraries/messages.inc.php:512 +#: libraries/export/sql.php:727 libraries/messages.inc.php:508 msgid "MIME TYPES FOR TABLE" msgstr "ЖАДВАЛ УЧУН MIME ТУРЛАРИ" -#: libraries/export/sql.php:739 libraries/messages.inc.php:743 +#: libraries/export/sql.php:739 libraries/messages.inc.php:739 msgid "RELATIONS FOR TABLE" msgstr "Жадвал алоқалари" -#: libraries/export/sql.php:796 libraries/messages.inc.php:1178 +#: libraries/export/sql.php:796 libraries/messages.inc.php:1174 #: libraries/tbl_triggers.lib.php:19 msgid "Triggers" msgstr "Триггерлар" -#: libraries/export/sql.php:808 libraries/messages.inc.php:1046 +#: libraries/export/sql.php:808 libraries/messages.inc.php:1042 msgid "Structure for view" msgstr "Намойиш этиш учун тузилма" -#: libraries/export/sql.php:817 libraries/messages.inc.php:1029 +#: libraries/export/sql.php:817 libraries/messages.inc.php:1025 msgid "Stand-in structure for view" msgstr "Намойиш этиш учун тузилма" #: libraries/footer.inc.php:184 libraries/footer.inc.php:195 -#: libraries/footer.inc.php:198 libraries/messages.inc.php:586 +#: libraries/footer.inc.php:198 libraries/messages.inc.php:582 msgid "Open new phpMyAdmin window" msgstr "phpMyAdmin дастурини янги ойнада очиш" -#: libraries/header.inc.php:115 libraries/messages.inc.php:542 +#: libraries/header.inc.php:115 libraries/messages.inc.php:538 msgid "New table" msgstr "Янги жадвал" #: libraries/header_printview.inc.php:50 libraries/header_printview.inc.php:55 -#: libraries/messages.inc.php:1024 +#: libraries/messages.inc.php:1020 msgid "SQL result" msgstr "SQL сўрови натижаси" -#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:350 +#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:346 msgid "Generated by" msgstr "Тузилган" #: libraries/header_printview.inc.php:63 libraries/import.lib.php:145 -#: libraries/messages.inc.php:820 navigation.php:652 navigation.php:674 +#: libraries/messages.inc.php:816 navigation.php:652 navigation.php:674 #: server_databases.php:122 tbl_printview.php:394 tbl_structure.php:366 #: tbl_structure.php:778 msgid "Rows" msgstr "Қаторларсони" -#: libraries/import.lib.php:150 libraries/messages.inc.php:285 sql.php:520 +#: libraries/import.lib.php:150 libraries/messages.inc.php:281 sql.php:520 #: tbl_change.php:181 tbl_get_field.php:35 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL бўш натижа берди (яъни нольта сатр)." -#: libraries/import.lib.php:1078 libraries/messages.inc.php:399 +#: libraries/import.lib.php:1078 libraries/messages.inc.php:395 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" "Қуйидаги тузилишлар ё тузилди ё ўзгартирилди. Бу ерда сиз қуйидаги амалларни " "бажаришингиз мумкин:" -#: libraries/import.lib.php:1079 libraries/messages.inc.php:400 +#: libraries/import.lib.php:1079 libraries/messages.inc.php:396 msgid "View a structure`s contents by clicking on its name" msgstr "Тузилмани кўриш учун унинг номи устига сичқонча тугмасини босинг" -#: libraries/import.lib.php:1080 libraries/messages.inc.php:401 +#: libraries/import.lib.php:1080 libraries/messages.inc.php:397 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "Қуйидаги танловларни ўзгартириш учун, \"Танловлар\" боғига босинг" -#: libraries/import.lib.php:1081 libraries/messages.inc.php:402 +#: libraries/import.lib.php:1081 libraries/messages.inc.php:398 msgid "Edit its structure by following the \"Structure\" link" msgstr "Тузилмани ўзгартириш учун, \"Тузилма\" боғига киринг" -#: libraries/import.lib.php:1084 libraries/messages.inc.php:362 +#: libraries/import.lib.php:1084 libraries/messages.inc.php:358 msgid "Go to database" msgstr "Ушбу базага ўтиш" #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:869 +#: libraries/messages.inc.php:865 msgid "settings" msgstr "танловлар" -#: libraries/import.lib.php:1106 libraries/messages.inc.php:363 +#: libraries/import.lib.php:1106 libraries/messages.inc.php:359 msgid "Go to table" msgstr "Ушбу жадвалга ўтиш" -#: libraries/import.lib.php:1109 libraries/messages.inc.php:1047 +#: libraries/import.lib.php:1109 libraries/messages.inc.php:1043 msgid "structure" msgstr "тузилиш" -#: libraries/import.lib.php:1115 libraries/messages.inc.php:364 +#: libraries/import.lib.php:1115 libraries/messages.inc.php:360 msgid "Go to view" msgstr "Ушбу кўринишга ўтиш" #: libraries/import/csv.php:58 libraries/import/csv.php:70 #: libraries/import/csv.php:74 libraries/import/csv.php:78 -#: libraries/messages.inc.php:442 +#: libraries/messages.inc.php:438 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "CSV импортидаги парамерт нотўғри: \"%s\"" -#: libraries/import/csv.php:59 libraries/messages.inc.php:323 +#: libraries/import/csv.php:59 libraries/messages.inc.php:319 msgid "Fields terminated by" msgstr "Майдонлар қуйидаги белги билан бўлинган " -#: libraries/import/csv.php:71 libraries/messages.inc.php:320 +#: libraries/import/csv.php:71 libraries/messages.inc.php:316 msgid "Fields enclosed by" msgstr "Майдон қийматлари қуйидаги белги ичига олинган " -#: libraries/import/csv.php:75 libraries/messages.inc.php:321 +#: libraries/import/csv.php:75 libraries/messages.inc.php:317 msgid "Fields escaped by" msgstr "Белги олдида қуйидаги белги мавжуд " -#: libraries/import/csv.php:79 libraries/messages.inc.php:481 +#: libraries/import/csv.php:79 libraries/messages.inc.php:477 msgid "Lines terminated by" msgstr "Қаторлар бўлувчиси" -#: libraries/import/csv.php:119 libraries/messages.inc.php:439 +#: libraries/import/csv.php:119 libraries/messages.inc.php:435 #, php-format msgid "Invalid column (%s) specified!" msgstr "Нотўғри устун (\"%s\") танланган!" #: libraries/import/csv.php:177 libraries/import/csv.php:424 -#: libraries/messages.inc.php:441 +#: libraries/messages.inc.php:437 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" "Киритилаётган CSV маълумотларнинг %d қаторидаги маълумотлар формати нотўғри." -#: libraries/import/csv.php:312 libraries/messages.inc.php:440 +#: libraries/import/csv.php:312 libraries/messages.inc.php:436 #, php-format msgid "Invalid field count in CSV input on line %d." msgstr "" "Киритилаётган CSV маълумотларнинг %d қаторидаги майдонлар сони нотўғри." -#: libraries/import/ldi.php:55 libraries/messages.inc.php:446 +#: libraries/import/ldi.php:55 libraries/messages.inc.php:442 msgid "This plugin does not support compressed imports!" msgstr "Ушбу модул қисилган маълумотларни импорт қила олмайди!" #: libraries/import/xml.php:74 libraries/import/xml.php:130 -#: libraries/messages.inc.php:1247 +#: libraries/messages.inc.php:1243 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -3052,402 +3062,392 @@ msgstr "" msgid "ltr" msgstr "ltr" -#. l10n: Thousands separator -#: libraries/messages.inc.php:21 -msgid "," -msgstr " " - -#. l10n: Decimal separator -#: libraries/messages.inc.php:23 -msgid "." -msgstr "," - -#: libraries/messages.inc.php:25 server_status.php:461 +#: libraries/messages.inc.php:21 server_status.php:461 msgid "Aborted" msgstr "Узилди" -#: libraries/messages.inc.php:28 main.php:68 +#: libraries/messages.inc.php:24 main.php:68 msgid "Actions" msgstr "Амаллар" -#: libraries/messages.inc.php:34 libraries/tbl_properties.inc.php:780 +#: libraries/messages.inc.php:30 libraries/tbl_properties.inc.php:780 #: tbl_structure.php:543 #, php-format msgid "Add %s field(s)" msgstr "\"%s\" майдон қўшиш" -#: libraries/messages.inc.php:35 +#: libraries/messages.inc.php:31 msgid "Add custom comment into header (\\n splits lines)" msgstr "Сарлавҳага ўз изоҳингизни қўшиш (\\n белгиси сатрдан сатрга ўтказади)" -#: libraries/messages.inc.php:36 +#: libraries/messages.inc.php:32 msgid "Add into comments" msgstr "Изоҳларга қўшиш" -#: libraries/messages.inc.php:37 tbl_structure.php:541 +#: libraries/messages.inc.php:33 tbl_structure.php:541 msgid "Add new field" msgstr "Янги майдон қўшиш" -#: libraries/messages.inc.php:38 server_privileges.php:1886 +#: libraries/messages.inc.php:34 server_privileges.php:1886 msgid "Add privileges on the following database" msgstr "Қуйидаги маълумотлар омборига привилегия қўшиш" -#: libraries/messages.inc.php:39 server_privileges.php:1907 +#: libraries/messages.inc.php:35 server_privileges.php:1907 msgid "Add privileges on the following table" msgstr "Қуйидаги жадвалга привилегия қўшиш" -#: libraries/messages.inc.php:40 tbl_select.php:288 +#: libraries/messages.inc.php:36 tbl_select.php:288 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Қидириш шартини кўшиш (яъни \"where\" жумласи):" -#: libraries/messages.inc.php:41 tbl_indexes.php:251 +#: libraries/messages.inc.php:37 tbl_indexes.php:251 #, php-format msgid "Add to index  %s column(s)" msgstr " \"%s\" майдон(лар)ини индексга қўшиш" -#: libraries/messages.inc.php:42 server_privileges.php:1570 +#: libraries/messages.inc.php:38 server_privileges.php:1570 #: server_privileges.php:1594 server_privileges.php:1988 #: server_privileges.php:2177 msgid "Add a new User" msgstr "Янги фойдаланувчи қўшиш" -#: libraries/messages.inc.php:43 server_privileges.php:931 +#: libraries/messages.inc.php:39 server_privileges.php:931 msgid "You have added a new user." msgstr "Сиз янги фойдаланувчи қўшдингиз." -#: libraries/messages.inc.php:44 server_privileges.php:571 +#: libraries/messages.inc.php:40 server_privileges.php:571 msgid "Administration" msgstr "Администрация" -#: libraries/messages.inc.php:45 tbl_structure.php:557 +#: libraries/messages.inc.php:41 tbl_structure.php:557 #, php-format msgid "After %s" msgstr " \"%s\" дан кейин" -#: libraries/messages.inc.php:46 tbl_change.php:1147 +#: libraries/messages.inc.php:42 tbl_change.php:1147 msgid "Go back to previous page" msgstr "Олдинги саҳифага ўтиш" -#: libraries/messages.inc.php:47 tbl_change.php:1148 +#: libraries/messages.inc.php:43 tbl_change.php:1148 msgid "Insert another new row" msgstr "Янги ёзув киритиш" -#: libraries/messages.inc.php:48 tbl_change.php:1160 +#: libraries/messages.inc.php:44 tbl_change.php:1160 msgid "Edit next row" msgstr "Кейинги қаторни таҳрирлаш" -#: libraries/messages.inc.php:49 tbl_change.php:1152 +#: libraries/messages.inc.php:45 tbl_change.php:1152 msgid "Go back to this page" msgstr "Ушбу саҳифага қайтиш" -#: libraries/messages.inc.php:50 querywindow.php:115 +#: libraries/messages.inc.php:46 querywindow.php:115 msgid "All" msgstr "Барча" -#: libraries/messages.inc.php:53 tbl_operations.php:249 +#: libraries/messages.inc.php:49 tbl_operations.php:249 msgid "Alter table order by" msgstr "Жадвал сортировкасини ўзгартириш" -#: libraries/messages.inc.php:54 tbl_operations.php:660 +#: libraries/messages.inc.php:50 tbl_operations.php:660 msgid "Analyze" msgstr "Таҳлил" -#: libraries/messages.inc.php:57 +#: libraries/messages.inc.php:53 msgid "and" msgstr "ва" -#: libraries/messages.inc.php:59 pmd_general.php:87 +#: libraries/messages.inc.php:55 pmd_general.php:87 msgid "Angular links" msgstr "Бурчакли боғланишлар" -#: libraries/messages.inc.php:60 tbl_structure.php:401 tbl_structure.php:415 +#: libraries/messages.inc.php:56 tbl_structure.php:401 tbl_structure.php:415 #: tbl_structure.php:429 #, php-format msgid "An index has been added on %s" msgstr " \"%s\" учун индекс қўшилди" -#: libraries/messages.inc.php:61 server_privileges.php:1521 +#: libraries/messages.inc.php:57 server_privileges.php:1521 #: server_privileges.php:2123 msgid "Any" msgstr "Ҳар қайси" -#: libraries/messages.inc.php:62 libraries/replication_gui.lib.php:298 +#: libraries/messages.inc.php:58 libraries/replication_gui.lib.php:298 #: server_privileges.php:725 msgid "Any host" msgstr "Ҳар қайси хост" -#: libraries/messages.inc.php:63 libraries/replication_gui.lib.php:250 +#: libraries/messages.inc.php:59 libraries/replication_gui.lib.php:250 #: server_privileges.php:677 msgid "Any user" msgstr "Ҳар қайси фойдаланувчи" -#: libraries/messages.inc.php:64 server_synchronize.php:449 +#: libraries/messages.inc.php:60 server_synchronize.php:449 #: server_synchronize.php:894 msgid "Apply Selected Changes" msgstr "Киритилган ўзгаришларни сақлаш" -#: libraries/messages.inc.php:66 tbl_structure.php:386 +#: libraries/messages.inc.php:62 tbl_structure.php:386 #, php-format msgid "A primary key has been added on %s" msgstr " \"%s\" га бирламчи калит қўшилди" -#: libraries/messages.inc.php:67 libraries/mysql_charsets.lib.php:368 +#: libraries/messages.inc.php:63 libraries/mysql_charsets.lib.php:368 msgid "Arabic" msgstr "Арабча" -#: libraries/messages.inc.php:68 libraries/mysql_charsets.lib.php:359 +#: libraries/messages.inc.php:64 libraries/mysql_charsets.lib.php:359 msgid "Armenian" msgstr "Арманча" -#: libraries/messages.inc.php:70 libraries/tbl_properties.inc.php:394 +#: libraries/messages.inc.php:66 libraries/tbl_properties.inc.php:394 msgid "As defined:" msgstr "Қоидага кўра:" -#: libraries/messages.inc.php:71 tbl_structure.php:556 +#: libraries/messages.inc.php:67 tbl_structure.php:556 msgid "At Beginning of Table" msgstr "Жадвал бошига" -#: libraries/messages.inc.php:72 tbl_structure.php:555 +#: libraries/messages.inc.php:68 tbl_structure.php:555 msgid "At End of Table" msgstr "Жадвал охирига" -#: libraries/messages.inc.php:73 libraries/tbl_properties.inc.php:108 +#: libraries/messages.inc.php:69 libraries/tbl_properties.inc.php:108 #: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:144 #: tbl_structure.php:180 msgid "Attributes" msgstr "Атрибутлар" -#: libraries/messages.inc.php:74 pdf_pages.php:303 pdf_pages.php:306 +#: libraries/messages.inc.php:70 pdf_pages.php:303 pdf_pages.php:306 msgid "Automatic layout" msgstr "Автоматик раскладка" -#: libraries/messages.inc.php:77 libraries/mysql_charsets.lib.php:354 +#: libraries/messages.inc.php:73 libraries/mysql_charsets.lib.php:354 msgid "Baltic" msgstr "Балтикача" -#: libraries/messages.inc.php:78 libraries/sqlparser.lib.php:175 +#: libraries/messages.inc.php:74 libraries/sqlparser.lib.php:175 msgid "BEGIN CUT" msgstr "BEGIN CUT" -#: libraries/messages.inc.php:79 libraries/sqlparser.lib.php:179 +#: libraries/messages.inc.php:75 libraries/sqlparser.lib.php:179 msgid "BEGIN RAW" msgstr "BEGIN RAW" -#: libraries/messages.inc.php:80 libraries/mysql_charsets.lib.php:201 +#: libraries/messages.inc.php:76 libraries/mysql_charsets.lib.php:201 #: libraries/mysql_charsets.lib.php:402 tbl_change.php:518 msgid "Binary" msgstr "Иккилик" -#: libraries/messages.inc.php:81 tbl_change.php:894 +#: libraries/messages.inc.php:77 tbl_change.php:894 msgid "Binary - do not edit" msgstr "Иккилик маълумот - таҳрирлаш мумкин эмас" -#: libraries/messages.inc.php:82 libraries/server_links.inc.php:76 +#: libraries/messages.inc.php:78 libraries/server_links.inc.php:76 #: server_binlog.php:110 server_status.php:253 test/theme.php:121 msgid "Binary log" msgstr "Иккилик журнал" -#: libraries/messages.inc.php:83 server_binlog.php:217 +#: libraries/messages.inc.php:79 server_binlog.php:217 msgid "Event type" msgstr "Ҳодиса тури" -#: libraries/messages.inc.php:84 server_binlog.php:220 +#: libraries/messages.inc.php:80 server_binlog.php:220 msgid "Information" msgstr "Маълумот" -#: libraries/messages.inc.php:85 server_binlog.php:215 +#: libraries/messages.inc.php:81 server_binlog.php:215 msgid "Log name" msgstr "Журнал файли" -#: libraries/messages.inc.php:86 server_binlog.php:219 +#: libraries/messages.inc.php:82 server_binlog.php:219 msgid "Original position" msgstr "Асл позиция" -#: libraries/messages.inc.php:87 server_binlog.php:216 +#: libraries/messages.inc.php:83 server_binlog.php:216 msgid "Position" msgstr "Позиция" -#: libraries/messages.inc.php:88 libraries/replication_gui.lib.php:169 +#: libraries/messages.inc.php:84 libraries/replication_gui.lib.php:169 #: server_binlog.php:218 msgid "Server ID" msgstr "Сервер ID си" -#: libraries/messages.inc.php:92 +#: libraries/messages.inc.php:88 #, fuzzy msgctxt "$strBLOBRepositoryDisabled" msgid "Disabled" msgstr "Фаолсизлаштирилган" -#: libraries/messages.inc.php:95 +#: libraries/messages.inc.php:91 #, fuzzy msgctxt "$strBLOBRepositoryEnabled" msgid "Enabled" msgstr "Фаоллаштирилган" -#: libraries/messages.inc.php:97 tbl_change.php:888 +#: libraries/messages.inc.php:93 tbl_change.php:888 msgid "Remove BLOB Repository Reference" msgstr "BLOB омбори мурожаатларини ўчириш" -#: libraries/messages.inc.php:98 +#: libraries/messages.inc.php:94 #, fuzzy msgctxt "$strBLOBRepositoryRepair" msgid "Repair" msgstr "Созлаш" -#: libraries/messages.inc.php:99 tbl_change.php:987 +#: libraries/messages.inc.php:95 tbl_change.php:987 msgid "Upload to BLOB repository" msgstr "BLOB омборига юклаш" -#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:359 +#: libraries/messages.inc.php:96 libraries/sql_query_form.lib.php:359 #: sql.php:677 msgid "Let every user access this bookmark" msgstr "Барча фойдаланувчиларга рухсат бериш" -#: libraries/messages.inc.php:103 sql.php:671 +#: libraries/messages.inc.php:99 sql.php:671 msgid "Label" msgstr "Хатчўп белгиси" -#: libraries/messages.inc.php:104 libraries/sql_query_form.lib.php:433 +#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:433 msgid "Bookmarked SQL query" msgstr "Хатчўп қўйилган SQL сўрови" -#: libraries/messages.inc.php:105 libraries/sql_query_form.lib.php:365 +#: libraries/messages.inc.php:101 libraries/sql_query_form.lib.php:365 msgid "Replace existing bookmark of same name" msgstr "Шу номли хатчўпни алмаштириш" -#: libraries/messages.inc.php:106 libraries/sql_query_form.lib.php:352 +#: libraries/messages.inc.php:102 libraries/sql_query_form.lib.php:352 #: sql.php:665 sql.php:666 sql.php:683 msgid "Bookmark this SQL query" msgstr "Ушбу SQL сўровига хатчўп тузиш" -#: libraries/messages.inc.php:107 libraries/sql_query_form.lib.php:466 +#: libraries/messages.inc.php:103 libraries/sql_query_form.lib.php:466 msgid "View only" msgstr "Фақат кўриш" -#: libraries/messages.inc.php:109 tbl_structure.php:161 +#: libraries/messages.inc.php:105 tbl_structure.php:161 msgid "Browse distinct values" msgstr "Турли қийматларни кўриб чиқиш" -#: libraries/messages.inc.php:110 tbl_change.php:252 tbl_select.php:27 +#: libraries/messages.inc.php:106 tbl_change.php:252 tbl_select.php:27 #: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34 msgid "Browse foreign values" msgstr "Ташқи қийматларни кўриб чиқиш" -#: libraries/messages.inc.php:118 libraries/mysql_charsets.lib.php:213 +#: libraries/messages.inc.php:114 libraries/mysql_charsets.lib.php:213 msgid "Bulgarian" msgstr "Болгарча" -#: libraries/messages.inc.php:120 +#: libraries/messages.inc.php:116 msgid "\"bzipped\"" msgstr "bzip ёрдамида сиқилган" -#: libraries/messages.inc.php:122 +#: libraries/messages.inc.php:118 msgid "Calendar" msgstr "Тақвим" -#: libraries/messages.inc.php:129 tbl_indexes.php:75 +#: libraries/messages.inc.php:125 tbl_indexes.php:75 msgid "Can't rename index to PRIMARY!" msgstr "Индексни \"PRIMARY\"га қайта номлаб бўлмади!" -#: libraries/messages.inc.php:132 libraries/mysql_charsets.lib.php:223 +#: libraries/messages.inc.php:128 libraries/mysql_charsets.lib.php:223 #: libraries/mysql_charsets.lib.php:409 msgid "case-insensitive" msgstr "ҳарфлар катта-кичиклиги фарқланмайди" -#: libraries/messages.inc.php:133 libraries/mysql_charsets.lib.php:226 +#: libraries/messages.inc.php:129 libraries/mysql_charsets.lib.php:226 #: libraries/mysql_charsets.lib.php:411 msgid "case-sensitive" msgstr "ҳарфлар катта-кичиклиги фарқланади" -#: libraries/messages.inc.php:134 libraries/mysql_charsets.lib.php:332 +#: libraries/messages.inc.php:130 libraries/mysql_charsets.lib.php:332 msgid "Central European" msgstr "Марказий Европача" -#: libraries/messages.inc.php:136 server_privileges.php:1969 +#: libraries/messages.inc.php:132 server_privileges.php:1969 msgid "... keep the old one." msgstr " ва эскисини сақлаш." -#: libraries/messages.inc.php:137 server_privileges.php:1967 +#: libraries/messages.inc.php:133 server_privileges.php:1967 msgid "Create a new user with the same privileges and ..." msgstr "Худди шундай привилегияли янги фойдаланувчи киритиш..." -#: libraries/messages.inc.php:138 server_privileges.php:1972 +#: libraries/messages.inc.php:134 server_privileges.php:1972 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" ", фойдаланувчилар жадвалидан эскисини ўчириб привилегияларни қайта юклаш." -#: libraries/messages.inc.php:139 server_privileges.php:1970 +#: libraries/messages.inc.php:135 server_privileges.php:1970 msgid " ... delete the old one from the user tables." msgstr " ва фойдаланувчилар жадвалидан эскисини ўчириш." -#: libraries/messages.inc.php:140 server_privileges.php:1971 +#: libraries/messages.inc.php:136 server_privileges.php:1971 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr ", эскисининг барча фаол привилегияларини бекор қилиб ўчириш." -#: libraries/messages.inc.php:141 server_privileges.php:1964 +#: libraries/messages.inc.php:137 server_privileges.php:1964 msgid "Change Login Information / Copy User" msgstr "Фойдаланувчининг логинини ўзгартириш / Фойдаланувчидан нусха олиш" -#: libraries/messages.inc.php:144 libraries/mysql_charsets.lib.php:107 +#: libraries/messages.inc.php:140 libraries/mysql_charsets.lib.php:107 msgid "Charset" msgstr "Кодировка" -#: libraries/messages.inc.php:146 server_collations.php:40 +#: libraries/messages.inc.php:142 server_collations.php:40 msgid "Character Sets and Collations" msgstr "Кодировкалар ва таққослашлар" -#: libraries/messages.inc.php:147 libraries/server_links.inc.php:57 +#: libraries/messages.inc.php:143 libraries/server_links.inc.php:57 #: test/theme.php:109 msgid "Charsets" msgstr "Кодировкалар" -#: libraries/messages.inc.php:149 tbl_operations.php:661 +#: libraries/messages.inc.php:145 tbl_operations.php:661 msgid "Check" msgstr "Текшириш" -#: libraries/messages.inc.php:151 server_databases.php:293 +#: libraries/messages.inc.php:147 server_databases.php:293 #: server_databases.php:294 msgid "Check Privileges" msgstr "Привилегияларни текшириш" -#: libraries/messages.inc.php:152 server_databases.php:289 +#: libraries/messages.inc.php:148 server_databases.php:289 #, php-format msgid "Check privileges for database "%s"." msgstr "\"%s\" маълумотлар базасининг привилегияларни текшириш" -#: libraries/messages.inc.php:154 pdf_pages.php:261 +#: libraries/messages.inc.php:150 pdf_pages.php:261 msgid "Please choose a page to edit" msgstr "Таҳрирлаш лозим бўлган саҳифани танлаш" -#: libraries/messages.inc.php:157 +#: libraries/messages.inc.php:153 msgid "Displaying Column Comments" msgstr "Майдон изоҳларини кўрсатиш" -#: libraries/messages.inc.php:159 pdf_pages.php:483 view_create.php:148 +#: libraries/messages.inc.php:155 pdf_pages.php:483 view_create.php:148 msgid "Column names" msgstr "Майдон номлари" -#: libraries/messages.inc.php:160 server_privileges.php:1685 +#: libraries/messages.inc.php:156 server_privileges.php:1685 msgid "Column-specific privileges" msgstr "Майдон привилегиялари" -#: libraries/messages.inc.php:164 +#: libraries/messages.inc.php:160 msgid "MySQL 4.0 compatible" msgstr "MySQL 4.0 га мос" -#: libraries/messages.inc.php:165 +#: libraries/messages.inc.php:161 msgid "Complete inserts" msgstr "Тўла қўйиш" -#: libraries/messages.inc.php:168 +#: libraries/messages.inc.php:164 #, php-format msgid "Could not load default configuration from: \"%1$s\"" msgstr " \"%1$s\" файлидан андоза конфигурацияни юклаб бўлмади." -#: libraries/messages.inc.php:169 main.php:306 +#: libraries/messages.inc.php:165 main.php:306 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " @@ -3457,172 +3457,172 @@ msgstr "" "каталоги ҳалиям мавжуд. phpMyAdmin муваффақиятли ўрнатилгандан кейин, уни " "ўчириш тавсия этилади." -#: libraries/messages.inc.php:171 pdf_schema.php:672 +#: libraries/messages.inc.php:167 pdf_schema.php:672 #, php-format msgid "Please configure the coordinates for table %s" msgstr " \"%s\" жадвалининг координаталарини ўзгартириш" -#: libraries/messages.inc.php:173 server_status.php:433 +#: libraries/messages.inc.php:169 server_status.php:433 msgid "Connections" msgstr "Уланишлар" -#: libraries/messages.inc.php:179 tbl_operations.php:509 +#: libraries/messages.inc.php:175 tbl_operations.php:509 msgid "Copy table to (database.table):" msgstr "Жадвалдан (маълумотлар омбори.жадвал) га нусха кўчириш:" -#: libraries/messages.inc.php:180 tbl_move_copy.php:58 +#: libraries/messages.inc.php:176 tbl_move_copy.php:58 #, php-format msgid "Table %s has been copied to %s." msgstr "\"%s\" жадвалидан \"%s\" га нусха кўчирилди." -#: libraries/messages.inc.php:181 tbl_move_copy.php:48 +#: libraries/messages.inc.php:177 tbl_move_copy.php:48 msgid "Can't copy table to same one!" msgstr "Жадвалнинг ўзидан ўзига нусха кўчириш мумкин эмас!" -#: libraries/messages.inc.php:182 server_synchronize.php:94 +#: libraries/messages.inc.php:178 server_synchronize.php:94 msgid "Could not connect to the source" msgstr "Манбага уланиб бўлмади" -#: libraries/messages.inc.php:183 server_synchronize.php:97 +#: libraries/messages.inc.php:179 server_synchronize.php:97 msgid "Could not connect to the target" msgstr "Нишонга уланиб бўлмади" -#: libraries/messages.inc.php:184 server_processlist.php:24 +#: libraries/messages.inc.php:180 server_processlist.php:24 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin \"%s\" оқим ишини тугута олмади. Эҳтимол, у аллақачон ёпиқ." -#: libraries/messages.inc.php:187 +#: libraries/messages.inc.php:183 #, php-format msgid "Create an index on %s columns" msgstr "\"%s\" майдон учун индекс тузиш" -#: libraries/messages.inc.php:188 tbl_indexes.php:160 +#: libraries/messages.inc.php:184 tbl_indexes.php:160 msgid "Create a new index" msgstr "Янги индекс тузиш" -#: libraries/messages.inc.php:191 pdf_pages.php:297 pmd_pdf.php:114 +#: libraries/messages.inc.php:187 pdf_pages.php:297 pmd_pdf.php:114 msgid "Create a page" msgstr "Янги саҳифа тузиш" -#: libraries/messages.inc.php:192 +#: libraries/messages.inc.php:188 msgid "Creation of PDFs" msgstr "PDF-схема тузиш" -#: libraries/messages.inc.php:193 pmd_general.php:74 pmd_general.php:306 +#: libraries/messages.inc.php:189 pmd_general.php:74 pmd_general.php:306 msgid "Create relation" msgstr "Боғлиқлик ўрнатиш" -#: libraries/messages.inc.php:194 pmd_general.php:71 +#: libraries/messages.inc.php:190 pmd_general.php:71 #: server_synchronize.php:429 server_synchronize.php:872 msgid "Create table" msgstr "Жадвал тузиш" -#: libraries/messages.inc.php:195 +#: libraries/messages.inc.php:191 msgctxt "$strCreateTableShort" msgid "Create table" msgstr "Жадвал тузиш" -#: libraries/messages.inc.php:196 server_privileges.php:1994 +#: libraries/messages.inc.php:192 server_privileges.php:1994 msgid "Database for user" msgstr "Фойдаланувчи учун маълумотлар базаси" -#: libraries/messages.inc.php:197 server_privileges.php:1999 +#: libraries/messages.inc.php:193 server_privileges.php:1999 msgid "Create database with same name and grant all privileges" msgstr "" "Фойдаланувчи номи билан аталган маълумотлар базаси тузиш ва унга тўлиқ " "привилегияларни бериш." -#: libraries/messages.inc.php:198 +#: libraries/messages.inc.php:194 #, fuzzy msgctxt "$strCreateUserDatabaseNone" msgid "None" msgstr "Йўқ" -#: libraries/messages.inc.php:199 server_privileges.php:2003 +#: libraries/messages.inc.php:195 server_privileges.php:2003 #, php-format msgid "Grant all privileges on database "%s"" msgstr "\"%s\"" маълумотлар базасига барча привилегияларни бериш;" -#: libraries/messages.inc.php:200 server_privileges.php:2000 +#: libraries/messages.inc.php:196 server_privileges.php:2000 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" "(фойдаланувчи\\_%) шаблонига тўғри келадиган барча маълумотлар базаларига " "тўлиқ привилегияларни бериш." -#: libraries/messages.inc.php:201 +#: libraries/messages.inc.php:197 msgid "Creation/Update/Check dates" msgstr "Тузиш, янгилаш ва текшириш саналари" -#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:229 +#: libraries/messages.inc.php:199 libraries/mysql_charsets.lib.php:229 msgid "Croatian" msgstr "Хорватча" -#: libraries/messages.inc.php:204 +#: libraries/messages.inc.php:200 msgid "CSV" msgstr "CSV" -#: libraries/messages.inc.php:205 libraries/server_synchronize.lib.php:1343 +#: libraries/messages.inc.php:201 libraries/server_synchronize.lib.php:1343 #: libraries/server_synchronize.lib.php:1369 msgid "Current server" msgstr "Жорий сервер" -#: libraries/messages.inc.php:206 main.php:159 +#: libraries/messages.inc.php:202 main.php:159 msgid "Custom color" msgstr "Рангни танлаш" -#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:365 +#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:365 msgid "Cyrillic" msgstr "Кириллча" -#: libraries/messages.inc.php:208 libraries/mysql_charsets.lib.php:232 +#: libraries/messages.inc.php:204 libraries/mysql_charsets.lib.php:232 msgid "Czech" msgstr "Чехча" -#: libraries/messages.inc.php:209 libraries/mysql_charsets.lib.php:383 +#: libraries/messages.inc.php:205 libraries/mysql_charsets.lib.php:383 msgid "Czech-Slovak" msgstr "Чехословакча" -#: libraries/messages.inc.php:211 libraries/mysql_charsets.lib.php:235 +#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:235 msgid "Danish" msgstr "Данияча" -#: libraries/messages.inc.php:214 +#: libraries/messages.inc.php:210 msgid "Database export options" msgstr "Маълумотлар базаси экспорт параметрлари" -#: libraries/messages.inc.php:217 server_synchronize.php:122 +#: libraries/messages.inc.php:213 server_synchronize.php:122 #: server_synchronize.php:125 tbl_create.php:82 tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "'%s' номли база мавжуд эмас." -#: libraries/messages.inc.php:219 server_databases.php:63 +#: libraries/messages.inc.php:215 server_databases.php:63 #, php-format msgid "%s databases have been dropped successfully." msgstr "\"%s\" маълумотлар базаси муваффақиятли ўчирилди." -#: libraries/messages.inc.php:220 libraries/server_synchronize.lib.php:1341 +#: libraries/messages.inc.php:216 libraries/server_synchronize.lib.php:1341 #: server_synchronize.php:1110 msgid "Source database" msgstr "Манба база" -#: libraries/messages.inc.php:221 server_databases.php:88 +#: libraries/messages.inc.php:217 server_databases.php:88 msgid "Databases statistics" msgstr "Маълумотлар базаси статискаси" -#: libraries/messages.inc.php:222 server_databases.php:362 +#: libraries/messages.inc.php:218 server_databases.php:362 #: server_databases.php:363 msgid "Disable Statistics" msgstr "Статискани ўчириш" -#: libraries/messages.inc.php:223 server_databases.php:358 +#: libraries/messages.inc.php:219 server_databases.php:358 #: server_databases.php:359 msgid "Enable Statistics" msgstr "Статискани ёқиш" -#: libraries/messages.inc.php:224 server_databases.php:366 +#: libraries/messages.inc.php:220 server_databases.php:366 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -3630,30 +3630,30 @@ msgstr "" "ИЗОҲ: Статискани ёқиш веб-сервер ва MySQL сервери ўртасида катта траффикка " "сабаб бўлиши мумкин." -#: libraries/messages.inc.php:225 libraries/server_synchronize.lib.php:1367 +#: libraries/messages.inc.php:221 libraries/server_synchronize.lib.php:1367 #: server_synchronize.php:1112 msgid "Target database" msgstr "Нишон база" -#: libraries/messages.inc.php:228 server_synchronize.php:425 +#: libraries/messages.inc.php:224 server_synchronize.php:425 #: server_synchronize.php:868 msgid "Data Difference" msgstr "Маълумотлар фарқи" -#: libraries/messages.inc.php:231 server_synchronize.php:272 +#: libraries/messages.inc.php:227 server_synchronize.php:272 msgid "Data Synchronization" msgstr "Маълумотлар синхронизацияси" -#: libraries/messages.inc.php:235 server_privileges.php:526 +#: libraries/messages.inc.php:231 server_privileges.php:526 #: server_privileges.php:1679 msgid "Database-specific privileges" msgstr "Маълумотлар базаси привилегиялари" -#: libraries/messages.inc.php:237 server_privileges.php:2136 +#: libraries/messages.inc.php:233 server_privileges.php:2136 msgid "database-specific" msgstr "Маълумотлар базаси даражасида" -#: libraries/messages.inc.php:240 libraries/tbl_properties.inc.php:106 +#: libraries/messages.inc.php:236 libraries/tbl_properties.inc.php:106 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" @@ -3661,32 +3661,32 @@ msgstr "" "\"Андозавий\" майдонлар қийматларида тескари эгри чизиқ ва қўштирноқларни " "ишлатманг." -#: libraries/messages.inc.php:241 tbl_operations.php:589 +#: libraries/messages.inc.php:237 tbl_operations.php:589 msgid "Defragment table" msgstr "Жадвални дефрагментациялаш" -#: libraries/messages.inc.php:242 +#: libraries/messages.inc.php:238 msgid "Use delayed inserts" msgstr "Кечиктирилган қўйиш (DELAYED INSERTS) дан фойдаланиш" -#: libraries/messages.inc.php:245 server_privileges.php:1243 +#: libraries/messages.inc.php:241 server_privileges.php:1243 msgid "No users selected for deleting!" msgstr "Ўчириш лозим бўлган фойдаланувчилар танланмаган!" -#: libraries/messages.inc.php:246 pmd_general.php:372 +#: libraries/messages.inc.php:242 pmd_general.php:372 msgid "Delete relation" msgstr "Боғлиқликни ўчириш" -#: libraries/messages.inc.php:248 server_privileges.php:1232 +#: libraries/messages.inc.php:244 server_privileges.php:1232 #, php-format msgid "Deleting %s" msgstr "\"%s\" ўчирилмоқда" -#: libraries/messages.inc.php:249 libraries/sql_query_form.lib.php:388 +#: libraries/messages.inc.php:245 libraries/sql_query_form.lib.php:388 msgid "Delimiter" msgstr "Тақсимловчи" -#: libraries/messages.inc.php:250 pdf_pages.php:506 +#: libraries/messages.inc.php:246 pdf_pages.php:506 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -3694,7 +3694,7 @@ msgstr "" "Ушбу саҳифада мавжуд бўлмаган жадваллар учун мурожаатлар мавжуд. Ушбу " "мурожаатларни ўчиришни хоҳлайсизми?" -#: libraries/messages.inc.php:254 pmd_help.php:29 +#: libraries/messages.inc.php:250 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 " @@ -3703,142 +3703,142 @@ msgstr "" "Кўрсатиладиган майдонлар пушти рангда берилади. Майдонни кўрсатиладиган " "қилиш учун \"Кўрсатиладиган майдонни танлаш\" бўлимидан мос майдонни танланг." -#: libraries/messages.inc.php:256 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:252 libraries/mysql_charsets.lib.php:247 msgid "dictionary" msgstr "луғат" -#: libraries/messages.inc.php:257 libraries/server_synchronize.lib.php:1348 +#: libraries/messages.inc.php:253 libraries/server_synchronize.lib.php:1348 msgid "Difference" msgstr "Фарқ" -#: libraries/messages.inc.php:258 pmd_general.php:87 +#: libraries/messages.inc.php:254 pmd_general.php:87 msgid "Direct links" msgstr "Тўғридан-тўғри боғланишлар" -#: libraries/messages.inc.php:261 +#: libraries/messages.inc.php:257 msgid "Disable foreign key checks" msgstr "Ташқи калитларни текширишни ўчириш" -#: libraries/messages.inc.php:262 +#: libraries/messages.inc.php:258 msgid "Display Features" msgstr "Имкониятларни кўрсатиш" -#: libraries/messages.inc.php:263 tbl_select.php:301 +#: libraries/messages.inc.php:259 tbl_select.php:301 msgid "Display order:" msgstr "Сортировка:" -#: libraries/messages.inc.php:265 tbl_select.php:132 +#: libraries/messages.inc.php:261 tbl_select.php:132 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "\"Намунадаги сўровни бажариш\" (ўрнига қўйиш белгиси: \"%\")" -#: libraries/messages.inc.php:266 +#: libraries/messages.inc.php:262 msgid "DocSQL" msgstr "DocSQL" -#: libraries/messages.inc.php:268 +#: libraries/messages.inc.php:264 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Ноль қийматлари учун \"AUTO_INCREMENT\" ишлатмаслик" -#: libraries/messages.inc.php:273 server_privileges.php:1579 +#: libraries/messages.inc.php:269 server_privileges.php:1579 #: server_privileges.php:1580 server_privileges.php:1581 msgid "Drop the databases that have the same names as the users." msgstr "Фойдаланувчилар номлари билан аталган маълумотлар базаларини ўчириш." -#: libraries/messages.inc.php:278 tbl_printview.php:382 tbl_structure.php:743 +#: libraries/messages.inc.php:274 tbl_printview.php:382 tbl_structure.php:743 msgid "dynamic" msgstr "динамик" -#: libraries/messages.inc.php:282 server_privileges.php:1324 +#: libraries/messages.inc.php:278 server_privileges.php:1324 #: server_privileges.php:1610 msgid "Edit Privileges" msgstr "Привилегияларни таҳрирлаш" -#: libraries/messages.inc.php:283 tbl_printview.php:341 tbl_structure.php:688 +#: libraries/messages.inc.php:279 tbl_printview.php:341 tbl_structure.php:688 msgid "Effective" msgstr "Эффективлик" -#: libraries/messages.inc.php:286 libraries/relation.lib.php:100 +#: libraries/messages.inc.php:282 libraries/relation.lib.php:100 msgid "Enabled" msgstr "Фаоллаштирилган" -#: libraries/messages.inc.php:287 +#: libraries/messages.inc.php:283 msgid "Enclose export in a transaction" msgstr "Транзакцияга экспортни қўшиш" -#: libraries/messages.inc.php:288 libraries/sqlparser.lib.php:177 +#: libraries/messages.inc.php:284 libraries/sqlparser.lib.php:177 msgid "END CUT" msgstr "END CUT" -#: libraries/messages.inc.php:290 libraries/sqlparser.lib.php:183 +#: libraries/messages.inc.php:286 libraries/sqlparser.lib.php:183 msgid "END RAW" msgstr "END RAW" -#: libraries/messages.inc.php:293 libraries/server_links.inc.php:61 +#: libraries/messages.inc.php:289 libraries/server_links.inc.php:61 #: test/theme.php:113 msgid "Engines" msgstr "Жадвал турлари" -#: libraries/messages.inc.php:295 libraries/mysql_charsets.lib.php:238 +#: libraries/messages.inc.php:291 libraries/mysql_charsets.lib.php:238 msgid "English" msgstr "Инглизча" -#: libraries/messages.inc.php:296 server_privileges.php:393 +#: libraries/messages.inc.php:292 server_privileges.php:393 #: server_privileges.php:535 server_privileges.php:1501 msgid " Note: MySQL privilege names are expressed in English " msgstr "ИЗОҲ: MySQL привилегиялари турлари инглиз тилида кўрсатилади." -#: libraries/messages.inc.php:298 libraries/zip_extension.lib.php:49 +#: libraries/messages.inc.php:294 libraries/zip_extension.lib.php:49 #: libraries/zip_extension.lib.php:51 libraries/zip_extension.lib.php:66 msgid "Error in ZIP archive:" msgstr "Ушбу ZIP архивда хатолик:" -#: libraries/messages.inc.php:303 libraries/mysql_charsets.lib.php:241 +#: libraries/messages.inc.php:299 libraries/mysql_charsets.lib.php:241 msgid "Esperanto" msgstr "Эсперанто" -#: libraries/messages.inc.php:304 libraries/mysql_charsets.lib.php:244 +#: libraries/messages.inc.php:300 libraries/mysql_charsets.lib.php:244 msgid "Estonian" msgstr "Эстонча" -#: libraries/messages.inc.php:305 libraries/tbl_triggers.lib.php:29 +#: libraries/messages.inc.php:301 libraries/tbl_triggers.lib.php:29 msgid "Event" msgstr "Ҳодиса" -#: libraries/messages.inc.php:307 +#: libraries/messages.inc.php:303 msgid "Excel edition" msgstr "Excel-версияси" -#: libraries/messages.inc.php:311 pmd_pdf.php:85 +#: libraries/messages.inc.php:307 pmd_pdf.php:85 msgid "Export/Import to scale" msgstr "Масштаб" -#: libraries/messages.inc.php:313 +#: libraries/messages.inc.php:309 msgid "Extended inserts" msgstr "Кенгайтирилган қўйилмалар" -#: libraries/messages.inc.php:314 pdf_schema.php:1267 pdf_schema.php:1288 +#: libraries/messages.inc.php:310 pdf_schema.php:1267 pdf_schema.php:1288 #: tbl_printview.php:147 tbl_structure.php:183 tbl_tracking.php:278 msgid "Extra" msgstr "Қўшимча" -#: libraries/messages.inc.php:316 server_status.php:447 +#: libraries/messages.inc.php:312 server_status.php:447 msgid "Failed attempts" msgstr "Муваффақиятсиз уринишлар сони: " -#: libraries/messages.inc.php:318 tbl_structure.php:375 +#: libraries/messages.inc.php:314 tbl_structure.php:375 #, php-format msgid "Field %s has been dropped" msgstr "\"%s\" майдони ўчирилди" -#: libraries/messages.inc.php:322 libraries/sql_query_form.lib.php:317 +#: libraries/messages.inc.php:318 libraries/sql_query_form.lib.php:317 msgid "Fields" msgstr "Майдонлар" -#: libraries/messages.inc.php:332 server_binlog.php:136 +#: libraries/messages.inc.php:328 server_binlog.php:136 msgid "Files" msgstr "Файллар сони " -#: libraries/messages.inc.php:334 server_privileges.php:1597 +#: libraries/messages.inc.php:330 server_privileges.php:1597 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -3851,121 +3851,121 @@ msgstr "" "маълумотлар сервер томонидан ишлатилаётган привилегиялардан фарқ қилиши " "мумкин. Бу ҳолда %sпривилегияларни қайта юклаш%s керак." -#: libraries/messages.inc.php:335 server_status.php:289 +#: libraries/messages.inc.php:331 server_status.php:289 msgid "Flush query cache" msgstr "Сўровлар кешини дефрагментация қилиш" -#: libraries/messages.inc.php:336 +#: libraries/messages.inc.php:332 msgid "Flush the table (\"FLUSH\")" msgstr "Жадвал кешини янгилаш (\"FLUSH\")" -#: libraries/messages.inc.php:337 server_status.php:271 +#: libraries/messages.inc.php:333 server_status.php:271 msgid "Flush (close) all tables" msgstr "Барча жадвалларни ёпиш" -#: libraries/messages.inc.php:339 tbl_relation.php:279 +#: libraries/messages.inc.php:335 tbl_relation.php:279 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" " %1$s да ташқи калит (FOREIGN KEY) тузишда хатолик (маълумот турини " "текширинг)" -#: libraries/messages.inc.php:341 setup/lib/messages.inc.php:88 +#: libraries/messages.inc.php:337 setup/lib/messages.inc.php:88 #: tbl_printview.php:376 tbl_structure.php:738 msgid "Format" msgstr "Формат" -#: libraries/messages.inc.php:344 server_replication.php:325 +#: libraries/messages.inc.php:340 server_replication.php:325 msgid "Full start" msgstr "Барчасини бошлаш" -#: libraries/messages.inc.php:345 server_replication.php:325 +#: libraries/messages.inc.php:341 server_replication.php:325 msgid "Full stop" msgstr "Барчасини тўхтатиш" -#: libraries/messages.inc.php:347 tbl_change.php:282 tbl_change.php:320 +#: libraries/messages.inc.php:343 tbl_change.php:282 tbl_change.php:320 msgid "Function" msgstr "Функция" -#: libraries/messages.inc.php:355 libraries/mysql_charsets.lib.php:377 +#: libraries/messages.inc.php:351 libraries/mysql_charsets.lib.php:377 msgid "Georgian" msgstr "Грузинча" -#: libraries/messages.inc.php:356 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:352 libraries/mysql_charsets.lib.php:247 #: libraries/mysql_charsets.lib.php:250 msgid "German" msgstr "Немисча" -#: libraries/messages.inc.php:357 themes.php:42 +#: libraries/messages.inc.php:353 themes.php:42 msgid "Get more themes!" msgstr "Кўпроқ мавзуга эга бўлинг!" -#: libraries/messages.inc.php:358 server_privileges.php:2134 +#: libraries/messages.inc.php:354 server_privileges.php:2134 msgid "global" msgstr "Глобал" -#: libraries/messages.inc.php:359 server_privileges.php:524 +#: libraries/messages.inc.php:355 server_privileges.php:524 #: server_privileges.php:1500 msgid "Global privileges" msgstr "Глобал привилегиялар" -#: libraries/messages.inc.php:360 server_variables.php:55 +#: libraries/messages.inc.php:356 server_variables.php:55 #: server_variables.php:89 msgid "Global value" msgstr "Глобал қиймат" -#: libraries/messages.inc.php:365 server_privileges.php:1502 +#: libraries/messages.inc.php:361 server_privileges.php:1502 #: server_privileges.php:1684 server_privileges.php:2033 msgid "Grant" msgstr "GRANT" -#: libraries/messages.inc.php:366 libraries/mysql_charsets.lib.php:380 +#: libraries/messages.inc.php:362 libraries/mysql_charsets.lib.php:380 msgid "Greek" msgstr "Грекча" -#: libraries/messages.inc.php:367 +#: libraries/messages.inc.php:363 msgid "\"gzipped\"" msgstr "gzip" -#: libraries/messages.inc.php:369 server_status.php:250 +#: libraries/messages.inc.php:365 server_status.php:250 msgid "Handler" msgstr "Қайта ишловчи дастур" -#: libraries/messages.inc.php:370 server_synchronize.php:464 +#: libraries/messages.inc.php:366 server_synchronize.php:464 msgid "Selected target tables have been synchronized with source tables." msgstr "Танланган жадваллар манба жадваллар билан синхронизация қилинди." -#: libraries/messages.inc.php:372 libraries/mysql_charsets.lib.php:374 +#: libraries/messages.inc.php:368 libraries/mysql_charsets.lib.php:374 msgid "Hebrew" msgstr "Яҳудийча" -#: libraries/messages.inc.php:373 pmd_general.php:83 +#: libraries/messages.inc.php:369 pmd_general.php:83 msgid "Help" msgstr "Ёрдам" -#: libraries/messages.inc.php:374 +#: libraries/messages.inc.php:370 msgid "Use hexadecimal for BLOB" msgstr "BLOB туридаги маълумотларни ўн олтилик шаклда намойиш этиш" -#: libraries/messages.inc.php:376 pmd_general.php:120 +#: libraries/messages.inc.php:372 pmd_general.php:120 msgid "Hide/Show all" msgstr "Барча жадвалларни яшириш/кўрсатиш" -#: libraries/messages.inc.php:377 pmd_general.php:124 +#: libraries/messages.inc.php:373 pmd_general.php:124 msgid "Hide/Show Tables with no relation" msgstr "Алоқа мавжуд бўлмаган жадвалларни яшириш/кўрсатиш" -#: libraries/messages.inc.php:378 libraries/navigation_header.inc.php:54 +#: libraries/messages.inc.php:374 libraries/navigation_header.inc.php:54 #: libraries/navigation_header.inc.php:57 #: libraries/navigation_header.inc.php:58 msgid "Home" msgstr "Бош саҳифа" -#: libraries/messages.inc.php:379 main.php:233 +#: libraries/messages.inc.php:375 main.php:233 msgid "Official Homepage" msgstr " phpMyAdmin расмий веб-саҳифаси" -#: libraries/messages.inc.php:382 libraries/replication_gui.lib.php:327 +#: libraries/messages.inc.php:378 libraries/replication_gui.lib.php:327 #: server_privileges.php:753 msgid "" "When Host table is used, this field is ignored and values stored in Host " @@ -3974,99 +3974,99 @@ msgstr "" "Агар Хостлар жадвалидан фойдаланилса, ушбу майдонга эътибор берилмайди ва " "унинг ўрнига Хостлар жадвалидаги қийматлар ишлатилади." -#: libraries/messages.inc.php:383 +#: libraries/messages.inc.php:379 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/messages.inc.php:384 libraries/mysql_charsets.lib.php:253 +#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:253 msgid "Hungarian" msgstr "Венгерча" -#: libraries/messages.inc.php:386 libraries/mysql_charsets.lib.php:256 +#: libraries/messages.inc.php:382 libraries/mysql_charsets.lib.php:256 msgid "Icelandic" msgstr "Исландча" -#: libraries/messages.inc.php:387 server_processlist.php:53 +#: libraries/messages.inc.php:383 server_processlist.php:53 msgid "ID" msgstr "ID" -#: libraries/messages.inc.php:388 libraries/mult_submits.inc.php:108 +#: libraries/messages.inc.php:384 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:479 msgid "Fulltext" msgstr "Матн тўлалигича" -#: libraries/messages.inc.php:389 +#: libraries/messages.inc.php:385 msgid "Ignore duplicate rows" msgstr "Такрорий қаторларга эътибор бермаслик" -#: libraries/messages.inc.php:390 tbl_change.php:302 tbl_indexes.php:200 +#: libraries/messages.inc.php:386 tbl_change.php:302 tbl_indexes.php:200 #: tbl_indexes.php:225 msgid "Ignore" msgstr "Эътибор бермаслик" -#: libraries/messages.inc.php:391 +#: libraries/messages.inc.php:387 msgid "Use ignore inserts" msgstr "Эътибор бермаслик (IGNORE) қўйилмалардан фойдаланиш" -#: libraries/messages.inc.php:392 +#: libraries/messages.inc.php:388 msgid "Column names in first row" msgstr "Биринчи қаторга устун номлари" -#: libraries/messages.inc.php:393 +#: libraries/messages.inc.php:389 msgid "Do not import empty rows" msgstr "Бўш қаторларни импорт қилмаслик" -#: libraries/messages.inc.php:394 pmd_general.php:104 +#: libraries/messages.inc.php:390 pmd_general.php:104 msgid "Import/Export coordinates for PDF schema" msgstr "PDF-схемага/схемадан жадвал координаталарини импорт/экспорт қилиш" -#: libraries/messages.inc.php:395 querywindow.php:104 +#: libraries/messages.inc.php:391 querywindow.php:104 msgid "Import files" msgstr "Файлларни импорт қилиш" -#: libraries/messages.inc.php:403 +#: libraries/messages.inc.php:399 msgid "Import currencies ($5.00 to 5.00)" msgstr "Пул бирликларини импорт қилиш (масалан, $5.00 ни 5.00 га)" -#: libraries/messages.inc.php:404 libraries/messages.inc.php:584 +#: libraries/messages.inc.php:400 libraries/messages.inc.php:580 msgid "Open Document Spreadsheet" msgstr "Open Document жадвали" -#: libraries/messages.inc.php:405 +#: libraries/messages.inc.php:401 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" "Фоизларни мос ўнли касрлар каби импорт қилиш (масалан, 12.00% ўрнига 0.12)" -#: libraries/messages.inc.php:409 +#: libraries/messages.inc.php:405 msgid "Excel 97-2003 XLS Workbook" msgstr "Excel 97-2003 XLS иш китоби" -#: libraries/messages.inc.php:410 +#: libraries/messages.inc.php:406 msgid "Excel 2007 XLSX Workbook" msgstr "Excel 2007 XLSX иш китоби" -#: libraries/messages.inc.php:414 libraries/mult_submits.inc.php:98 +#: libraries/messages.inc.php:410 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:476 tbl_structure.php:674 msgid "Index" msgstr "Индекс" -#: libraries/messages.inc.php:415 tbl_indexes.php:168 +#: libraries/messages.inc.php:411 tbl_indexes.php:168 msgid "Index name:" msgstr "Индекс номи: " -#: libraries/messages.inc.php:416 tbl_indexes.php:174 +#: libraries/messages.inc.php:412 tbl_indexes.php:174 msgid "Index type:" msgstr "Индекс тури: " -#: libraries/messages.inc.php:417 sql.php:639 +#: libraries/messages.inc.php:413 sql.php:639 #, php-format msgid "Problems with indexes of table `%s`" msgstr " `\"%s\"` жадвалидаги индексларда муаммо мавжуд" -#: libraries/messages.inc.php:427 main.php:266 +#: libraries/messages.inc.php:423 main.php:266 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -4078,24 +4078,24 @@ msgstr "" "созланган MySQL сервери хавфсизлик жиҳатидан анча заиф ҳисобланади, шунинг " "учун \"root\" суперфойдаланувчисига парол ўрнатиш қатъиян тавсия этилади." -#: libraries/messages.inc.php:428 tbl_change.php:1130 +#: libraries/messages.inc.php:424 tbl_change.php:1130 msgid "Insert as new row" msgstr "Ёзув киритиш" -#: libraries/messages.inc.php:429 sql.php:496 tbl_replace.php:386 +#: libraries/messages.inc.php:425 sql.php:496 tbl_replace.php:386 #, php-format msgid "Inserted row id: %1$d" msgstr "Киритилган қатор идентификатори: %1$d" -#: libraries/messages.inc.php:430 tbl_change.php:1131 +#: libraries/messages.inc.php:426 tbl_change.php:1131 msgid "Insert as new row and ignore errors" msgstr "Янги қатор сифатида қўшиш ва хатоликларга эътибор бермаслик" -#: libraries/messages.inc.php:432 main.php:139 +#: libraries/messages.inc.php:428 main.php:139 msgid "Interface" msgstr "Интерфейс" -#: libraries/messages.inc.php:433 tbl_relation.php:407 +#: libraries/messages.inc.php:429 tbl_relation.php:407 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -4103,31 +4103,31 @@ msgstr "" "Агар ташқи калит (FOREIGN KEY) орқали алоқа мавжуд бўлса, ички алоқа ўрнатиш " "шарт эмас." -#: libraries/messages.inc.php:435 pdf_pages.php:303 +#: libraries/messages.inc.php:431 pdf_pages.php:303 msgid "Internal relations" msgstr "Ички алоқалар" -#: libraries/messages.inc.php:438 tbl_indexes.php:256 tbl_structure.php:590 +#: libraries/messages.inc.php:434 tbl_indexes.php:256 tbl_structure.php:590 #: tbl_structure.php:601 msgid "Column count has to be larger than zero." msgstr "Устунлар сони нолдан кўп бўлиши шарт." -#: libraries/messages.inc.php:444 libraries/tbl_properties.inc.php:784 +#: libraries/messages.inc.php:440 libraries/tbl_properties.inc.php:784 #: tbl_structure.php:537 msgid "You have to add at least one field." msgstr "Ҳеч бўлмаганда битта майдон киритиш шарт." -#: libraries/messages.inc.php:449 +#: libraries/messages.inc.php:445 #, php-format msgid "Invalid server index: \"%s\"" msgstr "Сервер рақами нотўғри: \"%s\"" -#: libraries/messages.inc.php:452 libraries/mysql_charsets.lib.php:259 +#: libraries/messages.inc.php:448 libraries/mysql_charsets.lib.php:259 #: libraries/mysql_charsets.lib.php:349 msgid "Japanese" msgstr "Японча" -#: libraries/messages.inc.php:453 main.php:331 +#: libraries/messages.inc.php:449 main.php:331 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " @@ -4137,109 +4137,109 @@ msgstr "" "баъзи функциялари ишламайди. Масалан, навигация ойнаси автоматик тарзда " "янгиланиб турмайди." -#: libraries/messages.inc.php:454 server_status.php:257 +#: libraries/messages.inc.php:450 server_status.php:257 msgid "Joins" msgstr "Бирлашишлар" -#: libraries/messages.inc.php:457 server_privileges.php:763 +#: libraries/messages.inc.php:453 server_privileges.php:763 msgid "Do not change the password" msgstr "Паролни ўзгартирмаслик" -#: libraries/messages.inc.php:458 server_status.php:256 +#: libraries/messages.inc.php:454 server_status.php:256 msgid "Key cache" msgstr "Индекс кеши" -#: libraries/messages.inc.php:462 libraries/mysql_charsets.lib.php:268 +#: libraries/messages.inc.php:458 libraries/mysql_charsets.lib.php:268 #: libraries/mysql_charsets.lib.php:371 msgid "Korean" msgstr "Корейсча" -#: libraries/messages.inc.php:466 libraries/select_lang.lib.php:480 +#: libraries/messages.inc.php:462 libraries/select_lang.lib.php:480 #: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492 #, php-format msgid "Unknown language: %1$s." msgstr "Номаълум тил: %1$s." -#: libraries/messages.inc.php:468 +#: libraries/messages.inc.php:464 msgid "Table caption" msgstr "Жадвал сарлавҳаси" -#: libraries/messages.inc.php:469 +#: libraries/messages.inc.php:465 msgid "Content of table __TABLE__" msgstr " __TABLE__ жадвалининг мундарижаси" -#: libraries/messages.inc.php:470 +#: libraries/messages.inc.php:466 msgid "Continued table caption" msgstr "Жадвал сарлавҳаси (давоми)" -#: libraries/messages.inc.php:471 +#: libraries/messages.inc.php:467 msgid "(continued)" msgstr "(давоми)" -#: libraries/messages.inc.php:472 +#: libraries/messages.inc.php:468 msgid "Include table caption" msgstr "Жадвалга сарлавҳа қўшиш" -#: libraries/messages.inc.php:473 +#: libraries/messages.inc.php:469 msgid "Label key" msgstr "Белги идентификатори" -#: libraries/messages.inc.php:474 +#: libraries/messages.inc.php:470 msgid "LaTeX" msgstr "LaTeX" -#: libraries/messages.inc.php:475 +#: libraries/messages.inc.php:471 msgid "Structure of table __TABLE__" msgstr " __TABLE__ жадвалининг тузилиши" -#: libraries/messages.inc.php:476 libraries/mysql_charsets.lib.php:262 +#: libraries/messages.inc.php:472 libraries/mysql_charsets.lib.php:262 msgid "Latvian" msgstr "Латишча" -#: libraries/messages.inc.php:477 +#: libraries/messages.inc.php:473 msgid "CSV using LOAD DATA" msgstr "\"LOAD DATA\" ишлатилган CSV" -#: libraries/messages.inc.php:478 +#: libraries/messages.inc.php:474 msgid "Use LOCAL keyword" msgstr "\"LOCAL\" калит сўзини ишлатиш" -#: libraries/messages.inc.php:479 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:475 libraries/tbl_properties.inc.php:105 msgid "Length/Values" msgstr "Узунлик/қийматлар" -#: libraries/messages.inc.php:480 tbl_select.php:295 +#: libraries/messages.inc.php:476 tbl_select.php:295 msgid "Number of rows per page" msgstr "Саҳифадаги қаторлар сони " -#: libraries/messages.inc.php:484 libraries/mysql_charsets.lib.php:265 +#: libraries/messages.inc.php:480 libraries/mysql_charsets.lib.php:265 msgid "Lithuanian" msgstr "Литвача" -#: libraries/messages.inc.php:485 libraries/replication_gui.lib.php:302 +#: libraries/messages.inc.php:481 libraries/replication_gui.lib.php:302 #: server_privileges.php:729 msgid "Local" msgstr "Локал" -#: libraries/messages.inc.php:487 server_privileges.php:669 +#: libraries/messages.inc.php:483 server_privileges.php:669 msgid "Login Information" msgstr "Фойдаланувчи ҳисоби ҳақида маълумот" -#: libraries/messages.inc.php:490 libraries/navigation_header.inc.php:67 +#: libraries/messages.inc.php:486 libraries/navigation_header.inc.php:67 #: libraries/navigation_header.inc.php:70 #: libraries/navigation_header.inc.php:71 main.php:99 msgid "Log out" msgstr "Чиқиш" -#: libraries/messages.inc.php:497 server_status.php:440 +#: libraries/messages.inc.php:493 server_status.php:440 msgid "max. concurrent connections" msgstr "Максимал уланишлар сони " -#: libraries/messages.inc.php:498 +#: libraries/messages.inc.php:494 msgid "Maximal length of created query" msgstr "Тузилаёган сўровнинг максимал узунлиги" -#: libraries/messages.inc.php:500 main.php:282 +#: libraries/messages.inc.php:496 main.php:282 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -4250,7 +4250,7 @@ msgstr "" "маълумот йўқолишига олиб келиши мумкин. PHP \"mbstring\" кенгайтмасини " "ўрнатиш қатъий тавсия этилади." -#: libraries/messages.inc.php:501 main.php:274 +#: libraries/messages.inc.php:497 main.php:274 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -4260,24 +4260,24 @@ msgstr "" "func_overload параметри ёқилган. Маълумот йўқолиши олдини олиш учун, ушбу " "параметр ўчирилиши керак!" -#: libraries/messages.inc.php:502 +#: libraries/messages.inc.php:498 msgid "MediaWiki Table" msgstr "MediaWiki жадвали" -#: libraries/messages.inc.php:503 transformation_overview.php:25 +#: libraries/messages.inc.php:499 transformation_overview.php:25 msgid "Available MIME types" msgstr "Мавжуд MIME турлари" -#: libraries/messages.inc.php:504 transformation_overview.php:43 +#: libraries/messages.inc.php:500 transformation_overview.php:43 msgid "Available transformations" msgstr "Мавжуд ўгиришлар" -#: libraries/messages.inc.php:505 +#: libraries/messages.inc.php:501 msgctxt "$strMIME_description" msgid "Description" msgstr "Тавсиф" -#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:580 +#: libraries/messages.inc.php:503 libraries/tbl_properties.inc.php:580 #: transformation_overview.php:60 #, php-format msgid "" @@ -4287,7 +4287,7 @@ msgstr "" "Ҳозирги ватқда тавсиф мавжуд эмас.
Ишлатилаётган \"%s\" ўгиришлар " "намойиши функцияларининг иши яқин орада тавсифланади. " -#: libraries/messages.inc.php:509 libraries/tbl_properties.inc.php:137 +#: libraries/messages.inc.php:505 libraries/tbl_properties.inc.php:137 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -4296,7 +4296,7 @@ msgstr "" "Мавжуд MIME турлари ва ўгиришлар параметларини кўриш учун қуйидаги " "боғланишдан фойдаланинг: - \"%s\"ўзгариришлар тавсифи\"%s\"" -#: libraries/messages.inc.php:510 libraries/tbl_properties.inc.php:146 +#: libraries/messages.inc.php:506 libraries/tbl_properties.inc.php:146 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -4308,57 +4308,57 @@ msgstr "" "белгилари олдидан тескари эгри чизиқ бўлиши керак, масалан: \"\\\\xyz\" ёки " "\"a\\\"b\"." -#: libraries/messages.inc.php:511 libraries/tbl_properties.inc.php:145 +#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:145 msgid "Transformation options" msgstr "Ўгиришлар параметрлари" -#: libraries/messages.inc.php:513 transformation_overview.php:38 +#: libraries/messages.inc.php:509 transformation_overview.php:38 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "" "Курсив билан белгиланган MIME турлари алоҳида ўгириш функцияларига эга эмас. " -#: libraries/messages.inc.php:515 tbl_indexes.php:162 +#: libraries/messages.inc.php:511 tbl_indexes.php:162 msgid "Modify an index" msgstr "Индексни ўзгаририш" -#: libraries/messages.inc.php:517 pmd_general.php:108 +#: libraries/messages.inc.php:513 pmd_general.php:108 msgid "Move Menu" msgstr "Менюни кўчириш" -#: libraries/messages.inc.php:518 tbl_operations.php:276 +#: libraries/messages.inc.php:514 tbl_operations.php:276 msgid "Move table to (database.table):" msgstr "Жадвални (маълумотлар базаси.жадвал) га кўчириш:" -#: libraries/messages.inc.php:519 tbl_move_copy.php:56 +#: libraries/messages.inc.php:515 tbl_move_copy.php:56 #, php-format msgid "Table %s has been moved to %s." msgstr " \"%s\" жадвали \"%s\" га кўчирилди." -#: libraries/messages.inc.php:520 tbl_move_copy.php:46 +#: libraries/messages.inc.php:516 tbl_move_copy.php:46 msgid "Can't move table to same one!" msgstr "Жадвални ўз-ўзига кўчириб бўлмайди!" -#: libraries/messages.inc.php:521 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:517 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 #: libraries/mysql_charsets.lib.php:332 libraries/mysql_charsets.lib.php:354 #: libraries/mysql_charsets.lib.php:365 msgid "multilingual" msgstr "кўп тилдаги" -#: libraries/messages.inc.php:534 main.php:193 +#: libraries/messages.inc.php:530 main.php:193 msgid "MySQL charset" msgstr "MySQL-кодировка" -#: libraries/messages.inc.php:535 main.php:211 +#: libraries/messages.inc.php:531 main.php:211 msgid "MySQL client version" msgstr "MySQL-клиент версияси" -#: libraries/messages.inc.php:536 main.php:125 +#: libraries/messages.inc.php:532 main.php:125 msgid "MySQL connection collation" msgstr "MySQL билан уланишни чоғиштириш" -#: libraries/messages.inc.php:537 main.php:346 +#: libraries/messages.inc.php:533 main.php:346 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -4367,54 +4367,54 @@ msgstr "" "MySQL-клиент версияси (\"%s\") ўрнатилган MySQL-сервер версияси(\"%s\")дан " "фарқ қилмоқда. Бу ҳолат нохуш оқибатларга олиб келиши мумкин." -#: libraries/messages.inc.php:539 server_status.php:294 +#: libraries/messages.inc.php:535 server_status.php:294 msgid "Show processes" msgstr "Жараёнлар рўйхати" -#: libraries/messages.inc.php:545 navigation.php:210 server_databases.php:371 +#: libraries/messages.inc.php:541 navigation.php:210 server_databases.php:371 #: server_synchronize.php:1191 msgid "No databases" msgstr "Маълумотлар базаси мавжуд эмас" -#: libraries/messages.inc.php:546 server_databases.php:52 +#: libraries/messages.inc.php:542 server_databases.php:52 msgid "No databases selected." msgstr "Биронта ҳам маълумотлар базаси танланмаган." -#: libraries/messages.inc.php:548 libraries/relation.lib.php:1173 +#: libraries/messages.inc.php:544 libraries/relation.lib.php:1173 msgid "no description" msgstr "тавсиф мавжуд эмас" -#: libraries/messages.inc.php:552 libraries/zip_extension.lib.php:26 +#: libraries/messages.inc.php:548 libraries/zip_extension.lib.php:26 msgid "No files found inside ZIP archive!" msgstr "ZIP-архив ичида файл мавжуд эмас!" -#: libraries/messages.inc.php:555 tbl_indexes.php:91 +#: libraries/messages.inc.php:551 tbl_indexes.php:91 msgid "No index parts defined!" msgstr "Индекс қисмлари белгиланмаган!" -#: libraries/messages.inc.php:556 libraries/mult_submits.inc.php:435 +#: libraries/messages.inc.php:552 libraries/mult_submits.inc.php:435 #: tbl_replace.php:331 msgid "No change" msgstr "Ўзгариш йўқ" -#: libraries/messages.inc.php:557 +#: libraries/messages.inc.php:553 msgctxt "$strNoneDefault" msgid "None" msgstr "Йўқ" -#: libraries/messages.inc.php:560 libraries/plugin_interface.lib.php:312 +#: libraries/messages.inc.php:556 libraries/plugin_interface.lib.php:312 msgid "This format has no options" msgstr "Ушбу формат учун созланадиган параметр мавжуд эмас" -#: libraries/messages.inc.php:565 user_password.php:54 +#: libraries/messages.inc.php:561 user_password.php:54 msgid "You don't have sufficient privileges to be here right now!" msgstr "Ушбу саҳифага кириш учун Сизда етарли ҳуқуқ мавжуд эмас!" -#: libraries/messages.inc.php:566 tbl_row_action.php:29 +#: libraries/messages.inc.php:562 tbl_row_action.php:29 msgid "No rows selected" msgstr "Амални амалга ошириш учун битта ёки бир нечта қаторни танлаш керак. " -#: libraries/messages.inc.php:569 themes.php:32 +#: libraries/messages.inc.php:565 themes.php:32 #, php-format msgid "" "No themes support; please check your configuration and/or your themes in " @@ -4423,138 +4423,138 @@ msgstr "" "Мавзулар ишламаяпти, конфигурацияни ва \"%s\" каталогида мавзулар " "мавжудлигини текширинг." -#: libraries/messages.inc.php:571 libraries/relation.lib.php:95 +#: libraries/messages.inc.php:567 libraries/relation.lib.php:95 msgid "not OK" msgstr "Тайёр эмас" -#: libraries/messages.inc.php:572 server_synchronize.php:400 +#: libraries/messages.inc.php:568 server_synchronize.php:400 #: server_synchronize.php:839 msgid "not present" msgstr "Мавжуд эмас" -#: libraries/messages.inc.php:573 pdf_pages.php:36 pdf_pages.php:42 +#: libraries/messages.inc.php:569 pdf_pages.php:36 pdf_pages.php:42 #: pdf_pages.php:48 pdf_pages.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr " \"%s\" жадвали топилмади ёки \"%s\"да ўрнатилмаган" -#: libraries/messages.inc.php:574 server_privileges.php:804 +#: libraries/messages.inc.php:570 server_privileges.php:804 #: server_privileges.php:2166 msgid "No user(s) found." msgstr "Биронта ҳам фойдаланувчи топилмади." -#: libraries/messages.inc.php:578 pmd_general.php:164 +#: libraries/messages.inc.php:574 pmd_general.php:164 msgid "Number of tables" msgstr "Жадваллар сони " -#: libraries/messages.inc.php:581 server_databases.php:117 +#: libraries/messages.inc.php:577 server_databases.php:117 #: server_status.php:260 setup/lib/messages.inc.php:117 msgid "Tables" msgstr "Жадваллар" -#: libraries/messages.inc.php:583 libraries/relation.lib.php:99 +#: libraries/messages.inc.php:579 libraries/relation.lib.php:99 #: pmd_general.php:340 msgid "OK" msgstr "OK" -#: libraries/messages.inc.php:585 +#: libraries/messages.inc.php:581 msgid "Open Document Text" msgstr "OpenDocument матн" -#: libraries/messages.inc.php:588 tbl_select.php:138 +#: libraries/messages.inc.php:584 tbl_select.php:138 msgid "Operator" msgstr "Оператор" -#: libraries/messages.inc.php:589 tbl_operations.php:662 +#: libraries/messages.inc.php:585 tbl_operations.php:662 msgid "Optimize" msgstr "Оптимизация" -#: libraries/messages.inc.php:602 libraries/tbl_properties.inc.php:755 +#: libraries/messages.inc.php:598 libraries/tbl_properties.inc.php:755 msgid "PARTITION definition" msgstr "Бўлакларни (PARTITIONS) белгилаш" -#: libraries/messages.inc.php:603 tbl_structure.php:757 +#: libraries/messages.inc.php:599 tbl_structure.php:757 msgid "partitioned" msgstr "бўлакларга бўлинган" -#: libraries/messages.inc.php:604 tbl_operations.php:649 +#: libraries/messages.inc.php:600 tbl_operations.php:649 msgid "Partition maintenance" msgstr "бўлакларга хизмат кўрсатиш" -#: libraries/messages.inc.php:605 tbl_operations.php:657 +#: libraries/messages.inc.php:601 tbl_operations.php:657 #, php-format msgid "Partition %s" msgstr "\"%s\" бўлаги" -#: libraries/messages.inc.php:606 server_privileges.php:1212 +#: libraries/messages.inc.php:602 server_privileges.php:1212 #, php-format msgid "The password for %s was changed successfully." msgstr "\"%s\" фойдаланувчининг пароли муваффақиятли ўзгартирилди." -#: libraries/messages.inc.php:635 +#: libraries/messages.inc.php:631 #, php-format msgid "Schema of the \"%s\" database - Page %s" msgstr "\"%s\" маълумотлар базаси тузилиши - \"%s\" саҳифа" -#: libraries/messages.inc.php:636 +#: libraries/messages.inc.php:632 #, php-format msgid "The \"%s\" table doesn't exist!" msgstr "\"%s\" жадвали мавжуд эмас!" -#: libraries/messages.inc.php:637 pdf_schema.php:1013 +#: libraries/messages.inc.php:633 pdf_schema.php:1013 msgid "No tables" msgstr "Жадвал мавжуд эмас" -#: libraries/messages.inc.php:638 pmd_pdf.php:63 +#: libraries/messages.inc.php:634 pmd_pdf.php:63 msgid "Page has been created" msgstr "Саҳифа тузилди" -#: libraries/messages.inc.php:639 pmd_pdf.php:65 +#: libraries/messages.inc.php:635 pmd_pdf.php:65 msgid "Page creation failed" msgstr "Саҳифа тузиб бўлмади" -#: libraries/messages.inc.php:640 +#: libraries/messages.inc.php:636 msgid "PDF" msgstr "PDF" -#: libraries/messages.inc.php:641 +#: libraries/messages.inc.php:637 msgid "(Generates a report containing the data of a single table)" msgstr "(Маълум бир жадвал маълумотларини ўз ичига олган ҳисобот тузиш)" -#: libraries/messages.inc.php:642 +#: libraries/messages.inc.php:638 msgid "Report title" msgstr "Ҳисобот сарлавҳаси" -#: libraries/messages.inc.php:643 server_status.php:389 server_status.php:434 +#: libraries/messages.inc.php:639 server_status.php:389 server_status.php:434 #: server_status.php:497 server_status.php:555 msgid "per hour" msgstr "соатига" -#: libraries/messages.inc.php:644 server_status.php:498 +#: libraries/messages.inc.php:640 server_status.php:498 msgid "per minute" msgstr "минутига" -#: libraries/messages.inc.php:645 server_status.php:499 +#: libraries/messages.inc.php:641 server_status.php:499 msgid "per second" msgstr "секундига" -#: libraries/messages.inc.php:646 libraries/mysql_charsets.lib.php:271 +#: libraries/messages.inc.php:642 libraries/mysql_charsets.lib.php:271 msgid "Persian" msgstr "Форсча" -#: libraries/messages.inc.php:647 libraries/mysql_charsets.lib.php:250 +#: libraries/messages.inc.php:643 libraries/mysql_charsets.lib.php:250 msgid "phone book" msgstr "телефонлар китоби" -#: libraries/messages.inc.php:648 +#: libraries/messages.inc.php:644 msgid "PHP array" msgstr "PHP массиви" -#: libraries/messages.inc.php:650 main.php:213 +#: libraries/messages.inc.php:646 main.php:213 msgid "PHP extension" msgstr "PHP кенгайтмаси" -#: libraries/messages.inc.php:654 libraries/relation.lib.php:163 +#: libraries/messages.inc.php:650 libraries/relation.lib.php:163 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." @@ -4562,157 +4562,157 @@ msgstr "" "(config.inc.php) файлидаги муфассал танловларни фаоллаштириш, " "масалан, config.sample.inc.php дан бошлаб." -#: libraries/messages.inc.php:655 libraries/relation.lib.php:159 +#: libraries/messages.inc.php:651 libraries/relation.lib.php:159 msgid "Quick steps to setup advanced features:" msgstr "Муфассал танловларни тез созлаш учун қадамларs:" -#: libraries/messages.inc.php:656 libraries/relation.lib.php:161 +#: libraries/messages.inc.php:652 libraries/relation.lib.php:161 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" "Керакли жадвалларни script/create_tables.sql код ёрдамида тузиш." -#: libraries/messages.inc.php:657 libraries/relation.lib.php:162 +#: libraries/messages.inc.php:653 libraries/relation.lib.php:162 msgid "Create a pma user and give access to these tables." msgstr "phpMyAdmin фойдаланувчиси қўшиш ва ушбу жадвалларга рухсат бериш." -#: libraries/messages.inc.php:658 libraries/relation.lib.php:164 +#: libraries/messages.inc.php:654 libraries/relation.lib.php:164 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" "Янгиланган конфигурация файли ишга тушиши учун, phpMyAdmin дастуридан чиқиб, " "қайта киринг." -#: libraries/messages.inc.php:661 libraries/mysql_charsets.lib.php:274 +#: libraries/messages.inc.php:657 libraries/mysql_charsets.lib.php:274 msgid "Polish" msgstr "Полякча" -#: libraries/messages.inc.php:662 libraries/replication_gui.lib.php:67 +#: libraries/messages.inc.php:658 libraries/replication_gui.lib.php:67 #: server_synchronize.php:1163 msgid "Port" msgstr "Порт" -#: libraries/messages.inc.php:667 tbl_indexes.php:67 +#: libraries/messages.inc.php:663 tbl_indexes.php:67 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Бирламчи индекс номи \"PRIMARY\" бўлиши керак!" -#: libraries/messages.inc.php:668 tbl_indexes.php:184 +#: libraries/messages.inc.php:664 tbl_indexes.php:184 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "(\"PRIMARY\" номи фақат бирламчи индексгаэга бўлиши шарт!)" -#: libraries/messages.inc.php:669 libraries/mult_submits.inc.php:76 +#: libraries/messages.inc.php:665 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:474 msgid "Primary" msgstr "Бирламчи" -#: libraries/messages.inc.php:673 server_privileges.php:227 +#: libraries/messages.inc.php:669 server_privileges.php:227 msgid "Includes all privileges except GRANT." msgstr "GRANT дан ташқари барча привилегияларни ўз ичига олади" -#: libraries/messages.inc.php:674 server_privileges.php:153 +#: libraries/messages.inc.php:670 server_privileges.php:153 #: server_privileges.php:476 msgid "Allows altering the structure of existing tables." msgstr "Мавжуд жадвалларнинг тузилишини ўзгартиришга рухсат беради" -#: libraries/messages.inc.php:675 server_privileges.php:169 +#: libraries/messages.inc.php:671 server_privileges.php:169 #: server_privileges.php:482 msgid "Allows altering and dropping stored routines." msgstr "Сақланадиган муолажаларни ўзгартириш ва ўчиришга рухсат беради" -#: libraries/messages.inc.php:676 server_privileges.php:145 +#: libraries/messages.inc.php:672 server_privileges.php:145 #: server_privileges.php:475 msgid "Allows creating new databases and tables." msgstr "Янги маълумотлар базалари ва жадваллар тузишга рухсат беради" -#: libraries/messages.inc.php:677 server_privileges.php:168 +#: libraries/messages.inc.php:673 server_privileges.php:168 #: server_privileges.php:481 msgid "Allows creating stored routines." msgstr "Сақланадиган муолажалар тузишга рухсат беради" -#: libraries/messages.inc.php:678 server_privileges.php:475 +#: libraries/messages.inc.php:674 server_privileges.php:475 msgid "Allows creating new tables." msgstr "Янги жадваллар тузишга рухсат беради" -#: libraries/messages.inc.php:679 server_privileges.php:156 +#: libraries/messages.inc.php:675 server_privileges.php:156 #: server_privileges.php:479 msgid "Allows creating temporary tables." msgstr "Вақтинчалик жадваллар тузишга рухсат беради" -#: libraries/messages.inc.php:680 server_privileges.php:170 +#: libraries/messages.inc.php:676 server_privileges.php:170 #: server_privileges.php:515 msgid "Allows creating, dropping and renaming user accounts." msgstr "Фойдаланувчилар ҳисобини қўшиш, ўчириш ва ўзгартиришга рухсат беради" -#: libraries/messages.inc.php:681 server_privileges.php:160 +#: libraries/messages.inc.php:677 server_privileges.php:160 #: server_privileges.php:164 server_privileges.php:487 #: server_privileges.php:491 msgid "Allows creating new views." msgstr "Янги намойишлар тузиш(CREATE VIEW)га рухсат беради" -#: libraries/messages.inc.php:682 server_privileges.php:144 +#: libraries/messages.inc.php:678 server_privileges.php:144 #: server_privileges.php:467 msgid "Allows deleting data." msgstr "Маълумотларни ўчиришга рухсат беради" -#: libraries/messages.inc.php:683 server_privileges.php:146 +#: libraries/messages.inc.php:679 server_privileges.php:146 #: server_privileges.php:478 msgid "Allows dropping databases and tables." msgstr "Маълумотлар базаларини ва жадвалларни ўчиришга рухсат беради" -#: libraries/messages.inc.php:684 server_privileges.php:478 +#: libraries/messages.inc.php:680 server_privileges.php:478 msgid "Allows dropping tables." msgstr "Жадвалларни ўчиришга рухъсат беради" -#: libraries/messages.inc.php:685 server_privileges.php:161 +#: libraries/messages.inc.php:681 server_privileges.php:161 #: server_privileges.php:495 msgid "Allows to set up events for the event scheduler" msgstr "Кечиктирилган ҳодисаларни созлашга рухсат беради" -#: libraries/messages.inc.php:686 server_privileges.php:171 +#: libraries/messages.inc.php:682 server_privileges.php:171 #: server_privileges.php:483 msgid "Allows executing stored routines." msgstr "Сақланадиган муолажаларни бажаришга рухсат беради" -#: libraries/messages.inc.php:687 server_privileges.php:150 +#: libraries/messages.inc.php:683 server_privileges.php:150 #: server_privileges.php:470 msgid "Allows importing data from and exporting data into files." msgstr "Маълумотларни файлдан импорт ва файлга экспорт қилишга рухсат беради" -#: libraries/messages.inc.php:688 server_privileges.php:501 +#: libraries/messages.inc.php:684 server_privileges.php:501 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Фойдаланувчиларни қўшиш ва привилегиялар жадвалини қайта юкламасдан " "привилегиялар қўшишга рухсат беради" -#: libraries/messages.inc.php:689 server_privileges.php:152 +#: libraries/messages.inc.php:685 server_privileges.php:152 #: server_privileges.php:477 msgid "Allows creating and dropping indexes." msgstr "Индекслар қўшиш ва уларни ўчиришга рухсат беради" -#: libraries/messages.inc.php:690 server_privileges.php:142 +#: libraries/messages.inc.php:686 server_privileges.php:142 #: server_privileges.php:403 server_privileges.php:465 msgid "Allows inserting and replacing data." msgstr "Маълумот қўйиш ва ўзгартиришга рухсат беради" -#: libraries/messages.inc.php:691 server_privileges.php:157 +#: libraries/messages.inc.php:687 server_privileges.php:157 #: server_privileges.php:510 msgid "Allows locking tables for the current thread." msgstr "Жорий оқим учун жадвални блокировку қилишга рухсат беради" -#: libraries/messages.inc.php:692 server_privileges.php:607 +#: libraries/messages.inc.php:688 server_privileges.php:607 #: server_privileges.php:609 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Фойдаланувчи бир соат давомида ўрнатиши мумкин бўлган янги уланишлар сони" -#: libraries/messages.inc.php:693 server_privileges.php:595 +#: libraries/messages.inc.php:689 server_privileges.php:595 #: server_privileges.php:597 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Фойдаланувчи бир соат давомида юбориши мумкин бўлган сўровлар сони" -#: libraries/messages.inc.php:694 server_privileges.php:601 +#: libraries/messages.inc.php:690 server_privileges.php:601 #: server_privileges.php:603 msgid "" "Limits the number of commands that change any table or database the user may " @@ -4721,63 +4721,63 @@ msgstr "" "Фойдаланувчи бир соат давомида бажариши мумкин бўлган бирон-бир жадвал ёки " "маълумотлар базасини ўзгартирадиган буйруқлар сони" -#: libraries/messages.inc.php:695 server_privileges.php:613 +#: libraries/messages.inc.php:691 server_privileges.php:613 #: server_privileges.php:615 msgid "Limits the number of simultaneous connections the user may have." msgstr "" "Бир фойдаланувчи томонидан бир вақтнинг ўзида ўрнатиши мумкин бўлган " "уланишлар сони" -#: libraries/messages.inc.php:696 server_privileges.php:149 +#: libraries/messages.inc.php:692 server_privileges.php:149 #: server_privileges.php:505 msgid "Allows viewing processes of all users" msgstr "Барча фойдаланувчиларнинг жараёнларини кўришга рухсат беради" -#: libraries/messages.inc.php:697 server_privileges.php:151 +#: libraries/messages.inc.php:693 server_privileges.php:151 #: server_privileges.php:409 server_privileges.php:511 msgid "Has no effect in this MySQL version." msgstr "MySQL-сервернинг ушбу версияда бундай хусусият мавжуд эмас!" -#: libraries/messages.inc.php:698 server_privileges.php:147 +#: libraries/messages.inc.php:694 server_privileges.php:147 #: server_privileges.php:506 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Сервер созланишларини қайта юклашга ва унинг кешларини тозалашга рухсат " "беради" -#: libraries/messages.inc.php:699 server_privileges.php:159 +#: libraries/messages.inc.php:695 server_privileges.php:159 #: server_privileges.php:513 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Бош ва тобе серверларнинг жойлашиши ҳақидаги маълумотни талаб қилишга рухсат " "беради" -#: libraries/messages.inc.php:700 server_privileges.php:158 +#: libraries/messages.inc.php:696 server_privileges.php:158 #: server_privileges.php:514 msgid "Needed for the replication slaves." msgstr "Репликация (захира нусха кўчириш) вақтида тобе серверлар учун керак" -#: libraries/messages.inc.php:701 server_privileges.php:141 +#: libraries/messages.inc.php:697 server_privileges.php:141 #: server_privileges.php:400 server_privileges.php:464 msgid "Allows reading data." msgstr "Маълумотларни чақиришга рухсат беради" -#: libraries/messages.inc.php:702 server_privileges.php:154 +#: libraries/messages.inc.php:698 server_privileges.php:154 #: server_privileges.php:508 msgid "Gives access to the complete list of databases." msgstr "Маълумотлар базаларининг тўлиқ рўйхатига рухсат беради" -#: libraries/messages.inc.php:703 server_privileges.php:165 +#: libraries/messages.inc.php:699 server_privileges.php:165 #: server_privileges.php:167 server_privileges.php:480 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Намойиш тузадиган сўров(SHOW CREATE VIEW)ни бажаришга рухсат беради" -#: libraries/messages.inc.php:704 server_privileges.php:148 +#: libraries/messages.inc.php:700 server_privileges.php:148 #: server_privileges.php:507 msgid "Allows shutting down the server." msgstr "Сервер ишини якунлашга рухсат беради" -#: libraries/messages.inc.php:705 server_privileges.php:155 +#: libraries/messages.inc.php:701 server_privileges.php:155 #: server_privileges.php:504 msgid "" "Allows connecting, even if maximum number of connections is reached; " @@ -4788,57 +4788,57 @@ msgstr "" "(Кўпгина административ вазифаларни бажариш учун керак, масалан, глобал " "ўзгарувчилар ўрнатиш ёки бошқа фойдаланувчи жараёнини ўчириш)" -#: libraries/messages.inc.php:706 server_privileges.php:162 +#: libraries/messages.inc.php:702 server_privileges.php:162 #: server_privileges.php:496 msgid "Allows creating and dropping triggers" msgstr "" "Триггерлар (маълум шартлар бажарилганда автоматик ишга тушадиган жараёнлар) " "тузиш ва уларни ўчиришга рухсат беради" -#: libraries/messages.inc.php:707 server_privileges.php:143 +#: libraries/messages.inc.php:703 server_privileges.php:143 #: server_privileges.php:406 server_privileges.php:466 msgid "Allows changing data." msgstr "Маълумотларни ўзгартиришга рухсат беради" -#: libraries/messages.inc.php:708 server_privileges.php:221 +#: libraries/messages.inc.php:704 server_privileges.php:221 msgid "No privileges." msgstr "Привилегиялар йўқ" -#: libraries/messages.inc.php:710 server_privileges.php:1296 +#: libraries/messages.inc.php:706 server_privileges.php:1296 msgid "The privileges were reloaded successfully." msgstr "Привилегиялар муваффақиятли қайта юкланди." -#: libraries/messages.inc.php:712 libraries/server_links.inc.php:80 +#: libraries/messages.inc.php:708 libraries/server_links.inc.php:80 msgid "Processes" msgstr "Жараёнлар" -#: libraries/messages.inc.php:714 main.php:187 +#: libraries/messages.inc.php:710 main.php:187 msgid "Protocol version" msgstr "Протокол версияси" -#: libraries/messages.inc.php:715 +#: libraries/messages.inc.php:711 msgid "Put fields names in the first row" msgstr "Майдон номларини биринчи қаторга жойлаштириш" -#: libraries/messages.inc.php:720 server_synchronize.php:1003 +#: libraries/messages.inc.php:716 server_synchronize.php:1003 msgid "The following queries have been executed:" msgstr "Қуйидаги сўровлар бажарилди:" -#: libraries/messages.inc.php:721 server_status.php:251 +#: libraries/messages.inc.php:717 server_status.php:251 msgid "Query cache" msgstr "Сўровлар кеши" -#: libraries/messages.inc.php:722 libraries/navigation_header.inc.php:80 +#: libraries/messages.inc.php:718 libraries/navigation_header.inc.php:80 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 setup/lib/messages.inc.php:122 msgid "Query window" msgstr "Сўровлар ойнаси" -#: libraries/messages.inc.php:725 querywindow.php:109 querywindow.php:217 +#: libraries/messages.inc.php:721 querywindow.php:109 querywindow.php:217 msgid "SQL history" msgstr "SQL-сўровлар тарихи" -#: libraries/messages.inc.php:726 server_status.php:490 +#: libraries/messages.inc.php:722 server_status.php:490 #, php-format msgid "" "Query statistics: Since its startup, %s queries have been sent to the " @@ -4847,93 +4847,93 @@ msgstr "" "Сўровлар статискаси: ишга туширилгандан вақтдан бошлаб серверга юборилган " "сўровлар сони - \"%s\"." -#: libraries/messages.inc.php:728 server_status.php:554 +#: libraries/messages.inc.php:724 server_status.php:554 msgid "Query type" msgstr "Сўров тури" -#: libraries/messages.inc.php:729 libraries/sql_query_form.lib.php:381 +#: libraries/messages.inc.php:725 libraries/sql_query_form.lib.php:381 msgid "Do not overwrite this query from outside the window" msgstr "Сўровлар ойнаси ичидаги маълумотларни блокировка қилиш" -#: libraries/messages.inc.php:732 tbl_operations.php:663 +#: libraries/messages.inc.php:728 tbl_operations.php:663 msgid "Rebuild" msgstr "Қайта қуриш" -#: libraries/messages.inc.php:733 server_status.php:394 +#: libraries/messages.inc.php:729 server_status.php:394 msgid "Received" msgstr "Қабул қилинди" -#: libraries/messages.inc.php:734 pmd_pdf.php:89 +#: libraries/messages.inc.php:730 pmd_pdf.php:89 msgid "recommended" msgstr "тавсия этилган" -#: libraries/messages.inc.php:736 tbl_operations.php:702 +#: libraries/messages.inc.php:732 tbl_operations.php:702 msgid "Check referential integrity:" msgstr "Маълумотлар яхлитлигини текшириш:" -#: libraries/messages.inc.php:740 pdf_schema.php:1032 pdf_schema.php:1141 +#: libraries/messages.inc.php:736 pdf_schema.php:1032 pdf_schema.php:1141 msgid "Relational schema" msgstr "Алоқалар схемаси" -#: libraries/messages.inc.php:744 tbl_relation.php:399 +#: libraries/messages.inc.php:740 tbl_relation.php:399 msgid "Relations" msgstr "Алоқалар" -#: libraries/messages.inc.php:745 tbl_structure.php:507 tbl_structure.php:509 +#: libraries/messages.inc.php:741 tbl_structure.php:507 tbl_structure.php:509 msgid "Relation view" msgstr "Алоқаларни кўриш" -#: libraries/messages.inc.php:746 server_privileges.php:1246 +#: libraries/messages.inc.php:742 server_privileges.php:1246 msgid "Reloading the privileges" msgstr "Привилегиялар қайта юкланмоқда" -#: libraries/messages.inc.php:747 navigation.php:66 navigation.php:67 +#: libraries/messages.inc.php:743 navigation.php:66 navigation.php:67 #: navigation.php:70 msgid "Reload navigation frame" msgstr "Навигация ойнасини қайта юклаш" -#: libraries/messages.inc.php:748 pmd_general.php:80 +#: libraries/messages.inc.php:744 pmd_general.php:80 msgid "Reload" msgstr "Қайта юклаш" -#: libraries/messages.inc.php:749 libraries/server_synchronize.lib.php:1345 +#: libraries/messages.inc.php:745 libraries/server_synchronize.lib.php:1345 #: libraries/server_synchronize.lib.php:1371 msgid "Remote server" msgstr "Масофадаги сервер" -#: libraries/messages.inc.php:750 +#: libraries/messages.inc.php:746 msgid "Remove CRLF characters within fields" msgstr "Майдонлар ичидаги сатрдан-сатрга кўчириш белгиларини олиб ташлаш" -#: libraries/messages.inc.php:751 tbl_operations.php:676 +#: libraries/messages.inc.php:747 tbl_operations.php:676 msgid "Remove partitioning" msgstr "Бўлакларни (PARTITIONS) ўчириш" -#: libraries/messages.inc.php:752 server_privileges.php:1575 +#: libraries/messages.inc.php:748 server_privileges.php:1575 msgid "Remove selected users" msgstr "Белгиланган фойдаланувчиларни ўчириш" -#: libraries/messages.inc.php:755 tbl_operations.php:338 +#: libraries/messages.inc.php:751 tbl_operations.php:338 msgid "Rename table to" msgstr "Жадвал номини ўзгартириш" -#: libraries/messages.inc.php:756 view_operations.php:93 +#: libraries/messages.inc.php:752 view_operations.php:93 msgid "Rename view to" msgstr "Кўриниш номини ўзгартириш" -#: libraries/messages.inc.php:757 tbl_operations.php:664 +#: libraries/messages.inc.php:753 tbl_operations.php:664 msgid "Repair" msgstr "Тиклаш" -#: libraries/messages.inc.php:759 +#: libraries/messages.inc.php:755 msgid "Replace NULL by" msgstr "NULL қийматни қуйидагига алмаштириш" -#: libraries/messages.inc.php:760 +#: libraries/messages.inc.php:756 msgid "Replace table data with file" msgstr "Жадвал маълумотларини файл маълумотлари билан алмаштириш" -#: libraries/messages.inc.php:761 server_replication.php:228 +#: libraries/messages.inc.php:757 server_replication.php:228 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -4941,45 +4941,45 @@ msgstr "" "Энди қуйидаги қаторларни \"my.cnf\" файлининг охирига қўшинг ва MySQL " "серверини қайта юкланг." -#: libraries/messages.inc.php:762 libraries/replication_gui.lib.php:236 +#: libraries/messages.inc.php:758 libraries/replication_gui.lib.php:236 #: server_replication.php:194 msgid "Add slave replication user" msgstr "Тобе репликация фойдаланувчисини қўшиш" -#: libraries/messages.inc.php:763 server_replication.php:74 +#: libraries/messages.inc.php:759 server_replication.php:74 #, php-format msgid "Master server changed succesfully to %s" msgstr "Бош репликация сервери қуйидагига ўзгартирилди: %s" -#: libraries/messages.inc.php:764 server_replication.php:182 +#: libraries/messages.inc.php:760 server_replication.php:182 msgid "This server is configured as master in a replication process." msgstr "Ушбу сервер репликация жараёнида \"бош\" деб конфигурация қилинган." -#: libraries/messages.inc.php:765 server_replication.php:322 +#: libraries/messages.inc.php:761 server_replication.php:322 msgid "Control slave:" msgstr "Тобе серверни назорат қилиш:" -#: libraries/messages.inc.php:766 server_replication.php:65 +#: libraries/messages.inc.php:762 server_replication.php:65 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" "Бош сервер позициясини ўқиб бўлмади. Сервердаги привилегиларда муаммо бўлиши " "мумкин." -#: libraries/messages.inc.php:767 server_replication.php:58 +#: libraries/messages.inc.php:763 server_replication.php:58 #, php-format msgid "Unable to connect to master %s." msgstr "%s бош серверига уланиб бўлмади." -#: libraries/messages.inc.php:768 server_replication.php:221 +#: libraries/messages.inc.php:764 server_replication.php:221 msgid "Replicate all databases; Ignore:" msgstr "Барча базаларни репликация қилиш; Қуйидагилардан ташқари:" -#: libraries/messages.inc.php:769 server_replication.php:222 +#: libraries/messages.inc.php:765 server_replication.php:222 msgid "Ignore all databases; Replicate:" msgstr "Барча базаларга эътибор бермаслик; Қуйидагилардан ташқари:" -#: libraries/messages.inc.php:770 server_replication.php:218 +#: libraries/messages.inc.php:766 server_replication.php:218 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -4993,16 +4993,16 @@ msgstr "" "бермаслик ва баъзиларини репликация қилишни (бир нечта базаларнигина " "репликация қилишда фойдали) танлашингиз мумкин. Репликация усулини танланг:" -#: libraries/messages.inc.php:771 server_replication.php:217 +#: libraries/messages.inc.php:767 server_replication.php:217 msgid "Master configuration" msgstr "Бош сервер конфигурацияси" -#: libraries/messages.inc.php:772 server_replication.php:181 +#: libraries/messages.inc.php:768 server_replication.php:181 #: server_replication.php:209 msgid "Master replication" msgstr "Бош сервер репликацияси" -#: libraries/messages.inc.php:774 server_replication.php:230 +#: libraries/messages.inc.php:770 server_replication.php:230 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " @@ -5012,11 +5012,11 @@ msgstr "" "ушбу сервер \"бош сервер\" деб конфигурация қилинганлиги ҳақидаги маълумотни " "кўришингиз керак." -#: libraries/messages.inc.php:775 server_replication.php:225 +#: libraries/messages.inc.php:771 server_replication.php:225 msgid "Please select databases:" msgstr "Базаларни танланг:" -#: libraries/messages.inc.php:776 server_replication.php:210 +#: libraries/messages.inc.php:772 server_replication.php:210 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -5025,7 +5025,7 @@ msgstr "" "Ушбу сервер репликация жараёнида \"бош сервер\" деб конфигурация қилинмаган. " "Сиз уни конфигурация қилмоқчимисиз?" -#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:188 +#: libraries/messages.inc.php:773 libraries/replication_gui.lib.php:188 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." @@ -5033,51 +5033,51 @@ msgstr "" "Рўйхатда фақат \"--report-host=host_name\" танлови ёрдамда юкланган тобе " "серверлар кўрсатилмоқда." -#: libraries/messages.inc.php:778 server_replication.php:187 +#: libraries/messages.inc.php:774 server_replication.php:187 msgid "Show connected slaves" msgstr "Уланган тобе серверларни кўрсатиш" -#: libraries/messages.inc.php:779 libraries/messages.inc.php:885 +#: libraries/messages.inc.php:775 libraries/messages.inc.php:881 #: server_replication.php:184 server_status.php:281 msgid "Show master status" msgstr "Уланган бош серверларни кўрсатиш" -#: libraries/messages.inc.php:780 server_replication.php:334 +#: libraries/messages.inc.php:776 server_replication.php:334 msgid "Skipping error(s) might lead into unsynchronized master and slave!" msgstr "" "Хатолик(лар)ни ташлаб кетиш бош ва тобе серверларнинг тўла синхронизация " "қилинмаганлигига олиб келиши мумкин!" -#: libraries/messages.inc.php:781 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:51 #: server_replication.php:347 msgid "Change or reconfigure master server" msgstr "Бош серверни ўзгартириш ёки қайта конфигурация қилиш" -#: libraries/messages.inc.php:782 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:778 libraries/replication_gui.lib.php:51 msgid "Slave configuration" msgstr "Тобе сервер конфигурацияси" -#: libraries/messages.inc.php:783 server_replication.php:305 +#: libraries/messages.inc.php:779 server_replication.php:305 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" "Ушбу сервер репликация жараёнида \"тобе сервер\" деб конфигурация қилинган. " "Қуйидаги амаллардан бирини танланг:" -#: libraries/messages.inc.php:784 server_replication.php:332 +#: libraries/messages.inc.php:780 server_replication.php:332 msgid "Error management:" msgstr "Хатоликларни бошқариш:" -#: libraries/messages.inc.php:785 server_replication.php:328 +#: libraries/messages.inc.php:781 server_replication.php:328 #, php-format msgid "IO Thread %s only" msgstr "Фақат %s қириш/чиқиш оқимини" -#: libraries/messages.inc.php:786 server_replication.php:296 +#: libraries/messages.inc.php:782 server_replication.php:296 msgid "Slave IO Thread not running!" msgstr "Тобе кириш/чиқиш оқими ишламаяпти!" -#: libraries/messages.inc.php:787 server_replication.php:355 +#: libraries/messages.inc.php:783 server_replication.php:355 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -5086,40 +5086,40 @@ msgstr "" "Ушбу сервер репликация жараёнида \"тобе сервер\" деб конфигурация " "қилинмаган. Сиз уни конфигурация қилмоқчимисиз?" -#: libraries/messages.inc.php:788 server_replication.php:326 +#: libraries/messages.inc.php:784 server_replication.php:326 msgid "Reset slave" msgstr "Тобе серверни тиклаш" -#: libraries/messages.inc.php:789 server_replication.php:308 +#: libraries/messages.inc.php:785 server_replication.php:308 msgid "See slave status table" msgstr "Тобе сервер статуси жадвалини кўриш" -#: libraries/messages.inc.php:790 server_replication.php:336 +#: libraries/messages.inc.php:786 server_replication.php:336 msgid "Skip current error" msgstr "Жорий хатоликларни ташлаб кетиш" -#: libraries/messages.inc.php:791 server_replication.php:340 +#: libraries/messages.inc.php:787 server_replication.php:340 msgid "errors." msgstr " хатоликлар." -#: libraries/messages.inc.php:792 server_replication.php:337 +#: libraries/messages.inc.php:788 server_replication.php:337 msgid "Skip next" msgstr "Кейингисини ташлаб кетиш" -#: libraries/messages.inc.php:793 server_replication.php:248 +#: libraries/messages.inc.php:789 server_replication.php:248 msgid "Slave replication" msgstr "Тобе сервер репликацияси" -#: libraries/messages.inc.php:794 server_replication.php:293 +#: libraries/messages.inc.php:790 server_replication.php:293 msgid "Slave SQL Thread not running!" msgstr "Тобе SQL Оқими ишламаяпти!" -#: libraries/messages.inc.php:795 server_replication.php:327 +#: libraries/messages.inc.php:791 server_replication.php:327 #, php-format msgid "SQL Thread %s only" msgstr "Фақат %s SQL кириш/чиқиш оқимини" -#: libraries/messages.inc.php:796 +#: libraries/messages.inc.php:792 #, php-format msgid "" "This MySQL server works as %s in replication process. For further " @@ -5130,161 +5130,161 @@ msgstr "" "сифатида ишлайди. Сервернинг репликация статуси ҳақида батафсил маълумот " "учун, <a href=\"#replication\">репликация бўлими</a>га киринг." -#: libraries/messages.inc.php:797 +#: libraries/messages.inc.php:793 msgid "Master status" msgstr "Бош сервер статуси" -#: libraries/messages.inc.php:798 server_status.php:721 +#: libraries/messages.inc.php:794 server_status.php:721 msgid "Replication status" msgstr "Репликация статуси" -#: libraries/messages.inc.php:799 +#: libraries/messages.inc.php:795 msgid "Slave status" msgstr "Тобе сервер статуси" -#: libraries/messages.inc.php:800 server_replication.php:311 +#: libraries/messages.inc.php:796 server_replication.php:311 msgid "Synchronize databases with master" msgstr "Базаларни бош сервер билан синхронизация қилиш" -#: libraries/messages.inc.php:801 server_replication.php:71 +#: libraries/messages.inc.php:797 server_replication.php:71 msgid "Unable to change master" msgstr "Бош серверни ўзгартириб бўлмади" -#: libraries/messages.inc.php:802 server_replication.php:51 +#: libraries/messages.inc.php:798 server_replication.php:51 msgid "Unknown error" msgstr "Номаълум хатолик" -#: libraries/messages.inc.php:803 main.php:163 pdf_pages.php:344 +#: libraries/messages.inc.php:799 main.php:163 pdf_pages.php:344 #: setup/lib/FormDisplay.tpl.php:216 tbl_change.php:1175 msgid "Reset" msgstr "Тозалаш" -#: libraries/messages.inc.php:804 server_privileges.php:591 +#: libraries/messages.inc.php:800 server_privileges.php:591 msgid "Resource limits" msgstr "Ресурслардан фойдаланишни чеклаш" -#: libraries/messages.inc.php:805 tbl_change.php:1209 +#: libraries/messages.inc.php:801 tbl_change.php:1209 #, php-format msgid "Restart insertion with %s rows" msgstr "Қўйилаётган қаторлар сони: \"%s\"" -#: libraries/messages.inc.php:807 server_privileges.php:1578 +#: libraries/messages.inc.php:803 server_privileges.php:1578 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Фойдаланувчиларнинг барча фаол привилегияларини бекор қилиш, сўнг уларни " "ўчириш." -#: libraries/messages.inc.php:808 server_privileges.php:1176 +#: libraries/messages.inc.php:804 server_privileges.php:1176 #, php-format msgid "You have revoked the privileges for %s" msgstr " \"%s\" фойдаланувчининг привилегиялари бекор қилинди." -#: libraries/messages.inc.php:809 server_privileges.php:1333 +#: libraries/messages.inc.php:805 server_privileges.php:1333 msgid "Revoke" msgstr "Бекор қилиш" -#: libraries/messages.inc.php:810 libraries/mysql_charsets.lib.php:280 +#: libraries/messages.inc.php:806 libraries/mysql_charsets.lib.php:280 msgid "Romanian" msgstr "Руминча" -#: libraries/messages.inc.php:813 tbl_printview.php:404 tbl_structure.php:786 +#: libraries/messages.inc.php:809 tbl_printview.php:404 tbl_structure.php:786 msgid "Row length" msgstr "Қатор узунлиги" -#: libraries/messages.inc.php:815 tbl_printview.php:414 tbl_structure.php:794 +#: libraries/messages.inc.php:811 tbl_printview.php:414 tbl_structure.php:794 msgid " Row size " msgstr "Қатор ҳажми" -#: libraries/messages.inc.php:821 tbl_printview.php:366 tbl_structure.php:726 +#: libraries/messages.inc.php:817 tbl_printview.php:366 tbl_structure.php:726 msgid "Row Statistics" msgstr "Қаторлар статистикаси" -#: libraries/messages.inc.php:822 +#: libraries/messages.inc.php:818 #, php-format msgid "running on %s" msgstr "\"%s\" серверда ишламоқда" -#: libraries/messages.inc.php:824 libraries/sql_query_form.lib.php:223 +#: libraries/messages.inc.php:820 libraries/sql_query_form.lib.php:223 #, php-format msgid "Run SQL query/queries on server %s" msgstr "\"%s\" серверида SQL-сўров(лар)ни бажариш " -#: libraries/messages.inc.php:825 libraries/sql_query_form.lib.php:240 +#: libraries/messages.inc.php:821 libraries/sql_query_form.lib.php:240 #: libraries/sql_query_form.lib.php:265 #, php-format msgid "Run SQL query/queries on database %s" msgstr "\"%s\" маълумотлар базасида SQL-сўров(лар)ни бажариш" -#: libraries/messages.inc.php:826 libraries/mysql_charsets.lib.php:337 +#: libraries/messages.inc.php:822 libraries/mysql_charsets.lib.php:337 msgid "Russian" msgstr "Русча" -#: libraries/messages.inc.php:829 pmd_general.php:68 +#: libraries/messages.inc.php:825 pmd_general.php:68 msgid "Save position" msgstr "Жадваллар жойлашишини сақлаш" -#: libraries/messages.inc.php:830 libraries/tbl_properties.inc.php:776 +#: libraries/messages.inc.php:826 libraries/tbl_properties.inc.php:776 #: pdf_pages.php:484 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:214 setup/lib/FormDisplay.tpl.php:215 #: tbl_change.php:1126 tbl_indexes.php:248 tbl_relation.php:566 msgid "Save" msgstr "Сақлаш" -#: libraries/messages.inc.php:831 +#: libraries/messages.inc.php:827 msgid "The scale factor is too small to fit the schema on one page" msgstr "Схема битта саҳифага сиғмайди. Масштабни кичрайтириш зарур." -#: libraries/messages.inc.php:843 main.php:298 +#: libraries/messages.inc.php:839 main.php:298 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "cookie-аутентификация ишлатилганда, конфигурацион файлдаги $cfg" "[\"blowfish_secret\"] директиваси қийматини ўрнатиб парол белгилаш керак." -#: libraries/messages.inc.php:844 navigation.php:353 navigation.php:516 +#: libraries/messages.inc.php:840 navigation.php:353 navigation.php:516 msgid "Please select a database" msgstr "Маълумотлар базасини танланг" -#: libraries/messages.inc.php:846 server_binlog.php:120 +#: libraries/messages.inc.php:842 server_binlog.php:120 msgid "Select binary log to view" msgstr "Кўриш учун бинар журнални танланг" -#: libraries/messages.inc.php:847 tbl_select.php:270 +#: libraries/messages.inc.php:843 tbl_select.php:270 msgid "Select fields (at least one):" msgstr "Майдонни танланг (камида битта):" -#: libraries/messages.inc.php:851 pdf_pages.php:320 +#: libraries/messages.inc.php:847 pdf_pages.php:320 msgid "Select Tables" msgstr "Жадвалларни танланг" -#: libraries/messages.inc.php:853 server_status.php:404 +#: libraries/messages.inc.php:849 server_status.php:404 msgid "Sent" msgstr "Юборилди" -#: libraries/messages.inc.php:857 libraries/select_server.lib.php:45 +#: libraries/messages.inc.php:853 libraries/select_server.lib.php:45 #: setup/frames/index.inc.php:97 setup/lib/messages.inc.php:115 msgid "Servers" msgstr "Серверлар" -#: libraries/messages.inc.php:858 server_status.php:255 +#: libraries/messages.inc.php:854 server_status.php:255 msgid "Delayed inserts" msgstr "Кечиктирилган қўйилмалар" -#: libraries/messages.inc.php:859 server_status.php:46 +#: libraries/messages.inc.php:855 server_status.php:46 msgid "Runtime Information" msgstr "MySQL-сервернинг ҳозирги ҳолати" -#: libraries/messages.inc.php:860 server_status.php:350 +#: libraries/messages.inc.php:856 server_status.php:350 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "MySQL-сервер \"%s\" давомида ишламоқда. Ишга туширилган вақт: \"%s\"." -#: libraries/messages.inc.php:861 libraries/server_links.inc.php:53 +#: libraries/messages.inc.php:857 libraries/server_links.inc.php:53 #: server_engines.php:112 server_engines.php:116 server_status.php:304 #: test/theme.php:105 msgid "Variables" msgstr "Ўзгарувчилар" -#: libraries/messages.inc.php:862 server_status.php:383 +#: libraries/messages.inc.php:858 server_status.php:383 msgid "" "Server traffic: These tables show the network traffic statistics of " "this MySQL server since its startup." @@ -5292,11 +5292,11 @@ msgstr "" "Трафик: MySQL-сервер ишга туширилгандан вақтдан бошлаб тармоқ трафики " "статистикаси." -#: libraries/messages.inc.php:863 server_variables.php:35 +#: libraries/messages.inc.php:859 server_variables.php:35 msgid "Server variables and settings" msgstr "Сервер ўзгарувчилари ва созланишлари" -#: libraries/messages.inc.php:865 main.php:290 +#: libraries/messages.inc.php:861 main.php:290 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -5309,7 +5309,7 @@ msgstr "" "давомийлигидан кичикроқ, шунинг учун логин сессиянгиз phpMyAdmin дастурида " "конфигурация қилганингиздан тезроқ тугайди." -#: libraries/messages.inc.php:866 +#: libraries/messages.inc.php:862 msgid "" "Cannot start session without errors, please check errors given in your PHP " "and/or webserver log file and configure your PHP installation properly." @@ -5317,11 +5317,11 @@ msgstr "" "Сессия механизми ишида хатолик юз берди. PHP ва/ёки Веб-сервер журнали " "текшириб кўринг ва керакли тузатишлар киритинг." -#: libraries/messages.inc.php:867 server_variables.php:55 +#: libraries/messages.inc.php:863 server_variables.php:55 msgid "Session value" msgstr "Сессия қийматлари" -#: libraries/messages.inc.php:868 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:864 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 " @@ -5333,44 +5333,44 @@ msgstr "" "битталик қўштирноқ (\") белгилари олдидан тескари эгри чизиқ бўлиши керак, " "масалан: \"\\\\xyz\" ёки \"a\\\"b\"." -#: libraries/messages.inc.php:876 server_binlog.php:192 server_binlog.php:195 +#: libraries/messages.inc.php:872 server_binlog.php:192 server_binlog.php:195 #: server_processlist.php:49 server_processlist.php:51 msgid "Show Full Queries" msgstr "Сўровларнинг кенгайтирилган кўриниши" -#: libraries/messages.inc.php:878 pmd_general.php:64 +#: libraries/messages.inc.php:874 pmd_general.php:64 msgid "Show/Hide left menu" msgstr "Чап менюни кўрсатиш/яшириш" -#: libraries/messages.inc.php:880 sql.php:513 +#: libraries/messages.inc.php:876 sql.php:513 msgid "Showing as PHP code" msgstr "PHP-код сифатида кўрсатиш" -#: libraries/messages.inc.php:882 sql.php:516 tbl_replace.php:360 +#: libraries/messages.inc.php:878 sql.php:516 tbl_replace.php:360 msgid "Showing SQL query" msgstr "SQL-сўровни кўрсатиш" -#: libraries/messages.inc.php:883 tbl_change.php:1132 +#: libraries/messages.inc.php:879 tbl_change.php:1132 msgid "Show insert query" msgstr "Киритилган сўровни кўрсатиш" -#: libraries/messages.inc.php:886 server_status.php:273 +#: libraries/messages.inc.php:882 server_status.php:273 msgid "Show open tables" msgstr "Очиқ жадваллар рўйхати" -#: libraries/messages.inc.php:887 main.php:219 +#: libraries/messages.inc.php:883 main.php:219 msgid "Show PHP information" msgstr "PHP ҳақида маълумотни кўрсатиш" -#: libraries/messages.inc.php:889 server_status.php:278 +#: libraries/messages.inc.php:885 server_status.php:278 msgid "Show slave hosts" msgstr "Тобе серверлар ҳақида маълумот" -#: libraries/messages.inc.php:890 server_status.php:284 +#: libraries/messages.inc.php:886 server_status.php:284 msgid "Show slave status" msgstr "Репликация сервери аҳволи ҳақида маълумот" -#: libraries/messages.inc.php:891 +#: libraries/messages.inc.php:887 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -5379,11 +5379,11 @@ msgstr "" "Бинар журнали кешини ишлатиб, \"binlog_cache_size\" қийматидан ошиб, ўз " "ичига олган SQL-жумлалари вақтинчалик файлга сақланган транзакциялар сони." -#: libraries/messages.inc.php:892 +#: libraries/messages.inc.php:888 msgid "The number of transactions that used the temporary binary log cache." msgstr "Бинар журнал кешини ишлатган транзакциялар сони." -#: libraries/messages.inc.php:893 +#: libraries/messages.inc.php:889 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -5396,11 +5396,11 @@ msgstr "" "сақланишини таъминлаш мақсадида tmp_table_size ўзгарувчисининг қийматини " "ошириш тавсия этилади." -#: libraries/messages.inc.php:894 +#: libraries/messages.inc.php:890 msgid "How many temporary files mysqld has created." msgstr "MySQL сервери (mysqld) томонидан тузилган вақтинчалик файллар сони." -#: libraries/messages.inc.php:895 +#: libraries/messages.inc.php:891 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -5408,7 +5408,7 @@ msgstr "" "Сервер томонидан SQL-жумлалари бажарилаётган вақтда хотирада автоматик " "тузилган вақтинчалик жадваллар сони." -#: libraries/messages.inc.php:896 +#: libraries/messages.inc.php:892 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -5416,31 +5416,31 @@ msgstr "" "\"INSERT DELAYED\" сўровларини қайта ишлаш жараёнида юз берган хатолар " "(масалан, калитлар такрорланиши оқибатида) сони." -#: libraries/messages.inc.php:897 +#: libraries/messages.inc.php:893 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "Бажариладиган \"INSERT DELAYED\" сўровлар сони." -#: libraries/messages.inc.php:898 +#: libraries/messages.inc.php:894 msgid "The number of INSERT DELAYED rows written." msgstr "" "Маълумотларни кечиктириб қўйиш (\"INSERT DELAYED\") режимида ёзилган " "қаторлар сони." -#: libraries/messages.inc.php:899 +#: libraries/messages.inc.php:895 msgid "The number of executed FLUSH statements." msgstr "Бажарилган \"FLUSH\" буйруқлар сони." -#: libraries/messages.inc.php:900 +#: libraries/messages.inc.php:896 msgid "The number of internal COMMIT statements." msgstr "Ички \"COMMIT\" буйруқлари сони." -#: libraries/messages.inc.php:901 +#: libraries/messages.inc.php:897 msgid "The number of times a row was deleted from a table." msgstr "Жадвалдал ёзувларни ўчириш бўйича сшровлар сони." -#: libraries/messages.inc.php:902 +#: libraries/messages.inc.php:898 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -5450,7 +5450,7 @@ msgstr "" "бериши мумкин. Бу жараён топиш деб номланади. Handler_discover - топилган " "жадваллар сони." -#: libraries/messages.inc.php:903 +#: libraries/messages.inc.php:899 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -5459,7 +5459,7 @@ msgstr "" "Индексдан биринчи ёзувни ўқишга бўлган сўровлар сони. Ўзгарувчининг қиймати " "катта бўлса, сервер бир неча маротиба индексни кўриб чиқади." -#: libraries/messages.inc.php:904 +#: libraries/messages.inc.php:900 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -5468,7 +5468,7 @@ msgstr "" "Ўзгарувчининг қиймати катталиги сўров ва жадваллар тўғри индексланганидан " "далолат беради." -#: libraries/messages.inc.php:905 +#: libraries/messages.inc.php:901 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -5478,7 +5478,7 @@ msgstr "" "Ҳажми чекланган индекс устунига бўлган сўров ёки индексни кўриб чиқиш " "вақтида ўзгарувчи қиймати ошади." -#: libraries/messages.inc.php:906 +#: libraries/messages.inc.php:902 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -5487,7 +5487,7 @@ msgstr "" "бўлган сўровлар сони. Одатда оптималлаштириш учун қўлланилади: ORDER BY ... " "DESC." -#: libraries/messages.inc.php:907 +#: libraries/messages.inc.php:903 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -5500,7 +5500,7 @@ msgstr "" "чиқишни талаб этадиган сўровларнинг тез-ез бажарилиши; индекслардан нотўғри " "фойдаланадиган бирлашмаларнинг мавжудлиги." -#: libraries/messages.inc.php:908 +#: libraries/messages.inc.php:904 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -5512,35 +5512,35 @@ msgstr "" "индексланганлигини ёки сўровлар индексларнинг афзалликларидан " "фойдаланмаётганлигини билдиради." -#: libraries/messages.inc.php:909 +#: libraries/messages.inc.php:905 msgid "The number of internal ROLLBACK statements." msgstr "ROLLBACK ички буйруқлар сони." -#: libraries/messages.inc.php:910 +#: libraries/messages.inc.php:906 msgid "The number of requests to update a row in a table." msgstr "Жадвалдаги ёзувларни янгилашга бўлган сўровлар сони." -#: libraries/messages.inc.php:911 +#: libraries/messages.inc.php:907 msgid "The number of requests to insert a row in a table." msgstr "Жадвалга ёзув қўйишга бўлган сўровлар сони." -#: libraries/messages.inc.php:912 +#: libraries/messages.inc.php:908 msgid "The number of pages containing data (dirty or clean)." msgstr "Маълумот мавжуд бўлган саҳифалар сони (\"кир\" ва \"тоза\")." -#: libraries/messages.inc.php:913 +#: libraries/messages.inc.php:909 msgid "The number of pages currently dirty." msgstr "\"Кир\" саҳифаларнинг жорий сони." -#: libraries/messages.inc.php:914 +#: libraries/messages.inc.php:910 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Буфер пулидаги тозалаш жараёни (FLUSH) қўлланилган саҳифалар сони." -#: libraries/messages.inc.php:915 +#: libraries/messages.inc.php:911 msgid "The number of free pages." msgstr "Бўш саҳифалар сони." -#: libraries/messages.inc.php:916 +#: libraries/messages.inc.php:912 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -5550,7 +5550,7 @@ msgstr "" "устидан ўқиш ёки ёзиш жараёни бажарилмоқда, ёки уларни бошқа сабабларга кўра " "тозалаш ёки ўчириш имконияти йўқ." -#: libraries/messages.inc.php:917 +#: libraries/messages.inc.php:913 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -5562,11 +5562,11 @@ msgstr "" "\"Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data\"." -#: libraries/messages.inc.php:918 +#: libraries/messages.inc.php:914 msgid "Total size of buffer pool, in pages." msgstr "Буфер пулининг умумий ҳажми (саҳифаларда)." -#: libraries/messages.inc.php:919 +#: libraries/messages.inc.php:915 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -5575,7 +5575,7 @@ msgstr "" "сони. Ушбу ҳол сўров жадвални тасодифий тартибда кўриб чиқаётганда рўй " "беради." -#: libraries/messages.inc.php:920 +#: libraries/messages.inc.php:916 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -5584,12 +5584,12 @@ msgstr "" "сони. Ушбу ҳол InnoDB жадвални тўлалигича кетма-кет кўриб чиқаётганда рўй " "беради" -#: libraries/messages.inc.php:921 +#: libraries/messages.inc.php:917 msgid "The number of logical read requests InnoDB has done." msgstr "" "InnoDB томонидан амалга оширилган ўқишга бўлган кетма-кет сўровлар сони." -#: libraries/messages.inc.php:922 +#: libraries/messages.inc.php:918 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -5597,7 +5597,7 @@ msgstr "" "InnoDB буфер пулидан бажар олмаган ва саҳифалаб ўқишдан фойдаланган ўқишга " "бўлган кетма-кет сўровлар сони." -#: libraries/messages.inc.php:923 +#: libraries/messages.inc.php:919 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -5610,51 +5610,51 @@ msgstr "" "Ушбу ҳисоблагич шундай кутишлар сонини билдиради. Агар буфер пулининг ҳажми " "тўғри белгиланган бўлса, унда кутишлар сони катта бўлмаслиги керак." -#: libraries/messages.inc.php:924 +#: libraries/messages.inc.php:920 msgid "The number writes done to the InnoDB buffer pool." msgstr "InnoDB буфер пулига амалга оширилган ёзувлар сони." -#: libraries/messages.inc.php:925 +#: libraries/messages.inc.php:921 msgid "The number of fsync() operations so far." msgstr "Жорий вақтда амалга оширилган \"fsync()\" операциялари сони." -#: libraries/messages.inc.php:926 +#: libraries/messages.inc.php:922 msgid "The current number of pending fsync() operations." msgstr "Тугалланмаган \"fsync()\" операциялари сони." -#: libraries/messages.inc.php:927 +#: libraries/messages.inc.php:923 msgid "The current number of pending reads." msgstr "Тугалланмаган ўқиш операциялари сони." -#: libraries/messages.inc.php:928 +#: libraries/messages.inc.php:924 msgid "The current number of pending writes." msgstr "Тугалланмаган ёзиш операциялари сони." -#: libraries/messages.inc.php:929 +#: libraries/messages.inc.php:925 msgid "The amount of data read so far, in bytes." msgstr "Жорий вақтда ўқилган маълумотлар йиғиндиси (байтларда)." -#: libraries/messages.inc.php:930 +#: libraries/messages.inc.php:926 msgid "The total number of data reads." msgstr "Умумий маълумотларни ўқиш операциялари сони." -#: libraries/messages.inc.php:931 +#: libraries/messages.inc.php:927 msgid "The total number of data writes." msgstr "Умумий маълумотларни ёзиш операциялари сони." -#: libraries/messages.inc.php:932 +#: libraries/messages.inc.php:928 msgid "The amount of data written so far, in bytes." msgstr "Жорий вақтда ёзилган маълумотлар йиғиндиси (байтларда)." -#: libraries/messages.inc.php:933 +#: libraries/messages.inc.php:929 msgid "The number of pages that have been written for doublewrite operations." msgstr "\"doublewrite\" операциялари учун ёзилган саҳифалар сони." -#: libraries/messages.inc.php:934 +#: libraries/messages.inc.php:930 msgid "The number of doublewrite operations that have been performed." msgstr "Бажарилган \"doublewrite\" операциялари сони." -#: libraries/messages.inc.php:935 +#: libraries/messages.inc.php:931 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -5662,35 +5662,35 @@ msgstr "" "Журнал буферининг ҳажми кичик бўлганлиги сабабли, унинг тозаланиши кутаётган " "ёзувлар сони" -#: libraries/messages.inc.php:936 +#: libraries/messages.inc.php:932 msgid "The number of log write requests." msgstr "Журналга ёзишга бўлган сўровларсони." -#: libraries/messages.inc.php:937 +#: libraries/messages.inc.php:933 msgid "The number of physical writes to the log file." msgstr "Журнал файлидаги жисмоний ёзувлар сони." -#: libraries/messages.inc.php:938 +#: libraries/messages.inc.php:934 msgid "The number of fsync() writes done to the log file." msgstr "Журнал файлига \"fsync()\" ёрдамида амалга оширилган ёзувлар сони." -#: libraries/messages.inc.php:939 +#: libraries/messages.inc.php:935 msgid "The number of pending log file fsyncs." msgstr "\"fsync()\" ёрдамида амалга оширилиши кутилаётган ёзувлар сони." -#: libraries/messages.inc.php:940 +#: libraries/messages.inc.php:936 msgid "Pending log file writes." msgstr "Тугалланмаган журналга ёзиш сўровлари сони." -#: libraries/messages.inc.php:941 +#: libraries/messages.inc.php:937 msgid "The number of bytes written to the log file." msgstr "Журнал файлига ёзилган маълумотлар ҳажми (байтларда)." -#: libraries/messages.inc.php:942 +#: libraries/messages.inc.php:938 msgid "The number of pages created." msgstr "Тузилган саҳифалар сони." -#: libraries/messages.inc.php:943 +#: libraries/messages.inc.php:939 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -5699,51 +5699,51 @@ msgstr "" "Кўпгина қийматлар саҳифаларда келтирилади, лекин саҳифа ҳажми билган ҳолда, " "уларни байтларга ўтказиш мумкин." -#: libraries/messages.inc.php:944 +#: libraries/messages.inc.php:940 msgid "The number of pages read." msgstr "Ўқилган саҳифалар сони." -#: libraries/messages.inc.php:945 +#: libraries/messages.inc.php:941 msgid "The number of pages written." msgstr "Ёзилган саҳифалар сони." -#: libraries/messages.inc.php:946 +#: libraries/messages.inc.php:942 msgid "The number of row locks currently being waited for." msgstr "Ҳозирда кутилаётган қатор блокировкалари сони." -#: libraries/messages.inc.php:947 +#: libraries/messages.inc.php:943 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Қатор блокировкасини кутишнинг ўртача вақти (миллисекундларда)." -#: libraries/messages.inc.php:948 +#: libraries/messages.inc.php:944 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Қатор блокировкасини кутишнинг умумий вақти (миллисекундларда)." -#: libraries/messages.inc.php:949 +#: libraries/messages.inc.php:945 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Қатор блокировкасини кутишнинг максимал вақти (миллисекундларда)." -#: libraries/messages.inc.php:950 +#: libraries/messages.inc.php:946 msgid "The number of times a row lock had to be waited for." msgstr "Умумий кутилаётган қатор блокировкалари сони." -#: libraries/messages.inc.php:951 +#: libraries/messages.inc.php:947 msgid "The number of rows deleted from InnoDB tables." msgstr "InnoDB жадвалидан ўчирилган қаторлар сони." -#: libraries/messages.inc.php:952 +#: libraries/messages.inc.php:948 msgid "The number of rows inserted in InnoDB tables." msgstr "InnoDB жадвалига ёзилган қаторлар сони." -#: libraries/messages.inc.php:953 +#: libraries/messages.inc.php:949 msgid "The number of rows read from InnoDB tables." msgstr "InnoDB жадвалларидан ўқилган қаторлар сони." -#: libraries/messages.inc.php:954 +#: libraries/messages.inc.php:950 msgid "The number of rows updated in InnoDB tables." msgstr "InnoDB жадвалларида янгиланган қаторлар сони." -#: libraries/messages.inc.php:955 +#: libraries/messages.inc.php:951 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -5751,7 +5751,7 @@ msgstr "" "Индекс кешидаги ўзгартирилган, лекин ҳали дискка ёзилмаган блоклар сони. " "Ушбу параметр, шунингдек, \"Not_flushed_key_blocks\" номи билан ҳам маълум." -#: libraries/messages.inc.php:956 +#: libraries/messages.inc.php:952 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -5759,7 +5759,7 @@ msgstr "" "Индекс кешидаги ишлатилмаётган блоклар сони. Ушбу параметр индекс кеши " "ишлатилиш даражасини белгилайди." -#: libraries/messages.inc.php:957 +#: libraries/messages.inc.php:953 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -5768,11 +5768,11 @@ msgstr "" "Индекс кешидаги ишлатилаётган блоклар сони. Ушбу қиймат бир вақтнинг ўзида " "ишлатилиши мумкин бўлган блоклар сонини билдиради." -#: libraries/messages.inc.php:958 +#: libraries/messages.inc.php:954 msgid "The number of requests to read a key block from the cache." msgstr "Индекс кешидаги блокларни ўқишга бўлган сўровлар сони." -#: libraries/messages.inc.php:959 +#: libraries/messages.inc.php:955 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -5783,15 +5783,15 @@ msgstr "" "қилиб белгиланган. Кешга бўлган муваффақиятсиз мурожаатлар коэффициенти " "қуйидагича ҳисобланди: Key_reads/Key_read_requests." -#: libraries/messages.inc.php:960 +#: libraries/messages.inc.php:956 msgid "The number of requests to write a key block to the cache." msgstr "Блокни индекс кешига ёзишга бўлган сўровлар сони." -#: libraries/messages.inc.php:961 +#: libraries/messages.inc.php:957 msgid "The number of physical writes of a key block to disk." msgstr "Дискдан индекс блокларини жисмоний ёзиш операциялари сони." -#: libraries/messages.inc.php:962 +#: libraries/messages.inc.php:958 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -5802,13 +5802,13 @@ msgstr "" "эффективлигини таққослашда фойдали ҳисобланади. Асл ноль қиймат ҳали сўров " "компиляция жараёни бажарилмаганлигини билдиради." -#: libraries/messages.inc.php:963 +#: libraries/messages.inc.php:959 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" "Количество строк, ожидающих вставки в запросах \"INSERT DELAYED\" " "сўровларида қўйилишини кутаётган қаторлар сони." -#: libraries/messages.inc.php:964 +#: libraries/messages.inc.php:960 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -5816,39 +5816,39 @@ msgstr "" "Очилаётган жадвалларнинг умумий сони. Агар ўзгарувчининг қиймати катта " "бўлса, жадвал кеши (table_cache) ҳажмини ошириш тавсия этилади." -#: libraries/messages.inc.php:965 +#: libraries/messages.inc.php:961 msgid "The number of files that are open." msgstr "Очиқ файллар сони." -#: libraries/messages.inc.php:966 +#: libraries/messages.inc.php:962 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Очиқ оқимлар сони (журнал файлларида кўлланилади). Оқим деб \"fopen()" "\" функцияси ёрдамида очилган файлга айтилади." -#: libraries/messages.inc.php:967 +#: libraries/messages.inc.php:963 msgid "The number of tables that are open." msgstr "Очиқ жадваллар сони." -#: libraries/messages.inc.php:968 +#: libraries/messages.inc.php:964 msgid "The number of free memory blocks in query cache." msgstr "Сўровлар кешидаги бўш хотира блоклари сони." -#: libraries/messages.inc.php:969 +#: libraries/messages.inc.php:965 msgid "The amount of free memory for query cache." msgstr "Сўровлар кеши учун бўш хотира ҳажми" -#: libraries/messages.inc.php:970 +#: libraries/messages.inc.php:966 msgid "The number of cache hits." msgstr "" "Сўровлар кешига \"тушишлар\" сони, яъни кешда турган сўровлар томонидан " "қониқтирилган сўровлар сони." -#: libraries/messages.inc.php:971 +#: libraries/messages.inc.php:967 msgid "The number of queries added to the cache." msgstr "Сўровлар кешига қўшилган сўровлар сони." -#: libraries/messages.inc.php:972 +#: libraries/messages.inc.php:968 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -5860,7 +5860,7 @@ msgstr "" "кешдан сўровларни ўчиришда \"LRU\" (Least Recently Used - энг олдинги " "ишлатилган) стратегиясидан фойдаланади" -#: libraries/messages.inc.php:973 +#: libraries/messages.inc.php:969 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -5868,24 +5868,24 @@ msgstr "" "Кешлаб бўлмайдиган ёки кешлаш \"SQL_NO_CACHE\" калит сўзи ёрдамида " "сўндирилган сўровлар сони." -#: libraries/messages.inc.php:974 +#: libraries/messages.inc.php:970 msgid "The number of queries registered in the cache." msgstr "Кешда регистрация қилинган сўровлар сони." -#: libraries/messages.inc.php:975 +#: libraries/messages.inc.php:971 msgid "The total number of blocks in the query cache." msgstr "Сўровлар кешига ажратилган хотира блокларнинг умумий сони." -#: libraries/messages.inc.php:976 +#: libraries/messages.inc.php:972 msgctxt "$strShowStatusReset" msgid "Reset" msgstr "Бекор қилиш" -#: libraries/messages.inc.php:977 +#: libraries/messages.inc.php:973 msgid "The status of failsafe replication (not yet implemented)." msgstr "Барқарор репликациялар сони (ҳали амалга оширилмаган)." -#: libraries/messages.inc.php:978 +#: libraries/messages.inc.php:974 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -5893,13 +5893,13 @@ msgstr "" "Индекс ишлатмасдан бажарилган бирлашма сўровлар сони. Агар ўзгарувчи қиймати " "0 бўлмаса, жадвал индексларини текшириш тавсия этилади." -#: libraries/messages.inc.php:979 +#: libraries/messages.inc.php:975 msgid "The number of joins that used a range search on a reference table." msgstr "" "Боғланиш мавжуд бўлган жадвалда диапазон бўйича қидирув ишлатган ҳолда " "бажарилган бирлашма сўровлар сони." -#: libraries/messages.inc.php:980 +#: libraries/messages.inc.php:976 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -5908,7 +5908,7 @@ msgstr "" "ишлатган ҳолда бажарилган бирлашма сўровлар сони. Агар ўзгарувчи қиймати 0 " "бўлмаса, жадвал индексларини текшириш тавсия этилади." -#: libraries/messages.inc.php:981 +#: libraries/messages.inc.php:977 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -5917,17 +5917,17 @@ msgstr "" "сўровлар сони. Одатда, ушбу ўзгарувчининг қиймати, ҳатто жуда катта бўлса " "ҳам, унчалик муҳим эмас." -#: libraries/messages.inc.php:982 +#: libraries/messages.inc.php:978 msgid "The number of joins that did a full scan of the first table." msgstr "" "Биринчи жадвалга нисбатан тўлалигича қидирув ишлатган ҳолда бажарилган " "бирлашма сўровлар сони." -#: libraries/messages.inc.php:983 +#: libraries/messages.inc.php:979 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "Тобе оқим томонидан жорий вақтда очилган вақтинчалик жадваллар сони." -#: libraries/messages.inc.php:984 +#: libraries/messages.inc.php:980 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -5935,13 +5935,13 @@ msgstr "" "Ишга туширилгандан буён репликациянинг тобе оқими томонидан бажарилган қайта " "транзакцияларнинг умумий сони." -#: libraries/messages.inc.php:985 +#: libraries/messages.inc.php:981 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Агар ушбу сервер бош серверга уланган ҳолда тобе сервер сифатида ишлаётган " "бўлса, ушбу ўзгарувчига \"ON\" қиймати белгиланади." -#: libraries/messages.inc.php:986 +#: libraries/messages.inc.php:982 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -5949,12 +5949,12 @@ msgstr "" "Тузилиши учун slow_launch_time секунддан кўпроқ вақт талаб этилган оқимлар " "сони." -#: libraries/messages.inc.php:987 +#: libraries/messages.inc.php:983 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "long_query_time секунддан кўпроқ вақт бажарилган сўровлар сони." -#: libraries/messages.inc.php:988 +#: libraries/messages.inc.php:984 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -5964,25 +5964,25 @@ msgstr "" "қиймати катта бўлса, \"sort_buffer_size\" ўзгарувчисининг қийматини ошириш " "зарур." -#: libraries/messages.inc.php:989 +#: libraries/messages.inc.php:985 msgid "The number of sorts that were done with ranges." msgstr "Диапазон ёрдамида бажарилган сортировка операциялари сони." -#: libraries/messages.inc.php:990 +#: libraries/messages.inc.php:986 msgid "The number of sorted rows." msgstr "Сортировка қилинган қаторлар сони" -#: libraries/messages.inc.php:991 +#: libraries/messages.inc.php:987 msgid "The number of sorts that were done by scanning the table." msgstr "" "Жадвални тўлалигича кўриб чиқиш ёрдамида бажарилган сортировка операциялари " "сони." -#: libraries/messages.inc.php:992 +#: libraries/messages.inc.php:988 msgid "The number of times that a table lock was acquired immediately." msgstr "Дарҳол қониқтирилган жадвални блокировка қилишга бўлган сўровлар сони." -#: libraries/messages.inc.php:993 +#: libraries/messages.inc.php:989 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -5994,7 +5994,7 @@ msgstr "" "пайдо бўлаётган бўлса, аввал сўровларни оптималлаштириш, сўнгра эса жадвал" "(лар)ни қисмларга бўлиш ёки репликация ишлатиш керак." -#: libraries/messages.inc.php:994 +#: libraries/messages.inc.php:990 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -6005,11 +6005,11 @@ msgstr "" "ушбу қиймат қизил ранг билан белгиланган бўлса, унда \"thread_cache_size\" " "ўзгарувчисининг қийматини ошириш зарур." -#: libraries/messages.inc.php:995 +#: libraries/messages.inc.php:991 msgid "The number of currently open connections." msgstr "Очиқ жорий уланишлар сони." -#: libraries/messages.inc.php:996 +#: libraries/messages.inc.php:992 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -6021,28 +6021,28 @@ msgstr "" "ўзгарувчисининг қийматини ошириш мумкин (лекин у унумдорликни унчалик ҳам " "оширмайди)." -#: libraries/messages.inc.php:997 +#: libraries/messages.inc.php:993 msgid "The number of threads that are not sleeping." msgstr "Фаол ҳолатда бўлган жараёнлар сони." -#: libraries/messages.inc.php:999 tbl_printview.php:75 +#: libraries/messages.inc.php:995 tbl_printview.php:75 msgid "Show tables" msgstr "Жадвалларни кўрсатиш" -#: libraries/messages.inc.php:1000 libraries/sql_query_form.lib.php:396 +#: libraries/messages.inc.php:996 libraries/sql_query_form.lib.php:396 msgid " Show this query here again " msgstr "Ушбу сўровни қайта кўрсатиш" -#: libraries/messages.inc.php:1001 libraries/mysql_charsets.lib.php:217 +#: libraries/messages.inc.php:997 libraries/mysql_charsets.lib.php:217 #: libraries/mysql_charsets.lib.php:342 msgid "Simplified Chinese" msgstr "Соддалаштирилган хитойча" -#: libraries/messages.inc.php:1002 tbl_operations.php:258 +#: libraries/messages.inc.php:998 tbl_operations.php:258 msgid "(singly)" msgstr "(устун)" -#: libraries/messages.inc.php:1005 libraries/replication_gui.lib.php:52 +#: libraries/messages.inc.php:1001 libraries/replication_gui.lib.php:52 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" @@ -6051,47 +6051,47 @@ msgstr "" "ҳосил қилинг. Агар шундай бўлмаса, қуйидаги қаторларни [mysqld] бўлимига " "қўшинг:" -#: libraries/messages.inc.php:1006 libraries/mysql_charsets.lib.php:283 +#: libraries/messages.inc.php:1002 libraries/mysql_charsets.lib.php:283 msgid "Slovak" msgstr "Словакча" -#: libraries/messages.inc.php:1007 libraries/mysql_charsets.lib.php:286 +#: libraries/messages.inc.php:1003 libraries/mysql_charsets.lib.php:286 msgid "Slovenian" msgstr "Словенча" -#: libraries/messages.inc.php:1008 pmd_general.php:95 +#: libraries/messages.inc.php:1004 pmd_general.php:95 msgid "Small/Big All" msgstr "Барча жадваллар кўрсатилишини Тахлаш/Тиклаш" -#: libraries/messages.inc.php:1009 pmd_general.php:91 +#: libraries/messages.inc.php:1005 pmd_general.php:91 msgid "Snap to grid" msgstr "Тўрга боғлаб қўйиш" -#: libraries/messages.inc.php:1011 server_synchronize.php:1167 +#: libraries/messages.inc.php:1007 server_synchronize.php:1167 msgid "Socket" msgstr "Сокет" -#: libraries/messages.inc.php:1013 server_status.php:259 +#: libraries/messages.inc.php:1009 server_status.php:259 msgid "Sorting" msgstr "Сортировка" -#: libraries/messages.inc.php:1015 tbl_printview.php:310 tbl_structure.php:657 +#: libraries/messages.inc.php:1011 tbl_printview.php:310 tbl_structure.php:657 msgid "Space usage" msgstr "Фойдаланилаётган жой" -#: libraries/messages.inc.php:1016 libraries/mysql_charsets.lib.php:289 +#: libraries/messages.inc.php:1012 libraries/mysql_charsets.lib.php:289 msgid "Spanish" msgstr "Испанча" -#: libraries/messages.inc.php:1019 +#: libraries/messages.inc.php:1015 msgid "Export type" msgstr "Эскпорт тури" -#: libraries/messages.inc.php:1020 +#: libraries/messages.inc.php:1016 msgid "Export time in UTC" msgstr "Вақтни UTC шаклда экспорт қилиш" -#: libraries/messages.inc.php:1021 libraries/sqlparser.lib.php:173 +#: libraries/messages.inc.php:1017 libraries/sqlparser.lib.php:173 msgid "" "There is a chance that you may have found a bug in the SQL parser. Please " "examine your query closely, and check that the quotes are correct and not " @@ -6113,7 +6113,7 @@ msgstr "" "секциясидаги маълумотлар билан қўшиб, хато тавсифларини ишлаб чиқарувчиларга " "юборинг:" -#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:137 +#: libraries/messages.inc.php:1018 libraries/sqlparser.lib.php:137 msgid "" "There seems to be an error in your SQL query. The MySQL server error output " "below, if there is any, may also help you in diagnosing the problem" @@ -6121,32 +6121,32 @@ msgstr "" "Эҳтимол, SQL сўровида хатолик мавжуд. Агар хато мавжуд бўлса, пастда MySQL " "сервер хатоликни кўрсатади ва ўша хабар муаммо ечимини топишга ёрдам беради." -#: libraries/messages.inc.php:1026 libraries/sqlparser.lib.php:495 +#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:495 msgid "Invalid Identifer" msgstr "Нотўғри идентификатор" -#: libraries/messages.inc.php:1027 libraries/sqlparser.lib.php:344 +#: libraries/messages.inc.php:1023 libraries/sqlparser.lib.php:344 msgid "Unclosed quote" msgstr "Ёпилмаган қўштирноқ" -#: libraries/messages.inc.php:1028 libraries/sqlparser.lib.php:612 +#: libraries/messages.inc.php:1024 libraries/sqlparser.lib.php:612 msgid "Unknown Punctuation String" msgstr "Номаълум пунктуация" -#: libraries/messages.inc.php:1030 server_replication.php:327 +#: libraries/messages.inc.php:1026 server_replication.php:327 #: server_replication.php:328 msgid "Start" msgstr "Бошлаш" -#: libraries/messages.inc.php:1033 tbl_printview.php:369 tbl_structure.php:729 +#: libraries/messages.inc.php:1029 tbl_printview.php:369 tbl_structure.php:729 msgid "Statements" msgstr "Тавсиф" -#: libraries/messages.inc.php:1034 tbl_printview.php:380 tbl_structure.php:741 +#: libraries/messages.inc.php:1030 tbl_printview.php:380 tbl_structure.php:741 msgid "static" msgstr "статик" -#: libraries/messages.inc.php:1035 server_status.php:388 +#: libraries/messages.inc.php:1031 server_status.php:388 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -6154,42 +6154,42 @@ msgstr "" "Юқори юкламага эга бўлган серверларда ҳисоблагич тўлиб қолиши мумкин, шунинг " "учун, MySQL сервери берган статистик маълумотлар нотўғри бўлиши мумкин." -#: libraries/messages.inc.php:1038 server_replication.php:327 +#: libraries/messages.inc.php:1034 server_replication.php:327 #: server_replication.php:328 msgid "Stop" msgstr "Тўхтатиш" -#: libraries/messages.inc.php:1039 server_engines.php:49 +#: libraries/messages.inc.php:1035 server_engines.php:49 msgid "Storage Engines" msgstr "Жадвал турлари" -#: libraries/messages.inc.php:1040 libraries/tbl_properties.inc.php:726 +#: libraries/messages.inc.php:1036 libraries/tbl_properties.inc.php:726 #: server_engines.php:58 tbl_operations.php:353 msgid "Storage Engine" msgstr "Жадвал тури" -#: libraries/messages.inc.php:1042 +#: libraries/messages.inc.php:1038 msgid "CSV for MS Excel" msgstr "MS Excel учун CSV" -#: libraries/messages.inc.php:1044 tbl_structure.php:516 tbl_structure.php:518 +#: libraries/messages.inc.php:1040 tbl_structure.php:516 tbl_structure.php:518 msgid "Propose table structure" msgstr "Жадвал тузилиши таҳлили" -#: libraries/messages.inc.php:1045 server_synchronize.php:424 +#: libraries/messages.inc.php:1041 server_synchronize.php:424 #: server_synchronize.php:867 msgid "Structure Difference" msgstr "Тузилишдаги фарқ" -#: libraries/messages.inc.php:1049 server_synchronize.php:265 +#: libraries/messages.inc.php:1045 server_synchronize.php:265 msgid "Structure Synchronization" msgstr "Тузилишни синхронизация қилиш" -#: libraries/messages.inc.php:1050 libraries/sql_query_form.lib.php:462 +#: libraries/messages.inc.php:1046 libraries/sql_query_form.lib.php:462 msgid "Submit" msgstr "Бажариш" -#: libraries/messages.inc.php:1052 main.php:358 +#: libraries/messages.inc.php:1048 main.php:358 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -6198,16 +6198,16 @@ msgstr "" "Сервер \"Suhosin\" ҳимоя тизимадан фойдаланмоқда. Юзага келган муаммолар " "ечими учун \"%s\"документация\"%s\" га қаранг." -#: libraries/messages.inc.php:1054 libraries/mysql_charsets.lib.php:295 +#: libraries/messages.inc.php:1050 libraries/mysql_charsets.lib.php:295 #: libraries/mysql_charsets.lib.php:392 msgid "Swedish" msgstr "Шведча" -#: libraries/messages.inc.php:1060 tbl_operations.php:556 +#: libraries/messages.inc.php:1056 tbl_operations.php:556 msgid "Switch to copied table" msgstr "Нусха олинган жадвалга ўтиш" -#: libraries/messages.inc.php:1061 server_synchronize.php:1213 +#: libraries/messages.inc.php:1057 server_synchronize.php:1213 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -6215,145 +6215,145 @@ msgstr "" "Нишон база манба база билан тўлиқ синхронизация қилинади. Манба база " "ўзгаришсиз қолади." -#: libraries/messages.inc.php:1062 server_synchronize.php:451 +#: libraries/messages.inc.php:1058 server_synchronize.php:451 #: server_synchronize.php:896 msgid "Synchronize Databases" msgstr "Базаларни синхронизация қилиш" -#: libraries/messages.inc.php:1063 libraries/server_links.inc.php:92 +#: libraries/messages.inc.php:1059 libraries/server_links.inc.php:92 #: server_synchronize.php:1092 server_synchronize.php:1100 msgid "Synchronize" msgstr "Синхронизация қилиш" -#: libraries/messages.inc.php:1065 server_synchronize.php:430 +#: libraries/messages.inc.php:1061 server_synchronize.php:430 #: server_synchronize.php:873 msgid "Add column(s)" msgstr "Устун(лар) қўшиш" -#: libraries/messages.inc.php:1066 tbl_create.php:62 +#: libraries/messages.inc.php:1062 tbl_create.php:62 #, php-format msgid "Table %s already exists!" msgstr "\"%s\" номли жадвал мавжуд!" -#: libraries/messages.inc.php:1067 server_synchronize.php:432 +#: libraries/messages.inc.php:1063 server_synchronize.php:432 #: server_synchronize.php:875 msgid "Alter column(s)" msgstr "Устун(лар)ни ўзгартириш" -#: libraries/messages.inc.php:1068 tbl_addfield.php:189 tbl_alter.php:103 +#: libraries/messages.inc.php:1064 tbl_addfield.php:189 tbl_alter.php:103 #: tbl_indexes.php:98 #, php-format msgid "Table %1$s has been altered successfully" msgstr "%1$s жадвали муваффақиятли ўзгартирилди" -#: libraries/messages.inc.php:1069 server_synchronize.php:434 +#: libraries/messages.inc.php:1065 server_synchronize.php:434 #: server_synchronize.php:877 msgid "Apply index(s)" msgstr "Индекс(лар)ни сақлаш" -#: libraries/messages.inc.php:1071 server_synchronize.php:446 +#: libraries/messages.inc.php:1067 server_synchronize.php:446 #: server_synchronize.php:890 msgid "Would you like to delete all the previous rows from target tables?" msgstr "Нишон жадвалдаги барча олдинги қаторларни ўчирмоқчимисиз?" -#: libraries/messages.inc.php:1072 tbl_move_copy.php:82 +#: libraries/messages.inc.php:1068 tbl_move_copy.php:82 msgid "The table name is empty!" msgstr "Жадвал номи кўрсатилмаган!" -#: libraries/messages.inc.php:1073 tbl_create.php:249 +#: libraries/messages.inc.php:1069 tbl_create.php:249 #, php-format msgid "Table %1$s has been created." msgstr "%1$s жадвали тузилди." -#: libraries/messages.inc.php:1076 tbl_operations.php:628 +#: libraries/messages.inc.php:1072 tbl_operations.php:628 #, php-format msgid "Table %s has been flushed" msgstr "\"%s\" жадвали кеши янгиланди" -#: libraries/messages.inc.php:1077 server_synchronize.php:436 +#: libraries/messages.inc.php:1073 server_synchronize.php:436 #: server_synchronize.php:879 msgid "Insert row(s)" msgstr "Қатор(лар) қўшиш" -#: libraries/messages.inc.php:1078 libraries/tbl_links.inc.php:107 +#: libraries/messages.inc.php:1074 libraries/tbl_links.inc.php:107 #: libraries/tbl_links.inc.php:140 libraries/tbl_links.inc.php:141 msgid "Table seems to be empty!" msgstr "Жадвал - бўш!" -#: libraries/messages.inc.php:1079 tbl_operations.php:568 +#: libraries/messages.inc.php:1075 tbl_operations.php:568 msgid "Table maintenance" msgstr "Жадвалга хизмат кўрсатиш" -#: libraries/messages.inc.php:1080 libraries/tbl_properties.inc.php:618 +#: libraries/messages.inc.php:1076 libraries/tbl_properties.inc.php:618 #: server_synchronize.php:428 server_synchronize.php:871 msgid "Table name" msgstr "Жадвал номи" -#: libraries/messages.inc.php:1081 pdf_schema.php:1116 +#: libraries/messages.inc.php:1077 pdf_schema.php:1116 msgid "Table of contents" msgstr "Мундарижа" -#: libraries/messages.inc.php:1082 tbl_operations.php:334 +#: libraries/messages.inc.php:1078 tbl_operations.php:334 msgid "Table options" msgstr "Жадвал параметрлари" -#: libraries/messages.inc.php:1083 server_synchronize.php:431 +#: libraries/messages.inc.php:1079 server_synchronize.php:431 #: server_synchronize.php:874 msgid "Remove column(s)" msgstr "Устун(лар)ни олиб ташлаш" -#: libraries/messages.inc.php:1084 server_synchronize.php:433 +#: libraries/messages.inc.php:1080 server_synchronize.php:433 #: server_synchronize.php:876 msgid "Remove index(s)" msgstr "Индекс(лар)ни олиб ташлаш" -#: libraries/messages.inc.php:1088 server_synchronize.php:435 +#: libraries/messages.inc.php:1084 server_synchronize.php:435 #: server_synchronize.php:878 msgid "Update row(s)" msgstr "Қатор(лар)ни янгилаш" -#: libraries/messages.inc.php:1090 server_synchronize.php:942 +#: libraries/messages.inc.php:1086 server_synchronize.php:942 msgid "Target database has been synchronized with source database" msgstr "Нишон база манба база билан синхронизация қилинди" -#: libraries/messages.inc.php:1091 server_privileges.php:392 +#: libraries/messages.inc.php:1087 server_privileges.php:392 #: server_privileges.php:527 server_privileges.php:1679 #: server_privileges.php:1685 msgid "Table-specific privileges" msgstr "Жадвал даражасижаги привилегиялар" -#: libraries/messages.inc.php:1092 server_status.php:254 +#: libraries/messages.inc.php:1088 server_status.php:254 msgid "Temporary data" msgstr "Вақтинчалик маълумотлар" -#: libraries/messages.inc.php:1093 tbl_change.php:728 +#: libraries/messages.inc.php:1089 tbl_change.php:728 msgid " Because of its length,
this field might not be editable " msgstr "Маълумотлар кўплиги сабали
ўзгартириш қийишлашиши мумкин" -#: libraries/messages.inc.php:1094 +#: libraries/messages.inc.php:1090 msgid "Texy! text" msgstr "Texy! матн" -#: libraries/messages.inc.php:1095 libraries/mysql_charsets.lib.php:298 +#: libraries/messages.inc.php:1091 libraries/mysql_charsets.lib.php:298 #: libraries/mysql_charsets.lib.php:395 msgid "Thai" msgstr "Тайча" -#: libraries/messages.inc.php:1102 libraries/replication_gui.lib.php:308 +#: libraries/messages.inc.php:1098 libraries/replication_gui.lib.php:308 #: server_privileges.php:734 msgid "This Host" msgstr "Ушбу хост" -#: libraries/messages.inc.php:1103 server_status.php:252 +#: libraries/messages.inc.php:1099 server_status.php:252 msgid "Threads" msgstr "Оқимлар" -#: libraries/messages.inc.php:1104 server_processlist.php:22 +#: libraries/messages.inc.php:1100 server_processlist.php:22 #, php-format msgid "Thread %s was successfully killed." msgstr " \"%s\" жараёни муваффақиятли якунланди." -#: libraries/messages.inc.php:1106 +#: libraries/messages.inc.php:1102 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -6362,158 +6362,158 @@ msgstr "" "Одатда, бу ҳол, php-сценарийлар учун ажратилган вақт оширилмагунча " "phpMyAdmin дастури импорт жараёнини якунла олмаслигини билдиради." -#: libraries/messages.inc.php:1109 pmd_pdf.php:94 +#: libraries/messages.inc.php:1105 pmd_pdf.php:94 msgid "to/from page" msgstr "Саҳифа" -#: libraries/messages.inc.php:1110 pdf_pages.php:343 +#: libraries/messages.inc.php:1106 pdf_pages.php:343 msgid "Toggle scratchboard" msgstr "Кўрсатиш" -#: libraries/messages.inc.php:1111 pmd_general.php:99 +#: libraries/messages.inc.php:1107 pmd_general.php:99 msgid "Toggle small/big" msgstr "Тескари кўрсатиш" -#: libraries/messages.inc.php:1112 pmd_help.php:27 +#: libraries/messages.inc.php:1108 pmd_help.php:27 msgid "To select relation, click :" msgstr "Алоқани танлаш учун расмда кўрсатилганикаби уланиш нуқтасига босинг:" -#: libraries/messages.inc.php:1115 libraries/tbl_links.inc.php:149 +#: libraries/messages.inc.php:1111 libraries/tbl_links.inc.php:149 #, php-format msgid "Tracking of %s.%s is activated." msgstr "\"%s.%s\" жадвалини кузатиш фаоллаштирилди." -#: libraries/messages.inc.php:1116 tbl_tracking.php:655 +#: libraries/messages.inc.php:1112 tbl_tracking.php:655 msgid "Activate now" msgstr "Ҳозир фаоллаштириш" -#: libraries/messages.inc.php:1117 tbl_tracking.php:653 +#: libraries/messages.inc.php:1113 tbl_tracking.php:653 #, php-format msgid "Activate tracking for %s.%s" msgstr "\"%s.%s\" жадвалини кузатишни фаоллаштириш" -#: libraries/messages.inc.php:1118 tbl_tracking.php:221 +#: libraries/messages.inc.php:1114 tbl_tracking.php:221 msgid "Comment out these two lines if you do not need them." msgstr "Агар керак бўлмаса, ушбу икки қатор олдига шарҳ белгисини қўйинг." -#: libraries/messages.inc.php:1119 tbl_tracking.php:688 +#: libraries/messages.inc.php:1115 tbl_tracking.php:688 msgid "Create version" msgstr "Версиясини тузиш" -#: libraries/messages.inc.php:1120 tbl_tracking.php:668 +#: libraries/messages.inc.php:1116 tbl_tracking.php:668 #, php-format msgid "Create version %s of %s.%s" msgstr "\"%s.%s\" жадвалининг %s рақамли версиясини тузиш" -#: libraries/messages.inc.php:1122 tbl_tracking.php:412 +#: libraries/messages.inc.php:1118 tbl_tracking.php:412 msgid "Data definition statement" msgstr "Маълумотлар таърифи операторини" -#: libraries/messages.inc.php:1123 tbl_tracking.php:463 +#: libraries/messages.inc.php:1119 tbl_tracking.php:463 msgid "Data manipulation statement" msgstr "Маълумотларни бошқариш операторини" -#: libraries/messages.inc.php:1124 tbl_tracking.php:410 tbl_tracking.php:461 +#: libraries/messages.inc.php:1120 tbl_tracking.php:410 tbl_tracking.php:461 msgid "Date" msgstr "Санани" -#: libraries/messages.inc.php:1125 tbl_tracking.php:642 +#: libraries/messages.inc.php:1121 tbl_tracking.php:642 msgid "Deactivate now" msgstr "Ҳозир фаолсизлантириш" -#: libraries/messages.inc.php:1126 tbl_tracking.php:640 +#: libraries/messages.inc.php:1122 tbl_tracking.php:640 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "\"%s.%s\" жадвалини кузатишни фаолсизлантириш" -#: libraries/messages.inc.php:1127 tbl_tracking.php:521 +#: libraries/messages.inc.php:1123 tbl_tracking.php:521 #, php-format msgid "Export as %s" msgstr "\"%s\" деб экспорт қилиш" -#: libraries/messages.inc.php:1130 tbl_tracking.php:251 tbl_tracking.php:379 +#: libraries/messages.inc.php:1126 tbl_tracking.php:251 tbl_tracking.php:379 msgid "Close" msgstr "Ёпиш" -#: libraries/messages.inc.php:1131 tbl_tracking.php:114 +#: libraries/messages.inc.php:1127 tbl_tracking.php:114 #, php-format msgid "Tracking report for table `%s`" msgstr "\"%s\" жадвали учун кузатув ҳисоботи" -#: libraries/messages.inc.php:1133 tbl_tracking.php:397 tbl_tracking.php:504 +#: libraries/messages.inc.php:1129 tbl_tracking.php:397 tbl_tracking.php:504 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "\"%s\"ни кўрсатиш, %s дан %s санагача, фойдаланувчи %s %s" -#: libraries/messages.inc.php:1134 tbl_tracking.php:561 +#: libraries/messages.inc.php:1130 tbl_tracking.php:561 msgid "Show versions" msgstr "Версияларни кўрсатиш" -#: libraries/messages.inc.php:1135 tbl_tracking.php:507 +#: libraries/messages.inc.php:1131 tbl_tracking.php:507 msgid "SQL dump (file download)" msgstr "SQL дампи (файлни юклаб олиш)" -#: libraries/messages.inc.php:1136 tbl_tracking.php:508 +#: libraries/messages.inc.php:1132 tbl_tracking.php:508 msgid "SQL dump" msgstr "SQL дамп" -#: libraries/messages.inc.php:1137 tbl_tracking.php:213 +#: libraries/messages.inc.php:1133 tbl_tracking.php:213 msgid "SQL statements executed." msgstr "SQL сўрови бажарилди." -#: libraries/messages.inc.php:1138 +#: libraries/messages.inc.php:1134 msgid "This option will replace your table and contained data." msgstr "Ушбу танлов жадвал ва унинг таркибини амаштиради." -#: libraries/messages.inc.php:1139 tbl_tracking.php:509 +#: libraries/messages.inc.php:1135 tbl_tracking.php:509 msgid "SQL execution" msgstr "SQL бажаруви" -#: libraries/messages.inc.php:1140 tbl_tracking.php:230 +#: libraries/messages.inc.php:1136 tbl_tracking.php:230 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "SQL сўрови экспорт қилинди. Дампдан нусха олинг ёки уни бажаринг." -#: libraries/messages.inc.php:1141 tbl_tracking.php:381 +#: libraries/messages.inc.php:1137 tbl_tracking.php:381 msgid "Tracking statements" msgstr "Кузатиш операторлари" -#: libraries/messages.inc.php:1148 tbl_tracking.php:593 +#: libraries/messages.inc.php:1144 tbl_tracking.php:593 msgid "Version" msgstr "Версия" -#: libraries/messages.inc.php:1149 tbl_tracking.php:672 +#: libraries/messages.inc.php:1145 tbl_tracking.php:672 msgid "Track these data definition statements:" msgstr "Ушбу маълумотлар таърифи операторларини кузатиш:" -#: libraries/messages.inc.php:1150 tbl_tracking.php:680 +#: libraries/messages.inc.php:1146 tbl_tracking.php:680 msgid "Track these data manipulation statements:" msgstr "Ушбу маълумотлар бошқаруви операторларини кузатиш:" -#: libraries/messages.inc.php:1155 tbl_tracking.php:411 tbl_tracking.php:462 +#: libraries/messages.inc.php:1151 tbl_tracking.php:411 tbl_tracking.php:462 msgid "Username" msgstr "Фойдаланувчи" -#: libraries/messages.inc.php:1156 tbl_tracking.php:203 +#: libraries/messages.inc.php:1152 tbl_tracking.php:203 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "\"%s.%s\" ни кузатиш, %s версия фаоллаштирилган." -#: libraries/messages.inc.php:1157 tbl_tracking.php:187 +#: libraries/messages.inc.php:1153 tbl_tracking.php:187 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "%s версия тузилди, \"%s.%s\" ни кузатишш фаоллаштирилган." -#: libraries/messages.inc.php:1158 tbl_tracking.php:195 +#: libraries/messages.inc.php:1154 tbl_tracking.php:195 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "\"%s.%s\" ни кузатиш, %s версия фаолсизлантирилган." -#: libraries/messages.inc.php:1159 tbl_tracking.php:262 +#: libraries/messages.inc.php:1155 tbl_tracking.php:262 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "%s версия расми (SQL коди)" -#: libraries/messages.inc.php:1161 tbl_tracking.php:220 +#: libraries/messages.inc.php:1157 tbl_tracking.php:220 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -6521,24 +6521,24 @@ msgstr "" "Дампни бажариш учун вақтинчалик база тузинг ё борини ишлатинг. Бунинг учун " "етарли привилегияларга эга бўлишингиз керак." -#: libraries/messages.inc.php:1162 libraries/mysql_charsets.lib.php:219 +#: libraries/messages.inc.php:1158 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:362 msgid "Traditional Chinese" msgstr "Анъанавий хитойча" -#: libraries/messages.inc.php:1163 libraries/mysql_charsets.lib.php:292 +#: libraries/messages.inc.php:1159 libraries/mysql_charsets.lib.php:292 msgid "Traditional Spanish" msgstr "Анъанавий испанча" -#: libraries/messages.inc.php:1164 server_status.php:388 +#: libraries/messages.inc.php:1160 server_status.php:388 msgid "Traffic" msgstr "Трафик" -#: libraries/messages.inc.php:1165 server_status.php:261 +#: libraries/messages.inc.php:1161 server_status.php:261 msgid "Transaction coordinator" msgstr "Транзакциялар координатори" -#: libraries/messages.inc.php:1166 +#: libraries/messages.inc.php:1162 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 " @@ -6550,7 +6550,7 @@ msgstr "" "олган майдон номи сифатида ишлатиш мумкин. Иккинчи параметр ишлатилганда, " "биринчисини бўш сатр сифатида белгилаш зарур." -#: libraries/messages.inc.php:1167 +#: libraries/messages.inc.php:1163 msgid "" "Displays hexadecimal representation of data. Optional first parameter " "specifies how often space will be added (defaults to 2 nibbles)." @@ -6559,7 +6559,7 @@ msgstr "" "параметр бўш жой қўйилиши керак бўлган интервални (асл қиймати ҳар икки " "яримбайтдан кейин) кўрсатиш учун ишлатилади." -#: libraries/messages.inc.php:1168 +#: libraries/messages.inc.php:1164 msgid "" "Displays a clickable thumbnail. The options are the maximum width and height " "in pixels. The original aspect ratio is preserved." @@ -6568,18 +6568,18 @@ msgstr "" "пиктограммани кўрсатиш. Параметр сифатида расмнинг пикселларда берилган " "максимал бўйи ва энини белгилаш мумкин. Томонларнинг асл нисбати сақланади." -#: libraries/messages.inc.php:1169 +#: libraries/messages.inc.php:1165 msgid "Displays a link to download this image." msgstr "Расмни юклаб олиш учун боғ кўрсатиш" -#: libraries/messages.inc.php:1170 +#: libraries/messages.inc.php:1166 msgid "See image/jpeg: inline" msgstr "" "Устига босилганда расмни каталаштириб кўриш мумкин бўлган кичрайтирилган " "пиктограммани кўрсатиш. Параметр сифатида расмнинг пикселларда берилган " "максимал бўйи ва энини белгилаш мумкин. Томонларнинг асл нисбати сақланади." -#: libraries/messages.inc.php:1171 +#: libraries/messages.inc.php:1167 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 " @@ -6598,7 +6598,7 @@ msgstr "" "\"strftime()\", \"utc\" қиймат учун \"gmdate()\" функцияга мос равишда " "ўрнатилиши керак." -#: libraries/messages.inc.php:1172 +#: libraries/messages.inc.php:1168 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 " @@ -6622,7 +6622,7 @@ msgstr "" "белгиларига эътибор берилмайди ва барча маълумотлар бир сатрда чиқарилади " "(асл қиймати: 1)." -#: libraries/messages.inc.php:1173 +#: libraries/messages.inc.php:1169 msgid "" "Displays the contents of the field as-is, without running it through " "htmlspecialchars(). That is, the field is assumed to contain valid HTML." @@ -6631,7 +6631,7 @@ msgstr "" "ёрдамида ўзгартирилмасдан кўрсатади. Бу ҳолда майдон HTML кодни ўз ичига " "олган бўлиши мумкин." -#: libraries/messages.inc.php:1174 +#: libraries/messages.inc.php:1170 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 " @@ -6641,7 +6641,7 @@ msgstr "" "- URL-префиксдир, масалан \"http://www.example.com/\". Иккинчи ва учинчи " "параметр - расмнинг пмкселларда берилган бўйи ва эни." -#: libraries/messages.inc.php:1175 +#: libraries/messages.inc.php:1171 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 " @@ -6651,12 +6651,12 @@ msgstr "" "префиксдир, масалан \"http://www.example.com/\". Иккинчи параметр - боғ " "сарлавҳаси." -#: libraries/messages.inc.php:1176 +#: libraries/messages.inc.php:1172 msgid "Formats text as SQL query with syntax highlighting." msgstr "" "Матнни синтаксиси ранг билан белгиланган SQL сўров сифатида форматлайди" -#: libraries/messages.inc.php:1177 +#: libraries/messages.inc.php:1173 msgid "" "Displays a part of a string. The first option is the number of characters to " "skip from the beginning of the string (Default 0). The second option is the " @@ -6669,71 +6669,71 @@ msgstr "" "белгилар сони (асл қиймати: сатр охиригача). Учинчи параметр - мавжуд парча " "боши ва/ёки охирига қўшиладиган матн (асл қиймати: \"...\")." -#: libraries/messages.inc.php:1179 server_binlog.php:183 server_binlog.php:186 +#: libraries/messages.inc.php:1175 server_binlog.php:183 server_binlog.php:186 #: server_processlist.php:49 server_processlist.php:51 msgid "Truncate Shown Queries" msgstr "Сўровларни қисқартириб кўрсатиш" -#: libraries/messages.inc.php:1180 libraries/mysql_charsets.lib.php:301 +#: libraries/messages.inc.php:1176 libraries/mysql_charsets.lib.php:301 #: libraries/mysql_charsets.lib.php:389 msgid "Turkish" msgstr "Туркча" -#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:304 +#: libraries/messages.inc.php:1179 libraries/mysql_charsets.lib.php:304 #: libraries/mysql_charsets.lib.php:386 msgid "Ukrainian" msgstr "Украинча" -#: libraries/messages.inc.php:1185 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:1181 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 msgid "Unicode" msgstr "Юникод" -#: libraries/messages.inc.php:1187 libraries/mysql_charsets.lib.php:398 +#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:398 #: libraries/mysql_charsets.lib.php:405 msgid "unknown" msgstr "номаълум" -#: libraries/messages.inc.php:1190 server_privileges.php:1152 +#: libraries/messages.inc.php:1186 server_privileges.php:1152 #, php-format msgid "You have updated the privileges for %s." msgstr " \"%s\" учун привилегиялар ўзгартирилди." -#: libraries/messages.inc.php:1191 user_password.php:112 +#: libraries/messages.inc.php:1187 user_password.php:112 msgid "The profile has been updated." msgstr "Профил янгиланди." -#: libraries/messages.inc.php:1193 libraries/relation.lib.php:138 +#: libraries/messages.inc.php:1189 libraries/relation.lib.php:138 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "\"column_comments\" жадвалини янгилаш зарур. Батафсил маълумот учун " "документацияга қаранг." -#: libraries/messages.inc.php:1194 +#: libraries/messages.inc.php:1190 #, php-format msgid "You should upgrade to %s %s or later." msgstr " \"%s\" ни \"%s\" версияга ёки каттароқ версияга янгилаш зарур." -#: libraries/messages.inc.php:1204 tbl_printview.php:314 tbl_structure.php:661 +#: libraries/messages.inc.php:1200 tbl_printview.php:314 tbl_structure.php:661 msgid "Usage" msgstr "Ишлатилиш" -#: libraries/messages.inc.php:1205 +#: libraries/messages.inc.php:1201 msgid "Enclose table and field names with backquotes" msgstr "Жадвал ва майдон номларини тескари қўштирноққа олиш" -#: libraries/messages.inc.php:1206 libraries/replication_gui.lib.php:314 +#: libraries/messages.inc.php:1202 libraries/replication_gui.lib.php:314 #: server_privileges.php:740 msgid "Use Host Table" msgstr "Хостлар жадвалидан фойдаланиш" -#: libraries/messages.inc.php:1207 server_privileges.php:848 +#: libraries/messages.inc.php:1203 server_privileges.php:848 #, php-format msgid "The user %s already exists!" msgstr " \"%s\" номли фойдаланувчи мавжуд!" -#: libraries/messages.inc.php:1209 libraries/replication_gui.lib.php:55 +#: libraries/messages.inc.php:1205 libraries/replication_gui.lib.php:55 #: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245 #: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255 #: server_privileges.php:672 server_privileges.php:675 @@ -6741,36 +6741,36 @@ msgstr " \"%s\" номли фойдаланувчи мавжуд!" msgid "User name" msgstr "Фойдаланувчи номи" -#: libraries/messages.inc.php:1210 server_privileges.php:1645 +#: libraries/messages.inc.php:1206 server_privileges.php:1645 msgid "The selected user was not found in the privilege table." msgstr "Белгиланган фойдаланувчи привилегиялар жадвалида топилмади." -#: libraries/messages.inc.php:1211 server_privileges.php:1365 +#: libraries/messages.inc.php:1207 server_privileges.php:1365 msgid "User overview" msgstr "Фойдаланувчилар ҳисобини кўриб чиқиш" -#: libraries/messages.inc.php:1212 server_privileges.php:1261 +#: libraries/messages.inc.php:1208 server_privileges.php:1261 msgid "The selected users have been deleted successfully." msgstr "Белгиланган фойдаланувчилар муваффақиятли ўчирилди." -#: libraries/messages.inc.php:1213 server_privileges.php:2026 +#: libraries/messages.inc.php:1209 server_privileges.php:2026 #, php-format msgid "Users having access to "%s"" msgstr "\"%s\"га рухсати бўлган фойдаланувчилар" -#: libraries/messages.inc.php:1214 main.php:189 server_privileges.php:1350 +#: libraries/messages.inc.php:1210 main.php:189 server_privileges.php:1350 #: server_privileges.php:1497 server_privileges.php:1611 #: server_privileges.php:2029 server_processlist.php:54 msgid "User" msgstr "Фойдаланувчи" -#: libraries/messages.inc.php:1215 tbl_change.php:1171 +#: libraries/messages.inc.php:1211 tbl_change.php:1171 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Майдонлараро ўтиш учун TAB тугмаси ёки CTRL+стрелка тугмаларидан фойдаланинг" -#: libraries/messages.inc.php:1217 libraries/replication_gui.lib.php:251 +#: libraries/messages.inc.php:1213 libraries/replication_gui.lib.php:251 #: libraries/replication_gui.lib.php:319 libraries/replication_gui.lib.php:342 #: server_privileges.php:678 server_privileges.php:745 #: server_privileges.php:769 server_privileges.php:1889 @@ -6778,7 +6778,7 @@ msgstr "" msgid "Use text field" msgstr "Матнмайдонини ишлатиш" -#: libraries/messages.inc.php:1221 libraries/sqlvalidator.lib.php:68 +#: libraries/messages.inc.php:1217 libraries/sqlvalidator.lib.php:68 #, php-format msgid "" "The SQL validator could not be initialized. Please check if you have " @@ -6787,86 +6787,86 @@ msgstr "" "SQL синтаксисини текшириб бўлмади. PHP учун зарур кенгайтмалар " "ўрнатилганлигини текширинг, батафсил маълумот учун %sдокументацияга%s қаранг." -#: libraries/messages.inc.php:1222 libraries/replication_gui.lib.php:111 +#: libraries/messages.inc.php:1218 libraries/replication_gui.lib.php:111 #: server_status.php:627 tbl_change.php:324 tbl_printview.php:370 #: tbl_select.php:139 tbl_structure.php:730 msgid "Value" msgstr "Қиймати" -#: libraries/messages.inc.php:1223 libraries/replication_gui.lib.php:110 +#: libraries/messages.inc.php:1219 libraries/replication_gui.lib.php:110 #: libraries/sql_query_form.lib.php:445 server_status.php:626 #: server_variables.php:52 msgid "Variable" msgstr "Ўзгарувчи" -#: libraries/messages.inc.php:1225 server_export.php:21 +#: libraries/messages.inc.php:1221 server_export.php:21 msgid "View dump (schema) of databases" msgstr "Маълумотлар базалари дампини (схемасини) намойиш этиш" -#: libraries/messages.inc.php:1227 tbl_export.php:23 +#: libraries/messages.inc.php:1223 tbl_export.php:23 msgid "View dump (schema) of table" msgstr "Жадвал дампини (схемасини) намойиш этиш" -#: libraries/messages.inc.php:1231 view_create.php:142 +#: libraries/messages.inc.php:1227 view_create.php:142 msgid "VIEW name" msgstr "Ном кўриниши" -#: libraries/messages.inc.php:1237 main.php:205 +#: libraries/messages.inc.php:1233 main.php:205 msgid "Web server" msgstr "Веб сервер" -#: libraries/messages.inc.php:1239 libraries/mysql_charsets.lib.php:277 +#: libraries/messages.inc.php:1235 libraries/mysql_charsets.lib.php:277 #: libraries/mysql_charsets.lib.php:325 msgid "West European" msgstr "Ғарбий-Европача" -#: libraries/messages.inc.php:1240 main.php:230 +#: libraries/messages.inc.php:1236 main.php:230 msgid "Wiki" msgstr "Вики" -#: libraries/messages.inc.php:1241 server_privileges.php:2138 +#: libraries/messages.inc.php:1237 server_privileges.php:2138 msgid "wildcard" msgstr "Гуруҳлаш белгиси" -#: libraries/messages.inc.php:1248 +#: libraries/messages.inc.php:1244 msgid "Export contents" msgstr "Таркибини экспорт қилиш" -#: libraries/messages.inc.php:1249 +#: libraries/messages.inc.php:1245 msgid "Export functions" msgstr "Функцияларни экспорт қилиш" -#: libraries/messages.inc.php:1250 +#: libraries/messages.inc.php:1246 msgid "Export procedures" msgstr "Процедуларни экспорт қилиш" -#: libraries/messages.inc.php:1251 +#: libraries/messages.inc.php:1247 msgid "Export Structure Schemas (recommended)" msgstr "Тузилма схемасини экспорт қилиш (тавсия этилади)" -#: libraries/messages.inc.php:1252 +#: libraries/messages.inc.php:1248 msgid "Export tables" msgstr "Жадвалларни экспорт қилиш" -#: libraries/messages.inc.php:1253 +#: libraries/messages.inc.php:1249 msgid "Export triggers" msgstr "Триггерларни экспорт қилиш" -#: libraries/messages.inc.php:1254 +#: libraries/messages.inc.php:1250 msgid "Export views" msgstr "Кўринишларни экспорт қилиш" -#: libraries/messages.inc.php:1255 +#: libraries/messages.inc.php:1251 msgid "XML" msgstr "XML" -#: libraries/messages.inc.php:1259 server_privileges.php:592 +#: libraries/messages.inc.php:1255 server_privileges.php:592 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" "ИЗОҲ: параметр қийматларини 0 (нол) деб белгилаш мавжуд чеклашларни бекор " "қилади." -#: libraries/messages.inc.php:1260 +#: libraries/messages.inc.php:1256 msgid "\"zipped\"" msgstr "zip" diff --git a/po/uz@latin.po b/po/uz@latin.po index 058334f4c..b4abc2baa 100644 --- 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-05-13 11:25+0200\n" +"POT-Creation-Date: 2010-05-13 11:30+0200\n" "PO-Revision-Date: 2010-03-12 09:20+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: uzbek_latin \n" @@ -13,19 +13,19 @@ msgstr "" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:38 browse_foreigners.php:59 -#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:870 +#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:866 #: server_privileges.php:1475 msgid "Show all" msgstr "Barchasini ko‘rsatish" #: browse_foreigners.php:82 db_operations.php:648 -#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:394 -#: libraries/export/pdf.php:147 libraries/messages.inc.php:597 +#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394 +#: libraries/export/pdf.php:147 libraries/messages.inc.php:593 #: pdf_schema.php:283 pdf_schema.php:1123 pdf_schema.php:1139 msgid "Page number:" msgstr "Sahifa raqami: " -#: browse_foreigners.php:132 libraries/messages.inc.php:1242 +#: browse_foreigners.php:132 libraries/messages.inc.php:1238 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -38,7 +38,7 @@ 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/db_links.inc.php:75 -#: libraries/messages.inc.php:841 libraries/tbl_links.inc.php:63 +#: libraries/messages.inc.php:837 libraries/tbl_links.inc.php:63 msgid "Search" msgstr "Qidirish" @@ -47,12 +47,12 @@ msgstr "Qidirish" #: db_search.php:362 db_structure.php:567 js/messages.php:48 #: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2267 +#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 #: 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 #: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614 -#: libraries/messages.inc.php:361 libraries/replication_gui.lib.php:73 +#: libraries/messages.inc.php:357 libraries/replication_gui.lib.php:73 #: libraries/replication_gui.lib.php:365 libraries/select_server.lib.php:104 #: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477 #: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782 @@ -72,33 +72,33 @@ msgid "Go" msgstr "OK" #: browse_foreigners.php:168 browse_foreigners.php:172 -#: libraries/Index.class.php:442 libraries/messages.inc.php:459 +#: libraries/Index.class.php:442 libraries/messages.inc.php:455 #: tbl_tracking.php:320 msgid "Keyname" msgstr "Indeks nomi" #: browse_foreigners.php:169 browse_foreigners.php:171 -#: libraries/messages.inc.php:252 server_collations.php:55 +#: libraries/messages.inc.php:248 server_collations.php:55 #: server_collations.php:67 server_engines.php:59 server_status.php:628 msgid "Description" msgstr "Tavsifi" #: browse_foreigners.php:247 browse_foreigners.php:256 #: browse_foreigners.php:268 browse_foreigners.php:276 -#: libraries/messages.inc.php:1218 +#: libraries/messages.inc.php:1214 msgid "Use this value" msgstr "Ushbu qiymatni ishlatish" -#: db_create.php:46 libraries/messages.inc.php:215 +#: db_create.php:46 libraries/messages.inc.php:211 #, php-format msgid "Database %1$s has been created." msgstr " %1$s ma`lumotlar bazasi tuzildi." -#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:232 +#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:228 msgid "Database comment: " msgstr "Ma`lumotlar bazasiga izoh:" -#: db_datadict.php:165 libraries/messages.inc.php:1070 +#: db_datadict.php:165 libraries/messages.inc.php:1066 #: libraries/tbl_properties.inc.php:724 pdf_schema.php:1236 #: tbl_operations.php:345 tbl_printview.php:130 msgid "Table comments" @@ -107,7 +107,7 @@ msgstr "Jadval izohi" #: db_datadict.php:174 db_qbe.php:174 libraries/Index.class.php:446 #: libraries/export/htmlword.php:244 libraries/export/latex.php:360 #: libraries/export/odt.php:294 libraries/export/texytext.php:233 -#: libraries/messages.inc.php:317 libraries/tbl_properties.inc.php:99 +#: libraries/messages.inc.php:313 libraries/tbl_properties.inc.php:99 #: libraries/tbl_properties.inc.php:275 pdf_schema.php:1262 #: pdf_schema.php:1283 tbl_change.php:308 tbl_indexes.php:189 #: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135 @@ -119,7 +119,7 @@ msgstr "Maydon" #: libraries/db_events.inc.php:31 libraries/db_routines.inc.php:42 #: 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/messages.inc.php:1181 +#: libraries/export/texytext.php:234 libraries/messages.inc.php:1177 #: libraries/tbl_properties.inc.php:100 pdf_schema.php:1263 #: pdf_schema.php:1284 server_privileges.php:2031 tbl_change.php:287 #: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313 @@ -131,7 +131,7 @@ msgstr "Tur" #: db_datadict.php:177 libraries/Index.class.php:449 #: libraries/export/htmlword.php:246 libraries/export/latex.php:360 #: libraries/export/odt.php:300 libraries/export/texytext.php:235 -#: libraries/messages.inc.php:576 libraries/tbl_properties.inc.php:109 +#: libraries/messages.inc.php:572 libraries/tbl_properties.inc.php:109 #: pdf_schema.php:1265 pdf_schema.php:1286 tbl_change.php:323 #: tbl_printview.php:145 tbl_structure.php:181 tbl_tracking.php:276 #: tbl_tracking.php:327 @@ -140,7 +140,7 @@ msgstr "Null" #: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 -#: libraries/export/texytext.php:236 libraries/messages.inc.php:238 +#: libraries/export/texytext.php:236 libraries/messages.inc.php:234 #: libraries/tbl_properties.inc.php:106 pdf_schema.php:1266 #: pdf_schema.php:1287 tbl_printview.php:146 tbl_structure.php:182 #: tbl_tracking.php:277 @@ -149,14 +149,14 @@ msgstr "Andoza" #: db_datadict.php:182 libraries/export/htmlword.php:249 #: libraries/export/latex.php:362 libraries/export/odt.php:307 -#: libraries/export/texytext.php:238 libraries/messages.inc.php:483 +#: libraries/export/texytext.php:238 libraries/messages.inc.php:479 #: pdf_schema.php:1268 pdf_schema.php:1289 tbl_printview.php:150 msgid "Links to" msgstr "Aloqalar" #: db_datadict.php:184 db_printview.php:112 libraries/export/htmlword.php:252 #: libraries/export/latex.php:365 libraries/export/odt.php:312 -#: libraries/export/texytext.php:241 libraries/messages.inc.php:163 +#: libraries/export/texytext.php:241 libraries/messages.inc.php:159 #: libraries/tbl_properties.inc.php:130 pdf_schema.php:1279 #: pdf_schema.php:1290 tbl_printview.php:152 msgid "Comments" @@ -165,7 +165,7 @@ msgstr "Izohlar" #: db_datadict.php:267 libraries/Index.class.php:359 #: 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/messages.inc.php:559 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:555 #: libraries/mult_submits.inc.php:263 pdf_schema.php:1344 #: server_privileges.php:1529 server_privileges.php:1540 #: server_privileges.php:1850 server_privileges.php:1855 @@ -177,7 +177,7 @@ msgstr "Yo‘q" #: db_datadict.php:267 libraries/Index.class.php:360 #: libraries/Index.class.php:385 libraries/export/htmlword.php:322 #: libraries/export/latex.php:430 libraries/export/odt.php:368 -#: libraries/export/texytext.php:311 libraries/messages.inc.php:1257 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:1253 #: libraries/mult_submits.inc.php:45 libraries/mult_submits.inc.php:50 #: libraries/mult_submits.inc.php:55 libraries/mult_submits.inc.php:60 #: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:101 @@ -191,108 +191,108 @@ msgstr "Yo‘q" msgid "Yes" msgstr "Ha" -#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:670 +#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:666 #: tbl_printview.php:498 msgid "Print" msgstr "Chop etish" -#: db_export.php:29 libraries/messages.inc.php:1226 +#: db_export.php:29 libraries/messages.inc.php:1222 msgid "View dump (schema) of database" msgstr "Ma`lumotlar bazasi dampini (sxemasini) namoyish etish" #: db_export.php:33 db_printview.php:96 db_qbe.php:102 db_structure.php:51 -#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:568 +#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:564 #: navigation.php:346 msgid "No tables found in database." msgstr "Ma`lumotlar bazasida bironta ham jadval mavjud emas." -#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:845 +#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:841 #: server_export.php:27 msgid "Select All" msgstr "Barchasini belgilash" -#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1188 +#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1184 #: server_export.php:29 msgid "Unselect All" msgstr "Belgilashni bekor qilish" -#: db_operations.php:38 libraries/messages.inc.php:213 tbl_create.php:54 +#: db_operations.php:38 libraries/messages.inc.php:209 tbl_create.php:54 msgid "The database name is empty!" msgstr "Ma`lumotlar bazasi nomi bo‘sh!" -#: db_operations.php:236 libraries/messages.inc.php:753 +#: db_operations.php:236 libraries/messages.inc.php:749 #, php-format msgid "Database %s has been renamed to %s" msgstr " `\"%s\"` ma`lumotlar bazasining nomi `\"%s\"` deb o‘zgartirildi." -#: db_operations.php:240 libraries/messages.inc.php:178 +#: db_operations.php:240 libraries/messages.inc.php:174 #, php-format msgid "Database %s has been copied to %s" msgstr "\"%s\" ma`lumotlar bazasidan \"%s\" ga nusxa ko‘chirildi." -#: db_operations.php:410 libraries/messages.inc.php:236 +#: db_operations.php:410 libraries/messages.inc.php:232 msgid "Rename database to" msgstr "Ma`lumotlar bazasi nomini quyidagiga o‘zgartirish" -#: db_operations.php:415 libraries/messages.inc.php:161 +#: db_operations.php:415 libraries/messages.inc.php:157 #: server_processlist.php:57 msgid "Command" msgstr "Buyruq" -#: db_operations.php:425 libraries/messages.inc.php:58 tbl_change.php:1143 +#: db_operations.php:425 libraries/messages.inc.php:54 tbl_change.php:1143 msgid "and then" msgstr "va so‘ng" -#: db_operations.php:451 libraries/messages.inc.php:233 +#: db_operations.php:451 libraries/messages.inc.php:229 msgid "Copy database to" msgstr "Ma`lumotlar bazasidan quyidagiga nusxa olish" -#: db_operations.php:458 libraries/messages.inc.php:1043 +#: db_operations.php:458 libraries/messages.inc.php:1039 #: tbl_operations.php:526 tbl_tracking.php:388 msgid "Structure only" msgstr "Faqat tuzilishi" -#: db_operations.php:459 libraries/messages.inc.php:1041 +#: db_operations.php:459 libraries/messages.inc.php:1037 #: tbl_operations.php:527 tbl_tracking.php:390 msgid "Structure and data" msgstr "Tuzilishi va ma`lumotlari" -#: db_operations.php:460 libraries/messages.inc.php:229 tbl_operations.php:528 +#: db_operations.php:460 libraries/messages.inc.php:225 tbl_operations.php:528 #: tbl_tracking.php:389 msgid "Data only" msgstr "Faqat ma`lumotlar" -#: db_operations.php:468 libraries/messages.inc.php:186 +#: db_operations.php:468 libraries/messages.inc.php:182 msgid "CREATE DATABASE before copying" msgstr "Nusxa ko‘chirishdan oldin ma`lumotlar bazasi tuzing (CREATE DATABASE)" #: db_operations.php:471 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 -#: libraries/export/sql.php:82 libraries/messages.inc.php:30 +#: libraries/export/sql.php:82 libraries/messages.inc.php:26 #: tbl_operations.php:534 #, php-format msgid "Add %s" msgstr "\"%s\" qo‘shish" -#: db_operations.php:475 libraries/messages.inc.php:29 tbl_operations.php:297 +#: db_operations.php:475 libraries/messages.inc.php:25 tbl_operations.php:297 #: tbl_operations.php:536 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT qo‘shish" -#: db_operations.php:479 libraries/messages.inc.php:31 tbl_operations.php:543 +#: db_operations.php:479 libraries/messages.inc.php:27 tbl_operations.php:543 msgid "Add constraints" msgstr "Cheklovlar qo‘shish" -#: db_operations.php:492 libraries/messages.inc.php:1059 +#: db_operations.php:492 libraries/messages.inc.php:1055 msgid "Switch to copied database" msgstr "Nusxa olingan ma`lumotlar bazasiga o‘tish" -#: db_operations.php:533 libraries/messages.inc.php:89 +#: db_operations.php:533 libraries/messages.inc.php:85 msgid "BLOB Repository" msgstr "BLOB ombori" #: db_operations.php:536 db_tracking.php:76 libraries/common.lib.php:1350 -#: libraries/messages.inc.php:1037 libraries/server_links.inc.php:49 +#: libraries/messages.inc.php:1033 libraries/server_links.inc.php:49 #: server_processlist.php:59 tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "Holat" @@ -304,11 +304,11 @@ msgctxt "BLOB repository" msgid "Enabled" msgstr "Faollashtirilgan" -#: db_operations.php:548 libraries/messages.inc.php:93 +#: db_operations.php:548 libraries/messages.inc.php:89 msgid "Disable" msgstr "Faolsizlantirish" -#: db_operations.php:558 libraries/messages.inc.php:90 +#: db_operations.php:558 libraries/messages.inc.php:86 msgid "Damaged" msgstr "Shikastlangan" @@ -326,12 +326,12 @@ msgctxt "BLOB repository" msgid "Disabled" msgstr "Faolsizlantirilgan" -#: db_operations.php:574 libraries/messages.inc.php:96 +#: db_operations.php:574 libraries/messages.inc.php:92 msgid "Enable" msgstr "Faollantirish" #: db_operations.php:598 libraries/Index.class.php:448 -#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:158 +#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:154 #: 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:361 @@ -340,7 +340,7 @@ msgstr "Faollantirish" msgid "Collation" msgstr "Taqqoslash" -#: db_operations.php:609 libraries/messages.inc.php:742 main.php:316 +#: db_operations.php:609 libraries/messages.inc.php:738 main.php:316 #: pdf_schema.php:34 #, php-format msgid "" @@ -350,58 +350,58 @@ msgstr "" "Aloqador jadvallar bilan ishlash uchun qo‘shimcha imkoniyatlar mavjud emas. " "Sabablarini aniqlash uchun %sbu yerga%s bosing." -#: db_operations.php:645 libraries/messages.inc.php:264 pdf_pages.php:528 +#: db_operations.php:645 libraries/messages.inc.php:260 pdf_pages.php:528 msgid "Display PDF schema" msgstr "PDF-sxemani ko‘rsatish" -#: db_operations.php:661 libraries/messages.inc.php:877 pdf_pages.php:529 +#: db_operations.php:661 libraries/messages.inc.php:873 pdf_pages.php:529 msgid "Show grid" msgstr "To‘rni ko‘rsatish" -#: db_operations.php:664 libraries/messages.inc.php:874 pdf_pages.php:530 +#: db_operations.php:664 libraries/messages.inc.php:870 pdf_pages.php:530 msgid "Show color" msgstr "Rangda ko‘rsatish" -#: db_operations.php:666 libraries/messages.inc.php:998 pdf_pages.php:531 +#: db_operations.php:666 libraries/messages.inc.php:994 pdf_pages.php:531 msgid "Show dimension of tables" msgstr "Jadval o‘lchamlarini ko‘rsatish" -#: db_operations.php:669 libraries/messages.inc.php:52 pdf_pages.php:532 +#: db_operations.php:669 libraries/messages.inc.php:48 pdf_pages.php:532 msgid "Display all tables with the same width" msgstr "Bir xil kenglikdagi barcha jadvallarni ko‘rsatish" -#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:227 +#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:223 #: pdf_pages.php:533 msgid "Data Dictionary" msgstr "Ma`lumotlar lug‘ati" -#: db_operations.php:674 libraries/messages.inc.php:884 pdf_pages.php:534 +#: db_operations.php:674 libraries/messages.inc.php:880 pdf_pages.php:534 msgid "Only show keys" msgstr "Faqat kalitlarni ko‘rsatish" -#: db_operations.php:676 libraries/messages.inc.php:875 pdf_pages.php:535 +#: db_operations.php:676 libraries/messages.inc.php:871 pdf_pages.php:535 msgid "Data Dictionary Format" msgstr "Ma`lumotlar lug‘ati sahifasi yo‘nalishi" -#: db_operations.php:678 libraries/messages.inc.php:464 pdf_pages.php:537 +#: db_operations.php:678 libraries/messages.inc.php:460 pdf_pages.php:537 msgid "Landscape" msgstr "Albom shaklida" -#: db_operations.php:679 libraries/messages.inc.php:663 pdf_pages.php:538 +#: db_operations.php:679 libraries/messages.inc.php:659 pdf_pages.php:538 msgid "Portrait" msgstr "Kitob shaklida" -#: db_operations.php:682 libraries/messages.inc.php:599 pdf_pages.php:541 +#: db_operations.php:682 libraries/messages.inc.php:595 pdf_pages.php:541 msgid "Paper size" msgstr "Qog‘oz o‘lchami" -#: db_operations.php:706 libraries/messages.inc.php:281 +#: db_operations.php:706 libraries/messages.inc.php:277 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 libraries/messages.inc.php:1087 +#: libraries/header.inc.php:126 libraries/messages.inc.php:1083 #: pdf_pages.php:405 server_privileges.php:1626 server_privileges.php:1682 #: server_privileges.php:1946 server_synchronize.php:423 #: server_synchronize.php:866 tbl_tracking.php:592 test/theme.php:75 @@ -409,176 +409,176 @@ msgid "Table" msgstr "Jadval " #: db_printview.php:105 libraries/db_structure.lib.php:56 -#: libraries/messages.inc.php:735 +#: libraries/messages.inc.php:731 msgid "Records" msgstr "Yozuvlar soni" #: db_printview.php:109 libraries/db_structure.lib.php:67 -#: libraries/messages.inc.php:1003 tbl_indexes.php:190 +#: libraries/messages.inc.php:999 tbl_indexes.php:190 msgid "Size" msgstr "Hajmi" #: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 -#: libraries/export/sql.php:899 libraries/messages.inc.php:436 +#: libraries/export/sql.php:899 libraries/messages.inc.php:432 msgid "in use" msgstr "ishlatilmoqda" #: db_printview.php:187 libraries/db_info.inc.php:88 -#: libraries/export/sql.php:514 libraries/messages.inc.php:1032 +#: libraries/export/sql.php:514 libraries/messages.inc.php:1028 #: pdf_schema.php:1241 tbl_printview.php:434 tbl_structure.php:810 msgid "Creation" msgstr "Tuzish" #: db_printview.php:196 libraries/db_info.inc.php:93 -#: libraries/export/sql.php:519 libraries/messages.inc.php:1036 +#: libraries/export/sql.php:519 libraries/messages.inc.php:1032 #: pdf_schema.php:1246 tbl_printview.php:444 tbl_structure.php:818 msgid "Last update" msgstr "Oxirgi yangilanish" #: db_printview.php:205 libraries/db_info.inc.php:98 -#: libraries/export/sql.php:524 libraries/messages.inc.php:1031 +#: libraries/export/sql.php:524 libraries/messages.inc.php:1027 #: pdf_schema.php:1251 tbl_printview.php:454 tbl_structure.php:826 msgid "Last check" msgstr "Oxirgi tekshiruv" -#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1085 +#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1081 #, php-format msgid "%s table(s)" msgstr "Jadvallar soni: \"%s\"" #: db_qbe.php:29 libraries/display_tbl.lib.php:1981 -#: libraries/messages.inc.php:1051 libraries/sql_query_form.lib.php:140 +#: libraries/messages.inc.php:1047 libraries/sql_query_form.lib.php:140 #: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131 #: view_operations.php:62 msgid "Your SQL query has been executed successfully" msgstr "SQL so‘rovi muvaffaqiyatli bajarildi" -#: db_qbe.php:42 libraries/messages.inc.php:371 +#: db_qbe.php:42 libraries/messages.inc.php:367 msgid "You have to choose at least one column to display" msgstr "So‘rovni bajarish uchun, maydon/maydonlar tanlangan bo‘lishi kerak." #: db_qbe.php:200 libraries/db_structure.lib.php:104 -#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1014 +#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1010 msgid "Sort" msgstr "Sortirovka qilish" #: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111 #: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828 -#: libraries/messages.inc.php:69 server_databases.php:170 +#: libraries/messages.inc.php:65 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314 msgid "Ascending" msgstr "O‘sish tartibida" #: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119 #: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825 -#: libraries/messages.inc.php:251 server_databases.php:170 +#: libraries/messages.inc.php:247 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315 msgid "Descending" msgstr "Kamayish tartibida" #: db_qbe.php:264 db_tracking.php:78 libraries/display_tbl.lib.php:308 -#: libraries/messages.inc.php:888 tbl_change.php:277 tbl_tracking.php:597 +#: libraries/messages.inc.php:884 tbl_change.php:277 tbl_tracking.php:597 msgid "Show" msgstr "Ko‘rsatish" -#: db_qbe.php:300 libraries/messages.inc.php:202 +#: db_qbe.php:300 libraries/messages.inc.php:198 msgid "Criteria" msgstr "Kriteriy" #: db_qbe.php:353 db_qbe.php:435 db_qbe.php:527 db_qbe.php:558 -#: libraries/messages.inc.php:718 +#: libraries/messages.inc.php:714 msgid "Ins" msgstr "Qo‘yish" #: db_qbe.php:357 db_qbe.php:439 db_qbe.php:524 db_qbe.php:555 -#: libraries/messages.inc.php:56 +#: libraries/messages.inc.php:52 msgid "And" msgstr "Va" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:529 db_qbe.php:560 -#: libraries/messages.inc.php:717 +#: libraries/messages.inc.php:713 msgid "Del" 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/messages.inc.php:592 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:588 #: libraries/tbl_properties.inc.php:779 server_privileges.php:258 #: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288 msgid "Or" msgstr "Yoki" -#: db_qbe.php:507 libraries/messages.inc.php:516 +#: db_qbe.php:507 libraries/messages.inc.php:512 msgid "Modify" msgstr "O‘zgarirish" -#: db_qbe.php:584 libraries/messages.inc.php:33 +#: db_qbe.php:584 libraries/messages.inc.php:29 msgid "Add/Delete Criteria Row" msgstr "Qator qo‘shish/o‘chirish" -#: db_qbe.php:596 libraries/messages.inc.php:32 +#: db_qbe.php:596 libraries/messages.inc.php:28 msgid "Add/Delete Field Columns" msgstr "Ustun qo‘shish/o‘chirish" -#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1192 +#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1188 msgid "Update Query" msgstr "So‘rovni yangilash" -#: db_qbe.php:617 libraries/messages.inc.php:1216 +#: db_qbe.php:617 libraries/messages.inc.php:1212 msgid "Use Tables" msgstr "Jadvallarni ishlatish" -#: db_qbe.php:640 libraries/messages.inc.php:723 +#: db_qbe.php:640 libraries/messages.inc.php:719 #, php-format msgid "SQL query on database %s:" msgstr "\"%s\" ma`lumotlar bazasiga SQL-so‘rov: " -#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:823 +#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:819 msgid "Submit Query" msgstr "so‘rovni bajarish" #: db_search.php:68 libraries/auth/config.auth.lib.php:84 #: libraries/auth/config.auth.lib.php:103 #: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52 -#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:26 +#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:22 msgid "Access denied" msgstr "Ruxsat berilmadi" -#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:836 +#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:832 msgid "at least one of the words" msgstr "so‘zlardan biri" -#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:837 +#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:833 msgid "all words" msgstr "barcha so‘zlar" -#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:838 +#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:834 msgid "the exact phrase" msgstr "aniq moslik" -#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:839 +#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:835 msgid "as regular expression" msgstr "muntazam ibora" -#: db_search.php:242 libraries/messages.inc.php:840 +#: db_search.php:242 libraries/messages.inc.php:836 #, php-format msgid "Search results for \"%s\" %s:" msgstr "\"\"%s\"\" uchun qidiruv natijalari \"%s\":" -#: db_search.php:260 libraries/messages.inc.php:579 +#: db_search.php:260 libraries/messages.inc.php:575 #, php-format msgid "%s match(es) inside table %s" 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/messages.inc.php:108 +#: db_structure.php:105 libraries/messages.inc.php:104 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468 msgid "Browse" msgstr "Ko‘rib chiqish" #: db_search.php:272 libraries/display_tbl.lib.php:1165 -#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:243 +#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:239 #: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406 #: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377 #: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216 @@ -586,46 +586,46 @@ msgstr "Ko‘rib chiqish" msgid "Delete" msgstr "O‘chirish" -#: db_search.php:285 libraries/messages.inc.php:580 +#: db_search.php:285 libraries/messages.inc.php:576 #, php-format msgid "Total: %s match(es)" msgstr "Jami: \"%s\" o‘xshashlik" -#: db_search.php:299 libraries/messages.inc.php:832 +#: db_search.php:299 libraries/messages.inc.php:828 msgid "Search in database" msgstr "Ma`lumotlar bazasida qidirish" -#: db_search.php:302 libraries/messages.inc.php:835 +#: db_search.php:302 libraries/messages.inc.php:831 msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgstr "" "Qidirish uchun so‘z(lar) yoki qiymat(lar) (o‘rniga qo‘yish belgisi: \"%\"):" -#: db_search.php:307 libraries/messages.inc.php:842 +#: db_search.php:307 libraries/messages.inc.php:838 msgid "Find:" msgstr "Izlash:" -#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1017 +#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1013 msgid "Words are separated by a space character (\" \")." msgstr "So‘zlar bo‘sh joy (\" \") yordamida bo‘lingan." -#: db_search.php:325 libraries/messages.inc.php:834 +#: db_search.php:325 libraries/messages.inc.php:830 msgid "Inside table(s):" msgstr "Quyidagi jadval(lar)da qidirish:" -#: db_search.php:355 libraries/messages.inc.php:833 +#: db_search.php:355 libraries/messages.inc.php:829 msgid "Inside field:" 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/messages.inc.php:431 libraries/sql_query_form.lib.php:334 +#: libraries/messages.inc.php:427 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/db_links.inc.php:63 libraries/export/latex.php:337 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:1048 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:1044 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 #: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269 msgid "Structure" @@ -634,8 +634,8 @@ 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:1642 -#: libraries/db_links.inc.php:100 libraries/messages.inc.php:272 +#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/db_links.inc.php:100 libraries/messages.inc.php:268 #: 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 @@ -645,40 +645,40 @@ 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:1641 -#: libraries/messages.inc.php:284 libraries/mult_submits.inc.php:39 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: libraries/messages.inc.php:280 libraries/mult_submits.inc.php:39 #: libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "Tozalash" -#: db_structure.php:316 libraries/messages.inc.php:1075 +#: db_structure.php:316 libraries/messages.inc.php:1071 #: libraries/tbl_links.inc.php:100 #, php-format msgid "Table %s has been emptied" msgstr "\"%s\" jadvali tozalandi" -#: db_structure.php:326 libraries/messages.inc.php:1229 +#: db_structure.php:326 libraries/messages.inc.php:1225 #: libraries/tbl_links.inc.php:133 #, php-format msgid "View %s has been dropped" msgstr " \"%s\" namoyishi o‘chirildi" -#: db_structure.php:326 libraries/messages.inc.php:1074 +#: db_structure.php:326 libraries/messages.inc.php:1070 #: libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "\"%s\" jadvali o‘chirildi" -#: db_structure.php:333 libraries/messages.inc.php:1128 +#: db_structure.php:333 libraries/messages.inc.php:1124 msgid "Tracking is active." msgstr "Kuzatish faol." -#: db_structure.php:335 libraries/messages.inc.php:1129 +#: db_structure.php:335 libraries/messages.inc.php:1125 msgid "Tracking is not active." msgstr "Kuzatish faol emas." #: db_structure.php:420 libraries/display_tbl.lib.php:1944 -#: libraries/messages.inc.php:1228 +#: libraries/messages.inc.php:1224 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -688,83 +688,83 @@ msgstr "" "ma`lumot uchun %sdokumentatsiyaga%s qarang." #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 -#: libraries/messages.inc.php:1233 libraries/tbl_info.inc.php:66 +#: libraries/messages.inc.php:1229 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/messages.inc.php:773 libraries/server_links.inc.php:70 +#: libraries/messages.inc.php:769 libraries/server_links.inc.php:70 #: server_replication.php:33 server_replication.php:164 server_status.php:258 msgid "Replication" msgstr "Replikatsiya (zaxira nusxa ko‘chirish)" -#: db_structure.php:489 libraries/messages.inc.php:1053 +#: db_structure.php:489 libraries/messages.inc.php:1049 msgid "Sum" msgstr "Jami" #: db_structure.php:496 libraries/StorageEngine.class.php:356 -#: libraries/messages.inc.php:239 +#: libraries/messages.inc.php:235 #, 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 #: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086 -#: libraries/messages.inc.php:1243 libraries/mult_submits.inc.php:16 +#: libraries/messages.inc.php:1239 libraries/mult_submits.inc.php:16 #: server_databases.php:346 server_databases.php:351 #: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465 msgid "With selected:" msgstr "Belgilanganlarni: " #: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: libraries/messages.inc.php:148 server_databases.php:348 +#: libraries/messages.inc.php:144 server_databases.php:348 #: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459 msgid "Check All" msgstr "Barchasini belgilash" #: db_structure.php:531 libraries/display_tbl.lib.php:2077 -#: libraries/messages.inc.php:1184 libraries/replication_gui.lib.php:33 +#: libraries/messages.inc.php:1180 libraries/replication_gui.lib.php:33 #: server_databases.php:350 server_privileges.php:533 #: server_privileges.php:1564 tbl_structure.php:463 msgid "Uncheck All" msgstr "Belgilashni bekor qilish" -#: db_structure.php:536 libraries/messages.inc.php:150 +#: db_structure.php:536 libraries/messages.inc.php:146 msgid "Check tables having overhead" msgstr "Optimallashtirish lozim bo‘lgn jadvallarni belgilash" #: db_structure.php:547 db_structure.php:548 db_structure.php:599 -#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:672 +#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:668 #: libraries/mult_submits.inc.php:28 tbl_structure.php:493 #: tbl_structure.php:495 msgid "Print view" msgstr "Chop etish versiyasi" -#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:153 +#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:149 #: libraries/mult_submits.inc.php:42 tbl_operations.php:579 msgid "Check table" msgstr "Jadvalni tekshirish" -#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:590 +#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:586 #: libraries/mult_submits.inc.php:47 tbl_operations.php:619 #: tbl_structure.php:710 tbl_structure.php:712 msgid "Optimize table" msgstr "Jadvalni optimallashtirish" -#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:758 +#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:754 #: libraries/mult_submits.inc.php:52 tbl_operations.php:609 msgid "Repair table" msgstr "Jadvalni tiklash" -#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:55 +#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:51 #: libraries/mult_submits.inc.php:57 tbl_operations.php:599 msgid "Analyze table" msgstr "Jadval tahlili" #: db_structure.php:557 db_structure.php:558 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/messages.inc.php:310 +#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:306 #: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84 #: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109 #: server_privileges.php:1341 setup/frames/menu.inc.php:22 @@ -772,7 +772,7 @@ msgstr "Jadval tahlili" msgid "Export" msgstr "Eksport" -#: db_tracking.php:66 libraries/messages.inc.php:1151 +#: db_tracking.php:66 libraries/messages.inc.php:1147 msgid "Tracked tables" msgstr "Kuzatilgan jadvallar" @@ -780,7 +780,7 @@ msgstr "Kuzatilgan jadvallar" #: 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/header_printview.inc.php:58 libraries/messages.inc.php:212 +#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:208 #: navigation.php:233 server_databases.php:169 server_privileges.php:1621 #: server_privileges.php:1682 server_privileges.php:1940 #: server_processlist.php:56 server_synchronize.php:1179 @@ -788,76 +788,76 @@ msgstr "Kuzatilgan jadvallar" msgid "Database" msgstr "Ma`lumotlar bazasi" -#: db_tracking.php:73 libraries/messages.inc.php:1146 +#: db_tracking.php:73 libraries/messages.inc.php:1142 msgid "Last version" msgstr "Oxirgi vеrsiya" -#: db_tracking.php:74 libraries/messages.inc.php:1145 tbl_tracking.php:594 +#: db_tracking.php:74 libraries/messages.inc.php:1141 tbl_tracking.php:594 msgid "Created" msgstr "Tuzildi" -#: db_tracking.php:75 libraries/messages.inc.php:1147 tbl_tracking.php:595 +#: db_tracking.php:75 libraries/messages.inc.php:1143 tbl_tracking.php:595 msgid "Updated" msgstr "Yangilandi" #: db_tracking.php:77 libraries/Index.class.php:440 -#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:27 +#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:23 #: server_databases.php:203 server_privileges.php:1503 #: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187 msgid "Action" msgstr "Amal" -#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:247 +#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:243 msgid "Delete tracking data for this table" msgstr "Ushbu jadval uchun kuzatuv ma’lumotlari o‘chirish" -#: db_tracking.php:106 libraries/messages.inc.php:1142 tbl_tracking.php:548 +#: db_tracking.php:106 libraries/messages.inc.php:1138 tbl_tracking.php:548 #: tbl_tracking.php:606 tbl_tracking.php:613 msgid "active" msgstr "faol" -#: db_tracking.php:108 libraries/messages.inc.php:1143 tbl_tracking.php:550 +#: db_tracking.php:108 libraries/messages.inc.php:1139 tbl_tracking.php:550 #: tbl_tracking.php:608 tbl_tracking.php:610 msgid "not active" msgstr "faol emas" -#: db_tracking.php:121 libraries/messages.inc.php:1160 +#: db_tracking.php:121 libraries/messages.inc.php:1156 msgid "Versions" msgstr "Vеrsiyalar" -#: db_tracking.php:122 libraries/messages.inc.php:1132 tbl_tracking.php:379 +#: db_tracking.php:122 libraries/messages.inc.php:1128 tbl_tracking.php:379 #: tbl_tracking.php:624 msgid "Tracking report" msgstr "Kuzatish hisoboti" -#: db_tracking.php:123 libraries/messages.inc.php:1144 tbl_tracking.php:251 +#: db_tracking.php:123 libraries/messages.inc.php:1140 tbl_tracking.php:251 #: tbl_tracking.php:624 msgid "Structure snapshot" msgstr "Tuzilma rasmi" -#: db_tracking.php:152 libraries/messages.inc.php:1154 +#: db_tracking.php:152 libraries/messages.inc.php:1150 msgid "Untracked tables" msgstr "Kuzatilmagan jadvallar" -#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1153 +#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1149 #: tbl_structure.php:529 tbl_structure.php:531 msgid "Track table" msgstr "Jadvalni kuzatish" -#: db_tracking.php:200 libraries/messages.inc.php:1121 +#: db_tracking.php:200 libraries/messages.inc.php:1117 msgid "Database Log" msgstr "Baza log faylini" -#: export.php:62 libraries/messages.inc.php:312 +#: export.php:62 libraries/messages.inc.php:308 msgid "Selected export type has to be saved in file!" msgstr "Belgilangan eksport turi faylga saqlanishi shart!" -#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:567 +#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:563 #, php-format msgid "Insufficient space to save the file %s." msgstr "\"%s\" faylini saqlash uchun diskda yetarli joy mavjud emas. " -#: export.php:294 libraries/messages.inc.php:324 +#: export.php:294 libraries/messages.inc.php:320 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -865,17 +865,17 @@ msgstr "" "\"%s\" fayli serverda mavjud, uning nomini o‘zgartiring yoki qayta yozish " "parametrini yoqing." -#: export.php:298 export.php:302 libraries/messages.inc.php:562 +#: export.php:298 export.php:302 libraries/messages.inc.php:558 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "\"%s\" faylini veb-serverga saqlash uchun huquqlar yetarli emas." -#: export.php:629 libraries/messages.inc.php:276 +#: export.php:629 libraries/messages.inc.php:272 #, php-format msgid "Dump has been saved to file %s." msgstr "Damp \"%s\" faylida saqlandi." -#: import.php:60 libraries/messages.inc.php:1202 +#: import.php:60 libraries/messages.inc.php:1198 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation%" @@ -885,14 +885,14 @@ msgstr "" "usullari %sdokumentatsiyada%s keltirilgan." #: import.php:279 import.php:332 libraries/File.class.php:849 -#: libraries/File.class.php:961 libraries/messages.inc.php:325 +#: libraries/File.class.php:961 libraries/messages.inc.php:321 msgid "File could not be read" msgstr "Faylni o‘qib bo‘lmadi!!" #: import.php:287 import.php:296 import.php:315 import.php:324 #: libraries/File.class.php:1031 libraries/File.class.php:1039 #: libraries/File.class.php:1055 libraries/File.class.php:1063 -#: libraries/messages.inc.php:1189 +#: libraries/messages.inc.php:1185 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -902,7 +902,7 @@ msgstr "" "mavjud emas, shuning uchun ushbu faylni import qilib bo‘lmaydi. Agar dastur " "mavjud bo‘lsa, demak u konfiguratsiya vaqtida o‘chirib qo‘yilgan." -#: import.php:337 libraries/messages.inc.php:547 +#: import.php:337 libraries/messages.inc.php:543 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -914,31 +914,31 @@ msgstr "" "1.16[/a]." #: import.php:372 libraries/display_import.lib.php:24 -#: libraries/messages.inc.php:125 +#: libraries/messages.inc.php:121 msgid "Could not load import plugins, please check your installation!" msgstr "" "Import modullari mavjud emas! O‘rnatilgan phpMyAdmin nusxasining libraries/" "export katalogini tekshiring." -#: import.php:397 libraries/messages.inc.php:102 +#: import.php:397 libraries/messages.inc.php:98 msgid "The bookmark has been deleted." msgstr "Xatcho‘p o‘chirildi." -#: import.php:401 libraries/messages.inc.php:879 +#: import.php:401 libraries/messages.inc.php:875 msgid "Showing bookmark" msgstr "Xatcho‘plarni ko‘rsatish" -#: import.php:403 libraries/messages.inc.php:101 +#: import.php:403 libraries/messages.inc.php:97 #, php-format msgid "Bookmark %s created" msgstr "\"%s\" xatcho‘pi tuzildi" -#: import.php:409 import.php:415 libraries/messages.inc.php:407 +#: import.php:409 import.php:415 libraries/messages.inc.php:403 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Import muvaffaqiyatli tugatildi, bajarilgan so‘rovlar soni: %d." -#: import.php:424 libraries/messages.inc.php:1107 +#: import.php:424 libraries/messages.inc.php:1103 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -947,13 +947,13 @@ msgstr "" "unda o‘sha faylni tanlagan holda uni qayta ishga tushiring va jarayon " "uzilgan joydan boshlab davom etadi." -#: index.php:190 libraries/messages.inc.php:553 +#: index.php:190 libraries/messages.inc.php:549 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" "phpMyAdmin ishlashi uchun freymlar bilan ishlay oladigan brauzer " "kerak." -#: js/messages.php:25 libraries/messages.inc.php:155 +#: js/messages.php:25 libraries/messages.inc.php:151 #: server_synchronize.php:345 server_synchronize.php:357 #: server_synchronize.php:373 server_synchronize.php:380 #: server_synchronize.php:739 server_synchronize.php:767 @@ -961,120 +961,120 @@ msgstr "" msgid "Click to select" msgstr "Tanlash uchun sichqoncha tugmasini bosing" -#: js/messages.php:26 libraries/messages.inc.php:156 +#: js/messages.php:26 libraries/messages.inc.php:152 msgid "Click to unselect" msgstr "Tanlashni bеkor qilish uchun sichqoncha tugmasini bosing" #: js/messages.php:27 libraries/import.lib.php:103 -#: libraries/messages.inc.php:550 sql.php:89 +#: libraries/messages.inc.php:546 sql.php:89 msgid "\"DROP DATABASE\" statements are disabled." msgstr "" "\"DROP DATABASE\" (ma`lumotlar bazasini o‘chirish) buyrug‘i o‘chirilgan." -#: js/messages.php:30 libraries/messages.inc.php:270 +#: js/messages.php:30 libraries/messages.inc.php:266 #: libraries/mult_submits.inc.php:258 sql.php:188 msgid "Do you really want to " msgstr "Haqiqatan ham so‘rovni bajarmoqchimisiz?" -#: js/messages.php:31 libraries/messages.inc.php:271 +#: js/messages.php:31 libraries/messages.inc.php:267 #: libraries/mult_submits.inc.php:258 sql.php:172 msgid "You are about to DESTROY a complete database!" msgstr "Ma`lumotlar bazasi to‘liq O‘CHIRILADI!" -#: js/messages.php:34 libraries/messages.inc.php:94 +#: js/messages.php:34 libraries/messages.inc.php:90 msgid "You are about to DISABLE a BLOB Repository!" msgstr "Siz BLOB omborini FAOLSIZLANTIRMOQCHISIZ!" -#: js/messages.php:35 libraries/messages.inc.php:91 +#: js/messages.php:35 libraries/messages.inc.php:87 #, php-format msgid "Are you sure you want to disable all BLOB references for database %s?" msgstr "" "Siz haqiqatdan ham \"%s\" bazasi uchun barcha BLOB murojaatlarini bekor " "qilmoqchimisiz?" -#: js/messages.php:38 libraries/messages.inc.php:342 +#: js/messages.php:38 libraries/messages.inc.php:338 msgid "Missing value in the form!" msgstr "Formaning kerakli maydonlari to‘ldirilmagan!" -#: js/messages.php:39 libraries/messages.inc.php:570 +#: js/messages.php:39 libraries/messages.inc.php:566 msgid "This is not a number!" msgstr "Son kiriting!" -#: js/messages.php:42 libraries/messages.inc.php:380 +#: js/messages.php:42 libraries/messages.inc.php:376 msgid "The host name is empty!" msgstr "Xost nomi bo‘sh!" -#: js/messages.php:43 libraries/messages.inc.php:1208 +#: js/messages.php:43 libraries/messages.inc.php:1204 msgid "The user name is empty!" msgstr "Foydalanuvchi nomi belgilanmagan!" -#: js/messages.php:44 libraries/messages.inc.php:607 +#: js/messages.php:44 libraries/messages.inc.php:603 #: server_privileges.php:1197 user_password.php:70 msgid "The password is empty!" msgstr "Parol belgilanmagan!" -#: js/messages.php:45 libraries/messages.inc.php:609 +#: js/messages.php:45 libraries/messages.inc.php:605 #: server_privileges.php:1195 user_password.php:73 msgid "The passwords aren't the same!" msgstr "Kiritilgan parollar bir xil emas!" -#: js/messages.php:49 libraries/messages.inc.php:123 pmd_general.php:342 +#: js/messages.php:49 libraries/messages.inc.php:119 pmd_general.php:342 #: pmd_general.php:379 msgid "Cancel" msgstr "Bekor qilish" -#: js/messages.php:52 libraries/messages.inc.php:514 +#: js/messages.php:52 libraries/messages.inc.php:510 msgid "Modifications have been saved" msgstr "O‘zgaririshlar saqlandi" -#: js/messages.php:53 libraries/messages.inc.php:741 +#: js/messages.php:53 libraries/messages.inc.php:737 msgid "Relation deleted" msgstr "Aloqa o‘chirildi" -#: js/messages.php:54 libraries/messages.inc.php:340 +#: js/messages.php:54 libraries/messages.inc.php:336 msgid "FOREIGN KEY relation added" msgstr "Tashqi kalitga (FOREIGN KEY) aloqa o‘rnatildi" -#: js/messages.php:55 libraries/messages.inc.php:434 +#: js/messages.php:55 libraries/messages.inc.php:430 msgid "Internal relation added" msgstr "Ichki aloqa o‘rnatildi" -#: js/messages.php:56 libraries/messages.inc.php:299 +#: js/messages.php:56 libraries/messages.inc.php:295 msgid "Error: Relation not added." msgstr "Xatolik: Bog‘liqlik o‘rnatilmadi." -#: js/messages.php:57 libraries/messages.inc.php:300 +#: js/messages.php:57 libraries/messages.inc.php:296 msgid "Error: relation already exists." msgstr "Xatolik: Bog‘liqlik allaqachon mavjud." -#: js/messages.php:58 libraries/messages.inc.php:302 +#: js/messages.php:58 libraries/messages.inc.php:298 msgid "Error saving coordinates for Designer." msgstr "Koordinatalarni saqlashda xatolik." -#: js/messages.php:59 libraries/messages.inc.php:351 +#: js/messages.php:59 libraries/messages.inc.php:347 #: libraries/relation.lib.php:107 msgid "General relation features" msgstr "Aloqalarning asosiy imkoniyatlari" -#: js/messages.php:59 libraries/messages.inc.php:260 +#: js/messages.php:59 libraries/messages.inc.php:256 #: libraries/relation.lib.php:101 libraries/relation.lib.php:108 msgid "Disabled" msgstr "Faolsizlantirilgan" -#: js/messages.php:60 libraries/messages.inc.php:850 +#: js/messages.php:60 libraries/messages.inc.php:846 msgid "Select referenced key" msgstr "Bog‘liq kalitni tanlang" -#: js/messages.php:61 libraries/messages.inc.php:848 +#: js/messages.php:61 libraries/messages.inc.php:844 msgid "Select Foreign Key" msgstr "Tashqi kalitni tanlang" -#: js/messages.php:62 libraries/messages.inc.php:653 +#: js/messages.php:62 libraries/messages.inc.php:649 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 libraries/messages.inc.php:142 pmd_general.php:77 +#: js/messages.php:63 libraries/messages.inc.php:138 pmd_general.php:77 #: tbl_relation.php:548 msgid "Choose field to display" msgstr "Ko‘rsatiladigan maydonni tanlash" @@ -1094,9 +1094,9 @@ msgid "Prev" msgstr "Orqaga" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2332 -#: libraries/common.lib.php:2335 libraries/display_tbl.lib.php:338 -#: libraries/messages.inc.php:543 server_binlog.php:205 server_binlog.php:207 +#: js/messages.php:77 libraries/common.lib.php:2344 +#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: libraries/messages.inc.php:539 server_binlog.php:205 server_binlog.php:207 #: tbl_printview.php:424 tbl_structure.php:802 msgid "Next" msgstr "Keyingi" @@ -1171,27 +1171,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1543 +#: js/messages.php:97 libraries/common.lib.php:1555 msgid "Jan" msgstr "Yanv" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1545 +#: js/messages.php:99 libraries/common.lib.php:1557 msgid "Feb" msgstr "Fev" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1547 +#: js/messages.php:101 libraries/common.lib.php:1559 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1549 +#: js/messages.php:103 libraries/common.lib.php:1561 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1551 +#: js/messages.php:105 libraries/common.lib.php:1563 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1199,37 +1199,37 @@ msgid "May" msgstr "May" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1553 +#: js/messages.php:107 libraries/common.lib.php:1565 msgid "Jun" msgstr "Iyun" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1555 +#: js/messages.php:109 libraries/common.lib.php:1567 msgid "Jul" msgstr "Iyul" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1557 +#: js/messages.php:111 libraries/common.lib.php:1569 msgid "Aug" msgstr "Avg" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1559 +#: js/messages.php:113 libraries/common.lib.php:1571 msgid "Sep" msgstr "Sen" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1561 +#: js/messages.php:115 libraries/common.lib.php:1573 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1563 +#: js/messages.php:117 libraries/common.lib.php:1575 msgid "Nov" msgstr "Noya" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1565 +#: js/messages.php:119 libraries/common.lib.php:1577 msgid "Dec" msgstr "Dek" @@ -1270,37 +1270,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1568 +#: js/messages.php:132 libraries/common.lib.php:1580 msgid "Sun" msgstr "Yaksh" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1570 +#: js/messages.php:134 libraries/common.lib.php:1582 msgid "Mon" msgstr "Dush" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1572 +#: js/messages.php:136 libraries/common.lib.php:1584 msgid "Tue" msgstr "Sesh" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1574 +#: js/messages.php:138 libraries/common.lib.php:1586 msgid "Wed" msgstr "Chor" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1576 +#: js/messages.php:140 libraries/common.lib.php:1588 msgid "Thu" msgstr "Pay" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1578 +#: js/messages.php:142 libraries/common.lib.php:1590 msgid "Fri" msgstr "Jum" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1580 +#: js/messages.php:144 libraries/common.lib.php:1592 msgid "Sat" msgstr "Shan" @@ -1376,23 +1376,23 @@ msgstr "ishlatilmoqda" msgid "Second" msgstr "sekundiga" -#: libraries/Config.class.php:1015 libraries/messages.inc.php:338 +#: libraries/Config.class.php:1015 libraries/messages.inc.php:334 msgid "Font size" msgstr "Shrift o‘lchami" #: libraries/File.class.php:344 libraries/File.class.php:432 #: libraries/File.class.php:569 libraries/File.class.php:708 -#: libraries/messages.inc.php:1201 +#: libraries/messages.inc.php:1197 msgid "Unknown error in file upload." msgstr "Fayl yuklanayotgan vaqtda noma`lum xatolik yuz berdi." -#: libraries/File.class.php:414 libraries/messages.inc.php:1198 +#: libraries/File.class.php:414 libraries/messages.inc.php:1194 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "Yuklanayotgan fayl hajmi PHP konfiguratsion faylida (php.ini) ko‘rsatilgan " "\"upload_max_filesize\" direktivasi qiymatidan katta!" -#: libraries/File.class.php:417 libraries/messages.inc.php:1197 +#: libraries/File.class.php:417 libraries/messages.inc.php:1193 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -1400,23 +1400,23 @@ msgstr "" "Yuklanayotgan fayl hajmi HTML formada ko‘rsatilgan \"MAX_FILE_SIZE\" " "direktivasi qiymatidan katta!" -#: libraries/File.class.php:420 libraries/messages.inc.php:1200 +#: libraries/File.class.php:420 libraries/messages.inc.php:1196 msgid "The uploaded file was only partially uploaded." msgstr "Yuklanayotgan fayl faqatgina qisman yuklandi." -#: libraries/File.class.php:423 libraries/messages.inc.php:1199 +#: libraries/File.class.php:423 libraries/messages.inc.php:1195 msgid "Missing a temporary folder." msgstr "Vaqtinchalik fayllarni saqlash uchun katalog topilmadi." -#: libraries/File.class.php:426 libraries/messages.inc.php:1195 +#: libraries/File.class.php:426 libraries/messages.inc.php:1191 msgid "Failed to write file to disk." msgstr "Faylni diskka yozishdaxatolik yuz berdi." -#: libraries/File.class.php:429 libraries/messages.inc.php:1196 +#: libraries/File.class.php:429 libraries/messages.inc.php:1192 msgid "File upload stopped by extension." msgstr "Faylning yuklanishi uning kengaytmasi sabali to‘xtatildi." -#: libraries/File.class.php:908 libraries/messages.inc.php:319 +#: libraries/File.class.php:908 libraries/messages.inc.php:315 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -1424,34 +1424,34 @@ msgstr "" "Yuklangan fayl joyini o‘zgartirishda xatolik, [a@./Documentation." "html#faq1_11@Documentation]\"FAQ 1.11\"[/a]ga qarang" -#: libraries/Index.class.php:428 libraries/messages.inc.php:554 +#: libraries/Index.class.php:428 libraries/messages.inc.php:550 #: tbl_relation.php:529 msgid "No index defined!" msgstr "Indeks belgilanmagan!" -#: libraries/Index.class.php:433 libraries/messages.inc.php:411 +#: libraries/Index.class.php:433 libraries/messages.inc.php:407 #: server_databases.php:132 tbl_tracking.php:316 msgid "Indexes" msgstr "Indekslar" -#: libraries/Index.class.php:444 libraries/messages.inc.php:1186 +#: libraries/Index.class.php:444 libraries/messages.inc.php:1182 #: 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:475 tbl_tracking.php:322 msgid "Unique" msgstr "Unikal" -#: libraries/Index.class.php:445 libraries/messages.inc.php:596 +#: libraries/Index.class.php:445 libraries/messages.inc.php:592 #: tbl_tracking.php:323 msgid "Packed" msgstr "Qisilgan" -#: libraries/Index.class.php:447 libraries/messages.inc.php:131 +#: libraries/Index.class.php:447 libraries/messages.inc.php:127 #: tbl_tracking.php:325 msgid "Cardinality" msgstr "Elementlar soni" -#: libraries/Index.class.php:450 libraries/messages.inc.php:162 +#: libraries/Index.class.php:450 libraries/messages.inc.php:158 #: tbl_tracking.php:279 tbl_tracking.php:328 msgid "Comment" msgstr "Izoh" @@ -1459,29 +1459,29 @@ msgstr "Izoh" #: libraries/Index.class.php:466 libraries/common.lib.php:616 #: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:280 pdf_pages.php:280 +#: libraries/messages.inc.php:276 pdf_pages.php:280 #: setup/frames/index.inc.php:124 setup/lib/messages.inc.php:352 #: tbl_row_action.php:69 msgid "Edit" msgstr "Tahrirlash" -#: libraries/Index.class.php:472 libraries/messages.inc.php:666 +#: libraries/Index.class.php:472 libraries/messages.inc.php:662 msgid "The primary key has been dropped" msgstr "Birlamchi kalit o‘chirildi" -#: libraries/Index.class.php:476 libraries/messages.inc.php:413 +#: libraries/Index.class.php:476 libraries/messages.inc.php:409 #, php-format msgid "Index %s has been dropped" msgstr " \"%s\" indeksi o‘chirildi" -#: libraries/Index.class.php:576 libraries/messages.inc.php:412 +#: libraries/Index.class.php:576 libraries/messages.inc.php:408 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr " %1$s va %2$s indekslari bir xil, ulardan birini o‘chirish mumkin." -#: libraries/List_Database.class.php:431 libraries/messages.inc.php:218 +#: libraries/List_Database.class.php:431 libraries/messages.inc.php:214 #: libraries/server_links.inc.php:41 server_databases.php:88 #: server_privileges.php:1621 setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" @@ -1511,85 +1511,85 @@ msgid_plural "%1$d rows inserted." msgstr[0] "%1$d ta qatorlar qo‘yildi." msgstr[1] "%1$d ta qatorlar qo‘yildi." -#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:549 +#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:545 msgid "" "There is no detailed status information available for this storage engine." msgstr "Ushbu turdagi jadvallar haqida qo‘shimcha ma`lumot mavjud emas. " -#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:291 +#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:287 #, php-format msgid "%s is available on this MySQL server." msgstr "Ushbu MySQL serveri \"%s\" turdagi jadvallar bilan ishlay oladi." -#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:292 +#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:288 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "\"%s\" turidagi jadvallar ushbu MySQL serverda faolsizlantirilgan." -#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:294 +#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:290 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "Ushbu MySQL serveri \"%s\" turdagi jadvallar bilan ishlay olmaydi." -#: libraries/Table.class.php:1019 libraries/messages.inc.php:443 +#: libraries/Table.class.php:1019 libraries/messages.inc.php:439 msgid "Invalid database" msgstr "Noto‘g‘ri ma`lumotlar bazasi" -#: libraries/Table.class.php:1033 libraries/messages.inc.php:450 +#: libraries/Table.class.php:1033 libraries/messages.inc.php:446 #: tbl_get_field.php:26 msgid "Invalid table name" msgstr "Jadval nomi noto‘g‘ri" -#: libraries/Table.class.php:1048 libraries/messages.inc.php:301 +#: libraries/Table.class.php:1048 libraries/messages.inc.php:297 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "%1$s jadvalini %2$s deb qayta nomlashda xatolik" -#: libraries/Table.class.php:1132 libraries/messages.inc.php:754 +#: libraries/Table.class.php:1132 libraries/messages.inc.php:750 #, php-format msgid "Table %s has been renamed to %s" msgstr "`\"%s\"` jadvalining nomi `\"%s\"` deb o‘zgartirildi." -#: libraries/Theme.class.php:162 libraries/messages.inc.php:1099 +#: libraries/Theme.class.php:162 libraries/messages.inc.php:1095 #, php-format msgid "No valid image path for theme %s found!" msgstr " \"%s\" mavzusi rasmlariga to‘g‘ri yo‘l topilmadi!" -#: libraries/Theme.class.php:384 libraries/messages.inc.php:1097 +#: libraries/Theme.class.php:384 libraries/messages.inc.php:1093 msgid "No preview available." msgstr "Oldindan ko‘rish mumkin emas." -#: libraries/Theme.class.php:387 libraries/messages.inc.php:1089 +#: libraries/Theme.class.php:387 libraries/messages.inc.php:1085 msgid "take it" msgstr "Tadbiq qilish" -#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1096 +#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1092 #, php-format msgid "Default theme %s not found!" msgstr " \"%s\" asl mavzusi topilmadi!" -#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1098 +#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1094 #, php-format msgid "Theme %s not found!" msgstr " \"%s\" mavzusi topilmadi!" -#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1100 +#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1096 #, php-format msgid "Theme path not found for theme %s!" msgstr " \"%s\" mavzusi fayllariga yo‘l topilmadi!" -#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1101 +#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1097 #: test/theme.php:161 themes.php:21 themes.php:41 msgid "Theme / Style" msgstr "Mavzu / Uslub" -#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:172 +#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:168 msgid "Cannot connect: invalid settings." msgstr "Ulanib bo‘lmadi: noto‘g‘ri sozlangan." #: libraries/auth/config.auth.lib.php:92 #: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65 -#: libraries/messages.inc.php:1238 test/theme.php:152 +#: libraries/messages.inc.php:1234 test/theme.php:152 #, php-format msgid "Welcome to %s" msgstr "\"%s\" dasturiga xush kelibsiz" @@ -1614,45 +1614,45 @@ msgstr "" "faylidagi xost, foydalanuvchi va parolni tekshiring va ular MySQL serveri " "administratoridan olingan ma`lumotlarga mos kelishiga ishonch hosil qiling." -#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:488 +#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:484 msgid "Log in" msgstr "Avtorizatsiya" #: libraries/auth/cookie.auth.lib.php:246 -#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:659 +#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:655 #: libraries/navigation_header.inc.php:93 #: libraries/navigation_header.inc.php:95 msgid "phpMyAdmin documentation" msgstr "phpMyAdmin dokumentatsiyasi" #: libraries/auth/cookie.auth.lib.php:258 -#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:492 +#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:488 msgid "You can enter hostname/IP address and port separated by space." msgstr "Siz xost/IP adres va bo‘sh joy qoldirib portni kiritishingiz mumkin." -#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:493 +#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:489 msgid "Server:" msgstr "Server" -#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:494 +#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:490 msgid "Username:" msgstr "Foydalanuvchi:" -#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:491 +#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:487 msgid "Password:" msgstr "Parol:" -#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:854 +#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:850 msgid "Server Choice" msgstr "Serverni tanlang" #: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 -#: libraries/messages.inc.php:177 +#: libraries/messages.inc.php:173 msgid "Cookies must be enabled past this point." msgstr "Brauzerda \"cookies\" faollashtirilgan bo‘lishi shart." #: libraries/auth/cookie.auth.lib.php:671 -#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:489 +#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:485 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" @@ -1660,7 +1660,7 @@ msgstr "" "AllowNoPassword)" #: libraries/auth/cookie.auth.lib.php:675 -#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:544 +#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:540 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" @@ -1669,53 +1669,53 @@ msgstr "" #: libraries/auth/cookie.auth.lib.php:685 #: libraries/auth/cookie.auth.lib.php:687 -#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:126 +#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:122 msgid "Cannot log in to the MySQL server" msgstr "MySQL serveriga ulanib bo‘lmadi" -#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1245 +#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1241 msgid "Wrong username/password. Access denied." msgstr "Kiritilgan ma`lumotlar noto‘g‘ri. Kirish mumkin emas." #: libraries/auth/swekey/swekey.auth.lib.php:118 -#: libraries/messages.inc.php:1057 +#: libraries/messages.inc.php:1053 #, php-format msgid "File %s does not contain any key id" msgstr "\"%s\" faylida kalit identifikatori mavjud emas" #: libraries/auth/swekey/swekey.auth.lib.php:157 #: libraries/auth/swekey/swekey.auth.lib.php:180 -#: libraries/messages.inc.php:1056 +#: libraries/messages.inc.php:1052 msgid "Hardware authentication failed" msgstr "Uskunaviy autentifikatsiya muvaffaqiyatsiz yakunlandi" #: libraries/auth/swekey/swekey.auth.lib.php:166 -#: libraries/messages.inc.php:1058 +#: libraries/messages.inc.php:1054 msgid "No valid authentication key plugged" msgstr "To‘g‘ri autentifikatsiya kaliti ulanmagan" #: libraries/auth/swekey/swekey.auth.lib.php:202 -#: libraries/messages.inc.php:1055 +#: libraries/messages.inc.php:1051 msgid "Authenticating..." msgstr "Autentifikatsiya..." -#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1230 +#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1226 msgid "View image" msgstr "Rasm ko‘rinishi" -#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:652 +#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:648 msgid "Play audio" msgstr "Audiofaylni o‘qish" -#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1232 +#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1228 msgid "View video" msgstr "Vidеo ko‘rinishi" -#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:269 +#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:265 msgid "Download file" msgstr "Faylni yuklab olish" -#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:128 +#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:124 msgid "" "Couldn't load the iconv or recode extension needed for charset conversion. " "Either configure PHP to enable these extensions or disable charset " @@ -1728,7 +1728,7 @@ msgstr "" #: libraries/charset_conversion.lib.php:79 #: libraries/charset_conversion.lib.php:90 -#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:130 +#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:126 msgid "" "Couldn't use the iconv, libiconv, or recode_string functions, although the " "necessary extensions appear to be loaded. Check your PHP configuration." @@ -1737,7 +1737,7 @@ msgstr "" "yoki \"recode_string\" funksiyasini ishlatib bo‘lmadi. Ehtimol, PHP ni " "sozlashda xatolik mavjud." -#: libraries/common.inc.php:583 libraries/messages.inc.php:170 +#: libraries/common.inc.php:583 libraries/messages.inc.php:166 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!" @@ -1773,7 +1773,7 @@ msgstr "" msgid "Invalid server index: %s" msgstr "Server raqami noto‘g‘ri: \"%s\"" -#: libraries/common.inc.php:636 libraries/messages.inc.php:448 +#: libraries/common.inc.php:636 libraries/messages.inc.php:444 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" @@ -1781,18 +1781,18 @@ msgstr "" "konfiguratsion faylida belgilangan sozlashlarni to‘g‘irlang." #: libraries/common.inc.php:645 libraries/header.inc.php:96 -#: libraries/messages.inc.php:856 libraries/select_server.lib.php:41 +#: libraries/messages.inc.php:852 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/messages.inc.php:437 +#: libraries/common.inc.php:823 libraries/messages.inc.php:433 msgid "Invalid authentication method set in configuration:" msgstr "" "phpMyAdmin konfiguratsion faylida noto‘g‘ri autentifikatsiya usuli " "belgilangan:" -#: libraries/common.lib.php:147 libraries/messages.inc.php:499 +#: libraries/common.lib.php:147 libraries/messages.inc.php:495 #, php-format msgid "Max: %s%s" msgstr "Maksimal hajmi: \"%s\"%s\"" @@ -1814,7 +1814,7 @@ msgstr "Yuborildi" #: libraries/common.lib.php:428 libraries/common.lib.php:430 #: libraries/common.lib.php:432 libraries/common.lib.php:448 #: libraries/common.lib.php:450 libraries/dbg/setup.php:25 -#: libraries/display_export.lib.php:164 libraries/messages.inc.php:267 +#: libraries/display_export.lib.php:164 libraries/messages.inc.php:263 #: libraries/relation.lib.php:97 libraries/sql_query_form.lib.php:451 #: libraries/sql_query_form.lib.php:454 main.php:229 pdf_pages.php:37 #: pdf_pages.php:43 pdf_pages.php:49 pdf_pages.php:54 @@ -1824,55 +1824,55 @@ msgstr "Dokumentatsiya" #: libraries/common.lib.php:581 libraries/core.lib.php:234 #: libraries/core.lib.php:263 libraries/import.lib.php:134 -#: libraries/messages.inc.php:297 pdf_schema.php:32 pdf_schema.php:232 +#: libraries/messages.inc.php:293 pdf_schema.php:32 pdf_schema.php:232 #: tbl_change.php:1027 tbl_operations.php:213 tbl_relation.php:290 #: view_operations.php:62 msgid "Error" msgstr "Xatolik" #: libraries/common.lib.php:595 libraries/header_printview.inc.php:61 -#: libraries/messages.inc.php:1023 server_processlist.php:60 +#: libraries/messages.inc.php:1019 server_processlist.php:60 #: server_status.php:247 msgid "SQL query" msgstr "SQL so‘rovi" -#: libraries/common.lib.php:634 libraries/messages.inc.php:538 +#: libraries/common.lib.php:634 libraries/messages.inc.php:534 msgid "MySQL said: " msgstr "MySQL javobi: " -#: libraries/common.lib.php:667 libraries/messages.inc.php:76 +#: libraries/common.lib.php:667 libraries/messages.inc.php:72 #: pdf_schema.php:241 user_password.php:115 msgid "Back" msgstr "Orqaga" -#: libraries/common.lib.php:1177 libraries/messages.inc.php:309 +#: libraries/common.lib.php:1177 libraries/messages.inc.php:305 #: setup/lib/messages.inc.php:353 msgid "Explain SQL" msgstr "So‘rov tahlili" -#: libraries/common.lib.php:1180 libraries/messages.inc.php:551 +#: libraries/common.lib.php:1180 libraries/messages.inc.php:547 msgid "Skip Explain SQL" msgstr "Tahlil kerak emas" -#: libraries/common.lib.php:1212 libraries/messages.inc.php:563 +#: libraries/common.lib.php:1212 libraries/messages.inc.php:559 msgid "Without PHP Code" msgstr "PHP-kod olib tashlash" -#: libraries/common.lib.php:1215 libraries/messages.inc.php:649 +#: libraries/common.lib.php:1215 libraries/messages.inc.php:645 #: setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "PHP-kod" -#: libraries/common.lib.php:1233 libraries/messages.inc.php:737 +#: libraries/common.lib.php:1233 libraries/messages.inc.php:733 #: server_status.php:341 setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "Yangilash" -#: libraries/common.lib.php:1242 libraries/messages.inc.php:575 +#: libraries/common.lib.php:1242 libraries/messages.inc.php:571 msgid "Skip Validate SQL" msgstr "SQL sintaksisi tekshiruvini olib tashlash" -#: libraries/common.lib.php:1245 libraries/messages.inc.php:1220 +#: libraries/common.lib.php:1245 libraries/messages.inc.php:1216 #: setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "SQL to‘g‘riligini tekshirish" @@ -1888,11 +1888,11 @@ msgid "Inline" msgstr "Jadval turlari" #: libraries/common.lib.php:1332 libraries/common.lib.php:1347 -#: libraries/messages.inc.php:713 +#: libraries/messages.inc.php:709 msgid "Profiling" msgstr "Profillashtirish" -#: libraries/common.lib.php:1351 libraries/messages.inc.php:1108 +#: libraries/common.lib.php:1351 libraries/messages.inc.php:1104 #: libraries/tbl_triggers.lib.php:28 server_processlist.php:58 msgid "Time" msgstr "Vaqt" @@ -1926,40 +1926,50 @@ msgstr "PB" msgid "EiB" msgstr "EB" +#. l10n: Thousands separator +#: libraries/common.lib.php:1417 +msgid "," +msgstr " " + +#. l10n: Decimal separator +#: libraries/common.lib.php:1419 +msgid "." +msgstr "," + #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1584 +#: libraries/common.lib.php:1596 #: libraries/transformations/text_plain__dateformat.inc.php:28 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y y., %H:%M" -#: libraries/common.lib.php:1886 +#: libraries/common.lib.php:1898 #, 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:2301 libraries/common.lib.php:2304 -#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:664 +#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:660 #: server_status.php:608 msgid "Begin" msgstr "Boshi" -#: libraries/common.lib.php:2302 libraries/common.lib.php:2305 -#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:665 +#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:661 #: server_binlog.php:168 server_binlog.php:170 msgid "Previous" msgstr "Orqaga" -#: libraries/common.lib.php:2333 libraries/common.lib.php:2336 -#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:289 +#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:285 msgid "End" msgstr "Oxiri" -#: libraries/common.lib.php:2409 libraries/messages.inc.php:455 +#: libraries/common.lib.php:2421 libraries/messages.inc.php:451 #, php-format msgid "Jump to database "%s"." msgstr " \"%s\" ma`lumotlar bazasiga o‘tish" -#: libraries/common.lib.php:2429 libraries/messages.inc.php:461 +#: libraries/common.lib.php:2441 libraries/messages.inc.php:457 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" @@ -1967,7 +1977,7 @@ msgstr "" "ma`lumot uchun qarang \"%s\"" #: libraries/core.lib.php:286 libraries/dbg/setup.php:22 -#: libraries/messages.inc.php:127 +#: libraries/messages.inc.php:123 #, php-format msgid "" "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " @@ -1977,74 +1987,74 @@ msgstr "" "bo‘lmadi! PHP konfiguratsiyasini sozlang." #: libraries/db_events.inc.php:20 libraries/db_events.inc.php:22 -#: libraries/export/sql.php:415 libraries/messages.inc.php:306 +#: libraries/export/sql.php:415 libraries/messages.inc.php:302 msgid "Events" msgstr "Hodisalar" #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 -#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:541 +#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:537 #: libraries/tbl_triggers.lib.php:27 setup/frames/index.inc.php:112 msgid "Name" msgstr "Nomi" -#: libraries/db_links.inc.php:45 libraries/messages.inc.php:216 +#: libraries/db_links.inc.php:45 libraries/messages.inc.php:212 #, php-format msgid "Database %s has been dropped." msgstr " \"%s\" ma`lumotlar ombori o‘chirildi." #: libraries/db_links.inc.php:57 libraries/db_links.inc.php:58 -#: libraries/db_links.inc.php:59 libraries/messages.inc.php:234 +#: libraries/db_links.inc.php:59 libraries/messages.inc.php:230 msgid "Database seems to be empty!" msgstr "Ma`lumotlar bazasi bo‘sh!" -#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1025 +#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1021 #: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60 #: querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1152 +#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1148 #: libraries/tbl_links.inc.php:69 msgid "Tracking" msgstr "Kuzatish" -#: libraries/db_links.inc.php:86 libraries/messages.inc.php:719 +#: libraries/db_links.inc.php:86 libraries/messages.inc.php:715 msgid "Query" msgstr "So‘rov" -#: libraries/db_links.inc.php:91 libraries/messages.inc.php:253 +#: libraries/db_links.inc.php:91 libraries/messages.inc.php:249 msgid "Designer" msgstr "Dizayner" -#: libraries/db_links.inc.php:98 libraries/messages.inc.php:397 +#: libraries/db_links.inc.php:98 libraries/messages.inc.php:393 #: libraries/server_links.inc.php:88 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:104 libraries/messages.inc.php:587 +#: libraries/db_links.inc.php:104 libraries/messages.inc.php:583 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" msgstr "Operatsiyalar" -#: libraries/db_links.inc.php:111 libraries/messages.inc.php:709 +#: libraries/db_links.inc.php:111 libraries/messages.inc.php:705 #: libraries/server_links.inc.php:66 server_privileges.php:72 #: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117 msgid "Privileges" msgstr "Privilegiyalar" #: libraries/db_routines.inc.php:30 libraries/db_routines.inc.php:32 -#: libraries/messages.inc.php:812 +#: libraries/messages.inc.php:808 msgid "Routines" msgstr "Muolajalar" -#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:811 +#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:807 msgid "Return type" msgstr "Qaytariladigan tip" #: libraries/db_structure.lib.php:57 libraries/display_tbl.lib.php:1848 -#: libraries/messages.inc.php:65 +#: libraries/messages.inc.php:61 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -2052,44 +2062,44 @@ msgstr "" "Taxminiy bo‘lishi mumkin. [a@./Documentation.html#faq3_11@Documentation]" "\"FAQ 3.11\"[/a]ga qarang" -#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:593 +#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:589 #: server_databases.php:142 tbl_printview.php:336 tbl_structure.php:683 msgid "Overhead" msgstr "Fragmentlangan" #: libraries/dbi/mysql.dbi.lib.php:112 libraries/dbi/mysqli.dbi.lib.php:124 -#: libraries/messages.inc.php:176 +#: libraries/messages.inc.php:172 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "\"config.inc.php\" konfiguratsion faylining \"controluser\" direktivasida " "ko‘rsatilgan foydalanuvchi yordamida ulanib bo‘lmadi." #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 -#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:855 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:851 msgid "The server is not responding" msgstr "Server javob bermayapti" #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:1010 +#: libraries/messages.inc.php:1006 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 libraries/messages.inc.php:255 +#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:251 #: tbl_structure.php:609 msgid "Details..." msgstr "Tafsilotlar..." -#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:143 +#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:139 #: main.php:91 user_password.php:111 user_password.php:129 msgid "Change password" msgstr "Parolni o‘zgartirish" -#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:561 +#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:557 #: libraries/replication_gui.lib.php:341 server_privileges.php:768 msgid "No Password" msgstr "Parol yo‘q" -#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:610 +#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:606 #: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60 #: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335 #: libraries/replication_gui.lib.php:345 server_privileges.php:757 @@ -2098,13 +2108,13 @@ msgstr "Parol yo‘q" msgid "Password" msgstr "Parol" -#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:806 +#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:802 #: libraries/replication_gui.lib.php:349 libraries/replication_gui.lib.php:352 #: server_privileges.php:776 server_privileges.php:779 msgid "Re-type" msgstr "Tasdiqlash" -#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:608 +#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:604 msgid "Password Hashing" msgstr "Parolni xeshlash" @@ -2114,91 +2124,91 @@ msgstr "Parolni xeshlash" msgid "MySQL 4.0 compatible" msgstr "MySQL 4.0 ga mos" -#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:353 +#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:349 #: libraries/replication_gui.lib.php:356 server_privileges.php:783 msgid "Generate Password" msgstr "Parol o‘rnatish" -#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:352 +#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:348 #: libraries/replication_gui.lib.php:359 server_privileges.php:786 msgid "Generate" msgstr "Generatsiya qilish" #: libraries/display_create_database.lib.php:22 -#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:189 +#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:185 msgid "Create new database" msgstr "Yangi ma`lumotlar bazasi tuzish" -#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:185 +#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:181 msgid "Create" msgstr "Tuzish" -#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:564 +#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:560 #: server_privileges.php:74 server_privileges.php:1388 #: server_replication.php:35 msgid "No Privileges" msgstr "Privilegiyalar yo‘q" -#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:445 +#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:441 msgid "Table must have at least one field." msgstr "Jadvalda, hech bo‘lmaganda, bitta maydon bo‘lishi shart." -#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:190 +#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:186 #, php-format msgid "Create table on database %s" msgstr "\"%s\" ma`lumotlar bazasida yangi jadval tuzish" -#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:577 +#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:573 msgid "Number of fields" msgstr "Maydonlar soni " -#: libraries/display_export.lib.php:42 libraries/messages.inc.php:124 +#: libraries/display_export.lib.php:42 libraries/messages.inc.php:120 msgid "Could not load export plugins, please check your installation!" msgstr "" "Eksport modullari mavjud emas! O‘rnatilgan phpMyAdmin nusxasining libraries/" "export katalogini tekshiring." -#: libraries/display_export.lib.php:107 libraries/messages.inc.php:277 +#: libraries/display_export.lib.php:107 libraries/messages.inc.php:273 #, php-format msgid "Dump %s row(s) starting at record # %s" msgstr "# %s yozuvidan boshlab %s satrni damp qilish." -#: libraries/display_export.lib.php:115 libraries/messages.inc.php:274 +#: libraries/display_export.lib.php:115 libraries/messages.inc.php:270 msgid "Dump all rows" msgstr "Barcha qatorlarni damp qilish" -#: libraries/display_export.lib.php:125 libraries/messages.inc.php:852 +#: libraries/display_export.lib.php:125 libraries/messages.inc.php:848 #: setup/lib/messages.inc.php:82 msgid "Save as file" msgstr "Fayl kabi saqlash" -#: libraries/display_export.lib.php:134 libraries/messages.inc.php:828 +#: libraries/display_export.lib.php:134 libraries/messages.inc.php:824 #, php-format msgid "Save on server in %s directory" msgstr "Serverdagi \"%s\" katalokka saqlash" -#: libraries/display_export.lib.php:142 libraries/messages.inc.php:594 +#: libraries/display_export.lib.php:142 libraries/messages.inc.php:590 #: setup/lib/messages.inc.php:90 msgid "Overwrite existing file(s)" msgstr "Mavjud fayl(lar) ustidan yozish" -#: libraries/display_export.lib.php:148 libraries/messages.inc.php:330 +#: libraries/display_export.lib.php:148 libraries/messages.inc.php:326 msgid "File name template" msgstr "Fayl nomi shabloni" -#: libraries/display_export.lib.php:152 libraries/messages.inc.php:327 +#: libraries/display_export.lib.php:152 libraries/messages.inc.php:323 msgid "server name" msgstr "server nomi" -#: libraries/display_export.lib.php:155 libraries/messages.inc.php:326 +#: libraries/display_export.lib.php:155 libraries/messages.inc.php:322 msgid "database name" msgstr "ma`lumotlar bazasi nomi" -#: libraries/display_export.lib.php:158 libraries/messages.inc.php:328 +#: libraries/display_export.lib.php:158 libraries/messages.inc.php:324 msgid "table name" msgstr "jadval nomi" -#: libraries/display_export.lib.php:162 libraries/messages.inc.php:329 +#: libraries/display_export.lib.php:162 libraries/messages.inc.php:325 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2209,24 +2219,24 @@ msgstr "" "hozirgi vaqt va sanani qo‘yish mumkin. Qo‘shimcha ravishda quyidagilar " "ishlatilishi mumkin: %3$s. Matnning boshqa qismlari o‘zgarishsiz qoladi." -#: libraries/display_export.lib.php:202 libraries/messages.inc.php:331 +#: libraries/display_export.lib.php:202 libraries/messages.inc.php:327 msgid "remember template" msgstr " shablonni yodda tutish" #: libraries/display_export.lib.php:210 libraries/display_import.lib.php:178 -#: libraries/display_import.lib.php:191 libraries/messages.inc.php:145 +#: libraries/display_import.lib.php:191 libraries/messages.inc.php:141 #: libraries/sql_query_form.lib.php:549 msgid "Character set of the file:" msgstr "Fayl kodirovkasi: " -#: libraries/display_export.lib.php:235 libraries/messages.inc.php:166 +#: libraries/display_export.lib.php:235 libraries/messages.inc.php:162 #: setup/lib/messages.inc.php:84 msgid "Compression" 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/messages.inc.php:558 +#: libraries/export/sql.php:868 libraries/messages.inc.php:554 #: libraries/tbl_properties.inc.php:575 server_privileges.php:1836 #: server_processlist.php:75 msgid "None" @@ -2250,11 +2260,11 @@ msgstr "gzip" msgid "bzipped" msgstr "bzip yordamida siqilgan" -#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1018 +#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1014 msgid "SQL compatibility mode" msgstr "SQL bilan moslik rejimi" -#: libraries/display_import.lib.php:67 libraries/messages.inc.php:398 +#: libraries/display_import.lib.php:67 libraries/messages.inc.php:394 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " @@ -2264,11 +2274,11 @@ msgstr "" "asoslangan brauzеrlarning (Safari, Google Chrome, Arora va hkz) ma’lum " "kamchiligi." -#: libraries/display_import.lib.php:77 libraries/messages.inc.php:406 +#: libraries/display_import.lib.php:77 libraries/messages.inc.php:402 msgid "The file is being processed, please be patient." msgstr "Fayl qayta ishlanmoqda, iltimos, sabr qiling." -#: libraries/display_import.lib.php:99 libraries/messages.inc.php:408 +#: libraries/display_import.lib.php:99 libraries/messages.inc.php:404 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." @@ -2276,40 +2286,40 @@ msgstr "" "Sabr qiling, fayl yuklanmoqda. Ushbu yuklanish haqida batafsil ma’lumot " "mavjud emas." -#: libraries/display_import.lib.php:126 libraries/messages.inc.php:333 +#: libraries/display_import.lib.php:126 libraries/messages.inc.php:329 msgid "File to import" msgstr "Import qilinayotgan fayl " -#: libraries/display_import.lib.php:137 libraries/messages.inc.php:486 +#: libraries/display_import.lib.php:137 libraries/messages.inc.php:482 #: libraries/sql_query_form.lib.php:524 msgid "Location of the text file" msgstr "Faylni tanlash" -#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1203 +#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1199 msgid "File uploads are not allowed on this server." msgstr "Fayllarni serverga yuklab bo‘lmadi." -#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1235 +#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1231 #: libraries/sql_query_form.lib.php:533 tbl_change.php:1028 msgid "The directory you set for upload work cannot be reached" msgstr "Ko‘rsatilgan katalokka yuklab bo‘lmadi" -#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1236 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1232 #: libraries/sql_query_form.lib.php:536 tbl_change.php:1031 msgid "web server upload directory" msgstr "Yuklash katalogidan" -#: libraries/display_import.lib.php:212 libraries/messages.inc.php:167 +#: libraries/display_import.lib.php:212 libraries/messages.inc.php:163 #, php-format msgid "Imported file compression will be automatically detected from: %s" msgstr "" "Import qilingan fayl siqish turini avtomatik aniqlash, variantlar: \"%s\"" -#: libraries/display_import.lib.php:219 libraries/messages.inc.php:600 +#: libraries/display_import.lib.php:219 libraries/messages.inc.php:596 msgid "Partial import" msgstr "Qisman import" -#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1105 +#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1101 #, php-format msgid "" "Previous import timed out, after resubmitting will continue from position %d." @@ -2317,7 +2327,7 @@ msgstr "" "Chegaralangan vaqt yaqinlashganligi sababli, import jarayoni uzildi. Qayta " "ishga tushirilganda, import jarayoni %d pozitsiyadandavom etadi." -#: libraries/display_import.lib.php:232 libraries/messages.inc.php:51 +#: libraries/display_import.lib.php:232 libraries/messages.inc.php:47 msgid "" "Allow the interruption of an import in case the script detects it is close " "to the PHP timeout limit. This might be good way to import large files, " @@ -2327,181 +2337,181 @@ msgstr "" "berish. Katta hajmdagi fayllarni import qilishda qo‘l kelishi mumkin, ammo " "bunda tranzaksiya uzilishi mumkin." -#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1004 +#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1000 #: setup/lib/messages.inc.php:161 msgid "Number of records (queries) to skip from start" msgstr "" "Fayl boshidagi e`tibor berish kerak bo‘lmagan qatorlar (so‘rovlar) soni" -#: libraries/display_import.lib.php:255 libraries/messages.inc.php:396 +#: libraries/display_import.lib.php:255 libraries/messages.inc.php:392 #: setup/lib/messages.inc.php:160 msgid "Format of imported file" msgstr "Import qilinayotgan fayl formati" #: libraries/display_select_lang.lib.php:45 -#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:465 +#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:461 #: setup/frames/index.inc.php:70 msgid "Language" msgstr "Til" -#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:447 +#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:443 #, php-format msgid "%d is not valid row number." msgstr " %d soni to‘g‘ri qator raqami emas!" -#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:814 +#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:810 msgid "row(s) starting from record #" msgstr "ta qator quyidagi qatordan boshlab " -#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:817 +#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:813 msgid "horizontal" msgstr "gorizontal" -#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:816 +#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:812 msgid "horizontal (rotated headers)" msgstr "gorizontal (aylantirilgan sarlavhalar)" -#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:819 +#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:815 msgid "vertical" msgstr "vertikal" -#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:818 +#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:814 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "" "\"%s\" rejimida va sarlavhalarni har \"%s\" katakchadan keyin takrorlash" -#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:495 +#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:491 msgid "This operation could take a long time. Proceed anyway?" msgstr "" "Ushbu operatsiyani bajarish uzoq vaqt talab qilishi mumkin. Davom etsinmi? " -#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1012 +#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1008 msgid "Sort by key" msgstr "Indeks bo‘yicha sortirovka qilish" #: libraries/display_tbl.lib.php:555 libraries/import.lib.php:1082 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:591 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:587 #: tbl_select.php:267 tbl_structure.php:754 msgid "Options" msgstr "Parametrlar" #: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:570 -#: libraries/messages.inc.php:601 +#: libraries/messages.inc.php:597 msgid "Partial Texts" msgstr "Ma`lumotlarni qisqartirib ko‘rsatish" #: libraries/display_tbl.lib.php:561 libraries/display_tbl.lib.php:574 -#: libraries/messages.inc.php:346 +#: libraries/messages.inc.php:342 msgid "Full Texts" msgstr "Ma`lumotlarni kengaytirilgan holda ko‘rsatish" -#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:739 +#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:735 msgid "Relational key" msgstr "Aloqador kalit" -#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:738 +#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:734 msgid "Relational display field" msgstr "Aloqador maydon qiymati" -#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:872 +#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:868 msgid "Show binary contents" msgstr "Ikkilik ma`lumotlarni ko‘rsatish" -#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:873 +#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:869 msgid "Show BLOB contents" msgstr "BLOB turidagi ma`lumotlarni ko‘rsatish" -#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:871 +#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:867 msgid "Show binary contents as HEX" msgstr "Ikkilik ma’lumotlarni o‘n oltilik shaklda ko‘rsatish" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:375 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:371 #: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320 msgid "Hide" msgstr "Yashirish" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:508 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:504 #: libraries/tbl_properties.inc.php:144 transformation_overview.php:47 msgid "Browser transformation" msgstr "O‘girish" #: libraries/display_tbl.lib.php:1126 libraries/display_tbl.lib.php:1130 -#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:308 +#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:304 msgid "Execute bookmarked query" msgstr "Belgilangan so‘rovni bajarish" #: libraries/display_tbl.lib.php:1145 libraries/display_tbl.lib.php:1157 -#: libraries/messages.inc.php:244 +#: libraries/messages.inc.php:240 msgid "The row has been deleted" msgstr "Yozuv o‘chirildi" #: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056 -#: libraries/messages.inc.php:460 server_processlist.php:71 +#: libraries/messages.inc.php:456 server_processlist.php:71 #: tbl_row_action.php:64 msgid "Kill" msgstr "Tugatish" -#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:849 +#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:845 msgid "in query" msgstr "so‘rov bo‘yicha" -#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:881 +#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:877 msgid "Showing rows" msgstr "Yozuvlarni ko‘rsatish" -#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1113 +#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1109 msgid "total" msgstr "jami" -#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:727 +#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:723 #: sql.php:524 #, php-format msgid "Query took %01.4f sec" msgstr "So‘rov %01.4f sekund vaqt oldi" -#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:135 +#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:131 #: 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:471 msgid "Change" msgstr "O‘zgartirish" -#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:724 +#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:720 msgid "Query results operations" msgstr "So‘rov natijalarini ishlatish" -#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:671 +#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:667 msgid "Print view (with full texts)" msgstr "Chop etish versiyasi (to‘la)" -#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:482 +#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:478 msgid "Link not found" msgstr "Aloqa topilmadi" -#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1224 +#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1220 #: main.php:228 msgid "Version information" msgstr "Versiya haqida ma`lumot" -#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:423 +#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:419 msgid "Data home directory" msgstr "Ma`lumotlar uchun uy katalog" -#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:424 +#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:420 msgid "The common part of the directory path for all InnoDB data files." msgstr "" "InnoDB ma`lumotlar fayllari saqlanadigan katalog yo‘lining umumiy qismi" -#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:422 +#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:418 msgid "Data files" msgstr "Ma`lumotlar fayli" -#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:418 +#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:414 msgid "Autoextend increment" msgstr "Avtomatik oshirib borish" -#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:419 +#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:415 msgid "" " The increment size for extending the size of an autoextending tablespace " "when it becomes full." @@ -2509,11 +2519,11 @@ msgstr "" "Jadvalda joy tugaganda ma`lumotlar fayli hajmini avtomatik oshirish " "(megabaytlarda) " -#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:420 +#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:416 msgid "Buffer pool size" msgstr "Bufer puli hajmi" -#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:421 +#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:417 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." @@ -2521,87 +2531,87 @@ msgstr "" "Ma`lumotlarni va jadval indekslarini keshlashda InnoDB ishlatadigan xotira " "buferi hajmi" -#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:112 +#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:108 msgid "Buffer Pool" msgstr "Bufer puli" -#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:426 +#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:422 #: server_status.php:306 msgid "InnoDB Status" msgstr "InnoDB ahvoli" -#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:113 +#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:109 msgid "Buffer Pool Usage" msgstr "Ishlatilish" -#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1114 +#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1110 #: server_databases.php:137 server_databases.php:305 server_status.php:414 #: server_status.php:475 server_status.php:496 tbl_printview.php:351 #: tbl_structure.php:697 msgid "Total" msgstr "Jami" -#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:425 +#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:421 msgid "pages" msgstr "sahifalar soni " -#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:343 +#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:339 msgid "Free pages" msgstr "Bo‘sh sahifalar soni " -#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:259 +#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:255 msgid "Dirty pages" msgstr "Kir sahifalar" -#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:230 +#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:226 msgid "Pages containing data" msgstr "Ma`lumotlar mavjud sahifalar" -#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:598 +#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:594 msgid "Pages to be flushed" msgstr "Tozalash kerak bo‘lgan sahifalar soni: " -#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:119 +#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:115 msgid "Busy pages" msgstr "Band sahifalar" -#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:467 +#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:463 msgid "Latched pages" msgstr "Blokirovka qilingan sahifalar soni: " -#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:111 +#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:107 msgid "Buffer Pool Activity" msgstr "Faollik" -#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:731 +#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:727 msgid "Read requests" msgstr "O‘qishga ruxsat so‘rash" -#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1244 +#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1240 msgid "Write requests" msgstr "Yozishga bo‘lgan so‘rovlar soni" -#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:115 +#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:111 msgid "Read misses" msgstr "Buferni o‘qishda qoldirishlar mavjud" -#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:117 +#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:113 msgid "Write waits" msgstr "Buferning tozalanishi kutilmoqda" -#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:114 +#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:110 msgid "Read misses in %" msgstr "Buferni o‘qishda % qoldirishlar mavjud " -#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:116 +#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:112 msgid "Write waits in %" msgstr " % buferning tozalanishi kutilmoqda" -#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:522 +#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:518 msgid "Data pointer size" msgstr "Ma`lumotlar fayli ko‘rsatgichi hajmi" -#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:523 +#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:519 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." @@ -2610,11 +2620,11 @@ msgstr "" "turidagi jadval tuzishda (CREATE TABLE) ishlatiladigan ma`lumotlar fayli " "ko‘rsatgichi hajmi (baytlarda)." -#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:528 +#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:524 msgid "Automatic recovery mode" msgstr "Avtomatik tiklash rejimi" -#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:529 +#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:525 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." @@ -2622,11 +2632,11 @@ msgstr "" "Jadval buzilganda avtomatik tiklash rejimi. Server ishga tushirilganda, --" "myisam-recover parametri orqali belgilanadi." -#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:527 +#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:523 msgid "Maximum size for temporary sort files" msgstr "Vaqtinchalik indeks fayllarining maksimal hajmi" -#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:526 +#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:522 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " @@ -2638,11 +2648,11 @@ msgstr "" "yordamida indeks tuziladi (bunday algoritm sekinroq lekin barqarorroq " "ishlaydi)." -#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:525 +#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:521 msgid "Maximum size for temporary files on index creation" msgstr "Indeksni tuzishda ishlatiladigan vaqtinchalik fayl hajmi" -#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:524 +#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:520 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " @@ -2652,11 +2662,11 @@ msgstr "" "vaqtinchalik fayl hajmi bu yerda ko‘rsatilgan hajmdan katta bo‘lsa, indeksni " "keshlashning sekinroq lekin barqarorroq usuliga afzallik beriladi." -#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:531 +#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:527 msgid "Repair threads" msgstr "Oqimli tiklash" -#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:530 +#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:526 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." @@ -2664,11 +2674,11 @@ msgstr "" "Agar qiymat birdan katta bo‘lsa, MyISAM turidagi jadval indekslari tiklash " "vaqtida parallel ravishda sortirovka (Repair by sorting) yordamida tuzilgan." -#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:533 +#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:529 msgid "Sort buffer size" msgstr "Sortirovka buferi hajmi" -#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:532 +#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:528 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." @@ -2677,11 +2687,11 @@ msgstr "" "INDEX yoki ALTER TABLE buyruqlari yordamida indeks tuzish uchun kerak " "bo‘lgan bufer hajmi." -#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:620 +#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:616 msgid "Index cache size" msgstr "Indeks keshi hajmi" -#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:619 +#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:615 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." @@ -2689,11 +2699,11 @@ msgstr "" "Indekslar keshiga ajratilgan xotira hajmi. Asl qiymati – 32 Mb. Bunda " "ajratilgan xotira faqatgina indeks sahifalarni keshlashda foydalaniladi." -#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:630 +#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:626 msgid "Record cache size" msgstr "Yozish keshi hajmi" -#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:629 +#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:625 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " @@ -2703,11 +2713,11 @@ msgstr "" "32 Mb. Ushbu xotira ma`lumotlarni saqlash fayllari(.xtd)dagi va qator " "ko‘rsatgichlari(.xtr)dagi o‘zgarishlarni keshlashda ishlatiladi. " -#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:624 +#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:620 msgid "Log cache size" msgstr "Jurnal keshi hajmi" -#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:623 +#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:619 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." @@ -2715,11 +2725,11 @@ msgstr "" "Tranzaksiyalar jurnali ma`lumotlarini keshlash uchun ajratilgan xotira " "hajmi. Asl qiymati – 16 Mb." -#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:628 +#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:624 msgid "Log file threshold" msgstr "Jurnal fayli ostonasi" -#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:627 +#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:623 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." @@ -2727,11 +2737,11 @@ msgstr "" "Tranzaksiyalar jurnalining qaytishgacha va yangi jurnal tuzishgacha hajmi. " "Asl qiymati – 26 Mb." -#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:634 +#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:630 msgid "Transaction buffer size" msgstr "Tranzaksiyalar buferi hajmi" -#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:633 +#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:629 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." @@ -2739,11 +2749,11 @@ msgstr "" "Tranzaksiya jurnallari uchun global bufer hajmi (dastur shu hajmdagi 2 ta " "bufer ajratadi). Asl qiymati – 1 Mb." -#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:611 +#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:607 msgid "Checkpoint frequency" msgstr "Tekshiruv chastotasi" -#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:612 +#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:608 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." @@ -2751,11 +2761,11 @@ msgstr "" "Tekshiruv amalga oshirilganga qadar tranzaksiyalar jurnalida yozilgan " "ma`lumotlar hajmi. Asl qiymati – 24 Mb." -#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:615 +#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:611 msgid "Data log threshold" msgstr "Ma`lumotlar jurnali ostonasi" -#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:616 +#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:612 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -2768,11 +2778,11 @@ msgstr "" "ma`lumotlarning umumiy hajmini oshirish uchun ushbu o‘zgaruvchining " "qiymatini oshirish mumkin." -#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:618 +#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:614 msgid "Garbage threshold" msgstr "Axlatlanish ostonasi" -#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:617 +#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:613 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." @@ -2780,11 +2790,11 @@ msgstr "" "Ixchamlashtirishdan oldin ma`lumotlar jurnali fayli axlatlanishining foiz " "nisbati. Qiymat 1 va 99 orasidabo‘lishi shart. Asl qiymati – 50." -#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:622 +#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:618 msgid "Log buffer size" msgstr "Jurnal buferi hajmi" -#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:621 +#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:617 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " @@ -2794,27 +2804,27 @@ msgstr "" "Mb. Agar oqim jurnal ma`lumotlarini yozish uchun kerak bo‘lsagina, dastur " "har bir oqimga bitta bufer ajratadi." -#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:613 +#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:609 msgid "Data file grow size" msgstr "Ma`lumotlar fayllarining oshish hajmi" -#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:614 +#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:610 msgid "The grow size of the handle data (.xtd) files." msgstr "Ma`lumotlarni saqlash fayllari(.xtd)ning oshish hajmi." -#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:632 +#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:628 msgid "Row file grow size" msgstr "Qator fayllarining oshish hajmi" -#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:631 +#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:627 msgid "The grow size of the row pointer (.xtr) files." msgstr "Qator ko‘rsatgichlari fayllari(.xtr)ning oshish hajmi." -#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:626 +#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:622 msgid "Log file count" msgstr "Jurnal fayllari soni" -#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:625 +#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:621 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -2828,19 +2838,19 @@ msgstr "" #: libraries/export/htmlword.php:132 libraries/export/odt.php:168 #: libraries/export/sql.php:881 libraries/export/texytext.php:130 -#: libraries/messages.inc.php:275 +#: libraries/messages.inc.php:271 msgid "Dumping data for table" msgstr "Jadval ma`lumotlarini damp qilish" #: libraries/export/htmlword.php:185 libraries/export/odt.php:238 #: libraries/export/sql.php:785 libraries/export/texytext.php:177 -#: libraries/messages.inc.php:1086 +#: libraries/messages.inc.php:1082 msgid "Table structure for table" msgstr "Jadval tuzilishi" #: libraries/export/latex.php:125 libraries/export/sql.php:232 #: libraries/export/xml.php:102 libraries/header_printview.inc.php:57 -#: libraries/messages.inc.php:381 libraries/replication_gui.lib.php:63 +#: libraries/messages.inc.php:377 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:170 libraries/replication_gui.lib.php:265 #: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325 #: server_privileges.php:692 server_privileges.php:695 @@ -2852,188 +2862,188 @@ msgstr "Xost" #: libraries/export/latex.php:130 libraries/export/sql.php:233 #: libraries/export/xml.php:107 libraries/header_printview.inc.php:59 -#: libraries/messages.inc.php:354 +#: libraries/messages.inc.php:350 msgid "Generation Time" msgstr "Tuzilgan sana " #: libraries/export/latex.php:131 libraries/export/sql.php:235 -#: libraries/export/xml.php:108 libraries/messages.inc.php:864 main.php:186 +#: libraries/export/xml.php:108 libraries/messages.inc.php:860 main.php:186 msgid "Server version" msgstr "Server versiyasi" #: libraries/export/latex.php:132 libraries/export/sql.php:236 -#: libraries/export/xml.php:109 libraries/messages.inc.php:651 +#: libraries/export/xml.php:109 libraries/messages.inc.php:647 msgid "PHP Version" msgstr "PHP versiyasm" #: libraries/export/latex.php:201 libraries/export/sql.php:868 -#: libraries/messages.inc.php:226 server_databases.php:127 +#: libraries/messages.inc.php:222 server_databases.php:127 #: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317 #: tbl_structure.php:666 msgid "Data" msgstr "Ma`lumotlar" -#: libraries/export/odt.php:318 libraries/messages.inc.php:506 +#: libraries/export/odt.php:318 libraries/messages.inc.php:502 #: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "MIME turi" -#: libraries/export/sql.php:387 libraries/messages.inc.php:711 +#: libraries/export/sql.php:387 libraries/messages.inc.php:707 msgid "Procedures" msgstr "Muolajalar" -#: libraries/export/sql.php:401 libraries/messages.inc.php:348 +#: libraries/export/sql.php:401 libraries/messages.inc.php:344 msgid "Functions" msgstr "Funksiyalar" -#: libraries/export/sql.php:618 libraries/messages.inc.php:174 +#: libraries/export/sql.php:618 libraries/messages.inc.php:170 msgid "Constraints for dumped tables" msgstr "Saqlangan jadvallarning tashqi kalitida cheklovlar" -#: libraries/export/sql.php:627 libraries/messages.inc.php:175 +#: libraries/export/sql.php:627 libraries/messages.inc.php:171 msgid "Constraints for table" msgstr "Jadvallarning tashqi kalitida cheklovlar" -#: libraries/export/sql.php:727 libraries/messages.inc.php:512 +#: libraries/export/sql.php:727 libraries/messages.inc.php:508 msgid "MIME TYPES FOR TABLE" msgstr "JADVAL UCHUN MIME TURLARI" -#: libraries/export/sql.php:739 libraries/messages.inc.php:743 +#: libraries/export/sql.php:739 libraries/messages.inc.php:739 msgid "RELATIONS FOR TABLE" msgstr "Jadval aloqalari" -#: libraries/export/sql.php:796 libraries/messages.inc.php:1178 +#: libraries/export/sql.php:796 libraries/messages.inc.php:1174 #: libraries/tbl_triggers.lib.php:19 msgid "Triggers" msgstr "Triggerlar" -#: libraries/export/sql.php:808 libraries/messages.inc.php:1046 +#: libraries/export/sql.php:808 libraries/messages.inc.php:1042 msgid "Structure for view" msgstr "Namoyish etish uchun tuzilma" -#: libraries/export/sql.php:817 libraries/messages.inc.php:1029 +#: libraries/export/sql.php:817 libraries/messages.inc.php:1025 msgid "Stand-in structure for view" msgstr "Namoyish etish uchun tuzilma" #: libraries/footer.inc.php:184 libraries/footer.inc.php:195 -#: libraries/footer.inc.php:198 libraries/messages.inc.php:586 +#: libraries/footer.inc.php:198 libraries/messages.inc.php:582 msgid "Open new phpMyAdmin window" msgstr "phpMyAdmin dasturini yangi oynada ochish" -#: libraries/header.inc.php:115 libraries/messages.inc.php:542 +#: libraries/header.inc.php:115 libraries/messages.inc.php:538 msgid "New table" msgstr "Yangi jadval" #: libraries/header_printview.inc.php:50 libraries/header_printview.inc.php:55 -#: libraries/messages.inc.php:1024 +#: libraries/messages.inc.php:1020 msgid "SQL result" msgstr "SQL so‘rovi natijasi" -#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:350 +#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:346 msgid "Generated by" msgstr "Tuzilgan" #: libraries/header_printview.inc.php:63 libraries/import.lib.php:145 -#: libraries/messages.inc.php:820 navigation.php:652 navigation.php:674 +#: libraries/messages.inc.php:816 navigation.php:652 navigation.php:674 #: server_databases.php:122 tbl_printview.php:394 tbl_structure.php:366 #: tbl_structure.php:778 msgid "Rows" msgstr "Qatorlarsoni" -#: libraries/import.lib.php:150 libraries/messages.inc.php:285 sql.php:520 +#: libraries/import.lib.php:150 libraries/messages.inc.php:281 sql.php:520 #: tbl_change.php:181 tbl_get_field.php:35 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL bo‘sh natija berdi (ya`ni nolta satr)." -#: libraries/import.lib.php:1078 libraries/messages.inc.php:399 +#: libraries/import.lib.php:1078 libraries/messages.inc.php:395 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" "Quyidagi tuzilishlar yo tuzildi yo o‘zgartirildi. Bu yerda siz quyidagi " "amallarni bajarishingiz mumkin:" -#: libraries/import.lib.php:1079 libraries/messages.inc.php:400 +#: libraries/import.lib.php:1079 libraries/messages.inc.php:396 msgid "View a structure`s contents by clicking on its name" msgstr "Tuzilmani ko‘rish uchun uning nomi ustiga sichqoncha tugmasini bosing" -#: libraries/import.lib.php:1080 libraries/messages.inc.php:401 +#: libraries/import.lib.php:1080 libraries/messages.inc.php:397 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "Quyidagi tanlovlarni o‘zgartirish uchun, \"Tanlovlar\" bog‘iga bosing" -#: libraries/import.lib.php:1081 libraries/messages.inc.php:402 +#: libraries/import.lib.php:1081 libraries/messages.inc.php:398 msgid "Edit its structure by following the \"Structure\" link" msgstr "Tuzilmani o‘zgartirish uchun, \"Tuzilma\" bog‘iga kiring" -#: libraries/import.lib.php:1084 libraries/messages.inc.php:362 +#: libraries/import.lib.php:1084 libraries/messages.inc.php:358 msgid "Go to database" msgstr "Ushbu bazaga o‘tish" #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:869 +#: libraries/messages.inc.php:865 msgid "settings" msgstr "tanlovlar" -#: libraries/import.lib.php:1106 libraries/messages.inc.php:363 +#: libraries/import.lib.php:1106 libraries/messages.inc.php:359 msgid "Go to table" msgstr "Ushbu jadvalga o‘tish" -#: libraries/import.lib.php:1109 libraries/messages.inc.php:1047 +#: libraries/import.lib.php:1109 libraries/messages.inc.php:1043 msgid "structure" msgstr "tuzilish" -#: libraries/import.lib.php:1115 libraries/messages.inc.php:364 +#: libraries/import.lib.php:1115 libraries/messages.inc.php:360 msgid "Go to view" msgstr "Ushbu ko‘rinishga o‘tish" #: libraries/import/csv.php:58 libraries/import/csv.php:70 #: libraries/import/csv.php:74 libraries/import/csv.php:78 -#: libraries/messages.inc.php:442 +#: libraries/messages.inc.php:438 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "CSV importidagi paramert noto‘g‘ri: \"%s\"" -#: libraries/import/csv.php:59 libraries/messages.inc.php:323 +#: libraries/import/csv.php:59 libraries/messages.inc.php:319 msgid "Fields terminated by" msgstr "Maydonlar quyidagi belgi bilan bo‘lingan " -#: libraries/import/csv.php:71 libraries/messages.inc.php:320 +#: libraries/import/csv.php:71 libraries/messages.inc.php:316 msgid "Fields enclosed by" msgstr "Maydon qiymatlari quyidagi belgi ichiga olingan " -#: libraries/import/csv.php:75 libraries/messages.inc.php:321 +#: libraries/import/csv.php:75 libraries/messages.inc.php:317 msgid "Fields escaped by" msgstr "Belgi oldida quyidagi belgi mavjud " -#: libraries/import/csv.php:79 libraries/messages.inc.php:481 +#: libraries/import/csv.php:79 libraries/messages.inc.php:477 msgid "Lines terminated by" msgstr "Qatorlar bo‘luvchisi" -#: libraries/import/csv.php:119 libraries/messages.inc.php:439 +#: libraries/import/csv.php:119 libraries/messages.inc.php:435 #, php-format msgid "Invalid column (%s) specified!" msgstr "Noto‘g‘ri ustun (\"%s\") tanlangan!" #: libraries/import/csv.php:177 libraries/import/csv.php:424 -#: libraries/messages.inc.php:441 +#: libraries/messages.inc.php:437 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "" "Kiritilayotgan CSV ma`lumotlarning %d qatoridagi ma`lumotlar formati " "noto‘g‘ri." -#: libraries/import/csv.php:312 libraries/messages.inc.php:440 +#: libraries/import/csv.php:312 libraries/messages.inc.php:436 #, php-format msgid "Invalid field count in CSV input on line %d." msgstr "" "Kiritilayotgan CSV ma`lumotlarning %d qatoridagi maydonlar soni noto‘g‘ri." -#: libraries/import/ldi.php:55 libraries/messages.inc.php:446 +#: libraries/import/ldi.php:55 libraries/messages.inc.php:442 msgid "This plugin does not support compressed imports!" msgstr "Ushbu modul qisilgan ma`lumotlarni import qila olmaydi!" #: libraries/import/xml.php:74 libraries/import/xml.php:130 -#: libraries/messages.inc.php:1247 +#: libraries/messages.inc.php:1243 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -3066,327 +3076,317 @@ msgstr "" msgid "ltr" msgstr "ltr" -#. l10n: Thousands separator -#: libraries/messages.inc.php:21 -msgid "," -msgstr " " - -#. l10n: Decimal separator -#: libraries/messages.inc.php:23 -msgid "." -msgstr "," - -#: libraries/messages.inc.php:25 server_status.php:461 +#: libraries/messages.inc.php:21 server_status.php:461 msgid "Aborted" msgstr "Uzildi" -#: libraries/messages.inc.php:28 main.php:68 +#: libraries/messages.inc.php:24 main.php:68 msgid "Actions" msgstr "Amallar" -#: libraries/messages.inc.php:34 libraries/tbl_properties.inc.php:780 +#: libraries/messages.inc.php:30 libraries/tbl_properties.inc.php:780 #: tbl_structure.php:543 #, php-format msgid "Add %s field(s)" msgstr "\"%s\" maydon qo‘shish" -#: libraries/messages.inc.php:35 +#: libraries/messages.inc.php:31 msgid "Add custom comment into header (\\n splits lines)" msgstr "" "Sarlavhaga o‘z izohingizni qo‘shish (\\n belgisi satrdan satrga o‘tkazadi)" -#: libraries/messages.inc.php:36 +#: libraries/messages.inc.php:32 msgid "Add into comments" msgstr "Izohlarga qo‘shish" -#: libraries/messages.inc.php:37 tbl_structure.php:541 +#: libraries/messages.inc.php:33 tbl_structure.php:541 msgid "Add new field" msgstr "Yangi maydon qo‘shish" -#: libraries/messages.inc.php:38 server_privileges.php:1886 +#: libraries/messages.inc.php:34 server_privileges.php:1886 msgid "Add privileges on the following database" msgstr "Quyidagi ma`lumotlar omboriga privilegiya qo‘shish" -#: libraries/messages.inc.php:39 server_privileges.php:1907 +#: libraries/messages.inc.php:35 server_privileges.php:1907 msgid "Add privileges on the following table" msgstr "Quyidagi jadvalga privilegiya qo‘shish" -#: libraries/messages.inc.php:40 tbl_select.php:288 +#: libraries/messages.inc.php:36 tbl_select.php:288 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Qidirish shartini ko‘shish (ya`ni \"where\" jumlasi):" -#: libraries/messages.inc.php:41 tbl_indexes.php:251 +#: libraries/messages.inc.php:37 tbl_indexes.php:251 #, php-format msgid "Add to index  %s column(s)" msgstr " \"%s\" maydon(lar)ini indeksga qo‘shish" -#: libraries/messages.inc.php:42 server_privileges.php:1570 +#: libraries/messages.inc.php:38 server_privileges.php:1570 #: server_privileges.php:1594 server_privileges.php:1988 #: server_privileges.php:2177 msgid "Add a new User" msgstr "Yangi foydalanuvchi qo‘shish" -#: libraries/messages.inc.php:43 server_privileges.php:931 +#: libraries/messages.inc.php:39 server_privileges.php:931 msgid "You have added a new user." msgstr "Siz yangi foydalanuvchi qo‘shdingiz." -#: libraries/messages.inc.php:44 server_privileges.php:571 +#: libraries/messages.inc.php:40 server_privileges.php:571 msgid "Administration" msgstr "Administratsiya" -#: libraries/messages.inc.php:45 tbl_structure.php:557 +#: libraries/messages.inc.php:41 tbl_structure.php:557 #, php-format msgid "After %s" msgstr " \"%s\" dan keyin" -#: libraries/messages.inc.php:46 tbl_change.php:1147 +#: libraries/messages.inc.php:42 tbl_change.php:1147 msgid "Go back to previous page" msgstr "Oldingi sahifaga o‘tish" -#: libraries/messages.inc.php:47 tbl_change.php:1148 +#: libraries/messages.inc.php:43 tbl_change.php:1148 msgid "Insert another new row" msgstr "Yangi yozuv kiritish" -#: libraries/messages.inc.php:48 tbl_change.php:1160 +#: libraries/messages.inc.php:44 tbl_change.php:1160 msgid "Edit next row" msgstr "Keyingi qatorni tahrirlash" -#: libraries/messages.inc.php:49 tbl_change.php:1152 +#: libraries/messages.inc.php:45 tbl_change.php:1152 msgid "Go back to this page" msgstr "Ushbu sahifaga qaytish" -#: libraries/messages.inc.php:50 querywindow.php:115 +#: libraries/messages.inc.php:46 querywindow.php:115 msgid "All" msgstr "Barcha" -#: libraries/messages.inc.php:53 tbl_operations.php:249 +#: libraries/messages.inc.php:49 tbl_operations.php:249 msgid "Alter table order by" msgstr "Jadval sortirovkasini o‘zgartirish" -#: libraries/messages.inc.php:54 tbl_operations.php:660 +#: libraries/messages.inc.php:50 tbl_operations.php:660 msgid "Analyze" msgstr "Tahlil" -#: libraries/messages.inc.php:57 +#: libraries/messages.inc.php:53 msgid "and" msgstr "va" -#: libraries/messages.inc.php:59 pmd_general.php:87 +#: libraries/messages.inc.php:55 pmd_general.php:87 msgid "Angular links" msgstr "Burchakli bog‘lanishlar" -#: libraries/messages.inc.php:60 tbl_structure.php:401 tbl_structure.php:415 +#: libraries/messages.inc.php:56 tbl_structure.php:401 tbl_structure.php:415 #: tbl_structure.php:429 #, php-format msgid "An index has been added on %s" msgstr " \"%s\" uchun indeks qo‘shildi" -#: libraries/messages.inc.php:61 server_privileges.php:1521 +#: libraries/messages.inc.php:57 server_privileges.php:1521 #: server_privileges.php:2123 msgid "Any" msgstr "Har qaysi" -#: libraries/messages.inc.php:62 libraries/replication_gui.lib.php:298 +#: libraries/messages.inc.php:58 libraries/replication_gui.lib.php:298 #: server_privileges.php:725 msgid "Any host" msgstr "Har qaysi xost" -#: libraries/messages.inc.php:63 libraries/replication_gui.lib.php:250 +#: libraries/messages.inc.php:59 libraries/replication_gui.lib.php:250 #: server_privileges.php:677 msgid "Any user" msgstr "Har qaysi foydalanuvchi" -#: libraries/messages.inc.php:64 server_synchronize.php:449 +#: libraries/messages.inc.php:60 server_synchronize.php:449 #: server_synchronize.php:894 msgid "Apply Selected Changes" msgstr "Kiritilgan o‘zgarishlarni saqlash" -#: libraries/messages.inc.php:66 tbl_structure.php:386 +#: libraries/messages.inc.php:62 tbl_structure.php:386 #, php-format msgid "A primary key has been added on %s" msgstr " \"%s\" ga birlamchi kalit qo‘shildi" -#: libraries/messages.inc.php:67 libraries/mysql_charsets.lib.php:368 +#: libraries/messages.inc.php:63 libraries/mysql_charsets.lib.php:368 msgid "Arabic" msgstr "Arabcha" -#: libraries/messages.inc.php:68 libraries/mysql_charsets.lib.php:359 +#: libraries/messages.inc.php:64 libraries/mysql_charsets.lib.php:359 msgid "Armenian" msgstr "Armancha" -#: libraries/messages.inc.php:70 libraries/tbl_properties.inc.php:394 +#: libraries/messages.inc.php:66 libraries/tbl_properties.inc.php:394 msgid "As defined:" msgstr "Qoidaga ko‘ra:" -#: libraries/messages.inc.php:71 tbl_structure.php:556 +#: libraries/messages.inc.php:67 tbl_structure.php:556 msgid "At Beginning of Table" msgstr "Jadval boshiga" -#: libraries/messages.inc.php:72 tbl_structure.php:555 +#: libraries/messages.inc.php:68 tbl_structure.php:555 msgid "At End of Table" msgstr "Jadval oxiriga" -#: libraries/messages.inc.php:73 libraries/tbl_properties.inc.php:108 +#: libraries/messages.inc.php:69 libraries/tbl_properties.inc.php:108 #: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:144 #: tbl_structure.php:180 msgid "Attributes" msgstr "Atributlar" -#: libraries/messages.inc.php:74 pdf_pages.php:303 pdf_pages.php:306 +#: libraries/messages.inc.php:70 pdf_pages.php:303 pdf_pages.php:306 msgid "Automatic layout" msgstr "Avtomatik raskladka" -#: libraries/messages.inc.php:77 libraries/mysql_charsets.lib.php:354 +#: libraries/messages.inc.php:73 libraries/mysql_charsets.lib.php:354 msgid "Baltic" msgstr "Baltikacha" -#: libraries/messages.inc.php:78 libraries/sqlparser.lib.php:175 +#: libraries/messages.inc.php:74 libraries/sqlparser.lib.php:175 msgid "BEGIN CUT" msgstr "BEGIN CUT" -#: libraries/messages.inc.php:79 libraries/sqlparser.lib.php:179 +#: libraries/messages.inc.php:75 libraries/sqlparser.lib.php:179 msgid "BEGIN RAW" msgstr "BEGIN RAW" -#: libraries/messages.inc.php:80 libraries/mysql_charsets.lib.php:201 +#: libraries/messages.inc.php:76 libraries/mysql_charsets.lib.php:201 #: libraries/mysql_charsets.lib.php:402 tbl_change.php:518 msgid "Binary" msgstr "Ikkilik" -#: libraries/messages.inc.php:81 tbl_change.php:894 +#: libraries/messages.inc.php:77 tbl_change.php:894 msgid "Binary - do not edit" msgstr "Ikkilik ma`lumot - tahrirlash mumkin emas" -#: libraries/messages.inc.php:82 libraries/server_links.inc.php:76 +#: libraries/messages.inc.php:78 libraries/server_links.inc.php:76 #: server_binlog.php:110 server_status.php:253 test/theme.php:121 msgid "Binary log" msgstr "Ikkilik jurnal" -#: libraries/messages.inc.php:83 server_binlog.php:217 +#: libraries/messages.inc.php:79 server_binlog.php:217 msgid "Event type" msgstr "Hodisa turi" -#: libraries/messages.inc.php:84 server_binlog.php:220 +#: libraries/messages.inc.php:80 server_binlog.php:220 msgid "Information" msgstr "Ma`lumot" -#: libraries/messages.inc.php:85 server_binlog.php:215 +#: libraries/messages.inc.php:81 server_binlog.php:215 msgid "Log name" msgstr "Jurnal fayli" -#: libraries/messages.inc.php:86 server_binlog.php:219 +#: libraries/messages.inc.php:82 server_binlog.php:219 msgid "Original position" msgstr "Asl pozitsiya" -#: libraries/messages.inc.php:87 server_binlog.php:216 +#: libraries/messages.inc.php:83 server_binlog.php:216 msgid "Position" msgstr "Pozitsiya" -#: libraries/messages.inc.php:88 libraries/replication_gui.lib.php:169 +#: libraries/messages.inc.php:84 libraries/replication_gui.lib.php:169 #: server_binlog.php:218 msgid "Server ID" msgstr "Server ID si" -#: libraries/messages.inc.php:92 +#: libraries/messages.inc.php:88 #, fuzzy msgctxt "$strBLOBRepositoryDisabled" msgid "Disabled" msgstr "Faolsizlashtirilgan" -#: libraries/messages.inc.php:95 +#: libraries/messages.inc.php:91 #, fuzzy msgctxt "$strBLOBRepositoryEnabled" msgid "Enabled" msgstr "Faollashtirilgan" -#: libraries/messages.inc.php:97 tbl_change.php:888 +#: libraries/messages.inc.php:93 tbl_change.php:888 msgid "Remove BLOB Repository Reference" msgstr "BLOB ombori murojaatlarini o‘chirish" -#: libraries/messages.inc.php:98 +#: libraries/messages.inc.php:94 #, fuzzy msgctxt "$strBLOBRepositoryRepair" msgid "Repair" msgstr "Sozlash" -#: libraries/messages.inc.php:99 tbl_change.php:987 +#: libraries/messages.inc.php:95 tbl_change.php:987 msgid "Upload to BLOB repository" msgstr "BLOB omboriga yuklash" -#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:359 +#: libraries/messages.inc.php:96 libraries/sql_query_form.lib.php:359 #: sql.php:677 msgid "Let every user access this bookmark" msgstr "Barcha foydalanuvchilarga ruxsat berish" -#: libraries/messages.inc.php:103 sql.php:671 +#: libraries/messages.inc.php:99 sql.php:671 msgid "Label" msgstr "Xatcho‘p belgisi" -#: libraries/messages.inc.php:104 libraries/sql_query_form.lib.php:433 +#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:433 msgid "Bookmarked SQL query" msgstr "Xatcho‘p qo‘yilgan SQL so‘rovi" -#: libraries/messages.inc.php:105 libraries/sql_query_form.lib.php:365 +#: libraries/messages.inc.php:101 libraries/sql_query_form.lib.php:365 msgid "Replace existing bookmark of same name" msgstr "Shu nomli xatcho‘pni almashtirish" -#: libraries/messages.inc.php:106 libraries/sql_query_form.lib.php:352 +#: libraries/messages.inc.php:102 libraries/sql_query_form.lib.php:352 #: sql.php:665 sql.php:666 sql.php:683 msgid "Bookmark this SQL query" msgstr "Ushbu SQL so‘roviga xatcho‘p tuzish" -#: libraries/messages.inc.php:107 libraries/sql_query_form.lib.php:466 +#: libraries/messages.inc.php:103 libraries/sql_query_form.lib.php:466 msgid "View only" msgstr "Faqat ko‘rish" -#: libraries/messages.inc.php:109 tbl_structure.php:161 +#: libraries/messages.inc.php:105 tbl_structure.php:161 msgid "Browse distinct values" msgstr "Turli qiymatlarni ko‘rib chiqish" -#: libraries/messages.inc.php:110 tbl_change.php:252 tbl_select.php:27 +#: libraries/messages.inc.php:106 tbl_change.php:252 tbl_select.php:27 #: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34 msgid "Browse foreign values" msgstr "Tashqi qiymatlarni ko‘rib chiqish" -#: libraries/messages.inc.php:118 libraries/mysql_charsets.lib.php:213 +#: libraries/messages.inc.php:114 libraries/mysql_charsets.lib.php:213 msgid "Bulgarian" msgstr "Bolgarcha" -#: libraries/messages.inc.php:120 +#: libraries/messages.inc.php:116 msgid "\"bzipped\"" msgstr "bzip yordamida siqilgan" -#: libraries/messages.inc.php:122 +#: libraries/messages.inc.php:118 msgid "Calendar" msgstr "Taqvim" -#: libraries/messages.inc.php:129 tbl_indexes.php:75 +#: libraries/messages.inc.php:125 tbl_indexes.php:75 msgid "Can't rename index to PRIMARY!" msgstr "Indeksni \"PRIMARY\"ga qayta nomlab bo‘lmadi!" -#: libraries/messages.inc.php:132 libraries/mysql_charsets.lib.php:223 +#: libraries/messages.inc.php:128 libraries/mysql_charsets.lib.php:223 #: libraries/mysql_charsets.lib.php:409 msgid "case-insensitive" msgstr "harflar katta-kichikligi farqlanmaydi" -#: libraries/messages.inc.php:133 libraries/mysql_charsets.lib.php:226 +#: libraries/messages.inc.php:129 libraries/mysql_charsets.lib.php:226 #: libraries/mysql_charsets.lib.php:411 msgid "case-sensitive" msgstr "harflar katta-kichikligi farqlanadi" -#: libraries/messages.inc.php:134 libraries/mysql_charsets.lib.php:332 +#: libraries/messages.inc.php:130 libraries/mysql_charsets.lib.php:332 msgid "Central European" msgstr "Markaziy Yevropacha" -#: libraries/messages.inc.php:136 server_privileges.php:1969 +#: libraries/messages.inc.php:132 server_privileges.php:1969 msgid "... keep the old one." msgstr " va eskisini saqlash." -#: libraries/messages.inc.php:137 server_privileges.php:1967 +#: libraries/messages.inc.php:133 server_privileges.php:1967 msgid "Create a new user with the same privileges and ..." msgstr "Xuddi shunday privilegiyali yangi foydalanuvchi kiritish..." -#: libraries/messages.inc.php:138 server_privileges.php:1972 +#: libraries/messages.inc.php:134 server_privileges.php:1972 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." @@ -3394,76 +3394,76 @@ msgstr "" ", foydalanuvchilar jadvalidan eskisini o‘chirib privilegiyalarni qayta " "yuklash." -#: libraries/messages.inc.php:139 server_privileges.php:1970 +#: libraries/messages.inc.php:135 server_privileges.php:1970 msgid " ... delete the old one from the user tables." msgstr " va foydalanuvchilar jadvalidan eskisini o‘chirish." -#: libraries/messages.inc.php:140 server_privileges.php:1971 +#: libraries/messages.inc.php:136 server_privileges.php:1971 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr ", eskisining barcha faol privilegiyalarini bekor qilib o‘chirish." -#: libraries/messages.inc.php:141 server_privileges.php:1964 +#: libraries/messages.inc.php:137 server_privileges.php:1964 msgid "Change Login Information / Copy User" msgstr "Foydalanuvchining loginini o‘zgartirish / Foydalanuvchidan nusxa olish" -#: libraries/messages.inc.php:144 libraries/mysql_charsets.lib.php:107 +#: libraries/messages.inc.php:140 libraries/mysql_charsets.lib.php:107 msgid "Charset" msgstr "Kodirovka" -#: libraries/messages.inc.php:146 server_collations.php:40 +#: libraries/messages.inc.php:142 server_collations.php:40 msgid "Character Sets and Collations" msgstr "Kodirovkalar va taqqoslashlar" -#: libraries/messages.inc.php:147 libraries/server_links.inc.php:57 +#: libraries/messages.inc.php:143 libraries/server_links.inc.php:57 #: test/theme.php:109 msgid "Charsets" msgstr "Kodirovkalar" -#: libraries/messages.inc.php:149 tbl_operations.php:661 +#: libraries/messages.inc.php:145 tbl_operations.php:661 msgid "Check" msgstr "Tekshirish" -#: libraries/messages.inc.php:151 server_databases.php:293 +#: libraries/messages.inc.php:147 server_databases.php:293 #: server_databases.php:294 msgid "Check Privileges" msgstr "Privilegiyalarni tekshirish" -#: libraries/messages.inc.php:152 server_databases.php:289 +#: libraries/messages.inc.php:148 server_databases.php:289 #, php-format msgid "Check privileges for database "%s"." msgstr "\"%s\" ma`lumotlar bazasining privilegiyalarni tekshirish" -#: libraries/messages.inc.php:154 pdf_pages.php:261 +#: libraries/messages.inc.php:150 pdf_pages.php:261 msgid "Please choose a page to edit" msgstr "Tahrirlash lozim bo‘lgan sahifani tanlash" -#: libraries/messages.inc.php:157 +#: libraries/messages.inc.php:153 msgid "Displaying Column Comments" msgstr "Maydon izohlarini ko‘rsatish" -#: libraries/messages.inc.php:159 pdf_pages.php:483 view_create.php:148 +#: libraries/messages.inc.php:155 pdf_pages.php:483 view_create.php:148 msgid "Column names" msgstr "Maydon nomlari" -#: libraries/messages.inc.php:160 server_privileges.php:1685 +#: libraries/messages.inc.php:156 server_privileges.php:1685 msgid "Column-specific privileges" msgstr "Maydon privilegiyalari" -#: libraries/messages.inc.php:164 +#: libraries/messages.inc.php:160 msgid "MySQL 4.0 compatible" msgstr "MySQL 4.0 ga mos" -#: libraries/messages.inc.php:165 +#: libraries/messages.inc.php:161 msgid "Complete inserts" msgstr "To‘la qo‘yish" -#: libraries/messages.inc.php:168 +#: libraries/messages.inc.php:164 #, php-format msgid "Could not load default configuration from: \"%1$s\"" msgstr " \"%1$s\" faylidan andoza konfiguratsiyani yuklab bo‘lmadi." -#: libraries/messages.inc.php:169 main.php:306 +#: libraries/messages.inc.php:165 main.php:306 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " @@ -3473,173 +3473,173 @@ msgstr "" "katalogi haliyam mavjud. phpMyAdmin muvaffaqiyatli o‘rnatilgandan keyin, uni " "o‘chirish tavsiya etiladi." -#: libraries/messages.inc.php:171 pdf_schema.php:672 +#: libraries/messages.inc.php:167 pdf_schema.php:672 #, php-format msgid "Please configure the coordinates for table %s" msgstr " \"%s\" jadvalining koordinatalarini o‘zgartirish" -#: libraries/messages.inc.php:173 server_status.php:433 +#: libraries/messages.inc.php:169 server_status.php:433 msgid "Connections" msgstr "Ulanishlar" -#: libraries/messages.inc.php:179 tbl_operations.php:509 +#: libraries/messages.inc.php:175 tbl_operations.php:509 msgid "Copy table to (database.table):" msgstr "Jadvaldan (ma`lumotlar ombori.jadval) ga nusxa ko‘chirish:" -#: libraries/messages.inc.php:180 tbl_move_copy.php:58 +#: libraries/messages.inc.php:176 tbl_move_copy.php:58 #, php-format msgid "Table %s has been copied to %s." msgstr "\"%s\" jadvalidan \"%s\" ga nusxa ko‘chirildi." -#: libraries/messages.inc.php:181 tbl_move_copy.php:48 +#: libraries/messages.inc.php:177 tbl_move_copy.php:48 msgid "Can't copy table to same one!" msgstr "Jadvalning o‘zidan o‘ziga nusxa ko‘chirish mumkin emas!" -#: libraries/messages.inc.php:182 server_synchronize.php:94 +#: libraries/messages.inc.php:178 server_synchronize.php:94 msgid "Could not connect to the source" msgstr "Manbaga ulanib bo‘lmadi" -#: libraries/messages.inc.php:183 server_synchronize.php:97 +#: libraries/messages.inc.php:179 server_synchronize.php:97 msgid "Could not connect to the target" msgstr "Nishonga ulanib bo‘lmadi" -#: libraries/messages.inc.php:184 server_processlist.php:24 +#: libraries/messages.inc.php:180 server_processlist.php:24 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" "phpMyAdmin \"%s\" oqim ishini tuguta olmadi. Ehtimol, u allaqachon yopiq." -#: libraries/messages.inc.php:187 +#: libraries/messages.inc.php:183 #, php-format msgid "Create an index on %s columns" msgstr "\"%s\" maydon uchun indeks tuzish" -#: libraries/messages.inc.php:188 tbl_indexes.php:160 +#: libraries/messages.inc.php:184 tbl_indexes.php:160 msgid "Create a new index" msgstr "Yangi indeks tuzish" -#: libraries/messages.inc.php:191 pdf_pages.php:297 pmd_pdf.php:114 +#: libraries/messages.inc.php:187 pdf_pages.php:297 pmd_pdf.php:114 msgid "Create a page" msgstr "Yangi sahifa tuzish" -#: libraries/messages.inc.php:192 +#: libraries/messages.inc.php:188 msgid "Creation of PDFs" msgstr "PDF-sxema tuzish" -#: libraries/messages.inc.php:193 pmd_general.php:74 pmd_general.php:306 +#: libraries/messages.inc.php:189 pmd_general.php:74 pmd_general.php:306 msgid "Create relation" msgstr "Bog‘liqlik o‘rnatish" -#: libraries/messages.inc.php:194 pmd_general.php:71 +#: libraries/messages.inc.php:190 pmd_general.php:71 #: server_synchronize.php:429 server_synchronize.php:872 msgid "Create table" msgstr "Jadval tuzish" -#: libraries/messages.inc.php:195 +#: libraries/messages.inc.php:191 msgctxt "$strCreateTableShort" msgid "Create table" msgstr "Jadval tuzish" -#: libraries/messages.inc.php:196 server_privileges.php:1994 +#: libraries/messages.inc.php:192 server_privileges.php:1994 msgid "Database for user" msgstr "Foydalanuvchi uchun ma`lumotlar bazasi" -#: libraries/messages.inc.php:197 server_privileges.php:1999 +#: libraries/messages.inc.php:193 server_privileges.php:1999 msgid "Create database with same name and grant all privileges" msgstr "" "Foydalanuvchi nomi bilan atalgan ma`lumotlar bazasi tuzish va unga to‘liq " "privilegiyalarni berish." -#: libraries/messages.inc.php:198 +#: libraries/messages.inc.php:194 #, fuzzy msgctxt "$strCreateUserDatabaseNone" msgid "None" msgstr "Yo‘q" -#: libraries/messages.inc.php:199 server_privileges.php:2003 +#: libraries/messages.inc.php:195 server_privileges.php:2003 #, php-format msgid "Grant all privileges on database "%s"" msgstr "\"%s\"" ma`lumotlar bazasiga barcha privilegiyalarni berish;" -#: libraries/messages.inc.php:200 server_privileges.php:2000 +#: libraries/messages.inc.php:196 server_privileges.php:2000 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" "(foydalanuvchi\\_%) shabloniga to‘g‘ri keladigan barcha ma`lumotlar " "bazalariga to‘liq privilegiyalarni berish." -#: libraries/messages.inc.php:201 +#: libraries/messages.inc.php:197 msgid "Creation/Update/Check dates" msgstr "Tuzish, yangilash va tekshirish sanalari" -#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:229 +#: libraries/messages.inc.php:199 libraries/mysql_charsets.lib.php:229 msgid "Croatian" msgstr "Xorvatcha" -#: libraries/messages.inc.php:204 +#: libraries/messages.inc.php:200 msgid "CSV" msgstr "CSV" -#: libraries/messages.inc.php:205 libraries/server_synchronize.lib.php:1343 +#: libraries/messages.inc.php:201 libraries/server_synchronize.lib.php:1343 #: libraries/server_synchronize.lib.php:1369 msgid "Current server" msgstr "Joriy sеrvеr" -#: libraries/messages.inc.php:206 main.php:159 +#: libraries/messages.inc.php:202 main.php:159 msgid "Custom color" msgstr "Rangni tanlash" -#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:365 +#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:365 msgid "Cyrillic" msgstr "Kirillcha" -#: libraries/messages.inc.php:208 libraries/mysql_charsets.lib.php:232 +#: libraries/messages.inc.php:204 libraries/mysql_charsets.lib.php:232 msgid "Czech" msgstr "Chexcha" -#: libraries/messages.inc.php:209 libraries/mysql_charsets.lib.php:383 +#: libraries/messages.inc.php:205 libraries/mysql_charsets.lib.php:383 msgid "Czech-Slovak" msgstr "Chexoslovakcha" -#: libraries/messages.inc.php:211 libraries/mysql_charsets.lib.php:235 +#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:235 msgid "Danish" msgstr "Daniyacha" -#: libraries/messages.inc.php:214 +#: libraries/messages.inc.php:210 msgid "Database export options" msgstr "Ma`lumotlar bazasi eksport parametrlari" -#: libraries/messages.inc.php:217 server_synchronize.php:122 +#: libraries/messages.inc.php:213 server_synchronize.php:122 #: server_synchronize.php:125 tbl_create.php:82 tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "'%s' nomli baza mavjud emas." -#: libraries/messages.inc.php:219 server_databases.php:63 +#: libraries/messages.inc.php:215 server_databases.php:63 #, php-format msgid "%s databases have been dropped successfully." msgstr "\"%s\" ma`lumotlar bazasi muvaffaqiyatli o‘chirildi." -#: libraries/messages.inc.php:220 libraries/server_synchronize.lib.php:1341 +#: libraries/messages.inc.php:216 libraries/server_synchronize.lib.php:1341 #: server_synchronize.php:1110 msgid "Source database" msgstr "Manba baza" -#: libraries/messages.inc.php:221 server_databases.php:88 +#: libraries/messages.inc.php:217 server_databases.php:88 msgid "Databases statistics" msgstr "Ma`lumotlar bazasi statiskasi" -#: libraries/messages.inc.php:222 server_databases.php:362 +#: libraries/messages.inc.php:218 server_databases.php:362 #: server_databases.php:363 msgid "Disable Statistics" msgstr "Statiskani o‘chirish" -#: libraries/messages.inc.php:223 server_databases.php:358 +#: libraries/messages.inc.php:219 server_databases.php:358 #: server_databases.php:359 msgid "Enable Statistics" msgstr "Statiskani yoqish" -#: libraries/messages.inc.php:224 server_databases.php:366 +#: libraries/messages.inc.php:220 server_databases.php:366 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -3647,30 +3647,30 @@ msgstr "" "IZOH: Statiskani yoqish veb-server va MySQL serveri o‘rtasida katta " "traffikka sabab bo‘lishi mumkin." -#: libraries/messages.inc.php:225 libraries/server_synchronize.lib.php:1367 +#: libraries/messages.inc.php:221 libraries/server_synchronize.lib.php:1367 #: server_synchronize.php:1112 msgid "Target database" msgstr "Nishon baza" -#: libraries/messages.inc.php:228 server_synchronize.php:425 +#: libraries/messages.inc.php:224 server_synchronize.php:425 #: server_synchronize.php:868 msgid "Data Difference" msgstr "Ma’lumotlar farqi" -#: libraries/messages.inc.php:231 server_synchronize.php:272 +#: libraries/messages.inc.php:227 server_synchronize.php:272 msgid "Data Synchronization" msgstr "Ma’lumotlar sinxronizatsiyasi" -#: libraries/messages.inc.php:235 server_privileges.php:526 +#: libraries/messages.inc.php:231 server_privileges.php:526 #: server_privileges.php:1679 msgid "Database-specific privileges" msgstr "Ma`lumotlar bazasi privilegiyalari" -#: libraries/messages.inc.php:237 server_privileges.php:2136 +#: libraries/messages.inc.php:233 server_privileges.php:2136 msgid "database-specific" msgstr "Ma`lumotlar bazasi darajasida" -#: libraries/messages.inc.php:240 libraries/tbl_properties.inc.php:106 +#: libraries/messages.inc.php:236 libraries/tbl_properties.inc.php:106 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" @@ -3678,32 +3678,32 @@ msgstr "" "\"Andozaviy\" maydonlar qiymatlarida teskari egri chiziq va qo‘shtirnoqlarni " "ishlatmang." -#: libraries/messages.inc.php:241 tbl_operations.php:589 +#: libraries/messages.inc.php:237 tbl_operations.php:589 msgid "Defragment table" msgstr "Jadvalni defragmentatsiyalash" -#: libraries/messages.inc.php:242 +#: libraries/messages.inc.php:238 msgid "Use delayed inserts" msgstr "Kechiktirilgan qo‘yish (DELAYED INSERTS) dan foydalanish" -#: libraries/messages.inc.php:245 server_privileges.php:1243 +#: libraries/messages.inc.php:241 server_privileges.php:1243 msgid "No users selected for deleting!" msgstr "O‘chirish lozim bo‘lgan foydalanuvchilar tanlanmagan!" -#: libraries/messages.inc.php:246 pmd_general.php:372 +#: libraries/messages.inc.php:242 pmd_general.php:372 msgid "Delete relation" msgstr "Bog‘liqlikni o‘chirish" -#: libraries/messages.inc.php:248 server_privileges.php:1232 +#: libraries/messages.inc.php:244 server_privileges.php:1232 #, php-format msgid "Deleting %s" msgstr "\"%s\" o‘chirilmoqda" -#: libraries/messages.inc.php:249 libraries/sql_query_form.lib.php:388 +#: libraries/messages.inc.php:245 libraries/sql_query_form.lib.php:388 msgid "Delimiter" msgstr "Taqsimlovchi" -#: libraries/messages.inc.php:250 pdf_pages.php:506 +#: libraries/messages.inc.php:246 pdf_pages.php:506 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -3711,7 +3711,7 @@ msgstr "" "Ushbu sahifada mavjud bo‘lmagan jadvallar uchun murojaatlar mavjud. Ushbu " "murojaatlarni o‘chirishni xohlaysizmi?" -#: libraries/messages.inc.php:254 pmd_help.php:29 +#: libraries/messages.inc.php:250 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 " @@ -3721,143 +3721,143 @@ msgstr "" "qilish uchun \"Ko‘rsatiladigan maydonni tanlash\" bo‘limidan mos maydonni " "tanlang." -#: libraries/messages.inc.php:256 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:252 libraries/mysql_charsets.lib.php:247 msgid "dictionary" msgstr "lug‘at" -#: libraries/messages.inc.php:257 libraries/server_synchronize.lib.php:1348 +#: libraries/messages.inc.php:253 libraries/server_synchronize.lib.php:1348 msgid "Difference" msgstr "Farq" -#: libraries/messages.inc.php:258 pmd_general.php:87 +#: libraries/messages.inc.php:254 pmd_general.php:87 msgid "Direct links" msgstr "To‘g‘ridan-to‘g‘ri bog‘lanishlar" -#: libraries/messages.inc.php:261 +#: libraries/messages.inc.php:257 msgid "Disable foreign key checks" msgstr "Tashqi kalitlarni tekshirishni o‘chirish" -#: libraries/messages.inc.php:262 +#: libraries/messages.inc.php:258 msgid "Display Features" msgstr "Imkoniyatlarni ko‘rsatish" -#: libraries/messages.inc.php:263 tbl_select.php:301 +#: libraries/messages.inc.php:259 tbl_select.php:301 msgid "Display order:" msgstr "Sortirovka:" -#: libraries/messages.inc.php:265 tbl_select.php:132 +#: libraries/messages.inc.php:261 tbl_select.php:132 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "\"Namunadagi so‘rovni bajarish\" (o‘rniga qo‘yish belgisi: \"%\")" -#: libraries/messages.inc.php:266 +#: libraries/messages.inc.php:262 msgid "DocSQL" msgstr "DocSQL" -#: libraries/messages.inc.php:268 +#: libraries/messages.inc.php:264 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Nol qiymatlari uchun \"AUTO_INCREMENT\" ishlatmaslik" -#: libraries/messages.inc.php:273 server_privileges.php:1579 +#: libraries/messages.inc.php:269 server_privileges.php:1579 #: server_privileges.php:1580 server_privileges.php:1581 msgid "Drop the databases that have the same names as the users." msgstr "" "Foydalanuvchilar nomlari bilan atalgan ma`lumotlar bazalarini o‘chirish." -#: libraries/messages.inc.php:278 tbl_printview.php:382 tbl_structure.php:743 +#: libraries/messages.inc.php:274 tbl_printview.php:382 tbl_structure.php:743 msgid "dynamic" msgstr "dinamik" -#: libraries/messages.inc.php:282 server_privileges.php:1324 +#: libraries/messages.inc.php:278 server_privileges.php:1324 #: server_privileges.php:1610 msgid "Edit Privileges" msgstr "Privilegiyalarni tahrirlash" -#: libraries/messages.inc.php:283 tbl_printview.php:341 tbl_structure.php:688 +#: libraries/messages.inc.php:279 tbl_printview.php:341 tbl_structure.php:688 msgid "Effective" msgstr "Effektivlik" -#: libraries/messages.inc.php:286 libraries/relation.lib.php:100 +#: libraries/messages.inc.php:282 libraries/relation.lib.php:100 msgid "Enabled" msgstr "Faollashtirilgan" -#: libraries/messages.inc.php:287 +#: libraries/messages.inc.php:283 msgid "Enclose export in a transaction" msgstr "Tranzaksiyaga eksportni qo‘shish" -#: libraries/messages.inc.php:288 libraries/sqlparser.lib.php:177 +#: libraries/messages.inc.php:284 libraries/sqlparser.lib.php:177 msgid "END CUT" msgstr "END CUT" -#: libraries/messages.inc.php:290 libraries/sqlparser.lib.php:183 +#: libraries/messages.inc.php:286 libraries/sqlparser.lib.php:183 msgid "END RAW" msgstr "END RAW" -#: libraries/messages.inc.php:293 libraries/server_links.inc.php:61 +#: libraries/messages.inc.php:289 libraries/server_links.inc.php:61 #: test/theme.php:113 msgid "Engines" msgstr "Jadval turlari" -#: libraries/messages.inc.php:295 libraries/mysql_charsets.lib.php:238 +#: libraries/messages.inc.php:291 libraries/mysql_charsets.lib.php:238 msgid "English" msgstr "Inglizcha" -#: libraries/messages.inc.php:296 server_privileges.php:393 +#: libraries/messages.inc.php:292 server_privileges.php:393 #: server_privileges.php:535 server_privileges.php:1501 msgid " Note: MySQL privilege names are expressed in English " msgstr "IZOH: MySQL privilegiyalari turlari ingliz tilida ko‘rsatiladi." -#: libraries/messages.inc.php:298 libraries/zip_extension.lib.php:49 +#: libraries/messages.inc.php:294 libraries/zip_extension.lib.php:49 #: libraries/zip_extension.lib.php:51 libraries/zip_extension.lib.php:66 msgid "Error in ZIP archive:" msgstr "Ushbu ZIP arxivda xatolik:" -#: libraries/messages.inc.php:303 libraries/mysql_charsets.lib.php:241 +#: libraries/messages.inc.php:299 libraries/mysql_charsets.lib.php:241 msgid "Esperanto" msgstr "Esperanto" -#: libraries/messages.inc.php:304 libraries/mysql_charsets.lib.php:244 +#: libraries/messages.inc.php:300 libraries/mysql_charsets.lib.php:244 msgid "Estonian" msgstr "Estoncha" -#: libraries/messages.inc.php:305 libraries/tbl_triggers.lib.php:29 +#: libraries/messages.inc.php:301 libraries/tbl_triggers.lib.php:29 msgid "Event" msgstr "Hodisa" -#: libraries/messages.inc.php:307 +#: libraries/messages.inc.php:303 msgid "Excel edition" msgstr "Excel-versiyasi" -#: libraries/messages.inc.php:311 pmd_pdf.php:85 +#: libraries/messages.inc.php:307 pmd_pdf.php:85 msgid "Export/Import to scale" msgstr "Masshtab" -#: libraries/messages.inc.php:313 +#: libraries/messages.inc.php:309 msgid "Extended inserts" msgstr "Kengaytirilgan qo‘yilmalar" -#: libraries/messages.inc.php:314 pdf_schema.php:1267 pdf_schema.php:1288 +#: libraries/messages.inc.php:310 pdf_schema.php:1267 pdf_schema.php:1288 #: tbl_printview.php:147 tbl_structure.php:183 tbl_tracking.php:278 msgid "Extra" msgstr "Qo‘shimcha" -#: libraries/messages.inc.php:316 server_status.php:447 +#: libraries/messages.inc.php:312 server_status.php:447 msgid "Failed attempts" msgstr "Muvaffaqiyatsiz urinishlar soni: " -#: libraries/messages.inc.php:318 tbl_structure.php:375 +#: libraries/messages.inc.php:314 tbl_structure.php:375 #, php-format msgid "Field %s has been dropped" msgstr "\"%s\" maydoni o‘chirildi" -#: libraries/messages.inc.php:322 libraries/sql_query_form.lib.php:317 +#: libraries/messages.inc.php:318 libraries/sql_query_form.lib.php:317 msgid "Fields" msgstr "Maydonlar" -#: libraries/messages.inc.php:332 server_binlog.php:136 +#: libraries/messages.inc.php:328 server_binlog.php:136 msgid "Files" msgstr "Fayllar soni " -#: libraries/messages.inc.php:334 server_privileges.php:1597 +#: libraries/messages.inc.php:330 server_privileges.php:1597 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -3870,121 +3870,121 @@ msgstr "" "ma`lumotlar server tomonidan ishlatilayotgan privilegiyalardan farq qilishi " "mumkin. Bu holda %sprivilegiyalarni qayta yuklash%s kerak." -#: libraries/messages.inc.php:335 server_status.php:289 +#: libraries/messages.inc.php:331 server_status.php:289 msgid "Flush query cache" msgstr "So‘rovlar keshini defragmentatsiya qilish" -#: libraries/messages.inc.php:336 +#: libraries/messages.inc.php:332 msgid "Flush the table (\"FLUSH\")" msgstr "Jadval keshini yangilash (\"FLUSH\")" -#: libraries/messages.inc.php:337 server_status.php:271 +#: libraries/messages.inc.php:333 server_status.php:271 msgid "Flush (close) all tables" msgstr "Barcha jadvallarni yopish" -#: libraries/messages.inc.php:339 tbl_relation.php:279 +#: libraries/messages.inc.php:335 tbl_relation.php:279 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" " %1$s da tashqi kalit (FOREIGN KEY) tuzishda xatolik (ma`lumot turini " "tekshiring)" -#: libraries/messages.inc.php:341 setup/lib/messages.inc.php:88 +#: libraries/messages.inc.php:337 setup/lib/messages.inc.php:88 #: tbl_printview.php:376 tbl_structure.php:738 msgid "Format" msgstr "Format" -#: libraries/messages.inc.php:344 server_replication.php:325 +#: libraries/messages.inc.php:340 server_replication.php:325 msgid "Full start" msgstr "Barchasini boshlash" -#: libraries/messages.inc.php:345 server_replication.php:325 +#: libraries/messages.inc.php:341 server_replication.php:325 msgid "Full stop" msgstr "Barchasini to‘xtatish" -#: libraries/messages.inc.php:347 tbl_change.php:282 tbl_change.php:320 +#: libraries/messages.inc.php:343 tbl_change.php:282 tbl_change.php:320 msgid "Function" msgstr "Funksiya" -#: libraries/messages.inc.php:355 libraries/mysql_charsets.lib.php:377 +#: libraries/messages.inc.php:351 libraries/mysql_charsets.lib.php:377 msgid "Georgian" msgstr "Gruzincha" -#: libraries/messages.inc.php:356 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:352 libraries/mysql_charsets.lib.php:247 #: libraries/mysql_charsets.lib.php:250 msgid "German" msgstr "Nemischa" -#: libraries/messages.inc.php:357 themes.php:42 +#: libraries/messages.inc.php:353 themes.php:42 msgid "Get more themes!" msgstr "Ko‘proq mavzuga ega bo‘ling!" -#: libraries/messages.inc.php:358 server_privileges.php:2134 +#: libraries/messages.inc.php:354 server_privileges.php:2134 msgid "global" msgstr "Global" -#: libraries/messages.inc.php:359 server_privileges.php:524 +#: libraries/messages.inc.php:355 server_privileges.php:524 #: server_privileges.php:1500 msgid "Global privileges" msgstr "Global privilegiyalar" -#: libraries/messages.inc.php:360 server_variables.php:55 +#: libraries/messages.inc.php:356 server_variables.php:55 #: server_variables.php:89 msgid "Global value" msgstr "Global qiymat" -#: libraries/messages.inc.php:365 server_privileges.php:1502 +#: libraries/messages.inc.php:361 server_privileges.php:1502 #: server_privileges.php:1684 server_privileges.php:2033 msgid "Grant" msgstr "GRANT" -#: libraries/messages.inc.php:366 libraries/mysql_charsets.lib.php:380 +#: libraries/messages.inc.php:362 libraries/mysql_charsets.lib.php:380 msgid "Greek" msgstr "Grekcha" -#: libraries/messages.inc.php:367 +#: libraries/messages.inc.php:363 msgid "\"gzipped\"" msgstr "gzip" -#: libraries/messages.inc.php:369 server_status.php:250 +#: libraries/messages.inc.php:365 server_status.php:250 msgid "Handler" msgstr "Qayta ishlovchi dastur" -#: libraries/messages.inc.php:370 server_synchronize.php:464 +#: libraries/messages.inc.php:366 server_synchronize.php:464 msgid "Selected target tables have been synchronized with source tables." msgstr "Tanlangan jadvallar manba jadvallar bilan sinxronizatsiya qilindi." -#: libraries/messages.inc.php:372 libraries/mysql_charsets.lib.php:374 +#: libraries/messages.inc.php:368 libraries/mysql_charsets.lib.php:374 msgid "Hebrew" msgstr "Yahudiycha" -#: libraries/messages.inc.php:373 pmd_general.php:83 +#: libraries/messages.inc.php:369 pmd_general.php:83 msgid "Help" msgstr "Yordam" -#: libraries/messages.inc.php:374 +#: libraries/messages.inc.php:370 msgid "Use hexadecimal for BLOB" msgstr "BLOB turidagi ma`lumotlarni o‘n oltilik shaklda namoyish etish" -#: libraries/messages.inc.php:376 pmd_general.php:120 +#: libraries/messages.inc.php:372 pmd_general.php:120 msgid "Hide/Show all" msgstr "Barcha jadvallarni yashirish/ko‘rsatish" -#: libraries/messages.inc.php:377 pmd_general.php:124 +#: libraries/messages.inc.php:373 pmd_general.php:124 msgid "Hide/Show Tables with no relation" msgstr "Aloqa mavjud bo‘lmagan jadvallarni yashirish/ko‘rsatish" -#: libraries/messages.inc.php:378 libraries/navigation_header.inc.php:54 +#: libraries/messages.inc.php:374 libraries/navigation_header.inc.php:54 #: libraries/navigation_header.inc.php:57 #: libraries/navigation_header.inc.php:58 msgid "Home" msgstr "Bosh sahifa" -#: libraries/messages.inc.php:379 main.php:233 +#: libraries/messages.inc.php:375 main.php:233 msgid "Official Homepage" msgstr " phpMyAdmin rasmiy veb-sahifasi" -#: libraries/messages.inc.php:382 libraries/replication_gui.lib.php:327 +#: libraries/messages.inc.php:378 libraries/replication_gui.lib.php:327 #: server_privileges.php:753 msgid "" "When Host table is used, this field is ignored and values stored in Host " @@ -3993,99 +3993,99 @@ msgstr "" "Agar Xostlar jadvalidan foydalanilsa, ushbu maydonga e`tibor berilmaydi va " "uning o‘rniga Xostlar jadvalidagi qiymatlar ishlatiladi." -#: libraries/messages.inc.php:383 +#: libraries/messages.inc.php:379 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/messages.inc.php:384 libraries/mysql_charsets.lib.php:253 +#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:253 msgid "Hungarian" msgstr "Vengercha" -#: libraries/messages.inc.php:386 libraries/mysql_charsets.lib.php:256 +#: libraries/messages.inc.php:382 libraries/mysql_charsets.lib.php:256 msgid "Icelandic" msgstr "Islandcha" -#: libraries/messages.inc.php:387 server_processlist.php:53 +#: libraries/messages.inc.php:383 server_processlist.php:53 msgid "ID" msgstr "ID" -#: libraries/messages.inc.php:388 libraries/mult_submits.inc.php:108 +#: libraries/messages.inc.php:384 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:479 msgid "Fulltext" msgstr "Matn to‘laligicha" -#: libraries/messages.inc.php:389 +#: libraries/messages.inc.php:385 msgid "Ignore duplicate rows" msgstr "Takroriy qatorlarga e`tibor bermaslik" -#: libraries/messages.inc.php:390 tbl_change.php:302 tbl_indexes.php:200 +#: libraries/messages.inc.php:386 tbl_change.php:302 tbl_indexes.php:200 #: tbl_indexes.php:225 msgid "Ignore" msgstr "E`tibor bermaslik" -#: libraries/messages.inc.php:391 +#: libraries/messages.inc.php:387 msgid "Use ignore inserts" msgstr "E`tibor bermaslik (IGNORE) qo‘yilmalardan foydalanish" -#: libraries/messages.inc.php:392 +#: libraries/messages.inc.php:388 msgid "Column names in first row" msgstr "Birinchi qatorga ustun nomlari" -#: libraries/messages.inc.php:393 +#: libraries/messages.inc.php:389 msgid "Do not import empty rows" msgstr "Bo‘sh qatorlarni import qilmaslik" -#: libraries/messages.inc.php:394 pmd_general.php:104 +#: libraries/messages.inc.php:390 pmd_general.php:104 msgid "Import/Export coordinates for PDF schema" msgstr "PDF-sxemaga/sxemadan jadval koordinatalarini import/eksport qilish" -#: libraries/messages.inc.php:395 querywindow.php:104 +#: libraries/messages.inc.php:391 querywindow.php:104 msgid "Import files" msgstr "Fayllarni import qilish" -#: libraries/messages.inc.php:403 +#: libraries/messages.inc.php:399 msgid "Import currencies ($5.00 to 5.00)" msgstr "Pul birliklarini import qilish (masalan, $5.00 ni 5.00 ga)" -#: libraries/messages.inc.php:404 libraries/messages.inc.php:584 +#: libraries/messages.inc.php:400 libraries/messages.inc.php:580 msgid "Open Document Spreadsheet" msgstr "Open Document jadvali" -#: libraries/messages.inc.php:405 +#: libraries/messages.inc.php:401 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" "Foizlarni mos o‘nli kasrlar kabi import qilish (masalan, 12.00% o‘rniga 0.12)" -#: libraries/messages.inc.php:409 +#: libraries/messages.inc.php:405 msgid "Excel 97-2003 XLS Workbook" msgstr "Excel 97-2003 XLS ish kitobi" -#: libraries/messages.inc.php:410 +#: libraries/messages.inc.php:406 msgid "Excel 2007 XLSX Workbook" msgstr "Excel 2007 XLSX ish kitobi" -#: libraries/messages.inc.php:414 libraries/mult_submits.inc.php:98 +#: libraries/messages.inc.php:410 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:476 tbl_structure.php:674 msgid "Index" msgstr "Indeks" -#: libraries/messages.inc.php:415 tbl_indexes.php:168 +#: libraries/messages.inc.php:411 tbl_indexes.php:168 msgid "Index name:" msgstr "Indeks nomi: " -#: libraries/messages.inc.php:416 tbl_indexes.php:174 +#: libraries/messages.inc.php:412 tbl_indexes.php:174 msgid "Index type:" msgstr "Indeks turi: " -#: libraries/messages.inc.php:417 sql.php:639 +#: libraries/messages.inc.php:413 sql.php:639 #, php-format msgid "Problems with indexes of table `%s`" msgstr " `\"%s\"` jadvalidagi indekslarda muammo mavjud" -#: libraries/messages.inc.php:427 main.php:266 +#: libraries/messages.inc.php:423 main.php:266 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -4098,24 +4098,24 @@ msgstr "" "shuning uchun \"root\" superfoydalanuvchisiga parol o‘rnatish qat`iyan " "tavsiya etiladi." -#: libraries/messages.inc.php:428 tbl_change.php:1130 +#: libraries/messages.inc.php:424 tbl_change.php:1130 msgid "Insert as new row" msgstr "Yozuv kiritish" -#: libraries/messages.inc.php:429 sql.php:496 tbl_replace.php:386 +#: libraries/messages.inc.php:425 sql.php:496 tbl_replace.php:386 #, php-format msgid "Inserted row id: %1$d" msgstr "Kiritilgan qator identifikatori: %1$d" -#: libraries/messages.inc.php:430 tbl_change.php:1131 +#: libraries/messages.inc.php:426 tbl_change.php:1131 msgid "Insert as new row and ignore errors" msgstr "Yangi qator sifatida qo‘shish va xatoliklarga e’tibor bеrmaslik" -#: libraries/messages.inc.php:432 main.php:139 +#: libraries/messages.inc.php:428 main.php:139 msgid "Interface" msgstr "Interfeys" -#: libraries/messages.inc.php:433 tbl_relation.php:407 +#: libraries/messages.inc.php:429 tbl_relation.php:407 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -4123,31 +4123,31 @@ msgstr "" "Agar tashqi kalit (FOREIGN KEY) orqali aloqa mavjud bo‘lsa, ichki aloqa " "o‘rnatish shart emas." -#: libraries/messages.inc.php:435 pdf_pages.php:303 +#: libraries/messages.inc.php:431 pdf_pages.php:303 msgid "Internal relations" msgstr "Ichki aloqalar" -#: libraries/messages.inc.php:438 tbl_indexes.php:256 tbl_structure.php:590 +#: libraries/messages.inc.php:434 tbl_indexes.php:256 tbl_structure.php:590 #: tbl_structure.php:601 msgid "Column count has to be larger than zero." msgstr "Ustunlar soni noldan ko‘p bo‘lishi shart." -#: libraries/messages.inc.php:444 libraries/tbl_properties.inc.php:784 +#: libraries/messages.inc.php:440 libraries/tbl_properties.inc.php:784 #: tbl_structure.php:537 msgid "You have to add at least one field." msgstr "Hech bo‘lmaganda bitta maydon kiritish shart." -#: libraries/messages.inc.php:449 +#: libraries/messages.inc.php:445 #, php-format msgid "Invalid server index: \"%s\"" msgstr "Server raqami noto‘g‘ri: \"%s\"" -#: libraries/messages.inc.php:452 libraries/mysql_charsets.lib.php:259 +#: libraries/messages.inc.php:448 libraries/mysql_charsets.lib.php:259 #: libraries/mysql_charsets.lib.php:349 msgid "Japanese" msgstr "Yaponcha" -#: libraries/messages.inc.php:453 main.php:331 +#: libraries/messages.inc.php:449 main.php:331 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " @@ -4157,109 +4157,109 @@ msgstr "" "dasturining ba’zi funktsiyalari ishlamaydi. Masalan, navigatsiya oynasi " "avtomatik tarzda yangilanib turmaydi." -#: libraries/messages.inc.php:454 server_status.php:257 +#: libraries/messages.inc.php:450 server_status.php:257 msgid "Joins" msgstr "Birlashishlar" -#: libraries/messages.inc.php:457 server_privileges.php:763 +#: libraries/messages.inc.php:453 server_privileges.php:763 msgid "Do not change the password" msgstr "Parolni o‘zgartirmaslik" -#: libraries/messages.inc.php:458 server_status.php:256 +#: libraries/messages.inc.php:454 server_status.php:256 msgid "Key cache" msgstr "Indeks keshi" -#: libraries/messages.inc.php:462 libraries/mysql_charsets.lib.php:268 +#: libraries/messages.inc.php:458 libraries/mysql_charsets.lib.php:268 #: libraries/mysql_charsets.lib.php:371 msgid "Korean" msgstr "Koreyscha" -#: libraries/messages.inc.php:466 libraries/select_lang.lib.php:480 +#: libraries/messages.inc.php:462 libraries/select_lang.lib.php:480 #: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492 #, php-format msgid "Unknown language: %1$s." msgstr "Noma`lum til: %1$s." -#: libraries/messages.inc.php:468 +#: libraries/messages.inc.php:464 msgid "Table caption" msgstr "Jadval sarlavhasi" -#: libraries/messages.inc.php:469 +#: libraries/messages.inc.php:465 msgid "Content of table __TABLE__" msgstr " __TABLE__ jadvalining mundarijasi" -#: libraries/messages.inc.php:470 +#: libraries/messages.inc.php:466 msgid "Continued table caption" msgstr "Jadval sarlavhasi (davomi)" -#: libraries/messages.inc.php:471 +#: libraries/messages.inc.php:467 msgid "(continued)" msgstr "(davomi)" -#: libraries/messages.inc.php:472 +#: libraries/messages.inc.php:468 msgid "Include table caption" msgstr "Jadvalga sarlavha qo‘shish" -#: libraries/messages.inc.php:473 +#: libraries/messages.inc.php:469 msgid "Label key" msgstr "Belgi identifikatori" -#: libraries/messages.inc.php:474 +#: libraries/messages.inc.php:470 msgid "LaTeX" msgstr "LaTeX" -#: libraries/messages.inc.php:475 +#: libraries/messages.inc.php:471 msgid "Structure of table __TABLE__" msgstr " __TABLE__ jadvalining tuzilishi" -#: libraries/messages.inc.php:476 libraries/mysql_charsets.lib.php:262 +#: libraries/messages.inc.php:472 libraries/mysql_charsets.lib.php:262 msgid "Latvian" msgstr "Latishcha" -#: libraries/messages.inc.php:477 +#: libraries/messages.inc.php:473 msgid "CSV using LOAD DATA" msgstr "\"LOAD DATA\" ishlatilgan CSV" -#: libraries/messages.inc.php:478 +#: libraries/messages.inc.php:474 msgid "Use LOCAL keyword" msgstr "\"LOCAL\" kalit so‘zini ishlatish" -#: libraries/messages.inc.php:479 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:475 libraries/tbl_properties.inc.php:105 msgid "Length/Values" msgstr "Uzunlik/qiymatlar" -#: libraries/messages.inc.php:480 tbl_select.php:295 +#: libraries/messages.inc.php:476 tbl_select.php:295 msgid "Number of rows per page" msgstr "Sahifadagi qatorlar soni " -#: libraries/messages.inc.php:484 libraries/mysql_charsets.lib.php:265 +#: libraries/messages.inc.php:480 libraries/mysql_charsets.lib.php:265 msgid "Lithuanian" msgstr "Litvacha" -#: libraries/messages.inc.php:485 libraries/replication_gui.lib.php:302 +#: libraries/messages.inc.php:481 libraries/replication_gui.lib.php:302 #: server_privileges.php:729 msgid "Local" msgstr "Lokal" -#: libraries/messages.inc.php:487 server_privileges.php:669 +#: libraries/messages.inc.php:483 server_privileges.php:669 msgid "Login Information" msgstr "Foydalanuvchi hisobi haqida ma`lumot" -#: libraries/messages.inc.php:490 libraries/navigation_header.inc.php:67 +#: libraries/messages.inc.php:486 libraries/navigation_header.inc.php:67 #: libraries/navigation_header.inc.php:70 #: libraries/navigation_header.inc.php:71 main.php:99 msgid "Log out" msgstr "Chiqish" -#: libraries/messages.inc.php:497 server_status.php:440 +#: libraries/messages.inc.php:493 server_status.php:440 msgid "max. concurrent connections" msgstr "Maksimal ulanishlar soni " -#: libraries/messages.inc.php:498 +#: libraries/messages.inc.php:494 msgid "Maximal length of created query" msgstr "Tuzilayogan so‘rovning maksimal uzunligi" -#: libraries/messages.inc.php:500 main.php:282 +#: libraries/messages.inc.php:496 main.php:282 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -4270,7 +4270,7 @@ msgstr "" "navbatida ma`lumot yo‘qolishiga olib kelishi mumkin. PHP \"mbstring\" " "kengaytmasini o‘rnatish qat`iy tavsiya etiladi." -#: libraries/messages.inc.php:501 main.php:274 +#: libraries/messages.inc.php:497 main.php:274 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -4280,24 +4280,24 @@ msgstr "" "func_overload parametri yoqilgan. Ma`lumot yo‘qolishi oldini olish uchun, " "ushbu parametr o‘chirilishi kerak!" -#: libraries/messages.inc.php:502 +#: libraries/messages.inc.php:498 msgid "MediaWiki Table" msgstr "MediaWiki jadvali" -#: libraries/messages.inc.php:503 transformation_overview.php:25 +#: libraries/messages.inc.php:499 transformation_overview.php:25 msgid "Available MIME types" msgstr "Mavjud MIME turlari" -#: libraries/messages.inc.php:504 transformation_overview.php:43 +#: libraries/messages.inc.php:500 transformation_overview.php:43 msgid "Available transformations" msgstr "Mavjud o‘girishlar" -#: libraries/messages.inc.php:505 +#: libraries/messages.inc.php:501 msgctxt "$strMIME_description" msgid "Description" msgstr "Tavsif" -#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:580 +#: libraries/messages.inc.php:503 libraries/tbl_properties.inc.php:580 #: transformation_overview.php:60 #, php-format msgid "" @@ -4307,7 +4307,7 @@ msgstr "" "Hozirgi vatqda tavsif mavjud emas.
Ishlatilayotgan \"%s\" o‘girishlar " "namoyishi funksiyalarining ishi yaqin orada tavsiflanadi. " -#: libraries/messages.inc.php:509 libraries/tbl_properties.inc.php:137 +#: libraries/messages.inc.php:505 libraries/tbl_properties.inc.php:137 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -4316,7 +4316,7 @@ msgstr "" "Mavjud MIME turlari va o‘girishlar parametlarini ko‘rish uchun quyidagi " "bog‘lanishdan foydalaning: - \"%s\"o‘zgaririshlar tavsifi\"%s\"" -#: libraries/messages.inc.php:510 libraries/tbl_properties.inc.php:146 +#: libraries/messages.inc.php:506 libraries/tbl_properties.inc.php:146 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -4328,58 +4328,58 @@ msgstr "" "(\") belgilari oldidan teskari egri chiziq bo‘lishi kerak, masalan: \"\\\\xyz" "\" yoki \"a\\\"b\"." -#: libraries/messages.inc.php:511 libraries/tbl_properties.inc.php:145 +#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:145 msgid "Transformation options" msgstr "O‘girishlar parametrlari" -#: libraries/messages.inc.php:513 transformation_overview.php:38 +#: libraries/messages.inc.php:509 transformation_overview.php:38 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "" "Kursiv bilan belgilangan MIME turlari alohida o‘girish funksiyalariga ega " "emas. " -#: libraries/messages.inc.php:515 tbl_indexes.php:162 +#: libraries/messages.inc.php:511 tbl_indexes.php:162 msgid "Modify an index" msgstr "Indeksni o‘zgarirish" -#: libraries/messages.inc.php:517 pmd_general.php:108 +#: libraries/messages.inc.php:513 pmd_general.php:108 msgid "Move Menu" msgstr "Menyuni ko‘chirish" -#: libraries/messages.inc.php:518 tbl_operations.php:276 +#: libraries/messages.inc.php:514 tbl_operations.php:276 msgid "Move table to (database.table):" msgstr "Jadvalni (ma`lumotlar bazasi.jadval) ga ko‘chirish:" -#: libraries/messages.inc.php:519 tbl_move_copy.php:56 +#: libraries/messages.inc.php:515 tbl_move_copy.php:56 #, php-format msgid "Table %s has been moved to %s." msgstr " \"%s\" jadvali \"%s\" ga ko‘chirildi." -#: libraries/messages.inc.php:520 tbl_move_copy.php:46 +#: libraries/messages.inc.php:516 tbl_move_copy.php:46 msgid "Can't move table to same one!" msgstr "Jadvalni o‘z-o‘ziga ko‘chirib bo‘lmaydi!" -#: libraries/messages.inc.php:521 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:517 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 #: libraries/mysql_charsets.lib.php:332 libraries/mysql_charsets.lib.php:354 #: libraries/mysql_charsets.lib.php:365 msgid "multilingual" msgstr "ko‘p tildagi" -#: libraries/messages.inc.php:534 main.php:193 +#: libraries/messages.inc.php:530 main.php:193 msgid "MySQL charset" msgstr "MySQL-kodirovka" -#: libraries/messages.inc.php:535 main.php:211 +#: libraries/messages.inc.php:531 main.php:211 msgid "MySQL client version" msgstr "MySQL-kliyent versiyasi" -#: libraries/messages.inc.php:536 main.php:125 +#: libraries/messages.inc.php:532 main.php:125 msgid "MySQL connection collation" msgstr "MySQL bilan ulanishni chog‘ishtirish" -#: libraries/messages.inc.php:537 main.php:346 +#: libraries/messages.inc.php:533 main.php:346 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -4388,55 +4388,55 @@ msgstr "" "MySQL-kliyent versiyasi (\"%s\") o‘rnatilgan MySQL-server versiyasi(\"%s\")" "dan farq qilmoqda. Bu holat noxush oqibatlarga olib kelishi mumkin." -#: libraries/messages.inc.php:539 server_status.php:294 +#: libraries/messages.inc.php:535 server_status.php:294 msgid "Show processes" msgstr "Jarayonlar ro‘yxati" -#: libraries/messages.inc.php:545 navigation.php:210 server_databases.php:371 +#: libraries/messages.inc.php:541 navigation.php:210 server_databases.php:371 #: server_synchronize.php:1191 msgid "No databases" msgstr "Ma`lumotlar bazasi mavjud emas" -#: libraries/messages.inc.php:546 server_databases.php:52 +#: libraries/messages.inc.php:542 server_databases.php:52 msgid "No databases selected." msgstr "Bironta ham ma`lumotlar bazasi tanlanmagan." -#: libraries/messages.inc.php:548 libraries/relation.lib.php:1173 +#: libraries/messages.inc.php:544 libraries/relation.lib.php:1173 msgid "no description" msgstr "tavsif mavjud emas" -#: libraries/messages.inc.php:552 libraries/zip_extension.lib.php:26 +#: libraries/messages.inc.php:548 libraries/zip_extension.lib.php:26 msgid "No files found inside ZIP archive!" msgstr "ZIP-arxiv ichida fayl mavjud emas!" -#: libraries/messages.inc.php:555 tbl_indexes.php:91 +#: libraries/messages.inc.php:551 tbl_indexes.php:91 msgid "No index parts defined!" msgstr "Indeks qismlari belgilanmagan!" -#: libraries/messages.inc.php:556 libraries/mult_submits.inc.php:435 +#: libraries/messages.inc.php:552 libraries/mult_submits.inc.php:435 #: tbl_replace.php:331 msgid "No change" msgstr "O‘zgarish yo‘q" -#: libraries/messages.inc.php:557 +#: libraries/messages.inc.php:553 msgctxt "$strNoneDefault" msgid "None" msgstr "Yo‘q" -#: libraries/messages.inc.php:560 libraries/plugin_interface.lib.php:312 +#: libraries/messages.inc.php:556 libraries/plugin_interface.lib.php:312 msgid "This format has no options" msgstr "Ushbu format uchun sozlanadigan parametr mavjud emas" -#: libraries/messages.inc.php:565 user_password.php:54 +#: libraries/messages.inc.php:561 user_password.php:54 msgid "You don't have sufficient privileges to be here right now!" msgstr "Ushbu sahifaga kirish uchun Sizda yetarli huquq mavjud emas!" -#: libraries/messages.inc.php:566 tbl_row_action.php:29 +#: libraries/messages.inc.php:562 tbl_row_action.php:29 msgid "No rows selected" msgstr "" "Amalni amalga oshirish uchun bitta yoki bir nechta qatorni tanlash kerak. " -#: libraries/messages.inc.php:569 themes.php:32 +#: libraries/messages.inc.php:565 themes.php:32 #, php-format msgid "" "No themes support; please check your configuration and/or your themes in " @@ -4445,138 +4445,138 @@ msgstr "" "Mavzular ishlamayapti, konfiguratsiyani va \"%s\" katalogida mavzular " "mavjudligini tekshiring." -#: libraries/messages.inc.php:571 libraries/relation.lib.php:95 +#: libraries/messages.inc.php:567 libraries/relation.lib.php:95 msgid "not OK" msgstr "Tayyor emas" -#: libraries/messages.inc.php:572 server_synchronize.php:400 +#: libraries/messages.inc.php:568 server_synchronize.php:400 #: server_synchronize.php:839 msgid "not present" msgstr "Mavjud emas" -#: libraries/messages.inc.php:573 pdf_pages.php:36 pdf_pages.php:42 +#: libraries/messages.inc.php:569 pdf_pages.php:36 pdf_pages.php:42 #: pdf_pages.php:48 pdf_pages.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr " \"%s\" jadvali topilmadi yoki \"%s\"da o‘rnatilmagan" -#: libraries/messages.inc.php:574 server_privileges.php:804 +#: libraries/messages.inc.php:570 server_privileges.php:804 #: server_privileges.php:2166 msgid "No user(s) found." msgstr "Bironta ham foydalanuvchi topilmadi." -#: libraries/messages.inc.php:578 pmd_general.php:164 +#: libraries/messages.inc.php:574 pmd_general.php:164 msgid "Number of tables" msgstr "Jadvallar soni " -#: libraries/messages.inc.php:581 server_databases.php:117 +#: libraries/messages.inc.php:577 server_databases.php:117 #: server_status.php:260 setup/lib/messages.inc.php:117 msgid "Tables" msgstr "Jadvallar" -#: libraries/messages.inc.php:583 libraries/relation.lib.php:99 +#: libraries/messages.inc.php:579 libraries/relation.lib.php:99 #: pmd_general.php:340 msgid "OK" msgstr "OK" -#: libraries/messages.inc.php:585 +#: libraries/messages.inc.php:581 msgid "Open Document Text" msgstr "OpenDocument matn" -#: libraries/messages.inc.php:588 tbl_select.php:138 +#: libraries/messages.inc.php:584 tbl_select.php:138 msgid "Operator" msgstr "Operator" -#: libraries/messages.inc.php:589 tbl_operations.php:662 +#: libraries/messages.inc.php:585 tbl_operations.php:662 msgid "Optimize" msgstr "Optimizatsiya" -#: libraries/messages.inc.php:602 libraries/tbl_properties.inc.php:755 +#: libraries/messages.inc.php:598 libraries/tbl_properties.inc.php:755 msgid "PARTITION definition" msgstr "Bo‘laklarni (PARTITIONS) belgilash" -#: libraries/messages.inc.php:603 tbl_structure.php:757 +#: libraries/messages.inc.php:599 tbl_structure.php:757 msgid "partitioned" msgstr "bo‘laklarga bo‘lingan" -#: libraries/messages.inc.php:604 tbl_operations.php:649 +#: libraries/messages.inc.php:600 tbl_operations.php:649 msgid "Partition maintenance" msgstr "bo‘laklarga xizmat ko‘rsatish" -#: libraries/messages.inc.php:605 tbl_operations.php:657 +#: libraries/messages.inc.php:601 tbl_operations.php:657 #, php-format msgid "Partition %s" msgstr "\"%s\" bo‘lagi" -#: libraries/messages.inc.php:606 server_privileges.php:1212 +#: libraries/messages.inc.php:602 server_privileges.php:1212 #, php-format msgid "The password for %s was changed successfully." msgstr "\"%s\" foydalanuvchining paroli muvaffaqiyatli o‘zgartirildi." -#: libraries/messages.inc.php:635 +#: libraries/messages.inc.php:631 #, php-format msgid "Schema of the \"%s\" database - Page %s" msgstr "\"%s\" ma`lumotlar bazasi tuzilishi - \"%s\" sahifa" -#: libraries/messages.inc.php:636 +#: libraries/messages.inc.php:632 #, php-format msgid "The \"%s\" table doesn't exist!" msgstr "\"%s\" jadvali mavjud emas!" -#: libraries/messages.inc.php:637 pdf_schema.php:1013 +#: libraries/messages.inc.php:633 pdf_schema.php:1013 msgid "No tables" msgstr "Jadval mavjud emas" -#: libraries/messages.inc.php:638 pmd_pdf.php:63 +#: libraries/messages.inc.php:634 pmd_pdf.php:63 msgid "Page has been created" msgstr "Sahifa tuzildi" -#: libraries/messages.inc.php:639 pmd_pdf.php:65 +#: libraries/messages.inc.php:635 pmd_pdf.php:65 msgid "Page creation failed" msgstr "Sahifa tuzib bo‘lmadi" -#: libraries/messages.inc.php:640 +#: libraries/messages.inc.php:636 msgid "PDF" msgstr "PDF" -#: libraries/messages.inc.php:641 +#: libraries/messages.inc.php:637 msgid "(Generates a report containing the data of a single table)" msgstr "(Ma`lum bir jadval ma`lumotlarini o‘z ichiga olgan hisobot tuzish)" -#: libraries/messages.inc.php:642 +#: libraries/messages.inc.php:638 msgid "Report title" msgstr "Hisobot sarlavhasi" -#: libraries/messages.inc.php:643 server_status.php:389 server_status.php:434 +#: libraries/messages.inc.php:639 server_status.php:389 server_status.php:434 #: server_status.php:497 server_status.php:555 msgid "per hour" msgstr "soatiga" -#: libraries/messages.inc.php:644 server_status.php:498 +#: libraries/messages.inc.php:640 server_status.php:498 msgid "per minute" msgstr "minutiga" -#: libraries/messages.inc.php:645 server_status.php:499 +#: libraries/messages.inc.php:641 server_status.php:499 msgid "per second" msgstr "sekundiga" -#: libraries/messages.inc.php:646 libraries/mysql_charsets.lib.php:271 +#: libraries/messages.inc.php:642 libraries/mysql_charsets.lib.php:271 msgid "Persian" msgstr "Forscha" -#: libraries/messages.inc.php:647 libraries/mysql_charsets.lib.php:250 +#: libraries/messages.inc.php:643 libraries/mysql_charsets.lib.php:250 msgid "phone book" msgstr "telefonlar kitobi" -#: libraries/messages.inc.php:648 +#: libraries/messages.inc.php:644 msgid "PHP array" msgstr "PHP massivi" -#: libraries/messages.inc.php:650 main.php:213 +#: libraries/messages.inc.php:646 main.php:213 msgid "PHP extension" msgstr "PHP kengaytmasi" -#: libraries/messages.inc.php:654 libraries/relation.lib.php:163 +#: libraries/messages.inc.php:650 libraries/relation.lib.php:163 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." @@ -4584,162 +4584,162 @@ msgstr "" "(config.inc.php) faylidagi mufassal tanlovlarni faollashtirish, " "masalan, config.sample.inc.php dan boshlab." -#: libraries/messages.inc.php:655 libraries/relation.lib.php:159 +#: libraries/messages.inc.php:651 libraries/relation.lib.php:159 msgid "Quick steps to setup advanced features:" msgstr "Mufassal tanlovlarni tеz sozlash uchun qadamlars:" -#: libraries/messages.inc.php:656 libraries/relation.lib.php:161 +#: libraries/messages.inc.php:652 libraries/relation.lib.php:161 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" "Kеrakli jadvallarni script/create_tables.sql kod yordamida " "tuzish." -#: libraries/messages.inc.php:657 libraries/relation.lib.php:162 +#: libraries/messages.inc.php:653 libraries/relation.lib.php:162 msgid "Create a pma user and give access to these tables." msgstr "" "phpMyAdmin foydalanuvchisi qo‘shish va ushbu jadvallarga ruxsat bеrish." -#: libraries/messages.inc.php:658 libraries/relation.lib.php:164 +#: libraries/messages.inc.php:654 libraries/relation.lib.php:164 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" "Yangilangan konfiguratsiya fayli ishga tushishi uchun, phpMyAdmin dasturidan " "chiqib, qayta kiring." -#: libraries/messages.inc.php:661 libraries/mysql_charsets.lib.php:274 +#: libraries/messages.inc.php:657 libraries/mysql_charsets.lib.php:274 msgid "Polish" msgstr "Polyakcha" -#: libraries/messages.inc.php:662 libraries/replication_gui.lib.php:67 +#: libraries/messages.inc.php:658 libraries/replication_gui.lib.php:67 #: server_synchronize.php:1163 msgid "Port" msgstr "Port" -#: libraries/messages.inc.php:667 tbl_indexes.php:67 +#: libraries/messages.inc.php:663 tbl_indexes.php:67 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Birlamchi indeks nomi \"PRIMARY\" bo‘lishi kerak!" -#: libraries/messages.inc.php:668 tbl_indexes.php:184 +#: libraries/messages.inc.php:664 tbl_indexes.php:184 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "(\"PRIMARY\" nomi faqat birlamchi indeksgaega bo‘lishi shart!)" -#: libraries/messages.inc.php:669 libraries/mult_submits.inc.php:76 +#: libraries/messages.inc.php:665 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:474 msgid "Primary" msgstr "Birlamchi" -#: libraries/messages.inc.php:673 server_privileges.php:227 +#: libraries/messages.inc.php:669 server_privileges.php:227 msgid "Includes all privileges except GRANT." msgstr "GRANT dan tashqari barcha privilegiyalarni o‘z ichiga oladi" -#: libraries/messages.inc.php:674 server_privileges.php:153 +#: libraries/messages.inc.php:670 server_privileges.php:153 #: server_privileges.php:476 msgid "Allows altering the structure of existing tables." msgstr "Mavjud jadvallarning tuzilishini o‘zgartirishga ruxsat beradi" -#: libraries/messages.inc.php:675 server_privileges.php:169 +#: libraries/messages.inc.php:671 server_privileges.php:169 #: server_privileges.php:482 msgid "Allows altering and dropping stored routines." msgstr "Saqlanadigan muolajalarni o‘zgartirish va o‘chirishga ruxsat beradi" -#: libraries/messages.inc.php:676 server_privileges.php:145 +#: libraries/messages.inc.php:672 server_privileges.php:145 #: server_privileges.php:475 msgid "Allows creating new databases and tables." msgstr "Yangi ma`lumotlar bazalari va jadvallar tuzishga ruxsat beradi" -#: libraries/messages.inc.php:677 server_privileges.php:168 +#: libraries/messages.inc.php:673 server_privileges.php:168 #: server_privileges.php:481 msgid "Allows creating stored routines." msgstr "Saqlanadigan muolajalar tuzishga ruxsat beradi" -#: libraries/messages.inc.php:678 server_privileges.php:475 +#: libraries/messages.inc.php:674 server_privileges.php:475 msgid "Allows creating new tables." msgstr "Yangi jadvallar tuzishga ruxsat beradi" -#: libraries/messages.inc.php:679 server_privileges.php:156 +#: libraries/messages.inc.php:675 server_privileges.php:156 #: server_privileges.php:479 msgid "Allows creating temporary tables." msgstr "Vaqtinchalik jadvallar tuzishga ruxsat beradi" -#: libraries/messages.inc.php:680 server_privileges.php:170 +#: libraries/messages.inc.php:676 server_privileges.php:170 #: server_privileges.php:515 msgid "Allows creating, dropping and renaming user accounts." msgstr "" "Foydalanuvchilar hisobini qo‘shish, o‘chirish va o‘zgartirishga ruxsat beradi" -#: libraries/messages.inc.php:681 server_privileges.php:160 +#: libraries/messages.inc.php:677 server_privileges.php:160 #: server_privileges.php:164 server_privileges.php:487 #: server_privileges.php:491 msgid "Allows creating new views." msgstr "Yangi namoyishlar tuzish(CREATE VIEW)ga ruxsat beradi" -#: libraries/messages.inc.php:682 server_privileges.php:144 +#: libraries/messages.inc.php:678 server_privileges.php:144 #: server_privileges.php:467 msgid "Allows deleting data." msgstr "Ma`lumotlarni o‘chirishga ruxsat beradi" -#: libraries/messages.inc.php:683 server_privileges.php:146 +#: libraries/messages.inc.php:679 server_privileges.php:146 #: server_privileges.php:478 msgid "Allows dropping databases and tables." msgstr "Ma`lumotlar bazalarini va jadvallarni o‘chirishga ruxsat beradi" -#: libraries/messages.inc.php:684 server_privileges.php:478 +#: libraries/messages.inc.php:680 server_privileges.php:478 msgid "Allows dropping tables." msgstr "Jadvallarni o‘chirishga rux`sat beradi" -#: libraries/messages.inc.php:685 server_privileges.php:161 +#: libraries/messages.inc.php:681 server_privileges.php:161 #: server_privileges.php:495 msgid "Allows to set up events for the event scheduler" msgstr "Kechiktirilgan hodisalarni sozlashga ruxsat beradi" -#: libraries/messages.inc.php:686 server_privileges.php:171 +#: libraries/messages.inc.php:682 server_privileges.php:171 #: server_privileges.php:483 msgid "Allows executing stored routines." msgstr "Saqlanadigan muolajalarni bajarishga ruxsat beradi" -#: libraries/messages.inc.php:687 server_privileges.php:150 +#: libraries/messages.inc.php:683 server_privileges.php:150 #: server_privileges.php:470 msgid "Allows importing data from and exporting data into files." msgstr "Ma`lumotlarni fayldan import va faylga eksport qilishga ruxsat beradi" -#: libraries/messages.inc.php:688 server_privileges.php:501 +#: libraries/messages.inc.php:684 server_privileges.php:501 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Foydalanuvchilarni qo‘shish va privilegiyalar jadvalini qayta yuklamasdan " "privilegiyalar qo‘shishga ruxsat beradi" -#: libraries/messages.inc.php:689 server_privileges.php:152 +#: libraries/messages.inc.php:685 server_privileges.php:152 #: server_privileges.php:477 msgid "Allows creating and dropping indexes." msgstr "Indekslar qo‘shish va ularni o‘chirishga ruxsat beradi" -#: libraries/messages.inc.php:690 server_privileges.php:142 +#: libraries/messages.inc.php:686 server_privileges.php:142 #: server_privileges.php:403 server_privileges.php:465 msgid "Allows inserting and replacing data." msgstr "Ma`lumot qo‘yish va o‘zgartirishga ruxsat beradi" -#: libraries/messages.inc.php:691 server_privileges.php:157 +#: libraries/messages.inc.php:687 server_privileges.php:157 #: server_privileges.php:510 msgid "Allows locking tables for the current thread." msgstr "Joriy oqim uchun jadvalni blokirovku qilishga ruxsat beradi" -#: libraries/messages.inc.php:692 server_privileges.php:607 +#: libraries/messages.inc.php:688 server_privileges.php:607 #: server_privileges.php:609 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Foydalanuvchi bir soat davomida o‘rnatishi mumkin bo‘lgan yangi ulanishlar " "soni" -#: libraries/messages.inc.php:693 server_privileges.php:595 +#: libraries/messages.inc.php:689 server_privileges.php:595 #: server_privileges.php:597 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Foydalanuvchi bir soat davomida yuborishi mumkin bo‘lgan so‘rovlar soni" -#: libraries/messages.inc.php:694 server_privileges.php:601 +#: libraries/messages.inc.php:690 server_privileges.php:601 #: server_privileges.php:603 msgid "" "Limits the number of commands that change any table or database the user may " @@ -4748,64 +4748,64 @@ msgstr "" "Foydalanuvchi bir soat davomida bajarishi mumkin bo‘lgan biron-bir jadval " "yoki ma`lumotlar bazasini o‘zgartiradigan buyruqlar soni" -#: libraries/messages.inc.php:695 server_privileges.php:613 +#: libraries/messages.inc.php:691 server_privileges.php:613 #: server_privileges.php:615 msgid "Limits the number of simultaneous connections the user may have." msgstr "" "Bir foydalanuvchi tomonidan bir vaqtning o‘zida o‘rnatishi mumkin bo‘lgan " "ulanishlar soni" -#: libraries/messages.inc.php:696 server_privileges.php:149 +#: libraries/messages.inc.php:692 server_privileges.php:149 #: server_privileges.php:505 msgid "Allows viewing processes of all users" msgstr "Barcha foydalanuvchilarning jarayonlarini ko‘rishga ruxsat beradi" -#: libraries/messages.inc.php:697 server_privileges.php:151 +#: libraries/messages.inc.php:693 server_privileges.php:151 #: server_privileges.php:409 server_privileges.php:511 msgid "Has no effect in this MySQL version." msgstr "MySQL-serverning ushbu versiyada bunday xususiyat mavjud emas!" -#: libraries/messages.inc.php:698 server_privileges.php:147 +#: libraries/messages.inc.php:694 server_privileges.php:147 #: server_privileges.php:506 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Server sozlanishlarini qayta yuklashga va uning keshlarini tozalashga ruxsat " "beradi" -#: libraries/messages.inc.php:699 server_privileges.php:159 +#: libraries/messages.inc.php:695 server_privileges.php:159 #: server_privileges.php:513 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Bosh va tobe serverlarning joylashishi haqidagi ma`lumotni talab qilishga " "ruxsat beradi" -#: libraries/messages.inc.php:700 server_privileges.php:158 +#: libraries/messages.inc.php:696 server_privileges.php:158 #: server_privileges.php:514 msgid "Needed for the replication slaves." msgstr "" "Replikatsiya (zaxira nusxa ko‘chirish) vaqtida tobe serverlar uchun kerak" -#: libraries/messages.inc.php:701 server_privileges.php:141 +#: libraries/messages.inc.php:697 server_privileges.php:141 #: server_privileges.php:400 server_privileges.php:464 msgid "Allows reading data." msgstr "Ma`lumotlarni chaqirishga ruxsat beradi" -#: libraries/messages.inc.php:702 server_privileges.php:154 +#: libraries/messages.inc.php:698 server_privileges.php:154 #: server_privileges.php:508 msgid "Gives access to the complete list of databases." msgstr "Ma`lumotlar bazalarining to‘liq ro‘yxatiga ruxsat beradi" -#: libraries/messages.inc.php:703 server_privileges.php:165 +#: libraries/messages.inc.php:699 server_privileges.php:165 #: server_privileges.php:167 server_privileges.php:480 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Namoyish tuzadigan so‘rov(SHOW CREATE VIEW)ni bajarishga ruxsat beradi" -#: libraries/messages.inc.php:704 server_privileges.php:148 +#: libraries/messages.inc.php:700 server_privileges.php:148 #: server_privileges.php:507 msgid "Allows shutting down the server." msgstr "Server ishini yakunlashga ruxsat beradi" -#: libraries/messages.inc.php:705 server_privileges.php:155 +#: libraries/messages.inc.php:701 server_privileges.php:155 #: server_privileges.php:504 msgid "" "Allows connecting, even if maximum number of connections is reached; " @@ -4817,57 +4817,57 @@ msgstr "" "global o‘zgaruvchilar o‘rnatish yoki boshqa foydalanuvchi jarayonini " "o‘chirish)" -#: libraries/messages.inc.php:706 server_privileges.php:162 +#: libraries/messages.inc.php:702 server_privileges.php:162 #: server_privileges.php:496 msgid "Allows creating and dropping triggers" msgstr "" "Triggerlar (ma`lum shartlar bajarilganda avtomatik ishga tushadigan " "jarayonlar) tuzish va ularni o‘chirishga ruxsat beradi" -#: libraries/messages.inc.php:707 server_privileges.php:143 +#: libraries/messages.inc.php:703 server_privileges.php:143 #: server_privileges.php:406 server_privileges.php:466 msgid "Allows changing data." msgstr "Ma`lumotlarni o‘zgartirishga ruxsat beradi" -#: libraries/messages.inc.php:708 server_privileges.php:221 +#: libraries/messages.inc.php:704 server_privileges.php:221 msgid "No privileges." msgstr "Privilegiyalar yo‘q" -#: libraries/messages.inc.php:710 server_privileges.php:1296 +#: libraries/messages.inc.php:706 server_privileges.php:1296 msgid "The privileges were reloaded successfully." msgstr "Privilegiyalar muvaffaqiyatli qayta yuklandi." -#: libraries/messages.inc.php:712 libraries/server_links.inc.php:80 +#: libraries/messages.inc.php:708 libraries/server_links.inc.php:80 msgid "Processes" msgstr "Jarayonlar" -#: libraries/messages.inc.php:714 main.php:187 +#: libraries/messages.inc.php:710 main.php:187 msgid "Protocol version" msgstr "Protokol versiyasi" -#: libraries/messages.inc.php:715 +#: libraries/messages.inc.php:711 msgid "Put fields names in the first row" msgstr "Maydon nomlarini birinchi qatorga joylashtirish" -#: libraries/messages.inc.php:720 server_synchronize.php:1003 +#: libraries/messages.inc.php:716 server_synchronize.php:1003 msgid "The following queries have been executed:" msgstr "Quyidagi so‘rovlar bajarildi:" -#: libraries/messages.inc.php:721 server_status.php:251 +#: libraries/messages.inc.php:717 server_status.php:251 msgid "Query cache" msgstr "So‘rovlar keshi" -#: libraries/messages.inc.php:722 libraries/navigation_header.inc.php:80 +#: libraries/messages.inc.php:718 libraries/navigation_header.inc.php:80 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 setup/lib/messages.inc.php:122 msgid "Query window" msgstr "So‘rovlar oynasi" -#: libraries/messages.inc.php:725 querywindow.php:109 querywindow.php:217 +#: libraries/messages.inc.php:721 querywindow.php:109 querywindow.php:217 msgid "SQL history" msgstr "SQL-so‘rovlar tarixi" -#: libraries/messages.inc.php:726 server_status.php:490 +#: libraries/messages.inc.php:722 server_status.php:490 #, php-format msgid "" "Query statistics: Since its startup, %s queries have been sent to the " @@ -4876,93 +4876,93 @@ msgstr "" "So‘rovlar statiskasi: ishga tushirilgandan vaqtdan boshlab serverga " "yuborilgan so‘rovlar soni - \"%s\"." -#: libraries/messages.inc.php:728 server_status.php:554 +#: libraries/messages.inc.php:724 server_status.php:554 msgid "Query type" msgstr "So‘rov turi" -#: libraries/messages.inc.php:729 libraries/sql_query_form.lib.php:381 +#: libraries/messages.inc.php:725 libraries/sql_query_form.lib.php:381 msgid "Do not overwrite this query from outside the window" msgstr "So‘rovlar oynasi ichidagi ma`lumotlarni blokirovka qilish" -#: libraries/messages.inc.php:732 tbl_operations.php:663 +#: libraries/messages.inc.php:728 tbl_operations.php:663 msgid "Rebuild" msgstr "Qayta qurish" -#: libraries/messages.inc.php:733 server_status.php:394 +#: libraries/messages.inc.php:729 server_status.php:394 msgid "Received" msgstr "Qabul qilindi" -#: libraries/messages.inc.php:734 pmd_pdf.php:89 +#: libraries/messages.inc.php:730 pmd_pdf.php:89 msgid "recommended" msgstr "tavsiya etilgan" -#: libraries/messages.inc.php:736 tbl_operations.php:702 +#: libraries/messages.inc.php:732 tbl_operations.php:702 msgid "Check referential integrity:" msgstr "Ma`lumotlar yaxlitligini tekshirish:" -#: libraries/messages.inc.php:740 pdf_schema.php:1032 pdf_schema.php:1141 +#: libraries/messages.inc.php:736 pdf_schema.php:1032 pdf_schema.php:1141 msgid "Relational schema" msgstr "Aloqalar sxemasi" -#: libraries/messages.inc.php:744 tbl_relation.php:399 +#: libraries/messages.inc.php:740 tbl_relation.php:399 msgid "Relations" msgstr "Aloqalar" -#: libraries/messages.inc.php:745 tbl_structure.php:507 tbl_structure.php:509 +#: libraries/messages.inc.php:741 tbl_structure.php:507 tbl_structure.php:509 msgid "Relation view" msgstr "Aloqalarni ko‘rish" -#: libraries/messages.inc.php:746 server_privileges.php:1246 +#: libraries/messages.inc.php:742 server_privileges.php:1246 msgid "Reloading the privileges" msgstr "Privilegiyalar qayta yuklanmoqda" -#: libraries/messages.inc.php:747 navigation.php:66 navigation.php:67 +#: libraries/messages.inc.php:743 navigation.php:66 navigation.php:67 #: navigation.php:70 msgid "Reload navigation frame" msgstr "Navigatsiya oynasini qayta yuklash" -#: libraries/messages.inc.php:748 pmd_general.php:80 +#: libraries/messages.inc.php:744 pmd_general.php:80 msgid "Reload" msgstr "Qayta yuklash" -#: libraries/messages.inc.php:749 libraries/server_synchronize.lib.php:1345 +#: libraries/messages.inc.php:745 libraries/server_synchronize.lib.php:1345 #: libraries/server_synchronize.lib.php:1371 msgid "Remote server" msgstr "Masofadagi sеrvеr" -#: libraries/messages.inc.php:750 +#: libraries/messages.inc.php:746 msgid "Remove CRLF characters within fields" msgstr "Maydonlar ichidagi satrdan-satrga ko‘chirish belgilarini olib tashlash" -#: libraries/messages.inc.php:751 tbl_operations.php:676 +#: libraries/messages.inc.php:747 tbl_operations.php:676 msgid "Remove partitioning" msgstr "Bo‘laklarni (PARTITIONS) o‘chirish" -#: libraries/messages.inc.php:752 server_privileges.php:1575 +#: libraries/messages.inc.php:748 server_privileges.php:1575 msgid "Remove selected users" msgstr "Belgilangan foydalanuvchilarni o‘chirish" -#: libraries/messages.inc.php:755 tbl_operations.php:338 +#: libraries/messages.inc.php:751 tbl_operations.php:338 msgid "Rename table to" msgstr "Jadval nomini o‘zgartirish" -#: libraries/messages.inc.php:756 view_operations.php:93 +#: libraries/messages.inc.php:752 view_operations.php:93 msgid "Rename view to" msgstr "Ko‘rinish nomini o‘zgartirish" -#: libraries/messages.inc.php:757 tbl_operations.php:664 +#: libraries/messages.inc.php:753 tbl_operations.php:664 msgid "Repair" msgstr "Tiklash" -#: libraries/messages.inc.php:759 +#: libraries/messages.inc.php:755 msgid "Replace NULL by" msgstr "NULL qiymatni quyidagiga almashtirish" -#: libraries/messages.inc.php:760 +#: libraries/messages.inc.php:756 msgid "Replace table data with file" msgstr "Jadval ma`lumotlarini fayl ma`lumotlari bilan almashtirish" -#: libraries/messages.inc.php:761 server_replication.php:228 +#: libraries/messages.inc.php:757 server_replication.php:228 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -4970,46 +4970,46 @@ msgstr "" "Endi quyidagi qatorlarni \"my.cnf\" faylining oxiriga qo‘shing va MySQL " "sеrvеrini qayta yuklang." -#: libraries/messages.inc.php:762 libraries/replication_gui.lib.php:236 +#: libraries/messages.inc.php:758 libraries/replication_gui.lib.php:236 #: server_replication.php:194 msgid "Add slave replication user" msgstr "Tobе rеplikatsiya foydalanuvchisini qo‘shish" -#: libraries/messages.inc.php:763 server_replication.php:74 +#: libraries/messages.inc.php:759 server_replication.php:74 #, php-format msgid "Master server changed succesfully to %s" msgstr "Bosh rеplikatsiya sеrvеri quyidagiga o‘zgartirildi: %s" -#: libraries/messages.inc.php:764 server_replication.php:182 +#: libraries/messages.inc.php:760 server_replication.php:182 msgid "This server is configured as master in a replication process." msgstr "" "Ushbu sеrvеr rеplikatsiya jarayonida \"bosh\" dеb konfiguratsiya qilingan." -#: libraries/messages.inc.php:765 server_replication.php:322 +#: libraries/messages.inc.php:761 server_replication.php:322 msgid "Control slave:" msgstr "Tobе sеrvеrni nazorat qilish:" -#: libraries/messages.inc.php:766 server_replication.php:65 +#: libraries/messages.inc.php:762 server_replication.php:65 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" "Bosh sеrvеr pozitsiyasini o‘qib bo‘lmadi. Sеrvеrdagi privilеgilarda muammo " "bo‘lishi mumkin." -#: libraries/messages.inc.php:767 server_replication.php:58 +#: libraries/messages.inc.php:763 server_replication.php:58 #, php-format msgid "Unable to connect to master %s." msgstr "%s bosh sеrvеriga ulanib bo‘lmadi." -#: libraries/messages.inc.php:768 server_replication.php:221 +#: libraries/messages.inc.php:764 server_replication.php:221 msgid "Replicate all databases; Ignore:" msgstr "Barcha bazalarni rеplikatsiya qilish; Quyidagilardan tashqari:" -#: libraries/messages.inc.php:769 server_replication.php:222 +#: libraries/messages.inc.php:765 server_replication.php:222 msgid "Ignore all databases; Replicate:" msgstr "Barcha bazalarga e’tibor bеrmaslik; Quyidagilardan tashqari:" -#: libraries/messages.inc.php:770 server_replication.php:218 +#: libraries/messages.inc.php:766 server_replication.php:218 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -5024,16 +5024,16 @@ msgstr "" "bazalarnigina rеplikatsiya qilishda foydali) tanlashingiz mumkin. " "Rеplikatsiya usulini tanlang:" -#: libraries/messages.inc.php:771 server_replication.php:217 +#: libraries/messages.inc.php:767 server_replication.php:217 msgid "Master configuration" msgstr "Bosh sеrvеr konfiguratsiyasi" -#: libraries/messages.inc.php:772 server_replication.php:181 +#: libraries/messages.inc.php:768 server_replication.php:181 #: server_replication.php:209 msgid "Master replication" msgstr "Bosh sеrvеr rеplikatsiyasi" -#: libraries/messages.inc.php:774 server_replication.php:230 +#: libraries/messages.inc.php:770 server_replication.php:230 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " @@ -5043,11 +5043,11 @@ msgstr "" "So‘ng, ushbu sеrvеr \"bosh sеrvеr\" dеb konfiguratsiya qilinganligi haqidagi " "ma’lumotni ko‘rishingiz kеrak." -#: libraries/messages.inc.php:775 server_replication.php:225 +#: libraries/messages.inc.php:771 server_replication.php:225 msgid "Please select databases:" msgstr "Bazalarni tanlang:" -#: libraries/messages.inc.php:776 server_replication.php:210 +#: libraries/messages.inc.php:772 server_replication.php:210 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -5056,7 +5056,7 @@ msgstr "" "Ushbu sеrvеr rеplikatsiya jarayonida \"bosh sеrvеr\" dеb konfiguratsiya " "qilinmagan. Siz uni konfiguratsiya qilmoqchimisiz?" -#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:188 +#: libraries/messages.inc.php:773 libraries/replication_gui.lib.php:188 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." @@ -5064,51 +5064,51 @@ msgstr "" "Ro‘yxatda faqat \"--report-host=host_name\" tanlovi yordamda yuklangan tobе " "sеrvеrlar ko‘rsatilmoqda." -#: libraries/messages.inc.php:778 server_replication.php:187 +#: libraries/messages.inc.php:774 server_replication.php:187 msgid "Show connected slaves" msgstr "Ulangan tobе sеrvеrlarni ko‘rsatish" -#: libraries/messages.inc.php:779 libraries/messages.inc.php:885 +#: libraries/messages.inc.php:775 libraries/messages.inc.php:881 #: server_replication.php:184 server_status.php:281 msgid "Show master status" msgstr "Ulangan bosh sеrvеrlarni ko‘rsatish" -#: libraries/messages.inc.php:780 server_replication.php:334 +#: libraries/messages.inc.php:776 server_replication.php:334 msgid "Skipping error(s) might lead into unsynchronized master and slave!" msgstr "" "Xatolik(lar)ni tashlab kеtish bosh va tobе sеrvеrlarning to‘la " "sinxronizatsiya qilinmaganligiga olib kеlishi mumkin!" -#: libraries/messages.inc.php:781 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:51 #: server_replication.php:347 msgid "Change or reconfigure master server" msgstr "Bosh sеrvеrni o‘zgartirish yoki qayta konfiguratsiya qilish" -#: libraries/messages.inc.php:782 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:778 libraries/replication_gui.lib.php:51 msgid "Slave configuration" msgstr "Tobе sеrvеr konfiguratsiyasi" -#: libraries/messages.inc.php:783 server_replication.php:305 +#: libraries/messages.inc.php:779 server_replication.php:305 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" "Ushbu sеrvеr rеplikatsiya jarayonida \"tobе sеrvеr\" dеb konfiguratsiya " "qilingan. Quyidagi amallardan birini tanlang:" -#: libraries/messages.inc.php:784 server_replication.php:332 +#: libraries/messages.inc.php:780 server_replication.php:332 msgid "Error management:" msgstr "Xatoliklarni boshqarish:" -#: libraries/messages.inc.php:785 server_replication.php:328 +#: libraries/messages.inc.php:781 server_replication.php:328 #, php-format msgid "IO Thread %s only" msgstr "Faqat %s qirish/chiqish oqimini" -#: libraries/messages.inc.php:786 server_replication.php:296 +#: libraries/messages.inc.php:782 server_replication.php:296 msgid "Slave IO Thread not running!" msgstr "Tobе kirish/chiqish oqimi ishlamayapti!" -#: libraries/messages.inc.php:787 server_replication.php:355 +#: libraries/messages.inc.php:783 server_replication.php:355 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -5117,40 +5117,40 @@ msgstr "" "Ushbu sеrvеr rеplikatsiya jarayonida \"tobе sеrvеr\" dеb konfiguratsiya " "qilinmagan. Siz uni konfiguratsiya qilmoqchimisiz?" -#: libraries/messages.inc.php:788 server_replication.php:326 +#: libraries/messages.inc.php:784 server_replication.php:326 msgid "Reset slave" msgstr "Tobе sеrvеrni tiklash" -#: libraries/messages.inc.php:789 server_replication.php:308 +#: libraries/messages.inc.php:785 server_replication.php:308 msgid "See slave status table" msgstr "Tobе sеrvеr statusi jadvalini ko‘rish" -#: libraries/messages.inc.php:790 server_replication.php:336 +#: libraries/messages.inc.php:786 server_replication.php:336 msgid "Skip current error" msgstr "Joriy xatoliklarni tashlab kеtish" -#: libraries/messages.inc.php:791 server_replication.php:340 +#: libraries/messages.inc.php:787 server_replication.php:340 msgid "errors." msgstr " xatoliklar." -#: libraries/messages.inc.php:792 server_replication.php:337 +#: libraries/messages.inc.php:788 server_replication.php:337 msgid "Skip next" msgstr "Kеyingisini tashlab kеtish" -#: libraries/messages.inc.php:793 server_replication.php:248 +#: libraries/messages.inc.php:789 server_replication.php:248 msgid "Slave replication" msgstr "Tobе sеrvеr rеplikatsiyasi" -#: libraries/messages.inc.php:794 server_replication.php:293 +#: libraries/messages.inc.php:790 server_replication.php:293 msgid "Slave SQL Thread not running!" msgstr "Tobе SQL Oqimi ishlamayapti!" -#: libraries/messages.inc.php:795 server_replication.php:327 +#: libraries/messages.inc.php:791 server_replication.php:327 #, php-format msgid "SQL Thread %s only" msgstr "Faqat %s SQL kirish/chiqish oqimini" -#: libraries/messages.inc.php:796 +#: libraries/messages.inc.php:792 #, php-format msgid "" "This MySQL server works as %s in replication process. For further " @@ -5162,162 +5162,162 @@ msgstr "" "uchun, <a href=\"#replication\">replikatsiya bo‘limi</a>ga " "kiring." -#: libraries/messages.inc.php:797 +#: libraries/messages.inc.php:793 msgid "Master status" msgstr "Bosh rеplikatsiya sеrvеri statusi" -#: libraries/messages.inc.php:798 server_status.php:721 +#: libraries/messages.inc.php:794 server_status.php:721 msgid "Replication status" msgstr "Replikatsiya statusi" -#: libraries/messages.inc.php:799 +#: libraries/messages.inc.php:795 msgid "Slave status" msgstr "Tobе rеplikatsiya sеrvеri statusi" -#: libraries/messages.inc.php:800 server_replication.php:311 +#: libraries/messages.inc.php:796 server_replication.php:311 msgid "Synchronize databases with master" msgstr "Bazalarni bosh sеrvеr bilan sinxronizatsiya qilish" -#: libraries/messages.inc.php:801 server_replication.php:71 +#: libraries/messages.inc.php:797 server_replication.php:71 msgid "Unable to change master" msgstr "Bosh sеrvеrni o‘zgartirib bo‘lmadi" -#: libraries/messages.inc.php:802 server_replication.php:51 +#: libraries/messages.inc.php:798 server_replication.php:51 msgid "Unknown error" msgstr "Noma’lum xatolik" -#: libraries/messages.inc.php:803 main.php:163 pdf_pages.php:344 +#: libraries/messages.inc.php:799 main.php:163 pdf_pages.php:344 #: setup/lib/FormDisplay.tpl.php:216 tbl_change.php:1175 msgid "Reset" msgstr "Tozalash" -#: libraries/messages.inc.php:804 server_privileges.php:591 +#: libraries/messages.inc.php:800 server_privileges.php:591 msgid "Resource limits" msgstr "Resurslardan foydalanishni cheklash" -#: libraries/messages.inc.php:805 tbl_change.php:1209 +#: libraries/messages.inc.php:801 tbl_change.php:1209 #, php-format msgid "Restart insertion with %s rows" msgstr "Qo‘yilayotgan qatorlar soni: \"%s\"" -#: libraries/messages.inc.php:807 server_privileges.php:1578 +#: libraries/messages.inc.php:803 server_privileges.php:1578 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Foydalanuvchilarning barcha faol privilegiyalarini bekor qilish, so‘ng " "ularni o‘chirish." -#: libraries/messages.inc.php:808 server_privileges.php:1176 +#: libraries/messages.inc.php:804 server_privileges.php:1176 #, php-format msgid "You have revoked the privileges for %s" msgstr " \"%s\" foydalanuvchining privilegiyalari bekor qilindi." -#: libraries/messages.inc.php:809 server_privileges.php:1333 +#: libraries/messages.inc.php:805 server_privileges.php:1333 msgid "Revoke" msgstr "Bekor qilish" -#: libraries/messages.inc.php:810 libraries/mysql_charsets.lib.php:280 +#: libraries/messages.inc.php:806 libraries/mysql_charsets.lib.php:280 msgid "Romanian" msgstr "Rumincha" -#: libraries/messages.inc.php:813 tbl_printview.php:404 tbl_structure.php:786 +#: libraries/messages.inc.php:809 tbl_printview.php:404 tbl_structure.php:786 msgid "Row length" msgstr "Qator uzunligi" -#: libraries/messages.inc.php:815 tbl_printview.php:414 tbl_structure.php:794 +#: libraries/messages.inc.php:811 tbl_printview.php:414 tbl_structure.php:794 msgid " Row size " msgstr "Qator hajmi" -#: libraries/messages.inc.php:821 tbl_printview.php:366 tbl_structure.php:726 +#: libraries/messages.inc.php:817 tbl_printview.php:366 tbl_structure.php:726 msgid "Row Statistics" msgstr "Qatorlar statistikasi" -#: libraries/messages.inc.php:822 +#: libraries/messages.inc.php:818 #, php-format msgid "running on %s" msgstr "\"%s\" serverda ishlamoqda" -#: libraries/messages.inc.php:824 libraries/sql_query_form.lib.php:223 +#: libraries/messages.inc.php:820 libraries/sql_query_form.lib.php:223 #, php-format msgid "Run SQL query/queries on server %s" msgstr "\"%s\" serverida SQL-so‘rov(lar)ni bajarish " -#: libraries/messages.inc.php:825 libraries/sql_query_form.lib.php:240 +#: libraries/messages.inc.php:821 libraries/sql_query_form.lib.php:240 #: libraries/sql_query_form.lib.php:265 #, php-format msgid "Run SQL query/queries on database %s" msgstr "\"%s\" ma`lumotlar bazasida SQL-so‘rov(lar)ni bajarish" -#: libraries/messages.inc.php:826 libraries/mysql_charsets.lib.php:337 +#: libraries/messages.inc.php:822 libraries/mysql_charsets.lib.php:337 msgid "Russian" msgstr "Ruscha" -#: libraries/messages.inc.php:829 pmd_general.php:68 +#: libraries/messages.inc.php:825 pmd_general.php:68 msgid "Save position" msgstr "Jadvallar joylashishini saqlash" -#: libraries/messages.inc.php:830 libraries/tbl_properties.inc.php:776 +#: libraries/messages.inc.php:826 libraries/tbl_properties.inc.php:776 #: pdf_pages.php:484 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:214 setup/lib/FormDisplay.tpl.php:215 #: tbl_change.php:1126 tbl_indexes.php:248 tbl_relation.php:566 msgid "Save" msgstr "Saqlash" -#: libraries/messages.inc.php:831 +#: libraries/messages.inc.php:827 msgid "The scale factor is too small to fit the schema on one page" msgstr "Sxema bitta sahifaga sig‘maydi. Masshtabni kichraytirish zarur." -#: libraries/messages.inc.php:843 main.php:298 +#: libraries/messages.inc.php:839 main.php:298 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "" "cookie-autentifikatsiya ishlatilganda, konfiguratsion fayldagi $cfg" "[\"blowfish_secret\"] direktivasi qiymatini o‘rnatib parol belgilash kerak." -#: libraries/messages.inc.php:844 navigation.php:353 navigation.php:516 +#: libraries/messages.inc.php:840 navigation.php:353 navigation.php:516 msgid "Please select a database" msgstr "Ma`lumotlar bazasini tanlang" -#: libraries/messages.inc.php:846 server_binlog.php:120 +#: libraries/messages.inc.php:842 server_binlog.php:120 msgid "Select binary log to view" msgstr "Ko‘rish uchun binar jurnalni tanlang" -#: libraries/messages.inc.php:847 tbl_select.php:270 +#: libraries/messages.inc.php:843 tbl_select.php:270 msgid "Select fields (at least one):" msgstr "Maydonni tanlang (kamida bitta):" -#: libraries/messages.inc.php:851 pdf_pages.php:320 +#: libraries/messages.inc.php:847 pdf_pages.php:320 msgid "Select Tables" msgstr "Jadvallarni tanlang" -#: libraries/messages.inc.php:853 server_status.php:404 +#: libraries/messages.inc.php:849 server_status.php:404 msgid "Sent" msgstr "Yuborildi" -#: libraries/messages.inc.php:857 libraries/select_server.lib.php:45 +#: libraries/messages.inc.php:853 libraries/select_server.lib.php:45 #: setup/frames/index.inc.php:97 setup/lib/messages.inc.php:115 msgid "Servers" msgstr "Serverlar" -#: libraries/messages.inc.php:858 server_status.php:255 +#: libraries/messages.inc.php:854 server_status.php:255 msgid "Delayed inserts" msgstr "Kechiktirilgan qo‘yilmalar" -#: libraries/messages.inc.php:859 server_status.php:46 +#: libraries/messages.inc.php:855 server_status.php:46 msgid "Runtime Information" msgstr "MySQL-serverning hozirgi holati" -#: libraries/messages.inc.php:860 server_status.php:350 +#: libraries/messages.inc.php:856 server_status.php:350 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "" "MySQL-server \"%s\" davomida ishlamoqda. Ishga tushirilgan vaqt: \"%s\"." -#: libraries/messages.inc.php:861 libraries/server_links.inc.php:53 +#: libraries/messages.inc.php:857 libraries/server_links.inc.php:53 #: server_engines.php:112 server_engines.php:116 server_status.php:304 #: test/theme.php:105 msgid "Variables" msgstr "O‘zgaruvchilar" -#: libraries/messages.inc.php:862 server_status.php:383 +#: libraries/messages.inc.php:858 server_status.php:383 msgid "" "Server traffic: These tables show the network traffic statistics of " "this MySQL server since its startup." @@ -5325,11 +5325,11 @@ msgstr "" "Trafik: MySQL-server ishga tushirilgandan vaqtdan boshlab tarmoq trafiki " "statistikasi." -#: libraries/messages.inc.php:863 server_variables.php:35 +#: libraries/messages.inc.php:859 server_variables.php:35 msgid "Server variables and settings" msgstr "Server o‘zgaruvchilari va sozlanishlari" -#: libraries/messages.inc.php:865 main.php:290 +#: libraries/messages.inc.php:861 main.php:290 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -5342,7 +5342,7 @@ msgstr "" "davomiyligidan kichikroq, shuning uchun login sessiyangiz phpMyAdmin " "dasturida konfiguratsiya qilganingizdan tezroq tugaydi." -#: libraries/messages.inc.php:866 +#: libraries/messages.inc.php:862 msgid "" "Cannot start session without errors, please check errors given in your PHP " "and/or webserver log file and configure your PHP installation properly." @@ -5350,11 +5350,11 @@ msgstr "" "Sessiya mexanizmi ishida xatolik yuz berdi. PHP va/yoki Veb-server jurnali " "tekshirib ko‘ring va kerakli tuzatishlar kiriting." -#: libraries/messages.inc.php:867 server_variables.php:55 +#: libraries/messages.inc.php:863 server_variables.php:55 msgid "Session value" msgstr "Sessiya qiymatlari" -#: libraries/messages.inc.php:868 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:864 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 " @@ -5366,44 +5366,44 @@ msgstr "" "va bittalik qo‘shtirnoq (\") belgilari oldidan teskari egri chiziq bo‘lishi " "kerak, masalan: \"\\\\xyz\" yoki \"a\\\"b\"." -#: libraries/messages.inc.php:876 server_binlog.php:192 server_binlog.php:195 +#: libraries/messages.inc.php:872 server_binlog.php:192 server_binlog.php:195 #: server_processlist.php:49 server_processlist.php:51 msgid "Show Full Queries" msgstr "So‘rovlarning kengaytirilgan ko‘rinishi" -#: libraries/messages.inc.php:878 pmd_general.php:64 +#: libraries/messages.inc.php:874 pmd_general.php:64 msgid "Show/Hide left menu" msgstr "Chap menyuni ko‘rsatish/yashirish" -#: libraries/messages.inc.php:880 sql.php:513 +#: libraries/messages.inc.php:876 sql.php:513 msgid "Showing as PHP code" msgstr "PHP-kod sifatida ko‘rsatish" -#: libraries/messages.inc.php:882 sql.php:516 tbl_replace.php:360 +#: libraries/messages.inc.php:878 sql.php:516 tbl_replace.php:360 msgid "Showing SQL query" msgstr "SQL-so‘rovni ko‘rsatish" -#: libraries/messages.inc.php:883 tbl_change.php:1132 +#: libraries/messages.inc.php:879 tbl_change.php:1132 msgid "Show insert query" msgstr "Kiritilgan so‘rovni ko‘rsatish" -#: libraries/messages.inc.php:886 server_status.php:273 +#: libraries/messages.inc.php:882 server_status.php:273 msgid "Show open tables" msgstr "Ochiq jadvallar ro‘yxati" -#: libraries/messages.inc.php:887 main.php:219 +#: libraries/messages.inc.php:883 main.php:219 msgid "Show PHP information" msgstr "PHP haqida ma`lumotni ko‘rsatish" -#: libraries/messages.inc.php:889 server_status.php:278 +#: libraries/messages.inc.php:885 server_status.php:278 msgid "Show slave hosts" msgstr "Tobe serverlar haqida ma`lumot" -#: libraries/messages.inc.php:890 server_status.php:284 +#: libraries/messages.inc.php:886 server_status.php:284 msgid "Show slave status" msgstr "Replikatsiya serveri ahvoli haqida ma`lumot" -#: libraries/messages.inc.php:891 +#: libraries/messages.inc.php:887 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -5412,11 +5412,11 @@ msgstr "" "Binar jurnali keshini ishlatib, \"binlog_cache_size\" qiymatidan oshib, o‘z " "ichiga olgan SQL-jumlalari vaqtinchalik faylga saqlangan tranzaksiyalar soni." -#: libraries/messages.inc.php:892 +#: libraries/messages.inc.php:888 msgid "The number of transactions that used the temporary binary log cache." msgstr "Binar jurnal keshini ishlatgan tranzaksiyalar soni." -#: libraries/messages.inc.php:893 +#: libraries/messages.inc.php:889 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -5429,11 +5429,11 @@ msgstr "" "saqlanishini ta`minlash maqsadida tmp_table_size o‘zgaruvchisining qiymatini " "oshirish tavsiya etiladi." -#: libraries/messages.inc.php:894 +#: libraries/messages.inc.php:890 msgid "How many temporary files mysqld has created." msgstr "MySQL serveri (mysqld) tomonidan tuzilgan vaqtinchalik fayllar soni." -#: libraries/messages.inc.php:895 +#: libraries/messages.inc.php:891 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -5441,7 +5441,7 @@ msgstr "" "Server tomonidan SQL-jumlalari bajarilayotgan vaqtda xotirada avtomatik " "tuzilgan vaqtinchalik jadvallar soni." -#: libraries/messages.inc.php:896 +#: libraries/messages.inc.php:892 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -5449,31 +5449,31 @@ msgstr "" "\"INSERT DELAYED\" so‘rovlarini qayta ishlash jarayonida yuz bergan xatolar " "(masalan, kalitlar takrorlanishi oqibatida) soni." -#: libraries/messages.inc.php:897 +#: libraries/messages.inc.php:893 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "Bajariladigan \"INSERT DELAYED\" so‘rovlar soni." -#: libraries/messages.inc.php:898 +#: libraries/messages.inc.php:894 msgid "The number of INSERT DELAYED rows written." msgstr "" "Ma`lumotlarni kechiktirib qo‘yish (\"INSERT DELAYED\") rejimida yozilgan " "qatorlar soni." -#: libraries/messages.inc.php:899 +#: libraries/messages.inc.php:895 msgid "The number of executed FLUSH statements." msgstr "Bajarilgan \"FLUSH\" buyruqlar soni." -#: libraries/messages.inc.php:900 +#: libraries/messages.inc.php:896 msgid "The number of internal COMMIT statements." msgstr "Ichki \"COMMIT\" buyruqlari soni." -#: libraries/messages.inc.php:901 +#: libraries/messages.inc.php:897 msgid "The number of times a row was deleted from a table." msgstr "Jadvaldal yozuvlarni o‘chirish bo‘yicha sshrovlar soni." -#: libraries/messages.inc.php:902 +#: libraries/messages.inc.php:898 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -5483,7 +5483,7 @@ msgstr "" "berishi mumkin. Bu jarayon topish deb nomlanadi. Handler_discover - topilgan " "jadvallar soni." -#: libraries/messages.inc.php:903 +#: libraries/messages.inc.php:899 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -5492,7 +5492,7 @@ msgstr "" "Indeksdan birinchi yozuvni o‘qishga bo‘lgan so‘rovlar soni. O‘zgaruvchining " "qiymati katta bo‘lsa, server bir necha marotiba indeksni ko‘rib chiqadi." -#: libraries/messages.inc.php:904 +#: libraries/messages.inc.php:900 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -5501,7 +5501,7 @@ msgstr "" "soni. O‘zgaruvchining qiymati kattaligi so‘rov va jadvallar to‘g‘ri " "indekslanganidan dalolat beradi." -#: libraries/messages.inc.php:905 +#: libraries/messages.inc.php:901 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -5511,7 +5511,7 @@ msgstr "" "soni. Hajmi cheklangan indeks ustuniga bo‘lgan so‘rov yoki indeksni ko‘rib " "chiqish vaqtida o‘zgaruvchi qiymati oshadi." -#: libraries/messages.inc.php:906 +#: libraries/messages.inc.php:902 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -5520,7 +5520,7 @@ msgstr "" "o‘qishga bo‘lgan so‘rovlar soni. Odatda optimallashtirish uchun " "qo‘llaniladi: ORDER BY ... DESC." -#: libraries/messages.inc.php:907 +#: libraries/messages.inc.php:903 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -5534,7 +5534,7 @@ msgstr "" "bajarilishi; indekslardan noto‘g‘ri foydalanadigan birlashmalarning " "mavjudligi." -#: libraries/messages.inc.php:908 +#: libraries/messages.inc.php:904 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -5546,35 +5546,35 @@ msgstr "" "jadvallar noto‘g‘ri indekslanganligini yoki so‘rovlar indekslarning " "afzalliklaridan foydalanmayotganligini bildiradi." -#: libraries/messages.inc.php:909 +#: libraries/messages.inc.php:905 msgid "The number of internal ROLLBACK statements." msgstr "ROLLBACK ichki buyruqlar soni." -#: libraries/messages.inc.php:910 +#: libraries/messages.inc.php:906 msgid "The number of requests to update a row in a table." msgstr "Jadvaldagi yozuvlarni yangilashga bo‘lgan so‘rovlar soni." -#: libraries/messages.inc.php:911 +#: libraries/messages.inc.php:907 msgid "The number of requests to insert a row in a table." msgstr "Jadvalga yozuv qo‘yishga bo‘lgan so‘rovlar soni." -#: libraries/messages.inc.php:912 +#: libraries/messages.inc.php:908 msgid "The number of pages containing data (dirty or clean)." msgstr "Ma`lumot mavjud bo‘lgan sahifalar soni (\"kir\" va \"toza\")." -#: libraries/messages.inc.php:913 +#: libraries/messages.inc.php:909 msgid "The number of pages currently dirty." msgstr "\"Kir\" sahifalarning joriy soni." -#: libraries/messages.inc.php:914 +#: libraries/messages.inc.php:910 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Bufer pulidagi tozalash jarayoni (FLUSH) qo‘llanilgan sahifalar soni." -#: libraries/messages.inc.php:915 +#: libraries/messages.inc.php:911 msgid "The number of free pages." msgstr "Bo‘sh sahifalar soni." -#: libraries/messages.inc.php:916 +#: libraries/messages.inc.php:912 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -5584,7 +5584,7 @@ msgstr "" "ustidan o‘qish yoki yozish jarayoni bajarilmoqda, yoki ularni boshqa " "sabablarga ko‘ra tozalash yoki o‘chirish imkoniyati yo‘q." -#: libraries/messages.inc.php:917 +#: libraries/messages.inc.php:913 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -5596,11 +5596,11 @@ msgstr "" "mumkin: \"Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data\"." -#: libraries/messages.inc.php:918 +#: libraries/messages.inc.php:914 msgid "Total size of buffer pool, in pages." msgstr "Bufer pulining umumiy hajmi (sahifalarda)." -#: libraries/messages.inc.php:919 +#: libraries/messages.inc.php:915 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -5609,7 +5609,7 @@ msgstr "" "o‘qishlar soni. Ushbu hol so‘rov jadvalni tasodifiy tartibda ko‘rib " "chiqayotganda ro‘y beradi." -#: libraries/messages.inc.php:920 +#: libraries/messages.inc.php:916 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -5618,12 +5618,12 @@ msgstr "" "soni. Ushbu hol InnoDB jadvalni to‘laligicha ketma-ket ko‘rib chiqayotganda " "ro‘y beradi" -#: libraries/messages.inc.php:921 +#: libraries/messages.inc.php:917 msgid "The number of logical read requests InnoDB has done." msgstr "" "InnoDB tomonidan amalga oshirilgan o‘qishga bo‘lgan ketma-ket so‘rovlar soni." -#: libraries/messages.inc.php:922 +#: libraries/messages.inc.php:918 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -5631,7 +5631,7 @@ msgstr "" "InnoDB bufer pulidan bajar olmagan va sahifalab o‘qishdan foydalangan " "o‘qishga bo‘lgan ketma-ket so‘rovlar soni." -#: libraries/messages.inc.php:923 +#: libraries/messages.inc.php:919 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -5645,51 +5645,51 @@ msgstr "" "bufer pulining hajmi to‘g‘ri belgilangan bo‘lsa, unda kutishlar soni katta " "bo‘lmasligi kerak." -#: libraries/messages.inc.php:924 +#: libraries/messages.inc.php:920 msgid "The number writes done to the InnoDB buffer pool." msgstr "InnoDB bufer puliga amalga oshirilgan yozuvlar soni." -#: libraries/messages.inc.php:925 +#: libraries/messages.inc.php:921 msgid "The number of fsync() operations so far." msgstr "Joriy vaqtda amalga oshirilgan \"fsync()\" operatsiyalari soni." -#: libraries/messages.inc.php:926 +#: libraries/messages.inc.php:922 msgid "The current number of pending fsync() operations." msgstr "Tugallanmagan \"fsync()\" operatsiyalari soni." -#: libraries/messages.inc.php:927 +#: libraries/messages.inc.php:923 msgid "The current number of pending reads." msgstr "Tugallanmagan o‘qish operatsiyalari soni." -#: libraries/messages.inc.php:928 +#: libraries/messages.inc.php:924 msgid "The current number of pending writes." msgstr "Tugallanmagan yozish operatsiyalari soni." -#: libraries/messages.inc.php:929 +#: libraries/messages.inc.php:925 msgid "The amount of data read so far, in bytes." msgstr "Joriy vaqtda o‘qilgan ma`lumotlar yig‘indisi (baytlarda)." -#: libraries/messages.inc.php:930 +#: libraries/messages.inc.php:926 msgid "The total number of data reads." msgstr "Umumiy ma`lumotlarni o‘qish operatsiyalari soni." -#: libraries/messages.inc.php:931 +#: libraries/messages.inc.php:927 msgid "The total number of data writes." msgstr "Umumiy ma`lumotlarni yozish operatsiyalari soni." -#: libraries/messages.inc.php:932 +#: libraries/messages.inc.php:928 msgid "The amount of data written so far, in bytes." msgstr "Joriy vaqtda yozilgan ma`lumotlar yig‘indisi (baytlarda)." -#: libraries/messages.inc.php:933 +#: libraries/messages.inc.php:929 msgid "The number of pages that have been written for doublewrite operations." msgstr "\"doublewrite\" operatsiyalari uchun yozilgan sahifalar soni." -#: libraries/messages.inc.php:934 +#: libraries/messages.inc.php:930 msgid "The number of doublewrite operations that have been performed." msgstr "Bajarilgan \"doublewrite\" operatsiyalari soni." -#: libraries/messages.inc.php:935 +#: libraries/messages.inc.php:931 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -5697,35 +5697,35 @@ msgstr "" "Jurnal buferining hajmi kichik bo‘lganligi sababli, uning tozalanishi " "kutayotgan yozuvlar soni" -#: libraries/messages.inc.php:936 +#: libraries/messages.inc.php:932 msgid "The number of log write requests." msgstr "Jurnalga yozishga bo‘lgan so‘rovlarsoni." -#: libraries/messages.inc.php:937 +#: libraries/messages.inc.php:933 msgid "The number of physical writes to the log file." msgstr "Jurnal faylidagi jismoniy yozuvlar soni." -#: libraries/messages.inc.php:938 +#: libraries/messages.inc.php:934 msgid "The number of fsync() writes done to the log file." msgstr "Jurnal fayliga \"fsync()\" yordamida amalga oshirilgan yozuvlar soni." -#: libraries/messages.inc.php:939 +#: libraries/messages.inc.php:935 msgid "The number of pending log file fsyncs." msgstr "\"fsync()\" yordamida amalga oshirilishi kutilayotgan yozuvlar soni." -#: libraries/messages.inc.php:940 +#: libraries/messages.inc.php:936 msgid "Pending log file writes." msgstr "Tugallanmagan jurnalga yozish so‘rovlari soni." -#: libraries/messages.inc.php:941 +#: libraries/messages.inc.php:937 msgid "The number of bytes written to the log file." msgstr "Jurnal fayliga yozilgan ma`lumotlar hajmi (baytlarda)." -#: libraries/messages.inc.php:942 +#: libraries/messages.inc.php:938 msgid "The number of pages created." msgstr "Tuzilgan sahifalar soni." -#: libraries/messages.inc.php:943 +#: libraries/messages.inc.php:939 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -5734,51 +5734,51 @@ msgstr "" "Ko‘pgina qiymatlar sahifalarda keltiriladi, lekin sahifa hajmi bilgan holda, " "ularni baytlarga o‘tkazish mumkin." -#: libraries/messages.inc.php:944 +#: libraries/messages.inc.php:940 msgid "The number of pages read." msgstr "O‘qilgan sahifalar soni." -#: libraries/messages.inc.php:945 +#: libraries/messages.inc.php:941 msgid "The number of pages written." msgstr "Yozilgan sahifalar soni." -#: libraries/messages.inc.php:946 +#: libraries/messages.inc.php:942 msgid "The number of row locks currently being waited for." msgstr "Hozirda kutilayotgan qator blokirovkalari soni." -#: libraries/messages.inc.php:947 +#: libraries/messages.inc.php:943 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Qator blokirovkasini kutishning o‘rtacha vaqti (millisekundlarda)." -#: libraries/messages.inc.php:948 +#: libraries/messages.inc.php:944 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Qator blokirovkasini kutishning umumiy vaqti (millisekundlarda)." -#: libraries/messages.inc.php:949 +#: libraries/messages.inc.php:945 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Qator blokirovkasini kutishning maksimal vaqti (millisekundlarda)." -#: libraries/messages.inc.php:950 +#: libraries/messages.inc.php:946 msgid "The number of times a row lock had to be waited for." msgstr "Umumiy kutilayotgan qator blokirovkalari soni." -#: libraries/messages.inc.php:951 +#: libraries/messages.inc.php:947 msgid "The number of rows deleted from InnoDB tables." msgstr "InnoDB jadvalidan o‘chirilgan qatorlar soni." -#: libraries/messages.inc.php:952 +#: libraries/messages.inc.php:948 msgid "The number of rows inserted in InnoDB tables." msgstr "InnoDB jadvaliga yozilgan qatorlar soni." -#: libraries/messages.inc.php:953 +#: libraries/messages.inc.php:949 msgid "The number of rows read from InnoDB tables." msgstr "InnoDB jadvallaridan o‘qilgan qatorlar soni." -#: libraries/messages.inc.php:954 +#: libraries/messages.inc.php:950 msgid "The number of rows updated in InnoDB tables." msgstr "InnoDB jadvallarida yangilangan qatorlar soni." -#: libraries/messages.inc.php:955 +#: libraries/messages.inc.php:951 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -5786,7 +5786,7 @@ msgstr "" "Indeks keshidagi o‘zgartirilgan, lekin hali diskka yozilmagan bloklar soni. " "Ushbu parametr, shuningdek, \"Not_flushed_key_blocks\" nomi bilan ham ma`lum." -#: libraries/messages.inc.php:956 +#: libraries/messages.inc.php:952 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -5794,7 +5794,7 @@ msgstr "" "Indeks keshidagi ishlatilmayotgan bloklar soni. Ushbu parametr indeks keshi " "ishlatilish darajasini belgilaydi." -#: libraries/messages.inc.php:957 +#: libraries/messages.inc.php:953 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -5803,11 +5803,11 @@ msgstr "" "Indeks keshidagi ishlatilayotgan bloklar soni. Ushbu qiymat bir vaqtning " "o‘zida ishlatilishi mumkin bo‘lgan bloklar sonini bildiradi." -#: libraries/messages.inc.php:958 +#: libraries/messages.inc.php:954 msgid "The number of requests to read a key block from the cache." msgstr "Indeks keshidagi bloklarni o‘qishga bo‘lgan so‘rovlar soni." -#: libraries/messages.inc.php:959 +#: libraries/messages.inc.php:955 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -5819,15 +5819,15 @@ msgstr "" "murojaatlar koeffitsiyenti quyidagicha hisoblandi: Key_reads/" "Key_read_requests." -#: libraries/messages.inc.php:960 +#: libraries/messages.inc.php:956 msgid "The number of requests to write a key block to the cache." msgstr "Blokni indeks keshiga yozishga bo‘lgan so‘rovlar soni." -#: libraries/messages.inc.php:961 +#: libraries/messages.inc.php:957 msgid "The number of physical writes of a key block to disk." msgstr "Diskdan indeks bloklarini jismoniy yozish operatsiyalari soni." -#: libraries/messages.inc.php:962 +#: libraries/messages.inc.php:958 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -5838,13 +5838,13 @@ msgstr "" "effektivligini taqqoslashda foydali hisoblanadi. Asl nol qiymat hali so‘rov " "kompilyatsiya jarayoni bajarilmaganligini bildiradi." -#: libraries/messages.inc.php:963 +#: libraries/messages.inc.php:959 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" "Kolichestvo strok, ojidayushix vstavki v zaprosax \"INSERT DELAYED\" " "so‘rovlarida qo‘yilishini kutayotgan qatorlar soni." -#: libraries/messages.inc.php:964 +#: libraries/messages.inc.php:960 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -5852,39 +5852,39 @@ msgstr "" "Ochilayotgan jadvallarning umumiy soni. Agar o‘zgaruvchining qiymati katta " "bo‘lsa, jadval keshi (table_cache) hajmini oshirish tavsiya etiladi." -#: libraries/messages.inc.php:965 +#: libraries/messages.inc.php:961 msgid "The number of files that are open." msgstr "Ochiq fayllar soni." -#: libraries/messages.inc.php:966 +#: libraries/messages.inc.php:962 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Ochiq oqimlar soni (jurnal fayllarida ko‘llaniladi). Oqim deb \"fopen" "()\" funksiyasi yordamida ochilgan faylga aytiladi." -#: libraries/messages.inc.php:967 +#: libraries/messages.inc.php:963 msgid "The number of tables that are open." msgstr "Ochiq jadvallar soni." -#: libraries/messages.inc.php:968 +#: libraries/messages.inc.php:964 msgid "The number of free memory blocks in query cache." msgstr "So‘rovlar keshidagi bo‘sh xotira bloklari soni." -#: libraries/messages.inc.php:969 +#: libraries/messages.inc.php:965 msgid "The amount of free memory for query cache." msgstr "So‘rovlar keshi uchun bo‘sh xotira hajmi" -#: libraries/messages.inc.php:970 +#: libraries/messages.inc.php:966 msgid "The number of cache hits." msgstr "" "So‘rovlar keshiga \"tushishlar\" soni, ya`ni keshda turgan so‘rovlar " "tomonidan qoniqtirilgan so‘rovlar soni." -#: libraries/messages.inc.php:971 +#: libraries/messages.inc.php:967 msgid "The number of queries added to the cache." msgstr "So‘rovlar keshiga qo‘shilgan so‘rovlar soni." -#: libraries/messages.inc.php:972 +#: libraries/messages.inc.php:968 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -5896,7 +5896,7 @@ msgstr "" "beradi. So‘rovlar keshi keshdan so‘rovlarni o‘chirishda \"LRU\" (Least " "Recently Used - eng oldingi ishlatilgan) strategiyasidan foydalanadi" -#: libraries/messages.inc.php:973 +#: libraries/messages.inc.php:969 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -5904,24 +5904,24 @@ msgstr "" "Keshlab bo‘lmaydigan yoki keshlash \"SQL_NO_CACHE\" kalit so‘zi yordamida " "so‘ndirilgan so‘rovlar soni." -#: libraries/messages.inc.php:974 +#: libraries/messages.inc.php:970 msgid "The number of queries registered in the cache." msgstr "Keshda registratsiya qilingan so‘rovlar soni." -#: libraries/messages.inc.php:975 +#: libraries/messages.inc.php:971 msgid "The total number of blocks in the query cache." msgstr "So‘rovlar keshiga ajratilgan xotira bloklarning umumiy soni." -#: libraries/messages.inc.php:976 +#: libraries/messages.inc.php:972 msgctxt "$strShowStatusReset" msgid "Reset" msgstr "Bekor qilish" -#: libraries/messages.inc.php:977 +#: libraries/messages.inc.php:973 msgid "The status of failsafe replication (not yet implemented)." msgstr "Barqaror replikatsiyalar soni (hali amalga oshirilmagan)." -#: libraries/messages.inc.php:978 +#: libraries/messages.inc.php:974 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -5929,13 +5929,13 @@ msgstr "" "Indeks ishlatmasdan bajarilgan birlashma so‘rovlar soni. Agar o‘zgaruvchi " "qiymati 0 bo‘lmasa, jadval indekslarini tekshirish tavsiya etiladi." -#: libraries/messages.inc.php:979 +#: libraries/messages.inc.php:975 msgid "The number of joins that used a range search on a reference table." msgstr "" "Bog‘lanish mavjud bo‘lgan jadvalda diapazon bo‘yicha qidiruv ishlatgan holda " "bajarilgan birlashma so‘rovlar soni." -#: libraries/messages.inc.php:980 +#: libraries/messages.inc.php:976 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -5945,7 +5945,7 @@ msgstr "" "o‘zgaruvchi qiymati 0 bo‘lmasa, jadval indekslarini tekshirish tavsiya " "etiladi." -#: libraries/messages.inc.php:981 +#: libraries/messages.inc.php:977 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -5954,17 +5954,17 @@ msgstr "" "birlashma so‘rovlar soni. Odatda, ushbu o‘zgaruvchining qiymati, hatto juda " "katta bo‘lsa ham, unchalik muhim emas." -#: libraries/messages.inc.php:982 +#: libraries/messages.inc.php:978 msgid "The number of joins that did a full scan of the first table." msgstr "" "Birinchi jadvalga nisbatan to‘laligicha qidiruv ishlatgan holda bajarilgan " "birlashma so‘rovlar soni." -#: libraries/messages.inc.php:983 +#: libraries/messages.inc.php:979 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "Tobe oqim tomonidan joriy vaqtda ochilgan vaqtinchalik jadvallar soni." -#: libraries/messages.inc.php:984 +#: libraries/messages.inc.php:980 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -5972,13 +5972,13 @@ msgstr "" "Ishga tushirilgandan buyon replikatsiyaning tobe oqimi tomonidan bajarilgan " "qayta tranzaksiyalarning umumiy soni." -#: libraries/messages.inc.php:985 +#: libraries/messages.inc.php:981 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Agar ushbu server bosh serverga ulangan holda tobe server sifatida " "ishlayotgan bo‘lsa, ushbu o‘zgaruvchiga \"ON\" qiymati belgilanadi." -#: libraries/messages.inc.php:986 +#: libraries/messages.inc.php:982 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -5986,12 +5986,12 @@ msgstr "" "Tuzilishi uchun slow_launch_time sekunddan ko‘proq vaqt talab etilgan " "oqimlar soni." -#: libraries/messages.inc.php:987 +#: libraries/messages.inc.php:983 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "long_query_time sekunddan ko‘proq vaqt bajarilgan so‘rovlar soni." -#: libraries/messages.inc.php:988 +#: libraries/messages.inc.php:984 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -6001,26 +6001,26 @@ msgstr "" "o‘zgaruvchi qiymati katta bo‘lsa, \"sort_buffer_size\" o‘zgaruvchisining " "qiymatini oshirish zarur." -#: libraries/messages.inc.php:989 +#: libraries/messages.inc.php:985 msgid "The number of sorts that were done with ranges." msgstr "Diapazon yordamida bajarilgan sortirovka operatsiyalari soni." -#: libraries/messages.inc.php:990 +#: libraries/messages.inc.php:986 msgid "The number of sorted rows." msgstr "Sortirovka qilingan qatorlar soni" -#: libraries/messages.inc.php:991 +#: libraries/messages.inc.php:987 msgid "The number of sorts that were done by scanning the table." msgstr "" "Jadvalni to‘laligicha ko‘rib chiqish yordamida bajarilgan sortirovka " "operatsiyalari soni." -#: libraries/messages.inc.php:992 +#: libraries/messages.inc.php:988 msgid "The number of times that a table lock was acquired immediately." msgstr "" "Darhol qoniqtirilgan jadvalni blokirovka qilishga bo‘lgan so‘rovlar soni." -#: libraries/messages.inc.php:993 +#: libraries/messages.inc.php:989 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -6033,7 +6033,7 @@ msgstr "" "so‘ngra esa jadval(lar)ni qismlarga bo‘lish yoki replikatsiya ishlatish " "kerak." -#: libraries/messages.inc.php:994 +#: libraries/messages.inc.php:990 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -6044,11 +6044,11 @@ msgstr "" "Connections. Agar ushbu qiymat qizil rang bilan belgilangan bo‘lsa, unda " "\"thread_cache_size\" o‘zgaruvchisining qiymatini oshirish zarur." -#: libraries/messages.inc.php:995 +#: libraries/messages.inc.php:991 msgid "The number of currently open connections." msgstr "Ochiq joriy ulanishlar soni." -#: libraries/messages.inc.php:996 +#: libraries/messages.inc.php:992 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -6060,28 +6060,28 @@ msgstr "" "o‘zgaruvchisining qiymatini oshirish mumkin (lekin u unumdorlikni unchalik " "ham oshirmaydi)." -#: libraries/messages.inc.php:997 +#: libraries/messages.inc.php:993 msgid "The number of threads that are not sleeping." msgstr "Faol holatda bo‘lgan jarayonlar soni." -#: libraries/messages.inc.php:999 tbl_printview.php:75 +#: libraries/messages.inc.php:995 tbl_printview.php:75 msgid "Show tables" msgstr "Jadvallarni ko‘rsatish" -#: libraries/messages.inc.php:1000 libraries/sql_query_form.lib.php:396 +#: libraries/messages.inc.php:996 libraries/sql_query_form.lib.php:396 msgid " Show this query here again " msgstr "Ushbu so‘rovni qayta ko‘rsatish" -#: libraries/messages.inc.php:1001 libraries/mysql_charsets.lib.php:217 +#: libraries/messages.inc.php:997 libraries/mysql_charsets.lib.php:217 #: libraries/mysql_charsets.lib.php:342 msgid "Simplified Chinese" msgstr "Soddalashtirilgan xitoycha" -#: libraries/messages.inc.php:1002 tbl_operations.php:258 +#: libraries/messages.inc.php:998 tbl_operations.php:258 msgid "(singly)" msgstr "(ustun)" -#: libraries/messages.inc.php:1005 libraries/replication_gui.lib.php:52 +#: libraries/messages.inc.php:1001 libraries/replication_gui.lib.php:52 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" @@ -6090,47 +6090,47 @@ msgstr "" "ishonch hosil qiling. Agar shunday bo‘lmasa, quyidagi qatorlarni [mysqld] " "bo‘limiga qo‘shing:" -#: libraries/messages.inc.php:1006 libraries/mysql_charsets.lib.php:283 +#: libraries/messages.inc.php:1002 libraries/mysql_charsets.lib.php:283 msgid "Slovak" msgstr "Slovakcha" -#: libraries/messages.inc.php:1007 libraries/mysql_charsets.lib.php:286 +#: libraries/messages.inc.php:1003 libraries/mysql_charsets.lib.php:286 msgid "Slovenian" msgstr "Slovencha" -#: libraries/messages.inc.php:1008 pmd_general.php:95 +#: libraries/messages.inc.php:1004 pmd_general.php:95 msgid "Small/Big All" msgstr "Barcha jadvallar ko‘rsatilishini Taxlash/Tiklash" -#: libraries/messages.inc.php:1009 pmd_general.php:91 +#: libraries/messages.inc.php:1005 pmd_general.php:91 msgid "Snap to grid" msgstr "To‘rga bog‘lab qo‘yish" -#: libraries/messages.inc.php:1011 server_synchronize.php:1167 +#: libraries/messages.inc.php:1007 server_synchronize.php:1167 msgid "Socket" msgstr "Sokеt" -#: libraries/messages.inc.php:1013 server_status.php:259 +#: libraries/messages.inc.php:1009 server_status.php:259 msgid "Sorting" msgstr "Sortirovka" -#: libraries/messages.inc.php:1015 tbl_printview.php:310 tbl_structure.php:657 +#: libraries/messages.inc.php:1011 tbl_printview.php:310 tbl_structure.php:657 msgid "Space usage" msgstr "Foydalanilayotgan joy" -#: libraries/messages.inc.php:1016 libraries/mysql_charsets.lib.php:289 +#: libraries/messages.inc.php:1012 libraries/mysql_charsets.lib.php:289 msgid "Spanish" msgstr "Ispancha" -#: libraries/messages.inc.php:1019 +#: libraries/messages.inc.php:1015 msgid "Export type" msgstr "Eskport turi" -#: libraries/messages.inc.php:1020 +#: libraries/messages.inc.php:1016 msgid "Export time in UTC" msgstr "Vaqtni UTC shaklda eksport qilish" -#: libraries/messages.inc.php:1021 libraries/sqlparser.lib.php:173 +#: libraries/messages.inc.php:1017 libraries/sqlparser.lib.php:173 msgid "" "There is a chance that you may have found a bug in the SQL parser. Please " "examine your query closely, and check that the quotes are correct and not " @@ -6152,7 +6152,7 @@ msgstr "" "aniqlang va quyida CUT seksiyasidagi ma`lumotlar bilan qo‘shib, xato " "tavsiflarini ishlab chiqaruvchilarga yuboring:" -#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:137 +#: libraries/messages.inc.php:1018 libraries/sqlparser.lib.php:137 msgid "" "There seems to be an error in your SQL query. The MySQL server error output " "below, if there is any, may also help you in diagnosing the problem" @@ -6161,32 +6161,32 @@ msgstr "" "server xatolikni ko‘rsatadi va o‘sha xabar muammo yechimini topishga yordam " "beradi." -#: libraries/messages.inc.php:1026 libraries/sqlparser.lib.php:495 +#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:495 msgid "Invalid Identifer" msgstr "Noto‘g‘ri identifikator" -#: libraries/messages.inc.php:1027 libraries/sqlparser.lib.php:344 +#: libraries/messages.inc.php:1023 libraries/sqlparser.lib.php:344 msgid "Unclosed quote" msgstr "Yopilmagan qo‘shtirnoq" -#: libraries/messages.inc.php:1028 libraries/sqlparser.lib.php:612 +#: libraries/messages.inc.php:1024 libraries/sqlparser.lib.php:612 msgid "Unknown Punctuation String" msgstr "Noma`lum punktuatsiya" -#: libraries/messages.inc.php:1030 server_replication.php:327 +#: libraries/messages.inc.php:1026 server_replication.php:327 #: server_replication.php:328 msgid "Start" msgstr "Boshlash" -#: libraries/messages.inc.php:1033 tbl_printview.php:369 tbl_structure.php:729 +#: libraries/messages.inc.php:1029 tbl_printview.php:369 tbl_structure.php:729 msgid "Statements" msgstr "Tavsif" -#: libraries/messages.inc.php:1034 tbl_printview.php:380 tbl_structure.php:741 +#: libraries/messages.inc.php:1030 tbl_printview.php:380 tbl_structure.php:741 msgid "static" msgstr "statik" -#: libraries/messages.inc.php:1035 server_status.php:388 +#: libraries/messages.inc.php:1031 server_status.php:388 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -6195,42 +6195,42 @@ msgstr "" "shuning uchun, MySQL serveri bergan statistik ma`lumotlar noto‘g‘ri bo‘lishi " "mumkin." -#: libraries/messages.inc.php:1038 server_replication.php:327 +#: libraries/messages.inc.php:1034 server_replication.php:327 #: server_replication.php:328 msgid "Stop" msgstr "To‘xtatish" -#: libraries/messages.inc.php:1039 server_engines.php:49 +#: libraries/messages.inc.php:1035 server_engines.php:49 msgid "Storage Engines" msgstr "Jadval turlari" -#: libraries/messages.inc.php:1040 libraries/tbl_properties.inc.php:726 +#: libraries/messages.inc.php:1036 libraries/tbl_properties.inc.php:726 #: server_engines.php:58 tbl_operations.php:353 msgid "Storage Engine" msgstr "Jadval turi" -#: libraries/messages.inc.php:1042 +#: libraries/messages.inc.php:1038 msgid "CSV for MS Excel" msgstr "MS Excel uchun CSV" -#: libraries/messages.inc.php:1044 tbl_structure.php:516 tbl_structure.php:518 +#: libraries/messages.inc.php:1040 tbl_structure.php:516 tbl_structure.php:518 msgid "Propose table structure" msgstr "Jadval tuzilishi tahlili" -#: libraries/messages.inc.php:1045 server_synchronize.php:424 +#: libraries/messages.inc.php:1041 server_synchronize.php:424 #: server_synchronize.php:867 msgid "Structure Difference" msgstr "Tuzilishdagi farq" -#: libraries/messages.inc.php:1049 server_synchronize.php:265 +#: libraries/messages.inc.php:1045 server_synchronize.php:265 msgid "Structure Synchronization" msgstr "Tuzilishni sinxronizatsiya qilish" -#: libraries/messages.inc.php:1050 libraries/sql_query_form.lib.php:462 +#: libraries/messages.inc.php:1046 libraries/sql_query_form.lib.php:462 msgid "Submit" msgstr "Bajarish" -#: libraries/messages.inc.php:1052 main.php:358 +#: libraries/messages.inc.php:1048 main.php:358 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " @@ -6239,16 +6239,16 @@ msgstr "" "Server \"Suhosin\" himoya tizimadan foydalanmoqda. Yuzaga kelgan muammolar " "yechimi uchun \"%s\"dokumentatsiya\"%s\" ga qarang." -#: libraries/messages.inc.php:1054 libraries/mysql_charsets.lib.php:295 +#: libraries/messages.inc.php:1050 libraries/mysql_charsets.lib.php:295 #: libraries/mysql_charsets.lib.php:392 msgid "Swedish" msgstr "Shvedcha" -#: libraries/messages.inc.php:1060 tbl_operations.php:556 +#: libraries/messages.inc.php:1056 tbl_operations.php:556 msgid "Switch to copied table" msgstr "Nusxa olingan jadvalga o‘tish" -#: libraries/messages.inc.php:1061 server_synchronize.php:1213 +#: libraries/messages.inc.php:1057 server_synchronize.php:1213 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -6256,145 +6256,145 @@ msgstr "" "Nishon baza manba baza bilan to‘liq sinxronizatsiya qilinadi. Manba baza " "o‘zgarishsiz qoladi." -#: libraries/messages.inc.php:1062 server_synchronize.php:451 +#: libraries/messages.inc.php:1058 server_synchronize.php:451 #: server_synchronize.php:896 msgid "Synchronize Databases" msgstr "Bazalarni sinxronizatsiya qilish" -#: libraries/messages.inc.php:1063 libraries/server_links.inc.php:92 +#: libraries/messages.inc.php:1059 libraries/server_links.inc.php:92 #: server_synchronize.php:1092 server_synchronize.php:1100 msgid "Synchronize" msgstr "Sinxronizatsiya qilish" -#: libraries/messages.inc.php:1065 server_synchronize.php:430 +#: libraries/messages.inc.php:1061 server_synchronize.php:430 #: server_synchronize.php:873 msgid "Add column(s)" msgstr "Ustun(lar) qo‘shish" -#: libraries/messages.inc.php:1066 tbl_create.php:62 +#: libraries/messages.inc.php:1062 tbl_create.php:62 #, php-format msgid "Table %s already exists!" msgstr "\"%s\" nomli jadval mavjud!" -#: libraries/messages.inc.php:1067 server_synchronize.php:432 +#: libraries/messages.inc.php:1063 server_synchronize.php:432 #: server_synchronize.php:875 msgid "Alter column(s)" msgstr "Ustun(lar)ni o‘zgartirish" -#: libraries/messages.inc.php:1068 tbl_addfield.php:189 tbl_alter.php:103 +#: libraries/messages.inc.php:1064 tbl_addfield.php:189 tbl_alter.php:103 #: tbl_indexes.php:98 #, php-format msgid "Table %1$s has been altered successfully" msgstr "%1$s jadvali muvaffaqiyatli o‘zgartirildi" -#: libraries/messages.inc.php:1069 server_synchronize.php:434 +#: libraries/messages.inc.php:1065 server_synchronize.php:434 #: server_synchronize.php:877 msgid "Apply index(s)" msgstr "Indеks(lar)ni saqlash" -#: libraries/messages.inc.php:1071 server_synchronize.php:446 +#: libraries/messages.inc.php:1067 server_synchronize.php:446 #: server_synchronize.php:890 msgid "Would you like to delete all the previous rows from target tables?" msgstr "Nishon jadvaldagi barcha oldingi qatorlarni o‘chirmoqchimisiz?" -#: libraries/messages.inc.php:1072 tbl_move_copy.php:82 +#: libraries/messages.inc.php:1068 tbl_move_copy.php:82 msgid "The table name is empty!" msgstr "Jadval nomi ko‘rsatilmagan!" -#: libraries/messages.inc.php:1073 tbl_create.php:249 +#: libraries/messages.inc.php:1069 tbl_create.php:249 #, php-format msgid "Table %1$s has been created." msgstr "%1$s jadvali tuzildi." -#: libraries/messages.inc.php:1076 tbl_operations.php:628 +#: libraries/messages.inc.php:1072 tbl_operations.php:628 #, php-format msgid "Table %s has been flushed" msgstr "\"%s\" jadvali keshi yangilandi" -#: libraries/messages.inc.php:1077 server_synchronize.php:436 +#: libraries/messages.inc.php:1073 server_synchronize.php:436 #: server_synchronize.php:879 msgid "Insert row(s)" msgstr "Qator(lar) qo‘shish" -#: libraries/messages.inc.php:1078 libraries/tbl_links.inc.php:107 +#: libraries/messages.inc.php:1074 libraries/tbl_links.inc.php:107 #: libraries/tbl_links.inc.php:140 libraries/tbl_links.inc.php:141 msgid "Table seems to be empty!" msgstr "Jadval - bo‘sh!" -#: libraries/messages.inc.php:1079 tbl_operations.php:568 +#: libraries/messages.inc.php:1075 tbl_operations.php:568 msgid "Table maintenance" msgstr "Jadvalga xizmat ko‘rsatish" -#: libraries/messages.inc.php:1080 libraries/tbl_properties.inc.php:618 +#: libraries/messages.inc.php:1076 libraries/tbl_properties.inc.php:618 #: server_synchronize.php:428 server_synchronize.php:871 msgid "Table name" msgstr "Jadval nomi" -#: libraries/messages.inc.php:1081 pdf_schema.php:1116 +#: libraries/messages.inc.php:1077 pdf_schema.php:1116 msgid "Table of contents" msgstr "Mundarija" -#: libraries/messages.inc.php:1082 tbl_operations.php:334 +#: libraries/messages.inc.php:1078 tbl_operations.php:334 msgid "Table options" msgstr "Jadval parametrlari" -#: libraries/messages.inc.php:1083 server_synchronize.php:431 +#: libraries/messages.inc.php:1079 server_synchronize.php:431 #: server_synchronize.php:874 msgid "Remove column(s)" msgstr "Ustun(lar)ni olib tashlash" -#: libraries/messages.inc.php:1084 server_synchronize.php:433 +#: libraries/messages.inc.php:1080 server_synchronize.php:433 #: server_synchronize.php:876 msgid "Remove index(s)" msgstr "Indеks(lar)ni olib tashlash" -#: libraries/messages.inc.php:1088 server_synchronize.php:435 +#: libraries/messages.inc.php:1084 server_synchronize.php:435 #: server_synchronize.php:878 msgid "Update row(s)" msgstr "Qator(lar)ni yangilash" -#: libraries/messages.inc.php:1090 server_synchronize.php:942 +#: libraries/messages.inc.php:1086 server_synchronize.php:942 msgid "Target database has been synchronized with source database" msgstr "Nishon baza manba baza bilan sinxronizatsiya qilindi" -#: libraries/messages.inc.php:1091 server_privileges.php:392 +#: libraries/messages.inc.php:1087 server_privileges.php:392 #: server_privileges.php:527 server_privileges.php:1679 #: server_privileges.php:1685 msgid "Table-specific privileges" msgstr "Jadval darajasijagi privilegiyalar" -#: libraries/messages.inc.php:1092 server_status.php:254 +#: libraries/messages.inc.php:1088 server_status.php:254 msgid "Temporary data" msgstr "Vaqtinchalik ma`lumotlar" -#: libraries/messages.inc.php:1093 tbl_change.php:728 +#: libraries/messages.inc.php:1089 tbl_change.php:728 msgid " Because of its length,
this field might not be editable " msgstr "Ma`lumotlar ko‘pligi sabali
o‘zgartirish qiyishlashishi mumkin" -#: libraries/messages.inc.php:1094 +#: libraries/messages.inc.php:1090 msgid "Texy! text" msgstr "Texy! matn" -#: libraries/messages.inc.php:1095 libraries/mysql_charsets.lib.php:298 +#: libraries/messages.inc.php:1091 libraries/mysql_charsets.lib.php:298 #: libraries/mysql_charsets.lib.php:395 msgid "Thai" msgstr "Taycha" -#: libraries/messages.inc.php:1102 libraries/replication_gui.lib.php:308 +#: libraries/messages.inc.php:1098 libraries/replication_gui.lib.php:308 #: server_privileges.php:734 msgid "This Host" msgstr "Ushbu xost" -#: libraries/messages.inc.php:1103 server_status.php:252 +#: libraries/messages.inc.php:1099 server_status.php:252 msgid "Threads" msgstr "Oqimlar" -#: libraries/messages.inc.php:1104 server_processlist.php:22 +#: libraries/messages.inc.php:1100 server_processlist.php:22 #, php-format msgid "Thread %s was successfully killed." msgstr " \"%s\" jarayoni muvaffaqiyatli yakunlandi." -#: libraries/messages.inc.php:1106 +#: libraries/messages.inc.php:1102 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -6403,159 +6403,159 @@ msgstr "" "Odatda, bu hol, php-ssenariylar uchun ajratilgan vaqt oshirilmaguncha " "phpMyAdmin dasturi import jarayonini yakunla olmasligini bildiradi." -#: libraries/messages.inc.php:1109 pmd_pdf.php:94 +#: libraries/messages.inc.php:1105 pmd_pdf.php:94 msgid "to/from page" msgstr "Sahifa" -#: libraries/messages.inc.php:1110 pdf_pages.php:343 +#: libraries/messages.inc.php:1106 pdf_pages.php:343 msgid "Toggle scratchboard" msgstr "Ko‘rsatish" -#: libraries/messages.inc.php:1111 pmd_general.php:99 +#: libraries/messages.inc.php:1107 pmd_general.php:99 msgid "Toggle small/big" msgstr "Teskari ko‘rsatish" -#: libraries/messages.inc.php:1112 pmd_help.php:27 +#: libraries/messages.inc.php:1108 pmd_help.php:27 msgid "To select relation, click :" msgstr "" "Aloqani tanlash uchun rasmda ko‘rsatilganikabi ulanish nuqtasiga bosing:" -#: libraries/messages.inc.php:1115 libraries/tbl_links.inc.php:149 +#: libraries/messages.inc.php:1111 libraries/tbl_links.inc.php:149 #, php-format msgid "Tracking of %s.%s is activated." msgstr "\"%s.%s\" jadvalini kuzatish faollashtirildi." -#: libraries/messages.inc.php:1116 tbl_tracking.php:655 +#: libraries/messages.inc.php:1112 tbl_tracking.php:655 msgid "Activate now" msgstr "Hozir faollashtirish" -#: libraries/messages.inc.php:1117 tbl_tracking.php:653 +#: libraries/messages.inc.php:1113 tbl_tracking.php:653 #, php-format msgid "Activate tracking for %s.%s" msgstr "\"%s.%s\" jadvalini kuzatishni faollashtirish" -#: libraries/messages.inc.php:1118 tbl_tracking.php:221 +#: libraries/messages.inc.php:1114 tbl_tracking.php:221 msgid "Comment out these two lines if you do not need them." msgstr "Agar kеrak bo‘lmasa, ushbu ikki qator oldiga sharh bеlgisini qo‘ying." -#: libraries/messages.inc.php:1119 tbl_tracking.php:688 +#: libraries/messages.inc.php:1115 tbl_tracking.php:688 msgid "Create version" msgstr "Vеrsiyasini tuzish" -#: libraries/messages.inc.php:1120 tbl_tracking.php:668 +#: libraries/messages.inc.php:1116 tbl_tracking.php:668 #, php-format msgid "Create version %s of %s.%s" msgstr "\"%s.%s\" jadvalining %s raqamli vеrsiyasini tuzish" -#: libraries/messages.inc.php:1122 tbl_tracking.php:412 +#: libraries/messages.inc.php:1118 tbl_tracking.php:412 msgid "Data definition statement" msgstr "Ma’lumotlar ta’rifi opеratorini" -#: libraries/messages.inc.php:1123 tbl_tracking.php:463 +#: libraries/messages.inc.php:1119 tbl_tracking.php:463 msgid "Data manipulation statement" msgstr "Ma’lumotlarni boshqarish opеratorini" -#: libraries/messages.inc.php:1124 tbl_tracking.php:410 tbl_tracking.php:461 +#: libraries/messages.inc.php:1120 tbl_tracking.php:410 tbl_tracking.php:461 msgid "Date" msgstr "Sanani" -#: libraries/messages.inc.php:1125 tbl_tracking.php:642 +#: libraries/messages.inc.php:1121 tbl_tracking.php:642 msgid "Deactivate now" msgstr "Hozir faolsizlantirish" -#: libraries/messages.inc.php:1126 tbl_tracking.php:640 +#: libraries/messages.inc.php:1122 tbl_tracking.php:640 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "\"%s.%s\" jadvalini kuzatishni faolsizlantirish" -#: libraries/messages.inc.php:1127 tbl_tracking.php:521 +#: libraries/messages.inc.php:1123 tbl_tracking.php:521 #, php-format msgid "Export as %s" msgstr "\"%s\" dеb eksport qilish" -#: libraries/messages.inc.php:1130 tbl_tracking.php:251 tbl_tracking.php:379 +#: libraries/messages.inc.php:1126 tbl_tracking.php:251 tbl_tracking.php:379 msgid "Close" msgstr "Yopish" -#: libraries/messages.inc.php:1131 tbl_tracking.php:114 +#: libraries/messages.inc.php:1127 tbl_tracking.php:114 #, php-format msgid "Tracking report for table `%s`" msgstr "\"%s\" jadvali uchun kuzatuv hisoboti" -#: libraries/messages.inc.php:1133 tbl_tracking.php:397 tbl_tracking.php:504 +#: libraries/messages.inc.php:1129 tbl_tracking.php:397 tbl_tracking.php:504 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "\"%s\"ni ko‘rsatish, %s dan %s sanagacha, foydalanuvchi %s %s" -#: libraries/messages.inc.php:1134 tbl_tracking.php:561 +#: libraries/messages.inc.php:1130 tbl_tracking.php:561 msgid "Show versions" msgstr "Vеrsiyalarni ko‘rsatish" -#: libraries/messages.inc.php:1135 tbl_tracking.php:507 +#: libraries/messages.inc.php:1131 tbl_tracking.php:507 msgid "SQL dump (file download)" msgstr "SQL dampi (faylni yuklab olish)" -#: libraries/messages.inc.php:1136 tbl_tracking.php:508 +#: libraries/messages.inc.php:1132 tbl_tracking.php:508 msgid "SQL dump" msgstr "SQL damp" -#: libraries/messages.inc.php:1137 tbl_tracking.php:213 +#: libraries/messages.inc.php:1133 tbl_tracking.php:213 msgid "SQL statements executed." msgstr "SQL so‘rovi bajarildi." -#: libraries/messages.inc.php:1138 +#: libraries/messages.inc.php:1134 msgid "This option will replace your table and contained data." msgstr "Ushbu tanlov jadval va uning tarkibini amashtiradi." -#: libraries/messages.inc.php:1139 tbl_tracking.php:509 +#: libraries/messages.inc.php:1135 tbl_tracking.php:509 msgid "SQL execution" msgstr "SQL bajaruvi" -#: libraries/messages.inc.php:1140 tbl_tracking.php:230 +#: libraries/messages.inc.php:1136 tbl_tracking.php:230 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "SQL so‘rovi eksport qilindi. Dampdan nusxa oling yoki uni bajaring." -#: libraries/messages.inc.php:1141 tbl_tracking.php:381 +#: libraries/messages.inc.php:1137 tbl_tracking.php:381 msgid "Tracking statements" msgstr "Kuzatish opеratorlari" -#: libraries/messages.inc.php:1148 tbl_tracking.php:593 +#: libraries/messages.inc.php:1144 tbl_tracking.php:593 msgid "Version" msgstr "Vеrsiya" -#: libraries/messages.inc.php:1149 tbl_tracking.php:672 +#: libraries/messages.inc.php:1145 tbl_tracking.php:672 msgid "Track these data definition statements:" msgstr "Ushbu ma’lumotlar ta’rifi opеratorlarini kuzatish:" -#: libraries/messages.inc.php:1150 tbl_tracking.php:680 +#: libraries/messages.inc.php:1146 tbl_tracking.php:680 msgid "Track these data manipulation statements:" msgstr "Ushbu ma’lumotlar boshqaruvi opеratorlarini kuzatish:" -#: libraries/messages.inc.php:1155 tbl_tracking.php:411 tbl_tracking.php:462 +#: libraries/messages.inc.php:1151 tbl_tracking.php:411 tbl_tracking.php:462 msgid "Username" msgstr "Foydalanuvchi" -#: libraries/messages.inc.php:1156 tbl_tracking.php:203 +#: libraries/messages.inc.php:1152 tbl_tracking.php:203 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "\"%s.%s\" ni kuzatish, %s vеrsiya faollashtirilgan." -#: libraries/messages.inc.php:1157 tbl_tracking.php:187 +#: libraries/messages.inc.php:1153 tbl_tracking.php:187 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "%s vеrsiya tuzildi, \"%s.%s\" ni kuzatishsh faollashtirilgan." -#: libraries/messages.inc.php:1158 tbl_tracking.php:195 +#: libraries/messages.inc.php:1154 tbl_tracking.php:195 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "\"%s.%s\" ni kuzatish, %s vеrsiya faolsizlantirilgan." -#: libraries/messages.inc.php:1159 tbl_tracking.php:262 +#: libraries/messages.inc.php:1155 tbl_tracking.php:262 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "%s vеrsiya rasmi (SQL kodi)" -#: libraries/messages.inc.php:1161 tbl_tracking.php:220 +#: libraries/messages.inc.php:1157 tbl_tracking.php:220 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -6563,24 +6563,24 @@ msgstr "" "Dampni bajarish uchun vaqtinchalik baza tuzing yo borini ishlating. Buning " "uchun yetarli privilеgiyalarga ega bo‘lishingiz kеrak." -#: libraries/messages.inc.php:1162 libraries/mysql_charsets.lib.php:219 +#: libraries/messages.inc.php:1158 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:362 msgid "Traditional Chinese" msgstr "An`anaviy xitoycha" -#: libraries/messages.inc.php:1163 libraries/mysql_charsets.lib.php:292 +#: libraries/messages.inc.php:1159 libraries/mysql_charsets.lib.php:292 msgid "Traditional Spanish" msgstr "An`anaviy ispancha" -#: libraries/messages.inc.php:1164 server_status.php:388 +#: libraries/messages.inc.php:1160 server_status.php:388 msgid "Traffic" msgstr "Trafik" -#: libraries/messages.inc.php:1165 server_status.php:261 +#: libraries/messages.inc.php:1161 server_status.php:261 msgid "Transaction coordinator" msgstr "Tranzaksiyalar koordinatori" -#: libraries/messages.inc.php:1166 +#: libraries/messages.inc.php:1162 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 " @@ -6592,7 +6592,7 @@ msgstr "" "nomini o‘z ichiga olgan maydon nomi sifatida ishlatish mumkin. Ikkinchi " "parametr ishlatilganda, birinchisini bo‘sh satr sifatida belgilash zarur." -#: libraries/messages.inc.php:1167 +#: libraries/messages.inc.php:1163 msgid "" "Displays hexadecimal representation of data. Optional first parameter " "specifies how often space will be added (defaults to 2 nibbles)." @@ -6601,7 +6601,7 @@ msgstr "" "parametr bo‘sh joy qo‘yilishi kerak bo‘lgan intervalni (asl qiymati har ikki " "yarimbaytdan keyin) ko‘rsatish uchun ishlatiladi." -#: libraries/messages.inc.php:1168 +#: libraries/messages.inc.php:1164 msgid "" "Displays a clickable thumbnail. The options are the maximum width and height " "in pixels. The original aspect ratio is preserved." @@ -6611,11 +6611,11 @@ msgstr "" "piksellarda berilgan maksimal bo‘yi va enini belgilash mumkin. Tomonlarning " "asl nisbati saqlanadi." -#: libraries/messages.inc.php:1169 +#: libraries/messages.inc.php:1165 msgid "Displays a link to download this image." msgstr "Rasmni yuklab olish uchun bog‘ ko‘rsatish" -#: libraries/messages.inc.php:1170 +#: libraries/messages.inc.php:1166 msgid "See image/jpeg: inline" msgstr "" "Ustiga bosilganda rasmni katalashtirib ko‘rish mumkin bo‘lgan " @@ -6623,7 +6623,7 @@ msgstr "" "piksellarda berilgan maksimal bo‘yi va enini belgilash mumkin. Tomonlarning " "asl nisbati saqlanadi." -#: libraries/messages.inc.php:1171 +#: libraries/messages.inc.php:1167 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 " @@ -6642,7 +6642,7 @@ msgstr "" "\"local\" qiymat uchun \"strftime()\", \"utc\" qiymat uchun \"gmdate()\" " "funksiyaga mos ravishda o‘rnatilishi kerak." -#: libraries/messages.inc.php:1172 +#: libraries/messages.inc.php:1168 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 " @@ -6667,7 +6667,7 @@ msgstr "" "e`tibor berilmaydi va barcha ma`lumotlar bir satrda chiqariladi (asl " "qiymati: 1)." -#: libraries/messages.inc.php:1173 +#: libraries/messages.inc.php:1169 msgid "" "Displays the contents of the field as-is, without running it through " "htmlspecialchars(). That is, the field is assumed to contain valid HTML." @@ -6676,7 +6676,7 @@ msgstr "" "funksiyasi yordamida o‘zgartirilmasdan ko‘rsatadi. Bu holda maydon HTML " "kodni o‘z ichiga olgan bo‘lishi mumkin." -#: libraries/messages.inc.php:1174 +#: libraries/messages.inc.php:1170 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 " @@ -6686,7 +6686,7 @@ msgstr "" "parametr - URL-prefiksdir, masalan \"http://www.example.com/\". Ikkinchi va " "uchinchi parametr - rasmning pmksellarda berilgan bo‘yi va eni." -#: libraries/messages.inc.php:1175 +#: libraries/messages.inc.php:1171 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 " @@ -6696,12 +6696,12 @@ msgstr "" "URL-prefiksdir, masalan \"http://www.example.com/\". Ikkinchi parametr - " "bog‘ sarlavhasi." -#: libraries/messages.inc.php:1176 +#: libraries/messages.inc.php:1172 msgid "Formats text as SQL query with syntax highlighting." msgstr "" "Matnni sintaksisi rang bilan belgilangan SQL so‘rov sifatida formatlaydi" -#: libraries/messages.inc.php:1177 +#: libraries/messages.inc.php:1173 msgid "" "Displays a part of a string. The first option is the number of characters to " "skip from the beginning of the string (Default 0). The second option is the " @@ -6715,71 +6715,71 @@ msgstr "" "parametr - mavjud parcha boshi va/yoki oxiriga qo‘shiladigan matn (asl " "qiymati: \"...\")." -#: libraries/messages.inc.php:1179 server_binlog.php:183 server_binlog.php:186 +#: libraries/messages.inc.php:1175 server_binlog.php:183 server_binlog.php:186 #: server_processlist.php:49 server_processlist.php:51 msgid "Truncate Shown Queries" msgstr "So‘rovlarni qisqartirib ko‘rsatish" -#: libraries/messages.inc.php:1180 libraries/mysql_charsets.lib.php:301 +#: libraries/messages.inc.php:1176 libraries/mysql_charsets.lib.php:301 #: libraries/mysql_charsets.lib.php:389 msgid "Turkish" msgstr "Turkcha" -#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:304 +#: libraries/messages.inc.php:1179 libraries/mysql_charsets.lib.php:304 #: libraries/mysql_charsets.lib.php:386 msgid "Ukrainian" msgstr "Ukraincha" -#: libraries/messages.inc.php:1185 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:1181 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 msgid "Unicode" msgstr "Yunikod" -#: libraries/messages.inc.php:1187 libraries/mysql_charsets.lib.php:398 +#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:398 #: libraries/mysql_charsets.lib.php:405 msgid "unknown" msgstr "noma`lum" -#: libraries/messages.inc.php:1190 server_privileges.php:1152 +#: libraries/messages.inc.php:1186 server_privileges.php:1152 #, php-format msgid "You have updated the privileges for %s." msgstr " \"%s\" uchun privilegiyalar o‘zgartirildi." -#: libraries/messages.inc.php:1191 user_password.php:112 +#: libraries/messages.inc.php:1187 user_password.php:112 msgid "The profile has been updated." msgstr "Profil yangilandi." -#: libraries/messages.inc.php:1193 libraries/relation.lib.php:138 +#: libraries/messages.inc.php:1189 libraries/relation.lib.php:138 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "\"column_comments\" jadvalini yangilash zarur. Batafsil ma`lumot uchun " "dokumentatsiyaga qarang." -#: libraries/messages.inc.php:1194 +#: libraries/messages.inc.php:1190 #, php-format msgid "You should upgrade to %s %s or later." msgstr " \"%s\" ni \"%s\" versiyaga yoki kattaroq versiyaga yangilash zarur." -#: libraries/messages.inc.php:1204 tbl_printview.php:314 tbl_structure.php:661 +#: libraries/messages.inc.php:1200 tbl_printview.php:314 tbl_structure.php:661 msgid "Usage" msgstr "Ishlatilish" -#: libraries/messages.inc.php:1205 +#: libraries/messages.inc.php:1201 msgid "Enclose table and field names with backquotes" msgstr "Jadval va maydon nomlarini teskari qo‘shtirnoqqa olish" -#: libraries/messages.inc.php:1206 libraries/replication_gui.lib.php:314 +#: libraries/messages.inc.php:1202 libraries/replication_gui.lib.php:314 #: server_privileges.php:740 msgid "Use Host Table" msgstr "Xostlar jadvalidan foydalanish" -#: libraries/messages.inc.php:1207 server_privileges.php:848 +#: libraries/messages.inc.php:1203 server_privileges.php:848 #, php-format msgid "The user %s already exists!" msgstr " \"%s\" nomli foydalanuvchi mavjud!" -#: libraries/messages.inc.php:1209 libraries/replication_gui.lib.php:55 +#: libraries/messages.inc.php:1205 libraries/replication_gui.lib.php:55 #: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245 #: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255 #: server_privileges.php:672 server_privileges.php:675 @@ -6787,37 +6787,37 @@ msgstr " \"%s\" nomli foydalanuvchi mavjud!" msgid "User name" msgstr "Foydalanuvchi nomi" -#: libraries/messages.inc.php:1210 server_privileges.php:1645 +#: libraries/messages.inc.php:1206 server_privileges.php:1645 msgid "The selected user was not found in the privilege table." msgstr "Belgilangan foydalanuvchi privilegiyalar jadvalida topilmadi." -#: libraries/messages.inc.php:1211 server_privileges.php:1365 +#: libraries/messages.inc.php:1207 server_privileges.php:1365 msgid "User overview" msgstr "Foydalanuvchilar hisobini ko‘rib chiqish" -#: libraries/messages.inc.php:1212 server_privileges.php:1261 +#: libraries/messages.inc.php:1208 server_privileges.php:1261 msgid "The selected users have been deleted successfully." msgstr "Belgilangan foydalanuvchilar muvaffaqiyatli o‘chirildi." -#: libraries/messages.inc.php:1213 server_privileges.php:2026 +#: libraries/messages.inc.php:1209 server_privileges.php:2026 #, php-format msgid "Users having access to "%s"" msgstr "\"%s\"ga ruxsati bo‘lgan foydalanuvchilar" -#: libraries/messages.inc.php:1214 main.php:189 server_privileges.php:1350 +#: libraries/messages.inc.php:1210 main.php:189 server_privileges.php:1350 #: server_privileges.php:1497 server_privileges.php:1611 #: server_privileges.php:2029 server_processlist.php:54 msgid "User" msgstr "Foydalanuvchi" -#: libraries/messages.inc.php:1215 tbl_change.php:1171 +#: libraries/messages.inc.php:1211 tbl_change.php:1171 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Maydonlararo o‘tish uchun TAB tugmasi yoki CTRL+strelka tugmalaridan " "foydalaning" -#: libraries/messages.inc.php:1217 libraries/replication_gui.lib.php:251 +#: libraries/messages.inc.php:1213 libraries/replication_gui.lib.php:251 #: libraries/replication_gui.lib.php:319 libraries/replication_gui.lib.php:342 #: server_privileges.php:678 server_privileges.php:745 #: server_privileges.php:769 server_privileges.php:1889 @@ -6825,7 +6825,7 @@ msgstr "" msgid "Use text field" msgstr "Matnmaydonini ishlatish" -#: libraries/messages.inc.php:1221 libraries/sqlvalidator.lib.php:68 +#: libraries/messages.inc.php:1217 libraries/sqlvalidator.lib.php:68 #, php-format msgid "" "The SQL validator could not be initialized. Please check if you have " @@ -6835,86 +6835,86 @@ msgstr "" "o‘rnatilganligini tekshiring, batafsil ma`lumot uchun %sdokumentatsiyaga%s " "qarang." -#: libraries/messages.inc.php:1222 libraries/replication_gui.lib.php:111 +#: libraries/messages.inc.php:1218 libraries/replication_gui.lib.php:111 #: server_status.php:627 tbl_change.php:324 tbl_printview.php:370 #: tbl_select.php:139 tbl_structure.php:730 msgid "Value" msgstr "Qiymati" -#: libraries/messages.inc.php:1223 libraries/replication_gui.lib.php:110 +#: libraries/messages.inc.php:1219 libraries/replication_gui.lib.php:110 #: libraries/sql_query_form.lib.php:445 server_status.php:626 #: server_variables.php:52 msgid "Variable" msgstr "O‘zgaruvchi" -#: libraries/messages.inc.php:1225 server_export.php:21 +#: libraries/messages.inc.php:1221 server_export.php:21 msgid "View dump (schema) of databases" msgstr "Ma`lumotlar bazalari dampini (sxemasini) namoyish etish" -#: libraries/messages.inc.php:1227 tbl_export.php:23 +#: libraries/messages.inc.php:1223 tbl_export.php:23 msgid "View dump (schema) of table" msgstr "Jadval dampini (sxemasini) namoyish etish" -#: libraries/messages.inc.php:1231 view_create.php:142 +#: libraries/messages.inc.php:1227 view_create.php:142 msgid "VIEW name" msgstr "Nom ko‘rinishi" -#: libraries/messages.inc.php:1237 main.php:205 +#: libraries/messages.inc.php:1233 main.php:205 msgid "Web server" msgstr "Veb server" -#: libraries/messages.inc.php:1239 libraries/mysql_charsets.lib.php:277 +#: libraries/messages.inc.php:1235 libraries/mysql_charsets.lib.php:277 #: libraries/mysql_charsets.lib.php:325 msgid "West European" msgstr "G‘arbiy-Yevropacha" -#: libraries/messages.inc.php:1240 main.php:230 +#: libraries/messages.inc.php:1236 main.php:230 msgid "Wiki" msgstr "Viki" -#: libraries/messages.inc.php:1241 server_privileges.php:2138 +#: libraries/messages.inc.php:1237 server_privileges.php:2138 msgid "wildcard" msgstr "Guruhlash belgisi" -#: libraries/messages.inc.php:1248 +#: libraries/messages.inc.php:1244 msgid "Export contents" msgstr "Tarkibini eksport qilish" -#: libraries/messages.inc.php:1249 +#: libraries/messages.inc.php:1245 msgid "Export functions" msgstr "Funktsiyalarni eksport qilish" -#: libraries/messages.inc.php:1250 +#: libraries/messages.inc.php:1246 msgid "Export procedures" msgstr "Protsеdularni eksport qilish" -#: libraries/messages.inc.php:1251 +#: libraries/messages.inc.php:1247 msgid "Export Structure Schemas (recommended)" msgstr "Tuzilma sxеmasini eksport qilish (tavsiya etiladi)" -#: libraries/messages.inc.php:1252 +#: libraries/messages.inc.php:1248 msgid "Export tables" msgstr "Jadvallarni eksport qilish" -#: libraries/messages.inc.php:1253 +#: libraries/messages.inc.php:1249 msgid "Export triggers" msgstr "Triggеrlarni eksport qilish" -#: libraries/messages.inc.php:1254 +#: libraries/messages.inc.php:1250 msgid "Export views" msgstr "Ko‘rinishlarni eksport qilish" -#: libraries/messages.inc.php:1255 +#: libraries/messages.inc.php:1251 msgid "XML" msgstr "XML" -#: libraries/messages.inc.php:1259 server_privileges.php:592 +#: libraries/messages.inc.php:1255 server_privileges.php:592 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" "IZOH: parametr qiymatlarini 0 (nol) deb belgilash mavjud cheklashlarni bekor " "qiladi." -#: libraries/messages.inc.php:1260 +#: libraries/messages.inc.php:1256 msgid "\"zipped\"" msgstr "zip" diff --git a/po/zh_CN.po b/po/zh_CN.po index ee4ea5e61..e1a1fcf95 100644 --- 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-05-13 11:25+0200\n" +"POT-Creation-Date: 2010-05-13 11:30+0200\n" "PO-Revision-Date: 2010-05-12 06:17+0200\n" "Last-Translator: shanyan baishui \n" "Language-Team: chinese_simplified \n" @@ -15,19 +15,19 @@ msgstr "" "X-Generator: Pootle 2.0.1\n" #: browse_foreigners.php:38 browse_foreigners.php:59 -#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:870 +#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:866 #: server_privileges.php:1475 msgid "Show all" msgstr "全部显示" #: browse_foreigners.php:82 db_operations.php:648 -#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:394 -#: libraries/export/pdf.php:147 libraries/messages.inc.php:597 +#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394 +#: libraries/export/pdf.php:147 libraries/messages.inc.php:593 #: pdf_schema.php:283 pdf_schema.php:1123 pdf_schema.php:1139 msgid "Page number:" msgstr "页码:" -#: browse_foreigners.php:132 libraries/messages.inc.php:1242 +#: browse_foreigners.php:132 libraries/messages.inc.php:1238 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -39,7 +39,7 @@ 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/db_links.inc.php:75 -#: libraries/messages.inc.php:841 libraries/tbl_links.inc.php:63 +#: libraries/messages.inc.php:837 libraries/tbl_links.inc.php:63 msgid "Search" msgstr "搜索" @@ -48,12 +48,12 @@ msgstr "搜索" #: db_search.php:362 db_structure.php:567 js/messages.php:48 #: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2267 +#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 #: 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 #: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614 -#: libraries/messages.inc.php:361 libraries/replication_gui.lib.php:73 +#: libraries/messages.inc.php:357 libraries/replication_gui.lib.php:73 #: libraries/replication_gui.lib.php:365 libraries/select_server.lib.php:104 #: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477 #: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782 @@ -73,33 +73,33 @@ msgid "Go" msgstr "执行" #: browse_foreigners.php:168 browse_foreigners.php:172 -#: libraries/Index.class.php:442 libraries/messages.inc.php:459 +#: libraries/Index.class.php:442 libraries/messages.inc.php:455 #: tbl_tracking.php:320 msgid "Keyname" msgstr "键名" #: browse_foreigners.php:169 browse_foreigners.php:171 -#: libraries/messages.inc.php:252 server_collations.php:55 +#: libraries/messages.inc.php:248 server_collations.php:55 #: server_collations.php:67 server_engines.php:59 server_status.php:628 msgid "Description" msgstr "说明" #: browse_foreigners.php:247 browse_foreigners.php:256 #: browse_foreigners.php:268 browse_foreigners.php:276 -#: libraries/messages.inc.php:1218 +#: libraries/messages.inc.php:1214 msgid "Use this value" msgstr "使用此值" -#: db_create.php:46 libraries/messages.inc.php:215 +#: db_create.php:46 libraries/messages.inc.php:211 #, php-format msgid "Database %1$s has been created." msgstr "创建数据库 %1$s 成功。" -#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:232 +#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:228 msgid "Database comment: " msgstr "数据库注释:" -#: db_datadict.php:165 libraries/messages.inc.php:1070 +#: db_datadict.php:165 libraries/messages.inc.php:1066 #: libraries/tbl_properties.inc.php:724 pdf_schema.php:1236 #: tbl_operations.php:345 tbl_printview.php:130 msgid "Table comments" @@ -108,7 +108,7 @@ msgstr "表注释" #: db_datadict.php:174 db_qbe.php:174 libraries/Index.class.php:446 #: libraries/export/htmlword.php:244 libraries/export/latex.php:360 #: libraries/export/odt.php:294 libraries/export/texytext.php:233 -#: libraries/messages.inc.php:317 libraries/tbl_properties.inc.php:99 +#: libraries/messages.inc.php:313 libraries/tbl_properties.inc.php:99 #: libraries/tbl_properties.inc.php:275 pdf_schema.php:1262 #: pdf_schema.php:1283 tbl_change.php:308 tbl_indexes.php:189 #: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135 @@ -120,7 +120,7 @@ msgstr "字段" #: libraries/db_events.inc.php:31 libraries/db_routines.inc.php:42 #: 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/messages.inc.php:1181 +#: libraries/export/texytext.php:234 libraries/messages.inc.php:1177 #: libraries/tbl_properties.inc.php:100 pdf_schema.php:1263 #: pdf_schema.php:1284 server_privileges.php:2031 tbl_change.php:287 #: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313 @@ -132,7 +132,7 @@ msgstr "类型" #: db_datadict.php:177 libraries/Index.class.php:449 #: libraries/export/htmlword.php:246 libraries/export/latex.php:360 #: libraries/export/odt.php:300 libraries/export/texytext.php:235 -#: libraries/messages.inc.php:576 libraries/tbl_properties.inc.php:109 +#: libraries/messages.inc.php:572 libraries/tbl_properties.inc.php:109 #: pdf_schema.php:1265 pdf_schema.php:1286 tbl_change.php:323 #: tbl_printview.php:145 tbl_structure.php:181 tbl_tracking.php:276 #: tbl_tracking.php:327 @@ -141,7 +141,7 @@ msgstr "空" #: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 -#: libraries/export/texytext.php:236 libraries/messages.inc.php:238 +#: libraries/export/texytext.php:236 libraries/messages.inc.php:234 #: libraries/tbl_properties.inc.php:106 pdf_schema.php:1266 #: pdf_schema.php:1287 tbl_printview.php:146 tbl_structure.php:182 #: tbl_tracking.php:277 @@ -150,14 +150,14 @@ msgstr "默认" #: db_datadict.php:182 libraries/export/htmlword.php:249 #: libraries/export/latex.php:362 libraries/export/odt.php:307 -#: libraries/export/texytext.php:238 libraries/messages.inc.php:483 +#: libraries/export/texytext.php:238 libraries/messages.inc.php:479 #: pdf_schema.php:1268 pdf_schema.php:1289 tbl_printview.php:150 msgid "Links to" msgstr "链接到" #: db_datadict.php:184 db_printview.php:112 libraries/export/htmlword.php:252 #: libraries/export/latex.php:365 libraries/export/odt.php:312 -#: libraries/export/texytext.php:241 libraries/messages.inc.php:163 +#: libraries/export/texytext.php:241 libraries/messages.inc.php:159 #: libraries/tbl_properties.inc.php:130 pdf_schema.php:1279 #: pdf_schema.php:1290 tbl_printview.php:152 msgid "Comments" @@ -166,7 +166,7 @@ msgstr "注释" #: db_datadict.php:267 libraries/Index.class.php:359 #: 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/messages.inc.php:559 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:555 #: libraries/mult_submits.inc.php:263 pdf_schema.php:1344 #: server_privileges.php:1529 server_privileges.php:1540 #: server_privileges.php:1850 server_privileges.php:1855 @@ -178,7 +178,7 @@ msgstr "否" #: db_datadict.php:267 libraries/Index.class.php:360 #: libraries/Index.class.php:385 libraries/export/htmlword.php:322 #: libraries/export/latex.php:430 libraries/export/odt.php:368 -#: libraries/export/texytext.php:311 libraries/messages.inc.php:1257 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:1253 #: libraries/mult_submits.inc.php:45 libraries/mult_submits.inc.php:50 #: libraries/mult_submits.inc.php:55 libraries/mult_submits.inc.php:60 #: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:101 @@ -192,108 +192,108 @@ msgstr "否" msgid "Yes" msgstr "是" -#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:670 +#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:666 #: tbl_printview.php:498 msgid "Print" msgstr "打印" -#: db_export.php:29 libraries/messages.inc.php:1226 +#: db_export.php:29 libraries/messages.inc.php:1222 msgid "View dump (schema) of database" msgstr "查看数据库的转存(大纲)。" #: db_export.php:33 db_printview.php:96 db_qbe.php:102 db_structure.php:51 -#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:568 +#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:564 #: navigation.php:346 msgid "No tables found in database." msgstr "数据库中没有表。" -#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:845 +#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:841 #: server_export.php:27 msgid "Select All" msgstr "全选" -#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1188 +#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1184 #: server_export.php:29 msgid "Unselect All" msgstr "全不选" -#: db_operations.php:38 libraries/messages.inc.php:213 tbl_create.php:54 +#: db_operations.php:38 libraries/messages.inc.php:209 tbl_create.php:54 msgid "The database name is empty!" msgstr "数据库名不能为空!" -#: db_operations.php:236 libraries/messages.inc.php:753 +#: db_operations.php:236 libraries/messages.inc.php:749 #, php-format msgid "Database %s has been renamed to %s" msgstr "已将数据库 %s 改名为 %s" -#: db_operations.php:240 libraries/messages.inc.php:178 +#: db_operations.php:240 libraries/messages.inc.php:174 #, php-format msgid "Database %s has been copied to %s" msgstr "已将数据库 %s 复制为 %s" -#: db_operations.php:410 libraries/messages.inc.php:236 +#: db_operations.php:410 libraries/messages.inc.php:232 msgid "Rename database to" msgstr "将数据库改名为" -#: db_operations.php:415 libraries/messages.inc.php:161 +#: db_operations.php:415 libraries/messages.inc.php:157 #: server_processlist.php:57 msgid "Command" msgstr "命令" -#: db_operations.php:425 libraries/messages.inc.php:58 tbl_change.php:1143 +#: db_operations.php:425 libraries/messages.inc.php:54 tbl_change.php:1143 msgid "and then" msgstr "然后" -#: db_operations.php:451 libraries/messages.inc.php:233 +#: db_operations.php:451 libraries/messages.inc.php:229 msgid "Copy database to" msgstr "复制数据库到" -#: db_operations.php:458 libraries/messages.inc.php:1043 +#: db_operations.php:458 libraries/messages.inc.php:1039 #: tbl_operations.php:526 tbl_tracking.php:388 msgid "Structure only" msgstr "仅结构" -#: db_operations.php:459 libraries/messages.inc.php:1041 +#: db_operations.php:459 libraries/messages.inc.php:1037 #: tbl_operations.php:527 tbl_tracking.php:390 msgid "Structure and data" msgstr "结构和数据" -#: db_operations.php:460 libraries/messages.inc.php:229 tbl_operations.php:528 +#: db_operations.php:460 libraries/messages.inc.php:225 tbl_operations.php:528 #: tbl_tracking.php:389 msgid "Data only" msgstr "仅数据" -#: db_operations.php:468 libraries/messages.inc.php:186 +#: db_operations.php:468 libraries/messages.inc.php:182 msgid "CREATE DATABASE before copying" msgstr "复制前创建数据库 (CREATE DATABASE)" #: db_operations.php:471 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 -#: libraries/export/sql.php:82 libraries/messages.inc.php:30 +#: libraries/export/sql.php:82 libraries/messages.inc.php:26 #: tbl_operations.php:534 #, php-format msgid "Add %s" msgstr "添加 %s" -#: db_operations.php:475 libraries/messages.inc.php:29 tbl_operations.php:297 +#: db_operations.php:475 libraries/messages.inc.php:25 tbl_operations.php:297 #: tbl_operations.php:536 msgid "Add AUTO_INCREMENT value" msgstr "添加自增 (AUTO_INCREMENT) 值" -#: db_operations.php:479 libraries/messages.inc.php:31 tbl_operations.php:543 +#: db_operations.php:479 libraries/messages.inc.php:27 tbl_operations.php:543 msgid "Add constraints" msgstr "强制添加" -#: db_operations.php:492 libraries/messages.inc.php:1059 +#: db_operations.php:492 libraries/messages.inc.php:1055 msgid "Switch to copied database" msgstr "切换到复制的数据库" -#: db_operations.php:533 libraries/messages.inc.php:89 +#: db_operations.php:533 libraries/messages.inc.php:85 msgid "BLOB Repository" msgstr "BLOB 容器" #: db_operations.php:536 db_tracking.php:76 libraries/common.lib.php:1350 -#: libraries/messages.inc.php:1037 libraries/server_links.inc.php:49 +#: libraries/messages.inc.php:1033 libraries/server_links.inc.php:49 #: server_processlist.php:59 tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "状态" @@ -303,11 +303,11 @@ msgctxt "BLOB repository" msgid "Enabled" msgstr "已启用" -#: db_operations.php:548 libraries/messages.inc.php:93 +#: db_operations.php:548 libraries/messages.inc.php:89 msgid "Disable" msgstr "禁用" -#: db_operations.php:558 libraries/messages.inc.php:90 +#: db_operations.php:558 libraries/messages.inc.php:86 msgid "Damaged" msgstr "已损坏" @@ -321,12 +321,12 @@ msgctxt "BLOB repository" msgid "Disabled" msgstr "已禁用" -#: db_operations.php:574 libraries/messages.inc.php:96 +#: db_operations.php:574 libraries/messages.inc.php:92 msgid "Enable" msgstr "启用" #: db_operations.php:598 libraries/Index.class.php:448 -#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:158 +#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:154 #: 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:361 @@ -335,7 +335,7 @@ msgstr "启用" msgid "Collation" msgstr "整理" -#: db_operations.php:609 libraries/messages.inc.php:742 main.php:316 +#: db_operations.php:609 libraries/messages.inc.php:738 main.php:316 #: pdf_schema.php:34 #, php-format msgid "" @@ -343,58 +343,58 @@ msgid "" "deactivated. To find out why click %shere%s." msgstr "链接表的附加功能尚未激活。要查出原因,请点击%s此处%s。" -#: db_operations.php:645 libraries/messages.inc.php:264 pdf_pages.php:528 +#: db_operations.php:645 libraries/messages.inc.php:260 pdf_pages.php:528 msgid "Display PDF schema" msgstr "显示 PDF 大纲" -#: db_operations.php:661 libraries/messages.inc.php:877 pdf_pages.php:529 +#: db_operations.php:661 libraries/messages.inc.php:873 pdf_pages.php:529 msgid "Show grid" msgstr "显示网格" -#: db_operations.php:664 libraries/messages.inc.php:874 pdf_pages.php:530 +#: db_operations.php:664 libraries/messages.inc.php:870 pdf_pages.php:530 msgid "Show color" msgstr "显示颜色" -#: db_operations.php:666 libraries/messages.inc.php:998 pdf_pages.php:531 +#: db_operations.php:666 libraries/messages.inc.php:994 pdf_pages.php:531 msgid "Show dimension of tables" msgstr "显示表格大小" -#: db_operations.php:669 libraries/messages.inc.php:52 pdf_pages.php:532 +#: db_operations.php:669 libraries/messages.inc.php:48 pdf_pages.php:532 msgid "Display all tables with the same width" msgstr "以相同宽度显示所有的表" -#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:227 +#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:223 #: pdf_pages.php:533 msgid "Data Dictionary" msgstr "数据字典" -#: db_operations.php:674 libraries/messages.inc.php:884 pdf_pages.php:534 +#: db_operations.php:674 libraries/messages.inc.php:880 pdf_pages.php:534 msgid "Only show keys" msgstr "仅显示键" -#: db_operations.php:676 libraries/messages.inc.php:875 pdf_pages.php:535 +#: db_operations.php:676 libraries/messages.inc.php:871 pdf_pages.php:535 msgid "Data Dictionary Format" msgstr "数据字典格式" -#: db_operations.php:678 libraries/messages.inc.php:464 pdf_pages.php:537 +#: db_operations.php:678 libraries/messages.inc.php:460 pdf_pages.php:537 msgid "Landscape" msgstr "横向" -#: db_operations.php:679 libraries/messages.inc.php:663 pdf_pages.php:538 +#: db_operations.php:679 libraries/messages.inc.php:659 pdf_pages.php:538 msgid "Portrait" msgstr "纵向" -#: db_operations.php:682 libraries/messages.inc.php:599 pdf_pages.php:541 +#: db_operations.php:682 libraries/messages.inc.php:595 pdf_pages.php:541 msgid "Paper size" msgstr "纸张大小" -#: db_operations.php:706 libraries/messages.inc.php:281 +#: db_operations.php:706 libraries/messages.inc.php:277 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 libraries/messages.inc.php:1087 +#: libraries/header.inc.php:126 libraries/messages.inc.php:1083 #: pdf_pages.php:405 server_privileges.php:1626 server_privileges.php:1682 #: server_privileges.php:1946 server_synchronize.php:423 #: server_synchronize.php:866 tbl_tracking.php:592 test/theme.php:75 @@ -402,176 +402,176 @@ msgid "Table" msgstr "表" #: db_printview.php:105 libraries/db_structure.lib.php:56 -#: libraries/messages.inc.php:735 +#: libraries/messages.inc.php:731 msgid "Records" msgstr "记录数" #: db_printview.php:109 libraries/db_structure.lib.php:67 -#: libraries/messages.inc.php:1003 tbl_indexes.php:190 +#: libraries/messages.inc.php:999 tbl_indexes.php:190 msgid "Size" msgstr "大小" #: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 -#: libraries/export/sql.php:899 libraries/messages.inc.php:436 +#: libraries/export/sql.php:899 libraries/messages.inc.php:432 msgid "in use" msgstr "使用中" #: db_printview.php:187 libraries/db_info.inc.php:88 -#: libraries/export/sql.php:514 libraries/messages.inc.php:1032 +#: libraries/export/sql.php:514 libraries/messages.inc.php:1028 #: pdf_schema.php:1241 tbl_printview.php:434 tbl_structure.php:810 msgid "Creation" msgstr "创建时间" #: db_printview.php:196 libraries/db_info.inc.php:93 -#: libraries/export/sql.php:519 libraries/messages.inc.php:1036 +#: libraries/export/sql.php:519 libraries/messages.inc.php:1032 #: pdf_schema.php:1246 tbl_printview.php:444 tbl_structure.php:818 msgid "Last update" msgstr "最后更新" #: db_printview.php:205 libraries/db_info.inc.php:98 -#: libraries/export/sql.php:524 libraries/messages.inc.php:1031 +#: libraries/export/sql.php:524 libraries/messages.inc.php:1027 #: pdf_schema.php:1251 tbl_printview.php:454 tbl_structure.php:826 msgid "Last check" msgstr "最后检查" -#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1085 +#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1081 #, php-format msgid "%s table(s)" msgstr "%s 张表" #: db_qbe.php:29 libraries/display_tbl.lib.php:1981 -#: libraries/messages.inc.php:1051 libraries/sql_query_form.lib.php:140 +#: libraries/messages.inc.php:1047 libraries/sql_query_form.lib.php:140 #: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131 #: view_operations.php:62 msgid "Your SQL query has been executed successfully" msgstr "您的 SQL 语句已成功运行" -#: db_qbe.php:42 libraries/messages.inc.php:371 +#: db_qbe.php:42 libraries/messages.inc.php:367 msgid "You have to choose at least one column to display" msgstr "您最少要选择显示一列" #: db_qbe.php:200 libraries/db_structure.lib.php:104 -#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1014 +#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1010 msgid "Sort" msgstr "排序" #: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111 #: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828 -#: libraries/messages.inc.php:69 server_databases.php:170 +#: libraries/messages.inc.php:65 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314 msgid "Ascending" msgstr "递增" #: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119 #: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825 -#: libraries/messages.inc.php:251 server_databases.php:170 +#: libraries/messages.inc.php:247 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315 msgid "Descending" msgstr "递减" #: db_qbe.php:264 db_tracking.php:78 libraries/display_tbl.lib.php:308 -#: libraries/messages.inc.php:888 tbl_change.php:277 tbl_tracking.php:597 +#: libraries/messages.inc.php:884 tbl_change.php:277 tbl_tracking.php:597 msgid "Show" msgstr "显示" -#: db_qbe.php:300 libraries/messages.inc.php:202 +#: db_qbe.php:300 libraries/messages.inc.php:198 msgid "Criteria" msgstr "条件" #: db_qbe.php:353 db_qbe.php:435 db_qbe.php:527 db_qbe.php:558 -#: libraries/messages.inc.php:718 +#: libraries/messages.inc.php:714 msgid "Ins" msgstr "插入" #: db_qbe.php:357 db_qbe.php:439 db_qbe.php:524 db_qbe.php:555 -#: libraries/messages.inc.php:56 +#: libraries/messages.inc.php:52 msgid "And" msgstr "与" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:529 db_qbe.php:560 -#: libraries/messages.inc.php:717 +#: libraries/messages.inc.php:713 msgid "Del" msgstr "删除" #: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553 -#: libraries/display_import.lib.php:166 libraries/messages.inc.php:592 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:588 #: libraries/tbl_properties.inc.php:779 server_privileges.php:258 #: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288 msgid "Or" msgstr "或" -#: db_qbe.php:507 libraries/messages.inc.php:516 +#: db_qbe.php:507 libraries/messages.inc.php:512 msgid "Modify" msgstr "修改" -#: db_qbe.php:584 libraries/messages.inc.php:33 +#: db_qbe.php:584 libraries/messages.inc.php:29 msgid "Add/Delete Criteria Row" msgstr "添加/删除条件行" -#: db_qbe.php:596 libraries/messages.inc.php:32 +#: db_qbe.php:596 libraries/messages.inc.php:28 msgid "Add/Delete Field Columns" msgstr "添加/删除字段列" -#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1192 +#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1188 msgid "Update Query" msgstr "更新查询" -#: db_qbe.php:617 libraries/messages.inc.php:1216 +#: db_qbe.php:617 libraries/messages.inc.php:1212 msgid "Use Tables" msgstr "使用表" -#: db_qbe.php:640 libraries/messages.inc.php:723 +#: db_qbe.php:640 libraries/messages.inc.php:719 #, php-format msgid "SQL query on database %s:" msgstr "在数据库 %s 执行 SQL 语句:" -#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:823 +#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:819 msgid "Submit Query" msgstr "提交查询" #: db_search.php:68 libraries/auth/config.auth.lib.php:84 #: libraries/auth/config.auth.lib.php:103 #: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52 -#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:26 +#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:22 msgid "Access denied" msgstr "拒绝访问" -#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:836 +#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:832 msgid "at least one of the words" msgstr "至少一个词" -#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:837 +#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:833 msgid "all words" msgstr "所有词" -#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:838 +#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:834 msgid "the exact phrase" msgstr "精确短语" -#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:839 +#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:835 msgid "as regular expression" msgstr "使用正则表达式" -#: db_search.php:242 libraries/messages.inc.php:840 +#: db_search.php:242 libraries/messages.inc.php:836 #, php-format msgid "Search results for \"%s\" %s:" msgstr "“%s”的搜索结果 %s:" -#: db_search.php:260 libraries/messages.inc.php:579 +#: db_search.php:260 libraries/messages.inc.php:575 #, php-format msgid "%s match(es) inside table %s" 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/messages.inc.php:108 +#: db_structure.php:105 libraries/messages.inc.php:104 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468 msgid "Browse" msgstr "浏览" #: db_search.php:272 libraries/display_tbl.lib.php:1165 -#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:243 +#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:239 #: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406 #: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377 #: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216 @@ -579,45 +579,45 @@ msgstr "浏览" msgid "Delete" msgstr "删除" -#: db_search.php:285 libraries/messages.inc.php:580 +#: db_search.php:285 libraries/messages.inc.php:576 #, php-format msgid "Total: %s match(es)" msgstr "总计: %s 个匹配" -#: db_search.php:299 libraries/messages.inc.php:832 +#: db_search.php:299 libraries/messages.inc.php:828 msgid "Search in database" msgstr "在数据库中搜索" -#: db_search.php:302 libraries/messages.inc.php:835 +#: db_search.php:302 libraries/messages.inc.php:831 msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgstr "要查找的文字或数值 (通配符:“%”):" -#: db_search.php:307 libraries/messages.inc.php:842 +#: db_search.php:307 libraries/messages.inc.php:838 msgid "Find:" msgstr "查找:" -#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1017 +#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1013 msgid "Words are separated by a space character (\" \")." msgstr "每个单词用空格 (“ ”) 分隔。" -#: db_search.php:325 libraries/messages.inc.php:834 +#: db_search.php:325 libraries/messages.inc.php:830 msgid "Inside table(s):" msgstr "于以下表:" -#: db_search.php:355 libraries/messages.inc.php:833 +#: db_search.php:355 libraries/messages.inc.php:829 msgid "Inside field:" 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/messages.inc.php:431 libraries/sql_query_form.lib.php:334 +#: libraries/messages.inc.php:427 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/db_links.inc.php:63 libraries/export/latex.php:337 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:1048 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:1044 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 #: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269 msgid "Structure" @@ -626,8 +626,8 @@ 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:1642 -#: libraries/db_links.inc.php:100 libraries/messages.inc.php:272 +#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/db_links.inc.php:100 libraries/messages.inc.php:268 #: 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 @@ -637,40 +637,40 @@ 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:1641 -#: libraries/messages.inc.php:284 libraries/mult_submits.inc.php:39 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: libraries/messages.inc.php:280 libraries/mult_submits.inc.php:39 #: libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "清空" -#: db_structure.php:316 libraries/messages.inc.php:1075 +#: db_structure.php:316 libraries/messages.inc.php:1071 #: libraries/tbl_links.inc.php:100 #, php-format msgid "Table %s has been emptied" msgstr "已清空表 %s " -#: db_structure.php:326 libraries/messages.inc.php:1229 +#: db_structure.php:326 libraries/messages.inc.php:1225 #: libraries/tbl_links.inc.php:133 #, php-format msgid "View %s has been dropped" msgstr "已删除视图 %s" -#: db_structure.php:326 libraries/messages.inc.php:1074 +#: db_structure.php:326 libraries/messages.inc.php:1070 #: libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "已删除表 %s " -#: db_structure.php:333 libraries/messages.inc.php:1128 +#: db_structure.php:333 libraries/messages.inc.php:1124 msgid "Tracking is active." msgstr "追踪已启用。" -#: db_structure.php:335 libraries/messages.inc.php:1129 +#: db_structure.php:335 libraries/messages.inc.php:1125 msgid "Tracking is not active." msgstr "追踪已禁用。" #: db_structure.php:420 libraries/display_tbl.lib.php:1944 -#: libraries/messages.inc.php:1228 +#: libraries/messages.inc.php:1224 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -678,83 +678,83 @@ msgid "" msgstr "该视图最少包含的行数,参见%s文档%s。" #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 -#: libraries/messages.inc.php:1233 libraries/tbl_info.inc.php:66 +#: libraries/messages.inc.php:1229 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/messages.inc.php:773 libraries/server_links.inc.php:70 +#: libraries/messages.inc.php:769 libraries/server_links.inc.php:70 #: server_replication.php:33 server_replication.php:164 server_status.php:258 msgid "Replication" msgstr "复制" -#: db_structure.php:489 libraries/messages.inc.php:1053 +#: db_structure.php:489 libraries/messages.inc.php:1049 msgid "Sum" msgstr "总计" #: db_structure.php:496 libraries/StorageEngine.class.php:356 -#: libraries/messages.inc.php:239 +#: libraries/messages.inc.php:235 #, 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 #: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086 -#: libraries/messages.inc.php:1243 libraries/mult_submits.inc.php:16 +#: libraries/messages.inc.php:1239 libraries/mult_submits.inc.php:16 #: server_databases.php:346 server_databases.php:351 #: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465 msgid "With selected:" msgstr "选中项:" #: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: libraries/messages.inc.php:148 server_databases.php:348 +#: libraries/messages.inc.php:144 server_databases.php:348 #: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459 msgid "Check All" msgstr "全选" #: db_structure.php:531 libraries/display_tbl.lib.php:2077 -#: libraries/messages.inc.php:1184 libraries/replication_gui.lib.php:33 +#: libraries/messages.inc.php:1180 libraries/replication_gui.lib.php:33 #: server_databases.php:350 server_privileges.php:533 #: server_privileges.php:1564 tbl_structure.php:463 msgid "Uncheck All" msgstr "全不选" -#: db_structure.php:536 libraries/messages.inc.php:150 +#: db_structure.php:536 libraries/messages.inc.php:146 msgid "Check tables having overhead" msgstr "仅选择多余" #: db_structure.php:547 db_structure.php:548 db_structure.php:599 -#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:672 +#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:668 #: libraries/mult_submits.inc.php:28 tbl_structure.php:493 #: tbl_structure.php:495 msgid "Print view" msgstr "打印预览" -#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:153 +#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:149 #: libraries/mult_submits.inc.php:42 tbl_operations.php:579 msgid "Check table" msgstr "检查表" -#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:590 +#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:586 #: libraries/mult_submits.inc.php:47 tbl_operations.php:619 #: tbl_structure.php:710 tbl_structure.php:712 msgid "Optimize table" msgstr "优化表" -#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:758 +#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:754 #: libraries/mult_submits.inc.php:52 tbl_operations.php:609 msgid "Repair table" msgstr "修复表" -#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:55 +#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:51 #: libraries/mult_submits.inc.php:57 tbl_operations.php:599 msgid "Analyze table" msgstr "分析表" #: db_structure.php:557 db_structure.php:558 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/messages.inc.php:310 +#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:306 #: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84 #: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109 #: server_privileges.php:1341 setup/frames/menu.inc.php:22 @@ -762,7 +762,7 @@ msgstr "分析表" msgid "Export" msgstr "导出" -#: db_tracking.php:66 libraries/messages.inc.php:1151 +#: db_tracking.php:66 libraries/messages.inc.php:1147 msgid "Tracked tables" msgstr "已追踪的表" @@ -770,7 +770,7 @@ msgstr "已追踪的表" #: 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/header_printview.inc.php:58 libraries/messages.inc.php:212 +#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:208 #: navigation.php:233 server_databases.php:169 server_privileges.php:1621 #: server_privileges.php:1682 server_privileges.php:1940 #: server_processlist.php:56 server_synchronize.php:1179 @@ -778,92 +778,92 @@ msgstr "已追踪的表" msgid "Database" msgstr "数据库" -#: db_tracking.php:73 libraries/messages.inc.php:1146 +#: db_tracking.php:73 libraries/messages.inc.php:1142 msgid "Last version" msgstr "最新版本" -#: db_tracking.php:74 libraries/messages.inc.php:1145 tbl_tracking.php:594 +#: db_tracking.php:74 libraries/messages.inc.php:1141 tbl_tracking.php:594 msgid "Created" msgstr "创建" -#: db_tracking.php:75 libraries/messages.inc.php:1147 tbl_tracking.php:595 +#: db_tracking.php:75 libraries/messages.inc.php:1143 tbl_tracking.php:595 msgid "Updated" msgstr "更新" #: db_tracking.php:77 libraries/Index.class.php:440 -#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:27 +#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:23 #: server_databases.php:203 server_privileges.php:1503 #: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187 msgid "Action" msgstr "操作" -#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:247 +#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:243 msgid "Delete tracking data for this table" msgstr "删除追踪数据" -#: db_tracking.php:106 libraries/messages.inc.php:1142 tbl_tracking.php:548 +#: db_tracking.php:106 libraries/messages.inc.php:1138 tbl_tracking.php:548 #: tbl_tracking.php:606 tbl_tracking.php:613 msgid "active" msgstr "启用" -#: db_tracking.php:108 libraries/messages.inc.php:1143 tbl_tracking.php:550 +#: db_tracking.php:108 libraries/messages.inc.php:1139 tbl_tracking.php:550 #: tbl_tracking.php:608 tbl_tracking.php:610 msgid "not active" msgstr "禁用" -#: db_tracking.php:121 libraries/messages.inc.php:1160 +#: db_tracking.php:121 libraries/messages.inc.php:1156 msgid "Versions" msgstr "版本" -#: db_tracking.php:122 libraries/messages.inc.php:1132 tbl_tracking.php:379 +#: db_tracking.php:122 libraries/messages.inc.php:1128 tbl_tracking.php:379 #: tbl_tracking.php:624 msgid "Tracking report" msgstr "追踪报告" -#: db_tracking.php:123 libraries/messages.inc.php:1144 tbl_tracking.php:251 +#: db_tracking.php:123 libraries/messages.inc.php:1140 tbl_tracking.php:251 #: tbl_tracking.php:624 msgid "Structure snapshot" msgstr "结构快照" -#: db_tracking.php:152 libraries/messages.inc.php:1154 +#: db_tracking.php:152 libraries/messages.inc.php:1150 msgid "Untracked tables" msgstr "未追踪的表" -#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1153 +#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1149 #: tbl_structure.php:529 tbl_structure.php:531 msgid "Track table" msgstr "追踪表" -#: db_tracking.php:200 libraries/messages.inc.php:1121 +#: db_tracking.php:200 libraries/messages.inc.php:1117 msgid "Database Log" msgstr "数据库日志" -#: export.php:62 libraries/messages.inc.php:312 +#: export.php:62 libraries/messages.inc.php:308 msgid "Selected export type has to be saved in file!" msgstr "选择导出文件的类型!" -#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:567 +#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:563 #, php-format msgid "Insufficient space to save the file %s." msgstr "没有足够的空间保存文件 %s。" -#: export.php:294 libraries/messages.inc.php:324 +#: export.php:294 libraries/messages.inc.php:320 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "服务器上已存在文件 %s,请修改文件名或选中覆盖选项。" -#: export.php:298 export.php:302 libraries/messages.inc.php:562 +#: export.php:298 export.php:302 libraries/messages.inc.php:558 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "网站服务器没有保存文件 %s 的权限。" -#: export.php:629 libraries/messages.inc.php:276 +#: export.php:629 libraries/messages.inc.php:272 #, php-format msgid "Dump has been saved to file %s." msgstr "转存已经保存到文件 %s 中。" -#: import.php:60 libraries/messages.inc.php:1202 +#: import.php:60 libraries/messages.inc.php:1198 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation%" @@ -871,14 +871,14 @@ msgid "" msgstr "您可能正在上传很大的文件,请参考%s文档%s来寻找解决方法。" #: import.php:279 import.php:332 libraries/File.class.php:849 -#: libraries/File.class.php:961 libraries/messages.inc.php:325 +#: libraries/File.class.php:961 libraries/messages.inc.php:321 msgid "File could not be read" msgstr "无法读取文件" #: import.php:287 import.php:296 import.php:315 import.php:324 #: libraries/File.class.php:1031 libraries/File.class.php:1039 #: libraries/File.class.php:1055 libraries/File.class.php:1063 -#: libraries/messages.inc.php:1189 +#: libraries/messages.inc.php:1185 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -886,7 +886,7 @@ msgid "" msgstr "" "您正在载入不支持的压缩格式 (%s)。配置文件中没有对应这种格式的配置说明。" -#: import.php:337 libraries/messages.inc.php:547 +#: import.php:337 libraries/messages.inc.php:543 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -896,39 +896,39 @@ msgstr "" "参见 [a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]。" #: import.php:372 libraries/display_import.lib.php:24 -#: libraries/messages.inc.php:125 +#: libraries/messages.inc.php:121 msgid "Could not load import plugins, please check your installation!" msgstr "无法加载导入插件,请检查你的安装!" -#: import.php:397 libraries/messages.inc.php:102 +#: import.php:397 libraries/messages.inc.php:98 msgid "The bookmark has been deleted." msgstr "书签已删除。" -#: import.php:401 libraries/messages.inc.php:879 +#: import.php:401 libraries/messages.inc.php:875 msgid "Showing bookmark" msgstr "显示书签" -#: import.php:403 libraries/messages.inc.php:101 +#: import.php:403 libraries/messages.inc.php:97 #, php-format msgid "Bookmark %s created" msgstr "已创建书签 %s" -#: import.php:409 import.php:415 libraries/messages.inc.php:407 +#: import.php:409 import.php:415 libraries/messages.inc.php:403 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "导入成功,执行了 %d 个查询。" -#: import.php:424 libraries/messages.inc.php:1107 +#: import.php:424 libraries/messages.inc.php:1103 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "脚本超时,如果你要完成导入,请重新提交相同的文件,导入将会继续进行。" -#: index.php:190 libraries/messages.inc.php:553 +#: index.php:190 libraries/messages.inc.php:549 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin 更适合在支持框架的浏览器中使用。" -#: js/messages.php:25 libraries/messages.inc.php:155 +#: js/messages.php:25 libraries/messages.inc.php:151 #: server_synchronize.php:345 server_synchronize.php:357 #: server_synchronize.php:373 server_synchronize.php:380 #: server_synchronize.php:739 server_synchronize.php:767 @@ -936,116 +936,116 @@ msgstr "phpMyAdmin 更适合在支持框架的浏览器中使用。" msgid "Click to select" msgstr "点击选中" -#: js/messages.php:26 libraries/messages.inc.php:156 +#: js/messages.php:26 libraries/messages.inc.php:152 msgid "Click to unselect" msgstr "点击取消" #: js/messages.php:27 libraries/import.lib.php:103 -#: libraries/messages.inc.php:550 sql.php:89 +#: libraries/messages.inc.php:546 sql.php:89 msgid "\"DROP DATABASE\" statements are disabled." msgstr "已经禁用删除数据库 (“DROP DATABASE”) 语句。" -#: js/messages.php:30 libraries/messages.inc.php:270 +#: js/messages.php:30 libraries/messages.inc.php:266 #: libraries/mult_submits.inc.php:258 sql.php:188 msgid "Do you really want to " msgstr "您真的要" -#: js/messages.php:31 libraries/messages.inc.php:271 +#: js/messages.php:31 libraries/messages.inc.php:267 #: libraries/mult_submits.inc.php:258 sql.php:172 msgid "You are about to DESTROY a complete database!" msgstr "您将要删除一个完整的数据库!" -#: js/messages.php:34 libraries/messages.inc.php:94 +#: js/messages.php:34 libraries/messages.inc.php:90 msgid "You are about to DISABLE a BLOB Repository!" msgstr "您正准备禁用 BLOB 容器!" -#: js/messages.php:35 libraries/messages.inc.php:91 +#: js/messages.php:35 libraries/messages.inc.php:87 #, php-format msgid "Are you sure you want to disable all BLOB references for database %s?" msgstr "您确定要在数据库 %s 上禁用 BLOB 功能?" -#: js/messages.php:38 libraries/messages.inc.php:342 +#: js/messages.php:38 libraries/messages.inc.php:338 msgid "Missing value in the form!" msgstr "表单内缺少值!" -#: js/messages.php:39 libraries/messages.inc.php:570 +#: js/messages.php:39 libraries/messages.inc.php:566 msgid "This is not a number!" msgstr "这不是一个数字!" -#: js/messages.php:42 libraries/messages.inc.php:380 +#: js/messages.php:42 libraries/messages.inc.php:376 msgid "The host name is empty!" msgstr "主机名不能为空!" -#: js/messages.php:43 libraries/messages.inc.php:1208 +#: js/messages.php:43 libraries/messages.inc.php:1204 msgid "The user name is empty!" msgstr "用户名不能为空!" -#: js/messages.php:44 libraries/messages.inc.php:607 +#: js/messages.php:44 libraries/messages.inc.php:603 #: server_privileges.php:1197 user_password.php:70 msgid "The password is empty!" msgstr "密码不能为空!" -#: js/messages.php:45 libraries/messages.inc.php:609 +#: js/messages.php:45 libraries/messages.inc.php:605 #: server_privileges.php:1195 user_password.php:73 msgid "The passwords aren't the same!" msgstr "两次密码不一致!" -#: js/messages.php:49 libraries/messages.inc.php:123 pmd_general.php:342 +#: js/messages.php:49 libraries/messages.inc.php:119 pmd_general.php:342 #: pmd_general.php:379 msgid "Cancel" msgstr "取消" -#: js/messages.php:52 libraries/messages.inc.php:514 +#: js/messages.php:52 libraries/messages.inc.php:510 msgid "Modifications have been saved" msgstr "已保存修改。" -#: js/messages.php:53 libraries/messages.inc.php:741 +#: js/messages.php:53 libraries/messages.inc.php:737 msgid "Relation deleted" msgstr "已删除关系" -#: js/messages.php:54 libraries/messages.inc.php:340 +#: js/messages.php:54 libraries/messages.inc.php:336 msgid "FOREIGN KEY relation added" msgstr "已添加外键关联" -#: js/messages.php:55 libraries/messages.inc.php:434 +#: js/messages.php:55 libraries/messages.inc.php:430 msgid "Internal relation added" msgstr "已添加内联关系" -#: js/messages.php:56 libraries/messages.inc.php:299 +#: js/messages.php:56 libraries/messages.inc.php:295 msgid "Error: Relation not added." msgstr "错误:关系未添加" -#: js/messages.php:57 libraries/messages.inc.php:300 +#: js/messages.php:57 libraries/messages.inc.php:296 msgid "Error: relation already exists." msgstr "错误:关系已存在" -#: js/messages.php:58 libraries/messages.inc.php:302 +#: js/messages.php:58 libraries/messages.inc.php:298 msgid "Error saving coordinates for Designer." msgstr "保存设计器坐标时出错。" -#: js/messages.php:59 libraries/messages.inc.php:351 +#: js/messages.php:59 libraries/messages.inc.php:347 #: libraries/relation.lib.php:107 msgid "General relation features" msgstr "基本功能" -#: js/messages.php:59 libraries/messages.inc.php:260 +#: js/messages.php:59 libraries/messages.inc.php:256 #: libraries/relation.lib.php:101 libraries/relation.lib.php:108 msgid "Disabled" msgstr "已禁用" -#: js/messages.php:60 libraries/messages.inc.php:850 +#: js/messages.php:60 libraries/messages.inc.php:846 msgid "Select referenced key" msgstr "选择外键" -#: js/messages.php:61 libraries/messages.inc.php:848 +#: js/messages.php:61 libraries/messages.inc.php:844 msgid "Select Foreign Key" msgstr "选择外键" -#: js/messages.php:62 libraries/messages.inc.php:653 +#: js/messages.php:62 libraries/messages.inc.php:649 msgid "Please select the primary key or a unique key" msgstr "请选择主键或唯一键" -#: js/messages.php:63 libraries/messages.inc.php:142 pmd_general.php:77 +#: js/messages.php:63 libraries/messages.inc.php:138 pmd_general.php:77 #: tbl_relation.php:548 msgid "Choose field to display" msgstr "选择要显示的字段" @@ -1061,9 +1061,9 @@ msgid "Prev" msgstr "上个月" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2332 -#: libraries/common.lib.php:2335 libraries/display_tbl.lib.php:338 -#: libraries/messages.inc.php:543 server_binlog.php:205 server_binlog.php:207 +#: js/messages.php:77 libraries/common.lib.php:2344 +#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: libraries/messages.inc.php:539 server_binlog.php:205 server_binlog.php:207 #: tbl_printview.php:424 tbl_structure.php:802 msgid "Next" msgstr "下个月" @@ -1122,63 +1122,63 @@ msgid "December" msgstr "十二月" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1543 +#: js/messages.php:97 libraries/common.lib.php:1555 msgid "Jan" msgstr "一月" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1545 +#: js/messages.php:99 libraries/common.lib.php:1557 msgid "Feb" msgstr "二月" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1547 +#: js/messages.php:101 libraries/common.lib.php:1559 msgid "Mar" msgstr "三月" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1549 +#: js/messages.php:103 libraries/common.lib.php:1561 msgid "Apr" msgstr "四月" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1551 +#: js/messages.php:105 libraries/common.lib.php:1563 msgctxt "Short month name" msgid "May" msgstr "五月" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1553 +#: js/messages.php:107 libraries/common.lib.php:1565 msgid "Jun" msgstr "六月" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1555 +#: js/messages.php:109 libraries/common.lib.php:1567 msgid "Jul" msgstr "七月" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1557 +#: js/messages.php:111 libraries/common.lib.php:1569 msgid "Aug" msgstr "八月" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1559 +#: js/messages.php:113 libraries/common.lib.php:1571 msgid "Sep" msgstr "九月" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1561 +#: js/messages.php:115 libraries/common.lib.php:1573 msgid "Oct" msgstr "十月" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1563 +#: js/messages.php:117 libraries/common.lib.php:1575 msgid "Nov" msgstr "十一月" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1565 +#: js/messages.php:119 libraries/common.lib.php:1577 msgid "Dec" msgstr "十二月" @@ -1211,37 +1211,37 @@ msgid "Saturday" msgstr "星期六" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1568 +#: js/messages.php:132 libraries/common.lib.php:1580 msgid "Sun" msgstr "周日" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1570 +#: js/messages.php:134 libraries/common.lib.php:1582 msgid "Mon" msgstr "周一" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1572 +#: js/messages.php:136 libraries/common.lib.php:1584 msgid "Tue" msgstr "周二" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1574 +#: js/messages.php:138 libraries/common.lib.php:1586 msgid "Wed" msgstr "周三" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1576 +#: js/messages.php:140 libraries/common.lib.php:1588 msgid "Thu" msgstr "周四" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1578 +#: js/messages.php:142 libraries/common.lib.php:1590 msgid "Fri" msgstr "周五" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1580 +#: js/messages.php:144 libraries/common.lib.php:1592 msgid "Sat" msgstr "周六" @@ -1297,43 +1297,43 @@ msgstr "分" msgid "Second" msgstr "秒" -#: libraries/Config.class.php:1015 libraries/messages.inc.php:338 +#: libraries/Config.class.php:1015 libraries/messages.inc.php:334 msgid "Font size" msgstr "字号" #: libraries/File.class.php:344 libraries/File.class.php:432 #: libraries/File.class.php:569 libraries/File.class.php:708 -#: libraries/messages.inc.php:1201 +#: libraries/messages.inc.php:1197 msgid "Unknown error in file upload." msgstr "上传文件时发生未知错误。" -#: libraries/File.class.php:414 libraries/messages.inc.php:1198 +#: libraries/File.class.php:414 libraries/messages.inc.php:1194 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "上传文件的大小超过 php.ini 文件中 upload_max_filesize 的限制。" -#: libraries/File.class.php:417 libraries/messages.inc.php:1197 +#: libraries/File.class.php:417 libraries/messages.inc.php:1193 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "上传文件的大小超过 HTML 表单中指定的 MAX_FILE_SIZE 值。" -#: libraries/File.class.php:420 libraries/messages.inc.php:1200 +#: libraries/File.class.php:420 libraries/messages.inc.php:1196 msgid "The uploaded file was only partially uploaded." msgstr "仅上传了文件的一部分内容。" -#: libraries/File.class.php:423 libraries/messages.inc.php:1199 +#: libraries/File.class.php:423 libraries/messages.inc.php:1195 msgid "Missing a temporary folder." msgstr "找不到临时文件夹。" -#: libraries/File.class.php:426 libraries/messages.inc.php:1195 +#: libraries/File.class.php:426 libraries/messages.inc.php:1191 msgid "Failed to write file to disk." msgstr "将文件写入磁盘失败。" -#: libraries/File.class.php:429 libraries/messages.inc.php:1196 +#: libraries/File.class.php:429 libraries/messages.inc.php:1192 msgid "File upload stopped by extension." msgstr "因扩展而停止文件上传。" -#: libraries/File.class.php:908 libraries/messages.inc.php:319 +#: libraries/File.class.php:908 libraries/messages.inc.php:315 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -1341,34 +1341,34 @@ msgstr "" "移动上传文件时发生错误,参见 [a@./Documentation.html#faq1_11@Documentation]" "FAQ 1.11[/a]。" -#: libraries/Index.class.php:428 libraries/messages.inc.php:554 +#: libraries/Index.class.php:428 libraries/messages.inc.php:550 #: tbl_relation.php:529 msgid "No index defined!" msgstr "没有已定义的索引!" -#: libraries/Index.class.php:433 libraries/messages.inc.php:411 +#: libraries/Index.class.php:433 libraries/messages.inc.php:407 #: server_databases.php:132 tbl_tracking.php:316 msgid "Indexes" msgstr "索引" -#: libraries/Index.class.php:444 libraries/messages.inc.php:1186 +#: libraries/Index.class.php:444 libraries/messages.inc.php:1182 #: 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:475 tbl_tracking.php:322 msgid "Unique" msgstr "唯一" -#: libraries/Index.class.php:445 libraries/messages.inc.php:596 +#: libraries/Index.class.php:445 libraries/messages.inc.php:592 #: tbl_tracking.php:323 msgid "Packed" msgstr "紧凑" -#: libraries/Index.class.php:447 libraries/messages.inc.php:131 +#: libraries/Index.class.php:447 libraries/messages.inc.php:127 #: tbl_tracking.php:325 msgid "Cardinality" msgstr "基数" -#: libraries/Index.class.php:450 libraries/messages.inc.php:162 +#: libraries/Index.class.php:450 libraries/messages.inc.php:158 #: tbl_tracking.php:279 tbl_tracking.php:328 msgid "Comment" msgstr "注释" @@ -1376,29 +1376,29 @@ msgstr "注释" #: libraries/Index.class.php:466 libraries/common.lib.php:616 #: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:280 pdf_pages.php:280 +#: libraries/messages.inc.php:276 pdf_pages.php:280 #: setup/frames/index.inc.php:124 setup/lib/messages.inc.php:352 #: tbl_row_action.php:69 msgid "Edit" msgstr "编辑" -#: libraries/Index.class.php:472 libraries/messages.inc.php:666 +#: libraries/Index.class.php:472 libraries/messages.inc.php:662 msgid "The primary key has been dropped" msgstr "已删除主键" -#: libraries/Index.class.php:476 libraries/messages.inc.php:413 +#: libraries/Index.class.php:476 libraries/messages.inc.php:409 #, php-format msgid "Index %s has been dropped" msgstr "已删除索引 %s " -#: libraries/Index.class.php:576 libraries/messages.inc.php:412 +#: libraries/Index.class.php:576 libraries/messages.inc.php:408 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "索引 %1$s 和 %2$s 可能是相同的,其中一个将可能被删除" -#: libraries/List_Database.class.php:431 libraries/messages.inc.php:218 +#: libraries/List_Database.class.php:431 libraries/messages.inc.php:214 #: libraries/server_links.inc.php:41 server_databases.php:88 #: server_privileges.php:1621 setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" @@ -1422,85 +1422,85 @@ msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." msgstr[0] "插入了 %1$d 行。" -#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:549 +#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:545 msgid "" "There is no detailed status information available for this storage engine." msgstr "没有该存储引擎的详细信息。" -#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:291 +#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:287 #, php-format msgid "%s is available on this MySQL server." msgstr "%s 在此 MySQL 服务器上可用。" -#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:292 +#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:288 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s 在此 MySQL 服务器上被禁止了。" -#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:294 +#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:290 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "此 MySQL 服务器不支持 %s 存储引擎。" -#: libraries/Table.class.php:1019 libraries/messages.inc.php:443 +#: libraries/Table.class.php:1019 libraries/messages.inc.php:439 msgid "Invalid database" msgstr "无效的数据库" -#: libraries/Table.class.php:1033 libraries/messages.inc.php:450 +#: libraries/Table.class.php:1033 libraries/messages.inc.php:446 #: tbl_get_field.php:26 msgid "Invalid table name" msgstr "无效的数据表名" -#: libraries/Table.class.php:1048 libraries/messages.inc.php:301 +#: libraries/Table.class.php:1048 libraries/messages.inc.php:297 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "将表 %1$s 改名为 %2$s 时发生错误" -#: libraries/Table.class.php:1132 libraries/messages.inc.php:754 +#: libraries/Table.class.php:1132 libraries/messages.inc.php:750 #, php-format msgid "Table %s has been renamed to %s" msgstr "已将数据表 %s 改名为 %s" -#: libraries/Theme.class.php:162 libraries/messages.inc.php:1099 +#: libraries/Theme.class.php:162 libraries/messages.inc.php:1095 #, php-format msgid "No valid image path for theme %s found!" msgstr "找不到主题 %s 对应的图片路径!" -#: libraries/Theme.class.php:384 libraries/messages.inc.php:1097 +#: libraries/Theme.class.php:384 libraries/messages.inc.php:1093 msgid "No preview available." msgstr "没有可用的预览。" -#: libraries/Theme.class.php:387 libraries/messages.inc.php:1089 +#: libraries/Theme.class.php:387 libraries/messages.inc.php:1085 msgid "take it" msgstr "确定" -#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1096 +#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1092 #, php-format msgid "Default theme %s not found!" msgstr "未找到默认主题 %s !" -#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1098 +#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1094 #, php-format msgid "Theme %s not found!" msgstr "未找到主题 %s !" -#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1100 +#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1096 #, php-format msgid "Theme path not found for theme %s!" msgstr "找不到主题 %s 的路径" -#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1101 +#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1097 #: test/theme.php:161 themes.php:21 themes.php:41 msgid "Theme / Style" msgstr "主题 / 风格" -#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:172 +#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:168 msgid "Cannot connect: invalid settings." msgstr "无法连接:无效的设置。" #: libraries/auth/config.auth.lib.php:92 #: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65 -#: libraries/messages.inc.php:1238 test/theme.php:152 +#: libraries/messages.inc.php:1234 test/theme.php:152 #, php-format msgid "Welcome to %s" msgstr "欢迎使用 %s" @@ -1523,104 +1523,104 @@ msgstr "" "phpMyAdmin 尝试连接到 MySQL 服务器,但服务器拒绝连接。您应该检查配置文件中的" "主机、用户名和密码,并确认这些信息与 MySQL 服务器管理员所给出的信息一致。" -#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:488 +#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:484 msgid "Log in" msgstr "登录" #: libraries/auth/cookie.auth.lib.php:246 -#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:659 +#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:655 #: libraries/navigation_header.inc.php:93 #: libraries/navigation_header.inc.php:95 msgid "phpMyAdmin documentation" msgstr "phpMyAdmin 文档" #: libraries/auth/cookie.auth.lib.php:258 -#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:492 +#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:488 msgid "You can enter hostname/IP address and port separated by space." msgstr "您可以输入以空格分隔的主机名/IP地址和端口号。" -#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:493 +#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:489 msgid "Server:" msgstr "服务器:" -#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:494 +#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:490 msgid "Username:" msgstr "用户名:" -#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:491 +#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:487 msgid "Password:" msgstr "密码:" -#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:854 +#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:850 msgid "Server Choice" msgstr "选择服务器" #: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 -#: libraries/messages.inc.php:177 +#: libraries/messages.inc.php:173 msgid "Cookies must be enabled past this point." msgstr "必须启用 Cookies 才能登录。" #: libraries/auth/cookie.auth.lib.php:671 -#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:489 +#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:485 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "空密码登录被禁止 (参见 允许空密码)" #: libraries/auth/cookie.auth.lib.php:675 -#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:544 +#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:540 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "登录超时 (%s 秒未活动),请重新登录" #: libraries/auth/cookie.auth.lib.php:685 #: libraries/auth/cookie.auth.lib.php:687 -#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:126 +#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:122 msgid "Cannot log in to the MySQL server" msgstr "无法登录 MySQL 服务器" -#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1245 +#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1241 msgid "Wrong username/password. Access denied." msgstr "用户名/密码错误。拒绝访问。" #: libraries/auth/swekey/swekey.auth.lib.php:118 -#: libraries/messages.inc.php:1057 +#: libraries/messages.inc.php:1053 #, php-format msgid "File %s does not contain any key id" msgstr "文件 %s 未包含任何密钥" #: libraries/auth/swekey/swekey.auth.lib.php:157 #: libraries/auth/swekey/swekey.auth.lib.php:180 -#: libraries/messages.inc.php:1056 +#: libraries/messages.inc.php:1052 msgid "Hardware authentication failed" msgstr "硬件认证失败" #: libraries/auth/swekey/swekey.auth.lib.php:166 -#: libraries/messages.inc.php:1058 +#: libraries/messages.inc.php:1054 msgid "No valid authentication key plugged" msgstr "没有可用的密钥插入" #: libraries/auth/swekey/swekey.auth.lib.php:202 -#: libraries/messages.inc.php:1055 +#: libraries/messages.inc.php:1051 msgid "Authenticating..." msgstr "正在认证..." -#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1230 +#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1226 msgid "View image" msgstr "查看图像" -#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:652 +#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:648 msgid "Play audio" msgstr "播放音频" -#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1232 +#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1228 msgid "View video" msgstr "播放视频" -#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:269 +#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:265 msgid "Download file" msgstr "下载文件" -#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:128 +#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:124 msgid "" "Couldn't load the iconv or recode extension needed for charset conversion. " "Either configure PHP to enable these extensions or disable charset " @@ -1631,7 +1631,7 @@ msgstr "" #: libraries/charset_conversion.lib.php:79 #: libraries/charset_conversion.lib.php:90 -#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:130 +#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:126 msgid "" "Couldn't use the iconv, libiconv, or recode_string functions, although the " "necessary extensions appear to be loaded. Check your PHP configuration." @@ -1639,7 +1639,7 @@ msgstr "" "虽然必须的扩展已经加载,但还是无法使用 iconv、libiconv 和 recode_string 函" "数。请检查您的 PHP 配置。" -#: libraries/common.inc.php:583 libraries/messages.inc.php:170 +#: libraries/common.inc.php:583 libraries/messages.inc.php:166 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!" @@ -1669,22 +1669,22 @@ msgstr "必须在您的配置文件中设置 $cfg['PmaAbsoluteUri'] ! msgid "Invalid server index: %s" msgstr "无效的服务器索引: %s" -#: libraries/common.inc.php:636 libraries/messages.inc.php:448 +#: libraries/common.inc.php:636 libraries/messages.inc.php:444 #, 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/messages.inc.php:856 libraries/select_server.lib.php:41 +#: libraries/messages.inc.php:852 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/messages.inc.php:437 +#: libraries/common.inc.php:823 libraries/messages.inc.php:433 msgid "Invalid authentication method set in configuration:" msgstr "配置文件中设置的认证方式无效:" -#: libraries/common.lib.php:147 libraries/messages.inc.php:499 +#: libraries/common.lib.php:147 libraries/messages.inc.php:495 #, php-format msgid "Max: %s%s" msgstr "最大限制:%s %s" @@ -1704,7 +1704,7 @@ msgstr "zh" #: libraries/common.lib.php:428 libraries/common.lib.php:430 #: libraries/common.lib.php:432 libraries/common.lib.php:448 #: libraries/common.lib.php:450 libraries/dbg/setup.php:25 -#: libraries/display_export.lib.php:164 libraries/messages.inc.php:267 +#: libraries/display_export.lib.php:164 libraries/messages.inc.php:263 #: libraries/relation.lib.php:97 libraries/sql_query_form.lib.php:451 #: libraries/sql_query_form.lib.php:454 main.php:229 pdf_pages.php:37 #: pdf_pages.php:43 pdf_pages.php:49 pdf_pages.php:54 @@ -1714,55 +1714,55 @@ msgstr "文档" #: libraries/common.lib.php:581 libraries/core.lib.php:234 #: libraries/core.lib.php:263 libraries/import.lib.php:134 -#: libraries/messages.inc.php:297 pdf_schema.php:32 pdf_schema.php:232 +#: libraries/messages.inc.php:293 pdf_schema.php:32 pdf_schema.php:232 #: tbl_change.php:1027 tbl_operations.php:213 tbl_relation.php:290 #: view_operations.php:62 msgid "Error" msgstr "错误" #: libraries/common.lib.php:595 libraries/header_printview.inc.php:61 -#: libraries/messages.inc.php:1023 server_processlist.php:60 +#: libraries/messages.inc.php:1019 server_processlist.php:60 #: server_status.php:247 msgid "SQL query" msgstr "SQL 查询" -#: libraries/common.lib.php:634 libraries/messages.inc.php:538 +#: libraries/common.lib.php:634 libraries/messages.inc.php:534 msgid "MySQL said: " msgstr "MySQL 返回:" -#: libraries/common.lib.php:667 libraries/messages.inc.php:76 +#: libraries/common.lib.php:667 libraries/messages.inc.php:72 #: pdf_schema.php:241 user_password.php:115 msgid "Back" msgstr "返回" -#: libraries/common.lib.php:1177 libraries/messages.inc.php:309 +#: libraries/common.lib.php:1177 libraries/messages.inc.php:305 #: setup/lib/messages.inc.php:353 msgid "Explain SQL" msgstr "解释 SQL" -#: libraries/common.lib.php:1180 libraries/messages.inc.php:551 +#: libraries/common.lib.php:1180 libraries/messages.inc.php:547 msgid "Skip Explain SQL" msgstr "略过解释 SQL" -#: libraries/common.lib.php:1212 libraries/messages.inc.php:563 +#: libraries/common.lib.php:1212 libraries/messages.inc.php:559 msgid "Without PHP Code" msgstr "无 PHP 代码" -#: libraries/common.lib.php:1215 libraries/messages.inc.php:649 +#: libraries/common.lib.php:1215 libraries/messages.inc.php:645 #: setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "创建 PHP 代码" -#: libraries/common.lib.php:1233 libraries/messages.inc.php:737 +#: libraries/common.lib.php:1233 libraries/messages.inc.php:733 #: server_status.php:341 setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "刷新" -#: libraries/common.lib.php:1242 libraries/messages.inc.php:575 +#: libraries/common.lib.php:1242 libraries/messages.inc.php:571 msgid "Skip Validate SQL" msgstr "略过校验 SQL" -#: libraries/common.lib.php:1245 libraries/messages.inc.php:1220 +#: libraries/common.lib.php:1245 libraries/messages.inc.php:1216 #: setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "校验 SQL" @@ -1776,11 +1776,11 @@ msgid "Inline" msgstr "内联" #: libraries/common.lib.php:1332 libraries/common.lib.php:1347 -#: libraries/messages.inc.php:713 +#: libraries/messages.inc.php:709 msgid "Profiling" msgstr "概要" -#: libraries/common.lib.php:1351 libraries/messages.inc.php:1108 +#: libraries/common.lib.php:1351 libraries/messages.inc.php:1104 #: libraries/tbl_triggers.lib.php:28 server_processlist.php:58 msgid "Time" msgstr "时间" @@ -1814,46 +1814,56 @@ msgstr "PB" msgid "EiB" msgstr "EB" +#. l10n: Thousands separator +#: libraries/common.lib.php:1417 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: libraries/common.lib.php:1419 +msgid "." +msgstr "." + #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1584 +#: libraries/common.lib.php:1596 #: libraries/transformations/text_plain__dateformat.inc.php:28 msgid "%B %d, %Y at %I:%M %p" msgstr "%Y 年 %m 月 %d 日 %H:%M" -#: libraries/common.lib.php:1886 +#: libraries/common.lib.php:1898 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s 天 %s 小时,%s 分 %s 秒" -#: libraries/common.lib.php:2301 libraries/common.lib.php:2304 -#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:664 +#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:660 #: server_status.php:608 msgid "Begin" msgstr "开始" -#: libraries/common.lib.php:2302 libraries/common.lib.php:2305 -#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:665 +#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:661 #: server_binlog.php:168 server_binlog.php:170 msgid "Previous" msgstr "上一个" -#: libraries/common.lib.php:2333 libraries/common.lib.php:2336 -#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:289 +#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:285 msgid "End" msgstr "结束" -#: libraries/common.lib.php:2409 libraries/messages.inc.php:455 +#: libraries/common.lib.php:2421 libraries/messages.inc.php:451 #, php-format msgid "Jump to database "%s"." msgstr "跳转到数据库“%s”。" -#: libraries/common.lib.php:2429 libraries/messages.inc.php:461 +#: libraries/common.lib.php:2441 libraries/messages.inc.php:457 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "%s 功能受到一个已知的缺陷 (bug) 影响,参见 %s" #: libraries/core.lib.php:286 libraries/dbg/setup.php:22 -#: libraries/messages.inc.php:127 +#: libraries/messages.inc.php:123 #, php-format msgid "" "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " @@ -1863,116 +1873,116 @@ msgstr "" "扩展,请检查您的 PHP 配置。" #: libraries/db_events.inc.php:20 libraries/db_events.inc.php:22 -#: libraries/export/sql.php:415 libraries/messages.inc.php:306 +#: libraries/export/sql.php:415 libraries/messages.inc.php:302 msgid "Events" msgstr "事件" #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 -#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:541 +#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:537 #: libraries/tbl_triggers.lib.php:27 setup/frames/index.inc.php:112 msgid "Name" msgstr "名字" -#: libraries/db_links.inc.php:45 libraries/messages.inc.php:216 +#: libraries/db_links.inc.php:45 libraries/messages.inc.php:212 #, php-format msgid "Database %s has been dropped." msgstr "已被删除数据库 %s 。" #: libraries/db_links.inc.php:57 libraries/db_links.inc.php:58 -#: libraries/db_links.inc.php:59 libraries/messages.inc.php:234 +#: libraries/db_links.inc.php:59 libraries/messages.inc.php:230 msgid "Database seems to be empty!" msgstr "数据库是空的!" -#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1025 +#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1021 #: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60 #: querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1152 +#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1148 #: libraries/tbl_links.inc.php:69 msgid "Tracking" msgstr "追踪" -#: libraries/db_links.inc.php:86 libraries/messages.inc.php:719 +#: libraries/db_links.inc.php:86 libraries/messages.inc.php:715 msgid "Query" msgstr "查询" -#: libraries/db_links.inc.php:91 libraries/messages.inc.php:253 +#: libraries/db_links.inc.php:91 libraries/messages.inc.php:249 msgid "Designer" msgstr "设计器" -#: libraries/db_links.inc.php:98 libraries/messages.inc.php:397 +#: libraries/db_links.inc.php:98 libraries/messages.inc.php:393 #: libraries/server_links.inc.php:88 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:104 libraries/messages.inc.php:587 +#: libraries/db_links.inc.php:104 libraries/messages.inc.php:583 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" msgstr "操作" -#: libraries/db_links.inc.php:111 libraries/messages.inc.php:709 +#: libraries/db_links.inc.php:111 libraries/messages.inc.php:705 #: libraries/server_links.inc.php:66 server_privileges.php:72 #: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117 msgid "Privileges" msgstr "权限" #: libraries/db_routines.inc.php:30 libraries/db_routines.inc.php:32 -#: libraries/messages.inc.php:812 +#: libraries/messages.inc.php:808 msgid "Routines" msgstr "常规" -#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:811 +#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:807 msgid "Return type" msgstr "返回类型" #: libraries/db_structure.lib.php:57 libraries/display_tbl.lib.php:1848 -#: libraries/messages.inc.php:65 +#: libraries/messages.inc.php:61 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "" "可能接近。参见 [a@./Documentation.html#faq3_11@Documentation]FAQ 3.11[/a]" -#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:593 +#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:589 #: server_databases.php:142 tbl_printview.php:336 tbl_structure.php:683 msgid "Overhead" msgstr "多余" #: libraries/dbi/mysql.dbi.lib.php:112 libraries/dbi/mysqli.dbi.lib.php:124 -#: libraries/messages.inc.php:176 +#: libraries/messages.inc.php:172 msgid "Connection for controluser as defined in your configuration failed." msgstr "使用配置文件中定义的控制用户连接失败。" #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 -#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:855 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:851 msgid "The server is not responding" msgstr "服务器没有响应" #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:1010 +#: libraries/messages.inc.php:1006 msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "(或者本地 MySQL 服务器的套接字没有正确配置)" -#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:255 +#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:251 #: tbl_structure.php:609 msgid "Details..." msgstr "详细..." -#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:143 +#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:139 #: main.php:91 user_password.php:111 user_password.php:129 msgid "Change password" msgstr "修改密码" -#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:561 +#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:557 #: libraries/replication_gui.lib.php:341 server_privileges.php:768 msgid "No Password" msgstr "无密码" -#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:610 +#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:606 #: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60 #: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335 #: libraries/replication_gui.lib.php:345 server_privileges.php:757 @@ -1981,13 +1991,13 @@ msgstr "无密码" msgid "Password" msgstr "密码" -#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:806 +#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:802 #: libraries/replication_gui.lib.php:349 libraries/replication_gui.lib.php:352 #: server_privileges.php:776 server_privileges.php:779 msgid "Re-type" msgstr "重新输入" -#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:608 +#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:604 msgid "Password Hashing" msgstr "密码加密方式" @@ -1995,89 +2005,89 @@ msgstr "密码加密方式" msgid "MySQL 4.0 compatible" msgstr "MySQL 4.0 兼容" -#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:353 +#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:349 #: libraries/replication_gui.lib.php:356 server_privileges.php:783 msgid "Generate Password" msgstr "生成密码" -#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:352 +#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:348 #: libraries/replication_gui.lib.php:359 server_privileges.php:786 msgid "Generate" msgstr "生成" #: libraries/display_create_database.lib.php:22 -#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:189 +#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:185 msgid "Create new database" msgstr "新建数据库" -#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:185 +#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:181 msgid "Create" msgstr "创建" -#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:564 +#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:560 #: server_privileges.php:74 server_privileges.php:1388 #: server_replication.php:35 msgid "No Privileges" msgstr "无权限" -#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:445 +#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:441 msgid "Table must have at least one field." msgstr "数据表至少要有一个字段。" -#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:190 +#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:186 #, php-format msgid "Create table on database %s" msgstr "在数据库 %s 中新建一张数据表" -#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:577 +#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:573 msgid "Number of fields" msgstr "字段数" -#: libraries/display_export.lib.php:42 libraries/messages.inc.php:124 +#: libraries/display_export.lib.php:42 libraries/messages.inc.php:120 msgid "Could not load export plugins, please check your installation!" msgstr "无法加载导出插件,请检查安装!" -#: libraries/display_export.lib.php:107 libraries/messages.inc.php:277 +#: libraries/display_export.lib.php:107 libraries/messages.inc.php:273 #, php-format msgid "Dump %s row(s) starting at record # %s" msgstr "转存 %s 行,从记录 # %s 开始。" -#: libraries/display_export.lib.php:115 libraries/messages.inc.php:274 +#: libraries/display_export.lib.php:115 libraries/messages.inc.php:270 msgid "Dump all rows" msgstr "转储所有行" -#: libraries/display_export.lib.php:125 libraries/messages.inc.php:852 +#: libraries/display_export.lib.php:125 libraries/messages.inc.php:848 #: setup/lib/messages.inc.php:82 msgid "Save as file" msgstr "另存为文件" -#: libraries/display_export.lib.php:134 libraries/messages.inc.php:828 +#: libraries/display_export.lib.php:134 libraries/messages.inc.php:824 #, php-format msgid "Save on server in %s directory" msgstr "保存于服务器的 %s 文件夹" -#: libraries/display_export.lib.php:142 libraries/messages.inc.php:594 +#: libraries/display_export.lib.php:142 libraries/messages.inc.php:590 #: setup/lib/messages.inc.php:90 msgid "Overwrite existing file(s)" msgstr "覆盖已有文件" -#: libraries/display_export.lib.php:148 libraries/messages.inc.php:330 +#: libraries/display_export.lib.php:148 libraries/messages.inc.php:326 msgid "File name template" msgstr "文件名模板" -#: libraries/display_export.lib.php:152 libraries/messages.inc.php:327 +#: libraries/display_export.lib.php:152 libraries/messages.inc.php:323 msgid "server name" msgstr "服务器名" -#: libraries/display_export.lib.php:155 libraries/messages.inc.php:326 +#: libraries/display_export.lib.php:155 libraries/messages.inc.php:322 msgid "database name" msgstr "数据库名" -#: libraries/display_export.lib.php:158 libraries/messages.inc.php:328 +#: libraries/display_export.lib.php:158 libraries/messages.inc.php:324 msgid "table name" msgstr "数据表名" -#: libraries/display_export.lib.php:162 libraries/messages.inc.php:329 +#: libraries/display_export.lib.php:162 libraries/messages.inc.php:325 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2087,24 +2097,24 @@ msgstr "" "这个值是使用 %1$sstrftime%2$s 来解析的,所以你能用时间格式的字符串。另外,下" "列内容也将被转换:%3$s。其他文本将保持原样。" -#: libraries/display_export.lib.php:202 libraries/messages.inc.php:331 +#: libraries/display_export.lib.php:202 libraries/messages.inc.php:327 msgid "remember template" msgstr "记住模板" #: libraries/display_export.lib.php:210 libraries/display_import.lib.php:178 -#: libraries/display_import.lib.php:191 libraries/messages.inc.php:145 +#: libraries/display_import.lib.php:191 libraries/messages.inc.php:141 #: libraries/sql_query_form.lib.php:549 msgid "Character set of the file:" msgstr "文件的字符集:" -#: libraries/display_export.lib.php:235 libraries/messages.inc.php:166 +#: libraries/display_export.lib.php:235 libraries/messages.inc.php:162 #: setup/lib/messages.inc.php:84 msgid "Compression" 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/messages.inc.php:558 +#: libraries/export/sql.php:868 libraries/messages.inc.php:554 #: libraries/tbl_properties.inc.php:575 server_privileges.php:1836 #: server_processlist.php:75 msgid "None" @@ -2122,11 +2132,11 @@ msgstr "gzip 压缩" msgid "bzipped" msgstr "bzip 压缩" -#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1018 +#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1014 msgid "SQL compatibility mode" msgstr "SQL 兼容模式" -#: libraries/display_import.lib.php:67 libraries/messages.inc.php:398 +#: libraries/display_import.lib.php:67 libraries/messages.inc.php:394 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " @@ -2135,55 +2145,55 @@ msgstr "" "上传的文件可能超过了最大大小,也可能是一个基于 webkit 浏览器 (Safari, Google " "Chrome, Arora 等) 的已知缺陷 (bug) 。" -#: libraries/display_import.lib.php:77 libraries/messages.inc.php:406 +#: libraries/display_import.lib.php:77 libraries/messages.inc.php:402 msgid "The file is being processed, please be patient." msgstr "正在处理,请稍候。" -#: libraries/display_import.lib.php:99 libraries/messages.inc.php:408 +#: libraries/display_import.lib.php:99 libraries/messages.inc.php:404 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." msgstr "正在上传,没有详细信息,请稍候。" -#: libraries/display_import.lib.php:126 libraries/messages.inc.php:333 +#: libraries/display_import.lib.php:126 libraries/messages.inc.php:329 msgid "File to import" msgstr "要导入的文件" -#: libraries/display_import.lib.php:137 libraries/messages.inc.php:486 +#: libraries/display_import.lib.php:137 libraries/messages.inc.php:482 #: libraries/sql_query_form.lib.php:524 msgid "Location of the text file" msgstr "文本文件的位置" -#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1203 +#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1199 msgid "File uploads are not allowed on this server." msgstr "此服务器禁止了文件上传。" -#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1235 +#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1231 #: libraries/sql_query_form.lib.php:533 tbl_change.php:1028 msgid "The directory you set for upload work cannot be reached" msgstr "用于上传的文件夹出错,无法使用" -#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1236 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1232 #: libraries/sql_query_form.lib.php:536 tbl_change.php:1031 msgid "web server upload directory" msgstr "网站服务器上传文件夹" -#: libraries/display_import.lib.php:212 libraries/messages.inc.php:167 +#: libraries/display_import.lib.php:212 libraries/messages.inc.php:163 #, php-format msgid "Imported file compression will be automatically detected from: %s" msgstr "可自动识别以下压缩格式的文件: %s" -#: libraries/display_import.lib.php:219 libraries/messages.inc.php:600 +#: libraries/display_import.lib.php:219 libraries/messages.inc.php:596 msgid "Partial import" msgstr "部分导入" -#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1105 +#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1101 #, php-format msgid "" "Previous import timed out, after resubmitting will continue from position %d." msgstr "上一个导入操作超时,随后重新提交将会从 %d 处开始。" -#: libraries/display_import.lib.php:232 libraries/messages.inc.php:51 +#: libraries/display_import.lib.php:232 libraries/messages.inc.php:47 msgid "" "Allow the interruption of an import in case the script detects it is close " "to the PHP timeout limit. This might be good way to import large files, " @@ -2192,273 +2202,273 @@ msgstr "" "在导入时脚本若检测到可能需要花费很长时间则允许中断。尽管这会中断事务,但在导" "入大文件时是个很好的方法。" -#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1004 +#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1000 #: setup/lib/messages.inc.php:161 msgid "Number of records (queries) to skip from start" msgstr "跳过查询的数量" -#: libraries/display_import.lib.php:255 libraries/messages.inc.php:396 +#: libraries/display_import.lib.php:255 libraries/messages.inc.php:392 #: setup/lib/messages.inc.php:160 msgid "Format of imported file" msgstr "导入文件的格式" #: libraries/display_select_lang.lib.php:45 -#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:465 +#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:461 #: setup/frames/index.inc.php:70 msgid "Language" msgstr "Language" -#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:447 +#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:443 #, php-format msgid "%d is not valid row number." msgstr "%d 不是有效行数。" -#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:814 +#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:810 msgid "row(s) starting from record #" msgstr "行,开始行数:" -#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:817 +#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:813 msgid "horizontal" msgstr "水平" -#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:816 +#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:812 msgid "horizontal (rotated headers)" msgstr "水平 (旋转标题)" -#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:819 +#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:815 msgid "vertical" msgstr "垂直" -#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:818 +#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:814 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "以 %s 模式显示,并且在 %s 行后重复标题" -#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:495 +#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:491 msgid "This operation could take a long time. Proceed anyway?" msgstr "该操作可能需要执行较长时间,确定执行?" -#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1012 +#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1008 msgid "Sort by key" msgstr "主键排序" #: libraries/display_tbl.lib.php:555 libraries/import.lib.php:1082 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:591 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:587 #: tbl_select.php:267 tbl_structure.php:754 msgid "Options" msgstr "选项" #: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:570 -#: libraries/messages.inc.php:601 +#: libraries/messages.inc.php:597 msgid "Partial Texts" msgstr "部分文字" #: libraries/display_tbl.lib.php:561 libraries/display_tbl.lib.php:574 -#: libraries/messages.inc.php:346 +#: libraries/messages.inc.php:342 msgid "Full Texts" msgstr "完整文字" -#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:739 +#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:735 msgid "Relational key" msgstr "关联键" -#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:738 +#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:734 msgid "Relational display field" msgstr "关联显示字段" -#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:872 +#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:868 msgid "Show binary contents" msgstr "显示二进制内容" -#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:873 +#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:869 msgid "Show BLOB contents" msgstr "显示 BLOB 内容" -#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:871 +#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:867 msgid "Show binary contents as HEX" msgstr "以十六进制显示二进制内容" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:375 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:371 #: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320 msgid "Hide" msgstr "隐藏" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:508 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:504 #: libraries/tbl_properties.inc.php:144 transformation_overview.php:47 msgid "Browser transformation" msgstr "浏览器转换" #: libraries/display_tbl.lib.php:1126 libraries/display_tbl.lib.php:1130 -#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:308 +#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:304 msgid "Execute bookmarked query" msgstr "执行书签中的查询" #: libraries/display_tbl.lib.php:1145 libraries/display_tbl.lib.php:1157 -#: libraries/messages.inc.php:244 +#: libraries/messages.inc.php:240 msgid "The row has been deleted" msgstr "已删除该行" #: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056 -#: libraries/messages.inc.php:460 server_processlist.php:71 +#: libraries/messages.inc.php:456 server_processlist.php:71 #: tbl_row_action.php:64 msgid "Kill" msgstr "杀死" -#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:849 +#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:845 msgid "in query" msgstr "查询中" -#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:881 +#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:877 msgid "Showing rows" msgstr "显示行" -#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1113 +#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1109 msgid "total" msgstr "总计" -#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:727 +#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:723 #: sql.php:524 #, php-format msgid "Query took %01.4f sec" msgstr "查询花费 %01.4f 秒" -#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:135 +#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:131 #: 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:471 msgid "Change" msgstr "修改" -#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:724 +#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:720 msgid "Query results operations" msgstr "查询结果选项" -#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:671 +#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:667 msgid "Print view (with full texts)" msgstr "打印预览 (全文显示)" -#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:482 +#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:478 msgid "Link not found" msgstr "找不到链接" -#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1224 +#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1220 #: main.php:228 msgid "Version information" msgstr "版本信息" -#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:423 +#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:419 msgid "Data home directory" msgstr "数据主文件夹" -#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:424 +#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:420 msgid "The common part of the directory path for all InnoDB data files." msgstr "所有 InnoDB 数据文件的公共路径." -#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:422 +#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:418 msgid "Data files" msgstr "数据文件" -#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:418 +#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:414 msgid "Autoextend increment" msgstr "自动增加" -#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:419 +#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:415 msgid "" " The increment size for extending the size of an autoextending tablespace " "when it becomes full." msgstr " 数据表空间不足时自动增加的大小。" -#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:420 +#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:416 msgid "Buffer pool size" msgstr "缓冲池大小" -#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:421 +#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:417 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." msgstr "InnoDB 用于缓存数据和索引要使用的内存缓冲大小。" -#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:112 +#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:108 msgid "Buffer Pool" msgstr "缓冲池" -#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:426 +#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:422 #: server_status.php:306 msgid "InnoDB Status" msgstr "InnoDB 状态" -#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:113 +#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:109 msgid "Buffer Pool Usage" msgstr "缓冲池使用情况" -#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1114 +#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1110 #: server_databases.php:137 server_databases.php:305 server_status.php:414 #: server_status.php:475 server_status.php:496 tbl_printview.php:351 #: tbl_structure.php:697 msgid "Total" msgstr "总计" -#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:425 +#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:421 msgid "pages" msgstr "页数" -#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:343 +#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:339 msgid "Free pages" msgstr "空闲页" -#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:259 +#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:255 msgid "Dirty pages" msgstr "脏页" -#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:230 +#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:226 msgid "Pages containing data" msgstr "非空页" -#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:598 +#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:594 msgid "Pages to be flushed" msgstr "要刷新的页" -#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:119 +#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:115 msgid "Busy pages" msgstr "负载页" -#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:467 +#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:463 msgid "Latched pages" msgstr "锁定页" -#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:111 +#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:107 msgid "Buffer Pool Activity" msgstr "缓冲池活动" -#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:731 +#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:727 msgid "Read requests" msgstr "读请求" -#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1244 +#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1240 msgid "Write requests" msgstr "写请求" -#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:115 +#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:111 msgid "Read misses" msgstr "读缺失数" -#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:117 +#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:113 msgid "Write waits" msgstr "写等待数" -#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:114 +#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:110 msgid "Read misses in %" msgstr "读缺失率" -#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:116 +#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:112 msgid "Write waits in %" msgstr "写等待率" -#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:522 +#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:518 msgid "Data pointer size" msgstr "数据指针大小" -#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:523 +#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:519 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." @@ -2466,22 +2476,22 @@ msgstr "" "默认数据指针的大小 (单位:字节),用于在没有指定 MAX_ROWS 选项的情况下创建 " "MyISAM 数据表。" -#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:528 +#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:524 msgid "Automatic recovery mode" msgstr "自动恢复模式" -#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:529 +#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:525 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." msgstr "" "该模式用于自动恢复崩溃的 MyISAM 表,可在启动时使用 --myisam-recover 参数。" -#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:527 +#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:523 msgid "Maximum size for temporary sort files" msgstr "临时排序文件的最大大小" -#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:526 +#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:522 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " @@ -2490,11 +2500,11 @@ msgstr "" "重建 MyISAM 索引时 MySQL 最多可以使用的临时文件大小 (在 REPAIR TABLE、ALTER " "TABLE 或 LOAD DATA INFILE 时)" -#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:525 +#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:521 msgid "Maximum size for temporary files on index creation" msgstr "创建索引的临时文件最大大小" -#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:524 +#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:520 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " @@ -2503,11 +2513,11 @@ msgstr "" "如果用于创建 MyISAM 快速索引的临时文件大于在此指定的键缓存,则建议使用键缓" "存。" -#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:531 +#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:527 msgid "Repair threads" msgstr "修复线程" -#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:530 +#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:526 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." @@ -2515,11 +2525,11 @@ msgstr "" "如果该值大于 1,在进行排序过程的修复操作时 MyISAM 表的索引将会并发 (每个索引" "都有自己的线程) 创建" -#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:533 +#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:529 msgid "Sort buffer size" msgstr "排序缓存大小" -#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:532 +#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:528 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." @@ -2527,21 +2537,21 @@ msgstr "" "在修复表 (REPAIR TABLE) 的过程中进行排序 MyISAM 的索引或通过创建索引 (CREATE " "INDEX) 和修改表 (ALTER TABLE) 创建索引时所要分配的缓存大小。" -#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:620 +#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:616 msgid "Index cache size" msgstr "索引缓存大小" -#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:619 +#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:615 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." msgstr "用于索引缓存的内存大小。默认值为 32MB。该缓存仅用于缓存索引页。" -#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:630 +#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:626 msgid "Record cache size" msgstr "记录缓存大小" -#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:629 +#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:625 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " @@ -2550,51 +2560,51 @@ msgstr "" "用于缓存表数据的缓存内存大小。默认值为 32MB。该缓存用于记录句柄数据 (*.xtd) " "和行指针 (*.xtr) 文件。" -#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:624 +#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:620 msgid "Log cache size" msgstr "日志缓存大小" -#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:623 +#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:619 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." msgstr "用于缓存事务日志的内存缓冲区大小。默认值为 16MB。" -#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:628 +#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:624 msgid "Log file threshold" msgstr "日志文件阈值" -#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:627 +#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:623 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." msgstr "回滚和新日志创建前事务日志的大小。默认值为 16MB。" -#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:634 +#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:630 msgid "Transaction buffer size" msgstr "事务缓存大小" -#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:633 +#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:629 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." msgstr "全局事务日志缓存 (数据引擎会分配两个该大小的缓冲区)。默认值为 1MB。" -#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:611 +#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:607 msgid "Checkpoint frequency" msgstr "检查点频率" -#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:612 +#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:608 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." msgstr "在检查点前最大可以写入事务日志的最大数据大小。默认值为 24MB。" -#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:615 +#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:611 msgid "Data log threshold" msgstr "数据日志阈值" -#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:616 +#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:612 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -2604,21 +2614,21 @@ msgstr "" "数据日志文件的最大大小。默认值为 64MB。PBXT 最多可以创建 32000 个数据日志,可" "用于所有的表。增加该值可以增加数据库所能存储数据的大小。" -#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:618 +#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:614 msgid "Garbage threshold" msgstr "垃圾阈值" -#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:617 +#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:613 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." msgstr "数据日志文件中压缩前无效数据所占的比率。值域为 1 到 99,默认值为50。" -#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:622 +#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:618 msgid "Log buffer size" msgstr "日志缓存大小" -#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:621 +#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:617 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " @@ -2627,27 +2637,27 @@ msgstr "" "写入数据日志时使用的缓存大小。默认值为 256MB。数据引擎会为每一个需要进行数据" "日志写入的线程分配一个缓冲区。" -#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:613 +#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:609 msgid "Data file grow size" msgstr "数据文件增长大小" -#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:614 +#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:610 msgid "The grow size of the handle data (.xtd) files." msgstr "句柄数据文件 (*.xtd) 增长大小。" -#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:632 +#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:628 msgid "Row file grow size" msgstr "行文件增长大小" -#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:631 +#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:627 msgid "The grow size of the row pointer (.xtr) files." msgstr "行指针文件 (*.xtr) 增长大小。" -#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:626 +#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:622 msgid "Log file count" msgstr "日志文件总数" -#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:625 +#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:621 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -2659,19 +2669,19 @@ msgstr "" #: libraries/export/htmlword.php:132 libraries/export/odt.php:168 #: libraries/export/sql.php:881 libraries/export/texytext.php:130 -#: libraries/messages.inc.php:275 +#: libraries/messages.inc.php:271 msgid "Dumping data for table" msgstr "转存表中的数据" #: libraries/export/htmlword.php:185 libraries/export/odt.php:238 #: libraries/export/sql.php:785 libraries/export/texytext.php:177 -#: libraries/messages.inc.php:1086 +#: libraries/messages.inc.php:1082 msgid "Table structure for table" msgstr "表的结构" #: libraries/export/latex.php:125 libraries/export/sql.php:232 #: libraries/export/xml.php:102 libraries/header_printview.inc.php:57 -#: libraries/messages.inc.php:381 libraries/replication_gui.lib.php:63 +#: libraries/messages.inc.php:377 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:170 libraries/replication_gui.lib.php:265 #: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325 #: server_privileges.php:692 server_privileges.php:695 @@ -2683,183 +2693,183 @@ msgstr "主机" #: libraries/export/latex.php:130 libraries/export/sql.php:233 #: libraries/export/xml.php:107 libraries/header_printview.inc.php:59 -#: libraries/messages.inc.php:354 +#: libraries/messages.inc.php:350 msgid "Generation Time" msgstr "生成日期" #: libraries/export/latex.php:131 libraries/export/sql.php:235 -#: libraries/export/xml.php:108 libraries/messages.inc.php:864 main.php:186 +#: libraries/export/xml.php:108 libraries/messages.inc.php:860 main.php:186 msgid "Server version" msgstr "服务器版本" #: libraries/export/latex.php:132 libraries/export/sql.php:236 -#: libraries/export/xml.php:109 libraries/messages.inc.php:651 +#: libraries/export/xml.php:109 libraries/messages.inc.php:647 msgid "PHP Version" msgstr "PHP 版本" #: libraries/export/latex.php:201 libraries/export/sql.php:868 -#: libraries/messages.inc.php:226 server_databases.php:127 +#: libraries/messages.inc.php:222 server_databases.php:127 #: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317 #: tbl_structure.php:666 msgid "Data" msgstr "数据" -#: libraries/export/odt.php:318 libraries/messages.inc.php:506 +#: libraries/export/odt.php:318 libraries/messages.inc.php:502 #: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "MIME 类型" -#: libraries/export/sql.php:387 libraries/messages.inc.php:711 +#: libraries/export/sql.php:387 libraries/messages.inc.php:707 msgid "Procedures" msgstr "存储过程" -#: libraries/export/sql.php:401 libraries/messages.inc.php:348 +#: libraries/export/sql.php:401 libraries/messages.inc.php:344 msgid "Functions" msgstr "函数" -#: libraries/export/sql.php:618 libraries/messages.inc.php:174 +#: libraries/export/sql.php:618 libraries/messages.inc.php:170 msgid "Constraints for dumped tables" msgstr "限制导出的表" -#: libraries/export/sql.php:627 libraries/messages.inc.php:175 +#: libraries/export/sql.php:627 libraries/messages.inc.php:171 msgid "Constraints for table" msgstr "限制表" -#: libraries/export/sql.php:727 libraries/messages.inc.php:512 +#: libraries/export/sql.php:727 libraries/messages.inc.php:508 msgid "MIME TYPES FOR TABLE" msgstr "MIME 类型表" -#: libraries/export/sql.php:739 libraries/messages.inc.php:743 +#: libraries/export/sql.php:739 libraries/messages.inc.php:739 msgid "RELATIONS FOR TABLE" msgstr "表的关联" -#: libraries/export/sql.php:796 libraries/messages.inc.php:1178 +#: libraries/export/sql.php:796 libraries/messages.inc.php:1174 #: libraries/tbl_triggers.lib.php:19 msgid "Triggers" msgstr "触发器" -#: libraries/export/sql.php:808 libraries/messages.inc.php:1046 +#: libraries/export/sql.php:808 libraries/messages.inc.php:1042 msgid "Structure for view" msgstr "视图结构" -#: libraries/export/sql.php:817 libraries/messages.inc.php:1029 +#: libraries/export/sql.php:817 libraries/messages.inc.php:1025 msgid "Stand-in structure for view" msgstr "替换视图以便查看" #: libraries/footer.inc.php:184 libraries/footer.inc.php:195 -#: libraries/footer.inc.php:198 libraries/messages.inc.php:586 +#: libraries/footer.inc.php:198 libraries/messages.inc.php:582 msgid "Open new phpMyAdmin window" msgstr "打开新 phpMyAdmin 窗口" -#: libraries/header.inc.php:115 libraries/messages.inc.php:542 +#: libraries/header.inc.php:115 libraries/messages.inc.php:538 msgid "New table" msgstr "新数据表" #: libraries/header_printview.inc.php:50 libraries/header_printview.inc.php:55 -#: libraries/messages.inc.php:1024 +#: libraries/messages.inc.php:1020 msgid "SQL result" msgstr "SQL 查询结果" -#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:350 +#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:346 msgid "Generated by" msgstr "生成者" #: libraries/header_printview.inc.php:63 libraries/import.lib.php:145 -#: libraries/messages.inc.php:820 navigation.php:652 navigation.php:674 +#: libraries/messages.inc.php:816 navigation.php:652 navigation.php:674 #: server_databases.php:122 tbl_printview.php:394 tbl_structure.php:366 #: tbl_structure.php:778 msgid "Rows" msgstr "行数" -#: libraries/import.lib.php:150 libraries/messages.inc.php:285 sql.php:520 +#: libraries/import.lib.php:150 libraries/messages.inc.php:281 sql.php:520 #: tbl_change.php:181 tbl_get_field.php:35 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL 返回的查询结果为空 (即零行)。" -#: libraries/import.lib.php:1078 libraries/messages.inc.php:399 +#: libraries/import.lib.php:1078 libraries/messages.inc.php:395 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "下列结构被创建或修改。你可以:" -#: libraries/import.lib.php:1079 libraries/messages.inc.php:400 +#: libraries/import.lib.php:1079 libraries/messages.inc.php:396 msgid "View a structure`s contents by clicking on its name" msgstr "点击它的名字查看内容" -#: libraries/import.lib.php:1080 libraries/messages.inc.php:401 +#: libraries/import.lib.php:1080 libraries/messages.inc.php:397 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "点击相应的“选项”链接修改它的设置" -#: libraries/import.lib.php:1081 libraries/messages.inc.php:402 +#: libraries/import.lib.php:1081 libraries/messages.inc.php:398 msgid "Edit its structure by following the \"Structure\" link" msgstr "点击“结构”链接编辑它的结构" -#: libraries/import.lib.php:1084 libraries/messages.inc.php:362 +#: libraries/import.lib.php:1084 libraries/messages.inc.php:358 msgid "Go to database" msgstr "转到数据库" #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:869 +#: libraries/messages.inc.php:865 msgid "settings" msgstr "设置" -#: libraries/import.lib.php:1106 libraries/messages.inc.php:363 +#: libraries/import.lib.php:1106 libraries/messages.inc.php:359 msgid "Go to table" msgstr "转到数据表" -#: libraries/import.lib.php:1109 libraries/messages.inc.php:1047 +#: libraries/import.lib.php:1109 libraries/messages.inc.php:1043 msgid "structure" msgstr "结构" -#: libraries/import.lib.php:1115 libraries/messages.inc.php:364 +#: libraries/import.lib.php:1115 libraries/messages.inc.php:360 msgid "Go to view" msgstr "转到视图" #: libraries/import/csv.php:58 libraries/import/csv.php:70 #: libraries/import/csv.php:74 libraries/import/csv.php:78 -#: libraries/messages.inc.php:442 +#: libraries/messages.inc.php:438 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "导入 CSV 文件 %s 时有无效参数" -#: libraries/import/csv.php:59 libraries/messages.inc.php:323 +#: libraries/import/csv.php:59 libraries/messages.inc.php:319 msgid "Fields terminated by" msgstr "字段分隔符" -#: libraries/import/csv.php:71 libraries/messages.inc.php:320 +#: libraries/import/csv.php:71 libraries/messages.inc.php:316 msgid "Fields enclosed by" msgstr "文字分隔符" -#: libraries/import/csv.php:75 libraries/messages.inc.php:321 +#: libraries/import/csv.php:75 libraries/messages.inc.php:317 msgid "Fields escaped by" msgstr "字段转义符" -#: libraries/import/csv.php:79 libraries/messages.inc.php:481 +#: libraries/import/csv.php:79 libraries/messages.inc.php:477 msgid "Lines terminated by" msgstr "换行符" -#: libraries/import/csv.php:119 libraries/messages.inc.php:439 +#: libraries/import/csv.php:119 libraries/messages.inc.php:435 #, php-format msgid "Invalid column (%s) specified!" msgstr "无效的字段 (%s) 。" #: libraries/import/csv.php:177 libraries/import/csv.php:424 -#: libraries/messages.inc.php:441 +#: libraries/messages.inc.php:437 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "CSV 输入的第 %d 行格式有错。" -#: libraries/import/csv.php:312 libraries/messages.inc.php:440 +#: libraries/import/csv.php:312 libraries/messages.inc.php:436 #, php-format msgid "Invalid field count in CSV input on line %d." msgstr "CSV 输入的第 %d 行字段数有错。" -#: libraries/import/ldi.php:55 libraries/messages.inc.php:446 +#: libraries/import/ldi.php:55 libraries/messages.inc.php:442 msgid "This plugin does not support compressed imports!" msgstr "该插件不支持导入文件!" #: libraries/import/xml.php:74 libraries/import/xml.php:130 -#: libraries/messages.inc.php:1247 +#: libraries/messages.inc.php:1243 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -2886,398 +2896,388 @@ msgstr "转换为假名" msgid "ltr" msgstr "ltr" -#. l10n: Thousands separator -#: libraries/messages.inc.php:21 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: libraries/messages.inc.php:23 -msgid "." -msgstr "." - -#: libraries/messages.inc.php:25 server_status.php:461 +#: libraries/messages.inc.php:21 server_status.php:461 msgid "Aborted" msgstr "已取消" -#: libraries/messages.inc.php:28 main.php:68 +#: libraries/messages.inc.php:24 main.php:68 msgid "Actions" msgstr "操作" -#: libraries/messages.inc.php:34 libraries/tbl_properties.inc.php:780 +#: libraries/messages.inc.php:30 libraries/tbl_properties.inc.php:780 #: tbl_structure.php:543 #, php-format msgid "Add %s field(s)" msgstr "添加 %s 个字段" -#: libraries/messages.inc.php:35 +#: libraries/messages.inc.php:31 msgid "Add custom comment into header (\\n splits lines)" msgstr "在文件头添加自定义注释 (\\n 为换行)" -#: libraries/messages.inc.php:36 +#: libraries/messages.inc.php:32 msgid "Add into comments" msgstr "添加进注释" -#: libraries/messages.inc.php:37 tbl_structure.php:541 +#: libraries/messages.inc.php:33 tbl_structure.php:541 msgid "Add new field" msgstr "添加新字段" -#: libraries/messages.inc.php:38 server_privileges.php:1886 +#: libraries/messages.inc.php:34 server_privileges.php:1886 msgid "Add privileges on the following database" msgstr "在下列数据库添加权限" -#: libraries/messages.inc.php:39 server_privileges.php:1907 +#: libraries/messages.inc.php:35 server_privileges.php:1907 msgid "Add privileges on the following table" msgstr "在下列数据表添加权限" -#: libraries/messages.inc.php:40 tbl_select.php:288 +#: libraries/messages.inc.php:36 tbl_select.php:288 msgid "Add search conditions (body of the \"where\" clause):" msgstr "添加搜索条件 (“where”语句的主体):" -#: libraries/messages.inc.php:41 tbl_indexes.php:251 +#: libraries/messages.inc.php:37 tbl_indexes.php:251 #, php-format msgid "Add to index  %s column(s)" msgstr "添加 %s 个索引字段" -#: libraries/messages.inc.php:42 server_privileges.php:1570 +#: libraries/messages.inc.php:38 server_privileges.php:1570 #: server_privileges.php:1594 server_privileges.php:1988 #: server_privileges.php:2177 msgid "Add a new User" msgstr "添加新用户" -#: libraries/messages.inc.php:43 server_privileges.php:931 +#: libraries/messages.inc.php:39 server_privileges.php:931 msgid "You have added a new user." msgstr "您已添加了一个新用户。" -#: libraries/messages.inc.php:44 server_privileges.php:571 +#: libraries/messages.inc.php:40 server_privileges.php:571 msgid "Administration" msgstr "管理" -#: libraries/messages.inc.php:45 tbl_structure.php:557 +#: libraries/messages.inc.php:41 tbl_structure.php:557 #, php-format msgid "After %s" msgstr "于 %s 之后" -#: libraries/messages.inc.php:46 tbl_change.php:1147 +#: libraries/messages.inc.php:42 tbl_change.php:1147 msgid "Go back to previous page" msgstr "返回上一页" -#: libraries/messages.inc.php:47 tbl_change.php:1148 +#: libraries/messages.inc.php:43 tbl_change.php:1148 msgid "Insert another new row" msgstr "插入新数据" -#: libraries/messages.inc.php:48 tbl_change.php:1160 +#: libraries/messages.inc.php:44 tbl_change.php:1160 msgid "Edit next row" msgstr "编辑下一行" -#: libraries/messages.inc.php:49 tbl_change.php:1152 +#: libraries/messages.inc.php:45 tbl_change.php:1152 msgid "Go back to this page" msgstr "返回到本页" -#: libraries/messages.inc.php:50 querywindow.php:115 +#: libraries/messages.inc.php:46 querywindow.php:115 msgid "All" msgstr "全部" -#: libraries/messages.inc.php:53 tbl_operations.php:249 +#: libraries/messages.inc.php:49 tbl_operations.php:249 msgid "Alter table order by" msgstr "更改表的排序,根据" -#: libraries/messages.inc.php:54 tbl_operations.php:660 +#: libraries/messages.inc.php:50 tbl_operations.php:660 msgid "Analyze" msgstr "分析" -#: libraries/messages.inc.php:57 +#: libraries/messages.inc.php:53 msgid "and" msgstr "和" -#: libraries/messages.inc.php:59 pmd_general.php:87 +#: libraries/messages.inc.php:55 pmd_general.php:87 msgid "Angular links" msgstr "规则连接" -#: libraries/messages.inc.php:60 tbl_structure.php:401 tbl_structure.php:415 +#: libraries/messages.inc.php:56 tbl_structure.php:401 tbl_structure.php:415 #: tbl_structure.php:429 #, php-format msgid "An index has been added on %s" msgstr "已将 %s 设为索引" -#: libraries/messages.inc.php:61 server_privileges.php:1521 +#: libraries/messages.inc.php:57 server_privileges.php:1521 #: server_privileges.php:2123 msgid "Any" msgstr "任意" -#: libraries/messages.inc.php:62 libraries/replication_gui.lib.php:298 +#: libraries/messages.inc.php:58 libraries/replication_gui.lib.php:298 #: server_privileges.php:725 msgid "Any host" msgstr "任意主机" -#: libraries/messages.inc.php:63 libraries/replication_gui.lib.php:250 +#: libraries/messages.inc.php:59 libraries/replication_gui.lib.php:250 #: server_privileges.php:677 msgid "Any user" msgstr "任意用户" -#: libraries/messages.inc.php:64 server_synchronize.php:449 +#: libraries/messages.inc.php:60 server_synchronize.php:449 #: server_synchronize.php:894 msgid "Apply Selected Changes" msgstr "应用选中的修改" -#: libraries/messages.inc.php:66 tbl_structure.php:386 +#: libraries/messages.inc.php:62 tbl_structure.php:386 #, php-format msgid "A primary key has been added on %s" msgstr "已将 %s 设为主键" -#: libraries/messages.inc.php:67 libraries/mysql_charsets.lib.php:368 +#: libraries/messages.inc.php:63 libraries/mysql_charsets.lib.php:368 msgid "Arabic" msgstr "阿拉伯语" -#: libraries/messages.inc.php:68 libraries/mysql_charsets.lib.php:359 +#: libraries/messages.inc.php:64 libraries/mysql_charsets.lib.php:359 msgid "Armenian" msgstr "亚美尼亚语" -#: libraries/messages.inc.php:70 libraries/tbl_properties.inc.php:394 +#: libraries/messages.inc.php:66 libraries/tbl_properties.inc.php:394 msgid "As defined:" msgstr "定义:" -#: libraries/messages.inc.php:71 tbl_structure.php:556 +#: libraries/messages.inc.php:67 tbl_structure.php:556 msgid "At Beginning of Table" msgstr "于表开头" -#: libraries/messages.inc.php:72 tbl_structure.php:555 +#: libraries/messages.inc.php:68 tbl_structure.php:555 msgid "At End of Table" msgstr "于表结尾" -#: libraries/messages.inc.php:73 libraries/tbl_properties.inc.php:108 +#: libraries/messages.inc.php:69 libraries/tbl_properties.inc.php:108 #: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:144 #: tbl_structure.php:180 msgid "Attributes" msgstr "属性" -#: libraries/messages.inc.php:74 pdf_pages.php:303 pdf_pages.php:306 +#: libraries/messages.inc.php:70 pdf_pages.php:303 pdf_pages.php:306 msgid "Automatic layout" msgstr "自动排版" -#: libraries/messages.inc.php:77 libraries/mysql_charsets.lib.php:354 +#: libraries/messages.inc.php:73 libraries/mysql_charsets.lib.php:354 msgid "Baltic" msgstr "巴拉克语" -#: libraries/messages.inc.php:78 libraries/sqlparser.lib.php:175 +#: libraries/messages.inc.php:74 libraries/sqlparser.lib.php:175 msgid "BEGIN CUT" msgstr "开始剪切" -#: libraries/messages.inc.php:79 libraries/sqlparser.lib.php:179 +#: libraries/messages.inc.php:75 libraries/sqlparser.lib.php:179 msgid "BEGIN RAW" msgstr "开始原文" -#: libraries/messages.inc.php:80 libraries/mysql_charsets.lib.php:201 +#: libraries/messages.inc.php:76 libraries/mysql_charsets.lib.php:201 #: libraries/mysql_charsets.lib.php:402 tbl_change.php:518 msgid "Binary" msgstr "二进制" -#: libraries/messages.inc.php:81 tbl_change.php:894 +#: libraries/messages.inc.php:77 tbl_change.php:894 msgid "Binary - do not edit" msgstr "二进制 - 无法编辑" -#: libraries/messages.inc.php:82 libraries/server_links.inc.php:76 +#: libraries/messages.inc.php:78 libraries/server_links.inc.php:76 #: server_binlog.php:110 server_status.php:253 test/theme.php:121 msgid "Binary log" msgstr "二进制日志" -#: libraries/messages.inc.php:83 server_binlog.php:217 +#: libraries/messages.inc.php:79 server_binlog.php:217 msgid "Event type" msgstr "事件类型" -#: libraries/messages.inc.php:84 server_binlog.php:220 +#: libraries/messages.inc.php:80 server_binlog.php:220 msgid "Information" msgstr "信息" -#: libraries/messages.inc.php:85 server_binlog.php:215 +#: libraries/messages.inc.php:81 server_binlog.php:215 msgid "Log name" msgstr "日志文件名" -#: libraries/messages.inc.php:86 server_binlog.php:219 +#: libraries/messages.inc.php:82 server_binlog.php:219 msgid "Original position" msgstr "初始位置" -#: libraries/messages.inc.php:87 server_binlog.php:216 +#: libraries/messages.inc.php:83 server_binlog.php:216 msgid "Position" msgstr "位置" -#: libraries/messages.inc.php:88 libraries/replication_gui.lib.php:169 +#: libraries/messages.inc.php:84 libraries/replication_gui.lib.php:169 #: server_binlog.php:218 msgid "Server ID" msgstr "服务器ID" -#: libraries/messages.inc.php:92 +#: libraries/messages.inc.php:88 msgctxt "$strBLOBRepositoryDisabled" msgid "Disabled" msgstr "已禁用" -#: libraries/messages.inc.php:95 +#: libraries/messages.inc.php:91 msgctxt "$strBLOBRepositoryEnabled" msgid "Enabled" msgstr "已启用" -#: libraries/messages.inc.php:97 tbl_change.php:888 +#: libraries/messages.inc.php:93 tbl_change.php:888 msgid "Remove BLOB Repository Reference" msgstr "删除 BLOB 容器功能" -#: libraries/messages.inc.php:98 +#: libraries/messages.inc.php:94 msgctxt "$strBLOBRepositoryRepair" msgid "Repair" msgstr "修复" -#: libraries/messages.inc.php:99 tbl_change.php:987 +#: libraries/messages.inc.php:95 tbl_change.php:987 msgid "Upload to BLOB repository" msgstr "上传到 BLOB 容器" -#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:359 +#: libraries/messages.inc.php:96 libraries/sql_query_form.lib.php:359 #: sql.php:677 msgid "Let every user access this bookmark" msgstr "让所有用户均可访问此书签" -#: libraries/messages.inc.php:103 sql.php:671 +#: libraries/messages.inc.php:99 sql.php:671 msgid "Label" msgstr "标签" -#: libraries/messages.inc.php:104 libraries/sql_query_form.lib.php:433 +#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:433 msgid "Bookmarked SQL query" msgstr "SQL 查询书签" -#: libraries/messages.inc.php:105 libraries/sql_query_form.lib.php:365 +#: libraries/messages.inc.php:101 libraries/sql_query_form.lib.php:365 msgid "Replace existing bookmark of same name" msgstr "替换现有的同名书签" -#: libraries/messages.inc.php:106 libraries/sql_query_form.lib.php:352 +#: libraries/messages.inc.php:102 libraries/sql_query_form.lib.php:352 #: sql.php:665 sql.php:666 sql.php:683 msgid "Bookmark this SQL query" msgstr "将此 SQL 查询加为书签" -#: libraries/messages.inc.php:107 libraries/sql_query_form.lib.php:466 +#: libraries/messages.inc.php:103 libraries/sql_query_form.lib.php:466 msgid "View only" msgstr "仅查看" -#: libraries/messages.inc.php:109 tbl_structure.php:161 +#: libraries/messages.inc.php:105 tbl_structure.php:161 msgid "Browse distinct values" msgstr "浏览非重复值 (DISTINCT)" -#: libraries/messages.inc.php:110 tbl_change.php:252 tbl_select.php:27 +#: libraries/messages.inc.php:106 tbl_change.php:252 tbl_select.php:27 #: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34 msgid "Browse foreign values" msgstr "浏览不相关的值" -#: libraries/messages.inc.php:118 libraries/mysql_charsets.lib.php:213 +#: libraries/messages.inc.php:114 libraries/mysql_charsets.lib.php:213 msgid "Bulgarian" msgstr "保加利亚语" -#: libraries/messages.inc.php:120 +#: libraries/messages.inc.php:116 msgid "\"bzipped\"" msgstr "bzip 压缩" -#: libraries/messages.inc.php:122 +#: libraries/messages.inc.php:118 msgid "Calendar" msgstr "日历" -#: libraries/messages.inc.php:129 tbl_indexes.php:75 +#: libraries/messages.inc.php:125 tbl_indexes.php:75 msgid "Can't rename index to PRIMARY!" msgstr "无法将索引改为主键 (PRIMARY) !" -#: libraries/messages.inc.php:132 libraries/mysql_charsets.lib.php:223 +#: libraries/messages.inc.php:128 libraries/mysql_charsets.lib.php:223 #: libraries/mysql_charsets.lib.php:409 msgid "case-insensitive" msgstr "不区分大小写" -#: libraries/messages.inc.php:133 libraries/mysql_charsets.lib.php:226 +#: libraries/messages.inc.php:129 libraries/mysql_charsets.lib.php:226 #: libraries/mysql_charsets.lib.php:411 msgid "case-sensitive" msgstr "区分大小写" -#: libraries/messages.inc.php:134 libraries/mysql_charsets.lib.php:332 +#: libraries/messages.inc.php:130 libraries/mysql_charsets.lib.php:332 msgid "Central European" msgstr "中欧" -#: libraries/messages.inc.php:136 server_privileges.php:1969 +#: libraries/messages.inc.php:132 server_privileges.php:1969 msgid "... keep the old one." msgstr "... 保留旧用户。" -#: libraries/messages.inc.php:137 server_privileges.php:1967 +#: libraries/messages.inc.php:133 server_privileges.php:1967 msgid "Create a new user with the same privileges and ..." msgstr "创建具有相同权限的新用户然后 ..." -#: libraries/messages.inc.php:138 server_privileges.php:1972 +#: libraries/messages.inc.php:134 server_privileges.php:1972 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr " ... 从用户表中删除旧用户,然后重新载入权限。" -#: libraries/messages.inc.php:139 server_privileges.php:1970 +#: libraries/messages.inc.php:135 server_privileges.php:1970 msgid " ... delete the old one from the user tables." msgstr " ... 从用户表中删除旧用户。" -#: libraries/messages.inc.php:140 server_privileges.php:1971 +#: libraries/messages.inc.php:136 server_privileges.php:1971 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr " ... 撤销旧用户的所有权限,然后删除旧用户。" -#: libraries/messages.inc.php:141 server_privileges.php:1964 +#: libraries/messages.inc.php:137 server_privileges.php:1964 msgid "Change Login Information / Copy User" msgstr "修改登录信息/复制用户" -#: libraries/messages.inc.php:144 libraries/mysql_charsets.lib.php:107 +#: libraries/messages.inc.php:140 libraries/mysql_charsets.lib.php:107 msgid "Charset" msgstr "字符集" -#: libraries/messages.inc.php:146 server_collations.php:40 +#: libraries/messages.inc.php:142 server_collations.php:40 msgid "Character Sets and Collations" msgstr "字符集和整理" -#: libraries/messages.inc.php:147 libraries/server_links.inc.php:57 +#: libraries/messages.inc.php:143 libraries/server_links.inc.php:57 #: test/theme.php:109 msgid "Charsets" msgstr "字符集" -#: libraries/messages.inc.php:149 tbl_operations.php:661 +#: libraries/messages.inc.php:145 tbl_operations.php:661 msgid "Check" msgstr "检查" -#: libraries/messages.inc.php:151 server_databases.php:293 +#: libraries/messages.inc.php:147 server_databases.php:293 #: server_databases.php:294 msgid "Check Privileges" msgstr "检查权限" -#: libraries/messages.inc.php:152 server_databases.php:289 +#: libraries/messages.inc.php:148 server_databases.php:289 #, php-format msgid "Check privileges for database "%s"." msgstr "检查数据库“%s”的权限。" -#: libraries/messages.inc.php:154 pdf_pages.php:261 +#: libraries/messages.inc.php:150 pdf_pages.php:261 msgid "Please choose a page to edit" msgstr "请选择需要编辑的页" -#: libraries/messages.inc.php:157 +#: libraries/messages.inc.php:153 msgid "Displaying Column Comments" msgstr "显示字段注释" -#: libraries/messages.inc.php:159 pdf_pages.php:483 view_create.php:148 +#: libraries/messages.inc.php:155 pdf_pages.php:483 view_create.php:148 msgid "Column names" msgstr "字段名" -#: libraries/messages.inc.php:160 server_privileges.php:1685 +#: libraries/messages.inc.php:156 server_privileges.php:1685 msgid "Column-specific privileges" msgstr "按字段指定权限" -#: libraries/messages.inc.php:164 +#: libraries/messages.inc.php:160 msgid "MySQL 4.0 compatible" msgstr "兼容 MySQL 4.0" -#: libraries/messages.inc.php:165 +#: libraries/messages.inc.php:161 msgid "Complete inserts" msgstr "完整插入" -#: libraries/messages.inc.php:168 +#: libraries/messages.inc.php:164 #, php-format msgid "Could not load default configuration from: \"%1$s\"" msgstr "无法加载默认配置: \"%1$s\"" -#: libraries/messages.inc.php:169 main.php:306 +#: libraries/messages.inc.php:165 main.php:306 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " @@ -3286,234 +3286,234 @@ msgstr "" "安装时所用的 [code]config[/code] 文件夹尚未删除,如果 phpMyAdmin 已经安装配置" "好,请立即删除该文件夹。" -#: libraries/messages.inc.php:171 pdf_schema.php:672 +#: libraries/messages.inc.php:167 pdf_schema.php:672 #, php-format msgid "Please configure the coordinates for table %s" msgstr "请配置表 %s 的并发" -#: libraries/messages.inc.php:173 server_status.php:433 +#: libraries/messages.inc.php:169 server_status.php:433 msgid "Connections" msgstr "连接" -#: libraries/messages.inc.php:179 tbl_operations.php:509 +#: libraries/messages.inc.php:175 tbl_operations.php:509 msgid "Copy table to (database.table):" msgstr "将数据表复制到(数据库名.数据表名):" -#: libraries/messages.inc.php:180 tbl_move_copy.php:58 +#: libraries/messages.inc.php:176 tbl_move_copy.php:58 #, php-format msgid "Table %s has been copied to %s." msgstr "已将数据表 %s 复制为 %s。" -#: libraries/messages.inc.php:181 tbl_move_copy.php:48 +#: libraries/messages.inc.php:177 tbl_move_copy.php:48 msgid "Can't copy table to same one!" msgstr "目标数据表不能为源数据表!" -#: libraries/messages.inc.php:182 server_synchronize.php:94 +#: libraries/messages.inc.php:178 server_synchronize.php:94 msgid "Could not connect to the source" msgstr "无法连接到源数据库" -#: libraries/messages.inc.php:183 server_synchronize.php:97 +#: libraries/messages.inc.php:179 server_synchronize.php:97 msgid "Could not connect to the target" msgstr "无法连接到目标数据库" -#: libraries/messages.inc.php:184 server_processlist.php:24 +#: libraries/messages.inc.php:180 server_processlist.php:24 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin 无法杀死线程 %s。该线程可能已经关闭。" -#: libraries/messages.inc.php:187 +#: libraries/messages.inc.php:183 #, php-format msgid "Create an index on %s columns" msgstr "在第 %s 个字段创建索引" -#: libraries/messages.inc.php:188 tbl_indexes.php:160 +#: libraries/messages.inc.php:184 tbl_indexes.php:160 msgid "Create a new index" msgstr "新建索引" -#: libraries/messages.inc.php:191 pdf_pages.php:297 pmd_pdf.php:114 +#: libraries/messages.inc.php:187 pdf_pages.php:297 pmd_pdf.php:114 msgid "Create a page" msgstr "创建新页" -#: libraries/messages.inc.php:192 +#: libraries/messages.inc.php:188 msgid "Creation of PDFs" msgstr "创建 PDF" -#: libraries/messages.inc.php:193 pmd_general.php:74 pmd_general.php:306 +#: libraries/messages.inc.php:189 pmd_general.php:74 pmd_general.php:306 msgid "Create relation" msgstr "创建关系" -#: libraries/messages.inc.php:194 pmd_general.php:71 +#: libraries/messages.inc.php:190 pmd_general.php:71 #: server_synchronize.php:429 server_synchronize.php:872 msgid "Create table" msgstr "新建数据表" -#: libraries/messages.inc.php:195 +#: libraries/messages.inc.php:191 msgctxt "$strCreateTableShort" msgid "Create table" msgstr "新建数据表" -#: libraries/messages.inc.php:196 server_privileges.php:1994 +#: libraries/messages.inc.php:192 server_privileges.php:1994 msgid "Database for user" msgstr "用户数据库" -#: libraries/messages.inc.php:197 server_privileges.php:1999 +#: libraries/messages.inc.php:193 server_privileges.php:1999 msgid "Create database with same name and grant all privileges" msgstr "创建与用户同名的数据库并授予所有权限" -#: libraries/messages.inc.php:198 +#: libraries/messages.inc.php:194 msgctxt "$strCreateUserDatabaseNone" msgid "None" msgstr "无" -#: libraries/messages.inc.php:199 server_privileges.php:2003 +#: libraries/messages.inc.php:195 server_privileges.php:2003 #, php-format msgid "Grant all privileges on database "%s"" msgstr "授予数据库“%s”的所有权限。" -#: libraries/messages.inc.php:200 server_privileges.php:2000 +#: libraries/messages.inc.php:196 server_privileges.php:2000 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "给以 用户名_ 开头的数据库 (username\\_%) 授予所有权限" -#: libraries/messages.inc.php:201 +#: libraries/messages.inc.php:197 msgid "Creation/Update/Check dates" msgstr "创建/更新/检查日期" -#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:229 +#: libraries/messages.inc.php:199 libraries/mysql_charsets.lib.php:229 msgid "Croatian" msgstr "克罗地亚语" -#: libraries/messages.inc.php:204 +#: libraries/messages.inc.php:200 msgid "CSV" msgstr "CSV" -#: libraries/messages.inc.php:205 libraries/server_synchronize.lib.php:1343 +#: libraries/messages.inc.php:201 libraries/server_synchronize.lib.php:1343 #: libraries/server_synchronize.lib.php:1369 msgid "Current server" msgstr "当前服务器" -#: libraries/messages.inc.php:206 main.php:159 +#: libraries/messages.inc.php:202 main.php:159 msgid "Custom color" msgstr "自定义颜色" -#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:365 +#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:365 msgid "Cyrillic" msgstr "西里尔语" -#: libraries/messages.inc.php:208 libraries/mysql_charsets.lib.php:232 +#: libraries/messages.inc.php:204 libraries/mysql_charsets.lib.php:232 msgid "Czech" msgstr "捷克语" -#: libraries/messages.inc.php:209 libraries/mysql_charsets.lib.php:383 +#: libraries/messages.inc.php:205 libraries/mysql_charsets.lib.php:383 msgid "Czech-Slovak" msgstr "捷克斯洛伐克语" -#: libraries/messages.inc.php:211 libraries/mysql_charsets.lib.php:235 +#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:235 msgid "Danish" msgstr "丹麦语" -#: libraries/messages.inc.php:214 +#: libraries/messages.inc.php:210 msgid "Database export options" msgstr "数据库导出选项" -#: libraries/messages.inc.php:217 server_synchronize.php:122 +#: libraries/messages.inc.php:213 server_synchronize.php:122 #: server_synchronize.php:125 tbl_create.php:82 tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "数据库 '%s' 不存在。" -#: libraries/messages.inc.php:219 server_databases.php:63 +#: libraries/messages.inc.php:215 server_databases.php:63 #, php-format msgid "%s databases have been dropped successfully." msgstr "已成功删除 %s 个数据库。" -#: libraries/messages.inc.php:220 libraries/server_synchronize.lib.php:1341 +#: libraries/messages.inc.php:216 libraries/server_synchronize.lib.php:1341 #: server_synchronize.php:1110 msgid "Source database" msgstr "源数据库" -#: libraries/messages.inc.php:221 server_databases.php:88 +#: libraries/messages.inc.php:217 server_databases.php:88 msgid "Databases statistics" msgstr "数据库统计" -#: libraries/messages.inc.php:222 server_databases.php:362 +#: libraries/messages.inc.php:218 server_databases.php:362 #: server_databases.php:363 msgid "Disable Statistics" msgstr "禁用统计" -#: libraries/messages.inc.php:223 server_databases.php:358 +#: libraries/messages.inc.php:219 server_databases.php:358 #: server_databases.php:359 msgid "Enable Statistics" msgstr "启用统计" -#: libraries/messages.inc.php:224 server_databases.php:366 +#: libraries/messages.inc.php:220 server_databases.php:366 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." msgstr "" "注意:在此启用数据库统计可能导致网站服务器和 MySQL 服务器之间的流量骤增。" -#: libraries/messages.inc.php:225 libraries/server_synchronize.lib.php:1367 +#: libraries/messages.inc.php:221 libraries/server_synchronize.lib.php:1367 #: server_synchronize.php:1112 msgid "Target database" msgstr "目标数据库" -#: libraries/messages.inc.php:228 server_synchronize.php:425 +#: libraries/messages.inc.php:224 server_synchronize.php:425 #: server_synchronize.php:868 msgid "Data Difference" msgstr "数据差异" -#: libraries/messages.inc.php:231 server_synchronize.php:272 +#: libraries/messages.inc.php:227 server_synchronize.php:272 msgid "Data Synchronization" msgstr "数据同步" -#: libraries/messages.inc.php:235 server_privileges.php:526 +#: libraries/messages.inc.php:231 server_privileges.php:526 #: server_privileges.php:1679 msgid "Database-specific privileges" msgstr "按数据库指定权限" -#: libraries/messages.inc.php:237 server_privileges.php:2136 +#: libraries/messages.inc.php:233 server_privileges.php:2136 msgid "database-specific" msgstr "按数据库指定" -#: libraries/messages.inc.php:240 libraries/tbl_properties.inc.php:106 +#: libraries/messages.inc.php:236 libraries/tbl_properties.inc.php:106 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" msgstr "对于默认值,请只输入单个值,不要加反斜杠或引号,请用此格式:a" -#: libraries/messages.inc.php:241 tbl_operations.php:589 +#: libraries/messages.inc.php:237 tbl_operations.php:589 msgid "Defragment table" msgstr "整理表碎片" -#: libraries/messages.inc.php:242 +#: libraries/messages.inc.php:238 msgid "Use delayed inserts" msgstr "使用延迟插入" -#: libraries/messages.inc.php:245 server_privileges.php:1243 +#: libraries/messages.inc.php:241 server_privileges.php:1243 msgid "No users selected for deleting!" msgstr "没有选择要删除的用户!" -#: libraries/messages.inc.php:246 pmd_general.php:372 +#: libraries/messages.inc.php:242 pmd_general.php:372 msgid "Delete relation" msgstr "删除关系" -#: libraries/messages.inc.php:248 server_privileges.php:1232 +#: libraries/messages.inc.php:244 server_privileges.php:1232 #, php-format msgid "Deleting %s" msgstr "正在删除 %s" -#: libraries/messages.inc.php:249 libraries/sql_query_form.lib.php:388 +#: libraries/messages.inc.php:245 libraries/sql_query_form.lib.php:388 msgid "Delimiter" msgstr "语句定界符" -#: libraries/messages.inc.php:250 pdf_pages.php:506 +#: libraries/messages.inc.php:246 pdf_pages.php:506 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" msgstr "当前页所引用的表不存在了。您是否想要删除这些引用?" -#: libraries/messages.inc.php:254 pmd_help.php:29 +#: libraries/messages.inc.php:250 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 " @@ -3522,142 +3522,142 @@ msgstr "" "显示的字段为粉红色。要设置或取消显示的字段,点击“选择显示字段”图标,然后选择" "需要的字段名字。" -#: libraries/messages.inc.php:256 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:252 libraries/mysql_charsets.lib.php:247 msgid "dictionary" msgstr "字典" -#: libraries/messages.inc.php:257 libraries/server_synchronize.lib.php:1348 +#: libraries/messages.inc.php:253 libraries/server_synchronize.lib.php:1348 msgid "Difference" msgstr "差异" -#: libraries/messages.inc.php:258 pmd_general.php:87 +#: libraries/messages.inc.php:254 pmd_general.php:87 msgid "Direct links" msgstr "直接连接" -#: libraries/messages.inc.php:261 +#: libraries/messages.inc.php:257 msgid "Disable foreign key checks" msgstr "禁止选定不相关的主键" -#: libraries/messages.inc.php:262 +#: libraries/messages.inc.php:258 msgid "Display Features" msgstr "显示功能" -#: libraries/messages.inc.php:263 tbl_select.php:301 +#: libraries/messages.inc.php:259 tbl_select.php:301 msgid "Display order:" msgstr "显示顺序:" -#: libraries/messages.inc.php:265 tbl_select.php:132 +#: libraries/messages.inc.php:261 tbl_select.php:132 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "执行“依例查询”(通配符:“%”)" -#: libraries/messages.inc.php:266 +#: libraries/messages.inc.php:262 msgid "DocSQL" msgstr "DocSQL" -#: libraries/messages.inc.php:268 +#: libraries/messages.inc.php:264 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "不要给零值使用自增 (AUTO_INCREMENT)" -#: libraries/messages.inc.php:273 server_privileges.php:1579 +#: libraries/messages.inc.php:269 server_privileges.php:1579 #: server_privileges.php:1580 server_privileges.php:1581 msgid "Drop the databases that have the same names as the users." msgstr "删除与用户同名的数据库。" -#: libraries/messages.inc.php:278 tbl_printview.php:382 tbl_structure.php:743 +#: libraries/messages.inc.php:274 tbl_printview.php:382 tbl_structure.php:743 msgid "dynamic" msgstr "动态" -#: libraries/messages.inc.php:282 server_privileges.php:1324 +#: libraries/messages.inc.php:278 server_privileges.php:1324 #: server_privileges.php:1610 msgid "Edit Privileges" msgstr "编辑权限" -#: libraries/messages.inc.php:283 tbl_printview.php:341 tbl_structure.php:688 +#: libraries/messages.inc.php:279 tbl_printview.php:341 tbl_structure.php:688 msgid "Effective" msgstr "有效" -#: libraries/messages.inc.php:286 libraries/relation.lib.php:100 +#: libraries/messages.inc.php:282 libraries/relation.lib.php:100 msgid "Enabled" msgstr "已启用" -#: libraries/messages.inc.php:287 +#: libraries/messages.inc.php:283 msgid "Enclose export in a transaction" msgstr "处理事务中封装输出" -#: libraries/messages.inc.php:288 libraries/sqlparser.lib.php:177 +#: libraries/messages.inc.php:284 libraries/sqlparser.lib.php:177 msgid "END CUT" msgstr "结束剪切" -#: libraries/messages.inc.php:290 libraries/sqlparser.lib.php:183 +#: libraries/messages.inc.php:286 libraries/sqlparser.lib.php:183 msgid "END RAW" msgstr "结束原文" -#: libraries/messages.inc.php:293 libraries/server_links.inc.php:61 +#: libraries/messages.inc.php:289 libraries/server_links.inc.php:61 #: test/theme.php:113 msgid "Engines" msgstr "引擎" -#: libraries/messages.inc.php:295 libraries/mysql_charsets.lib.php:238 +#: libraries/messages.inc.php:291 libraries/mysql_charsets.lib.php:238 msgid "English" msgstr "英语" -#: libraries/messages.inc.php:296 server_privileges.php:393 +#: libraries/messages.inc.php:292 server_privileges.php:393 #: server_privileges.php:535 server_privileges.php:1501 msgid " Note: MySQL privilege names are expressed in English " msgstr " 注意:MySQL 权限名称会以英文显示 " -#: libraries/messages.inc.php:298 libraries/zip_extension.lib.php:49 +#: libraries/messages.inc.php:294 libraries/zip_extension.lib.php:49 #: libraries/zip_extension.lib.php:51 libraries/zip_extension.lib.php:66 msgid "Error in ZIP archive:" msgstr "ZIP 包中有错误:" -#: libraries/messages.inc.php:303 libraries/mysql_charsets.lib.php:241 +#: libraries/messages.inc.php:299 libraries/mysql_charsets.lib.php:241 msgid "Esperanto" msgstr "世界语" -#: libraries/messages.inc.php:304 libraries/mysql_charsets.lib.php:244 +#: libraries/messages.inc.php:300 libraries/mysql_charsets.lib.php:244 msgid "Estonian" msgstr "爱沙尼亚语" -#: libraries/messages.inc.php:305 libraries/tbl_triggers.lib.php:29 +#: libraries/messages.inc.php:301 libraries/tbl_triggers.lib.php:29 msgid "Event" msgstr "事件" -#: libraries/messages.inc.php:307 +#: libraries/messages.inc.php:303 msgid "Excel edition" msgstr "Excel 版本" -#: libraries/messages.inc.php:311 pmd_pdf.php:85 +#: libraries/messages.inc.php:307 pmd_pdf.php:85 msgid "Export/Import to scale" msgstr "按比例导出/导入" -#: libraries/messages.inc.php:313 +#: libraries/messages.inc.php:309 msgid "Extended inserts" msgstr "扩展插入" -#: libraries/messages.inc.php:314 pdf_schema.php:1267 pdf_schema.php:1288 +#: libraries/messages.inc.php:310 pdf_schema.php:1267 pdf_schema.php:1288 #: tbl_printview.php:147 tbl_structure.php:183 tbl_tracking.php:278 msgid "Extra" msgstr "额外" -#: libraries/messages.inc.php:316 server_status.php:447 +#: libraries/messages.inc.php:312 server_status.php:447 msgid "Failed attempts" msgstr "已失败" -#: libraries/messages.inc.php:318 tbl_structure.php:375 +#: libraries/messages.inc.php:314 tbl_structure.php:375 #, php-format msgid "Field %s has been dropped" msgstr "已删除字段 %s " -#: libraries/messages.inc.php:322 libraries/sql_query_form.lib.php:317 +#: libraries/messages.inc.php:318 libraries/sql_query_form.lib.php:317 msgid "Fields" msgstr "字段数" -#: libraries/messages.inc.php:332 server_binlog.php:136 +#: libraries/messages.inc.php:328 server_binlog.php:136 msgid "Files" msgstr "文件" -#: libraries/messages.inc.php:334 server_privileges.php:1597 +#: libraries/messages.inc.php:330 server_privileges.php:1597 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -3669,217 +3669,217 @@ msgstr "" "将可能与服务器使用的用户权限有异。在这种情况下,您应在继续前%s重新载入权限%" "s。" -#: libraries/messages.inc.php:335 server_status.php:289 +#: libraries/messages.inc.php:331 server_status.php:289 msgid "Flush query cache" msgstr "强制更新查询缓存" -#: libraries/messages.inc.php:336 +#: libraries/messages.inc.php:332 msgid "Flush the table (\"FLUSH\")" msgstr "强制更新表 (\"FLUSH\")" -#: libraries/messages.inc.php:337 server_status.php:271 +#: libraries/messages.inc.php:333 server_status.php:271 msgid "Flush (close) all tables" msgstr "强制更新 (关闭) 所有表" -#: libraries/messages.inc.php:339 tbl_relation.php:279 +#: libraries/messages.inc.php:335 tbl_relation.php:279 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "在 %1$s 创建外键时发生错误 (检查数据类型)" -#: libraries/messages.inc.php:341 setup/lib/messages.inc.php:88 +#: libraries/messages.inc.php:337 setup/lib/messages.inc.php:88 #: tbl_printview.php:376 tbl_structure.php:738 msgid "Format" msgstr "格式" -#: libraries/messages.inc.php:344 server_replication.php:325 +#: libraries/messages.inc.php:340 server_replication.php:325 msgid "Full start" msgstr "全部开始" -#: libraries/messages.inc.php:345 server_replication.php:325 +#: libraries/messages.inc.php:341 server_replication.php:325 msgid "Full stop" msgstr "全部停止" -#: libraries/messages.inc.php:347 tbl_change.php:282 tbl_change.php:320 +#: libraries/messages.inc.php:343 tbl_change.php:282 tbl_change.php:320 msgid "Function" msgstr "函数" -#: libraries/messages.inc.php:355 libraries/mysql_charsets.lib.php:377 +#: libraries/messages.inc.php:351 libraries/mysql_charsets.lib.php:377 msgid "Georgian" msgstr "乔治亚语" -#: libraries/messages.inc.php:356 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:352 libraries/mysql_charsets.lib.php:247 #: libraries/mysql_charsets.lib.php:250 msgid "German" msgstr "德语" -#: libraries/messages.inc.php:357 themes.php:42 +#: libraries/messages.inc.php:353 themes.php:42 msgid "Get more themes!" msgstr "获得更多主题!" -#: libraries/messages.inc.php:358 server_privileges.php:2134 +#: libraries/messages.inc.php:354 server_privileges.php:2134 msgid "global" msgstr "全局" -#: libraries/messages.inc.php:359 server_privileges.php:524 +#: libraries/messages.inc.php:355 server_privileges.php:524 #: server_privileges.php:1500 msgid "Global privileges" msgstr "全局权限" -#: libraries/messages.inc.php:360 server_variables.php:55 +#: libraries/messages.inc.php:356 server_variables.php:55 #: server_variables.php:89 msgid "Global value" msgstr "全局值" -#: libraries/messages.inc.php:365 server_privileges.php:1502 +#: libraries/messages.inc.php:361 server_privileges.php:1502 #: server_privileges.php:1684 server_privileges.php:2033 msgid "Grant" msgstr "授权" -#: libraries/messages.inc.php:366 libraries/mysql_charsets.lib.php:380 +#: libraries/messages.inc.php:362 libraries/mysql_charsets.lib.php:380 msgid "Greek" msgstr "希腊语" -#: libraries/messages.inc.php:367 +#: libraries/messages.inc.php:363 msgid "\"gzipped\"" msgstr "gzip 压缩" -#: libraries/messages.inc.php:369 server_status.php:250 +#: libraries/messages.inc.php:365 server_status.php:250 msgid "Handler" msgstr "句柄" -#: libraries/messages.inc.php:370 server_synchronize.php:464 +#: libraries/messages.inc.php:366 server_synchronize.php:464 msgid "Selected target tables have been synchronized with source tables." msgstr "选中的数据表已根据源数据表同步。" -#: libraries/messages.inc.php:372 libraries/mysql_charsets.lib.php:374 +#: libraries/messages.inc.php:368 libraries/mysql_charsets.lib.php:374 msgid "Hebrew" msgstr "希伯来语" -#: libraries/messages.inc.php:373 pmd_general.php:83 +#: libraries/messages.inc.php:369 pmd_general.php:83 msgid "Help" msgstr "帮助" -#: libraries/messages.inc.php:374 +#: libraries/messages.inc.php:370 msgid "Use hexadecimal for BLOB" msgstr "为 BLOB 字段使用16进制 (HEX)" -#: libraries/messages.inc.php:376 pmd_general.php:120 +#: libraries/messages.inc.php:372 pmd_general.php:120 msgid "Hide/Show all" msgstr "全部隐藏/显示" -#: libraries/messages.inc.php:377 pmd_general.php:124 +#: libraries/messages.inc.php:373 pmd_general.php:124 msgid "Hide/Show Tables with no relation" msgstr "隐藏/显示没有关联的表" -#: libraries/messages.inc.php:378 libraries/navigation_header.inc.php:54 +#: libraries/messages.inc.php:374 libraries/navigation_header.inc.php:54 #: libraries/navigation_header.inc.php:57 #: libraries/navigation_header.inc.php:58 msgid "Home" msgstr "主页" -#: libraries/messages.inc.php:379 main.php:233 +#: libraries/messages.inc.php:375 main.php:233 msgid "Official Homepage" msgstr "官方主页 (外链,英文)" -#: libraries/messages.inc.php:382 libraries/replication_gui.lib.php:327 +#: libraries/messages.inc.php:378 libraries/replication_gui.lib.php:327 #: server_privileges.php:753 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "使用主机表时,此处的数据会被主机表中的数据所替换。" -#: libraries/messages.inc.php:383 +#: libraries/messages.inc.php:379 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/messages.inc.php:384 libraries/mysql_charsets.lib.php:253 +#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:253 msgid "Hungarian" msgstr "匈牙利语" -#: libraries/messages.inc.php:386 libraries/mysql_charsets.lib.php:256 +#: libraries/messages.inc.php:382 libraries/mysql_charsets.lib.php:256 msgid "Icelandic" msgstr "冰岛语" -#: libraries/messages.inc.php:387 server_processlist.php:53 +#: libraries/messages.inc.php:383 server_processlist.php:53 msgid "ID" msgstr "ID" -#: libraries/messages.inc.php:388 libraries/mult_submits.inc.php:108 +#: libraries/messages.inc.php:384 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:479 msgid "Fulltext" msgstr "全文搜索" -#: libraries/messages.inc.php:389 +#: libraries/messages.inc.php:385 msgid "Ignore duplicate rows" msgstr "忽略重复行" -#: libraries/messages.inc.php:390 tbl_change.php:302 tbl_indexes.php:200 +#: libraries/messages.inc.php:386 tbl_change.php:302 tbl_indexes.php:200 #: tbl_indexes.php:225 msgid "Ignore" msgstr "忽略" -#: libraries/messages.inc.php:391 +#: libraries/messages.inc.php:387 msgid "Use ignore inserts" msgstr "使用忽略插入" -#: libraries/messages.inc.php:392 +#: libraries/messages.inc.php:388 msgid "Column names in first row" msgstr "忽略首行 (首行为字段名)" -#: libraries/messages.inc.php:393 +#: libraries/messages.inc.php:389 msgid "Do not import empty rows" msgstr "不导入空行" -#: libraries/messages.inc.php:394 pmd_general.php:104 +#: libraries/messages.inc.php:390 pmd_general.php:104 msgid "Import/Export coordinates for PDF schema" msgstr "为 PDF 大纲导入/导出坐标" -#: libraries/messages.inc.php:395 querywindow.php:104 +#: libraries/messages.inc.php:391 querywindow.php:104 msgid "Import files" msgstr "导入文件" -#: libraries/messages.inc.php:403 +#: libraries/messages.inc.php:399 msgid "Import currencies ($5.00 to 5.00)" msgstr "转换货币 (如: $5.00 将被转换为 5.00)" -#: libraries/messages.inc.php:404 libraries/messages.inc.php:584 +#: libraries/messages.inc.php:400 libraries/messages.inc.php:580 msgid "Open Document Spreadsheet" msgstr "OpenOffice 表格" -#: libraries/messages.inc.php:405 +#: libraries/messages.inc.php:401 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "转换百分数 (如: 12.00% 将被转换为 .12)" -#: libraries/messages.inc.php:409 +#: libraries/messages.inc.php:405 msgid "Excel 97-2003 XLS Workbook" msgstr "Excel 97-2003 XLS 工作簿" -#: libraries/messages.inc.php:410 +#: libraries/messages.inc.php:406 msgid "Excel 2007 XLSX Workbook" msgstr "Excel 2007 XLSX 工作簿" -#: libraries/messages.inc.php:414 libraries/mult_submits.inc.php:98 +#: libraries/messages.inc.php:410 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:476 tbl_structure.php:674 msgid "Index" msgstr "索引" -#: libraries/messages.inc.php:415 tbl_indexes.php:168 +#: libraries/messages.inc.php:411 tbl_indexes.php:168 msgid "Index name:" msgstr "索引名称:" -#: libraries/messages.inc.php:416 tbl_indexes.php:174 +#: libraries/messages.inc.php:412 tbl_indexes.php:174 msgid "Index type:" msgstr "索引类型:" -#: libraries/messages.inc.php:417 sql.php:639 +#: libraries/messages.inc.php:413 sql.php:639 #, php-format msgid "Problems with indexes of table `%s`" msgstr "数据表 `%s` 的索引存在问题" -#: libraries/messages.inc.php:427 main.php:266 +#: libraries/messages.inc.php:423 main.php:266 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -3890,54 +3890,54 @@ msgstr "" "务器使用默认值运行当然没有问题,不过这样的话,被入侵的可能性会很大,我们强烈" "建议您应该立即给 'root' 用户设置一个密码来补上这个安全漏洞。" -#: libraries/messages.inc.php:428 tbl_change.php:1130 +#: libraries/messages.inc.php:424 tbl_change.php:1130 msgid "Insert as new row" msgstr "以新行插入" -#: libraries/messages.inc.php:429 sql.php:496 tbl_replace.php:386 +#: libraries/messages.inc.php:425 sql.php:496 tbl_replace.php:386 #, php-format msgid "Inserted row id: %1$d" msgstr "插入的行 id: %1$d" -#: libraries/messages.inc.php:430 tbl_change.php:1131 +#: libraries/messages.inc.php:426 tbl_change.php:1131 msgid "Insert as new row and ignore errors" msgstr "以新行插入 (忽略错误)" -#: libraries/messages.inc.php:432 main.php:139 +#: libraries/messages.inc.php:428 main.php:139 msgid "Interface" msgstr "界面" -#: libraries/messages.inc.php:433 tbl_relation.php:407 +#: libraries/messages.inc.php:429 tbl_relation.php:407 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "不需要一个和外键关系一致的内联关系" -#: libraries/messages.inc.php:435 pdf_pages.php:303 +#: libraries/messages.inc.php:431 pdf_pages.php:303 msgid "Internal relations" msgstr "内联" -#: libraries/messages.inc.php:438 tbl_indexes.php:256 tbl_structure.php:590 +#: libraries/messages.inc.php:434 tbl_indexes.php:256 tbl_structure.php:590 #: tbl_structure.php:601 msgid "Column count has to be larger than zero." msgstr "至少要有一个字段。" -#: libraries/messages.inc.php:444 libraries/tbl_properties.inc.php:784 +#: libraries/messages.inc.php:440 libraries/tbl_properties.inc.php:784 #: tbl_structure.php:537 msgid "You have to add at least one field." msgstr "至少要添加一个字段。" -#: libraries/messages.inc.php:449 +#: libraries/messages.inc.php:445 #, php-format msgid "Invalid server index: \"%s\"" msgstr "无效的服务器索引:“%s”" -#: libraries/messages.inc.php:452 libraries/mysql_charsets.lib.php:259 +#: libraries/messages.inc.php:448 libraries/mysql_charsets.lib.php:259 #: libraries/mysql_charsets.lib.php:349 msgid "Japanese" msgstr "日语" -#: libraries/messages.inc.php:453 main.php:331 +#: libraries/messages.inc.php:449 main.php:331 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " @@ -3946,109 +3946,109 @@ msgstr "" "你的浏览器不支持或禁用了 Javascript,部分 phpMyAdmin 功能将不可用。如导航框架" "将不能自动刷新。" -#: libraries/messages.inc.php:454 server_status.php:257 +#: libraries/messages.inc.php:450 server_status.php:257 msgid "Joins" msgstr "多表查询" -#: libraries/messages.inc.php:457 server_privileges.php:763 +#: libraries/messages.inc.php:453 server_privileges.php:763 msgid "Do not change the password" msgstr "保持原密码" -#: libraries/messages.inc.php:458 server_status.php:256 +#: libraries/messages.inc.php:454 server_status.php:256 msgid "Key cache" msgstr "键缓存" -#: libraries/messages.inc.php:462 libraries/mysql_charsets.lib.php:268 +#: libraries/messages.inc.php:458 libraries/mysql_charsets.lib.php:268 #: libraries/mysql_charsets.lib.php:371 msgid "Korean" msgstr "朝鲜语" -#: libraries/messages.inc.php:466 libraries/select_lang.lib.php:480 +#: libraries/messages.inc.php:462 libraries/select_lang.lib.php:480 #: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492 #, php-format msgid "Unknown language: %1$s." msgstr "未知的语言:%1$s." -#: libraries/messages.inc.php:468 +#: libraries/messages.inc.php:464 msgid "Table caption" msgstr "表的标题" -#: libraries/messages.inc.php:469 +#: libraries/messages.inc.php:465 msgid "Content of table __TABLE__" msgstr "__TABLE__ 表的内容" -#: libraries/messages.inc.php:470 +#: libraries/messages.inc.php:466 msgid "Continued table caption" msgstr "延续的表的标题" -#: libraries/messages.inc.php:471 +#: libraries/messages.inc.php:467 msgid "(continued)" msgstr "(延续的)" -#: libraries/messages.inc.php:472 +#: libraries/messages.inc.php:468 msgid "Include table caption" msgstr "包含表的标题" -#: libraries/messages.inc.php:473 +#: libraries/messages.inc.php:469 msgid "Label key" msgstr "关键标签" -#: libraries/messages.inc.php:474 +#: libraries/messages.inc.php:470 msgid "LaTeX" msgstr "LaTeX" -#: libraries/messages.inc.php:475 +#: libraries/messages.inc.php:471 msgid "Structure of table __TABLE__" msgstr "__TABLE__ 表的结构" -#: libraries/messages.inc.php:476 libraries/mysql_charsets.lib.php:262 +#: libraries/messages.inc.php:472 libraries/mysql_charsets.lib.php:262 msgid "Latvian" msgstr "拉脱维亚语" -#: libraries/messages.inc.php:477 +#: libraries/messages.inc.php:473 msgid "CSV using LOAD DATA" msgstr "CSV 使用 LOAD DATA" -#: libraries/messages.inc.php:478 +#: libraries/messages.inc.php:474 msgid "Use LOCAL keyword" msgstr "使用本地 (LOCAL) 关键词" -#: libraries/messages.inc.php:479 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:475 libraries/tbl_properties.inc.php:105 msgid "Length/Values" msgstr "长度/值" -#: libraries/messages.inc.php:480 tbl_select.php:295 +#: libraries/messages.inc.php:476 tbl_select.php:295 msgid "Number of rows per page" msgstr "每页行数" -#: libraries/messages.inc.php:484 libraries/mysql_charsets.lib.php:265 +#: libraries/messages.inc.php:480 libraries/mysql_charsets.lib.php:265 msgid "Lithuanian" msgstr "立陶宛语" -#: libraries/messages.inc.php:485 libraries/replication_gui.lib.php:302 +#: libraries/messages.inc.php:481 libraries/replication_gui.lib.php:302 #: server_privileges.php:729 msgid "Local" msgstr "本地" -#: libraries/messages.inc.php:487 server_privileges.php:669 +#: libraries/messages.inc.php:483 server_privileges.php:669 msgid "Login Information" msgstr "登录信息" -#: libraries/messages.inc.php:490 libraries/navigation_header.inc.php:67 +#: libraries/messages.inc.php:486 libraries/navigation_header.inc.php:67 #: libraries/navigation_header.inc.php:70 #: libraries/navigation_header.inc.php:71 main.php:99 msgid "Log out" msgstr "退出" -#: libraries/messages.inc.php:497 server_status.php:440 +#: libraries/messages.inc.php:493 server_status.php:440 msgid "max. concurrent connections" msgstr "最大并发连接数" -#: libraries/messages.inc.php:498 +#: libraries/messages.inc.php:494 msgid "Maximal length of created query" msgstr "创建查询的最大长度" -#: libraries/messages.inc.php:500 main.php:282 +#: libraries/messages.inc.php:496 main.php:282 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -4057,7 +4057,7 @@ msgstr "" "没有找到 PHP 扩展 mbstring,而您现在好像在使用多字节字符集。没有 mbstring 扩" "展的 phpMyAdmin 不能正确分割字符串,可能产生意想不到的结果。" -#: libraries/messages.inc.php:501 main.php:274 +#: libraries/messages.inc.php:497 main.php:274 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -4066,24 +4066,24 @@ msgstr "" "PHP 配置中已启用了 mbstring.func_overload 。这个选项和 phpMyAdmin 不兼容,可" "能会导致一些数据损坏!" -#: libraries/messages.inc.php:502 +#: libraries/messages.inc.php:498 msgid "MediaWiki Table" msgstr "MediaWiki 表" -#: libraries/messages.inc.php:503 transformation_overview.php:25 +#: libraries/messages.inc.php:499 transformation_overview.php:25 msgid "Available MIME types" msgstr "可用的 MIME 类型" -#: libraries/messages.inc.php:504 transformation_overview.php:43 +#: libraries/messages.inc.php:500 transformation_overview.php:43 msgid "Available transformations" msgstr "可用的转换" -#: libraries/messages.inc.php:505 +#: libraries/messages.inc.php:501 msgctxt "$strMIME_description" msgid "Description" msgstr "说明" -#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:580 +#: libraries/messages.inc.php:503 libraries/tbl_properties.inc.php:580 #: transformation_overview.php:60 #, php-format msgid "" @@ -4091,14 +4091,14 @@ msgid "" "author what %s does." msgstr "此转换没有说明。
详细功能请询问 %s 的作者。" -#: libraries/messages.inc.php:509 libraries/tbl_properties.inc.php:137 +#: libraries/messages.inc.php:505 libraries/tbl_properties.inc.php:137 #, php-format msgid "" "For a list of available transformation options and their MIME type " "transformations, click on %stransformation descriptions%s" msgstr "要获得可用转换选项的列表及对应的 MIME 类型转换,请点击%s转换说明%s" -#: libraries/messages.inc.php:510 libraries/tbl_properties.inc.php:146 +#: libraries/messages.inc.php:506 libraries/tbl_properties.inc.php:146 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -4108,56 +4108,56 @@ msgstr "" "请使用此格式输入转换选项的值:'a',100,b,'c'...
如果您需要在值中输入反斜" "杠 (“\\”)或单引号(“'”),请在前面加上反斜杠 (如 '\\\\xyz' 或 'a\\'b')。" -#: libraries/messages.inc.php:511 libraries/tbl_properties.inc.php:145 +#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:145 msgid "Transformation options" msgstr "转换选项" -#: libraries/messages.inc.php:513 transformation_overview.php:38 +#: libraries/messages.inc.php:509 transformation_overview.php:38 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "以斜体显示的 MIME 类型没有单独的转换函数" -#: libraries/messages.inc.php:515 tbl_indexes.php:162 +#: libraries/messages.inc.php:511 tbl_indexes.php:162 msgid "Modify an index" msgstr "修改索引" -#: libraries/messages.inc.php:517 pmd_general.php:108 +#: libraries/messages.inc.php:513 pmd_general.php:108 msgid "Move Menu" msgstr "移动菜单" -#: libraries/messages.inc.php:518 tbl_operations.php:276 +#: libraries/messages.inc.php:514 tbl_operations.php:276 msgid "Move table to (database.table):" msgstr "将数据表移动到(数据库名.数据表名):" -#: libraries/messages.inc.php:519 tbl_move_copy.php:56 +#: libraries/messages.inc.php:515 tbl_move_copy.php:56 #, php-format msgid "Table %s has been moved to %s." msgstr "已将数据表 %s 移动到 %s。" -#: libraries/messages.inc.php:520 tbl_move_copy.php:46 +#: libraries/messages.inc.php:516 tbl_move_copy.php:46 msgid "Can't move table to same one!" msgstr "目标数据表不能为源数据表!" -#: libraries/messages.inc.php:521 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:517 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 #: libraries/mysql_charsets.lib.php:332 libraries/mysql_charsets.lib.php:354 #: libraries/mysql_charsets.lib.php:365 msgid "multilingual" msgstr "多语言" -#: libraries/messages.inc.php:534 main.php:193 +#: libraries/messages.inc.php:530 main.php:193 msgid "MySQL charset" msgstr "MySQL 字符集" -#: libraries/messages.inc.php:535 main.php:211 +#: libraries/messages.inc.php:531 main.php:211 msgid "MySQL client version" msgstr "MySQL 客户端版本" -#: libraries/messages.inc.php:536 main.php:125 +#: libraries/messages.inc.php:532 main.php:125 msgid "MySQL connection collation" msgstr "MySQL 连接校对" -#: libraries/messages.inc.php:537 main.php:346 +#: libraries/messages.inc.php:533 main.php:346 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " @@ -4166,192 +4166,192 @@ msgstr "" "你的 PHP MySQL 库版本 %s 和你的 MySQL 服务器版本 %s 不同。这可能造成一些未知" "的问题。" -#: libraries/messages.inc.php:539 server_status.php:294 +#: libraries/messages.inc.php:535 server_status.php:294 msgid "Show processes" msgstr "显示进程" -#: libraries/messages.inc.php:545 navigation.php:210 server_databases.php:371 +#: libraries/messages.inc.php:541 navigation.php:210 server_databases.php:371 #: server_synchronize.php:1191 msgid "No databases" msgstr "无数据库" -#: libraries/messages.inc.php:546 server_databases.php:52 +#: libraries/messages.inc.php:542 server_databases.php:52 msgid "No databases selected." msgstr "未选中数据库。" -#: libraries/messages.inc.php:548 libraries/relation.lib.php:1173 +#: libraries/messages.inc.php:544 libraries/relation.lib.php:1173 msgid "no description" msgstr "无说明" -#: libraries/messages.inc.php:552 libraries/zip_extension.lib.php:26 +#: libraries/messages.inc.php:548 libraries/zip_extension.lib.php:26 msgid "No files found inside ZIP archive!" msgstr "ZIP 包中未找到文件!" -#: libraries/messages.inc.php:555 tbl_indexes.php:91 +#: libraries/messages.inc.php:551 tbl_indexes.php:91 msgid "No index parts defined!" msgstr "没有定义的索引部分!" -#: libraries/messages.inc.php:556 libraries/mult_submits.inc.php:435 +#: libraries/messages.inc.php:552 libraries/mult_submits.inc.php:435 #: tbl_replace.php:331 msgid "No change" msgstr "无更改" -#: libraries/messages.inc.php:557 +#: libraries/messages.inc.php:553 msgctxt "$strNoneDefault" msgid "None" msgstr "无" -#: libraries/messages.inc.php:560 libraries/plugin_interface.lib.php:312 +#: libraries/messages.inc.php:556 libraries/plugin_interface.lib.php:312 msgid "This format has no options" msgstr "此格式没有选项" -#: libraries/messages.inc.php:565 user_password.php:54 +#: libraries/messages.inc.php:561 user_password.php:54 msgid "You don't have sufficient privileges to be here right now!" msgstr "权限不足!" -#: libraries/messages.inc.php:566 tbl_row_action.php:29 +#: libraries/messages.inc.php:562 tbl_row_action.php:29 msgid "No rows selected" msgstr "没有选中任何行" -#: libraries/messages.inc.php:569 themes.php:32 +#: libraries/messages.inc.php:565 themes.php:32 #, php-format msgid "" "No themes support; please check your configuration and/or your themes in " "directory %s." msgstr "不支持主题,请检查你的设置和主题文件夹 %s 。" -#: libraries/messages.inc.php:571 libraries/relation.lib.php:95 +#: libraries/messages.inc.php:567 libraries/relation.lib.php:95 msgid "not OK" msgstr "错误" -#: libraries/messages.inc.php:572 server_synchronize.php:400 +#: libraries/messages.inc.php:568 server_synchronize.php:400 #: server_synchronize.php:839 msgid "not present" msgstr "未找到" -#: libraries/messages.inc.php:573 pdf_pages.php:36 pdf_pages.php:42 +#: libraries/messages.inc.php:569 pdf_pages.php:36 pdf_pages.php:42 #: pdf_pages.php:48 pdf_pages.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "找不到 %s 表或还未在 %s 设置" -#: libraries/messages.inc.php:574 server_privileges.php:804 +#: libraries/messages.inc.php:570 server_privileges.php:804 #: server_privileges.php:2166 msgid "No user(s) found." msgstr "找不到用户。" -#: libraries/messages.inc.php:578 pmd_general.php:164 +#: libraries/messages.inc.php:574 pmd_general.php:164 msgid "Number of tables" msgstr "数据表数量" -#: libraries/messages.inc.php:581 server_databases.php:117 +#: libraries/messages.inc.php:577 server_databases.php:117 #: server_status.php:260 setup/lib/messages.inc.php:117 msgid "Tables" msgstr "数据表" -#: libraries/messages.inc.php:583 libraries/relation.lib.php:99 +#: libraries/messages.inc.php:579 libraries/relation.lib.php:99 #: pmd_general.php:340 msgid "OK" msgstr "确定" -#: libraries/messages.inc.php:585 +#: libraries/messages.inc.php:581 msgid "Open Document Text" msgstr "OpenOffice 文档" -#: libraries/messages.inc.php:588 tbl_select.php:138 +#: libraries/messages.inc.php:584 tbl_select.php:138 msgid "Operator" msgstr "操作符" -#: libraries/messages.inc.php:589 tbl_operations.php:662 +#: libraries/messages.inc.php:585 tbl_operations.php:662 msgid "Optimize" msgstr "优化" -#: libraries/messages.inc.php:602 libraries/tbl_properties.inc.php:755 +#: libraries/messages.inc.php:598 libraries/tbl_properties.inc.php:755 msgid "PARTITION definition" msgstr "分区定义" -#: libraries/messages.inc.php:603 tbl_structure.php:757 +#: libraries/messages.inc.php:599 tbl_structure.php:757 msgid "partitioned" msgstr "已分区" -#: libraries/messages.inc.php:604 tbl_operations.php:649 +#: libraries/messages.inc.php:600 tbl_operations.php:649 msgid "Partition maintenance" msgstr "分区维护" -#: libraries/messages.inc.php:605 tbl_operations.php:657 +#: libraries/messages.inc.php:601 tbl_operations.php:657 #, php-format msgid "Partition %s" msgstr "分区 %s" -#: libraries/messages.inc.php:606 server_privileges.php:1212 +#: libraries/messages.inc.php:602 server_privileges.php:1212 #, php-format msgid "The password for %s was changed successfully." msgstr "%s 的密码已修改。" -#: libraries/messages.inc.php:635 +#: libraries/messages.inc.php:631 #, php-format msgid "Schema of the \"%s\" database - Page %s" msgstr "数据库“%s”的大纲 - 第 %s 页" -#: libraries/messages.inc.php:636 +#: libraries/messages.inc.php:632 #, php-format msgid "The \"%s\" table doesn't exist!" msgstr "表“%s”不存在!" -#: libraries/messages.inc.php:637 pdf_schema.php:1013 +#: libraries/messages.inc.php:633 pdf_schema.php:1013 msgid "No tables" msgstr "没有表" -#: libraries/messages.inc.php:638 pmd_pdf.php:63 +#: libraries/messages.inc.php:634 pmd_pdf.php:63 msgid "Page has been created" msgstr "已创建页面" -#: libraries/messages.inc.php:639 pmd_pdf.php:65 +#: libraries/messages.inc.php:635 pmd_pdf.php:65 msgid "Page creation failed" msgstr "页面创建失败" -#: libraries/messages.inc.php:640 +#: libraries/messages.inc.php:636 msgid "PDF" msgstr "PDF" -#: libraries/messages.inc.php:641 +#: libraries/messages.inc.php:637 msgid "(Generates a report containing the data of a single table)" msgstr "(根据一张表的数据生成报告)" -#: libraries/messages.inc.php:642 +#: libraries/messages.inc.php:638 msgid "Report title" msgstr "报告标题" -#: libraries/messages.inc.php:643 server_status.php:389 server_status.php:434 +#: libraries/messages.inc.php:639 server_status.php:389 server_status.php:434 #: server_status.php:497 server_status.php:555 msgid "per hour" msgstr "每小时" -#: libraries/messages.inc.php:644 server_status.php:498 +#: libraries/messages.inc.php:640 server_status.php:498 msgid "per minute" msgstr "每分钟" -#: libraries/messages.inc.php:645 server_status.php:499 +#: libraries/messages.inc.php:641 server_status.php:499 msgid "per second" msgstr "每秒" -#: libraries/messages.inc.php:646 libraries/mysql_charsets.lib.php:271 +#: libraries/messages.inc.php:642 libraries/mysql_charsets.lib.php:271 msgid "Persian" msgstr "波斯语" -#: libraries/messages.inc.php:647 libraries/mysql_charsets.lib.php:250 +#: libraries/messages.inc.php:643 libraries/mysql_charsets.lib.php:250 msgid "phone book" msgstr "电话本" -#: libraries/messages.inc.php:648 +#: libraries/messages.inc.php:644 msgid "PHP array" msgstr "PHP 数组" -#: libraries/messages.inc.php:650 main.php:213 +#: libraries/messages.inc.php:646 main.php:213 msgid "PHP extension" msgstr "PHP 扩展" -#: libraries/messages.inc.php:654 libraries/relation.lib.php:163 +#: libraries/messages.inc.php:650 libraries/relation.lib.php:163 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." @@ -4359,208 +4359,208 @@ msgstr "" "在配置文件 (config.inc.php) 中启用高级功能,参见 config." "sample.inc.php 中的范例。" -#: libraries/messages.inc.php:655 libraries/relation.lib.php:159 +#: libraries/messages.inc.php:651 libraries/relation.lib.php:159 msgid "Quick steps to setup advanced features:" msgstr "快速设置高级功能:" -#: libraries/messages.inc.php:656 libraries/relation.lib.php:161 +#: libraries/messages.inc.php:652 libraries/relation.lib.php:161 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "通过 script/create_tables.sql 创建必需的数据表。" -#: libraries/messages.inc.php:657 libraries/relation.lib.php:162 +#: libraries/messages.inc.php:653 libraries/relation.lib.php:162 msgid "Create a pma user and give access to these tables." msgstr "创建一个用户并授予其访问上一步操作中创建的数据表的权限。" -#: libraries/messages.inc.php:658 libraries/relation.lib.php:164 +#: libraries/messages.inc.php:654 libraries/relation.lib.php:164 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "请重新登录 phpMyAdmin 以加载新配置并使其生效。" -#: libraries/messages.inc.php:661 libraries/mysql_charsets.lib.php:274 +#: libraries/messages.inc.php:657 libraries/mysql_charsets.lib.php:274 msgid "Polish" msgstr "波兰语" -#: libraries/messages.inc.php:662 libraries/replication_gui.lib.php:67 +#: libraries/messages.inc.php:658 libraries/replication_gui.lib.php:67 #: server_synchronize.php:1163 msgid "Port" msgstr "端口" -#: libraries/messages.inc.php:667 tbl_indexes.php:67 +#: libraries/messages.inc.php:663 tbl_indexes.php:67 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "主键的名称必须称为 “PRIMARY”!" -#: libraries/messages.inc.php:668 tbl_indexes.php:184 +#: libraries/messages.inc.php:664 tbl_indexes.php:184 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "(“PRIMARY”必须而且只能作为主键的名称!)" -#: libraries/messages.inc.php:669 libraries/mult_submits.inc.php:76 +#: libraries/messages.inc.php:665 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:474 msgid "Primary" msgstr "主键" -#: libraries/messages.inc.php:673 server_privileges.php:227 +#: libraries/messages.inc.php:669 server_privileges.php:227 msgid "Includes all privileges except GRANT." msgstr "除了授权 (GRANT) 以外的所有权限。" -#: libraries/messages.inc.php:674 server_privileges.php:153 +#: libraries/messages.inc.php:670 server_privileges.php:153 #: server_privileges.php:476 msgid "Allows altering the structure of existing tables." msgstr "允许修改现有数据表的结构。" -#: libraries/messages.inc.php:675 server_privileges.php:169 +#: libraries/messages.inc.php:671 server_privileges.php:169 #: server_privileges.php:482 msgid "Allows altering and dropping stored routines." msgstr "允许修改或删除储存过程。" -#: libraries/messages.inc.php:676 server_privileges.php:145 +#: libraries/messages.inc.php:672 server_privileges.php:145 #: server_privileges.php:475 msgid "Allows creating new databases and tables." msgstr "允许创建新数据库和数据表。" -#: libraries/messages.inc.php:677 server_privileges.php:168 +#: libraries/messages.inc.php:673 server_privileges.php:168 #: server_privileges.php:481 msgid "Allows creating stored routines." msgstr "允许创建存储过程。" -#: libraries/messages.inc.php:678 server_privileges.php:475 +#: libraries/messages.inc.php:674 server_privileges.php:475 msgid "Allows creating new tables." msgstr "允许创建新数据表。" -#: libraries/messages.inc.php:679 server_privileges.php:156 +#: libraries/messages.inc.php:675 server_privileges.php:156 #: server_privileges.php:479 msgid "Allows creating temporary tables." msgstr "允许创建临时表。" -#: libraries/messages.inc.php:680 server_privileges.php:170 +#: libraries/messages.inc.php:676 server_privileges.php:170 #: server_privileges.php:515 msgid "Allows creating, dropping and renaming user accounts." msgstr "允许创建、删除和重命名用户账户。" -#: libraries/messages.inc.php:681 server_privileges.php:160 +#: libraries/messages.inc.php:677 server_privileges.php:160 #: server_privileges.php:164 server_privileges.php:487 #: server_privileges.php:491 msgid "Allows creating new views." msgstr "允许创建视图。" -#: libraries/messages.inc.php:682 server_privileges.php:144 +#: libraries/messages.inc.php:678 server_privileges.php:144 #: server_privileges.php:467 msgid "Allows deleting data." msgstr "允许删除数据。" -#: libraries/messages.inc.php:683 server_privileges.php:146 +#: libraries/messages.inc.php:679 server_privileges.php:146 #: server_privileges.php:478 msgid "Allows dropping databases and tables." msgstr "允许删除数据库和数据表。" -#: libraries/messages.inc.php:684 server_privileges.php:478 +#: libraries/messages.inc.php:680 server_privileges.php:478 msgid "Allows dropping tables." msgstr "允许删除数据表。" -#: libraries/messages.inc.php:685 server_privileges.php:161 +#: libraries/messages.inc.php:681 server_privileges.php:161 #: server_privileges.php:495 msgid "Allows to set up events for the event scheduler" msgstr "允许为事件触发器设置事件" -#: libraries/messages.inc.php:686 server_privileges.php:171 +#: libraries/messages.inc.php:682 server_privileges.php:171 #: server_privileges.php:483 msgid "Allows executing stored routines." msgstr "允许运行存储过程。" -#: libraries/messages.inc.php:687 server_privileges.php:150 +#: libraries/messages.inc.php:683 server_privileges.php:150 #: server_privileges.php:470 msgid "Allows importing data from and exporting data into files." msgstr "允许从文件中导入数据以及将数据导出至文件。" -#: libraries/messages.inc.php:688 server_privileges.php:501 +#: libraries/messages.inc.php:684 server_privileges.php:501 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "允许添加用户和权限,而不允许重新载入权限表。" -#: libraries/messages.inc.php:689 server_privileges.php:152 +#: libraries/messages.inc.php:685 server_privileges.php:152 #: server_privileges.php:477 msgid "Allows creating and dropping indexes." msgstr "允许创建和删除索引。" -#: libraries/messages.inc.php:690 server_privileges.php:142 +#: libraries/messages.inc.php:686 server_privileges.php:142 #: server_privileges.php:403 server_privileges.php:465 msgid "Allows inserting and replacing data." msgstr "允许插入和替换数据。" -#: libraries/messages.inc.php:691 server_privileges.php:157 +#: libraries/messages.inc.php:687 server_privileges.php:157 #: server_privileges.php:510 msgid "Allows locking tables for the current thread." msgstr "允许锁定当前线程的表。" -#: libraries/messages.inc.php:692 server_privileges.php:607 +#: libraries/messages.inc.php:688 server_privileges.php:607 #: server_privileges.php:609 msgid "Limits the number of new connections the user may open per hour." msgstr "限制用户每小时打开的新连接数。" -#: libraries/messages.inc.php:693 server_privileges.php:595 +#: libraries/messages.inc.php:689 server_privileges.php:595 #: server_privileges.php:597 msgid "Limits the number of queries the user may send to the server per hour." msgstr "限制用户每小时可发送到服务器的查询数。" -#: libraries/messages.inc.php:694 server_privileges.php:601 +#: libraries/messages.inc.php:690 server_privileges.php:601 #: server_privileges.php:603 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "限制用户每小时可执行的修改任何数据表或数据库的命令数。" -#: libraries/messages.inc.php:695 server_privileges.php:613 +#: libraries/messages.inc.php:691 server_privileges.php:613 #: server_privileges.php:615 msgid "Limits the number of simultaneous connections the user may have." msgstr "限制该用户的并发连接数。" -#: libraries/messages.inc.php:696 server_privileges.php:149 +#: libraries/messages.inc.php:692 server_privileges.php:149 #: server_privileges.php:505 msgid "Allows viewing processes of all users" msgstr "允许查看所有用户的进程" -#: libraries/messages.inc.php:697 server_privileges.php:151 +#: libraries/messages.inc.php:693 server_privileges.php:151 #: server_privileges.php:409 server_privileges.php:511 msgid "Has no effect in this MySQL version." msgstr "在此版本的 MySQL 中无效。" -#: libraries/messages.inc.php:698 server_privileges.php:147 +#: libraries/messages.inc.php:694 server_privileges.php:147 #: server_privileges.php:506 msgid "Allows reloading server settings and flushing the server's caches." msgstr "允许重新载入服务器设置并刷新服务器的缓存。" -#: libraries/messages.inc.php:699 server_privileges.php:159 +#: libraries/messages.inc.php:695 server_privileges.php:159 #: server_privileges.php:513 msgid "Allows the user to ask where the slaves / masters are." msgstr "用户有权询问附属者/控制者在哪里。" -#: libraries/messages.inc.php:700 server_privileges.php:158 +#: libraries/messages.inc.php:696 server_privileges.php:158 #: server_privileges.php:514 msgid "Needed for the replication slaves." msgstr "回复附属者所需。" -#: libraries/messages.inc.php:701 server_privileges.php:141 +#: libraries/messages.inc.php:697 server_privileges.php:141 #: server_privileges.php:400 server_privileges.php:464 msgid "Allows reading data." msgstr "允许读取数据。" -#: libraries/messages.inc.php:702 server_privileges.php:154 +#: libraries/messages.inc.php:698 server_privileges.php:154 #: server_privileges.php:508 msgid "Gives access to the complete list of databases." msgstr "允许访问完整的数据库列表。" -#: libraries/messages.inc.php:703 server_privileges.php:165 +#: libraries/messages.inc.php:699 server_privileges.php:165 #: server_privileges.php:167 server_privileges.php:480 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "允许执行 SHOW CREATE VIEW 查询。" -#: libraries/messages.inc.php:704 server_privileges.php:148 +#: libraries/messages.inc.php:700 server_privileges.php:148 #: server_privileges.php:507 msgid "Allows shutting down the server." msgstr "允许关闭服务器。" -#: libraries/messages.inc.php:705 server_privileges.php:155 +#: libraries/messages.inc.php:701 server_privileges.php:155 #: server_privileges.php:504 msgid "" "Allows connecting, even if maximum number of connections is reached; " @@ -4570,190 +4570,190 @@ msgstr "" "允许在达到最大连接数时连接,对于大多数像设置全局变量或杀死其它用户线程这样的" "管理操作是必需的。" -#: libraries/messages.inc.php:706 server_privileges.php:162 +#: libraries/messages.inc.php:702 server_privileges.php:162 #: server_privileges.php:496 msgid "Allows creating and dropping triggers" msgstr "允许创建和删除触发器" -#: libraries/messages.inc.php:707 server_privileges.php:143 +#: libraries/messages.inc.php:703 server_privileges.php:143 #: server_privileges.php:406 server_privileges.php:466 msgid "Allows changing data." msgstr "允许修改数据。" -#: libraries/messages.inc.php:708 server_privileges.php:221 +#: libraries/messages.inc.php:704 server_privileges.php:221 msgid "No privileges." msgstr "无权限。" -#: libraries/messages.inc.php:710 server_privileges.php:1296 +#: libraries/messages.inc.php:706 server_privileges.php:1296 msgid "The privileges were reloaded successfully." msgstr "已成功重新载入权限。" -#: libraries/messages.inc.php:712 libraries/server_links.inc.php:80 +#: libraries/messages.inc.php:708 libraries/server_links.inc.php:80 msgid "Processes" msgstr "进程" -#: libraries/messages.inc.php:714 main.php:187 +#: libraries/messages.inc.php:710 main.php:187 msgid "Protocol version" msgstr "协议版本" -#: libraries/messages.inc.php:715 +#: libraries/messages.inc.php:711 msgid "Put fields names in the first row" msgstr "将字段名放在第一行" -#: libraries/messages.inc.php:720 server_synchronize.php:1003 +#: libraries/messages.inc.php:716 server_synchronize.php:1003 msgid "The following queries have been executed:" msgstr "下列查询被执行:" -#: libraries/messages.inc.php:721 server_status.php:251 +#: libraries/messages.inc.php:717 server_status.php:251 msgid "Query cache" msgstr "查询缓存" -#: libraries/messages.inc.php:722 libraries/navigation_header.inc.php:80 +#: libraries/messages.inc.php:718 libraries/navigation_header.inc.php:80 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 setup/lib/messages.inc.php:122 msgid "Query window" msgstr "查询窗口" -#: libraries/messages.inc.php:725 querywindow.php:109 querywindow.php:217 +#: libraries/messages.inc.php:721 querywindow.php:109 querywindow.php:217 msgid "SQL history" msgstr "SQL 历史" -#: libraries/messages.inc.php:726 server_status.php:490 +#: libraries/messages.inc.php:722 server_status.php:490 #, php-format msgid "" "Query statistics: Since its startup, %s queries have been sent to the " "server." msgstr "查询统计:自启动后,服务器共收到了 %s 次查询。" -#: libraries/messages.inc.php:728 server_status.php:554 +#: libraries/messages.inc.php:724 server_status.php:554 msgid "Query type" msgstr "查询方式" -#: libraries/messages.inc.php:729 libraries/sql_query_form.lib.php:381 +#: libraries/messages.inc.php:725 libraries/sql_query_form.lib.php:381 msgid "Do not overwrite this query from outside the window" msgstr "不从窗口外覆盖此查询" -#: libraries/messages.inc.php:732 tbl_operations.php:663 +#: libraries/messages.inc.php:728 tbl_operations.php:663 msgid "Rebuild" msgstr "重建" -#: libraries/messages.inc.php:733 server_status.php:394 +#: libraries/messages.inc.php:729 server_status.php:394 msgid "Received" msgstr "已接收" -#: libraries/messages.inc.php:734 pmd_pdf.php:89 +#: libraries/messages.inc.php:730 pmd_pdf.php:89 msgid "recommended" msgstr "推荐" -#: libraries/messages.inc.php:736 tbl_operations.php:702 +#: libraries/messages.inc.php:732 tbl_operations.php:702 msgid "Check referential integrity:" msgstr "检查引用完整性:" -#: libraries/messages.inc.php:740 pdf_schema.php:1032 pdf_schema.php:1141 +#: libraries/messages.inc.php:736 pdf_schema.php:1032 pdf_schema.php:1141 msgid "Relational schema" msgstr "关系大纲" -#: libraries/messages.inc.php:744 tbl_relation.php:399 +#: libraries/messages.inc.php:740 tbl_relation.php:399 msgid "Relations" msgstr "关系" -#: libraries/messages.inc.php:745 tbl_structure.php:507 tbl_structure.php:509 +#: libraries/messages.inc.php:741 tbl_structure.php:507 tbl_structure.php:509 msgid "Relation view" msgstr "关系查看" -#: libraries/messages.inc.php:746 server_privileges.php:1246 +#: libraries/messages.inc.php:742 server_privileges.php:1246 msgid "Reloading the privileges" msgstr "重新载入权限" -#: libraries/messages.inc.php:747 navigation.php:66 navigation.php:67 +#: libraries/messages.inc.php:743 navigation.php:66 navigation.php:67 #: navigation.php:70 msgid "Reload navigation frame" msgstr "刷新导航框架" -#: libraries/messages.inc.php:748 pmd_general.php:80 +#: libraries/messages.inc.php:744 pmd_general.php:80 msgid "Reload" msgstr "重新载入" -#: libraries/messages.inc.php:749 libraries/server_synchronize.lib.php:1345 +#: libraries/messages.inc.php:745 libraries/server_synchronize.lib.php:1345 #: libraries/server_synchronize.lib.php:1371 msgid "Remote server" msgstr "远程服务器" -#: libraries/messages.inc.php:750 +#: libraries/messages.inc.php:746 msgid "Remove CRLF characters within fields" msgstr "删除字段中的换行符" -#: libraries/messages.inc.php:751 tbl_operations.php:676 +#: libraries/messages.inc.php:747 tbl_operations.php:676 msgid "Remove partitioning" msgstr "删除分区" -#: libraries/messages.inc.php:752 server_privileges.php:1575 +#: libraries/messages.inc.php:748 server_privileges.php:1575 msgid "Remove selected users" msgstr "删除选中的用户" -#: libraries/messages.inc.php:755 tbl_operations.php:338 +#: libraries/messages.inc.php:751 tbl_operations.php:338 msgid "Rename table to" msgstr "将表改名为" -#: libraries/messages.inc.php:756 view_operations.php:93 +#: libraries/messages.inc.php:752 view_operations.php:93 msgid "Rename view to" msgstr "将视图改名为" -#: libraries/messages.inc.php:757 tbl_operations.php:664 +#: libraries/messages.inc.php:753 tbl_operations.php:664 msgid "Repair" msgstr "修复" -#: libraries/messages.inc.php:759 +#: libraries/messages.inc.php:755 msgid "Replace NULL by" msgstr "将 NULL 替换为" -#: libraries/messages.inc.php:760 +#: libraries/messages.inc.php:756 msgid "Replace table data with file" msgstr "将表的数据用此文件替换" -#: libraries/messages.inc.php:761 server_replication.php:228 +#: libraries/messages.inc.php:757 server_replication.php:228 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "现在,将下列行添加到你的 my.cnf 文件最后,然后重新启动 MySQL 服务器。" -#: libraries/messages.inc.php:762 libraries/replication_gui.lib.php:236 +#: libraries/messages.inc.php:758 libraries/replication_gui.lib.php:236 #: server_replication.php:194 msgid "Add slave replication user" msgstr "添加从复制用户" -#: libraries/messages.inc.php:763 server_replication.php:74 +#: libraries/messages.inc.php:759 server_replication.php:74 #, php-format msgid "Master server changed succesfully to %s" msgstr "成功修改主服务器为 %s" -#: libraries/messages.inc.php:764 server_replication.php:182 +#: libraries/messages.inc.php:760 server_replication.php:182 msgid "This server is configured as master in a replication process." msgstr "此服务器已被配置为一个复制进程中的主服务器。" -#: libraries/messages.inc.php:765 server_replication.php:322 +#: libraries/messages.inc.php:761 server_replication.php:322 msgid "Control slave:" msgstr "控制从服务器:" -#: libraries/messages.inc.php:766 server_replication.php:65 +#: libraries/messages.inc.php:762 server_replication.php:65 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "无法读取主服务器日志。主服务器的权限设置可能有问题。" -#: libraries/messages.inc.php:767 server_replication.php:58 +#: libraries/messages.inc.php:763 server_replication.php:58 #, php-format msgid "Unable to connect to master %s." msgstr "无法连接到主服务器 %s 。" -#: libraries/messages.inc.php:768 server_replication.php:221 +#: libraries/messages.inc.php:764 server_replication.php:221 msgid "Replicate all databases; Ignore:" msgstr "复制所有数据库,除了:" -#: libraries/messages.inc.php:769 server_replication.php:222 +#: libraries/messages.inc.php:765 server_replication.php:222 msgid "Ignore all databases; Replicate:" msgstr "仅复制:" -#: libraries/messages.inc.php:770 server_replication.php:218 +#: libraries/messages.inc.php:766 server_replication.php:218 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -4764,16 +4764,16 @@ msgstr "" "此服务器尚未配置为一个复制进程中的主服务器。你可以选择复制所有但忽略某些数据" "库 (当你想复制大多数数据库时很有用) 或者仅复制某些数据库。请选择模式:" -#: libraries/messages.inc.php:771 server_replication.php:217 +#: libraries/messages.inc.php:767 server_replication.php:217 msgid "Master configuration" msgstr "主服务器配置" -#: libraries/messages.inc.php:772 server_replication.php:181 +#: libraries/messages.inc.php:768 server_replication.php:181 #: server_replication.php:209 msgid "Master replication" msgstr "主复制" -#: libraries/messages.inc.php:774 server_replication.php:230 +#: libraries/messages.inc.php:770 server_replication.php:230 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " @@ -4782,11 +4782,11 @@ msgstr "" "当 MySQL 服务器重新启动后,请点击 执行 按钮。你应该看见一条提示信息说此服务器" "已经被配置为主服务器" -#: libraries/messages.inc.php:775 server_replication.php:225 +#: libraries/messages.inc.php:771 server_replication.php:225 msgid "Please select databases:" msgstr "请选择数据库:" -#: libraries/messages.inc.php:776 server_replication.php:210 +#: libraries/messages.inc.php:772 server_replication.php:210 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -4795,53 +4795,53 @@ msgstr "" "此服务器尚未配置为一个复制进程中的主服务器。你想现在配置" "吗?" -#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:188 +#: libraries/messages.inc.php:773 libraries/replication_gui.lib.php:188 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "仅通过 --report-host=主机名 参数启动的从服务器可见。" -#: libraries/messages.inc.php:778 server_replication.php:187 +#: libraries/messages.inc.php:774 server_replication.php:187 msgid "Show connected slaves" msgstr "查看已连接的从服务器" -#: libraries/messages.inc.php:779 libraries/messages.inc.php:885 +#: libraries/messages.inc.php:775 libraries/messages.inc.php:881 #: server_replication.php:184 server_status.php:281 msgid "Show master status" msgstr "查看主服务器状态" -#: libraries/messages.inc.php:780 server_replication.php:334 +#: libraries/messages.inc.php:776 server_replication.php:334 msgid "Skipping error(s) might lead into unsynchronized master and slave!" msgstr "忽略错误可能导致主从服务器间不同步!" -#: libraries/messages.inc.php:781 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:51 #: server_replication.php:347 msgid "Change or reconfigure master server" msgstr "修改或重新配置主服务器" -#: libraries/messages.inc.php:782 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:778 libraries/replication_gui.lib.php:51 msgid "Slave configuration" msgstr "从服务器配置" -#: libraries/messages.inc.php:783 server_replication.php:305 +#: libraries/messages.inc.php:779 server_replication.php:305 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "服务器已被配置为一个复制进程中的从服务器。你是否要:" -#: libraries/messages.inc.php:784 server_replication.php:332 +#: libraries/messages.inc.php:780 server_replication.php:332 msgid "Error management:" msgstr "错误管理:" -#: libraries/messages.inc.php:785 server_replication.php:328 +#: libraries/messages.inc.php:781 server_replication.php:328 #, php-format msgid "IO Thread %s only" msgstr "仅%s IO 线程" -#: libraries/messages.inc.php:786 server_replication.php:296 +#: libraries/messages.inc.php:782 server_replication.php:296 msgid "Slave IO Thread not running!" msgstr "从 IO 线程未启动!" -#: libraries/messages.inc.php:787 server_replication.php:355 +#: libraries/messages.inc.php:783 server_replication.php:355 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -4850,40 +4850,40 @@ msgstr "" "此服务器尚未配置为一个复制进程中的从服务器。你想现在配置" "吗?" -#: libraries/messages.inc.php:788 server_replication.php:326 +#: libraries/messages.inc.php:784 server_replication.php:326 msgid "Reset slave" msgstr "重置从服务器" -#: libraries/messages.inc.php:789 server_replication.php:308 +#: libraries/messages.inc.php:785 server_replication.php:308 msgid "See slave status table" msgstr "查看从服务器状态" -#: libraries/messages.inc.php:790 server_replication.php:336 +#: libraries/messages.inc.php:786 server_replication.php:336 msgid "Skip current error" msgstr "忽略当前错误" -#: libraries/messages.inc.php:791 server_replication.php:340 +#: libraries/messages.inc.php:787 server_replication.php:340 msgid "errors." msgstr "个错误。" -#: libraries/messages.inc.php:792 server_replication.php:337 +#: libraries/messages.inc.php:788 server_replication.php:337 msgid "Skip next" msgstr "忽略下" -#: libraries/messages.inc.php:793 server_replication.php:248 +#: libraries/messages.inc.php:789 server_replication.php:248 msgid "Slave replication" msgstr "从复制" -#: libraries/messages.inc.php:794 server_replication.php:293 +#: libraries/messages.inc.php:790 server_replication.php:293 msgid "Slave SQL Thread not running!" msgstr "从 SQL 线程未启动!" -#: libraries/messages.inc.php:795 server_replication.php:327 +#: libraries/messages.inc.php:791 server_replication.php:327 #, php-format msgid "SQL Thread %s only" msgstr "仅%s SQL 线程" -#: libraries/messages.inc.php:796 +#: libraries/messages.inc.php:792 #, php-format msgid "" "This MySQL server works as %s in replication process. For further " @@ -4893,168 +4893,168 @@ msgstr "" "此 MySQL 服务器运行于 %s 复制 进程。要获得更多关于此服务器的复制状态," "请浏览 复制状态信息." -#: libraries/messages.inc.php:797 +#: libraries/messages.inc.php:793 msgid "Master status" msgstr "主服务器状态" -#: libraries/messages.inc.php:798 server_status.php:721 +#: libraries/messages.inc.php:794 server_status.php:721 msgid "Replication status" msgstr "复制状态" -#: libraries/messages.inc.php:799 +#: libraries/messages.inc.php:795 msgid "Slave status" msgstr "从服务器状态" -#: libraries/messages.inc.php:800 server_replication.php:311 +#: libraries/messages.inc.php:796 server_replication.php:311 msgid "Synchronize databases with master" msgstr "根据主服务器同步数据库" -#: libraries/messages.inc.php:801 server_replication.php:71 +#: libraries/messages.inc.php:797 server_replication.php:71 msgid "Unable to change master" msgstr "无法修改主服务器" -#: libraries/messages.inc.php:802 server_replication.php:51 +#: libraries/messages.inc.php:798 server_replication.php:51 msgid "Unknown error" msgstr "未知错误" -#: libraries/messages.inc.php:803 main.php:163 pdf_pages.php:344 +#: libraries/messages.inc.php:799 main.php:163 pdf_pages.php:344 #: setup/lib/FormDisplay.tpl.php:216 tbl_change.php:1175 msgid "Reset" msgstr "重置" -#: libraries/messages.inc.php:804 server_privileges.php:591 +#: libraries/messages.inc.php:800 server_privileges.php:591 msgid "Resource limits" msgstr "资源限制" -#: libraries/messages.inc.php:805 tbl_change.php:1209 +#: libraries/messages.inc.php:801 tbl_change.php:1209 #, php-format msgid "Restart insertion with %s rows" msgstr "重新进行插入操作,共 %s 行" -#: libraries/messages.inc.php:807 server_privileges.php:1578 +#: libraries/messages.inc.php:803 server_privileges.php:1578 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "撤销用户所有权限,然后删除用户。" -#: libraries/messages.inc.php:808 server_privileges.php:1176 +#: libraries/messages.inc.php:804 server_privileges.php:1176 #, php-format msgid "You have revoked the privileges for %s" msgstr "您已撤销 %s 的权限" -#: libraries/messages.inc.php:809 server_privileges.php:1333 +#: libraries/messages.inc.php:805 server_privileges.php:1333 msgid "Revoke" msgstr "撤销" -#: libraries/messages.inc.php:810 libraries/mysql_charsets.lib.php:280 +#: libraries/messages.inc.php:806 libraries/mysql_charsets.lib.php:280 msgid "Romanian" msgstr "罗马尼亚语" -#: libraries/messages.inc.php:813 tbl_printview.php:404 tbl_structure.php:786 +#: libraries/messages.inc.php:809 tbl_printview.php:404 tbl_structure.php:786 msgid "Row length" msgstr "行长度" -#: libraries/messages.inc.php:815 tbl_printview.php:414 tbl_structure.php:794 +#: libraries/messages.inc.php:811 tbl_printview.php:414 tbl_structure.php:794 msgid " Row size " msgstr " 行大小 " -#: libraries/messages.inc.php:821 tbl_printview.php:366 tbl_structure.php:726 +#: libraries/messages.inc.php:817 tbl_printview.php:366 tbl_structure.php:726 msgid "Row Statistics" msgstr "行统计" -#: libraries/messages.inc.php:822 +#: libraries/messages.inc.php:818 #, php-format msgid "running on %s" msgstr "运行于 %s" -#: libraries/messages.inc.php:824 libraries/sql_query_form.lib.php:223 +#: libraries/messages.inc.php:820 libraries/sql_query_form.lib.php:223 #, php-format msgid "Run SQL query/queries on server %s" msgstr "在服务器 %s 运行 SQL 查询" -#: libraries/messages.inc.php:825 libraries/sql_query_form.lib.php:240 +#: libraries/messages.inc.php:821 libraries/sql_query_form.lib.php:240 #: libraries/sql_query_form.lib.php:265 #, php-format msgid "Run SQL query/queries on database %s" msgstr "在数据库 %s 运行 SQL 查询" -#: libraries/messages.inc.php:826 libraries/mysql_charsets.lib.php:337 +#: libraries/messages.inc.php:822 libraries/mysql_charsets.lib.php:337 msgid "Russian" msgstr "俄语" -#: libraries/messages.inc.php:829 pmd_general.php:68 +#: libraries/messages.inc.php:825 pmd_general.php:68 msgid "Save position" msgstr "保存位置" -#: libraries/messages.inc.php:830 libraries/tbl_properties.inc.php:776 +#: libraries/messages.inc.php:826 libraries/tbl_properties.inc.php:776 #: pdf_pages.php:484 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:214 setup/lib/FormDisplay.tpl.php:215 #: tbl_change.php:1126 tbl_indexes.php:248 tbl_relation.php:566 msgid "Save" msgstr "保存" -#: libraries/messages.inc.php:831 +#: libraries/messages.inc.php:827 msgid "The scale factor is too small to fit the schema on one page" msgstr "比例因子太小,无法在一页中显示大纲" -#: libraries/messages.inc.php:843 main.php:298 +#: libraries/messages.inc.php:839 main.php:298 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "配置文件现在需要一个短语密码。" -#: libraries/messages.inc.php:844 navigation.php:353 navigation.php:516 +#: libraries/messages.inc.php:840 navigation.php:353 navigation.php:516 msgid "Please select a database" msgstr "请选择数据库" -#: libraries/messages.inc.php:846 server_binlog.php:120 +#: libraries/messages.inc.php:842 server_binlog.php:120 msgid "Select binary log to view" msgstr "选择要查看的二进制日志" -#: libraries/messages.inc.php:847 tbl_select.php:270 +#: libraries/messages.inc.php:843 tbl_select.php:270 msgid "Select fields (at least one):" msgstr "至少选择一个字段:" -#: libraries/messages.inc.php:851 pdf_pages.php:320 +#: libraries/messages.inc.php:847 pdf_pages.php:320 msgid "Select Tables" msgstr "选择表" -#: libraries/messages.inc.php:853 server_status.php:404 +#: libraries/messages.inc.php:849 server_status.php:404 msgid "Sent" msgstr "已发送" -#: libraries/messages.inc.php:857 libraries/select_server.lib.php:45 +#: libraries/messages.inc.php:853 libraries/select_server.lib.php:45 #: setup/frames/index.inc.php:97 setup/lib/messages.inc.php:115 msgid "Servers" msgstr "服务器" -#: libraries/messages.inc.php:858 server_status.php:255 +#: libraries/messages.inc.php:854 server_status.php:255 msgid "Delayed inserts" msgstr "延迟插入" -#: libraries/messages.inc.php:859 server_status.php:46 +#: libraries/messages.inc.php:855 server_status.php:46 msgid "Runtime Information" msgstr "运行信息" -#: libraries/messages.inc.php:860 server_status.php:350 +#: libraries/messages.inc.php:856 server_status.php:350 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "此 MySQL 服务器已经运行了 %s,启动时间为 %s。" -#: libraries/messages.inc.php:861 libraries/server_links.inc.php:53 +#: libraries/messages.inc.php:857 libraries/server_links.inc.php:53 #: server_engines.php:112 server_engines.php:116 server_status.php:304 #: test/theme.php:105 msgid "Variables" msgstr "变量" -#: libraries/messages.inc.php:862 server_status.php:383 +#: libraries/messages.inc.php:858 server_status.php:383 msgid "" "Server traffic: These tables show the network traffic statistics of " "this MySQL server since its startup." msgstr "" "服务器流量:这些表显示了此 MySQL 服务器自启动以来的网络流量统计。" -#: libraries/messages.inc.php:863 server_variables.php:35 +#: libraries/messages.inc.php:859 server_variables.php:35 msgid "Server variables and settings" msgstr "服务器变量和设置" -#: libraries/messages.inc.php:865 main.php:290 +#: libraries/messages.inc.php:861 main.php:290 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -5066,18 +5066,18 @@ msgstr "" "phpMyAdmin 中设置的 Cookies 有效期,因此您的登录会话有效期将会比您在 " "phpMyAdmin 中设置的时间要更短。" -#: libraries/messages.inc.php:866 +#: libraries/messages.inc.php:862 msgid "" "Cannot start session without errors, please check errors given in your PHP " "and/or webserver log file and configure your PHP installation properly." msgstr "" "无法在发生错误时创建会话,请检查 PHP 或网站服务器日志,并正确配置 PHP 安装。" -#: libraries/messages.inc.php:867 server_variables.php:55 +#: libraries/messages.inc.php:863 server_variables.php:55 msgid "Session value" msgstr "会话值" -#: libraries/messages.inc.php:868 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:864 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 " @@ -5088,44 +5088,44 @@ msgstr "" "要在值中输入反斜线(“\\”)或者单引号(“'”),请在前面加上反斜线(如 '\\\\xyz' 或 " "'a\\'b')。" -#: libraries/messages.inc.php:876 server_binlog.php:192 server_binlog.php:195 +#: libraries/messages.inc.php:872 server_binlog.php:192 server_binlog.php:195 #: server_processlist.php:49 server_processlist.php:51 msgid "Show Full Queries" msgstr "显示完整查询" -#: libraries/messages.inc.php:878 pmd_general.php:64 +#: libraries/messages.inc.php:874 pmd_general.php:64 msgid "Show/Hide left menu" msgstr "显示/隐藏左侧菜单" -#: libraries/messages.inc.php:880 sql.php:513 +#: libraries/messages.inc.php:876 sql.php:513 msgid "Showing as PHP code" msgstr "显示为 PHP 代码" -#: libraries/messages.inc.php:882 sql.php:516 tbl_replace.php:360 +#: libraries/messages.inc.php:878 sql.php:516 tbl_replace.php:360 msgid "Showing SQL query" msgstr "显示 SQL 查询" -#: libraries/messages.inc.php:883 tbl_change.php:1132 +#: libraries/messages.inc.php:879 tbl_change.php:1132 msgid "Show insert query" msgstr "显示插入语句" -#: libraries/messages.inc.php:886 server_status.php:273 +#: libraries/messages.inc.php:882 server_status.php:273 msgid "Show open tables" msgstr "显示打开的表" -#: libraries/messages.inc.php:887 main.php:219 +#: libraries/messages.inc.php:883 main.php:219 msgid "Show PHP information" msgstr "显示 PHP 信息" -#: libraries/messages.inc.php:889 server_status.php:278 +#: libraries/messages.inc.php:885 server_status.php:278 msgid "Show slave hosts" msgstr "显示从服务器" -#: libraries/messages.inc.php:890 server_status.php:284 +#: libraries/messages.inc.php:886 server_status.php:284 msgid "Show slave status" msgstr "显示从服务器状态" -#: libraries/messages.inc.php:891 +#: libraries/messages.inc.php:887 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -5134,11 +5134,11 @@ msgstr "" "因事务使用的临时二进制日志缓存超出 binlog_cache_size 的设置而使用临时文件存储" "的数量。" -#: libraries/messages.inc.php:892 +#: libraries/messages.inc.php:888 msgid "The number of transactions that used the temporary binary log cache." msgstr "事务所用的临时二进制日志缓存的数量。" -#: libraries/messages.inc.php:893 +#: libraries/messages.inc.php:889 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -5148,17 +5148,17 @@ msgstr "" "服务器执行语句时自动在磁盘上创建的临时表的数量。如果 Created_tmp_disk_tables " "很大,你可以增加 tmp_table_size 的值,让服务器使用内存来存储临时表而非磁盘。" -#: libraries/messages.inc.php:894 +#: libraries/messages.inc.php:890 msgid "How many temporary files mysqld has created." msgstr "mysqld 已创建的临时文件的数量。" -#: libraries/messages.inc.php:895 +#: libraries/messages.inc.php:891 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "服务器执行语句时自动在内存中创建的临时表的数量。" -#: libraries/messages.inc.php:896 +#: libraries/messages.inc.php:892 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -5166,29 +5166,29 @@ msgstr "" "发生错误的延迟插入 (INSERT DELAYED) 行数 (可能是因为在唯一字段中存在重复" "值) 。" -#: libraries/messages.inc.php:897 +#: libraries/messages.inc.php:893 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "正在使用的延迟插入处理线程的数量。每张使用延迟插入的表都有自己的线程。" -#: libraries/messages.inc.php:898 +#: libraries/messages.inc.php:894 msgid "The number of INSERT DELAYED rows written." msgstr "延迟插入已写入的行数。" -#: libraries/messages.inc.php:899 +#: libraries/messages.inc.php:895 msgid "The number of executed FLUSH statements." msgstr "已执行的强制更新 (FLUSH) 语句数。" -#: libraries/messages.inc.php:900 +#: libraries/messages.inc.php:896 msgid "The number of internal COMMIT statements." msgstr "已执行的内部提交 (COMMIT) 语句数。" -#: libraries/messages.inc.php:901 +#: libraries/messages.inc.php:897 msgid "The number of times a row was deleted from a table." msgstr "从表中删除行的次数。" -#: libraries/messages.inc.php:902 +#: libraries/messages.inc.php:898 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -5197,7 +5197,7 @@ msgstr "" "如果知道一张表的名字,MySQL 服务器可以询问 NDB 集群存储引擎,这被称为“发现”。" "Handler_discovery 表明了一张表被发现的次数。" -#: libraries/messages.inc.php:903 +#: libraries/messages.inc.php:899 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -5206,14 +5206,14 @@ msgstr "" "读取一个索引入口点的次数。如果该值很大,说明你的服务器执行了很多完整索引扫" "描。例如,假设字段 col1 已经建立了索引,然后执行 SELECT col1 FROM foo 。" -#: libraries/messages.inc.php:904 +#: libraries/messages.inc.php:900 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" "根据索引读取行的请求数。如果该值很大,说明你的查询和表都建立了很好的索引。" -#: libraries/messages.inc.php:905 +#: libraries/messages.inc.php:901 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -5222,7 +5222,7 @@ msgstr "" "根据索引顺序读取下一行的请求数。如果你在查询一个已索引的字段且限制了范围,或" "进行完整表扫描,该值将会不断增长。" -#: libraries/messages.inc.php:906 +#: libraries/messages.inc.php:902 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -5230,7 +5230,7 @@ msgstr "" "根据索引顺序读取上一行的请求数。这种读取方式通常用于优化带有 ORDER BY ... " "DESC 的查询。" -#: libraries/messages.inc.php:907 +#: libraries/messages.inc.php:903 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -5240,7 +5240,7 @@ msgstr "" "根据固定位置读取行的请求数。如果你执行很多需要排序的查询,该值会很高。你可能" "有很多需要完整表扫描的查询,或者你使用了不正确的索引用来多表查询。" -#: libraries/messages.inc.php:908 +#: libraries/messages.inc.php:904 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -5250,35 +5250,35 @@ msgstr "" "从数据文件中读取行的请求数。如果你在扫描很多表,该值会很大。通常情况下这意味" "着你的表没有做好索引,或者你的查询语句没有使用好索引字段。" -#: libraries/messages.inc.php:909 +#: libraries/messages.inc.php:905 msgid "The number of internal ROLLBACK statements." msgstr "内部回滚 (ROLLBACK) 语句数。" -#: libraries/messages.inc.php:910 +#: libraries/messages.inc.php:906 msgid "The number of requests to update a row in a table." msgstr "表中更新行的请求数。" -#: libraries/messages.inc.php:911 +#: libraries/messages.inc.php:907 msgid "The number of requests to insert a row in a table." msgstr "表中插入行的请求数。" -#: libraries/messages.inc.php:912 +#: libraries/messages.inc.php:908 msgid "The number of pages containing data (dirty or clean)." msgstr "非空页数 (含脏页) 。" -#: libraries/messages.inc.php:913 +#: libraries/messages.inc.php:909 msgid "The number of pages currently dirty." msgstr "当前脏页数。" -#: libraries/messages.inc.php:914 +#: libraries/messages.inc.php:910 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "请求更新的缓冲池页数。" -#: libraries/messages.inc.php:915 +#: libraries/messages.inc.php:911 msgid "The number of free pages." msgstr "空闲页数。" -#: libraries/messages.inc.php:916 +#: libraries/messages.inc.php:912 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -5287,7 +5287,7 @@ msgstr "" "InnoDB 缓冲池中锁定页的数量。这些页是正在被读取或写入的,或者是因其他原因不能" "被刷新或删除的。" -#: libraries/messages.inc.php:917 +#: libraries/messages.inc.php:913 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -5298,11 +5298,11 @@ msgstr "" "公式计算: Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data 。" -#: libraries/messages.inc.php:918 +#: libraries/messages.inc.php:914 msgid "Total size of buffer pool, in pages." msgstr "缓冲池总大小 (单位:页)。" -#: libraries/messages.inc.php:919 +#: libraries/messages.inc.php:915 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -5310,24 +5310,24 @@ msgstr "" "InnoDB 初始化的“随机”预读数。这通常会在对一张表进行大范围的随机排序查询时发" "生。" -#: libraries/messages.inc.php:920 +#: libraries/messages.inc.php:916 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" "InnoDB 初始化的顺序预读数。这会在 InnoDB 执行一个顺序完整表扫描时发生。" -#: libraries/messages.inc.php:921 +#: libraries/messages.inc.php:917 msgid "The number of logical read requests InnoDB has done." msgstr "InnoDB 完成的逻辑读请求数。" -#: libraries/messages.inc.php:922 +#: libraries/messages.inc.php:918 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "InnoDB 进行逻辑读取时无法从缓冲池中获取而执行单页读取的次数。" -#: libraries/messages.inc.php:923 +#: libraries/messages.inc.php:919 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -5339,85 +5339,85 @@ msgstr "" "必要先等待页被刷新。该计数器统计了这种等待的数量。如果缓冲池大小设置正确,这" "个值应该会很小。" -#: libraries/messages.inc.php:924 +#: libraries/messages.inc.php:920 msgid "The number writes done to the InnoDB buffer pool." msgstr "写入 InnoDB 缓冲池的次数。" -#: libraries/messages.inc.php:925 +#: libraries/messages.inc.php:921 msgid "The number of fsync() operations so far." msgstr "fsync() 总操作的次数。" -#: libraries/messages.inc.php:926 +#: libraries/messages.inc.php:922 msgid "The current number of pending fsync() operations." msgstr "当前挂起 fsync() 操作的数量。" -#: libraries/messages.inc.php:927 +#: libraries/messages.inc.php:923 msgid "The current number of pending reads." msgstr "当前挂起的读操作数。" -#: libraries/messages.inc.php:928 +#: libraries/messages.inc.php:924 msgid "The current number of pending writes." msgstr "当前挂起的写操作数。" -#: libraries/messages.inc.php:929 +#: libraries/messages.inc.php:925 msgid "The amount of data read so far, in bytes." msgstr "读取的总数据量 (单位:字节)。" -#: libraries/messages.inc.php:930 +#: libraries/messages.inc.php:926 msgid "The total number of data reads." msgstr "数据读取总数。" -#: libraries/messages.inc.php:931 +#: libraries/messages.inc.php:927 msgid "The total number of data writes." msgstr "数据写入总数。" -#: libraries/messages.inc.php:932 +#: libraries/messages.inc.php:928 msgid "The amount of data written so far, in bytes." msgstr "写入的总数据量 (单位:字节)。" -#: libraries/messages.inc.php:933 +#: libraries/messages.inc.php:929 msgid "The number of pages that have been written for doublewrite operations." msgstr "以双写入操作写入的页数。" -#: libraries/messages.inc.php:934 +#: libraries/messages.inc.php:930 msgid "The number of doublewrite operations that have been performed." msgstr "已经执行的双写入次数。" -#: libraries/messages.inc.php:935 +#: libraries/messages.inc.php:931 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "因日志缓存太小而必须等待其被写入所造成的等待数。" -#: libraries/messages.inc.php:936 +#: libraries/messages.inc.php:932 msgid "The number of log write requests." msgstr "日志写入请求数。" -#: libraries/messages.inc.php:937 +#: libraries/messages.inc.php:933 msgid "The number of physical writes to the log file." msgstr "日志物理写入次数。" -#: libraries/messages.inc.php:938 +#: libraries/messages.inc.php:934 msgid "The number of fsync() writes done to the log file." msgstr "使用 fsync() 写入日志文件的次数。" -#: libraries/messages.inc.php:939 +#: libraries/messages.inc.php:935 msgid "The number of pending log file fsyncs." msgstr "当前挂起的 fsync 日志文件数。" -#: libraries/messages.inc.php:940 +#: libraries/messages.inc.php:936 msgid "Pending log file writes." msgstr "当前挂起的日志写入数。" -#: libraries/messages.inc.php:941 +#: libraries/messages.inc.php:937 msgid "The number of bytes written to the log file." msgstr "写入日志文件的字节数。" -#: libraries/messages.inc.php:942 +#: libraries/messages.inc.php:938 msgid "The number of pages created." msgstr "创建的页数。" -#: libraries/messages.inc.php:943 +#: libraries/messages.inc.php:939 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -5425,75 +5425,75 @@ msgstr "" "编译的 InnoDB 页大小 (默认 16KB)。许多值都以页为单位进行统计,页大小可以很方" "便地将这些值转化为字节数。" -#: libraries/messages.inc.php:944 +#: libraries/messages.inc.php:940 msgid "The number of pages read." msgstr "读取的页数。" -#: libraries/messages.inc.php:945 +#: libraries/messages.inc.php:941 msgid "The number of pages written." msgstr "写入的页数。" -#: libraries/messages.inc.php:946 +#: libraries/messages.inc.php:942 msgid "The number of row locks currently being waited for." msgstr "正在等待行锁的数量。" -#: libraries/messages.inc.php:947 +#: libraries/messages.inc.php:943 msgid "The average time to acquire a row lock, in milliseconds." msgstr "等待获得行锁的平均时间 (单位:毫秒)。" -#: libraries/messages.inc.php:948 +#: libraries/messages.inc.php:944 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "等待获得行锁的总时间 (单位:毫秒)。" -#: libraries/messages.inc.php:949 +#: libraries/messages.inc.php:945 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "等待获得行锁的最大时间 (单位:毫秒)。" -#: libraries/messages.inc.php:950 +#: libraries/messages.inc.php:946 msgid "The number of times a row lock had to be waited for." msgstr "等待行锁的次数。" -#: libraries/messages.inc.php:951 +#: libraries/messages.inc.php:947 msgid "The number of rows deleted from InnoDB tables." msgstr "从 InnoDB 表中删除的行数。" -#: libraries/messages.inc.php:952 +#: libraries/messages.inc.php:948 msgid "The number of rows inserted in InnoDB tables." msgstr "插入到 InnoDB 表中的行数。" -#: libraries/messages.inc.php:953 +#: libraries/messages.inc.php:949 msgid "The number of rows read from InnoDB tables." msgstr "从 InnoDB 表中读取的行数。" -#: libraries/messages.inc.php:954 +#: libraries/messages.inc.php:950 msgid "The number of rows updated in InnoDB tables." msgstr "InnoDB 中更新的行数。" -#: libraries/messages.inc.php:955 +#: libraries/messages.inc.php:951 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" "键缓存中还没有被写入到磁盘的键块数。该值过去名为 Not_flushed_key_blocks 。" -#: libraries/messages.inc.php:956 +#: libraries/messages.inc.php:952 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "键缓存中未使用的块数。你可以根据这个值判断当前使用了多少键缓存。" -#: libraries/messages.inc.php:957 +#: libraries/messages.inc.php:953 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "键缓存中已经使用的块数。该值指示在某个时刻使用了最多块数的数量。" -#: libraries/messages.inc.php:958 +#: libraries/messages.inc.php:954 msgid "The number of requests to read a key block from the cache." msgstr "从缓存中读取键块的请求次数。" -#: libraries/messages.inc.php:959 +#: libraries/messages.inc.php:955 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -5502,15 +5502,15 @@ msgstr "" "从磁盘中物理读取键块的次数。如果 Key_reads 很大,则说明您的 key_buffer_size " "可能设置得太小了。缓存缺失率可以由 Key_reads/Key_read_requests 计算得出。" -#: libraries/messages.inc.php:960 +#: libraries/messages.inc.php:956 msgid "The number of requests to write a key block to the cache." msgstr "将一个键块写入缓存的请求数。" -#: libraries/messages.inc.php:961 +#: libraries/messages.inc.php:957 msgid "The number of physical writes of a key block to disk." msgstr "将键块物理写入到磁盘的次数。" -#: libraries/messages.inc.php:962 +#: libraries/messages.inc.php:958 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -5519,45 +5519,45 @@ msgstr "" "最后编译的查询的总开销由查询优化器计算得出,可用于比较使用不同的查询语句进行" "相同的查询时的效率差异。默认值0表示还没有查询被编译。" -#: libraries/messages.inc.php:963 +#: libraries/messages.inc.php:959 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "等待写入延迟插入队列的行数。" -#: libraries/messages.inc.php:964 +#: libraries/messages.inc.php:960 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "已经打开的表个数。如果该值很大,则说明表缓冲大小可能设置过小。" -#: libraries/messages.inc.php:965 +#: libraries/messages.inc.php:961 msgid "The number of files that are open." msgstr "打开的文件个数。" -#: libraries/messages.inc.php:966 +#: libraries/messages.inc.php:962 msgid "The number of streams that are open (used mainly for logging)." msgstr "打开的流个数 (主要用于日志记录)。" -#: libraries/messages.inc.php:967 +#: libraries/messages.inc.php:963 msgid "The number of tables that are open." msgstr "打开的数据表个数。" -#: libraries/messages.inc.php:968 +#: libraries/messages.inc.php:964 msgid "The number of free memory blocks in query cache." msgstr "查询缓存中空闲的内存块数。" -#: libraries/messages.inc.php:969 +#: libraries/messages.inc.php:965 msgid "The amount of free memory for query cache." msgstr "查询缓存中空闲的内存总数。" -#: libraries/messages.inc.php:970 +#: libraries/messages.inc.php:966 msgid "The number of cache hits." msgstr "缓存命中数。" -#: libraries/messages.inc.php:971 +#: libraries/messages.inc.php:967 msgid "The number of queries added to the cache." msgstr "加入到缓存的查询数。" -#: libraries/messages.inc.php:972 +#: libraries/messages.inc.php:968 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -5567,7 +5567,7 @@ msgstr "" "为缓存新的查询而被删除的已缓存查询的个数,由最近最少使用算法 (LRU) 确定应删除" "哪个已缓存的查询。该信息可帮助您调整查询缓存大小。" -#: libraries/messages.inc.php:973 +#: libraries/messages.inc.php:969 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -5575,24 +5575,24 @@ msgstr "" "未缓存的查询数 (包括不能被缓存,或因为 query_cache_type 的设置而没有被缓存的" "查询)。" -#: libraries/messages.inc.php:974 +#: libraries/messages.inc.php:970 msgid "The number of queries registered in the cache." msgstr "在缓存中注册的查询数。" -#: libraries/messages.inc.php:975 +#: libraries/messages.inc.php:971 msgid "The total number of blocks in the query cache." msgstr "查询缓存中的总块数。" -#: libraries/messages.inc.php:976 +#: libraries/messages.inc.php:972 msgctxt "$strShowStatusReset" msgid "Reset" msgstr "重设" -#: libraries/messages.inc.php:977 +#: libraries/messages.inc.php:973 msgid "The status of failsafe replication (not yet implemented)." msgstr "失败保护器的状态 (尚未应用)。" -#: libraries/messages.inc.php:978 +#: libraries/messages.inc.php:974 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -5600,11 +5600,11 @@ msgstr "" "没有使用索引的多表查询数。如果该值不为0,您应该仔细检查是否已经为表建立了适当" "的索引。" -#: libraries/messages.inc.php:979 +#: libraries/messages.inc.php:975 msgid "The number of joins that used a range search on a reference table." msgstr "使用在关联表上使用范围搜索的多表查询的数量。" -#: libraries/messages.inc.php:980 +#: libraries/messages.inc.php:976 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -5612,7 +5612,7 @@ msgstr "" "没有使用索引但在每行之后检查索引使用的多表查询数。(如果该值不为 0,您应该仔细" "检查是否已经为表建立了适当的索引。)" -#: libraries/messages.inc.php:981 +#: libraries/messages.inc.php:977 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -5620,36 +5620,36 @@ msgstr "" "在第一张表上使用范围查询的多表查询数。(即使该值很大,通常也不会有致命的影" "响。)" -#: libraries/messages.inc.php:982 +#: libraries/messages.inc.php:978 msgid "The number of joins that did a full scan of the first table." msgstr "在第一张表上进行了完整表扫描的多表查询数。" -#: libraries/messages.inc.php:983 +#: libraries/messages.inc.php:979 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "当前由从 SQL 线程打开的临时表的数量。" -#: libraries/messages.inc.php:984 +#: libraries/messages.inc.php:980 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "从 SQL 线程总共重试事务复制数。" -#: libraries/messages.inc.php:985 +#: libraries/messages.inc.php:981 msgid "This is ON if this server is a slave that is connected to a master." msgstr "如果该值为 ON,则这台服务器是一台已经连接到主服务器的从服务器。" -#: libraries/messages.inc.php:986 +#: libraries/messages.inc.php:982 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "使用了比 slow_launch_time 更多的时间来启动的线程数量。" -#: libraries/messages.inc.php:987 +#: libraries/messages.inc.php:983 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "使用了比 long_query_time 更多时间的查询数。" -#: libraries/messages.inc.php:988 +#: libraries/messages.inc.php:984 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -5658,23 +5658,23 @@ msgstr "" "排序算法使用归并的次数。如果该值很大,您应该考虑增加系统变量 " "sort_buffer_size 的值。" -#: libraries/messages.inc.php:989 +#: libraries/messages.inc.php:985 msgid "The number of sorts that were done with ranges." msgstr "局部范围完成的排序次数。" -#: libraries/messages.inc.php:990 +#: libraries/messages.inc.php:986 msgid "The number of sorted rows." msgstr "排序的行数。" -#: libraries/messages.inc.php:991 +#: libraries/messages.inc.php:987 msgid "The number of sorts that were done by scanning the table." msgstr "扫描表完成的排序次数。" -#: libraries/messages.inc.php:992 +#: libraries/messages.inc.php:988 msgid "The number of times that a table lock was acquired immediately." msgstr "立即需要锁定表的次数。" -#: libraries/messages.inc.php:993 +#: libraries/messages.inc.php:989 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -5684,7 +5684,7 @@ msgstr "" "无法立即获得锁定表而必须等待的次数。如果该值很高,且您遇到了性能方面的问题," "则应该首先检查您的查询语句,然后使用复制操作来分开表。" -#: libraries/messages.inc.php:994 +#: libraries/messages.inc.php:990 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -5693,11 +5693,11 @@ msgstr "" "线程缓存中线程的数量。缓存命中率可以由 Threads_created/Connections 计算得出。" "如果该值是红色的,则应该增加 thread_cache_size 的值。" -#: libraries/messages.inc.php:995 +#: libraries/messages.inc.php:991 msgid "The number of currently open connections." msgstr "当前打开的连接数。" -#: libraries/messages.inc.php:996 +#: libraries/messages.inc.php:992 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -5708,28 +5708,28 @@ msgstr "" "thread_cache_size 的值 (如果线程状况良好,这么做通常并不会带来显著的性能提" "升)。" -#: libraries/messages.inc.php:997 +#: libraries/messages.inc.php:993 msgid "The number of threads that are not sleeping." msgstr "非睡眠状态的线程数量。" -#: libraries/messages.inc.php:999 tbl_printview.php:75 +#: libraries/messages.inc.php:995 tbl_printview.php:75 msgid "Show tables" msgstr "显示表" -#: libraries/messages.inc.php:1000 libraries/sql_query_form.lib.php:396 +#: libraries/messages.inc.php:996 libraries/sql_query_form.lib.php:396 msgid " Show this query here again " msgstr " 在此再次显示此查询 " -#: libraries/messages.inc.php:1001 libraries/mysql_charsets.lib.php:217 +#: libraries/messages.inc.php:997 libraries/mysql_charsets.lib.php:217 #: libraries/mysql_charsets.lib.php:342 msgid "Simplified Chinese" msgstr "简体中文" -#: libraries/messages.inc.php:1002 tbl_operations.php:258 +#: libraries/messages.inc.php:998 tbl_operations.php:258 msgid "(singly)" msgstr "(逐一)" -#: libraries/messages.inc.php:1005 libraries/replication_gui.lib.php:52 +#: libraries/messages.inc.php:1001 libraries/replication_gui.lib.php:52 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" @@ -5737,47 +5737,47 @@ msgstr "" "请确保在你的配置文件 (my.cnf) 中具有唯一的服务器标识 (server-id) 。若没有,请" "添加此行到 [mysqld] 一节中:" -#: libraries/messages.inc.php:1006 libraries/mysql_charsets.lib.php:283 +#: libraries/messages.inc.php:1002 libraries/mysql_charsets.lib.php:283 msgid "Slovak" msgstr "斯洛伐克语" -#: libraries/messages.inc.php:1007 libraries/mysql_charsets.lib.php:286 +#: libraries/messages.inc.php:1003 libraries/mysql_charsets.lib.php:286 msgid "Slovenian" msgstr "斯洛文尼亚语" -#: libraries/messages.inc.php:1008 pmd_general.php:95 +#: libraries/messages.inc.php:1004 pmd_general.php:95 msgid "Small/Big All" msgstr "全部收缩/展开" -#: libraries/messages.inc.php:1009 pmd_general.php:91 +#: libraries/messages.inc.php:1005 pmd_general.php:91 msgid "Snap to grid" msgstr "对齐网格" -#: libraries/messages.inc.php:1011 server_synchronize.php:1167 +#: libraries/messages.inc.php:1007 server_synchronize.php:1167 msgid "Socket" msgstr "套接字" -#: libraries/messages.inc.php:1013 server_status.php:259 +#: libraries/messages.inc.php:1009 server_status.php:259 msgid "Sorting" msgstr "排序" -#: libraries/messages.inc.php:1015 tbl_printview.php:310 tbl_structure.php:657 +#: libraries/messages.inc.php:1011 tbl_printview.php:310 tbl_structure.php:657 msgid "Space usage" msgstr "已用空间" -#: libraries/messages.inc.php:1016 libraries/mysql_charsets.lib.php:289 +#: libraries/messages.inc.php:1012 libraries/mysql_charsets.lib.php:289 msgid "Spanish" msgstr "西班牙语" -#: libraries/messages.inc.php:1019 +#: libraries/messages.inc.php:1015 msgid "Export type" msgstr "导出类型" -#: libraries/messages.inc.php:1020 +#: libraries/messages.inc.php:1016 msgid "Export time in UTC" msgstr "以协调世界时 (UTC) 导出时间" -#: libraries/messages.inc.php:1021 libraries/sqlparser.lib.php:173 +#: libraries/messages.inc.php:1017 libraries/sqlparser.lib.php:173 msgid "" "There is a chance that you may have found a bug in the SQL parser. Please " "examine your query closely, and check that the quotes are correct and not " @@ -5796,7 +5796,7 @@ msgstr "" "面执行成功而解析器出错,请将您的 SQL 查询缩减到导致问题的某一条语句,然后和下" "面剪切区中的数据一起提交一个缺陷 (bug) 报告:" -#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:137 +#: libraries/messages.inc.php:1018 libraries/sqlparser.lib.php:137 msgid "" "There seems to be an error in your SQL query. The MySQL server error output " "below, if there is any, may also help you in diagnosing the problem" @@ -5804,32 +5804,32 @@ msgstr "" "您的 SQL 查询可能有错。如果可能的话,以下会列出 MySQL 服务器的错误输出,这可" "能对您解决问题有一定的帮助。" -#: libraries/messages.inc.php:1026 libraries/sqlparser.lib.php:495 +#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:495 msgid "Invalid Identifer" msgstr "无效的标识符" -#: libraries/messages.inc.php:1027 libraries/sqlparser.lib.php:344 +#: libraries/messages.inc.php:1023 libraries/sqlparser.lib.php:344 msgid "Unclosed quote" msgstr "引号不配对" -#: libraries/messages.inc.php:1028 libraries/sqlparser.lib.php:612 +#: libraries/messages.inc.php:1024 libraries/sqlparser.lib.php:612 msgid "Unknown Punctuation String" msgstr "未知的标点符号字符串" -#: libraries/messages.inc.php:1030 server_replication.php:327 +#: libraries/messages.inc.php:1026 server_replication.php:327 #: server_replication.php:328 msgid "Start" msgstr "开始" -#: libraries/messages.inc.php:1033 tbl_printview.php:369 tbl_structure.php:729 +#: libraries/messages.inc.php:1029 tbl_printview.php:369 tbl_structure.php:729 msgid "Statements" msgstr "说明" -#: libraries/messages.inc.php:1034 tbl_printview.php:380 tbl_structure.php:741 +#: libraries/messages.inc.php:1030 tbl_printview.php:380 tbl_structure.php:741 msgid "static" msgstr "静态" -#: libraries/messages.inc.php:1035 server_status.php:388 +#: libraries/messages.inc.php:1031 server_status.php:388 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -5837,202 +5837,202 @@ msgstr "" "在高负载的服务器上,字节计数器可能会溢出,因此由 MySQL 返回的统计值可能会不正" "确" -#: libraries/messages.inc.php:1038 server_replication.php:327 +#: libraries/messages.inc.php:1034 server_replication.php:327 #: server_replication.php:328 msgid "Stop" msgstr "停止" -#: libraries/messages.inc.php:1039 server_engines.php:49 +#: libraries/messages.inc.php:1035 server_engines.php:49 msgid "Storage Engines" msgstr "存储引擎" -#: libraries/messages.inc.php:1040 libraries/tbl_properties.inc.php:726 +#: libraries/messages.inc.php:1036 libraries/tbl_properties.inc.php:726 #: server_engines.php:58 tbl_operations.php:353 msgid "Storage Engine" msgstr "存储引擎" -#: libraries/messages.inc.php:1042 +#: libraries/messages.inc.php:1038 msgid "CSV for MS Excel" msgstr "MS Excel 的 CSV 格式" -#: libraries/messages.inc.php:1044 tbl_structure.php:516 tbl_structure.php:518 +#: libraries/messages.inc.php:1040 tbl_structure.php:516 tbl_structure.php:518 msgid "Propose table structure" msgstr "规划表结构" -#: libraries/messages.inc.php:1045 server_synchronize.php:424 +#: libraries/messages.inc.php:1041 server_synchronize.php:424 #: server_synchronize.php:867 msgid "Structure Difference" msgstr "结构差异" -#: libraries/messages.inc.php:1049 server_synchronize.php:265 +#: libraries/messages.inc.php:1045 server_synchronize.php:265 msgid "Structure Synchronization" msgstr "结构同步" -#: libraries/messages.inc.php:1050 libraries/sql_query_form.lib.php:462 +#: libraries/messages.inc.php:1046 libraries/sql_query_form.lib.php:462 msgid "Submit" msgstr "提交" -#: libraries/messages.inc.php:1052 main.php:358 +#: libraries/messages.inc.php:1048 main.php:358 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " "issues." msgstr "服务器上运行了 Suhosin。请先查看%s文档%s中是否有类似的情况。" -#: libraries/messages.inc.php:1054 libraries/mysql_charsets.lib.php:295 +#: libraries/messages.inc.php:1050 libraries/mysql_charsets.lib.php:295 #: libraries/mysql_charsets.lib.php:392 msgid "Swedish" msgstr "瑞典语" -#: libraries/messages.inc.php:1060 tbl_operations.php:556 +#: libraries/messages.inc.php:1056 tbl_operations.php:556 msgid "Switch to copied table" msgstr "切换到复制的数据表" -#: libraries/messages.inc.php:1061 server_synchronize.php:1213 +#: libraries/messages.inc.php:1057 server_synchronize.php:1213 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." msgstr "目标数据库将完全根据源数据库同步。源数据库将保持不变。" -#: libraries/messages.inc.php:1062 server_synchronize.php:451 +#: libraries/messages.inc.php:1058 server_synchronize.php:451 #: server_synchronize.php:896 msgid "Synchronize Databases" msgstr "同步数据库" -#: libraries/messages.inc.php:1063 libraries/server_links.inc.php:92 +#: libraries/messages.inc.php:1059 libraries/server_links.inc.php:92 #: server_synchronize.php:1092 server_synchronize.php:1100 msgid "Synchronize" msgstr "同步" -#: libraries/messages.inc.php:1065 server_synchronize.php:430 +#: libraries/messages.inc.php:1061 server_synchronize.php:430 #: server_synchronize.php:873 msgid "Add column(s)" msgstr "增加字段" -#: libraries/messages.inc.php:1066 tbl_create.php:62 +#: libraries/messages.inc.php:1062 tbl_create.php:62 #, php-format msgid "Table %s already exists!" msgstr "数据表 %s 已存在!" -#: libraries/messages.inc.php:1067 server_synchronize.php:432 +#: libraries/messages.inc.php:1063 server_synchronize.php:432 #: server_synchronize.php:875 msgid "Alter column(s)" msgstr "修改字段" -#: libraries/messages.inc.php:1068 tbl_addfield.php:189 tbl_alter.php:103 +#: libraries/messages.inc.php:1064 tbl_addfield.php:189 tbl_alter.php:103 #: tbl_indexes.php:98 #, php-format msgid "Table %1$s has been altered successfully" msgstr "已成功修改表 %1$s " -#: libraries/messages.inc.php:1069 server_synchronize.php:434 +#: libraries/messages.inc.php:1065 server_synchronize.php:434 #: server_synchronize.php:877 msgid "Apply index(s)" msgstr "增加索引" -#: libraries/messages.inc.php:1071 server_synchronize.php:446 +#: libraries/messages.inc.php:1067 server_synchronize.php:446 #: server_synchronize.php:890 msgid "Would you like to delete all the previous rows from target tables?" msgstr "你希望删除当前目标表中的所有数据吗?" -#: libraries/messages.inc.php:1072 tbl_move_copy.php:82 +#: libraries/messages.inc.php:1068 tbl_move_copy.php:82 msgid "The table name is empty!" msgstr "表名不能为空!" -#: libraries/messages.inc.php:1073 tbl_create.php:249 +#: libraries/messages.inc.php:1069 tbl_create.php:249 #, php-format msgid "Table %1$s has been created." msgstr "创建数据表 %1$s 成功。" -#: libraries/messages.inc.php:1076 tbl_operations.php:628 +#: libraries/messages.inc.php:1072 tbl_operations.php:628 #, php-format msgid "Table %s has been flushed" msgstr "已强制更新表 %s " -#: libraries/messages.inc.php:1077 server_synchronize.php:436 +#: libraries/messages.inc.php:1073 server_synchronize.php:436 #: server_synchronize.php:879 msgid "Insert row(s)" msgstr "增加行" -#: libraries/messages.inc.php:1078 libraries/tbl_links.inc.php:107 +#: libraries/messages.inc.php:1074 libraries/tbl_links.inc.php:107 #: libraries/tbl_links.inc.php:140 libraries/tbl_links.inc.php:141 msgid "Table seems to be empty!" msgstr "数据表是空的!" -#: libraries/messages.inc.php:1079 tbl_operations.php:568 +#: libraries/messages.inc.php:1075 tbl_operations.php:568 msgid "Table maintenance" msgstr "表维护" -#: libraries/messages.inc.php:1080 libraries/tbl_properties.inc.php:618 +#: libraries/messages.inc.php:1076 libraries/tbl_properties.inc.php:618 #: server_synchronize.php:428 server_synchronize.php:871 msgid "Table name" msgstr "数据表名" -#: libraries/messages.inc.php:1081 pdf_schema.php:1116 +#: libraries/messages.inc.php:1077 pdf_schema.php:1116 msgid "Table of contents" msgstr "目录" -#: libraries/messages.inc.php:1082 tbl_operations.php:334 +#: libraries/messages.inc.php:1078 tbl_operations.php:334 msgid "Table options" msgstr "表选项" -#: libraries/messages.inc.php:1083 server_synchronize.php:431 +#: libraries/messages.inc.php:1079 server_synchronize.php:431 #: server_synchronize.php:874 msgid "Remove column(s)" msgstr "删除字段" -#: libraries/messages.inc.php:1084 server_synchronize.php:433 +#: libraries/messages.inc.php:1080 server_synchronize.php:433 #: server_synchronize.php:876 msgid "Remove index(s)" msgstr "删除索引" -#: libraries/messages.inc.php:1088 server_synchronize.php:435 +#: libraries/messages.inc.php:1084 server_synchronize.php:435 #: server_synchronize.php:878 msgid "Update row(s)" msgstr "更新行" -#: libraries/messages.inc.php:1090 server_synchronize.php:942 +#: libraries/messages.inc.php:1086 server_synchronize.php:942 msgid "Target database has been synchronized with source database" msgstr "已根据源数据库同步目标数据库" -#: libraries/messages.inc.php:1091 server_privileges.php:392 +#: libraries/messages.inc.php:1087 server_privileges.php:392 #: server_privileges.php:527 server_privileges.php:1679 #: server_privileges.php:1685 msgid "Table-specific privileges" msgstr "按表指定权限" -#: libraries/messages.inc.php:1092 server_status.php:254 +#: libraries/messages.inc.php:1088 server_status.php:254 msgid "Temporary data" msgstr "临时数据" -#: libraries/messages.inc.php:1093 tbl_change.php:728 +#: libraries/messages.inc.php:1089 tbl_change.php:728 msgid " Because of its length,
this field might not be editable " msgstr " 由于长度限制
此字段可能无法编辑 " -#: libraries/messages.inc.php:1094 +#: libraries/messages.inc.php:1090 msgid "Texy! text" msgstr "Texy! 文本" -#: libraries/messages.inc.php:1095 libraries/mysql_charsets.lib.php:298 +#: libraries/messages.inc.php:1091 libraries/mysql_charsets.lib.php:298 #: libraries/mysql_charsets.lib.php:395 msgid "Thai" msgstr "泰语" -#: libraries/messages.inc.php:1102 libraries/replication_gui.lib.php:308 +#: libraries/messages.inc.php:1098 libraries/replication_gui.lib.php:308 #: server_privileges.php:734 msgid "This Host" msgstr "此主机" -#: libraries/messages.inc.php:1103 server_status.php:252 +#: libraries/messages.inc.php:1099 server_status.php:252 msgid "Threads" msgstr "线程" -#: libraries/messages.inc.php:1104 server_processlist.php:22 +#: libraries/messages.inc.php:1100 server_processlist.php:22 #, php-format msgid "Thread %s was successfully killed." msgstr "已杀死线程 %s 。" -#: libraries/messages.inc.php:1106 +#: libraries/messages.inc.php:1102 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -6040,181 +6040,181 @@ msgstr "" "在最后一次执行时没有数据被解析,建议您增加 PHP 运行时间限制,否则 phpMyAdmin " "将无法完成导入操作。" -#: libraries/messages.inc.php:1109 pmd_pdf.php:94 +#: libraries/messages.inc.php:1105 pmd_pdf.php:94 msgid "to/from page" msgstr "到/从 页" -#: libraries/messages.inc.php:1110 pdf_pages.php:343 +#: libraries/messages.inc.php:1106 pdf_pages.php:343 msgid "Toggle scratchboard" msgstr "切换刮板" -#: libraries/messages.inc.php:1111 pmd_general.php:99 +#: libraries/messages.inc.php:1107 pmd_general.php:99 msgid "Toggle small/big" msgstr "反向收缩/展开" -#: libraries/messages.inc.php:1112 pmd_help.php:27 +#: libraries/messages.inc.php:1108 pmd_help.php:27 msgid "To select relation, click :" msgstr "要选择关系,点击:" -#: libraries/messages.inc.php:1115 libraries/tbl_links.inc.php:149 +#: libraries/messages.inc.php:1111 libraries/tbl_links.inc.php:149 #, php-format msgid "Tracking of %s.%s is activated." msgstr "%s.%s 的追踪已启用。" -#: libraries/messages.inc.php:1116 tbl_tracking.php:655 +#: libraries/messages.inc.php:1112 tbl_tracking.php:655 msgid "Activate now" msgstr "立即启用" -#: libraries/messages.inc.php:1117 tbl_tracking.php:653 +#: libraries/messages.inc.php:1113 tbl_tracking.php:653 #, php-format msgid "Activate tracking for %s.%s" msgstr "启用 %s.%s 的追踪" -#: libraries/messages.inc.php:1118 tbl_tracking.php:221 +#: libraries/messages.inc.php:1114 tbl_tracking.php:221 msgid "Comment out these two lines if you do not need them." msgstr "如果你不需要,请注释以下两行。" -#: libraries/messages.inc.php:1119 tbl_tracking.php:688 +#: libraries/messages.inc.php:1115 tbl_tracking.php:688 msgid "Create version" msgstr "创建版本" -#: libraries/messages.inc.php:1120 tbl_tracking.php:668 +#: libraries/messages.inc.php:1116 tbl_tracking.php:668 #, php-format msgid "Create version %s of %s.%s" msgstr "为 %2$s.%3$s 创建版本 %1$s" -#: libraries/messages.inc.php:1122 tbl_tracking.php:412 +#: libraries/messages.inc.php:1118 tbl_tracking.php:412 msgid "Data definition statement" msgstr "数据定义语句" -#: libraries/messages.inc.php:1123 tbl_tracking.php:463 +#: libraries/messages.inc.php:1119 tbl_tracking.php:463 msgid "Data manipulation statement" msgstr "数据操作语句" -#: libraries/messages.inc.php:1124 tbl_tracking.php:410 tbl_tracking.php:461 +#: libraries/messages.inc.php:1120 tbl_tracking.php:410 tbl_tracking.php:461 msgid "Date" msgstr "日期" -#: libraries/messages.inc.php:1125 tbl_tracking.php:642 +#: libraries/messages.inc.php:1121 tbl_tracking.php:642 msgid "Deactivate now" msgstr "立即禁用" -#: libraries/messages.inc.php:1126 tbl_tracking.php:640 +#: libraries/messages.inc.php:1122 tbl_tracking.php:640 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "禁用 %s.%s 的追踪" -#: libraries/messages.inc.php:1127 tbl_tracking.php:521 +#: libraries/messages.inc.php:1123 tbl_tracking.php:521 #, php-format msgid "Export as %s" msgstr "导出为 %s" -#: libraries/messages.inc.php:1130 tbl_tracking.php:251 tbl_tracking.php:379 +#: libraries/messages.inc.php:1126 tbl_tracking.php:251 tbl_tracking.php:379 msgid "Close" msgstr "关闭" -#: libraries/messages.inc.php:1131 tbl_tracking.php:114 +#: libraries/messages.inc.php:1127 tbl_tracking.php:114 #, php-format msgid "Tracking report for table `%s`" msgstr "`%s` 的追踪报告" -#: libraries/messages.inc.php:1133 tbl_tracking.php:397 tbl_tracking.php:504 +#: libraries/messages.inc.php:1129 tbl_tracking.php:397 tbl_tracking.php:504 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "显示自 %2$s 起至 %3$s 用户 %4$s 执行的 %1$s %5$s" -#: libraries/messages.inc.php:1134 tbl_tracking.php:561 +#: libraries/messages.inc.php:1130 tbl_tracking.php:561 msgid "Show versions" msgstr "查看版本" -#: libraries/messages.inc.php:1135 tbl_tracking.php:507 +#: libraries/messages.inc.php:1131 tbl_tracking.php:507 msgid "SQL dump (file download)" msgstr "SQL 转储 (文件下载)" -#: libraries/messages.inc.php:1136 tbl_tracking.php:508 +#: libraries/messages.inc.php:1132 tbl_tracking.php:508 msgid "SQL dump" msgstr "SQL 转储" -#: libraries/messages.inc.php:1137 tbl_tracking.php:213 +#: libraries/messages.inc.php:1133 tbl_tracking.php:213 msgid "SQL statements executed." msgstr "SQL 语句已执行。" -#: libraries/messages.inc.php:1138 +#: libraries/messages.inc.php:1134 msgid "This option will replace your table and contained data." msgstr "该选项将导致当前表的结构和数据被替换。" -#: libraries/messages.inc.php:1139 tbl_tracking.php:509 +#: libraries/messages.inc.php:1135 tbl_tracking.php:509 msgid "SQL execution" msgstr "执行 SQL 语句" -#: libraries/messages.inc.php:1140 tbl_tracking.php:230 +#: libraries/messages.inc.php:1136 tbl_tracking.php:230 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "SQL 语句已导出。请复制保存或运行它。" -#: libraries/messages.inc.php:1141 tbl_tracking.php:381 +#: libraries/messages.inc.php:1137 tbl_tracking.php:381 msgid "Tracking statements" msgstr "追踪语句" -#: libraries/messages.inc.php:1148 tbl_tracking.php:593 +#: libraries/messages.inc.php:1144 tbl_tracking.php:593 msgid "Version" msgstr "版本" -#: libraries/messages.inc.php:1149 tbl_tracking.php:672 +#: libraries/messages.inc.php:1145 tbl_tracking.php:672 msgid "Track these data definition statements:" msgstr "追踪下列数据定义语句:" -#: libraries/messages.inc.php:1150 tbl_tracking.php:680 +#: libraries/messages.inc.php:1146 tbl_tracking.php:680 msgid "Track these data manipulation statements:" msgstr "追踪下列数据操作语句:" -#: libraries/messages.inc.php:1155 tbl_tracking.php:411 tbl_tracking.php:462 +#: libraries/messages.inc.php:1151 tbl_tracking.php:411 tbl_tracking.php:462 msgid "Username" msgstr "用户名" -#: libraries/messages.inc.php:1156 tbl_tracking.php:203 +#: libraries/messages.inc.php:1152 tbl_tracking.php:203 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "%s.%s 的追踪,版本 %s 已启用。" -#: libraries/messages.inc.php:1157 tbl_tracking.php:187 +#: libraries/messages.inc.php:1153 tbl_tracking.php:187 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "已创建版本 %s,%s.%s 的追踪已启用。" -#: libraries/messages.inc.php:1158 tbl_tracking.php:195 +#: libraries/messages.inc.php:1154 tbl_tracking.php:195 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "%s.%s 的追踪,版本 %s 已禁用。" -#: libraries/messages.inc.php:1159 tbl_tracking.php:262 +#: libraries/messages.inc.php:1155 tbl_tracking.php:262 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "版本 %s 的快照 (SQL 代码)" -#: libraries/messages.inc.php:1161 tbl_tracking.php:220 +#: libraries/messages.inc.php:1157 tbl_tracking.php:220 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "你可以通过创建一个临时数据库来执行这个转储。请确保你有足够的权限。" -#: libraries/messages.inc.php:1162 libraries/mysql_charsets.lib.php:219 +#: libraries/messages.inc.php:1158 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:362 msgid "Traditional Chinese" msgstr "正体中文" -#: libraries/messages.inc.php:1163 libraries/mysql_charsets.lib.php:292 +#: libraries/messages.inc.php:1159 libraries/mysql_charsets.lib.php:292 msgid "Traditional Spanish" msgstr "传统西班牙语" -#: libraries/messages.inc.php:1164 server_status.php:388 +#: libraries/messages.inc.php:1160 server_status.php:388 msgid "Traffic" msgstr "流量" -#: libraries/messages.inc.php:1165 server_status.php:261 +#: libraries/messages.inc.php:1161 server_status.php:261 msgid "Transaction coordinator" msgstr "事务协调" -#: libraries/messages.inc.php:1166 +#: libraries/messages.inc.php:1162 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 " @@ -6224,28 +6224,28 @@ msgstr "" "字段中显示一个二进制数据的下载连接。第一个选项是文件名,或使用第二个选项,用" "表中的一个字段作为文件名。如果你使用第二个选项那么第一个选项必须留空。" -#: libraries/messages.inc.php:1167 +#: libraries/messages.inc.php:1163 msgid "" "Displays hexadecimal representation of data. Optional first parameter " "specifies how often space will be added (defaults to 2 nibbles)." msgstr "" "显示十六进制的数据。第一个参数设置需要增加多少个空格 (默认值为一个字节宽度)。" -#: libraries/messages.inc.php:1168 +#: libraries/messages.inc.php:1164 msgid "" "Displays a clickable thumbnail. The options are the maximum width and height " "in pixels. The original aspect ratio is preserved." msgstr "显示可点击的缩略图。在原比例不变的情况下,可按像素指定最大宽度或高度。" -#: libraries/messages.inc.php:1169 +#: libraries/messages.inc.php:1165 msgid "Displays a link to download this image." msgstr "显示下载此图像的链接。" -#: libraries/messages.inc.php:1170 +#: libraries/messages.inc.php:1166 msgid "See image/jpeg: inline" msgstr "参见 image/jpeg: inline" -#: libraries/messages.inc.php:1171 +#: libraries/messages.inc.php:1167 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 " @@ -6262,7 +6262,7 @@ msgstr "" "填“local”(参见 PHP 的 strftime() 函数文档)和“utc”(参见 PHP 的 gmdate() 函数文" "档)所到的结果是不一样的。" -#: libraries/messages.inc.php:1172 +#: libraries/messages.inc.php:1168 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 " @@ -6282,7 +6282,7 @@ msgstr "" "果设为 1 的话将会用 htmlspecialchars() 转换其输出 (默认为 1)。第四个参数如果" "设为 1 的话,将禁止换行,确保所有内容显示在一行中 (默认为 1)" -#: libraries/messages.inc.php:1173 +#: libraries/messages.inc.php:1169 msgid "" "Displays the contents of the field as-is, without running it through " "htmlspecialchars(). That is, the field is assumed to contain valid HTML." @@ -6290,7 +6290,7 @@ msgstr "" "显示字段的原始内容,不使用 htmlspecialchars() 处理。即假定内容为合法的 HTML " "代码。" -#: libraries/messages.inc.php:1174 +#: libraries/messages.inc.php:1170 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 " @@ -6299,7 +6299,7 @@ msgstr "" "显示图像和链接,字段内包含文件名。第一个选项是类似“http://www.example.com/”这" "样的 URL 前缀,第二和第三个选项是以像素为单位的宽度和高度。" -#: libraries/messages.inc.php:1175 +#: libraries/messages.inc.php:1171 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 " @@ -6308,11 +6308,11 @@ msgstr "" "显示链接,字段内包含文件名。第一个选项是类似“http://www.example.com/”这样的 " "URL 前缀,第二个选项是链接的标题 (title)。" -#: libraries/messages.inc.php:1176 +#: libraries/messages.inc.php:1172 msgid "Formats text as SQL query with syntax highlighting." msgstr "将文本以 SQL 语法高亮显示。" -#: libraries/messages.inc.php:1177 +#: libraries/messages.inc.php:1173 msgid "" "Displays a part of a string. The first option is the number of characters to " "skip from the beginning of the string (Default 0). The second option is the " @@ -6324,69 +6324,69 @@ msgstr "" "返回的字数 (默认直到结尾)。第三个选项是当发生截取的时候,将会加在字符串之前/" "后的输出 (默认为:“...”)。" -#: libraries/messages.inc.php:1179 server_binlog.php:183 server_binlog.php:186 +#: libraries/messages.inc.php:1175 server_binlog.php:183 server_binlog.php:186 #: server_processlist.php:49 server_processlist.php:51 msgid "Truncate Shown Queries" msgstr "截断显示的查询" -#: libraries/messages.inc.php:1180 libraries/mysql_charsets.lib.php:301 +#: libraries/messages.inc.php:1176 libraries/mysql_charsets.lib.php:301 #: libraries/mysql_charsets.lib.php:389 msgid "Turkish" msgstr "土耳其语" -#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:304 +#: libraries/messages.inc.php:1179 libraries/mysql_charsets.lib.php:304 #: libraries/mysql_charsets.lib.php:386 msgid "Ukrainian" msgstr "乌克兰语" -#: libraries/messages.inc.php:1185 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:1181 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 msgid "Unicode" msgstr "Unicode" -#: libraries/messages.inc.php:1187 libraries/mysql_charsets.lib.php:398 +#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:398 #: libraries/mysql_charsets.lib.php:405 msgid "unknown" msgstr "未知" -#: libraries/messages.inc.php:1190 server_privileges.php:1152 +#: libraries/messages.inc.php:1186 server_privileges.php:1152 #, php-format msgid "You have updated the privileges for %s." msgstr "您已更新了 %s 的权限。" -#: libraries/messages.inc.php:1191 user_password.php:112 +#: libraries/messages.inc.php:1187 user_password.php:112 msgid "The profile has been updated." msgstr "配置文件己更新。" -#: libraries/messages.inc.php:1193 libraries/relation.lib.php:138 +#: libraries/messages.inc.php:1189 libraries/relation.lib.php:138 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "请参见文档中关于如何更新您的 column_comments 表" -#: libraries/messages.inc.php:1194 +#: libraries/messages.inc.php:1190 #, php-format msgid "You should upgrade to %s %s or later." msgstr "您应升级到 %s %s 或更高版本。" -#: libraries/messages.inc.php:1204 tbl_printview.php:314 tbl_structure.php:661 +#: libraries/messages.inc.php:1200 tbl_printview.php:314 tbl_structure.php:661 msgid "Usage" msgstr "已用" -#: libraries/messages.inc.php:1205 +#: libraries/messages.inc.php:1201 msgid "Enclose table and field names with backquotes" msgstr "给数据表名及字段名加上反引号" -#: libraries/messages.inc.php:1206 libraries/replication_gui.lib.php:314 +#: libraries/messages.inc.php:1202 libraries/replication_gui.lib.php:314 #: server_privileges.php:740 msgid "Use Host Table" msgstr "使用主机表" -#: libraries/messages.inc.php:1207 server_privileges.php:848 +#: libraries/messages.inc.php:1203 server_privileges.php:848 #, php-format msgid "The user %s already exists!" msgstr "用户 %s 己存在!" -#: libraries/messages.inc.php:1209 libraries/replication_gui.lib.php:55 +#: libraries/messages.inc.php:1205 libraries/replication_gui.lib.php:55 #: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245 #: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255 #: server_privileges.php:672 server_privileges.php:675 @@ -6394,35 +6394,35 @@ msgstr "用户 %s 己存在!" msgid "User name" msgstr "用户名" -#: libraries/messages.inc.php:1210 server_privileges.php:1645 +#: libraries/messages.inc.php:1206 server_privileges.php:1645 msgid "The selected user was not found in the privilege table." msgstr "在权限表内找不到选中的用户。" -#: libraries/messages.inc.php:1211 server_privileges.php:1365 +#: libraries/messages.inc.php:1207 server_privileges.php:1365 msgid "User overview" msgstr "查看用户" -#: libraries/messages.inc.php:1212 server_privileges.php:1261 +#: libraries/messages.inc.php:1208 server_privileges.php:1261 msgid "The selected users have been deleted successfully." msgstr "已成功删除选中的用户。" -#: libraries/messages.inc.php:1213 server_privileges.php:2026 +#: libraries/messages.inc.php:1209 server_privileges.php:2026 #, php-format msgid "Users having access to "%s"" msgstr "用户可以访问“%s”" -#: libraries/messages.inc.php:1214 main.php:189 server_privileges.php:1350 +#: libraries/messages.inc.php:1210 main.php:189 server_privileges.php:1350 #: server_privileges.php:1497 server_privileges.php:1611 #: server_privileges.php:2029 server_processlist.php:54 msgid "User" msgstr "用户" -#: libraries/messages.inc.php:1215 tbl_change.php:1171 +#: libraries/messages.inc.php:1211 tbl_change.php:1171 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "按 TAB 键跳到下一个数值,或 CTRL+方向键 作随意移动" -#: libraries/messages.inc.php:1217 libraries/replication_gui.lib.php:251 +#: libraries/messages.inc.php:1213 libraries/replication_gui.lib.php:251 #: libraries/replication_gui.lib.php:319 libraries/replication_gui.lib.php:342 #: server_privileges.php:678 server_privileges.php:745 #: server_privileges.php:769 server_privileges.php:1889 @@ -6430,7 +6430,7 @@ msgstr "按 TAB 键跳到下一个数值,或 CTRL+方向键 作随意移动" msgid "Use text field" msgstr "使用文本域" -#: libraries/messages.inc.php:1221 libraries/sqlvalidator.lib.php:68 +#: libraries/messages.inc.php:1217 libraries/sqlvalidator.lib.php:68 #, php-format msgid "" "The SQL validator could not be initialized. Please check if you have " @@ -6438,84 +6438,84 @@ msgid "" msgstr "" "SQL 校验程序无法初始化。请检查是否已经安装了%s文档%s内说明的必需 PHP 扩展。" -#: libraries/messages.inc.php:1222 libraries/replication_gui.lib.php:111 +#: libraries/messages.inc.php:1218 libraries/replication_gui.lib.php:111 #: server_status.php:627 tbl_change.php:324 tbl_printview.php:370 #: tbl_select.php:139 tbl_structure.php:730 msgid "Value" msgstr "值" -#: libraries/messages.inc.php:1223 libraries/replication_gui.lib.php:110 +#: libraries/messages.inc.php:1219 libraries/replication_gui.lib.php:110 #: libraries/sql_query_form.lib.php:445 server_status.php:626 #: server_variables.php:52 msgid "Variable" msgstr "变量" -#: libraries/messages.inc.php:1225 server_export.php:21 +#: libraries/messages.inc.php:1221 server_export.php:21 msgid "View dump (schema) of databases" msgstr "查看数据库的转存(大纲)" -#: libraries/messages.inc.php:1227 tbl_export.php:23 +#: libraries/messages.inc.php:1223 tbl_export.php:23 msgid "View dump (schema) of table" msgstr "查看数据表的转存(大纲)。" -#: libraries/messages.inc.php:1231 view_create.php:142 +#: libraries/messages.inc.php:1227 view_create.php:142 msgid "VIEW name" msgstr "视图名" -#: libraries/messages.inc.php:1237 main.php:205 +#: libraries/messages.inc.php:1233 main.php:205 msgid "Web server" msgstr "网站服务器" -#: libraries/messages.inc.php:1239 libraries/mysql_charsets.lib.php:277 +#: libraries/messages.inc.php:1235 libraries/mysql_charsets.lib.php:277 #: libraries/mysql_charsets.lib.php:325 msgid "West European" msgstr "西欧" -#: libraries/messages.inc.php:1240 main.php:230 +#: libraries/messages.inc.php:1236 main.php:230 msgid "Wiki" msgstr "维基 (Wiki) (外链,英文)" -#: libraries/messages.inc.php:1241 server_privileges.php:2138 +#: libraries/messages.inc.php:1237 server_privileges.php:2138 msgid "wildcard" msgstr "通配符" -#: libraries/messages.inc.php:1248 +#: libraries/messages.inc.php:1244 msgid "Export contents" msgstr "导出内容" -#: libraries/messages.inc.php:1249 +#: libraries/messages.inc.php:1245 msgid "Export functions" msgstr "导出函数" -#: libraries/messages.inc.php:1250 +#: libraries/messages.inc.php:1246 msgid "Export procedures" msgstr "导出存储过程" -#: libraries/messages.inc.php:1251 +#: libraries/messages.inc.php:1247 msgid "Export Structure Schemas (recommended)" msgstr "导出结构大纲 (推荐)" -#: libraries/messages.inc.php:1252 +#: libraries/messages.inc.php:1248 msgid "Export tables" msgstr "导出数据表" -#: libraries/messages.inc.php:1253 +#: libraries/messages.inc.php:1249 msgid "Export triggers" msgstr "导出触发器" -#: libraries/messages.inc.php:1254 +#: libraries/messages.inc.php:1250 msgid "Export views" msgstr "导出视图" -#: libraries/messages.inc.php:1255 +#: libraries/messages.inc.php:1251 msgid "XML" msgstr "XML" -#: libraries/messages.inc.php:1259 server_privileges.php:592 +#: libraries/messages.inc.php:1255 server_privileges.php:592 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "注意:若将这些选项设为 0(零) 即不限制。" -#: libraries/messages.inc.php:1260 +#: libraries/messages.inc.php:1256 msgid "\"zipped\"" msgstr "zip 压缩" diff --git a/po/zh_TW.po b/po/zh_TW.po index 055d8d0fb..d5009d7fc 100644 --- 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-05-13 11:25+0200\n" +"POT-Creation-Date: 2010-05-13 11:30+0200\n" "PO-Revision-Date: 2010-03-12 09:15+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: chinese_traditional \n" @@ -13,19 +13,19 @@ msgstr "" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:38 browse_foreigners.php:59 -#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:870 +#: libraries/display_tbl.lib.php:417 libraries/messages.inc.php:866 #: server_privileges.php:1475 msgid "Show all" msgstr "顯示全部" #: browse_foreigners.php:82 db_operations.php:648 -#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:394 -#: libraries/export/pdf.php:147 libraries/messages.inc.php:597 +#: libraries/common.lib.php:2304 libraries/display_tbl.lib.php:394 +#: libraries/export/pdf.php:147 libraries/messages.inc.php:593 #: pdf_schema.php:283 pdf_schema.php:1123 pdf_schema.php:1139 msgid "Page number:" msgstr "頁碼:" -#: browse_foreigners.php:132 libraries/messages.inc.php:1242 +#: browse_foreigners.php:132 libraries/messages.inc.php:1238 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -37,7 +37,7 @@ 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/db_links.inc.php:75 -#: libraries/messages.inc.php:841 libraries/tbl_links.inc.php:63 +#: libraries/messages.inc.php:837 libraries/tbl_links.inc.php:63 msgid "Search" msgstr "搜索" @@ -46,12 +46,12 @@ msgstr "搜索" #: db_search.php:362 db_structure.php:567 js/messages.php:48 #: libraries/Config.class.php:1046 libraries/Theme_Manager.class.php:311 #: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719 -#: libraries/common.lib.php:1333 libraries/common.lib.php:2267 +#: libraries/common.lib.php:1333 libraries/common.lib.php:2279 #: 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 #: libraries/display_tbl.lib.php:532 libraries/display_tbl.lib.php:614 -#: libraries/messages.inc.php:361 libraries/replication_gui.lib.php:73 +#: libraries/messages.inc.php:357 libraries/replication_gui.lib.php:73 #: libraries/replication_gui.lib.php:365 libraries/select_server.lib.php:104 #: libraries/sql_query_form.lib.php:400 libraries/sql_query_form.lib.php:477 #: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782 @@ -71,33 +71,33 @@ msgid "Go" msgstr "執行" #: browse_foreigners.php:168 browse_foreigners.php:172 -#: libraries/Index.class.php:442 libraries/messages.inc.php:459 +#: libraries/Index.class.php:442 libraries/messages.inc.php:455 #: tbl_tracking.php:320 msgid "Keyname" msgstr "鍵名" #: browse_foreigners.php:169 browse_foreigners.php:171 -#: libraries/messages.inc.php:252 server_collations.php:55 +#: libraries/messages.inc.php:248 server_collations.php:55 #: server_collations.php:67 server_engines.php:59 server_status.php:628 msgid "Description" msgstr "說明" #: browse_foreigners.php:247 browse_foreigners.php:256 #: browse_foreigners.php:268 browse_foreigners.php:276 -#: libraries/messages.inc.php:1218 +#: libraries/messages.inc.php:1214 msgid "Use this value" msgstr "使用此值" -#: db_create.php:46 libraries/messages.inc.php:215 +#: db_create.php:46 libraries/messages.inc.php:211 #, fuzzy, php-format msgid "Database %1$s has been created." msgstr "資料庫 %s 已被刪除" -#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:232 +#: db_datadict.php:49 db_operations.php:378 libraries/messages.inc.php:228 msgid "Database comment: " msgstr "資料庫註解文字: " -#: db_datadict.php:165 libraries/messages.inc.php:1070 +#: db_datadict.php:165 libraries/messages.inc.php:1066 #: libraries/tbl_properties.inc.php:724 pdf_schema.php:1236 #: tbl_operations.php:345 tbl_printview.php:130 msgid "Table comments" @@ -106,7 +106,7 @@ msgstr "資料表註解文字" #: db_datadict.php:174 db_qbe.php:174 libraries/Index.class.php:446 #: libraries/export/htmlword.php:244 libraries/export/latex.php:360 #: libraries/export/odt.php:294 libraries/export/texytext.php:233 -#: libraries/messages.inc.php:317 libraries/tbl_properties.inc.php:99 +#: libraries/messages.inc.php:313 libraries/tbl_properties.inc.php:99 #: libraries/tbl_properties.inc.php:275 pdf_schema.php:1262 #: pdf_schema.php:1283 tbl_change.php:308 tbl_indexes.php:189 #: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135 @@ -118,7 +118,7 @@ msgstr "欄位" #: libraries/db_events.inc.php:31 libraries/db_routines.inc.php:42 #: 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/messages.inc.php:1181 +#: libraries/export/texytext.php:234 libraries/messages.inc.php:1177 #: libraries/tbl_properties.inc.php:100 pdf_schema.php:1263 #: pdf_schema.php:1284 server_privileges.php:2031 tbl_change.php:287 #: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313 @@ -130,7 +130,7 @@ msgstr "型態" #: db_datadict.php:177 libraries/Index.class.php:449 #: libraries/export/htmlword.php:246 libraries/export/latex.php:360 #: libraries/export/odt.php:300 libraries/export/texytext.php:235 -#: libraries/messages.inc.php:576 libraries/tbl_properties.inc.php:109 +#: libraries/messages.inc.php:572 libraries/tbl_properties.inc.php:109 #: pdf_schema.php:1265 pdf_schema.php:1286 tbl_change.php:323 #: tbl_printview.php:145 tbl_structure.php:181 tbl_tracking.php:276 #: tbl_tracking.php:327 @@ -139,7 +139,7 @@ msgstr "Null" #: db_datadict.php:178 db_structure.php:501 libraries/export/htmlword.php:247 #: libraries/export/latex.php:360 libraries/export/odt.php:303 -#: libraries/export/texytext.php:236 libraries/messages.inc.php:238 +#: libraries/export/texytext.php:236 libraries/messages.inc.php:234 #: libraries/tbl_properties.inc.php:106 pdf_schema.php:1266 #: pdf_schema.php:1287 tbl_printview.php:146 tbl_structure.php:182 #: tbl_tracking.php:277 @@ -148,14 +148,14 @@ msgstr "預設值" #: db_datadict.php:182 libraries/export/htmlword.php:249 #: libraries/export/latex.php:362 libraries/export/odt.php:307 -#: libraries/export/texytext.php:238 libraries/messages.inc.php:483 +#: libraries/export/texytext.php:238 libraries/messages.inc.php:479 #: pdf_schema.php:1268 pdf_schema.php:1289 tbl_printview.php:150 msgid "Links to" msgstr "連結到" #: db_datadict.php:184 db_printview.php:112 libraries/export/htmlword.php:252 #: libraries/export/latex.php:365 libraries/export/odt.php:312 -#: libraries/export/texytext.php:241 libraries/messages.inc.php:163 +#: libraries/export/texytext.php:241 libraries/messages.inc.php:159 #: libraries/tbl_properties.inc.php:130 pdf_schema.php:1279 #: pdf_schema.php:1290 tbl_printview.php:152 msgid "Comments" @@ -164,7 +164,7 @@ msgstr "註解" #: db_datadict.php:267 libraries/Index.class.php:359 #: 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/messages.inc.php:559 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:555 #: libraries/mult_submits.inc.php:263 pdf_schema.php:1344 #: server_privileges.php:1529 server_privileges.php:1540 #: server_privileges.php:1850 server_privileges.php:1855 @@ -176,7 +176,7 @@ msgstr " 否 " #: db_datadict.php:267 libraries/Index.class.php:360 #: libraries/Index.class.php:385 libraries/export/htmlword.php:322 #: libraries/export/latex.php:430 libraries/export/odt.php:368 -#: libraries/export/texytext.php:311 libraries/messages.inc.php:1257 +#: libraries/export/texytext.php:311 libraries/messages.inc.php:1253 #: libraries/mult_submits.inc.php:45 libraries/mult_submits.inc.php:50 #: libraries/mult_submits.inc.php:55 libraries/mult_submits.inc.php:60 #: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:101 @@ -190,108 +190,108 @@ msgstr " 否 " msgid "Yes" msgstr " 是 " -#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:670 +#: db_datadict.php:322 db_printview.php:266 libraries/messages.inc.php:666 #: tbl_printview.php:498 msgid "Print" msgstr "列印" -#: db_export.php:29 libraries/messages.inc.php:1226 +#: db_export.php:29 libraries/messages.inc.php:1222 msgid "View dump (schema) of database" msgstr "檢視資料庫的備份概要 (dump schema)" #: db_export.php:33 db_printview.php:96 db_qbe.php:102 db_structure.php:51 -#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:568 +#: db_tracking.php:35 export.php:359 libraries/messages.inc.php:564 #: navigation.php:346 msgid "No tables found in database." msgstr "資料庫中沒有資料表" -#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:845 +#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:841 #: server_export.php:27 msgid "Select All" msgstr "全選" -#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1188 +#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1184 #: server_export.php:29 msgid "Unselect All" msgstr "全部取消" -#: db_operations.php:38 libraries/messages.inc.php:213 tbl_create.php:54 +#: db_operations.php:38 libraries/messages.inc.php:209 tbl_create.php:54 msgid "The database name is empty!" msgstr "資料庫名稱並未輸入!!" -#: db_operations.php:236 libraries/messages.inc.php:753 +#: db_operations.php:236 libraries/messages.inc.php:749 #, php-format msgid "Database %s has been renamed to %s" msgstr "資料庫 %s 已更改名稱為 %s" -#: db_operations.php:240 libraries/messages.inc.php:178 +#: db_operations.php:240 libraries/messages.inc.php:174 #, php-format msgid "Database %s has been copied to %s" msgstr "資料庫 %s 已複製到 %s" -#: db_operations.php:410 libraries/messages.inc.php:236 +#: db_operations.php:410 libraries/messages.inc.php:232 msgid "Rename database to" msgstr "更改資料庫名稱到" -#: db_operations.php:415 libraries/messages.inc.php:161 +#: db_operations.php:415 libraries/messages.inc.php:157 #: server_processlist.php:57 msgid "Command" msgstr "指令" -#: db_operations.php:425 libraries/messages.inc.php:58 tbl_change.php:1143 +#: db_operations.php:425 libraries/messages.inc.php:54 tbl_change.php:1143 msgid "and then" msgstr "然後" -#: db_operations.php:451 libraries/messages.inc.php:233 +#: db_operations.php:451 libraries/messages.inc.php:229 msgid "Copy database to" msgstr "複製資料庫到" -#: db_operations.php:458 libraries/messages.inc.php:1043 +#: db_operations.php:458 libraries/messages.inc.php:1039 #: tbl_operations.php:526 tbl_tracking.php:388 msgid "Structure only" msgstr "只有結構" -#: db_operations.php:459 libraries/messages.inc.php:1041 +#: db_operations.php:459 libraries/messages.inc.php:1037 #: tbl_operations.php:527 tbl_tracking.php:390 msgid "Structure and data" msgstr "結構與資料" -#: db_operations.php:460 libraries/messages.inc.php:229 tbl_operations.php:528 +#: db_operations.php:460 libraries/messages.inc.php:225 tbl_operations.php:528 #: tbl_tracking.php:389 msgid "Data only" msgstr "只有資料" -#: db_operations.php:468 libraries/messages.inc.php:186 +#: db_operations.php:468 libraries/messages.inc.php:182 msgid "CREATE DATABASE before copying" msgstr "複製前建立資料庫 (CREATE DATABASE)" #: db_operations.php:471 libraries/export/sql.php:52 #: libraries/export/sql.php:74 libraries/export/sql.php:76 -#: libraries/export/sql.php:82 libraries/messages.inc.php:30 +#: libraries/export/sql.php:82 libraries/messages.inc.php:26 #: tbl_operations.php:534 #, php-format msgid "Add %s" msgstr "" -#: db_operations.php:475 libraries/messages.inc.php:29 tbl_operations.php:297 +#: db_operations.php:475 libraries/messages.inc.php:25 tbl_operations.php:297 #: tbl_operations.php:536 msgid "Add AUTO_INCREMENT value" msgstr "新增 AUTO_INCREMENT 數值" -#: db_operations.php:479 libraries/messages.inc.php:31 tbl_operations.php:543 +#: db_operations.php:479 libraries/messages.inc.php:27 tbl_operations.php:543 msgid "Add constraints" msgstr "加入限制" -#: db_operations.php:492 libraries/messages.inc.php:1059 +#: db_operations.php:492 libraries/messages.inc.php:1055 msgid "Switch to copied database" msgstr "轉移到複製之資料庫" -#: db_operations.php:533 libraries/messages.inc.php:89 +#: db_operations.php:533 libraries/messages.inc.php:85 msgid "BLOB Repository" msgstr "" #: db_operations.php:536 db_tracking.php:76 libraries/common.lib.php:1350 -#: libraries/messages.inc.php:1037 libraries/server_links.inc.php:49 +#: libraries/messages.inc.php:1033 libraries/server_links.inc.php:49 #: server_processlist.php:59 tbl_tracking.php:596 test/theme.php:101 msgid "Status" msgstr "狀態" @@ -303,12 +303,12 @@ msgctxt "BLOB repository" msgid "Enabled" msgstr "啟動" -#: db_operations.php:548 libraries/messages.inc.php:93 +#: db_operations.php:548 libraries/messages.inc.php:89 #, fuzzy msgid "Disable" msgstr "未啟動" -#: db_operations.php:558 libraries/messages.inc.php:90 +#: db_operations.php:558 libraries/messages.inc.php:86 msgid "Damaged" msgstr "" @@ -325,13 +325,13 @@ msgctxt "BLOB repository" msgid "Disabled" msgstr "未啟動" -#: db_operations.php:574 libraries/messages.inc.php:96 +#: db_operations.php:574 libraries/messages.inc.php:92 #, fuzzy msgid "Enable" msgstr "啟動" #: db_operations.php:598 libraries/Index.class.php:448 -#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:158 +#: libraries/db_structure.lib.php:62 libraries/messages.inc.php:154 #: 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:361 @@ -340,7 +340,7 @@ msgstr "啟動" msgid "Collation" msgstr "校對" -#: db_operations.php:609 libraries/messages.inc.php:742 main.php:316 +#: db_operations.php:609 libraries/messages.inc.php:738 main.php:316 #: pdf_schema.php:34 #, php-format msgid "" @@ -348,58 +348,58 @@ msgid "" "deactivated. To find out why click %shere%s." msgstr "關聯資料表的附加功能未能啟動, %s請按此%s 查出問題原因." -#: db_operations.php:645 libraries/messages.inc.php:264 pdf_pages.php:528 +#: db_operations.php:645 libraries/messages.inc.php:260 pdf_pages.php:528 msgid "Display PDF schema" msgstr "顯示 PDF 概要" -#: db_operations.php:661 libraries/messages.inc.php:877 pdf_pages.php:529 +#: db_operations.php:661 libraries/messages.inc.php:873 pdf_pages.php:529 msgid "Show grid" msgstr "顯示框格" -#: db_operations.php:664 libraries/messages.inc.php:874 pdf_pages.php:530 +#: db_operations.php:664 libraries/messages.inc.php:870 pdf_pages.php:530 msgid "Show color" msgstr "顯示顏色" -#: db_operations.php:666 libraries/messages.inc.php:998 pdf_pages.php:531 +#: db_operations.php:666 libraries/messages.inc.php:994 pdf_pages.php:531 msgid "Show dimension of tables" msgstr "顯示表格大小" -#: db_operations.php:669 libraries/messages.inc.php:52 pdf_pages.php:532 +#: db_operations.php:669 libraries/messages.inc.php:48 pdf_pages.php:532 msgid "Display all tables with the same width" msgstr "以相同寬度顯示所有資料表?" -#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:227 +#: db_operations.php:672 db_structure.php:606 libraries/messages.inc.php:223 #: pdf_pages.php:533 msgid "Data Dictionary" msgstr "數據字典" -#: db_operations.php:674 libraries/messages.inc.php:884 pdf_pages.php:534 +#: db_operations.php:674 libraries/messages.inc.php:880 pdf_pages.php:534 msgid "Only show keys" msgstr "" -#: db_operations.php:676 libraries/messages.inc.php:875 pdf_pages.php:535 +#: db_operations.php:676 libraries/messages.inc.php:871 pdf_pages.php:535 msgid "Data Dictionary Format" msgstr "數據字典格式" -#: db_operations.php:678 libraries/messages.inc.php:464 pdf_pages.php:537 +#: db_operations.php:678 libraries/messages.inc.php:460 pdf_pages.php:537 msgid "Landscape" msgstr "橫向" -#: db_operations.php:679 libraries/messages.inc.php:663 pdf_pages.php:538 +#: db_operations.php:679 libraries/messages.inc.php:659 pdf_pages.php:538 msgid "Portrait" msgstr "直向" -#: db_operations.php:682 libraries/messages.inc.php:599 pdf_pages.php:541 +#: db_operations.php:682 libraries/messages.inc.php:595 pdf_pages.php:541 msgid "Paper size" msgstr "紙張大小" -#: db_operations.php:706 libraries/messages.inc.php:281 +#: db_operations.php:706 libraries/messages.inc.php:277 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 libraries/messages.inc.php:1087 +#: libraries/header.inc.php:126 libraries/messages.inc.php:1083 #: pdf_pages.php:405 server_privileges.php:1626 server_privileges.php:1682 #: server_privileges.php:1946 server_synchronize.php:423 #: server_synchronize.php:866 tbl_tracking.php:592 test/theme.php:75 @@ -407,176 +407,176 @@ msgid "Table" msgstr "資料表" #: db_printview.php:105 libraries/db_structure.lib.php:56 -#: libraries/messages.inc.php:735 +#: libraries/messages.inc.php:731 msgid "Records" msgstr "記錄" #: db_printview.php:109 libraries/db_structure.lib.php:67 -#: libraries/messages.inc.php:1003 tbl_indexes.php:190 +#: libraries/messages.inc.php:999 tbl_indexes.php:190 msgid "Size" msgstr "大小" #: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559 -#: libraries/export/sql.php:899 libraries/messages.inc.php:436 +#: libraries/export/sql.php:899 libraries/messages.inc.php:432 msgid "in use" msgstr "使用中" #: db_printview.php:187 libraries/db_info.inc.php:88 -#: libraries/export/sql.php:514 libraries/messages.inc.php:1032 +#: libraries/export/sql.php:514 libraries/messages.inc.php:1028 #: pdf_schema.php:1241 tbl_printview.php:434 tbl_structure.php:810 msgid "Creation" msgstr "建立" #: db_printview.php:196 libraries/db_info.inc.php:93 -#: libraries/export/sql.php:519 libraries/messages.inc.php:1036 +#: libraries/export/sql.php:519 libraries/messages.inc.php:1032 #: pdf_schema.php:1246 tbl_printview.php:444 tbl_structure.php:818 msgid "Last update" msgstr "最後更新" #: db_printview.php:205 libraries/db_info.inc.php:98 -#: libraries/export/sql.php:524 libraries/messages.inc.php:1031 +#: libraries/export/sql.php:524 libraries/messages.inc.php:1027 #: pdf_schema.php:1251 tbl_printview.php:454 tbl_structure.php:826 msgid "Last check" msgstr "最後檢查" -#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1085 +#: db_printview.php:222 db_structure.php:480 libraries/messages.inc.php:1081 #, php-format msgid "%s table(s)" msgstr "%s 資料表" #: db_qbe.php:29 libraries/display_tbl.lib.php:1981 -#: libraries/messages.inc.php:1051 libraries/sql_query_form.lib.php:140 +#: libraries/messages.inc.php:1047 libraries/sql_query_form.lib.php:140 #: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131 #: view_operations.php:62 msgid "Your SQL query has been executed successfully" msgstr "您的SQL語法已順利執行" -#: db_qbe.php:42 libraries/messages.inc.php:371 +#: db_qbe.php:42 libraries/messages.inc.php:367 msgid "You have to choose at least one column to display" msgstr "您需要選擇最少顯示一行欄位" #: db_qbe.php:200 libraries/db_structure.lib.php:104 -#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1014 +#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1010 msgid "Sort" msgstr "排序" #: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111 #: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828 -#: libraries/messages.inc.php:69 server_databases.php:170 +#: libraries/messages.inc.php:65 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314 msgid "Ascending" msgstr "遞增" #: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119 #: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825 -#: libraries/messages.inc.php:251 server_databases.php:170 +#: libraries/messages.inc.php:247 server_databases.php:170 #: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315 msgid "Descending" msgstr "遞減" #: db_qbe.php:264 db_tracking.php:78 libraries/display_tbl.lib.php:308 -#: libraries/messages.inc.php:888 tbl_change.php:277 tbl_tracking.php:597 +#: libraries/messages.inc.php:884 tbl_change.php:277 tbl_tracking.php:597 msgid "Show" msgstr "顯示" -#: db_qbe.php:300 libraries/messages.inc.php:202 +#: db_qbe.php:300 libraries/messages.inc.php:198 msgid "Criteria" msgstr "篩選" #: db_qbe.php:353 db_qbe.php:435 db_qbe.php:527 db_qbe.php:558 -#: libraries/messages.inc.php:718 +#: libraries/messages.inc.php:714 msgid "Ins" msgstr "新增" #: db_qbe.php:357 db_qbe.php:439 db_qbe.php:524 db_qbe.php:555 -#: libraries/messages.inc.php:56 +#: libraries/messages.inc.php:52 msgid "And" msgstr "與" #: db_qbe.php:366 db_qbe.php:447 db_qbe.php:529 db_qbe.php:560 -#: libraries/messages.inc.php:717 +#: libraries/messages.inc.php:713 msgid "Del" msgstr "移除" #: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553 -#: libraries/display_import.lib.php:166 libraries/messages.inc.php:592 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:588 #: libraries/tbl_properties.inc.php:779 server_privileges.php:258 #: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288 msgid "Or" msgstr "或" -#: db_qbe.php:507 libraries/messages.inc.php:516 +#: db_qbe.php:507 libraries/messages.inc.php:512 msgid "Modify" msgstr "修改" -#: db_qbe.php:584 libraries/messages.inc.php:33 +#: db_qbe.php:584 libraries/messages.inc.php:29 msgid "Add/Delete Criteria Row" msgstr "新增/減少 篩選列" -#: db_qbe.php:596 libraries/messages.inc.php:32 +#: db_qbe.php:596 libraries/messages.inc.php:28 msgid "Add/Delete Field Columns" msgstr "新增/減少 選擇欄" -#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1192 +#: db_qbe.php:609 db_qbe.php:634 libraries/messages.inc.php:1188 msgid "Update Query" msgstr "更新語法" -#: db_qbe.php:617 libraries/messages.inc.php:1216 +#: db_qbe.php:617 libraries/messages.inc.php:1212 msgid "Use Tables" msgstr "使用資料表" -#: db_qbe.php:640 libraries/messages.inc.php:723 +#: db_qbe.php:640 libraries/messages.inc.php:719 #, php-format msgid "SQL query on database %s:" msgstr "在資料庫 %s 執行 SQL 語法:" -#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:823 +#: db_qbe.php:934 libraries/common.lib.php:1223 libraries/messages.inc.php:819 msgid "Submit Query" msgstr "執行語法" #: db_search.php:68 libraries/auth/config.auth.lib.php:84 #: libraries/auth/config.auth.lib.php:103 #: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52 -#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:26 +#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:22 msgid "Access denied" msgstr "拒絕存取" -#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:836 +#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:832 msgid "at least one of the words" msgstr "任何一組文字" -#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:837 +#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:833 msgid "all words" msgstr "所有文字" -#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:838 +#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:834 msgid "the exact phrase" msgstr "完整詞語" -#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:839 +#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:835 msgid "as regular expression" msgstr "以規則表示法 (regular expression) 搜索" -#: db_search.php:242 libraries/messages.inc.php:840 +#: db_search.php:242 libraries/messages.inc.php:836 #, php-format msgid "Search results for \"%s\" %s:" msgstr "搜索 \"%s\" 的結果 %s:" -#: db_search.php:260 libraries/messages.inc.php:579 +#: db_search.php:260 libraries/messages.inc.php:575 #, php-format msgid "%s match(es) inside table %s" 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/messages.inc.php:108 +#: db_structure.php:105 libraries/messages.inc.php:104 #: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50 #: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468 msgid "Browse" msgstr "瀏覽" #: db_search.php:272 libraries/display_tbl.lib.php:1165 -#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:243 +#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:239 #: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406 #: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377 #: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216 @@ -584,45 +584,45 @@ msgstr "瀏覽" msgid "Delete" msgstr "刪除" -#: db_search.php:285 libraries/messages.inc.php:580 +#: db_search.php:285 libraries/messages.inc.php:576 #, php-format msgid "Total: %s match(es)" msgstr "總計: %s 項資料符合" -#: db_search.php:299 libraries/messages.inc.php:832 +#: db_search.php:299 libraries/messages.inc.php:828 msgid "Search in database" msgstr "搜索資料庫" -#: db_search.php:302 libraries/messages.inc.php:835 +#: db_search.php:302 libraries/messages.inc.php:831 msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgstr "尋找之文字或數值 (萬用字元: \"%\"):" -#: db_search.php:307 libraries/messages.inc.php:842 +#: db_search.php:307 libraries/messages.inc.php:838 msgid "Find:" msgstr "尋找:" -#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1017 +#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1013 msgid "Words are separated by a space character (\" \")." msgstr "每組文字以空格 (\" \") 分隔." -#: db_search.php:325 libraries/messages.inc.php:834 +#: db_search.php:325 libraries/messages.inc.php:830 msgid "Inside table(s):" msgstr "於以下資料表:" -#: db_search.php:355 libraries/messages.inc.php:833 +#: db_search.php:355 libraries/messages.inc.php:829 msgid "Inside field:" 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/messages.inc.php:431 libraries/sql_query_form.lib.php:334 +#: libraries/messages.inc.php:427 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/db_links.inc.php:63 libraries/export/latex.php:337 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:1048 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:1044 #: libraries/tbl_links.inc.php:56 pmd_general.php:134 #: server_privileges.php:554 server_replication.php:315 tbl_tracking.php:269 msgid "Structure" @@ -631,8 +631,8 @@ 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:1642 -#: libraries/db_links.inc.php:100 libraries/messages.inc.php:272 +#: libraries/Index.class.php:483 libraries/common.lib.php:1654 +#: libraries/db_links.inc.php:100 libraries/messages.inc.php:268 #: 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 @@ -642,40 +642,40 @@ 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:1641 -#: libraries/messages.inc.php:284 libraries/mult_submits.inc.php:39 +#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1653 +#: libraries/messages.inc.php:280 libraries/mult_submits.inc.php:39 #: libraries/tbl_links.inc.php:105 msgid "Empty" msgstr "清空" -#: db_structure.php:316 libraries/messages.inc.php:1075 +#: db_structure.php:316 libraries/messages.inc.php:1071 #: libraries/tbl_links.inc.php:100 #, php-format msgid "Table %s has been emptied" msgstr "資料表 %s 已被清空" -#: db_structure.php:326 libraries/messages.inc.php:1229 +#: db_structure.php:326 libraries/messages.inc.php:1225 #: libraries/tbl_links.inc.php:133 #, php-format msgid "View %s has been dropped" msgstr "檢視 %s 己被刪除." -#: db_structure.php:326 libraries/messages.inc.php:1074 +#: db_structure.php:326 libraries/messages.inc.php:1070 #: libraries/tbl_links.inc.php:133 #, php-format msgid "Table %s has been dropped" msgstr "資料表 %s 已被刪除" -#: db_structure.php:333 libraries/messages.inc.php:1128 +#: db_structure.php:333 libraries/messages.inc.php:1124 msgid "Tracking is active." msgstr "" -#: db_structure.php:335 libraries/messages.inc.php:1129 +#: db_structure.php:335 libraries/messages.inc.php:1125 msgid "Tracking is not active." msgstr "" #: db_structure.php:420 libraries/display_tbl.lib.php:1944 -#: libraries/messages.inc.php:1228 +#: libraries/messages.inc.php:1224 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation%" @@ -683,83 +683,83 @@ msgid "" msgstr "" #: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126 -#: libraries/messages.inc.php:1233 libraries/tbl_info.inc.php:66 +#: libraries/messages.inc.php:1229 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/messages.inc.php:773 libraries/server_links.inc.php:70 +#: libraries/messages.inc.php:769 libraries/server_links.inc.php:70 #: server_replication.php:33 server_replication.php:164 server_status.php:258 msgid "Replication" msgstr "複製" -#: db_structure.php:489 libraries/messages.inc.php:1053 +#: db_structure.php:489 libraries/messages.inc.php:1049 msgid "Sum" msgstr "總計" #: db_structure.php:496 libraries/StorageEngine.class.php:356 -#: libraries/messages.inc.php:239 +#: libraries/messages.inc.php:235 #, 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 #: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086 -#: libraries/messages.inc.php:1243 libraries/mult_submits.inc.php:16 +#: libraries/messages.inc.php:1239 libraries/mult_submits.inc.php:16 #: server_databases.php:346 server_databases.php:351 #: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465 msgid "With selected:" msgstr "選擇的資料表:" #: db_structure.php:527 libraries/display_tbl.lib.php:2076 -#: libraries/messages.inc.php:148 server_databases.php:348 +#: libraries/messages.inc.php:144 server_databases.php:348 #: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459 msgid "Check All" msgstr "全選" #: db_structure.php:531 libraries/display_tbl.lib.php:2077 -#: libraries/messages.inc.php:1184 libraries/replication_gui.lib.php:33 +#: libraries/messages.inc.php:1180 libraries/replication_gui.lib.php:33 #: server_databases.php:350 server_privileges.php:533 #: server_privileges.php:1564 tbl_structure.php:463 msgid "Uncheck All" msgstr "全部取消" -#: db_structure.php:536 libraries/messages.inc.php:150 +#: db_structure.php:536 libraries/messages.inc.php:146 msgid "Check tables having overhead" msgstr "檢查額外記錄 (overhead)" #: db_structure.php:547 db_structure.php:548 db_structure.php:599 -#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:672 +#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:668 #: libraries/mult_submits.inc.php:28 tbl_structure.php:493 #: tbl_structure.php:495 msgid "Print view" msgstr "列印檢視" -#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:153 +#: db_structure.php:549 db_structure.php:550 libraries/messages.inc.php:149 #: libraries/mult_submits.inc.php:42 tbl_operations.php:579 msgid "Check table" msgstr "檢查資料表" -#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:590 +#: db_structure.php:551 db_structure.php:552 libraries/messages.inc.php:586 #: libraries/mult_submits.inc.php:47 tbl_operations.php:619 #: tbl_structure.php:710 tbl_structure.php:712 msgid "Optimize table" msgstr "最佳化資料表" -#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:758 +#: db_structure.php:553 db_structure.php:554 libraries/messages.inc.php:754 #: libraries/mult_submits.inc.php:52 tbl_operations.php:609 msgid "Repair table" msgstr "修復資料表" -#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:55 +#: db_structure.php:555 db_structure.php:556 libraries/messages.inc.php:51 #: libraries/mult_submits.inc.php:57 tbl_operations.php:599 msgid "Analyze table" msgstr "分析資料表" #: db_structure.php:557 db_structure.php:558 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/messages.inc.php:310 +#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:306 #: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84 #: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109 #: server_privileges.php:1341 setup/frames/menu.inc.php:22 @@ -767,7 +767,7 @@ msgstr "分析資料表" msgid "Export" msgstr "輸出" -#: db_tracking.php:66 libraries/messages.inc.php:1151 +#: db_tracking.php:66 libraries/messages.inc.php:1147 msgid "Tracked tables" msgstr "" @@ -775,7 +775,7 @@ msgstr "" #: 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/header_printview.inc.php:58 libraries/messages.inc.php:212 +#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:208 #: navigation.php:233 server_databases.php:169 server_privileges.php:1621 #: server_privileges.php:1682 server_privileges.php:1940 #: server_processlist.php:56 server_synchronize.php:1179 @@ -783,97 +783,97 @@ msgstr "" msgid "Database" msgstr "資料庫" -#: db_tracking.php:73 libraries/messages.inc.php:1146 +#: db_tracking.php:73 libraries/messages.inc.php:1142 msgid "Last version" msgstr "" -#: db_tracking.php:74 libraries/messages.inc.php:1145 tbl_tracking.php:594 +#: db_tracking.php:74 libraries/messages.inc.php:1141 tbl_tracking.php:594 #, fuzzy msgid "Created" msgstr "建立" -#: db_tracking.php:75 libraries/messages.inc.php:1147 tbl_tracking.php:595 +#: db_tracking.php:75 libraries/messages.inc.php:1143 tbl_tracking.php:595 msgid "Updated" msgstr "" #: db_tracking.php:77 libraries/Index.class.php:440 -#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:27 +#: libraries/db_structure.lib.php:53 libraries/messages.inc.php:23 #: server_databases.php:203 server_privileges.php:1503 #: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187 msgid "Action" msgstr "執行" -#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:247 +#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:243 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:106 libraries/messages.inc.php:1142 tbl_tracking.php:548 +#: db_tracking.php:106 libraries/messages.inc.php:1138 tbl_tracking.php:548 #: tbl_tracking.php:606 tbl_tracking.php:613 msgid "active" msgstr "" -#: db_tracking.php:108 libraries/messages.inc.php:1143 tbl_tracking.php:550 +#: db_tracking.php:108 libraries/messages.inc.php:1139 tbl_tracking.php:550 #: tbl_tracking.php:608 tbl_tracking.php:610 msgid "not active" msgstr "" -#: db_tracking.php:121 libraries/messages.inc.php:1160 +#: db_tracking.php:121 libraries/messages.inc.php:1156 #, fuzzy msgid "Versions" msgstr "波斯語" -#: db_tracking.php:122 libraries/messages.inc.php:1132 tbl_tracking.php:379 +#: db_tracking.php:122 libraries/messages.inc.php:1128 tbl_tracking.php:379 #: tbl_tracking.php:624 msgid "Tracking report" msgstr "" -#: db_tracking.php:123 libraries/messages.inc.php:1144 tbl_tracking.php:251 +#: db_tracking.php:123 libraries/messages.inc.php:1140 tbl_tracking.php:251 #: tbl_tracking.php:624 #, fuzzy msgid "Structure snapshot" msgstr "只有結構" -#: db_tracking.php:152 libraries/messages.inc.php:1154 +#: db_tracking.php:152 libraries/messages.inc.php:1150 msgid "Untracked tables" msgstr "" -#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1153 +#: db_tracking.php:172 db_tracking.php:174 libraries/messages.inc.php:1149 #: tbl_structure.php:529 tbl_structure.php:531 #, fuzzy msgid "Track table" msgstr "檢查資料表" -#: db_tracking.php:200 libraries/messages.inc.php:1121 +#: db_tracking.php:200 libraries/messages.inc.php:1117 #, fuzzy msgid "Database Log" msgstr "資料庫" -#: export.php:62 libraries/messages.inc.php:312 +#: export.php:62 libraries/messages.inc.php:308 msgid "Selected export type has to be saved in file!" msgstr "" -#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:567 +#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:563 #, php-format msgid "Insufficient space to save the file %s." msgstr "空間不足儲存檔案 %s." -#: export.php:294 libraries/messages.inc.php:324 +#: export.php:294 libraries/messages.inc.php:320 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "檔案 %s 已存在,請更改檔案名稱或選擇「覆寫己存在檔案」選項." -#: export.php:298 export.php:302 libraries/messages.inc.php:562 +#: export.php:298 export.php:302 libraries/messages.inc.php:558 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Web 伺服器沒有權限儲存檔案 %s." -#: export.php:629 libraries/messages.inc.php:276 +#: export.php:629 libraries/messages.inc.php:272 #, php-format msgid "Dump has been saved to file %s." msgstr "備份已儲到檔案 %s." -#: import.php:60 libraries/messages.inc.php:1202 +#: import.php:60 libraries/messages.inc.php:1198 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation%" @@ -881,21 +881,21 @@ msgid "" msgstr "你正嘗試上載大容量檔案,請查看此 %s文件%s 如何略過此限制." #: import.php:279 import.php:332 libraries/File.class.php:849 -#: libraries/File.class.php:961 libraries/messages.inc.php:325 +#: libraries/File.class.php:961 libraries/messages.inc.php:321 msgid "File could not be read" msgstr "讀案無法讀取" #: import.php:287 import.php:296 import.php:315 import.php:324 #: libraries/File.class.php:1031 libraries/File.class.php:1039 #: libraries/File.class.php:1055 libraries/File.class.php:1063 -#: libraries/messages.inc.php:1189 +#: libraries/messages.inc.php:1185 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." msgstr "" -#: import.php:337 libraries/messages.inc.php:547 +#: import.php:337 libraries/messages.inc.php:543 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -903,39 +903,39 @@ msgid "" msgstr "" #: import.php:372 libraries/display_import.lib.php:24 -#: libraries/messages.inc.php:125 +#: libraries/messages.inc.php:121 msgid "Could not load import plugins, please check your installation!" msgstr "無法讀取載入的外掛程式, 請檢查安裝程序!" -#: import.php:397 libraries/messages.inc.php:102 +#: import.php:397 libraries/messages.inc.php:98 msgid "The bookmark has been deleted." msgstr "書籤已經刪除." -#: import.php:401 libraries/messages.inc.php:879 +#: import.php:401 libraries/messages.inc.php:875 msgid "Showing bookmark" msgstr "顯示書籤" -#: import.php:403 libraries/messages.inc.php:101 +#: import.php:403 libraries/messages.inc.php:97 #, php-format msgid "Bookmark %s created" msgstr "書籤 %s 已建立" -#: import.php:409 import.php:415 libraries/messages.inc.php:407 +#: import.php:409 import.php:415 libraries/messages.inc.php:403 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "載入成功, 共 %d 句語法已執行." -#: import.php:424 libraries/messages.inc.php:1107 +#: import.php:424 libraries/messages.inc.php:1103 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: index.php:190 libraries/messages.inc.php:553 +#: index.php:190 libraries/messages.inc.php:549 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin 較為適合使用在支援頁框的瀏覽器." -#: js/messages.php:25 libraries/messages.inc.php:155 +#: js/messages.php:25 libraries/messages.inc.php:151 #: server_synchronize.php:345 server_synchronize.php:357 #: server_synchronize.php:373 server_synchronize.php:380 #: server_synchronize.php:739 server_synchronize.php:767 @@ -943,118 +943,118 @@ msgstr "phpMyAdmin 較為適合使用在支援頁框的瀏覽器." msgid "Click to select" msgstr "" -#: js/messages.php:26 libraries/messages.inc.php:156 +#: js/messages.php:26 libraries/messages.inc.php:152 msgid "Click to unselect" msgstr "" #: js/messages.php:27 libraries/import.lib.php:103 -#: libraries/messages.inc.php:550 sql.php:89 +#: libraries/messages.inc.php:546 sql.php:89 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" 指令已經停用." -#: js/messages.php:30 libraries/messages.inc.php:270 +#: js/messages.php:30 libraries/messages.inc.php:266 #: libraries/mult_submits.inc.php:258 sql.php:188 msgid "Do you really want to " msgstr "您確定要 " -#: js/messages.php:31 libraries/messages.inc.php:271 +#: js/messages.php:31 libraries/messages.inc.php:267 #: libraries/mult_submits.inc.php:258 sql.php:172 msgid "You are about to DESTROY a complete database!" msgstr "您將會刪除整個資料庫!" -#: js/messages.php:34 libraries/messages.inc.php:94 +#: js/messages.php:34 libraries/messages.inc.php:90 msgid "You are about to DISABLE a BLOB Repository!" msgstr "" -#: js/messages.php:35 libraries/messages.inc.php:91 +#: js/messages.php:35 libraries/messages.inc.php:87 #, php-format msgid "Are you sure you want to disable all BLOB references for database %s?" msgstr "" -#: js/messages.php:38 libraries/messages.inc.php:342 +#: js/messages.php:38 libraries/messages.inc.php:338 msgid "Missing value in the form!" msgstr "表格內漏填一些資料!" -#: js/messages.php:39 libraries/messages.inc.php:570 +#: js/messages.php:39 libraries/messages.inc.php:566 msgid "This is not a number!" msgstr "這不是一個數字!" -#: js/messages.php:42 libraries/messages.inc.php:380 +#: js/messages.php:42 libraries/messages.inc.php:376 msgid "The host name is empty!" msgstr "請輸入主機名稱!" -#: js/messages.php:43 libraries/messages.inc.php:1208 +#: js/messages.php:43 libraries/messages.inc.php:1204 msgid "The user name is empty!" msgstr "請輸入使用者名稱!" -#: js/messages.php:44 libraries/messages.inc.php:607 +#: js/messages.php:44 libraries/messages.inc.php:603 #: server_privileges.php:1197 user_password.php:70 msgid "The password is empty!" msgstr "請輸入密碼!" -#: js/messages.php:45 libraries/messages.inc.php:609 +#: js/messages.php:45 libraries/messages.inc.php:605 #: server_privileges.php:1195 user_password.php:73 msgid "The passwords aren't the same!" msgstr "第二次輸入的密碼不同!" -#: js/messages.php:49 libraries/messages.inc.php:123 pmd_general.php:342 +#: js/messages.php:49 libraries/messages.inc.php:119 pmd_general.php:342 #: pmd_general.php:379 msgid "Cancel" msgstr "" -#: js/messages.php:52 libraries/messages.inc.php:514 +#: js/messages.php:52 libraries/messages.inc.php:510 msgid "Modifications have been saved" msgstr "修改已儲存" -#: js/messages.php:53 libraries/messages.inc.php:741 +#: js/messages.php:53 libraries/messages.inc.php:737 #, fuzzy msgid "Relation deleted" msgstr "關聯檢視" -#: js/messages.php:54 libraries/messages.inc.php:340 +#: js/messages.php:54 libraries/messages.inc.php:336 msgid "FOREIGN KEY relation added" msgstr "" -#: js/messages.php:55 libraries/messages.inc.php:434 +#: js/messages.php:55 libraries/messages.inc.php:430 #, fuzzy msgid "Internal relation added" msgstr "內部關聯" -#: js/messages.php:56 libraries/messages.inc.php:299 +#: js/messages.php:56 libraries/messages.inc.php:295 msgid "Error: Relation not added." msgstr "" -#: js/messages.php:57 libraries/messages.inc.php:300 +#: js/messages.php:57 libraries/messages.inc.php:296 msgid "Error: relation already exists." msgstr "" -#: js/messages.php:58 libraries/messages.inc.php:302 +#: js/messages.php:58 libraries/messages.inc.php:298 msgid "Error saving coordinates for Designer." msgstr "" -#: js/messages.php:59 libraries/messages.inc.php:351 +#: js/messages.php:59 libraries/messages.inc.php:347 #: libraries/relation.lib.php:107 msgid "General relation features" msgstr "一般關聯功能" -#: js/messages.php:59 libraries/messages.inc.php:260 +#: js/messages.php:59 libraries/messages.inc.php:256 #: libraries/relation.lib.php:101 libraries/relation.lib.php:108 msgid "Disabled" msgstr "未啟動" -#: js/messages.php:60 libraries/messages.inc.php:850 +#: js/messages.php:60 libraries/messages.inc.php:846 msgid "Select referenced key" msgstr "" -#: js/messages.php:61 libraries/messages.inc.php:848 +#: js/messages.php:61 libraries/messages.inc.php:844 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:62 libraries/messages.inc.php:653 +#: js/messages.php:62 libraries/messages.inc.php:649 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:63 libraries/messages.inc.php:142 pmd_general.php:77 +#: js/messages.php:63 libraries/messages.inc.php:138 pmd_general.php:77 #: tbl_relation.php:548 msgid "Choose field to display" msgstr "選擇顯示之欄位" @@ -1074,9 +1074,9 @@ msgid "Prev" msgstr "前一頁" #. l10n: Display text for next month link in calendar -#: js/messages.php:77 libraries/common.lib.php:2332 -#: libraries/common.lib.php:2335 libraries/display_tbl.lib.php:338 -#: libraries/messages.inc.php:543 server_binlog.php:205 server_binlog.php:207 +#: js/messages.php:77 libraries/common.lib.php:2344 +#: libraries/common.lib.php:2347 libraries/display_tbl.lib.php:338 +#: libraries/messages.inc.php:539 server_binlog.php:205 server_binlog.php:207 #: tbl_printview.php:424 tbl_structure.php:802 msgid "Next" msgstr "下一個" @@ -1151,27 +1151,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:97 libraries/common.lib.php:1543 +#: js/messages.php:97 libraries/common.lib.php:1555 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:99 libraries/common.lib.php:1545 +#: js/messages.php:99 libraries/common.lib.php:1557 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:101 libraries/common.lib.php:1547 +#: js/messages.php:101 libraries/common.lib.php:1559 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:103 libraries/common.lib.php:1549 +#: js/messages.php:103 libraries/common.lib.php:1561 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:105 libraries/common.lib.php:1551 +#: js/messages.php:105 libraries/common.lib.php:1563 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1179,37 +1179,37 @@ msgid "May" msgstr "May" #. l10n: Short month name -#: js/messages.php:107 libraries/common.lib.php:1553 +#: js/messages.php:107 libraries/common.lib.php:1565 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:109 libraries/common.lib.php:1555 +#: js/messages.php:109 libraries/common.lib.php:1567 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:111 libraries/common.lib.php:1557 +#: js/messages.php:111 libraries/common.lib.php:1569 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:113 libraries/common.lib.php:1559 +#: js/messages.php:113 libraries/common.lib.php:1571 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:115 libraries/common.lib.php:1561 +#: js/messages.php:115 libraries/common.lib.php:1573 msgid "Oct" msgstr "Oct" #. l10n: Short month name -#: js/messages.php:117 libraries/common.lib.php:1563 +#: js/messages.php:117 libraries/common.lib.php:1575 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:119 libraries/common.lib.php:1565 +#: js/messages.php:119 libraries/common.lib.php:1577 msgid "Dec" msgstr "Dec" @@ -1250,37 +1250,37 @@ msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:132 libraries/common.lib.php:1568 +#: js/messages.php:132 libraries/common.lib.php:1580 msgid "Sun" msgstr "Sun" #. l10n: Short week day name -#: js/messages.php:134 libraries/common.lib.php:1570 +#: js/messages.php:134 libraries/common.lib.php:1582 msgid "Mon" msgstr "Mon" #. l10n: Short week day name -#: js/messages.php:136 libraries/common.lib.php:1572 +#: js/messages.php:136 libraries/common.lib.php:1584 msgid "Tue" msgstr "Tue" #. l10n: Short week day name -#: js/messages.php:138 libraries/common.lib.php:1574 +#: js/messages.php:138 libraries/common.lib.php:1586 msgid "Wed" msgstr "Wed" #. l10n: Short week day name -#: js/messages.php:140 libraries/common.lib.php:1576 +#: js/messages.php:140 libraries/common.lib.php:1588 msgid "Thu" msgstr "Thu" #. l10n: Short week day name -#: js/messages.php:142 libraries/common.lib.php:1578 +#: js/messages.php:142 libraries/common.lib.php:1590 msgid "Fri" msgstr "Fri" #. l10n: Short week day name -#: js/messages.php:144 libraries/common.lib.php:1580 +#: js/messages.php:144 libraries/common.lib.php:1592 msgid "Sat" msgstr "Sat" @@ -1354,77 +1354,77 @@ msgstr "使用中" msgid "Second" msgstr "每秒" -#: libraries/Config.class.php:1015 libraries/messages.inc.php:338 +#: libraries/Config.class.php:1015 libraries/messages.inc.php:334 msgid "Font size" msgstr "" #: libraries/File.class.php:344 libraries/File.class.php:432 #: libraries/File.class.php:569 libraries/File.class.php:708 -#: libraries/messages.inc.php:1201 +#: libraries/messages.inc.php:1197 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.class.php:414 libraries/messages.inc.php:1198 +#: libraries/File.class.php:414 libraries/messages.inc.php:1194 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:417 libraries/messages.inc.php:1197 +#: libraries/File.class.php:417 libraries/messages.inc.php:1193 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:420 libraries/messages.inc.php:1200 +#: libraries/File.class.php:420 libraries/messages.inc.php:1196 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:423 libraries/messages.inc.php:1199 +#: libraries/File.class.php:423 libraries/messages.inc.php:1195 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:426 libraries/messages.inc.php:1195 +#: libraries/File.class.php:426 libraries/messages.inc.php:1191 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:429 libraries/messages.inc.php:1196 +#: libraries/File.class.php:429 libraries/messages.inc.php:1192 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:908 libraries/messages.inc.php:319 +#: libraries/File.class.php:908 libraries/messages.inc.php:315 #, fuzzy msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "可能接近. 請參看 FAQ 3.11" -#: libraries/Index.class.php:428 libraries/messages.inc.php:554 +#: libraries/Index.class.php:428 libraries/messages.inc.php:550 #: tbl_relation.php:529 msgid "No index defined!" msgstr "沒有已定義的索引!" -#: libraries/Index.class.php:433 libraries/messages.inc.php:411 +#: libraries/Index.class.php:433 libraries/messages.inc.php:407 #: server_databases.php:132 tbl_tracking.php:316 msgid "Indexes" msgstr "索引" -#: libraries/Index.class.php:444 libraries/messages.inc.php:1186 +#: libraries/Index.class.php:444 libraries/messages.inc.php:1182 #: 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:475 tbl_tracking.php:322 msgid "Unique" msgstr "唯一鍵 UNIQUE" -#: libraries/Index.class.php:445 libraries/messages.inc.php:596 +#: libraries/Index.class.php:445 libraries/messages.inc.php:592 #: tbl_tracking.php:323 msgid "Packed" msgstr "" -#: libraries/Index.class.php:447 libraries/messages.inc.php:131 +#: libraries/Index.class.php:447 libraries/messages.inc.php:127 #: tbl_tracking.php:325 msgid "Cardinality" msgstr "組別" -#: libraries/Index.class.php:450 libraries/messages.inc.php:162 +#: libraries/Index.class.php:450 libraries/messages.inc.php:158 #: tbl_tracking.php:279 tbl_tracking.php:328 #, fuzzy msgid "Comment" @@ -1433,29 +1433,29 @@ msgstr "註解" #: libraries/Index.class.php:466 libraries/common.lib.php:616 #: libraries/common.lib.php:1199 libraries/display_tbl.lib.php:1117 #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:280 pdf_pages.php:280 +#: libraries/messages.inc.php:276 pdf_pages.php:280 #: setup/frames/index.inc.php:124 setup/lib/messages.inc.php:352 #: tbl_row_action.php:69 msgid "Edit" msgstr "編輯" -#: libraries/Index.class.php:472 libraries/messages.inc.php:666 +#: libraries/Index.class.php:472 libraries/messages.inc.php:662 msgid "The primary key has been dropped" msgstr "主鍵已被刪除" -#: libraries/Index.class.php:476 libraries/messages.inc.php:413 +#: libraries/Index.class.php:476 libraries/messages.inc.php:409 #, php-format msgid "Index %s has been dropped" msgstr "索引 %s 已被刪除" -#: libraries/Index.class.php:576 libraries/messages.inc.php:412 +#: libraries/Index.class.php:576 libraries/messages.inc.php:408 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." msgstr "" -#: libraries/List_Database.class.php:431 libraries/messages.inc.php:218 +#: libraries/List_Database.class.php:431 libraries/messages.inc.php:214 #: libraries/server_links.inc.php:41 server_databases.php:88 #: server_privileges.php:1621 setup/lib/messages.inc.php:110 test/theme.php:93 msgid "Databases" @@ -1484,85 +1484,85 @@ msgid_plural "%1$d rows inserted." msgstr[0] "並無資料列已選擇" msgstr[1] "並無資料列已選擇" -#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:549 +#: libraries/StorageEngine.class.php:198 libraries/messages.inc.php:545 msgid "" "There is no detailed status information available for this storage engine." msgstr "這儲存引擎並無詳細的狀態資料." -#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:291 +#: libraries/StorageEngine.class.php:359 libraries/messages.inc.php:287 #, php-format msgid "%s is available on this MySQL server." msgstr "%s 已支援這 MySQL 伺服器." -#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:292 +#: libraries/StorageEngine.class.php:362 libraries/messages.inc.php:288 #, php-format msgid "%s has been disabled for this MySQL server." msgstr "%s 己於這個 MySQL 伺服器中停用." -#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:294 +#: libraries/StorageEngine.class.php:366 libraries/messages.inc.php:290 #, php-format msgid "This MySQL server does not support the %s storage engine." msgstr "這 MySQL 版本並不接受 %s 儲存引擎." -#: libraries/Table.class.php:1019 libraries/messages.inc.php:443 +#: libraries/Table.class.php:1019 libraries/messages.inc.php:439 msgid "Invalid database" msgstr "" -#: libraries/Table.class.php:1033 libraries/messages.inc.php:450 +#: libraries/Table.class.php:1033 libraries/messages.inc.php:446 #: tbl_get_field.php:26 msgid "Invalid table name" msgstr "" -#: libraries/Table.class.php:1048 libraries/messages.inc.php:301 +#: libraries/Table.class.php:1048 libraries/messages.inc.php:297 #, php-format msgid "Error renaming table %1$s to %2$s" msgstr "" -#: libraries/Table.class.php:1132 libraries/messages.inc.php:754 +#: libraries/Table.class.php:1132 libraries/messages.inc.php:750 #, php-format msgid "Table %s has been renamed to %s" msgstr "已經將資料表 %s 改名成 %s" -#: libraries/Theme.class.php:162 libraries/messages.inc.php:1099 +#: libraries/Theme.class.php:162 libraries/messages.inc.php:1095 #, php-format msgid "No valid image path for theme %s found!" msgstr "找不到佈景主題 %s 設定圖像之路徑!" -#: libraries/Theme.class.php:384 libraries/messages.inc.php:1097 +#: libraries/Theme.class.php:384 libraries/messages.inc.php:1093 msgid "No preview available." msgstr "並無預覽." -#: libraries/Theme.class.php:387 libraries/messages.inc.php:1089 +#: libraries/Theme.class.php:387 libraries/messages.inc.php:1085 msgid "take it" msgstr "選用" -#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1096 +#: libraries/Theme_Manager.class.php:115 libraries/messages.inc.php:1092 #, php-format msgid "Default theme %s not found!" msgstr "找不到預設佈景主題 %s !" -#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1098 +#: libraries/Theme_Manager.class.php:153 libraries/messages.inc.php:1094 #, php-format msgid "Theme %s not found!" msgstr "找不到佈景主題 %s !" -#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1100 +#: libraries/Theme_Manager.class.php:221 libraries/messages.inc.php:1096 #, php-format msgid "Theme path not found for theme %s!" msgstr "找不到佈景主題 %s 之設定路徑!" -#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1101 +#: libraries/Theme_Manager.class.php:297 libraries/messages.inc.php:1097 #: test/theme.php:161 themes.php:21 themes.php:41 msgid "Theme / Style" msgstr "款式" -#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:172 +#: libraries/auth/config.auth.lib.php:77 libraries/messages.inc.php:168 msgid "Cannot connect: invalid settings." msgstr "無法連線: 錯誤設定." #: libraries/auth/config.auth.lib.php:92 #: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65 -#: libraries/messages.inc.php:1238 test/theme.php:152 +#: libraries/messages.inc.php:1234 test/theme.php:152 #, php-format msgid "Welcome to %s" msgstr "歡迎使用 %s" @@ -1585,104 +1585,104 @@ msgstr "" "php 內檢查主機名稱, 登入名稱及密碼及確保這些資料是與系統管理人員所提供的 " "MySQL 伺服器資料相同" -#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:488 +#: libraries/auth/cookie.auth.lib.php:244 libraries/messages.inc.php:484 msgid "Log in" msgstr "登入" #: libraries/auth/cookie.auth.lib.php:246 -#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:659 +#: libraries/auth/cookie.auth.lib.php:248 libraries/messages.inc.php:655 #: libraries/navigation_header.inc.php:93 #: libraries/navigation_header.inc.php:95 msgid "phpMyAdmin documentation" msgstr "phpMyAdmin 說明文件" #: libraries/auth/cookie.auth.lib.php:258 -#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:492 +#: libraries/auth/cookie.auth.lib.php:259 libraries/messages.inc.php:488 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:493 +#: libraries/auth/cookie.auth.lib.php:258 libraries/messages.inc.php:489 msgid "Server:" msgstr "伺服器" -#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:494 +#: libraries/auth/cookie.auth.lib.php:263 libraries/messages.inc.php:490 msgid "Username:" msgstr "登入名稱:" -#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:491 +#: libraries/auth/cookie.auth.lib.php:267 libraries/messages.inc.php:487 msgid "Password:" msgstr "密碼:" -#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:854 +#: libraries/auth/cookie.auth.lib.php:274 libraries/messages.inc.php:850 msgid "Server Choice" msgstr "選擇伺服器" #: libraries/auth/cookie.auth.lib.php:320 libraries/header.inc.php:59 -#: libraries/messages.inc.php:177 +#: libraries/messages.inc.php:173 msgid "Cookies must be enabled past this point." msgstr "Cookies 必須啟動才能登入." #: libraries/auth/cookie.auth.lib.php:671 -#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:489 +#: libraries/auth/signon.auth.lib.php:181 libraries/messages.inc.php:485 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" #: libraries/auth/cookie.auth.lib.php:675 -#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:544 +#: libraries/auth/signon.auth.lib.php:185 libraries/messages.inc.php:540 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "由於已閒置了達 %s 秒, 請重新登入" #: libraries/auth/cookie.auth.lib.php:685 #: libraries/auth/cookie.auth.lib.php:687 -#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:126 +#: libraries/auth/signon.auth.lib.php:191 libraries/messages.inc.php:122 msgid "Cannot log in to the MySQL server" msgstr "無法登入 MySQL 伺服器" -#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1245 +#: libraries/auth/http.auth.lib.php:70 libraries/messages.inc.php:1241 msgid "Wrong username/password. Access denied." msgstr "錯誤的使用者名稱或密碼,拒絕存取" #: libraries/auth/swekey/swekey.auth.lib.php:118 -#: libraries/messages.inc.php:1057 +#: libraries/messages.inc.php:1053 #, php-format msgid "File %s does not contain any key id" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:157 #: libraries/auth/swekey/swekey.auth.lib.php:180 -#: libraries/messages.inc.php:1056 +#: libraries/messages.inc.php:1052 msgid "Hardware authentication failed" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:166 -#: libraries/messages.inc.php:1058 +#: libraries/messages.inc.php:1054 msgid "No valid authentication key plugged" msgstr "" #: libraries/auth/swekey/swekey.auth.lib.php:202 -#: libraries/messages.inc.php:1055 +#: libraries/messages.inc.php:1051 msgid "Authenticating..." msgstr "" -#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1230 +#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1226 msgid "View image" msgstr "" -#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:652 +#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:648 msgid "Play audio" msgstr "" -#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1232 +#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1228 msgid "View video" msgstr "" -#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:269 +#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:265 msgid "Download file" msgstr "" -#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:128 +#: libraries/charset_conversion.lib.php:17 libraries/messages.inc.php:124 msgid "" "Couldn't load the iconv or recode extension needed for charset conversion. " "Either configure PHP to enable these extensions or disable charset " @@ -1693,7 +1693,7 @@ msgstr "" #: libraries/charset_conversion.lib.php:79 #: libraries/charset_conversion.lib.php:90 -#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:130 +#: libraries/charset_conversion.lib.php:109 libraries/messages.inc.php:126 msgid "" "Couldn't use the iconv, libiconv, or recode_string functions, although the " "necessary extensions appear to be loaded. Check your PHP configuration." @@ -1701,7 +1701,7 @@ msgstr "" "當文編碼模組讀取後,未能使用 iconv, libiconv 或 recode_string 功能. 請檢查您" "的 php 設定." -#: libraries/common.inc.php:583 libraries/messages.inc.php:170 +#: libraries/common.inc.php:583 libraries/messages.inc.php:166 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!" @@ -1733,22 +1733,22 @@ msgstr " 必須在設定檔內設定 $cfg['PmaAbsoluteUri'] !" msgid "Invalid server index: %s" msgstr "伺服器索引錯誤: \"%s\"" -#: libraries/common.inc.php:636 libraries/messages.inc.php:448 +#: libraries/common.inc.php:636 libraries/messages.inc.php:444 #, 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/messages.inc.php:856 libraries/select_server.lib.php:41 +#: libraries/messages.inc.php:852 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/messages.inc.php:437 +#: libraries/common.inc.php:823 libraries/messages.inc.php:433 msgid "Invalid authentication method set in configuration:" msgstr "於設定內設定錯誤認證方式:" -#: libraries/common.lib.php:147 libraries/messages.inc.php:499 +#: libraries/common.lib.php:147 libraries/messages.inc.php:495 #, php-format msgid "Max: %s%s" msgstr "最大容量: %s%s" @@ -1770,7 +1770,7 @@ msgstr "zh" #: libraries/common.lib.php:428 libraries/common.lib.php:430 #: libraries/common.lib.php:432 libraries/common.lib.php:448 #: libraries/common.lib.php:450 libraries/dbg/setup.php:25 -#: libraries/display_export.lib.php:164 libraries/messages.inc.php:267 +#: libraries/display_export.lib.php:164 libraries/messages.inc.php:263 #: libraries/relation.lib.php:97 libraries/sql_query_form.lib.php:451 #: libraries/sql_query_form.lib.php:454 main.php:229 pdf_pages.php:37 #: pdf_pages.php:43 pdf_pages.php:49 pdf_pages.php:54 @@ -1780,55 +1780,55 @@ msgstr "說明文件" #: libraries/common.lib.php:581 libraries/core.lib.php:234 #: libraries/core.lib.php:263 libraries/import.lib.php:134 -#: libraries/messages.inc.php:297 pdf_schema.php:32 pdf_schema.php:232 +#: libraries/messages.inc.php:293 pdf_schema.php:32 pdf_schema.php:232 #: tbl_change.php:1027 tbl_operations.php:213 tbl_relation.php:290 #: view_operations.php:62 msgid "Error" msgstr "錯誤" #: libraries/common.lib.php:595 libraries/header_printview.inc.php:61 -#: libraries/messages.inc.php:1023 server_processlist.php:60 +#: libraries/messages.inc.php:1019 server_processlist.php:60 #: server_status.php:247 msgid "SQL query" msgstr "SQL 語法" -#: libraries/common.lib.php:634 libraries/messages.inc.php:538 +#: libraries/common.lib.php:634 libraries/messages.inc.php:534 msgid "MySQL said: " msgstr "MySQL 傳回: " -#: libraries/common.lib.php:667 libraries/messages.inc.php:76 +#: libraries/common.lib.php:667 libraries/messages.inc.php:72 #: pdf_schema.php:241 user_password.php:115 msgid "Back" msgstr "回上一頁" -#: libraries/common.lib.php:1177 libraries/messages.inc.php:309 +#: libraries/common.lib.php:1177 libraries/messages.inc.php:305 #: setup/lib/messages.inc.php:353 msgid "Explain SQL" msgstr "說明 SQL" -#: libraries/common.lib.php:1180 libraries/messages.inc.php:551 +#: libraries/common.lib.php:1180 libraries/messages.inc.php:547 msgid "Skip Explain SQL" msgstr "略過說明 SQL" -#: libraries/common.lib.php:1212 libraries/messages.inc.php:563 +#: libraries/common.lib.php:1212 libraries/messages.inc.php:559 msgid "Without PHP Code" msgstr "移除 PHP 程式碼" -#: libraries/common.lib.php:1215 libraries/messages.inc.php:649 +#: libraries/common.lib.php:1215 libraries/messages.inc.php:645 #: setup/lib/messages.inc.php:355 msgid "Create PHP Code" msgstr "建立 PHP 程式碼" -#: libraries/common.lib.php:1233 libraries/messages.inc.php:737 +#: libraries/common.lib.php:1233 libraries/messages.inc.php:733 #: server_status.php:341 setup/lib/messages.inc.php:354 msgid "Refresh" msgstr "更新" -#: libraries/common.lib.php:1242 libraries/messages.inc.php:575 +#: libraries/common.lib.php:1242 libraries/messages.inc.php:571 msgid "Skip Validate SQL" msgstr "略過檢查 SQL" -#: libraries/common.lib.php:1245 libraries/messages.inc.php:1220 +#: libraries/common.lib.php:1245 libraries/messages.inc.php:1216 #: setup/lib/messages.inc.php:356 sql.php:518 msgid "Validate SQL" msgstr "檢查 SQL" @@ -1844,11 +1844,11 @@ msgid "Inline" msgstr "引擎" #: libraries/common.lib.php:1332 libraries/common.lib.php:1347 -#: libraries/messages.inc.php:713 +#: libraries/messages.inc.php:709 msgid "Profiling" msgstr "" -#: libraries/common.lib.php:1351 libraries/messages.inc.php:1108 +#: libraries/common.lib.php:1351 libraries/messages.inc.php:1104 #: libraries/tbl_triggers.lib.php:28 server_processlist.php:58 msgid "Time" msgstr "時間" @@ -1882,46 +1882,56 @@ msgstr "PB" msgid "EiB" msgstr "EB" +#. l10n: Thousands separator +#: libraries/common.lib.php:1417 +msgid "," +msgstr "," + +#. l10n: Decimal separator +#: libraries/common.lib.php:1419 +msgid "." +msgstr "." + #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1584 +#: libraries/common.lib.php:1596 #: libraries/transformations/text_plain__dateformat.inc.php:28 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y, %I:%M %p" -#: libraries/common.lib.php:1886 +#: libraries/common.lib.php:1898 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s 日, %s 小時, %s 分鐘 %s 秒" -#: libraries/common.lib.php:2301 libraries/common.lib.php:2304 -#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:664 +#: libraries/common.lib.php:2313 libraries/common.lib.php:2316 +#: libraries/display_tbl.lib.php:290 libraries/messages.inc.php:660 #: server_status.php:608 msgid "Begin" msgstr "第一頁" -#: libraries/common.lib.php:2302 libraries/common.lib.php:2305 -#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:665 +#: libraries/common.lib.php:2314 libraries/common.lib.php:2317 +#: libraries/display_tbl.lib.php:291 libraries/messages.inc.php:661 #: server_binlog.php:168 server_binlog.php:170 msgid "Previous" msgstr "前一頁" -#: libraries/common.lib.php:2333 libraries/common.lib.php:2336 -#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:289 +#: libraries/common.lib.php:2345 libraries/common.lib.php:2348 +#: libraries/display_tbl.lib.php:353 libraries/messages.inc.php:285 msgid "End" msgstr "最後一頁" -#: libraries/common.lib.php:2409 libraries/messages.inc.php:455 +#: libraries/common.lib.php:2421 libraries/messages.inc.php:451 #, php-format msgid "Jump to database "%s"." msgstr "跳到資料庫 "%s"." -#: libraries/common.lib.php:2429 libraries/messages.inc.php:461 +#: libraries/common.lib.php:2441 libraries/messages.inc.php:457 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/core.lib.php:286 libraries/dbg/setup.php:22 -#: libraries/messages.inc.php:127 +#: libraries/messages.inc.php:123 #, php-format msgid "" "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " @@ -1929,115 +1939,115 @@ msgid "" msgstr "無法讀取 %s 模組,
請檢查 PHP 設定" #: libraries/db_events.inc.php:20 libraries/db_events.inc.php:22 -#: libraries/export/sql.php:415 libraries/messages.inc.php:306 +#: libraries/export/sql.php:415 libraries/messages.inc.php:302 msgid "Events" msgstr "" #: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41 -#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:541 +#: libraries/display_create_table.lib.php:53 libraries/messages.inc.php:537 #: libraries/tbl_triggers.lib.php:27 setup/frames/index.inc.php:112 msgid "Name" msgstr "名稱" -#: libraries/db_links.inc.php:45 libraries/messages.inc.php:216 +#: libraries/db_links.inc.php:45 libraries/messages.inc.php:212 #, php-format msgid "Database %s has been dropped." msgstr "資料庫 %s 已被刪除" #: libraries/db_links.inc.php:57 libraries/db_links.inc.php:58 -#: libraries/db_links.inc.php:59 libraries/messages.inc.php:234 +#: libraries/db_links.inc.php:59 libraries/messages.inc.php:230 msgid "Database seems to be empty!" msgstr "" -#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1025 +#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1021 #: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60 #: querywindow.php:99 test/theme.php:97 msgid "SQL" msgstr "SQL" -#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1152 +#: libraries/db_links.inc.php:81 libraries/messages.inc.php:1148 #: libraries/tbl_links.inc.php:69 msgid "Tracking" msgstr "" -#: libraries/db_links.inc.php:86 libraries/messages.inc.php:719 +#: libraries/db_links.inc.php:86 libraries/messages.inc.php:715 msgid "Query" msgstr "依範例查詢 (QBE)" -#: libraries/db_links.inc.php:91 libraries/messages.inc.php:253 +#: libraries/db_links.inc.php:91 libraries/messages.inc.php:249 msgid "Designer" msgstr "" -#: libraries/db_links.inc.php:98 libraries/messages.inc.php:397 +#: libraries/db_links.inc.php:98 libraries/messages.inc.php:393 #: libraries/server_links.inc.php:88 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:104 libraries/messages.inc.php:587 +#: libraries/db_links.inc.php:104 libraries/messages.inc.php:583 #: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117 #: view_operations.php:89 msgid "Operations" msgstr "管理" -#: libraries/db_links.inc.php:111 libraries/messages.inc.php:709 +#: libraries/db_links.inc.php:111 libraries/messages.inc.php:705 #: libraries/server_links.inc.php:66 server_privileges.php:72 #: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117 msgid "Privileges" msgstr "權限" #: libraries/db_routines.inc.php:30 libraries/db_routines.inc.php:32 -#: libraries/messages.inc.php:812 +#: libraries/messages.inc.php:808 msgid "Routines" msgstr "" -#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:811 +#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:807 msgid "Return type" msgstr "" #: libraries/db_structure.lib.php:57 libraries/display_tbl.lib.php:1848 -#: libraries/messages.inc.php:65 +#: libraries/messages.inc.php:61 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "可能接近. 請參看 FAQ 3.11" -#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:593 +#: libraries/db_structure.lib.php:69 libraries/messages.inc.php:589 #: server_databases.php:142 tbl_printview.php:336 tbl_structure.php:683 msgid "Overhead" msgstr "多餘" #: libraries/dbi/mysql.dbi.lib.php:112 libraries/dbi/mysqli.dbi.lib.php:124 -#: libraries/messages.inc.php:176 +#: libraries/messages.inc.php:172 msgid "Connection for controluser as defined in your configuration failed." msgstr "" #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355 -#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:855 +#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:851 msgid "The server is not responding" msgstr "伺服器並無回應" #: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410 -#: libraries/messages.inc.php:1010 +#: libraries/messages.inc.php:1006 msgid "(or the local MySQL server's socket is not correctly configured)" msgstr "( 或者本機 MySQL 伺服器之 socket 並未正確設定)" -#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:255 +#: libraries/dbi/mysql.dbi.lib.php:362 libraries/messages.inc.php:251 #: tbl_structure.php:609 msgid "Details..." msgstr "" -#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:143 +#: libraries/display_change_password.lib.php:30 libraries/messages.inc.php:139 #: main.php:91 user_password.php:111 user_password.php:129 msgid "Change password" msgstr "更改密碼" -#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:561 +#: libraries/display_change_password.lib.php:35 libraries/messages.inc.php:557 #: libraries/replication_gui.lib.php:341 server_privileges.php:768 msgid "No Password" msgstr "不用密碼" -#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:610 +#: libraries/display_change_password.lib.php:41 libraries/messages.inc.php:606 #: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60 #: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335 #: libraries/replication_gui.lib.php:345 server_privileges.php:757 @@ -2046,13 +2056,13 @@ msgstr "不用密碼" msgid "Password" msgstr "密碼" -#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:806 +#: libraries/display_change_password.lib.php:46 libraries/messages.inc.php:802 #: libraries/replication_gui.lib.php:349 libraries/replication_gui.lib.php:352 #: server_privileges.php:776 server_privileges.php:779 msgid "Re-type" msgstr "確認密碼" -#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:608 +#: libraries/display_change_password.lib.php:52 libraries/messages.inc.php:604 msgid "Password Hashing" msgstr "密碼雜湊" @@ -2062,90 +2072,90 @@ msgstr "密碼雜湊" msgid "MySQL 4.0 compatible" msgstr "MySQL 4.0 相容" -#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:353 +#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:349 #: libraries/replication_gui.lib.php:356 server_privileges.php:783 msgid "Generate Password" msgstr "產生密碼" -#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:352 +#: libraries/display_change_password.lib.php:75 libraries/messages.inc.php:348 #: libraries/replication_gui.lib.php:359 server_privileges.php:786 msgid "Generate" msgstr "產生" #: libraries/display_create_database.lib.php:22 -#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:189 +#: libraries/display_create_database.lib.php:36 libraries/messages.inc.php:185 msgid "Create new database" msgstr "建立新資料庫" -#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:185 +#: libraries/display_create_database.lib.php:30 libraries/messages.inc.php:181 msgid "Create" msgstr "建立" -#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:564 +#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:560 #: server_privileges.php:74 server_privileges.php:1388 #: server_replication.php:35 msgid "No Privileges" msgstr "沒有權限" -#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:445 +#: libraries/display_create_table.lib.php:41 libraries/messages.inc.php:441 msgid "Table must have at least one field." msgstr "資料表最少需要有一個欄位." -#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:190 +#: libraries/display_create_table.lib.php:48 libraries/messages.inc.php:186 #, php-format msgid "Create table on database %s" msgstr "建立新資料表於資料庫 %s" -#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:577 +#: libraries/display_create_table.lib.php:57 libraries/messages.inc.php:573 msgid "Number of fields" msgstr "欄位數目" -#: libraries/display_export.lib.php:42 libraries/messages.inc.php:124 +#: libraries/display_export.lib.php:42 libraries/messages.inc.php:120 #, fuzzy msgid "Could not load export plugins, please check your installation!" msgstr "無法讀取載入的外掛程式, 請檢查安裝程序!" -#: libraries/display_export.lib.php:107 libraries/messages.inc.php:277 +#: libraries/display_export.lib.php:107 libraries/messages.inc.php:273 #, php-format msgid "Dump %s row(s) starting at record # %s" msgstr "備份 %s 行, 由 %s 行開始." -#: libraries/display_export.lib.php:115 libraries/messages.inc.php:274 +#: libraries/display_export.lib.php:115 libraries/messages.inc.php:270 msgid "Dump all rows" msgstr "" -#: libraries/display_export.lib.php:125 libraries/messages.inc.php:852 +#: libraries/display_export.lib.php:125 libraries/messages.inc.php:848 #: setup/lib/messages.inc.php:82 msgid "Save as file" msgstr "下載儲存" -#: libraries/display_export.lib.php:134 libraries/messages.inc.php:828 +#: libraries/display_export.lib.php:134 libraries/messages.inc.php:824 #, php-format msgid "Save on server in %s directory" msgstr "儲存到伺服器於 %s 目錄" -#: libraries/display_export.lib.php:142 libraries/messages.inc.php:594 +#: libraries/display_export.lib.php:142 libraries/messages.inc.php:590 #: setup/lib/messages.inc.php:90 msgid "Overwrite existing file(s)" msgstr "覆寫已存在檔案" -#: libraries/display_export.lib.php:148 libraries/messages.inc.php:330 +#: libraries/display_export.lib.php:148 libraries/messages.inc.php:326 msgid "File name template" msgstr "檔案名稱樣式" -#: libraries/display_export.lib.php:152 libraries/messages.inc.php:327 +#: libraries/display_export.lib.php:152 libraries/messages.inc.php:323 msgid "server name" msgstr "伺服器名稱" -#: libraries/display_export.lib.php:155 libraries/messages.inc.php:326 +#: libraries/display_export.lib.php:155 libraries/messages.inc.php:322 msgid "database name" msgstr "資料庫名稱" -#: libraries/display_export.lib.php:158 libraries/messages.inc.php:328 +#: libraries/display_export.lib.php:158 libraries/messages.inc.php:324 msgid "table name" msgstr "資料表名稱" -#: libraries/display_export.lib.php:162 libraries/messages.inc.php:329 +#: libraries/display_export.lib.php:162 libraries/messages.inc.php:325 #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " @@ -2153,24 +2163,24 @@ msgid "" "3$s. Other text will be kept as is." msgstr "" -#: libraries/display_export.lib.php:202 libraries/messages.inc.php:331 +#: libraries/display_export.lib.php:202 libraries/messages.inc.php:327 msgid "remember template" msgstr "保留樣式名稱" #: libraries/display_export.lib.php:210 libraries/display_import.lib.php:178 -#: libraries/display_import.lib.php:191 libraries/messages.inc.php:145 +#: libraries/display_import.lib.php:191 libraries/messages.inc.php:141 #: libraries/sql_query_form.lib.php:549 msgid "Character set of the file:" msgstr "文字編碼檔案:" -#: libraries/display_export.lib.php:235 libraries/messages.inc.php:166 +#: libraries/display_export.lib.php:235 libraries/messages.inc.php:162 #: setup/lib/messages.inc.php:84 msgid "Compression" 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/messages.inc.php:558 +#: libraries/export/sql.php:868 libraries/messages.inc.php:554 #: libraries/tbl_properties.inc.php:575 server_privileges.php:1836 #: server_processlist.php:75 msgid "None" @@ -2194,341 +2204,341 @@ msgstr "\"gzipped\"" msgid "bzipped" msgstr "\"bzipped\"" -#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1018 +#: libraries/display_export.lib.php:274 libraries/messages.inc.php:1014 msgid "SQL compatibility mode" msgstr "SQL 兼容模式" -#: libraries/display_import.lib.php:67 libraries/messages.inc.php:398 +#: libraries/display_import.lib.php:67 libraries/messages.inc.php:394 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " "browsers." msgstr "" -#: libraries/display_import.lib.php:77 libraries/messages.inc.php:406 +#: libraries/display_import.lib.php:77 libraries/messages.inc.php:402 msgid "The file is being processed, please be patient." msgstr "" -#: libraries/display_import.lib.php:99 libraries/messages.inc.php:408 +#: libraries/display_import.lib.php:99 libraries/messages.inc.php:404 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." msgstr "" -#: libraries/display_import.lib.php:126 libraries/messages.inc.php:333 +#: libraries/display_import.lib.php:126 libraries/messages.inc.php:329 msgid "File to import" msgstr "載入檔案" -#: libraries/display_import.lib.php:137 libraries/messages.inc.php:486 +#: libraries/display_import.lib.php:137 libraries/messages.inc.php:482 #: libraries/sql_query_form.lib.php:524 msgid "Location of the text file" msgstr "文字檔案的位置" -#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1203 +#: libraries/display_import.lib.php:148 libraries/messages.inc.php:1199 msgid "File uploads are not allowed on this server." msgstr "" -#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1235 +#: libraries/display_import.lib.php:163 libraries/messages.inc.php:1231 #: libraries/sql_query_form.lib.php:533 tbl_change.php:1028 msgid "The directory you set for upload work cannot be reached" msgstr "設定之上載目錄錯誤,未能使用" -#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1236 +#: libraries/display_import.lib.php:166 libraries/messages.inc.php:1232 #: libraries/sql_query_form.lib.php:536 tbl_change.php:1031 msgid "web server upload directory" msgstr "Web 伺服器上載目錄" -#: libraries/display_import.lib.php:212 libraries/messages.inc.php:167 +#: libraries/display_import.lib.php:212 libraries/messages.inc.php:163 #, php-format msgid "Imported file compression will be automatically detected from: %s" msgstr "載入檔案壓縮會自動檢查: %s" -#: libraries/display_import.lib.php:219 libraries/messages.inc.php:600 +#: libraries/display_import.lib.php:219 libraries/messages.inc.php:596 msgid "Partial import" msgstr "部份載入" -#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1105 +#: libraries/display_import.lib.php:225 libraries/messages.inc.php:1101 #, php-format msgid "" "Previous import timed out, after resubmitting will continue from position %d." msgstr "" -#: libraries/display_import.lib.php:232 libraries/messages.inc.php:51 +#: libraries/display_import.lib.php:232 libraries/messages.inc.php:47 msgid "" "Allow the interruption of an import in case the script detects it is close " "to the PHP timeout limit. This might be good way to import large files, " "however it can break transactions." msgstr "" -#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1004 +#: libraries/display_import.lib.php:239 libraries/messages.inc.php:1000 #: setup/lib/messages.inc.php:161 msgid "Number of records (queries) to skip from start" msgstr "開始時略過多少行記錄 (語法)" -#: libraries/display_import.lib.php:255 libraries/messages.inc.php:396 +#: libraries/display_import.lib.php:255 libraries/messages.inc.php:392 #: setup/lib/messages.inc.php:160 msgid "Format of imported file" msgstr "載入檔案格式" #: libraries/display_select_lang.lib.php:45 -#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:465 +#: libraries/display_select_lang.lib.php:46 libraries/messages.inc.php:461 #: setup/frames/index.inc.php:70 msgid "Language" msgstr "" -#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:447 +#: libraries/display_tbl.lib.php:304 libraries/messages.inc.php:443 #, php-format msgid "%d is not valid row number." msgstr "%d 不是一個有效的列數數目." -#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:814 +#: libraries/display_tbl.lib.php:310 libraries/messages.inc.php:810 msgid "row(s) starting from record #" msgstr "筆記錄,開始列數:" -#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:817 +#: libraries/display_tbl.lib.php:316 libraries/messages.inc.php:813 msgid "horizontal" msgstr "水平" -#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:816 +#: libraries/display_tbl.lib.php:317 libraries/messages.inc.php:812 msgid "horizontal (rotated headers)" msgstr "垂直 (旋轉標題)" -#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:819 +#: libraries/display_tbl.lib.php:318 libraries/messages.inc.php:815 msgid "vertical" msgstr "垂直" -#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:818 +#: libraries/display_tbl.lib.php:324 libraries/messages.inc.php:814 #, php-format msgid "in %s mode and repeat headers after %s cells" msgstr "顯示為 %s 方式 及 每隔 %s 行顯示欄名" -#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:495 +#: libraries/display_tbl.lib.php:346 libraries/messages.inc.php:491 msgid "This operation could take a long time. Proceed anyway?" msgstr "這個作業所用時間會較長, 繼續?" -#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1012 +#: libraries/display_tbl.lib.php:512 libraries/messages.inc.php:1008 msgid "Sort by key" msgstr "依鍵名排序" #: libraries/display_tbl.lib.php:555 libraries/import.lib.php:1082 -#: libraries/import.lib.php:1104 libraries/messages.inc.php:591 +#: libraries/import.lib.php:1104 libraries/messages.inc.php:587 #: tbl_select.php:267 tbl_structure.php:754 #, fuzzy msgid "Options" msgstr "管理" #: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:570 -#: libraries/messages.inc.php:601 +#: libraries/messages.inc.php:597 msgid "Partial Texts" msgstr "顯示部份文字" #: libraries/display_tbl.lib.php:561 libraries/display_tbl.lib.php:574 -#: libraries/messages.inc.php:346 +#: libraries/messages.inc.php:342 msgid "Full Texts" msgstr "顯示完整文字" -#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:739 +#: libraries/display_tbl.lib.php:587 libraries/messages.inc.php:735 #, fuzzy msgid "Relational key" msgstr "關聯概要" -#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:738 +#: libraries/display_tbl.lib.php:588 libraries/messages.inc.php:734 msgid "Relational display field" msgstr "" -#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:872 +#: libraries/display_tbl.lib.php:595 libraries/messages.inc.php:868 msgid "Show binary contents" msgstr "" -#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:873 +#: libraries/display_tbl.lib.php:597 libraries/messages.inc.php:869 msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:871 +#: libraries/display_tbl.lib.php:599 libraries/messages.inc.php:867 msgid "Show binary contents as HEX" msgstr "" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:375 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:371 #: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320 msgid "Hide" msgstr "" -#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:508 +#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:504 #: libraries/tbl_properties.inc.php:144 transformation_overview.php:47 msgid "Browser transformation" msgstr "瀏覽器轉換方式" #: libraries/display_tbl.lib.php:1126 libraries/display_tbl.lib.php:1130 -#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:308 +#: libraries/display_tbl.lib.php:1132 libraries/messages.inc.php:304 msgid "Execute bookmarked query" msgstr "執行書籤查詢" #: libraries/display_tbl.lib.php:1145 libraries/display_tbl.lib.php:1157 -#: libraries/messages.inc.php:244 +#: libraries/messages.inc.php:240 msgid "The row has been deleted" msgstr "記錄已被刪除" #: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056 -#: libraries/messages.inc.php:460 server_processlist.php:71 +#: libraries/messages.inc.php:456 server_processlist.php:71 #: tbl_row_action.php:64 msgid "Kill" msgstr "Kill" -#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:849 +#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:845 msgid "in query" msgstr "查詢中" -#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:881 +#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:877 msgid "Showing rows" msgstr "顯示記錄" -#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1113 +#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1109 msgid "total" msgstr "總計" -#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:727 +#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:723 #: sql.php:524 #, php-format msgid "Query took %01.4f sec" msgstr "查詢需時 %01.4f 秒" -#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:135 +#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:131 #: 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:471 msgid "Change" msgstr "修改" -#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:724 +#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:720 msgid "Query results operations" msgstr "查詢結果操作" -#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:671 +#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:667 msgid "Print view (with full texts)" msgstr "列印檢視 (顯示完整文字)" -#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:482 +#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:478 msgid "Link not found" msgstr "找不到連結" -#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1224 +#: libraries/engines/bdb.lib.php:21 libraries/messages.inc.php:1220 #: main.php:228 msgid "Version information" msgstr "版本資訊" -#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:423 +#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:419 msgid "Data home directory" msgstr "資料主目錄" -#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:424 +#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:420 msgid "The common part of the directory path for all InnoDB data files." msgstr "所有 InnoDB 資料檔案的主資料目錄位置." -#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:422 +#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:418 msgid "Data files" msgstr "資料檔案" -#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:418 +#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:414 msgid "Autoextend increment" msgstr "自動伸延大小" -#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:419 +#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:415 msgid "" " The increment size for extending the size of an autoextending tablespace " "when it becomes full." msgstr "當資料表容量接近滿時, 自動增大容量的大小." -#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:420 +#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:416 msgid "Buffer pool size" msgstr "緩衝區大小" -#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:421 +#: libraries/engines/innodb.lib.php:43 libraries/messages.inc.php:417 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." msgstr "InnoDB 資料表用於快取資料及索引時使用的記憶體綬緩衝大小." -#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:112 +#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:108 msgid "Buffer Pool" msgstr "緩衝區" -#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:426 +#: libraries/engines/innodb.lib.php:145 libraries/messages.inc.php:422 #: server_status.php:306 msgid "InnoDB Status" msgstr "InnoDB 狀態" -#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:113 +#: libraries/engines/innodb.lib.php:189 libraries/messages.inc.php:109 msgid "Buffer Pool Usage" msgstr "緩衝區使用空間" -#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1114 +#: libraries/engines/innodb.lib.php:194 libraries/messages.inc.php:1110 #: server_databases.php:137 server_databases.php:305 server_status.php:414 #: server_status.php:475 server_status.php:496 tbl_printview.php:351 #: tbl_structure.php:697 msgid "Total" msgstr "總共" -#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:425 +#: libraries/engines/innodb.lib.php:197 libraries/messages.inc.php:421 msgid "pages" msgstr "頁" -#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:343 +#: libraries/engines/innodb.lib.php:206 libraries/messages.inc.php:339 msgid "Free pages" msgstr "閒置頁" -#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:259 +#: libraries/engines/innodb.lib.php:212 libraries/messages.inc.php:255 msgid "Dirty pages" msgstr "問題頁" -#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:230 +#: libraries/engines/innodb.lib.php:218 libraries/messages.inc.php:226 msgid "Pages containing data" msgstr "包含資料頁" -#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:598 +#: libraries/engines/innodb.lib.php:224 libraries/messages.inc.php:594 msgid "Pages to be flushed" msgstr "強迫更新頁" -#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:119 +#: libraries/engines/innodb.lib.php:230 libraries/messages.inc.php:115 msgid "Busy pages" msgstr "繁忙頁" -#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:467 +#: libraries/engines/innodb.lib.php:239 libraries/messages.inc.php:463 msgid "Latched pages" msgstr "鎖上頁" -#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:111 +#: libraries/engines/innodb.lib.php:250 libraries/messages.inc.php:107 msgid "Buffer Pool Activity" msgstr "緩衝區活動率" -#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:731 +#: libraries/engines/innodb.lib.php:254 libraries/messages.inc.php:727 msgid "Read requests" msgstr "讀取要求" -#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1244 +#: libraries/engines/innodb.lib.php:260 libraries/messages.inc.php:1240 msgid "Write requests" msgstr "寫入要求" -#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:115 +#: libraries/engines/innodb.lib.php:266 libraries/messages.inc.php:111 msgid "Read misses" msgstr "讀取遺漏" -#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:117 +#: libraries/engines/innodb.lib.php:272 libraries/messages.inc.php:113 msgid "Write waits" msgstr "寫入等候" -#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:114 +#: libraries/engines/innodb.lib.php:278 libraries/messages.inc.php:110 msgid "Read misses in %" msgstr "讀取遺漏 %" -#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:116 +#: libraries/engines/innodb.lib.php:286 libraries/messages.inc.php:112 msgid "Write waits in %" msgstr "寫入等候 %" -#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:522 +#: libraries/engines/myisam.lib.php:23 libraries/messages.inc.php:518 msgid "Data pointer size" msgstr "資料指標大小" -#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:523 +#: libraries/engines/myisam.lib.php:24 libraries/messages.inc.php:519 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." @@ -2536,11 +2546,11 @@ msgstr "" "預設的資料指標大小時當以 CREATE TABLE 建立 MyISAM 資料表, 而並無設定最大列數 " "(MAX_ROWS) 時, 將會以位完組為設定大小" -#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:528 +#: libraries/engines/myisam.lib.php:28 libraries/messages.inc.php:524 msgid "Automatic recovery mode" msgstr "自動修復模式" -#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:529 +#: libraries/engines/myisam.lib.php:29 libraries/messages.inc.php:525 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." @@ -2548,11 +2558,11 @@ msgstr "" "這個模式將會自動修復損壞之 MyISAM 資料表, 如同於伺服器啟動設定加入 --myisam-" "recover 選項." -#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:527 +#: libraries/engines/myisam.lib.php:32 libraries/messages.inc.php:523 msgid "Maximum size for temporary sort files" msgstr "臨時排序檔案最大容量" -#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:526 +#: libraries/engines/myisam.lib.php:33 libraries/messages.inc.php:522 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " @@ -2561,11 +2571,11 @@ msgstr "" "MySQL 用於重建 MyISAM 索引 (REPAIR TABLE, ALTER TABLE, 或 LOAD DATA INFILE) " "時的臨時檔案大小." -#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:525 +#: libraries/engines/myisam.lib.php:37 libraries/messages.inc.php:521 msgid "Maximum size for temporary files on index creation" msgstr "臨時檔案建立索引時最大的容量" -#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:524 +#: libraries/engines/myisam.lib.php:38 libraries/messages.inc.php:520 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " @@ -2573,21 +2583,21 @@ msgid "" msgstr "" "如臨時檔案用作快速 MyISAM 索引時大於這個設定的容量, 建議使用鍵名快取方式." -#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:531 +#: libraries/engines/myisam.lib.php:42 libraries/messages.inc.php:527 msgid "Repair threads" msgstr "修復工作" -#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:530 +#: libraries/engines/myisam.lib.php:43 libraries/messages.inc.php:526 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." msgstr "如數值大於 1 , MyISAM 資料表於修復時之索引將會以同步建立." -#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:533 +#: libraries/engines/myisam.lib.php:47 libraries/messages.inc.php:529 msgid "Sort buffer size" msgstr "排序緩衝大小" -#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:532 +#: libraries/engines/myisam.lib.php:48 libraries/messages.inc.php:528 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." @@ -2595,72 +2605,72 @@ msgstr "" "這個緩衝大小是分配給在執行修復資料表指令 (REPAIR TABLE) 、執行 CREATE INDEX " "或 ALTER TABLE 指令時, 用於排序 MyISAM 索引之用" -#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:620 +#: libraries/engines/pbxt.lib.php:23 libraries/messages.inc.php:616 msgid "Index cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:619 +#: libraries/engines/pbxt.lib.php:24 libraries/messages.inc.php:615 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." msgstr "" -#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:630 +#: libraries/engines/pbxt.lib.php:28 libraries/messages.inc.php:626 msgid "Record cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:629 +#: libraries/engines/pbxt.lib.php:29 libraries/messages.inc.php:625 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " "to the handle data (.xtd) and row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:624 +#: libraries/engines/pbxt.lib.php:33 libraries/messages.inc.php:620 msgid "Log cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:623 +#: libraries/engines/pbxt.lib.php:34 libraries/messages.inc.php:619 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:628 +#: libraries/engines/pbxt.lib.php:38 libraries/messages.inc.php:624 msgid "Log file threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:627 +#: libraries/engines/pbxt.lib.php:39 libraries/messages.inc.php:623 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:634 +#: libraries/engines/pbxt.lib.php:43 libraries/messages.inc.php:630 msgid "Transaction buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:633 +#: libraries/engines/pbxt.lib.php:44 libraries/messages.inc.php:629 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." msgstr "" -#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:611 +#: libraries/engines/pbxt.lib.php:48 libraries/messages.inc.php:607 msgid "Checkpoint frequency" msgstr "" -#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:612 +#: libraries/engines/pbxt.lib.php:49 libraries/messages.inc.php:608 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." msgstr "" -#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:615 +#: libraries/engines/pbxt.lib.php:53 libraries/messages.inc.php:611 msgid "Data log threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:616 +#: libraries/engines/pbxt.lib.php:54 libraries/messages.inc.php:612 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -2668,49 +2678,49 @@ msgid "" "that can be stored in the database." msgstr "" -#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:618 +#: libraries/engines/pbxt.lib.php:58 libraries/messages.inc.php:614 msgid "Garbage threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:617 +#: libraries/engines/pbxt.lib.php:59 libraries/messages.inc.php:613 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." msgstr "" -#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:622 +#: libraries/engines/pbxt.lib.php:63 libraries/messages.inc.php:618 #, fuzzy msgid "Log buffer size" msgstr "排序緩衝大小" -#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:621 +#: libraries/engines/pbxt.lib.php:64 libraries/messages.inc.php:617 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " "required to write a data log." msgstr "" -#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:613 +#: libraries/engines/pbxt.lib.php:68 libraries/messages.inc.php:609 msgid "Data file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:614 +#: libraries/engines/pbxt.lib.php:69 libraries/messages.inc.php:610 msgid "The grow size of the handle data (.xtd) files." msgstr "" -#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:632 +#: libraries/engines/pbxt.lib.php:73 libraries/messages.inc.php:628 msgid "Row file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:631 +#: libraries/engines/pbxt.lib.php:74 libraries/messages.inc.php:627 msgid "The grow size of the row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:626 +#: libraries/engines/pbxt.lib.php:78 libraries/messages.inc.php:622 msgid "Log file count" msgstr "" -#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:625 +#: libraries/engines/pbxt.lib.php:79 libraries/messages.inc.php:621 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -2720,19 +2730,19 @@ msgstr "" #: libraries/export/htmlword.php:132 libraries/export/odt.php:168 #: libraries/export/sql.php:881 libraries/export/texytext.php:130 -#: libraries/messages.inc.php:275 +#: libraries/messages.inc.php:271 msgid "Dumping data for table" msgstr "列出以下資料庫的數據:" #: libraries/export/htmlword.php:185 libraries/export/odt.php:238 #: libraries/export/sql.php:785 libraries/export/texytext.php:177 -#: libraries/messages.inc.php:1086 +#: libraries/messages.inc.php:1082 msgid "Table structure for table" msgstr "資料表格式:" #: libraries/export/latex.php:125 libraries/export/sql.php:232 #: libraries/export/xml.php:102 libraries/header_printview.inc.php:57 -#: libraries/messages.inc.php:381 libraries/replication_gui.lib.php:63 +#: libraries/messages.inc.php:377 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:170 libraries/replication_gui.lib.php:265 #: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325 #: server_privileges.php:692 server_privileges.php:695 @@ -2744,189 +2754,189 @@ msgstr "主機" #: libraries/export/latex.php:130 libraries/export/sql.php:233 #: libraries/export/xml.php:107 libraries/header_printview.inc.php:59 -#: libraries/messages.inc.php:354 +#: libraries/messages.inc.php:350 msgid "Generation Time" msgstr "建立日期" #: libraries/export/latex.php:131 libraries/export/sql.php:235 -#: libraries/export/xml.php:108 libraries/messages.inc.php:864 main.php:186 +#: libraries/export/xml.php:108 libraries/messages.inc.php:860 main.php:186 msgid "Server version" msgstr "伺服器版本" #: libraries/export/latex.php:132 libraries/export/sql.php:236 -#: libraries/export/xml.php:109 libraries/messages.inc.php:651 +#: libraries/export/xml.php:109 libraries/messages.inc.php:647 msgid "PHP Version" msgstr "PHP 版本" #: libraries/export/latex.php:201 libraries/export/sql.php:868 -#: libraries/messages.inc.php:226 server_databases.php:127 +#: libraries/messages.inc.php:222 server_databases.php:127 #: server_privileges.php:537 server_replication.php:316 tbl_printview.php:317 #: tbl_structure.php:666 msgid "Data" msgstr "資料" -#: libraries/export/odt.php:318 libraries/messages.inc.php:506 +#: libraries/export/odt.php:318 libraries/messages.inc.php:502 #: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "MIME 類型" -#: libraries/export/sql.php:387 libraries/messages.inc.php:711 +#: libraries/export/sql.php:387 libraries/messages.inc.php:707 #, fuzzy msgid "Procedures" msgstr "處理" -#: libraries/export/sql.php:401 libraries/messages.inc.php:348 +#: libraries/export/sql.php:401 libraries/messages.inc.php:344 #, fuzzy msgid "Functions" msgstr "函數" -#: libraries/export/sql.php:618 libraries/messages.inc.php:174 +#: libraries/export/sql.php:618 libraries/messages.inc.php:170 msgid "Constraints for dumped tables" msgstr "備份資料表限制" -#: libraries/export/sql.php:627 libraries/messages.inc.php:175 +#: libraries/export/sql.php:627 libraries/messages.inc.php:171 msgid "Constraints for table" msgstr "資料表限制" -#: libraries/export/sql.php:727 libraries/messages.inc.php:512 +#: libraries/export/sql.php:727 libraries/messages.inc.php:508 msgid "MIME TYPES FOR TABLE" msgstr "MIME TYPES FOR TABLE" -#: libraries/export/sql.php:739 libraries/messages.inc.php:743 +#: libraries/export/sql.php:739 libraries/messages.inc.php:739 msgid "RELATIONS FOR TABLE" msgstr "RELATIONS FOR TABLE" -#: libraries/export/sql.php:796 libraries/messages.inc.php:1178 +#: libraries/export/sql.php:796 libraries/messages.inc.php:1174 #: libraries/tbl_triggers.lib.php:19 msgid "Triggers" msgstr "" -#: libraries/export/sql.php:808 libraries/messages.inc.php:1046 +#: libraries/export/sql.php:808 libraries/messages.inc.php:1042 #, fuzzy msgid "Structure for view" msgstr "只有結構" -#: libraries/export/sql.php:817 libraries/messages.inc.php:1029 +#: libraries/export/sql.php:817 libraries/messages.inc.php:1025 msgid "Stand-in structure for view" msgstr "" #: libraries/footer.inc.php:184 libraries/footer.inc.php:195 -#: libraries/footer.inc.php:198 libraries/messages.inc.php:586 +#: libraries/footer.inc.php:198 libraries/messages.inc.php:582 msgid "Open new phpMyAdmin window" msgstr "開啟新 phpMyAdmin 視窗" -#: libraries/header.inc.php:115 libraries/messages.inc.php:542 +#: libraries/header.inc.php:115 libraries/messages.inc.php:538 #, fuzzy msgid "New table" msgstr "沒有資料表" #: libraries/header_printview.inc.php:50 libraries/header_printview.inc.php:55 -#: libraries/messages.inc.php:1024 +#: libraries/messages.inc.php:1020 msgid "SQL result" msgstr "SQL 查詢結果" -#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:350 +#: libraries/header_printview.inc.php:60 libraries/messages.inc.php:346 msgid "Generated by" msgstr "建立" #: libraries/header_printview.inc.php:63 libraries/import.lib.php:145 -#: libraries/messages.inc.php:820 navigation.php:652 navigation.php:674 +#: libraries/messages.inc.php:816 navigation.php:652 navigation.php:674 #: server_databases.php:122 tbl_printview.php:394 tbl_structure.php:366 #: tbl_structure.php:778 msgid "Rows" msgstr "資料列列數" -#: libraries/import.lib.php:150 libraries/messages.inc.php:285 sql.php:520 +#: libraries/import.lib.php:150 libraries/messages.inc.php:281 sql.php:520 #: tbl_change.php:181 tbl_get_field.php:35 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL 傳回的查詢結果為空 (原因可能為:沒有找到符合條件的記錄)" -#: libraries/import.lib.php:1078 libraries/messages.inc.php:399 +#: libraries/import.lib.php:1078 libraries/messages.inc.php:395 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1079 libraries/messages.inc.php:400 +#: libraries/import.lib.php:1079 libraries/messages.inc.php:396 msgid "View a structure`s contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1080 libraries/messages.inc.php:401 +#: libraries/import.lib.php:1080 libraries/messages.inc.php:397 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1081 libraries/messages.inc.php:402 +#: libraries/import.lib.php:1081 libraries/messages.inc.php:398 msgid "Edit its structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1084 libraries/messages.inc.php:362 +#: libraries/import.lib.php:1084 libraries/messages.inc.php:358 #, fuzzy msgid "Go to database" msgstr "沒有資料庫" #: libraries/import.lib.php:1087 libraries/import.lib.php:1111 -#: libraries/messages.inc.php:869 +#: libraries/messages.inc.php:865 msgid "settings" msgstr "" -#: libraries/import.lib.php:1106 libraries/messages.inc.php:363 +#: libraries/import.lib.php:1106 libraries/messages.inc.php:359 msgid "Go to table" msgstr "" -#: libraries/import.lib.php:1109 libraries/messages.inc.php:1047 +#: libraries/import.lib.php:1109 libraries/messages.inc.php:1043 #, fuzzy msgid "structure" msgstr "結構" -#: libraries/import.lib.php:1115 libraries/messages.inc.php:364 +#: libraries/import.lib.php:1115 libraries/messages.inc.php:360 msgid "Go to view" msgstr "" #: libraries/import/csv.php:58 libraries/import/csv.php:70 #: libraries/import/csv.php:74 libraries/import/csv.php:78 -#: libraries/messages.inc.php:442 +#: libraries/messages.inc.php:438 #, php-format msgid "Invalid parameter for CSV import: %s" msgstr "CSV 載入時參數錯誤: %s" -#: libraries/import/csv.php:59 libraries/messages.inc.php:323 +#: libraries/import/csv.php:59 libraries/messages.inc.php:319 msgid "Fields terminated by" msgstr "「欄位分隔」使用字元:" -#: libraries/import/csv.php:71 libraries/messages.inc.php:320 +#: libraries/import/csv.php:71 libraries/messages.inc.php:316 msgid "Fields enclosed by" msgstr "「欄位」使用字元:" -#: libraries/import/csv.php:75 libraries/messages.inc.php:321 +#: libraries/import/csv.php:75 libraries/messages.inc.php:317 msgid "Fields escaped by" msgstr "「ESCAPE」使用字元:" -#: libraries/import/csv.php:79 libraries/messages.inc.php:481 +#: libraries/import/csv.php:79 libraries/messages.inc.php:477 msgid "Lines terminated by" msgstr "「下一行」使用字元:" -#: libraries/import/csv.php:119 libraries/messages.inc.php:439 +#: libraries/import/csv.php:119 libraries/messages.inc.php:435 #, php-format msgid "Invalid column (%s) specified!" msgstr "欄 (%s) 區分錯誤.!" #: libraries/import/csv.php:177 libraries/import/csv.php:424 -#: libraries/messages.inc.php:441 +#: libraries/messages.inc.php:437 #, php-format msgid "Invalid format of CSV input on line %d." msgstr "Invalid format of CSV 檔案第 %d 行中之格式錯誤." -#: libraries/import/csv.php:312 libraries/messages.inc.php:440 +#: libraries/import/csv.php:312 libraries/messages.inc.php:436 #, php-format msgid "Invalid field count in CSV input on line %d." msgstr "CSV 檔案第 %d 行中之欄位總數錯誤." -#: libraries/import/ldi.php:55 libraries/messages.inc.php:446 +#: libraries/import/ldi.php:55 libraries/messages.inc.php:442 msgid "This plugin does not support compressed imports!" msgstr "這外掛程式不支援壓縮輸入!" #: libraries/import/xml.php:74 libraries/import/xml.php:130 -#: libraries/messages.inc.php:1247 +#: libraries/messages.inc.php:1243 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." @@ -2956,786 +2966,776 @@ msgstr "" msgid "ltr" msgstr "ltr" -#. l10n: Thousands separator -#: libraries/messages.inc.php:21 -msgid "," -msgstr "," - -#. l10n: Decimal separator -#: libraries/messages.inc.php:23 -msgid "." -msgstr "." - -#: libraries/messages.inc.php:25 server_status.php:461 +#: libraries/messages.inc.php:21 server_status.php:461 msgid "Aborted" msgstr "取消" -#: libraries/messages.inc.php:28 main.php:68 +#: libraries/messages.inc.php:24 main.php:68 #, fuzzy msgid "Actions" msgstr "執行" -#: libraries/messages.inc.php:34 libraries/tbl_properties.inc.php:780 +#: libraries/messages.inc.php:30 libraries/tbl_properties.inc.php:780 #: tbl_structure.php:543 #, php-format msgid "Add %s field(s)" msgstr "新增 %s 個欄位" -#: libraries/messages.inc.php:35 +#: libraries/messages.inc.php:31 msgid "Add custom comment into header (\\n splits lines)" msgstr "於標題加入個人註解 (\\n 開新行)" -#: libraries/messages.inc.php:36 +#: libraries/messages.inc.php:32 msgid "Add into comments" msgstr "加入註解文字" -#: libraries/messages.inc.php:37 tbl_structure.php:541 +#: libraries/messages.inc.php:33 tbl_structure.php:541 msgid "Add new field" msgstr "增加新欄位" -#: libraries/messages.inc.php:38 server_privileges.php:1886 +#: libraries/messages.inc.php:34 server_privileges.php:1886 msgid "Add privileges on the following database" msgstr "於以下資料庫加入權限" -#: libraries/messages.inc.php:39 server_privileges.php:1907 +#: libraries/messages.inc.php:35 server_privileges.php:1907 msgid "Add privileges on the following table" msgstr "於以下資料表加入權限" -#: libraries/messages.inc.php:40 tbl_select.php:288 +#: libraries/messages.inc.php:36 tbl_select.php:288 msgid "Add search conditions (body of the \"where\" clause):" msgstr "增加檢索條件 (\"where\" 子句的主體)" -#: libraries/messages.inc.php:41 tbl_indexes.php:251 +#: libraries/messages.inc.php:37 tbl_indexes.php:251 #, php-format msgid "Add to index  %s column(s)" msgstr "新增  %s  組索引欄" -#: libraries/messages.inc.php:42 server_privileges.php:1570 +#: libraries/messages.inc.php:38 server_privileges.php:1570 #: server_privileges.php:1594 server_privileges.php:1988 #: server_privileges.php:2177 msgid "Add a new User" msgstr "新增使用者" -#: libraries/messages.inc.php:43 server_privileges.php:931 +#: libraries/messages.inc.php:39 server_privileges.php:931 msgid "You have added a new user." msgstr "您已新增了一個新使用者." -#: libraries/messages.inc.php:44 server_privileges.php:571 +#: libraries/messages.inc.php:40 server_privileges.php:571 msgid "Administration" msgstr "系統管理" -#: libraries/messages.inc.php:45 tbl_structure.php:557 +#: libraries/messages.inc.php:41 tbl_structure.php:557 #, php-format msgid "After %s" msgstr "在 %s 之後" -#: libraries/messages.inc.php:46 tbl_change.php:1147 +#: libraries/messages.inc.php:42 tbl_change.php:1147 msgid "Go back to previous page" msgstr "返回" -#: libraries/messages.inc.php:47 tbl_change.php:1148 +#: libraries/messages.inc.php:43 tbl_change.php:1148 msgid "Insert another new row" msgstr "新增一筆記錄" -#: libraries/messages.inc.php:48 tbl_change.php:1160 +#: libraries/messages.inc.php:44 tbl_change.php:1160 msgid "Edit next row" msgstr "編輯新一列" -#: libraries/messages.inc.php:49 tbl_change.php:1152 +#: libraries/messages.inc.php:45 tbl_change.php:1152 msgid "Go back to this page" msgstr "返回這頁" -#: libraries/messages.inc.php:50 querywindow.php:115 +#: libraries/messages.inc.php:46 querywindow.php:115 msgid "All" msgstr "全部" -#: libraries/messages.inc.php:53 tbl_operations.php:249 +#: libraries/messages.inc.php:49 tbl_operations.php:249 msgid "Alter table order by" msgstr "根據欄位內容排序記錄" -#: libraries/messages.inc.php:54 tbl_operations.php:660 +#: libraries/messages.inc.php:50 tbl_operations.php:660 msgid "Analyze" msgstr "" -#: libraries/messages.inc.php:57 +#: libraries/messages.inc.php:53 #, fuzzy msgid "and" msgstr "與" -#: libraries/messages.inc.php:59 pmd_general.php:87 +#: libraries/messages.inc.php:55 pmd_general.php:87 msgid "Angular links" msgstr "" -#: libraries/messages.inc.php:60 tbl_structure.php:401 tbl_structure.php:415 +#: libraries/messages.inc.php:56 tbl_structure.php:401 tbl_structure.php:415 #: tbl_structure.php:429 #, php-format msgid "An index has been added on %s" msgstr "索引已經新增到 %s" -#: libraries/messages.inc.php:61 server_privileges.php:1521 +#: libraries/messages.inc.php:57 server_privileges.php:1521 #: server_privileges.php:2123 msgid "Any" msgstr "任何" -#: libraries/messages.inc.php:62 libraries/replication_gui.lib.php:298 +#: libraries/messages.inc.php:58 libraries/replication_gui.lib.php:298 #: server_privileges.php:725 msgid "Any host" msgstr "任何主機" -#: libraries/messages.inc.php:63 libraries/replication_gui.lib.php:250 +#: libraries/messages.inc.php:59 libraries/replication_gui.lib.php:250 #: server_privileges.php:677 msgid "Any user" msgstr "任何使用者" -#: libraries/messages.inc.php:64 server_synchronize.php:449 +#: libraries/messages.inc.php:60 server_synchronize.php:449 #: server_synchronize.php:894 msgid "Apply Selected Changes" msgstr "" -#: libraries/messages.inc.php:66 tbl_structure.php:386 +#: libraries/messages.inc.php:62 tbl_structure.php:386 #, php-format msgid "A primary key has been added on %s" msgstr "主鍵已經新增到 %s" -#: libraries/messages.inc.php:67 libraries/mysql_charsets.lib.php:368 +#: libraries/messages.inc.php:63 libraries/mysql_charsets.lib.php:368 msgid "Arabic" msgstr "阿拉伯語" -#: libraries/messages.inc.php:68 libraries/mysql_charsets.lib.php:359 +#: libraries/messages.inc.php:64 libraries/mysql_charsets.lib.php:359 msgid "Armenian" msgstr "美式英語" -#: libraries/messages.inc.php:70 libraries/tbl_properties.inc.php:394 +#: libraries/messages.inc.php:66 libraries/tbl_properties.inc.php:394 msgid "As defined:" msgstr "" -#: libraries/messages.inc.php:71 tbl_structure.php:556 +#: libraries/messages.inc.php:67 tbl_structure.php:556 msgid "At Beginning of Table" msgstr "於資料表開頭" -#: libraries/messages.inc.php:72 tbl_structure.php:555 +#: libraries/messages.inc.php:68 tbl_structure.php:555 msgid "At End of Table" msgstr "於資料表尾端" -#: libraries/messages.inc.php:73 libraries/tbl_properties.inc.php:108 +#: libraries/messages.inc.php:69 libraries/tbl_properties.inc.php:108 #: pdf_schema.php:1264 pdf_schema.php:1285 tbl_printview.php:144 #: tbl_structure.php:180 msgid "Attributes" msgstr "屬性" -#: libraries/messages.inc.php:74 pdf_pages.php:303 pdf_pages.php:306 +#: libraries/messages.inc.php:70 pdf_pages.php:303 pdf_pages.php:306 msgid "Automatic layout" msgstr "自動格式" -#: libraries/messages.inc.php:77 libraries/mysql_charsets.lib.php:354 +#: libraries/messages.inc.php:73 libraries/mysql_charsets.lib.php:354 msgid "Baltic" msgstr "波羅的海語" -#: libraries/messages.inc.php:78 libraries/sqlparser.lib.php:175 +#: libraries/messages.inc.php:74 libraries/sqlparser.lib.php:175 msgid "BEGIN CUT" msgstr "開始 剪取" -#: libraries/messages.inc.php:79 libraries/sqlparser.lib.php:179 +#: libraries/messages.inc.php:75 libraries/sqlparser.lib.php:179 msgid "BEGIN RAW" msgstr "開始 原始資料" -#: libraries/messages.inc.php:80 libraries/mysql_charsets.lib.php:201 +#: libraries/messages.inc.php:76 libraries/mysql_charsets.lib.php:201 #: libraries/mysql_charsets.lib.php:402 tbl_change.php:518 msgid "Binary" msgstr "二進制碼" -#: libraries/messages.inc.php:81 tbl_change.php:894 +#: libraries/messages.inc.php:77 tbl_change.php:894 msgid "Binary - do not edit" msgstr "二進制碼 - 不能編輯" -#: libraries/messages.inc.php:82 libraries/server_links.inc.php:76 +#: libraries/messages.inc.php:78 libraries/server_links.inc.php:76 #: server_binlog.php:110 server_status.php:253 test/theme.php:121 msgid "Binary log" msgstr "二進制記錄" -#: libraries/messages.inc.php:83 server_binlog.php:217 +#: libraries/messages.inc.php:79 server_binlog.php:217 msgid "Event type" msgstr "事件方式" -#: libraries/messages.inc.php:84 server_binlog.php:220 +#: libraries/messages.inc.php:80 server_binlog.php:220 msgid "Information" msgstr "資料" -#: libraries/messages.inc.php:85 server_binlog.php:215 +#: libraries/messages.inc.php:81 server_binlog.php:215 msgid "Log name" msgstr "記錄檔案稱" -#: libraries/messages.inc.php:86 server_binlog.php:219 +#: libraries/messages.inc.php:82 server_binlog.php:219 msgid "Original position" msgstr "原有位置" -#: libraries/messages.inc.php:87 server_binlog.php:216 +#: libraries/messages.inc.php:83 server_binlog.php:216 msgid "Position" msgstr "位置" -#: libraries/messages.inc.php:88 libraries/replication_gui.lib.php:169 +#: libraries/messages.inc.php:84 libraries/replication_gui.lib.php:169 #: server_binlog.php:218 msgid "Server ID" msgstr "伺服器 ID" -#: libraries/messages.inc.php:92 +#: libraries/messages.inc.php:88 #, fuzzy msgctxt "$strBLOBRepositoryDisabled" msgid "Disabled" msgstr "未啟動" -#: libraries/messages.inc.php:95 +#: libraries/messages.inc.php:91 #, fuzzy msgctxt "$strBLOBRepositoryEnabled" msgid "Enabled" msgstr "啟動" -#: libraries/messages.inc.php:97 tbl_change.php:888 +#: libraries/messages.inc.php:93 tbl_change.php:888 msgid "Remove BLOB Repository Reference" msgstr "" -#: libraries/messages.inc.php:98 +#: libraries/messages.inc.php:94 #, fuzzy msgctxt "$strBLOBRepositoryRepair" msgid "Repair" msgstr "修復資料表" -#: libraries/messages.inc.php:99 tbl_change.php:987 +#: libraries/messages.inc.php:95 tbl_change.php:987 msgid "Upload to BLOB repository" msgstr "" -#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:359 +#: libraries/messages.inc.php:96 libraries/sql_query_form.lib.php:359 #: sql.php:677 msgid "Let every user access this bookmark" msgstr "所有用者可讀取此書籤" -#: libraries/messages.inc.php:103 sql.php:671 +#: libraries/messages.inc.php:99 sql.php:671 msgid "Label" msgstr "書籤名稱" -#: libraries/messages.inc.php:104 libraries/sql_query_form.lib.php:433 +#: libraries/messages.inc.php:100 libraries/sql_query_form.lib.php:433 msgid "Bookmarked SQL query" msgstr "SQL 語法書籤" -#: libraries/messages.inc.php:105 libraries/sql_query_form.lib.php:365 +#: libraries/messages.inc.php:101 libraries/sql_query_form.lib.php:365 msgid "Replace existing bookmark of same name" msgstr "取代相同名稱之書籤" -#: libraries/messages.inc.php:106 libraries/sql_query_form.lib.php:352 +#: libraries/messages.inc.php:102 libraries/sql_query_form.lib.php:352 #: sql.php:665 sql.php:666 sql.php:683 msgid "Bookmark this SQL query" msgstr "將此 SQL 語法加入書籤" -#: libraries/messages.inc.php:107 libraries/sql_query_form.lib.php:466 +#: libraries/messages.inc.php:103 libraries/sql_query_form.lib.php:466 msgid "View only" msgstr "查看" -#: libraries/messages.inc.php:109 tbl_structure.php:161 +#: libraries/messages.inc.php:105 tbl_structure.php:161 msgid "Browse distinct values" msgstr "瀏覽不同數值" -#: libraries/messages.inc.php:110 tbl_change.php:252 tbl_select.php:27 +#: libraries/messages.inc.php:106 tbl_change.php:252 tbl_select.php:27 #: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34 msgid "Browse foreign values" msgstr "瀏覽外來值" -#: libraries/messages.inc.php:118 libraries/mysql_charsets.lib.php:213 +#: libraries/messages.inc.php:114 libraries/mysql_charsets.lib.php:213 msgid "Bulgarian" msgstr "保加利亞語" -#: libraries/messages.inc.php:120 +#: libraries/messages.inc.php:116 msgid "\"bzipped\"" msgstr "\"bzipped\"" -#: libraries/messages.inc.php:122 +#: libraries/messages.inc.php:118 msgid "Calendar" msgstr "日曆" -#: libraries/messages.inc.php:129 tbl_indexes.php:75 +#: libraries/messages.inc.php:125 tbl_indexes.php:75 msgid "Can't rename index to PRIMARY!" msgstr "無法將索引更名為 PRIMARY!" -#: libraries/messages.inc.php:132 libraries/mysql_charsets.lib.php:223 +#: libraries/messages.inc.php:128 libraries/mysql_charsets.lib.php:223 #: libraries/mysql_charsets.lib.php:409 msgid "case-insensitive" msgstr "大小寫不相符" -#: libraries/messages.inc.php:133 libraries/mysql_charsets.lib.php:226 +#: libraries/messages.inc.php:129 libraries/mysql_charsets.lib.php:226 #: libraries/mysql_charsets.lib.php:411 msgid "case-sensitive" msgstr "大小寫相符" -#: libraries/messages.inc.php:134 libraries/mysql_charsets.lib.php:332 +#: libraries/messages.inc.php:130 libraries/mysql_charsets.lib.php:332 msgid "Central European" msgstr "中歐語" -#: libraries/messages.inc.php:136 server_privileges.php:1969 +#: libraries/messages.inc.php:132 server_privileges.php:1969 msgid "... keep the old one." msgstr "... 保留舊使用者." -#: libraries/messages.inc.php:137 server_privileges.php:1967 +#: libraries/messages.inc.php:133 server_privileges.php:1967 msgid "Create a new user with the same privileges and ..." msgstr "建立新使用者及使用相同之權限, 及 ..." -#: libraries/messages.inc.php:138 server_privileges.php:1972 +#: libraries/messages.inc.php:134 server_privileges.php:1972 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." msgstr " ... 刪除舊使用者及重新讀取權限資料表." -#: libraries/messages.inc.php:139 server_privileges.php:1970 +#: libraries/messages.inc.php:135 server_privileges.php:1970 msgid " ... delete the old one from the user tables." msgstr " ... 刪除舊使用者." -#: libraries/messages.inc.php:140 server_privileges.php:1971 +#: libraries/messages.inc.php:136 server_privileges.php:1971 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." msgstr " ... 廢除所有舊使用者有效之權限並刪除." -#: libraries/messages.inc.php:141 server_privileges.php:1964 +#: libraries/messages.inc.php:137 server_privileges.php:1964 msgid "Change Login Information / Copy User" msgstr "更改登入資訊 / 複製使用者" -#: libraries/messages.inc.php:144 libraries/mysql_charsets.lib.php:107 +#: libraries/messages.inc.php:140 libraries/mysql_charsets.lib.php:107 msgid "Charset" msgstr "文字編碼 (Charset)" -#: libraries/messages.inc.php:146 server_collations.php:40 +#: libraries/messages.inc.php:142 server_collations.php:40 msgid "Character Sets and Collations" msgstr "文字編碼及校對" -#: libraries/messages.inc.php:147 libraries/server_links.inc.php:57 +#: libraries/messages.inc.php:143 libraries/server_links.inc.php:57 #: test/theme.php:109 msgid "Charsets" msgstr "文字編碼" -#: libraries/messages.inc.php:149 tbl_operations.php:661 +#: libraries/messages.inc.php:145 tbl_operations.php:661 #, fuzzy msgid "Check" msgstr "捷克語" -#: libraries/messages.inc.php:151 server_databases.php:293 +#: libraries/messages.inc.php:147 server_databases.php:293 #: server_databases.php:294 msgid "Check Privileges" msgstr "查詢權限" -#: libraries/messages.inc.php:152 server_databases.php:289 +#: libraries/messages.inc.php:148 server_databases.php:289 #, php-format msgid "Check privileges for database "%s"." msgstr "查詢資料庫 "%s" 之權限." -#: libraries/messages.inc.php:154 pdf_pages.php:261 +#: libraries/messages.inc.php:150 pdf_pages.php:261 msgid "Please choose a page to edit" msgstr "請選擇需要編輯的頁碼" -#: libraries/messages.inc.php:157 +#: libraries/messages.inc.php:153 msgid "Displaying Column Comments" msgstr "顯示欄位註解" -#: libraries/messages.inc.php:159 pdf_pages.php:483 view_create.php:148 +#: libraries/messages.inc.php:155 pdf_pages.php:483 view_create.php:148 msgid "Column names" msgstr "欄位名稱" -#: libraries/messages.inc.php:160 server_privileges.php:1685 +#: libraries/messages.inc.php:156 server_privileges.php:1685 msgid "Column-specific privileges" msgstr "指定欄位權限" -#: libraries/messages.inc.php:164 +#: libraries/messages.inc.php:160 msgid "MySQL 4.0 compatible" msgstr "MySQL 4.0 相容" -#: libraries/messages.inc.php:165 +#: libraries/messages.inc.php:161 msgid "Complete inserts" msgstr "使用完整新增指令" -#: libraries/messages.inc.php:168 +#: libraries/messages.inc.php:164 #, php-format msgid "Could not load default configuration from: \"%1$s\"" msgstr "無法讀取預設設定: \"%1$s\"" -#: libraries/messages.inc.php:169 main.php:306 +#: libraries/messages.inc.php:165 main.php:306 msgid "" "Directory [code]config[/code], which is used by the setup script, still " "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" -#: libraries/messages.inc.php:171 pdf_schema.php:672 +#: libraries/messages.inc.php:167 pdf_schema.php:672 #, php-format msgid "Please configure the coordinates for table %s" msgstr "請設定表格 %s 內的坐標" -#: libraries/messages.inc.php:173 server_status.php:433 +#: libraries/messages.inc.php:169 server_status.php:433 msgid "Connections" msgstr "連線" -#: libraries/messages.inc.php:179 tbl_operations.php:509 +#: libraries/messages.inc.php:175 tbl_operations.php:509 msgid "Copy table to (database.table):" msgstr "複製資料表到: (格式為 資料庫名稱.資料表名稱):" -#: libraries/messages.inc.php:180 tbl_move_copy.php:58 +#: libraries/messages.inc.php:176 tbl_move_copy.php:58 #, php-format msgid "Table %s has been copied to %s." msgstr "已經將資料表 %s 複製為 %s." -#: libraries/messages.inc.php:181 tbl_move_copy.php:48 +#: libraries/messages.inc.php:177 tbl_move_copy.php:48 msgid "Can't copy table to same one!" msgstr "無法複製到相同資料表!" -#: libraries/messages.inc.php:182 server_synchronize.php:94 +#: libraries/messages.inc.php:178 server_synchronize.php:94 msgid "Could not connect to the source" msgstr "" -#: libraries/messages.inc.php:183 server_synchronize.php:97 +#: libraries/messages.inc.php:179 server_synchronize.php:97 msgid "Could not connect to the target" msgstr "" -#: libraries/messages.inc.php:184 server_processlist.php:24 +#: libraries/messages.inc.php:180 server_processlist.php:24 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin 無法中斷指令 %s. 可能這指令已經結束." -#: libraries/messages.inc.php:187 +#: libraries/messages.inc.php:183 #, php-format msgid "Create an index on %s columns" msgstr "新增  %s  組索引欄" -#: libraries/messages.inc.php:188 tbl_indexes.php:160 +#: libraries/messages.inc.php:184 tbl_indexes.php:160 msgid "Create a new index" msgstr "新增一組索引" -#: libraries/messages.inc.php:191 pdf_pages.php:297 pmd_pdf.php:114 +#: libraries/messages.inc.php:187 pdf_pages.php:297 pmd_pdf.php:114 msgid "Create a page" msgstr "建立新一頁" -#: libraries/messages.inc.php:192 +#: libraries/messages.inc.php:188 msgid "Creation of PDFs" msgstr "建立 PDF" -#: libraries/messages.inc.php:193 pmd_general.php:74 pmd_general.php:306 +#: libraries/messages.inc.php:189 pmd_general.php:74 pmd_general.php:306 msgid "Create relation" msgstr "" -#: libraries/messages.inc.php:194 pmd_general.php:71 +#: libraries/messages.inc.php:190 pmd_general.php:71 #: server_synchronize.php:429 server_synchronize.php:872 #, fuzzy msgid "Create table" msgstr "建立新一頁" -#: libraries/messages.inc.php:195 +#: libraries/messages.inc.php:191 #, fuzzy msgctxt "$strCreateTableShort" msgid "Create table" msgstr "建立新一頁" -#: libraries/messages.inc.php:196 server_privileges.php:1994 +#: libraries/messages.inc.php:192 server_privileges.php:1994 msgid "Database for user" msgstr "" -#: libraries/messages.inc.php:197 server_privileges.php:1999 +#: libraries/messages.inc.php:193 server_privileges.php:1999 msgid "Create database with same name and grant all privileges" msgstr "" -#: libraries/messages.inc.php:198 +#: libraries/messages.inc.php:194 #, fuzzy msgctxt "$strCreateUserDatabaseNone" msgid "None" msgstr "不適用" -#: libraries/messages.inc.php:199 server_privileges.php:2003 +#: libraries/messages.inc.php:195 server_privileges.php:2003 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "查詢資料庫 "%s" 之權限." -#: libraries/messages.inc.php:200 server_privileges.php:2000 +#: libraries/messages.inc.php:196 server_privileges.php:2000 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: libraries/messages.inc.php:201 +#: libraries/messages.inc.php:197 msgid "Creation/Update/Check dates" msgstr "建立/更新/檢查 日期" -#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:229 +#: libraries/messages.inc.php:199 libraries/mysql_charsets.lib.php:229 msgid "Croatian" msgstr "克羅西亞語" -#: libraries/messages.inc.php:204 +#: libraries/messages.inc.php:200 msgid "CSV" msgstr "CSV 資料" -#: libraries/messages.inc.php:205 libraries/server_synchronize.lib.php:1343 +#: libraries/messages.inc.php:201 libraries/server_synchronize.lib.php:1343 #: libraries/server_synchronize.lib.php:1369 msgid "Current server" msgstr "" -#: libraries/messages.inc.php:206 main.php:159 +#: libraries/messages.inc.php:202 main.php:159 msgid "Custom color" msgstr "" -#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:365 +#: libraries/messages.inc.php:203 libraries/mysql_charsets.lib.php:365 msgid "Cyrillic" msgstr "西里爾語" -#: libraries/messages.inc.php:208 libraries/mysql_charsets.lib.php:232 +#: libraries/messages.inc.php:204 libraries/mysql_charsets.lib.php:232 msgid "Czech" msgstr "捷克語" -#: libraries/messages.inc.php:209 libraries/mysql_charsets.lib.php:383 +#: libraries/messages.inc.php:205 libraries/mysql_charsets.lib.php:383 msgid "Czech-Slovak" msgstr "捷克語" -#: libraries/messages.inc.php:211 libraries/mysql_charsets.lib.php:235 +#: libraries/messages.inc.php:207 libraries/mysql_charsets.lib.php:235 msgid "Danish" msgstr "丹麥語" -#: libraries/messages.inc.php:214 +#: libraries/messages.inc.php:210 msgid "Database export options" msgstr "資料庫輸出選項" -#: libraries/messages.inc.php:217 server_synchronize.php:122 +#: libraries/messages.inc.php:213 server_synchronize.php:122 #: server_synchronize.php:125 tbl_create.php:82 tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "" -#: libraries/messages.inc.php:219 server_databases.php:63 +#: libraries/messages.inc.php:215 server_databases.php:63 #, php-format msgid "%s databases have been dropped successfully." msgstr "%s 個資料庫已成功刪除." -#: libraries/messages.inc.php:220 libraries/server_synchronize.lib.php:1341 +#: libraries/messages.inc.php:216 libraries/server_synchronize.lib.php:1341 #: server_synchronize.php:1110 #, fuzzy msgid "Source database" msgstr "搜索資料庫" -#: libraries/messages.inc.php:221 server_databases.php:88 +#: libraries/messages.inc.php:217 server_databases.php:88 msgid "Databases statistics" msgstr "資料庫統計" -#: libraries/messages.inc.php:222 server_databases.php:362 +#: libraries/messages.inc.php:218 server_databases.php:362 #: server_databases.php:363 msgid "Disable Statistics" msgstr "停止統計數據" -#: libraries/messages.inc.php:223 server_databases.php:358 +#: libraries/messages.inc.php:219 server_databases.php:358 #: server_databases.php:359 msgid "Enable Statistics" msgstr "啟動統計數據" -#: libraries/messages.inc.php:224 server_databases.php:366 +#: libraries/messages.inc.php:220 server_databases.php:366 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." msgstr "註: 啟動資料庫統計數據可能會產生大量由 Web 伺服器及 MySQL 之間的流量." -#: libraries/messages.inc.php:225 libraries/server_synchronize.lib.php:1367 +#: libraries/messages.inc.php:221 libraries/server_synchronize.lib.php:1367 #: server_synchronize.php:1112 #, fuzzy msgid "Target database" msgstr "搜索資料庫" -#: libraries/messages.inc.php:228 server_synchronize.php:425 +#: libraries/messages.inc.php:224 server_synchronize.php:425 #: server_synchronize.php:868 msgid "Data Difference" msgstr "" -#: libraries/messages.inc.php:231 server_synchronize.php:272 +#: libraries/messages.inc.php:227 server_synchronize.php:272 msgid "Data Synchronization" msgstr "" -#: libraries/messages.inc.php:235 server_privileges.php:526 +#: libraries/messages.inc.php:231 server_privileges.php:526 #: server_privileges.php:1679 msgid "Database-specific privileges" msgstr "指定資料庫權限" -#: libraries/messages.inc.php:237 server_privileges.php:2136 +#: libraries/messages.inc.php:233 server_privileges.php:2136 msgid "database-specific" msgstr "指定資料庫" -#: libraries/messages.inc.php:240 libraries/tbl_properties.inc.php:106 +#: libraries/messages.inc.php:236 libraries/tbl_properties.inc.php:106 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" msgstr "預設值: 請只輸入該預設值, 無需加上任何反斜線或引號" -#: libraries/messages.inc.php:241 tbl_operations.php:589 +#: libraries/messages.inc.php:237 tbl_operations.php:589 msgid "Defragment table" msgstr "整理資料表" -#: libraries/messages.inc.php:242 +#: libraries/messages.inc.php:238 msgid "Use delayed inserts" msgstr "使用延遲式新增" -#: libraries/messages.inc.php:245 server_privileges.php:1243 +#: libraries/messages.inc.php:241 server_privileges.php:1243 msgid "No users selected for deleting!" msgstr "並未選擇需要刪除之使用者!" -#: libraries/messages.inc.php:246 pmd_general.php:372 +#: libraries/messages.inc.php:242 pmd_general.php:372 msgid "Delete relation" msgstr "" -#: libraries/messages.inc.php:248 server_privileges.php:1232 +#: libraries/messages.inc.php:244 server_privileges.php:1232 #, php-format msgid "Deleting %s" msgstr "刪除 %s" -#: libraries/messages.inc.php:249 libraries/sql_query_form.lib.php:388 +#: libraries/messages.inc.php:245 libraries/sql_query_form.lib.php:388 msgid "Delimiter" msgstr "" -#: libraries/messages.inc.php:250 pdf_pages.php:506 +#: libraries/messages.inc.php:246 pdf_pages.php:506 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" msgstr "本頁的參考到資料表已不存在. 您希望刪除這些參考嗎?" -#: libraries/messages.inc.php:254 pmd_help.php:29 +#: libraries/messages.inc.php:250 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." msgstr "" -#: libraries/messages.inc.php:256 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:252 libraries/mysql_charsets.lib.php:247 msgid "dictionary" msgstr "字典" -#: libraries/messages.inc.php:257 libraries/server_synchronize.lib.php:1348 +#: libraries/messages.inc.php:253 libraries/server_synchronize.lib.php:1348 msgid "Difference" msgstr "" -#: libraries/messages.inc.php:258 pmd_general.php:87 +#: libraries/messages.inc.php:254 pmd_general.php:87 msgid "Direct links" msgstr "" -#: libraries/messages.inc.php:261 +#: libraries/messages.inc.php:257 msgid "Disable foreign key checks" msgstr "暫定外來鍵 (Foreign Key) 檢查" -#: libraries/messages.inc.php:262 +#: libraries/messages.inc.php:258 msgid "Display Features" msgstr "功能顯示" -#: libraries/messages.inc.php:263 tbl_select.php:301 +#: libraries/messages.inc.php:259 tbl_select.php:301 msgid "Display order:" msgstr "顯示次序" -#: libraries/messages.inc.php:265 tbl_select.php:132 +#: libraries/messages.inc.php:261 tbl_select.php:132 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "以範例查詢 (萬用字元 : \"%\")" -#: libraries/messages.inc.php:266 +#: libraries/messages.inc.php:262 msgid "DocSQL" msgstr "" -#: libraries/messages.inc.php:268 +#: libraries/messages.inc.php:264 msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/messages.inc.php:273 server_privileges.php:1579 +#: libraries/messages.inc.php:269 server_privileges.php:1579 #: server_privileges.php:1580 server_privileges.php:1581 msgid "Drop the databases that have the same names as the users." msgstr "刪除與使用者相同名稱之資料庫." -#: libraries/messages.inc.php:278 tbl_printview.php:382 tbl_structure.php:743 +#: libraries/messages.inc.php:274 tbl_printview.php:382 tbl_structure.php:743 msgid "dynamic" msgstr "動態" -#: libraries/messages.inc.php:282 server_privileges.php:1324 +#: libraries/messages.inc.php:278 server_privileges.php:1324 #: server_privileges.php:1610 msgid "Edit Privileges" msgstr "編輯權限" -#: libraries/messages.inc.php:283 tbl_printview.php:341 tbl_structure.php:688 +#: libraries/messages.inc.php:279 tbl_printview.php:341 tbl_structure.php:688 msgid "Effective" msgstr "實際" -#: libraries/messages.inc.php:286 libraries/relation.lib.php:100 +#: libraries/messages.inc.php:282 libraries/relation.lib.php:100 msgid "Enabled" msgstr "啟動" -#: libraries/messages.inc.php:287 +#: libraries/messages.inc.php:283 msgid "Enclose export in a transaction" msgstr "使用事務塊 (Transaction) 方式" -#: libraries/messages.inc.php:288 libraries/sqlparser.lib.php:177 +#: libraries/messages.inc.php:284 libraries/sqlparser.lib.php:177 msgid "END CUT" msgstr "結束 剪取" -#: libraries/messages.inc.php:290 libraries/sqlparser.lib.php:183 +#: libraries/messages.inc.php:286 libraries/sqlparser.lib.php:183 msgid "END RAW" msgstr "結束 原始資料" -#: libraries/messages.inc.php:293 libraries/server_links.inc.php:61 +#: libraries/messages.inc.php:289 libraries/server_links.inc.php:61 #: test/theme.php:113 msgid "Engines" msgstr "引擎" -#: libraries/messages.inc.php:295 libraries/mysql_charsets.lib.php:238 +#: libraries/messages.inc.php:291 libraries/mysql_charsets.lib.php:238 msgid "English" msgstr "英語" -#: libraries/messages.inc.php:296 server_privileges.php:393 +#: libraries/messages.inc.php:292 server_privileges.php:393 #: server_privileges.php:535 server_privileges.php:1501 msgid " Note: MySQL privilege names are expressed in English " msgstr "注意: MySQL 權限名稱會以英語顯示" -#: libraries/messages.inc.php:298 libraries/zip_extension.lib.php:49 +#: libraries/messages.inc.php:294 libraries/zip_extension.lib.php:49 #: libraries/zip_extension.lib.php:51 libraries/zip_extension.lib.php:66 msgid "Error in ZIP archive:" msgstr "ZIP 檔案錯誤:" -#: libraries/messages.inc.php:303 libraries/mysql_charsets.lib.php:241 +#: libraries/messages.inc.php:299 libraries/mysql_charsets.lib.php:241 msgid "Esperanto" msgstr "世界語" -#: libraries/messages.inc.php:304 libraries/mysql_charsets.lib.php:244 +#: libraries/messages.inc.php:300 libraries/mysql_charsets.lib.php:244 msgid "Estonian" msgstr "愛沙尼亞語" -#: libraries/messages.inc.php:305 libraries/tbl_triggers.lib.php:29 +#: libraries/messages.inc.php:301 libraries/tbl_triggers.lib.php:29 #, fuzzy msgid "Event" msgstr "送出" -#: libraries/messages.inc.php:307 +#: libraries/messages.inc.php:303 msgid "Excel edition" msgstr "Excel 版本" -#: libraries/messages.inc.php:311 pmd_pdf.php:85 +#: libraries/messages.inc.php:307 pmd_pdf.php:85 msgid "Export/Import to scale" msgstr "" -#: libraries/messages.inc.php:313 +#: libraries/messages.inc.php:309 msgid "Extended inserts" msgstr "伸延新增模式" -#: libraries/messages.inc.php:314 pdf_schema.php:1267 pdf_schema.php:1288 +#: libraries/messages.inc.php:310 pdf_schema.php:1267 pdf_schema.php:1288 #: tbl_printview.php:147 tbl_structure.php:183 tbl_tracking.php:278 msgid "Extra" msgstr "附加" -#: libraries/messages.inc.php:316 server_status.php:447 +#: libraries/messages.inc.php:312 server_status.php:447 msgid "Failed attempts" msgstr "嘗試失敗" -#: libraries/messages.inc.php:318 tbl_structure.php:375 +#: libraries/messages.inc.php:314 tbl_structure.php:375 #, php-format msgid "Field %s has been dropped" msgstr "資料表 %s 已被刪除" -#: libraries/messages.inc.php:322 libraries/sql_query_form.lib.php:317 +#: libraries/messages.inc.php:318 libraries/sql_query_form.lib.php:317 msgid "Fields" msgstr "欄位" -#: libraries/messages.inc.php:332 server_binlog.php:136 +#: libraries/messages.inc.php:328 server_binlog.php:136 #, fuzzy msgid "Files" msgstr "欄位" -#: libraries/messages.inc.php:334 server_privileges.php:1597 +#: libraries/messages.inc.php:330 server_privileges.php:1597 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -3747,219 +3747,219 @@ msgstr "" "表, 資料表內容將可能與實際使用者情況有異. 在這情況下, 您應在繼續前 %s重新載" "入%s 權限資料表." -#: libraries/messages.inc.php:335 server_status.php:289 +#: libraries/messages.inc.php:331 server_status.php:289 msgid "Flush query cache" msgstr "強迫更新語法快取" -#: libraries/messages.inc.php:336 +#: libraries/messages.inc.php:332 msgid "Flush the table (\"FLUSH\")" msgstr "強迫更新資料表 (\"FLUSH\")" -#: libraries/messages.inc.php:337 server_status.php:271 +#: libraries/messages.inc.php:333 server_status.php:271 msgid "Flush (close) all tables" msgstr "強迫更新 (關閉) 所有資料表" -#: libraries/messages.inc.php:339 tbl_relation.php:279 +#: libraries/messages.inc.php:335 tbl_relation.php:279 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" -#: libraries/messages.inc.php:341 setup/lib/messages.inc.php:88 +#: libraries/messages.inc.php:337 setup/lib/messages.inc.php:88 #: tbl_printview.php:376 tbl_structure.php:738 msgid "Format" msgstr "格式" -#: libraries/messages.inc.php:344 server_replication.php:325 +#: libraries/messages.inc.php:340 server_replication.php:325 #, fuzzy msgid "Full start" msgstr "全文檢索" -#: libraries/messages.inc.php:345 server_replication.php:325 +#: libraries/messages.inc.php:341 server_replication.php:325 msgid "Full stop" msgstr "" -#: libraries/messages.inc.php:347 tbl_change.php:282 tbl_change.php:320 +#: libraries/messages.inc.php:343 tbl_change.php:282 tbl_change.php:320 msgid "Function" msgstr "函數" -#: libraries/messages.inc.php:355 libraries/mysql_charsets.lib.php:377 +#: libraries/messages.inc.php:351 libraries/mysql_charsets.lib.php:377 msgid "Georgian" msgstr "格魯吉亞語" -#: libraries/messages.inc.php:356 libraries/mysql_charsets.lib.php:247 +#: libraries/messages.inc.php:352 libraries/mysql_charsets.lib.php:247 #: libraries/mysql_charsets.lib.php:250 msgid "German" msgstr "德語" -#: libraries/messages.inc.php:357 themes.php:42 +#: libraries/messages.inc.php:353 themes.php:42 msgid "Get more themes!" msgstr "" -#: libraries/messages.inc.php:358 server_privileges.php:2134 +#: libraries/messages.inc.php:354 server_privileges.php:2134 msgid "global" msgstr "整體" -#: libraries/messages.inc.php:359 server_privileges.php:524 +#: libraries/messages.inc.php:355 server_privileges.php:524 #: server_privileges.php:1500 msgid "Global privileges" msgstr "整體權限" -#: libraries/messages.inc.php:360 server_variables.php:55 +#: libraries/messages.inc.php:356 server_variables.php:55 #: server_variables.php:89 msgid "Global value" msgstr "整體值" -#: libraries/messages.inc.php:365 server_privileges.php:1502 +#: libraries/messages.inc.php:361 server_privileges.php:1502 #: server_privileges.php:1684 server_privileges.php:2033 msgid "Grant" msgstr "授權" -#: libraries/messages.inc.php:366 libraries/mysql_charsets.lib.php:380 +#: libraries/messages.inc.php:362 libraries/mysql_charsets.lib.php:380 msgid "Greek" msgstr "希臘語" -#: libraries/messages.inc.php:367 +#: libraries/messages.inc.php:363 msgid "\"gzipped\"" msgstr "\"gzipped\"" -#: libraries/messages.inc.php:369 server_status.php:250 +#: libraries/messages.inc.php:365 server_status.php:250 msgid "Handler" msgstr "操作者" -#: libraries/messages.inc.php:370 server_synchronize.php:464 +#: libraries/messages.inc.php:366 server_synchronize.php:464 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: libraries/messages.inc.php:372 libraries/mysql_charsets.lib.php:374 +#: libraries/messages.inc.php:368 libraries/mysql_charsets.lib.php:374 msgid "Hebrew" msgstr "希伯來語" -#: libraries/messages.inc.php:373 pmd_general.php:83 +#: libraries/messages.inc.php:369 pmd_general.php:83 msgid "Help" msgstr "" -#: libraries/messages.inc.php:374 +#: libraries/messages.inc.php:370 msgid "Use hexadecimal for BLOB" msgstr "" -#: libraries/messages.inc.php:376 pmd_general.php:120 +#: libraries/messages.inc.php:372 pmd_general.php:120 #, fuzzy msgid "Hide/Show all" msgstr "顯示全部" -#: libraries/messages.inc.php:377 pmd_general.php:124 +#: libraries/messages.inc.php:373 pmd_general.php:124 msgid "Hide/Show Tables with no relation" msgstr "" -#: libraries/messages.inc.php:378 libraries/navigation_header.inc.php:54 +#: libraries/messages.inc.php:374 libraries/navigation_header.inc.php:54 #: libraries/navigation_header.inc.php:57 #: libraries/navigation_header.inc.php:58 msgid "Home" msgstr "主目錄" -#: libraries/messages.inc.php:379 main.php:233 +#: libraries/messages.inc.php:375 main.php:233 msgid "Official Homepage" msgstr "phpMyAdmin 官方網站" -#: libraries/messages.inc.php:382 libraries/replication_gui.lib.php:327 +#: libraries/messages.inc.php:378 libraries/replication_gui.lib.php:327 #: server_privileges.php:753 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/messages.inc.php:383 +#: libraries/messages.inc.php:379 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/messages.inc.php:384 libraries/mysql_charsets.lib.php:253 +#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:253 msgid "Hungarian" msgstr "匈牙利語" -#: libraries/messages.inc.php:386 libraries/mysql_charsets.lib.php:256 +#: libraries/messages.inc.php:382 libraries/mysql_charsets.lib.php:256 msgid "Icelandic" msgstr "冰島語" -#: libraries/messages.inc.php:387 server_processlist.php:53 +#: libraries/messages.inc.php:383 server_processlist.php:53 msgid "ID" msgstr "ID" -#: libraries/messages.inc.php:388 libraries/mult_submits.inc.php:108 +#: libraries/messages.inc.php:384 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:479 msgid "Fulltext" msgstr "全文檢索" -#: libraries/messages.inc.php:389 +#: libraries/messages.inc.php:385 msgid "Ignore duplicate rows" msgstr "略過重覆列" -#: libraries/messages.inc.php:390 tbl_change.php:302 tbl_indexes.php:200 +#: libraries/messages.inc.php:386 tbl_change.php:302 tbl_indexes.php:200 #: tbl_indexes.php:225 msgid "Ignore" msgstr "忽略" -#: libraries/messages.inc.php:391 +#: libraries/messages.inc.php:387 msgid "Use ignore inserts" msgstr "使用忽略加入 (insert)" -#: libraries/messages.inc.php:392 +#: libraries/messages.inc.php:388 msgid "Column names in first row" msgstr "" -#: libraries/messages.inc.php:393 +#: libraries/messages.inc.php:389 msgid "Do not import empty rows" msgstr "" -#: libraries/messages.inc.php:394 pmd_general.php:104 +#: libraries/messages.inc.php:390 pmd_general.php:104 msgid "Import/Export coordinates for PDF schema" msgstr "" -#: libraries/messages.inc.php:395 querywindow.php:104 +#: libraries/messages.inc.php:391 querywindow.php:104 msgid "Import files" msgstr "輸入檔案" -#: libraries/messages.inc.php:403 +#: libraries/messages.inc.php:399 msgid "Import currencies ($5.00 to 5.00)" msgstr "" -#: libraries/messages.inc.php:404 libraries/messages.inc.php:584 +#: libraries/messages.inc.php:400 libraries/messages.inc.php:580 msgid "Open Document Spreadsheet" msgstr "" -#: libraries/messages.inc.php:405 +#: libraries/messages.inc.php:401 msgid "Import percentages as proper decimals (12.00% to .12)" msgstr "" -#: libraries/messages.inc.php:409 +#: libraries/messages.inc.php:405 msgid "Excel 97-2003 XLS Workbook" msgstr "" -#: libraries/messages.inc.php:410 +#: libraries/messages.inc.php:406 msgid "Excel 2007 XLSX Workbook" msgstr "" -#: libraries/messages.inc.php:414 libraries/mult_submits.inc.php:98 +#: libraries/messages.inc.php:410 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:476 tbl_structure.php:674 msgid "Index" msgstr "索引鍵 INDEX" -#: libraries/messages.inc.php:415 tbl_indexes.php:168 +#: libraries/messages.inc.php:411 tbl_indexes.php:168 msgid "Index name:" msgstr "索引名稱 :" -#: libraries/messages.inc.php:416 tbl_indexes.php:174 +#: libraries/messages.inc.php:412 tbl_indexes.php:174 msgid "Index type:" msgstr "索引類型 :" -#: libraries/messages.inc.php:417 sql.php:639 +#: libraries/messages.inc.php:413 sql.php:639 #, php-format msgid "Problems with indexes of table `%s`" msgstr "於資料表 `%s` 中有索引問題" -#: libraries/messages.inc.php:427 main.php:266 +#: libraries/messages.inc.php:423 main.php:266 msgid "" "Your configuration file contains settings (root with no password) that " "correspond to the default MySQL privileged account. Your MySQL server is " @@ -3969,163 +3969,163 @@ msgstr "" "設定檔內有關設定 (root登入及沒有密碼) 與預設的 MySQL 權限戶口相同。 MySQL 伺" "服器在這預設的設定運行的話會很容易被入侵,您應更改有關設定去防止安全漏洞。" -#: libraries/messages.inc.php:428 tbl_change.php:1130 +#: libraries/messages.inc.php:424 tbl_change.php:1130 msgid "Insert as new row" msgstr "儲存為新記錄" -#: libraries/messages.inc.php:429 sql.php:496 tbl_replace.php:386 +#: libraries/messages.inc.php:425 sql.php:496 tbl_replace.php:386 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: libraries/messages.inc.php:430 tbl_change.php:1131 +#: libraries/messages.inc.php:426 tbl_change.php:1131 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/messages.inc.php:432 main.php:139 +#: libraries/messages.inc.php:428 main.php:139 msgid "Interface" msgstr "" -#: libraries/messages.inc.php:433 tbl_relation.php:407 +#: libraries/messages.inc.php:429 tbl_relation.php:407 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: libraries/messages.inc.php:435 pdf_pages.php:303 +#: libraries/messages.inc.php:431 pdf_pages.php:303 msgid "Internal relations" msgstr "內部關聯" -#: libraries/messages.inc.php:438 tbl_indexes.php:256 tbl_structure.php:590 +#: libraries/messages.inc.php:434 tbl_indexes.php:256 tbl_structure.php:590 #: tbl_structure.php:601 msgid "Column count has to be larger than zero." msgstr "欄位數目需要大於零." -#: libraries/messages.inc.php:444 libraries/tbl_properties.inc.php:784 +#: libraries/messages.inc.php:440 libraries/tbl_properties.inc.php:784 #: tbl_structure.php:537 msgid "You have to add at least one field." msgstr "你最少要加入一個欄位." -#: libraries/messages.inc.php:449 +#: libraries/messages.inc.php:445 #, php-format msgid "Invalid server index: \"%s\"" msgstr "伺服器索引錯誤: \"%s\"" -#: libraries/messages.inc.php:452 libraries/mysql_charsets.lib.php:259 +#: libraries/messages.inc.php:448 libraries/mysql_charsets.lib.php:259 #: libraries/mysql_charsets.lib.php:349 msgid "Japanese" msgstr "日語" -#: libraries/messages.inc.php:453 main.php:331 +#: libraries/messages.inc.php:449 main.php:331 msgid "" "Javascript support is missing or disabled in your browser, some phpMyAdmin " "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" -#: libraries/messages.inc.php:454 server_status.php:257 +#: libraries/messages.inc.php:450 server_status.php:257 msgid "Joins" msgstr "結合" -#: libraries/messages.inc.php:457 server_privileges.php:763 +#: libraries/messages.inc.php:453 server_privileges.php:763 msgid "Do not change the password" msgstr "請不要更改密碼" -#: libraries/messages.inc.php:458 server_status.php:256 +#: libraries/messages.inc.php:454 server_status.php:256 msgid "Key cache" msgstr "鍵快取" -#: libraries/messages.inc.php:462 libraries/mysql_charsets.lib.php:268 +#: libraries/messages.inc.php:458 libraries/mysql_charsets.lib.php:268 #: libraries/mysql_charsets.lib.php:371 msgid "Korean" msgstr "韓語" -#: libraries/messages.inc.php:466 libraries/select_lang.lib.php:480 +#: libraries/messages.inc.php:462 libraries/select_lang.lib.php:480 #: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492 #, php-format msgid "Unknown language: %1$s." msgstr "不知名語言: %1$s." -#: libraries/messages.inc.php:468 +#: libraries/messages.inc.php:464 msgid "Table caption" msgstr "資料表標題" -#: libraries/messages.inc.php:469 +#: libraries/messages.inc.php:465 msgid "Content of table __TABLE__" msgstr "資料表 __TABLE__ 內容" -#: libraries/messages.inc.php:470 +#: libraries/messages.inc.php:466 msgid "Continued table caption" msgstr "連續資料表標題" -#: libraries/messages.inc.php:471 +#: libraries/messages.inc.php:467 msgid "(continued)" msgstr "(連續)" -#: libraries/messages.inc.php:472 +#: libraries/messages.inc.php:468 msgid "Include table caption" msgstr "包括資料表標題" -#: libraries/messages.inc.php:473 +#: libraries/messages.inc.php:469 msgid "Label key" msgstr "標記鍵名" -#: libraries/messages.inc.php:474 +#: libraries/messages.inc.php:470 msgid "LaTeX" msgstr "LaTeX" -#: libraries/messages.inc.php:475 +#: libraries/messages.inc.php:471 msgid "Structure of table __TABLE__" msgstr "資料表 __TABLE__ 結構" -#: libraries/messages.inc.php:476 libraries/mysql_charsets.lib.php:262 +#: libraries/messages.inc.php:472 libraries/mysql_charsets.lib.php:262 msgid "Latvian" msgstr "拉脫維亞語" -#: libraries/messages.inc.php:477 +#: libraries/messages.inc.php:473 msgid "CSV using LOAD DATA" msgstr "CSV 使用 LOAD DATA" -#: libraries/messages.inc.php:478 +#: libraries/messages.inc.php:474 msgid "Use LOCAL keyword" msgstr "使用 LOCAL 關鍵字" -#: libraries/messages.inc.php:479 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:475 libraries/tbl_properties.inc.php:105 msgid "Length/Values" msgstr "長度/集合*" -#: libraries/messages.inc.php:480 tbl_select.php:295 +#: libraries/messages.inc.php:476 tbl_select.php:295 msgid "Number of rows per page" msgstr "筆記錄/每頁" -#: libraries/messages.inc.php:484 libraries/mysql_charsets.lib.php:265 +#: libraries/messages.inc.php:480 libraries/mysql_charsets.lib.php:265 msgid "Lithuanian" msgstr "立陶宛語" -#: libraries/messages.inc.php:485 libraries/replication_gui.lib.php:302 +#: libraries/messages.inc.php:481 libraries/replication_gui.lib.php:302 #: server_privileges.php:729 msgid "Local" msgstr "本地" -#: libraries/messages.inc.php:487 server_privileges.php:669 +#: libraries/messages.inc.php:483 server_privileges.php:669 msgid "Login Information" msgstr "登入資訊" -#: libraries/messages.inc.php:490 libraries/navigation_header.inc.php:67 +#: libraries/messages.inc.php:486 libraries/navigation_header.inc.php:67 #: libraries/navigation_header.inc.php:70 #: libraries/navigation_header.inc.php:71 main.php:99 msgid "Log out" msgstr "登出系統" -#: libraries/messages.inc.php:497 server_status.php:440 +#: libraries/messages.inc.php:493 server_status.php:440 msgid "max. concurrent connections" msgstr "最大連線數目" -#: libraries/messages.inc.php:498 +#: libraries/messages.inc.php:494 msgid "Maximal length of created query" msgstr "建立之查詢最大長度" -#: libraries/messages.inc.php:500 main.php:282 +#: libraries/messages.inc.php:496 main.php:282 msgid "" "The mbstring PHP extension was not found and you seem to be using a " "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " @@ -4134,7 +4134,7 @@ msgstr "" "找不到 PHP 內的 mbstring 編碼模組, 沒有這個模組, phpMyAdmin 無法準確地分割雙" "字元文字, 而可能產生問題." -#: libraries/messages.inc.php:501 main.php:274 +#: libraries/messages.inc.php:497 main.php:274 msgid "" "You have enabled mbstring.func_overload in your PHP configuration. This " "option is incompatible with phpMyAdmin and might cause some data to be " @@ -4143,24 +4143,24 @@ msgstr "" "你在 PHP 設定內啟動了 mbstring.func_overload 選項, 這個選項暫時不兼容 " "phpMyAdmin , 你可能會損失部份資料!" -#: libraries/messages.inc.php:502 +#: libraries/messages.inc.php:498 msgid "MediaWiki Table" msgstr "" -#: libraries/messages.inc.php:503 transformation_overview.php:25 +#: libraries/messages.inc.php:499 transformation_overview.php:25 msgid "Available MIME types" msgstr "可使用 MIME 類型" -#: libraries/messages.inc.php:504 transformation_overview.php:43 +#: libraries/messages.inc.php:500 transformation_overview.php:43 msgid "Available transformations" msgstr "可使用轉換方式" -#: libraries/messages.inc.php:505 +#: libraries/messages.inc.php:501 msgctxt "$strMIME_description" msgid "Description" msgstr "說明" -#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:580 +#: libraries/messages.inc.php:503 libraries/tbl_properties.inc.php:580 #: transformation_overview.php:60 #, php-format msgid "" @@ -4168,14 +4168,14 @@ msgid "" "author what %s does." msgstr "這個轉換方式沒有說明.
請向作者查詢 %s 是甚麼用途." -#: libraries/messages.inc.php:509 libraries/tbl_properties.inc.php:137 +#: libraries/messages.inc.php:505 libraries/tbl_properties.inc.php:137 #, php-format msgid "" "For a list of available transformation options and their MIME type " "transformations, click on %stransformation descriptions%s" msgstr "有關可使用之轉換方式選項及 MINE 類型轉換選項, 請查看 %s轉換方式說明%s" -#: libraries/messages.inc.php:510 libraries/tbl_properties.inc.php:146 +#: libraries/messages.inc.php:506 libraries/tbl_properties.inc.php:146 msgid "" "Please enter the values for transformation options using this format: 'a', " "100, b,'c'...
If you ever need to put a backslash (\"\\\") or a single " @@ -4185,461 +4185,461 @@ msgstr "" "請用以下的格式輸入轉換選項值: 'a', 100, b,'c'...
如您需要輸入反斜線 " "(\"\\\") 或單引號 (\"'\") 請再加上反斜線 (例如 '\\\\xyz' or 'a\\'b')." -#: libraries/messages.inc.php:511 libraries/tbl_properties.inc.php:145 +#: libraries/messages.inc.php:507 libraries/tbl_properties.inc.php:145 msgid "Transformation options" msgstr "轉換方式選項" -#: libraries/messages.inc.php:513 transformation_overview.php:38 +#: libraries/messages.inc.php:509 transformation_overview.php:38 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "MIME 類型以斜體顯示是沒有分隔轉換功能" -#: libraries/messages.inc.php:515 tbl_indexes.php:162 +#: libraries/messages.inc.php:511 tbl_indexes.php:162 msgid "Modify an index" msgstr "修改索引" -#: libraries/messages.inc.php:517 pmd_general.php:108 +#: libraries/messages.inc.php:513 pmd_general.php:108 msgid "Move Menu" msgstr "" -#: libraries/messages.inc.php:518 tbl_operations.php:276 +#: libraries/messages.inc.php:514 tbl_operations.php:276 msgid "Move table to (database.table):" msgstr "移動資料表到:(格式為 資料庫名稱.資料表名稱)" -#: libraries/messages.inc.php:519 tbl_move_copy.php:56 +#: libraries/messages.inc.php:515 tbl_move_copy.php:56 #, php-format msgid "Table %s has been moved to %s." msgstr "資料表 %s 已經移動到 %s." -#: libraries/messages.inc.php:520 tbl_move_copy.php:46 +#: libraries/messages.inc.php:516 tbl_move_copy.php:46 msgid "Can't move table to same one!" msgstr "無法移動到相同資料表!" -#: libraries/messages.inc.php:521 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:517 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 libraries/mysql_charsets.lib.php:325 #: libraries/mysql_charsets.lib.php:332 libraries/mysql_charsets.lib.php:354 #: libraries/mysql_charsets.lib.php:365 msgid "multilingual" msgstr "多語言" -#: libraries/messages.inc.php:534 main.php:193 +#: libraries/messages.inc.php:530 main.php:193 msgid "MySQL charset" msgstr "MySQL 文字編碼" -#: libraries/messages.inc.php:535 main.php:211 +#: libraries/messages.inc.php:531 main.php:211 msgid "MySQL client version" msgstr "MySQL 客戶端版本" -#: libraries/messages.inc.php:536 main.php:125 +#: libraries/messages.inc.php:532 main.php:125 msgid "MySQL connection collation" msgstr "MySQL 連線校對" -#: libraries/messages.inc.php:537 main.php:346 +#: libraries/messages.inc.php:533 main.php:346 #, php-format msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -#: libraries/messages.inc.php:539 server_status.php:294 +#: libraries/messages.inc.php:535 server_status.php:294 msgid "Show processes" msgstr "顯示程序 (Process)" -#: libraries/messages.inc.php:545 navigation.php:210 server_databases.php:371 +#: libraries/messages.inc.php:541 navigation.php:210 server_databases.php:371 #: server_synchronize.php:1191 msgid "No databases" msgstr "沒有資料庫" -#: libraries/messages.inc.php:546 server_databases.php:52 +#: libraries/messages.inc.php:542 server_databases.php:52 msgid "No databases selected." msgstr "沒有資料庫選擇." -#: libraries/messages.inc.php:548 libraries/relation.lib.php:1173 +#: libraries/messages.inc.php:544 libraries/relation.lib.php:1173 msgid "no description" msgstr "沒有說明" -#: libraries/messages.inc.php:552 libraries/zip_extension.lib.php:26 +#: libraries/messages.inc.php:548 libraries/zip_extension.lib.php:26 msgid "No files found inside ZIP archive!" msgstr "於 ZIP 檔案內找不到任何檔案!" -#: libraries/messages.inc.php:555 tbl_indexes.php:91 +#: libraries/messages.inc.php:551 tbl_indexes.php:91 msgid "No index parts defined!" msgstr "部份索引資料還未定義!" -#: libraries/messages.inc.php:556 libraries/mult_submits.inc.php:435 +#: libraries/messages.inc.php:552 libraries/mult_submits.inc.php:435 #: tbl_replace.php:331 msgid "No change" msgstr "沒有變更" -#: libraries/messages.inc.php:557 +#: libraries/messages.inc.php:553 #, fuzzy msgctxt "$strNoneDefault" msgid "None" msgstr "不適用" -#: libraries/messages.inc.php:560 libraries/plugin_interface.lib.php:312 +#: libraries/messages.inc.php:556 libraries/plugin_interface.lib.php:312 msgid "This format has no options" msgstr "這種格式並無選項" -#: libraries/messages.inc.php:565 user_password.php:54 +#: libraries/messages.inc.php:561 user_password.php:54 msgid "You don't have sufficient privileges to be here right now!" msgstr "您現在沒有足夠的權限!" -#: libraries/messages.inc.php:566 tbl_row_action.php:29 +#: libraries/messages.inc.php:562 tbl_row_action.php:29 msgid "No rows selected" msgstr "並無資料列已選擇" -#: libraries/messages.inc.php:569 themes.php:32 +#: libraries/messages.inc.php:565 themes.php:32 #, php-format msgid "" "No themes support; please check your configuration and/or your themes in " "directory %s." msgstr "不支援款式功能, 請查看設定案及儲存款式檔案的資料夾 %s." -#: libraries/messages.inc.php:571 libraries/relation.lib.php:95 +#: libraries/messages.inc.php:567 libraries/relation.lib.php:95 msgid "not OK" msgstr "未能確定" -#: libraries/messages.inc.php:572 server_synchronize.php:400 +#: libraries/messages.inc.php:568 server_synchronize.php:400 #: server_synchronize.php:839 msgid "not present" msgstr "" -#: libraries/messages.inc.php:573 pdf_pages.php:36 pdf_pages.php:42 +#: libraries/messages.inc.php:569 pdf_pages.php:36 pdf_pages.php:42 #: pdf_pages.php:48 pdf_pages.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "%s 資料表找不到或還未在 %s 設定" -#: libraries/messages.inc.php:574 server_privileges.php:804 +#: libraries/messages.inc.php:570 server_privileges.php:804 #: server_privileges.php:2166 msgid "No user(s) found." msgstr "找不到使用者" -#: libraries/messages.inc.php:578 pmd_general.php:164 +#: libraries/messages.inc.php:574 pmd_general.php:164 #, fuzzy msgid "Number of tables" msgstr "欄位數目" -#: libraries/messages.inc.php:581 server_databases.php:117 +#: libraries/messages.inc.php:577 server_databases.php:117 #: server_status.php:260 setup/lib/messages.inc.php:117 msgid "Tables" msgstr "個資料表" -#: libraries/messages.inc.php:583 libraries/relation.lib.php:99 +#: libraries/messages.inc.php:579 libraries/relation.lib.php:99 #: pmd_general.php:340 msgid "OK" msgstr "確定" -#: libraries/messages.inc.php:585 +#: libraries/messages.inc.php:581 msgid "Open Document Text" msgstr "" -#: libraries/messages.inc.php:588 tbl_select.php:138 +#: libraries/messages.inc.php:584 tbl_select.php:138 msgid "Operator" msgstr "操作員" -#: libraries/messages.inc.php:589 tbl_operations.php:662 +#: libraries/messages.inc.php:585 tbl_operations.php:662 msgid "Optimize" msgstr "" -#: libraries/messages.inc.php:602 libraries/tbl_properties.inc.php:755 +#: libraries/messages.inc.php:598 libraries/tbl_properties.inc.php:755 msgid "PARTITION definition" msgstr "" -#: libraries/messages.inc.php:603 tbl_structure.php:757 +#: libraries/messages.inc.php:599 tbl_structure.php:757 msgid "partitioned" msgstr "" -#: libraries/messages.inc.php:604 tbl_operations.php:649 +#: libraries/messages.inc.php:600 tbl_operations.php:649 #, fuzzy msgid "Partition maintenance" msgstr "資料表維護" -#: libraries/messages.inc.php:605 tbl_operations.php:657 +#: libraries/messages.inc.php:601 tbl_operations.php:657 #, php-format msgid "Partition %s" msgstr "" -#: libraries/messages.inc.php:606 server_privileges.php:1212 +#: libraries/messages.inc.php:602 server_privileges.php:1212 #, php-format msgid "The password for %s was changed successfully." msgstr "%s 的密碼已成功更改." -#: libraries/messages.inc.php:635 +#: libraries/messages.inc.php:631 #, php-format msgid "Schema of the \"%s\" database - Page %s" msgstr "\"%s\" 資料庫概要 - 第 %s 頁" -#: libraries/messages.inc.php:636 +#: libraries/messages.inc.php:632 #, php-format msgid "The \"%s\" table doesn't exist!" msgstr "資料表 \"%s\" 不存在!" -#: libraries/messages.inc.php:637 pdf_schema.php:1013 +#: libraries/messages.inc.php:633 pdf_schema.php:1013 msgid "No tables" msgstr "沒有資料表" -#: libraries/messages.inc.php:638 pmd_pdf.php:63 +#: libraries/messages.inc.php:634 pmd_pdf.php:63 #, fuzzy msgid "Page has been created" msgstr "資料表 %s 已被刪除" -#: libraries/messages.inc.php:639 pmd_pdf.php:65 +#: libraries/messages.inc.php:635 pmd_pdf.php:65 msgid "Page creation failed" msgstr "" -#: libraries/messages.inc.php:640 +#: libraries/messages.inc.php:636 msgid "PDF" msgstr "PDF" -#: libraries/messages.inc.php:641 +#: libraries/messages.inc.php:637 msgid "(Generates a report containing the data of a single table)" msgstr "" -#: libraries/messages.inc.php:642 +#: libraries/messages.inc.php:638 msgid "Report title" msgstr "報告標題" -#: libraries/messages.inc.php:643 server_status.php:389 server_status.php:434 +#: libraries/messages.inc.php:639 server_status.php:389 server_status.php:434 #: server_status.php:497 server_status.php:555 msgid "per hour" msgstr "每小時" -#: libraries/messages.inc.php:644 server_status.php:498 +#: libraries/messages.inc.php:640 server_status.php:498 msgid "per minute" msgstr "每分鐘" -#: libraries/messages.inc.php:645 server_status.php:499 +#: libraries/messages.inc.php:641 server_status.php:499 msgid "per second" msgstr "每秒" -#: libraries/messages.inc.php:646 libraries/mysql_charsets.lib.php:271 +#: libraries/messages.inc.php:642 libraries/mysql_charsets.lib.php:271 msgid "Persian" msgstr "波斯語" -#: libraries/messages.inc.php:647 libraries/mysql_charsets.lib.php:250 +#: libraries/messages.inc.php:643 libraries/mysql_charsets.lib.php:250 msgid "phone book" msgstr "電話簿" -#: libraries/messages.inc.php:648 +#: libraries/messages.inc.php:644 msgid "PHP array" msgstr "" -#: libraries/messages.inc.php:650 main.php:213 +#: libraries/messages.inc.php:646 main.php:213 #, fuzzy msgid "PHP extension" msgstr "PHP 版本" -#: libraries/messages.inc.php:654 libraries/relation.lib.php:163 +#: libraries/messages.inc.php:650 libraries/relation.lib.php:163 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/messages.inc.php:655 libraries/relation.lib.php:159 +#: libraries/messages.inc.php:651 libraries/relation.lib.php:159 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/messages.inc.php:656 libraries/relation.lib.php:161 +#: libraries/messages.inc.php:652 libraries/relation.lib.php:161 msgid "" "Create the needed tables with the script/create_tables.sql." msgstr "" -#: libraries/messages.inc.php:657 libraries/relation.lib.php:162 +#: libraries/messages.inc.php:653 libraries/relation.lib.php:162 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/messages.inc.php:658 libraries/relation.lib.php:164 +#: libraries/messages.inc.php:654 libraries/relation.lib.php:164 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/messages.inc.php:661 libraries/mysql_charsets.lib.php:274 +#: libraries/messages.inc.php:657 libraries/mysql_charsets.lib.php:274 msgid "Polish" msgstr "波蘭語" -#: libraries/messages.inc.php:662 libraries/replication_gui.lib.php:67 +#: libraries/messages.inc.php:658 libraries/replication_gui.lib.php:67 #: server_synchronize.php:1163 #, fuzzy msgid "Port" msgstr "排序" -#: libraries/messages.inc.php:667 tbl_indexes.php:67 +#: libraries/messages.inc.php:663 tbl_indexes.php:67 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "主鍵的名稱必須稱為 PRIMARY!" -#: libraries/messages.inc.php:668 tbl_indexes.php:184 +#: libraries/messages.inc.php:664 tbl_indexes.php:184 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "(\"PRIMARY\" 必須是主鍵的名稱以及是唯一一組主鍵!)" -#: libraries/messages.inc.php:669 libraries/mult_submits.inc.php:76 +#: libraries/messages.inc.php:665 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:474 msgid "Primary" msgstr "主鍵 PRIMARY" -#: libraries/messages.inc.php:673 server_privileges.php:227 +#: libraries/messages.inc.php:669 server_privileges.php:227 msgid "Includes all privileges except GRANT." msgstr "包括所有權限除了授權 (GRNANT)." -#: libraries/messages.inc.php:674 server_privileges.php:153 +#: libraries/messages.inc.php:670 server_privileges.php:153 #: server_privileges.php:476 msgid "Allows altering the structure of existing tables." msgstr "容許修改現有資料表的結構." -#: libraries/messages.inc.php:675 server_privileges.php:169 +#: libraries/messages.inc.php:671 server_privileges.php:169 #: server_privileges.php:482 msgid "Allows altering and dropping stored routines." msgstr "容許修改及刪除儲存程序." -#: libraries/messages.inc.php:676 server_privileges.php:145 +#: libraries/messages.inc.php:672 server_privileges.php:145 #: server_privileges.php:475 msgid "Allows creating new databases and tables." msgstr "容許建立新資料庫及資料表." -#: libraries/messages.inc.php:677 server_privileges.php:168 +#: libraries/messages.inc.php:673 server_privileges.php:168 #: server_privileges.php:481 msgid "Allows creating stored routines." msgstr "容許建立儲存程序" -#: libraries/messages.inc.php:678 server_privileges.php:475 +#: libraries/messages.inc.php:674 server_privileges.php:475 msgid "Allows creating new tables." msgstr "容許建立新資料表." -#: libraries/messages.inc.php:679 server_privileges.php:156 +#: libraries/messages.inc.php:675 server_privileges.php:156 #: server_privileges.php:479 msgid "Allows creating temporary tables." msgstr "容許建立暫時性資料表." -#: libraries/messages.inc.php:680 server_privileges.php:170 +#: libraries/messages.inc.php:676 server_privileges.php:170 #: server_privileges.php:515 msgid "Allows creating, dropping and renaming user accounts." msgstr "容許建立、刪除及重新命名使用者戶口." -#: libraries/messages.inc.php:681 server_privileges.php:160 +#: libraries/messages.inc.php:677 server_privileges.php:160 #: server_privileges.php:164 server_privileges.php:487 #: server_privileges.php:491 msgid "Allows creating new views." msgstr "容許建立新的檢視." -#: libraries/messages.inc.php:682 server_privileges.php:144 +#: libraries/messages.inc.php:678 server_privileges.php:144 #: server_privileges.php:467 msgid "Allows deleting data." msgstr "容許刪除記錄." -#: libraries/messages.inc.php:683 server_privileges.php:146 +#: libraries/messages.inc.php:679 server_privileges.php:146 #: server_privileges.php:478 msgid "Allows dropping databases and tables." msgstr "容許刪除資料庫及資料表." -#: libraries/messages.inc.php:684 server_privileges.php:478 +#: libraries/messages.inc.php:680 server_privileges.php:478 msgid "Allows dropping tables." msgstr "容許刪除資料表." -#: libraries/messages.inc.php:685 server_privileges.php:161 +#: libraries/messages.inc.php:681 server_privileges.php:161 #: server_privileges.php:495 msgid "Allows to set up events for the event scheduler" msgstr "" -#: libraries/messages.inc.php:686 server_privileges.php:171 +#: libraries/messages.inc.php:682 server_privileges.php:171 #: server_privileges.php:483 msgid "Allows executing stored routines." msgstr "容許執行儲存程序." -#: libraries/messages.inc.php:687 server_privileges.php:150 +#: libraries/messages.inc.php:683 server_privileges.php:150 #: server_privileges.php:470 msgid "Allows importing data from and exporting data into files." msgstr "容許輸入及輸出數據到檔案." -#: libraries/messages.inc.php:688 server_privileges.php:501 +#: libraries/messages.inc.php:684 server_privileges.php:501 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "容許新增使用者及權限而無需重新讀取權限資料表." -#: libraries/messages.inc.php:689 server_privileges.php:152 +#: libraries/messages.inc.php:685 server_privileges.php:152 #: server_privileges.php:477 msgid "Allows creating and dropping indexes." msgstr "容許建立及刪除索引." -#: libraries/messages.inc.php:690 server_privileges.php:142 +#: libraries/messages.inc.php:686 server_privileges.php:142 #: server_privileges.php:403 server_privileges.php:465 msgid "Allows inserting and replacing data." msgstr "容許新增及取代數據." -#: libraries/messages.inc.php:691 server_privileges.php:157 +#: libraries/messages.inc.php:687 server_privileges.php:157 #: server_privileges.php:510 msgid "Allows locking tables for the current thread." msgstr "容許鎖上現時連線之資料表." -#: libraries/messages.inc.php:692 server_privileges.php:607 +#: libraries/messages.inc.php:688 server_privileges.php:607 #: server_privileges.php:609 msgid "Limits the number of new connections the user may open per hour." msgstr "限制每小時使用者開啟新連線的數目." -#: libraries/messages.inc.php:693 server_privileges.php:595 +#: libraries/messages.inc.php:689 server_privileges.php:595 #: server_privileges.php:597 msgid "Limits the number of queries the user may send to the server per hour." msgstr "限制每小時使用者查詢的數目." -#: libraries/messages.inc.php:694 server_privileges.php:601 +#: libraries/messages.inc.php:690 server_privileges.php:601 #: server_privileges.php:603 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "限制每小時使用者更改資料表及數據表之指令的數目." -#: libraries/messages.inc.php:695 server_privileges.php:613 +#: libraries/messages.inc.php:691 server_privileges.php:613 #: server_privileges.php:615 msgid "Limits the number of simultaneous connections the user may have." msgstr "限制每個使用者之同步連線." -#: libraries/messages.inc.php:696 server_privileges.php:149 +#: libraries/messages.inc.php:692 server_privileges.php:149 #: server_privileges.php:505 msgid "Allows viewing processes of all users" msgstr "" -#: libraries/messages.inc.php:697 server_privileges.php:151 +#: libraries/messages.inc.php:693 server_privileges.php:151 #: server_privileges.php:409 server_privileges.php:511 msgid "Has no effect in this MySQL version." msgstr "於本 MySQL 版本無效." -#: libraries/messages.inc.php:698 server_privileges.php:147 +#: libraries/messages.inc.php:694 server_privileges.php:147 #: server_privileges.php:506 msgid "Allows reloading server settings and flushing the server's caches." msgstr "容許重新讀取伺服器設定及強行更新伺服器快取記憶." -#: libraries/messages.inc.php:699 server_privileges.php:159 +#: libraries/messages.inc.php:695 server_privileges.php:159 #: server_privileges.php:513 msgid "Allows the user to ask where the slaves / masters are." msgstr "容許用戶查詢 slaves / masters 在何處." -#: libraries/messages.inc.php:700 server_privileges.php:158 +#: libraries/messages.inc.php:696 server_privileges.php:158 #: server_privileges.php:514 msgid "Needed for the replication slaves." msgstr "需要複製的 slaves." -#: libraries/messages.inc.php:701 server_privileges.php:141 +#: libraries/messages.inc.php:697 server_privileges.php:141 #: server_privileges.php:400 server_privileges.php:464 msgid "Allows reading data." msgstr "容許讀取數據." -#: libraries/messages.inc.php:702 server_privileges.php:154 +#: libraries/messages.inc.php:698 server_privileges.php:154 #: server_privileges.php:508 msgid "Gives access to the complete list of databases." msgstr "可讀取整個資料庫清單." -#: libraries/messages.inc.php:703 server_privileges.php:165 +#: libraries/messages.inc.php:699 server_privileges.php:165 #: server_privileges.php:167 server_privileges.php:480 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "容許執行 SHOW CREATE VIEW 查詢." -#: libraries/messages.inc.php:704 server_privileges.php:148 +#: libraries/messages.inc.php:700 server_privileges.php:148 #: server_privileges.php:507 msgid "Allows shutting down the server." msgstr "容許停止伺服器." -#: libraries/messages.inc.php:705 server_privileges.php:155 +#: libraries/messages.inc.php:701 server_privileges.php:155 #: server_privileges.php:504 msgid "" "Allows connecting, even if maximum number of connections is reached; " @@ -4649,193 +4649,193 @@ msgstr "" "容許連線, 就算超過了最大連線限制; 用於最高系統管理如設定整體權限或中止其他使" "用者指令." -#: libraries/messages.inc.php:706 server_privileges.php:162 +#: libraries/messages.inc.php:702 server_privileges.php:162 #: server_privileges.php:496 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "容許建立及刪除索引." -#: libraries/messages.inc.php:707 server_privileges.php:143 +#: libraries/messages.inc.php:703 server_privileges.php:143 #: server_privileges.php:406 server_privileges.php:466 msgid "Allows changing data." msgstr "容許更新數據." -#: libraries/messages.inc.php:708 server_privileges.php:221 +#: libraries/messages.inc.php:704 server_privileges.php:221 msgid "No privileges." msgstr "沒有權限." -#: libraries/messages.inc.php:710 server_privileges.php:1296 +#: libraries/messages.inc.php:706 server_privileges.php:1296 msgid "The privileges were reloaded successfully." msgstr "權限已成功重新讀取." -#: libraries/messages.inc.php:712 libraries/server_links.inc.php:80 +#: libraries/messages.inc.php:708 libraries/server_links.inc.php:80 msgid "Processes" msgstr "處理" -#: libraries/messages.inc.php:714 main.php:187 +#: libraries/messages.inc.php:710 main.php:187 msgid "Protocol version" msgstr "通訊協定版本" -#: libraries/messages.inc.php:715 +#: libraries/messages.inc.php:711 msgid "Put fields names in the first row" msgstr "將欄位名稱放在首行" -#: libraries/messages.inc.php:720 server_synchronize.php:1003 +#: libraries/messages.inc.php:716 server_synchronize.php:1003 msgid "The following queries have been executed:" msgstr "" -#: libraries/messages.inc.php:721 server_status.php:251 +#: libraries/messages.inc.php:717 server_status.php:251 msgid "Query cache" msgstr "查詢快取" -#: libraries/messages.inc.php:722 libraries/navigation_header.inc.php:80 +#: libraries/messages.inc.php:718 libraries/navigation_header.inc.php:80 #: libraries/navigation_header.inc.php:83 #: libraries/navigation_header.inc.php:86 setup/lib/messages.inc.php:122 msgid "Query window" msgstr "查詢視窗" -#: libraries/messages.inc.php:725 querywindow.php:109 querywindow.php:217 +#: libraries/messages.inc.php:721 querywindow.php:109 querywindow.php:217 msgid "SQL history" msgstr "SQL 歷程" -#: libraries/messages.inc.php:726 server_status.php:490 +#: libraries/messages.inc.php:722 server_status.php:490 #, php-format msgid "" "Query statistics: Since its startup, %s queries have been sent to the " "server." msgstr "查詣統計: 當統計啟動後, 共有 %s 個查詢傳送到此伺服器." -#: libraries/messages.inc.php:728 server_status.php:554 +#: libraries/messages.inc.php:724 server_status.php:554 msgid "Query type" msgstr "查詢方式" -#: libraries/messages.inc.php:729 libraries/sql_query_form.lib.php:381 +#: libraries/messages.inc.php:725 libraries/sql_query_form.lib.php:381 msgid "Do not overwrite this query from outside the window" msgstr "不要將這語法覆蓋到本視窗外的SQL語法" -#: libraries/messages.inc.php:732 tbl_operations.php:663 +#: libraries/messages.inc.php:728 tbl_operations.php:663 msgid "Rebuild" msgstr "" -#: libraries/messages.inc.php:733 server_status.php:394 +#: libraries/messages.inc.php:729 server_status.php:394 msgid "Received" msgstr "接收" -#: libraries/messages.inc.php:734 pmd_pdf.php:89 +#: libraries/messages.inc.php:730 pmd_pdf.php:89 msgid "recommended" msgstr "" -#: libraries/messages.inc.php:736 tbl_operations.php:702 +#: libraries/messages.inc.php:732 tbl_operations.php:702 msgid "Check referential integrity:" msgstr "檢查指示完整性:" -#: libraries/messages.inc.php:740 pdf_schema.php:1032 pdf_schema.php:1141 +#: libraries/messages.inc.php:736 pdf_schema.php:1032 pdf_schema.php:1141 msgid "Relational schema" msgstr "關聯概要" -#: libraries/messages.inc.php:744 tbl_relation.php:399 +#: libraries/messages.inc.php:740 tbl_relation.php:399 msgid "Relations" msgstr "關聯" -#: libraries/messages.inc.php:745 tbl_structure.php:507 tbl_structure.php:509 +#: libraries/messages.inc.php:741 tbl_structure.php:507 tbl_structure.php:509 msgid "Relation view" msgstr "關聯檢視" -#: libraries/messages.inc.php:746 server_privileges.php:1246 +#: libraries/messages.inc.php:742 server_privileges.php:1246 msgid "Reloading the privileges" msgstr "重新讀取權限" -#: libraries/messages.inc.php:747 navigation.php:66 navigation.php:67 +#: libraries/messages.inc.php:743 navigation.php:66 navigation.php:67 #: navigation.php:70 msgid "Reload navigation frame" msgstr "" -#: libraries/messages.inc.php:748 pmd_general.php:80 +#: libraries/messages.inc.php:744 pmd_general.php:80 msgid "Reload" msgstr "" -#: libraries/messages.inc.php:749 libraries/server_synchronize.lib.php:1345 +#: libraries/messages.inc.php:745 libraries/server_synchronize.lib.php:1345 #: libraries/server_synchronize.lib.php:1371 msgid "Remote server" msgstr "" -#: libraries/messages.inc.php:750 +#: libraries/messages.inc.php:746 msgid "Remove CRLF characters within fields" msgstr "" -#: libraries/messages.inc.php:751 tbl_operations.php:676 +#: libraries/messages.inc.php:747 tbl_operations.php:676 msgid "Remove partitioning" msgstr "" -#: libraries/messages.inc.php:752 server_privileges.php:1575 +#: libraries/messages.inc.php:748 server_privileges.php:1575 msgid "Remove selected users" msgstr "移除已選擇使用者" -#: libraries/messages.inc.php:755 tbl_operations.php:338 +#: libraries/messages.inc.php:751 tbl_operations.php:338 msgid "Rename table to" msgstr "將資料表改名為" -#: libraries/messages.inc.php:756 view_operations.php:93 +#: libraries/messages.inc.php:752 view_operations.php:93 #, fuzzy msgid "Rename view to" msgstr "將資料表改名為" -#: libraries/messages.inc.php:757 tbl_operations.php:664 +#: libraries/messages.inc.php:753 tbl_operations.php:664 #, fuzzy msgid "Repair" msgstr "修復資料表" -#: libraries/messages.inc.php:759 +#: libraries/messages.inc.php:755 msgid "Replace NULL by" msgstr "將 NULL 取代為" -#: libraries/messages.inc.php:760 +#: libraries/messages.inc.php:756 msgid "Replace table data with file" msgstr "以檔案取代資料表資料" -#: libraries/messages.inc.php:761 server_replication.php:228 +#: libraries/messages.inc.php:757 server_replication.php:228 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: libraries/messages.inc.php:762 libraries/replication_gui.lib.php:236 +#: libraries/messages.inc.php:758 libraries/replication_gui.lib.php:236 #: server_replication.php:194 msgid "Add slave replication user" msgstr "" -#: libraries/messages.inc.php:763 server_replication.php:74 +#: libraries/messages.inc.php:759 server_replication.php:74 #, php-format msgid "Master server changed succesfully to %s" msgstr "" -#: libraries/messages.inc.php:764 server_replication.php:182 +#: libraries/messages.inc.php:760 server_replication.php:182 msgid "This server is configured as master in a replication process." msgstr "" -#: libraries/messages.inc.php:765 server_replication.php:322 +#: libraries/messages.inc.php:761 server_replication.php:322 msgid "Control slave:" msgstr "" -#: libraries/messages.inc.php:766 server_replication.php:65 +#: libraries/messages.inc.php:762 server_replication.php:65 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: libraries/messages.inc.php:767 server_replication.php:58 +#: libraries/messages.inc.php:763 server_replication.php:58 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: libraries/messages.inc.php:768 server_replication.php:221 +#: libraries/messages.inc.php:764 server_replication.php:221 msgid "Replicate all databases; Ignore:" msgstr "" -#: libraries/messages.inc.php:769 server_replication.php:222 +#: libraries/messages.inc.php:765 server_replication.php:222 msgid "Ignore all databases; Replicate:" msgstr "" -#: libraries/messages.inc.php:770 server_replication.php:218 +#: libraries/messages.inc.php:766 server_replication.php:218 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -4844,122 +4844,122 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: libraries/messages.inc.php:771 server_replication.php:217 +#: libraries/messages.inc.php:767 server_replication.php:217 msgid "Master configuration" msgstr "" -#: libraries/messages.inc.php:772 server_replication.php:181 +#: libraries/messages.inc.php:768 server_replication.php:181 #: server_replication.php:209 msgid "Master replication" msgstr "" -#: libraries/messages.inc.php:774 server_replication.php:230 +#: libraries/messages.inc.php:770 server_replication.php:230 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: libraries/messages.inc.php:775 server_replication.php:225 +#: libraries/messages.inc.php:771 server_replication.php:225 #, fuzzy msgid "Please select databases:" msgstr "請選擇資料庫" -#: libraries/messages.inc.php:776 server_replication.php:210 +#: libraries/messages.inc.php:772 server_replication.php:210 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:188 +#: libraries/messages.inc.php:773 libraries/replication_gui.lib.php:188 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/messages.inc.php:778 server_replication.php:187 +#: libraries/messages.inc.php:774 server_replication.php:187 msgid "Show connected slaves" msgstr "" -#: libraries/messages.inc.php:779 libraries/messages.inc.php:885 +#: libraries/messages.inc.php:775 libraries/messages.inc.php:881 #: server_replication.php:184 server_status.php:281 #, fuzzy msgid "Show master status" msgstr "顯示 slave 狀態" -#: libraries/messages.inc.php:780 server_replication.php:334 +#: libraries/messages.inc.php:776 server_replication.php:334 msgid "Skipping error(s) might lead into unsynchronized master and slave!" msgstr "" -#: libraries/messages.inc.php:781 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:777 libraries/replication_gui.lib.php:51 #: server_replication.php:347 msgid "Change or reconfigure master server" msgstr "" -#: libraries/messages.inc.php:782 libraries/replication_gui.lib.php:51 +#: libraries/messages.inc.php:778 libraries/replication_gui.lib.php:51 msgid "Slave configuration" msgstr "" -#: libraries/messages.inc.php:783 server_replication.php:305 +#: libraries/messages.inc.php:779 server_replication.php:305 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: libraries/messages.inc.php:784 server_replication.php:332 +#: libraries/messages.inc.php:780 server_replication.php:332 msgid "Error management:" msgstr "" -#: libraries/messages.inc.php:785 server_replication.php:328 +#: libraries/messages.inc.php:781 server_replication.php:328 #, php-format msgid "IO Thread %s only" msgstr "" -#: libraries/messages.inc.php:786 server_replication.php:296 +#: libraries/messages.inc.php:782 server_replication.php:296 msgid "Slave IO Thread not running!" msgstr "" -#: libraries/messages.inc.php:787 server_replication.php:355 +#: libraries/messages.inc.php:783 server_replication.php:355 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: libraries/messages.inc.php:788 server_replication.php:326 +#: libraries/messages.inc.php:784 server_replication.php:326 msgid "Reset slave" msgstr "" -#: libraries/messages.inc.php:789 server_replication.php:308 +#: libraries/messages.inc.php:785 server_replication.php:308 msgid "See slave status table" msgstr "" -#: libraries/messages.inc.php:790 server_replication.php:336 +#: libraries/messages.inc.php:786 server_replication.php:336 msgid "Skip current error" msgstr "" -#: libraries/messages.inc.php:791 server_replication.php:340 +#: libraries/messages.inc.php:787 server_replication.php:340 msgid "errors." msgstr "" -#: libraries/messages.inc.php:792 server_replication.php:337 +#: libraries/messages.inc.php:788 server_replication.php:337 msgid "Skip next" msgstr "" -#: libraries/messages.inc.php:793 server_replication.php:248 +#: libraries/messages.inc.php:789 server_replication.php:248 msgid "Slave replication" msgstr "" -#: libraries/messages.inc.php:794 server_replication.php:293 +#: libraries/messages.inc.php:790 server_replication.php:293 msgid "Slave SQL Thread not running!" msgstr "" -#: libraries/messages.inc.php:795 server_replication.php:327 +#: libraries/messages.inc.php:791 server_replication.php:327 #, php-format msgid "SQL Thread %s only" msgstr "" -#: libraries/messages.inc.php:796 +#: libraries/messages.inc.php:792 #, php-format msgid "" "This MySQL server works as %s in replication process. For further " @@ -4967,171 +4967,171 @@ msgid "" "\"#replication\">replication section." msgstr "" -#: libraries/messages.inc.php:797 +#: libraries/messages.inc.php:793 msgid "Master status" msgstr "" -#: libraries/messages.inc.php:798 server_status.php:721 +#: libraries/messages.inc.php:794 server_status.php:721 #, fuzzy msgid "Replication status" msgstr "複製" -#: libraries/messages.inc.php:799 +#: libraries/messages.inc.php:795 #, fuzzy msgid "Slave status" msgstr "顯示 slave 狀態" -#: libraries/messages.inc.php:800 server_replication.php:311 +#: libraries/messages.inc.php:796 server_replication.php:311 msgid "Synchronize databases with master" msgstr "" -#: libraries/messages.inc.php:801 server_replication.php:71 +#: libraries/messages.inc.php:797 server_replication.php:71 msgid "Unable to change master" msgstr "" -#: libraries/messages.inc.php:802 server_replication.php:51 +#: libraries/messages.inc.php:798 server_replication.php:51 msgid "Unknown error" msgstr "" -#: libraries/messages.inc.php:803 main.php:163 pdf_pages.php:344 +#: libraries/messages.inc.php:799 main.php:163 pdf_pages.php:344 #: setup/lib/FormDisplay.tpl.php:216 tbl_change.php:1175 msgid "Reset" msgstr "重設" -#: libraries/messages.inc.php:804 server_privileges.php:591 +#: libraries/messages.inc.php:800 server_privileges.php:591 msgid "Resource limits" msgstr "資源限制" -#: libraries/messages.inc.php:805 tbl_change.php:1209 +#: libraries/messages.inc.php:801 tbl_change.php:1209 #, php-format msgid "Restart insertion with %s rows" msgstr "" -#: libraries/messages.inc.php:807 server_privileges.php:1578 +#: libraries/messages.inc.php:803 server_privileges.php:1578 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "廢除使用者所有有效之權限並刪除." -#: libraries/messages.inc.php:808 server_privileges.php:1176 +#: libraries/messages.inc.php:804 server_privileges.php:1176 #, php-format msgid "You have revoked the privileges for %s" msgstr "您已移除這位使用者的權限: %s" -#: libraries/messages.inc.php:809 server_privileges.php:1333 +#: libraries/messages.inc.php:805 server_privileges.php:1333 msgid "Revoke" msgstr "移除" -#: libraries/messages.inc.php:810 libraries/mysql_charsets.lib.php:280 +#: libraries/messages.inc.php:806 libraries/mysql_charsets.lib.php:280 msgid "Romanian" msgstr "羅馬尼亞語" -#: libraries/messages.inc.php:813 tbl_printview.php:404 tbl_structure.php:786 +#: libraries/messages.inc.php:809 tbl_printview.php:404 tbl_structure.php:786 msgid "Row length" msgstr "資料列長度" -#: libraries/messages.inc.php:815 tbl_printview.php:414 tbl_structure.php:794 +#: libraries/messages.inc.php:811 tbl_printview.php:414 tbl_structure.php:794 msgid " Row size " msgstr "資料列大小" -#: libraries/messages.inc.php:821 tbl_printview.php:366 tbl_structure.php:726 +#: libraries/messages.inc.php:817 tbl_printview.php:366 tbl_structure.php:726 msgid "Row Statistics" msgstr "資料列統計數值" -#: libraries/messages.inc.php:822 +#: libraries/messages.inc.php:818 #, php-format msgid "running on %s" msgstr "在 %s 執行" -#: libraries/messages.inc.php:824 libraries/sql_query_form.lib.php:223 +#: libraries/messages.inc.php:820 libraries/sql_query_form.lib.php:223 #, php-format msgid "Run SQL query/queries on server %s" msgstr "於伺服器 %s 執行 SQL 語法" -#: libraries/messages.inc.php:825 libraries/sql_query_form.lib.php:240 +#: libraries/messages.inc.php:821 libraries/sql_query_form.lib.php:240 #: libraries/sql_query_form.lib.php:265 #, php-format msgid "Run SQL query/queries on database %s" msgstr "在資料庫 %s 執行以下指令" -#: libraries/messages.inc.php:826 libraries/mysql_charsets.lib.php:337 +#: libraries/messages.inc.php:822 libraries/mysql_charsets.lib.php:337 msgid "Russian" msgstr "俄語" -#: libraries/messages.inc.php:829 pmd_general.php:68 +#: libraries/messages.inc.php:825 pmd_general.php:68 msgid "Save position" msgstr "" -#: libraries/messages.inc.php:830 libraries/tbl_properties.inc.php:776 +#: libraries/messages.inc.php:826 libraries/tbl_properties.inc.php:776 #: pdf_pages.php:484 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:214 setup/lib/FormDisplay.tpl.php:215 #: tbl_change.php:1126 tbl_indexes.php:248 tbl_relation.php:566 msgid "Save" msgstr "儲存" -#: libraries/messages.inc.php:831 +#: libraries/messages.inc.php:827 msgid "The scale factor is too small to fit the schema on one page" msgstr "比例倍數太細, 無法將圖表放在一頁內" -#: libraries/messages.inc.php:843 main.php:298 +#: libraries/messages.inc.php:839 main.php:298 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." msgstr "設定檔案現在需要密碼 (passphrase) (blowfish_secret)." -#: libraries/messages.inc.php:844 navigation.php:353 navigation.php:516 +#: libraries/messages.inc.php:840 navigation.php:353 navigation.php:516 msgid "Please select a database" msgstr "請選擇資料庫" -#: libraries/messages.inc.php:846 server_binlog.php:120 +#: libraries/messages.inc.php:842 server_binlog.php:120 msgid "Select binary log to view" msgstr "選擇檢視二進制記錄" -#: libraries/messages.inc.php:847 tbl_select.php:270 +#: libraries/messages.inc.php:843 tbl_select.php:270 msgid "Select fields (at least one):" msgstr "選擇欄位 (至少一個)" -#: libraries/messages.inc.php:851 pdf_pages.php:320 +#: libraries/messages.inc.php:847 pdf_pages.php:320 msgid "Select Tables" msgstr "選擇資料表" -#: libraries/messages.inc.php:853 server_status.php:404 +#: libraries/messages.inc.php:849 server_status.php:404 msgid "Sent" msgstr "送出" -#: libraries/messages.inc.php:857 libraries/select_server.lib.php:45 +#: libraries/messages.inc.php:853 libraries/select_server.lib.php:45 #: setup/frames/index.inc.php:97 setup/lib/messages.inc.php:115 #, fuzzy msgid "Servers" msgstr "伺服器" -#: libraries/messages.inc.php:858 server_status.php:255 +#: libraries/messages.inc.php:854 server_status.php:255 msgid "Delayed inserts" msgstr "延遲插入" -#: libraries/messages.inc.php:859 server_status.php:46 +#: libraries/messages.inc.php:855 server_status.php:46 msgid "Runtime Information" msgstr "運行資訊" -#: libraries/messages.inc.php:860 server_status.php:350 +#: libraries/messages.inc.php:856 server_status.php:350 #, php-format msgid "This MySQL server has been running for %s. It started up on %s." msgstr "這 MySQL 伺服器已啟動了 %s. 伺服器於 %s 啟動." -#: libraries/messages.inc.php:861 libraries/server_links.inc.php:53 +#: libraries/messages.inc.php:857 libraries/server_links.inc.php:53 #: server_engines.php:112 server_engines.php:116 server_status.php:304 #: test/theme.php:105 msgid "Variables" msgstr "資訊" -#: libraries/messages.inc.php:862 server_status.php:383 +#: libraries/messages.inc.php:858 server_status.php:383 msgid "" "Server traffic: These tables show the network traffic statistics of " "this MySQL server since its startup." msgstr "" "伺服器流量: 這些表顯示了此 MySQL 伺服器自啟動以來的網絡流量統計。" -#: libraries/messages.inc.php:863 server_variables.php:35 +#: libraries/messages.inc.php:859 server_variables.php:35 msgid "Server variables and settings" msgstr "伺服器資訊及設定" -#: libraries/messages.inc.php:865 main.php:290 +#: libraries/messages.inc.php:861 main.php:290 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie " @@ -5139,17 +5139,17 @@ msgid "" "sooner than configured in phpMyAdmin." msgstr "" -#: libraries/messages.inc.php:866 +#: libraries/messages.inc.php:862 msgid "" "Cannot start session without errors, please check errors given in your PHP " "and/or webserver log file and configure your PHP installation properly." msgstr "" -#: libraries/messages.inc.php:867 server_variables.php:55 +#: libraries/messages.inc.php:863 server_variables.php:55 msgid "Session value" msgstr "程序數值" -#: libraries/messages.inc.php:868 libraries/tbl_properties.inc.php:105 +#: libraries/messages.inc.php:864 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 " @@ -5160,55 +5160,55 @@ msgstr "" "如在數值上需要輸入反斜線 (\\) 或單引號 (') , 請再加上反斜線 (例如 '\\\\xyz' " "or 'a\\'b')." -#: libraries/messages.inc.php:876 server_binlog.php:192 server_binlog.php:195 +#: libraries/messages.inc.php:872 server_binlog.php:192 server_binlog.php:195 #: server_processlist.php:49 server_processlist.php:51 msgid "Show Full Queries" msgstr "顯示完整查詢" -#: libraries/messages.inc.php:878 pmd_general.php:64 +#: libraries/messages.inc.php:874 pmd_general.php:64 msgid "Show/Hide left menu" msgstr "" -#: libraries/messages.inc.php:880 sql.php:513 +#: libraries/messages.inc.php:876 sql.php:513 msgid "Showing as PHP code" msgstr "" -#: libraries/messages.inc.php:882 sql.php:516 tbl_replace.php:360 +#: libraries/messages.inc.php:878 sql.php:516 tbl_replace.php:360 msgid "Showing SQL query" msgstr "" -#: libraries/messages.inc.php:883 tbl_change.php:1132 +#: libraries/messages.inc.php:879 tbl_change.php:1132 msgid "Show insert query" msgstr "" -#: libraries/messages.inc.php:886 server_status.php:273 +#: libraries/messages.inc.php:882 server_status.php:273 msgid "Show open tables" msgstr "顯示開啟資料表" -#: libraries/messages.inc.php:887 main.php:219 +#: libraries/messages.inc.php:883 main.php:219 msgid "Show PHP information" msgstr "顯示 PHP 資訊" -#: libraries/messages.inc.php:889 server_status.php:278 +#: libraries/messages.inc.php:885 server_status.php:278 msgid "Show slave hosts" msgstr "顯示 slave 主機" -#: libraries/messages.inc.php:890 server_status.php:284 +#: libraries/messages.inc.php:886 server_status.php:284 msgid "Show slave status" msgstr "顯示 slave 狀態" -#: libraries/messages.inc.php:891 +#: libraries/messages.inc.php:887 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: libraries/messages.inc.php:892 +#: libraries/messages.inc.php:888 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: libraries/messages.inc.php:893 +#: libraries/messages.inc.php:889 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -5216,78 +5216,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: libraries/messages.inc.php:894 +#: libraries/messages.inc.php:890 msgid "How many temporary files mysqld has created." msgstr "" -#: libraries/messages.inc.php:895 +#: libraries/messages.inc.php:891 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: libraries/messages.inc.php:896 +#: libraries/messages.inc.php:892 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: libraries/messages.inc.php:897 +#: libraries/messages.inc.php:893 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: libraries/messages.inc.php:898 +#: libraries/messages.inc.php:894 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: libraries/messages.inc.php:899 +#: libraries/messages.inc.php:895 msgid "The number of executed FLUSH statements." msgstr "" -#: libraries/messages.inc.php:900 +#: libraries/messages.inc.php:896 msgid "The number of internal COMMIT statements." msgstr "" -#: libraries/messages.inc.php:901 +#: libraries/messages.inc.php:897 msgid "The number of times a row was deleted from a table." msgstr "" -#: libraries/messages.inc.php:902 +#: libraries/messages.inc.php:898 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: libraries/messages.inc.php:903 +#: libraries/messages.inc.php:899 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: libraries/messages.inc.php:904 +#: libraries/messages.inc.php:900 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: libraries/messages.inc.php:905 +#: libraries/messages.inc.php:901 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: libraries/messages.inc.php:906 +#: libraries/messages.inc.php:902 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: libraries/messages.inc.php:907 +#: libraries/messages.inc.php:903 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -5295,7 +5295,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: libraries/messages.inc.php:908 +#: libraries/messages.inc.php:904 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -5303,42 +5303,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: libraries/messages.inc.php:909 +#: libraries/messages.inc.php:905 msgid "The number of internal ROLLBACK statements." msgstr "" -#: libraries/messages.inc.php:910 +#: libraries/messages.inc.php:906 msgid "The number of requests to update a row in a table." msgstr "" -#: libraries/messages.inc.php:911 +#: libraries/messages.inc.php:907 msgid "The number of requests to insert a row in a table." msgstr "" -#: libraries/messages.inc.php:912 +#: libraries/messages.inc.php:908 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: libraries/messages.inc.php:913 +#: libraries/messages.inc.php:909 msgid "The number of pages currently dirty." msgstr "" -#: libraries/messages.inc.php:914 +#: libraries/messages.inc.php:910 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: libraries/messages.inc.php:915 +#: libraries/messages.inc.php:911 msgid "The number of free pages." msgstr "" -#: libraries/messages.inc.php:916 +#: libraries/messages.inc.php:912 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: libraries/messages.inc.php:917 +#: libraries/messages.inc.php:913 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -5346,33 +5346,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: libraries/messages.inc.php:918 +#: libraries/messages.inc.php:914 msgid "Total size of buffer pool, in pages." msgstr "" -#: libraries/messages.inc.php:919 +#: libraries/messages.inc.php:915 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: libraries/messages.inc.php:920 +#: libraries/messages.inc.php:916 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: libraries/messages.inc.php:921 +#: libraries/messages.inc.php:917 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: libraries/messages.inc.php:922 +#: libraries/messages.inc.php:918 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: libraries/messages.inc.php:923 +#: libraries/messages.inc.php:919 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -5381,218 +5381,218 @@ msgid "" "properly, this value should be small." msgstr "" -#: libraries/messages.inc.php:924 +#: libraries/messages.inc.php:920 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: libraries/messages.inc.php:925 +#: libraries/messages.inc.php:921 msgid "The number of fsync() operations so far." msgstr "" -#: libraries/messages.inc.php:926 +#: libraries/messages.inc.php:922 msgid "The current number of pending fsync() operations." msgstr "" -#: libraries/messages.inc.php:927 +#: libraries/messages.inc.php:923 msgid "The current number of pending reads." msgstr "" -#: libraries/messages.inc.php:928 +#: libraries/messages.inc.php:924 msgid "The current number of pending writes." msgstr "" -#: libraries/messages.inc.php:929 +#: libraries/messages.inc.php:925 msgid "The amount of data read so far, in bytes." msgstr "" -#: libraries/messages.inc.php:930 +#: libraries/messages.inc.php:926 msgid "The total number of data reads." msgstr "" -#: libraries/messages.inc.php:931 +#: libraries/messages.inc.php:927 msgid "The total number of data writes." msgstr "" -#: libraries/messages.inc.php:932 +#: libraries/messages.inc.php:928 msgid "The amount of data written so far, in bytes." msgstr "" -#: libraries/messages.inc.php:933 +#: libraries/messages.inc.php:929 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: libraries/messages.inc.php:934 +#: libraries/messages.inc.php:930 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: libraries/messages.inc.php:935 +#: libraries/messages.inc.php:931 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: libraries/messages.inc.php:936 +#: libraries/messages.inc.php:932 msgid "The number of log write requests." msgstr "" -#: libraries/messages.inc.php:937 +#: libraries/messages.inc.php:933 msgid "The number of physical writes to the log file." msgstr "" -#: libraries/messages.inc.php:938 +#: libraries/messages.inc.php:934 msgid "The number of fsync() writes done to the log file." msgstr "" -#: libraries/messages.inc.php:939 +#: libraries/messages.inc.php:935 msgid "The number of pending log file fsyncs." msgstr "" -#: libraries/messages.inc.php:940 +#: libraries/messages.inc.php:936 msgid "Pending log file writes." msgstr "" -#: libraries/messages.inc.php:941 +#: libraries/messages.inc.php:937 msgid "The number of bytes written to the log file." msgstr "" -#: libraries/messages.inc.php:942 +#: libraries/messages.inc.php:938 msgid "The number of pages created." msgstr "" -#: libraries/messages.inc.php:943 +#: libraries/messages.inc.php:939 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: libraries/messages.inc.php:944 +#: libraries/messages.inc.php:940 msgid "The number of pages read." msgstr "" -#: libraries/messages.inc.php:945 +#: libraries/messages.inc.php:941 msgid "The number of pages written." msgstr "" -#: libraries/messages.inc.php:946 +#: libraries/messages.inc.php:942 msgid "The number of row locks currently being waited for." msgstr "" -#: libraries/messages.inc.php:947 +#: libraries/messages.inc.php:943 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/messages.inc.php:948 +#: libraries/messages.inc.php:944 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: libraries/messages.inc.php:949 +#: libraries/messages.inc.php:945 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: libraries/messages.inc.php:950 +#: libraries/messages.inc.php:946 msgid "The number of times a row lock had to be waited for." msgstr "" -#: libraries/messages.inc.php:951 +#: libraries/messages.inc.php:947 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: libraries/messages.inc.php:952 +#: libraries/messages.inc.php:948 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: libraries/messages.inc.php:953 +#: libraries/messages.inc.php:949 msgid "The number of rows read from InnoDB tables." msgstr "" -#: libraries/messages.inc.php:954 +#: libraries/messages.inc.php:950 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: libraries/messages.inc.php:955 +#: libraries/messages.inc.php:951 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: libraries/messages.inc.php:956 +#: libraries/messages.inc.php:952 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: libraries/messages.inc.php:957 +#: libraries/messages.inc.php:953 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: libraries/messages.inc.php:958 +#: libraries/messages.inc.php:954 msgid "The number of requests to read a key block from the cache." msgstr "" -#: libraries/messages.inc.php:959 +#: libraries/messages.inc.php:955 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: libraries/messages.inc.php:960 +#: libraries/messages.inc.php:956 msgid "The number of requests to write a key block to the cache." msgstr "" -#: libraries/messages.inc.php:961 +#: libraries/messages.inc.php:957 msgid "The number of physical writes of a key block to disk." msgstr "" -#: libraries/messages.inc.php:962 +#: libraries/messages.inc.php:958 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: libraries/messages.inc.php:963 +#: libraries/messages.inc.php:959 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: libraries/messages.inc.php:964 +#: libraries/messages.inc.php:960 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: libraries/messages.inc.php:965 +#: libraries/messages.inc.php:961 msgid "The number of files that are open." msgstr "" -#: libraries/messages.inc.php:966 +#: libraries/messages.inc.php:962 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: libraries/messages.inc.php:967 +#: libraries/messages.inc.php:963 msgid "The number of tables that are open." msgstr "" -#: libraries/messages.inc.php:968 +#: libraries/messages.inc.php:964 msgid "The number of free memory blocks in query cache." msgstr "" -#: libraries/messages.inc.php:969 +#: libraries/messages.inc.php:965 msgid "The amount of free memory for query cache." msgstr "" -#: libraries/messages.inc.php:970 +#: libraries/messages.inc.php:966 msgid "The number of cache hits." msgstr "" -#: libraries/messages.inc.php:971 +#: libraries/messages.inc.php:967 msgid "The number of queries added to the cache." msgstr "" -#: libraries/messages.inc.php:972 +#: libraries/messages.inc.php:968 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -5600,104 +5600,104 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: libraries/messages.inc.php:973 +#: libraries/messages.inc.php:969 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: libraries/messages.inc.php:974 +#: libraries/messages.inc.php:970 msgid "The number of queries registered in the cache." msgstr "" -#: libraries/messages.inc.php:975 +#: libraries/messages.inc.php:971 msgid "The total number of blocks in the query cache." msgstr "" -#: libraries/messages.inc.php:976 +#: libraries/messages.inc.php:972 msgctxt "$strShowStatusReset" msgid "Reset" msgstr "重設" -#: libraries/messages.inc.php:977 +#: libraries/messages.inc.php:973 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: libraries/messages.inc.php:978 +#: libraries/messages.inc.php:974 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: libraries/messages.inc.php:979 +#: libraries/messages.inc.php:975 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: libraries/messages.inc.php:980 +#: libraries/messages.inc.php:976 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: libraries/messages.inc.php:981 +#: libraries/messages.inc.php:977 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: libraries/messages.inc.php:982 +#: libraries/messages.inc.php:978 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: libraries/messages.inc.php:983 +#: libraries/messages.inc.php:979 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: libraries/messages.inc.php:984 +#: libraries/messages.inc.php:980 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: libraries/messages.inc.php:985 +#: libraries/messages.inc.php:981 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: libraries/messages.inc.php:986 +#: libraries/messages.inc.php:982 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: libraries/messages.inc.php:987 +#: libraries/messages.inc.php:983 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: libraries/messages.inc.php:988 +#: libraries/messages.inc.php:984 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: libraries/messages.inc.php:989 +#: libraries/messages.inc.php:985 msgid "The number of sorts that were done with ranges." msgstr "" -#: libraries/messages.inc.php:990 +#: libraries/messages.inc.php:986 msgid "The number of sorted rows." msgstr "" -#: libraries/messages.inc.php:991 +#: libraries/messages.inc.php:987 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: libraries/messages.inc.php:992 +#: libraries/messages.inc.php:988 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: libraries/messages.inc.php:993 +#: libraries/messages.inc.php:989 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -5705,18 +5705,18 @@ msgid "" "tables or use replication." msgstr "" -#: libraries/messages.inc.php:994 +#: libraries/messages.inc.php:990 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: libraries/messages.inc.php:995 +#: libraries/messages.inc.php:991 msgid "The number of currently open connections." msgstr "" -#: libraries/messages.inc.php:996 +#: libraries/messages.inc.php:992 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -5724,74 +5724,74 @@ msgid "" "implementation.)" msgstr "" -#: libraries/messages.inc.php:997 +#: libraries/messages.inc.php:993 msgid "The number of threads that are not sleeping." msgstr "" -#: libraries/messages.inc.php:999 tbl_printview.php:75 +#: libraries/messages.inc.php:995 tbl_printview.php:75 msgid "Show tables" msgstr "顯示資料表" -#: libraries/messages.inc.php:1000 libraries/sql_query_form.lib.php:396 +#: libraries/messages.inc.php:996 libraries/sql_query_form.lib.php:396 msgid " Show this query here again " msgstr "重新顯示 SQL 語法 " -#: libraries/messages.inc.php:1001 libraries/mysql_charsets.lib.php:217 +#: libraries/messages.inc.php:997 libraries/mysql_charsets.lib.php:217 #: libraries/mysql_charsets.lib.php:342 msgid "Simplified Chinese" msgstr "簡體中文" -#: libraries/messages.inc.php:1002 tbl_operations.php:258 +#: libraries/messages.inc.php:998 tbl_operations.php:258 msgid "(singly)" msgstr "(只會排序現時的記錄)" -#: libraries/messages.inc.php:1005 libraries/replication_gui.lib.php:52 +#: libraries/messages.inc.php:1001 libraries/replication_gui.lib.php:52 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" msgstr "" -#: libraries/messages.inc.php:1006 libraries/mysql_charsets.lib.php:283 +#: libraries/messages.inc.php:1002 libraries/mysql_charsets.lib.php:283 msgid "Slovak" msgstr "斯洛伐克語" -#: libraries/messages.inc.php:1007 libraries/mysql_charsets.lib.php:286 +#: libraries/messages.inc.php:1003 libraries/mysql_charsets.lib.php:286 msgid "Slovenian" msgstr "斯洛文尼亞語" -#: libraries/messages.inc.php:1008 pmd_general.php:95 +#: libraries/messages.inc.php:1004 pmd_general.php:95 msgid "Small/Big All" msgstr "" -#: libraries/messages.inc.php:1009 pmd_general.php:91 +#: libraries/messages.inc.php:1005 pmd_general.php:91 msgid "Snap to grid" msgstr "" -#: libraries/messages.inc.php:1011 server_synchronize.php:1167 +#: libraries/messages.inc.php:1007 server_synchronize.php:1167 msgid "Socket" msgstr "" -#: libraries/messages.inc.php:1013 server_status.php:259 +#: libraries/messages.inc.php:1009 server_status.php:259 msgid "Sorting" msgstr "排序" -#: libraries/messages.inc.php:1015 tbl_printview.php:310 tbl_structure.php:657 +#: libraries/messages.inc.php:1011 tbl_printview.php:310 tbl_structure.php:657 msgid "Space usage" msgstr "已使用空間" -#: libraries/messages.inc.php:1016 libraries/mysql_charsets.lib.php:289 +#: libraries/messages.inc.php:1012 libraries/mysql_charsets.lib.php:289 msgid "Spanish" msgstr "西班牙語" -#: libraries/messages.inc.php:1019 +#: libraries/messages.inc.php:1015 msgid "Export type" msgstr "輸出方式" -#: libraries/messages.inc.php:1020 +#: libraries/messages.inc.php:1016 msgid "Export time in UTC" msgstr "" -#: libraries/messages.inc.php:1021 libraries/sqlparser.lib.php:173 +#: libraries/messages.inc.php:1017 libraries/sqlparser.lib.php:173 msgid "" "There is a chance that you may have found a bug in the SQL parser. Please " "examine your query closely, and check that the quotes are correct and not " @@ -5810,7 +5810,7 @@ msgstr "" "但在命令列模式能正常執行,請將該句出現錯誤的 SQL 語法抽出,並將以下的\"剪取" "\"部份一同提交到臭虫區:" -#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:137 +#: libraries/messages.inc.php:1018 libraries/sqlparser.lib.php:137 msgid "" "There seems to be an error in your SQL query. The MySQL server error output " "below, if there is any, may also help you in diagnosing the problem" @@ -5818,419 +5818,419 @@ msgstr "" "可能是您的 SQL 語法出現錯誤,如 MySQL 伺服器發出錯誤信息,這可能幫助您去找出" "問題所在。" -#: libraries/messages.inc.php:1026 libraries/sqlparser.lib.php:495 +#: libraries/messages.inc.php:1022 libraries/sqlparser.lib.php:495 msgid "Invalid Identifer" msgstr "無效的識別碼 (Invalid Identifer)" -#: libraries/messages.inc.php:1027 libraries/sqlparser.lib.php:344 +#: libraries/messages.inc.php:1023 libraries/sqlparser.lib.php:344 msgid "Unclosed quote" msgstr "未完結的引號 (Unclosed quote)" -#: libraries/messages.inc.php:1028 libraries/sqlparser.lib.php:612 +#: libraries/messages.inc.php:1024 libraries/sqlparser.lib.php:612 msgid "Unknown Punctuation String" msgstr "不知明的標點符號 (Unknown Punctuation String)" -#: libraries/messages.inc.php:1030 server_replication.php:327 +#: libraries/messages.inc.php:1026 server_replication.php:327 #: server_replication.php:328 #, fuzzy msgid "Start" msgstr "Sat" -#: libraries/messages.inc.php:1033 tbl_printview.php:369 tbl_structure.php:729 +#: libraries/messages.inc.php:1029 tbl_printview.php:369 tbl_structure.php:729 msgid "Statements" msgstr "敘述" -#: libraries/messages.inc.php:1034 tbl_printview.php:380 tbl_structure.php:741 +#: libraries/messages.inc.php:1030 tbl_printview.php:380 tbl_structure.php:741 msgid "static" msgstr "" -#: libraries/messages.inc.php:1035 server_status.php:388 +#: libraries/messages.inc.php:1031 server_status.php:388 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "於較繁忙的伺服器, 計算器可能會溢出, 令 MySQL 伺服器提供之統計有誤差." -#: libraries/messages.inc.php:1038 server_replication.php:327 +#: libraries/messages.inc.php:1034 server_replication.php:327 #: server_replication.php:328 msgid "Stop" msgstr "" -#: libraries/messages.inc.php:1039 server_engines.php:49 +#: libraries/messages.inc.php:1035 server_engines.php:49 msgid "Storage Engines" msgstr "儲存引擎" -#: libraries/messages.inc.php:1040 libraries/tbl_properties.inc.php:726 +#: libraries/messages.inc.php:1036 libraries/tbl_properties.inc.php:726 #: server_engines.php:58 tbl_operations.php:353 msgid "Storage Engine" msgstr "儲存引擎" -#: libraries/messages.inc.php:1042 +#: libraries/messages.inc.php:1038 msgid "CSV for MS Excel" msgstr "MS Excel 的 CSV 格式" -#: libraries/messages.inc.php:1044 tbl_structure.php:516 tbl_structure.php:518 +#: libraries/messages.inc.php:1040 tbl_structure.php:516 tbl_structure.php:518 msgid "Propose table structure" msgstr "分析資料表結構" -#: libraries/messages.inc.php:1045 server_synchronize.php:424 +#: libraries/messages.inc.php:1041 server_synchronize.php:424 #: server_synchronize.php:867 msgid "Structure Difference" msgstr "" -#: libraries/messages.inc.php:1049 server_synchronize.php:265 +#: libraries/messages.inc.php:1045 server_synchronize.php:265 msgid "Structure Synchronization" msgstr "" -#: libraries/messages.inc.php:1050 libraries/sql_query_form.lib.php:462 +#: libraries/messages.inc.php:1046 libraries/sql_query_form.lib.php:462 msgid "Submit" msgstr "送出" -#: libraries/messages.inc.php:1052 main.php:358 +#: libraries/messages.inc.php:1048 main.php:358 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " "issues." msgstr "" -#: libraries/messages.inc.php:1054 libraries/mysql_charsets.lib.php:295 +#: libraries/messages.inc.php:1050 libraries/mysql_charsets.lib.php:295 #: libraries/mysql_charsets.lib.php:392 msgid "Swedish" msgstr "瑞典語" -#: libraries/messages.inc.php:1060 tbl_operations.php:556 +#: libraries/messages.inc.php:1056 tbl_operations.php:556 msgid "Switch to copied table" msgstr "跳到已複製之資料表" -#: libraries/messages.inc.php:1061 server_synchronize.php:1213 +#: libraries/messages.inc.php:1057 server_synchronize.php:1213 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." msgstr "" -#: libraries/messages.inc.php:1062 server_synchronize.php:451 +#: libraries/messages.inc.php:1058 server_synchronize.php:451 #: server_synchronize.php:896 msgid "Synchronize Databases" msgstr "" -#: libraries/messages.inc.php:1063 libraries/server_links.inc.php:92 +#: libraries/messages.inc.php:1059 libraries/server_links.inc.php:92 #: server_synchronize.php:1092 server_synchronize.php:1100 msgid "Synchronize" msgstr "" -#: libraries/messages.inc.php:1065 server_synchronize.php:430 +#: libraries/messages.inc.php:1061 server_synchronize.php:430 #: server_synchronize.php:873 msgid "Add column(s)" msgstr "" -#: libraries/messages.inc.php:1066 tbl_create.php:62 +#: libraries/messages.inc.php:1062 tbl_create.php:62 #, php-format msgid "Table %s already exists!" msgstr "資料表 %s 已存在!" -#: libraries/messages.inc.php:1067 server_synchronize.php:432 +#: libraries/messages.inc.php:1063 server_synchronize.php:432 #: server_synchronize.php:875 msgid "Alter column(s)" msgstr "" -#: libraries/messages.inc.php:1068 tbl_addfield.php:189 tbl_alter.php:103 +#: libraries/messages.inc.php:1064 tbl_addfield.php:189 tbl_alter.php:103 #: tbl_indexes.php:98 #, fuzzy, php-format msgid "Table %1$s has been altered successfully" msgstr "選擇的使用者已成功刪除." -#: libraries/messages.inc.php:1069 server_synchronize.php:434 +#: libraries/messages.inc.php:1065 server_synchronize.php:434 #: server_synchronize.php:877 msgid "Apply index(s)" msgstr "" -#: libraries/messages.inc.php:1071 server_synchronize.php:446 +#: libraries/messages.inc.php:1067 server_synchronize.php:446 #: server_synchronize.php:890 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: libraries/messages.inc.php:1072 tbl_move_copy.php:82 +#: libraries/messages.inc.php:1068 tbl_move_copy.php:82 msgid "The table name is empty!" msgstr "請輸入資料表名稱!" -#: libraries/messages.inc.php:1073 tbl_create.php:249 +#: libraries/messages.inc.php:1069 tbl_create.php:249 #, fuzzy, php-format msgid "Table %1$s has been created." msgstr "資料表 %s 已被刪除" -#: libraries/messages.inc.php:1076 tbl_operations.php:628 +#: libraries/messages.inc.php:1072 tbl_operations.php:628 #, php-format msgid "Table %s has been flushed" msgstr "資料表 %s 已被強迫更新" -#: libraries/messages.inc.php:1077 server_synchronize.php:436 +#: libraries/messages.inc.php:1073 server_synchronize.php:436 #: server_synchronize.php:879 msgid "Insert row(s)" msgstr "" -#: libraries/messages.inc.php:1078 libraries/tbl_links.inc.php:107 +#: libraries/messages.inc.php:1074 libraries/tbl_links.inc.php:107 #: libraries/tbl_links.inc.php:140 libraries/tbl_links.inc.php:141 msgid "Table seems to be empty!" msgstr "" -#: libraries/messages.inc.php:1079 tbl_operations.php:568 +#: libraries/messages.inc.php:1075 tbl_operations.php:568 msgid "Table maintenance" msgstr "資料表維護" -#: libraries/messages.inc.php:1080 libraries/tbl_properties.inc.php:618 +#: libraries/messages.inc.php:1076 libraries/tbl_properties.inc.php:618 #: server_synchronize.php:428 server_synchronize.php:871 #, fuzzy msgid "Table name" msgstr "資料表名稱" -#: libraries/messages.inc.php:1081 pdf_schema.php:1116 +#: libraries/messages.inc.php:1077 pdf_schema.php:1116 msgid "Table of contents" msgstr "目錄" -#: libraries/messages.inc.php:1082 tbl_operations.php:334 +#: libraries/messages.inc.php:1078 tbl_operations.php:334 msgid "Table options" msgstr "資料表選項" -#: libraries/messages.inc.php:1083 server_synchronize.php:431 +#: libraries/messages.inc.php:1079 server_synchronize.php:431 #: server_synchronize.php:874 msgid "Remove column(s)" msgstr "" -#: libraries/messages.inc.php:1084 server_synchronize.php:433 +#: libraries/messages.inc.php:1080 server_synchronize.php:433 #: server_synchronize.php:876 msgid "Remove index(s)" msgstr "" -#: libraries/messages.inc.php:1088 server_synchronize.php:435 +#: libraries/messages.inc.php:1084 server_synchronize.php:435 #: server_synchronize.php:878 msgid "Update row(s)" msgstr "" -#: libraries/messages.inc.php:1090 server_synchronize.php:942 +#: libraries/messages.inc.php:1086 server_synchronize.php:942 msgid "Target database has been synchronized with source database" msgstr "" -#: libraries/messages.inc.php:1091 server_privileges.php:392 +#: libraries/messages.inc.php:1087 server_privileges.php:392 #: server_privileges.php:527 server_privileges.php:1679 #: server_privileges.php:1685 msgid "Table-specific privileges" msgstr "指定資料表權限" -#: libraries/messages.inc.php:1092 server_status.php:254 +#: libraries/messages.inc.php:1088 server_status.php:254 msgid "Temporary data" msgstr "暫存資料" -#: libraries/messages.inc.php:1093 tbl_change.php:728 +#: libraries/messages.inc.php:1089 tbl_change.php:728 msgid " Because of its length,
this field might not be editable " msgstr " 由於長度限制
此欄位不能編輯 " -#: libraries/messages.inc.php:1094 +#: libraries/messages.inc.php:1090 msgid "Texy! text" msgstr "" -#: libraries/messages.inc.php:1095 libraries/mysql_charsets.lib.php:298 +#: libraries/messages.inc.php:1091 libraries/mysql_charsets.lib.php:298 #: libraries/mysql_charsets.lib.php:395 msgid "Thai" msgstr "泰語" -#: libraries/messages.inc.php:1102 libraries/replication_gui.lib.php:308 +#: libraries/messages.inc.php:1098 libraries/replication_gui.lib.php:308 #: server_privileges.php:734 msgid "This Host" msgstr "指定主機" -#: libraries/messages.inc.php:1103 server_status.php:252 +#: libraries/messages.inc.php:1099 server_status.php:252 msgid "Threads" msgstr "線程" -#: libraries/messages.inc.php:1104 server_processlist.php:22 +#: libraries/messages.inc.php:1100 server_processlist.php:22 #, php-format msgid "Thread %s was successfully killed." msgstr "指令 %s 已成功中止." -#: libraries/messages.inc.php:1106 +#: libraries/messages.inc.php:1102 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." msgstr "" -#: libraries/messages.inc.php:1109 pmd_pdf.php:94 +#: libraries/messages.inc.php:1105 pmd_pdf.php:94 msgid "to/from page" msgstr "" -#: libraries/messages.inc.php:1110 pdf_pages.php:343 +#: libraries/messages.inc.php:1106 pdf_pages.php:343 msgid "Toggle scratchboard" msgstr "轉換便條" -#: libraries/messages.inc.php:1111 pmd_general.php:99 +#: libraries/messages.inc.php:1107 pmd_general.php:99 msgid "Toggle small/big" msgstr "" -#: libraries/messages.inc.php:1112 pmd_help.php:27 +#: libraries/messages.inc.php:1108 pmd_help.php:27 msgid "To select relation, click :" msgstr "" -#: libraries/messages.inc.php:1115 libraries/tbl_links.inc.php:149 +#: libraries/messages.inc.php:1111 libraries/tbl_links.inc.php:149 #, php-format msgid "Tracking of %s.%s is activated." msgstr "" -#: libraries/messages.inc.php:1116 tbl_tracking.php:655 +#: libraries/messages.inc.php:1112 tbl_tracking.php:655 msgid "Activate now" msgstr "" -#: libraries/messages.inc.php:1117 tbl_tracking.php:653 +#: libraries/messages.inc.php:1113 tbl_tracking.php:653 #, php-format msgid "Activate tracking for %s.%s" msgstr "" -#: libraries/messages.inc.php:1118 tbl_tracking.php:221 +#: libraries/messages.inc.php:1114 tbl_tracking.php:221 msgid "Comment out these two lines if you do not need them." msgstr "" -#: libraries/messages.inc.php:1119 tbl_tracking.php:688 +#: libraries/messages.inc.php:1115 tbl_tracking.php:688 #, fuzzy msgid "Create version" msgstr "伺服器版本" -#: libraries/messages.inc.php:1120 tbl_tracking.php:668 +#: libraries/messages.inc.php:1116 tbl_tracking.php:668 #, php-format msgid "Create version %s of %s.%s" msgstr "" -#: libraries/messages.inc.php:1122 tbl_tracking.php:412 +#: libraries/messages.inc.php:1118 tbl_tracking.php:412 msgid "Data definition statement" msgstr "" -#: libraries/messages.inc.php:1123 tbl_tracking.php:463 +#: libraries/messages.inc.php:1119 tbl_tracking.php:463 msgid "Data manipulation statement" msgstr "" -#: libraries/messages.inc.php:1124 tbl_tracking.php:410 tbl_tracking.php:461 +#: libraries/messages.inc.php:1120 tbl_tracking.php:410 tbl_tracking.php:461 #, fuzzy msgid "Date" msgstr "資料" -#: libraries/messages.inc.php:1125 tbl_tracking.php:642 +#: libraries/messages.inc.php:1121 tbl_tracking.php:642 msgid "Deactivate now" msgstr "" -#: libraries/messages.inc.php:1126 tbl_tracking.php:640 +#: libraries/messages.inc.php:1122 tbl_tracking.php:640 #, php-format msgid "Deactivate tracking for %s.%s" msgstr "" -#: libraries/messages.inc.php:1127 tbl_tracking.php:521 +#: libraries/messages.inc.php:1123 tbl_tracking.php:521 #, php-format msgid "Export as %s" msgstr "" -#: libraries/messages.inc.php:1130 tbl_tracking.php:251 tbl_tracking.php:379 +#: libraries/messages.inc.php:1126 tbl_tracking.php:251 tbl_tracking.php:379 msgid "Close" msgstr "" -#: libraries/messages.inc.php:1131 tbl_tracking.php:114 +#: libraries/messages.inc.php:1127 tbl_tracking.php:114 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: libraries/messages.inc.php:1133 tbl_tracking.php:397 tbl_tracking.php:504 +#: libraries/messages.inc.php:1129 tbl_tracking.php:397 tbl_tracking.php:504 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" msgstr "" -#: libraries/messages.inc.php:1134 tbl_tracking.php:561 +#: libraries/messages.inc.php:1130 tbl_tracking.php:561 msgid "Show versions" msgstr "" -#: libraries/messages.inc.php:1135 tbl_tracking.php:507 +#: libraries/messages.inc.php:1131 tbl_tracking.php:507 msgid "SQL dump (file download)" msgstr "" -#: libraries/messages.inc.php:1136 tbl_tracking.php:508 +#: libraries/messages.inc.php:1132 tbl_tracking.php:508 msgid "SQL dump" msgstr "" -#: libraries/messages.inc.php:1137 tbl_tracking.php:213 +#: libraries/messages.inc.php:1133 tbl_tracking.php:213 msgid "SQL statements executed." msgstr "" -#: libraries/messages.inc.php:1138 +#: libraries/messages.inc.php:1134 msgid "This option will replace your table and contained data." msgstr "" -#: libraries/messages.inc.php:1139 tbl_tracking.php:509 +#: libraries/messages.inc.php:1135 tbl_tracking.php:509 msgid "SQL execution" msgstr "" -#: libraries/messages.inc.php:1140 tbl_tracking.php:230 +#: libraries/messages.inc.php:1136 tbl_tracking.php:230 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: libraries/messages.inc.php:1141 tbl_tracking.php:381 +#: libraries/messages.inc.php:1137 tbl_tracking.php:381 msgid "Tracking statements" msgstr "" -#: libraries/messages.inc.php:1148 tbl_tracking.php:593 +#: libraries/messages.inc.php:1144 tbl_tracking.php:593 #, fuzzy msgid "Version" msgstr "波斯語" -#: libraries/messages.inc.php:1149 tbl_tracking.php:672 +#: libraries/messages.inc.php:1145 tbl_tracking.php:672 msgid "Track these data definition statements:" msgstr "" -#: libraries/messages.inc.php:1150 tbl_tracking.php:680 +#: libraries/messages.inc.php:1146 tbl_tracking.php:680 msgid "Track these data manipulation statements:" msgstr "" -#: libraries/messages.inc.php:1155 tbl_tracking.php:411 tbl_tracking.php:462 +#: libraries/messages.inc.php:1151 tbl_tracking.php:411 tbl_tracking.php:462 #, fuzzy msgid "Username" msgstr "登入名稱:" -#: libraries/messages.inc.php:1156 tbl_tracking.php:203 +#: libraries/messages.inc.php:1152 tbl_tracking.php:203 #, php-format msgid "Tracking for %s.%s , version %s is activated." msgstr "" -#: libraries/messages.inc.php:1157 tbl_tracking.php:187 +#: libraries/messages.inc.php:1153 tbl_tracking.php:187 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." msgstr "" -#: libraries/messages.inc.php:1158 tbl_tracking.php:195 +#: libraries/messages.inc.php:1154 tbl_tracking.php:195 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." msgstr "" -#: libraries/messages.inc.php:1159 tbl_tracking.php:262 +#: libraries/messages.inc.php:1155 tbl_tracking.php:262 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: libraries/messages.inc.php:1161 tbl_tracking.php:220 +#: libraries/messages.inc.php:1157 tbl_tracking.php:220 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: libraries/messages.inc.php:1162 libraries/mysql_charsets.lib.php:219 +#: libraries/messages.inc.php:1158 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:362 msgid "Traditional Chinese" msgstr "繁體中文" -#: libraries/messages.inc.php:1163 libraries/mysql_charsets.lib.php:292 +#: libraries/messages.inc.php:1159 libraries/mysql_charsets.lib.php:292 msgid "Traditional Spanish" msgstr "傳統西班牙語" -#: libraries/messages.inc.php:1164 server_status.php:388 +#: libraries/messages.inc.php:1160 server_status.php:388 msgid "Traffic" msgstr "流量" -#: libraries/messages.inc.php:1165 server_status.php:261 +#: libraries/messages.inc.php:1161 server_status.php:261 msgid "Transaction coordinator" msgstr "交易協調器" -#: libraries/messages.inc.php:1166 +#: libraries/messages.inc.php:1162 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 " @@ -6240,27 +6240,27 @@ msgstr "" "於欄位顯示連線來下載二進制資料. 第一個選項是二進制的檔案名稱. 第二個選項可設" "定可用的欄位名稱用作檔案名稱. 如您設定了第二個選項, 第一個選項無需設定" -#: libraries/messages.inc.php:1167 +#: libraries/messages.inc.php:1163 msgid "" "Displays hexadecimal representation of data. Optional first parameter " "specifies how often space will be added (defaults to 2 nibbles)." msgstr "以十六進制方式顯示." -#: libraries/messages.inc.php:1168 +#: libraries/messages.inc.php:1164 msgid "" "Displays a clickable thumbnail. The options are the maximum width and height " "in pixels. The original aspect ratio is preserved." msgstr "顯示可按式圖像; 選項; 寬度,高度[以像素為單位] (保時原有比例)" -#: libraries/messages.inc.php:1169 +#: libraries/messages.inc.php:1165 msgid "Displays a link to download this image." msgstr "顯示圖像的連線 (直接下載)." -#: libraries/messages.inc.php:1170 +#: libraries/messages.inc.php:1166 msgid "See image/jpeg: inline" msgstr "參看 image/jpeg: 內建" -#: libraries/messages.inc.php:1171 +#: libraries/messages.inc.php:1167 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 " @@ -6272,7 +6272,7 @@ msgid "" "gmdate() function." msgstr "" -#: libraries/messages.inc.php:1172 +#: libraries/messages.inc.php:1168 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 " @@ -6292,13 +6292,13 @@ msgstr "" "為 1 將會使用 htmlspecialchars() 轉換輸出 (預設: 1). 第四個選項, 如設定為 1 " "將會加入 NOWRAP 於內容的表格內, 令輸出之所有內容都不會重新排位 (預設: 1)" -#: libraries/messages.inc.php:1173 +#: libraries/messages.inc.php:1169 msgid "" "Displays the contents of the field as-is, without running it through " "htmlspecialchars(). That is, the field is assumed to contain valid HTML." msgstr "保存原本內容之格式. 不進行任何 Escaping 處理." -#: libraries/messages.inc.php:1174 +#: libraries/messages.inc.php:1170 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 " @@ -6307,7 +6307,7 @@ msgstr "" "顯示圖像及連結, 數據內容是檔案名稱; 第一個選項是網址前段 (例 \"http://domain." "com/\" ), 第二個選項是寬度的像素,第三個選項是高度的像素." -#: libraries/messages.inc.php:1175 +#: libraries/messages.inc.php:1171 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 " @@ -6316,11 +6316,11 @@ msgstr "" "顯示連結, 數據內容是檔案名稱; 第一個選項是網址前段 (例 \"http://domain.com/" "\" ), 第二選項是連結的標題." -#: libraries/messages.inc.php:1176 +#: libraries/messages.inc.php:1172 msgid "Formats text as SQL query with syntax highlighting." msgstr "格式化文字為 SQL 查詢及特出語法." -#: libraries/messages.inc.php:1177 +#: libraries/messages.inc.php:1173 msgid "" "Displays a part of a string. The first option is the number of characters to " "skip from the beginning of the string (Default 0). The second option is the " @@ -6332,69 +6332,69 @@ msgstr "" "選項為多少個字串輸出. 留空為輸出餘下所有字串. 第三個選項為當部份字串取回後顯" "示什麼字串於結尾 (預設: ...) ." -#: libraries/messages.inc.php:1179 server_binlog.php:183 server_binlog.php:186 +#: libraries/messages.inc.php:1175 server_binlog.php:183 server_binlog.php:186 #: server_processlist.php:49 server_processlist.php:51 msgid "Truncate Shown Queries" msgstr "刪除已顯示查詢" -#: libraries/messages.inc.php:1180 libraries/mysql_charsets.lib.php:301 +#: libraries/messages.inc.php:1176 libraries/mysql_charsets.lib.php:301 #: libraries/mysql_charsets.lib.php:389 msgid "Turkish" msgstr "土耳其語" -#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:304 +#: libraries/messages.inc.php:1179 libraries/mysql_charsets.lib.php:304 #: libraries/mysql_charsets.lib.php:386 msgid "Ukrainian" msgstr "烏克蘭語" -#: libraries/messages.inc.php:1185 libraries/mysql_charsets.lib.php:307 +#: libraries/messages.inc.php:1181 libraries/mysql_charsets.lib.php:307 #: libraries/mysql_charsets.lib.php:316 msgid "Unicode" msgstr "統一碼 (Unicode)" -#: libraries/messages.inc.php:1187 libraries/mysql_charsets.lib.php:398 +#: libraries/messages.inc.php:1183 libraries/mysql_charsets.lib.php:398 #: libraries/mysql_charsets.lib.php:405 msgid "unknown" msgstr "不詳" -#: libraries/messages.inc.php:1190 server_privileges.php:1152 +#: libraries/messages.inc.php:1186 server_privileges.php:1152 #, php-format msgid "You have updated the privileges for %s." msgstr "您已經更新了 %s 的權限." -#: libraries/messages.inc.php:1191 user_password.php:112 +#: libraries/messages.inc.php:1187 user_password.php:112 msgid "The profile has been updated." msgstr "資料己經更新." -#: libraries/messages.inc.php:1193 libraries/relation.lib.php:138 +#: libraries/messages.inc.php:1189 libraries/relation.lib.php:138 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "請參看說明文件查詢如何更新 Column_comments 資料表" -#: libraries/messages.inc.php:1194 +#: libraries/messages.inc.php:1190 #, php-format msgid "You should upgrade to %s %s or later." msgstr "您應該更新到 %s %s 或之後." -#: libraries/messages.inc.php:1204 tbl_printview.php:314 tbl_structure.php:661 +#: libraries/messages.inc.php:1200 tbl_printview.php:314 tbl_structure.php:661 msgid "Usage" msgstr "使用" -#: libraries/messages.inc.php:1205 +#: libraries/messages.inc.php:1201 msgid "Enclose table and field names with backquotes" msgstr "在資料表及欄位使用引號" -#: libraries/messages.inc.php:1206 libraries/replication_gui.lib.php:314 +#: libraries/messages.inc.php:1202 libraries/replication_gui.lib.php:314 #: server_privileges.php:740 msgid "Use Host Table" msgstr "使用主機資料表" -#: libraries/messages.inc.php:1207 server_privileges.php:848 +#: libraries/messages.inc.php:1203 server_privileges.php:848 #, php-format msgid "The user %s already exists!" msgstr "使用者 %s 己存在!" -#: libraries/messages.inc.php:1209 libraries/replication_gui.lib.php:55 +#: libraries/messages.inc.php:1205 libraries/replication_gui.lib.php:55 #: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245 #: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255 #: server_privileges.php:672 server_privileges.php:675 @@ -6402,35 +6402,35 @@ msgstr "使用者 %s 己存在!" msgid "User name" msgstr "使用者名稱" -#: libraries/messages.inc.php:1210 server_privileges.php:1645 +#: libraries/messages.inc.php:1206 server_privileges.php:1645 msgid "The selected user was not found in the privilege table." msgstr "選擇的使用者在權限資料表內找不到." -#: libraries/messages.inc.php:1211 server_privileges.php:1365 +#: libraries/messages.inc.php:1207 server_privileges.php:1365 msgid "User overview" msgstr "使用者一覽" -#: libraries/messages.inc.php:1212 server_privileges.php:1261 +#: libraries/messages.inc.php:1208 server_privileges.php:1261 msgid "The selected users have been deleted successfully." msgstr "選擇的使用者已成功刪除." -#: libraries/messages.inc.php:1213 server_privileges.php:2026 +#: libraries/messages.inc.php:1209 server_privileges.php:2026 #, php-format msgid "Users having access to "%s"" msgstr "可讀取 "%s" 之使用者" -#: libraries/messages.inc.php:1214 main.php:189 server_privileges.php:1350 +#: libraries/messages.inc.php:1210 main.php:189 server_privileges.php:1350 #: server_privileges.php:1497 server_privileges.php:1611 #: server_privileges.php:2029 server_processlist.php:54 msgid "User" msgstr "使用者" -#: libraries/messages.inc.php:1215 tbl_change.php:1171 +#: libraries/messages.inc.php:1211 tbl_change.php:1171 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "按 TAB 鍵跳到下一個數值, 或 CTRL+方向鍵 作隨意移動" -#: libraries/messages.inc.php:1217 libraries/replication_gui.lib.php:251 +#: libraries/messages.inc.php:1213 libraries/replication_gui.lib.php:251 #: libraries/replication_gui.lib.php:319 libraries/replication_gui.lib.php:342 #: server_privileges.php:678 server_privileges.php:745 #: server_privileges.php:769 server_privileges.php:1889 @@ -6438,93 +6438,93 @@ msgstr "按 TAB 鍵跳到下一個數值, 或 CTRL+方向鍵 作隨意移動" msgid "Use text field" msgstr "文字輸入" -#: libraries/messages.inc.php:1221 libraries/sqlvalidator.lib.php:68 +#: libraries/messages.inc.php:1217 libraries/sqlvalidator.lib.php:68 #, php-format msgid "" "The SQL validator could not be initialized. Please check if you have " "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "SQL 分析程式未能啟動,請檢查是否已將 %s文件%s 內的 PHP 檔案安裝。" -#: libraries/messages.inc.php:1222 libraries/replication_gui.lib.php:111 +#: libraries/messages.inc.php:1218 libraries/replication_gui.lib.php:111 #: server_status.php:627 tbl_change.php:324 tbl_printview.php:370 #: tbl_select.php:139 tbl_structure.php:730 msgid "Value" msgstr "值" -#: libraries/messages.inc.php:1223 libraries/replication_gui.lib.php:110 +#: libraries/messages.inc.php:1219 libraries/replication_gui.lib.php:110 #: libraries/sql_query_form.lib.php:445 server_status.php:626 #: server_variables.php:52 msgid "Variable" msgstr "資訊" -#: libraries/messages.inc.php:1225 server_export.php:21 +#: libraries/messages.inc.php:1221 server_export.php:21 msgid "View dump (schema) of databases" msgstr "顯示資料庫概要 (schema)" -#: libraries/messages.inc.php:1227 tbl_export.php:23 +#: libraries/messages.inc.php:1223 tbl_export.php:23 msgid "View dump (schema) of table" msgstr "檢視資料表的備份概要 (dump schema)" -#: libraries/messages.inc.php:1231 view_create.php:142 +#: libraries/messages.inc.php:1227 view_create.php:142 msgid "VIEW name" msgstr "" -#: libraries/messages.inc.php:1237 main.php:205 +#: libraries/messages.inc.php:1233 main.php:205 msgid "Web server" msgstr "" -#: libraries/messages.inc.php:1239 libraries/mysql_charsets.lib.php:277 +#: libraries/messages.inc.php:1235 libraries/mysql_charsets.lib.php:277 #: libraries/mysql_charsets.lib.php:325 msgid "West European" msgstr "西歐語文" -#: libraries/messages.inc.php:1240 main.php:230 +#: libraries/messages.inc.php:1236 main.php:230 msgid "Wiki" msgstr "" -#: libraries/messages.inc.php:1241 server_privileges.php:2138 +#: libraries/messages.inc.php:1237 server_privileges.php:2138 msgid "wildcard" msgstr "萬用字元" -#: libraries/messages.inc.php:1248 +#: libraries/messages.inc.php:1244 msgid "Export contents" msgstr "" -#: libraries/messages.inc.php:1249 +#: libraries/messages.inc.php:1245 msgid "Export functions" msgstr "" -#: libraries/messages.inc.php:1250 +#: libraries/messages.inc.php:1246 msgid "Export procedures" msgstr "" -#: libraries/messages.inc.php:1251 +#: libraries/messages.inc.php:1247 msgid "Export Structure Schemas (recommended)" msgstr "" -#: libraries/messages.inc.php:1252 +#: libraries/messages.inc.php:1248 #, fuzzy msgid "Export tables" msgstr "輸出方式" -#: libraries/messages.inc.php:1253 +#: libraries/messages.inc.php:1249 #, fuzzy msgid "Export triggers" msgstr "輸出方式" -#: libraries/messages.inc.php:1254 +#: libraries/messages.inc.php:1250 msgid "Export views" msgstr "" -#: libraries/messages.inc.php:1255 +#: libraries/messages.inc.php:1251 msgid "XML" msgstr "XML" -#: libraries/messages.inc.php:1259 server_privileges.php:592 +#: libraries/messages.inc.php:1255 server_privileges.php:592 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "註: 設定這些選項為 0 (零) 可解除限制." -#: libraries/messages.inc.php:1260 +#: libraries/messages.inc.php:1256 msgid "\"zipped\"" msgstr "\"zipped\"" diff --git a/test/PMA_formatNumberByteDown_test.php b/test/PMA_formatNumberByteDown_test.php index 7f243869a..1bc3d063e 100644 --- a/test/PMA_formatNumberByteDown_test.php +++ b/test/PMA_formatNumberByteDown_test.php @@ -79,9 +79,6 @@ class PMA_formatNumberByteDown_test extends PHPUnit_Framework_TestCase */ public function testFormatNumber($a, $b, $c, $e) { - $GLOBALS['number_thousands_separator'] = ' '; - $GLOBALS['number_decimal_separator'] = ','; - $this->assertEquals($e, (string)PMA_formatNumber($a, $b, $c, false)); } @@ -107,10 +104,6 @@ class PMA_formatNumberByteDown_test extends PHPUnit_Framework_TestCase */ public function testFormatByteDown($a, $b, $c, $e) { - $GLOBALS['number_thousands_separator'] = ' '; - $GLOBALS['number_decimal_separator'] = ','; - - $result = PMA_formatByteDown($a, $b, $c); $result[0] = trim($result[0]); $this->assertEquals($e, $result);